From 85bce615251984b2b2bab39b1a9978f1dc9c48a7 Mon Sep 17 00:00:00 2001 From: Kvan7 <71402892+Kvan7@users.noreply.github.com> Date: Tue, 17 Dec 2024 21:50:25 -0600 Subject: [PATCH] v0.1.1 (#94) * [Parse Error] - Dualstring bow #60 * Adds starting for localization * tests yay, this is terrible Add junit tests :( #74 * revert tests cause they were really terrible * bump gitignore so i dont lose files * Update Traditional Chinese (#79) * Update issue templates * Update issue templates * Update for Traditional Chinese * Update Traditional Chinese * add new client strings * Hard coded strings (#80) * Features/pseudo-pseudo (#93) * uhhhhhhhhhhhh, maybe pseudo will get support before GGG * psesudo only ele * remove git ignored files * fix ignore * [Parse Error] - % based value not updating #88 * [Not Recognized Modifier] - Allies in your Presence have +11% to all Elemental Resistances #76 * fully fixes now * fixes: #61 #75 [Not Recognized Modifier] - Spirit: 100 #61 [Not Recognized Modifier] - Charm Slots: 1 #75 * [Parse Error] - Shouldn't show attacks per second #62 * [Not Recognized Modifier] - Items with bottom help text #63 * version bump --- .github/workflows/main.yml | 2 +- .gitignore | 6 +- exiled-exchange-2.code-workspace | 5 +- main/package-lock.json | 4 +- main/package.json | 2 +- renderer/package-lock.json | 502 + renderer/package.json | 8 +- renderer/public/.DS_Store/.gitignore | 39 +- renderer/public/.DS_Store/EXPORT/config.json | 3 +- .../EXPORT/tables/Russian/BaseItemTypes.json | 51752 ++++++++++++++++ .../EXPORT/tables/Russian/ItemClasses.json | 758 + renderer/public/.DS_Store/copy-py-ndjson.sh | 8 + .../.DS_Store/data/cmn-Hant/items.ndjson.old | 4530 ++ .../.DS_Store/data/cmn-Hant/stats.ndjson.old | 6648 ++ .../public/.DS_Store/data/en/items.ndjson | 6 + .../public/.DS_Store/data/en/stats.ndjson | 41 +- .../public/.DS_Store/data/ko/items.ndjson.old | 4527 ++ .../public/.DS_Store/data/ko/stats.ndjson.old | 6681 ++ .../public/.DS_Store/data/ru/items.ndjson.old | 4527 ++ .../public/.DS_Store/data/ru/stats.ndjson.old | 6681 ++ renderer/public/.DS_Store/package.json | 5 +- renderer/public/.DS_Store/pull-json.sh | 61 +- renderer/public/.DS_Store/push-ndjson.sh | 17 +- .../public/.DS_Store/vendor/client/parser.py | 902 +- .../.DS_Store/vendor/client/parserRunner.py | 9 + .../pyDumps/{ => en-out}/items_dump.json | 0 .../pyDumps/en-out/matchers_no_trade_ids.json | 5812 ++ .../pyDumps/{ => en-out}/mods_dump.json | 86 +- .../vendor/client/pyDumps/en/items.ndjson | 6 + .../vendor/client/pyDumps/en/stats.ndjson | 4 +- .../cmn-Hant}/.gitkeep | 0 .../vendor/json-api/{ => en}/.gitkeep | 0 .../.DS_Store/vendor/json-api/ko/.gitkeep | 0 .../.DS_Store/vendor/json-api/ru/.gitkeep | 0 .../vendor/pseudo-stats/add-to-new.py | 86 + .../vendor/pseudo-stats/all-pseudo.ndjson | 292 + .../vendor/pseudo-stats/cherry-pick-pseudo.py | 81 + .../pseudo-stats/cmn-Hant/all-pseudo.ndjson | 292 + .../pseudo-stats/cmn-Hant/pseudo_stats.ndjson | 32 + .../vendor/pseudo-stats/en/all-pseudo.ndjson | 292 + .../pseudo-stats/en/pseudo_stats.ndjson | 32 + .../vendor/pseudo-stats/ko/all-pseudo.ndjson | 292 + .../pseudo-stats/ko/pseudo_stats.ndjson | 32 + .../vendor/pseudo-stats/pseudo-parse.py | 54 + .../vendor/pseudo-stats/pseudo_keys.ndjson | 32 + .../vendor/pseudo-stats/ru/all-pseudo.ndjson | 292 + .../pseudo-stats/ru/pseudo_stats.ndjson | 32 + renderer/public/data/cmn-Hant/app_i18n.json | 361 +- .../public/data/cmn-Hant/client_strings.js | 8 +- renderer/public/data/en/app_i18n.json | 10 + renderer/public/data/en/client_strings.js | 8 +- renderer/public/data/en/items.ndjson | 6 + renderer/public/data/en/stats.ndjson | 44 +- renderer/public/data/ko/client_strings.js | 8 +- renderer/public/data/manual-patch.ndjson | 1 + renderer/public/data/pseudo-pseudo-runes.json | 760 + renderer/public/data/pseudo-pseudo.json | 620 + renderer/public/data/ru/client_strings.js | 8 +- renderer/src/assets/data/index.ts | 13 +- renderer/src/assets/data/interfaces.ts | 26 + renderer/src/parser/Parser.ts | 57 + renderer/src/parser/en/app_i18n.json | 323 + renderer/src/parser/en/client_strings.js | 112 + renderer/src/parser/en/interfaces.ts | 187 + renderer/src/parser/en/item-drop.json | 1286 + renderer/src/parser/en/items.ndjson | 3059 + renderer/src/parser/en/patrons.json | 191 + renderer/src/parser/en/stats.ndjson | 2910 + renderer/src/parser/en/testLoader.ts | 253 + renderer/src/parser/modifiers.ts | 1 + .../ConversionWarningBanner.vue | 19 +- .../src/web/price-check/PriceCheckWindow.vue | 1 - .../web/price-check/filters/FiltersBlock.vue | 14 +- .../filters/create-stat-filters.ts | 7 +- .../web/price-check/filters/pseudo/index.ts | 147 +- .../filters/pseudo/item-property.ts | 28 +- renderer/src/web/price-check/trade/common.ts | 1 - .../price-check/trade/pathofexile-trade.ts | 18 +- renderer/tsconfig.json | 34 +- renderer/vitest.config.ts | 18 + 80 files changed, 105370 insertions(+), 642 deletions(-) create mode 100644 renderer/public/.DS_Store/EXPORT/tables/Russian/BaseItemTypes.json create mode 100644 renderer/public/.DS_Store/EXPORT/tables/Russian/ItemClasses.json create mode 100644 renderer/public/.DS_Store/copy-py-ndjson.sh create mode 100644 renderer/public/.DS_Store/data/cmn-Hant/items.ndjson.old create mode 100644 renderer/public/.DS_Store/data/cmn-Hant/stats.ndjson.old create mode 100644 renderer/public/.DS_Store/data/ko/items.ndjson.old create mode 100644 renderer/public/.DS_Store/data/ko/stats.ndjson.old create mode 100644 renderer/public/.DS_Store/data/ru/items.ndjson.old create mode 100644 renderer/public/.DS_Store/data/ru/stats.ndjson.old create mode 100644 renderer/public/.DS_Store/vendor/client/parserRunner.py rename renderer/public/.DS_Store/vendor/client/pyDumps/{ => en-out}/items_dump.json (100%) create mode 100644 renderer/public/.DS_Store/vendor/client/pyDumps/en-out/matchers_no_trade_ids.json rename renderer/public/.DS_Store/vendor/client/pyDumps/{ => en-out}/mods_dump.json (99%) rename renderer/public/.DS_Store/vendor/{client/descriptions => json-api/cmn-Hant}/.gitkeep (100%) rename renderer/public/.DS_Store/vendor/json-api/{ => en}/.gitkeep (100%) create mode 100644 renderer/public/.DS_Store/vendor/json-api/ko/.gitkeep create mode 100644 renderer/public/.DS_Store/vendor/json-api/ru/.gitkeep create mode 100644 renderer/public/.DS_Store/vendor/pseudo-stats/add-to-new.py create mode 100644 renderer/public/.DS_Store/vendor/pseudo-stats/all-pseudo.ndjson create mode 100644 renderer/public/.DS_Store/vendor/pseudo-stats/cherry-pick-pseudo.py create mode 100644 renderer/public/.DS_Store/vendor/pseudo-stats/cmn-Hant/all-pseudo.ndjson create mode 100644 renderer/public/.DS_Store/vendor/pseudo-stats/cmn-Hant/pseudo_stats.ndjson create mode 100644 renderer/public/.DS_Store/vendor/pseudo-stats/en/all-pseudo.ndjson create mode 100644 renderer/public/.DS_Store/vendor/pseudo-stats/en/pseudo_stats.ndjson create mode 100644 renderer/public/.DS_Store/vendor/pseudo-stats/ko/all-pseudo.ndjson create mode 100644 renderer/public/.DS_Store/vendor/pseudo-stats/ko/pseudo_stats.ndjson create mode 100644 renderer/public/.DS_Store/vendor/pseudo-stats/pseudo-parse.py create mode 100644 renderer/public/.DS_Store/vendor/pseudo-stats/pseudo_keys.ndjson create mode 100644 renderer/public/.DS_Store/vendor/pseudo-stats/ru/all-pseudo.ndjson create mode 100644 renderer/public/.DS_Store/vendor/pseudo-stats/ru/pseudo_stats.ndjson create mode 100644 renderer/public/data/manual-patch.ndjson create mode 100644 renderer/public/data/pseudo-pseudo-runes.json create mode 100644 renderer/public/data/pseudo-pseudo.json create mode 100644 renderer/src/parser/en/app_i18n.json create mode 100644 renderer/src/parser/en/client_strings.js create mode 100644 renderer/src/parser/en/interfaces.ts create mode 100644 renderer/src/parser/en/item-drop.json create mode 100644 renderer/src/parser/en/items.ndjson create mode 100644 renderer/src/parser/en/patrons.json create mode 100644 renderer/src/parser/en/stats.ndjson create mode 100644 renderer/src/parser/en/testLoader.ts create mode 100644 renderer/vitest.config.ts diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a4dd630a0..5a4fdae88 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -34,7 +34,7 @@ jobs: needs: renderer strategy: matrix: - os: [windows-2019] # ubuntu-20.04, macos-14 is a missing runner + os: [windows-2019, ubuntu-20.04, macos-14] # ubuntu-20.04, macos-14 is a missing runner runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 diff --git a/.gitignore b/.gitignore index 908b10a86..ceddec55b 100644 --- a/.gitignore +++ b/.gitignore @@ -26,8 +26,4 @@ yarn-error.log* docs/.vitepress/dist docs/.vitepress/cache - -renderer/public/.DS_Store/EXPORT/tables/English/*.json -renderer/public/.DS_Store/vendor/client/tables/*.json -!renderer/public/.DS_Store/vendor/client/tables/ArmourTypesOverride.json -renderer/public/.DS_Store/vendor/json-api/*.json +*.bin \ No newline at end of file diff --git a/exiled-exchange-2.code-workspace b/exiled-exchange-2.code-workspace index dc10f05c6..3f6f90a4b 100644 --- a/exiled-exchange-2.code-workspace +++ b/exiled-exchange-2.code-workspace @@ -41,6 +41,9 @@ "pdps", "uniquefoil", "WAYSTONE" - ] + ], + "files.associations": { + "*.ndjson": "jsonl" + } } } \ No newline at end of file diff --git a/main/package-lock.json b/main/package-lock.json index 487da9d94..434a1152f 100644 --- a/main/package-lock.json +++ b/main/package-lock.json @@ -1,12 +1,12 @@ { "name": "exiled-exchange-2", - "version": "0.1.0", + "version": "0.1.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "exiled-exchange-2", - "version": "0.1.0", + "version": "0.1.1", "dependencies": { "electron-overlay-window": "3.3.0", "uiohook-napi": "1.5.x" diff --git a/main/package.json b/main/package.json index a17cc25fa..a686805d9 100644 --- a/main/package.json +++ b/main/package.json @@ -1,6 +1,6 @@ { "name": "exiled-exchange-2", - "version": "0.1.0", + "version": "0.1.1", "private": true, "scripts": { "dev": "node build/script.mjs", diff --git a/renderer/package-lock.json b/renderer/package-lock.json index b1219edbc..779411f89 100644 --- a/renderer/package-lock.json +++ b/renderer/package-lock.json @@ -38,6 +38,9 @@ "prettier": "3.4.2", "typescript": "5.6.x", "vite": "^5.0.0", + "vite-tsconfig-paths": "^5.1.4", + "vitest": "^2.1.8", + "vitest-mock-extended": "^2.0.2", "vue-tsc": "^2.0.0" }, "optionalDependencies": { @@ -1402,6 +1405,149 @@ "vue": "^3.2.25" } }, + "node_modules/@vitest/expect": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-2.1.8.tgz", + "integrity": "sha512-8ytZ/fFHq2g4PJVAtDX57mayemKgDR6X3Oa2Foro+EygiOJHUXhCqBAAKQYYajZpFoIfvBCF1j6R6IYRSIUFuw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/spy": "2.1.8", + "@vitest/utils": "2.1.8", + "chai": "^5.1.2", + "tinyrainbow": "^1.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/mocker": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-2.1.8.tgz", + "integrity": "sha512-7guJ/47I6uqfttp33mgo6ga5Gr1VnL58rcqYKyShoRK9ebu8T5Rs6HN3s1NABiBeVTdWNrwUMcHH54uXZBN4zA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/spy": "2.1.8", + "estree-walker": "^3.0.3", + "magic-string": "^0.30.12" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "msw": "^2.4.9", + "vite": "^5.0.0" + }, + "peerDependenciesMeta": { + "msw": { + "optional": true + }, + "vite": { + "optional": true + } + } + }, + "node_modules/@vitest/mocker/node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0" + } + }, + "node_modules/@vitest/mocker/node_modules/magic-string": { + "version": "0.30.15", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.15.tgz", + "integrity": "sha512-zXeaYRgZ6ldS1RJJUrMrYgNJ4fdwnyI6tVqoiIhyCyv5IVTK9BU8Ic2l253GGETQHxI4HNUwhJ3fjDhKqEoaAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0" + } + }, + "node_modules/@vitest/pretty-format": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-2.1.8.tgz", + "integrity": "sha512-9HiSZ9zpqNLKlbIDRWOnAWqgcA7xu+8YxXSekhr0Ykab7PAYFkhkwoqVArPOtJhPmYeE2YHgKZlj3CP36z2AJQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "tinyrainbow": "^1.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/runner": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-2.1.8.tgz", + "integrity": "sha512-17ub8vQstRnRlIU5k50bG+QOMLHRhYPAna5tw8tYbj+jzjcspnwnwtPtiOlkuKC4+ixDPTuLZiqiWWQ2PSXHVg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/utils": "2.1.8", + "pathe": "^1.1.2" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/snapshot": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-2.1.8.tgz", + "integrity": "sha512-20T7xRFbmnkfcmgVEz+z3AU/3b0cEzZOt/zmnvZEctg64/QZbSDJEVm9fLnnlSi74KibmRsO9/Qabi+t0vCRPg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/pretty-format": "2.1.8", + "magic-string": "^0.30.12", + "pathe": "^1.1.2" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/snapshot/node_modules/magic-string": { + "version": "0.30.15", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.15.tgz", + "integrity": "sha512-zXeaYRgZ6ldS1RJJUrMrYgNJ4fdwnyI6tVqoiIhyCyv5IVTK9BU8Ic2l253GGETQHxI4HNUwhJ3fjDhKqEoaAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0" + } + }, + "node_modules/@vitest/spy": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-2.1.8.tgz", + "integrity": "sha512-5swjf2q95gXeYPevtW0BLk6H8+bPlMb4Vw/9Em4hFxDcaOxS+e0LOX4yqNxoHzMR2akEB2xfpnWUzkZokmgWDg==", + "dev": true, + "license": "MIT", + "dependencies": { + "tinyspy": "^3.0.2" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/utils": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-2.1.8.tgz", + "integrity": "sha512-dwSoui6djdwbfFmIgbIjX2ZhIoG7Ex/+xpxyiEgIGzjliY8xGkcpITKTlp6B4MgtGkF2ilvm97cPM96XZaAgcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/pretty-format": "2.1.8", + "loupe": "^3.1.2", + "tinyrainbow": "^1.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, "node_modules/@volar/language-core": { "version": "2.4.10", "resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-2.4.10.tgz", @@ -1990,6 +2136,16 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/assertion-error": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz", + "integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + } + }, "node_modules/autoprefixer": { "version": "10.4.20", "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.20.tgz", @@ -2135,6 +2291,16 @@ "semver": "^7.0.0" } }, + "node_modules/cac": { + "version": "6.7.14", + "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", + "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, "node_modules/call-bind": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", @@ -2195,6 +2361,23 @@ ], "license": "CC-BY-4.0" }, + "node_modules/chai": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/chai/-/chai-5.1.2.tgz", + "integrity": "sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==", + "dev": true, + "license": "MIT", + "dependencies": { + "assertion-error": "^2.0.1", + "check-error": "^2.1.1", + "deep-eql": "^5.0.1", + "loupe": "^3.1.0", + "pathval": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", @@ -2212,6 +2395,16 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, + "node_modules/check-error": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-2.1.1.tgz", + "integrity": "sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 16" + } + }, "node_modules/chokidar": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", @@ -2393,6 +2586,16 @@ } } }, + "node_modules/deep-eql": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-5.0.2.tgz", + "integrity": "sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, "node_modules/deep-is": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", @@ -2605,6 +2808,13 @@ "node": ">= 0.4" } }, + "node_modules/es-module-lexer": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", + "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==", + "dev": true, + "license": "MIT" + }, "node_modules/es-object-atoms": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", @@ -3241,6 +3451,16 @@ "node": ">=0.10.0" } }, + "node_modules/expect-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.1.0.tgz", + "integrity": "sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.0.0" + } + }, "node_modules/fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", @@ -3609,6 +3829,13 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/globrex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz", + "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==", + "dev": true, + "license": "MIT" + }, "node_modules/gopd": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", @@ -4342,6 +4569,13 @@ "devOptional": true, "license": "MIT" }, + "node_modules/loupe": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/loupe/-/loupe-3.1.2.tgz", + "integrity": "sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg==", + "dev": true, + "license": "MIT" + }, "node_modules/lru-cache": { "version": "10.4.3", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", @@ -4787,6 +5021,23 @@ "node": ">=8" } }, + "node_modules/pathe": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz", + "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/pathval": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-2.0.0.tgz", + "integrity": "sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14.16" + } + }, "node_modules/picocolors": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", @@ -5358,6 +5609,13 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/siginfo": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz", + "integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==", + "dev": true, + "license": "ISC" + }, "node_modules/signal-exit": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", @@ -5417,6 +5675,20 @@ "deprecated": "Please use @jridgewell/sourcemap-codec instead", "license": "MIT" }, + "node_modules/stackback": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", + "integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==", + "dev": true, + "license": "MIT" + }, + "node_modules/std-env": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.8.0.tgz", + "integrity": "sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==", + "dev": true, + "license": "MIT" + }, "node_modules/string-width": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", @@ -5738,6 +6010,50 @@ "node": ">=0.8" } }, + "node_modules/tinybench": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz", + "integrity": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==", + "dev": true, + "license": "MIT" + }, + "node_modules/tinyexec": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.1.tgz", + "integrity": "sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/tinypool": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.0.2.tgz", + "integrity": "sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.0.0 || >=20.0.0" + } + }, + "node_modules/tinyrainbow": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-1.2.0.tgz", + "integrity": "sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tinyspy": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-3.0.2.tgz", + "integrity": "sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, "node_modules/tippy.js": { "version": "6.3.7", "resolved": "https://registry.npmjs.org/tippy.js/-/tippy.js-6.3.7.tgz", @@ -5759,12 +6075,48 @@ "node": ">=8.0" } }, + "node_modules/ts-essentials": { + "version": "10.0.3", + "resolved": "https://registry.npmjs.org/ts-essentials/-/ts-essentials-10.0.3.tgz", + "integrity": "sha512-/FrVAZ76JLTWxJOERk04fm8hYENDo0PWSP3YLQKxevLwWtxemGcl5JJEzN4iqfDlRve0ckyfFaOBu4xbNH/wZw==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "typescript": ">=4.5.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, "node_modules/ts-interface-checker": { "version": "0.1.13", "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", "license": "Apache-2.0" }, + "node_modules/tsconfck": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/tsconfck/-/tsconfck-3.1.4.tgz", + "integrity": "sha512-kdqWFGVJqe+KGYvlSO9NIaWn9jT1Ny4oKVzAJsKii5eoE9snzTJzL4+MMVOMn+fikWGFmKEylcXL710V/kIPJQ==", + "dev": true, + "license": "MIT", + "bin": { + "tsconfck": "bin/tsconfck.js" + }, + "engines": { + "node": "^18 || >=20" + }, + "peerDependencies": { + "typescript": "^5.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, "node_modules/tsconfig-paths": { "version": "3.15.0", "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", @@ -6048,6 +6400,139 @@ } } }, + "node_modules/vite-node": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-2.1.8.tgz", + "integrity": "sha512-uPAwSr57kYjAUux+8E2j0q0Fxpn8M9VoyfGiRI8Kfktz9NcYMCenwY5RnZxnF1WTu3TGiYipirIzacLL3VVGFg==", + "dev": true, + "license": "MIT", + "dependencies": { + "cac": "^6.7.14", + "debug": "^4.3.7", + "es-module-lexer": "^1.5.4", + "pathe": "^1.1.2", + "vite": "^5.0.0" + }, + "bin": { + "vite-node": "vite-node.mjs" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/vite-tsconfig-paths": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/vite-tsconfig-paths/-/vite-tsconfig-paths-5.1.4.tgz", + "integrity": "sha512-cYj0LRuLV2c2sMqhqhGpaO3LretdtMn/BVX4cPLanIZuwwrkVl+lK84E/miEXkCHWXuq65rhNN4rXsBcOB3S4w==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.1.1", + "globrex": "^0.1.2", + "tsconfck": "^3.0.3" + }, + "peerDependencies": { + "vite": "*" + }, + "peerDependenciesMeta": { + "vite": { + "optional": true + } + } + }, + "node_modules/vitest": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/vitest/-/vitest-2.1.8.tgz", + "integrity": "sha512-1vBKTZskHw/aosXqQUlVWWlGUxSJR8YtiyZDJAFeW2kPAeX6S3Sool0mjspO+kXLuxVWlEDDowBAeqeAQefqLQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/expect": "2.1.8", + "@vitest/mocker": "2.1.8", + "@vitest/pretty-format": "^2.1.8", + "@vitest/runner": "2.1.8", + "@vitest/snapshot": "2.1.8", + "@vitest/spy": "2.1.8", + "@vitest/utils": "2.1.8", + "chai": "^5.1.2", + "debug": "^4.3.7", + "expect-type": "^1.1.0", + "magic-string": "^0.30.12", + "pathe": "^1.1.2", + "std-env": "^3.8.0", + "tinybench": "^2.9.0", + "tinyexec": "^0.3.1", + "tinypool": "^1.0.1", + "tinyrainbow": "^1.2.0", + "vite": "^5.0.0", + "vite-node": "2.1.8", + "why-is-node-running": "^2.3.0" + }, + "bin": { + "vitest": "vitest.mjs" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "@edge-runtime/vm": "*", + "@types/node": "^18.0.0 || >=20.0.0", + "@vitest/browser": "2.1.8", + "@vitest/ui": "2.1.8", + "happy-dom": "*", + "jsdom": "*" + }, + "peerDependenciesMeta": { + "@edge-runtime/vm": { + "optional": true + }, + "@types/node": { + "optional": true + }, + "@vitest/browser": { + "optional": true + }, + "@vitest/ui": { + "optional": true + }, + "happy-dom": { + "optional": true + }, + "jsdom": { + "optional": true + } + } + }, + "node_modules/vitest-mock-extended": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/vitest-mock-extended/-/vitest-mock-extended-2.0.2.tgz", + "integrity": "sha512-n3MBqVITKyclZ0n0y66hkT4UiiEYFQn9tteAnIxT0MPz1Z8nFcPUG3Cf0cZOyoPOj/cq6Ab1XFw2lM/qM5EDWQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ts-essentials": ">=10.0.0" + }, + "peerDependencies": { + "typescript": "3.x || 4.x || 5.x", + "vitest": ">=2.0.0" + } + }, + "node_modules/vitest/node_modules/magic-string": { + "version": "0.30.15", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.15.tgz", + "integrity": "sha512-zXeaYRgZ6ldS1RJJUrMrYgNJ4fdwnyI6tVqoiIhyCyv5IVTK9BU8Ic2l253GGETQHxI4HNUwhJ3fjDhKqEoaAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0" + } + }, "node_modules/vscode-uri": { "version": "3.0.8", "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.8.tgz", @@ -6278,6 +6763,23 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/why-is-node-running": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz", + "integrity": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==", + "dev": true, + "license": "MIT", + "dependencies": { + "siginfo": "^2.0.0", + "stackback": "0.0.2" + }, + "bin": { + "why-is-node-running": "cli.js" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/word-wrap": { "version": "1.2.5", "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", diff --git a/renderer/package.json b/renderer/package.json index 07a6a5b05..4f78b6315 100644 --- a/renderer/package.json +++ b/renderer/package.json @@ -7,7 +7,8 @@ "lint": "eslint --ext .ts,.vue src", "lint-fix": "eslint --ext .ts,.vue src --fix", "build": "vue-tsc --noEmit && vite build", - "make-index-files": "node src/assets/make-index-files.mjs" + "make-index-files": "node src/assets/make-index-files.mjs", + "test": "vitest" }, "dependencies": { "@fortawesome/fontawesome-free": "6.x.x", @@ -40,6 +41,9 @@ "prettier": "3.4.2", "typescript": "5.6.x", "vite": "^5.0.0", + "vite-tsconfig-paths": "^5.1.4", + "vitest": "^2.1.8", + "vitest-mock-extended": "^2.0.2", "vue-tsc": "^2.0.0" }, "optionalDependencies": { @@ -62,4 +66,4 @@ "browserslist": [ "chrome >= 101" ] -} +} \ No newline at end of file diff --git a/renderer/public/.DS_Store/.gitignore b/renderer/public/.DS_Store/.gitignore index 57583cbfb..4f60be32b 100644 --- a/renderer/public/.DS_Store/.gitignore +++ b/renderer/public/.DS_Store/.gitignore @@ -129,6 +129,41 @@ dist .yarn/install-state.gz .pnp.* - +__pycache__ + +vendor/json-api/*.json +vendor/json-api/en/*.json +vendor/json-api/ru/*.json +vendor/json-api/ko/*.json +vendor/json-api/cmn-Hant/*.json +vendor/client/tables/*.json vendor/client/descriptions/* -!vendor/client/descriptions/.gitkeep \ No newline at end of file +!vendor/client/descriptions/.gitkeep + +vendor/client/tables/* +!vendor/client/tables/index.ts +!vendor/client/tables/ArmourTypesOverride.json +!vendor/client/tables/en/.gitkeep +!vendor/client/tables/ru/.gitkeep +!vendor/client/tables/ko/.gitkeep +!vendor/client/tables/cmn-Hant/.gitkeep + +!vendor/client/tables/en/ArmourTypesOverride.json +!vendor/client/tables/ru/ArmourTypesOverride.json +!vendor/client/tables/ko/ArmourTypesOverride.json +!vendor/client/tables/cmn-Hant/ArmourTypesOverride.json + + + +!vendor/json-api/.gitkeep +!vendor/json-api/en/.gitkeep +!vendor/json-api/ru/.gitkeep +!vendor/json-api/ko/.gitkeep +!vendor/json-api/cmn-Hant/.gitkeep + + +EXPORT/tables/English/*.json +EXPORT/tables/Korean/*.json +EXPORT/tables/Russian/*.json +EXPORT/tables/Traditional Chinese/*.json + diff --git a/renderer/public/.DS_Store/EXPORT/config.json b/renderer/public/.DS_Store/EXPORT/config.json index b10cc7763..232c8b209 100644 --- a/renderer/public/.DS_Store/EXPORT/config.json +++ b/renderer/public/.DS_Store/EXPORT/config.json @@ -1,7 +1,8 @@ { "steam": "C:\\Program Files (x86)\\Steam\\steamapps\\common\\Path of Exile 2", "translations": [ - "English" + "English", + "Russian" ], "tables": [ { diff --git a/renderer/public/.DS_Store/EXPORT/tables/Russian/BaseItemTypes.json b/renderer/public/.DS_Store/EXPORT/tables/Russian/BaseItemTypes.json new file mode 100644 index 000000000..fde7510ad --- /dev/null +++ b/renderer/public/.DS_Store/EXPORT/tables/Russian/BaseItemTypes.json @@ -0,0 +1,51752 @@ +[ + { + "_index": 0, + "Id": "Metadata/Items/Currency/CurrencyWeaponQuality", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Точильный камень", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 348 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 0, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1, + "Id": "Metadata/Items/Currency/CurrencyMagicQuality", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Arcanist's Etcher", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 348 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 1, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2, + "Id": "Metadata/Items/Currency/CurrencyIdentification", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Свиток мудрости", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 2, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3, + "Id": "Metadata/Items/Currency/CurrencyRerollRare", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера хаоса", + "DropLevel": 12, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 3, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 4, + "Id": "Metadata/Items/Currency/CurrencyRerollRareVeiled", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера скрытого хаоса", + "DropLevel": 61, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 4, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 5, + "Id": "Metadata/Items/Currency/CurrencyArmourQuality", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Деталь доспеха", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 348 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 5, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 6, + "Id": "Metadata/Items/Currency/CurrencyDuplicate", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Зеркало Каландры", + "DropLevel": 35, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 7, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 7, + "Id": "Metadata/Items/Currency/CurrencyUpgradeToRare", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера алхимии", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 8, + "Id": "Metadata/Items/Currency/CurrencyUpgradeRandomly", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера удачи", + "DropLevel": 12, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 9, + "Id": "Metadata/Items/Currency/CurrencyPassiveRefund", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера раскаяния", + "DropLevel": 12, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 10, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 10, + "Id": "Metadata/Items/Currency/CurrencyAtlasPassiveRefund", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера небытия", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 11, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 11, + "Id": "Metadata/Items/Currency/CurrencyUpgradeToMagic", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера превращения", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 12, + "Id": "Metadata/Items/Currency/CurrencyRerollMagic", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера перемен", + "DropLevel": 2, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 13, + "Id": "Metadata/Items/Currency/CurrencyConvertToNormal", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера очищения", + "DropLevel": 12, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 14, + "Id": "Metadata/Items/Currency/CurrencyAddModToRare", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера возвышения", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 16, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 15, + "Id": "Metadata/Items/Currency/CurrencyUpgradeMagicToRare", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера царей", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 17, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 16, + "Id": "Metadata/Items/Currency/CurrencyAddModToMagic", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера усиления", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 18, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 17, + "Id": "Metadata/Items/Currency/CurrencyPortal", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Свиток портала", + "DropLevel": 2, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 19, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 18, + "Id": "Metadata/Items/Currency/CurrencyFlaskQuality", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Стекольная масса", + "DropLevel": 12, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 348 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 20, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 19, + "Id": "Metadata/Items/Currency/CurrencyGemQuality", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Призма камнереза", + "DropLevel": 12, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 348 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 21, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 20, + "Id": "Metadata/Items/Currency/CurrencyRerollSocketColours", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Цветная сфера", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 31, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 21, + "Id": "Metadata/Items/Currency/CurrencyRerollSocketLinks", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера соединения", + "DropLevel": 8, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 32, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 22, + "Id": "Metadata/Items/Currency/CurrencyAddSkillGemSocket3", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера златокузнеца", + "DropLevel": 25, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1110 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 33, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 23, + "Id": "Metadata/Items/Currency/CurrencyAddSkillGemSocket4", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Большая сфера златокузнеца", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1110 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 34, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 24, + "Id": "Metadata/Items/Currency/CurrencyAddSkillGemSocket5", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Совершенная сфера златокузнеца", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1110, + 1111 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 35, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 25, + "Id": "Metadata/Items/Currency/CurrencyAddEquipmentSocket", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера астромантии", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1110 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 36, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 26, + "Id": "Metadata/Items/Currency/CurrencyModValues", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Божественная сфера", + "DropLevel": 35, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 37, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 27, + "Id": "Metadata/Items/Currency/CurrencyRerollImplicit", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Благодатная сфера", + "DropLevel": 35, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 38, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 28, + "Id": "Metadata/Items/Currency/CurrencyRerollDefences", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Священная сфера", + "DropLevel": 35, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 39, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 29, + "Id": "Metadata/Items/Currency/CurrencyMapQuality", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Резец картографа", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 348 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 6, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 30, + "Id": "Metadata/Items/Currency/CurrencyIdentificationShard", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Обрывок свитка", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 231 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 26, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 31, + "Id": "Metadata/Items/Currency/CurrencyUpgradeToMagicShard", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Осколок превращения", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 231 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 28, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 32, + "Id": "Metadata/Items/Currency/CurrencyRerollMagicShard", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Осколок перемен", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 231 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 29, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 33, + "Id": "Metadata/Items/Currency/CurrencyUpgradeToRareShard", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Осколок алхимии", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 231 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 30, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 34, + "Id": "Metadata/Items/Currency/CurrencyUpgradeRandomlyShard", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Осколок удачи", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 231 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 27, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 35, + "Id": "Metadata/Items/Currency/CurrencyRhoaFeather", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Перо белого роа", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 40, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 36, + "Id": "Metadata/Items/Currency/CurrencyImprintOrb", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера вечного", + "DropLevel": 40, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 41, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 37, + "Id": "Metadata/Items/Currency/CurrencyImprint", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Слепок", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 42, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 38, + "Id": "Metadata/Items/Currency/CurrencyCorrupt", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера ваал", + "DropLevel": 35, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 43, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 39, + "Id": "Metadata/Items/Currency/CurrencyIncursionCorrupt1", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Осквернение", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 47, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 40, + "Id": "Metadata/Items/Currency/CurrencyIncursionCorrupt2", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Осквернение", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 48, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 41, + "Id": "Metadata/Items/Currency/CurrencyIncursionCorruptGem", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Осквернение", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 49, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 42, + "Id": "Metadata/Items/Currency/CurrencyPerandusCoin", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Монета Перандусов", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 50, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 43, + "Id": "Metadata/Items/Currency/CurrencySilverCoin", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Серебряная монета", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 51, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 44, + "Id": "Metadata/Items/Currency/CurrencyItemisedProphecy", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Пророчество", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 52, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 45, + "Id": "Metadata/Items/Currency/CurrencyItemiseCapturedMonster", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера Бестиария", + "DropLevel": 15, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 53, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 46, + "Id": "Metadata/Items/Currency/CurrencyItemisedCapturedMonster", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Запечатанная сфера Бестиария", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 54, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 47, + "Id": "Metadata/Items/Currency/CurrencyItemiseSextantModifier", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Компас топографа", + "DropLevel": 81, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 55, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 48, + "Id": "Metadata/Items/Currency/CurrencyItemisedSextantModifier", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Заряженный компас", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 56, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 49, + "Id": "Metadata/Items/Currency/CurrencyRerollSkillQualityType", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Первичная профилирующая линза", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 57, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 50, + "Id": "Metadata/Items/Currency/CurrencyRerollSupportQualityType", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Вторичная профилирующая линза", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 58, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 51, + "Id": "Metadata/Items/Currency/CurrencyHeistWeaponEnchant", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера закалки", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 59, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 52, + "Id": "Metadata/Items/Currency/CurrencyHeistArmourEnchant", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера подгонки", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 60, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 53, + "Id": "Metadata/Items/Currency/CurrencyEssenceLife", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сущность тела", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 302 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 11982, + "IsCorrupted": false, + "TradeMarketCategory": 42 + }, + { + "_index": 54, + "Id": "Metadata/Items/Currency/CurrencyEssenceMana", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сущность разума", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 302 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 11983, + "IsCorrupted": false, + "TradeMarketCategory": 42 + }, + { + "_index": 55, + "Id": "Metadata/Items/Currency/CurrencyEssenceDefences", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сущность улучшения", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 302 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 11984, + "IsCorrupted": false, + "TradeMarketCategory": 42 + }, + { + "_index": 56, + "Id": "Metadata/Items/Currency/CurrencyEssencePhysical", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сущность мучения", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 302 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 11985, + "IsCorrupted": false, + "TradeMarketCategory": 42 + }, + { + "_index": 57, + "Id": "Metadata/Items/Currency/CurrencyEssenceFire", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сущность пламени", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 302 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 11986, + "IsCorrupted": false, + "TradeMarketCategory": 42 + }, + { + "_index": 58, + "Id": "Metadata/Items/Currency/CurrencyEssenceCold", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сущность льда", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 302 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 11987, + "IsCorrupted": false, + "TradeMarketCategory": 42 + }, + { + "_index": 59, + "Id": "Metadata/Items/Currency/CurrencyEssenceLightning", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сущность электричества", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 302 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 11988, + "IsCorrupted": false, + "TradeMarketCategory": 42 + }, + { + "_index": 60, + "Id": "Metadata/Items/Currency/CurrencyEssenceChaos", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сущность гибели", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 302 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 11989, + "IsCorrupted": false, + "TradeMarketCategory": 42 + }, + { + "_index": 61, + "Id": "Metadata/Items/Currency/CurrencyEssenceAttack", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сущность битвы", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 302 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 11990, + "IsCorrupted": false, + "TradeMarketCategory": 42 + }, + { + "_index": 62, + "Id": "Metadata/Items/Currency/CurrencyEssenceCaster", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сущность колдовства", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 302 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 11991, + "IsCorrupted": false, + "TradeMarketCategory": 42 + }, + { + "_index": 63, + "Id": "Metadata/Items/Currency/CurrencyEssenceSpeed", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сущность спешки", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 302 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 11992, + "IsCorrupted": false, + "TradeMarketCategory": 42 + }, + { + "_index": 64, + "Id": "Metadata/Items/Currency/CurrencyEssenceAttribute", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сущность бесконечности", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 302 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 11993, + "IsCorrupted": false, + "TradeMarketCategory": 42 + }, + { + "_index": 65, + "Id": "Metadata/Items/Currency/CurrencyGreaterEssenceLife", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Большая сущность тела", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 302 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 11994, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 66, + "Id": "Metadata/Items/Currency/CurrencyGreaterEssenceMana", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Большая сущность разума", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 302 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 11995, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 67, + "Id": "Metadata/Items/Currency/CurrencyGreaterEssenceDefences", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Большая сущность улучшения", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 302 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 11996, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 68, + "Id": "Metadata/Items/Currency/CurrencyGreaterEssencePhysical", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Большая сущность мучения", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 302 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 11997, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 69, + "Id": "Metadata/Items/Currency/CurrencyGreaterEssenceFire", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Большая сущность пламени", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 302 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 11998, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 70, + "Id": "Metadata/Items/Currency/CurrencyGreaterEssenceCold", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Большая сущность льда", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 302 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 11999, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 71, + "Id": "Metadata/Items/Currency/CurrencyGreaterEssenceLightning", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Большая сущность электричества", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 302 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12000, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 72, + "Id": "Metadata/Items/Currency/CurrencyGreaterEssenceChaos", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Большая сущность гибели", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 302 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12001, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 73, + "Id": "Metadata/Items/Currency/CurrencyGreaterEssenceAttack", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Большая сущность битвы", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 302 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12002, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 74, + "Id": "Metadata/Items/Currency/CurrencyGreaterEssenceCaster", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Большая сущность колдовства", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 302 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12003, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 75, + "Id": "Metadata/Items/Currency/CurrencyGreaterEssenceSpeed", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Большая сущность спешки", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 302 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12004, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 76, + "Id": "Metadata/Items/Currency/CurrencyGreaterEssenceAttribute", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Большая сущность бесконечности", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 302 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12005, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 77, + "Id": "Metadata/Items/Currency/CurrencyAddAtlasMod", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Простой секстант", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 70, + 616 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 12008, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 78, + "Id": "Metadata/Items/Currency/CurrencyAddAtlasModMid", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Превосходный секстант", + "DropLevel": 73, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 70, + 616 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 12009, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 79, + "Id": "Metadata/Items/Currency/CurrencyAddAtlasModHigh", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Пробуждённый секстант", + "DropLevel": 81, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 70, + 616 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12010, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 80, + "Id": "Metadata/Items/Currency/CurrencyAddAtlasModMaven", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Возвышенный секстант", + "DropLevel": 83, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 70, + 616 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12011, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 81, + "Id": "Metadata/Items/Currency/CurrencySealMapLow", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Печать картоходца-ученика", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12032, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 82, + "Id": "Metadata/Items/Currency/CurrencySealMapMid", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Печать картоходца-подмастерья", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12033, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 83, + "Id": "Metadata/Items/Currency/CurrencySealMapHigh", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Печать мастера картоходца", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12034, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 84, + "Id": "Metadata/Items/Currency/CurrencyRespecShapersOrb", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера разрушения", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 84, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 85, + "Id": "Metadata/Items/Currency/CurrencyBreachShard", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Осколок Разлома", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 202 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 90, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 86, + "Id": "Metadata/Items/Currency/CurrencyBreachFireShard", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Осколок Ксофа", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 202 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 85, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 87, + "Id": "Metadata/Items/Currency/CurrencyBreachColdShard", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Осколок Тул", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 202 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 86, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 88, + "Id": "Metadata/Items/Currency/CurrencyBreachLightningShard", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Осколок Иш", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 202 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 87, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 89, + "Id": "Metadata/Items/Currency/CurrencyBreachPhysicalShard", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Осколок Уул-Нетол", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 202 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 88, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 90, + "Id": "Metadata/Items/Currency/CurrencyBreachChaosShard", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Осколок Чаюлы", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 202 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 89, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 91, + "Id": "Metadata/Items/Currency/CurrencyBreachUpgradeUniqueFire", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Благословение Ксофа", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 440 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 91, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 92, + "Id": "Metadata/Items/Currency/CurrencyBreachUpgradeUniqueCold", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Благословение Тул", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 440 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 92, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 93, + "Id": "Metadata/Items/Currency/CurrencyBreachUpgradeUniqueLightning", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Благословение Иш", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 440 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 93, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 94, + "Id": "Metadata/Items/Currency/CurrencyBreachUpgradeUniquePhysical", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Благословение Уул-Нетол", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 440 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 94, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 95, + "Id": "Metadata/Items/Currency/CurrencyBreachUpgradeUniqueChaos", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Благословение Чаюлы", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 440 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 95, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 96, + "Id": "Metadata/Items/Currency/CurrencyLegionKaruiShard", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Вневременной осколок каруи", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 455 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 96, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 97, + "Id": "Metadata/Items/Currency/CurrencyLegionMarakethShard", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Вневременной осколок маракетов", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 455 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 97, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 98, + "Id": "Metadata/Items/Currency/CurrencyLegionEternalEmpireShard", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Вневременной осколок Вечной Империи", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 455 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 98, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 99, + "Id": "Metadata/Items/Currency/CurrencyLegionTemplarShard", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Вневременной осколок храмовников", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 455 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 99, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 100, + "Id": "Metadata/Items/Currency/CurrencyLegionVaalShard", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Вневременной осколок ваал", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 455 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 100, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 101, + "Id": "Metadata/Items/Currency/CurrencyAfflictionShard", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Осколок Симулякра", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 613 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 101, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 102, + "Id": "Metadata/Items/Currency/CurrencyRemoveMod", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера отмены", + "DropLevel": 35, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 102, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 103, + "Id": "Metadata/Items/Currency/CurrencyUpgradeToRareAndSetSockets", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера сплетения", + "DropLevel": 25, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 103, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 104, + "Id": "Metadata/Items/Currency/CurrencyRerollMapType", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера горизонтов", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 104, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 105, + "Id": "Metadata/Items/Currency/CurrencyUpgradeMapTier", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера Предвестника", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 105, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 106, + "Id": "Metadata/Items/Currency/CurrencyStrongboxQuality", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера инженера", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 106, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 107, + "Id": "Metadata/Items/Currency/CurrencyStrongboxQualityInfused", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Заряженная сфера инженера", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 2, + "ItemVisualIdentity": 107, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 108, + "Id": "Metadata/Items/Currency/CurrencyRerollUnique", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Древняя сфера", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 108, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 109, + "Id": "Metadata/Items/Currency/CurrencyFractureRare", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Раскалывающая сфера", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 109, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 110, + "Id": "Metadata/Items/Currency/CurrencyRemoveModShard", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Осколок отмены", + "DropLevel": 35, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 231 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 110, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 111, + "Id": "Metadata/Items/Currency/CurrencyUpgradeToRareAndSetSocketsShard", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Осколок сплетения", + "DropLevel": 25, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 231 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 111, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 112, + "Id": "Metadata/Items/Currency/CurrencyRerollMapTypeShard", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Осколок горизонтов", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 231 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 112, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 113, + "Id": "Metadata/Items/Currency/CurrencyUpgradeMapTierShard", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Осколок Предвестника", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 231, + 232 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 113, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 114, + "Id": "Metadata/Items/Currency/CurrencyStrongboxQualityShard", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Инженерный осколок", + "DropLevel": 8, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 231 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 114, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 115, + "Id": "Metadata/Items/Currency/CurrencyRerollUniqueShard", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Древний осколок", + "DropLevel": 35, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 231 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 115, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 116, + "Id": "Metadata/Items/Currency/CurrencyRerollRareShard", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Осколок хаоса", + "DropLevel": 8, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 231 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 116, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 117, + "Id": "Metadata/Items/Currency/CurrencyDuplicateShard", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Осколок зеркала", + "DropLevel": 35, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 231 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 117, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 118, + "Id": "Metadata/Items/Currency/CurrencyAddModToRareShard", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Осколок возвышения", + "DropLevel": 35, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 231 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 118, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 119, + "Id": "Metadata/Items/Currency/CurrencyUpgradeMagicToRareShard", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Осколок царей", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 231 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 119, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 120, + "Id": "Metadata/Items/Currency/CurrencyFractureRareShard", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Раскалывающий осколок", + "DropLevel": 35, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 231 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 120, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 121, + "Id": "Metadata/Items/Currency/CurrencyAddEquipmentSocketShard", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Осколок астромантии", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 231 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 121, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 122, + "Id": "Metadata/Items/Currency/Bestiary/BestiaryNet1", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Простая веревочная сеть", + "DropLevel": 2, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 299 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 122, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 123, + "Id": "Metadata/Items/Currency/Bestiary/BestiaryNet2", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Крепкая веревочная сеть", + "DropLevel": 7, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 299 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 123, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 124, + "Id": "Metadata/Items/Currency/Bestiary/BestiaryNet3", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Прочная веревочная сеть", + "DropLevel": 15, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 299 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 124, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 125, + "Id": "Metadata/Items/Currency/Bestiary/BestiaryNet4", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Простая железная сеть", + "DropLevel": 25, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 299 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 125, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 126, + "Id": "Metadata/Items/Currency/Bestiary/BestiaryNet5", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Крепкая железная сеть", + "DropLevel": 37, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 299 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 126, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 127, + "Id": "Metadata/Items/Currency/Bestiary/BestiaryNet6", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Прочная железная сеть", + "DropLevel": 48, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 299 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 127, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 128, + "Id": "Metadata/Items/Currency/Bestiary/BestiaryNet7", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Простая стальная сеть", + "DropLevel": 58, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 299 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 128, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 129, + "Id": "Metadata/Items/Currency/Bestiary/BestiaryNet8", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Крепкая стальная сеть", + "DropLevel": 60, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 299 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 129, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 130, + "Id": "Metadata/Items/Currency/Bestiary/BestiaryNet9", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Прочная стальная сеть", + "DropLevel": 64, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 299 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 130, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 131, + "Id": "Metadata/Items/Currency/Bestiary/BestiaryNet10", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Волшебная сеть", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 299 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 131, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 132, + "Id": "Metadata/Items/Currency/Bestiary/BestiaryNet11", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сеть некромантии", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 299 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 132, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 133, + "Id": "Metadata/Items/Currency/CurrencyIncursionVialTrap", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Фиал господства", + "DropLevel": 50, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 133, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 134, + "Id": "Metadata/Items/Currency/CurrencyIncursionVialHealing", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Фиал призыва", + "DropLevel": 50, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 134, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 135, + "Id": "Metadata/Items/Currency/CurrencyIncursionVialPoison", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Фиал пробуждения", + "DropLevel": 50, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 135, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 136, + "Id": "Metadata/Items/Currency/CurrencyIncursionVialLightning", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Фиал ритуала", + "DropLevel": 50, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 136, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 137, + "Id": "Metadata/Items/Currency/CurrencyIncursionVialFire", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Фиал судьбы", + "DropLevel": 50, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 137, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 138, + "Id": "Metadata/Items/Currency/CurrencyIncursionVialMinion", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Фиал последствий", + "DropLevel": 50, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 138, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 139, + "Id": "Metadata/Items/Currency/CurrencyIncursionVialBossFlask", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Фиал призрака", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 139, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 140, + "Id": "Metadata/Items/Currency/CurrencyIncursionVialBossJewel", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Фиал превосходства", + "DropLevel": 50, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 140, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 141, + "Id": "Metadata/Items/Currency/CurrencyIncursionVialBossAmulet", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Фиал жертвоприношения", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 143, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 142, + "Id": "Metadata/Items/Currency/CurrencyDelveCraftingFire", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Опалённое ископаемое", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 144, + "IsCorrupted": false, + "TradeMarketCategory": 43 + }, + { + "_index": 143, + "Id": "Metadata/Items/Currency/CurrencyDelveCraftingCold", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Ледяное ископаемое", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 145, + "IsCorrupted": false, + "TradeMarketCategory": 43 + }, + { + "_index": 144, + "Id": "Metadata/Items/Currency/CurrencyDelveCraftingLightning", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Металлическое ископаемое", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 146, + "IsCorrupted": false, + "TradeMarketCategory": 43 + }, + { + "_index": 145, + "Id": "Metadata/Items/Currency/CurrencyDelveCraftingPhysical", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Шероховатое ископаемое", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 147, + "IsCorrupted": false, + "TradeMarketCategory": 43 + }, + { + "_index": 146, + "Id": "Metadata/Items/Currency/CurrencyDelveCraftingChaos", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Искажённое ископаемое", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 148, + "IsCorrupted": false, + "TradeMarketCategory": 43 + }, + { + "_index": 147, + "Id": "Metadata/Items/Currency/CurrencyDelveCraftingLife", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Чистое ископаемое", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 149, + "IsCorrupted": false, + "TradeMarketCategory": 43 + }, + { + "_index": 148, + "Id": "Metadata/Items/Currency/CurrencyDelveCraftingDefences", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Плотное ископаемое", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 150, + "IsCorrupted": false, + "TradeMarketCategory": 43 + }, + { + "_index": 149, + "Id": "Metadata/Items/Currency/CurrencyDelveCraftingBleedPoison", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Пористое ископаемое", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 151, + "IsCorrupted": false, + "TradeMarketCategory": 43 + }, + { + "_index": 150, + "Id": "Metadata/Items/Currency/CurrencyDelveCraftingElemental", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Радужное ископаемое", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 152, + "IsCorrupted": false, + "TradeMarketCategory": 43 + }, + { + "_index": 151, + "Id": "Metadata/Items/Currency/CurrencyDelveCraftingCasterMods", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Эфирное ископаемое", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 153, + "IsCorrupted": false, + "TradeMarketCategory": 43 + }, + { + "_index": 152, + "Id": "Metadata/Items/Currency/CurrencyDelveCraftingAttackMods", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Зубчатое ископаемое", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 154, + "IsCorrupted": false, + "TradeMarketCategory": 43 + }, + { + "_index": 153, + "Id": "Metadata/Items/Currency/CurrencyDelveCraftingMana", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Светлое ископаемое", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 155, + "IsCorrupted": false, + "TradeMarketCategory": 43 + }, + { + "_index": 154, + "Id": "Metadata/Items/Currency/CurrencyDelveCraftingSpeed", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Дрожащее ископаемое", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 156, + "IsCorrupted": false, + "TradeMarketCategory": 43 + }, + { + "_index": 155, + "Id": "Metadata/Items/Currency/CurrencyDelveCraftingMinionsAuras", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Связующее ископаемое", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 157, + "IsCorrupted": false, + "TradeMarketCategory": 43 + }, + { + "_index": 156, + "Id": "Metadata/Items/Currency/CurrencyDelveCraftingQuality", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Безупречное ископаемое", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 158, + "IsCorrupted": false, + "TradeMarketCategory": 43 + }, + { + "_index": 157, + "Id": "Metadata/Items/Currency/CurrencyDelveCraftingEnchant", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Проворное ископаемое", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 159, + "IsCorrupted": false, + "TradeMarketCategory": 43 + }, + { + "_index": 158, + "Id": "Metadata/Items/Currency/CurrencyDelveCraftingSockets", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Фундаментальное ископаемое", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 160, + "IsCorrupted": false, + "TradeMarketCategory": 43 + }, + { + "_index": 159, + "Id": "Metadata/Items/Currency/CurrencyDelveCraftingGemLevel", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Гранёное ископаемое", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 161, + "IsCorrupted": false, + "TradeMarketCategory": 43 + }, + { + "_index": 160, + "Id": "Metadata/Items/Currency/CurrencyDelveCraftingVaal", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Окровавленное ископаемое", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 162, + "IsCorrupted": false, + "TradeMarketCategory": 43 + }, + { + "_index": 161, + "Id": "Metadata/Items/Currency/CurrencyDelveCraftingAbyss", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Пустое ископаемое", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 163, + "IsCorrupted": false, + "TradeMarketCategory": 43 + }, + { + "_index": 162, + "Id": "Metadata/Items/Currency/CurrencyDelveCraftingMirror", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Треснувшее ископаемое", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 164, + "IsCorrupted": false, + "TradeMarketCategory": 43 + }, + { + "_index": 163, + "Id": "Metadata/Items/Currency/CurrencyDelveCraftingCorruptEssence", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Резное ископаемое", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 165, + "IsCorrupted": false, + "TradeMarketCategory": 43 + }, + { + "_index": 164, + "Id": "Metadata/Items/Currency/CurrencyDelveCraftingRandom", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Замысловатое ископаемое", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": 43 + }, + { + "_index": 165, + "Id": "Metadata/Items/Currency/CurrencyDelveCraftingLuckyModRolls", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Освящённое ископаемое", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 167, + "IsCorrupted": false, + "TradeMarketCategory": 43 + }, + { + "_index": 166, + "Id": "Metadata/Items/Currency/CurrencyDelveCraftingSellPrice", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Позолоченное ископаемое", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 168, + "IsCorrupted": false, + "TradeMarketCategory": 43 + }, + { + "_index": 167, + "Id": "Metadata/Items/Delve/DelveSocketableCurrencyUpgrade1", + "ItemClassesKey": 52, + "Width": 1, + "Height": 1, + "Name": "Простейший алхимический резонатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 169, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 168, + "Id": "Metadata/Items/Delve/DelveSocketableCurrencyUpgrade2", + "ItemClassesKey": 52, + "Width": 1, + "Height": 2, + "Name": "Активный алхимический резонатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 170, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 169, + "Id": "Metadata/Items/Delve/DelveSocketableCurrencyUpgrade3", + "ItemClassesKey": 52, + "Width": 2, + "Height": 2, + "Name": "Мощный алхимический резонатор", + "DropLevel": 34, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 171, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 170, + "Id": "Metadata/Items/Delve/DelveSocketableCurrencyUpgrade4", + "ItemClassesKey": 52, + "Width": 2, + "Height": 2, + "Name": "Превосходный алхимический резонатор", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 172, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 171, + "Id": "Metadata/Items/Delve/DelveSocketableCurrencyReroll1", + "ItemClassesKey": 52, + "Width": 1, + "Height": 1, + "Name": "Простейший хаотический резонатор", + "DropLevel": 34, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 177, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 172, + "Id": "Metadata/Items/Delve/DelveSocketableCurrencyReroll2", + "ItemClassesKey": 52, + "Width": 1, + "Height": 2, + "Name": "Активный хаотический резонатор", + "DropLevel": 34, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 178, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 173, + "Id": "Metadata/Items/Delve/DelveSocketableCurrencyReroll3", + "ItemClassesKey": 52, + "Width": 2, + "Height": 2, + "Name": "Мощный хаотический резонатор", + "DropLevel": 34, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 179, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 174, + "Id": "Metadata/Items/Delve/DelveSocketableCurrencyReroll4", + "ItemClassesKey": 52, + "Width": 2, + "Height": 2, + "Name": "Превосходный хаотический резонатор", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 180, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 175, + "Id": "Metadata/Items/Delve/DelveStackableSocketableCurrencyUpgrade1", + "ItemClassesKey": 58, + "Width": 1, + "Height": 1, + "Name": "Простейший алхимический резонатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 169, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 176, + "Id": "Metadata/Items/Delve/DelveStackableSocketableCurrencyUpgrade2", + "ItemClassesKey": 58, + "Width": 1, + "Height": 2, + "Name": "Активный алхимический резонатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 170, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 177, + "Id": "Metadata/Items/Delve/DelveStackableSocketableCurrencyUpgrade3", + "ItemClassesKey": 58, + "Width": 2, + "Height": 2, + "Name": "Мощный алхимический резонатор", + "DropLevel": 34, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 171, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 178, + "Id": "Metadata/Items/Delve/DelveStackableSocketableCurrencyUpgrade4", + "ItemClassesKey": 58, + "Width": 2, + "Height": 2, + "Name": "Превосходный алхимический резонатор", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 172, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 179, + "Id": "Metadata/Items/Delve/DelveStackableSocketableCurrencyReroll1", + "ItemClassesKey": 58, + "Width": 1, + "Height": 1, + "Name": "Простейший хаотический резонатор", + "DropLevel": 34, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 177, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 180, + "Id": "Metadata/Items/Delve/DelveStackableSocketableCurrencyReroll2", + "ItemClassesKey": 58, + "Width": 1, + "Height": 2, + "Name": "Активный хаотический резонатор", + "DropLevel": 34, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 178, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 181, + "Id": "Metadata/Items/Delve/DelveStackableSocketableCurrencyReroll3", + "ItemClassesKey": 58, + "Width": 2, + "Height": 2, + "Name": "Мощный хаотический резонатор", + "DropLevel": 34, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 179, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 182, + "Id": "Metadata/Items/Delve/DelveStackableSocketableCurrencyReroll4", + "ItemClassesKey": 58, + "Width": 2, + "Height": 2, + "Name": "Превосходный хаотический резонатор", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 180, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 183, + "Id": "Metadata/Items/Currency/CurrencyJewelleryQualityLife", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Плотский катализатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 615 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12902, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 184, + "Id": "Metadata/Items/Currency/CurrencyJewelleryQualityMana", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Невральный катализатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 615 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12903, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 185, + "Id": "Metadata/Items/Currency/CurrencyJewelleryQualityDefences", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Панцирный катализатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 615 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12904, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 186, + "Id": "Metadata/Items/Currency/CurrencyJewelleryQualityPhysical", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Катализатор Уул-Нетол", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 615 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12905, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 187, + "Id": "Metadata/Items/Currency/CurrencyJewelleryQualityFire", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Катализатор Ксофа", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 615 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12906, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 188, + "Id": "Metadata/Items/Currency/CurrencyJewelleryQualityCold", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Катализатор Тул", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 615 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12907, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 189, + "Id": "Metadata/Items/Currency/CurrencyJewelleryQualityLightning", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Катализатор Иш", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 615 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12908, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 190, + "Id": "Metadata/Items/Currency/CurrencyJewelleryQualityChaos", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Катализатор Чаюлы", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 615 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12909, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 191, + "Id": "Metadata/Items/Currency/CurrencyJewelleryQualityAttack", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Разбойничий катализатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 615 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12910, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 192, + "Id": "Metadata/Items/Currency/CurrencyJewelleryQualityCaster", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Свистящий катализатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 615 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12911, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 193, + "Id": "Metadata/Items/Currency/CurrencyJewelleryQualitySpeed", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Шуршащий катализатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 615 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12912, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 194, + "Id": "Metadata/Items/Currency/CurrencyJewelleryQualityAttribute", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Адаптивный катализатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 615 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12913, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 195, + "Id": "Metadata/Items/Currency/CurrencyHarbingerBlessingBelt", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Свиток времени и света", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12914, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 196, + "Id": "Metadata/Items/Currency/CurrencyHarbingerBlessingQuiver", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Свиток фрагментации", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12915, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 197, + "Id": "Metadata/Items/Currency/CurrencyHarbingerBlessingHelmet", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Свиток дерегуляции", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12916, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 198, + "Id": "Metadata/Items/Currency/CurrencyHarbingerBlessingSword", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Свиток электрошока", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12917, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 199, + "Id": "Metadata/Items/Currency/CurrencyHarbingerBlessingStaff", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Свиток кровосожжения", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12918, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 200, + "Id": "Metadata/Items/Currency/CurrencyHarbingerBlessingShield", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Свиток зеркальности", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12919, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 201, + "Id": "Metadata/Items/Currency/CurrencyAddGemExperience", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Линза награнения", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12920, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 202, + "Id": "Metadata/Items/Currency/CurrencyRitualSplinter", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Ритуальный осколок", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13344, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 203, + "Id": "Metadata/Items/Currency/CurrencyRitualStone", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Ритуальный сосуд", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13345, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 204, + "Id": "Metadata/Items/Currency/CurrencyEldritchEmber1", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Мелкий древний уголёк", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 922, + 923 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13561, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 205, + "Id": "Metadata/Items/Currency/CurrencyEldritchEmber2", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Крупный древний уголёк", + "DropLevel": 73, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 919, + 923 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13562, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 206, + "Id": "Metadata/Items/Currency/CurrencyEldritchEmber3", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Великий древний уголёк", + "DropLevel": 78, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 919, + 923 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13563, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 207, + "Id": "Metadata/Items/Currency/CurrencyEldritchEmber4", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Превосходный древний уголёк", + "DropLevel": 81, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 919, + 923 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13564, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 208, + "Id": "Metadata/Items/Currency/CurrencyEldritchIchor1", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Мелкий зловещий ихор", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 922, + 924 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13565, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 209, + "Id": "Metadata/Items/Currency/CurrencyEldritchIchor2", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Крупный зловещий ихор", + "DropLevel": 73, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 918, + 924 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13566, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 210, + "Id": "Metadata/Items/Currency/CurrencyEldritchIchor3", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Великий зловещий ихор", + "DropLevel": 78, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 918, + 924 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13567, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 211, + "Id": "Metadata/Items/Currency/CurrencyEldritchIchor4", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Превосходный зловещий ихор", + "DropLevel": 81, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 918, + 924 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13568, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 212, + "Id": "Metadata/Items/Currency/CurrencyConflictOrb", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера вражды", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13569, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 213, + "Id": "Metadata/Items/Currency/CurrencySkillGemToken", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Необработанный камень", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13573, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 214, + "Id": "Metadata/Items/MicrotransactionCurrency/MicrotransactionWrapper1x1", + "ItemClassesKey": 40, + "Width": 1, + "Height": 1, + "Name": "Упаковка для микротранзакций", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 523, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 215, + "Id": "Metadata/Items/MicrotransactionCurrency/MicrotransactionWrapper1x2", + "ItemClassesKey": 40, + "Width": 1, + "Height": 2, + "Name": "Упаковка для микротранзакций", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 524, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 216, + "Id": "Metadata/Items/MicrotransactionCurrency/MicrotransactionWrapper2x1", + "ItemClassesKey": 40, + "Width": 2, + "Height": 1, + "Name": "Упаковка для микротранзакций", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 527, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 217, + "Id": "Metadata/Items/MicrotransactionCurrency/MicrotransactionWrapper2x2", + "ItemClassesKey": 40, + "Width": 2, + "Height": 2, + "Name": "Упаковка для микротранзакций", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 528, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 218, + "Id": "Metadata/Items/MicrotransactionCurrency/MicrotransactionWrapper2x3", + "ItemClassesKey": 40, + "Width": 2, + "Height": 3, + "Name": "Упаковка для микротранзакций", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 529, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 219, + "Id": "Metadata/Items/MicrotransactionCurrency/MicrotransactionMysteryBoxWrapper", + "ItemClassesKey": 40, + "Width": 2, + "Height": 2, + "Name": "Загадочная коробка", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 528, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 220, + "Id": "Metadata/Items/MicrotransactionAnimations/MicrotransactionDanceDuelist", + "ItemClassesKey": 40, + "Width": 2, + "Height": 2, + "Name": "Танец: дуэлянт", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 188, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 221, + "Id": "Metadata/Items/MicrotransactionAnimations/MicrotransactionDanceMarauder", + "ItemClassesKey": 40, + "Width": 2, + "Height": 2, + "Name": "Танец: дикарь", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 189, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 222, + "Id": "Metadata/Items/MicrotransactionAnimations/MicrotransactionDanceRanger", + "ItemClassesKey": 40, + "Width": 2, + "Height": 2, + "Name": "Танец: охотница", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 190, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 223, + "Id": "Metadata/Items/MicrotransactionAnimations/MicrotransactionDanceShadow", + "ItemClassesKey": 40, + "Width": 2, + "Height": 2, + "Name": "Танец: бандит", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 191, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 224, + "Id": "Metadata/Items/MicrotransactionAnimations/MicrotransactionDanceTemplar", + "ItemClassesKey": 40, + "Width": 2, + "Height": 2, + "Name": "Танец: жрец", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 192, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 225, + "Id": "Metadata/Items/MicrotransactionAnimations/MicrotransactionDanceWitch", + "ItemClassesKey": 40, + "Width": 2, + "Height": 2, + "Name": "Танец: ведьма", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 193, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 226, + "Id": "Metadata/Items/MicrotransactionAnimations/MicrotransactionDanceScion", + "ItemClassesKey": 40, + "Width": 2, + "Height": 2, + "Name": "Танец: дворянка", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 194, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 227, + "Id": "Metadata/Items/MicrotransactionCurrency/HiddenItem1x1", + "ItemClassesKey": 61, + "Width": 1, + "Height": 1, + "Name": "Скрытый предмет", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 535, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 228, + "Id": "Metadata/Items/MicrotransactionCurrency/HiddenItem1x2", + "ItemClassesKey": 61, + "Width": 1, + "Height": 2, + "Name": "Скрытый предмет", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 536, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 229, + "Id": "Metadata/Items/MicrotransactionCurrency/HiddenItem1x3", + "ItemClassesKey": 61, + "Width": 1, + "Height": 3, + "Name": "Скрытый предмет", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 537, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 230, + "Id": "Metadata/Items/MicrotransactionCurrency/HiddenItem1x4", + "ItemClassesKey": 61, + "Width": 1, + "Height": 4, + "Name": "Скрытый предмет", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 538, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 231, + "Id": "Metadata/Items/MicrotransactionCurrency/HiddenItem2x1", + "ItemClassesKey": 61, + "Width": 2, + "Height": 1, + "Name": "Скрытый предмет", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 539, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 232, + "Id": "Metadata/Items/MicrotransactionCurrency/HiddenItem2x2", + "ItemClassesKey": 61, + "Width": 2, + "Height": 2, + "Name": "Скрытый предмет", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 540, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 233, + "Id": "Metadata/Items/MicrotransactionCurrency/HiddenItem2x3", + "ItemClassesKey": 61, + "Width": 2, + "Height": 3, + "Name": "Скрытый предмет", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 541, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 234, + "Id": "Metadata/Items/MicrotransactionCurrency/HiddenItem2x4", + "ItemClassesKey": 61, + "Width": 2, + "Height": 4, + "Name": "Скрытый предмет", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 542, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 235, + "Id": "Metadata/Items/MicrotransactionCurrency/HiddenItem3x2", + "ItemClassesKey": 61, + "Width": 3, + "Height": 2, + "Name": "Скрытый предмет", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 544, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 236, + "Id": "Metadata/Items/MicrotransactionCurrency/HiddenItem3x1", + "ItemClassesKey": 61, + "Width": 3, + "Height": 1, + "Name": "Скрытый предмет", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 543, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 237, + "Id": "Metadata/Items/MicrotransactionCurrency/HiddenItem4x1", + "ItemClassesKey": 61, + "Width": 4, + "Height": 1, + "Name": "Скрытый предмет", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 545, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 238, + "Id": "Metadata/Items/MicrotransactionCurrency/GiftBox1x1", + "ItemClassesKey": 87, + "Width": 1, + "Height": 1, + "Name": "Упакованный подарок", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 512, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 239, + "Id": "Metadata/Items/MicrotransactionCurrency/GiftBox1x2", + "ItemClassesKey": 87, + "Width": 1, + "Height": 2, + "Name": "Упакованный подарок", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 513, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 240, + "Id": "Metadata/Items/MicrotransactionCurrency/GiftBox1x3", + "ItemClassesKey": 87, + "Width": 1, + "Height": 3, + "Name": "Упакованный подарок", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 514, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 241, + "Id": "Metadata/Items/MicrotransactionCurrency/GiftBox1x4", + "ItemClassesKey": 87, + "Width": 1, + "Height": 4, + "Name": "Упакованный подарок", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 515, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 242, + "Id": "Metadata/Items/MicrotransactionCurrency/GiftBox2x1", + "ItemClassesKey": 87, + "Width": 2, + "Height": 1, + "Name": "Упакованный подарок", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 516, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 243, + "Id": "Metadata/Items/MicrotransactionCurrency/GiftBox2x2", + "ItemClassesKey": 87, + "Width": 2, + "Height": 2, + "Name": "Упакованный подарок", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 244, + "Id": "Metadata/Items/MicrotransactionCurrency/GiftBox2x3", + "ItemClassesKey": 87, + "Width": 2, + "Height": 3, + "Name": "Упакованный подарок", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 518, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 245, + "Id": "Metadata/Items/MicrotransactionCurrency/GiftBox2x4", + "ItemClassesKey": 87, + "Width": 2, + "Height": 4, + "Name": "Упакованный подарок", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 519, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 246, + "Id": "Metadata/Items/MicrotransactionCurrency/GiftBox3x2", + "ItemClassesKey": 87, + "Width": 3, + "Height": 2, + "Name": "Упакованный подарок", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 520, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 247, + "Id": "Metadata/Items/MicrotransactionCurrency/GiftBox3x1", + "ItemClassesKey": 87, + "Width": 3, + "Height": 1, + "Name": "Упакованный подарок", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 521, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 248, + "Id": "Metadata/Items/MicrotransactionCurrency/GiftBox4x1", + "ItemClassesKey": 87, + "Width": 4, + "Height": 1, + "Name": "Упакованный подарок", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 522, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 249, + "Id": "Metadata/Items/MicrotransactionCurrency/HiddenItem1x1Ritual", + "ItemClassesKey": 61, + "Width": 1, + "Height": 1, + "Name": "Скрытый предмет", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 546, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 250, + "Id": "Metadata/Items/MicrotransactionCurrency/HiddenItem1x2Ritual", + "ItemClassesKey": 61, + "Width": 1, + "Height": 2, + "Name": "Скрытый предмет", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 547, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 251, + "Id": "Metadata/Items/MicrotransactionCurrency/HiddenItem1x3Ritual", + "ItemClassesKey": 61, + "Width": 1, + "Height": 3, + "Name": "Скрытый предмет", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 548, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 252, + "Id": "Metadata/Items/MicrotransactionCurrency/HiddenItem1x4Ritual", + "ItemClassesKey": 61, + "Width": 1, + "Height": 4, + "Name": "Скрытый предмет", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 549, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 253, + "Id": "Metadata/Items/MicrotransactionCurrency/HiddenItem2x1Ritual", + "ItemClassesKey": 61, + "Width": 2, + "Height": 1, + "Name": "Скрытый предмет", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 550, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 254, + "Id": "Metadata/Items/MicrotransactionCurrency/HiddenItem2x2Ritual", + "ItemClassesKey": 61, + "Width": 2, + "Height": 2, + "Name": "Скрытый предмет", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 551, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 255, + "Id": "Metadata/Items/MicrotransactionCurrency/HiddenItem2x3Ritual", + "ItemClassesKey": 61, + "Width": 2, + "Height": 3, + "Name": "Скрытый предмет", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 552, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 256, + "Id": "Metadata/Items/MicrotransactionCurrency/HiddenItem2x4Ritual", + "ItemClassesKey": 61, + "Width": 2, + "Height": 4, + "Name": "Скрытый предмет", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 553, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 257, + "Id": "Metadata/Items/MicrotransactionCurrency/HiddenItem3x2Ritual", + "ItemClassesKey": 61, + "Width": 3, + "Height": 2, + "Name": "Скрытый предмет", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 555, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 258, + "Id": "Metadata/Items/MicrotransactionCurrency/HiddenItem3x1Ritual", + "ItemClassesKey": 61, + "Width": 3, + "Height": 1, + "Name": "Скрытый предмет", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 554, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 259, + "Id": "Metadata/Items/MicrotransactionCurrency/HiddenItem4x1Ritual", + "ItemClassesKey": 61, + "Width": 4, + "Height": 1, + "Name": "Скрытый предмет", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 556, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 260, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandSwords/TwoHandSwordDev", + "ItemClassesKey": 15, + "Width": 2, + "Height": 4, + "Name": "Клинок из ключей", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 6908, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 261, + "Id": "Metadata/items/Weapons/OneHandWeapons/OneHandSwords/OneHandSwordDemigods1", + "ItemClassesKey": 9, + "Width": 2, + "Height": 3, + "Name": "Золотой клинок", + "DropLevel": 1, + "Implicit_ModsKeys": [ + 3666 + ], + "TagsKeys": [ + 33, + 656 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13347, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 262, + "Id": "Metadata/Items/Weapons/TwoHandWeapon/FishingRods/FishingRod1", + "ItemClassesKey": 37, + "Width": 1, + "Height": 4, + "Name": "Удочка", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 9341, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 263, + "Id": "Metadata/Items/Rings/RingDemigods1", + "ItemClassesKey": 5, + "Width": 1, + "Height": 1, + "Name": "Золотой обруч", + "DropLevel": 12, + "Implicit_ModsKeys": [ + 3665 + ], + "TagsKeys": [ + 33, + 656 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 6952, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 264, + "Id": "Metadata/Items/Belts/BeltDemigods1", + "ItemClassesKey": 21, + "Width": 2, + "Height": 1, + "Name": "Шитый золотом пояс", + "DropLevel": 12, + "Implicit_ModsKeys": [ + 3669 + ], + "TagsKeys": [ + 33, + 656 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 6987, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 265, + "Id": "Metadata/Items/Armours/Shields/ShieldDemigods", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Золотое пламя", + "DropLevel": 15, + "Implicit_ModsKeys": [ + 3672 + ], + "TagsKeys": [ + 33, + 656 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 11017, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 266, + "Id": "Metadata/Items/Armours/Helmets/HelmetWreath1", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Золотой венок", + "DropLevel": 12, + "Implicit_ModsKeys": [ + 3663 + ], + "TagsKeys": [ + 33, + 656 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 7087, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 267, + "Id": "Metadata/Items/Armours/Helmets/HelmetDemigods1", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Золотой лик", + "DropLevel": 12, + "Implicit_ModsKeys": [ + 3674 + ], + "TagsKeys": [ + 33, + 656 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 7090, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 268, + "Id": "Metadata/Items/Armours/BodyArmours/BodyDemigods1", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Золотая мантия", + "DropLevel": 20, + "Implicit_ModsKeys": [ + 3675 + ], + "TagsKeys": [ + 44, + 33, + 656 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 11133, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 269, + "Id": "Metadata/Items/Armours/Boots/BootsDemigods1", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Золотые калиги", + "DropLevel": 12, + "Implicit_ModsKeys": [ + 3673 + ], + "TagsKeys": [ + 33, + 656 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 7168, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 270, + "Id": "Metadata/Items/Armours/Gloves/GlovesDemigods1", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Золотые перчатки", + "DropLevel": 12, + "Implicit_ModsKeys": [ + 3667 + ], + "TagsKeys": [ + 33, + 656 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 9425, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 271, + "Id": "Metadata/Items/QuestItems/MapUpgrades/MapUpgradeTier1_1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Сфера Создателя (уровень 1)", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12006, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 272, + "Id": "Metadata/Items/QuestItems/MapUpgrades/MapUpgradeTier2_1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Сфера Создателя (уровень 2)", + "DropLevel": 69, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12006, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 273, + "Id": "Metadata/Items/QuestItems/MapUpgrades/MapUpgradeTier3_1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Сфера Создателя (уровень 3)", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12006, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 274, + "Id": "Metadata/Items/QuestItems/MapUpgrades/MapUpgradeTier4_1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Сфера Создателя (уровень 4)", + "DropLevel": 71, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12006, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 275, + "Id": "Metadata/Items/QuestItems/MapUpgrades/MapUpgradeTier5_1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Сфера Создателя (уровень 5)", + "DropLevel": 72, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12006, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 276, + "Id": "Metadata/Items/QuestItems/MapUpgrades/MapUpgradeTier6_1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Сфера Создателя (уровень 6)", + "DropLevel": 73, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12006, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 277, + "Id": "Metadata/Items/QuestItems/MapUpgrades/MapUpgradeTier7_1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Сфера Создателя (уровень 7)", + "DropLevel": 74, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12006, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 278, + "Id": "Metadata/Items/QuestItems/MapUpgrades/MapUpgradeTier8_1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Сфера Создателя (уровень 8)", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12006, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 279, + "Id": "Metadata/Items/QuestItems/MapUpgrades/MapUpgradeTier8_2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Сфера Создателя (уровень 8)", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12006, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 280, + "Id": "Metadata/Items/QuestItems/MapUpgrades/MapUpgradeTier9_1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Сфера Создателя (уровень 9)", + "DropLevel": 76, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12006, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 281, + "Id": "Metadata/Items/QuestItems/MapUpgrades/MapUpgradeTier9_2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Сфера Создателя (уровень 9)", + "DropLevel": 76, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12006, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 282, + "Id": "Metadata/Items/QuestItems/MapUpgrades/MapUpgradeTier9_3", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Сфера Создателя (уровень 9)", + "DropLevel": 76, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12006, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 283, + "Id": "Metadata/Items/QuestItems/MapUpgrades/MapUpgradeTier10_1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Сфера Создателя (уровень 10)", + "DropLevel": 77, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12006, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 284, + "Id": "Metadata/Items/QuestItems/MapUpgrades/MapUpgradeTier10_2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Сфера Создателя (уровень 10)", + "DropLevel": 77, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12006, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 285, + "Id": "Metadata/Items/QuestItems/MapUpgrades/MapUpgradeTier10_3", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Сфера Создателя (уровень 10)", + "DropLevel": 77, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12006, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 286, + "Id": "Metadata/Items/QuestItems/MapUpgrades/MapUpgradeTierTo16", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Сфера Древнего", + "DropLevel": 84, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12007, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 287, + "Id": "Metadata/Items/QuestItems/ShaperKey", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Ключ Создателя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12465, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 288, + "Id": "Metadata/Items/QuestItems/ShaperMemoryFragments/ShaperMemoryFragment1_1", + "ItemClassesKey": 31, + "Width": 2, + "Height": 1, + "Name": "Обрывок воспоминаний I", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7298, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 289, + "Id": "Metadata/Items/QuestItems/ShaperMemoryFragments/ShaperMemoryFragment2_1", + "ItemClassesKey": 31, + "Width": 2, + "Height": 1, + "Name": "Обрывок воспоминаний II", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7298, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 290, + "Id": "Metadata/Items/QuestItems/ShaperMemoryFragments/ShaperMemoryFragment3_1", + "ItemClassesKey": 31, + "Width": 2, + "Height": 1, + "Name": "Обрывок воспоминаний III", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7298, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 291, + "Id": "Metadata/Items/QuestItems/ShaperMemoryFragments/ShaperMemoryFragment4_1", + "ItemClassesKey": 31, + "Width": 2, + "Height": 1, + "Name": "Обрывок воспоминаний IV", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7298, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 292, + "Id": "Metadata/Items/QuestItems/ShaperMemoryFragments/ShaperMemoryFragment5_1", + "ItemClassesKey": 31, + "Width": 2, + "Height": 1, + "Name": "Обрывок воспоминаний V", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7298, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 293, + "Id": "Metadata/Items/QuestItems/ShaperMemoryFragments/ShaperMemoryFragment6_1", + "ItemClassesKey": 31, + "Width": 2, + "Height": 1, + "Name": "Обрывок воспоминаний VI", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7298, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 294, + "Id": "Metadata/Items/QuestItems/ShaperMemoryFragments/ShaperMemoryFragment7_1", + "ItemClassesKey": 31, + "Width": 2, + "Height": 1, + "Name": "Обрывок воспоминаний VII", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7298, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 295, + "Id": "Metadata/Items/QuestItems/ShaperMemoryFragments/ShaperMemoryFragment8_1", + "ItemClassesKey": 31, + "Width": 2, + "Height": 1, + "Name": "Обрывок воспоминаний VIII", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7298, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 296, + "Id": "Metadata/Items/QuestItems/ShaperMemoryFragments/ShaperMemoryFragment8_2", + "ItemClassesKey": 31, + "Width": 2, + "Height": 1, + "Name": "Обрывок воспоминаний IX", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7298, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 297, + "Id": "Metadata/Items/QuestItems/ShaperMemoryFragments/ShaperMemoryFragment9_1", + "ItemClassesKey": 31, + "Width": 2, + "Height": 1, + "Name": "Обрывок воспоминаний X", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7298, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 298, + "Id": "Metadata/Items/QuestItems/ShaperMemoryFragments/ShaperMemoryFragment9_2", + "ItemClassesKey": 31, + "Width": 2, + "Height": 1, + "Name": "Обрывок воспоминаний XI", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7298, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 299, + "Id": "Metadata/Items/QuestItems/ShaperMemoryFragments/ShaperMemoryFragment9_3", + "ItemClassesKey": 31, + "Width": 2, + "Height": 1, + "Name": "Обрывок воспоминаний XII", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7298, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 300, + "Id": "Metadata/Items/QuestItems/ShaperMemoryFragments/ShaperMemoryFragment10_1", + "ItemClassesKey": 31, + "Width": 2, + "Height": 1, + "Name": "Обрывок воспоминаний XIII", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7298, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 301, + "Id": "Metadata/Items/QuestItems/ShaperMemoryFragments/ShaperMemoryFragment10_2", + "ItemClassesKey": 31, + "Width": 2, + "Height": 1, + "Name": "Обрывок воспоминаний XIV", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7298, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 302, + "Id": "Metadata/Items/QuestItems/ShaperMemoryFragments/ShaperMemoryFragment10_3", + "ItemClassesKey": 31, + "Width": 2, + "Height": 1, + "Name": "Обрывок воспоминаний XV", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7298, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 303, + "Id": "Metadata/Items/QuestItems/SkillBooks/Book-a1q6", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга умений", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7299, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 304, + "Id": "Metadata/Items/QuestItems/SkillBooks/Book-a1q7", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга умений", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7299, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 305, + "Id": "Metadata/Items/QuestItems/SkillBooks/Book-a1q8", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга раскаяния", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7300, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 306, + "Id": "Metadata/Items/QuestItems/SkillBooks/Book-a1q9", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга умений", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7299, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 307, + "Id": "Metadata/Items/QuestItems/SkillBooks/Book-a2q5", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга раскаяния", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7300, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 308, + "Id": "Metadata/Items/QuestItems/SkillBooks/Book-a3q9", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга умений", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7299, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 309, + "Id": "Metadata/Items/QuestItems/SkillBooks/Book-a3q11v0", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга умений", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7301, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 310, + "Id": "Metadata/Items/QuestItems/SkillBooks/Book-a3q11v1", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга умений", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7301, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 311, + "Id": "Metadata/Items/QuestItems/SkillBooks/Book-a3q11v2", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга умений", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7301, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 312, + "Id": "Metadata/Items/QuestItems/SkillBooks/Descent2_1", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга умений", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7299, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 313, + "Id": "Metadata/Items/QuestItems/SkillBooks/Descent2_2", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга умений", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7299, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 314, + "Id": "Metadata/Items/QuestItems/SkillBooks/Descent2_3", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга умений", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7299, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 315, + "Id": "Metadata/Items/QuestItems/SkillBooks/Descent2_4", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга умений", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7299, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 316, + "Id": "Metadata/Items/QuestItems/SkillBooks/DelevelBook", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга возврата", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7302, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 317, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookElder", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга умений Атласа", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7303, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 318, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookMaven", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга умений Атласа", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7303, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 319, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookTangle", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга умений Атласа", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7303, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 320, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookCleansingFire", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга умений Атласа", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7303, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 321, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookInfiniteHunger", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга умений Атласа", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7303, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 322, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookBlackStar", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга умений Атласа", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7303, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 323, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookGeneric1", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга знаний I", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7304, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 324, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookGeneric2", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга знаний II", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7304, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 325, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookGeneric3", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга знаний III", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7304, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 326, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookGeneric4", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга знаний IV", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7304, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 327, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookGeneric5", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга знаний V", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7304, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 328, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookGeneric6", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга знаний VI", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7304, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 329, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookGeneric7", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга знаний VII", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7304, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 330, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookGeneric8", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга знаний VIII", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7304, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 331, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookGeneric9", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга знаний IX", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7304, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 332, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookGeneric10", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга знаний X", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7304, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 333, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookGeneric11", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга знаний XI", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7304, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 334, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookGeneric12", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга знаний XII", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7304, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 335, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookGeneric13", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга знаний XIII", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7304, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 336, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookGeneric14", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга знаний XIV", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7304, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 337, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookGeneric15", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга знаний XV", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7304, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 338, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookBreach1", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Потусторонняя книга знаний I", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7307, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 339, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookBreach2", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Потусторонняя книга знаний II", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7307, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 340, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookBreach3", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Потусторонняя книга знаний III", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7307, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 341, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookBreach4", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Потусторонняя книга знаний IV", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7307, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 342, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookRitual1", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Ритуальная книга знаний I", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7308, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 343, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookRitual2", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Ритуальная книга знаний II", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7308, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 344, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookRitual3", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Ритуальная книга знаний III", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7308, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 345, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookRitual4", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Ритуальная книга знаний IV", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7308, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 346, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookExpedition1", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Руническая книга знаний I", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7305, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 347, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookExpedition2", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Руническая книга знаний II", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7305, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 348, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookExpedition3", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Руническая книга знаний III", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7305, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 349, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookExpedition4", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Руническая книга знаний IV", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7305, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 350, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookDelirium1", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Беспорядочная книга знаний I", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7306, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 351, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookDelirium2", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Беспорядочная книга знаний II", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7306, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 352, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookDelirium3", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Беспорядочная книга знаний III", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7306, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 353, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookDelirium4", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Беспорядочная книга знаний IV", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7306, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 354, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookBoss1", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Победоносная книга знаний I", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7309, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 355, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookBoss2", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Победоносная книга знаний II", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7309, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 356, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookBoss3", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Победоносная книга знаний III", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7309, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 357, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookBoss4", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Победоносная книга знаний IV", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7309, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 358, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookBoss5", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Победоносная книга знаний V", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7309, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 359, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookPinnacle1", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга знаний Арбитра I", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7310, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 360, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookPinnacle2", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга знаний Арбитра II", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7310, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 361, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookPinnacle3", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга знаний Арбитра III", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7310, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 362, + "Id": "Metadata/Items/QuestItems/SkillBooks/AtlasSkillBookPinnacle4", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Книга знаний Арбитра IV", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7310, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 363, + "Id": "Metadata/Items/QuestItems/Act11/DominusKey", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Ключ от хранилища", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12940, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 364, + "Id": "Metadata/Items/QuestItems/Hellscape/BloodCrucible", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Кровавый горн", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12941, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 365, + "Id": "Metadata/Items/QuestItems/Hellscape/DreamFurnace", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Тигель грёз", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12942, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 366, + "Id": "Metadata/Items/QuestItems/Hellscape/VisceraCauldron", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Чревяной чан", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12943, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 367, + "Id": "Metadata/Items/QuestItems/Sentinel/Controller", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Пульт управления", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13623, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 368, + "Id": "Metadata/Items/Masters/PirateTreasureKey", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Ключ Мастера", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 7313, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 369, + "Id": "Metadata/Items/Incursion/IncursionKey", + "ItemClassesKey": 51, + "Width": 1, + "Height": 1, + "Name": "Камень переходов", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12551, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 370, + "Id": "Metadata/Items/Incursion/IncursionBomb", + "ItemClassesKey": 51, + "Width": 1, + "Height": 1, + "Name": "Бочка со взрывчаткой", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12552, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 371, + "Id": "Metadata/Items/Gems/SkillGemIceNova", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Кольцо льда", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8404, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 372, + "Id": "Metadata/Items/Gems/SkillGemLeapSlam", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Наскок", + "DropLevel": 23, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 301 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 8405, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 373, + "Id": "Metadata/Items/Gems/SkillGemShieldCharge", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Удар щитом", + "DropLevel": 7, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 301 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 8412, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 374, + "Id": "Metadata/Items/Gems/SkillGemRaiseZombie", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Поднятие зомби", + "DropLevel": 15, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 300, + 301 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 8424, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 375, + "Id": "Metadata/Items/Gems/SkillGemDetonateDead", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Подрыв трупа", + "DropLevel": 23, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 301 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 8425, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 376, + "Id": "Metadata/Items/Gems/SkillGemVolatileDead", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Нестабильный труп", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 377, + "Id": "Metadata/Items/Gems/SkillGemFlickerStrike", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Внезапный удар", + "DropLevel": 53, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8474, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 378, + "Id": "Metadata/Items/Gems/SkillGemSpark", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Искра", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 300, + 301 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 8476, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 379, + "Id": "Metadata/Items/Gems/SkillGemIceSpear", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Ледяное копьё", + "DropLevel": 15, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8950, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 380, + "Id": "Metadata/Items/Gems/SkillGemSummonSpectre", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Призрак: {0}", + "DropLevel": 23, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8481, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 381, + "Id": "Metadata/Items/Gems/SkillGemFrostWall", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Стена льда", + "DropLevel": 32, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 301 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 8485, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 382, + "Id": "Metadata/Items/Gems/SkillGemShockNova", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Кольцо молний", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 383, + "Id": "Metadata/Items/Gems/SkillGemTemporalChains", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Путы времени", + "DropLevel": 53, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8495, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 384, + "Id": "Metadata/Items/Gems/SkillGemEnfeeble", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Слабость", + "DropLevel": 7, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8499, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 385, + "Id": "Metadata/Items/Gems/SkillGemSnipersMark", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Метка снайпера", + "DropLevel": 23, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8501, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 386, + "Id": "Metadata/Items/Gems/SkillGemDespair", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Отчаяние", + "DropLevel": 32, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9154, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 387, + "Id": "Metadata/Items/Gems/SkillGemLightningWarp", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Грозовой переход", + "DropLevel": 32, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 301 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 8503, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 388, + "Id": "Metadata/Items/Gems/SkillGemSkeletalWarrior", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Скелет-воин", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8505, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 389, + "Id": "Metadata/Items/Gems/SkillGemSkeletalReaver", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Скелет-разоритель", + "DropLevel": 32, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8506, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 390, + "Id": "Metadata/Items/Gems/SkillGemSkeletalBrute", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Скелет-громила", + "DropLevel": 53, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8507, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 391, + "Id": "Metadata/Items/Gems/SkillGemSkeletalSniper", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Скелет-снайпер", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8508, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 392, + "Id": "Metadata/Items/Gems/SkillGemSkeletalFrostMage", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Скелет-маг льда", + "DropLevel": 15, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8509, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 393, + "Id": "Metadata/Items/Gems/SkillGemSkeletalStormMage", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Скелет-маг молний", + "DropLevel": 42, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8510, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 394, + "Id": "Metadata/Items/Gems/SkillGemSkeletalArsonist", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Скелет-поджигатель", + "DropLevel": 7, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8511, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 395, + "Id": "Metadata/Items/Gems/SkillGemSkeletalCleric", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Скелет-клерик", + "DropLevel": 53, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8512, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 396, + "Id": "Metadata/Items/Gems/SkillGemArmourBreaker", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Разрушитель брони", + "DropLevel": 7, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 300, + 301 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 8513, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 397, + "Id": "Metadata/Items/Gems/SkillGemRainOfArrows", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Ливень стрел", + "DropLevel": 32, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8516, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 398, + "Id": "Metadata/Items/Gems/SkillGemFirestorm", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Огненный шторм", + "DropLevel": 42, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8526, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 399, + "Id": "Metadata/Items/Gems/SkillGemFallingThunder", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Раскаты грома", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8528, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 400, + "Id": "Metadata/Items/Gems/SkillGemPowerSiphon", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Перелив энергии", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 401, + "Id": "Metadata/Items/Gems/SkillGemLightningArrow", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Стрела молнии", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8533, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 402, + "Id": "Metadata/Items/Gems/SkillGemArc", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Цепь молний", + "DropLevel": 15, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8535, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 403, + "Id": "Metadata/Items/Gems/SkillGemDiscipline", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Дисциплина", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 404, + "Id": "Metadata/Items/Gems/SkillGemShockwaveTotem", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Сотрясающий тотем", + "DropLevel": 7, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8560, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 405, + "Id": "Metadata/Items/Gems/SkillGemArcticArmour", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Северная броня", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8571, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 406, + "Id": "Metadata/Items/Gems/SkillGemFlammability", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Горючесть", + "DropLevel": 23, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8585, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 407, + "Id": "Metadata/Items/Gems/SkillGemHypothermia", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Обморожение", + "DropLevel": 23, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8586, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 408, + "Id": "Metadata/Items/Gems/SkillGemConductivity", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Проводимость", + "DropLevel": 23, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8592, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 409, + "Id": "Metadata/Items/Gems/SkillGemIncinerate", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Испепеление", + "DropLevel": 15, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9114, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 410, + "Id": "Metadata/Items/Gems/SkillGemPurityOfFire", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Спасение от огня", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 411, + "Id": "Metadata/Items/Gems/SkillGemPurityOfIce", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Спасение от холода", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 412, + "Id": "Metadata/Items/Gems/SkillGemPurityOfLightning", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Спасение от молний", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 413, + "Id": "Metadata/Items/Gems/SkillGemFlameblast", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Пламенный взрыв", + "DropLevel": 53, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8625, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 414, + "Id": "Metadata/Items/Gems/SkillGemBarrage", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Очередь", + "DropLevel": 15, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8622, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 415, + "Id": "Metadata/Items/Gems/SkillGemBallLightning", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Шаровая молния", + "DropLevel": 42, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8662, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 416, + "Id": "Metadata/Items/Gems/SkillGemBoneOffering", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Подношение костей", + "DropLevel": 42, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8628, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 417, + "Id": "Metadata/Items/Gems/SkillGemHeraldOfAsh", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Вестник пепла", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8669, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 418, + "Id": "Metadata/Items/Gems/SkillGemHeraldOfIce", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Вестник льда", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8668, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 419, + "Id": "Metadata/Items/Gems/SkillGemHeraldOfThunder", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Вестник грома", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8670, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 420, + "Id": "Metadata/Items/Gems/SkillGemBlasphemy", + "ItemClassesKey": 76, + "Width": 1, + "Height": 1, + "Name": "Богохульство", + "DropLevel": 27, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8708, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 421, + "Id": "Metadata/Items/Gems/SkillGemInfernalCry", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Клич преисподней", + "DropLevel": 7, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8415, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 422, + "Id": "Metadata/Items/Gems/SkillGemSeismicCry", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Сейсмический клич", + "DropLevel": 42, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8827, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 423, + "Id": "Metadata/Items/Gems/SkillGemRollingMagma", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Ползучая магма", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 300, + 301 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 8696, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 424, + "Id": "Metadata/Items/Gems/SkillGemFrostBomb", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Морозная бомба", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 301 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 8700, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 425, + "Id": "Metadata/Items/Gems/SkillGemOrbOfStorms", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Сфера бурь", + "DropLevel": 7, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 301 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 8705, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 426, + "Id": "Metadata/Items/Gems/SkillGemEarthquake", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Землетрясение", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8717, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 427, + "Id": "Metadata/Items/Gems/SkillGemContagion", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Инфекция", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 301 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 8709, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 428, + "Id": "Metadata/Items/Gems/SkillGemWither", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Увядание", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 429, + "Id": "Metadata/Items/Gems/SkillGemEssenceDrain", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Похищение сущности", + "DropLevel": 7, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8711, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 430, + "Id": "Metadata/Items/Gems/SkillGemSunder", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Раскол", + "DropLevel": 32, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8719, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 431, + "Id": "Metadata/Items/Gems/SkillGemFrostbolt", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Морозный шар", + "DropLevel": 7, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 300, + 301 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 8722, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 432, + "Id": "Metadata/Items/Gems/SkillGemDarkPact", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Тёмный договор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 433, + "Id": "Metadata/Items/Gems/SkillGemVulnerability", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Беззащитность", + "DropLevel": 23, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8502, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 434, + "Id": "Metadata/Items/Gems/SkillGemSoulrend", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Разрыв души", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 435, + "Id": "Metadata/Items/Gems/SupportGemCloseCombat", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Бой вплотную", + "DropLevel": 18, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8783, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 436, + "Id": "Metadata/Items/Gems/SkillGemPlagueBearer", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Носитель чумы", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8801, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 437, + "Id": "Metadata/Items/Gems/SkillGemArtilleryBallista", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Артиллерийская баллиста", + "DropLevel": 32, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8816, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 438, + "Id": "Metadata/Items/Gems/SkillGemEarthshatter", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Разлом земли", + "DropLevel": 23, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8834, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 439, + "Id": "Metadata/Items/Gems/SkillGemSigilOfPower", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Печать силы", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 440, + "Id": "Metadata/Items/Gems/SkillGemFlameWall", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Стена пламени", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8835, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 441, + "Id": "Metadata/Items/Gems/SkillGemHexblast", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Взрыв порчи", + "DropLevel": 42, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8840, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 442, + "Id": "Metadata/Items/Gems/SkillGemExsanguinate", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Обескровливание", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 443, + "Id": "Metadata/Items/Gems/SkillGemReap", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Кровавая жатва", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 444, + "Id": "Metadata/Items/Gems/SkillGemBoneshatter", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Дробление костей", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8880, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 445, + "Id": "Metadata/Items/Gems/SkillGemEyeOfWinter", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Око зимы", + "DropLevel": 53, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8878, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 446, + "Id": "Metadata/Items/Gems/SkillGemTornado", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Торнадо", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8888, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 447, + "Id": "Metadata/Items/Gems/SkillGemLightningConduit", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Проводник молнии", + "DropLevel": 53, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8898, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 448, + "Id": "Metadata/Items/Gems/SkillGemGalvanicField", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Электризующее поле", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 449, + "Id": "Metadata/Items/Gems/SkillGemVolcanicFissure", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Вулканический разлом", + "DropLevel": 32, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8901, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 450, + "Id": "Metadata/Items/Gems/SkillGemRapidAssault", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Стремительное нападение", + "DropLevel": 15, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8917, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 451, + "Id": "Metadata/Items/Gems/SkillGemSpearImpale", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Прокол", + "DropLevel": 7, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8916, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 452, + "Id": "Metadata/Items/Gems/SkillGemSpearPuncture", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Надрез", + "DropLevel": 7, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8915, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 453, + "Id": "Metadata/Items/Gems/SkillGemWhirlingSlash", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Вихревой удар", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8919, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 454, + "Id": "Metadata/Items/Gems/SkillGemSpearfield", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Поле копий", + "DropLevel": 53, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8920, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 455, + "Id": "Metadata/Items/Gems/SkillGemDemonMagus", + "ItemClassesKey": 76, + "Width": 1, + "Height": 1, + "Name": "Демон-маг", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8977, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 456, + "Id": "Metadata/Items/Gems/SkillGemStormSpear", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Копьё бури", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8922, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 457, + "Id": "Metadata/Items/Gems/SkillGemBlazingLance", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Пылающее копьё", + "DropLevel": 53, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8923, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 458, + "Id": "Metadata/Items/Gems/SkillGemAxeChop", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Axe Chop", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8410, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 459, + "Id": "Metadata/Items/Gems/SkillGemAxeSlash", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Axe Slash", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8408, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 460, + "Id": "Metadata/Items/Gems/SkillGemWhirlingAssault", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Вихревой налёт", + "DropLevel": 42, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8945, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 461, + "Id": "Metadata/Items/Gems/SkillGemRollingSlam", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Крутящий удар", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8949, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 462, + "Id": "Metadata/Items/Gems/SkillGemEscapeShot", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Выстрел с отскоком", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9156, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 463, + "Id": "Metadata/Items/Gems/SkillGemSuperchargedSlam", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Сверхмощный удар", + "DropLevel": 42, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8734, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 464, + "Id": "Metadata/Items/Gems/SkillGemEvasiveStrike", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Evasive Strike", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8421, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 465, + "Id": "Metadata/Items/Gems/SkillGemWindBlast", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Порыв ветра", + "DropLevel": 15, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8941, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 466, + "Id": "Metadata/Items/Gems/SkillGemBladeDance", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Blade Dance", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8420, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 467, + "Id": "Metadata/Items/Gems/SkillGemClawRake", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Claw Rake", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8420, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 468, + "Id": "Metadata/Items/Gems/SkillGemSpinningFlail", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Spinning Flail", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8484, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 469, + "Id": "Metadata/Items/Gems/SkillGemAxeExecute", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Axe Execute", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8410, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 470, + "Id": "Metadata/Items/Gems/SkillGemAxeLeapingChop", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Axe Leaping Chop", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8410, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 471, + "Id": "Metadata/Items/Gems/SkillGemAxeWhirlingSlash", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Axe Whirling Slash", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8410, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 472, + "Id": "Metadata/Items/Gems/SkillGemAxeRaisedChop", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Axe Raised Chop", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8410, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 473, + "Id": "Metadata/Items/Gems/SkillGemAxeHeavyCleave", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Axe Heavy Cleave", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8410, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 474, + "Id": "Metadata/Items/Gems/SkillGemKnifeFlip", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Knife Flip", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8570, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 475, + "Id": "Metadata/Items/Gems/SkillGemWaveOfFrost", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Волна мороза", + "DropLevel": 23, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8940, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 476, + "Id": "Metadata/Items/Gems/SkillGemSwordLunge", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Sword Lunge", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8752, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 477, + "Id": "Metadata/Items/Gems/SkillGemSwordLeapSlash", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Sword Leap Slash", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8751, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 478, + "Id": "Metadata/Items/Gems/SkillGemIceStrike", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Ледяной удар", + "DropLevel": 15, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8939, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 479, + "Id": "Metadata/Items/Gems/SkillGemBearMaul", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Трёпка", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8953, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 480, + "Id": "Metadata/Items/Gems/SkillGemChaosbolt", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Снаряд хаоса", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 481, + "Id": "Metadata/Items/Gems/SkillGemFirebolt", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Огненный шар", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 482, + "Id": "Metadata/Items/Jewels/JewelTimeless", + "ItemClassesKey": 41, + "Width": 1, + "Height": 1, + "Name": "Вневременной самоцвет", + "DropLevel": 20, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 134, + 137, + 136, + 135, + 33 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12728, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 483, + "Id": "Metadata/Items/Jewels/JewelStr", + "ItemClassesKey": 41, + "Width": 1, + "Height": 1, + "Name": "Багровый самоцвет", + "DropLevel": 20, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 134, + 135 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 11029, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 484, + "Id": "Metadata/Items/Jewels/JewelDex", + "ItemClassesKey": 41, + "Width": 1, + "Height": 1, + "Name": "Бирюзовый самоцвет", + "DropLevel": 20, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 134, + 136 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 11030, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 485, + "Id": "Metadata/Items/Jewels/JewelInt", + "ItemClassesKey": 41, + "Width": 1, + "Height": 1, + "Name": "Кобальтовый самоцвет", + "DropLevel": 20, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 134, + 137 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 11031, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 486, + "Id": "Metadata/Items/Jewels/JewelDiamond", + "ItemClassesKey": 41, + "Width": 1, + "Height": 1, + "Name": "Алмаз", + "DropLevel": 20, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 134, + 33 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 11031, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 487, + "Id": "Metadata/Items/Jewels/JewelRadiusStr", + "ItemClassesKey": 41, + "Width": 1, + "Height": 1, + "Name": "Утерянный рубин", + "DropLevel": 20, + "Implicit_ModsKeys": [ + 1740 + ], + "TagsKeys": [ + 134, + 33, + 1098, + 1101 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 11032, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 488, + "Id": "Metadata/Items/Jewels/JewelRadiusDex", + "ItemClassesKey": 41, + "Width": 1, + "Height": 1, + "Name": "Утерянный изумруд", + "DropLevel": 20, + "Implicit_ModsKeys": [ + 1740 + ], + "TagsKeys": [ + 134, + 33, + 1099, + 1101 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 11033, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 489, + "Id": "Metadata/Items/Jewels/JewelRadiusInt", + "ItemClassesKey": 41, + "Width": 1, + "Height": 1, + "Name": "Утерянный сапфир", + "DropLevel": 20, + "Implicit_ModsKeys": [ + 1740 + ], + "TagsKeys": [ + 134, + 33, + 1100, + 1101 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 11034, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 490, + "Id": "Metadata/Items/Jewels/JewelRadiusDiamond", + "ItemClassesKey": 41, + "Width": 1, + "Height": 1, + "Name": "Утерянный алмаз", + "DropLevel": 20, + "Implicit_ModsKeys": [ + 1741 + ], + "TagsKeys": [ + 134, + 33, + 1101 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 11034, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 491, + "Id": "Metadata/Items/SoulCores/RuneFire", + "ItemClassesKey": 104, + "Width": 1, + "Height": 1, + "Name": "Руна пустыни", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 11035, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 492, + "Id": "Metadata/Items/SoulCores/RuneCold", + "ItemClassesKey": 104, + "Width": 1, + "Height": 1, + "Name": "Руна ледника", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 11036, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 493, + "Id": "Metadata/Items/SoulCores/RuneLightning", + "ItemClassesKey": 104, + "Width": 1, + "Height": 1, + "Name": "Руна шторма", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 11037, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 494, + "Id": "Metadata/Items/SoulCores/RuneEnhance", + "ItemClassesKey": 104, + "Width": 1, + "Height": 1, + "Name": "Руна железа", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 11038, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 495, + "Id": "Metadata/Items/SoulCores/RuneLife", + "ItemClassesKey": 104, + "Width": 1, + "Height": 1, + "Name": "Руна тела", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 11039, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 496, + "Id": "Metadata/Items/SoulCores/RuneMana", + "ItemClassesKey": 104, + "Width": 1, + "Height": 1, + "Name": "Руна разума", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 11040, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 497, + "Id": "Metadata/Items/SoulCores/RuneLifeRecovery", + "ItemClassesKey": 104, + "Width": 1, + "Height": 1, + "Name": "Руна перерождения", + "DropLevel": 30, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 11041, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 498, + "Id": "Metadata/Items/SoulCores/RuneManaRecovery", + "ItemClassesKey": 104, + "Width": 1, + "Height": 1, + "Name": "Руна вдохновения", + "DropLevel": 30, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 11042, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 499, + "Id": "Metadata/Items/SoulCores/RuneStun", + "ItemClassesKey": 104, + "Width": 1, + "Height": 1, + "Name": "Руна камня", + "DropLevel": 21, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 11043, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 500, + "Id": "Metadata/Items/SoulCores/RuneAccuracy", + "ItemClassesKey": 104, + "Width": 1, + "Height": 1, + "Name": "Руна видения", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 11044, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 501, + "Id": "Metadata/Items/SoulCores/SoulCoreChaos", + "ItemClassesKey": 104, + "Width": 1, + "Height": 1, + "Name": "Ядро душ Такати", + "DropLevel": 35, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1094, + 1095 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 11045, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 502, + "Id": "Metadata/Items/SoulCores/SoulCoreBleed", + "ItemClassesKey": 104, + "Width": 1, + "Height": 1, + "Name": "Ядро душ Опилоти", + "DropLevel": 35, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1094, + 1095 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 11046, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 503, + "Id": "Metadata/Items/SoulCores/SoulCoreMaxLife", + "ItemClassesKey": 104, + "Width": 1, + "Height": 1, + "Name": "Ядро душ Джиквани", + "DropLevel": 35, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1094, + 1096 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 11047, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 504, + "Id": "Metadata/Items/SoulCores/SoulCoreMaxMana", + "ItemClassesKey": 104, + "Width": 1, + "Height": 1, + "Name": "Ядро душ Залатля", + "DropLevel": 35, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1094, + 1096 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 11048, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 505, + "Id": "Metadata/Items/SoulCores/SoulCoreEnlighten", + "ItemClassesKey": 104, + "Width": 1, + "Height": 1, + "Name": "Ядро душ Ситаквалотля", + "DropLevel": 35, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1094, + 1095 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 11049, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 506, + "Id": "Metadata/Items/SoulCores/SoulCoreIgnite", + "ItemClassesKey": 104, + "Width": 1, + "Height": 1, + "Name": "Ядро душ Пухварте", + "DropLevel": 35, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1094, + 1097 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 11050, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 507, + "Id": "Metadata/Items/SoulCores/SoulCoreFreeze", + "ItemClassesKey": 104, + "Width": 1, + "Height": 1, + "Name": "Ядро душ Цамото", + "DropLevel": 35, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1094, + 1097 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 11051, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 508, + "Id": "Metadata/Items/SoulCores/SoulCoreShock", + "ItemClassesKey": 104, + "Width": 1, + "Height": 1, + "Name": "Ядро душ Шопека", + "DropLevel": 35, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1094, + 1097 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 11052, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 509, + "Id": "Metadata/Items/SoulCores/SoulCoreLight", + "ItemClassesKey": 104, + "Width": 1, + "Height": 1, + "Name": "Ядро душ Азкапы", + "DropLevel": 35, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1094, + 1097 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 11053, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 510, + "Id": "Metadata/Items/SoulCores/SoulCoreElemental", + "ItemClassesKey": 104, + "Width": 1, + "Height": 1, + "Name": "Ядро душ Топотанте", + "DropLevel": 35, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1094, + 1095 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 11054, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 511, + "Id": "Metadata/Items/SoulCores/SoulCoreSpeed", + "ItemClassesKey": 104, + "Width": 1, + "Height": 1, + "Name": "Ядро душ Квиполатля", + "DropLevel": 35, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1094, + 1096 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 11055, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 512, + "Id": "Metadata/Items/SoulCores/SoulCoreCrit", + "ItemClassesKey": 104, + "Width": 1, + "Height": 1, + "Name": "Ядро душ Тикабы", + "DropLevel": 35, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1094, + 1096 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 11056, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 513, + "Id": "Metadata/Items/SoulCores/SoulCoreStrength", + "ItemClassesKey": 104, + "Width": 1, + "Height": 1, + "Name": "Ядро душ Атмохвы", + "DropLevel": 35, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1094, + 1096 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 11056, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 514, + "Id": "Metadata/Items/SoulCores/SoulCoreDexterity", + "ItemClassesKey": 104, + "Width": 1, + "Height": 1, + "Name": "Ядро душ Чолотля", + "DropLevel": 35, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1094, + 1096 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 11056, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 515, + "Id": "Metadata/Items/SoulCores/SoulCoreIntelligence", + "ItemClassesKey": 104, + "Width": 1, + "Height": 1, + "Name": "Ядро душ Зантипи", + "DropLevel": 35, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1094, + 1096 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 11056, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 516, + "Id": "Metadata/Items/Maps/MapKeyTier1", + "ItemClassesKey": 35, + "Width": 1, + "Height": 1, + "Name": "Путевой камень (Ур. 1)", + "DropLevel": 58, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1084 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15513, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 517, + "Id": "Metadata/Items/Maps/MapKeyTier2", + "ItemClassesKey": 35, + "Width": 1, + "Height": 1, + "Name": "Путевой камень (Ур. 2)", + "DropLevel": 66, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 70, + 1084 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15514, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 518, + "Id": "Metadata/Items/Maps/MapKeyTier3", + "ItemClassesKey": 35, + "Width": 1, + "Height": 1, + "Name": "Путевой камень (Ур. 3)", + "DropLevel": 67, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 70, + 1084 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15515, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 519, + "Id": "Metadata/Items/Maps/MapKeyTier4", + "ItemClassesKey": 35, + "Width": 1, + "Height": 1, + "Name": "Путевой камень (Ур. 4)", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 70, + 1084 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15516, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 520, + "Id": "Metadata/Items/Maps/MapKeyTier5", + "ItemClassesKey": 35, + "Width": 1, + "Height": 1, + "Name": "Путевой камень (Ур. 5)", + "DropLevel": 69, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 70, + 1084 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 521, + "Id": "Metadata/Items/Maps/MapKeyTier6", + "ItemClassesKey": 35, + "Width": 1, + "Height": 1, + "Name": "Путевой камень (Ур. 6)", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 70, + 1085 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15518, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 522, + "Id": "Metadata/Items/Maps/MapKeyTier7", + "ItemClassesKey": 35, + "Width": 1, + "Height": 1, + "Name": "Путевой камень (Ур. 7)", + "DropLevel": 71, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 70, + 1085 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15519, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 523, + "Id": "Metadata/Items/Maps/MapKeyTier8", + "ItemClassesKey": 35, + "Width": 1, + "Height": 1, + "Name": "Путевой камень (Ур. 8)", + "DropLevel": 72, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 70, + 1085 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15520, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 524, + "Id": "Metadata/Items/Maps/MapKeyTier9", + "ItemClassesKey": 35, + "Width": 1, + "Height": 1, + "Name": "Путевой камень (Ур. 9)", + "DropLevel": 73, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 70, + 1085 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15521, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 525, + "Id": "Metadata/Items/Maps/MapKeyTier10", + "ItemClassesKey": 35, + "Width": 1, + "Height": 1, + "Name": "Путевой камень (Ур. 10)", + "DropLevel": 74, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 70, + 1085 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15522, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 526, + "Id": "Metadata/Items/Maps/MapKeyTier11", + "ItemClassesKey": 35, + "Width": 1, + "Height": 1, + "Name": "Путевой камень (Ур. 11)", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 70, + 1086 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15523, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 527, + "Id": "Metadata/Items/Maps/MapKeyTier12", + "ItemClassesKey": 35, + "Width": 1, + "Height": 1, + "Name": "Путевой камень (Ур. 12)", + "DropLevel": 76, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 70, + 1086 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15524, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 528, + "Id": "Metadata/Items/Maps/MapKeyTier13", + "ItemClassesKey": 35, + "Width": 1, + "Height": 1, + "Name": "Путевой камень (Ур. 13)", + "DropLevel": 77, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 70, + 1086 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15525, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 529, + "Id": "Metadata/Items/Maps/MapKeyTier14", + "ItemClassesKey": 35, + "Width": 1, + "Height": 1, + "Name": "Путевой камень (Ур. 14)", + "DropLevel": 78, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 70, + 1086 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15526, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 530, + "Id": "Metadata/Items/Maps/MapKeyTier15", + "ItemClassesKey": 35, + "Width": 1, + "Height": 1, + "Name": "Путевой камень (Ур. 15)", + "DropLevel": 79, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 70, + 1086 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15527, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 531, + "Id": "Metadata/Items/Maps/MapKeyTier16", + "ItemClassesKey": 35, + "Width": 1, + "Height": 1, + "Name": "Путевой камень (Ур. 16)", + "DropLevel": 80, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 70, + 1086 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15528, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 532, + "Id": "Metadata/Items/MapFragments/VaalFragment1_1", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Жертва в полночь", + "DropLevel": 60, + "Implicit_ModsKeys": [ + 6485 + ], + "TagsKeys": [ + 83 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 9491, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 533, + "Id": "Metadata/Items/MapFragments/VaalFragment1_2", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Жертва на рассвете", + "DropLevel": 36, + "Implicit_ModsKeys": [ + 6485 + ], + "TagsKeys": [ + 83 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 9492, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 534, + "Id": "Metadata/Items/MapFragments/VaalFragment1_3", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Жертва в полдень", + "DropLevel": 36, + "Implicit_ModsKeys": [ + 6485 + ], + "TagsKeys": [ + 83 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 9493, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 535, + "Id": "Metadata/Items/MapFragments/VaalFragment1_4", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Жертва на закате", + "DropLevel": 36, + "Implicit_ModsKeys": [ + 6485 + ], + "TagsKeys": [ + 83 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 9494, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 536, + "Id": "Metadata/Items/MapFragments/VaalFragment2_1", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Смертный гнев", + "DropLevel": 68, + "Implicit_ModsKeys": [ + 6486 + ], + "TagsKeys": [ + 84 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 9496, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 537, + "Id": "Metadata/Items/MapFragments/VaalFragment2_2", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Смертная надежда", + "DropLevel": 68, + "Implicit_ModsKeys": [ + 6486 + ], + "TagsKeys": [ + 84 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 9497, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 538, + "Id": "Metadata/Items/MapFragments/VaalFragment2_3", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Смертное невежество", + "DropLevel": 68, + "Implicit_ModsKeys": [ + 6486 + ], + "TagsKeys": [ + 84 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 9498, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 539, + "Id": "Metadata/Items/MapFragments/VaalFragment2_4", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Смертное уныние", + "DropLevel": 68, + "Implicit_ModsKeys": [ + 6486 + ], + "TagsKeys": [ + 84 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 9499, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 540, + "Id": "Metadata/Items/MapFragments/ProphecyFragment1", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Ключ Эвера", + "DropLevel": 60, + "Implicit_ModsKeys": [ + 6488 + ], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9501, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 541, + "Id": "Metadata/Items/MapFragments/ProphecyFragment2", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Ключ Ириэла", + "DropLevel": 60, + "Implicit_ModsKeys": [ + 6488 + ], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9502, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 542, + "Id": "Metadata/Items/MapFragments/ProphecyFragment3", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Ключ Иньи", + "DropLevel": 60, + "Implicit_ModsKeys": [ + 6488 + ], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9503, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 543, + "Id": "Metadata/Items/MapFragments/ProphecyFragment4", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Ключ Волкуур", + "DropLevel": 60, + "Implicit_ModsKeys": [ + 6488 + ], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9504, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 544, + "Id": "Metadata/Items/MapFragments/ShaperFragment1", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Фрагмент Феникса", + "DropLevel": 84, + "Implicit_ModsKeys": [ + 6489 + ], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9506, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 545, + "Id": "Metadata/Items/MapFragments/ShaperFragment2", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Фрагмент Минотавра", + "DropLevel": 84, + "Implicit_ModsKeys": [ + 6489 + ], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9507, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 546, + "Id": "Metadata/Items/MapFragments/ShaperFragment3", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Фрагмент Химеры", + "DropLevel": 84, + "Implicit_ModsKeys": [ + 6489 + ], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9508, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 547, + "Id": "Metadata/Items/MapFragments/ShaperFragment4", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Фрагмент Гидры", + "DropLevel": 84, + "Implicit_ModsKeys": [ + 6489 + ], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9509, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 548, + "Id": "Metadata/Items/MapFragments/FragmentPantheonFlask", + "ItemClassesKey": 38, + "Width": 1, + "Height": 2, + "Name": "Божественный сосуд", + "DropLevel": 68, + "Implicit_ModsKeys": [ + 6493 + ], + "TagsKeys": [ + 70 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 9526, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 549, + "Id": "Metadata/Items/MapFragments/CurrencyVaalFragment1_1", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Жертва в полночь", + "DropLevel": 60, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 83 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 9491, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 550, + "Id": "Metadata/Items/MapFragments/CurrencyVaalFragment1_2", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Жертва на рассвете", + "DropLevel": 36, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 83 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 9492, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 551, + "Id": "Metadata/Items/MapFragments/CurrencyVaalFragment1_3", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Жертва в полдень", + "DropLevel": 36, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 83 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 9493, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 552, + "Id": "Metadata/Items/MapFragments/CurrencyVaalFragment1_4", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Жертва на закате", + "DropLevel": 36, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 83 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 9494, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 553, + "Id": "Metadata/Items/MapFragments/CurrencyVaalFragments1Complete", + "ItemClassesKey": 38, + "Width": 2, + "Height": 2, + "Name": "Набор Жертв", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9495, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 554, + "Id": "Metadata/Items/MapFragments/CurrencyVaalFragment2_1", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Смертный гнев", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 84 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 9496, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 555, + "Id": "Metadata/Items/MapFragments/CurrencyVaalFragment2_2", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Смертная надежда", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 84 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 9497, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 556, + "Id": "Metadata/Items/MapFragments/CurrencyVaalFragment2_3", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Смертное невежество", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 84 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 9498, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 557, + "Id": "Metadata/Items/MapFragments/CurrencyVaalFragment2_4", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Смертное уныние", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 84 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 9499, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 558, + "Id": "Metadata/Items/MapFragments/CurrencyVaalFragments2Complete", + "ItemClassesKey": 38, + "Width": 2, + "Height": 2, + "Name": "Набор Смертных", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9500, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 559, + "Id": "Metadata/Items/MapFragments/CurrencyProphecyFragment1", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Ключ Эвера", + "DropLevel": 60, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9501, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 560, + "Id": "Metadata/Items/MapFragments/CurrencyProphecyFragment2", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Ключ Ириэла", + "DropLevel": 60, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9502, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 561, + "Id": "Metadata/Items/MapFragments/CurrencyProphecyFragment3", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Ключ Иньи", + "DropLevel": 60, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9503, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 562, + "Id": "Metadata/Items/MapFragments/CurrencyProphecyFragment4", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Ключ Волкуур", + "DropLevel": 60, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9504, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 563, + "Id": "Metadata/Items/MapFragments/CurrencyProphecyFragmentsComplete", + "ItemClassesKey": 38, + "Width": 2, + "Height": 2, + "Name": "Набор Бледного суда", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9505, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 564, + "Id": "Metadata/Items/MapFragments/CurrencyShaperFragment1", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Фрагмент Феникса", + "DropLevel": 84, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9506, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 565, + "Id": "Metadata/Items/MapFragments/CurrencyShaperFragment2", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Фрагмент Минотавра", + "DropLevel": 84, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9507, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 566, + "Id": "Metadata/Items/MapFragments/CurrencyShaperFragment3", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Фрагмент Химеры", + "DropLevel": 84, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9508, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 567, + "Id": "Metadata/Items/MapFragments/CurrencyShaperFragment4", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Фрагмент Гидры", + "DropLevel": 84, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9509, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 568, + "Id": "Metadata/Items/MapFragments/CurrencyShaperFragmentsComplete", + "ItemClassesKey": 38, + "Width": 2, + "Height": 2, + "Name": "Ключ к Тиглю", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9510, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 569, + "Id": "Metadata/Items/MapFragments/CurrencyElderFragment1", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Фрагмент порабощения", + "DropLevel": 80, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9511, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 570, + "Id": "Metadata/Items/MapFragments/CurrencyElderFragment2", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Фрагмент искоренения", + "DropLevel": 80, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9512, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 571, + "Id": "Metadata/Items/MapFragments/CurrencyElderFragment3", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Фрагмент угнетения", + "DropLevel": 80, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9513, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 572, + "Id": "Metadata/Items/MapFragments/CurrencyElderFragment4", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Фрагмент искупления", + "DropLevel": 80, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9514, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 573, + "Id": "Metadata/Items/MapFragments/CurrencyElderFragmentsComplete", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Ключ к Порче", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9515, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 574, + "Id": "Metadata/Items/MapFragments/CurrencyUberElderFragment1", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Фрагмент ужаса", + "DropLevel": 80, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9516, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 575, + "Id": "Metadata/Items/MapFragments/CurrencyUberElderFragment2", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Фрагмент пустоты", + "DropLevel": 80, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 576, + "Id": "Metadata/Items/MapFragments/CurrencyUberElderFragment3", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Фрагмент формы", + "DropLevel": 80, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9518, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 577, + "Id": "Metadata/Items/MapFragments/CurrencyUberElderFragment4", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Фрагмент знания", + "DropLevel": 80, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9519, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 578, + "Id": "Metadata/Items/MapFragments/CurrencyUberElderFragmentsComplete", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Субстанция безумия", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9520, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 579, + "Id": "Metadata/Items/MapFragments/CurrencySirusFragment1", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Герб Аль-Хезмина", + "DropLevel": 80, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9521, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 580, + "Id": "Metadata/Items/MapFragments/CurrencySirusFragment2", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Герб Бэрана", + "DropLevel": 80, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9522, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 581, + "Id": "Metadata/Items/MapFragments/CurrencySirusFragment3", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Герб Дрокса", + "DropLevel": 80, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9523, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 582, + "Id": "Metadata/Items/MapFragments/CurrencySirusFragment4", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Герб Веритании", + "DropLevel": 80, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9524, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 583, + "Id": "Metadata/Items/MapFragments/CurrencySirusFragmentsComplete", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Герб Убийц Древнего", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9525, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 584, + "Id": "Metadata/Items/MapFragments/CurrencyFragmentPantheonFlask", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Божественный сосуд", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 70, + 698 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 9526, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 585, + "Id": "Metadata/Items/MapFragments/CurrencyBreachFragment", + "ItemClassesKey": 86, + "Width": 1, + "Height": 1, + "Name": "Камень Разлома", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 201 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 9528, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 586, + "Id": "Metadata/Items/MapFragments/CurrencyBreachFragmentFire", + "ItemClassesKey": 86, + "Width": 1, + "Height": 1, + "Name": "Камень Разлома Ксофа", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 201 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 9529, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 587, + "Id": "Metadata/Items/MapFragments/CurrencyBreachFragmentCold", + "ItemClassesKey": 86, + "Width": 1, + "Height": 1, + "Name": "Камень Разлома Тул", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 201 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 9530, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 588, + "Id": "Metadata/Items/MapFragments/CurrencyBreachFragmentLightning", + "ItemClassesKey": 86, + "Width": 1, + "Height": 1, + "Name": "Камень Разлома Иш", + "DropLevel": 72, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 201 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 9531, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 589, + "Id": "Metadata/Items/MapFragments/CurrencyBreachFragmentPhysical", + "ItemClassesKey": 86, + "Width": 1, + "Height": 1, + "Name": "Камень Разлома Уул-Нетол", + "DropLevel": 76, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 201 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 9532, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 590, + "Id": "Metadata/Items/MapFragments/CurrencyBreachFragmentChaos", + "ItemClassesKey": 86, + "Width": 1, + "Height": 1, + "Name": "Камень Разлома Чаюлы", + "DropLevel": 80, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 201 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 9533, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 591, + "Id": "Metadata/Items/MapFragments/CurrencyBreachFragmentFire2", + "ItemClassesKey": 86, + "Width": 1, + "Height": 1, + "Name": "Заряженный камень Разлома Ксофа", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 437 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 9534, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 592, + "Id": "Metadata/Items/MapFragments/CurrencyBreachFragmentCold2", + "ItemClassesKey": 86, + "Width": 1, + "Height": 1, + "Name": "Заряженный камень Разлома Тул", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 437 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 9535, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 593, + "Id": "Metadata/Items/MapFragments/CurrencyBreachFragmentLightning2", + "ItemClassesKey": 86, + "Width": 1, + "Height": 1, + "Name": "Заряженный камень Разлома Иш", + "DropLevel": 72, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 437 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 9536, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 594, + "Id": "Metadata/Items/MapFragments/CurrencyBreachFragmentPhysical2", + "ItemClassesKey": 86, + "Width": 1, + "Height": 1, + "Name": "Заряженный камень Разлома Уул-Нетол", + "DropLevel": 76, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 437 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 9537, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 595, + "Id": "Metadata/Items/MapFragments/CurrencyBreachFragmentChaos2", + "ItemClassesKey": 86, + "Width": 1, + "Height": 1, + "Name": "Заряженный камень Разлома Чаюлы", + "DropLevel": 80, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 437 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 9538, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 596, + "Id": "Metadata/Items/MapFragments/CurrencyBreachFragmentFire3", + "ItemClassesKey": 86, + "Width": 1, + "Height": 1, + "Name": "Обогащённый камень Разлома Ксофа", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 438 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 9539, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 597, + "Id": "Metadata/Items/MapFragments/CurrencyBreachFragmentCold3", + "ItemClassesKey": 86, + "Width": 1, + "Height": 1, + "Name": "Обогащённый камень Разлома Тул", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 438 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 9540, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 598, + "Id": "Metadata/Items/MapFragments/CurrencyBreachFragmentLightning3", + "ItemClassesKey": 86, + "Width": 1, + "Height": 1, + "Name": "Обогащённый камень Разлома Иш", + "DropLevel": 72, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 438 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 9541, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 599, + "Id": "Metadata/Items/MapFragments/CurrencyBreachFragmentPhysical3", + "ItemClassesKey": 86, + "Width": 1, + "Height": 1, + "Name": "Обогащённый камень Разлома Уул-Нетол", + "DropLevel": 76, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 438 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 9542, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 600, + "Id": "Metadata/Items/MapFragments/CurrencyBreachFragmentChaos3", + "ItemClassesKey": 86, + "Width": 1, + "Height": 1, + "Name": "Обогащённый камень Разлома Чаюлы", + "DropLevel": 80, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 438 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 9543, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 601, + "Id": "Metadata/Items/MapFragments/CurrencyBreachFragmentFire4", + "ItemClassesKey": 86, + "Width": 1, + "Height": 1, + "Name": "Очищенный камень Разлома Ксофа", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 439 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 9544, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 602, + "Id": "Metadata/Items/MapFragments/CurrencyBreachFragmentCold4", + "ItemClassesKey": 86, + "Width": 1, + "Height": 1, + "Name": "Очищенный камень Разлома Тул", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 439 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 9545, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 603, + "Id": "Metadata/Items/MapFragments/CurrencyBreachFragmentLightning4", + "ItemClassesKey": 86, + "Width": 1, + "Height": 1, + "Name": "Очищенный камень Разлома Иш", + "DropLevel": 72, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 439 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 9546, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 604, + "Id": "Metadata/Items/MapFragments/CurrencyBreachFragmentPhysical4", + "ItemClassesKey": 86, + "Width": 1, + "Height": 1, + "Name": "Очищенный камень Разлома Уул-Нетол", + "DropLevel": 76, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 439 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 9547, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 605, + "Id": "Metadata/Items/MapFragments/CurrencyBreachFragmentChaos4", + "ItemClassesKey": 86, + "Width": 1, + "Height": 1, + "Name": "Очищенный камень Разлома Чаюлы", + "DropLevel": 80, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 439 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 9548, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 606, + "Id": "Metadata/Items/MapFragments/CurrencyBreachFragmentFire5", + "ItemClassesKey": 86, + "Width": 1, + "Height": 1, + "Name": "Безупречный камень Разлома Ксофа", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 695 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 9549, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 607, + "Id": "Metadata/Items/MapFragments/CurrencyBreachFragmentCold5", + "ItemClassesKey": 86, + "Width": 1, + "Height": 1, + "Name": "Безупречный камень Разлома Тул", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 695 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 9550, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 608, + "Id": "Metadata/Items/MapFragments/CurrencyBreachFragmentLightning5", + "ItemClassesKey": 86, + "Width": 1, + "Height": 1, + "Name": "Безупречный камень Разлома Иш", + "DropLevel": 72, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 695 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 9551, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 609, + "Id": "Metadata/Items/MapFragments/CurrencyBreachFragmentPhysical5", + "ItemClassesKey": 86, + "Width": 1, + "Height": 1, + "Name": "Безупречный камень Разлома Уул-Нетол", + "DropLevel": 76, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 695 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 9552, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 610, + "Id": "Metadata/Items/MapFragments/CurrencyBreachFragmentChaos5", + "ItemClassesKey": 86, + "Width": 1, + "Height": 1, + "Name": "Безупречный камень Разлома Чаюлы", + "DropLevel": 80, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 695 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 9553, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 611, + "Id": "Metadata/Items/MapFragments/CurrencyLegionFragmentKarui", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Вневременной знак каруи", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9554, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 612, + "Id": "Metadata/Items/MapFragments/CurrencyLegionFragmentMaraketh", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Вневременной знак маракетов", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9555, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 613, + "Id": "Metadata/Items/MapFragments/CurrencyLegionFragmentEternal", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Вневременной знак Вечных", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9556, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 614, + "Id": "Metadata/Items/MapFragments/CurrencyLegionFragmentTemplar", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Вневременной знак храмовников", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9557, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 615, + "Id": "Metadata/Items/MapFragments/CurrencyLegionFragmentVaal", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Вневременной знак ваал", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9558, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 616, + "Id": "Metadata/Items/MapFragments/CurrencyLegionFragmentKaruiUber", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Непримиримый вневременной знак каруи", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9559, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 617, + "Id": "Metadata/Items/MapFragments/CurrencyLegionFragmentMarakethUber", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Непримиримый вневременной знак маракетов", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9560, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 618, + "Id": "Metadata/Items/MapFragments/CurrencyLegionFragmentEternalUber", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Непримиримый вневременной знак Вечных", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9561, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 619, + "Id": "Metadata/Items/MapFragments/CurrencyLegionFragmentTemplarUber", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Непримиримый вневременной знак храмовников", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9562, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 620, + "Id": "Metadata/Items/MapFragments/CurrencyLegionFragmentVaalUber", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Непримиримый вневременной знак ваал", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9563, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 621, + "Id": "Metadata/Items/MapFragments/CurrencyAfflictionFragment", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Симулякр", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 614 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 9564, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 622, + "Id": "Metadata/Items/MapFragments/CurrencyOfferingToTheGoddess", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Подношение богине", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 11947, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 623, + "Id": "Metadata/Items/MapFragments/CurrencyOfferingToTheGoddessTribute", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Дань богине", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 11948, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 624, + "Id": "Metadata/Items/MapFragments/CurrencyOfferingToTheGoddessGift", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Дар богине", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 11949, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 625, + "Id": "Metadata/Items/MapFragments/CurrencyOfferingToTheGoddessDedication", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Посвящение богине", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 11950, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 626, + "Id": "Metadata/Items/MapFragments/CurrencyRitualBossFragment", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Встреча с Хозяином", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 11951, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 627, + "Id": "Metadata/Items/MapFragments/ClassicVaultKey", + "ItemClassesKey": 88, + "Width": 1, + "Height": 1, + "Name": "Ключ от Древнего Реликвария", + "DropLevel": 35, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12174, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 628, + "Id": "Metadata/Items/MapFragments/340VaultKey", + "ItemClassesKey": 88, + "Width": 1, + "Height": 1, + "Name": "Ключ от Ветхого Реликвария", + "DropLevel": 50, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12175, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 629, + "Id": "Metadata/Items/MapFragments/VaalVaultKey", + "ItemClassesKey": 88, + "Width": 1, + "Height": 1, + "Name": "Ключ от Реликвария ваал", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12176, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 630, + "Id": "Metadata/Items/MapFragments/UberVenariusVaultKey", + "ItemClassesKey": 88, + "Width": 1, + "Height": 1, + "Name": "Ключ от Забытого Реликвария", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12177, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 631, + "Id": "Metadata/Items/MapFragments/UberEaterOfWorldsVaultKey", + "ItemClassesKey": 88, + "Width": 1, + "Height": 1, + "Name": "Ключ от Внутриутробного Реликвария", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12178, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 632, + "Id": "Metadata/Items/MapFragments/UberMavenVaultKey", + "ItemClassesKey": 88, + "Width": 1, + "Height": 1, + "Name": "Ключ от Сверкающего Реликвария", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12179, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 633, + "Id": "Metadata/Items/MapFragments/UberSearingExarchVaultKey", + "ItemClassesKey": 88, + "Width": 1, + "Height": 1, + "Name": "Ключ от Архивного Реликвария", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12180, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 634, + "Id": "Metadata/Items/MapFragments/UberSirusVaultKey", + "ItemClassesKey": 88, + "Width": 1, + "Height": 1, + "Name": "Ключ от Реликвария забвения", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12181, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 635, + "Id": "Metadata/Items/MapFragments/UberShaperVaultKey", + "ItemClassesKey": 88, + "Width": 1, + "Height": 1, + "Name": "Ключ от Космического Реликвария", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12182, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 636, + "Id": "Metadata/Items/MapFragments/UberUberElderVaultKey", + "ItemClassesKey": 88, + "Width": 1, + "Height": 1, + "Name": "Ключ от Разлагающегося Реликвария", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12183, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 637, + "Id": "Metadata/Items/MapFragments/VoidbornVaultKey", + "ItemClassesKey": 88, + "Width": 1, + "Height": 1, + "Name": "Ключ от Пустотного Реликвария", + "DropLevel": 35, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 698 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12184, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 638, + "Id": "Metadata/Items/MapFragments/TencentVoidbornVaultKey", + "ItemClassesKey": 88, + "Width": 1, + "Height": 1, + "Name": "Ключ от Пустотного Реликвария", + "DropLevel": 35, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 698 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12184, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 639, + "Id": "Metadata/Items/MapFragments/RitualFragment", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Наполненный кровью сосуд", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13346, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 640, + "Id": "Metadata/Items/Classic/MysteryLeaguestone", + "ItemClassesKey": 3, + "Width": 1, + "Height": 1, + "Name": "Загадочный камень лиги", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 12186, + "IsCorrupted": true, + "TradeMarketCategory": null + }, + { + "_index": 641, + "Id": "Metadata/Items/Currency/CurrencyIncubationEssence", + "ItemClassesKey": 53, + "Width": 1, + "Height": 1, + "Name": "Шепчущий инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12751, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 642, + "Id": "Metadata/Items/Currency/CurrencyIncubationCurrency", + "ItemClassesKey": 53, + "Width": 1, + "Height": 1, + "Name": "Прекрасный инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12740, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 643, + "Id": "Metadata/Items/Currency/CurrencyIncubationUniques", + "ItemClassesKey": 53, + "Width": 1, + "Height": 1, + "Name": "Необычный инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12741, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 644, + "Id": "Metadata/Items/Currency/CurrencyIncubationMaps", + "ItemClassesKey": 53, + "Width": 1, + "Height": 1, + "Name": "Инкубатор картографа", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12743, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 645, + "Id": "Metadata/Items/Currency/CurrencyIncubationUniqueMaps", + "ItemClassesKey": 53, + "Width": 1, + "Height": 1, + "Name": "Потусторонний инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12743, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 646, + "Id": "Metadata/Items/Currency/CurrencyIncubationAbyss", + "ItemClassesKey": 53, + "Width": 1, + "Height": 1, + "Name": "Инкубатор Бездны", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12747, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 647, + "Id": "Metadata/Items/Currency/CurrencyIncubationFragments", + "ItemClassesKey": 53, + "Width": 1, + "Height": 1, + "Name": "Раздробленный инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12752, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 648, + "Id": "Metadata/Items/Currency/CurrencyIncubationScarabs", + "ItemClassesKey": 53, + "Width": 1, + "Height": 1, + "Name": "Дергающийся инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12753, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 649, + "Id": "Metadata/Items/Currency/CurrencyIncubationEssenceHigh", + "ItemClassesKey": 53, + "Width": 1, + "Height": 1, + "Name": "Заряженный инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12751, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 650, + "Id": "Metadata/Items/Currency/CurrencyIncubationFossils", + "ItemClassesKey": 53, + "Width": 1, + "Height": 1, + "Name": "Ископаемый инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12754, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 651, + "Id": "Metadata/Items/Currency/CurrencyIncubationPerandus", + "ItemClassesKey": 53, + "Width": 1, + "Height": 1, + "Name": "Калгууранский инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12748, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 652, + "Id": "Metadata/Items/Currency/CurrencyIncubationDivination", + "ItemClassesKey": 53, + "Width": 1, + "Height": 1, + "Name": "Инкубатор предсказателя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12756, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 653, + "Id": "Metadata/Items/Currency/CurrencyIncubationTalismans", + "ItemClassesKey": 53, + "Width": 1, + "Height": 1, + "Name": "Первобытный инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12759, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 654, + "Id": "Metadata/Items/Currency/CurrencyIncubationLabyrinthHelm", + "ItemClassesKey": 53, + "Width": 1, + "Height": 1, + "Name": "Зачарованный инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12760, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 655, + "Id": "Metadata/Items/Currency/CurrencyIncubationArmour6Linked", + "ItemClassesKey": 53, + "Width": 1, + "Height": 1, + "Name": "Инкубатор геоманта", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12745, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 656, + "Id": "Metadata/Items/Currency/CurrencyIncubationCurrencyMid", + "ItemClassesKey": 53, + "Width": 1, + "Height": 1, + "Name": "Изысканный инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12740, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 657, + "Id": "Metadata/Items/Currency/CurrencyIncubationUniqueLeague", + "ItemClassesKey": 53, + "Width": 1, + "Height": 1, + "Name": "Затерянный во времени инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12741, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 658, + "Id": "Metadata/Items/Currency/CurrencyIncubationArmourShaperElder", + "ItemClassesKey": 53, + "Width": 1, + "Height": 1, + "Name": "Небесный инкубатор бронника", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12745, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 659, + "Id": "Metadata/Items/Currency/CurrencyIncubationWeaponShaperElder", + "ItemClassesKey": 53, + "Width": 1, + "Height": 1, + "Name": "Небесный инкубатор кузнеца", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12746, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 660, + "Id": "Metadata/Items/Currency/CurrencyIncubationTrinketShaperElder", + "ItemClassesKey": 53, + "Width": 1, + "Height": 1, + "Name": "Небесный инкубатор ювелира", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12744, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 661, + "Id": "Metadata/Items/Currency/CurrencyIncubationMapElder", + "ItemClassesKey": 53, + "Width": 1, + "Height": 1, + "Name": "Мистический инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12743, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 662, + "Id": "Metadata/Items/Currency/CurrencyIncubationBreach", + "ItemClassesKey": 53, + "Width": 1, + "Height": 1, + "Name": "Затемнённый инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12750, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 663, + "Id": "Metadata/Items/Currency/CurrencyIncubationHarbingerShard", + "ItemClassesKey": 53, + "Width": 1, + "Height": 1, + "Name": "Таинственный инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12749, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 664, + "Id": "Metadata/Items/Currency/CurrencyIncubationGem", + "ItemClassesKey": 53, + "Width": 1, + "Height": 1, + "Name": "Инкубатор волшебника", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12742, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 665, + "Id": "Metadata/Items/Currency/CurrencyIncubationGeneric", + "ItemClassesKey": 53, + "Width": 1, + "Height": 1, + "Name": "Загадочный инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12757, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 666, + "Id": "Metadata/Items/Currency/CurrencyIncubationGemLow", + "ItemClassesKey": 53, + "Width": 1, + "Height": 1, + "Name": "Инкубатор камнереза", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12742, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 667, + "Id": "Metadata/Items/Currency/CurrencyIncubationBestiary", + "ItemClassesKey": 53, + "Width": 1, + "Height": 1, + "Name": "Дикий инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12758, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 668, + "Id": "Metadata/Items/Currency/CurrencyIncubationBlight", + "ItemClassesKey": 53, + "Width": 1, + "Height": 1, + "Name": "Заражённый инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12761, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 669, + "Id": "Metadata/Items/Currency/CurrencyIncubationMetamorph", + "ItemClassesKey": 53, + "Width": 1, + "Height": 1, + "Name": "Меняющийся инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12762, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 670, + "Id": "Metadata/Items/Currency/CurrencyIncubationDelirium", + "ItemClassesKey": 53, + "Width": 1, + "Height": 1, + "Name": "Одержимый инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12763, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 671, + "Id": "Metadata/Items/Currency/CurrencyIncubationEssenceStackable", + "ItemClassesKey": 74, + "Width": 1, + "Height": 1, + "Name": "Шепчущий инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12751, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 672, + "Id": "Metadata/Items/Currency/CurrencyIncubationCurrencyStackable", + "ItemClassesKey": 74, + "Width": 1, + "Height": 1, + "Name": "Прекрасный инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12740, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 673, + "Id": "Metadata/Items/Currency/CurrencyIncubationUniquesStackable", + "ItemClassesKey": 74, + "Width": 1, + "Height": 1, + "Name": "Необычный инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12741, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 674, + "Id": "Metadata/Items/Currency/CurrencyIncubationMapsStackable", + "ItemClassesKey": 74, + "Width": 1, + "Height": 1, + "Name": "Инкубатор картографа", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12743, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 675, + "Id": "Metadata/Items/Currency/CurrencyIncubationUniqueMapsStackable", + "ItemClassesKey": 74, + "Width": 1, + "Height": 1, + "Name": "Потусторонний инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12743, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 676, + "Id": "Metadata/Items/Currency/CurrencyIncubationAbyssStackable", + "ItemClassesKey": 74, + "Width": 1, + "Height": 1, + "Name": "Инкубатор Бездны", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12747, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 677, + "Id": "Metadata/Items/Currency/CurrencyIncubationFragmentsStackable", + "ItemClassesKey": 74, + "Width": 1, + "Height": 1, + "Name": "Раздробленный инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12752, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 678, + "Id": "Metadata/Items/Currency/CurrencyIncubationScarabsStackable", + "ItemClassesKey": 74, + "Width": 1, + "Height": 1, + "Name": "Дергающийся инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12753, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 679, + "Id": "Metadata/Items/Currency/CurrencyIncubationEssenceHighStackable", + "ItemClassesKey": 74, + "Width": 1, + "Height": 1, + "Name": "Заряженный инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12751, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 680, + "Id": "Metadata/Items/Currency/CurrencyIncubationFossilsStackable", + "ItemClassesKey": 74, + "Width": 1, + "Height": 1, + "Name": "Ископаемый инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12754, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 681, + "Id": "Metadata/Items/Currency/CurrencyIncubationPerandusStackable", + "ItemClassesKey": 74, + "Width": 1, + "Height": 1, + "Name": "Калгууранский инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12748, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 682, + "Id": "Metadata/Items/Currency/CurrencyIncubationDivinationStackable", + "ItemClassesKey": 74, + "Width": 1, + "Height": 1, + "Name": "Инкубатор предсказателя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12756, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 683, + "Id": "Metadata/Items/Currency/CurrencyIncubationTalismansStackable", + "ItemClassesKey": 74, + "Width": 1, + "Height": 1, + "Name": "Первобытный инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12759, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 684, + "Id": "Metadata/Items/Currency/CurrencyIncubationLabyrinthHelmStackable", + "ItemClassesKey": 74, + "Width": 1, + "Height": 1, + "Name": "Зачарованный инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12760, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 685, + "Id": "Metadata/Items/Currency/CurrencyIncubationArmour6LinkedStackable", + "ItemClassesKey": 74, + "Width": 1, + "Height": 1, + "Name": "Инкубатор геоманта", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12745, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 686, + "Id": "Metadata/Items/Currency/CurrencyIncubationCurrencyMidStackable", + "ItemClassesKey": 74, + "Width": 1, + "Height": 1, + "Name": "Изысканный инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12740, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 687, + "Id": "Metadata/Items/Currency/CurrencyIncubationUniqueLeagueStackable", + "ItemClassesKey": 74, + "Width": 1, + "Height": 1, + "Name": "Затерянный во времени инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12741, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 688, + "Id": "Metadata/Items/Currency/CurrencyIncubationArmourShaperElderStackable", + "ItemClassesKey": 74, + "Width": 1, + "Height": 1, + "Name": "Небесный инкубатор бронника", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12745, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 689, + "Id": "Metadata/Items/Currency/CurrencyIncubationWeaponShaperElderStackable", + "ItemClassesKey": 74, + "Width": 1, + "Height": 1, + "Name": "Небесный инкубатор кузнеца", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12746, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 690, + "Id": "Metadata/Items/Currency/CurrencyIncubationTrinketShaperElderStackable", + "ItemClassesKey": 74, + "Width": 1, + "Height": 1, + "Name": "Небесный инкубатор ювелира", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12744, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 691, + "Id": "Metadata/Items/Currency/CurrencyIncubationMapElderStackable", + "ItemClassesKey": 74, + "Width": 1, + "Height": 1, + "Name": "Мистический инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12743, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 692, + "Id": "Metadata/Items/Currency/CurrencyIncubationBreachStackable", + "ItemClassesKey": 74, + "Width": 1, + "Height": 1, + "Name": "Затемнённый инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12750, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 693, + "Id": "Metadata/Items/Currency/CurrencyIncubationHarbingerShardStackable", + "ItemClassesKey": 74, + "Width": 1, + "Height": 1, + "Name": "Таинственный инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12749, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 694, + "Id": "Metadata/Items/Currency/CurrencyIncubationGemStackable", + "ItemClassesKey": 74, + "Width": 1, + "Height": 1, + "Name": "Инкубатор волшебника", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12742, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 695, + "Id": "Metadata/Items/Currency/CurrencyIncubationGenericStackable", + "ItemClassesKey": 74, + "Width": 1, + "Height": 1, + "Name": "Загадочный инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12757, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 696, + "Id": "Metadata/Items/Currency/CurrencyIncubationGemLowStackable", + "ItemClassesKey": 74, + "Width": 1, + "Height": 1, + "Name": "Инкубатор камнереза", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12742, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 697, + "Id": "Metadata/Items/Currency/CurrencyIncubationBestiaryStackable", + "ItemClassesKey": 74, + "Width": 1, + "Height": 1, + "Name": "Дикий инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12758, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 698, + "Id": "Metadata/Items/Currency/CurrencyIncubationBlightStackable", + "ItemClassesKey": 74, + "Width": 1, + "Height": 1, + "Name": "Заражённый инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12761, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 699, + "Id": "Metadata/Items/Currency/CurrencyIncubationMetamorphStackable", + "ItemClassesKey": 74, + "Width": 1, + "Height": 1, + "Name": "Меняющийся инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12762, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 700, + "Id": "Metadata/Items/Currency/CurrencyIncubationDeliriumStackable", + "ItemClassesKey": 74, + "Width": 1, + "Height": 1, + "Name": "Одержимый инкубатор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12763, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 701, + "Id": "Metadata/Items/PantheonSouls/PantheonSoulBrineKingUpgrade1", + "ItemClassesKey": 48, + "Width": 1, + "Height": 1, + "Name": "Захваченная душа Пуруны, претендента", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9527, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 702, + "Id": "Metadata/Items/PantheonSouls/PantheonSoulBrineKingUpgrade2", + "ItemClassesKey": 48, + "Width": 1, + "Height": 1, + "Name": "Захваченная душа Трибуна Таннера Легкоступа", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9527, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 703, + "Id": "Metadata/Items/PantheonSouls/PantheonSoulBrineKingUpgrade3", + "ItemClassesKey": 48, + "Width": 1, + "Height": 1, + "Name": "Захваченная душа Сокровища пиратов", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9527, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 704, + "Id": "Metadata/Items/PantheonSouls/PantheonSoulArakaaliUpgrade1", + "ItemClassesKey": 48, + "Width": 1, + "Height": 1, + "Name": "Захваченная душа Малигаро Мучителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9527, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 705, + "Id": "Metadata/Items/PantheonSouls/PantheonSoulArakaaliUpgrade2", + "ItemClassesKey": 48, + "Width": 1, + "Height": 1, + "Name": "Захваченная душа Гибридной вдовы", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9527, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 706, + "Id": "Metadata/Items/PantheonSouls/PantheonSoulArakaaliUpgrade3", + "ItemClassesKey": 48, + "Width": 1, + "Height": 1, + "Name": "Захваченная душа Царицы Великого плетения", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9527, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 707, + "Id": "Metadata/Items/PantheonSouls/PantheonSoulSolarisUpgrade1", + "ItemClassesKey": 48, + "Width": 1, + "Height": 1, + "Name": "Захваченная душа Леса пламени", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9527, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 708, + "Id": "Metadata/Items/PantheonSouls/PantheonSoulSolarisUpgrade2", + "ItemClassesKey": 48, + "Width": 1, + "Height": 1, + "Name": "Захваченная душа Владыки преисподней", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9527, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 709, + "Id": "Metadata/Items/PantheonSouls/PantheonSoulSolarisUpgrade3", + "ItemClassesKey": 48, + "Width": 1, + "Height": 1, + "Name": "Захваченная душа Хоруса, Небесной грани", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9527, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 710, + "Id": "Metadata/Items/PantheonSouls/PantheonSoulLunarisUpgrade1", + "ItemClassesKey": 48, + "Width": 1, + "Height": 1, + "Name": "Захваченная душа Зибберта, Полумесяца", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9527, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 711, + "Id": "Metadata/Items/PantheonSouls/PantheonSoulLunarisUpgrade2", + "ItemClassesKey": 48, + "Width": 1, + "Height": 1, + "Name": "Захваченная душа Хор, Сестры теней", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9527, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 712, + "Id": "Metadata/Items/PantheonSouls/PantheonSoulLunarisUpgrade3", + "ItemClassesKey": 48, + "Width": 1, + "Height": 1, + "Name": "Захваченная душа Капитана Клейборна, проклятого", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9527, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 713, + "Id": "Metadata/Items/PantheonSouls/PantheonSoulAbberathUpgrade1", + "ItemClassesKey": 48, + "Width": 1, + "Height": 1, + "Name": "Захваченная душа Мегеры", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9527, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 714, + "Id": "Metadata/Items/PantheonSouls/PantheonSoulGruthkulUpgrade1", + "ItemClassesKey": 48, + "Width": 1, + "Height": 1, + "Name": "Захваченная душа Эребикса, Погибели света", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9527, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 715, + "Id": "Metadata/Items/PantheonSouls/PantheonSoulYugulUpgrade1", + "ItemClassesKey": 48, + "Width": 1, + "Height": 1, + "Name": "Захваченная душа Вархеша, Сверкающего отродья", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9527, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 716, + "Id": "Metadata/Items/PantheonSouls/PantheonSoulShakariUpgrade1", + "ItemClassesKey": 48, + "Width": 1, + "Height": 1, + "Name": "Захваченная душа Ужаса бескрайних потоков", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9527, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 717, + "Id": "Metadata/Items/PantheonSouls/PantheonSoulTukohamaUpgrade1", + "ItemClassesKey": 48, + "Width": 1, + "Height": 1, + "Name": "Захваченная душа Тасина, Зачинщика войны", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9527, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 718, + "Id": "Metadata/Items/PantheonSouls/PantheonSoulRalakeshUpgrade1", + "ItemClassesKey": 48, + "Width": 1, + "Height": 1, + "Name": "Захваченная душа Дрека, Высшего охотника", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9527, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 719, + "Id": "Metadata/Items/PantheonSouls/PantheonSoulGarukhanUpgrade1", + "ItemClassesKey": 48, + "Width": 1, + "Height": 1, + "Name": "Захваченная душа Охотницы бесконечных дюн", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9527, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 720, + "Id": "Metadata/Items/PantheonSouls/PantheonSoulRyslathaUpgrade1", + "ItemClassesKey": 48, + "Width": 1, + "Height": 1, + "Name": "Захваченная душа Горулис, Отбирающей волю", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9527, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 721, + "Id": "Metadata/Items/UniqueFragments/FragmentUniqueShield1_1", + "ItemClassesKey": 49, + "Width": 1, + "Height": 2, + "Name": "Часть каплевидного щита архонта", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12212, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 722, + "Id": "Metadata/Items/UniqueFragments/FragmentUniqueShield1_2", + "ItemClassesKey": 49, + "Width": 1, + "Height": 2, + "Name": "Часть каплевидного щита архонта", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12213, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 723, + "Id": "Metadata/Items/UniqueFragments/FragmentUniqueShield1_3", + "ItemClassesKey": 49, + "Width": 1, + "Height": 1, + "Name": "Часть каплевидного щита архонта", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12214, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 724, + "Id": "Metadata/Items/UniqueFragments/FragmentUniqueShield1_4", + "ItemClassesKey": 49, + "Width": 1, + "Height": 1, + "Name": "Часть каплевидного щита архонта", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12215, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 725, + "Id": "Metadata/Items/UniqueFragments/FragmentUniqueSword1_1", + "ItemClassesKey": 49, + "Width": 1, + "Height": 2, + "Name": "Часть меча всадника", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12216, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 726, + "Id": "Metadata/Items/UniqueFragments/FragmentUniqueSword1_2", + "ItemClassesKey": 49, + "Width": 1, + "Height": 2, + "Name": "Часть меча всадника", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12217, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 727, + "Id": "Metadata/Items/UniqueFragments/FragmentUniqueSword1_3", + "ItemClassesKey": 49, + "Width": 2, + "Height": 1, + "Name": "Часть меча всадника", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12218, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 728, + "Id": "Metadata/Items/UniqueFragments/FragmentUniqueStaff1_1", + "ItemClassesKey": 49, + "Width": 1, + "Height": 2, + "Name": "Часть императорского посоха", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12219, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 729, + "Id": "Metadata/Items/UniqueFragments/FragmentUniqueStaff1_2", + "ItemClassesKey": 49, + "Width": 1, + "Height": 2, + "Name": "Часть императорского посоха", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12220, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 730, + "Id": "Metadata/Items/UniqueFragments/FragmentUniqueStaff1_3", + "ItemClassesKey": 49, + "Width": 2, + "Height": 2, + "Name": "Часть императорского посоха", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12221, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 731, + "Id": "Metadata/Items/UniqueFragments/FragmentUniqueBelt1_1", + "ItemClassesKey": 49, + "Width": 1, + "Height": 1, + "Name": "Часть матерчатого пояса", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12222, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 732, + "Id": "Metadata/Items/UniqueFragments/FragmentUniqueBelt1_2", + "ItemClassesKey": 49, + "Width": 1, + "Height": 1, + "Name": "Часть матерчатого пояса", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12223, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 733, + "Id": "Metadata/Items/UniqueFragments/FragmentUniqueQuiver1_1", + "ItemClassesKey": 49, + "Width": 1, + "Height": 2, + "Name": "Часть колчана промысловых стрел", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12224, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 734, + "Id": "Metadata/Items/UniqueFragments/FragmentUniqueQuiver1_2", + "ItemClassesKey": 49, + "Width": 1, + "Height": 2, + "Name": "Часть колчана промысловых стрел", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12225, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 735, + "Id": "Metadata/Items/UniqueFragments/FragmentUniqueQuiver1_3", + "ItemClassesKey": 49, + "Width": 2, + "Height": 1, + "Name": "Часть колчана промысловых стрел", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12226, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 736, + "Id": "Metadata/Items/UniqueFragments/FragmentUniqueHelmet1_1", + "ItemClassesKey": 49, + "Width": 1, + "Height": 1, + "Name": "Часть маски равнодушия", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12227, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 737, + "Id": "Metadata/Items/UniqueFragments/FragmentUniqueHelmet1_2", + "ItemClassesKey": 49, + "Width": 1, + "Height": 1, + "Name": "Часть маски равнодушия", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12228, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 738, + "Id": "Metadata/Items/UniqueFragments/FragmentUniqueHelmet1_3", + "ItemClassesKey": 49, + "Width": 2, + "Height": 1, + "Name": "Часть маски равнодушия", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12229, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 739, + "Id": "Metadata/Items/UniqueFragments/FragmentUniqueMap26_1", + "ItemClassesKey": 49, + "Width": 1, + "Height": 2, + "Name": "Аспект Ультиматума", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13467, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 740, + "Id": "Metadata/Items/UniqueFragments/FragmentUniqueMap26_2", + "ItemClassesKey": 49, + "Width": 3, + "Height": 1, + "Name": "Аспект Ультиматума", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13468, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 741, + "Id": "Metadata/Items/UniqueFragments/FragmentUniqueMap26_3", + "ItemClassesKey": 49, + "Width": 1, + "Height": 2, + "Name": "Аспект Ультиматума", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13469, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 742, + "Id": "Metadata/Items/UniqueFragments/FragmentUniqueMap26_4", + "ItemClassesKey": 49, + "Width": 1, + "Height": 2, + "Name": "Аспект Ультиматума", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13470, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 743, + "Id": "Metadata/Items/Scarabs/ScarabBreach1", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Ржавый скарабей Разлома", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 350 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12636, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 744, + "Id": "Metadata/Items/Scarabs/ScarabBreach2", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Гладкий скарабей Разлома", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 415 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12637, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 745, + "Id": "Metadata/Items/Scarabs/ScarabBreach3", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Золочёный скарабей Разлома", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 416 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12638, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 746, + "Id": "Metadata/Items/Scarabs/ScarabBreach4", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Крылатый скарабей Разлома", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 571 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12639, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 747, + "Id": "Metadata/Items/Scarabs/ScarabMaps1", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Ржавый скарабей картографии", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 350 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12640, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 748, + "Id": "Metadata/Items/Scarabs/ScarabMaps2", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Гладкий скарабей картографии", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 415 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12641, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 749, + "Id": "Metadata/Items/Scarabs/ScarabMaps3", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Золочёный скарабей картографии", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 416 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12642, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 750, + "Id": "Metadata/Items/Scarabs/ScarabMaps4", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Крылатый скарабей картографии", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 571 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12643, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 751, + "Id": "Metadata/Items/Scarabs/ScarabUniques1", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Ржавый реликтовый скарабей", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 350 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12644, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 752, + "Id": "Metadata/Items/Scarabs/ScarabUniques2", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Гладкий реликтовый скарабей", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 415 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12645, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 753, + "Id": "Metadata/Items/Scarabs/ScarabUniques3", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Золочёный реликтовый скарабей", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 416 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12646, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 754, + "Id": "Metadata/Items/Scarabs/ScarabUniques4", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Крылатый реликтовый скарабей", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 571 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12647, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 755, + "Id": "Metadata/Items/Scarabs/ScarabBeasts1", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Ржавый скарабей Бестиария", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 350 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12648, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 756, + "Id": "Metadata/Items/Scarabs/ScarabBeasts2", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Гладкий скарабей Бестиария", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 415 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12649, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 757, + "Id": "Metadata/Items/Scarabs/ScarabBeasts3", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Золочёный скарабей Бестиария", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 416 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12650, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 758, + "Id": "Metadata/Items/Scarabs/ScarabBeasts4", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Крылатый скарабей Бестиария", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 571 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12651, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 759, + "Id": "Metadata/Items/Scarabs/ScarabBeasts4a", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Приманка Фаррул", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 2, + "ItemVisualIdentity": 12652, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 760, + "Id": "Metadata/Items/Scarabs/ScarabBeasts4b", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Приманка Сакаваля", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 2, + "ItemVisualIdentity": 12653, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 761, + "Id": "Metadata/Items/Scarabs/ScarabBeasts4c", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Приманка Фенумы", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 2, + "ItemVisualIdentity": 12654, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 762, + "Id": "Metadata/Items/Scarabs/ScarabBeasts4d", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Приманка Краценна", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 2, + "ItemVisualIdentity": 12655, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 763, + "Id": "Metadata/Items/Scarabs/ScarabShaperRares1", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Ржавый скарабей Создателя", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 350 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12656, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 764, + "Id": "Metadata/Items/Scarabs/ScarabShaperRares2", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Гладкий скарабей Создателя", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 415 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12657, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 765, + "Id": "Metadata/Items/Scarabs/ScarabShaperRares3", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Золочёный скарабей Создателя", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 416 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12658, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 766, + "Id": "Metadata/Items/Scarabs/ScarabShaperRares4", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Крылатый скарабей Создателя", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 571 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12659, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 767, + "Id": "Metadata/Items/Scarabs/ScarabElderRares1", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Ржавый скарабей Древнего", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 350 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12660, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 768, + "Id": "Metadata/Items/Scarabs/ScarabElderRares2", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Гладкий скарабей Древнего", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 415 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12661, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 769, + "Id": "Metadata/Items/Scarabs/ScarabElderRares3", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Золочёный скарабей Древнего", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 416 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12662, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 770, + "Id": "Metadata/Items/Scarabs/ScarabElderRares4", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Крылатый скарабей Древнего", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 571 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12663, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 771, + "Id": "Metadata/Items/Scarabs/ScarabSulphite1", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Ржавый сульфитовый скарабей", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 350 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12664, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 772, + "Id": "Metadata/Items/Scarabs/ScarabSulphite2", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Гладкий сульфитовый скарабей", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 415 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12665, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 773, + "Id": "Metadata/Items/Scarabs/ScarabSulphite3", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Золочёный сульфитовый скарабей", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 416 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12666, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 774, + "Id": "Metadata/Items/Scarabs/ScarabSulphite4", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Крылатый сульфитовый скарабей", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 571 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12667, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 775, + "Id": "Metadata/Items/Scarabs/ScarabDivinationCards1", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Ржавый скарабей предсказания", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 350 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12668, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 776, + "Id": "Metadata/Items/Scarabs/ScarabDivinationCards2", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Гладкий скарабей предсказания", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 415 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12669, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 777, + "Id": "Metadata/Items/Scarabs/ScarabDivinationCards3", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Золочёный скарабей предсказания", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 416 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12670, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 778, + "Id": "Metadata/Items/Scarabs/ScarabDivinationCards4", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Крылатый скарабей предсказания", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 571 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12671, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 779, + "Id": "Metadata/Items/Scarabs/ScarabTorment1", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Ржавый скарабей Мучения", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 350 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12672, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 780, + "Id": "Metadata/Items/Scarabs/ScarabTorment2", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Гладкий скарабей Мучения", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 415 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12673, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 781, + "Id": "Metadata/Items/Scarabs/ScarabTorment3", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Золочёный скарабей Мучения", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 416 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12674, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 782, + "Id": "Metadata/Items/Scarabs/ScarabTorment4", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Крылатый скарабей Мучения", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 571 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12675, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 783, + "Id": "Metadata/Items/Scarabs/ScarabStrongbox1", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Ржавый скарабей Засады", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 350 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12676, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 784, + "Id": "Metadata/Items/Scarabs/ScarabStrongbox2", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Гладкий скарабей Засады", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 415 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12677, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 785, + "Id": "Metadata/Items/Scarabs/ScarabStrongbox3", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Золочёный скарабей Засады", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 416 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12678, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 786, + "Id": "Metadata/Items/Scarabs/ScarabStrongbox4", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Крылатый скарабей Засады", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 571 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12679, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 787, + "Id": "Metadata/Items/Scarabs/ScarabHarbinger1", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Ржавый скарабей Предвестника", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 350 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12680, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 788, + "Id": "Metadata/Items/Scarabs/ScarabHarbinger2", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Гладкий скарабей Предвестника", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 415 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12681, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 789, + "Id": "Metadata/Items/Scarabs/ScarabHarbinger3", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Золочёный скарабей Предвестника", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 416 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12682, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 790, + "Id": "Metadata/Items/Scarabs/ScarabHarbinger4", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Крылатый скарабей Предвестника", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 571 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12683, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 791, + "Id": "Metadata/Items/Scarabs/ScarabPerandus1", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Ржавый скарабей Экспедиции", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 350 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12684, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 792, + "Id": "Metadata/Items/Scarabs/ScarabPerandus2", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Гладкий скарабей Экспедиции", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 415 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12685, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 793, + "Id": "Metadata/Items/Scarabs/ScarabPerandus3", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Золочёный скарабей Экспедиции", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 416 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12686, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 794, + "Id": "Metadata/Items/Scarabs/ScarabPerandus4", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Крылатый скарабей Экспедиции", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 571 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12687, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 795, + "Id": "Metadata/Items/Scarabs/ScarabLegion1", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Ржавый скарабей Легиона", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 350 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12688, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 796, + "Id": "Metadata/Items/Scarabs/ScarabLegion2", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Гладкий скарабей Легиона", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 415 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12689, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 797, + "Id": "Metadata/Items/Scarabs/ScarabLegion3", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Золочёный скарабей Легиона", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 416 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12690, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 798, + "Id": "Metadata/Items/Scarabs/ScarabLegion4", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Крылатый скарабей Легиона", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 571 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12691, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 799, + "Id": "Metadata/Items/Scarabs/ScarabMetamorph1", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Ржавый скарабей Метаморфа", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 350 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12692, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 800, + "Id": "Metadata/Items/Scarabs/ScarabMetamorph2", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Гладкий скарабей Метаморфа", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 415 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12693, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 801, + "Id": "Metadata/Items/Scarabs/ScarabMetamorph3", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Золочёный скарабей Метаморфа", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 416 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12694, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 802, + "Id": "Metadata/Items/Scarabs/ScarabMetamorph4", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Крылатый скарабей Метаморфа", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 571 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12695, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 803, + "Id": "Metadata/Items/Scarabs/ScarabBlight1", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Ржавый скарабей Скверны", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 350 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12696, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 804, + "Id": "Metadata/Items/Scarabs/ScarabBlight2", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Гладкий скарабей Скверны", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 415 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12697, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 805, + "Id": "Metadata/Items/Scarabs/ScarabBlight3", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Золочёный скарабей Скверны", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 416 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12698, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 806, + "Id": "Metadata/Items/Scarabs/ScarabBlight4", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Крылатый скарабей Скверны", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 571 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12699, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 807, + "Id": "Metadata/Items/Scarabs/ScarabAbyss1", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Ржавый скарабей Бездны", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 350 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12700, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 808, + "Id": "Metadata/Items/Scarabs/ScarabAbyss2", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Гладкий скарабей Бездны", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 415 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12701, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 809, + "Id": "Metadata/Items/Scarabs/ScarabAbyss3", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Золочёный скарабей Бездны", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 416 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12702, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 810, + "Id": "Metadata/Items/Scarabs/ScarabAbyss4", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Крылатый скарабей Бездны", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 571 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12703, + "IsCorrupted": false, + "TradeMarketCategory": 44 + }, + { + "_index": 811, + "Id": "Metadata/Items/Currency/DistilledEmotion1", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Distilled Ire", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 460 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12841, + "IsCorrupted": false, + "TradeMarketCategory": 46 + }, + { + "_index": 812, + "Id": "Metadata/Items/Currency/DistilledEmotion2", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Distilled Guilt", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 460 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12842, + "IsCorrupted": false, + "TradeMarketCategory": 46 + }, + { + "_index": 813, + "Id": "Metadata/Items/Currency/DistilledEmotion3", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Distilled Greed", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 460 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12843, + "IsCorrupted": false, + "TradeMarketCategory": 46 + }, + { + "_index": 814, + "Id": "Metadata/Items/Currency/DistilledEmotion4", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Distilled Paranoia", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 460 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12844, + "IsCorrupted": false, + "TradeMarketCategory": 46 + }, + { + "_index": 815, + "Id": "Metadata/Items/Currency/DistilledEmotion5", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Distilled Envy", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 460 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12845, + "IsCorrupted": false, + "TradeMarketCategory": 46 + }, + { + "_index": 816, + "Id": "Metadata/Items/Currency/DistilledEmotion6", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Distilled Disgust", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 460 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12846, + "IsCorrupted": false, + "TradeMarketCategory": 46 + }, + { + "_index": 817, + "Id": "Metadata/Items/Currency/DistilledEmotion7", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Distilled Despair", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 460 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12847, + "IsCorrupted": false, + "TradeMarketCategory": 46 + }, + { + "_index": 818, + "Id": "Metadata/Items/Currency/DistilledEmotion8", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Distilled Fear", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 460 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12848, + "IsCorrupted": false, + "TradeMarketCategory": 46 + }, + { + "_index": 819, + "Id": "Metadata/Items/Currency/DistilledEmotion9", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Distilled Suffering", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 460 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12849, + "IsCorrupted": false, + "TradeMarketCategory": 46 + }, + { + "_index": 820, + "Id": "Metadata/Items/Currency/DistilledEmotion10", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Distilled Isolation", + "DropLevel": 80, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 460 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12850, + "IsCorrupted": false, + "TradeMarketCategory": 46 + }, + { + "_index": 821, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgradeFinal", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Жемчужный Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12934, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 822, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade1_1", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Алый Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12931, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 823, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade1_2", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Алый Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12931, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 824, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade1_3", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Алый Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12931, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 825, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade1_4", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Алый Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12931, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 826, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade1_5", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Алый Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12931, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 827, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade1_6", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Алый Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12931, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 828, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade1_7", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Алый Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12931, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 829, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade1_8", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Алый Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12931, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 830, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade2_1", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Кобальтовый Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12932, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 831, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade2_2", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Кобальтовый Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12932, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 832, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade2_3", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Кобальтовый Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12932, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 833, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade2_4", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Кобальтовый Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12932, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 834, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade2_5", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Кобальтовый Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12932, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 835, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade2_6", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Кобальтовый Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12932, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 836, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade2_7", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Кобальтовый Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12932, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 837, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade2_8", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Кобальтовый Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12932, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 838, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade3_1", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Бирюзовый Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12933, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 839, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade3_2", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Бирюзовый Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12933, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 840, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade3_3", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Бирюзовый Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12933, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 841, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade3_4", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Бирюзовый Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12933, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 842, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade3_5", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Бирюзовый Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12933, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 843, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade3_6", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Бирюзовый Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12933, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 844, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade3_7", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Бирюзовый Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12933, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 845, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade3_8", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Бирюзовый Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12933, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 846, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade4_1", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Золотой Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12935, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 847, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade4_2", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Золотой Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12935, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 848, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade4_3", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Золотой Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12935, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 849, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade4_4", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Золотой Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12935, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 850, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade4_5", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Золотой Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12935, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 851, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade4_6", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Золотой Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12935, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 852, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade4_7", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Золотой Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12935, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 853, + "Id": "Metadata/Items/AtlasUpgrades/AtlasRegionUpgrade4_8", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Золотой Камень Хранителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12935, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 854, + "Id": "Metadata/Items/AtlasUpgrades/AtlasUpgradePrimordial1", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Церемониальный Камень Пустоты", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12936, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 855, + "Id": "Metadata/Items/AtlasUpgrades/AtlasUpgradePrimordial2", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Обветшалый Камень Пустоты", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12937, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 856, + "Id": "Metadata/Items/AtlasUpgrades/AtlasUpgradePrimordial3", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Цепкий Камень Пустоты", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12938, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 857, + "Id": "Metadata/Items/AtlasUpgrades/AtlasUpgradePrimordial4", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Всеведущий Камень Пустоты", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12939, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 858, + "Id": "Metadata/Items/AtlasExiles/AddModToRareCrusader", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера возвышения крестоносца", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12926, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 859, + "Id": "Metadata/Items/AtlasExiles/AddModToRareRedeemer", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера возвышения избавителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12927, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 860, + "Id": "Metadata/Items/AtlasExiles/AddModToRareHunter", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера возвышения охотника", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12928, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 861, + "Id": "Metadata/Items/AtlasExiles/AddModToRareWarlord", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера возвышения вождя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12929, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 862, + "Id": "Metadata/Items/AtlasExiles/ApplyInfluence", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера Пробудителя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 12930, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 863, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Daggers/EtherealBlade1", + "ItemClassesKey": 7, + "Width": 1, + "Height": 3, + "Name": "Бесплотный клинок", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 12947, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 864, + "Id": "Metadata/Items/Heist/HeistCoin", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Разбойничий жетон", + "DropLevel": 48, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 590 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 12994, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 865, + "Id": "Metadata/Items/Heist/HeistContractControlBlocks", + "ItemClassesKey": 65, + "Width": 1, + "Height": 1, + "Name": "Контракт: Бункер", + "DropLevel": 48, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 573 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13051, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 866, + "Id": "Metadata/Items/Heist/HeistContractMines", + "ItemClassesKey": 65, + "Width": 1, + "Height": 1, + "Name": "Контракт: Притон контрабандистов", + "DropLevel": 50, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 573 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13052, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 867, + "Id": "Metadata/Items/Heist/HeistContractDungeon", + "ItemClassesKey": 65, + "Width": 1, + "Height": 1, + "Name": "Контракт: Лаборатория", + "DropLevel": 60, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 573 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13053, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 868, + "Id": "Metadata/Items/Heist/HeistContractReliquary", + "ItemClassesKey": 65, + "Width": 1, + "Height": 1, + "Name": "Контракт: Хранилище", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 573 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13054, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 869, + "Id": "Metadata/Items/Heist/HeistContractLibrary", + "ItemClassesKey": 65, + "Width": 1, + "Height": 1, + "Name": "Контракт: Запретная библиотека", + "DropLevel": 60, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 573 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13055, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 870, + "Id": "Metadata/Items/Heist/HeistContractRobotTunnels", + "ItemClassesKey": 65, + "Width": 1, + "Height": 1, + "Name": "Контракт: Тоннели", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 573 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13056, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 871, + "Id": "Metadata/Items/Heist/HeistContractSewers", + "ItemClassesKey": 65, + "Width": 1, + "Height": 1, + "Name": "Контракт: Подполье", + "DropLevel": 48, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 573 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13057, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 872, + "Id": "Metadata/Items/Heist/HeistContractCourts", + "ItemClassesKey": 65, + "Width": 1, + "Height": 1, + "Name": "Контракт: Референтура", + "DropLevel": 50, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 573 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13058, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 873, + "Id": "Metadata/Items/Heist/HeistContractMansion", + "ItemClassesKey": 65, + "Width": 1, + "Height": 1, + "Name": "Контракт: Особняк", + "DropLevel": 50, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 573 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13059, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 874, + "Id": "Metadata/Items/Heist/HeistBlueprintControlBlocks", + "ItemClassesKey": 70, + "Width": 1, + "Height": 1, + "Name": "Чертёж: Бункер", + "DropLevel": 50, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 612 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13068, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 875, + "Id": "Metadata/Items/Heist/HeistBlueprintMines", + "ItemClassesKey": 70, + "Width": 1, + "Height": 1, + "Name": "Чертёж: Притон контрабандистов", + "DropLevel": 50, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 612 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13069, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 876, + "Id": "Metadata/Items/Heist/HeistBlueprintDungeon", + "ItemClassesKey": 70, + "Width": 1, + "Height": 1, + "Name": "Чертёж: Лаборатория", + "DropLevel": 60, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 612 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13070, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 877, + "Id": "Metadata/Items/Heist/HeistBlueprintReliquary", + "ItemClassesKey": 70, + "Width": 1, + "Height": 1, + "Name": "Чертёж: Хранилище", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 612 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13071, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 878, + "Id": "Metadata/Items/Heist/HeistBlueprintLibrary", + "ItemClassesKey": 70, + "Width": 1, + "Height": 1, + "Name": "Чертёж: Запретная библиотека", + "DropLevel": 60, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 612 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13072, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 879, + "Id": "Metadata/Items/Heist/HeistBlueprintRobotTunnels", + "ItemClassesKey": 70, + "Width": 1, + "Height": 1, + "Name": "Чертёж: Тоннели", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 612 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13073, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 880, + "Id": "Metadata/Items/Heist/HeistBlueprintSewers", + "ItemClassesKey": 70, + "Width": 1, + "Height": 1, + "Name": "Чертёж: Подполье", + "DropLevel": 50, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 612 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13074, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 881, + "Id": "Metadata/Items/Heist/HeistBlueprintCourts", + "ItemClassesKey": 70, + "Width": 1, + "Height": 1, + "Name": "Чертёж: Референтура", + "DropLevel": 50, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 612 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13075, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 882, + "Id": "Metadata/Items/Heist/HeistBlueprintMansion", + "ItemClassesKey": 70, + "Width": 1, + "Height": 1, + "Name": "Чертёж: Особняк", + "DropLevel": 50, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 612 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13076, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 883, + "Id": "Metadata/Items/Heist/HeistEquipmentWeaponTest", + "ItemClassesKey": 66, + "Width": 2, + "Height": 2, + "Name": "[UNUSED] Heist Test Weapon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 6828, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 884, + "Id": "Metadata/Items/Heist/HeistEquipmentToolTest", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "[UNUSED] Heist Test Tool", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9604, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 885, + "Id": "Metadata/Items/Heist/HeistEquipmentUtilityTest", + "ItemClassesKey": 68, + "Width": 2, + "Height": 2, + "Name": "[UNUSED] Heist Test Utility Equipment", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 12013, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 886, + "Id": "Metadata/Items/Heist/HeistEquipmentRewardTest", + "ItemClassesKey": 69, + "Width": 1, + "Height": 1, + "Name": "[UNUSED] Heist Test Reward Equipment", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 6939, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 887, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractTutorial", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Контракт: Пробное дело", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13060, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 888, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestKarst1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Контракт: Украденные отмычки", + "DropLevel": 48, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13060, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 889, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestKarst2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Контракт: Месть Карста", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13060, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 890, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestKarst3", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Контракт: По заслугам", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13060, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 891, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestTibbs1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Контракт: Поиск Опал", + "DropLevel": 48, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13060, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 892, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestTibbs2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Контракт: Самоцветы Опал", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13060, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 893, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestHuck1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Контракт: Где найти Инока", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13060, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 894, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestHuck2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Контракт: Останки Инока", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13060, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 895, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestVinderi1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Контракт: Список покупок", + "DropLevel": 60, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13060, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 896, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestVinderi2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Контракт: Бомба Виндери", + "DropLevel": 78, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13060, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 897, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestGianna1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Контракт: Пьеса без названия", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13060, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 898, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestGianna2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Контракт: Лучшие костюмы", + "DropLevel": 80, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13060, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 899, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestTullina1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Контракт: Свадебное платье", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13060, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 900, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestTullina2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Контракт: Прощание", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13060, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 901, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestNiles1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Контракт: Рациональный подход", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13060, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 902, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestNiles2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Контракт: Рядовой образец", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13060, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 903, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestNenet1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Контракт: Книга Яманры", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13060, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 904, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestNenetRepeatable", + "ItemClassesKey": 65, + "Width": 1, + "Height": 1, + "Name": "Запретный контракт", + "DropLevel": 81, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13062, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 905, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestIsla1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Контракт: Прототипы Айлы", + "DropLevel": 46, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13060, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 906, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestIsla2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Контракт: Чертежи Айлы", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13060, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 907, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestIslaRepeatable", + "ItemClassesKey": 65, + "Width": 1, + "Height": 1, + "Name": "Превентивный контракт", + "DropLevel": 80, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13061, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 908, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestAdiyah1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Контракт: Дело чести", + "DropLevel": 60, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13060, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 909, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestAdiyah2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Контракт: Под чужим флагом", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13060, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 910, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestAdiyahRepeatable", + "ItemClassesKey": 65, + "Width": 1, + "Height": 1, + "Name": "Семейный контракт", + "DropLevel": 81, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13063, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 911, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestWhakano1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Контракт: Отместка поработителя", + "DropLevel": 60, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13060, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 912, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestWhakano2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Контракт: По бумажному следу", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13060, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 913, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestWhakanoRepeatable", + "ItemClassesKey": 65, + "Width": 1, + "Height": 1, + "Name": "Карательный контракт", + "DropLevel": 80, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13065, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 914, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestFaustus1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Контракт: Записи адмирала", + "DropLevel": 60, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13060, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 915, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestFaustus2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Контракт: Находки для Фидия", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13060, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 916, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestFaustusRepeatable", + "ItemClassesKey": 65, + "Width": 1, + "Height": 1, + "Name": "Морской контракт", + "DropLevel": 82, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13064, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 917, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestKurai1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Контракт: Подарок Хайрри", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13060, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 918, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestKurai2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Контракт: Переговоры", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13060, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 919, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestKurai3", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Контракт: Вызволение", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13060, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 920, + "Id": "Metadata/Items/Heist/QuestContracts/HeistContractQuestKuraiRepeatable", + "ItemClassesKey": 65, + "Width": 1, + "Height": 1, + "Name": "Мстительный контракт", + "DropLevel": 83, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13066, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 921, + "Id": "Metadata/Items/Heist/HeistEquipmentCloak1", + "ItemClassesKey": 68, + "Width": 2, + "Height": 2, + "Name": "Оторванная накидка", + "DropLevel": 60, + "Implicit_ModsKeys": [ + 11041 + ], + "TagsKeys": [ + 591 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13078, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 922, + "Id": "Metadata/Items/Heist/HeistEquipmentCloak2", + "ItemClassesKey": 68, + "Width": 2, + "Height": 2, + "Name": "Истрёпанная накидка", + "DropLevel": 75, + "Implicit_ModsKeys": [ + 11042 + ], + "TagsKeys": [ + 591 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13079, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 923, + "Id": "Metadata/Items/Heist/HeistEquipmentCloak3", + "ItemClassesKey": 68, + "Width": 2, + "Height": 2, + "Name": "Накидка с капюшоном", + "DropLevel": 80, + "Implicit_ModsKeys": [ + 11043 + ], + "TagsKeys": [ + 591 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13080, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 924, + "Id": "Metadata/Items/Heist/HeistEquipmentCloak4", + "ItemClassesKey": 68, + "Width": 2, + "Height": 2, + "Name": "Шелестящая накидка", + "DropLevel": 83, + "Implicit_ModsKeys": [ + 11044 + ], + "TagsKeys": [ + 591 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13081, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 925, + "Id": "Metadata/Items/Heist/HeistEquipmentBrooch1", + "ItemClassesKey": 69, + "Width": 1, + "Height": 1, + "Name": "Серебряная брошь", + "DropLevel": 60, + "Implicit_ModsKeys": [ + 11045 + ], + "TagsKeys": [ + 592 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13082, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 926, + "Id": "Metadata/Items/Heist/HeistEquipmentBrooch2", + "ItemClassesKey": 69, + "Width": 1, + "Height": 1, + "Name": "Золотая брошь", + "DropLevel": 75, + "Implicit_ModsKeys": [ + 11046 + ], + "TagsKeys": [ + 592 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13083, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 927, + "Id": "Metadata/Items/Heist/HeistEquipmentBrooch3", + "ItemClassesKey": 69, + "Width": 1, + "Height": 1, + "Name": "Глянцевая брошь", + "DropLevel": 80, + "Implicit_ModsKeys": [ + 11047 + ], + "TagsKeys": [ + 592 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13084, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 928, + "Id": "Metadata/Items/Heist/HeistEquipmentBrooch4", + "ItemClassesKey": 69, + "Width": 1, + "Height": 1, + "Name": "Амальгамированная брошь", + "DropLevel": 83, + "Implicit_ModsKeys": [ + 11048 + ], + "TagsKeys": [ + 592 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13085, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 929, + "Id": "Metadata/Items/Heist/HeistEquipmentLockpicking1", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Базовая отмычка", + "DropLevel": 60, + "Implicit_ModsKeys": [ + 11061 + ], + "TagsKeys": [ + 594, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13086, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 930, + "Id": "Metadata/Items/Heist/HeistEquipmentLockpicking2", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Стандартная отмычка", + "DropLevel": 75, + "Implicit_ModsKeys": [ + 11062 + ], + "TagsKeys": [ + 594, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13087, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 931, + "Id": "Metadata/Items/Heist/HeistEquipmentLockpicking3", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Тонкая отмычка", + "DropLevel": 80, + "Implicit_ModsKeys": [ + 11063 + ], + "TagsKeys": [ + 594, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13088, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 932, + "Id": "Metadata/Items/Heist/HeistEquipmentLockpicking4", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Образцовая отмычка", + "DropLevel": 83, + "Implicit_ModsKeys": [ + 11064 + ], + "TagsKeys": [ + 594, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13089, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 933, + "Id": "Metadata/Items/Heist/HeistEquipmentBruteForce1", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Кожаные наручи", + "DropLevel": 60, + "Implicit_ModsKeys": [ + 11065 + ], + "TagsKeys": [ + 595, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13090, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 934, + "Id": "Metadata/Items/Heist/HeistEquipmentBruteForce2", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Клёпаные наручи", + "DropLevel": 75, + "Implicit_ModsKeys": [ + 11066 + ], + "TagsKeys": [ + 595, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13091, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 935, + "Id": "Metadata/Items/Heist/HeistEquipmentBruteForce3", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Рунные наручи", + "DropLevel": 80, + "Implicit_ModsKeys": [ + 11067 + ], + "TagsKeys": [ + 595, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13092, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 936, + "Id": "Metadata/Items/Heist/HeistEquipmentBruteForce4", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Стальные наручи", + "DropLevel": 83, + "Implicit_ModsKeys": [ + 11068 + ], + "TagsKeys": [ + 595, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13093, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 937, + "Id": "Metadata/Items/Heist/HeistEquipmentPerception1", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Грубый чуящий амулет", + "DropLevel": 60, + "Implicit_ModsKeys": [ + 11069 + ], + "TagsKeys": [ + 596, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13094, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 938, + "Id": "Metadata/Items/Heist/HeistEquipmentPerception2", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Тонкий чуящий амулет", + "DropLevel": 75, + "Implicit_ModsKeys": [ + 11070 + ], + "TagsKeys": [ + 596, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13095, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 939, + "Id": "Metadata/Items/Heist/HeistEquipmentPerception3", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Гладкий чуящий амулет", + "DropLevel": 80, + "Implicit_ModsKeys": [ + 11071 + ], + "TagsKeys": [ + 596, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13096, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 940, + "Id": "Metadata/Items/Heist/HeistEquipmentPerception4", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Волшебный чуящий амулет", + "DropLevel": 83, + "Implicit_ModsKeys": [ + 11072 + ], + "TagsKeys": [ + 596, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13097, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 941, + "Id": "Metadata/Items/Heist/HeistEquipmentDemolition1", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Вольтаксовый порох", + "DropLevel": 60, + "Implicit_ModsKeys": [ + 11073 + ], + "TagsKeys": [ + 597, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13098, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 942, + "Id": "Metadata/Items/Heist/HeistEquipmentDemolition2", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Тератновый порох", + "DropLevel": 75, + "Implicit_ModsKeys": [ + 11074 + ], + "TagsKeys": [ + 597, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13099, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 943, + "Id": "Metadata/Items/Heist/HeistEquipmentDemolition3", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Азуритовый порох", + "DropLevel": 80, + "Implicit_ModsKeys": [ + 11075 + ], + "TagsKeys": [ + 597, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13100, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 944, + "Id": "Metadata/Items/Heist/HeistEquipmentDemolition4", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Волшебный порох", + "DropLevel": 83, + "Implicit_ModsKeys": [ + 11076 + ], + "TagsKeys": [ + 597, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13101, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 945, + "Id": "Metadata/Items/Heist/HeistEquipmentCounterThaumaturge1", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Грубый оберег", + "DropLevel": 60, + "Implicit_ModsKeys": [ + 11077 + ], + "TagsKeys": [ + 598, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13102, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 946, + "Id": "Metadata/Items/Heist/HeistEquipmentCounterThaumaturge2", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Блестящий оберег", + "DropLevel": 75, + "Implicit_ModsKeys": [ + 11078 + ], + "TagsKeys": [ + 598, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13103, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 947, + "Id": "Metadata/Items/Heist/HeistEquipmentCounterThaumaturge3", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Сияющий оберег", + "DropLevel": 80, + "Implicit_ModsKeys": [ + 11079 + ], + "TagsKeys": [ + 598, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13104, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 948, + "Id": "Metadata/Items/Heist/HeistEquipmentCounterThaumaturge4", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Волшебный оберег", + "DropLevel": 83, + "Implicit_ModsKeys": [ + 11080 + ], + "TagsKeys": [ + 598, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13105, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 949, + "Id": "Metadata/Items/Heist/HeistEquipmentTrapDisarmament1", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Cвязка типовых ключей", + "DropLevel": 60, + "Implicit_ModsKeys": [ + 11081 + ], + "TagsKeys": [ + 599, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13106, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 950, + "Id": "Metadata/Items/Heist/HeistEquipmentTrapDisarmament2", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Связка разнообразных ключей", + "DropLevel": 75, + "Implicit_ModsKeys": [ + 11082 + ], + "TagsKeys": [ + 599, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13107, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 951, + "Id": "Metadata/Items/Heist/HeistEquipmentTrapDisarmament3", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Связка универсальных ключей", + "DropLevel": 80, + "Implicit_ModsKeys": [ + 11083 + ], + "TagsKeys": [ + 599, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13108, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 952, + "Id": "Metadata/Items/Heist/HeistEquipmentTrapDisarmament4", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Связка великого мастера ключей", + "DropLevel": 83, + "Implicit_ModsKeys": [ + 11084 + ], + "TagsKeys": [ + 599, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13109, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 953, + "Id": "Metadata/Items/Heist/HeistEquipmentAgility1", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Щучьи подошвы", + "DropLevel": 60, + "Implicit_ModsKeys": [ + 11085 + ], + "TagsKeys": [ + 600, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13110, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 954, + "Id": "Metadata/Items/Heist/HeistEquipmentAgility2", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Лисьи подошвы", + "DropLevel": 75, + "Implicit_ModsKeys": [ + 11086 + ], + "TagsKeys": [ + 600, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13111, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 955, + "Id": "Metadata/Items/Heist/HeistEquipmentAgility3", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Крылатые подошвы", + "DropLevel": 80, + "Implicit_ModsKeys": [ + 11087 + ], + "TagsKeys": [ + 600, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13112, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 956, + "Id": "Metadata/Items/Heist/HeistEquipmentAgility4", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Шелкопрядные подошвы", + "DropLevel": 83, + "Implicit_ModsKeys": [ + 11088 + ], + "TagsKeys": [ + 600, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13113, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 957, + "Id": "Metadata/Items/Heist/HeistEquipmentDeception1", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Базовый маскировочный набор", + "DropLevel": 60, + "Implicit_ModsKeys": [ + 11089 + ], + "TagsKeys": [ + 601, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13114, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 958, + "Id": "Metadata/Items/Heist/HeistEquipmentDeception2", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Театральный маскировочный набор", + "DropLevel": 75, + "Implicit_ModsKeys": [ + 11090 + ], + "TagsKeys": [ + 601, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13115, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 959, + "Id": "Metadata/Items/Heist/HeistEquipmentDeception3", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Шпионский маскировочный набор", + "DropLevel": 80, + "Implicit_ModsKeys": [ + 11091 + ], + "TagsKeys": [ + 601, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13116, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 960, + "Id": "Metadata/Items/Heist/HeistEquipmentDeception4", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Маскировочный набор цареубийцы", + "DropLevel": 83, + "Implicit_ModsKeys": [ + 11092 + ], + "TagsKeys": [ + 601, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13117, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 961, + "Id": "Metadata/Items/Heist/HeistEquipmentEngineering1", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Стальная дрель", + "DropLevel": 60, + "Implicit_ModsKeys": [ + 11093 + ], + "TagsKeys": [ + 602, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13118, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 962, + "Id": "Metadata/Items/Heist/HeistEquipmentEngineering2", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Звездообразная дрель", + "DropLevel": 75, + "Implicit_ModsKeys": [ + 11094 + ], + "TagsKeys": [ + 602, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13119, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 963, + "Id": "Metadata/Items/Heist/HeistEquipmentEngineering3", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Серная горелка", + "DropLevel": 80, + "Implicit_ModsKeys": [ + 11095 + ], + "TagsKeys": [ + 602, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13120, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 964, + "Id": "Metadata/Items/Heist/HeistEquipmentEngineering4", + "ItemClassesKey": 67, + "Width": 2, + "Height": 2, + "Name": "Волшебная горелка", + "DropLevel": 83, + "Implicit_ModsKeys": [ + 11096 + ], + "TagsKeys": [ + 602, + 604 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13121, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 965, + "Id": "Metadata/Items/Heist/HeistEquipmentMelee1", + "ItemClassesKey": 66, + "Width": 2, + "Height": 2, + "Name": "Грубый оселок", + "DropLevel": 60, + "Implicit_ModsKeys": [ + 11049 + ], + "TagsKeys": [ + 593, + 609 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13122, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 966, + "Id": "Metadata/Items/Heist/HeistEquipmentMelee2", + "ItemClassesKey": 66, + "Width": 2, + "Height": 2, + "Name": "Обычный оселок", + "DropLevel": 75, + "Implicit_ModsKeys": [ + 11050 + ], + "TagsKeys": [ + 593, + 609 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13123, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 967, + "Id": "Metadata/Items/Heist/HeistEquipmentMelee3", + "ItemClassesKey": 66, + "Width": 2, + "Height": 2, + "Name": "Мелкий оселок", + "DropLevel": 80, + "Implicit_ModsKeys": [ + 11051 + ], + "TagsKeys": [ + 593, + 609 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13124, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 968, + "Id": "Metadata/Items/Heist/HeistEquipmentMelee4", + "ItemClassesKey": 66, + "Width": 2, + "Height": 2, + "Name": "Обсидиановый оселок", + "DropLevel": 83, + "Implicit_ModsKeys": [ + 11052 + ], + "TagsKeys": [ + 593, + 609 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13125, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 969, + "Id": "Metadata/Items/Heist/HeistEquipmentRanged1", + "ItemClassesKey": 66, + "Width": 2, + "Height": 2, + "Name": "Рубчатый наконечник", + "DropLevel": 60, + "Implicit_ModsKeys": [ + 11053 + ], + "TagsKeys": [ + 593, + 610 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13126, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 970, + "Id": "Metadata/Items/Heist/HeistEquipmentRanged2", + "ItemClassesKey": 66, + "Width": 2, + "Height": 2, + "Name": "Раскалывающий наконечник", + "DropLevel": 75, + "Implicit_ModsKeys": [ + 11054 + ], + "TagsKeys": [ + 593, + 610 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13127, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 971, + "Id": "Metadata/Items/Heist/HeistEquipmentRanged3", + "ItemClassesKey": 66, + "Width": 2, + "Height": 2, + "Name": "Сминающий наконечник", + "DropLevel": 80, + "Implicit_ModsKeys": [ + 11055 + ], + "TagsKeys": [ + 593, + 610 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13128, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 972, + "Id": "Metadata/Items/Heist/HeistEquipmentRanged4", + "ItemClassesKey": 66, + "Width": 2, + "Height": 2, + "Name": "Точный наконечник", + "DropLevel": 83, + "Implicit_ModsKeys": [ + 11056 + ], + "TagsKeys": [ + 593, + 610 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13129, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 973, + "Id": "Metadata/Items/Heist/HeistEquipmentCaster1", + "ItemClassesKey": 66, + "Width": 2, + "Height": 2, + "Name": "Фокусирующий камень", + "DropLevel": 60, + "Implicit_ModsKeys": [ + 11057 + ], + "TagsKeys": [ + 593, + 611 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13130, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 974, + "Id": "Metadata/Items/Heist/HeistEquipmentCaster2", + "ItemClassesKey": 66, + "Width": 2, + "Height": 2, + "Name": "Проводящая цепочка", + "DropLevel": 75, + "Implicit_ModsKeys": [ + 11058 + ], + "TagsKeys": [ + 593, + 611 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13131, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 975, + "Id": "Metadata/Items/Heist/HeistEquipmentCaster3", + "ItemClassesKey": 66, + "Width": 2, + "Height": 2, + "Name": "Накопительный оберег", + "DropLevel": 80, + "Implicit_ModsKeys": [ + 11059 + ], + "TagsKeys": [ + 593, + 611 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13132, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 976, + "Id": "Metadata/Items/Heist/HeistEquipmentCaster4", + "ItemClassesKey": 66, + "Width": 2, + "Height": 2, + "Name": "Высвобождающее ожерелье", + "DropLevel": 83, + "Implicit_ModsKeys": [ + 11060 + ], + "TagsKeys": [ + 593, + 611 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13133, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 977, + "Id": "Metadata/Items/Heist/HeistFinalObjective1", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Урна Фаруда", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13134, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 978, + "Id": "Metadata/Items/Heist/HeistFinalObjective2", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Шкатулка из Трипикса", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13135, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 979, + "Id": "Metadata/Items/Heist/HeistFinalObjective3", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Кетская курильница", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13136, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 980, + "Id": "Metadata/Items/Heist/HeistFinalObjective4", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Венец эзомита", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13137, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 981, + "Id": "Metadata/Items/Heist/HeistFinalObjective5", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Фолиант Аз Мири", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13138, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 982, + "Id": "Metadata/Items/Heist/HeistFinalObjective6", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Рука Аримора", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13139, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 983, + "Id": "Metadata/Items/Heist/HeistFinalObjective7", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Аберратовы рога", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13140, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 984, + "Id": "Metadata/Items/Heist/HeistFinalObjective8", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Трубка адмирала Проклера", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13168, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 985, + "Id": "Metadata/Items/Heist/HeistFinalObjective9", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Алхимическая чаша", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13169, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 986, + "Id": "Metadata/Items/Heist/HeistFinalObjective10", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Огамский канделябр", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13193, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 987, + "Id": "Metadata/Items/Heist/HeistFinalObjective11", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Череп гоминида с бивнями", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13195, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 988, + "Id": "Metadata/Items/Heist/HeistFinalObjective12", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Небесный камень", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13172, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 989, + "Id": "Metadata/Items/Heist/HeistFinalObjective13", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Урна первозданного праха", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13196, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 990, + "Id": "Metadata/Items/Heist/HeistFinalObjective14", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Сердечная катушка", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13174, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 991, + "Id": "Metadata/Items/Heist/HeistFinalObjective15", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Загадочный механизм A4", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13175, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 992, + "Id": "Metadata/Items/Heist/HeistFinalObjective16", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Загадочный механизм B2", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13176, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 993, + "Id": "Metadata/Items/Heist/HeistFinalObjective17", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Загадочный механизм C5", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13177, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 994, + "Id": "Metadata/Items/Heist/HeistFinalObjective18", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Загадочный механизм D1", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13178, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 995, + "Id": "Metadata/Items/Heist/HeistFinalObjective19", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Зеркало Теклатипитци", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13202, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 996, + "Id": "Metadata/Items/Heist/HeistFinalObjective20", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Бюст императора Каспиро", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13180, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 997, + "Id": "Metadata/Items/Heist/HeistFinalObjective21", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Золотой идол Хецапаль", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13197, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 998, + "Id": "Metadata/Items/Heist/HeistFinalObjective22", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Флакон Велаката", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13182, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 999, + "Id": "Metadata/Items/Heist/HeistFinalObjective23", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Запретная лампа", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13183, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1000, + "Id": "Metadata/Items/Heist/HeistFinalObjective24", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Богиня воды", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13184, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1001, + "Id": "Metadata/Items/Heist/HeistFinalObjective25", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Золотой ибис", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13185, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1002, + "Id": "Metadata/Items/Heist/HeistFinalObjective26", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Невозможный кристалл", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13186, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1003, + "Id": "Metadata/Items/Heist/HeistFinalObjective27", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Живой лёд", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13187, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1004, + "Id": "Metadata/Items/Heist/HeistFinalObjective28", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Печать Лунарис", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13188, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1005, + "Id": "Metadata/Items/Heist/HeistFinalObjective29", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Золотой идол Мататля", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13198, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1006, + "Id": "Metadata/Items/Heist/HeistFinalObjective30", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Фамильный морской жемчуг", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13190, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1007, + "Id": "Metadata/Items/Heist/HeistFinalObjective31", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Печать Солярис", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13191, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1008, + "Id": "Metadata/Items/Heist/HeistFinalObjective32", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Золотой идол Напуаци", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13199, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1009, + "Id": "Metadata/Items/Heist/HeistFinalObjective33", + "ItemClassesKey": 72, + "Width": 2, + "Height": 4, + "Name": "Курильница Сущности", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13181, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1010, + "Id": "Metadata/Items/Heist/HeistFinalObjective34", + "ItemClassesKey": 72, + "Width": 2, + "Height": 4, + "Name": "Древняя печать", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13170, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1011, + "Id": "Metadata/Items/Heist/HeistFinalObjective35", + "ItemClassesKey": 72, + "Width": 2, + "Height": 4, + "Name": "Кровь Невинности", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13171, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1012, + "Id": "Metadata/Items/Heist/HeistFinalObjective36", + "ItemClassesKey": 72, + "Width": 2, + "Height": 4, + "Name": "Решительность Дехары", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13173, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1013, + "Id": "Metadata/Items/Heist/HeistFinalObjective37", + "ItemClassesKey": 72, + "Width": 2, + "Height": 4, + "Name": "Пятое приключение Орбалы", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13189, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1014, + "Id": "Metadata/Items/Heist/HeistFinalObjective38", + "ItemClassesKey": 72, + "Width": 2, + "Height": 4, + "Name": "Посох первого поедателя греха", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13192, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1015, + "Id": "Metadata/Items/Heist/HeistFinalObjective39", + "ItemClassesKey": 72, + "Width": 2, + "Height": 4, + "Name": "Меч вывернутой реликвии", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13194, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1016, + "Id": "Metadata/Items/Heist/HeistFinalObjective40", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Золотой идол раба", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13200, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1017, + "Id": "Metadata/Items/Heist/HeistFinalObjective41", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Золотой идол Шоплотли", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13201, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1018, + "Id": "Metadata/Items/Heist/HeistFinalObjective42", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Церемониальный кубок", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13203, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1019, + "Id": "Metadata/Items/Heist/HeistFinalObjective43", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Золотой идол с гербом", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13204, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1020, + "Id": "Metadata/Items/Heist/HeistFinalObjective44", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Золотая церемониальная маска", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13205, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1021, + "Id": "Metadata/Items/Heist/HeistFinalObjective45", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Золотой молящийся идол", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13206, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1022, + "Id": "Metadata/Items/Heist/HeistFinalObjective46", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Золотой гротеск", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13207, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1023, + "Id": "Metadata/Items/Heist/HeistFinalObjective47", + "ItemClassesKey": 72, + "Width": 2, + "Height": 2, + "Name": "Золотой глиф для жертвоприношений", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13208, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1024, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestKarst1", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Отмычки Карста", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13221, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1025, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestKarst2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "«Поцелуй на ночь»", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13228, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1026, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestKarst3", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Отравленная отмычка", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13229, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1027, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestTibbs1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Данные переписи", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13213, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1028, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestTibbs2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Сбережения Тиббса", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13226, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1029, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestHuck1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Личные дела Чёрной стражи", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13211, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1030, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestHuck2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Жетон Инока", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13223, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1031, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestVinderi1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Алхимические припасы", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13210, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1032, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestVinderi2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Фумарольный дёготь", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13217, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1033, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestGianna1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "«Безымянная пьеса»", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13227, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1034, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestGianna2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Униформа жрецов", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13232, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1035, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestTullina1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Свадебное платье Мервейл", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13222, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1036, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestTullina2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Обручальное кольцо Туллины", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13215, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1037, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestNiles1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Извлекатель мыслей", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13233, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1038, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestNiles2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Перст Вириди", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13234, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1039, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestNenet1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Книга Яманры", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13212, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1040, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestNenet2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Яманра, легендарный воин", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13139, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1041, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestIsla1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Груда непонятного хлама", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13214, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1042, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestIsla2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Загадочные чертежи", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13218, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1043, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestIsla3", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Нерушимый", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13139, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1044, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestAdiyah1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Копьё Солераи", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13231, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1045, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestAdiyah2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Журнал военных действий Нашты", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13224, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1046, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestAdiyah3", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Встретьте Нашту лицом к лицу", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13139, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1047, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestWhakano1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Оберег Хапихапи", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13219, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1048, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestWhakano2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Записи работорговца", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13230, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1049, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestWhakano3", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Кровавый идол", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13139, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1050, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestFaustus1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Бумаги адмирала Дарнау", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13209, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1051, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestFaustus1B", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Бумаги адмирала Дарнау", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13209, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1052, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestFaustus2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приказы флоту", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13216, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1053, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestFaustus3", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Адмирал Дарнау", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13139, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1054, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestKurai1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "«О, вечные»", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13225, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1055, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestKurai2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Переговорите с клиентом", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13139, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1056, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestKurai3", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Вызволите Хану", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13139, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1057, + "Id": "Metadata/Items/Heist/QuestItems/HeistFinalObjectiveQuestKurai4", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Близнецы Вокс", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13139, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1058, + "Id": "Metadata/Items/Currency/CurrencyUpgradeInfluenceMod", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Сфера господства", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13239, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1059, + "Id": "Metadata/Items/QuestItems/Act11/MavenMapDeviceAlteration", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Маяк Мейвен", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13240, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1060, + "Id": "Metadata/Items/QuestItems/Act11/TangleMapDeviceAlteration", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Живой компас", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13241, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1061, + "Id": "Metadata/Items/QuestItems/Act11/CleansingFireMapDeviceAlteration", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Лучистая астролябия", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13242, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1062, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapVoid1", + "ItemClassesKey": 46, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Обращённые", + "DropLevel": 1, + "Implicit_ModsKeys": [ + 11802 + ], + "TagsKeys": [ + 638, + 639 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13348, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1063, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapVoid2", + "ItemClassesKey": 46, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Искажённые", + "DropLevel": 1, + "Implicit_ModsKeys": [ + 11802 + ], + "TagsKeys": [ + 638, + 639 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13349, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1064, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapVoid3", + "ItemClassesKey": 46, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Позабытые", + "DropLevel": 1, + "Implicit_ModsKeys": [ + 11802 + ], + "TagsKeys": [ + 638, + 639 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13350, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1065, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapVoid4", + "ItemClassesKey": 46, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Сокрытые", + "DropLevel": 1, + "Implicit_ModsKeys": [ + 11802 + ], + "TagsKeys": [ + 638, + 639 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13351, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1066, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapVoid5", + "ItemClassesKey": 46, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Внушающие страх", + "DropLevel": 1, + "Implicit_ModsKeys": [ + 11802 + ], + "TagsKeys": [ + 638, + 640 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13352, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1067, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapVoid6", + "ItemClassesKey": 46, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Убийцы Древнего", + "DropLevel": 1, + "Implicit_ModsKeys": [ + 11802 + ], + "TagsKeys": [ + 638, + 639 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13353, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1068, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapAtlas1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Атлас", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13307, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1069, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapAtlas2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Атлас", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13308, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1070, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapAtlas3", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Атлас", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13309, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1071, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapAtlas4", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Атлас", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13310, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1072, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapAtlas5", + "ItemClassesKey": 46, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Атлас", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 638 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13311, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1073, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapOutsideTopLeft1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Деревня Хейварк", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13307, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1074, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapOutsideTopLeft2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Деревня Хейварк", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13308, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1075, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapOutsideTopLeft3", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Деревня Хейварк", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13309, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1076, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapOutsideTopLeft4", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Деревня Хейварк", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13310, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1077, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapOutsideTopLeft5", + "ItemClassesKey": 46, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Деревня Хейварк", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 638 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13311, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1078, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapInsideTopLeft1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Предел Тирна", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13332, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1079, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapInsideTopLeft2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Предел Тирна", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13333, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1080, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapInsideTopLeft3", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Предел Тирна", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13334, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1081, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapInsideTopLeft4", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Предел Тирна", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13335, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1082, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapInsideTopLeft5", + "ItemClassesKey": 46, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Предел Тирна", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 638 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13336, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1083, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapInsideTopRight1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Лекс Проксима", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13317, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1084, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapInsideTopRight2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Лекс Проксима", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13318, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1085, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapInsideTopRight3", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Лекс Проксима", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13319, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1086, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapInsideTopRight4", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Лекс Проксима", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13320, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1087, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapInsideTopRight5", + "ItemClassesKey": 46, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Лекс Проксима", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 638 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13321, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1088, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapOutsideTopRight1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Лекс Эйорис", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13312, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1089, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapOutsideTopRight2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Лекс Эйорис", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13313, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1090, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapOutsideTopRight3", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Лекс Эйорис", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13314, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1091, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapOutsideTopRight4", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Лекс Эйорис", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13315, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1092, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapOutsideTopRight5", + "ItemClassesKey": 46, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Лекс Эйорис", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 638 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13316, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1093, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapOutsideBottomLeft1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Новый Вастир", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13327, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1094, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapOutsideBottomLeft2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Новый Вастир", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13328, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1095, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapOutsideBottomLeft3", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Новый Вастир", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13329, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1096, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapOutsideBottomLeft4", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Новый Вастир", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13330, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1097, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapOutsideBottomLeft5", + "ItemClassesKey": 46, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Новый Вастир", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 638 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13331, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1098, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapInsideBottomLeft1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Пирамиды Гленнаха", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13302, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1099, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapInsideBottomLeft2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Пирамиды Гленнаха", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13303, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1100, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapInsideBottomLeft3", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Пирамиды Гленнаха", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13304, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1101, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapInsideBottomLeft4", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Пирамиды Гленнаха", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13305, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1102, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapInsideBottomLeft5", + "ItemClassesKey": 46, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Пирамиды Гленнаха", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 638 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13306, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1103, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapInsideBottomRight1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Покой Валдо", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13337, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1104, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapInsideBottomRight2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Покой Валдо", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13338, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1105, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapInsideBottomRight3", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Покой Валдо", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13339, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1106, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapInsideBottomRight4", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Покой Валдо", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13340, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1107, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapInsideBottomRight5", + "ItemClassesKey": 46, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Покой Валдо", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 638 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13341, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1108, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapOutsideBottomRight1", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Лира Артейн", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13322, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1109, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapOutsideBottomRight2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Лира Артейн", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13323, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1110, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapOutsideBottomRight3", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Лира Артейн", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13324, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1111, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapOutsideBottomRight4", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Лира Артейн", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13325, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1112, + "Id": "Metadata/Items/MapFragments/Maven/MavenMapOutsideBottomRight5", + "ItemClassesKey": 46, + "Width": 1, + "Height": 1, + "Name": "Приглашение Мейвен: Лира Артейн", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 638 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13326, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1113, + "Id": "Metadata/Items/MapFragments/CurrencyMavenKey", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Веление Мейвен", + "DropLevel": 83, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13342, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1114, + "Id": "Metadata/Items/MapFragments/CurrencyMavenKeyFragment", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Серповидный осколок", + "DropLevel": 83, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13343, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1115, + "Id": "Metadata/Items/AtlasUpgrades/AtlasUpgradeCraftable1_1", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Хромовый Камень Хранителя Деревни Хейварк", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 627, + 624 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13243, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1116, + "Id": "Metadata/Items/AtlasUpgrades/AtlasUpgradeCraftable1_2", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Хромовый Камень Хранителя Предела Тирна", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 627, + 624 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13244, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1117, + "Id": "Metadata/Items/AtlasUpgrades/AtlasUpgradeCraftable1_3", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Хромовый Камень Хранителя Лекс Проксимы", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 627, + 624 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13245, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1118, + "Id": "Metadata/Items/AtlasUpgrades/AtlasUpgradeCraftable1_4", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Хромовый Камень Хранителя Лекс Эйорис", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 627, + 624 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13246, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1119, + "Id": "Metadata/Items/AtlasUpgrades/AtlasUpgradeCraftable1_5", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Хромовый Камень Хранителя Нового Вастира", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 627, + 624 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13247, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1120, + "Id": "Metadata/Items/AtlasUpgrades/AtlasUpgradeCraftable1_6", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Хромовый Камень Хранителя Пирамид Гленнаха", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 627, + 624 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13248, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1121, + "Id": "Metadata/Items/AtlasUpgrades/AtlasUpgradeCraftable1_7", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Хромовый Камень Хранителя Покоя Валдо", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 627, + 624 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13249, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1122, + "Id": "Metadata/Items/AtlasUpgrades/AtlasUpgradeCraftable1_8", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Хромовый Камень Хранителя Лиры Артейн", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 627, + 624 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13250, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1123, + "Id": "Metadata/Items/AtlasUpgrades/AtlasUpgradeCraftable2_1", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Платиновый Камень Хранителя Деревни Хейварк", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 627, + 625 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13251, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1124, + "Id": "Metadata/Items/AtlasUpgrades/AtlasUpgradeCraftable2_2", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Платиновый Камень Хранителя Предела Тирна", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 627, + 625 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13252, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1125, + "Id": "Metadata/Items/AtlasUpgrades/AtlasUpgradeCraftable2_3", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Платиновый Камень Хранителя Лекс Проксимы", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 627, + 625 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13253, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1126, + "Id": "Metadata/Items/AtlasUpgrades/AtlasUpgradeCraftable2_4", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Платиновый Камень Хранителя Лекс Эйорис", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 627, + 625 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13254, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1127, + "Id": "Metadata/Items/AtlasUpgrades/AtlasUpgradeCraftable2_5", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Платиновый Камень Хранителя Нового Вастира", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 627, + 625 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13255, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1128, + "Id": "Metadata/Items/AtlasUpgrades/AtlasUpgradeCraftable2_6", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Платиновый Камень Хранителя Пирамид Гленнаха", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 627, + 625 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13256, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1129, + "Id": "Metadata/Items/AtlasUpgrades/AtlasUpgradeCraftable2_7", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Платиновый Камень Хранителя Покоя Валдо", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 627, + 625 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13257, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1130, + "Id": "Metadata/Items/AtlasUpgrades/AtlasUpgradeCraftable2_8", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Платиновый Камень Хранителя Лиры Артейн", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 627, + 625 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13258, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1131, + "Id": "Metadata/Items/AtlasUpgrades/AtlasUpgradeCraftable3_1", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Титановый Камень Хранителя Деревни Хейварк", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 627, + 626 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13259, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1132, + "Id": "Metadata/Items/AtlasUpgrades/AtlasUpgradeCraftable3_2", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Титановый Камень Хранителя Предела Тирна", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 627, + 626 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13260, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1133, + "Id": "Metadata/Items/AtlasUpgrades/AtlasUpgradeCraftable3_3", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Титановый Камень Хранителя Лекс Проксимы", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 627, + 626 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13261, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1134, + "Id": "Metadata/Items/AtlasUpgrades/AtlasUpgradeCraftable3_4", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Титановый Камень Хранителя Лекс Эйорис", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 627, + 626 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13262, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1135, + "Id": "Metadata/Items/AtlasUpgrades/AtlasUpgradeCraftable3_5", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Титановый Камень Хранителя Нового Вастира", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 627, + 626 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13263, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1136, + "Id": "Metadata/Items/AtlasUpgrades/AtlasUpgradeCraftable3_6", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Титановый Камень Хранителя Пирамид Гленнаха", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 627, + 626 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13264, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1137, + "Id": "Metadata/Items/AtlasUpgrades/AtlasUpgradeCraftable3_7", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Титановый Камень Хранителя Покоя Валдо", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 627, + 626 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13265, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1138, + "Id": "Metadata/Items/AtlasUpgrades/AtlasUpgradeCraftable3_8", + "ItemClassesKey": 59, + "Width": 1, + "Height": 1, + "Name": "Титановый Камень Хранителя Лиры Артейн", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 627, + 626 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13266, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1139, + "Id": "Metadata/Items/Incursion/ItemisedTemple", + "ItemClassesKey": 46, + "Width": 1, + "Height": 1, + "Name": "Хроники Ацоатля", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13354, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1140, + "Id": "Metadata/Items/Ultimatum/ItemisedTrial", + "ItemClassesKey": 46, + "Width": 1, + "Height": 1, + "Name": "Начертанный Ультиматум", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 660 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13478, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1141, + "Id": "Metadata/Items/MapFragments/CurrencyHarvestBossKey", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Священное соцветие", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13482, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1142, + "Id": "Metadata/Items/Expedition/ExpeditionLogbook", + "ItemClassesKey": 73, + "Width": 1, + "Height": 1, + "Name": "Журнал экспедиции", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 674 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13483, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1143, + "Id": "Metadata/Items/Currency/CurrencyEnkindlingOrb", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Растопляющая сфера", + "DropLevel": 40, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13527, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1144, + "Id": "Metadata/Items/Currency/CurrencyInstillingOrb", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Вливающая сфера", + "DropLevel": 40, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13528, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1145, + "Id": "Metadata/Items/Currency/CurrencyRefreshExpedition", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Диковинные монеты", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13484, + "IsCorrupted": false, + "TradeMarketCategory": 49 + }, + { + "_index": 1146, + "Id": "Metadata/Items/Expedition/ExpeditionVendorCurrencyFaction1", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Артефакт Разомкнутого круга", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 685 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13489, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1147, + "Id": "Metadata/Items/Expedition/ExpeditionVendorCurrencyFaction2", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Артефакт Чёрной косы", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 686 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13493, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1148, + "Id": "Metadata/Items/Expedition/ExpeditionVendorCurrencyFaction3", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Артефакт Ордена", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 687 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13497, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1149, + "Id": "Metadata/Items/Expedition/ExpeditionVendorCurrencyFaction4", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Артефакт Солнца", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 688 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13501, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1150, + "Id": "Metadata/Items/Currency/CurrencyHellscapeRerollSocketColours", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Порочная цветная сфера", + "DropLevel": 2, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13539, + "IsCorrupted": false, + "TradeMarketCategory": 50 + }, + { + "_index": 1151, + "Id": "Metadata/Items/Currency/CurrencyHellscapeRerollSocketLinks", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Порочная сфера соединения", + "DropLevel": 50, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13540, + "IsCorrupted": false, + "TradeMarketCategory": 50 + }, + { + "_index": 1152, + "Id": "Metadata/Items/Currency/CurrencyHellscapeRerollSocketNumbers", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Порочная сфера златокузнеца", + "DropLevel": 8, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13541, + "IsCorrupted": false, + "TradeMarketCategory": 50 + }, + { + "_index": 1153, + "Id": "Metadata/Items/Currency/CurrencyHellscapeRerollRare", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Порочная сфера хаоса", + "DropLevel": 12, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13542, + "IsCorrupted": false, + "TradeMarketCategory": 50 + }, + { + "_index": 1154, + "Id": "Metadata/Items/Currency/CurrencyHellscapeAddModToRare", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Порочная сфера возвышения", + "DropLevel": 35, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13543, + "IsCorrupted": false, + "TradeMarketCategory": 50 + }, + { + "_index": 1155, + "Id": "Metadata/Items/Currency/CurrencyHellscapeUpgradeToUnique", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Порочная мифическая сфера", + "DropLevel": 2, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13544, + "IsCorrupted": false, + "TradeMarketCategory": 50 + }, + { + "_index": 1156, + "Id": "Metadata/Items/Currency/CurrencyHellscapeArmourQuality", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Порочная деталь доспеха", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13545, + "IsCorrupted": false, + "TradeMarketCategory": 50 + }, + { + "_index": 1157, + "Id": "Metadata/Items/Currency/CurrencyHellscapeWeaponQuality", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Порочный точильный камень", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13546, + "IsCorrupted": false, + "TradeMarketCategory": 50 + }, + { + "_index": 1158, + "Id": "Metadata/Items/Currency/CurrencyHellscapeUpgradeModTier", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Порочная божественная слеза", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13547, + "IsCorrupted": false, + "TradeMarketCategory": 50 + }, + { + "_index": 1159, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandSwords/StormBladeOneHand", + "ItemClassesKey": 9, + "Width": 2, + "Height": 3, + "Name": "Клинок энергии", + "DropLevel": 1, + "Implicit_ModsKeys": [ + 11766 + ], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13548, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1160, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandSwords/StormBladeTwoHand", + "ItemClassesKey": 15, + "Width": 2, + "Height": 4, + "Name": "Клинок энергии", + "DropLevel": 1, + "Implicit_ModsKeys": [ + 11766 + ], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13549, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1161, + "Id": "Metadata/Items/Currency/RandomFossilOutcome1", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1162, + "Id": "Metadata/Items/Currency/RandomFossilOutcome2", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1163, + "Id": "Metadata/Items/Currency/RandomFossilOutcome3", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1164, + "Id": "Metadata/Items/Currency/RandomFossilOutcome4", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1165, + "Id": "Metadata/Items/Currency/RandomFossilOutcome5", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1166, + "Id": "Metadata/Items/Currency/RandomFossilOutcome6", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1167, + "Id": "Metadata/Items/Currency/RandomFossilOutcome7", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1168, + "Id": "Metadata/Items/Currency/RandomFossilOutcome8", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1169, + "Id": "Metadata/Items/Currency/RandomFossilOutcome9", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1170, + "Id": "Metadata/Items/Currency/RandomFossilOutcome10", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1171, + "Id": "Metadata/Items/Currency/RandomFossilOutcome11", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1172, + "Id": "Metadata/Items/Currency/RandomFossilOutcome12", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1173, + "Id": "Metadata/Items/Currency/RandomFossilOutcome13", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1174, + "Id": "Metadata/Items/Currency/RandomFossilOutcome14", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1175, + "Id": "Metadata/Items/Currency/RandomFossilOutcome15", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1176, + "Id": "Metadata/Items/Currency/RandomFossilOutcome16", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1177, + "Id": "Metadata/Items/Currency/RandomFossilOutcome17", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1178, + "Id": "Metadata/Items/Currency/RandomFossilOutcome18", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1179, + "Id": "Metadata/Items/Currency/RandomFossilOutcome19", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1180, + "Id": "Metadata/Items/Currency/RandomFossilOutcome20", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1181, + "Id": "Metadata/Items/Currency/RandomFossilOutcome21", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1182, + "Id": "Metadata/Items/Currency/RandomFossilOutcome22", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1183, + "Id": "Metadata/Items/Currency/RandomFossilOutcome23", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1184, + "Id": "Metadata/Items/Currency/RandomFossilOutcome24", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1185, + "Id": "Metadata/Items/Currency/RandomFossilOutcome25", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1186, + "Id": "Metadata/Items/Currency/RandomFossilOutcome26", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1187, + "Id": "Metadata/Items/Currency/RandomFossilOutcome27", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1188, + "Id": "Metadata/Items/Currency/RandomFossilOutcome28", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1189, + "Id": "Metadata/Items/Currency/RandomFossilOutcome29", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1190, + "Id": "Metadata/Items/Currency/RandomFossilOutcome30", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1191, + "Id": "Metadata/Items/Currency/RandomFossilOutcome31", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1192, + "Id": "Metadata/Items/Currency/RandomFossilOutcome32", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1193, + "Id": "Metadata/Items/Currency/RandomFossilOutcome33", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1194, + "Id": "Metadata/Items/Currency/RandomFossilOutcome34", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1195, + "Id": "Metadata/Items/Currency/RandomFossilOutcome35", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1196, + "Id": "Metadata/Items/Currency/RandomFossilOutcome36", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1197, + "Id": "Metadata/Items/Currency/RandomFossilOutcome37", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1198, + "Id": "Metadata/Items/Currency/RandomFossilOutcome38", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1199, + "Id": "Metadata/Items/Currency/RandomFossilOutcome39", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1200, + "Id": "Metadata/Items/Currency/RandomFossilOutcome40", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1201, + "Id": "Metadata/Items/Currency/RandomFossilOutcome41", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1202, + "Id": "Metadata/Items/Currency/RandomFossilOutcome42", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1203, + "Id": "Metadata/Items/Currency/RandomFossilOutcome43", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1204, + "Id": "Metadata/Items/Currency/RandomFossilOutcome44", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1205, + "Id": "Metadata/Items/Currency/RandomFossilOutcome45", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1206, + "Id": "Metadata/Items/Currency/RandomFossilOutcome46", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1207, + "Id": "Metadata/Items/Currency/RandomFossilOutcome47", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1208, + "Id": "Metadata/Items/Currency/RandomFossilOutcome48", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1209, + "Id": "Metadata/Items/Currency/RandomFossilOutcome49", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1210, + "Id": "Metadata/Items/Currency/RandomFossilOutcome50", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1211, + "Id": "Metadata/Items/Currency/RandomFossilOutcome51", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1212, + "Id": "Metadata/Items/Currency/RandomFossilOutcome52", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1213, + "Id": "Metadata/Items/Currency/RandomFossilOutcome53", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1214, + "Id": "Metadata/Items/Currency/RandomFossilOutcome54", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1215, + "Id": "Metadata/Items/Currency/RandomFossilOutcome55", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1216, + "Id": "Metadata/Items/Currency/RandomFossilOutcome56", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1217, + "Id": "Metadata/Items/Currency/RandomFossilOutcome57", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1218, + "Id": "Metadata/Items/Currency/RandomFossilOutcome58", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1219, + "Id": "Metadata/Items/Currency/RandomFossilOutcome59", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1220, + "Id": "Metadata/Items/Currency/RandomFossilOutcome60", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1221, + "Id": "Metadata/Items/Currency/RandomFossilOutcome61", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1222, + "Id": "Metadata/Items/Currency/RandomFossilOutcome62", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1223, + "Id": "Metadata/Items/Currency/RandomFossilOutcome63", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1224, + "Id": "Metadata/Items/Currency/RandomFossilOutcome64", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1225, + "Id": "Metadata/Items/Currency/RandomFossilOutcome65", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1226, + "Id": "Metadata/Items/Currency/RandomFossilOutcome66", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1227, + "Id": "Metadata/Items/Currency/RandomFossilOutcome67", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1228, + "Id": "Metadata/Items/Currency/RandomFossilOutcome68", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1229, + "Id": "Metadata/Items/Currency/RandomFossilOutcome69", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1230, + "Id": "Metadata/Items/Currency/RandomFossilOutcome70", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1231, + "Id": "Metadata/Items/Currency/RandomFossilOutcome71", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1232, + "Id": "Metadata/Items/Currency/RandomFossilOutcome72", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1233, + "Id": "Metadata/Items/Currency/RandomFossilOutcome73", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1234, + "Id": "Metadata/Items/Currency/RandomFossilOutcome74", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1235, + "Id": "Metadata/Items/Currency/RandomFossilOutcome75", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1236, + "Id": "Metadata/Items/Currency/RandomFossilOutcome76", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1237, + "Id": "Metadata/Items/Currency/RandomFossilOutcome77", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1238, + "Id": "Metadata/Items/Currency/RandomFossilOutcome78", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1239, + "Id": "Metadata/Items/Currency/RandomFossilOutcome79", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1240, + "Id": "Metadata/Items/Currency/RandomFossilOutcome80", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1241, + "Id": "Metadata/Items/Currency/RandomFossilOutcome81", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1242, + "Id": "Metadata/Items/Currency/RandomFossilOutcome82", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1243, + "Id": "Metadata/Items/Currency/RandomFossilOutcome83", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1244, + "Id": "Metadata/Items/Currency/RandomFossilOutcome84", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1245, + "Id": "Metadata/Items/Currency/RandomFossilOutcome85", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1246, + "Id": "Metadata/Items/Currency/RandomFossilOutcome86", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1247, + "Id": "Metadata/Items/Currency/RandomFossilOutcome87", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1248, + "Id": "Metadata/Items/Currency/RandomFossilOutcome88", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1249, + "Id": "Metadata/Items/Currency/RandomFossilOutcome89", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1250, + "Id": "Metadata/Items/Currency/RandomFossilOutcome90", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1251, + "Id": "Metadata/Items/Currency/RandomFossilOutcome91", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1252, + "Id": "Metadata/Items/Currency/RandomFossilOutcome92", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1253, + "Id": "Metadata/Items/Currency/RandomFossilOutcome93", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1254, + "Id": "Metadata/Items/Currency/RandomFossilOutcome94", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1255, + "Id": "Metadata/Items/Currency/RandomFossilOutcome95", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1256, + "Id": "Metadata/Items/Currency/RandomFossilOutcome96", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1257, + "Id": "Metadata/Items/Currency/RandomFossilOutcome97", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1258, + "Id": "Metadata/Items/Currency/RandomFossilOutcome98", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1259, + "Id": "Metadata/Items/Currency/RandomFossilOutcome99", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1260, + "Id": "Metadata/Items/Currency/RandomFossilOutcome100", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1261, + "Id": "Metadata/Items/Currency/RandomFossilOutcome101", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1262, + "Id": "Metadata/Items/Currency/RandomFossilOutcome102", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1263, + "Id": "Metadata/Items/Currency/RandomFossilOutcome103", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1264, + "Id": "Metadata/Items/Currency/RandomFossilOutcome104", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1265, + "Id": "Metadata/Items/Currency/RandomFossilOutcome105", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1266, + "Id": "Metadata/Items/Currency/RandomFossilOutcome106", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1267, + "Id": "Metadata/Items/Currency/RandomFossilOutcome107", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1268, + "Id": "Metadata/Items/Currency/RandomFossilOutcome108", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1269, + "Id": "Metadata/Items/Currency/RandomFossilOutcome109", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1270, + "Id": "Metadata/Items/Currency/RandomFossilOutcome110", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1271, + "Id": "Metadata/Items/Currency/RandomFossilOutcome111", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1272, + "Id": "Metadata/Items/Currency/RandomFossilOutcome112", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1273, + "Id": "Metadata/Items/Currency/RandomFossilOutcome113", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1274, + "Id": "Metadata/Items/Currency/RandomFossilOutcome114", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1275, + "Id": "Metadata/Items/Currency/RandomFossilOutcome115", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1276, + "Id": "Metadata/Items/Currency/RandomFossilOutcome116", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1277, + "Id": "Metadata/Items/Currency/RandomFossilOutcome117", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1278, + "Id": "Metadata/Items/Currency/RandomFossilOutcome118", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1279, + "Id": "Metadata/Items/Currency/RandomFossilOutcome119", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1280, + "Id": "Metadata/Items/Currency/RandomFossilOutcome120", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1281, + "Id": "Metadata/Items/Currency/RandomFossilOutcome121", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1282, + "Id": "Metadata/Items/Currency/RandomFossilOutcome122", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1283, + "Id": "Metadata/Items/Currency/RandomFossilOutcome123", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1284, + "Id": "Metadata/Items/Currency/RandomFossilOutcome124", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1285, + "Id": "Metadata/Items/Currency/RandomFossilOutcome125", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1286, + "Id": "Metadata/Items/Currency/RandomFossilOutcome126", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1287, + "Id": "Metadata/Items/Currency/RandomFossilOutcome127", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1288, + "Id": "Metadata/Items/Currency/RandomFossilOutcome128", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1289, + "Id": "Metadata/Items/Currency/RandomFossilOutcome129", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1290, + "Id": "Metadata/Items/Currency/RandomFossilOutcome130", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1291, + "Id": "Metadata/Items/Currency/RandomFossilOutcome131", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1292, + "Id": "Metadata/Items/Currency/RandomFossilOutcome132", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1293, + "Id": "Metadata/Items/Currency/RandomFossilOutcome133", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1294, + "Id": "Metadata/Items/Currency/RandomFossilOutcome134", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1295, + "Id": "Metadata/Items/Currency/RandomFossilOutcome135", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1296, + "Id": "Metadata/Items/Currency/RandomFossilOutcome136", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1297, + "Id": "Metadata/Items/Currency/RandomFossilOutcome137", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1298, + "Id": "Metadata/Items/Currency/RandomFossilOutcome138", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1299, + "Id": "Metadata/Items/Currency/RandomFossilOutcome139", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1300, + "Id": "Metadata/Items/Currency/RandomFossilOutcome140", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1301, + "Id": "Metadata/Items/Currency/RandomFossilOutcome141", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1302, + "Id": "Metadata/Items/Currency/RandomFossilOutcome142", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1303, + "Id": "Metadata/Items/Currency/RandomFossilOutcome143", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1304, + "Id": "Metadata/Items/Currency/RandomFossilOutcome144", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1305, + "Id": "Metadata/Items/Currency/RandomFossilOutcome145", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1306, + "Id": "Metadata/Items/Currency/RandomFossilOutcome146", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1307, + "Id": "Metadata/Items/Currency/RandomFossilOutcome147", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1308, + "Id": "Metadata/Items/Currency/RandomFossilOutcome148", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1309, + "Id": "Metadata/Items/Currency/RandomFossilOutcome149", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1310, + "Id": "Metadata/Items/Currency/RandomFossilOutcome150", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1311, + "Id": "Metadata/Items/Currency/RandomFossilOutcome151", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1312, + "Id": "Metadata/Items/Currency/RandomFossilOutcome152", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1313, + "Id": "Metadata/Items/Currency/RandomFossilOutcome153", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1314, + "Id": "Metadata/Items/Currency/RandomFossilOutcome154", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1315, + "Id": "Metadata/Items/Currency/RandomFossilOutcome155", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1316, + "Id": "Metadata/Items/Currency/RandomFossilOutcome156", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1317, + "Id": "Metadata/Items/Currency/RandomFossilOutcome157", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1318, + "Id": "Metadata/Items/Currency/RandomFossilOutcome158", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1319, + "Id": "Metadata/Items/Currency/RandomFossilOutcome159", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1320, + "Id": "Metadata/Items/Currency/RandomFossilOutcome160", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1321, + "Id": "Metadata/Items/Currency/RandomFossilOutcome161", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1322, + "Id": "Metadata/Items/Currency/RandomFossilOutcome162", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1323, + "Id": "Metadata/Items/Currency/RandomFossilOutcome163", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1324, + "Id": "Metadata/Items/Currency/RandomFossilOutcome164", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1325, + "Id": "Metadata/Items/Currency/RandomFossilOutcome165", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1326, + "Id": "Metadata/Items/Currency/RandomFossilOutcome166", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1327, + "Id": "Metadata/Items/Currency/RandomFossilOutcome167", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1328, + "Id": "Metadata/Items/Currency/RandomFossilOutcome168", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1329, + "Id": "Metadata/Items/Currency/RandomFossilOutcome169", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1330, + "Id": "Metadata/Items/Currency/RandomFossilOutcome170", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1331, + "Id": "Metadata/Items/Currency/RandomFossilOutcome171", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1332, + "Id": "Metadata/Items/Currency/RandomFossilOutcome172", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1333, + "Id": "Metadata/Items/Currency/RandomFossilOutcome173", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1334, + "Id": "Metadata/Items/Currency/RandomFossilOutcome174", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1335, + "Id": "Metadata/Items/Currency/RandomFossilOutcome175", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1336, + "Id": "Metadata/Items/Currency/RandomFossilOutcome176", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1337, + "Id": "Metadata/Items/Currency/RandomFossilOutcome177", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1338, + "Id": "Metadata/Items/Currency/RandomFossilOutcome178", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1339, + "Id": "Metadata/Items/Currency/RandomFossilOutcome179", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1340, + "Id": "Metadata/Items/Currency/RandomFossilOutcome180", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1341, + "Id": "Metadata/Items/Currency/RandomFossilOutcome181", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1342, + "Id": "Metadata/Items/Currency/RandomFossilOutcome182", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1343, + "Id": "Metadata/Items/Currency/RandomFossilOutcome183", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1344, + "Id": "Metadata/Items/Currency/RandomFossilOutcome184", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1345, + "Id": "Metadata/Items/Currency/RandomFossilOutcome185", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1346, + "Id": "Metadata/Items/Currency/RandomFossilOutcome186", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1347, + "Id": "Metadata/Items/Currency/RandomFossilOutcome187", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1348, + "Id": "Metadata/Items/Currency/RandomFossilOutcome188", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1349, + "Id": "Metadata/Items/Currency/RandomFossilOutcome189", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1350, + "Id": "Metadata/Items/Currency/RandomFossilOutcome190", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1351, + "Id": "Metadata/Items/Currency/RandomFossilOutcome191", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1352, + "Id": "Metadata/Items/Currency/RandomFossilOutcome192", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1353, + "Id": "Metadata/Items/Currency/RandomFossilOutcome193", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1354, + "Id": "Metadata/Items/Currency/RandomFossilOutcome194", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1355, + "Id": "Metadata/Items/Currency/RandomFossilOutcome195", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1356, + "Id": "Metadata/Items/Currency/RandomFossilOutcome196", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1357, + "Id": "Metadata/Items/Currency/RandomFossilOutcome197", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1358, + "Id": "Metadata/Items/Currency/RandomFossilOutcome198", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1359, + "Id": "Metadata/Items/Currency/RandomFossilOutcome199", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1360, + "Id": "Metadata/Items/Currency/RandomFossilOutcome200", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1361, + "Id": "Metadata/Items/Currency/RandomFossilOutcome201", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1362, + "Id": "Metadata/Items/Currency/RandomFossilOutcome202", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1363, + "Id": "Metadata/Items/Currency/RandomFossilOutcome203", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1364, + "Id": "Metadata/Items/Currency/RandomFossilOutcome204", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1365, + "Id": "Metadata/Items/Currency/RandomFossilOutcome205", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1366, + "Id": "Metadata/Items/Currency/RandomFossilOutcome206", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1367, + "Id": "Metadata/Items/Currency/RandomFossilOutcome207", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1368, + "Id": "Metadata/Items/Currency/RandomFossilOutcome208", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1369, + "Id": "Metadata/Items/Currency/RandomFossilOutcome209", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1370, + "Id": "Metadata/Items/Currency/RandomFossilOutcome210", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1371, + "Id": "Metadata/Items/Currency/RandomFossilOutcome211", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1372, + "Id": "Metadata/Items/Currency/RandomFossilOutcome212", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1373, + "Id": "Metadata/Items/Currency/RandomFossilOutcome213", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1374, + "Id": "Metadata/Items/Currency/RandomFossilOutcome214", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1375, + "Id": "Metadata/Items/Currency/RandomFossilOutcome215", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1376, + "Id": "Metadata/Items/Currency/RandomFossilOutcome216", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1377, + "Id": "Metadata/Items/Currency/RandomFossilOutcome217", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1378, + "Id": "Metadata/Items/Currency/RandomFossilOutcome218", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1379, + "Id": "Metadata/Items/Currency/RandomFossilOutcome219", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1380, + "Id": "Metadata/Items/Currency/RandomFossilOutcome220", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1381, + "Id": "Metadata/Items/Currency/RandomFossilOutcome221", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1382, + "Id": "Metadata/Items/Currency/RandomFossilOutcome222", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1383, + "Id": "Metadata/Items/Currency/RandomFossilOutcome223", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1384, + "Id": "Metadata/Items/Currency/RandomFossilOutcome224", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1385, + "Id": "Metadata/Items/Currency/RandomFossilOutcome225", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1386, + "Id": "Metadata/Items/Currency/RandomFossilOutcome226", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1387, + "Id": "Metadata/Items/Currency/RandomFossilOutcome227", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1388, + "Id": "Metadata/Items/Currency/RandomFossilOutcome228", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1389, + "Id": "Metadata/Items/Currency/RandomFossilOutcome229", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1390, + "Id": "Metadata/Items/Currency/RandomFossilOutcome230", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1391, + "Id": "Metadata/Items/Currency/RandomFossilOutcome231", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1392, + "Id": "Metadata/Items/Currency/RandomFossilOutcome232", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1393, + "Id": "Metadata/Items/Currency/RandomFossilOutcome233", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1394, + "Id": "Metadata/Items/Currency/RandomFossilOutcome234", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1395, + "Id": "Metadata/Items/Currency/RandomFossilOutcome235", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1396, + "Id": "Metadata/Items/Currency/RandomFossilOutcome236", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1397, + "Id": "Metadata/Items/Currency/RandomFossilOutcome237", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1398, + "Id": "Metadata/Items/Currency/RandomFossilOutcome238", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1399, + "Id": "Metadata/Items/Currency/RandomFossilOutcome239", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1400, + "Id": "Metadata/Items/Currency/RandomFossilOutcome240", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1401, + "Id": "Metadata/Items/Currency/RandomFossilOutcome241", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1402, + "Id": "Metadata/Items/Currency/RandomFossilOutcome242", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1403, + "Id": "Metadata/Items/Currency/RandomFossilOutcome243", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1404, + "Id": "Metadata/Items/Currency/RandomFossilOutcome244", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1405, + "Id": "Metadata/Items/Currency/RandomFossilOutcome245", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1406, + "Id": "Metadata/Items/Currency/RandomFossilOutcome246", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1407, + "Id": "Metadata/Items/Currency/RandomFossilOutcome247", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1408, + "Id": "Metadata/Items/Currency/RandomFossilOutcome248", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1409, + "Id": "Metadata/Items/Currency/RandomFossilOutcome249", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1410, + "Id": "Metadata/Items/Currency/RandomFossilOutcome250", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1411, + "Id": "Metadata/Items/Currency/RandomFossilOutcome251", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1412, + "Id": "Metadata/Items/Currency/RandomFossilOutcome252", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1413, + "Id": "Metadata/Items/Currency/RandomFossilOutcome253", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1414, + "Id": "Metadata/Items/Currency/RandomFossilOutcome254", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1415, + "Id": "Metadata/Items/Currency/RandomFossilOutcome255", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1416, + "Id": "Metadata/Items/Currency/RandomFossilOutcome256", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1417, + "Id": "Metadata/Items/Currency/RandomFossilOutcome257", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1418, + "Id": "Metadata/Items/Currency/RandomFossilOutcome258", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1419, + "Id": "Metadata/Items/Currency/RandomFossilOutcome259", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1420, + "Id": "Metadata/Items/Currency/RandomFossilOutcome260", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1421, + "Id": "Metadata/Items/Currency/RandomFossilOutcome261", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1422, + "Id": "Metadata/Items/Currency/RandomFossilOutcome262", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1423, + "Id": "Metadata/Items/Currency/RandomFossilOutcome263", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1424, + "Id": "Metadata/Items/Currency/RandomFossilOutcome264", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1425, + "Id": "Metadata/Items/Currency/RandomFossilOutcome265", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1426, + "Id": "Metadata/Items/Currency/RandomFossilOutcome266", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1427, + "Id": "Metadata/Items/Currency/RandomFossilOutcome267", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1428, + "Id": "Metadata/Items/Currency/RandomFossilOutcome268", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1429, + "Id": "Metadata/Items/Currency/RandomFossilOutcome269", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1430, + "Id": "Metadata/Items/Currency/RandomFossilOutcome270", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1431, + "Id": "Metadata/Items/Currency/RandomFossilOutcome271", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1432, + "Id": "Metadata/Items/Currency/RandomFossilOutcome272", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1433, + "Id": "Metadata/Items/Currency/RandomFossilOutcome273", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1434, + "Id": "Metadata/Items/Currency/RandomFossilOutcome274", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1435, + "Id": "Metadata/Items/Currency/RandomFossilOutcome275", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1436, + "Id": "Metadata/Items/Currency/RandomFossilOutcome276", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1437, + "Id": "Metadata/Items/Currency/RandomFossilOutcome277", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1438, + "Id": "Metadata/Items/Currency/RandomFossilOutcome278", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1439, + "Id": "Metadata/Items/Currency/RandomFossilOutcome279", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1440, + "Id": "Metadata/Items/Currency/RandomFossilOutcome280", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1441, + "Id": "Metadata/Items/Currency/RandomFossilOutcome281", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1442, + "Id": "Metadata/Items/Currency/RandomFossilOutcome282", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1443, + "Id": "Metadata/Items/Currency/RandomFossilOutcome283", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1444, + "Id": "Metadata/Items/Currency/RandomFossilOutcome284", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1445, + "Id": "Metadata/Items/Currency/RandomFossilOutcome285", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1446, + "Id": "Metadata/Items/Currency/RandomFossilOutcome286", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1447, + "Id": "Metadata/Items/Currency/RandomFossilOutcome287", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1448, + "Id": "Metadata/Items/Currency/RandomFossilOutcome288", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1449, + "Id": "Metadata/Items/Currency/RandomFossilOutcome289", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1450, + "Id": "Metadata/Items/Currency/RandomFossilOutcome290", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1451, + "Id": "Metadata/Items/Currency/RandomFossilOutcome291", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1452, + "Id": "Metadata/Items/Currency/RandomFossilOutcome292", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1453, + "Id": "Metadata/Items/Currency/RandomFossilOutcome293", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1454, + "Id": "Metadata/Items/Currency/RandomFossilOutcome294", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1455, + "Id": "Metadata/Items/Currency/RandomFossilOutcome295", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1456, + "Id": "Metadata/Items/Currency/RandomFossilOutcome296", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1457, + "Id": "Metadata/Items/Currency/RandomFossilOutcome297", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1458, + "Id": "Metadata/Items/Currency/RandomFossilOutcome298", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1459, + "Id": "Metadata/Items/Currency/RandomFossilOutcome299", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1460, + "Id": "Metadata/Items/Currency/RandomFossilOutcome300", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1461, + "Id": "Metadata/Items/Currency/RandomFossilOutcome301", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1462, + "Id": "Metadata/Items/Currency/RandomFossilOutcome302", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1463, + "Id": "Metadata/Items/Currency/RandomFossilOutcome303", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1464, + "Id": "Metadata/Items/Currency/RandomFossilOutcome304", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1465, + "Id": "Metadata/Items/Currency/RandomFossilOutcome305", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1466, + "Id": "Metadata/Items/Currency/RandomFossilOutcome306", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1467, + "Id": "Metadata/Items/Currency/RandomFossilOutcome307", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1468, + "Id": "Metadata/Items/Currency/RandomFossilOutcome308", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1469, + "Id": "Metadata/Items/Currency/RandomFossilOutcome309", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1470, + "Id": "Metadata/Items/Currency/RandomFossilOutcome310", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1471, + "Id": "Metadata/Items/Currency/RandomFossilOutcome311", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1472, + "Id": "Metadata/Items/Currency/RandomFossilOutcome312", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1473, + "Id": "Metadata/Items/Currency/RandomFossilOutcome313", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1474, + "Id": "Metadata/Items/Currency/RandomFossilOutcome314", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1475, + "Id": "Metadata/Items/Currency/RandomFossilOutcome315", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1476, + "Id": "Metadata/Items/Currency/RandomFossilOutcome316", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1477, + "Id": "Metadata/Items/Currency/RandomFossilOutcome317", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1478, + "Id": "Metadata/Items/Currency/RandomFossilOutcome318", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1479, + "Id": "Metadata/Items/Currency/RandomFossilOutcome319", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1480, + "Id": "Metadata/Items/Currency/RandomFossilOutcome320", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1481, + "Id": "Metadata/Items/Currency/RandomFossilOutcome321", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1482, + "Id": "Metadata/Items/Currency/RandomFossilOutcome322", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1483, + "Id": "Metadata/Items/Currency/RandomFossilOutcome323", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1484, + "Id": "Metadata/Items/Currency/RandomFossilOutcome324", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1485, + "Id": "Metadata/Items/Currency/RandomFossilOutcome325", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1486, + "Id": "Metadata/Items/Currency/RandomFossilOutcome326", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1487, + "Id": "Metadata/Items/Currency/RandomFossilOutcome327", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1488, + "Id": "Metadata/Items/Currency/RandomFossilOutcome328", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1489, + "Id": "Metadata/Items/Currency/RandomFossilOutcome329", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1490, + "Id": "Metadata/Items/Currency/RandomFossilOutcome330", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1491, + "Id": "Metadata/Items/Currency/RandomFossilOutcome331", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1492, + "Id": "Metadata/Items/Currency/RandomFossilOutcome332", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1493, + "Id": "Metadata/Items/Currency/RandomFossilOutcome333", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1494, + "Id": "Metadata/Items/Currency/RandomFossilOutcome334", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1495, + "Id": "Metadata/Items/Currency/RandomFossilOutcome335", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1496, + "Id": "Metadata/Items/Currency/RandomFossilOutcome336", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1497, + "Id": "Metadata/Items/Currency/RandomFossilOutcome337", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1498, + "Id": "Metadata/Items/Currency/RandomFossilOutcome338", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1499, + "Id": "Metadata/Items/Currency/RandomFossilOutcome339", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1500, + "Id": "Metadata/Items/Currency/RandomFossilOutcome340", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1501, + "Id": "Metadata/Items/Currency/RandomFossilOutcome341", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1502, + "Id": "Metadata/Items/Currency/RandomFossilOutcome342", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1503, + "Id": "Metadata/Items/Currency/RandomFossilOutcome343", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1504, + "Id": "Metadata/Items/Currency/RandomFossilOutcome344", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1505, + "Id": "Metadata/Items/Currency/RandomFossilOutcome345", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1506, + "Id": "Metadata/Items/Currency/RandomFossilOutcome346", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1507, + "Id": "Metadata/Items/Currency/RandomFossilOutcome347", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1508, + "Id": "Metadata/Items/Currency/RandomFossilOutcome348", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1509, + "Id": "Metadata/Items/Currency/RandomFossilOutcome349", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1510, + "Id": "Metadata/Items/Currency/RandomFossilOutcome350", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1511, + "Id": "Metadata/Items/Currency/RandomFossilOutcome351", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1512, + "Id": "Metadata/Items/Currency/RandomFossilOutcome352", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1513, + "Id": "Metadata/Items/Currency/RandomFossilOutcome353", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1514, + "Id": "Metadata/Items/Currency/RandomFossilOutcome354", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1515, + "Id": "Metadata/Items/Currency/RandomFossilOutcome355", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1516, + "Id": "Metadata/Items/Currency/RandomFossilOutcome356", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1517, + "Id": "Metadata/Items/Currency/RandomFossilOutcome357", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1518, + "Id": "Metadata/Items/Currency/RandomFossilOutcome358", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1519, + "Id": "Metadata/Items/Currency/RandomFossilOutcome359", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1520, + "Id": "Metadata/Items/Currency/RandomFossilOutcome360", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1521, + "Id": "Metadata/Items/Currency/RandomFossilOutcome361", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1522, + "Id": "Metadata/Items/Currency/RandomFossilOutcome362", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1523, + "Id": "Metadata/Items/Currency/RandomFossilOutcome363", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1524, + "Id": "Metadata/Items/Currency/RandomFossilOutcome364", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1525, + "Id": "Metadata/Items/Currency/RandomFossilOutcome365", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1526, + "Id": "Metadata/Items/Currency/RandomFossilOutcome366", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1527, + "Id": "Metadata/Items/Currency/RandomFossilOutcome367", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1528, + "Id": "Metadata/Items/Currency/RandomFossilOutcome368", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1529, + "Id": "Metadata/Items/Currency/RandomFossilOutcome369", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1530, + "Id": "Metadata/Items/Currency/RandomFossilOutcome370", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1531, + "Id": "Metadata/Items/Currency/RandomFossilOutcome371", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1532, + "Id": "Metadata/Items/Currency/RandomFossilOutcome372", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1533, + "Id": "Metadata/Items/Currency/RandomFossilOutcome373", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1534, + "Id": "Metadata/Items/Currency/RandomFossilOutcome374", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1535, + "Id": "Metadata/Items/Currency/RandomFossilOutcome375", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1536, + "Id": "Metadata/Items/Currency/RandomFossilOutcome376", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1537, + "Id": "Metadata/Items/Currency/RandomFossilOutcome377", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1538, + "Id": "Metadata/Items/Currency/RandomFossilOutcome378", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1539, + "Id": "Metadata/Items/Currency/RandomFossilOutcome379", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1540, + "Id": "Metadata/Items/Currency/RandomFossilOutcome380", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1541, + "Id": "Metadata/Items/Currency/RandomFossilOutcome381", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1542, + "Id": "Metadata/Items/Currency/RandomFossilOutcome382", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1543, + "Id": "Metadata/Items/Currency/RandomFossilOutcome383", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1544, + "Id": "Metadata/Items/Currency/RandomFossilOutcome384", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1545, + "Id": "Metadata/Items/Currency/RandomFossilOutcome385", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1546, + "Id": "Metadata/Items/Currency/RandomFossilOutcome386", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1547, + "Id": "Metadata/Items/Currency/RandomFossilOutcome387", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1548, + "Id": "Metadata/Items/Currency/RandomFossilOutcome388", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1549, + "Id": "Metadata/Items/Currency/RandomFossilOutcome389", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1550, + "Id": "Metadata/Items/Currency/RandomFossilOutcome390", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1551, + "Id": "Metadata/Items/Currency/RandomFossilOutcome391", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1552, + "Id": "Metadata/Items/Currency/RandomFossilOutcome392", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1553, + "Id": "Metadata/Items/Currency/RandomFossilOutcome393", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1554, + "Id": "Metadata/Items/Currency/RandomFossilOutcome394", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1555, + "Id": "Metadata/Items/Currency/RandomFossilOutcome395", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1556, + "Id": "Metadata/Items/Currency/RandomFossilOutcome396", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1557, + "Id": "Metadata/Items/Currency/RandomFossilOutcome397", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1558, + "Id": "Metadata/Items/Currency/RandomFossilOutcome398", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1559, + "Id": "Metadata/Items/Currency/RandomFossilOutcome399", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1560, + "Id": "Metadata/Items/Currency/RandomFossilOutcome400", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1561, + "Id": "Metadata/Items/Currency/RandomFossilOutcome401", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1562, + "Id": "Metadata/Items/Currency/RandomFossilOutcome402", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1563, + "Id": "Metadata/Items/Currency/RandomFossilOutcome403", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1564, + "Id": "Metadata/Items/Currency/RandomFossilOutcome404", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1565, + "Id": "Metadata/Items/Currency/RandomFossilOutcome405", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1566, + "Id": "Metadata/Items/Currency/RandomFossilOutcome406", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1567, + "Id": "Metadata/Items/Currency/RandomFossilOutcome407", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1568, + "Id": "Metadata/Items/Currency/RandomFossilOutcome408", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1569, + "Id": "Metadata/Items/Currency/RandomFossilOutcome409", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1570, + "Id": "Metadata/Items/Currency/RandomFossilOutcome410", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1571, + "Id": "Metadata/Items/Currency/RandomFossilOutcome411", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1572, + "Id": "Metadata/Items/Currency/RandomFossilOutcome412", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1573, + "Id": "Metadata/Items/Currency/RandomFossilOutcome413", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1574, + "Id": "Metadata/Items/Currency/RandomFossilOutcome414", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1575, + "Id": "Metadata/Items/Currency/RandomFossilOutcome415", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1576, + "Id": "Metadata/Items/Currency/RandomFossilOutcome416", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1577, + "Id": "Metadata/Items/Currency/RandomFossilOutcome417", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1578, + "Id": "Metadata/Items/Currency/RandomFossilOutcome418", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1579, + "Id": "Metadata/Items/Currency/RandomFossilOutcome419", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1580, + "Id": "Metadata/Items/Currency/RandomFossilOutcome420", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1581, + "Id": "Metadata/Items/Currency/CurrencyEldritchRerollRare", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Мистическая сфера хаоса", + "DropLevel": 78, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 920 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13570, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1582, + "Id": "Metadata/Items/Currency/CurrencyEldritchAddModToRare", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Мистическая сфера возвышения", + "DropLevel": 78, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 920 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13571, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1583, + "Id": "Metadata/Items/Currency/CurrencyEldritchRemoveMod", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Мистическая сфера отмены", + "DropLevel": 78, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 920 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13572, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1584, + "Id": "Metadata/Items/MapFragments/Primordial/QuestTangleKey", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Извивающееся приглашение", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13574, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1585, + "Id": "Metadata/Items/MapFragments/Primordial/CurrencyTangleKey", + "ItemClassesKey": 46, + "Width": 1, + "Height": 1, + "Name": "Извивающееся приглашение", + "DropLevel": 1, + "Implicit_ModsKeys": [ + 11800 + ], + "TagsKeys": [ + 911 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13578, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1586, + "Id": "Metadata/Items/MapFragments/Primordial/QuestTangleBossKey", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Кричащее приглашение", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13575, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1587, + "Id": "Metadata/Items/MapFragments/Primordial/CurrencyTangleBossKey", + "ItemClassesKey": 46, + "Width": 1, + "Height": 1, + "Name": "Кричащее приглашение", + "DropLevel": 1, + "Implicit_ModsKeys": [ + 11800 + ], + "TagsKeys": [ + 911 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13579, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1588, + "Id": "Metadata/Items/MapFragments/Primordial/QuestCleansingFireKey", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Полярное приглашение", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13576, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1589, + "Id": "Metadata/Items/MapFragments/Primordial/CurrencyCleansingFireKey", + "ItemClassesKey": 46, + "Width": 1, + "Height": 1, + "Name": "Полярное приглашение", + "DropLevel": 1, + "Implicit_ModsKeys": [ + 11800 + ], + "TagsKeys": [ + 911 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13580, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1590, + "Id": "Metadata/Items/MapFragments/Primordial/QuestCleansingFireBossKey", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Сияющее приглашение", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13577, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1591, + "Id": "Metadata/Items/MapFragments/Primordial/CurrencyCleansingFireBossKey", + "ItemClassesKey": 46, + "Width": 1, + "Height": 1, + "Name": "Сияющее приглашение", + "DropLevel": 1, + "Implicit_ModsKeys": [ + 11800 + ], + "TagsKeys": [ + 911 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13581, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1592, + "Id": "Metadata/Items/Archnemesis/ArchnemesisMod", + "ItemClassesKey": 75, + "Width": 1, + "Height": 1, + "Name": "Свойство Возмездия", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13582, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1593, + "Id": "Metadata/Items/Currency/ScoutingReports/AtlasScoutingReportUnique", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Необычный доклад разведки", + "DropLevel": 69, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 922 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13583, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1594, + "Id": "Metadata/Items/Currency/ScoutingReports/AtlasScoutingReportBreachstone", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Потусторонний доклад разведки", + "DropLevel": 81, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 922 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13583, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1595, + "Id": "Metadata/Items/Currency/ScoutingReports/AtlasScoutingReportMoreHidden", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Подробный доклад разведки", + "DropLevel": 69, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 922 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13583, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1596, + "Id": "Metadata/Items/Currency/ScoutingReports/AtlasScoutingReportCorrupted", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Осквернённый доклад разведки", + "DropLevel": 69, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 922 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13583, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1597, + "Id": "Metadata/Items/Currency/ScoutingReports/AtlasScoutingReportDelirium", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Бредовый доклад разведки", + "DropLevel": 69, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 922 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13583, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1598, + "Id": "Metadata/Items/Currency/ScoutingReports/AtlasScoutingReportJuiced", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Оперативный доклад разведки", + "DropLevel": 69, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 922 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13583, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1599, + "Id": "Metadata/Items/Currency/ScoutingReports/AtlasScoutingReportBlighted", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Заражённый доклад разведки", + "DropLevel": 69, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 922 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13583, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1600, + "Id": "Metadata/Items/Currency/ScoutingReports/AtlasScoutingReportGuardian", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Влиятельный доклад разведки", + "DropLevel": 81, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 922 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13583, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1601, + "Id": "Metadata/Items/Currency/ScoutingReports/AtlasScoutingReportExplorers", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Исследовательский доклад разведки", + "DropLevel": 69, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 922 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13583, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1602, + "Id": "Metadata/Items/Currency/CurrencyExtractOil", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Экстрактор масел", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13584, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1603, + "Id": "Metadata/Items/Sentinel/SentinelA1", + "ItemClassesKey": 81, + "Width": 2, + "Height": 2, + "Name": "Ржавый Часовой-охотник", + "DropLevel": 2, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 930, + 949 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13597, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1604, + "Id": "Metadata/Items/Sentinel/SentinelA2", + "ItemClassesKey": 81, + "Width": 2, + "Height": 2, + "Name": "Бронзовый Часовой-охотник", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 930, + 949 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13598, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1605, + "Id": "Metadata/Items/Sentinel/SentinelA3", + "ItemClassesKey": 81, + "Width": 2, + "Height": 2, + "Name": "Кобальтовый Часовой-охотник", + "DropLevel": 18, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 930, + 949 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13599, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1606, + "Id": "Metadata/Items/Sentinel/SentinelA4", + "ItemClassesKey": 81, + "Width": 2, + "Height": 2, + "Name": "Сернистый Часовой-охотник", + "DropLevel": 38, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 930, + 949 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13600, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1607, + "Id": "Metadata/Items/Sentinel/SentinelA5", + "ItemClassesKey": 81, + "Width": 2, + "Height": 2, + "Name": "Каменноугольный Часовой-охотник", + "DropLevel": 58, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 930, + 949 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13601, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1608, + "Id": "Metadata/Items/Sentinel/SentinelA6", + "ItemClassesKey": 81, + "Width": 2, + "Height": 2, + "Name": "Обсидиановый Часовой-охотник", + "DropLevel": 67, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 930, + 949 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13602, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1609, + "Id": "Metadata/Items/Sentinel/SentinelCraftedA1", + "ItemClassesKey": 81, + "Width": 2, + "Height": 2, + "Name": "Скрытый Часовой-охотник", + "DropLevel": 2, + "Implicit_ModsKeys": [ + 12034 + ], + "TagsKeys": [ + 930, + 949 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13603, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1610, + "Id": "Metadata/Items/Sentinel/SentinelCraftedA2", + "ItemClassesKey": 81, + "Width": 2, + "Height": 2, + "Name": "Первобытный Часовой-охотник", + "DropLevel": 68, + "Implicit_ModsKeys": [ + 12035 + ], + "TagsKeys": [ + 930, + 949 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13604, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1611, + "Id": "Metadata/Items/Sentinel/SentinelCraftedA3", + "ItemClassesKey": 81, + "Width": 2, + "Height": 2, + "Name": "Древний Часовой-охотник", + "DropLevel": 80, + "Implicit_ModsKeys": [ + 12036 + ], + "TagsKeys": [ + 930, + 949 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13605, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1612, + "Id": "Metadata/Items/Sentinel/SentinelB1", + "ItemClassesKey": 81, + "Width": 2, + "Height": 2, + "Name": "Бронзовый Часовой-пандемоний", + "DropLevel": 40, + "Implicit_ModsKeys": [ + 11831 + ], + "TagsKeys": [ + 931, + 949 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13606, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1613, + "Id": "Metadata/Items/Sentinel/SentinelB2", + "ItemClassesKey": 81, + "Width": 2, + "Height": 2, + "Name": "Кобальтовый Часовой-пандемоний", + "DropLevel": 46, + "Implicit_ModsKeys": [ + 11831 + ], + "TagsKeys": [ + 931, + 949 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13607, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1614, + "Id": "Metadata/Items/Sentinel/SentinelB3", + "ItemClassesKey": 81, + "Width": 2, + "Height": 2, + "Name": "Сернистый Часовой-пандемоний", + "DropLevel": 54, + "Implicit_ModsKeys": [ + 11831 + ], + "TagsKeys": [ + 931, + 949 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13608, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1615, + "Id": "Metadata/Items/Sentinel/SentinelB4", + "ItemClassesKey": 81, + "Width": 2, + "Height": 2, + "Name": "Каменноугольный Часовой-пандемоний", + "DropLevel": 62, + "Implicit_ModsKeys": [ + 11831 + ], + "TagsKeys": [ + 931, + 949 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13609, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1616, + "Id": "Metadata/Items/Sentinel/SentinelB5", + "ItemClassesKey": 81, + "Width": 2, + "Height": 2, + "Name": "Обсидиановый Часовой-пандемоний", + "DropLevel": 68, + "Implicit_ModsKeys": [ + 11831 + ], + "TagsKeys": [ + 931, + 949 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13610, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1617, + "Id": "Metadata/Items/Sentinel/SentinelCraftedB1", + "ItemClassesKey": 81, + "Width": 2, + "Height": 2, + "Name": "Скрытый Часовой-пандемоний", + "DropLevel": 40, + "Implicit_ModsKeys": [ + 12037, + 11831 + ], + "TagsKeys": [ + 931, + 949 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13611, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1618, + "Id": "Metadata/Items/Sentinel/SentinelCraftedB2", + "ItemClassesKey": 81, + "Width": 2, + "Height": 2, + "Name": "Первобытный Часовой-пандемоний", + "DropLevel": 68, + "Implicit_ModsKeys": [ + 12038, + 11831 + ], + "TagsKeys": [ + 931, + 949 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13612, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1619, + "Id": "Metadata/Items/Sentinel/SentinelCraftedB3", + "ItemClassesKey": 81, + "Width": 2, + "Height": 2, + "Name": "Древний Часовой-пандемоний", + "DropLevel": 80, + "Implicit_ModsKeys": [ + 12039, + 11831 + ], + "TagsKeys": [ + 931, + 949 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13613, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1620, + "Id": "Metadata/Items/Sentinel/SentinelC1", + "ItemClassesKey": 81, + "Width": 2, + "Height": 2, + "Name": "Бронзовый Апекс-Часовой", + "DropLevel": 24, + "Implicit_ModsKeys": [ + 11830 + ], + "TagsKeys": [ + 932, + 949 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13614, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1621, + "Id": "Metadata/Items/Sentinel/SentinelC2", + "ItemClassesKey": 81, + "Width": 2, + "Height": 2, + "Name": "Кобальтовый Апекс-Часовой", + "DropLevel": 36, + "Implicit_ModsKeys": [ + 11830 + ], + "TagsKeys": [ + 932, + 949 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13615, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1622, + "Id": "Metadata/Items/Sentinel/SentinelC3", + "ItemClassesKey": 81, + "Width": 2, + "Height": 2, + "Name": "Сернистый Апекс-Часовой", + "DropLevel": 48, + "Implicit_ModsKeys": [ + 11830 + ], + "TagsKeys": [ + 932, + 949 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13616, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1623, + "Id": "Metadata/Items/Sentinel/SentinelC4", + "ItemClassesKey": 81, + "Width": 2, + "Height": 2, + "Name": "Каменноугольный Апекс-Часовой", + "DropLevel": 58, + "Implicit_ModsKeys": [ + 11830 + ], + "TagsKeys": [ + 932, + 949 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13617, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1624, + "Id": "Metadata/Items/Sentinel/SentinelC5", + "ItemClassesKey": 81, + "Width": 2, + "Height": 2, + "Name": "Обсидиановый Апекс-Часовой", + "DropLevel": 66, + "Implicit_ModsKeys": [ + 11830 + ], + "TagsKeys": [ + 932, + 949 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13618, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1625, + "Id": "Metadata/Items/Sentinel/SentinelCraftedC1", + "ItemClassesKey": 81, + "Width": 2, + "Height": 2, + "Name": "Скрытый Апекс-Часовой", + "DropLevel": 24, + "Implicit_ModsKeys": [ + 12040, + 11830 + ], + "TagsKeys": [ + 932, + 949 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13619, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1626, + "Id": "Metadata/Items/Sentinel/SentinelCraftedC2", + "ItemClassesKey": 81, + "Width": 2, + "Height": 2, + "Name": "Первобытный Апекс-Часовой", + "DropLevel": 68, + "Implicit_ModsKeys": [ + 12041, + 11830 + ], + "TagsKeys": [ + 932, + 949 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13620, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1627, + "Id": "Metadata/Items/Sentinel/SentinelCraftedC3", + "ItemClassesKey": 81, + "Width": 2, + "Height": 2, + "Name": "Древний Апекс-Часовой", + "DropLevel": 80, + "Implicit_ModsKeys": [ + 12042, + 11830 + ], + "TagsKeys": [ + 932, + 949 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13621, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1628, + "Id": "Metadata/Items/Sentinel/SentinelUniqueMapBossC1", + "ItemClassesKey": 81, + "Width": 2, + "Height": 2, + "Name": "Космический Апекс-Часовой", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 932, + 949 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13622, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1629, + "Id": "Metadata/Items/Currency/SentinelCurrencyBasic", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Энергоядро", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 942 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13590, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1630, + "Id": "Metadata/Items/Currency/SentinelCurrencyMutate", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Преобразующее энергоядро", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 942 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13591, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1631, + "Id": "Metadata/Items/Currency/SentinelCurrencyUpgradeMod", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Усиливающее энергоядро", + "DropLevel": 60, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 942 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13592, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1632, + "Id": "Metadata/Items/Currency/SentinelCurrencyAddMod", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Дополняющее энергоядро", + "DropLevel": 60, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 942 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13593, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1633, + "Id": "Metadata/Items/Currency/SentinelCurrencyArmour", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Рекомбинатор бронника", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 2, + "ItemVisualIdentity": 13594, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1634, + "Id": "Metadata/Items/Currency/SentinelCurrencyWeapon", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Рекомбинатор оружейника", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 2, + "ItemVisualIdentity": 13595, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1635, + "Id": "Metadata/Items/Currency/SentinelCurrencyJewellery", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Рекомбинатор ювелира", + "DropLevel": 68, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 2, + "ItemVisualIdentity": 13596, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1636, + "Id": "Metadata/Items/Relics/SanctumRelic1x2", + "ItemClassesKey": 84, + "Width": 1, + "Height": 2, + "Name": "Урна", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 982 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13633, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1637, + "Id": "Metadata/Items/Relics/SanctumRelic1x3", + "ItemClassesKey": 84, + "Width": 1, + "Height": 3, + "Name": "Амфора", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 983 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13634, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1638, + "Id": "Metadata/Items/Relics/SanctumRelic1x4", + "ItemClassesKey": 84, + "Width": 1, + "Height": 4, + "Name": "Ваза", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 984 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13635, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1639, + "Id": "Metadata/Items/Relics/SanctumRelic2x1", + "ItemClassesKey": 84, + "Width": 2, + "Height": 1, + "Name": "Печать", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 982 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13636, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1640, + "Id": "Metadata/Items/Relics/SanctumRelic2x2", + "ItemClassesKey": 84, + "Width": 2, + "Height": 2, + "Name": "Ларец", + "DropLevel": 78, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 984 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13637, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1641, + "Id": "Metadata/Items/Relics/SanctumRelic3x1", + "ItemClassesKey": 84, + "Width": 3, + "Height": 1, + "Name": "Гобелен", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 983 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13638, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1642, + "Id": "Metadata/Items/Relics/SanctumRelic4x1", + "ItemClassesKey": 84, + "Width": 4, + "Height": 1, + "Name": "Курительница", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 984 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13639, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1643, + "Id": "Metadata/Items/Relics/SanctumSpecialRelic1", + "ItemClassesKey": 85, + "Width": 1, + "Height": 2, + "Name": "Священная реликвия", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 990 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13650, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1644, + "Id": "Metadata/Items/Relics/SanctumSpecialRelic2", + "ItemClassesKey": 85, + "Width": 1, + "Height": 2, + "Name": "Священная реликвия", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 991 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13651, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1645, + "Id": "Metadata/Items/Relics/SanctumSpecialRelic3", + "ItemClassesKey": 85, + "Width": 1, + "Height": 2, + "Name": "Священная реликвия", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 992 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13652, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1646, + "Id": "Metadata/Items/MemoryLines/MemoryLineKirac", + "ItemClassesKey": 82, + "Width": 1, + "Height": 1, + "Name": "Воспоминание Кирака", + "DropLevel": 81, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 945, + 922 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13624, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1647, + "Id": "Metadata/Items/MemoryLines/MemoryLineAlva", + "ItemClassesKey": 82, + "Width": 1, + "Height": 1, + "Name": "Воспоминание Альвы", + "DropLevel": 81, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 946, + 922 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13625, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1648, + "Id": "Metadata/Items/MemoryLines/MemoryLineNiko", + "ItemClassesKey": 82, + "Width": 1, + "Height": 1, + "Name": "Воспоминание Нико", + "DropLevel": 81, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 947, + 922 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13626, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1649, + "Id": "Metadata/Items/MemoryLines/MemoryLineEinhar", + "ItemClassesKey": 82, + "Width": 1, + "Height": 1, + "Name": "Воспоминание Эйнара", + "DropLevel": 81, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 948, + 922 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13627, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1650, + "Id": "Metadata/Items/Currency/HarvestSeedRed", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Дикая кристализованная жизненная сила", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13628, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1651, + "Id": "Metadata/Items/Currency/HarvestSeedGreen", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Буйная кристализованная жизненная сила", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13629, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1652, + "Id": "Metadata/Items/Currency/HarvestSeedBlue", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Первобытная кристализованная жизненная сила", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13630, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1653, + "Id": "Metadata/Items/Currency/HarvestSeedBoss", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Священная кристализованная жизненная сила", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13631, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1654, + "Id": "Metadata/Items/Currency/GoldCoin", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Золото", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13671, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1655, + "Id": "Metadata/Items/Sanctum/SanctumKey", + "ItemClassesKey": 89, + "Width": 1, + "Height": 1, + "Name": "Бария Джинна", + "DropLevel": 24, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33, + 1017 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13654, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1656, + "Id": "Metadata/Items/QuestItems/Sanctum/SanctumKeyQuest", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Бария Балбалы", + "DropLevel": 22, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33, + 1017, + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13655, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1657, + "Id": "Metadata/Items/Sanctum/SanctumFloor1", + "ItemClassesKey": 89, + "Width": 1, + "Height": 1, + "Name": "Бария Испытания силы", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13656, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1658, + "Id": "Metadata/Items/Sanctum/SanctumFloor2", + "ItemClassesKey": 89, + "Width": 1, + "Height": 1, + "Name": "Бария Испытания воли", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13657, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1659, + "Id": "Metadata/Items/Sanctum/SanctumFloor3", + "ItemClassesKey": 89, + "Width": 1, + "Height": 1, + "Name": "Бария Испытания хитрости", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13658, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1660, + "Id": "Metadata/Items/Sanctum/SanctumFloor4", + "ItemClassesKey": 89, + "Width": 1, + "Height": 1, + "Name": "Бария Испытания времени", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13659, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1661, + "Id": "Metadata/Items/Sanctum/SanctumBronzeKey", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Бронзовый ключ", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13660, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1662, + "Id": "Metadata/Items/Sanctum/SanctumSilverKey", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Серебряный ключ", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13661, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1663, + "Id": "Metadata/Items/Sanctum/SanctumGoldKey", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Золотой ключ", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13662, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1664, + "Id": "Metadata/Items/Sanctum/SanctumBronzeKeyDrop", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Бронзовый ключ", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13663, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1665, + "Id": "Metadata/Items/Sanctum/SanctumSilverKeyDrop", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Серебряный ключ", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13664, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1666, + "Id": "Metadata/Items/Sanctum/SanctumGoldKeyDrop", + "ItemClassesKey": 30, + "Width": 1, + "Height": 1, + "Name": "Золотой ключ", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13665, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1667, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandSwords/FourOneHandSword1", + "ItemClassesKey": 9, + "Width": 2, + "Height": 3, + "Name": "Короткий меч", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13760, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1668, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandSwords/FourOneHandSword2", + "ItemClassesKey": 9, + "Width": 2, + "Height": 3, + "Name": "Широкий меч", + "DropLevel": 6, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13761, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1669, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandSwords/FourOneHandSword3", + "ItemClassesKey": 9, + "Width": 2, + "Height": 3, + "Name": "Клинок-кровопийца", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13762, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1670, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandSwords/FourOneHandSword4", + "ItemClassesKey": 9, + "Width": 2, + "Height": 3, + "Name": "Скимитар", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13763, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1671, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandSwords/FourOneHandSword5", + "ItemClassesKey": 9, + "Width": 2, + "Height": 3, + "Name": "Обугленный короткий меч", + "DropLevel": 21, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13764, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1672, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandSwords/FourOneHandSword6", + "ItemClassesKey": 9, + "Width": 2, + "Height": 3, + "Name": "Хопеш", + "DropLevel": 28, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13765, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1673, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandSwords/FourOneHandSword7", + "ItemClassesKey": 9, + "Width": 2, + "Height": 3, + "Name": "Фальшион", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13766, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1674, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandSwords/FourOneHandSword8", + "ItemClassesKey": 9, + "Width": 2, + "Height": 3, + "Name": "Драгоценный клинок", + "DropLevel": 40, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13767, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1675, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandSwords/FourOneHandSword9", + "ItemClassesKey": 9, + "Width": 2, + "Height": 3, + "Name": "Абордажная сабля", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13768, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1676, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandSwords/FourOneHandSword10", + "ItemClassesKey": 9, + "Width": 2, + "Height": 3, + "Name": "Рунический короткий меч", + "DropLevel": 50, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13769, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1677, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandSwords/FourOneHandSword11", + "ItemClassesKey": 9, + "Width": 2, + "Height": 3, + "Name": "Мессер", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13770, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1678, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandSwords/FourOneHandSword12", + "ItemClassesKey": 9, + "Width": 2, + "Height": 3, + "Name": "Меч командира", + "DropLevel": 54, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13771, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1679, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandSwords/FourOneHandSword13", + "ItemClassesKey": 9, + "Width": 2, + "Height": 3, + "Name": "Тёмный клинок", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13772, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1680, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandSwords/FourTwoHandSword1", + "ItemClassesKey": 15, + "Width": 2, + "Height": 4, + "Name": "Ржавый длинный меч", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13773, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1681, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandSwords/FourTwoHandSword2", + "ItemClassesKey": 15, + "Width": 2, + "Height": 4, + "Name": "Железный большой меч", + "DropLevel": 6, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13774, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1682, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandSwords/FourTwoHandSword3", + "ItemClassesKey": 15, + "Width": 2, + "Height": 4, + "Name": "Освящённый клеймор", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13775, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1683, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandSwords/FourTwoHandSword4", + "ItemClassesKey": 15, + "Width": 2, + "Height": 4, + "Name": "Широкий большой меч", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13776, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1684, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandSwords/FourTwoHandSword5", + "ItemClassesKey": 15, + "Width": 2, + "Height": 4, + "Name": "Фламберг", + "DropLevel": 22, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13777, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1685, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandSwords/FourTwoHandSword6", + "ItemClassesKey": 15, + "Width": 2, + "Height": 4, + "Name": "Изогнутый длинный меч", + "DropLevel": 28, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13778, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1686, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandSwords/FourTwoHandSword7", + "ItemClassesKey": 15, + "Width": 2, + "Height": 4, + "Name": "Каменный большой меч", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13779, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1687, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandSwords/FourTwoHandSword8", + "ItemClassesKey": 15, + "Width": 2, + "Height": 4, + "Name": "Большой меч из обсидиана", + "DropLevel": 36, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13780, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1688, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandSwords/FourTwoHandSword9", + "ItemClassesKey": 15, + "Width": 2, + "Height": 4, + "Name": "Эспадон", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13781, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1689, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandSwords/FourTwoHandSword10", + "ItemClassesKey": 15, + "Width": 2, + "Height": 4, + "Name": "Древний тяжёлый меч", + "DropLevel": 49, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13782, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1690, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandSwords/FourTwoHandSword11", + "ItemClassesKey": 15, + "Width": 2, + "Height": 4, + "Name": "Тяжёлый меч с навершием", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13783, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1691, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandSwords/FourTwoHandSword12", + "ItemClassesKey": 15, + "Width": 2, + "Height": 4, + "Name": "Царский длинный меч", + "DropLevel": 54, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13784, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1692, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandSwords/FourTwoHandSword13", + "ItemClassesKey": 15, + "Width": 2, + "Height": 4, + "Name": "Сверхтяжёлый меч", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13785, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1693, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandAxes/FourOneHandAxe1", + "ItemClassesKey": 11, + "Width": 2, + "Height": 3, + "Name": "Тупой топорик", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13786, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1694, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandAxes/FourOneHandAxe2", + "ItemClassesKey": 11, + "Width": 2, + "Height": 3, + "Name": "Секач", + "DropLevel": 4, + "Implicit_ModsKeys": [ + 1534 + ], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13787, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1695, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandAxes/FourOneHandAxe3", + "ItemClassesKey": 11, + "Width": 2, + "Height": 3, + "Name": "Бородовидный топор", + "DropLevel": 10, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13788, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1696, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandAxes/FourOneHandAxe4", + "ItemClassesKey": 11, + "Width": 2, + "Height": 3, + "Name": "Удлинённый тесак", + "DropLevel": 16, + "Implicit_ModsKeys": [ + 1535 + ], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13789, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1697, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandAxes/FourOneHandAxe5", + "ItemClassesKey": 11, + "Width": 2, + "Height": 3, + "Name": "Бандитский чекан", + "DropLevel": 20, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13790, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1698, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandAxes/FourOneHandAxe6", + "ItemClassesKey": 11, + "Width": 2, + "Height": 3, + "Name": "Топор-полумесяц", + "DropLevel": 26, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13791, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1699, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandAxes/FourOneHandAxe7", + "ItemClassesKey": 11, + "Width": 2, + "Height": 3, + "Name": "Древотёс", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13792, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1700, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandAxes/FourOneHandAxe8", + "ItemClassesKey": 11, + "Width": 2, + "Height": 3, + "Name": "Жертвенный топор", + "DropLevel": 37, + "Implicit_ModsKeys": [ + 1536 + ], + "TagsKeys": [ + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13793, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1701, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandAxes/FourOneHandAxe9", + "ItemClassesKey": 11, + "Width": 2, + "Height": 3, + "Name": "Абордажный топор", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13794, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1702, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandAxes/FourOneHandAxe10", + "ItemClassesKey": 11, + "Width": 2, + "Height": 3, + "Name": "Яростный рассекатель", + "DropLevel": 48, + "Implicit_ModsKeys": [ + 1537 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13795, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1703, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandAxes/FourOneHandAxe11", + "ItemClassesKey": 11, + "Width": 2, + "Height": 3, + "Name": "Боевой топор", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13796, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1704, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandAxes/FourOneHandAxe12", + "ItemClassesKey": 11, + "Width": 2, + "Height": 3, + "Name": "Нечестивый секач", + "DropLevel": 54, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13797, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1705, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandAxes/FourOneHandAxe13", + "ItemClassesKey": 11, + "Width": 2, + "Height": 3, + "Name": "Ужасный топор", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13798, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1706, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandAxes/FourTwoHandAxe1", + "ItemClassesKey": 16, + "Width": 2, + "Height": 4, + "Name": "Большой топор лесоруба", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13799, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1707, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandAxes/FourTwoHandAxe2", + "ItemClassesKey": 16, + "Width": 2, + "Height": 4, + "Name": "Лёгкая алебарда", + "DropLevel": 4, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13800, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1708, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandAxes/FourTwoHandAxe3", + "ItemClassesKey": 16, + "Width": 2, + "Height": 4, + "Name": "Большой топор палача", + "DropLevel": 10, + "Implicit_ModsKeys": [ + 1539 + ], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13801, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1709, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandAxes/FourTwoHandAxe4", + "ItemClassesKey": 16, + "Width": 2, + "Height": 4, + "Name": "Загнутый большой топор", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13802, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1710, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandAxes/FourTwoHandAxe5", + "ItemClassesKey": 16, + "Width": 2, + "Height": 4, + "Name": "Изящная глевия", + "DropLevel": 20, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13803, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1711, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandAxes/FourTwoHandAxe6", + "ItemClassesKey": 16, + "Width": 2, + "Height": 4, + "Name": "Большой топор дикаря", + "DropLevel": 27, + "Implicit_ModsKeys": [ + 1540 + ], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13804, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1712, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandAxes/FourTwoHandAxe7", + "ItemClassesKey": 16, + "Width": 2, + "Height": 4, + "Name": "Раздирающая алебарда", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13805, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1713, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandAxes/FourTwoHandAxe8", + "ItemClassesKey": 16, + "Width": 2, + "Height": 4, + "Name": "Зазубренный тяжёлый топор", + "DropLevel": 40, + "Implicit_ModsKeys": [ + 1541 + ], + "TagsKeys": [ + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13806, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1714, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandAxes/FourTwoHandAxe9", + "ItemClassesKey": 16, + "Width": 2, + "Height": 4, + "Name": "Разбойничий бердыш", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13807, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1715, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandAxes/FourTwoHandAxe10", + "ItemClassesKey": 16, + "Width": 2, + "Height": 4, + "Name": "Угольное рубило", + "DropLevel": 50, + "Implicit_ModsKeys": [ + 1542 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13808, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1716, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandAxes/FourTwoHandAxe11", + "ItemClassesKey": 16, + "Width": 2, + "Height": 4, + "Name": "Церемониальная алебарда", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13809, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1717, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandAxes/FourTwoHandAxe12", + "ItemClassesKey": 16, + "Width": 2, + "Height": 4, + "Name": "Мемориальная секира", + "DropLevel": 57, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13810, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1718, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandAxes/FourTwoHandAxe13", + "ItemClassesKey": 16, + "Width": 2, + "Height": 4, + "Name": "Большой топор грешника", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13811, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1719, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandMaces/FourOneHandMace1", + "ItemClassesKey": 12, + "Width": 2, + "Height": 3, + "Name": "Деревянная дубинка", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13812, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1720, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandMaces/FourOneHandMace2", + "ItemClassesKey": 12, + "Width": 2, + "Height": 3, + "Name": "Кузнечный молот", + "DropLevel": 4, + "Implicit_ModsKeys": [ + 1543 + ], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13813, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1721, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandMaces/FourOneHandMace3", + "ItemClassesKey": 12, + "Width": 2, + "Height": 3, + "Name": "Шестопёр", + "DropLevel": 10, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13814, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1722, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandMaces/FourOneHandMace4", + "ItemClassesKey": 12, + "Width": 2, + "Height": 3, + "Name": "Шипастая дубинка", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13815, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1723, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandMaces/FourOneHandMace5", + "ItemClassesKey": 12, + "Width": 2, + "Height": 3, + "Name": "Клевец", + "DropLevel": 22, + "Implicit_ModsKeys": [ + 1544 + ], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13816, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1724, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandMaces/FourOneHandMace6", + "ItemClassesKey": 12, + "Width": 2, + "Height": 3, + "Name": "Кованая булава", + "DropLevel": 26, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13817, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1725, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandMaces/FourOneHandMace7", + "ItemClassesKey": 12, + "Width": 2, + "Height": 3, + "Name": "Булава грабителя", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13818, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1726, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandMaces/FourOneHandMace8", + "ItemClassesKey": 12, + "Width": 2, + "Height": 3, + "Name": "Молот конструкта", + "DropLevel": 36, + "Implicit_ModsKeys": [ + 1545 + ], + "TagsKeys": [ + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13819, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1727, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandMaces/FourOneHandMace9", + "ItemClassesKey": 12, + "Width": 2, + "Height": 3, + "Name": "Моргенштерн", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13820, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1728, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandMaces/FourOneHandMace10", + "ItemClassesKey": 12, + "Width": 2, + "Height": 3, + "Name": "Нефритовая дубинка", + "DropLevel": 48, + "Implicit_ModsKeys": [ + 1547 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13821, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1729, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandMaces/FourOneHandMace11", + "ItemClassesKey": 12, + "Width": 2, + "Height": 3, + "Name": "Булава света", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13822, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1730, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandMaces/FourOneHandMace12", + "ItemClassesKey": 12, + "Width": 2, + "Height": 3, + "Name": "Проклятый молот", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13823, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1731, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandMaces/FourOneHandMace13", + "ItemClassesKey": 12, + "Width": 2, + "Height": 3, + "Name": "Булава мучений", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13824, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1732, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandMaces/FourTwoHandMace1", + "ItemClassesKey": 17, + "Width": 2, + "Height": 4, + "Name": "Дубина из пня", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13825, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1733, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandMaces/FourTwoHandMace2", + "ItemClassesKey": 17, + "Width": 2, + "Height": 4, + "Name": "Дубовая кувалда", + "DropLevel": 4, + "Implicit_ModsKeys": [ + 1546 + ], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13826, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1734, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandMaces/FourTwoHandMace3", + "ItemClassesKey": 17, + "Width": 2, + "Height": 4, + "Name": "Кузнечная кувалда", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13827, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1735, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandMaces/FourTwoHandMace4", + "ItemClassesKey": 17, + "Width": 2, + "Height": 4, + "Name": "Шипастая палица", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13828, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1736, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandMaces/FourTwoHandMace5", + "ItemClassesKey": 17, + "Width": 2, + "Height": 4, + "Name": "Культовый молот", + "DropLevel": 22, + "Implicit_ModsKeys": [ + 1548 + ], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13829, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1737, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandMaces/FourTwoHandMace6", + "ItemClassesKey": 17, + "Width": 2, + "Height": 4, + "Name": "Храмовая дубина", + "DropLevel": 28, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13830, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1738, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandMaces/FourTwoHandMace7", + "ItemClassesKey": 17, + "Width": 2, + "Height": 4, + "Name": "Освинцованный молот", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13831, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1739, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandMaces/FourTwoHandMace8", + "ItemClassesKey": 17, + "Width": 2, + "Height": 4, + "Name": "Крошащий молот", + "DropLevel": 38, + "Implicit_ModsKeys": [ + 1549 + ], + "TagsKeys": [ + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13832, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1740, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandMaces/FourTwoHandMace9", + "ItemClassesKey": 17, + "Width": 2, + "Height": 4, + "Name": "Остроконечная дубина", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13833, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1741, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandMaces/FourTwoHandMace10", + "ItemClassesKey": 17, + "Width": 2, + "Height": 4, + "Name": "Тотемная палица", + "DropLevel": 50, + "Implicit_ModsKeys": [ + 1550 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13834, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1742, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandMaces/FourTwoHandMace11", + "ItemClassesKey": 17, + "Width": 2, + "Height": 4, + "Name": "Большая булава", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13835, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1743, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandMaces/FourTwoHandMace12", + "ItemClassesKey": 17, + "Width": 2, + "Height": 4, + "Name": "Тяжёлый чекан", + "DropLevel": 54, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13836, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1744, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandMaces/FourTwoHandMace13", + "ItemClassesKey": 17, + "Width": 2, + "Height": 4, + "Name": "Огромный молот", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13837, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1745, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandSpears/FourSpear1", + "ItemClassesKey": 77, + "Width": 1, + "Height": 4, + "Name": "Копьё из твёрдой древесины", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13838, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1746, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandSpears/FourSpear2", + "ItemClassesKey": 77, + "Width": 1, + "Height": 4, + "Name": "Копьё с железным наконечником", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13839, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1747, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandSpears/FourSpear3", + "ItemClassesKey": 77, + "Width": 1, + "Height": 4, + "Name": "Охотничье копьё", + "DropLevel": 10, + "Implicit_ModsKeys": [ + 1551 + ], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13840, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1748, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandSpears/FourSpear4", + "ItemClassesKey": 77, + "Width": 1, + "Height": 4, + "Name": "Крылатое копьё", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13841, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1749, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandSpears/FourSpear5", + "ItemClassesKey": 77, + "Width": 1, + "Height": 4, + "Name": "Воинское копьё", + "DropLevel": 21, + "Implicit_ModsKeys": [ + 1552 + ], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13842, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1750, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandSpears/FourSpear6", + "ItemClassesKey": 77, + "Width": 1, + "Height": 4, + "Name": "Раздвоенное копьё", + "DropLevel": 26, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13843, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1751, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandSpears/FourSpear7", + "ItemClassesKey": 77, + "Width": 1, + "Height": 4, + "Name": "Копьё с зазубринами", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13844, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1752, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandSpears/FourSpear8", + "ItemClassesKey": 77, + "Width": 1, + "Height": 4, + "Name": "Широкое копьё", + "DropLevel": 40, + "Implicit_ModsKeys": [ + 1553 + ], + "TagsKeys": [ + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13845, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1753, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandSpears/FourSpear9", + "ItemClassesKey": 77, + "Width": 1, + "Height": 4, + "Name": "Крестообразное копьё", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13846, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1754, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandSpears/FourSpear10", + "ItemClassesKey": 77, + "Width": 1, + "Height": 4, + "Name": "Копьё из морского стекла", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13847, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1755, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandSpears/FourSpear11", + "ItemClassesKey": 77, + "Width": 1, + "Height": 4, + "Name": "Копьё-меч", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13848, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1756, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandSpears/FourSpear12", + "ItemClassesKey": 77, + "Width": 1, + "Height": 4, + "Name": "Ударное копьё", + "DropLevel": 55, + "Implicit_ModsKeys": [ + 1554 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13849, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1757, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandSpears/FourSpear13", + "ItemClassesKey": 77, + "Width": 1, + "Height": 4, + "Name": "Спиралевидное копьё", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13850, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1758, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Claws/FourClaw1", + "ItemClassesKey": 6, + "Width": 2, + "Height": 2, + "Name": "Грубый кастет", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13851, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1759, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Claws/FourClaw2", + "ItemClassesKey": 6, + "Width": 2, + "Height": 2, + "Name": "Пиктский коготь", + "DropLevel": 6, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13852, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1760, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Claws/FourClaw3", + "ItemClassesKey": 6, + "Width": 2, + "Height": 2, + "Name": "Коготь из костей волка", + "DropLevel": 12, + "Implicit_ModsKeys": [ + 1555 + ], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13853, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1761, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Claws/FourClaw4", + "ItemClassesKey": 6, + "Width": 2, + "Height": 2, + "Name": "Трёхзубый кастет", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13854, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1762, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Claws/FourClaw5", + "ItemClassesKey": 6, + "Width": 2, + "Height": 2, + "Name": "Пластинчатый коготь", + "DropLevel": 22, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13855, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1763, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Claws/FourClaw6", + "ItemClassesKey": 6, + "Width": 2, + "Height": 2, + "Name": "Кинжальный кастет", + "DropLevel": 28, + "Implicit_ModsKeys": [ + 1556 + ], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13856, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1764, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Claws/FourClaw7", + "ItemClassesKey": 6, + "Width": 2, + "Height": 2, + "Name": "Гнутый кастет", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13857, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1765, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Claws/FourClaw8", + "ItemClassesKey": 6, + "Width": 2, + "Height": 2, + "Name": "Коготь с крючьями", + "DropLevel": 36, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13858, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1766, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Claws/FourClaw9", + "ItemClassesKey": 6, + "Width": 2, + "Height": 2, + "Name": "Кастет со стеклянным лезвием", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13859, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1767, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Claws/FourClaw10", + "ItemClassesKey": 6, + "Width": 2, + "Height": 2, + "Name": "Кастет с зубами акулы", + "DropLevel": 49, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13860, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1768, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Claws/FourClaw11", + "ItemClassesKey": 6, + "Width": 2, + "Height": 2, + "Name": "Доспешный коготь", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13861, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1769, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Claws/FourClaw12", + "ItemClassesKey": 6, + "Width": 2, + "Height": 2, + "Name": "Протыкающий кастет", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13862, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1770, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Claws/FourClaw13", + "ItemClassesKey": 6, + "Width": 2, + "Height": 2, + "Name": "Коготь хищника", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13863, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1771, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Daggers/FourDagger1", + "ItemClassesKey": 7, + "Width": 1, + "Height": 3, + "Name": "Осколок стекла", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13864, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1772, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Daggers/FourDagger2", + "ItemClassesKey": 7, + "Width": 1, + "Height": 3, + "Name": "Старый нож", + "DropLevel": 6, + "Implicit_ModsKeys": [ + 1559 + ], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13865, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1773, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Daggers/FourDagger3", + "ItemClassesKey": 7, + "Width": 1, + "Height": 3, + "Name": "Простой кинжал", + "DropLevel": 12, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13866, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1774, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Daggers/FourDagger4", + "ItemClassesKey": 7, + "Width": 1, + "Height": 3, + "Name": "Нож скорняка", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13867, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1775, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Daggers/FourDagger5", + "ItemClassesKey": 7, + "Width": 1, + "Height": 3, + "Name": "Лунный кинжал", + "DropLevel": 20, + "Implicit_ModsKeys": [ + 1560 + ], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13868, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1776, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Daggers/FourDagger6", + "ItemClassesKey": 7, + "Width": 1, + "Height": 3, + "Name": "Нож с гравировкой", + "DropLevel": 27, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13869, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1777, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Daggers/FourDagger7", + "ItemClassesKey": 7, + "Width": 1, + "Height": 3, + "Name": "Обсидиановый кинжал", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13870, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1778, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Daggers/FourDagger8", + "ItemClassesKey": 7, + "Width": 1, + "Height": 3, + "Name": "Кинжал кровопускателя", + "DropLevel": 39, + "Implicit_ModsKeys": [ + 1561 + ], + "TagsKeys": [ + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13871, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1779, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Daggers/FourDagger9", + "ItemClassesKey": 7, + "Width": 1, + "Height": 3, + "Name": "Пробиватель доспеха", + "DropLevel": 45, + "Implicit_ModsKeys": [ + 1562 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13872, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1780, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Daggers/FourDagger10", + "ItemClassesKey": 7, + "Width": 1, + "Height": 3, + "Name": "Нож крис", + "DropLevel": 49, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13873, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1781, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Daggers/FourDagger11", + "ItemClassesKey": 7, + "Width": 1, + "Height": 3, + "Name": "Дага", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13874, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1782, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Daggers/FourDagger12", + "ItemClassesKey": 7, + "Width": 1, + "Height": 3, + "Name": "Колдовской кортик", + "DropLevel": 56, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13875, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1783, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Daggers/FourDagger13", + "ItemClassesKey": 7, + "Width": 1, + "Height": 3, + "Name": "Чинкуэда", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13876, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1784, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourQuarterstaff1", + "ItemClassesKey": 57, + "Width": 2, + "Height": 4, + "Name": "Обмотанный боевой посох", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13877, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1785, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourQuarterstaff2", + "ItemClassesKey": 57, + "Width": 2, + "Height": 4, + "Name": "Длинный боевой посох", + "DropLevel": 4, + "Implicit_ModsKeys": [ + 1565 + ], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13878, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1786, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourQuarterstaff3", + "ItemClassesKey": 57, + "Width": 2, + "Height": 4, + "Name": "Готический боевой посох", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13879, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1787, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourQuarterstaff4", + "ItemClassesKey": 57, + "Width": 2, + "Height": 4, + "Name": "Искрящийся боевой посох", + "DropLevel": 16, + "Implicit_ModsKeys": [ + 1566 + ], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13880, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1788, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourQuarterstaff5", + "ItemClassesKey": 57, + "Width": 2, + "Height": 4, + "Name": "Боевой посох с полумесяцем", + "DropLevel": 20, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13881, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1789, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourQuarterstaff6", + "ItemClassesKey": 57, + "Width": 2, + "Height": 4, + "Name": "Боевой посох со стальным наконечником", + "DropLevel": 28, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13882, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1790, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourQuarterstaff7", + "ItemClassesKey": 57, + "Width": 2, + "Height": 4, + "Name": "Режущий боевой посох", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13883, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1791, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourQuarterstaff8", + "ItemClassesKey": 57, + "Width": 2, + "Height": 4, + "Name": "Барьерный боевой посох", + "DropLevel": 37, + "Implicit_ModsKeys": [ + 1567 + ], + "TagsKeys": [ + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13884, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1792, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourQuarterstaff9", + "ItemClassesKey": 57, + "Width": 2, + "Height": 4, + "Name": "Массивный боевой посох", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13885, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1793, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourQuarterstaff10", + "ItemClassesKey": 57, + "Width": 2, + "Height": 4, + "Name": "Гладкий боевой посох", + "DropLevel": 47, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13886, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1794, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourQuarterstaff11", + "ItemClassesKey": 57, + "Width": 2, + "Height": 4, + "Name": "Боевой посох духа", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13887, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1795, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourQuarterstaff12", + "ItemClassesKey": 57, + "Width": 2, + "Height": 4, + "Name": "Изящный боевой посох", + "DropLevel": 56, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13888, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1796, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourQuarterstaff13", + "ItemClassesKey": 57, + "Width": 2, + "Height": 4, + "Name": "Боевой посох змия", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13889, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1797, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Flails/FourFlail1", + "ItemClassesKey": 83, + "Width": 2, + "Height": 3, + "Name": "Потрескавшийся кистень", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13890, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1798, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Flails/FourFlail2", + "ItemClassesKey": 83, + "Width": 2, + "Height": 3, + "Name": "Цепное гасило", + "DropLevel": 6, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13891, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1799, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Flails/FourFlail3", + "ItemClassesKey": 83, + "Width": 2, + "Height": 3, + "Name": "Священное молотило", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13892, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1800, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Flails/FourFlail4", + "ItemClassesKey": 83, + "Width": 2, + "Height": 3, + "Name": "Железный кистень", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13893, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1801, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Flails/FourFlail5", + "ItemClassesKey": 83, + "Width": 2, + "Height": 3, + "Name": "Двойной кистень", + "DropLevel": 20, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13894, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1802, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Flails/FourFlail6", + "ItemClassesKey": 83, + "Width": 2, + "Height": 3, + "Name": "Тонкий кистень", + "DropLevel": 26, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13895, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1803, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Flails/FourFlail7", + "ItemClassesKey": 83, + "Width": 2, + "Height": 3, + "Name": "Кистень из камня", + "DropLevel": 33, + "Implicit_ModsKeys": [ + 1563 + ], + "TagsKeys": [ + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13896, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1804, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Flails/FourFlail8", + "ItemClassesKey": 83, + "Width": 2, + "Height": 3, + "Name": "Кистень с кольцами", + "DropLevel": 38, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13897, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1805, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Flails/FourFlail9", + "ItemClassesKey": 83, + "Width": 2, + "Height": 3, + "Name": "Кистень с гардой", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13898, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1806, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Flails/FourFlail10", + "ItemClassesKey": 83, + "Width": 2, + "Height": 3, + "Name": "Льдистый кистень", + "DropLevel": 47, + "Implicit_ModsKeys": [ + 1564 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13899, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1807, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Flails/FourFlail11", + "ItemClassesKey": 83, + "Width": 2, + "Height": 3, + "Name": "Разрывающий кистень", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13900, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1808, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Flails/FourFlail12", + "ItemClassesKey": 83, + "Width": 2, + "Height": 3, + "Name": "Большой кистень", + "DropLevel": 58, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13901, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1809, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Flails/FourFlail13", + "ItemClassesKey": 83, + "Width": 2, + "Height": 3, + "Name": "Кистень кромешной тьмы", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13902, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1810, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Wands/FourWand1", + "ItemClassesKey": 8, + "Width": 1, + "Height": 3, + "Name": "Увядший жезл", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1048, + 1049, + 1050, + 1052 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13903, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1811, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Wands/FourWand2", + "ItemClassesKey": 8, + "Width": 1, + "Height": 3, + "Name": "Костяной жезл", + "DropLevel": 2, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1048, + 1049, + 1050, + 1051 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13904, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1812, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Wands/FourWand3", + "ItemClassesKey": 8, + "Width": 1, + "Height": 3, + "Name": "Вытягивающий жезл", + "DropLevel": 2, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13905, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1813, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Wands/FourWand4", + "ItemClassesKey": 8, + "Width": 1, + "Height": 3, + "Name": "Переливающий жезл", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13906, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1814, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Wands/FourWand5", + "ItemClassesKey": 8, + "Width": 1, + "Height": 3, + "Name": "Нестабильный жезл", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1049, + 1050, + 1051, + 1052 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13907, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1815, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Wands/FourWand6", + "ItemClassesKey": 8, + "Width": 1, + "Height": 3, + "Name": "Электризующий жезл", + "DropLevel": 25, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1048, + 1049, + 1051, + 1052 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13908, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1816, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Wands/FourWand7", + "ItemClassesKey": 8, + "Width": 1, + "Height": 3, + "Name": "Едкий жезл", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13909, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1817, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Wands/FourWand8", + "ItemClassesKey": 8, + "Width": 1, + "Height": 3, + "Name": "Жезл подношения", + "DropLevel": 38, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1048, + 1049, + 1050, + 1051 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13910, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1818, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Wands/FourWand9", + "ItemClassesKey": 8, + "Width": 1, + "Height": 3, + "Name": "Хладный жезл", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1048, + 1050, + 1051, + 1052 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13911, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1819, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Wands/FourWand10", + "ItemClassesKey": 8, + "Width": 1, + "Height": 3, + "Name": "Жезл мук", + "DropLevel": 49, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13912, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1820, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Wands/FourWand11", + "ItemClassesKey": 8, + "Width": 1, + "Height": 3, + "Name": "Острый жезл", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13913, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1821, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Wands/FourWand12", + "ItemClassesKey": 8, + "Width": 1, + "Height": 3, + "Name": "Первобытный жезл", + "DropLevel": 56, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1048, + 1049, + 1050, + 1052 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13914, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1822, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Wands/FourWand13", + "ItemClassesKey": 8, + "Width": 1, + "Height": 3, + "Name": "Дуэльный жезл", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13915, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1823, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourStaff1", + "ItemClassesKey": 14, + "Width": 1, + "Height": 4, + "Name": "Пепельный посох", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1049, + 1050, + 1051, + 1052 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13916, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1824, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourStaff2", + "ItemClassesKey": 14, + "Width": 1, + "Height": 4, + "Name": "Студёный посох", + "DropLevel": 2, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1048, + 1050, + 1051, + 1052 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13917, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1825, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourStaff3", + "ItemClassesKey": 14, + "Width": 1, + "Height": 4, + "Name": "Гальванический посох", + "DropLevel": 2, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1048, + 1049, + 1051, + 1052 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13918, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1826, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourStaff4", + "ItemClassesKey": 14, + "Width": 1, + "Height": 4, + "Name": "Посох сприггана", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13919, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1827, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourStaff5", + "ItemClassesKey": 14, + "Width": 1, + "Height": 4, + "Name": "Пирофитовый посох", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1049, + 1050, + 1051, + 1052 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13920, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1828, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourStaff6", + "ItemClassesKey": 14, + "Width": 1, + "Height": 4, + "Name": "Звенящий посох", + "DropLevel": 25, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13921, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1829, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourStaff7", + "ItemClassesKey": 14, + "Width": 1, + "Height": 4, + "Name": "Раздирающий посох", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1048, + 1049, + 1050, + 1052 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13922, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1830, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourStaff8", + "ItemClassesKey": 14, + "Width": 1, + "Height": 4, + "Name": "Пожинающий посох", + "DropLevel": 38, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1048, + 1049, + 1050, + 1051 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13923, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1831, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourStaff9", + "ItemClassesKey": 14, + "Width": 1, + "Height": 4, + "Name": "Посох сосулек", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1048, + 1050, + 1051, + 1052 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13924, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1832, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourStaff10", + "ItemClassesKey": 14, + "Width": 1, + "Height": 4, + "Name": "Ревущий посох", + "DropLevel": 49, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13925, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1833, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourStaff11", + "ItemClassesKey": 14, + "Width": 1, + "Height": 4, + "Name": "Парализующий посох", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1048, + 1049, + 1051, + 1052 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13926, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1834, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourStaff12", + "ItemClassesKey": 14, + "Width": 1, + "Height": 4, + "Name": "Посох служителя", + "DropLevel": 56, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13927, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1835, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourStaff13", + "ItemClassesKey": 14, + "Width": 1, + "Height": 4, + "Name": "Тёмный посох", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13928, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1836, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Bows/FourBow1", + "ItemClassesKey": 13, + "Width": 2, + "Height": 4, + "Name": "Грубый лук", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13929, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1837, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Bows/FourBow2", + "ItemClassesKey": 13, + "Width": 2, + "Height": 4, + "Name": "Короткий лук", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13930, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1838, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Bows/FourBow3", + "ItemClassesKey": 13, + "Width": 2, + "Height": 4, + "Name": "Лук часового", + "DropLevel": 11, + "Implicit_ModsKeys": [ + 1568 + ], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13931, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1839, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Bows/FourBow4", + "ItemClassesKey": 13, + "Width": 2, + "Height": 4, + "Name": "Загнутый лук", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13932, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1840, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Bows/FourBow5", + "ItemClassesKey": 13, + "Width": 2, + "Height": 4, + "Name": "Составной лук", + "DropLevel": 22, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13933, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1841, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Bows/FourBow6", + "ItemClassesKey": 13, + "Width": 2, + "Height": 4, + "Name": "Спаренный лук", + "DropLevel": 28, + "Implicit_ModsKeys": [ + 1569 + ], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13934, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1842, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Bows/FourBow7", + "ItemClassesKey": 13, + "Width": 2, + "Height": 4, + "Name": "Лук культиста", + "DropLevel": 33, + "Implicit_ModsKeys": [ + 1570 + ], + "TagsKeys": [ + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13935, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1843, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Bows/FourBow8", + "ItemClassesKey": 13, + "Width": 2, + "Height": 4, + "Name": "Лук фанатика", + "DropLevel": 39, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13936, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1844, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Bows/FourBow9", + "ItemClassesKey": 13, + "Width": 2, + "Height": 4, + "Name": "Артиллерийский лук", + "DropLevel": 45, + "Implicit_ModsKeys": [ + 1571 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13937, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1845, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Bows/FourBow10", + "ItemClassesKey": 13, + "Width": 2, + "Height": 4, + "Name": "Племенной лук", + "DropLevel": 50, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13938, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1846, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Bows/FourBow11", + "ItemClassesKey": 13, + "Width": 2, + "Height": 4, + "Name": "Большой лук", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13939, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1847, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Bows/FourBow12", + "ItemClassesKey": 13, + "Width": 2, + "Height": 4, + "Name": "Лук с двойными плечами", + "DropLevel": 56, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13940, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1848, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Bows/FourBow13", + "ItemClassesKey": 13, + "Width": 2, + "Height": 4, + "Name": "Тяжёлый лук", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13941, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1849, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Crossbows/FourCrossbow1", + "ItemClassesKey": 78, + "Width": 2, + "Height": 4, + "Name": "Самодельный самострел", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13942, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1850, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Crossbows/FourCrossbow2", + "ItemClassesKey": 78, + "Width": 2, + "Height": 4, + "Name": "Тугой самострел", + "DropLevel": 4, + "Implicit_ModsKeys": [ + 1572 + ], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13943, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1851, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Crossbows/FourCrossbow3", + "ItemClassesKey": 78, + "Width": 2, + "Height": 4, + "Name": "Прочный самострел", + "DropLevel": 10, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13944, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1852, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Crossbows/FourCrossbow4", + "ItemClassesKey": 78, + "Width": 2, + "Height": 4, + "Name": "Лакированный самострел", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13945, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1853, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Crossbows/FourCrossbow5", + "ItemClassesKey": 78, + "Width": 2, + "Height": 4, + "Name": "Парный самострел", + "DropLevel": 20, + "Implicit_ModsKeys": [ + 1573 + ], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13946, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1854, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Crossbows/FourCrossbow6", + "ItemClassesKey": 78, + "Width": 2, + "Height": 4, + "Name": "Металлический самострел", + "DropLevel": 26, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13947, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1855, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Crossbows/FourCrossbow7", + "ItemClassesKey": 78, + "Width": 2, + "Height": 4, + "Name": "Самострел бомбардира", + "DropLevel": 33, + "Implicit_ModsKeys": [ + 1574 + ], + "TagsKeys": [ + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13948, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1856, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Crossbows/FourCrossbow8", + "ItemClassesKey": 78, + "Width": 2, + "Height": 4, + "Name": "Самострел конструкта", + "DropLevel": 38, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13949, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1857, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Crossbows/FourCrossbow9", + "ItemClassesKey": 78, + "Width": 2, + "Height": 4, + "Name": "Самострел чёрного пламени", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13950, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1858, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Crossbows/FourCrossbow10", + "ItemClassesKey": 78, + "Width": 2, + "Height": 4, + "Name": "Пронзающий самострел", + "DropLevel": 48, + "Implicit_ModsKeys": [ + 1575 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13951, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1859, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Crossbows/FourCrossbow11", + "ItemClassesKey": 78, + "Width": 2, + "Height": 4, + "Name": "Тяжёлый самострел", + "DropLevel": 52, + "Implicit_ModsKeys": [ + 1576 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13952, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1860, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Crossbows/FourCrossbow12", + "ItemClassesKey": 78, + "Width": 2, + "Height": 4, + "Name": "Хитроумный самострел", + "DropLevel": 56, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13953, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1861, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Crossbows/FourCrossbow13", + "ItemClassesKey": 78, + "Width": 2, + "Height": 4, + "Name": "Тайный самострел", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13954, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1862, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Sceptres/FourSceptre1", + "ItemClassesKey": 32, + "Width": 2, + "Height": 3, + "Name": "Гремящий скипетр", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13955, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1863, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Sceptres/FourSceptre2", + "ItemClassesKey": 32, + "Width": 2, + "Height": 3, + "Name": "Скипетр стоика", + "DropLevel": 6, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13956, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1864, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Sceptres/FourSceptre3", + "ItemClassesKey": 32, + "Width": 2, + "Height": 3, + "Name": "Волчий скипетр", + "DropLevel": 12, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13957, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1865, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Sceptres/FourSceptre4", + "ItemClassesKey": 32, + "Width": 2, + "Height": 3, + "Name": "Скипетр предвестия", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13958, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1866, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Sceptres/FourSceptre5", + "ItemClassesKey": 32, + "Width": 2, + "Height": 3, + "Name": "Охристый скипетр", + "DropLevel": 21, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13959, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1867, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Sceptres/FourSceptre6a", + "ItemClassesKey": 32, + "Width": 2, + "Height": 3, + "Name": "Храмовый скипетр", + "DropLevel": 26, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13960, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1868, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Sceptres/FourSceptre6b", + "ItemClassesKey": 32, + "Width": 2, + "Height": 3, + "Name": "Храмовый скипетр", + "DropLevel": 26, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13961, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1869, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Sceptres/FourSceptre6c", + "ItemClassesKey": 32, + "Width": 2, + "Height": 3, + "Name": "Храмовый скипетр", + "DropLevel": 26, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13962, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1870, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Sceptres/FourSceptre7", + "ItemClassesKey": 32, + "Width": 2, + "Height": 3, + "Name": "Поглощающий скипетр", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13963, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1871, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Sceptres/FourSceptre8", + "ItemClassesKey": 32, + "Width": 2, + "Height": 3, + "Name": "Скипетр хватки", + "DropLevel": 36, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13964, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1872, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Sceptres/FourSceptre9", + "ItemClassesKey": 32, + "Width": 2, + "Height": 3, + "Name": "Скипетр служения", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13965, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1873, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Sceptres/FourSceptre10", + "ItemClassesKey": 32, + "Width": 2, + "Height": 3, + "Name": "Скипетр гнева", + "DropLevel": 49, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13966, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1874, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Sceptres/FourSceptre11", + "ItemClassesKey": 32, + "Width": 2, + "Height": 3, + "Name": "Скипетр благовоний", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13967, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1875, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Sceptres/FourSceptre12", + "ItemClassesKey": 32, + "Width": 2, + "Height": 3, + "Name": "Скипетр благочестия", + "DropLevel": 58, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13968, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1876, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Sceptres/FourSceptre13", + "ItemClassesKey": 32, + "Width": 2, + "Height": 3, + "Name": "Священный скипетр", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13969, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1877, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Traps/FourTrap1", + "ItemClassesKey": 96, + "Width": 2, + "Height": 2, + "Name": "Глиняная ловушка", + "DropLevel": 2, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13970, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1878, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Traps/FourTrap2", + "ItemClassesKey": 96, + "Width": 2, + "Height": 2, + "Name": "Ловушка-капкан", + "DropLevel": 6, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13971, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1879, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Traps/FourTrap3", + "ItemClassesKey": 96, + "Width": 1, + "Height": 3, + "Name": "Ловушка со шрапнелью", + "DropLevel": 10, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1880, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Traps/FourTrap4", + "ItemClassesKey": 96, + "Width": 2, + "Height": 2, + "Name": "Ловушка в кувшине", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13973, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1881, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Traps/FourTrap5", + "ItemClassesKey": 96, + "Width": 1, + "Height": 3, + "Name": "Ловушка в курительнице", + "DropLevel": 22, + "Implicit_ModsKeys": [ + 1577 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13974, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1882, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Traps/FourTrap6", + "ItemClassesKey": 96, + "Width": 2, + "Height": 2, + "Name": "Ловушка с лезвиями", + "DropLevel": 27, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13975, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1883, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Traps/FourTrap7", + "ItemClassesKey": 96, + "Width": 1, + "Height": 3, + "Name": "Ловушка с дротиками", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13976, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1884, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Traps/FourTrap8", + "ItemClassesKey": 96, + "Width": 2, + "Height": 2, + "Name": "Ловушка с клиньями", + "DropLevel": 38, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13977, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1885, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Traps/FourTrap9", + "ItemClassesKey": 96, + "Width": 1, + "Height": 3, + "Name": "Ловушка с катушкой", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13978, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1886, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Traps/FourTrap10", + "ItemClassesKey": 96, + "Width": 2, + "Height": 2, + "Name": "Свинцовая ловушка", + "DropLevel": 49, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13979, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1887, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Traps/FourTrap11", + "ItemClassesKey": 96, + "Width": 2, + "Height": 2, + "Name": "Розеточная ловушка", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13980, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1888, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Traps/FourTrap12", + "ItemClassesKey": 96, + "Width": 1, + "Height": 3, + "Name": "Затейливая ловушка", + "DropLevel": 56, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13981, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1889, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Traps/FourTrap13", + "ItemClassesKey": 96, + "Width": 2, + "Height": 2, + "Name": "Утончённая ловушка", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13982, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1890, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStr1", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Ржавая кираса", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13986, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1891, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStr2", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Меховой доспех", + "DropLevel": 4, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13987, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1892, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStr3", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Железная кираса", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13988, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1893, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStr4", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Рейдерский нагрудник", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13989, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1894, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStr5", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Маракетская кираса", + "DropLevel": 20, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13990, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1895, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStr6", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Стальной доспех", + "DropLevel": 27, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13991, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1896, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStr7", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Полные латы", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13992, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1897, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStr8", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Нагрудник ваал", + "DropLevel": 37, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13993, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1898, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStr9", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Доспех покорителя", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13994, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1899, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStr10", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Доспех вождя", + "DropLevel": 50, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13995, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1900, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStr11", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Доспех поединщика", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13996, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1901, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStr12", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Доспех чемпиона", + "DropLevel": 58, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13997, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1902, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStr13", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Великолепные латы", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13998, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1903, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStr14", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Доспех завоевателя", + "DropLevel": 68, + "Implicit_ModsKeys": [ + 1516 + ], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13999, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1904, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStr15", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Доспех кромешной тьмы", + "DropLevel": 73, + "Implicit_ModsKeys": [ + 1517 + ], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14000, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1905, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDex1", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Кожаный жилет", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14001, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1906, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDex2", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Стёганый жилет", + "DropLevel": 4, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14002, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1907, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDex3", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Куртка следопыта", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14003, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1908, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDex4", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Плотная кожанка", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14004, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1909, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDex5", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Доспех из шкур роа", + "DropLevel": 22, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14005, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1910, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDex6", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Клёпаный нагрудник", + "DropLevel": 26, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14006, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1911, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDex7", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Безрукавка разведчика", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14007, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1912, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDex8", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Доспех из змеиной чешуи", + "DropLevel": 36, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14008, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1913, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDex9", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Жилет корсара", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14009, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1914, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDex10", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Куртка контрабандиста", + "DropLevel": 48, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14010, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1915, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDex11", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Жилет наездника", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14011, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1916, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDex12", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Куртка из грубой кожи", + "DropLevel": 56, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14012, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1917, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDex13", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Изысканный нагрудник", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14013, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1918, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDex14", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Кольчужная куртка", + "DropLevel": 68, + "Implicit_ModsKeys": [ + 1519 + ], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14014, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1919, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDex15", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Бригантный доспех", + "DropLevel": 73, + "Implicit_ModsKeys": [ + 1518 + ], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14015, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1920, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyInt1", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Рваное платье", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14016, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1921, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyInt2", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Наряд из перьев", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14017, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1922, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyInt3", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Ведьмино облачение", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14018, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1923, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyInt4", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Костяное облачение", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14019, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1924, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyInt5", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Шёлковое платье", + "DropLevel": 22, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14020, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1925, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyInt6", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Кетское одеяние", + "DropLevel": 28, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14021, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1926, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyInt7", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Обетное одеяние", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14022, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1927, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyInt8", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Церемониальное одеяние", + "DropLevel": 40, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14023, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1928, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyInt9", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Камзол мага стихий", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14024, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1929, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyInt10", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Наряд мистика", + "DropLevel": 47, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14025, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1930, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyInt11", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Имперское одеяние", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14026, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1931, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyInt12", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Окованное одеяние", + "DropLevel": 58, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14027, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1932, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyInt13", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Одежды хаоса", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14028, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1933, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyInt14", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Наряд просвещённого", + "DropLevel": 68, + "Implicit_ModsKeys": [ + 1521 + ], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14029, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1934, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyInt15", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Колдовские одежды", + "DropLevel": 73, + "Implicit_ModsKeys": [ + 1520 + ], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14030, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1935, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrDex1", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Кольчуга", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14031, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1936, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrDex2", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Доспех изгоя", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14032, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1937, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrDex3", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Доспех бродяги", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14033, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1938, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrDex4", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Доспех с кольцами", + "DropLevel": 26, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14034, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1939, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrDex5", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Броня исследователя", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14035, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1940, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrDex6", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Чешуйчатый доспех", + "DropLevel": 37, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14036, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1941, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrDex7", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Рыцарский доспех", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14037, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1942, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrDex8", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Фамильный доспех", + "DropLevel": 50, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14038, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1943, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrDex9", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Ламеллярный доспех", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14039, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1944, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrDex10", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Броня гладиатора", + "DropLevel": 58, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14040, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1945, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrDex11", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Доспех героя", + "DropLevel": 65, + "Implicit_ModsKeys": [ + 1522 + ], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14041, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1946, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrDex12a", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Турнирный доспех", + "DropLevel": 68, + "Implicit_ModsKeys": [ + 1523 + ], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14042, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1947, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrDex12b", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Турнирный доспех", + "DropLevel": 68, + "Implicit_ModsKeys": [ + 1524 + ], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14042, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1948, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrDex12c", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Турнирный доспех", + "DropLevel": 68, + "Implicit_ModsKeys": [ + 1525 + ], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14042, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1949, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrDex13", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Доспех рубаки", + "DropLevel": 73, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14043, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1950, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrInt1", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Облачение пилигрима", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14044, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1951, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrInt2", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Покров из шкур", + "DropLevel": 10, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14045, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1952, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrInt3", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Кольчужное одеяние", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14046, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1953, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrInt4", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Наряд шамана", + "DropLevel": 28, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14047, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1954, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrInt5", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Ратное облачение", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14048, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1955, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrInt6", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Жертвенная мантия", + "DropLevel": 36, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14049, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1956, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrInt7", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Одеяние клирика", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14050, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1957, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrInt8", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Наряд провидца волн", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14051, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1958, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrInt9", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Золочёное облачение", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14052, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1959, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrInt10", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Мантия почёта", + "DropLevel": 54, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14053, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1960, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrInt11", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Одеяние досточтимого", + "DropLevel": 65, + "Implicit_ModsKeys": [ + 1526 + ], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14054, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1961, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrInt12", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Вороново облачение", + "DropLevel": 68, + "Implicit_ModsKeys": [ + 1527 + ], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14055, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1962, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrInt13", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Одеяние зенита", + "DropLevel": 73, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14056, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1963, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDexInt1", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Наряд отшельника", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14057, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1964, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDexInt2", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Вощёный плащ", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14058, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1965, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDexInt3", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Костюм марабута", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14059, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1966, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDexInt4", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Плащ путника", + "DropLevel": 28, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14060, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1967, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDexInt5", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Одеяние анахорета", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14061, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1968, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDexInt6", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Накидка спекулянта", + "DropLevel": 39, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14062, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1969, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDexInt7", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Плащ пройдохи", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14063, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1970, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDexInt8", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Одеяние аскета", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14064, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1971, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDexInt9", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Плащ подпольщика", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14065, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1972, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDexInt10", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Монастырское одеяние", + "DropLevel": 56, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14066, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1973, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDexInt11", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Плащ мучителя", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14067, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1974, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDexInt12", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Одеяние праведника", + "DropLevel": 68, + "Implicit_ModsKeys": [ + 1528 + ], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14068, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1975, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDexInt13", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Облачение убийцы", + "DropLevel": 73, + "Implicit_ModsKeys": [ + 1529 + ], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14069, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1976, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStr1", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Ржавый большой шлем", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14070, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1977, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStr2", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Большой шлем солдата", + "DropLevel": 12, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14071, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1978, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStr3", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Обмотанный большой шлем", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14072, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1979, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStr4", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Остроконечный большой шлем", + "DropLevel": 27, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14073, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1980, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStr5", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Большой шлем элиты", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14074, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1981, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStr6", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Большой шлем воина", + "DropLevel": 36, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14075, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1982, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStr7", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Большой шлем командира", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14076, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1983, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStr8", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Свирепый большой шлем", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14077, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1984, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStr9", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Большой шлем поединщика", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14078, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1985, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStr10", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Большой шлем голиафа", + "DropLevel": 57, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14079, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1986, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStr11", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Большой шлем стража", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14080, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1987, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDex1", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Потрёпанный капюшон", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14081, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1988, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDex2", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Войлочная шляпа", + "DropLevel": 10, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14082, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1989, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDex3", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Вышитый капюшон", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14083, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1990, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDex4", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Капюшон с куфией", + "DropLevel": 26, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14084, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1991, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDex5", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Капюшон охотника", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14085, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1992, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDex6", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Голова гадюки", + "DropLevel": 38, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14086, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1993, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDex7", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Треуголка корсара", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14087, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1994, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDex8", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Кожаный капюшон", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14088, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1995, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDex9", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Бархатная шляпа", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14089, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1996, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDex10", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Капюшон агента", + "DropLevel": 56, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14090, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1997, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDex11", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Защитный капюшон", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14091, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1998, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetInt1", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Венок из ветвей", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14092, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 1999, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetInt2", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Тиара из прутьев", + "DropLevel": 10, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14093, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2000, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetInt3", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Обруч с чётками", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14094, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2001, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetInt4", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Цепная тиара", + "DropLevel": 26, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14095, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2002, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetInt5", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Тиара с перьями", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14096, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2003, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetInt6", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Венец из золота", + "DropLevel": 40, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14097, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2004, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetInt7", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Коралловый обруч", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14098, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2005, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetInt8", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Нефритовая тиара", + "DropLevel": 50, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14099, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2006, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetInt9", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Венец аристократа", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14100, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2007, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetInt10", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Сумеречная тиара", + "DropLevel": 58, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14101, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2008, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetInt11", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Тиара волшебника", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14102, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2009, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrDex1", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Шлем с полями", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14103, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2010, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrDex2", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Шлем с забралом", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14104, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2011, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrDex3", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Шлем с козырьком", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14105, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2012, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrDex4", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Шлем с капюшоном", + "DropLevel": 26, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14106, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2013, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrDex5", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Шлем с горжетом", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14107, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2014, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrDex6", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Закрытый шлем", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14108, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2015, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrDex7", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Украшенный шлем", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14109, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2016, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrDex8", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Gallant Helm", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14110, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2017, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrInt1", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Железная корона", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14111, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2018, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrInt2", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Корона с рогами", + "DropLevel": 10, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14112, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2019, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrInt3", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Корона культиста", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14113, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2020, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrInt4", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Корона мученика", + "DropLevel": 28, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14114, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2021, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrInt5", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Тяжёлая корона", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14115, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2022, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrInt6", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Корона из костей духа", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14116, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2023, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrInt7", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Богатая корона", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14117, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2024, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrInt8", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Корона храмовника", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14118, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2025, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDexInt1", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Обтёсанная маска", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14119, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2026, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDexInt2", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Лицевая маска", + "DropLevel": 10, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14120, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2027, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDexInt3", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Маска с капюшоном", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14121, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2028, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDexInt4", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Маска с вуалью", + "DropLevel": 28, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14122, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2029, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDexInt5", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Племенная маска", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14123, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2030, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDexInt6", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Цельная маска", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14124, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2031, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDexInt7", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Маска тени", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14125, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2032, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDexInt8", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Маска смерти", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14126, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2033, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStr1", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Толстые рукавицы", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14127, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2034, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStr2", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Клёпаные рукавицы", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14128, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2035, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStr3", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Закалённые рукавицы", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14129, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2036, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStr4", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Укреплённые рукавицы", + "DropLevel": 27, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14130, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2037, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStr5", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Литые рукавицы", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14131, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2038, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStr6", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Украшенные рукавицы", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14132, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2039, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStr7", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Рукавицы титана", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14133, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2040, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStr8", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Grand Mitts", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14134, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2041, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesDex1", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Замшевые наручи", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14135, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2042, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesDex2", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Плотные наручи", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14136, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2043, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesDex3", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Обмотанные наручи", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14137, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2044, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesDex4", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Сегментные наручи", + "DropLevel": 28, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14138, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2045, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesDex5", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Шипастые наручи", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14139, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2046, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesDex6", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Искусные наручи", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14140, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2047, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesDex7", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Жёсткие наручи", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14141, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2048, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesDex8", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Резные наручи", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14142, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2049, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesInt1", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Рваные перчатки", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14143, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2050, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesInt2", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Тёмные перчатки", + "DropLevel": 12, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14144, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2051, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesInt3", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Сшитые перчатки", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14145, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2052, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesInt4", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Инкрустированные перчатки", + "DropLevel": 26, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14146, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2053, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesInt5", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Затейливые перчатки", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14147, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2054, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesInt6", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Перчатки с перламутром", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14148, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2055, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesInt7", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Расшитые перчатки", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14149, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2056, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesInt8", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Украшенные перчатки", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14150, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2057, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStrDex1", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Кольчужные перчатки", + "DropLevel": 6, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14151, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2058, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStrDex2", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Пластинчатые перчатки", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14152, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2059, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStrDex3", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Двухслойные перчатки", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14153, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2060, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStrDex4", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Латные перчатки", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14154, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2061, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStrDex5", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Полированные перчатки", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14155, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2062, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStrDex6", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Изысканные перчатки", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14156, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2063, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStrInt1", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Верёвочные манжеты", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14157, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2064, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStrInt2", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Старинные манжеты", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14158, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2065, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStrInt3", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Золотые манжеты", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14159, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2066, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStrInt4", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Манжеты предсказателя", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14160, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2067, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStrInt5", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Манжеты праведника", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14161, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2068, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStrInt6", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Манжеты с печаткой", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14162, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2069, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesDexInt1", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Обмотки из муслина", + "DropLevel": 4, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14163, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2070, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesDexInt2", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Льняные обмотки", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14164, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2071, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesDexInt3", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Витые обмотки", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14165, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2072, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesDexInt4", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Обмотки с пряжками", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14166, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2073, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesDexInt5", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Furtive Wraps", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14167, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2074, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesDexInt6", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Практичные обмотки", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14168, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2075, + "Id": "Metadata/Items/Armours/Boots/FourBootsStr1", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Грубые поножи", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14169, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2076, + "Id": "Metadata/Items/Armours/Boots/FourBootsStr2", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Железные поножи", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14170, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2077, + "Id": "Metadata/Items/Armours/Boots/FourBootsStr3", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Бронзовые поножи", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14171, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2078, + "Id": "Metadata/Items/Armours/Boots/FourBootsStr4", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Подогнанные поножи", + "DropLevel": 27, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14172, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2079, + "Id": "Metadata/Items/Armours/Boots/FourBootsStr5", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Каменные поножи", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14173, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2080, + "Id": "Metadata/Items/Armours/Boots/FourBootsStr6", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Стальные рифлёные поножи", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14174, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2081, + "Id": "Metadata/Items/Armours/Boots/FourBootsStr7", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Монументальные поножи", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14175, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2082, + "Id": "Metadata/Items/Armours/Boots/FourBootsStr8", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Тотемные поножи", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14176, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2083, + "Id": "Metadata/Items/Armours/Boots/FourBootsDex1", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Сыромятные сапоги", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14177, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2084, + "Id": "Metadata/Items/Armours/Boots/FourBootsDex2", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Сапоги с тесьмой", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14178, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2085, + "Id": "Metadata/Items/Armours/Boots/FourBootsDex3", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Тиснёные сапоги", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14179, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2086, + "Id": "Metadata/Items/Armours/Boots/FourBootsDex4", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Сапоги со стальным носком", + "DropLevel": 28, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14180, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2087, + "Id": "Metadata/Items/Armours/Boots/FourBootsDex5", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Сапоги из кожи ящера", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14181, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2088, + "Id": "Metadata/Items/Armours/Boots/FourBootsDex6", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Ботфорты", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14182, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2089, + "Id": "Metadata/Items/Armours/Boots/FourBootsDex7", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Сапоги с кожаными пластинами", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14183, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2090, + "Id": "Metadata/Items/Armours/Boots/FourBootsDex8", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Расшитые сапоги", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14184, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2091, + "Id": "Metadata/Items/Armours/Boots/FourBootsInt1", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Соломенные сандалии", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14185, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2092, + "Id": "Metadata/Items/Armours/Boots/FourBootsInt2", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Cандалии с обмотками", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14186, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2093, + "Id": "Metadata/Items/Armours/Boots/FourBootsInt3", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Сетчатые сандалии", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14187, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2094, + "Id": "Metadata/Items/Armours/Boots/FourBootsInt4", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Шёлковые тапочки", + "DropLevel": 27, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14188, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2095, + "Id": "Metadata/Items/Armours/Boots/FourBootsInt5", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Пернатые сандалии", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14189, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2096, + "Id": "Metadata/Items/Armours/Boots/FourBootsInt6", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Льняные сандалии", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14190, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2097, + "Id": "Metadata/Items/Armours/Boots/FourBootsInt7", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Клёпаные сандалии", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14191, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2098, + "Id": "Metadata/Items/Armours/Boots/FourBootsInt8", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Искусные сандалии", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14192, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2099, + "Id": "Metadata/Items/Armours/Boots/FourBootsStrDex1", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Кольчужные сабатоны", + "DropLevel": 6, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14193, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2100, + "Id": "Metadata/Items/Armours/Boots/FourBootsStrDex2", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Сабатоны с ремнями", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14194, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2101, + "Id": "Metadata/Items/Armours/Boots/FourBootsStrDex3", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Пластинчатые сабатоны", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14195, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2102, + "Id": "Metadata/Items/Armours/Boots/FourBootsStrDex4", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Сплошные сабатоны", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14196, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2103, + "Id": "Metadata/Items/Armours/Boots/FourBootsStrDex5", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Гибкие сабатоны", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14197, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2104, + "Id": "Metadata/Items/Armours/Boots/FourBootsStrDex6", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Тяжёлые сабатоны", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14198, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2105, + "Id": "Metadata/Items/Armours/Boots/FourBootsStrInt1", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Ватные сапоги", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14199, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2106, + "Id": "Metadata/Items/Armours/Boots/FourBootsStrInt2", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Меховые сапоги", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14200, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2107, + "Id": "Metadata/Items/Armours/Boots/FourBootsStrInt3", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Сапоги из шкур", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14201, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2108, + "Id": "Metadata/Items/Armours/Boots/FourBootsStrInt4", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Плетёные сапоги", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14202, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2109, + "Id": "Metadata/Items/Armours/Boots/FourBootsStrInt5", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Позолоченные сапоги", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14203, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2110, + "Id": "Metadata/Items/Armours/Boots/FourBootsStrInt6", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Сапоги праведника", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14204, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2111, + "Id": "Metadata/Items/Armours/Boots/FourBootsDexInt1", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Потёртые ботинки", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14205, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2112, + "Id": "Metadata/Items/Armours/Boots/FourBootsDexInt2", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Прошитые ботинки", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14206, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2113, + "Id": "Metadata/Items/Armours/Boots/FourBootsDexInt3", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Охотничьи ботинки", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14207, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2114, + "Id": "Metadata/Items/Armours/Boots/FourBootsDexInt4", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Ботинки со стальным носком", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14208, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2115, + "Id": "Metadata/Items/Armours/Boots/FourBootsDexInt5", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Бархатные ботинки", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14209, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2116, + "Id": "Metadata/Items/Armours/Boots/FourBootsDexInt6", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Bladed Shoes", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14210, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2117, + "Id": "Metadata/Items/Armours/Shields/FourShieldStr1", + "ItemClassesKey": 26, + "Width": 2, + "Height": 4, + "Name": "Обшарпанный ростовой щит", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 226, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14211, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2118, + "Id": "Metadata/Items/Armours/Shields/FourShieldStr2", + "ItemClassesKey": 26, + "Width": 2, + "Height": 4, + "Name": "Расписной ростовой щит", + "DropLevel": 6, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 226, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14212, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2119, + "Id": "Metadata/Items/Armours/Shields/FourShieldStr3", + "ItemClassesKey": 26, + "Width": 2, + "Height": 4, + "Name": "Окованный ростовой щит", + "DropLevel": 12, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 226, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14213, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2120, + "Id": "Metadata/Items/Armours/Shields/FourShieldStr4", + "ItemClassesKey": 26, + "Width": 2, + "Height": 4, + "Name": "Баррикадный ростовой щит", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 226, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14214, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2121, + "Id": "Metadata/Items/Armours/Shields/FourShieldStr5", + "ItemClassesKey": 26, + "Width": 2, + "Height": 4, + "Name": "Тотемный ростовой щит", + "DropLevel": 21, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 226, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14215, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2122, + "Id": "Metadata/Items/Armours/Shields/FourShieldStr6", + "ItemClassesKey": 26, + "Width": 2, + "Height": 4, + "Name": "Крепостной ростовой щит", + "DropLevel": 28, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 226, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14216, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2123, + "Id": "Metadata/Items/Armours/Shields/FourShieldStr7", + "ItemClassesKey": 26, + "Width": 2, + "Height": 4, + "Name": "Геральдический ростовой щит", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 226, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14217, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2124, + "Id": "Metadata/Items/Armours/Shields/FourShieldStr8", + "ItemClassesKey": 26, + "Width": 2, + "Height": 4, + "Name": "Каменный ростовой щит", + "DropLevel": 36, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 226, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14218, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2125, + "Id": "Metadata/Items/Armours/Shields/FourShieldStr9", + "ItemClassesKey": 26, + "Width": 2, + "Height": 4, + "Name": "Закалённый ростовой щит", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 226 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14219, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2126, + "Id": "Metadata/Items/Armours/Shields/FourShieldStr10", + "ItemClassesKey": 26, + "Width": 2, + "Height": 4, + "Name": "Ростовой щит предков", + "DropLevel": 50, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 226 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14220, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2127, + "Id": "Metadata/Items/Armours/Shields/FourShieldStr11", + "ItemClassesKey": 26, + "Width": 2, + "Height": 4, + "Name": "Ростовой щит фаланги", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 226 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14221, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2128, + "Id": "Metadata/Items/Armours/Shields/FourShieldStr12", + "ItemClassesKey": 26, + "Width": 2, + "Height": 4, + "Name": "Непокорный ростовой щит", + "DropLevel": 58, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 226 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14222, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2129, + "Id": "Metadata/Items/Armours/Shields/FourShieldStr13", + "ItemClassesKey": 26, + "Width": 2, + "Height": 4, + "Name": "Ростовой щит из чёрной стали", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 226 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14223, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2130, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrDex1", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Тарджет из твёрдой древесины", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 228, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14224, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2131, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrDex2", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Отделанный мехом тарджет", + "DropLevel": 8, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 228, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14225, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2132, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrDex3", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Тарджет с заклёпками", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 228, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14226, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2133, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrDex4", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Тарджет с полумесяцем", + "DropLevel": 26, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 228, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14227, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2134, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrDex5", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Рельефный тарджет", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 228, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14228, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2135, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrDex6", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Украшенный перьями тарджет", + "DropLevel": 37, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 228, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14229, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2136, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrDex7", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Многослойный тарджет", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 228 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14230, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2137, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrDex8", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Резной тарджет", + "DropLevel": 47, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 228 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14231, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2138, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrDex9", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Мозаичный тарджет", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 228 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14232, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2139, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrDex10", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Золочёный тарджет", + "DropLevel": 57, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 228 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14233, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2140, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrDex11", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Великолепный тарджет", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 228 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14234, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2141, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrInt1", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Крашеный гербовый щит", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 229, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14235, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2142, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrInt2", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Гербовый щит с символикой", + "DropLevel": 7, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 229, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14236, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2143, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrInt3", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Гербовый щит с эмблемой", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 229, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14237, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2144, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrInt4", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Звенящий гербовый щит", + "DropLevel": 28, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 229, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14238, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2145, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrInt5", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Гербовый щит сектанта", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 229, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14239, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2146, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrInt6", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Гербовый щит знамения", + "DropLevel": 36, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 229, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14240, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2147, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrInt7", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Неуступчивый гербовый щит", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 229 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14241, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2148, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrInt8", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Гербовый щит провидца", + "DropLevel": 49, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 229 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14242, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2149, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrInt9", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Гербовый щит стоика", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 229 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14243, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2150, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrInt10", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Небесный гербовый щит", + "DropLevel": 57, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 229 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14244, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2151, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrInt11", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Гербовый щит божества", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 229 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14245, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2152, + "Id": "Metadata/Items/Armours/Shields/FourShieldDex1", + "ItemClassesKey": 26, + "Width": 2, + "Height": 2, + "Name": "Кожаный баклер", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 227, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14246, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2153, + "Id": "Metadata/Items/Armours/Shields/FourShieldDex2", + "ItemClassesKey": 26, + "Width": 2, + "Height": 2, + "Name": "Деревянный баклер", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 227, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14247, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2154, + "Id": "Metadata/Items/Armours/Shields/FourShieldDex3", + "ItemClassesKey": 26, + "Width": 2, + "Height": 2, + "Name": "Облицованный баклер", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 227, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14248, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2155, + "Id": "Metadata/Items/Armours/Shields/FourShieldDex4", + "ItemClassesKey": 26, + "Width": 2, + "Height": 2, + "Name": "Железный баклер", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 227, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14249, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2156, + "Id": "Metadata/Items/Armours/Shields/FourShieldDex5", + "ItemClassesKey": 26, + "Width": 2, + "Height": 2, + "Name": "Ребристый баклер", + "DropLevel": 22, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 227, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14250, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2157, + "Id": "Metadata/Items/Armours/Shields/FourShieldDex6", + "ItemClassesKey": 26, + "Width": 2, + "Height": 2, + "Name": "Баклер с шипом", + "DropLevel": 26, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 227, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14251, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2158, + "Id": "Metadata/Items/Armours/Shields/FourShieldDex7", + "ItemClassesKey": 26, + "Width": 2, + "Height": 2, + "Name": "Баклер с кольцами", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 227, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14252, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2159, + "Id": "Metadata/Items/Armours/Shields/FourShieldDex8", + "ItemClassesKey": 26, + "Width": 2, + "Height": 2, + "Name": "Баклер с остриём", + "DropLevel": 39, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 227, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14253, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2160, + "Id": "Metadata/Items/Armours/Shields/FourShieldDex9", + "ItemClassesKey": 26, + "Width": 2, + "Height": 2, + "Name": "Витой баклер", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 227 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14254, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2161, + "Id": "Metadata/Items/Armours/Shields/FourShieldDex10", + "ItemClassesKey": 26, + "Width": 2, + "Height": 2, + "Name": "Перламутровый баклер", + "DropLevel": 48, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 227 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14255, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2162, + "Id": "Metadata/Items/Armours/Shields/FourShieldDex11", + "ItemClassesKey": 26, + "Width": 2, + "Height": 2, + "Name": "Украшенный баклер", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 227 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14256, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2163, + "Id": "Metadata/Items/Armours/Shields/FourShieldDex12", + "ItemClassesKey": 26, + "Width": 2, + "Height": 2, + "Name": "Колющий баклер", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 227 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14257, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2164, + "Id": "Metadata/Items/Armours/Shields/FourShieldDex13", + "ItemClassesKey": 26, + "Width": 2, + "Height": 2, + "Name": "Баклер эгиды", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 227 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14258, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2165, + "Id": "Metadata/Items/Armours/Focii/FourFocus1", + "ItemClassesKey": 79, + "Width": 2, + "Height": 3, + "Name": "Фокус из веток", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14259, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2166, + "Id": "Metadata/Items/Armours/Focii/FourFocus2", + "ItemClassesKey": 79, + "Width": 2, + "Height": 3, + "Name": "Плетёный фокус", + "DropLevel": 6, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14260, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2167, + "Id": "Metadata/Items/Armours/Focii/FourFocus3", + "ItemClassesKey": 79, + "Width": 2, + "Height": 3, + "Name": "Фокус из рогов", + "DropLevel": 10, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1075 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14261, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2168, + "Id": "Metadata/Items/Armours/Focii/FourFocus4", + "ItemClassesKey": 79, + "Width": 2, + "Height": 3, + "Name": "Резной фокус", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14262, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2169, + "Id": "Metadata/Items/Armours/Focii/FourFocus5", + "ItemClassesKey": 79, + "Width": 2, + "Height": 3, + "Name": "Звенящий фокус", + "DropLevel": 22, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14263, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2170, + "Id": "Metadata/Items/Armours/Focii/FourFocus6", + "ItemClassesKey": 79, + "Width": 2, + "Height": 3, + "Name": "Кристальный фокус", + "DropLevel": 26, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1076 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14264, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2171, + "Id": "Metadata/Items/Armours/Focii/FourFocus7", + "ItemClassesKey": 79, + "Width": 2, + "Height": 3, + "Name": "Фокус вуду", + "DropLevel": 33, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14265, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2172, + "Id": "Metadata/Items/Armours/Focii/FourFocus8", + "ItemClassesKey": 79, + "Width": 2, + "Height": 3, + "Name": "Павлиний фокус", + "DropLevel": 36, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 1077 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14266, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2173, + "Id": "Metadata/Items/Armours/Focii/FourFocus9", + "ItemClassesKey": 79, + "Width": 2, + "Height": 3, + "Name": "Нефритовый фокус", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14267, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2174, + "Id": "Metadata/Items/Armours/Focii/FourFocus10", + "ItemClassesKey": 79, + "Width": 2, + "Height": 3, + "Name": "Фокус из ракушек", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14268, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2175, + "Id": "Metadata/Items/Armours/Focii/FourFocus11", + "ItemClassesKey": 79, + "Width": 2, + "Height": 3, + "Name": "Изящный фокус", + "DropLevel": 52, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14269, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2176, + "Id": "Metadata/Items/Armours/Focii/FourFocus12", + "ItemClassesKey": 79, + "Width": 2, + "Height": 3, + "Name": "Гармоничный фокус", + "DropLevel": 57, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14270, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2177, + "Id": "Metadata/Items/Armours/Focii/FourFocus13", + "ItemClassesKey": 79, + "Width": 2, + "Height": 3, + "Name": "Фокус волшебника", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14271, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2178, + "Id": "Metadata/Items/Quivers/FourQuiver1", + "ItemClassesKey": 20, + "Width": 2, + "Height": 3, + "Name": "Колчан охотничьих стрел", + "DropLevel": 1, + "Implicit_ModsKeys": [ + 1460 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14272, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2179, + "Id": "Metadata/Items/Quivers/FourQuiver2", + "ItemClassesKey": 20, + "Width": 2, + "Height": 3, + "Name": "Колчан огненных стрел", + "DropLevel": 8, + "Implicit_ModsKeys": [ + 1461 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14273, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2180, + "Id": "Metadata/Items/Quivers/FourQuiver3", + "ItemClassesKey": 20, + "Width": 2, + "Height": 3, + "Name": "Колчан освящённых стрел", + "DropLevel": 16, + "Implicit_ModsKeys": [ + 1462 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14274, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2181, + "Id": "Metadata/Items/Quivers/FourQuiver4", + "ItemClassesKey": 20, + "Width": 2, + "Height": 3, + "Name": "Колчан двуглавых стрел", + "DropLevel": 24, + "Implicit_ModsKeys": [ + 1463 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14275, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2182, + "Id": "Metadata/Items/Quivers/FourQuiver5", + "ItemClassesKey": 20, + "Width": 2, + "Height": 3, + "Name": "Колчан затупленных стрел", + "DropLevel": 33, + "Implicit_ModsKeys": [ + 1464 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14276, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2183, + "Id": "Metadata/Items/Quivers/FourQuiver6", + "ItemClassesKey": 20, + "Width": 2, + "Height": 3, + "Name": "Колчан отравленных стрел", + "DropLevel": 39, + "Implicit_ModsKeys": [ + 1465 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14277, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2184, + "Id": "Metadata/Items/Quivers/FourQuiver7", + "ItemClassesKey": 20, + "Width": 2, + "Height": 3, + "Name": "Колчан зазубренных стрел", + "DropLevel": 44, + "Implicit_ModsKeys": [ + 1466 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14278, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2185, + "Id": "Metadata/Items/Quivers/FourQuiver8", + "ItemClassesKey": 20, + "Width": 2, + "Height": 3, + "Name": "Колчан боевых стрел", + "DropLevel": 51, + "Implicit_ModsKeys": [ + 1467 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14279, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2186, + "Id": "Metadata/Items/Quivers/FourQuiver9", + "ItemClassesKey": 20, + "Width": 2, + "Height": 3, + "Name": "Колчан пронзающих стрел", + "DropLevel": 55, + "Implicit_ModsKeys": [ + 1468 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14280, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2187, + "Id": "Metadata/Items/Quivers/FourQuiver10", + "ItemClassesKey": 20, + "Width": 2, + "Height": 3, + "Name": "Колчан крылатых стрел", + "DropLevel": 61, + "Implicit_ModsKeys": [ + 1469 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14281, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2188, + "Id": "Metadata/Items/Quivers/FourQuiver11", + "ItemClassesKey": 20, + "Width": 2, + "Height": 3, + "Name": "Колчан жестоких стрел", + "DropLevel": 65, + "Implicit_ModsKeys": [ + 1470 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14282, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2189, + "Id": "Metadata/Items/Amulets/FourAmulet1", + "ItemClassesKey": 4, + "Width": 1, + "Height": 1, + "Name": "Алый амулет", + "DropLevel": 1, + "Implicit_ModsKeys": [ + 1471 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14294, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2190, + "Id": "Metadata/Items/Amulets/FourAmulet2", + "ItemClassesKey": 4, + "Width": 1, + "Height": 1, + "Name": "Лазурный амулет", + "DropLevel": 1, + "Implicit_ModsKeys": [ + 1472 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14295, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2191, + "Id": "Metadata/Items/Amulets/FourAmulet3", + "ItemClassesKey": 4, + "Width": 1, + "Height": 1, + "Name": "Амулет с янтарём", + "DropLevel": 8, + "Implicit_ModsKeys": [ + 1473 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14296, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2192, + "Id": "Metadata/Items/Amulets/FourAmulet4", + "ItemClassesKey": 4, + "Width": 1, + "Height": 1, + "Name": "Амулет с нефритом", + "DropLevel": 8, + "Implicit_ModsKeys": [ + 1474 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14297, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2193, + "Id": "Metadata/Items/Amulets/FourAmulet5", + "ItemClassesKey": 4, + "Width": 1, + "Height": 1, + "Name": "Амулет с лазуритом", + "DropLevel": 8, + "Implicit_ModsKeys": [ + 1475 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14298, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2194, + "Id": "Metadata/Items/Amulets/FourAmulet6", + "ItemClassesKey": 4, + "Width": 1, + "Height": 1, + "Name": "Лунный амулет", + "DropLevel": 14, + "Implicit_ModsKeys": [ + 1476 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14299, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2195, + "Id": "Metadata/Items/Amulets/FourAmulet7", + "ItemClassesKey": 4, + "Width": 1, + "Height": 1, + "Name": "Амулет с кровавым камнем", + "DropLevel": 18, + "Implicit_ModsKeys": [ + 1477 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14300, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2196, + "Id": "Metadata/Items/Amulets/FourAmulet8", + "ItemClassesKey": 4, + "Width": 1, + "Height": 1, + "Name": "Звёздный амулет", + "DropLevel": 25, + "Implicit_ModsKeys": [ + 1478 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14301, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2197, + "Id": "Metadata/Items/Amulets/FourAmulet9", + "ItemClassesKey": 4, + "Width": 1, + "Height": 1, + "Name": "Солнечный амулет", + "DropLevel": 30, + "Implicit_ModsKeys": [ + 1479 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14302, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2198, + "Id": "Metadata/Items/Amulets/FourAmulet10", + "ItemClassesKey": 4, + "Width": 1, + "Height": 1, + "Name": "Золотой амулет", + "DropLevel": 35, + "Implicit_ModsKeys": [ + 1480 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14303, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2199, + "Id": "Metadata/Items/Rings/FourRing1", + "ItemClassesKey": 5, + "Width": 1, + "Height": 1, + "Name": "Железное кольцо", + "DropLevel": 1, + "Implicit_ModsKeys": [ + 1481 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14304, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2200, + "Id": "Metadata/Items/Rings/FourRing2", + "ItemClassesKey": 5, + "Width": 1, + "Height": 1, + "Name": "Кольцо с лазуритом", + "DropLevel": 1, + "Implicit_ModsKeys": [ + 1482 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14305, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2201, + "Id": "Metadata/Items/Rings/FourRing3", + "ItemClassesKey": 5, + "Width": 1, + "Height": 1, + "Name": "Кольцо с рубином", + "DropLevel": 8, + "Implicit_ModsKeys": [ + 1483 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14306, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2202, + "Id": "Metadata/Items/Rings/FourRing4", + "ItemClassesKey": 5, + "Width": 1, + "Height": 1, + "Name": "Кольцо с сапфиром", + "DropLevel": 12, + "Implicit_ModsKeys": [ + 1484 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14307, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2203, + "Id": "Metadata/Items/Rings/FourRing5", + "ItemClassesKey": 5, + "Width": 1, + "Height": 1, + "Name": "Кольцо с топазом", + "DropLevel": 16, + "Implicit_ModsKeys": [ + 1485 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14308, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2204, + "Id": "Metadata/Items/Rings/FourRing6", + "ItemClassesKey": 5, + "Width": 1, + "Height": 1, + "Name": "Кольцо с аметистом", + "DropLevel": 20, + "Implicit_ModsKeys": [ + 1486 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14309, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2205, + "Id": "Metadata/Items/Rings/FourRing7", + "ItemClassesKey": 5, + "Width": 1, + "Height": 1, + "Name": "Кольцо с изумрудом", + "DropLevel": 26, + "Implicit_ModsKeys": [ + 1487 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14310, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2206, + "Id": "Metadata/Items/Rings/FourRing8", + "ItemClassesKey": 5, + "Width": 1, + "Height": 1, + "Name": "Жемчужное кольцо", + "DropLevel": 32, + "Implicit_ModsKeys": [ + 1488 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14311, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2207, + "Id": "Metadata/Items/Rings/FourRing9", + "ItemClassesKey": 5, + "Width": 1, + "Height": 1, + "Name": "Радужное кольцо", + "DropLevel": 35, + "Implicit_ModsKeys": [ + 1489 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14312, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2208, + "Id": "Metadata/Items/Rings/FourRing10", + "ItemClassesKey": 5, + "Width": 1, + "Height": 1, + "Name": "Золотое кольцо", + "DropLevel": 40, + "Implicit_ModsKeys": [ + 1490 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14313, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2209, + "Id": "Metadata/Items/Rings/FourRing11", + "ItemClassesKey": 5, + "Width": 1, + "Height": 1, + "Name": "Кольцо без камня", + "DropLevel": 44, + "Implicit_ModsKeys": [ + 1491 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14314, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2210, + "Id": "Metadata/Items/Belts/FourBelt1", + "ItemClassesKey": 21, + "Width": 2, + "Height": 1, + "Name": "Ремень из сыромятной кожи", + "DropLevel": 1, + "Implicit_ModsKeys": [ + 1493 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14315, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2211, + "Id": "Metadata/Items/Belts/FourBelt2", + "ItemClassesKey": 21, + "Width": 2, + "Height": 1, + "Name": "Матерчатый пояс", + "DropLevel": 1, + "Implicit_ModsKeys": [ + 1494 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14316, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2212, + "Id": "Metadata/Items/Belts/FourBelt3", + "ItemClassesKey": 21, + "Width": 2, + "Height": 1, + "Name": "Широкий ремень", + "DropLevel": 14, + "Implicit_ModsKeys": [ + 1495 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14317, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2213, + "Id": "Metadata/Items/Belts/FourBelt4", + "ItemClassesKey": 21, + "Width": 2, + "Height": 1, + "Name": "Длинный ремень", + "DropLevel": 20, + "Implicit_ModsKeys": [ + 1496 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14318, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2214, + "Id": "Metadata/Items/Belts/FourBelt5", + "ItemClassesKey": 21, + "Width": 2, + "Height": 1, + "Name": "Ремень из пластин", + "DropLevel": 25, + "Implicit_ModsKeys": [ + 1497 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14319, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2215, + "Id": "Metadata/Items/Belts/FourBelt6", + "ItemClassesKey": 21, + "Width": 2, + "Height": 1, + "Name": "Декорированный ремень", + "DropLevel": 31, + "Implicit_ModsKeys": [ + 1498 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14320, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2216, + "Id": "Metadata/Items/Belts/FourBelt7", + "ItemClassesKey": 21, + "Width": 2, + "Height": 1, + "Name": "Кольчужный ремень", + "DropLevel": 40, + "Implicit_ModsKeys": [ + 1499 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14321, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2217, + "Id": "Metadata/Items/Belts/FourBelt8", + "ItemClassesKey": 21, + "Width": 2, + "Height": 1, + "Name": "Двойной ремень", + "DropLevel": 44, + "Implicit_ModsKeys": [ + 1500 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14322, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2218, + "Id": "Metadata/Items/Belts/FourBelt9", + "ItemClassesKey": 21, + "Width": 2, + "Height": 1, + "Name": "Тяжёлый ремень", + "DropLevel": 50, + "Implicit_ModsKeys": [ + 1501 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14323, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2219, + "Id": "Metadata/Items/Belts/FourBelt10", + "ItemClassesKey": 21, + "Width": 2, + "Height": 1, + "Name": "Практичный ремень", + "DropLevel": 55, + "Implicit_ModsKeys": [ + 1502 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14324, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2220, + "Id": "Metadata/Items/Belts/FourBelt11", + "ItemClassesKey": 21, + "Width": 2, + "Height": 1, + "Name": "Тонкий ремень", + "DropLevel": 62, + "Implicit_ModsKeys": [ + 1503 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14325, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2221, + "Id": "Metadata/Items/Flasks/FourFlaskLife1", + "ItemClassesKey": 0, + "Width": 1, + "Height": 2, + "Name": "Малый флакон жизни", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14326, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2222, + "Id": "Metadata/Items/Flasks/FourFlaskLife2", + "ItemClassesKey": 0, + "Width": 1, + "Height": 2, + "Name": "Средний флакон жизни", + "DropLevel": 4, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14327, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2223, + "Id": "Metadata/Items/Flasks/FourFlaskLife3", + "ItemClassesKey": 0, + "Width": 1, + "Height": 2, + "Name": "Большой флакон жизни", + "DropLevel": 10, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14328, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2224, + "Id": "Metadata/Items/Flasks/FourFlaskLife4", + "ItemClassesKey": 0, + "Width": 1, + "Height": 2, + "Name": "Вместительный флакон жизни", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14329, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2225, + "Id": "Metadata/Items/Flasks/FourFlaskLife5", + "ItemClassesKey": 0, + "Width": 1, + "Height": 2, + "Name": "Огромный флакон жизни", + "DropLevel": 23, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14330, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2226, + "Id": "Metadata/Items/Flasks/FourFlaskLife6", + "ItemClassesKey": 0, + "Width": 1, + "Height": 2, + "Name": "Великий флакон жизни", + "DropLevel": 30, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14331, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2227, + "Id": "Metadata/Items/Flasks/FourFlaskLife7", + "ItemClassesKey": 0, + "Width": 1, + "Height": 2, + "Name": "Громадный флакон жизни", + "DropLevel": 40, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14332, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2228, + "Id": "Metadata/Items/Flasks/FourFlaskLife8", + "ItemClassesKey": 0, + "Width": 1, + "Height": 2, + "Name": "Возвышенный флакон жизни", + "DropLevel": 50, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14333, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2229, + "Id": "Metadata/Items/Flasks/FourFlaskLife9", + "ItemClassesKey": 0, + "Width": 1, + "Height": 2, + "Name": "Совершенный флакон жизни", + "DropLevel": 60, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14334, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2230, + "Id": "Metadata/Items/Flasks/FourFlaskMana1", + "ItemClassesKey": 1, + "Width": 1, + "Height": 2, + "Name": "Малый флакон маны", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14335, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2231, + "Id": "Metadata/Items/Flasks/FourFlaskMana2", + "ItemClassesKey": 1, + "Width": 1, + "Height": 2, + "Name": "Средний флакон маны", + "DropLevel": 4, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14336, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2232, + "Id": "Metadata/Items/Flasks/FourFlaskMana3", + "ItemClassesKey": 1, + "Width": 1, + "Height": 2, + "Name": "Большой флакон маны", + "DropLevel": 10, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14337, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2233, + "Id": "Metadata/Items/Flasks/FourFlaskMana4", + "ItemClassesKey": 1, + "Width": 1, + "Height": 2, + "Name": "Вместительный флакон маны", + "DropLevel": 16, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14338, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2234, + "Id": "Metadata/Items/Flasks/FourFlaskMana5", + "ItemClassesKey": 1, + "Width": 1, + "Height": 2, + "Name": "Огромный флакон маны", + "DropLevel": 23, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14339, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2235, + "Id": "Metadata/Items/Flasks/FourFlaskMana6", + "ItemClassesKey": 1, + "Width": 1, + "Height": 2, + "Name": "Великий флакон маны", + "DropLevel": 30, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14340, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2236, + "Id": "Metadata/Items/Flasks/FourFlaskMana7", + "ItemClassesKey": 1, + "Width": 1, + "Height": 2, + "Name": "Громадный флакон маны", + "DropLevel": 40, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14341, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2237, + "Id": "Metadata/Items/Flasks/FourFlaskMana8", + "ItemClassesKey": 1, + "Width": 1, + "Height": 2, + "Name": "Возвышенный флакон маны", + "DropLevel": 50, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14342, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2238, + "Id": "Metadata/Items/Flasks/FourFlaskMana9", + "ItemClassesKey": 1, + "Width": 1, + "Height": 2, + "Name": "Совершенный флакон маны", + "DropLevel": 60, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14343, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2239, + "Id": "Metadata/Items/Flasks/FourCharm1", + "ItemClassesKey": 33, + "Width": 1, + "Height": 1, + "Name": "Тающий оберег", + "DropLevel": 12, + "Implicit_ModsKeys": [ + 1504 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14344, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2240, + "Id": "Metadata/Items/Flasks/FourCharm2", + "ItemClassesKey": 33, + "Width": 1, + "Height": 1, + "Name": "Рубцующий оберег", + "DropLevel": 18, + "Implicit_ModsKeys": [ + 1505 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14345, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2241, + "Id": "Metadata/Items/Flasks/FourCharm3", + "ItemClassesKey": 33, + "Width": 1, + "Height": 1, + "Name": "Очищающий оберег", + "DropLevel": 24, + "Implicit_ModsKeys": [ + 1506 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14346, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2242, + "Id": "Metadata/Items/Flasks/FourCharm4", + "ItemClassesKey": 33, + "Width": 1, + "Height": 1, + "Name": "Охлаждающий оберег", + "DropLevel": 32, + "Implicit_ModsKeys": [ + 1507 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14347, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2243, + "Id": "Metadata/Items/Flasks/FourCharm5", + "ItemClassesKey": 33, + "Width": 1, + "Height": 1, + "Name": "Заземляющий оберег", + "DropLevel": 32, + "Implicit_ModsKeys": [ + 1508 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14348, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2244, + "Id": "Metadata/Items/Flasks/FourCharm6", + "ItemClassesKey": 33, + "Width": 1, + "Height": 1, + "Name": "Каменный оберег", + "DropLevel": 8, + "Implicit_ModsKeys": [ + 1509 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14349, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2245, + "Id": "Metadata/Items/Flasks/FourCharm7", + "ItemClassesKey": 33, + "Width": 1, + "Height": 1, + "Name": "Серебряный оберег", + "DropLevel": 10, + "Implicit_ModsKeys": [ + 1510 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14350, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2246, + "Id": "Metadata/Items/Flasks/FourCharm8", + "ItemClassesKey": 33, + "Width": 1, + "Height": 1, + "Name": "Оберег с рубином", + "DropLevel": 5, + "Implicit_ModsKeys": [ + 1511 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14351, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2247, + "Id": "Metadata/Items/Flasks/FourCharm9", + "ItemClassesKey": 33, + "Width": 1, + "Height": 1, + "Name": "Оберег с сапфиром", + "DropLevel": 5, + "Implicit_ModsKeys": [ + 1512 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14352, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2248, + "Id": "Metadata/Items/Flasks/FourCharm10", + "ItemClassesKey": 33, + "Width": 1, + "Height": 1, + "Name": "Оберег с топазом", + "DropLevel": 5, + "Implicit_ModsKeys": [ + 1513 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14353, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2249, + "Id": "Metadata/Items/Flasks/FourCharm11", + "ItemClassesKey": 33, + "Width": 1, + "Height": 1, + "Name": "Оберег с аметистом", + "DropLevel": 40, + "Implicit_ModsKeys": [ + 1514 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14354, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2250, + "Id": "Metadata/Items/Flasks/FourCharm12", + "ItemClassesKey": 33, + "Width": 1, + "Height": 1, + "Name": "Золотой оберег", + "DropLevel": 50, + "Implicit_ModsKeys": [ + 1515 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14355, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2251, + "Id": "Metadata/Items/Rings/FourRingBase", + "ItemClassesKey": 5, + "Width": 1, + "Height": 1, + "Name": "Кольцо", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14356, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2252, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrDexIntBase", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Одеяние", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 44 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14357, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2253, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrDexInt1", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Grand Regalia", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 44 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14358, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2254, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrDexInt1", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Grand Visage", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 44 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14359, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2255, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStrDexInt1", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Grand Manchettes", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 44 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14360, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2256, + "Id": "Metadata/Items/Armours/Boots/FourBootsStrDexInt1", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Grand Cuisses", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 44 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14361, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2257, + "Id": "Metadata/Items/Rings/FourRingBreach", + "ItemClassesKey": 5, + "Width": 1, + "Height": 1, + "Name": "Кольцо Разлома", + "DropLevel": 40, + "Implicit_ModsKeys": [ + 1492 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 14362, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2258, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandSwords/FourOneHandSwordGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 3, + "Name": "Случайный одноручный меч", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 81, + 12 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13760, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2259, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandSwords/FourTwoHandSwordGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 4, + "Name": "Случайный двуручный меч", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 82, + 12 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13773, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2260, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandAxes/FourOneHandAxeGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 3, + "Name": "Случайный одноручный топор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 81, + 15 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13786, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2261, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandAxes/FourTwoHandAxeGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 4, + "Name": "Случайный двуручный топор", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 82, + 15 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13799, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2262, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandMaces/FourOneHandMaceGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 3, + "Name": "Случайная одноручная булава", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 81, + 11 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13812, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2263, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandMaces/FourTwoHandMaceGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 4, + "Name": "Случайная двуручная булава", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 82, + 11 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13825, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2264, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandSpears/FourSpearGamble", + "ItemClassesKey": 61, + "Width": 1, + "Height": 4, + "Name": "Случайное копьё", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1010 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13838, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2265, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Claws/FourClawGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 2, + "Name": "Случайный коготь", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 14 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13851, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2266, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Daggers/FourDaggerGamble", + "ItemClassesKey": 61, + "Width": 1, + "Height": 3, + "Name": "Случайный кинжал", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 13 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13864, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2267, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourQuarterstaffGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 4, + "Name": "Случайный боевой посох", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 566 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13877, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2268, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Flails/FourFlailGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 3, + "Name": "Случайный кистень", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1014 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13890, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2269, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Wands/FourWandGamble", + "ItemClassesKey": 61, + "Width": 1, + "Height": 3, + "Name": "Случайный жезл", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 9 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13903, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2270, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourStaffGamble", + "ItemClassesKey": 61, + "Width": 1, + "Height": 4, + "Name": "Случайный посох", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 10 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13916, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2271, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Bows/FourBowGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 4, + "Name": "Случайный лук", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 5 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13929, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2272, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Crossbows/FourCrossbowGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 4, + "Name": "Случайный самострел", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1012 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13942, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2273, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandMaces/FourSceptreGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 3, + "Name": "Случайный скипетр", + "DropLevel": 2, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 37 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13955, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2274, + "Id": "Metadata/Items/Weapons/OneHandWeapons/Traps/FourTrapGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 2, + "Name": "Случайная ловушка", + "DropLevel": 2, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1019 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13970, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2275, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 3, + "Name": "Случайный нательный доспех", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 16 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13986, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2276, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDexGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 3, + "Name": "Случайный нательный доспех", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 16 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14001, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2277, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyIntGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 3, + "Name": "Случайный нательный доспех", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 16 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14016, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2278, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrDexGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 3, + "Name": "Случайный нательный доспех", + "DropLevel": 4, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 16 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14031, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2279, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrIntGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 3, + "Name": "Случайный нательный доспех", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 16 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14045, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2280, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDexIntGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 3, + "Name": "Случайный нательный доспех", + "DropLevel": 4, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43, + 16 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14058, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2281, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 2, + "Name": "Случайный шлем", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 25 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14070, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2282, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDexGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 2, + "Name": "Случайный шлем", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 25 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14081, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2283, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetIntGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 2, + "Name": "Случайный шлем", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 25 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14092, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2284, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrDexGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 2, + "Name": "Случайный шлем", + "DropLevel": 6, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 25 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14103, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2285, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrIntGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 2, + "Name": "Случайный шлем", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 25 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14111, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2286, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDexIntGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 2, + "Name": "Случайный шлем", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43, + 25 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14119, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2287, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStrGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 2, + "Name": "Случайные перчатки", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 22 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14127, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2288, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesDexGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 2, + "Name": "Случайные перчатки", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 22 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14135, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2289, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesIntGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 2, + "Name": "Случайные перчатки", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 22 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14143, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2290, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStrDexGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 2, + "Name": "Случайные перчатки", + "DropLevel": 6, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 22 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14151, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2291, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStrIntGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 2, + "Name": "Случайные перчатки", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 22 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14157, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2292, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesDexIntGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 2, + "Name": "Случайные перчатки", + "DropLevel": 4, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43, + 22 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14163, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2293, + "Id": "Metadata/Items/Armours/Boots/FourBootsStrGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 2, + "Name": "Случайные сапоги", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 4 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14169, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2294, + "Id": "Metadata/Items/Armours/Boots/FourBootsDexGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 2, + "Name": "Случайные сапоги", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 4 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14177, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2295, + "Id": "Metadata/Items/Armours/Boots/FourBootsIntGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 2, + "Name": "Случайные сапоги", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 4 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14185, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2296, + "Id": "Metadata/Items/Armours/Boots/FourBootsStrDexGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 2, + "Name": "Случайные сапоги", + "DropLevel": 6, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 4 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14193, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2297, + "Id": "Metadata/Items/Armours/Boots/FourBootsStrIntGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 2, + "Name": "Случайные сапоги", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 4 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14199, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2298, + "Id": "Metadata/Items/Armours/Boots/FourBootsDexIntGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 2, + "Name": "Случайные сапоги", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43, + 4 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14205, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2299, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 4, + "Name": "Случайный щит", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 1 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14211, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2300, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrDexGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 3, + "Name": "Случайный щит", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 1 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14224, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2301, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrIntGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 3, + "Name": "Случайный щит", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 1 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14235, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2302, + "Id": "Metadata/Items/Armours/Shields/FourShieldDexGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 2, + "Name": "Случайный баклер", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 1 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14246, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2303, + "Id": "Metadata/Items/Armours/Focii/FourFocusGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 3, + "Name": "Случайный фокус", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40, + 45 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14259, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2304, + "Id": "Metadata/Items/Quivers/FourQuiverGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 3, + "Name": "Случайный колчан", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 21 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14272, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2305, + "Id": "Metadata/Items/Amulets/FourAmuletGamble", + "ItemClassesKey": 61, + "Width": 1, + "Height": 1, + "Name": "Случайный амулет", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 3 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14294, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2306, + "Id": "Metadata/Items/Rings/FourRingGamble", + "ItemClassesKey": 61, + "Width": 1, + "Height": 1, + "Name": "Случайное кольцо", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 2 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14304, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2307, + "Id": "Metadata/Items/Belts/FourBeltGamble", + "ItemClassesKey": 61, + "Width": 2, + "Height": 1, + "Name": "Случайный пояс", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 26 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 14315, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2308, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandMaces/FourOneHandMace2Cruel", + "ItemClassesKey": 12, + "Width": 2, + "Height": 3, + "Name": "Advanced Smithing Hammer", + "DropLevel": 45, + "Implicit_ModsKeys": [ + 1543 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13813, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2309, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandMaces/FourOneHandMace3Cruel", + "ItemClassesKey": 12, + "Width": 2, + "Height": 3, + "Name": "Advanced Slim Mace", + "DropLevel": 48, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13814, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2310, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandMaces/FourOneHandMace5Cruel", + "ItemClassesKey": 12, + "Width": 2, + "Height": 3, + "Name": "Advanced Warpick", + "DropLevel": 51, + "Implicit_ModsKeys": [ + 1544 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13816, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2311, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandMaces/FourOneHandMace6Cruel", + "ItemClassesKey": 12, + "Width": 2, + "Height": 3, + "Name": "Advanced Plated Mace", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13817, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2312, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandMaces/FourOneHandMace7Cruel", + "ItemClassesKey": 12, + "Width": 2, + "Height": 3, + "Name": "Advanced Brigand Mace", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13818, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2313, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandMaces/FourOneHandMace8Cruel", + "ItemClassesKey": 12, + "Width": 2, + "Height": 3, + "Name": "Advanced Construct Hammer", + "DropLevel": 62, + "Implicit_ModsKeys": [ + 1545 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13819, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2314, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandMaces/FourTwoHandMace2Cruel", + "ItemClassesKey": 17, + "Width": 2, + "Height": 4, + "Name": "Advanced Oak Greathammer", + "DropLevel": 45, + "Implicit_ModsKeys": [ + 1546 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13826, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2315, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandMaces/FourTwoHandMace3Cruel", + "ItemClassesKey": 17, + "Width": 2, + "Height": 4, + "Name": "Advanced Forge Maul", + "DropLevel": 48, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13827, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2316, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandMaces/FourTwoHandMace5Cruel", + "ItemClassesKey": 17, + "Width": 2, + "Height": 4, + "Name": "Advanced Cultist Greathammer", + "DropLevel": 51, + "Implicit_ModsKeys": [ + 1548 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13829, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2317, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandMaces/FourTwoHandMace6Cruel", + "ItemClassesKey": 17, + "Width": 2, + "Height": 4, + "Name": "Advanced Temple Maul", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13830, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2318, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandMaces/FourTwoHandMace7Cruel", + "ItemClassesKey": 17, + "Width": 2, + "Height": 4, + "Name": "Advanced Leaden Greathammer", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13831, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2319, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandMaces/FourTwoHandMace8Cruel", + "ItemClassesKey": 17, + "Width": 2, + "Height": 4, + "Name": "Advanced Crumbling Maul", + "DropLevel": 62, + "Implicit_ModsKeys": [ + 1549 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13832, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2320, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourQuarterstaff2Cruel", + "ItemClassesKey": 57, + "Width": 2, + "Height": 4, + "Name": "Advanced Long Quarterstaff", + "DropLevel": 45, + "Implicit_ModsKeys": [ + 1565 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13878, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2321, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourQuarterstaff3Cruel", + "ItemClassesKey": 57, + "Width": 2, + "Height": 4, + "Name": "Advanced Gothic Quarterstaff", + "DropLevel": 48, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13879, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2322, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourQuarterstaff4Cruel", + "ItemClassesKey": 57, + "Width": 2, + "Height": 4, + "Name": "Advanced Crackling Quarterstaff", + "DropLevel": 51, + "Implicit_ModsKeys": [ + 1566 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13880, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2323, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourQuarterstaff5Cruel", + "ItemClassesKey": 57, + "Width": 2, + "Height": 4, + "Name": "Advanced Crescent Quarterstaff", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13881, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2324, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourQuarterstaff7Cruel", + "ItemClassesKey": 57, + "Width": 2, + "Height": 4, + "Name": "Advanced Slicing Quarterstaff", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13883, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2325, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourQuarterstaff8Cruel", + "ItemClassesKey": 57, + "Width": 2, + "Height": 4, + "Name": "Advanced Barrier Quarterstaff", + "DropLevel": 62, + "Implicit_ModsKeys": [ + 1567 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13884, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2326, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Bows/FourBow2Cruel", + "ItemClassesKey": 13, + "Width": 2, + "Height": 4, + "Name": "Advanced Shortbow", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13930, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2327, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Bows/FourBow3Cruel", + "ItemClassesKey": 13, + "Width": 2, + "Height": 4, + "Name": "Advanced Warden Bow", + "DropLevel": 48, + "Implicit_ModsKeys": [ + 1568 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13931, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2328, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Bows/FourBow5Cruel", + "ItemClassesKey": 13, + "Width": 2, + "Height": 4, + "Name": "Advanced Composite Bow", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13933, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2329, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Bows/FourBow6Cruel", + "ItemClassesKey": 13, + "Width": 2, + "Height": 4, + "Name": "Advanced Dualstring Bow", + "DropLevel": 55, + "Implicit_ModsKeys": [ + 1569 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13934, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2330, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Bows/FourBow7Cruel", + "ItemClassesKey": 13, + "Width": 2, + "Height": 4, + "Name": "Advanced Cultist Bow", + "DropLevel": 59, + "Implicit_ModsKeys": [ + 1570 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13935, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2331, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Bows/FourBow8Cruel", + "ItemClassesKey": 13, + "Width": 2, + "Height": 4, + "Name": "Advanced Zealot Bow", + "DropLevel": 62, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13936, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2332, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Crossbows/FourCrossbow2Cruel", + "ItemClassesKey": 78, + "Width": 2, + "Height": 4, + "Name": "Advanced Tense Crossbow", + "DropLevel": 45, + "Implicit_ModsKeys": [ + 1572 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13943, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2333, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Crossbows/FourCrossbow3Cruel", + "ItemClassesKey": 78, + "Width": 2, + "Height": 4, + "Name": "Advanced Sturdy Crossbow", + "DropLevel": 48, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13944, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2334, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Crossbows/FourCrossbow4Cruel", + "ItemClassesKey": 78, + "Width": 2, + "Height": 4, + "Name": "Advanced Varnished Crossbow", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13945, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2335, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Crossbows/FourCrossbow5Cruel", + "ItemClassesKey": 78, + "Width": 2, + "Height": 4, + "Name": "Advanced Dyad Crossbow", + "DropLevel": 55, + "Implicit_ModsKeys": [ + 1573 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13946, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2336, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Crossbows/FourCrossbow7Cruel", + "ItemClassesKey": 78, + "Width": 2, + "Height": 4, + "Name": "Advanced Bombard Crossbow", + "DropLevel": 59, + "Implicit_ModsKeys": [ + 1574 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13948, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2337, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Crossbows/FourCrossbow8Cruel", + "ItemClassesKey": 78, + "Width": 2, + "Height": 4, + "Name": "Advanced Forlorn Crossbow", + "DropLevel": 62, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13949, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2338, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStr2Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Fur Plate", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13987, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2339, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStr3Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Iron Cuirass", + "DropLevel": 48, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13988, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2340, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStr5Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Maraketh Cuirass", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13990, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2341, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStr6Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Steel Plate", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13991, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2342, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStr7Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Full Plate", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13992, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2343, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStr8Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Vaal Cuirass", + "DropLevel": 62, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13993, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2344, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDex2Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Quilted Vest", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14002, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2345, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDex3Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Pathfinder Coat", + "DropLevel": 48, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14003, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2346, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDex5Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Rhoahide Coat", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14005, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2347, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDex6Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Studded Vest", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14006, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2348, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDex7Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Scout's Vest", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14007, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2349, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDex8Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Serpentscale Coat", + "DropLevel": 62, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14008, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2350, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyInt2Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Feathered Robe", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14017, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2351, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyInt3Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Hexer's Robe", + "DropLevel": 48, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14018, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2352, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyInt5Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Silk Robe", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14020, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2353, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyInt6Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Keth Raiment", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14021, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2354, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyInt7Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Votive Raiment", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14022, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2355, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyInt8Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Altar Robe", + "DropLevel": 62, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14023, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2356, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrDex1Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Chain Mail", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14031, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2357, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrDex2Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Rogue Armour", + "DropLevel": 48, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14032, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2358, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrDex3Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Vagabond Armour", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14033, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2359, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrDex4Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Cloaked Mail", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14034, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2360, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrDex5Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Explorer Armour", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14035, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2361, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrDex6Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Scale Mail", + "DropLevel": 62, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14036, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2362, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrInt1Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Pilgrim Vestments", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14044, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2363, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrInt2Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Pelt Mantle", + "DropLevel": 48, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14045, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2364, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrInt3Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Mail Vestments", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14046, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2365, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrInt4Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Shaman Mantle", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14047, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2366, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrInt5Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Ironclad Vestments", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14048, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2367, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrInt6Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Sacrificial Mantle", + "DropLevel": 62, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14049, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2368, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDexInt1Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Hermit Garb", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14057, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2369, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDexInt2Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Waxed Jacket", + "DropLevel": 48, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14058, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2370, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDexInt3Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Marabout Garb", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14059, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2371, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDexInt4Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Wayfarer Jacket", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14060, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2372, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDexInt5Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Anchorite Garb", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14061, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2373, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDexInt6Cruel", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Advanced Scalper's Jacket", + "DropLevel": 62, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14062, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2374, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStr1Cruel", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Advanced Rusted Greathelm", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14070, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2375, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStr2Cruel", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Advanced Soldier Greathelm", + "DropLevel": 48, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14071, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2376, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStr3Cruel", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Advanced Wrapped Greathelm", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14072, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2377, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStr4Cruel", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Advanced Spired Greathelm", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14073, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2378, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStr5Cruel", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Advanced Elite Greathelm", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14074, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2379, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDex1Cruel", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Advanced Shabby Hood", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14081, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2380, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDex2Cruel", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Advanced Felt Cap", + "DropLevel": 48, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14082, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2381, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDex3Cruel", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Advanced Lace Hood", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14083, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2382, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDex4Cruel", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Advanced Swathed Cap", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14084, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2383, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDex5Cruel", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Advanced Hunter Hood", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14085, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2384, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetInt1Cruel", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Advanced Twig Circlet", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14092, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2385, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetInt2Cruel", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Advanced Wicker Tiara", + "DropLevel": 48, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14093, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2386, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetInt3Cruel", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Advanced Beaded Circlet", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14094, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2387, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetInt4Cruel", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Advanced Chain Tiara", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14095, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2388, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetInt5Cruel", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Advanced Feathered Tiara", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14096, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2389, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrDex1Cruel", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Advanced Brimmed Helm", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14103, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2390, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrDex2Cruel", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Advanced Guarded Helm", + "DropLevel": 48, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14104, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2391, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrDex3Cruel", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Advanced Visored Helm", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14105, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2392, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrDex4Cruel", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Advanced Cowled Helm", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14106, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2393, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrDex5Cruel", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Advanced Shielded Helm", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14107, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2394, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrInt1Cruel", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Advanced Iron Crown", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14111, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2395, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrInt2Cruel", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Advanced Horned Crown", + "DropLevel": 48, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14112, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2396, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrInt3Cruel", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Advanced Cultist Crown", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14113, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2397, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrInt4Cruel", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Advanced Martyr Crown", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14114, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2398, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrInt5Cruel", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Advanced Heavy Crown", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14115, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2399, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDexInt1Cruel", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Advanced Hewn Mask", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14119, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2400, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDexInt2Cruel", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Advanced Face Mask", + "DropLevel": 48, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14120, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2401, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDexInt3Cruel", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Advanced Hooded Mask", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14121, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2402, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDexInt4Cruel", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Advanced Veiled Mask", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14122, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2403, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDexInt5Cruel", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Advanced Tribal Mask", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14123, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2404, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStr2Cruel", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Advanced Riveted Mitts", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14128, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2405, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStr3Cruel", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Advanced Tempered Mitts", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14129, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2406, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStr4Cruel", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Advanced Bolstered Mitts", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14130, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2407, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStr5Cruel", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Advanced Moulded Mitts", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14131, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2408, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesDex2Cruel", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Advanced Firm Bracers", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14136, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2409, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesDex3Cruel", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Advanced Bound Bracers", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14137, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2410, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesDex4Cruel", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Advanced Sectioned Bracers", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14138, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2411, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesDex5Cruel", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Advanced Spined Bracers", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14139, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2412, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesInt2Cruel", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Advanced Sombre Gloves", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14144, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2413, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesInt3Cruel", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Advanced Stitched Gloves", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14145, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2414, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesInt4Cruel", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Advanced Jewelled Gloves", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14146, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2415, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesInt5Cruel", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Advanced Intricate Gloves", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14147, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2416, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStrDex1Cruel", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Advanced Ringmail Gauntlets", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14151, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2417, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStrDex2Cruel", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Advanced Layered Gauntlets", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14152, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2418, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStrDex3Cruel", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Advanced Doubled Gauntlets", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14153, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2419, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStrInt1Cruel", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Advanced Rope Cuffs", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14157, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2420, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStrInt2Cruel", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Advanced Aged Cuffs", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14158, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2421, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStrInt3Cruel", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Advanced Goldcast Cuffs", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14159, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2422, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesDexInt1Cruel", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Advanced Gauze Wraps", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14163, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2423, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesDexInt2Cruel", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Advanced Linen Wraps", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14164, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2424, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesDexInt3Cruel", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Advanced Spiral Wraps", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14165, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2425, + "Id": "Metadata/Items/Armours/Boots/FourBootsStr2Cruel", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Advanced Iron Greaves", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14170, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2426, + "Id": "Metadata/Items/Armours/Boots/FourBootsStr3Cruel", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Advanced Bronze Greaves", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14171, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2427, + "Id": "Metadata/Items/Armours/Boots/FourBootsStr4Cruel", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Advanced Trimmed Greaves", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14172, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2428, + "Id": "Metadata/Items/Armours/Boots/FourBootsStr5Cruel", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Advanced Stone Greaves", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14173, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2429, + "Id": "Metadata/Items/Armours/Boots/FourBootsDex2Cruel", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Advanced Laced Boots", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14178, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2430, + "Id": "Metadata/Items/Armours/Boots/FourBootsDex3Cruel", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Advanced Embossed Boots", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14179, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2431, + "Id": "Metadata/Items/Armours/Boots/FourBootsDex4Cruel", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Advanced Steeltoe Boots", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14180, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2432, + "Id": "Metadata/Items/Armours/Boots/FourBootsDex5Cruel", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Advanced Lizardscale Boots", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14181, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2433, + "Id": "Metadata/Items/Armours/Boots/FourBootsInt2Cruel", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Advanced Wrapped Sandals", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14186, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2434, + "Id": "Metadata/Items/Armours/Boots/FourBootsInt3Cruel", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Advanced Lattice Sandals", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14187, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2435, + "Id": "Metadata/Items/Armours/Boots/FourBootsInt4Cruel", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Advanced Silk Slippers", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14188, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2436, + "Id": "Metadata/Items/Armours/Boots/FourBootsInt5Cruel", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Advanced Feathered Sandals", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14189, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2437, + "Id": "Metadata/Items/Armours/Boots/FourBootsStrDex1Cruel", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Advanced Mail Sabatons", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14193, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2438, + "Id": "Metadata/Items/Armours/Boots/FourBootsStrDex2Cruel", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Advanced Braced Sabatons", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14194, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2439, + "Id": "Metadata/Items/Armours/Boots/FourBootsStrDex3Cruel", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Advanced Stacked Sabatons", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14195, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2440, + "Id": "Metadata/Items/Armours/Boots/FourBootsStrInt1Cruel", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Advanced Padded Leggings", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14199, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2441, + "Id": "Metadata/Items/Armours/Boots/FourBootsStrInt2Cruel", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Advanced Secured Leggings", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14200, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2442, + "Id": "Metadata/Items/Armours/Boots/FourBootsStrInt3Cruel", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Advanced Pelt Leggings", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14201, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2443, + "Id": "Metadata/Items/Armours/Boots/FourBootsDexInt1Cruel", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Advanced Frayed Shoes", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14205, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2444, + "Id": "Metadata/Items/Armours/Boots/FourBootsDexInt2Cruel", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Advanced Threaded Shoes", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14206, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2445, + "Id": "Metadata/Items/Armours/Boots/FourBootsDexInt3Cruel", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Advanced Hunting Shoes", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14207, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2446, + "Id": "Metadata/Items/Armours/Shields/FourShieldStr2Cruel", + "ItemClassesKey": 26, + "Width": 2, + "Height": 4, + "Name": "Advanced Painted Tower Shield", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 226 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14212, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2447, + "Id": "Metadata/Items/Armours/Shields/FourShieldStr3Cruel", + "ItemClassesKey": 26, + "Width": 2, + "Height": 4, + "Name": "Advanced Braced Tower Shield", + "DropLevel": 48, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 226 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14213, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2448, + "Id": "Metadata/Items/Armours/Shields/FourShieldStr5Cruel", + "ItemClassesKey": 26, + "Width": 2, + "Height": 4, + "Name": "Advanced Effigial Tower Shield", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 226 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14215, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2449, + "Id": "Metadata/Items/Armours/Shields/FourShieldStr6Cruel", + "ItemClassesKey": 26, + "Width": 2, + "Height": 4, + "Name": "Advanced Rampart Tower Shield", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 226 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14216, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2450, + "Id": "Metadata/Items/Armours/Shields/FourShieldStr7Cruel", + "ItemClassesKey": 26, + "Width": 2, + "Height": 4, + "Name": "Advanced Heraldric Tower Shield", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 226 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14217, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2451, + "Id": "Metadata/Items/Armours/Shields/FourShieldStr8Cruel", + "ItemClassesKey": 26, + "Width": 2, + "Height": 4, + "Name": "Advanced Stone Tower Shield", + "DropLevel": 61, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 226 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14218, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2452, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrDex1Cruel", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Advanced Hardwood Targe", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 228 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14224, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2453, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrDex2Cruel", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Advanced Pelage Targe", + "DropLevel": 48, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 228 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14225, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2454, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrDex3Cruel", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Advanced Studded Targe", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 228 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14226, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2455, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrDex4Cruel", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Advanced Crescent Targe", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 228 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14227, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2456, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrDex5Cruel", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Advanced Chiseled Targe", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 228 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14228, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2457, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrDex6Cruel", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Advanced Feathered Targe", + "DropLevel": 62, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 228 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14229, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2458, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrInt1Cruel", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Advanced Blazon Crest Shield", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 229 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14235, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2459, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrInt2Cruel", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Advanced Sigil Crest Shield", + "DropLevel": 48, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 229 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14236, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2460, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrInt3Cruel", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Advanced Emblem Crest Shield", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 229 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14237, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2461, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrInt4Cruel", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Advanced Jingling Crest Shield", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 229 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14238, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2462, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrInt5Cruel", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Advanced Sectarian Crest Shield", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 229 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14239, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2463, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrInt6Cruel", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Advanced Omen Crest Shield", + "DropLevel": 62, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 229 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14240, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2464, + "Id": "Metadata/Items/Armours/Shields/FourShieldDex2Cruel", + "ItemClassesKey": 26, + "Width": 2, + "Height": 2, + "Name": "Advanced Wooden Buckler", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 227 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14247, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2465, + "Id": "Metadata/Items/Armours/Shields/FourShieldDex3Cruel", + "ItemClassesKey": 26, + "Width": 2, + "Height": 2, + "Name": "Advanced Plated Buckler", + "DropLevel": 48, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 227 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14248, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2466, + "Id": "Metadata/Items/Armours/Shields/FourShieldDex5Cruel", + "ItemClassesKey": 26, + "Width": 2, + "Height": 2, + "Name": "Advanced Ridged Buckler", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 227 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14250, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2467, + "Id": "Metadata/Items/Armours/Shields/FourShieldDex6Cruel", + "ItemClassesKey": 26, + "Width": 2, + "Height": 2, + "Name": "Advanced Spiked Buckler", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 227 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14251, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2468, + "Id": "Metadata/Items/Armours/Shields/FourShieldDex7Cruel", + "ItemClassesKey": 26, + "Width": 2, + "Height": 2, + "Name": "Advanced Ringed Buckler", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 227 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14252, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2469, + "Id": "Metadata/Items/Armours/Shields/FourShieldDex8Cruel", + "ItemClassesKey": 26, + "Width": 2, + "Height": 2, + "Name": "Advanced Edged Buckler", + "DropLevel": 61, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 227 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14253, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2470, + "Id": "Metadata/Items/Armours/Focii/FourFocus2Cruel", + "ItemClassesKey": 79, + "Width": 2, + "Height": 3, + "Name": "Advanced Woven Focus", + "DropLevel": 45, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14260, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2471, + "Id": "Metadata/Items/Armours/Focii/FourFocus3Cruel", + "ItemClassesKey": 79, + "Width": 2, + "Height": 3, + "Name": "Advanced Antler Focus", + "DropLevel": 48, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14261, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2472, + "Id": "Metadata/Items/Armours/Focii/FourFocus5Cruel", + "ItemClassesKey": 79, + "Width": 2, + "Height": 3, + "Name": "Advanced Tonal Focus", + "DropLevel": 51, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14263, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2473, + "Id": "Metadata/Items/Armours/Focii/FourFocus6Cruel", + "ItemClassesKey": 79, + "Width": 2, + "Height": 3, + "Name": "Advanced Crystal Focus", + "DropLevel": 55, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14264, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2474, + "Id": "Metadata/Items/Armours/Focii/FourFocus7Cruel", + "ItemClassesKey": 79, + "Width": 2, + "Height": 3, + "Name": "Advanced Voodoo Focus", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14265, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2475, + "Id": "Metadata/Items/Armours/Focii/FourFocus8Cruel", + "ItemClassesKey": 79, + "Width": 2, + "Height": 3, + "Name": "Advanced Plumed Focus", + "DropLevel": 61, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14266, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2476, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStr3Endgame", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Expert Iron Cuirass", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13988, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2477, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStr6Endgame", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Expert Steel Plate", + "DropLevel": 70, + "Implicit_ModsKeys": [ + 1517 + ], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13991, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2478, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStr8Endgame", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Expert Vaal Cuirass", + "DropLevel": 75, + "Implicit_ModsKeys": [ + 1516 + ], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 13993, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2479, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDex3Endgame", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Expert Pathfinder Coat", + "DropLevel": 65, + "Implicit_ModsKeys": [ + 1519 + ], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14003, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2480, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDex6Endgame", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Expert Studded Vest", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14006, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2481, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDex8Endgame", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Expert Serpentscale Coat", + "DropLevel": 75, + "Implicit_ModsKeys": [ + 1518 + ], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14008, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2482, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyInt3Endgame", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Expert Hexer's Robe", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14018, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2483, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyInt6Endgame", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Expert Keth Raiment", + "DropLevel": 70, + "Implicit_ModsKeys": [ + 1521 + ], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14021, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2484, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyInt8Endgame", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Expert Altar Robe", + "DropLevel": 75, + "Implicit_ModsKeys": [ + 1520 + ], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14023, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2485, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrDex2Endgame", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Expert Rogue Armour", + "DropLevel": 65, + "Implicit_ModsKeys": [ + 1522 + ], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14032, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2486, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrDex4aEndgame", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Expert Cloaked Mail", + "DropLevel": 70, + "Implicit_ModsKeys": [ + 1523 + ], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14034, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2487, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrDex4bEndgame", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Expert Cloaked Mail", + "DropLevel": 70, + "Implicit_ModsKeys": [ + 1524 + ], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14034, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2488, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrDex4cEndgame", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Expert Cloaked Mail", + "DropLevel": 70, + "Implicit_ModsKeys": [ + 1525 + ], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14034, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2489, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrDex6Endgame", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Expert Scale Mail", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14036, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2490, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrInt2Endgame", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Expert Pelt Mantle", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14045, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2491, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrInt4Endgame", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Expert Shaman Mantle", + "DropLevel": 70, + "Implicit_ModsKeys": [ + 1527 + ], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14047, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2492, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyStrInt6Endgame", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Expert Sacrificial Mantle", + "DropLevel": 75, + "Implicit_ModsKeys": [ + 1526 + ], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14049, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2493, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDexInt2Endgame", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Expert Waxed Jacket", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14058, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2494, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDexInt4Endgame", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Expert Wayfarer Jacket", + "DropLevel": 70, + "Implicit_ModsKeys": [ + 1528 + ], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14060, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2495, + "Id": "Metadata/Items/Armours/BodyArmours/FourBodyDexInt6Endgame", + "ItemClassesKey": 24, + "Width": 2, + "Height": 3, + "Name": "Expert Scalper's Jacket", + "DropLevel": 75, + "Implicit_ModsKeys": [ + 1529 + ], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14062, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2496, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStr2Endgame", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Expert Soldier Greathelm", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14071, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2497, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStr4Endgame", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Expert Spired Greathelm", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14073, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2498, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStr5Endgame", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Expert Elite Greathelm", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14074, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2499, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDex2Endgame", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Expert Felt Cap", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14082, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2500, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDex4Endgame", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Expert Swathed Cap", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14084, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2501, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDex5Endgame", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Expert Hunter Hood", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14085, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2502, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetInt2Endgame", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Expert Wicker Tiara", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14093, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2503, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetInt4Endgame", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Expert Chain Tiara", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14095, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2504, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetInt5Endgame", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Expert Feathered Tiara", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14096, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2505, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrDex2Endgame", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Expert Guarded Helm", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14104, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2506, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrDex4Endgame", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Expert Cowled Helm", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14106, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2507, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrDex5Endgame", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Expert Shielded Helm", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14107, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2508, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrInt2Endgame", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Expert Horned Crown", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14112, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2509, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrInt4Endgame", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Expert Martyr Crown", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14114, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2510, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetStrInt5Endgame", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Expert Heavy Crown", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14115, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2511, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDexInt2Endgame", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Expert Face Mask", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14120, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2512, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDexInt4Endgame", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Expert Veiled Mask", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14122, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2513, + "Id": "Metadata/Items/Armours/Helmets/FourHelmetDexInt5Endgame", + "ItemClassesKey": 25, + "Width": 2, + "Height": 2, + "Name": "Expert Tribal Mask", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14123, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2514, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStr2Endgame", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Expert Riveted Mitts", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14128, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2515, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStr4Endgame", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Expert Bolstered Mitts", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14130, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2516, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStr5Endgame", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Expert Moulded Mitts", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14131, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2517, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesDex2Endgame", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Expert Firm Bracers", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14136, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2518, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesDex4Endgame", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Expert Sectioned Bracers", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14138, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2519, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesDex5Endgame", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Expert Spined Bracers", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14139, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2520, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesInt2Endgame", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Expert Sombre Gloves", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14144, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2521, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesInt4Endgame", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Expert Jewelled Gloves", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14146, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2522, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesInt5Endgame", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Expert Intricate Gloves", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14147, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2523, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStrDex1Endgame", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Expert Ringmail Gauntlets", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14151, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2524, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStrDex2Endgame", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Expert Layered Gauntlets", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14152, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2525, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStrDex3Endgame", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Expert Doubled Gauntlets", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14153, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2526, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStrInt1Endgame", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Expert Rope Cuffs", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14157, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2527, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStrInt2Endgame", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Expert Aged Cuffs", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14158, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2528, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesStrInt3Endgame", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Expert Goldcast Cuffs", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14159, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2529, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesDexInt1Endgame", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Expert Gauze Wraps", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14163, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2530, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesDexInt2Endgame", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Expert Linen Wraps", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14164, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2531, + "Id": "Metadata/Items/Armours/Gloves/FourGlovesDexInt3Endgame", + "ItemClassesKey": 22, + "Width": 2, + "Height": 2, + "Name": "Expert Spiral Wraps", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14165, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2532, + "Id": "Metadata/Items/Armours/Boots/FourBootsStr2Endgame", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Expert Iron Greaves", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14170, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2533, + "Id": "Metadata/Items/Armours/Boots/FourBootsStr4Endgame", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Expert Trimmed Greaves", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14172, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2534, + "Id": "Metadata/Items/Armours/Boots/FourBootsStr5Endgame", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Expert Stone Greaves", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14173, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2535, + "Id": "Metadata/Items/Armours/Boots/FourBootsDex2Endgame", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Expert Laced Boots", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14178, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2536, + "Id": "Metadata/Items/Armours/Boots/FourBootsDex4Endgame", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Expert Steeltoe Boots", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14180, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2537, + "Id": "Metadata/Items/Armours/Boots/FourBootsDex5Endgame", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Expert Lizardscale Boots", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14181, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2538, + "Id": "Metadata/Items/Armours/Boots/FourBootsInt2Endgame", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Expert Wrapped Sandals", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14186, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2539, + "Id": "Metadata/Items/Armours/Boots/FourBootsInt4Endgame", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Expert Silk Slippers", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14188, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2540, + "Id": "Metadata/Items/Armours/Boots/FourBootsInt5Endgame", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Expert Feathered Sandals", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14189, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2541, + "Id": "Metadata/Items/Armours/Boots/FourBootsStrDex1Endgame", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Expert Mail Sabatons", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14193, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2542, + "Id": "Metadata/Items/Armours/Boots/FourBootsStrDex2Endgame", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Expert Braced Sabatons", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14194, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2543, + "Id": "Metadata/Items/Armours/Boots/FourBootsStrDex3Endgame", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Expert Stacked Sabatons", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14195, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2544, + "Id": "Metadata/Items/Armours/Boots/FourBootsStrInt1Endgame", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Expert Padded Leggings", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14199, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2545, + "Id": "Metadata/Items/Armours/Boots/FourBootsStrInt2Endgame", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Expert Secured Leggings", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14200, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2546, + "Id": "Metadata/Items/Armours/Boots/FourBootsStrInt3Endgame", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Expert Pelt Leggings", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14201, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2547, + "Id": "Metadata/Items/Armours/Boots/FourBootsDexInt1Endgame", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Expert Frayed Shoes", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14205, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2548, + "Id": "Metadata/Items/Armours/Boots/FourBootsDexInt2Endgame", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Expert Threaded Shoes", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14206, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2549, + "Id": "Metadata/Items/Armours/Boots/FourBootsDexInt3Endgame", + "ItemClassesKey": 23, + "Width": 2, + "Height": 2, + "Name": "Expert Hunting Shoes", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 43 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14207, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2550, + "Id": "Metadata/Items/Armours/Shields/FourShieldStr3Endgame", + "ItemClassesKey": 26, + "Width": 2, + "Height": 4, + "Name": "Expert Braced Tower Shield", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 226 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14213, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2551, + "Id": "Metadata/Items/Armours/Shields/FourShieldStr6Endgame", + "ItemClassesKey": 26, + "Width": 2, + "Height": 4, + "Name": "Expert Rampart Tower Shield", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 226 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14216, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2552, + "Id": "Metadata/Items/Armours/Shields/FourShieldStr8Endgame", + "ItemClassesKey": 26, + "Width": 2, + "Height": 4, + "Name": "Expert Stone Tower Shield", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 38, + 226 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14218, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2553, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrDex2Endgame", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Expert Pelage Targe", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 228 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14225, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2554, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrDex4Endgame", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Expert Crescent Targe", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 228 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14227, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2555, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrDex6Endgame", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Expert Feathered Targe", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 41, + 228 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14229, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2556, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrInt2Endgame", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Expert Sigil Crest Shield", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 229 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14236, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2557, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrInt4Endgame", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Expert Jingling Crest Shield", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 229 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14238, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2558, + "Id": "Metadata/Items/Armours/Shields/FourShieldStrInt6Endgame", + "ItemClassesKey": 26, + "Width": 2, + "Height": 3, + "Name": "Expert Omen Crest Shield", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 42, + 229 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14240, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2559, + "Id": "Metadata/Items/Armours/Shields/FourShieldDex3Endgame", + "ItemClassesKey": 26, + "Width": 2, + "Height": 2, + "Name": "Expert Plated Buckler", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 227 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14248, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2560, + "Id": "Metadata/Items/Armours/Shields/FourShieldDex6Endgame", + "ItemClassesKey": 26, + "Width": 2, + "Height": 2, + "Name": "Expert Spiked Buckler", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 227 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14251, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2561, + "Id": "Metadata/Items/Armours/Shields/FourShieldDex8Endgame", + "ItemClassesKey": 26, + "Width": 2, + "Height": 2, + "Name": "Expert Edged Buckler", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 39, + 227 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14253, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2562, + "Id": "Metadata/Items/Armours/Focii/FourFocus3Endgame", + "ItemClassesKey": 79, + "Width": 2, + "Height": 3, + "Name": "Expert Antler Focus", + "DropLevel": 65, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14261, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2563, + "Id": "Metadata/Items/Armours/Focii/FourFocus6Endgame", + "ItemClassesKey": 79, + "Width": 2, + "Height": 3, + "Name": "Expert Crystal Focus", + "DropLevel": 70, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14264, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2564, + "Id": "Metadata/Items/Armours/Focii/FourFocus8Endgame", + "ItemClassesKey": 79, + "Width": 2, + "Height": 3, + "Name": "Expert Plumed Focus", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 40 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 14266, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2565, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandMaces/FourOneHandMace3Endgame", + "ItemClassesKey": 12, + "Width": 2, + "Height": 3, + "Name": "Expert Slim Mace", + "DropLevel": 67, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13814, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2566, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandMaces/FourOneHandMace6Endgame", + "ItemClassesKey": 12, + "Width": 2, + "Height": 3, + "Name": "Expert Plated Mace", + "DropLevel": 72, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13817, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2567, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandMaces/FourOneHandMace2Endgame", + "ItemClassesKey": 12, + "Width": 2, + "Height": 3, + "Name": "Expert Smithing Hammer", + "DropLevel": 77, + "Implicit_ModsKeys": [ + 1543 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13813, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2568, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandMaces/FourOneHandMace5Endgame", + "ItemClassesKey": 12, + "Width": 2, + "Height": 3, + "Name": "Expert Warpick", + "DropLevel": 78, + "Implicit_ModsKeys": [ + 1544 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13816, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2569, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandMaces/FourOneHandMace8Endgame", + "ItemClassesKey": 12, + "Width": 2, + "Height": 3, + "Name": "Expert Construct Hammer", + "DropLevel": 79, + "Implicit_ModsKeys": [ + 1545 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13819, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2570, + "Id": "Metadata/Items/Weapons/OneHandWeapons/OneHandMaces/FourOneHandMace7Endgame", + "ItemClassesKey": 12, + "Width": 2, + "Height": 3, + "Name": "Expert Brigand Mace", + "DropLevel": 77, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13818, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2571, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandMaces/FourTwoHandMace3Endgame", + "ItemClassesKey": 17, + "Width": 2, + "Height": 4, + "Name": "Expert Forge Maul", + "DropLevel": 67, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13827, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2572, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandMaces/FourTwoHandMace6Endgame", + "ItemClassesKey": 17, + "Width": 2, + "Height": 4, + "Name": "Expert Temple Maul", + "DropLevel": 72, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13830, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2573, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandMaces/FourTwoHandMace2Endgame", + "ItemClassesKey": 17, + "Width": 2, + "Height": 4, + "Name": "Expert Oak Greathammer", + "DropLevel": 77, + "Implicit_ModsKeys": [ + 1546 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13826, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2574, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandMaces/FourTwoHandMace5Endgame", + "ItemClassesKey": 17, + "Width": 2, + "Height": 4, + "Name": "Expert Cultist Greathammer", + "DropLevel": 78, + "Implicit_ModsKeys": [ + 1548 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13829, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2575, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandMaces/FourTwoHandMace8Endgame", + "ItemClassesKey": 17, + "Width": 2, + "Height": 4, + "Name": "Expert Crumbling Maul", + "DropLevel": 79, + "Implicit_ModsKeys": [ + 1549 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13832, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2576, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/TwoHandMaces/FourTwoHandMace7Endgame", + "ItemClassesKey": 17, + "Width": 2, + "Height": 4, + "Name": "Expert Leaden Greathammer", + "DropLevel": 77, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13831, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2577, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourQuarterstaff3Endgame", + "ItemClassesKey": 57, + "Width": 2, + "Height": 4, + "Name": "Expert Gothic Quarterstaff", + "DropLevel": 67, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13879, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2578, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourQuarterstaff5Endgame", + "ItemClassesKey": 57, + "Width": 2, + "Height": 4, + "Name": "Expert Crescent Quarterstaff", + "DropLevel": 72, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13881, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2579, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourQuarterstaff2Endgame", + "ItemClassesKey": 57, + "Width": 2, + "Height": 4, + "Name": "Expert Long Quarterstaff", + "DropLevel": 77, + "Implicit_ModsKeys": [ + 1565 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13878, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2580, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourQuarterstaff4Endgame", + "ItemClassesKey": 57, + "Width": 2, + "Height": 4, + "Name": "Expert Crackling Quarterstaff", + "DropLevel": 78, + "Implicit_ModsKeys": [ + 1566 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13880, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2581, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourQuarterstaff8Endgame", + "ItemClassesKey": 57, + "Width": 2, + "Height": 4, + "Name": "Expert Barrier Quarterstaff", + "DropLevel": 79, + "Implicit_ModsKeys": [ + 1567 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13884, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2582, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Staves/FourQuarterstaff7Endgame", + "ItemClassesKey": 57, + "Width": 2, + "Height": 4, + "Name": "Expert Slicing Quarterstaff", + "DropLevel": 77, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13883, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2583, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Bows/FourBow2Endgame", + "ItemClassesKey": 13, + "Width": 2, + "Height": 4, + "Name": "Expert Shortbow", + "DropLevel": 67, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13930, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2584, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Bows/FourBow5Endgame", + "ItemClassesKey": 13, + "Width": 2, + "Height": 4, + "Name": "Expert Composite Bow", + "DropLevel": 72, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13933, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2585, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Bows/FourBow3Endgame", + "ItemClassesKey": 13, + "Width": 2, + "Height": 4, + "Name": "Expert Warden Bow", + "DropLevel": 77, + "Implicit_ModsKeys": [ + 1568 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13931, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2586, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Bows/FourBow6Endgame", + "ItemClassesKey": 13, + "Width": 2, + "Height": 4, + "Name": "Expert Dualstring Bow", + "DropLevel": 78, + "Implicit_ModsKeys": [ + 1569 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13934, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2587, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Bows/FourBow7Endgame", + "ItemClassesKey": 13, + "Width": 2, + "Height": 4, + "Name": "Expert Cultist Bow", + "DropLevel": 79, + "Implicit_ModsKeys": [ + 1570 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13935, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2588, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Bows/FourBow8Endgame", + "ItemClassesKey": 13, + "Width": 2, + "Height": 4, + "Name": "Expert Zealot Bow", + "DropLevel": 77, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13936, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2589, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Crossbows/FourCrossbow3Endgame", + "ItemClassesKey": 78, + "Width": 2, + "Height": 4, + "Name": "Expert Sturdy Crossbow", + "DropLevel": 67, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13944, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2590, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Crossbows/FourCrossbow4Endgame", + "ItemClassesKey": 78, + "Width": 2, + "Height": 4, + "Name": "Expert Varnished Crossbow", + "DropLevel": 72, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13945, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2591, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Crossbows/FourCrossbow2Endgame", + "ItemClassesKey": 78, + "Width": 2, + "Height": 4, + "Name": "Expert Tense Crossbow", + "DropLevel": 77, + "Implicit_ModsKeys": [ + 1572 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13943, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2592, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Crossbows/FourCrossbow5Endgame", + "ItemClassesKey": 78, + "Width": 2, + "Height": 4, + "Name": "Expert Dyad Crossbow", + "DropLevel": 78, + "Implicit_ModsKeys": [ + 1573 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13946, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2593, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Crossbows/FourCrossbow7Endgame", + "ItemClassesKey": 78, + "Width": 2, + "Height": 4, + "Name": "Expert Bombard Crossbow", + "DropLevel": 79, + "Implicit_ModsKeys": [ + 1574 + ], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13948, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2594, + "Id": "Metadata/Items/Weapons/TwoHandWeapons/Crossbows/FourCrossbow8Endgame", + "ItemClassesKey": 78, + "Width": 2, + "Height": 4, + "Name": "Expert Forlorn Crossbow", + "DropLevel": 77, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 13949, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2595, + "Id": "Metadata/Items/QuestItems/Gallows/Act1/Lute", + "ItemClassesKey": 31, + "Width": 2, + "Height": 3, + "Name": "Лютня Уны", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13697, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2596, + "Id": "Metadata/Items/QuestItems/Gallows/Act1/Spikes", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Рунные шипы", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13696, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2597, + "Id": "Metadata/Items/QuestItems/Gallows/Act1/CroneDrop", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Head of the Winter Wolf", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13717, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2598, + "Id": "Metadata/Items/QuestItems/Gallows/Act1/ManorGargoyleDrop", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Candlemass' Essence", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13718, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2599, + "Id": "Metadata/Items/QuestItems/Gallows/Act1/ManorGargoyleDropCruel", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Candlemass' Essence", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13718, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2600, + "Id": "Metadata/Items/QuestItems/Gallows/Act1/FinnsPotion", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Варево бродяги", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13719, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2601, + "Id": "Metadata/Items/QuestItems/Gallows/Act1/RunedArtifact1", + "ItemClassesKey": 31, + "Width": 2, + "Height": 1, + "Name": "Runed Girdle", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13690, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2602, + "Id": "Metadata/Items/QuestItems/Gallows/Act1/RunedArtifact2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 2, + "Name": "Runed Guard", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13691, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2603, + "Id": "Metadata/Items/QuestItems/Gallows/Act1/RunedArtifact3", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Runed Skull Cap", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13692, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2604, + "Id": "Metadata/Items/QuestItems/Gallows/Act1/GraveyardKey1", + "ItemClassesKey": 31, + "Width": 2, + "Height": 1, + "Name": "Asinia's Memorial Key Piece", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13693, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2605, + "Id": "Metadata/Items/QuestItems/Gallows/Act1/GraveyardKey2", + "ItemClassesKey": 31, + "Width": 2, + "Height": 1, + "Name": "Draven's Memorial Key Piece", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13694, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2606, + "Id": "Metadata/Items/QuestItems/Gallows/Act1/RingOfTheCount", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Кольцо графа Лакланна", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13695, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2607, + "Id": "Metadata/Items/QuestItems/Gallows/Act1/AncestralSteel", + "ItemClassesKey": 31, + "Width": 2, + "Height": 1, + "Name": "Ancestral Steel", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13699, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2608, + "Id": "Metadata/Items/QuestItems/Gallows/Act1/CrowbellSkillBook", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Book of Specialisation", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13700, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2609, + "Id": "Metadata/Items/QuestItems/Gallows/Act1/UnaSkillBook", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Book of Specialisation", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13701, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2610, + "Id": "Metadata/Items/QuestItems/Gallows/Act1/ScarecrowDrop", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "[DNT] Scarecrow Drop", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13702, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2611, + "Id": "Metadata/Items/QuestItems/Gallows/Act1/SpiritDraught1", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Gembloom Skull", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13703, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2612, + "Id": "Metadata/Items/QuestItems/Gallows/Act1/CraftingBenchTools", + "ItemClassesKey": 31, + "Width": 3, + "Height": 2, + "Name": "Smithing Tools", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13706, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2613, + "Id": "Metadata/Items/QuestItems/Gallows/Act1/GuillotineExecutionerDrop", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "[DNT] Guillotine Executioner Drop", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13707, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2614, + "Id": "Metadata/Items/QuestItems/Gallows/Act1/GargoyleGolemDrop", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "[DNT] Gargoyle Golem Drop", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13708, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2615, + "Id": "Metadata/Items/QuestItems/Gallows/Act2/AncientGateKey", + "ItemClassesKey": 31, + "Width": 4, + "Height": 2, + "Name": "Рог Вастири", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13709, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2616, + "Id": "Metadata/Items/QuestItems/Gallows/Act2/SerpentClanCasterBossDrop", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Book of Specialisation", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13710, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2617, + "Id": "Metadata/Items/QuestItems/Gallows/Act2/BoneCultistShieldBossDrop", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "[DNT] Bone Cultist Shield Boss Drop", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13711, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2618, + "Id": "Metadata/Items/QuestItems/Gallows/Act2/MastodonTusks", + "ItemClassesKey": 31, + "Width": 3, + "Height": 2, + "Name": "Бивни мастодонта", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15081, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2619, + "Id": "Metadata/Items/QuestItems/Gallows/Act2/EyeOfTheTitan", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Пламенный рубин", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15082, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2620, + "Id": "Metadata/Items/QuestItems/Gallows/Act2/EssenceOfTheWaterGod", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Сущность воды", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15083, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2621, + "Id": "Metadata/Items/QuestItems/Gallows/Act2/MedallionSerpentClan", + "ItemClassesKey": 31, + "Width": 1, + "Height": 2, + "Name": "Реликвия клана Кабалы", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15084, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2622, + "Id": "Metadata/Items/QuestItems/Gallows/Act2/MedallionHyenaClan", + "ItemClassesKey": 31, + "Width": 1, + "Height": 2, + "Name": "Реликвия клана Солнца", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15085, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2623, + "Id": "Metadata/Items/QuestItems/Gallows/Act2/MedallionCombined", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Печать Третьего Договора", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15086, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2624, + "Id": "Metadata/Items/QuestItems/Gallows/Act2/MaggotHusk", + "ItemClassesKey": 31, + "Width": 1, + "Height": 3, + "Name": "Maggot Husk", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15087, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2625, + "Id": "Metadata/Items/QuestItems/Gallows/Act2/StitchedBladder", + "ItemClassesKey": 31, + "Width": 2, + "Height": 1, + "Name": "Stitched Bladder", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15088, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2626, + "Id": "Metadata/Items/QuestItems/Gallows/Act2/GasFilledBladder", + "ItemClassesKey": 31, + "Width": 2, + "Height": 1, + "Name": "Gas Filled Bladder", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15089, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2627, + "Id": "Metadata/Items/QuestItems/Gallows/Act2/BurningHeart", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Burning Heart", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15091, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2628, + "Id": "Metadata/Items/QuestItems/Gallows/Act2/DjinnFlaskEmpty", + "ItemClassesKey": 31, + "Width": 1, + "Height": 2, + "Name": "Empty Decanter Djinnus", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15092, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2629, + "Id": "Metadata/Items/QuestItems/Gallows/Act2/DjinnFlaskFull", + "ItemClassesKey": 31, + "Width": 1, + "Height": 2, + "Name": "Full Decanter Djinnus", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15093, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2630, + "Id": "Metadata/Items/QuestItems/Gallows/Act2/SuicideNote", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Прощальное письмо", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15094, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2631, + "Id": "Metadata/Items/QuestItems/Gallows/Act2/FinalLetterSkillBook", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Book of Specialisation", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15095, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2632, + "Id": "Metadata/Items/QuestItems/Gallows/Act2/SpiritDraught2", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Gemrot Skull", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13704, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2633, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/DredgeFiendShamanBossDrop", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "[DNT] Dredge Fiend Shaman Boss Drop", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13712, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2634, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/QuadrillaBossDrop", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "[DNT] Quadrilla Boss Drop", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13713, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2635, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/QuadrillaSkillBook", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Book of Specialisation", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13714, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2636, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/BogWitchSkillBook", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Book of Specialisation", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13715, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2637, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/ViperNapuatziDrop", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "[DNT] Viper Napuatzi Drop", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13716, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2638, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/SnakeLadyPotionConsumable", + "ItemClassesKey": 31, + "Width": 1, + "Height": 2, + "Name": "Venom Draught of Stone", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13721, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2639, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/SnakeLadyPotionConsumable2", + "ItemClassesKey": 31, + "Width": 1, + "Height": 2, + "Name": "Venom Draught of the Veil", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13722, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2640, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/SnakeLadyPotionConsumable3", + "ItemClassesKey": 31, + "Width": 1, + "Height": 2, + "Name": "Venom Draught of Clarity", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13723, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2641, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/SnakeLadyPotionConsumable4", + "ItemClassesKey": 31, + "Width": 1, + "Height": 2, + "Name": "Venom Draught of the Lost", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13721, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2642, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/SnakeLadyPotionConsumable5", + "ItemClassesKey": 31, + "Width": 1, + "Height": 2, + "Name": "Venom Draught of the Sky", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13722, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2643, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/SnakeLadyPotionConsumable6", + "ItemClassesKey": 31, + "Width": 1, + "Height": 2, + "Name": "Venom Draught of the Marshes", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13723, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2644, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/SnakeLadyPotion", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Яд трупной змеи", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13720, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2645, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/VaalKeyGem", + "ItemClassesKey": 80, + "Width": 1, + "Height": 2, + "Name": "Малое Ядро душ", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15096, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2646, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/VaalKeyGem2", + "ItemClassesKey": 80, + "Width": 1, + "Height": 2, + "Name": "Малое Ядро душ", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15096, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2647, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/VaalKeyGem3", + "ItemClassesKey": 80, + "Width": 1, + "Height": 2, + "Name": "Малое Ядро душ", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15096, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2648, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/VaalKeyGem4", + "ItemClassesKey": 80, + "Width": 1, + "Height": 2, + "Name": "Small Soul Core", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15096, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2649, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/VaalKeyGemMedium", + "ItemClassesKey": 80, + "Width": 2, + "Height": 2, + "Name": "Среднее Ядро душ", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15100, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2650, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/VaalKeyGemMedium2", + "ItemClassesKey": 80, + "Width": 2, + "Height": 2, + "Name": "Среднее Ядро душ", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15100, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2651, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/VaalSoulGem", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Большое Ядро душ", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15097, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2652, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/SoulCoreConsumable", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "The Flame Core", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15099, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2653, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/ZigguratDoorKey", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Храмовый идол", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15102, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2654, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/BogWitchBroom", + "ItemClassesKey": 31, + "Width": 2, + "Height": 3, + "Name": "Жуткое копьё Игнагдук", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15101, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2655, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/EelMonsterBossDrop", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "[DNT] Eel Monster Boss Drop", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15103, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2656, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/VaalForgermasterHammer", + "ItemClassesKey": 31, + "Width": 3, + "Height": 2, + "Name": "Молот Камасы", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15104, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2657, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/FrostCore1", + "ItemClassesKey": 80, + "Width": 1, + "Height": 2, + "Name": "Frost Core", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15105, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2658, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/FrostCore2", + "ItemClassesKey": 80, + "Width": 1, + "Height": 2, + "Name": "Frost Core", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15105, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2659, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/GoldIdol1", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Золотой идол", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15106, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2660, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/GoldIdol2", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Большой идол", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15107, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2661, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/GoldIdol3", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Великолепный идол", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15108, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2662, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/GoldIdol4", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Изысканный идол", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15109, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2663, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/GoldIdol5", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Изящный идол", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15110, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2664, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/GoldIdol6", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Исключительный идол", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15111, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2665, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/AggoratDagger", + "ItemClassesKey": 31, + "Width": 1, + "Height": 3, + "Name": "Жертвенный кинжал", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15112, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2666, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/VaalSunWorshipperBossDrop", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "[DNT] Vaal Sun Worshipper Boss Drop", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15113, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2667, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/VaalBloodPriestessBossDrop", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "[DNT] Vaal Blood Priestess Boss Drop", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15114, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2668, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/SacrificialHeart", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Жертвенное сердце", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15115, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2669, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/SpiritDraught3", + "ItemClassesKey": 31, + "Width": 2, + "Height": 2, + "Name": "Gemcrust Skull", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 1045 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 13705, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2670, + "Id": "Metadata/Items/Gems/SkillGemGlacialCascade", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Ледяной каскад", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8942, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2671, + "Id": "Metadata/Items/Gems/SkillGemComet", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Comet", + "DropLevel": 42, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8947, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2672, + "Id": "Metadata/Items/Gems/SkillGemBladeNova", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Blade Nova", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8570, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2673, + "Id": "Metadata/Items/Gems/SkillGemFlameSlice", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Flame Slice", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8410, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2674, + "Id": "Metadata/Items/Gems/SkillGemRingOfBlades", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] RingOfBlades", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8570, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2675, + "Id": "Metadata/Items/Gems/SkillGemComboKnifeThrow", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Combo Knife Throw", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8570, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2676, + "Id": "Metadata/Items/Gems/SkillGemTripleSlash", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Triple Slash Combo", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8410, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2677, + "Id": "Metadata/Items/Gems/SkillGemHyperSlash", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Hyper Slash", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8406, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2678, + "Id": "Metadata/Items/Gems/SkillGemShadowDash", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Shadow Dash", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8733, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2679, + "Id": "Metadata/Items/Gems/SkillGemShadowAmbush", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Shadow Ambush", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8474, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2680, + "Id": "Metadata/items/Gems/SkillGemStaffConsecrate", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Consecrate", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2681, + "Id": "Metadata/Items/Gems/SkillGemRipwireBallista", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Ripwire Ballista", + "DropLevel": 23, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15548, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2682, + "Id": "Metadata/Items/Gems/SkillGemManaTempest", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Mana Tempest", + "DropLevel": 32, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8948, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2683, + "Id": "Metadata/Items/Gems/SkillGemUncut", + "ItemClassesKey": 91, + "Width": 1, + "Height": 1, + "Name": "Uncut Skill Gem", + "DropLevel": 4, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15264, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2684, + "Id": "Metadata/Items/Gems/SkillGemUncutQuest", + "ItemClassesKey": 91, + "Width": 1, + "Height": 1, + "Name": "Uncut Skill Gem", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15264, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2685, + "Id": "Metadata/Items/Gems/SupportGemUncut", + "ItemClassesKey": 101, + "Width": 1, + "Height": 1, + "Name": "Uncut Support Gem", + "DropLevel": 4, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15265, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2686, + "Id": "Metadata/Items/Gems/SkillGemKillingPalm", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Killing Palm", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8943, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2687, + "Id": "Metadata/Items/Gems/SkillGemShatteringPalm", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Shattering Palm", + "DropLevel": 42, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15279, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2688, + "Id": "Metadata/Items/Gems/SkillGemVolcano", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Volcano", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 301 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 8956, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2689, + "Id": "Metadata/Items/Gems/SkillGemSummonWolfCompanion", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Summon Wolf", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8955, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2690, + "Id": "Metadata/Items/Gems/SkillGemSpinningThrow", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Spinning Throw", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8609, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2691, + "Id": "Metadata/Items/Gems/SkillGemSpiralVolley", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Spiral Volley", + "DropLevel": 53, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15549, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2692, + "Id": "Metadata/Items/Gems/SkillGemDodgeRoll", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Dodge Roll", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8776, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2693, + "Id": "Metadata/Items/Gems/SkillGemShadowThiefSlash", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Shadow Thief Slash", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8611, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2694, + "Id": "Metadata/Items/Gems/SkillGemLeapingAxeCatch", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Leaping Axe Catch", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8405, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2695, + "Id": "Metadata/Items/Gems/SkillGemStormBlade", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Storm Blade", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8528, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2696, + "Id": "Metadata/Items/Gems/SkillGemPlungingBlade", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Plunging Blade", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8741, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2697, + "Id": "Metadata/Items/Gems/SkillGemWolfHowl", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Howl", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8957, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2698, + "Id": "Metadata/Items/Gems/SkillGemSpiralThrow", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Spiral Throw", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8609, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2699, + "Id": "Metadata/Items/Gems/SkillGemWolfLeapAttack", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Leaping Claw", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8958, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2700, + "Id": "Metadata/Items/Gems/SkillGemLightningBolt", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Lightning Bolt", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2701, + "Id": "Metadata/Items/Gems/SkillGemBearRampage", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Rampage", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8954, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2702, + "Id": "Metadata/Items/Gems/SupportEnervation", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Enervation", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15384, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2703, + "Id": "Metadata/items/Gems/SkillGemStaffUnleash", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Unleash", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2704, + "Id": "Metadata/Items/Currency/PrizeDominusPin", + "ItemClassesKey": 95, + "Width": 2, + "Height": 2, + "Name": "Convention Treasure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2705, + "Id": "Metadata/Items/Currency/PrizeBrutusPin", + "ItemClassesKey": 95, + "Width": 2, + "Height": 2, + "Name": "Convention Treasure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2706, + "Id": "Metadata/Items/Currency/PrizePietyPin", + "ItemClassesKey": 95, + "Width": 2, + "Height": 2, + "Name": "Convention Treasure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2707, + "Id": "Metadata/Items/Currency/PrizeWhiteMapPin", + "ItemClassesKey": 95, + "Width": 2, + "Height": 2, + "Name": "Convention Treasure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2708, + "Id": "Metadata/Items/Currency/PrizeYellowMapPin", + "ItemClassesKey": 95, + "Width": 2, + "Height": 2, + "Name": "Convention Treasure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2709, + "Id": "Metadata/Items/Currency/PrizeRedMapPin", + "ItemClassesKey": 95, + "Width": 2, + "Height": 2, + "Name": "Convention Treasure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2710, + "Id": "Metadata/Items/Currency/PrizeTabulaRasaPin", + "ItemClassesKey": 95, + "Width": 2, + "Height": 2, + "Name": "Convention Treasure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2711, + "Id": "Metadata/Items/Currency/PrizeKitavaPin", + "ItemClassesKey": 95, + "Width": 2, + "Height": 2, + "Name": "Convention Treasure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2712, + "Id": "Metadata/Items/Currency/PrizeJewellersOrbPin", + "ItemClassesKey": 95, + "Width": 2, + "Height": 2, + "Name": "Convention Treasure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2713, + "Id": "Metadata/Items/Currency/PrizePortalScrollPin", + "ItemClassesKey": 95, + "Width": 2, + "Height": 2, + "Name": "Convention Treasure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2714, + "Id": "Metadata/Items/Currency/PrizeWisdomScrollPin", + "ItemClassesKey": 95, + "Width": 2, + "Height": 2, + "Name": "Convention Treasure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2715, + "Id": "Metadata/Items/Currency/PrizeQuicksilverFlaskPin", + "ItemClassesKey": 95, + "Width": 2, + "Height": 2, + "Name": "Convention Treasure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2716, + "Id": "Metadata/Items/Currency/PrizeDivineOrbPin", + "ItemClassesKey": 95, + "Width": 2, + "Height": 2, + "Name": "Convention Treasure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2717, + "Id": "Metadata/Items/Currency/PrizeOrbofFusingPin", + "ItemClassesKey": 95, + "Width": 2, + "Height": 2, + "Name": "Convention Treasure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2718, + "Id": "Metadata/Items/Currency/PrizeExaltedOrbPin", + "ItemClassesKey": 95, + "Width": 2, + "Height": 2, + "Name": "Convention Treasure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2719, + "Id": "Metadata/Items/Currency/PrizeChiselPin", + "ItemClassesKey": 95, + "Width": 2, + "Height": 2, + "Name": "Convention Treasure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2720, + "Id": "Metadata/Items/Currency/PrizeChaosOrbPin", + "ItemClassesKey": 95, + "Width": 2, + "Height": 2, + "Name": "Convention Treasure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2721, + "Id": "Metadata/Items/Currency/PrizeDuelistPin", + "ItemClassesKey": 95, + "Width": 2, + "Height": 2, + "Name": "Convention Treasure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2722, + "Id": "Metadata/Items/Currency/PrizeMarauderPin", + "ItemClassesKey": 95, + "Width": 2, + "Height": 2, + "Name": "Convention Treasure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2723, + "Id": "Metadata/Items/Currency/PrizeTemplarPin", + "ItemClassesKey": 95, + "Width": 2, + "Height": 2, + "Name": "Convention Treasure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2724, + "Id": "Metadata/Items/Currency/PrizeRangerPin", + "ItemClassesKey": 95, + "Width": 2, + "Height": 2, + "Name": "Convention Treasure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2725, + "Id": "Metadata/Items/Currency/PrizeWitchPin", + "ItemClassesKey": 95, + "Width": 2, + "Height": 2, + "Name": "Convention Treasure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2726, + "Id": "Metadata/Items/Currency/PrizeShadowPin", + "ItemClassesKey": 95, + "Width": 2, + "Height": 2, + "Name": "Convention Treasure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2727, + "Id": "Metadata/Items/Currency/PrizeWitchDeskPad", + "ItemClassesKey": 95, + "Width": 2, + "Height": 2, + "Name": "Convention Treasure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2728, + "Id": "Metadata/Items/Currency/PrizeMarauderDeskPad", + "ItemClassesKey": 95, + "Width": 2, + "Height": 2, + "Name": "Convention Treasure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2729, + "Id": "Metadata/Items/Currency/PrizeRangerDeskPad", + "ItemClassesKey": 95, + "Width": 2, + "Height": 2, + "Name": "Convention Treasure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2730, + "Id": "Metadata/Items/Currency/PrizeChaosOrbDeskPad", + "ItemClassesKey": 95, + "Width": 2, + "Height": 2, + "Name": "Convention Treasure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2731, + "Id": "Metadata/Items/Currency/PrizeCelestialCatSocks", + "ItemClassesKey": 95, + "Width": 2, + "Height": 2, + "Name": "Convention Treasure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2732, + "Id": "Metadata/Items/Currency/PrizeChaosOrbSocks", + "ItemClassesKey": 95, + "Width": 2, + "Height": 2, + "Name": "Convention Treasure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2733, + "Id": "Metadata/Items/Currency/PrizeTShirt", + "ItemClassesKey": 95, + "Width": 2, + "Height": 2, + "Name": "Convention Treasure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2734, + "Id": "Metadata/Items/Currency/PrizeHoodie", + "ItemClassesKey": 95, + "Width": 2, + "Height": 2, + "Name": "Convention Treasure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2735, + "Id": "Metadata/Items/Gems/SkillGemLightningStorm", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Lightning Storm", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8959, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2736, + "Id": "Metadata/Items/Gems/SupportGemChanceToFreeze", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Chance to Freeze", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8566, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2737, + "Id": "Metadata/Items/Gems/SupportGemEssenceHarvest", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Essence Harvest", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8799, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2738, + "Id": "Metadata/Items/Gems/SkillGemFuriousSlam", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Furious Slam", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8952, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2739, + "Id": "Metadata/Items/Gems/SupportGemFerociousRoar", + "ItemClassesKey": 76, + "Width": 1, + "Height": 1, + "Name": "Ferocious Roar", + "DropLevel": 18, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8951, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2740, + "Id": "Metadata/Items/Gems/SkillGemCastOnShock", + "ItemClassesKey": 76, + "Width": 1, + "Height": 1, + "Name": "Cast on Shock", + "DropLevel": 27, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8960, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2741, + "Id": "Metadata/Items/Gems/SupportGemInvocation", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Воззвание", + "DropLevel": 18, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8961, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2742, + "Id": "Metadata/Items/Gems/SkillGemCastOnFreeze", + "ItemClassesKey": 76, + "Width": 1, + "Height": 1, + "Name": "Cast on Freeze", + "DropLevel": 27, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8962, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2743, + "Id": "Metadata/Items/Gems/SkillGemCastOnIgnite", + "ItemClassesKey": 76, + "Width": 1, + "Height": 1, + "Name": "Cast on Ignite", + "DropLevel": 27, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8963, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2744, + "Id": "Metadata/Items/Gems/SkillGemCastOnMeleeKill", + "ItemClassesKey": 76, + "Width": 1, + "Height": 1, + "Name": "Cast on Melee Kill", + "DropLevel": 27, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8964, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2745, + "Id": "Metadata/Items/Gems/SkillGemCastOnDeath", + "ItemClassesKey": 76, + "Width": 1, + "Height": 1, + "Name": "Cast on Death", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8965, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2746, + "Id": "Metadata/Items/Gems/SkillGemCastOnCritical", + "ItemClassesKey": 76, + "Width": 1, + "Height": 1, + "Name": "Cast on Critical", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8966, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2747, + "Id": "Metadata/Items/Gems/SkillGemCastWhenStunned", + "ItemClassesKey": 76, + "Width": 1, + "Height": 1, + "Name": "Cast when Stunned", + "DropLevel": 61, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8967, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2748, + "Id": "Metadata/Items/Gems/SkillGemCastWhenDamageTaken", + "ItemClassesKey": 76, + "Width": 1, + "Height": 1, + "Name": "Cast when Damage Taken", + "DropLevel": 61, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8968, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2749, + "Id": "Metadata/Items/Gems/SkillGemUnknown1", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2750, + "Id": "Metadata/Items/Gems/SkillGemUnknown2", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2751, + "Id": "Metadata/Items/Gems/SkillGemUnknown3", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2752, + "Id": "Metadata/Items/Gems/SkillGemUnknown4", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 7, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2753, + "Id": "Metadata/Items/Gems/SkillGemUnknown5", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 7, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2754, + "Id": "Metadata/Items/Gems/SkillGemUnknown6", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 15, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2755, + "Id": "Metadata/Items/Gems/SkillGemUnknown7", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 15, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2756, + "Id": "Metadata/Items/Gems/SkillGemUnknown8", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 23, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2757, + "Id": "Metadata/Items/Gems/SkillGemUnknown9", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 23, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2758, + "Id": "Metadata/Items/Gems/SkillGemUnknown10", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 23, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2759, + "Id": "Metadata/Items/Gems/SkillGemUnknown11", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 32, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2760, + "Id": "Metadata/Items/Gems/SkillGemUnknown12", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 32, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2761, + "Id": "Metadata/Items/Gems/SkillGemUnknown13", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 42, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2762, + "Id": "Metadata/Items/Gems/SkillGemUnknown14", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 42, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2763, + "Id": "Metadata/Items/Gems/SkillGemUnknown15", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 53, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2764, + "Id": "Metadata/Items/Gems/SkillGemUnknown16", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 53, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2765, + "Id": "Metadata/Items/Gems/SkillGemUnknown17", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 53, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2766, + "Id": "Metadata/Items/Gems/SkillGemUnknown18", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2767, + "Id": "Metadata/Items/Gems/SkillGemUnknown19", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2768, + "Id": "Metadata/Items/Gems/SkillGemUnknown20", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2769, + "Id": "Metadata/Items/Gems/SkillGemUnknown21", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2770, + "Id": "Metadata/Items/Gems/SkillGemUnknown22", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2771, + "Id": "Metadata/Items/Gems/SkillGemUnknown23", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2772, + "Id": "Metadata/Items/Gems/SkillGemUnknown24", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2773, + "Id": "Metadata/Items/Gems/SkillGemUnknown25", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2774, + "Id": "Metadata/Items/Gems/SkillGemUnknown26", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2775, + "Id": "Metadata/Items/Gems/SkillGemUnknown27", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2776, + "Id": "Metadata/Items/Gems/ReservationSkillGemUnknown1", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2777, + "Id": "Metadata/Items/Gems/ReservationSkillGemUnknown2", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2778, + "Id": "Metadata/Items/Gems/ReservationSkillGemUnknown3", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2779, + "Id": "Metadata/Items/Gems/ReservationSkillGemUnknown4", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2780, + "Id": "Metadata/Items/Gems/ReservationSkillGemUnknown5", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2781, + "Id": "Metadata/Items/Gems/ReservationSkillGemUnknown6", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2782, + "Id": "Metadata/Items/Gems/ReservationSkillGemUnknown7", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2783, + "Id": "Metadata/Items/Gems/ReservationSkillGemUnknown8", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2784, + "Id": "Metadata/Items/Gems/ReservationSkillGemUnknown9", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2785, + "Id": "Metadata/Items/Gems/SupportGemUnknown1", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2786, + "Id": "Metadata/Items/Gems/SupportGemUnknown2", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2787, + "Id": "Metadata/Items/Gems/SupportGemUnknown3", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2788, + "Id": "Metadata/Items/Gems/SupportGemUnknown4", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2789, + "Id": "Metadata/Items/Gems/SupportGemUnknown5", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2790, + "Id": "Metadata/Items/Gems/SupportGemUnknown6", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2791, + "Id": "Metadata/Items/Gems/SupportGemUnknown7", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2792, + "Id": "Metadata/Items/Gems/SupportGemUnknown8", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2793, + "Id": "Metadata/Items/Gems/SupportGemUnknown9", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Coming Soon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8972, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2794, + "Id": "Metadata/Items/Gems/SkillGemBarrierInvocation", + "ItemClassesKey": 76, + "Width": 1, + "Height": 1, + "Name": "Barrier Invocation", + "DropLevel": 27, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15363, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2795, + "Id": "Metadata/Items/Gems/SkillGemCastOnDodge", + "ItemClassesKey": 76, + "Width": 1, + "Height": 1, + "Name": "Cast on Dodge", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8969, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2796, + "Id": "Metadata/Items/Gems/SkillGemCastWhileChannelling", + "ItemClassesKey": 76, + "Width": 1, + "Height": 1, + "Name": "Cast while Channelling", + "DropLevel": 61, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8973, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2797, + "Id": "Metadata/Items/Gems/SkillGemCastOnMeleeStun", + "ItemClassesKey": 76, + "Width": 1, + "Height": 1, + "Name": "Cast on Melee Stun", + "DropLevel": 27, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8974, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2798, + "Id": "Metadata/Items/Gems/SkillGemLingeringIllusion", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Lingering Illusion", + "DropLevel": 27, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15432, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2799, + "Id": "Metadata/Items/Gems/SkillGemGhostDance", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Ghost Dance", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15579, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2800, + "Id": "Metadata/Items/Gems/SkillGemBindSpectre", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Bind Spectre", + "DropLevel": 23, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8482, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2801, + "Id": "Metadata/Items/Gems/SkillGemDominatingAura", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Dominating Aura", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8514, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2802, + "Id": "Metadata/Items/Gems/SkillGemShroud", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Shroud", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8473, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2803, + "Id": "Metadata/Items/Gems/SkillGemSummonMercenaryCompanion", + "ItemClassesKey": 76, + "Width": 1, + "Height": 1, + "Name": "Summon Companion", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15355, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2804, + "Id": "Metadata/Items/Gems/SkillGemAncestralWarriorTotem", + "ItemClassesKey": 76, + "Width": 1, + "Height": 1, + "Name": "Ancestral Warrior Totem", + "DropLevel": 53, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15389, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2805, + "Id": "Metadata/Items/Gems/SkillGemMetaSpellTotem", + "ItemClassesKey": 76, + "Width": 1, + "Height": 1, + "Name": "[DNT] Meta Spell Totem", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8557, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2806, + "Id": "Metadata/Items/Gems/SkillGemMetaBowTotem", + "ItemClassesKey": 76, + "Width": 1, + "Height": 1, + "Name": "[DNT] Meta Bow Totem", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8557, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2807, + "Id": "Metadata/Items/Gems/SkillGemPainOffering", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Pain Offering", + "DropLevel": 15, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8627, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2808, + "Id": "Metadata/Items/Currency/BindSpectreToken", + "ItemClassesKey": 98, + "Width": 1, + "Height": 1, + "Name": "[DNT] Bind Spectre Token", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 13573, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2809, + "Id": "Metadata/Items/Gems/SkillGemTempestFlurry", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Tempest Flurry", + "DropLevel": 15, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15393, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2810, + "Id": "Metadata/Items/Gems/SkillGemStaggeringPalm", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Staggering Palm", + "DropLevel": 7, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15394, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2811, + "Id": "Metadata/Items/Gems/SkillGemChargedStaff", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Charged Staff", + "DropLevel": 32, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15406, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2812, + "Id": "Metadata/Items/Gem/SkillGemSiphoningStrike", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Siphoning Strike", + "DropLevel": 23, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15392, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2813, + "Id": "Metadata/Items/Gem/SkillGemTempestBell", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Tempest Bell", + "DropLevel": 7, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15395, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2814, + "Id": "Metadata/Items/Gem/SkillGemFrozenLocus", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Frozen Locus", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15391, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2815, + "Id": "Metadata/Items/Gem/SkillGemBonestorm", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Bonestorm", + "DropLevel": 15, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15397, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2816, + "Id": "Metadata/Items/Gem/SkillGemBoneCage", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Bone Cage", + "DropLevel": 7, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15396, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2817, + "Id": "Metadata/Items/Gems/SupportGemSpreadingFrost", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Spreading Frost", + "DropLevel": 20, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8979, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2818, + "Id": "Metadata/Items/Gems/SupportGemPinpointCritical", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Pinpoint Critical", + "DropLevel": 15, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15386, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2819, + "Id": "Metadata/Items/Gem/SkillGemUnearth", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Эксгумация", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8427, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2820, + "Id": "Metadata/Items/Gem/SkillGemDetonatingArrow", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Detonating Arrow", + "DropLevel": 32, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15370, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2821, + "Id": "Metadata/Items/Gem/SkillGemPoisonBurstArrow", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Poisonburst Arrow", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15362, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2822, + "Id": "Metadata/Items/Gem/SkillGemToxicGrowth", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Toxic Growth", + "DropLevel": 15, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15367, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2823, + "Id": "Metadata/Items/Gem/SkillGemStormcallerArrow", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Stormcaller Arrow", + "DropLevel": 7, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8872, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2824, + "Id": "Metadata/Items/Gem/SkillGemLightningRod", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Lightning Rod", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15365, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2825, + "Id": "Metadata/Items/Gem/SkillGemSnipe", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Прицельный выстрел", + "DropLevel": 7, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15366, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2826, + "Id": "Metadata/Items/Gem/SkillGemGasArrow", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Gas Arrow", + "DropLevel": 23, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15369, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2827, + "Id": "Metadata/Items/Gem/SkillGemSolarOrb", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Solar Orb", + "DropLevel": 15, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15364, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2828, + "Id": "Metadata/Items/Gem/SkillGemFireball", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Огненный шар", + "DropLevel": 32, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8403, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2829, + "Id": "Metadata/Items/Gem/SkillGemElectrocutingArrow", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Electrocuting Arrow", + "DropLevel": 15, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15368, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2830, + "Id": "Metadata/Items/Gem/SkillGemColdSnap", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Укус стужи", + "DropLevel": 15, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8423, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2831, + "Id": "Metadata/Items/Gem/SkillGemPerfectStrike", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Perfect Strike", + "DropLevel": 15, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15390, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2832, + "Id": "Metadata/Items/Gem/SkillGemShieldBlock", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Raise Shield", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2833, + "Id": "Metadata/Items/Gem/SkillGemResonatingShield", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Resonating Shield", + "DropLevel": 15, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15385, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2834, + "Id": "Metadata/Items/Gem/SkillGemManaRemnants", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Mana Remnants", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8402, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2835, + "Id": "Metadata/Items/Gem/SkillGemMagmaBarrier", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Magma Barrier", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15387, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2836, + "Id": "Metadata/Items/Gems/SkillGemFreezingShards", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Freezing Shards", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2837, + "Id": "Metadata/Items/Gem/SkillGemVineArrow", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Vine Arrow", + "DropLevel": 7, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15371, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2838, + "Id": "Metadata/Items/Gems/SkillGemSummonRhoaMount", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Summon Rhoa Mount", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15388, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2839, + "Id": "Metadata/Items/Gems/SkillGemCorpseCloud", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Разложение", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2840, + "Id": "Metadata/Items/Gems/SupportGemIgnition", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Ignition", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8521, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2841, + "Id": "Metadata/Items/Gems/SupportGemRuthless", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Беспощадность", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9137, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2842, + "Id": "Metadata/Items/Gems/SupportGemUnbreakable", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Unbreakable", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8477, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2843, + "Id": "Metadata/Items/Gems/SupportGemLacerate", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Шанс кровотечения", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9121, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2844, + "Id": "Metadata/Items/Gems/SupportGemBludgeon", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Отбрасывание", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8463, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2845, + "Id": "Metadata/Items/Gems/SupportGemOverpower", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Overpower", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15418, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2846, + "Id": "Metadata/Items/Gems/SupportGemPersistence", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Persistence", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8519, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2847, + "Id": "Metadata/Items/Gems/SupportGemFastForward", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Fast Forward", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8606, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2848, + "Id": "Metadata/Items/Gems/SupportGemRage", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Свирепость", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8794, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2849, + "Id": "Metadata/Items/Gems/SupportGemLifetap", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Заносчивость", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8849, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2850, + "Id": "Metadata/Items/Gems/SupportGemExecute", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Execute", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8868, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2851, + "Id": "Metadata/Items/Gems/SupportGemSearingFlame", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Searing Flame", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15381, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2852, + "Id": "Metadata/Items/Gems/SupportGemBehead", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Обезглавливание", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8867, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2853, + "Id": "Metadata/Items/Gems/SupportGemJaggedGround", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Jagged Ground", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8866, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2854, + "Id": "Metadata/Items/Gems/SupportGemExploitWeakness", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Exploit Weakness", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8970, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2855, + "Id": "Metadata/Items/Gems/SupportGemImpactShockwave", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Impact Shockwave", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8590, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2856, + "Id": "Metadata/Items/Gems/SupportGemFirePenetration", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Пронизывающий жар", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8576, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2857, + "Id": "Metadata/Items/Gems/SupportGemFireExposure", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Fire Exposure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15444, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2858, + "Id": "Metadata/Items/Gems/SupportGemEnragedWarcry", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Яростный крик", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8580, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2859, + "Id": "Metadata/Items/Gems/SupportGemFistOfWar", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Кулак войны", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8830, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2860, + "Id": "Metadata/Items/Gems/SupportGemDevastate", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Devastate", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8971, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2861, + "Id": "Metadata/Items/Gems/SupportGemHeavySwing", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Физический урон ближнего боя", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8490, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2862, + "Id": "Metadata/Items/Gems/SupportGemLifeThief", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Вытягивание здоровья", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8464, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2863, + "Id": "Metadata/Items/Gems/SupportGemBrutality", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Жестокость", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9131, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2864, + "Id": "Metadata/Items/Gems/SupportGemBloodlust", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Кровожадность", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8688, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2865, + "Id": "Metadata/Items/Gems/SupportGemMeatShield", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Живой щит", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8796, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2866, + "Id": "Metadata/Items/Gem/SupportGemBreakEndurance", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Break Endurance", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8797, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2867, + "Id": "Metadata/Items/Gems/SupportGemEternalFlame", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Eternal Flame", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8798, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2868, + "Id": "Metadata/Items/Gems/SupportGemInfernalLegion", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Пылающий легион", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8810, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2869, + "Id": "Metadata/Items/Gems/SupportGemFireInfusion", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Урон огнём", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8436, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2870, + "Id": "Metadata/Items/Gems/SupportGemInspiration", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Вдохновение", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8460, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2871, + "Id": "Metadata/Items/Gems/SupportGemImmolate", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Жертвенность", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9128, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2872, + "Id": "Metadata/Items/Gems/SupportGemPremeditation", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Premeditation", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9129, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2873, + "Id": "Metadata/Items/Gem/SupportGemRagingCry", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Свирепый клич", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9132, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2874, + "Id": "Metadata/Items/Gems/SupportGemDemolisher", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Demolisher", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9133, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2875, + "Id": "Metadata/Items/Gem/SupportGemRageforged", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Разъярение", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9134, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2876, + "Id": "Metadata/Items/Gem/SupportGemArmourExplosion", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Armour Explosion", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9135, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2877, + "Id": "Metadata/Items/Gem/SupportGemStompingGround", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Stomping Ground", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9136, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2878, + "Id": "Metadata/Items/Gems/SupportGemCorruptingCry", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Оскверняющий клич", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15449, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2879, + "Id": "Metadata/Items/Gems/SupportGemDeepCuts", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Deep Cuts", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15448, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2880, + "Id": "Metadata/Items/Gems/SupportGemSplinter", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Splinter", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15475, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2881, + "Id": "Metadata/Items/Gem/SupportGemRupture", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Rupture", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15474, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2882, + "Id": "Metadata/Items/Gem/SupportGemDazingCry", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Dazing Cry", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15473, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2883, + "Id": "Metadata/Items/Gems/SupportGemPrimalArmament", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Primal Armament", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8524, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2884, + "Id": "Metadata/Items/Gems/SupportGemVitality", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Vitality", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15468, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2885, + "Id": "Metadata/Items/Gems/SupportGemHerbalism", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Herbalism", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15469, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2886, + "Id": "Metadata/Items/Gems/SupportGemCannibalism", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Cannibalism", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15470, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2887, + "Id": "Metadata/Items/Gems/SupportGemAftershock", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Aftershock", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15471, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2888, + "Id": "Metadata/Items/Gems/SupportGemConduction", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Возбуждение", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8990, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2889, + "Id": "Metadata/Items/Gems/SupportGemPierce", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Пронзание", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8479, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2890, + "Id": "Metadata/Items/Gems/SupportGemScattershot", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Много дополнительных снарядов", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8438, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2891, + "Id": "Metadata/Items/Gems/SupportGemWindWave", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Wind Wave", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8608, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2892, + "Id": "Metadata/Items/Gems/SupportGemEnvenom", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Шанс отравить", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9122, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2893, + "Id": "Metadata/Items/Gems/SupportGemMaim", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Увечье", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9127, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2894, + "Id": "Metadata/Items/Gems/SupportGemBlind", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Ослепление", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8574, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2895, + "Id": "Metadata/Items/Gems/SupportGemAcceleration", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Ускорение снарядов", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8441, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2896, + "Id": "Metadata/Items/Gems/SupportGemDeceleration", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Замедленные снаряды", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8607, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2897, + "Id": "Metadata/Items/Gems/SupportGemElectrocute", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Electrocute", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8803, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2898, + "Id": "Metadata/Items/Gems/SupportGemOverabundance", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Overabundance", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8983, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2899, + "Id": "Metadata/Items/Gems/SupportGemMobility", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Mobility", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15419, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2900, + "Id": "Metadata/Items/Gems/SupportGemOvercharge", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Перегрузка", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8897, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2901, + "Id": "Metadata/Items/Gems/SupportGemPerpetualCharge", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Perpetual Charge", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15375, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2902, + "Id": "Metadata/Items/Gems/SupportGemPin", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Pin", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15379, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2903, + "Id": "Metadata/Items/Gems/SupportGemChain", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Цепь", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8581, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2904, + "Id": "Metadata/Items/Gems/SupportGemLightningPenetration", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Пронизывающие молнии", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8578, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2905, + "Id": "Metadata/Items/Gems/SupportGemLightningExposure", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Lightning Exposure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15445, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2906, + "Id": "Metadata/Items/Gems/SupportGemSecondWind", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Второе дыхание", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8822, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2907, + "Id": "Metadata/Items/Gems/SupportGemNeuralOverload", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Neural Overload", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15374, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2908, + "Id": "Metadata/Items/Gems/SupportGemBurstingPlague", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Bursting Plague", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8802, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2909, + "Id": "Metadata/Items/Gems/SupportGemDeadlyHeralds", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Deadly Herald", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15376, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2910, + "Id": "Metadata/Items/Gems/SupportGemCorrosion", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Corrosion", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15380, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2911, + "Id": "Metadata/Items/Gems/SupportGemInfusion", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Infusion", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15377, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2912, + "Id": "Metadata/Items/Gems/SupportGemLockdown", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Lockdown", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15378, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2913, + "Id": "Metadata/Items/Gems/SupportGemFork", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Разветвление", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8583, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2914, + "Id": "Metadata/Items/Gems/SupportGemManaBounty", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Mana Bounty", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8991, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2915, + "Id": "Metadata/Items/Gems/SupportGemLifeBounty", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Life Bounty", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8992, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2916, + "Id": "Metadata/Items/Gems/SupportGemLastingShock", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Lasting Shock", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8614, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2917, + "Id": "Metadata/Items/Gems/SupportGemLightningInfusion", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Урон молнией", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8450, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2918, + "Id": "Metadata/Items/Gems/SupportGemLifeDrain", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Life Drain", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8451, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2919, + "Id": "Metadata/Items/Gems/SupportGemSoulDrain", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Soul Drain", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8452, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2920, + "Id": "Metadata/Items/Gems/SupportGemMartialTempo", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Ускорение атак", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8437, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2921, + "Id": "Metadata/Items/Gems/SupportGemBullseye", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Меткость", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8443, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2922, + "Id": "Metadata/Items/Gem/SupportGemInnervate", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Innervate", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8444, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2923, + "Id": "Metadata/Items/Gems/SupportGemProfusion", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Profusion", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8445, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2924, + "Id": "Metadata/Items/Gems/SupportGemComorbidity", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Comorbidity", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8446, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2925, + "Id": "Metadata/Items/Gems/SupportGemMurderousIntent", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Murderous Intent", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8447, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2926, + "Id": "Metadata/Items/Gems/SupportGemMomentum", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Импульс", + "DropLevel": 5, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8448, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2927, + "Id": "Metadata/Items/Gems/SupportGemCrescendo", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Crescendo", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15443, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2928, + "Id": "Metadata/Items/Gems/SupportGemDeadlyPoison", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Deadly Poison", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15447, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2929, + "Id": "Metadata/Items/Gems/SupportGemWindowOfOpportunity", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Window of Opportunity", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15450, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2930, + "Id": "Metadata/Items/Gem/SupportGemSwiftAffliction", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Swift Affliction", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15451, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2931, + "Id": "Metadata/Items/Gems/SupportGemFusillade", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Fusillade", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15452, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2932, + "Id": "Metadata/Items/Gems/SupportGemComboFinisher", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Combo Finisher", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15464, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2933, + "Id": "Metadata/Items/Gems/SupportGemEncumbrance", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Encumbrance", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15465, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2934, + "Id": "Metadata/Items/Gems/SupportGemLongshot", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Longshot", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15476, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2935, + "Id": "Metadata/Items/Gem/SupportGemCullingStrike", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Culling Strike", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8550, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2936, + "Id": "Metadata/Items/Gems/SupportGemDiscombobulate", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Discombobulate", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8551, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2937, + "Id": "Metadata/Items/Gems/SupportGemBreakPosture", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Break Posture", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8552, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2938, + "Id": "Metadata/Items/Gems/SupportGemIngenuity", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Ingenuity", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15477, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2939, + "Id": "Metadata/Items/Gems/SupportGemPrecision", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Precision", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15465, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2940, + "Id": "Metadata/Items/Gems/SupportGemGlaciation", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Переохлаждение", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8690, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2941, + "Id": "Metadata/Items/Gems/SupportGemEnergyBarrier", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Energy Barrier", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8988, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2942, + "Id": "Metadata/Items/Gems/SupportGemWildfire", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Распространение поджога", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9120, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2943, + "Id": "Metadata/Items/Gems/SupportGemFrostNexus", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Frost Nexus", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15373, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2944, + "Id": "Metadata/Items/Gems/SupportGemCoursingCurrent", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Coursing Current", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15382, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2945, + "Id": "Metadata/Items/Gems/SupportGemMagnifiedEffect", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Расширенная область действия", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8449, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2946, + "Id": "Metadata/Items/Gems/SupportGemConcentratedEffect", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Средоточие", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8517, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2947, + "Id": "Metadata/Items/Gems/SupportGemSpellEcho", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Эхо магии", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8589, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2948, + "Id": "Metadata/Items/Gems/SupportGemUnleash", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Высвобождение", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8772, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2949, + "Id": "Metadata/Items/Gems/SupportGemAmbush", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Засада", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8989, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2950, + "Id": "Metadata/Items/Gems/SupportGemBitingFrost", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Biting Frost", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8982, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2951, + "Id": "Metadata/Items/Gems/SupportGemWitheringTouch", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Губительное прикосновение", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15383, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2952, + "Id": "Metadata/Items/Gems/SupportGemHourglass", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Hourglass", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8987, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2953, + "Id": "Metadata/Items/Gems/SupportGemFortress", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Fortress", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8984, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2954, + "Id": "Metadata/Items/Gems/SupportGemColdPenetration", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Пронизывающий холод", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8577, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2955, + "Id": "Metadata/Items/Gems/SupportGemColdExposure", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Cold Exposure", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15446, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2956, + "Id": "Metadata/Items/Gems/SupportGemFieryDeath", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Fiery Death", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8978, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2957, + "Id": "Metadata/Items/Gems/SupportGemFrozenVortex", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Frozen Vortex", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15277, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2958, + "Id": "Metadata/Items/Gems/SupportGemShockSiphon", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Shock Siphon", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15278, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2959, + "Id": "Metadata/Items/Gems/SupportGemFrostfire", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Frostfire", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8980, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2960, + "Id": "Metadata/Items/Gems/SupportGemStormfire", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Stormfire", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8981, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2961, + "Id": "Metadata/Items/Gems/SupportGemInevitableCritical", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Inevitable Critical", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8461, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2962, + "Id": "Metadata/Items/Gems/SupportGemElementalDischarge", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Elemental Discharge", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8985, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2963, + "Id": "Metadata/Items/Gems/SupportGemManaFlare", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Mana Flare", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8986, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2964, + "Id": "Metadata/Items/Gems/SupportGemHexBloom", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Расцвет порчи", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8909, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2965, + "Id": "Metadata/Items/Gems/SupportGemSoulThief", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Вытягивание маны", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8465, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2966, + "Id": "Metadata/Items/Gems/SupportGemElementalFocus", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Концентрация стихий", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8720, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2967, + "Id": "Metadata/Items/Gems/SupportGemElementalArmy", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Стихийное войско", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9187, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2968, + "Id": "Metadata/Items/Gem/SupportGemMinionInstability", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Minion Instability", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8549, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2969, + "Id": "Metadata/Items/Gems/SupportGemDeepFreeze", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Deep Freeze", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15372, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2970, + "Id": "Metadata/Items/Gems/SupportGemFeedingFrenzy", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Голодное остервенение", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8795, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2971, + "Id": "Metadata/Items/Gems/SupportGemArcaneSurge", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Колдовской выброс", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9139, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2972, + "Id": "Metadata/Items/Gems/SupportGemHeightenedCurse", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Heightened Curse", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9140, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2973, + "Id": "Metadata/Items/Gem/SupportGemCorpseConservation", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Corpse Conservation", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9141, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2974, + "Id": "Metadata/Items/Gems/SupportGemColdInfusion", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Урон холодом", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8442, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2975, + "Id": "Metadata/Items/Gems/SupportGemArcaneTempo", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Ускоренное сотворение чар", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8493, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2976, + "Id": "Metadata/Items/Gem/SupportGemDecayingHex", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Decaying Hex", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9141, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2977, + "Id": "Metadata/Items/Gem/SupportGemFocusedCurse", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Focused Curse", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9142, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2978, + "Id": "Metadata/Items/Gem/SupportGemRitualisticCurse", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Ritualistic Curse", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9143, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2979, + "Id": "Metadata/Items/Gem/SupportGemMinionPact", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Minion Pact", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9144, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2980, + "Id": "Metadata/Items/Gem/SupportGemLastGasp", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Last Gasp", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 9145, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2981, + "Id": "Metadata/Items/Gems/SupportGemControlledDestruction", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Контролируемое разрушение", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8712, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2982, + "Id": "Metadata/Items/Gems/SupportGemImpendingDoom", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Обречённость", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8842, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2983, + "Id": "Metadata/Items/Gems/SupportGemSupercritical", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Усиление критических ударов", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8462, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2984, + "Id": "Metadata/Items/Gems/SupportGemIceBite", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Укус льда", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8689, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2985, + "Id": "Metadata/Items/Gems/SupportGemChaosInfusion", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Урон хаосом", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8466, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2986, + "Id": "Metadata/Items/Gems/SupportGemFireMastery", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Fire Mastery", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8467, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2987, + "Id": "Metadata/Items/Gems/SupportGemColdMastery", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Cold Mastery", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8468, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2988, + "Id": "Metadata/Items/Gems/SupportGemLightningMastery", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Lightning Mastery", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8469, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2989, + "Id": "Metadata/Items/Gems/SupportGemChaosMastery", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Chaos Mastery", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8470, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2990, + "Id": "Metadata/Items/Gems/SupportGemPhysicalMastery", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Physical Mastery", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 8471, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2991, + "Id": "Metadata/Items/Gems/SupportGemMinionMastery", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Minion Mastery", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8472, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2992, + "Id": "Metadata/Items/Gem/SupportGemChaoticFreeze", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Chaotic Freeze", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15453, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2993, + "Id": "Metadata/Items/Gem/SupportGemIntenseAgony", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Intense Agony", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15454, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2994, + "Id": "Metadata/Items/Gems/SupportGemDrainAilments", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Drain Ailments", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15455, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2995, + "Id": "Metadata/Items/Gem/SupportGemHinder", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Hinder", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15456, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2996, + "Id": "Metadata/Items/Gem/SupportGemSpellCascade", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Spell Cascade", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 9148, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2997, + "Id": "Metadata/Items/Gem/SupportGemSoulbreaker", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Soulbreaker", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15472, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2998, + "Id": "Metadata/Items/Gem/SupportGemCursedGround", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Cursed Ground", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8908, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 2999, + "Id": "Metadata/Items/Gems/SupportGemClarity", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Clarity", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15467, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3000, + "Id": "Metadata/Items/Gem/SkillGemRagingSpirits", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Raging Spirits", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8624, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3001, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/MushroomRed", + "ItemClassesKey": 31, + "Width": 1, + "Height": 2, + "Name": "Red Mushroom", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15407, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3002, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/MushroomGreen", + "ItemClassesKey": 31, + "Width": 1, + "Height": 2, + "Name": "Green Mushroom", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15408, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3003, + "Id": "Metadata/Items/QuestItems/Gallows/Act3/MushroomBlue", + "ItemClassesKey": 31, + "Width": 1, + "Height": 3, + "Name": "Blue Mushroom", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15409, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3004, + "Id": "Metadata/Items/Pinnacle/PinnacleKey1", + "ItemClassesKey": 107, + "Width": 1, + "Height": 1, + "Name": "Древний переломный фрагмент", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15410, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3005, + "Id": "Metadata/Items/Pinnacle/PinnacleKey2", + "ItemClassesKey": 107, + "Width": 1, + "Height": 1, + "Name": "Faded Crisis Fragment", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15411, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3006, + "Id": "Metadata/Items/Pinnacle/PinnacleKey3", + "ItemClassesKey": 107, + "Width": 1, + "Height": 1, + "Name": "Weathered Crisis Fragment", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15412, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3007, + "Id": "Metadata/Items/UltimatumKey", + "ItemClassesKey": 100, + "Width": 1, + "Height": 1, + "Name": "Inscribed Ultimatum", + "DropLevel": 39, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 15413, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3008, + "Id": "Metadata/Items/QuestItems/UltimatumKeyQuest", + "ItemClassesKey": 31, + "Width": 1, + "Height": 1, + "Name": "Chimeral Inscribed Ultimatum", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15414, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3009, + "Id": "Metadata/Items/Ultimatum/TrialmasterKey1", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Cowardly Fate", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 15415, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3010, + "Id": "Metadata/Items/Ultimatum/TrialmasterKey2", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Deadly Fate", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 15416, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3011, + "Id": "Metadata/Items/Ultimatum/TrialmasterKey3", + "ItemClassesKey": 38, + "Width": 1, + "Height": 1, + "Name": "Victorious Fate", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 15417, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3012, + "Id": "Metadata/Items/Gem/SkillGemSandstormSwipe", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Sandstorm Swipe", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8778, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3013, + "Id": "Metadata/Items/Gem/SkillGemDetonateMinion", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Detonate Minion", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8624, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3014, + "Id": "Metadata/Items/Gem/SkillGemRemoteSpearMine", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Spear Mine", + "DropLevel": 15, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8703, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3015, + "Id": "Metadata/Items/Gem/SkillGemSpearWindVortex", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Spear Vortex", + "DropLevel": 23, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8888, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3016, + "Id": "Metadata/Items/Gem/SkillGemSpearInfusingStrike", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Infusing Strike", + "DropLevel": 23, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8418, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3017, + "Id": "Metadata/Items/Gem/SkillGemSpearLightningWarp", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Storm Surge", + "DropLevel": 42, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8733, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3018, + "Id": "Metadata/Items/Gem/SkillGemWindDancer", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Wind Dancer", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15428, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3019, + "Id": "Metadata/Items/Gem/SkillGemProfaneRitual", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Profane Ritual", + "DropLevel": 23, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15425, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3020, + "Id": "Metadata/Items/Gem/SkillGemSoulOffering", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Soul Offering", + "DropLevel": 53, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15426, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3021, + "Id": "Metadata/Items/Gem/SkillGemDarkEffigy", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Dark Effigy", + "DropLevel": 32, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15427, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3022, + "Id": "Metadata/Items/Gems/SkillGemSkeletalWarriorWeaponSkill", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Skeletal Warrior", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8505, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3023, + "Id": "Metadata/Items/Gems/ReservationGemUncut", + "ItemClassesKey": 102, + "Width": 1, + "Height": 1, + "Name": "Uncut Spirit Gem", + "DropLevel": 12, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15266, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3024, + "Id": "Metadata/Items/Gem/SkillGemGrimFeast", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Grim Feast", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15430, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3025, + "Id": "Metadata/Items/Gems/SkillGemCastOnMinionDeath", + "ItemClassesKey": 76, + "Width": 1, + "Height": 1, + "Name": "Cast on Minion Death", + "DropLevel": 27, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15431, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3026, + "Id": "Metadata/Items/Gem/SkillGemScavengedPlating", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Scavenged Plating", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15433, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3027, + "Id": "Metadata/Items/Gems/SkillGemSpinningInferno", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Spinning Inferno", + "DropLevel": 32, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8946, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3028, + "Id": "Metadata/Items/Gem/SkillGemManaDrain", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Вытягивание маны", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3029, + "Id": "Metadata/Items/Gem/SkillGemBoneBlast", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Костяной взрыв", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3030, + "Id": "Metadata/Items/Gem/SkillGemBlink", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Blink", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15438, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3031, + "Id": "Metadata/Items/Gem/SkillGemMoltenBlast", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Molten Blast", + "DropLevel": 15, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15437, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3032, + "Id": "Metadata/Items/Gem/SkillGemMalice", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Malice", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3033, + "Id": "Metadata/Items/Gem/SkillGemHydra", + "ItemClassesKey": 76, + "Width": 1, + "Height": 1, + "Name": "Hydra Familiar", + "DropLevel": 27, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3034, + "Id": "Metadata/Items/Gem/SkillGemHammerOfTheGods", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Hammer of the Gods", + "DropLevel": 53, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15439, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3035, + "Id": "Metadata/Items/Gem/SkillGemLivingBombPlayer", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Living Bomb", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3036, + "Id": "Metadata/Items/Gem/SkillGemStampede", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Stampede", + "DropLevel": 42, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15440, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3037, + "Id": "Metadata/Items/Gem/SkillGemShieldWall", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Shield Wall", + "DropLevel": 23, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15441, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3038, + "Id": "Metadata/Items/Gem/SkillGemShieldingCry", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Shielding Cry", + "DropLevel": 15, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15442, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3039, + "Id": "Metadata/Items/Gems/SkillGemEmberFusillade", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Ember Fusillade", + "DropLevel": 7, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15479, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3040, + "Id": "Metadata/Items/Gem/SkillGemHighVelocityRounds", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Высокоскоростные снаряды", + "DropLevel": 7, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8927, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3041, + "Id": "Metadata/Items/Gem/SkillGemFragmentationRounds", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Fragmentation Rounds", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8928, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3042, + "Id": "Metadata/Items/Gem/SkillGemSiegeCascade", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Siege Cascade", + "DropLevel": 53, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8930, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3043, + "Id": "Metadata/Items/Gem/SkillGemArmourPiercingRounds", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Бронебойные снаряды", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8929, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3044, + "Id": "Metadata/Items/Gem/SkillGemExplosiveShot", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Explosive Shot", + "DropLevel": 23, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8924, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3045, + "Id": "Metadata/Items/Gem/SkillGemIncendiaryShot", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Incendiary Shot", + "DropLevel": 7, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8925, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3046, + "Id": "Metadata/Items/Gem/SkillGemRapidShot", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Rapid Shot", + "DropLevel": 15, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8926, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3047, + "Id": "Metadata/Items/Gem/SkillGemGlacialBolt", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Glacial Bolt", + "DropLevel": 23, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8931, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3048, + "Id": "Metadata/Items/Gem/SkillGemPermafrostBolts", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Permafrost Bolts", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8932, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3049, + "Id": "Metadata/Items/Gem/SkillGemHailstormRounds", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Hailstorm Rounds", + "DropLevel": 42, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8934, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3050, + "Id": "Metadata/Items/Gem/SkillGemIceShards", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Ice Shards", + "DropLevel": 15, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8933, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3051, + "Id": "Metadata/Items/Gem/SkillGemPlasmaBlast", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Plasma Blast", + "DropLevel": 53, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8935, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3052, + "Id": "Metadata/Items/Gem/SkillGemGalvanicShards", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Galvanic Shards", + "DropLevel": 15, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8936, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3053, + "Id": "Metadata/Items/Gem/SkillGemStormblastBolts", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Stormblast Bolts", + "DropLevel": 32, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8938, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3054, + "Id": "Metadata/Items/Gem/SkillGemShockburstRounds", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Shockburst Rounds", + "DropLevel": 42, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8937, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3055, + "Id": "Metadata/Items/Gem/SkillGemPlayerDefaultUnarmed", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Punch", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3056, + "Id": "Metadata/Items/Gem/SkillGemPlayerDefaultQuarterstaff", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Quarterstaff Strike", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3057, + "Id": "Metadata/Items/Gem/SkillGemPlayerDefaultFlail", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Flail Strike", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3058, + "Id": "Metadata/Items/Gem/SkillGemPlayerDefault1HSword", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Sword Slash", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3059, + "Id": "Metadata/Items/Gem/SkillGemPlayerDefaultSwordSword", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Sword Slash", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3060, + "Id": "Metadata/Items/Gem/SkillGemPlayerDefault2HSword", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Sword Slash", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3061, + "Id": "Metadata/Items/Gem/SkillGemPlayerDefault1HAxe", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Axe Slash", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3062, + "Id": "Metadata/Items/Gem/SkillGemPlayerDefaultAxeAxe", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Axe Slash", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3063, + "Id": "Metadata/Items/Gem/SkillGemPlayerDefault2HAxe", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Axe Slash", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3064, + "Id": "Metadata/Items/Gem/SkillGemPlayerDefault1HMace", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Mace Strike", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3065, + "Id": "Metadata/Items/Gem/SkillGemPlayerDefaultMaceMace", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Mace Strike", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3066, + "Id": "Metadata/Items/Gem/SkillGemPlayerDefault2HMace", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Mace Strike", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3067, + "Id": "Metadata/Items/Gem/SkillGemPlayerDefaultClaw", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Claw Stab", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3068, + "Id": "Metadata/Items/Gem/SkillGemPlayerDefaultClawClaw", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Claw Stab", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3069, + "Id": "Metadata/Items/Gem/SkillGemPlayerDefaultDagger", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Dagger Stab", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3070, + "Id": "Metadata/Items/Gem/SkillGemPlayerDefaultDaggerDagger", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Dagger Stab", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3071, + "Id": "Metadata/Items/Gem/SkillGemPlayerDefaultSpear", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Spear Stab", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3072, + "Id": "Metadata/Items/Gem/SkillGemPlayerDefaultBow", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Bow Shot", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3073, + "Id": "Metadata/Items/Gem/SkillGemPlayerDefaultCrossbow", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Crossbow Shot", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3074, + "Id": "Metadata/Items/Gem/SkillGemPlaytestAttack", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Playtest Attack", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3075, + "Id": "Metadata/Items/Gem/SkillGemPlaytestSlam", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Playtest Slam", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3076, + "Id": "Metadata/Items/Gem/SkillGemPlaytestSpell", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Playtest Spell", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3077, + "Id": "Metadata/Items/Gem/SkillGemShockchainArrow", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Shockchain Arrow", + "DropLevel": 42, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15462, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3078, + "Id": "Metadata/Items/Gem/SkillGemVaultingImpact", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Vaulting Impact", + "DropLevel": 7, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15542, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3079, + "Id": "Metadata/Items/Gem/SkillGemStormWave", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Storm Wave", + "DropLevel": 23, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15492, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3080, + "Id": "Metadata/Items/Gem/SkillGemMantraOfDestruction", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Mantra of Destruction", + "DropLevel": 32, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15493, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3081, + "Id": "Metadata/Items/Gem/SkillGemAscendancyLifeRemnants", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Life Remnants", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3082, + "Id": "Metadata/Items/Gem/SkillGemAscendancyExplosiveConcoction", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Explosive Concoction", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3083, + "Id": "Metadata/Items/Gem/SkillGemAscendancyFulminatingConcoction", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Fulminating Concoction", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3084, + "Id": "Metadata/Items/Gem/SkillGemAscendancyShatteringConcoction", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Shattering Concoction", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3085, + "Id": "Metadata/Items/Gem/SkillGemAscendancyPoisonousConcoction", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Poisonous Concoction", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3086, + "Id": "Metadata/Items/Gem/SkillGemAscendancyBleedingConcoction", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Bleeding Concoction", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3087, + "Id": "Metadata/Items/Gem/SkillGemAscendancyMeditate", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Meditate", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3088, + "Id": "Metadata/Items/Gem/SkillGemAscendancyElementalStorm", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Elemental Storm", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3089, + "Id": "Metadata/Items/Gem/SkillGemAscendancyUnboundAvatar", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Unbound Avatar", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3090, + "Id": "Metadata/Items/Gem/SkillGemAscendancySummonInfernalHound", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Summon Infernal Hound", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3091, + "Id": "Metadata/Items/Gem/SkillGemAscendancyTimeFreeze", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Time Freeze", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3092, + "Id": "Metadata/Items/Gem/SkillGemAscendancyTimeSnap", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Time Snap", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3093, + "Id": "Metadata/Items/Gem/SkillGemAscendancyEncasedInJade", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Encase in Jade", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3094, + "Id": "Metadata/Items/Gem/SkillGemAscendancySorceryWard", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Sorcery Ward", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3095, + "Id": "Metadata/Items/TowerAugment/BreachAugment", + "ItemClassesKey": 105, + "Width": 1, + "Height": 1, + "Name": "Плитка Предтеч Разлома", + "DropLevel": 65, + "Implicit_ModsKeys": [ + 3515 + ], + "TagsKeys": [ + 1078 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15457, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3096, + "Id": "Metadata/Items/TowerAugment/ExpeditionAugment", + "ItemClassesKey": 105, + "Width": 1, + "Height": 1, + "Name": "Плитка Предтеч Экспедиции", + "DropLevel": 65, + "Implicit_ModsKeys": [ + 3516 + ], + "TagsKeys": [ + 1080 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15458, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3097, + "Id": "Metadata/Items/TowerAugment/DeliriumAugment", + "ItemClassesKey": 105, + "Width": 1, + "Height": 1, + "Name": "Плитка Предтеч Делириума", + "DropLevel": 65, + "Implicit_ModsKeys": [ + 3517 + ], + "TagsKeys": [ + 1081 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15459, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3098, + "Id": "Metadata/Items/TowerAugment/RitualAugment", + "ItemClassesKey": 105, + "Width": 1, + "Height": 1, + "Name": "Плитка Предтеч Ритуала", + "DropLevel": 65, + "Implicit_ModsKeys": [ + 3518 + ], + "TagsKeys": [ + 1082 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15460, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3099, + "Id": "Metadata/Items/TowerAugment/GenericAugment", + "ItemClassesKey": 105, + "Width": 1, + "Height": 1, + "Name": "Плитка Предтеч", + "DropLevel": 65, + "Implicit_ModsKeys": [ + 3514 + ], + "TagsKeys": [ + 1079 + ], + "SiteVisibility": 0, + "ItemVisualIdentity": 15461, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3100, + "Id": "Metadata/Items/Gems/SkillGemCorpsewadeCorpseCloud", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Разложение", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3101, + "Id": "Metadata/Items/Gem/SkillGemAscendancyElementalExpression", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Elemental Expression", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3102, + "Id": "Metadata/Items/Gem/SkillGemIceShot", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Ice Shot", + "DropLevel": 32, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8432, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3103, + "Id": "Metadata/Items/Gem/SkillGemWarBanner", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "War Banner", + "DropLevel": 11, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8753, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3104, + "Id": "Metadata/Items/Gem/SkillGemDefianceBanner", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Defiance Banner", + "DropLevel": 27, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8754, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3105, + "Id": "Metadata/Items/Gem/SkillGemFreezingMark", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Freezing Mark", + "DropLevel": 23, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15480, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3106, + "Id": "Metadata/Items/Gem/SkillGemVoltaicMark", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Voltaic Mark", + "DropLevel": 23, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15481, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3107, + "Id": "Metadata/Items/Gem/SkillGemHandOfChayula", + "ItemClassesKey": 76, + "Width": 1, + "Height": 1, + "Name": "Hand of Chayula", + "DropLevel": 32, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15478, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3108, + "Id": "Metadata/Items/Gem/SkillGemAscendancyTemporalRift", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Temporal Rift", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3109, + "Id": "Metadata/Items/Gem/SkillGemAscendancyDemonForm", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Demon Form", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3110, + "Id": "Metadata/Items/Gem/SkillGemTimeOfNeed", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Time of Need", + "DropLevel": 37, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15483, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3111, + "Id": "Metadata/Items/Gem/SkillGemElementalInvocation", + "ItemClassesKey": 76, + "Width": 1, + "Height": 1, + "Name": "Elemental Invocation", + "DropLevel": 27, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15484, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3112, + "Id": "Metadata/Items/Gem/SkillGemExplosiveGrenade", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Explosive Grenade", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15487, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3113, + "Id": "Metadata/Items/Gem/SkillGemFlashGrenade", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Flash Grenade", + "DropLevel": 7, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15488, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3114, + "Id": "Metadata/Items/Gem/SkillGemOilGrenade", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Oil Grenade", + "DropLevel": 32, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15490, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3115, + "Id": "Metadata/Items/Gem/SkillGemGasGrenade", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Gas Grenade", + "DropLevel": 15, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15489, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3116, + "Id": "Metadata/Items/Gems/SkillGemVoltaicGrenade", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Voltaic Grenade", + "DropLevel": 23, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15491, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3117, + "Id": "Metadata/Items/Gem/SkillGemAttrition", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Attrition", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15486, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3118, + "Id": "Metadata/Items/Gem/SkillGemElementalConflux", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Elemental Conflux", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15485, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3119, + "Id": "Metadata/Items/Gem/SkillGemAscendancyIntoTheBreach", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Into the Breach", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3120, + "Id": "Metadata/Items/Gem/SkillGemAscendancyAncestralSpirits", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Ancestral Spirits", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3121, + "Id": "Metadata/Items/Gem/SkillGemEmergencyReload", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Emergency Reload", + "DropLevel": 42, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15541, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3122, + "Id": "Metadata/Items/Gems/SupportGemFontofBlood", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Купель крови", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15529, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3123, + "Id": "Metadata/Items/Gems/SupportGemFontofMana", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Купель маны", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15530, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3124, + "Id": "Metadata/Items/Gems/SupportGemFontofRage", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Купель свирепости", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15531, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3125, + "Id": "Metadata/Items/Gem/SkillGemClusterGrenade", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Cluster Grenade", + "DropLevel": 53, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15544, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3126, + "Id": "Metadata/Items/Gem/SkillGemDreadBanner", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Dread Banner", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8755, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3127, + "Id": "Metadata/Items/Gem/SkillGemTornadoShot", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Tornado Shot", + "DropLevel": 42, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8666, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3128, + "Id": "Metadata/Items/Currency/OmenOnLowLifeRecoverCharges", + "ItemClassesKey": 106, + "Width": 1, + "Height": 1, + "Name": "Omen of Refreshment", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15496, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3129, + "Id": "Metadata/Items/Currency/OmenOnLowLifeFullyHeal", + "ItemClassesKey": 106, + "Width": 1, + "Height": 1, + "Name": "Omen of Resurgence", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15497, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3130, + "Id": "Metadata/Items/Currency/OmenOnDeathPreventExpLoss", + "ItemClassesKey": 106, + "Width": 1, + "Height": 1, + "Name": "Omen of Amelioration", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15498, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3131, + "Id": "Metadata/Items/Currency/OmenOnChaosLowestLevelMod", + "ItemClassesKey": 106, + "Width": 1, + "Height": 1, + "Name": "Omen of Whittling", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15499, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3132, + "Id": "Metadata/Items/Currency/OmenOnChaosPrefix", + "ItemClassesKey": 106, + "Width": 1, + "Height": 1, + "Name": "Omen of Sinistral Erasure", + "DropLevel": 80, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15500, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3133, + "Id": "Metadata/Items/Currency/OmenOnChaosSuffix", + "ItemClassesKey": 106, + "Width": 1, + "Height": 1, + "Name": "Omen of Dextral Erasure", + "DropLevel": 80, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15501, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3134, + "Id": "Metadata/Items/Currency/OmenOnAlchemyMaximumPrefixes", + "ItemClassesKey": 106, + "Width": 1, + "Height": 1, + "Name": "Omen of Sinistral Alchemy", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15502, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3135, + "Id": "Metadata/Items/Currency/OmenOnAlchemyMaximumSuffixes", + "ItemClassesKey": 106, + "Width": 1, + "Height": 1, + "Name": "Omen of Dextral Alchemy", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15503, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3136, + "Id": "Metadata/Items/Currency/OmenOnRegalPrefix", + "ItemClassesKey": 106, + "Width": 1, + "Height": 1, + "Name": "Omen of Sinistral Coronation", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15504, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3137, + "Id": "Metadata/Items/Currency/OmenOnRegalSuffix", + "ItemClassesKey": 106, + "Width": 1, + "Height": 1, + "Name": "Omen of Dextral Coronation", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15505, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3138, + "Id": "Metadata/Items/Currency/OmenOnVaalRemoveDoNothingOutcome", + "ItemClassesKey": 106, + "Width": 1, + "Height": 1, + "Name": "Omen of Corruption", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15506, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3139, + "Id": "Metadata/Items/Currency/OmenOnExaltAddTwoMods", + "ItemClassesKey": 106, + "Width": 1, + "Height": 1, + "Name": "Предзнаменование великого возвышения", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15507, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3140, + "Id": "Metadata/Items/Currency/OmenOnExaltAddPrefixes", + "ItemClassesKey": 106, + "Width": 1, + "Height": 1, + "Name": "Omen of Sinistral Exaltation", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15508, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3141, + "Id": "Metadata/Items/Currency/OmenOnExaltAddSuffixes", + "ItemClassesKey": 106, + "Width": 1, + "Height": 1, + "Name": "Omen of Dextral Exaltation", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15509, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3142, + "Id": "Metadata/Items/Currency/OmenOnAnnulRemoveTwoMods", + "ItemClassesKey": 106, + "Width": 1, + "Height": 1, + "Name": "Omen of Greater Annulment", + "DropLevel": 75, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15510, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3143, + "Id": "Metadata/Items/Currency/OmenOnAnnulRemovePrefixes", + "ItemClassesKey": 106, + "Width": 1, + "Height": 1, + "Name": "Omen of Sinistral Annulment", + "DropLevel": 80, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15511, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3144, + "Id": "Metadata/Items/Currency/OmenOnAnnulRemoveSuffixes", + "ItemClassesKey": 106, + "Width": 1, + "Height": 1, + "Name": "Omen of Dextral Annulment", + "DropLevel": 80, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15512, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3145, + "Id": "Metadata/Items/Gem/SkillGemBlinkSandPlayer", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Blink", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15438, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3146, + "Id": "Metadata/Items/Gem/SkillGemChargeInfusion", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Charge Infusion", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8756, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3147, + "Id": "Metadata/Items/Gem/SupportGemHolyDescent", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Holy Descent", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15532, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3148, + "Id": "Metadata/Items/Gems/SupportGemBurningInscription", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Burning Inscription", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15533, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3149, + "Id": "Metadata/Items/Gem/SkillGemShardScavenger", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Shard Scavenger", + "DropLevel": 27, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15540, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3150, + "Id": "Metadata/Items/Gem/SupportGemDoubleBarrel", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Double Barrel", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15534, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3151, + "Id": "Metadata/Items/Gem/SupportGemAutoReload", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Auto Reload", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15535, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3152, + "Id": "Metadata/Items/Gem/SupportGemAmmoConservation", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Ammo Conservation", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15536, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3153, + "Id": "Metadata/Items/Gem/SupportGemNimbleReload", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Nimble Reload", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15537, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3154, + "Id": "Metadata/Items/Gem/SupportGemFreshClip", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Fresh Clip", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15538, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3155, + "Id": "Metadata/Items/Gem/SupportGemSacrificialLamb", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Sacrificial Lamb", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15539, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3156, + "Id": "Metadata/Items/Gem/SkillGemOverwhelmingPresence", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Overwhelming Presence", + "DropLevel": 27, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8757, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3157, + "Id": "Metadata/Items/Gem/SkillGemAlchemistsBoon", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Alchemist's Boon", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8758, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3158, + "Id": "Metadata/Items/Gem/SkillGemReapersInvocation", + "ItemClassesKey": 76, + "Width": 1, + "Height": 1, + "Name": "Reaper's Invocation", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8761, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3159, + "Id": "Metadata/Items/Gem/SkillGemSacrifice", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Sacrifice", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8760, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3160, + "Id": "Metadata/Items/Gem/SkillGemArchmage", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Archmage", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8762, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3161, + "Id": "Metadata/Items/Gem/SkillGemMagneticSalvo", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Magnetic Salvo", + "DropLevel": 53, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15581, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3162, + "Id": "Metadata/Items/Gem/SkillGemFreezingSalvo", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Freezing Salvo", + "DropLevel": 15, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15582, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3163, + "Id": "Metadata/Items/Gem/SkillGemTriggeredGasCloud", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Gas Cloud", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8401, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3164, + "Id": "Metadata/Items/Gem/SkillGemTriggeredDetonation", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "[DNT] Detonation", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8401, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3165, + "Id": "Metadata/Items/Gem/SkillGemBerserk", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Berserk", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8780, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3166, + "Id": "Metadata/Items/Gem/SkillGemHeraldOfPlague", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Herald of Plague", + "DropLevel": 27, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8671, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3167, + "Id": "Metadata/Items/Gem/SkillGemHeraldOfBlood", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8401, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3168, + "Id": "Metadata/Items/Gem/SkillGemWitheringPresence", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Withering Presence", + "DropLevel": 10, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 8759, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3169, + "Id": "Metadata/Items/Ultimatum/UltimatumKeySpecial", + "ItemClassesKey": 100, + "Width": 1, + "Height": 1, + "Name": "Inscribed Ultimatum", + "DropLevel": 39, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 33 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 15413, + "IsCorrupted": true, + "TradeMarketCategory": null + }, + { + "_index": 3170, + "Id": "Metadata/Items/Gem/SkillGemCombatFrenzy", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Combat Frenzy", + "DropLevel": 27, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15545, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3171, + "Id": "Metadata/Items/Gems/SkillGemCastOnBlock", + "ItemClassesKey": 76, + "Width": 1, + "Height": 1, + "Name": "Cast on Block", + "DropLevel": 59, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15543, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3172, + "Id": "Metadata/Items/Gem/SkillGemGatheringStorm", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Gathering Storm", + "DropLevel": 53, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15580, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3173, + "Id": "Metadata/Items/Gem/SupportGemUpheaval", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Возмущение", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15546, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3174, + "Id": "Metadata/Items/Gems/SupportGemDespoiler", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Despoiler", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15547, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3175, + "Id": "Metadata/Items/Gem/SupportGemRicochet", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Ricochet", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15550, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3176, + "Id": "Metadata/Items/Gem/SupportGemAncestralUrgency", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Ancestral Urgency", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15551, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3177, + "Id": "Metadata/Items/Gem/SupportGemLongFuse", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Long Fuse", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15552, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3178, + "Id": "Metadata/Items/Gem/SupportGemPayload", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Payload", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15553, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3179, + "Id": "Metadata/Items/Gem/SupportGemStripAway", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Strip Away", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15554, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3180, + "Id": "Metadata/Items/Gem/SupportGemIronwood", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Ironwood", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15555, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3181, + "Id": "Metadata/Items/Gem/SupportGemConsideredCasting", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Considered Casting", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15556, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3182, + "Id": "Metadata/Items/Gem/SupportGemWildshards", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Wildshards", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15557, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3183, + "Id": "Metadata/Items/Gem/SupportGemIcicle", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Icicle", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15558, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3184, + "Id": "Metadata/Items/Gem/SupportGemGlacier", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Glacier", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15559, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3185, + "Id": "Metadata/Items/Gem/SupportGemHeft", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Heft", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15560, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3186, + "Id": "Metadata/Items/Gems/SupportGemRisingTempest", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Rising Tempest", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15561, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3187, + "Id": "Metadata/Items/Gem/SupportGemExtraction", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Extraction", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15562, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3188, + "Id": "Metadata/Items/Gem/SupportGemAstralProjection", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Astral Projection", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15563, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3189, + "Id": "Metadata/Items/Gem/SupportGemPracticedCombo", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Practiced Combo", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15564, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3190, + "Id": "Metadata/Items/Gem/SupportGemLeverage", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Leverage", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15565, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3191, + "Id": "Metadata/Items/Gem/SupportGemCulmination", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Culmination", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15566, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3192, + "Id": "Metadata/Items/Gem/SupportGemPotential", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Potential", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15567, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3193, + "Id": "Metadata/Items/Gem/SupportGemExpanse", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Expanse", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15568, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3194, + "Id": "Metadata/Items/Gem/SupportGemExcise", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Excise", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15569, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3195, + "Id": "Metadata/Items/Gem/SupportGemExecrate", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Execrate", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15570, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3196, + "Id": "Metadata/Items/Gem/SupportGemEnergyRetention", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Energy Retention", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15571, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3197, + "Id": "Metadata/Items/Gem/SupportGemFerocity", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Ferocity", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15572, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3198, + "Id": "Metadata/Items/Gem/SupportGemAblation", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Ablation", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15574, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3199, + "Id": "Metadata/Items/Gem/SupportGemDanseMacabre", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Danse Macabre", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15575, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3200, + "Id": "Metadata/Items/Gem/SupportGemCapacitor", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Capacitor", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15576, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3201, + "Id": "Metadata/Items/Gem/SupportGemImpetus", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Impetus", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 1, + "ItemVisualIdentity": 15577, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3202, + "Id": "Metadata/Items/Gem/SkillGemUniqueDuskVigilTriggeredBlazingCluster", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Ember Fusillade", + "DropLevel": 7, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15479, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3203, + "Id": "Metadata/Items/Gem/SkillGemUniqueEarthboundTriggeredSpark", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Spark", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [ + 300, + 301 + ], + "SiteVisibility": 1, + "ItemVisualIdentity": 8476, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3204, + "Id": "Metadata/Items/Gem/SupportGemExpandingGround", + "ItemClassesKey": 19, + "Width": 1, + "Height": 1, + "Name": "Expanding Ground", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15578, + "IsCorrupted": false, + "TradeMarketCategory": null + }, + { + "_index": 3205, + "Id": "Metadata/Items/Gem/SkillGemUniqueBreachLightningBolt", + "ItemClassesKey": 18, + "Width": 1, + "Height": 1, + "Name": "Lightning Bolt", + "DropLevel": 1, + "Implicit_ModsKeys": [], + "TagsKeys": [], + "SiteVisibility": 0, + "ItemVisualIdentity": 15429, + "IsCorrupted": false, + "TradeMarketCategory": null + } +] \ No newline at end of file diff --git a/renderer/public/.DS_Store/EXPORT/tables/Russian/ItemClasses.json b/renderer/public/.DS_Store/EXPORT/tables/Russian/ItemClasses.json new file mode 100644 index 000000000..b093d057f --- /dev/null +++ b/renderer/public/.DS_Store/EXPORT/tables/Russian/ItemClasses.json @@ -0,0 +1,758 @@ +[ + { + "_index": 0, + "Id": "LifeFlask", + "Name": "Флаконы жизни", + "TradeMarketCategory": 28, + "ItemClassCategory": 0 + }, + { + "_index": 1, + "Id": "ManaFlask", + "Name": "Флаконы маны", + "TradeMarketCategory": 29, + "ItemClassCategory": 0 + }, + { + "_index": 2, + "Id": "DONOTUSE5", + "Name": "", + "TradeMarketCategory": null, + "ItemClassCategory": null + }, + { + "_index": 3, + "Id": "Currency", + "Name": "Вещи на обмен", + "TradeMarketCategory": 39, + "ItemClassCategory": 6 + }, + { + "_index": 4, + "Id": "Amulet", + "Name": "Амулеты", + "TradeMarketCategory": 21, + "ItemClassCategory": 7 + }, + { + "_index": 5, + "Id": "Ring", + "Name": "Кольца", + "TradeMarketCategory": 22, + "ItemClassCategory": 8 + }, + { + "_index": 6, + "Id": "Claw", + "Name": "Когти", + "TradeMarketCategory": 4, + "ItemClassCategory": 9 + }, + { + "_index": 7, + "Id": "Dagger", + "Name": "Кинжалы", + "TradeMarketCategory": 5, + "ItemClassCategory": 3 + }, + { + "_index": 8, + "Id": "Wand", + "Name": "Жезлы", + "TradeMarketCategory": 6, + "ItemClassCategory": 10 + }, + { + "_index": 9, + "Id": "One Hand Sword", + "Name": "Одноручные мечи", + "TradeMarketCategory": 7, + "ItemClassCategory": 2 + }, + { + "_index": 10, + "Id": "DONOTUSE6", + "Name": "", + "TradeMarketCategory": null, + "ItemClassCategory": null + }, + { + "_index": 11, + "Id": "One Hand Axe", + "Name": "Одноручные топоры", + "TradeMarketCategory": 9, + "ItemClassCategory": 11 + }, + { + "_index": 12, + "Id": "One Hand Mace", + "Name": "Одноручные булавы", + "TradeMarketCategory": 10, + "ItemClassCategory": 1 + }, + { + "_index": 13, + "Id": "Bow", + "Name": "Луки", + "TradeMarketCategory": 13, + "ItemClassCategory": 12 + }, + { + "_index": 14, + "Id": "Staff", + "Name": "Посохи", + "TradeMarketCategory": 14, + "ItemClassCategory": 4 + }, + { + "_index": 15, + "Id": "Two Hand Sword", + "Name": "Двуручные мечи", + "TradeMarketCategory": 15, + "ItemClassCategory": 13 + }, + { + "_index": 16, + "Id": "Two Hand Axe", + "Name": "Двуручные топоры", + "TradeMarketCategory": 16, + "ItemClassCategory": 14 + }, + { + "_index": 17, + "Id": "Two Hand Mace", + "Name": "Двуручные булавы", + "TradeMarketCategory": 17, + "ItemClassCategory": 15 + }, + { + "_index": 18, + "Id": "Active Skill Gem", + "Name": "Камни умений", + "TradeMarketCategory": 26, + "ItemClassCategory": 16 + }, + { + "_index": 19, + "Id": "Support Skill Gem", + "Name": "Камни поддержки", + "TradeMarketCategory": 27, + "ItemClassCategory": 17 + }, + { + "_index": 20, + "Id": "Quiver", + "Name": "Колчаны", + "TradeMarketCategory": 19, + "ItemClassCategory": 18 + }, + { + "_index": 21, + "Id": "Belt", + "Name": "Пояса", + "TradeMarketCategory": 23, + "ItemClassCategory": 19 + }, + { + "_index": 22, + "Id": "Gloves", + "Name": "Перчатки", + "TradeMarketCategory": 0, + "ItemClassCategory": 20 + }, + { + "_index": 23, + "Id": "Boots", + "Name": "Обувь", + "TradeMarketCategory": 1, + "ItemClassCategory": 21 + }, + { + "_index": 24, + "Id": "Body Armour", + "Name": "Доспехи", + "TradeMarketCategory": 2, + "ItemClassCategory": 22 + }, + { + "_index": 25, + "Id": "Helmet", + "Name": "Шлемы", + "TradeMarketCategory": 3, + "ItemClassCategory": 23 + }, + { + "_index": 26, + "Id": "Shield", + "Name": "Щиты", + "TradeMarketCategory": 20, + "ItemClassCategory": 24 + }, + { + "_index": 27, + "Id": "SmallRelic", + "Name": "Малые реликвии", + "TradeMarketCategory": null, + "ItemClassCategory": null + }, + { + "_index": 28, + "Id": "MediumRelic", + "Name": "Средние реликвии", + "TradeMarketCategory": null, + "ItemClassCategory": null + }, + { + "_index": 29, + "Id": "LargeRelic", + "Name": "Большие реликвии", + "TradeMarketCategory": null, + "ItemClassCategory": null + }, + { + "_index": 30, + "Id": "StackableCurrency", + "Name": "Валюта", + "TradeMarketCategory": 39, + "ItemClassCategory": 6 + }, + { + "_index": 31, + "Id": "QuestItem", + "Name": "Вещи для заданий", + "TradeMarketCategory": null, + "ItemClassCategory": 25 + }, + { + "_index": 32, + "Id": "Sceptre", + "Name": "Скипетры", + "TradeMarketCategory": 11, + "ItemClassCategory": 61 + }, + { + "_index": 33, + "Id": "UtilityFlask", + "Name": "Обереги", + "TradeMarketCategory": 31, + "ItemClassCategory": 69 + }, + { + "_index": 34, + "Id": "DONOTUSE7", + "Name": "", + "TradeMarketCategory": null, + "ItemClassCategory": null + }, + { + "_index": 35, + "Id": "Map", + "Name": "Путевые камни", + "TradeMarketCategory": 34, + "ItemClassCategory": 26 + }, + { + "_index": 36, + "Id": "Unarmed", + "Name": "", + "TradeMarketCategory": null, + "ItemClassCategory": 66 + }, + { + "_index": 37, + "Id": "FishingRod", + "Name": "Удочки", + "TradeMarketCategory": null, + "ItemClassCategory": 27 + }, + { + "_index": 38, + "Id": "MapFragment", + "Name": "Обрывки карт", + "TradeMarketCategory": 37, + "ItemClassCategory": 28 + }, + { + "_index": 39, + "Id": "HideoutDoodad", + "Name": "Предметы убежища", + "TradeMarketCategory": null, + "ItemClassCategory": null + }, + { + "_index": 40, + "Id": "Microtransaction", + "Name": "Микротранзакции", + "TradeMarketCategory": 53, + "ItemClassCategory": null + }, + { + "_index": 41, + "Id": "Jewel", + "Name": "Самоцветы", + "TradeMarketCategory": 35, + "ItemClassCategory": 29 + }, + { + "_index": 42, + "Id": "DivinationCard", + "Name": "Гадальные карты", + "TradeMarketCategory": 40, + "ItemClassCategory": 30 + }, + { + "_index": 43, + "Id": "DONOTUSE8", + "Name": "", + "TradeMarketCategory": null, + "ItemClassCategory": null + }, + { + "_index": 44, + "Id": "DONOTUSE9", + "Name": "", + "TradeMarketCategory": null, + "ItemClassCategory": null + }, + { + "_index": 45, + "Id": "DONOTUSE10", + "Name": "", + "TradeMarketCategory": null, + "ItemClassCategory": null + }, + { + "_index": 46, + "Id": "MiscMapItem", + "Name": "Прочие предметы карт", + "TradeMarketCategory": 38, + "ItemClassCategory": 33 + }, + { + "_index": 47, + "Id": "Leaguestone", + "Name": "Камни лиги", + "TradeMarketCategory": 33, + "ItemClassCategory": 34 + }, + { + "_index": 48, + "Id": "PantheonSoul", + "Name": "Души Пантеона", + "TradeMarketCategory": null, + "ItemClassCategory": 35 + }, + { + "_index": 49, + "Id": "UniqueFragment", + "Name": "Фрагменты", + "TradeMarketCategory": 41, + "ItemClassCategory": 36 + }, + { + "_index": 50, + "Id": "AbyssJewel", + "Name": "Самоцветы Бездны", + "TradeMarketCategory": 36, + "ItemClassCategory": 37 + }, + { + "_index": 51, + "Id": "IncursionItem", + "Name": "Предметы Вмешательства", + "TradeMarketCategory": null, + "ItemClassCategory": 38 + }, + { + "_index": 52, + "Id": "DelveSocketableCurrency", + "Name": "Валюта Спуска", + "TradeMarketCategory": 43, + "ItemClassCategory": 39 + }, + { + "_index": 53, + "Id": "Incubator", + "Name": "Инкубаторы", + "TradeMarketCategory": 45, + "ItemClassCategory": 40 + }, + { + "_index": 54, + "Id": "UniqueShard", + "Name": "Осколки", + "TradeMarketCategory": null, + "ItemClassCategory": null + }, + { + "_index": 55, + "Id": "UniqueShardBase", + "Name": "Стержни осколков", + "TradeMarketCategory": null, + "ItemClassCategory": null + }, + { + "_index": 56, + "Id": "DONOTUSE11", + "Name": "", + "TradeMarketCategory": null, + "ItemClassCategory": null + }, + { + "_index": 57, + "Id": "Warstaff", + "Name": "Боевые посохи", + "TradeMarketCategory": 18, + "ItemClassCategory": 5 + }, + { + "_index": 58, + "Id": "DelveStackableSocketableCurrency", + "Name": "Валюта Спуска", + "TradeMarketCategory": 43, + "ItemClassCategory": 39 + }, + { + "_index": 59, + "Id": "AtlasUpgradeItem", + "Name": "Предметы улучшения Атласа", + "TradeMarketCategory": null, + "ItemClassCategory": 41 + }, + { + "_index": 60, + "Id": "DONOTUSE4", + "Name": "", + "TradeMarketCategory": null, + "ItemClassCategory": null + }, + { + "_index": 61, + "Id": "HiddenItem", + "Name": "Сокрытые предметы", + "TradeMarketCategory": null, + "ItemClassCategory": null + }, + { + "_index": 62, + "Id": "DONOTUSE1", + "Name": "", + "TradeMarketCategory": null, + "ItemClassCategory": null + }, + { + "_index": 63, + "Id": "DONOTUSE2", + "Name": "", + "TradeMarketCategory": null, + "ItemClassCategory": null + }, + { + "_index": 64, + "Id": "DONOTUSE3", + "Name": "", + "TradeMarketCategory": null, + "ItemClassCategory": null + }, + { + "_index": 65, + "Id": "HeistContract", + "Name": "Контракты", + "TradeMarketCategory": 48, + "ItemClassCategory": 42 + }, + { + "_index": 66, + "Id": "HeistEquipmentWeapon", + "Name": "Разбойничьи принадлежности", + "TradeMarketCategory": 48, + "ItemClassCategory": 43 + }, + { + "_index": 67, + "Id": "HeistEquipmentTool", + "Name": "Разбойничий инструмент", + "TradeMarketCategory": 48, + "ItemClassCategory": 44 + }, + { + "_index": 68, + "Id": "HeistEquipmentUtility", + "Name": "Разбойничьи накидки", + "TradeMarketCategory": 48, + "ItemClassCategory": 45 + }, + { + "_index": 69, + "Id": "HeistEquipmentReward", + "Name": "Разбойничьи броши", + "TradeMarketCategory": 48, + "ItemClassCategory": 46 + }, + { + "_index": 70, + "Id": "HeistBlueprint", + "Name": "Чертежи", + "TradeMarketCategory": 48, + "ItemClassCategory": 47 + }, + { + "_index": 71, + "Id": "Trinket", + "Name": "Украшения", + "TradeMarketCategory": 25, + "ItemClassCategory": 48 + }, + { + "_index": 72, + "Id": "HeistObjective", + "Name": "Предметы кражи", + "TradeMarketCategory": null, + "ItemClassCategory": 49 + }, + { + "_index": 73, + "Id": "ExpeditionLogbook", + "Name": "Журналы экспедиции", + "TradeMarketCategory": 49, + "ItemClassCategory": 50 + }, + { + "_index": 74, + "Id": "IncubatorStackable", + "Name": "Инкубаторы", + "TradeMarketCategory": 45, + "ItemClassCategory": 40 + }, + { + "_index": 75, + "Id": "ArchnemesisMod", + "Name": "Свойства Возмездия", + "TradeMarketCategory": null, + "ItemClassCategory": null + }, + { + "_index": 76, + "Id": "Meta Skill Gem", + "Name": "", + "TradeMarketCategory": null, + "ItemClassCategory": 64 + }, + { + "_index": 77, + "Id": "Spear", + "Name": "Копья", + "TradeMarketCategory": 55, + "ItemClassCategory": 57 + }, + { + "_index": 78, + "Id": "Crossbow", + "Name": "Самострелы", + "TradeMarketCategory": 56, + "ItemClassCategory": 58 + }, + { + "_index": 79, + "Id": "Focus", + "Name": "Фокусы", + "TradeMarketCategory": null, + "ItemClassCategory": 59 + }, + { + "_index": 80, + "Id": "InstanceLocalItem", + "Name": "Местные предметы области", + "TradeMarketCategory": null, + "ItemClassCategory": 51 + }, + { + "_index": 81, + "Id": "SentinelDrone", + "Name": "Часовые", + "TradeMarketCategory": 51, + "ItemClassCategory": 52 + }, + { + "_index": 82, + "Id": "MemoryLine", + "Name": "Воспоминания", + "TradeMarketCategory": 52, + "ItemClassCategory": 54 + }, + { + "_index": 83, + "Id": "Flail", + "Name": "Кистени", + "TradeMarketCategory": null, + "ItemClassCategory": 60 + }, + { + "_index": 84, + "Id": "Relic", + "Name": "Реликвии", + "TradeMarketCategory": 54, + "ItemClassCategory": 53 + }, + { + "_index": 85, + "Id": "SanctumSpecialRelic", + "Name": "Священные реликвии", + "TradeMarketCategory": null, + "ItemClassCategory": 53 + }, + { + "_index": 86, + "Id": "Breachstone", + "Name": "Камни Разлома", + "TradeMarketCategory": 37, + "ItemClassCategory": 55 + }, + { + "_index": 87, + "Id": "GiftBox", + "Name": "", + "TradeMarketCategory": null, + "ItemClassCategory": null + }, + { + "_index": 88, + "Id": "VaultKey", + "Name": "Ключи от хранилищ", + "TradeMarketCategory": 38, + "ItemClassCategory": 56 + }, + { + "_index": 89, + "Id": "ItemisedSanctum", + "Name": "Монеты Испытания", + "TradeMarketCategory": 38, + "ItemClassCategory": 33 + }, + { + "_index": 90, + "Id": "DONOTUSE12", + "Name": "", + "TradeMarketCategory": null, + "ItemClassCategory": null + }, + { + "_index": 91, + "Id": "UncutSkillGem", + "Name": "", + "TradeMarketCategory": null, + "ItemClassCategory": 65 + }, + { + "_index": 92, + "Id": "Buckler", + "Name": "Баклеры", + "TradeMarketCategory": 57, + "ItemClassCategory": null + }, + { + "_index": 93, + "Id": "Thrown One Hand Axe", + "Name": "", + "TradeMarketCategory": null, + "ItemClassCategory": null + }, + { + "_index": 94, + "Id": "Thrown Two Hand Axe", + "Name": "", + "TradeMarketCategory": null, + "ItemClassCategory": null + }, + { + "_index": 95, + "Id": "ConventionTreasure", + "Name": "", + "TradeMarketCategory": null, + "ItemClassCategory": null + }, + { + "_index": 96, + "Id": "TrapTool", + "Name": "Ловушки", + "TradeMarketCategory": null, + "ItemClassCategory": 63 + }, + { + "_index": 97, + "Id": "Crossbow Attachment REMOVE", + "Name": "", + "TradeMarketCategory": null, + "ItemClassCategory": null + }, + { + "_index": 98, + "Id": "SkillGemToken", + "Name": "Вещи на обмен", + "TradeMarketCategory": 39, + "ItemClassCategory": 6 + }, + { + "_index": 99, + "Id": "Nothing", + "Name": "", + "TradeMarketCategory": null, + "ItemClassCategory": null + }, + { + "_index": 100, + "Id": "UltimatumKey", + "Name": "Начертанные Ультиматумы", + "TradeMarketCategory": 38, + "ItemClassCategory": 33 + }, + { + "_index": 101, + "Id": "UncutSupportGem", + "Name": "", + "TradeMarketCategory": null, + "ItemClassCategory": 65 + }, + { + "_index": 102, + "Id": "UncutReservationGem", + "Name": "", + "TradeMarketCategory": null, + "ItemClassCategory": 65 + }, + { + "_index": 103, + "Id": "Thrown Shield", + "Name": "", + "TradeMarketCategory": null, + "ItemClassCategory": null + }, + { + "_index": 104, + "Id": "SoulCore", + "Name": "Размещаемое", + "TradeMarketCategory": null, + "ItemClassCategory": 67 + }, + { + "_index": 105, + "Id": "TowerAugmentation", + "Name": "Плитки", + "TradeMarketCategory": null, + "ItemClassCategory": 68 + }, + { + "_index": 106, + "Id": "Omen", + "Name": "Предзнаменования", + "TradeMarketCategory": null, + "ItemClassCategory": 70 + }, + { + "_index": 107, + "Id": "PinnacleKey", + "Name": "Древние ключи", + "TradeMarketCategory": null, + "ItemClassCategory": null + } +] \ No newline at end of file diff --git a/renderer/public/.DS_Store/copy-py-ndjson.sh b/renderer/public/.DS_Store/copy-py-ndjson.sh new file mode 100644 index 000000000..ac1c45db3 --- /dev/null +++ b/renderer/public/.DS_Store/copy-py-ndjson.sh @@ -0,0 +1,8 @@ + + +supported_languages=("en" "ru") + +for lang in "${supported_languages[@]}"; do + echo "Copying $lang" + cp -R ./vendor/client/pyDumps/$lang/* ./data/$lang/ +done \ No newline at end of file diff --git a/renderer/public/.DS_Store/data/cmn-Hant/items.ndjson.old b/renderer/public/.DS_Store/data/cmn-Hant/items.ndjson.old new file mode 100644 index 000000000..9936eced9 --- /dev/null +++ b/renderer/public/.DS_Store/data/cmn-Hant/items.ndjson.old @@ -0,0 +1,4530 @@ +{"name":"毒素滑行者","refName":"Acid Slitherer","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"成年雛鳥","refName":"Adolescent Rhex","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"高峰羊人","refName":"Alpine Devil","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"高峰術士","refName":"Alpine Shaman","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"艾爾卡莉之女","refName":"Arakaali's Daughter","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"極地狼","refName":"Arctic Wolf","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"毀甲巨獸","refName":"Armour Cruncher","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"崩雪騎士","refName":"Avalanche Rider","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"叢林反芻鳥","refName":"Avian Retch","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"棘刺巨蛇","refName":"Barb Serpent","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"遺塚狂猿","refName":"Barrow Ape","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"長鬚羊人","refName":"Bearded Devil","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"長鬚咒靈","refName":"Bearded Shaman","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"堅蹄羊人喚空者","refName":"Bearded Skycaller","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"黑色莫里根","refName":"Black Mórrigan","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"漆黑毒蠍","refName":"Black Scorpion","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"白漆蝕腐蟲","refName":"Bleached Crawler","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"血面狂猿","refName":"Blood Ape","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"血面酋長","refName":"Blood Chieftain","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"碎骨獸","refName":"Bone Cruncher","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"枯骨恐喙鳥","refName":"Bone Rhoa","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"叢林眼鏡蛇","refName":"Bramble Cobra","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"海洋之奴","refName":"Brine Vassal","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"毛蛛之母","refName":"Brooding Tarantula","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"殺戮狂猿","refName":"Carnage Ape","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"殺戮酋長","refName":"Carnage Chieftain","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"食腐掘地蟲","refName":"Carrion Burrower","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"食腐蟲后","refName":"Carrion Queen","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"食腐蟲","refName":"Carrion Swarmer","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"洞穴獸","refName":"Cave Beast","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"洞穴沙蛛","refName":"Cave Skitterer","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"穴洞漂泊者","refName":"Cavern Drifter","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"幻想冥蛙","refName":"Chimeric Croaker","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"注鉻龍蜥","refName":"Chrome-infused Chimeral","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"注鉻蛙","refName":"Chrome-infused Croaker","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"注鉻巨獸","refName":"Chrome-infused Goliath","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"觸鉻龍蜥","refName":"Chrome-touched Chimeral","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"觸鉻蛙","refName":"Chrome-touched Croaker","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"觸鉻巨獸","refName":"Chrome-touched Goliath","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"巨像破壞者","refName":"Colossus Crusher","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"墮魂巨蛛","refName":"Corrupted Arach","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"腐化獸","refName":"Corrupted Beast","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"腐化的恐喙鳥","refName":"Corrupted Rhoa","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"腐化魔蛛","refName":"Corrupted Spitter","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"初始之潭奎爾珊","refName":"Craiceann, First of the Deep","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"奎爾珊龍蜥","refName":"Craicic Chimeral","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"奎爾珊裂齒獸","refName":"Craicic Maw","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"奎爾珊噴砂爪蟹","refName":"Craicic Sand Spitter","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"奎爾珊殘暴的蟹","refName":"Craicic Savage Crab","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"奎爾珊重盾巨蟹","refName":"Craicic Shield Crab","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"奎爾珊蛛蛛蟹","refName":"Craicic Spider Crab","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"奎爾珊烏賊","refName":"Craicic Squid","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"奎爾珊之奴","refName":"Craicic Vassal","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"奎爾珊看守者","refName":"Craicic Watcher","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"狙影沙蟹","refName":"Crustacean Sniper","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"地穴潛伏者","refName":"Crypt Ambusher","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"深穴巨蛛","refName":"Crypt Weaver","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"詛咒海蟲","refName":"Cursed Spawn","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"深潭甲蟹","refName":"Deep Crustacean","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"吞噬獸","refName":"Devourer","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"撥土者","refName":"Dirt Scrabbler","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"恐懼狂猿","refName":"Dread Primate","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"沙丘獄犬","refName":"Dune Hellion","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"撥塵者","refName":"Dust Scrabbler","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"狂怒猛蛛","refName":"Enraptured Arachnid","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"猛獸野瘋狂","refName":"Enraptured Beast","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"迷幻的蟹","refName":"Enraptured Crab","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"奴役地獄犬","refName":"Enslaved Hellion","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"竄逃雛鳥","refName":"Escaped Rhex","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"費爾羅狂猿","refName":"Farric Ape","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"費爾羅酋長","refName":"Farric Chieftain","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"費爾羅烈焰犬幻獸","refName":"Farric Flame Hellion Alpha","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"費爾羅冰霜犬幻獸","refName":"Farric Frost Hellion Alpha","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"費爾羅巨人","refName":"Farric Gargantuan","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"費爾羅羊人","refName":"Farric Goatman","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"費爾羅巨獸","refName":"Farric Goliath","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"費爾羅山貓幻獸","refName":"Farric Lynx Alpha","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"費爾羅岩漿獵犬","refName":"Farric Magma Hound","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"費爾羅坑穴獵犬","refName":"Farric Pit Hound","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"費爾羅金牛人","refName":"Farric Taurus","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"費爾羅猛虎幻獸","refName":"Farric Tiger Alpha","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"費爾羅暴熊","refName":"Farric Ursa","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"費爾羅惡狼幻獸","refName":"Farric Wolf Alpha","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"初始之地費爾羅","refName":"Farrul, First of the Plains","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"菲恩絲吞噬獸","refName":"Fenumal Devourer","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"菲恩絲混血蜘蛛","refName":"Fenumal Hybrid Arachnid","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"菲恩絲疫病蜘蛛","refName":"Fenumal Plagued Arachnid","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"菲恩絲女皇","refName":"Fenumal Queen","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"菲恩絲毒蠍","refName":"Fenumal Scorpion","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"菲恩絲搗亂者","refName":"Fenumal Scrabbler","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"菲恩絲黑寡婦","refName":"Fenumal Widow","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"初始之夜菲恩絲","refName":"Fenumus, First of the Night","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"狂野龍蜥","refName":"Feral Chimeral","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"野雞","refName":"Feral Fowl","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"惡臭裂齒獸","refName":"Fetid Maw","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"戰鬥公牛","refName":"Fighting Bull","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"污穢裂齒獸","refName":"Filth Maw","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"煉獄犬","refName":"Flame Hellion","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"叢林猛獸","refName":"Forest Beast","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"凍冰狼","refName":"Freezing Wolf","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"殘暴獵犬","refName":"Fury Hound","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"原野毒吻","refName":"Glade Mamba","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"狂食反芻鳥","refName":"Gluttonous Gull","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"堅蹄羊人","refName":"Goatman","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"堅蹄羊人咒炎者","refName":"Goatman Fire-raiser","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"堅蹄羊人術師","refName":"Goatman Shaman","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"重踏羊人","refName":"Goatman Stomper","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"食岩爪蟹","refName":"Granite Eater","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"食礫爪蟹","refName":"Gravel Eater","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"牧金牛人","refName":"Grazing Taurus","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"長毛碎骨獸","refName":"Hairy Bonecruncher","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"幼蛛","refName":"Hatchling","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"山丘魔人","refName":"Hill Devil","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"寄生蟒蛇","refName":"Host Adder","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"寄生獸","refName":"Host Chieftain","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"寄生眼鏡蛇","refName":"Host Cobra","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"混血蜘蛛","refName":"Hybrid Arachnid","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"侵略魔猿","refName":"Infested Ape","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"受感染的蟹","refName":"Infested Crab","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"病態食腐蟲","refName":"Infested Crawler","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"病態裂齒獸","refName":"Infested Maw","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"病態恐喙鳥","refName":"Infested Rhoa","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"感染巨蛇","refName":"Infested Serpent","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"感染掠蛛","refName":"Infested Skitterer","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"病態地穴惡靈","refName":"Infested Tunnelfiend","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"病態之爪","refName":"Infested Ursa","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"受汙染的禿鷹","refName":"Infested Vulture","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"噴墨巨蛛","refName":"Ink Spinner","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"躍影巨蛛","refName":"Leaping Spider","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"窪地蚱蜢","refName":"Lowlands Hopper","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"伏擊毒蛛","refName":"Lurking Venom","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"大腹雛鳥","refName":"Maternal Rhex","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"莫薇兒的侍女","refName":"Merveil's Attendant","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"莫薇兒的寵愛","refName":"Merveil's Blessed","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"海妖愛女","refName":"Merveil's Chosen","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"海妖之女","refName":"Merveil's Daughter","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"莫薇兒的幼女","refName":"Merveil's Favoured","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"海妖之僕","refName":"Merveil's Retainer","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"傀儡骨喙","refName":"Mindless Scavenger","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"深山地獄犬","refName":"Mountain Hellion","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"深山地獄犬幻獸","refName":"Mountain Hellion Alpha","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"山脊猞猁","refName":"Mountain Lynx","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"陰暗恐喙鳥","refName":"Murk Runner","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"異變魔蛛","refName":"Mutant Arach","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"夜色毒蛇","refName":"Night Adder","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"劇毒毛蛛","refName":"Noxious Tarantula","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"黑曜沙蟹","refName":"Obsidian Eater","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"寄生蟲","refName":"Parasite","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"鬥牛犬魔","refName":"Pitbull Demon","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"疫病蜘蛛","refName":"Plagued Arachnid","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"武裝寄生蟲","refName":"Plated Parasite","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"彩羽龍蜥","refName":"Plumed Chimeral","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"墮落之爪","refName":"Plummeting Ursa","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"針背巨獸","refName":"Porcupine Goliath","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"肉食毒蠍","refName":"Predatory Scorpion","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"原始之粉碎之爪","refName":"Primal Crushclaw","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"原始之羊人","refName":"Primal Cystcaller","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"原始之野雛女酋","refName":"Primal Rhex Matriarch","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"淨化獵犬","refName":"Purge Hound","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"饞癆寄生蟲","refName":"Ravenous Parasite","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"雌性恐喙鳥","refName":"Rhoa Mare","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"噴石爪蟹","refName":"Rock Spitter","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"邪靈公雞","refName":"Rooster Fiend","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"腐敗禿鷹","refName":"Rotting Vulture","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"毀滅地獄犬","refName":"Ruins Hellion","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"沙地突躍獸","refName":"Sand Leaper","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"沙地毒蠍","refName":"Sand Scorpion","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"流沙巨蛇","refName":"Sand Serpent","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"沙地掠蛛","refName":"Sand Skitterer","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"初始之天斯卡沃","refName":"Saqawal, First of the Sky","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"斯卡沃噬血毒蛇","refName":"Saqawine Blood Viper","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"斯卡沃龍蜥","refName":"Saqawine Chimeral","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"斯卡沃眼鏡蛇","refName":"Saqawine Cobra","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"斯卡沃反芻鳥","refName":"Saqawine Retch","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"斯卡沃雛鳥","refName":"Saqawine Rhex","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"斯卡沃恐喙鳥","refName":"Saqawine Rhoa","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"斯卡沃禿鷹","refName":"Saqawine Vulture","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"殘暴的蟹","refName":"Savage Crab","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"熾熱蜘蛛","refName":"Scalding Arachnid","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"殲滅禿鷹","refName":"Scavenging Vulture","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"汙泥食腐蟲","refName":"Scum Crawler","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"汙穢食腐蟲","refName":"Sewage Crawler","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"下水道漂泊者","refName":"Sewer Drifter","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"鉤鏈地獄犬","refName":"Shackled Hellion","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"毒息巨獸","refName":"Shaggy Monstrosity","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"冥曲海妖","refName":"Singing Siren","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"枯骨野獸","refName":"Skeletal Beast","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"洞窟海蟲","refName":"Slimy Nemesis","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"白雪狼","refName":"Snow Wolf","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"無靈之眼","refName":"Soulless Watcher","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"長足巨蛛","refName":"Spindle Spider","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"脊刺巨蛇","refName":"Spine Serpent","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"酸液寄生蟲","refName":"Spitting Parasite","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"冥渡狂猿","refName":"Stygian Ape","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"冥界銀背獸","refName":"Stygian Silverback","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"強酸毒蠍","refName":"Sulphuric Scorpion","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"磺石爪牙","refName":"Sulphurspawn","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"黑黝軟獸","refName":"Swarthy Mollusc","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"射手之爪","refName":"Talon Archer","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"雄性恐喙鳥","refName":"Tercel Rhoa","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"叢林巨獸","refName":"Thicket Hulk","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"劇毒食腐蟲","refName":"Toxic Crawler","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"地穴惡靈","refName":"Tunnelfiend","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"瓦爾遺靈","refName":"Vaal Recluse","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"寶庫財蛙","refName":"Vaulting Croaker","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"劇毒海蟲","refName":"Venomous Spawn","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"狠毒獵犬","refName":"Vicious Hound","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"殘暴寄生蟲","refName":"Vicious Parasite","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"毒牙巨蛛","refName":"Virulent Spider","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"靈現之艾伯拉赫","refName":"Vivid Abberarach","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"靈現之禿鷹","refName":"Vivid Vulture","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"靈現之看守者","refName":"Vivid Watcher","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"爭戰獵犬","refName":"War Hound","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"虐靈蝦獸","refName":"Waste Lurcher","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"網床之母","refName":"Webbed Spider","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"野性之叢林巨獸","refName":"Wild Brambleback","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"野性之毛刺看守獸","refName":"Wild Bristle Matron","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"野性之地獄犬幻獸","refName":"Wild Hellion Alpha","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"野雛","refName":"Wild Rhex","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"綠蔭之爪","refName":"Woods Ursa","namespace":"CAPTURED_BEAST","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"凜冽之風","refName":"A Chilling Wind","namespace":"DIVINATION_CARD","tradeTag":"a-chilling-wind","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"代伯之墨","refName":"A Dab of Ink","namespace":"DIVINATION_CARD","tradeTag":"a-dab-of-ink","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"塵封記憶","refName":"A Dusty Memory","namespace":"DIVINATION_CARD","tradeTag":"a-dusty-memory","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"似曾相識","refName":"A Familiar Call","namespace":"DIVINATION_CARD","tradeTag":"a-familiar-call","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"比死更慘的命運","refName":"A Fate Worse Than Death","namespace":"DIVINATION_CARD","tradeTag":"a-fate-worse-than-death","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"謙卑請求","refName":"A Modest Request","namespace":"DIVINATION_CARD","tradeTag":"a-modest-request","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"母親的禮物","refName":"A Mother's Parting Gift","namespace":"DIVINATION_CARD","tradeTag":"a-mothers-parting-gift","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"隨風飄記","refName":"A Note in the Wind","namespace":"DIVINATION_CARD","tradeTag":"a-note-in-the-wind","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"藍海","refName":"A Sea of Blue","namespace":"DIVINATION_CARD","tradeTag":"a-sea-of-blue","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"完石","refName":"A Stone Perfected","namespace":"DIVINATION_CARD","tradeTag":"a-stone-perfected","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"棄財求生","refName":"Abandoned Wealth","namespace":"DIVINATION_CARD","tradeTag":"abandoned-wealth","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"適者生存","refName":"Acclimatisation","namespace":"DIVINATION_CARD","tradeTag":"acclimatisation","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"阿基爾的預言","refName":"Akil's Prophecy","namespace":"DIVINATION_CARD","tradeTag":"akils-prophecy","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"奧薇莉亞的恩典","refName":"Alivia's Grace","namespace":"DIVINATION_CARD","tradeTag":"alivias-grace","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"誘惑之寶","refName":"Alluring Bounty","namespace":"DIVINATION_CARD","tradeTag":"alluring-bounty","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"暗黑孤單中","refName":"Alone in the Darkness","namespace":"DIVINATION_CARD","tradeTag":"alone-in-the-darkness","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"變動感知","refName":"Altered Perception","namespace":"DIVINATION_CARD","tradeTag":"altered-perception","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"上進執迷","refName":"Ambitious Obsession","namespace":"DIVINATION_CARD","tradeTag":"ambitious-obsession","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"混亂代價","refName":"Anarchy's Price","namespace":"DIVINATION_CARD","tradeTag":"anarchys-price","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"瓦爾之傲","refName":"Arrogance of the Vaal","namespace":"DIVINATION_CARD","tradeTag":"arrogance-of-the-vaal","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"刺客恩惠","refName":"Assassin's Favour","namespace":"DIVINATION_CARD","tradeTag":"assassins-favour","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"刺客的餽贈","refName":"Assassin's Gift","namespace":"DIVINATION_CARD","tradeTag":"assassins-gift","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"星際保護","refName":"Astral Protection","namespace":"DIVINATION_CARD","tradeTag":"astral-protection","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"阿茲里的武庫","refName":"Atziri's Arsenal","namespace":"DIVINATION_CARD","tradeTag":"atziris-arsenal","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"膽識","refName":"Audacity","namespace":"DIVINATION_CARD","tradeTag":"audacity","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"吉祥之志","refName":"Auspicious Ambitions","namespace":"DIVINATION_CARD","tradeTag":"auspicious-ambitions","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"追擊之翼","refName":"Avian Pursuit","namespace":"DIVINATION_CARD","tradeTag":"avian-pursuit","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"碧藍之怒","refName":"Azure Rage","namespace":"DIVINATION_CARD","tradeTag":"azure-rage","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"艾斯尤倫的報酬","refName":"Azyran's Reward","namespace":"DIVINATION_CARD","tradeTag":"azyrans-reward","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"誘餌之期待","refName":"Baited Expectations","namespace":"DIVINATION_CARD","tradeTag":"baited-expectations","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"夕陽紅顏","refName":"Beauty Through Death","namespace":"DIVINATION_CARD","tradeTag":"beauty-through-death","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"珠寶","refName":"Bijoux","namespace":"DIVINATION_CARD","tradeTag":"bijoux","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"三者之誕","refName":"Birth of the Three","namespace":"DIVINATION_CARD","tradeTag":"birth-of-the-three","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"盲途","refName":"Blind Venture","namespace":"DIVINATION_CARD","tradeTag":"blind-venture","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"正義之福","refName":"Boon of Justice","namespace":"DIVINATION_CARD","tradeTag":"boon-of-justice","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"初始者的祝福","refName":"Boon of the First Ones","namespace":"DIVINATION_CARD","tradeTag":"boon-of-the-first-ones","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"無盡之境","refName":"Boundless Realms","namespace":"DIVINATION_CARD","tradeTag":"boundless-realms","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"弓匠的夢想","refName":"Bowyer's Dream","namespace":"DIVINATION_CARD","tradeTag":"bowyers-dream","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"不守信","refName":"Broken Promises","namespace":"DIVINATION_CARD","tradeTag":"broken-promises","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"打破休戰","refName":"Broken Truce","namespace":"DIVINATION_CARD","tradeTag":"broken-truce","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"兄弟之贈","refName":"Brother's Gift","namespace":"DIVINATION_CARD","tradeTag":"brothers-gift","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"伯仲財庫","refName":"Brother's Stash","namespace":"DIVINATION_CARD","tradeTag":"brothers-stash","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"流亡兄弟會","refName":"Brotherhood in Exile","namespace":"DIVINATION_CARD","tradeTag":"brotherhood-in-exile","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"畫筆、顏料和調色盤","refName":"Brush, Paint and Palette","namespace":"DIVINATION_CARD","tradeTag":"brush-paint-and-palette","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"深埋祕寶","refName":"Buried Treasure","namespace":"DIVINATION_CARD","tradeTag":"buried-treasure","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"燃燒之血","refName":"Burning Blood","namespace":"DIVINATION_CARD","tradeTag":"burning-blood","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"先人召喚","refName":"Call to the First Ones","namespace":"DIVINATION_CARD","tradeTag":"call-to-the-first-ones","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"卡麥歷亞之割","refName":"Cameria's Cut","namespace":"DIVINATION_CARD","tradeTag":"camerias-cut","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"製圖師之喜悅","refName":"Cartographer's Delight","namespace":"DIVINATION_CARD","tradeTag":"cartographers-delight","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"渾沌性情","refName":"Chaotic Disposition","namespace":"DIVINATION_CARD","tradeTag":"chaotic-disposition","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"冒險犯難","refName":"Chasing Risk","namespace":"DIVINATION_CARD","tradeTag":"chasing-risk","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"將軍","refName":"Checkmate","namespace":"DIVINATION_CARD","tradeTag":"checkmate","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"窒息內疚","refName":"Choking Guilt","namespace":"DIVINATION_CARD","tradeTag":"choking-guilt","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"昂貴古玩","refName":"Costly Curio","namespace":"DIVINATION_CARD","tradeTag":"costly-curio","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"貓咪議會","refName":"Council of Cats","namespace":"DIVINATION_CARD","tradeTag":"council-of-cats","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"飢渴之佔","refName":"Coveted Possession","namespace":"DIVINATION_CARD","tradeTag":"coveted-possession","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"髒話","refName":"Cursed Words","namespace":"DIVINATION_CARD","tradeTag":"cursed-words","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"漆黑夢魘","refName":"Dark Dreams","namespace":"DIVINATION_CARD","tradeTag":"dark-dreams","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"暗黑的誘惑","refName":"Dark Temptation","namespace":"DIVINATION_CARD","tradeTag":"dark-temptation","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"晦暗不明","refName":"Darker Half","namespace":"DIVINATION_CARD","tradeTag":"darker-half","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"致命喜悅","refName":"Deadly Joy","namespace":"DIVINATION_CARD","tradeTag":"deadly-joy","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"死亡","refName":"Death","namespace":"DIVINATION_CARD","tradeTag":"death","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"致死記號","refName":"Deathly Designs","namespace":"DIVINATION_CARD","tradeTag":"deathly-designs","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"癡呆症","refName":"Dementophobia","namespace":"DIVINATION_CARD","tradeTag":"dementophobia","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"昇華的賭注","refName":"Demigod's Wager","namespace":"DIVINATION_CARD","tradeTag":"demigods-wager","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"褻瀆的美德","refName":"Desecrated Virtue","namespace":"DIVINATION_CARD","tradeTag":"desecrated-virtue","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"絕望遠征","refName":"Desperate Crusade","namespace":"DIVINATION_CARD","tradeTag":"desperate-crusade","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"殞落的命運","refName":"Destined to Crumble","namespace":"DIVINATION_CARD","tradeTag":"destined-to-crumble","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"達拉之訓","refName":"Dialla's Subjugation","namespace":"DIVINATION_CARD","tradeTag":"diallas-subjugation","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"蔑視","refName":"Disdain","namespace":"DIVINATION_CARD","tradeTag":"disdain","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"神聖之美","refName":"Divine Beauty","namespace":"DIVINATION_CARD","tradeTag":"divine-beauty","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"德瑞競之狂","refName":"Doedre's Madness","namespace":"DIVINATION_CARD","tradeTag":"doedres-madness","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"披夢","refName":"Draped in Dreams","namespace":"DIVINATION_CARD","tradeTag":"draped-in-dreams","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"雙重性","refName":"Duality","namespace":"DIVINATION_CARD","tradeTag":"duality","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"垂死之光","refName":"Dying Light","namespace":"DIVINATION_CARD","tradeTag":"dying-light","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"大地吞食者","refName":"Earth Drinker","namespace":"DIVINATION_CARD","tradeTag":"earth-drinker","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"愛我請舉手","refName":"Echoes of Love","namespace":"DIVINATION_CARD","tradeTag":"echoes-of-love","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"完美異能","refName":"Eldritch Perfection","namespace":"DIVINATION_CARD","tradeTag":"eldritch-perfection","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"純潔帝王","refName":"Emperor of Purity","namespace":"DIVINATION_CARD","tradeTag":"emperor-of-purity","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"帝運","refName":"Emperor's Luck","namespace":"DIVINATION_CARD","tradeTag":"emperors-luck","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"無盡的夜晚","refName":"Endless Night","namespace":"DIVINATION_CARD","tradeTag":"endless-night","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"腐爛於血","refName":"Etched in Blood","namespace":"DIVINATION_CARD","tradeTag":"etched-in-blood","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"永恆之繫","refName":"Eternal Bonds","namespace":"DIVINATION_CARD","tradeTag":"eternal-bonds","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"千變萬化","refName":"Ever-Changing","namespace":"DIVINATION_CARD","tradeTag":"ever-changing","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"命運大會","refName":"Fateful Meeting","namespace":"DIVINATION_CARD","tradeTag":"fateful-meeting","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"神秘之火的起源","refName":"Fire Of Unknown Origin","namespace":"DIVINATION_CARD","tradeTag":"fire-of-unknown-origin","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"禁忌之力","refName":"Forbidden Power","namespace":"DIVINATION_CARD","tradeTag":"forbidden-power","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"友誼小船","refName":"Friendship","namespace":"DIVINATION_CARD","tradeTag":"friendship","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"骨頭燒到灰燼","refName":"From Bone to Ashes","namespace":"DIVINATION_CARD","tradeTag":"from-bone-to-ashes","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"進步發明","refName":"Further Invention","namespace":"DIVINATION_CARD","tradeTag":"further-invention","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"寶石匠的憐憫","refName":"Gemcutter's Mercy","namespace":"DIVINATION_CARD","tradeTag":"gemcutters-mercy","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"寶石匠的允諾","refName":"Gemcutter's Promise","namespace":"DIVINATION_CARD","tradeTag":"gemcutters-promise","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"安賽娜絲贈禮","refName":"Gift of Asenath","namespace":"DIVINATION_CARD","tradeTag":"gift-of-asenath","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"寶石皇后的贈禮","refName":"Gift of the Gemling Queen","namespace":"DIVINATION_CARD","tradeTag":"gift-of-the-gemling-queen","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"希望微光","refName":"Glimmer of Hope","namespace":"DIVINATION_CARD","tradeTag":"glimmer-of-hope","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"亡靈智慧","refName":"Grave Knowledge","namespace":"DIVINATION_CARD","tradeTag":"grave-knowledge","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"守護者的挑戰","refName":"Guardian's Challenge","namespace":"DIVINATION_CARD","tradeTag":"guardians-challenge","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"靈魂和諧","refName":"Harmony of Souls","namespace":"DIVINATION_CARD","tradeTag":"harmony-of-souls","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"黑影纏繞","refName":"Haunting Shadows","namespace":"DIVINATION_CARD","tradeTag":"haunting-shadows","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"她的面具","refName":"Her Mask","namespace":"DIVINATION_CARD","tradeTag":"her-mask","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"陰陽眼","refName":"Heterochromia","namespace":"DIVINATION_CARD","tradeTag":"heterochromia","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"家園","refName":"Home","namespace":"DIVINATION_CARD","tradeTag":"home","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"希望","refName":"Hope","namespace":"DIVINATION_CARD","tradeTag":"hope-card","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"明鏡","refName":"House of Mirrors","namespace":"DIVINATION_CARD","tradeTag":"house-of-mirrors","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"狂妄","refName":"Hubris","namespace":"DIVINATION_CARD","tradeTag":"hubris","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"謙遜","refName":"Humility","namespace":"DIVINATION_CARD","tradeTag":"humility","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"獵者之願","refName":"Hunter's Resolve","namespace":"DIVINATION_CARD","tradeTag":"hunters-resolve","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"獵人的獎賞","refName":"Hunter's Reward","namespace":"DIVINATION_CARD","tradeTag":"hunters-reward","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"來了兄弟","refName":"I See Brothers","namespace":"DIVINATION_CARD","tradeTag":"i-see-brothers","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"不朽決心","refName":"Immortal Resolve","namespace":"DIVINATION_CARD","tradeTag":"immortal-resolve","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"不完美的回憶","refName":"Imperfect Memories","namespace":"DIVINATION_CARD","tradeTag":"imperfect-memories","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"不朽聖物","refName":"Imperial Legacy","namespace":"DIVINATION_CARD","tradeTag":"imperial-legacy","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"驚喜盒","refName":"Jack in the Box","namespace":"DIVINATION_CARD","tradeTag":"jack-in-the-box","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"審判之聲","refName":"Judging Voices","namespace":"DIVINATION_CARD","tradeTag":"judging-voices","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"正義野心","refName":"Justified Ambition","namespace":"DIVINATION_CARD","tradeTag":"justified-ambition","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"守護者的腐敗","refName":"Keeper's Corruption","namespace":"DIVINATION_CARD","tradeTag":"keepers-corruption","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"鐵骨心腸","refName":"Lachrymal Necrosis","namespace":"DIVINATION_CARD","tradeTag":"lachrymal-necrosis","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"蘭塔朵迷惘之愛","refName":"Lantador's Lost Love","namespace":"DIVINATION_CARD","tradeTag":"lantadors-lost-love","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"最後希望","refName":"Last Hope","namespace":"DIVINATION_CARD","tradeTag":"last-hope","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"聽天由命","refName":"Left to Fate","namespace":"DIVINATION_CARD","tradeTag":"left-to-fate","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"絕境誘惑","refName":"Lethean Temptation","namespace":"DIVINATION_CARD","tradeTag":"lethean-temptation","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"光與諦","refName":"Light and Truth","namespace":"DIVINATION_CARD","tradeTag":"light-and-truth","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"殘墟","refName":"Lingering Remnants","namespace":"DIVINATION_CARD","tradeTag":"lingering-remnants","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"孤軍奮戰","refName":"Lonely Warrior","namespace":"DIVINATION_CARD","tradeTag":"lonely-warrior","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"失落帝國","refName":"Lost Worlds","namespace":"DIVINATION_CARD","tradeTag":"lost-worlds","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"冰冷愛戀","refName":"Love Through Ice","namespace":"DIVINATION_CARD","tradeTag":"love-through-ice","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"忠誠","refName":"Loyalty","namespace":"DIVINATION_CARD","tradeTag":"loyalty","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"瓦爾之運","refName":"Luck of the Vaal","namespace":"DIVINATION_CARD","tradeTag":"luck-of-the-vaal","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"好運連連","refName":"Lucky Connections","namespace":"DIVINATION_CARD","tradeTag":"lucky-connections","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"幸運牌組","refName":"Lucky Deck","namespace":"DIVINATION_CARD","tradeTag":"lucky-deck","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"輝煌寶藏","refName":"Luminous Trove","namespace":"DIVINATION_CARD","tradeTag":"luminous-trove","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"莉莎之息","refName":"Lysah's Respite","namespace":"DIVINATION_CARD","tradeTag":"lysahs-respite","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"巨著","refName":"Magnum Opus","namespace":"DIVINATION_CARD","tradeTag":"magnum-opus","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"熊男","refName":"Man With Bear","namespace":"DIVINATION_CARD","tradeTag":"man-with-bear","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"俄羅斯娃娃","refName":"Matryoshka","namespace":"DIVINATION_CARD","tradeTag":"matryoshka","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"茂爾.佈雷德","refName":"Mawr Blaidd","namespace":"DIVINATION_CARD","tradeTag":"mawr-blaidd","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"無情軍械","refName":"Merciless Armament","namespace":"DIVINATION_CARD","tradeTag":"merciless-armament","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"正氣","refName":"Might is Right","namespace":"DIVINATION_CARD","tradeTag":"might-is-right","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"黑暗中的苦難","refName":"Misery in Darkness","namespace":"DIVINATION_CARD","tradeTag":"misery-in-darkness","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"手套","refName":"Mitts","namespace":"DIVINATION_CARD","tradeTag":"mitts","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"非黑即白","refName":"Monochrome","namespace":"DIVINATION_CARD","tradeTag":"monochrome","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"貪婪無盡","refName":"More is Never Enough","namespace":"DIVINATION_CARD","tradeTag":"more-is-never-enough","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"無痕","refName":"No Traces","namespace":"DIVINATION_CARD","tradeTag":"no-traces","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"邊緣之冠","refName":"Nook's Crown","namespace":"DIVINATION_CARD","tradeTag":"nooks-crown","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"寄生旅人","refName":"Parasitic Passengers","namespace":"DIVINATION_CARD","tradeTag":"parasitic-passengers","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"平靜時刻","refName":"Peaceful Moments","namespace":"DIVINATION_CARD","tradeTag":"peaceful-moments","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"完美無瑕","refName":"Perfection","namespace":"DIVINATION_CARD","tradeTag":"perfection","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"有毒信仰","refName":"Poisoned Faith","namespace":"DIVINATION_CARD","tradeTag":"poisoned-faith","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"偏見","refName":"Prejudice","namespace":"DIVINATION_CARD","tradeTag":"prejudice","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"驕者必敗","refName":"Pride Before the Fall","namespace":"DIVINATION_CARD","tradeTag":"pride-before-the-fall","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"初始者的驕傲","refName":"Pride of the First Ones","namespace":"DIVINATION_CARD","tradeTag":"pride-of-the-first-ones","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"普羅米修斯的裝甲庫","refName":"Prometheus' Armoury","namespace":"DIVINATION_CARD","tradeTag":"prometheus-armoury","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"興盛","refName":"Prosperity","namespace":"DIVINATION_CARD","tradeTag":"prosperity","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"混沌之雨","refName":"Rain of Chaos","namespace":"DIVINATION_CARD","tradeTag":"rain-of-chaos","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"誘惑之雨","refName":"Rain Tempter","namespace":"DIVINATION_CARD","tradeTag":"rain-tempter","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"鼠輩","refName":"Rats","namespace":"DIVINATION_CARD","tradeTag":"rats","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"重生","refName":"Rebirth","namespace":"DIVINATION_CARD","tradeTag":"rebirth","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"重生與復興","refName":"Rebirth and Renewal","namespace":"DIVINATION_CARD","tradeTag":"rebirth-and-renewal","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"魯莽的野心","refName":"Reckless Ambition","namespace":"DIVINATION_CARD","tradeTag":"reckless-ambition","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"我懷念的","refName":"Remembrance","namespace":"DIVINATION_CARD","tradeTag":"remembrance","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"菩提誓約","refName":"Sambodhi's Vow","namespace":"DIVINATION_CARD","tradeTag":"sambodhis-vow","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"菩提的智慧","refName":"Sambodhi's Wisdom","namespace":"DIVINATION_CARD","tradeTag":"sambodhis-wisdom","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"海洋學者","refName":"Scholar of the Seas","namespace":"DIVINATION_CARD","tradeTag":"scholar-of-the-seas","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"七年霉運","refName":"Seven Years Bad Luck","namespace":"DIVINATION_CARD","tradeTag":"seven-years-bad-luck","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"命運之晶","refName":"Shard of Fate","namespace":"DIVINATION_CARD","tradeTag":"shard-of-fate","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"沉默與寒霜","refName":"Silence and Frost","namespace":"DIVINATION_CARD","tradeTag":"silence-and-frost","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"社會的懊悔","refName":"Society's Remorse","namespace":"DIVINATION_CARD","tradeTag":"societys-remorse","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"黑暗物質","refName":"Something Dark","namespace":"DIVINATION_CARD","tradeTag":"something-dark","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"靈魂安息","refName":"Soul Quenched","namespace":"DIVINATION_CARD","tradeTag":"soul-quenched","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"雷劈","refName":"Struck by Lightning","namespace":"DIVINATION_CARD","tradeTag":"struck-by-lightning","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"無罪救贖","refName":"Succor of the Sinless","namespace":"DIVINATION_CARD","tradeTag":"succor-of-the-sinless","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"自我約束","refName":"Temperance","namespace":"DIVINATION_CARD","tradeTag":"temperance","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"學術界","refName":"The Academic","namespace":"DIVINATION_CARD","tradeTag":"the-academic","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"仰慕者","refName":"The Admirer","namespace":"DIVINATION_CARD","tradeTag":"the-admirer","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"冒險之靈","refName":"The Adventuring Spirit","namespace":"DIVINATION_CARD","tradeTag":"the-adventuring-spirit","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"大藝術家","refName":"The Aesthete","namespace":"DIVINATION_CARD","tradeTag":"the-aesthete","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"藥劑師","refName":"The Apothecary","namespace":"DIVINATION_CARD","tradeTag":"the-apothecary","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"魔法師的右手","refName":"The Archmage's Right Hand","namespace":"DIVINATION_CARD","tradeTag":"the-archmages-right-hand","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"競技場冠軍","refName":"The Arena Champion","namespace":"DIVINATION_CARD","tradeTag":"the-arena-champion","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"血滴子","refName":"The Army of Blood","namespace":"DIVINATION_CARD","tradeTag":"the-army-of-blood","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"藝者","refName":"The Artist","namespace":"DIVINATION_CARD","tradeTag":"the-artist","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"捕夢網","refName":"The Aspirant","namespace":"DIVINATION_CARD","tradeTag":"the-aspirant","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"天文巫師","refName":"The Astromancer","namespace":"DIVINATION_CARD","tradeTag":"the-astromancer","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"復仇者","refName":"The Avenger","namespace":"DIVINATION_CARD","tradeTag":"the-avenger","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"覺醒","refName":"The Awakened","namespace":"DIVINATION_CARD","tradeTag":"the-awakened","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"戰火鍛造","refName":"The Battle Born","namespace":"DIVINATION_CARD","tradeTag":"the-battle-born","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"熊腰雌背","refName":"The Bear Woman","namespace":"DIVINATION_CARD","tradeTag":"the-bear-woman","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"巨獸","refName":"The Beast","namespace":"DIVINATION_CARD","tradeTag":"the-beast","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"背叛","refName":"The Betrayal","namespace":"DIVINATION_CARD","tradeTag":"the-betrayal","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"苦澀綻放","refName":"The Bitter Blossom","namespace":"DIVINATION_CARD","tradeTag":"the-bitter-blossom","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"熊熊大火","refName":"The Blazing Fire","namespace":"DIVINATION_CARD","tradeTag":"the-blazing-fire","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"血肉之軀","refName":"The Body","namespace":"DIVINATION_CARD","tradeTag":"the-body","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"識骨尋蹤","refName":"The Bones","namespace":"DIVINATION_CARD","tradeTag":"the-bones","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"頑強的戰鬥法","refName":"The Brawny Battle Mage","namespace":"DIVINATION_CARD","tradeTag":"the-brawny-battle-mage","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"裂痕","refName":"The Breach","namespace":"DIVINATION_CARD","tradeTag":"the-breach","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"碎裂大帝","refName":"The Brittle Emperor","namespace":"DIVINATION_CARD","tradeTag":"the-brittle-emperor","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"囤積","refName":"The Cache","namespace":"DIVINATION_CARD","tradeTag":"the-cache","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"不諧之音","refName":"The Cacophony","namespace":"DIVINATION_CARD","tradeTag":"the-cacophony","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"傳喚","refName":"The Calling","namespace":"DIVINATION_CARD","tradeTag":"the-calling","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"老千","refName":"The Card Sharp","namespace":"DIVINATION_CARD","tradeTag":"the-card-sharp","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"食腐掠鴉","refName":"The Carrion Crow","namespace":"DIVINATION_CARD","tradeTag":"the-carrion-crow","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"製圖師","refName":"The Cartographer","namespace":"DIVINATION_CARD","tradeTag":"the-cartographer","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"巨變","refName":"The Cataclysm","namespace":"DIVINATION_CARD","tradeTag":"the-cataclysm","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"災變","refName":"The Catalyst","namespace":"DIVINATION_CARD","tradeTag":"the-catalyst","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"姜太公釣魚","refName":"The Catch","namespace":"DIVINATION_CARD","tradeTag":"the-catch","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"天堂執法官","refName":"The Celestial Justicar","namespace":"DIVINATION_CARD","tradeTag":"the-celestial-justicar","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"璀璨之石","refName":"The Celestial Stone","namespace":"DIVINATION_CARD","tradeTag":"the-celestial-stone","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"束縛之鍊","refName":"The Chains that Bind","namespace":"DIVINATION_CARD","tradeTag":"the-chains-that-bind","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"詐欺師","refName":"The Cheater","namespace":"DIVINATION_CARD","tradeTag":"the-cheater","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"天選之人","refName":"The Chosen","namespace":"DIVINATION_CARD","tradeTag":"the-chosen","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"風暴將至","refName":"The Coming Storm","namespace":"DIVINATION_CARD","tradeTag":"the-coming-storm","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"雷針","refName":"The Conduit","namespace":"DIVINATION_CARD","tradeTag":"the-conduit","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"想要","refName":"The Craving","namespace":"DIVINATION_CARD","tradeTag":"the-craving","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"詛咒之王","refName":"The Cursed King","namespace":"DIVINATION_CARD","tradeTag":"the-cursed-king","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"滅世之咒","refName":"The Damned","namespace":"DIVINATION_CARD","tradeTag":"the-damned","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"極致不凡","refName":"The Dapper Prodigy","namespace":"DIVINATION_CARD","tradeTag":"the-dapper-prodigy","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"黑暗術者","refName":"The Dark Mage","namespace":"DIVINATION_CARD","tradeTag":"the-dark-mage","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"惡夢","refName":"The Darkest Dream","namespace":"DIVINATION_CARD","tradeTag":"the-darkest-dream","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"買賣","refName":"The Deal","namespace":"DIVINATION_CARD","tradeTag":"the-deal","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"你這個騙子","refName":"The Deceiver","namespace":"DIVINATION_CARD","tradeTag":"the-deceiver","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"無盡之淵","refName":"The Deep Ones","namespace":"DIVINATION_CARD","tradeTag":"the-deep-ones","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"惡魔","refName":"The Demon","namespace":"DIVINATION_CARD","tradeTag":"the-demon","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"魅魔","refName":"The Demoness","namespace":"DIVINATION_CARD","tradeTag":"the-demoness","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"終點站","refName":"The Destination","namespace":"DIVINATION_CARD","tradeTag":"the-destination","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"蹂躪之王","refName":"The Devastator","namespace":"DIVINATION_CARD","tradeTag":"the-devastator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"瘋醫","refName":"The Doctor","namespace":"DIVINATION_CARD","tradeTag":"the-doctor","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"傀儡","refName":"The Doppelganger","namespace":"DIVINATION_CARD","tradeTag":"the-doppelganger","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"巨龍","refName":"The Dragon","namespace":"DIVINATION_CARD","tradeTag":"the-dragon","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"龍之心","refName":"The Dragon's Heart","namespace":"DIVINATION_CARD","tradeTag":"the-dragons-heart","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"夢想家","refName":"The Dreamer","namespace":"DIVINATION_CARD","tradeTag":"the-dreamer","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"夢之國度","refName":"The Dreamland","namespace":"DIVINATION_CARD","tradeTag":"the-dreamland","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"酒醉貴族","refName":"The Drunken Aristocrat","namespace":"DIVINATION_CARD","tradeTag":"the-drunken-aristocrat","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"地牢大師","refName":"The Dungeon Master","namespace":"DIVINATION_CARD","tradeTag":"the-dungeon-master","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"輕鬆漫步","refName":"The Easy Stroll","namespace":"DIVINATION_CARD","tradeTag":"the-easy-stroll","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"怪異腐敗","refName":"The Eldritch Decay","namespace":"DIVINATION_CARD","tradeTag":"the-eldritch-decay","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"空虛","refName":"The Emptiness","namespace":"DIVINATION_CARD","tradeTag":"the-emptiness","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"黑暗來犯","refName":"The Encroaching Darkness","namespace":"DIVINATION_CARD","tradeTag":"the-encroaching-darkness","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"無盡黯黑","refName":"The Endless Darkness","namespace":"DIVINATION_CARD","tradeTag":"the-endless-darkness","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"忍耐","refName":"The Endurance","namespace":"DIVINATION_CARD","tradeTag":"the-endurance","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"執行者","refName":"The Enforcer","namespace":"DIVINATION_CARD","tradeTag":"the-enforcer","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"智慧啟蒙","refName":"The Enlightened","namespace":"DIVINATION_CARD","tradeTag":"the-enlightened","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"熱心民眾","refName":"The Enthusiasts","namespace":"DIVINATION_CARD","tradeTag":"the-enthusiasts","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"逃脫大師","refName":"The Escape","namespace":"DIVINATION_CARD","tradeTag":"the-escape","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"永恆戰爭","refName":"The Eternal War","namespace":"DIVINATION_CARD","tradeTag":"the-eternal-war","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"空靈","refName":"The Ethereal","namespace":"DIVINATION_CARD","tradeTag":"the-ethereal","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"探險家","refName":"The Explorer","namespace":"DIVINATION_CARD","tradeTag":"the-explorer","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"恐懼之眼","refName":"The Eye of Terror","namespace":"DIVINATION_CARD","tradeTag":"the-eye-of-terror","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"龍眼","refName":"The Eye of the Dragon","namespace":"DIVINATION_CARD","tradeTag":"the-eye-of-the-dragon","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"無底深淵","refName":"The Fathomless Depths","namespace":"DIVINATION_CARD","tradeTag":"the-fathomless-depths","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"盛宴","refName":"The Feast","namespace":"DIVINATION_CARD","tradeTag":"the-feast","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"魔鬼","refName":"The Fiend","namespace":"DIVINATION_CARD","tradeTag":"the-fiend","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"點睛之筆","refName":"The Finishing Touch","namespace":"DIVINATION_CARD","tradeTag":"the-finishing-touch","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"魚販","refName":"The Fishmonger","namespace":"DIVINATION_CARD","tradeTag":"the-fishmonger","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"製箭者","refName":"The Fletcher","namespace":"DIVINATION_CARD","tradeTag":"the-fletcher","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"芙蘿拉的贈禮","refName":"The Flora's Gift","namespace":"DIVINATION_CARD","tradeTag":"the-floras-gift","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"愚人","refName":"The Fool","namespace":"DIVINATION_CARD","tradeTag":"the-fool","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"被遺忘的寶藏","refName":"The Forgotten Treasure","namespace":"DIVINATION_CARD","tradeTag":"the-forgotten-treasure","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"莫測之海","refName":"The Formless Sea","namespace":"DIVINATION_CARD","tradeTag":"the-formless-sea","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"遺棄","refName":"The Forsaken","namespace":"DIVINATION_CARD","tradeTag":"the-forsaken","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"幸運的人","refName":"The Fortunate","namespace":"DIVINATION_CARD","tradeTag":"the-fortunate","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"凝視前方","refName":"The Forward Gaze","namespace":"DIVINATION_CARD","tradeTag":"the-forward-gaze","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"狡狐","refName":"The Fox","namespace":"DIVINATION_CARD","tradeTag":"the-fox","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"荊棘中的狐狸","refName":"The Fox in the Brambles","namespace":"DIVINATION_CARD","tradeTag":"the-fox-in-the-brambles","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"賭徒","refName":"The Gambler","namespace":"DIVINATION_CARD","tradeTag":"the-gambler","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"裝飾之力","refName":"The Garish Power","namespace":"DIVINATION_CARD","tradeTag":"the-garish-power","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"珠寶匠","refName":"The Gemcutter","namespace":"DIVINATION_CARD","tradeTag":"the-gemcutter","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"紳士之風","refName":"The Gentleman","namespace":"DIVINATION_CARD","tradeTag":"the-gentleman","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"鬥士","refName":"The Gladiator","namespace":"DIVINATION_CARD","tradeTag":"the-gladiator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"黃金年代","refName":"The Golden Era","namespace":"DIVINATION_CARD","tradeTag":"the-golden-era","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"雄偉動機","refName":"The Greatest Intentions","namespace":"DIVINATION_CARD","tradeTag":"the-greatest-intentions","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"鴻溝","refName":"The Gulf","namespace":"DIVINATION_CARD","tradeTag":"the-gulf","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"心心向榮","refName":"The Hale Heart","namespace":"DIVINATION_CARD","tradeTag":"the-hale-heart","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"收割者","refName":"The Harvester","namespace":"DIVINATION_CARD","tradeTag":"the-harvester","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"隱士","refName":"The Hermit","namespace":"DIVINATION_CARD","tradeTag":"the-hermit","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"英勇射擊","refName":"The Heroic Shot","namespace":"DIVINATION_CARD","tradeTag":"the-heroic-shot","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"蜂巢知識","refName":"The Hive of Knowledge","namespace":"DIVINATION_CARD","tradeTag":"the-hive-of-knowledge","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"寶箱","refName":"The Hoarder","namespace":"DIVINATION_CARD","tradeTag":"the-hoarder","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"勾鎖","refName":"The Hook","namespace":"DIVINATION_CARD","tradeTag":"the-hook","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"飢餓","refName":"The Hunger","namespace":"DIVINATION_CARD","tradeTag":"the-hunger","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"永恆不朽","refName":"The Immortal","namespace":"DIVINATION_CARD","tradeTag":"the-immortal","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"咒語","refName":"The Incantation","namespace":"DIVINATION_CARD","tradeTag":"the-incantation","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"善","refName":"The Innocent","namespace":"DIVINATION_CARD","tradeTag":"the-innocent","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"移花接木","refName":"The Inoculated","namespace":"DIVINATION_CARD","tradeTag":"the-inoculated","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"瘋貓","refName":"The Insane Cat","namespace":"DIVINATION_CARD","tradeTag":"the-insane-cat","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"貪婪","refName":"The Insatiable","namespace":"DIVINATION_CARD","tradeTag":"the-insatiable","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"發明家","refName":"The Inventor","namespace":"DIVINATION_CARD","tradeTag":"the-inventor","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"小丑","refName":"The Jester","namespace":"DIVINATION_CARD","tradeTag":"the-jester","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"珠寶商的施捨","refName":"The Jeweller's Boon","namespace":"DIVINATION_CARD","tradeTag":"the-jewellers-boon","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"記者","refName":"The Journalist","namespace":"DIVINATION_CARD","tradeTag":"the-journalist","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"愛旅行","refName":"The Journey","namespace":"DIVINATION_CARD","tradeTag":"the-journey","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"王者之刃","refName":"The King's Blade","namespace":"DIVINATION_CARD","tradeTag":"the-kings-blade","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"王者之心","refName":"The King's Heart","namespace":"DIVINATION_CARD","tradeTag":"the-kings-heart","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"降落","refName":"The Landing","namespace":"DIVINATION_CARD","tradeTag":"the-landing","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"屹立不敗之人","refName":"The Last One Standing","namespace":"DIVINATION_CARD","tradeTag":"the-last-one-standing","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"最後晚宴","refName":"The Last Supper","namespace":"DIVINATION_CARD","tradeTag":"the-last-supper","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"龐然大物","refName":"The Leviathan","namespace":"DIVINATION_CARD","tradeTag":"the-leviathan","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"巫妖","refName":"The Lich","namespace":"DIVINATION_CARD","tradeTag":"the-lich","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"竊命者","refName":"The Life Thief","namespace":"DIVINATION_CARD","tradeTag":"the-life-thief","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"雄獅","refName":"The Lion","namespace":"DIVINATION_CARD","tradeTag":"the-lion","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"長期詐騙","refName":"The Long Con","namespace":"DIVINATION_CARD","tradeTag":"the-long-con","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"守望特工","refName":"The Long Watch","namespace":"DIVINATION_CARD","tradeTag":"the-long-watch","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"暗黑之王","refName":"The Lord in Black","namespace":"DIVINATION_CARD","tradeTag":"the-lord-in-black","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"慶典之王","refName":"The Lord of Celebration","namespace":"DIVINATION_CARD","tradeTag":"the-lord-of-celebration","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"情人","refName":"The Lover","namespace":"DIVINATION_CARD","tradeTag":"the-lover","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"月影女祭司","refName":"The Lunaris Priestess","namespace":"DIVINATION_CARD","tradeTag":"the-lunaris-priestess","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"瘋癲之王","refName":"The Mad King","namespace":"DIVINATION_CARD","tradeTag":"the-mad-king","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"岩漿蟹","refName":"The Magma Crab","namespace":"DIVINATION_CARD","tradeTag":"the-magma-crab","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"大師級","refName":"The Master","namespace":"DIVINATION_CARD","tradeTag":"the-master","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"工匠大師","refName":"The Master Artisan","namespace":"DIVINATION_CARD","tradeTag":"the-master-artisan","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"傭兵","refName":"The Mercenary","namespace":"DIVINATION_CARD","tradeTag":"the-mercenary","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"傳訊者","refName":"The Messenger","namespace":"DIVINATION_CARD","tradeTag":"the-messenger","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"鐵匠的贈禮","refName":"The Metalsmith's Gift","namespace":"DIVINATION_CARD","tradeTag":"the-metalsmiths-gift","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"心靈之眼","refName":"The Mind's Eyes","namespace":"DIVINATION_CARD","tradeTag":"the-minds-eyes","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"神山","refName":"The Mountain","namespace":"DIVINATION_CARD","tradeTag":"the-mountain","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"護理師","refName":"The Nurse","namespace":"DIVINATION_CARD","tradeTag":"the-nurse","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"誓言","refName":"The Oath","namespace":"DIVINATION_CARD","tradeTag":"the-oath","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"晦澀","refName":"The Obscured","namespace":"DIVINATION_CARD","tradeTag":"the-obscured","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"奉獻","refName":"The Offering","namespace":"DIVINATION_CARD","tradeTag":"the-offering","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"後裔","refName":"The Offspring","namespace":"DIVINATION_CARD","tradeTag":"the-offspring","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"老人與海","refName":"The Old Man","namespace":"DIVINATION_CARD","tradeTag":"the-old-man","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"逃脫","refName":"The One That Got Away","namespace":"DIVINATION_CARD","tradeTag":"the-one-that-got-away","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"完人","refName":"The One With All","namespace":"DIVINATION_CARD","tradeTag":"the-one-with-all","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"淨白","refName":"The Opulent","namespace":"DIVINATION_CARD","tradeTag":"the-opulent","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"群聚之首","refName":"The Pack Leader","namespace":"DIVINATION_CARD","tradeTag":"the-pack-leader","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"協約","refName":"The Pact","namespace":"DIVINATION_CARD","tradeTag":"the-pact","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"病患","refName":"The Patient","namespace":"DIVINATION_CARD","tradeTag":"the-patient","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"懺悔者","refName":"The Penitent","namespace":"DIVINATION_CARD","tradeTag":"the-penitent","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"詩人","refName":"The Poet","namespace":"DIVINATION_CARD","tradeTag":"the-poet","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"博學","refName":"The Polymath","namespace":"DIVINATION_CARD","tradeTag":"the-polymath","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"刺蝟","refName":"The Porcupine","namespace":"DIVINATION_CARD","tradeTag":"the-porcupine","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"奉獻的代價","refName":"The Price of Devotion","namespace":"DIVINATION_CARD","tradeTag":"the-price-of-devotion","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"忠誠代價","refName":"The Price of Loyalty","namespace":"DIVINATION_CARD","tradeTag":"the-price-of-loyalty","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"預知代價","refName":"The Price of Prescience","namespace":"DIVINATION_CARD","tradeTag":"the-price-of-prescience","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"守護的代價","refName":"The Price of Protection","namespace":"DIVINATION_CARD","tradeTag":"the-price-of-protection","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"先祖之物","refName":"The Primordial","namespace":"DIVINATION_CARD","tradeTag":"the-primordial","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"黑暗王子","refName":"The Prince of Darkness","namespace":"DIVINATION_CARD","tradeTag":"the-prince-of-darkness","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"專家級","refName":"The Professor","namespace":"DIVINATION_CARD","tradeTag":"the-professor","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"月神後嗣","refName":"The Progeny of Lunaris","namespace":"DIVINATION_CARD","tradeTag":"the-progeny-of-lunaris","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"謎","refName":"The Puzzle","namespace":"DIVINATION_CARD","tradeTag":"the-puzzle","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"女王","refName":"The Queen","namespace":"DIVINATION_CARD","tradeTag":"the-queen","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"兔腳","refName":"The Rabbit's Foot","namespace":"DIVINATION_CARD","tradeTag":"the-rabbits-foot","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"瘋狂恐喙","refName":"The Rabid Rhoa","namespace":"DIVINATION_CARD","tradeTag":"the-rabid-rhoa","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"大平台","refName":"The Realm","namespace":"DIVINATION_CARD","tradeTag":"the-realm","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"鼠歸","refName":"The Return of the Rat","namespace":"DIVINATION_CARD","tradeTag":"the-return-of-the-rat","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"危機","refName":"The Risk","namespace":"DIVINATION_CARD","tradeTag":"the-risk","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"元素之儀","refName":"The Rite of Elements","namespace":"DIVINATION_CARD","tradeTag":"the-rite-of-elements","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"力量之道","refName":"The Road to Power","namespace":"DIVINATION_CARD","tradeTag":"the-road-to-power","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"吟遊鏽才","refName":"The Rusted Bard","namespace":"DIVINATION_CARD","tradeTag":"the-rusted-bard","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"無情的珊芎","refName":"The Ruthless Ceinture","namespace":"DIVINATION_CARD","tradeTag":"the-ruthless-ceinture","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"犧牲","refName":"The Sacrifice","namespace":"DIVINATION_CARD","tradeTag":"the-sacrifice","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"聖徒之財","refName":"The Saint's Treasure","namespace":"DIVINATION_CARD","tradeTag":"the-saints-treasure","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"武士之眼","refName":"The Samurai's Eye","namespace":"DIVINATION_CARD","tradeTag":"the-samurais-eye","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"創痕之原","refName":"The Scarred Meadow","namespace":"DIVINATION_CARD","tradeTag":"the-scarred-meadow","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"清道夫","refName":"The Scavenger","namespace":"DIVINATION_CARD","tradeTag":"the-scavenger","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"學者","refName":"The Scholar","namespace":"DIVINATION_CARD","tradeTag":"the-scholar","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"童子軍","refName":"The Scout","namespace":"DIVINATION_CARD","tradeTag":"the-scout","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"探尋者","refName":"The Seeker","namespace":"DIVINATION_CARD","tradeTag":"the-seeker","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"生命之樹","refName":"The Sephirot","namespace":"DIVINATION_CARD","tradeTag":"the-sephirot","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"牧羊人的草鞋","refName":"The Shepherd's Sandals","namespace":"DIVINATION_CARD","tradeTag":"the-shepherds-sandals","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"持盾者","refName":"The Shieldbearer","namespace":"DIVINATION_CARD","tradeTag":"the-shieldbearer","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"捷徑","refName":"The Shortcut","namespace":"DIVINATION_CARD","tradeTag":"the-shortcut","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"支線任務","refName":"The Side Quest","namespace":"DIVINATION_CARD","tradeTag":"the-side-quest","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"魔符","refName":"The Sigil","namespace":"DIVINATION_CARD","tradeTag":"the-sigil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"海妖","refName":"The Siren","namespace":"DIVINATION_CARD","tradeTag":"the-siren","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"骷髏頭","refName":"The Skeleton","namespace":"DIVINATION_CARD","tradeTag":"the-skeleton","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"靈魂","refName":"The Soul","namespace":"DIVINATION_CARD","tradeTag":"the-soul","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"雷火","refName":"The Spark and the Flame","namespace":"DIVINATION_CARD","tradeTag":"the-spark-and-the-flame","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"驕縱皇子","refName":"The Spoiled Prince","namespace":"DIVINATION_CARD","tradeTag":"the-spoiled-prince","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"對峙","refName":"The Standoff","namespace":"DIVINATION_CARD","tradeTag":"the-standoff","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"風暴呼喚者","refName":"The Stormcaller","namespace":"DIVINATION_CARD","tradeTag":"the-stormcaller","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"策略家","refName":"The Strategist","namespace":"DIVINATION_CARD","tradeTag":"the-strategist","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"召喚師","refName":"The Summoner","namespace":"DIVINATION_CARD","tradeTag":"the-summoner","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"烈日","refName":"The Sun","namespace":"DIVINATION_CARD","tradeTag":"the-sun","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"外科醫師","refName":"The Surgeon","namespace":"DIVINATION_CARD","tradeTag":"the-surgeon","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"勘查員","refName":"The Surveyor","namespace":"DIVINATION_CARD","tradeTag":"the-surveyor","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"求生專家","refName":"The Survivalist","namespace":"DIVINATION_CARD","tradeTag":"the-survivalist","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"賴以為生","refName":"The Sustenance","namespace":"DIVINATION_CARD","tradeTag":"the-sustenance","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"劍王之禮","refName":"The Sword King's Salute","namespace":"DIVINATION_CARD","tradeTag":"the-sword-kings-salute","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"大奇術師","refName":"The Thaumaturgist","namespace":"DIVINATION_CARD","tradeTag":"the-thaumaturgist","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"王座","refName":"The Throne","namespace":"DIVINATION_CARD","tradeTag":"the-throne","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"銲匠之桌","refName":"The Tinkerer's Table","namespace":"DIVINATION_CARD","tradeTag":"the-tinkerers-table","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"不休萃取器","refName":"The Tireless Extractor","namespace":"DIVINATION_CARD","tradeTag":"the-tireless-extractor","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"塔峰","refName":"The Tower","namespace":"DIVINATION_CARD","tradeTag":"the-tower","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"背叛者","refName":"The Traitor","namespace":"DIVINATION_CARD","tradeTag":"the-traitor","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"變形","refName":"The Transformation","namespace":"DIVINATION_CARD","tradeTag":"the-transformation","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"遠征","refName":"The Trial","namespace":"DIVINATION_CARD","tradeTag":"the-trial","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"風滾草","refName":"The Tumbleweed","namespace":"DIVINATION_CARD","tradeTag":"the-tumbleweed","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"暮光之月","refName":"The Twilight Moon","namespace":"DIVINATION_CARD","tradeTag":"the-twilight-moon","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"孿生","refName":"The Twins","namespace":"DIVINATION_CARD","tradeTag":"the-twins","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"暴君","refName":"The Tyrant","namespace":"DIVINATION_CARD","tradeTag":"the-tyrant","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"不怕不怕","refName":"The Undaunted","namespace":"DIVINATION_CARD","tradeTag":"the-undaunted","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"不許你胡說","refName":"The Undisputed","namespace":"DIVINATION_CARD","tradeTag":"the-undisputed","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"飛來橫財","refName":"The Unexpected Prize","namespace":"DIVINATION_CARD","tradeTag":"the-unexpected-prize","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"聯姻","refName":"The Union","namespace":"DIVINATION_CARD","tradeTag":"the-union","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"女武神","refName":"The Valkyrie","namespace":"DIVINATION_CARD","tradeTag":"the-valkyrie","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"平壤","refName":"The Vast","namespace":"DIVINATION_CARD","tradeTag":"the-vast","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"空想家","refName":"The Visionary","namespace":"DIVINATION_CARD","tradeTag":"the-visionary","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"虛空","refName":"The Void","namespace":"DIVINATION_CARD","tradeTag":"the-void","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"典獄長","refName":"The Warden","namespace":"DIVINATION_CARD","tradeTag":"the-warden","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"大軍閥","refName":"The Warlord","namespace":"DIVINATION_CARD","tradeTag":"the-warlord","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"凝視者","refName":"The Watcher","namespace":"DIVINATION_CARD","tradeTag":"the-watcher","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"蛛網","refName":"The Web","namespace":"DIVINATION_CARD","tradeTag":"the-web","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"結婚禮物","refName":"The Wedding Gift","namespace":"DIVINATION_CARD","tradeTag":"the-wedding-gift","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"白騎士","refName":"The White Knight","namespace":"DIVINATION_CARD","tradeTag":"the-white-knight","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"白化","refName":"The Whiteout","namespace":"DIVINATION_CARD","tradeTag":"the-whiteout","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"凋零玫瑰","refName":"The Wilted Rose","namespace":"DIVINATION_CARD","tradeTag":"the-wilted-rose","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"風","refName":"The Wind","namespace":"DIVINATION_CARD","tradeTag":"the-wind","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"女巫","refName":"The Witch","namespace":"DIVINATION_CARD","tradeTag":"the-witch","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"彪狼","refName":"The Wolf","namespace":"DIVINATION_CARD","tradeTag":"the-wolf","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"狼之聖物","refName":"The Wolf's Legacy","namespace":"DIVINATION_CARD","tradeTag":"the-wolfs-legacy","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"狼的影子","refName":"The Wolf's Shadow","namespace":"DIVINATION_CARD","tradeTag":"the-wolfs-shadow","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"狼咬","refName":"The Wolven King's Bite","namespace":"DIVINATION_CARD","tradeTag":"the-wolven-kings-bite","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"狼獾","refName":"The Wolverine","namespace":"DIVINATION_CARD","tradeTag":"the-wolverine","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"噬世士","refName":"The World Eater","namespace":"DIVINATION_CARD","tradeTag":"the-world-eater","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"怨忿","refName":"The Wrath","namespace":"DIVINATION_CARD","tradeTag":"the-wrath","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"骯髒","refName":"The Wretched","namespace":"DIVINATION_CARD","tradeTag":"the-wretched","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"渴望學識","refName":"Thirst for Knowledge","namespace":"DIVINATION_CARD","tradeTag":"thirst-for-knowledge","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"黑暗三面","refName":"Three Faces in the Dark","namespace":"DIVINATION_CARD","tradeTag":"three-faces-in-the-dark","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"三聲道","refName":"Three Voices","namespace":"DIVINATION_CARD","tradeTag":"three-voices","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"怒雷之空","refName":"Thunderous Skies","namespace":"DIVINATION_CARD","tradeTag":"thunderous-skies","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"失落遺骨","refName":"Time-Lost Relic","namespace":"DIVINATION_CARD","tradeTag":"time-lost-relic","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"毒浪洶湧","refName":"Toxic Tidings","namespace":"DIVINATION_CARD","tradeTag":"toxic-tidings","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"寧靜","refName":"Tranquillity","namespace":"DIVINATION_CARD","tradeTag":"tranquillity","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"賞金獵手","refName":"Treasure Hunter","namespace":"DIVINATION_CARD","tradeTag":"treasure-hunter","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"極度癲狂","refName":"Triskaidekaphobia","namespace":"DIVINATION_CARD","tradeTag":"triskaidekaphobia","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"忍辱","refName":"Turn the Other Cheek","namespace":"DIVINATION_CARD","tradeTag":"turn-the-other-cheek","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"未連鎖","refName":"Unchained","namespace":"DIVINATION_CARD","tradeTag":"unchained","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"地底叢林","refName":"Underground Forest","namespace":"DIVINATION_CARD","tradeTag":"underground-forest","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"單相思","refName":"Unrequited Love","namespace":"DIVINATION_CARD","tradeTag":"unrequited-love","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"虛榮","refName":"Vanity","namespace":"DIVINATION_CARD","tradeTag":"vanity","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"汙穢之力","refName":"Vile Power","namespace":"DIVINATION_CARD","tradeTag":"vile-power","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"薇妮雅的信物","refName":"Vinia's Token","namespace":"DIVINATION_CARD","tradeTag":"vinias-token","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"虛空元素","refName":"Void of the Elements","namespace":"DIVINATION_CARD","tradeTag":"void-of-the-elements","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"不穩定的力量","refName":"Volatile Power","namespace":"DIVINATION_CARD","tradeTag":"volatile-power","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"錢與權","refName":"Wealth and Power","namespace":"DIVINATION_CARD","tradeTag":"wealth-and-power","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"是誰","refName":"Who Asked","namespace":"DIVINATION_CARD","tradeTag":"who-asked","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"冬擁","refName":"Winter's Embrace","namespace":"DIVINATION_CARD","tradeTag":"winters-embrace","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"赦免","refName":"Absolution","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BYnNvbHV0aW9uQmxhc3RHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/11111dec89/AbsolutionBlastGem.png","gem":{}} +{"name":"赦免.啟發","refName":"Absolution of Inspiring","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BYnNvbHV0aW9uQmxhc3RHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/11111dec89/AbsolutionBlastGem.png","gem":{"transfigured":true,"normalVariant":"Absolution"}} +{"name":"附加混沌傷害輔助","refName":"Added Chaos Damage Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0FkZGVkQ2hhb3NEYW1hZ2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a89e2281e4/AddedChaosDamage.png","gem":{}} +{"name":"附加冰冷傷害輔助","refName":"Added Cold Damage Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0FkZGVkQ29sZERhbWFnZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/2da648ff1b/AddedColdDamage.png","gem":{}} +{"name":"附加火焰傷害輔助","refName":"Added Fire Damage Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0FkZGVkRmlyZURhbWFnZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/021b8c80d0/AddedFireDamage.png","gem":{}} +{"name":"附加閃電傷害輔助","refName":"Added Lightning Damage Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0FkZGVkTGlnaHRuaW5nRGFtYWdlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2d0e496d25/AddedLightningDamage.png","gem":{}} +{"name":"額外命中輔助","refName":"Additional Accuracy Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0luY3JlYXNlZEFjY3VyYWN5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6c436c2a7c/IncreasedAccuracy.png","gem":{}} +{"name":"進階陷阱輔助","refName":"Advanced Traps Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1RyYXBDb29sZG93blJlY292ZXJ5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/30ba703ddf/TrapCooldownRecovery.png","gem":{}} +{"name":"煉金術士印記","refName":"Alchemist's Mark","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BbGNoZW1pc3RzTWFya1NraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2edd055957/AlchemistsMarkSkillGem.png","gem":{}} +{"name":"伏擊","refName":"Ambush","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BbWJ1c2hTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/92a4cb4028/AmbushSkillGem.png","gem":{}} +{"name":"先祖怒嚎輔助","refName":"Ancestral Call Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01pcmFnZVN0cmlrZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e51b75463c/MirageStrike.png","gem":{}} +{"name":"先祖戰吼","refName":"Ancestral Cry","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BbmNlc3RyYWxDcnkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/50bc6a58db/AncestralCry.png","gem":{}} +{"name":"憤怒","refName":"Anger","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BbmdlciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e0cd2d4f3a/Anger.png","gem":{}} +{"name":"幻化守衛","refName":"Animate Guardian","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BbmltYXRlQXJtb3VyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d6eff6fc81/AnimateArmour.png","gem":{}} +{"name":"幻化守衛.重擊","refName":"Animate Guardian of Smiting","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BbmltYXRlQXJtb3VyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d6eff6fc81/AnimateArmour.png","gem":{"transfigured":true,"normalVariant":"Animate Guardian"}} +{"name":"幻化武器","refName":"Animate Weapon","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BbmltYXRlV2VhcG9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/739caf7508/AnimateWeapon.png","gem":{}} +{"name":"幻化武器.遠程","refName":"Animate Weapon of Ranged Arms","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BbmltYXRlV2VhcG9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/739caf7508/AnimateWeapon.png","gem":{"transfigured":true,"normalVariant":"Animate Weapon"}} +{"name":"幻化武器.反射","refName":"Animate Weapon of Self Reflection","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BbmltYXRlV2VhcG9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/739caf7508/AnimateWeapon.png","gem":{"transfigured":true,"normalVariant":"Animate Weapon"}} +{"name":"電弧","refName":"Arc","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BcmMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3778fcf505/Arc.png","gem":{}} +{"name":"電弧.震盪","refName":"Arc of Oscillating","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BcmMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3778fcf505/Arc.png","gem":{"transfigured":true,"normalVariant":"Arc"}} +{"name":"電弧.波動","refName":"Arc of Surging","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BcmMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3778fcf505/Arc.png","gem":{"transfigured":true,"normalVariant":"Arc"}} +{"name":"秘能披風","refName":"Arcane Cloak","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BcmNhbmVDbG9hayIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7660cd542e/ArcaneCloak.png","gem":{}} +{"name":"秘能波動輔助","refName":"Arcane Surge Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0FyY2FuZVN1cmdlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d3d0499c29/ArcaneSurge.png","gem":{}} +{"name":"奧術烙印","refName":"Arcanist Brand","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BcmNhbmlzdEJyYW5kR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/13599bc515/ArcanistBrandGem.png","gem":{}} +{"name":"魔幻輔助","refName":"Archmage Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01hbmF3ZWF2ZVN1cHBvcnRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/26b9a98b33/ManaweaveSupportGem.png","gem":{}} +{"name":"極地裝甲","refName":"Arctic Armour","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTaGllbGQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/22044364a7/IceShield.png","gem":{}} +{"name":"末日烙印","refName":"Armageddon Brand","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Bcm1hZ2VkZG9uQnJhbmQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/743223e101/ArmageddonBrand.png","gem":{}} +{"name":"末日烙印.呼喚","refName":"Armageddon Brand of Recall","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Bcm1hZ2VkZG9uQnJhbmQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/743223e101/ArmageddonBrand.png","gem":{"transfigured":true,"normalVariant":"Armageddon Brand"}} +{"name":"末日烙印.揮發","refName":"Armageddon Brand of Volatility","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Bcm1hZ2VkZG9uQnJhbmQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/743223e101/ArmageddonBrand.png","gem":{"transfigured":true,"normalVariant":"Armageddon Brand"}} +{"name":"傲慢輔助","refName":"Arrogance Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Jsb29kTWFnaWMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f90e23f319/BloodMagic.png","gem":{}} +{"name":"箭矢新星輔助","refName":"Arrow Nova Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0dyZWVuUmFpblN1cHBvcnRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/127eda6207/GreenRainSupportGem.png","gem":{}} +{"name":"火砲砲塔","refName":"Artillery Ballista","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Nb3J0YXJUb3RlbUJvd1NraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5636ae404e/MortarTotemBowSkillGem.png","gem":{}} +{"name":"交叉掃射之火砲砲塔","refName":"Artillery Ballista of Cross Strafe","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Nb3J0YXJUb3RlbUJvd1NraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5636ae404e/MortarTotemBowSkillGem.png","gem":{"transfigured":true,"normalVariant":"Artillery Ballista"}} +{"name":"集火之火砲砲塔","refName":"Artillery Ballista of Focus Fire","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Nb3J0YXJUb3RlbUJvd1NraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5636ae404e/MortarTotemBowSkillGem.png","gem":{"transfigured":true,"normalVariant":"Artillery Ballista"}} +{"name":"刺客印記","refName":"Assassin's Mark","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Bc3Nhc3NpbnNNYXJrIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/bddd6aa693/AssassinsMark.png","gem":{}} +{"name":"自動竭盡","refName":"Autoexertion","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzMwLDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BdXRvQ2FzdEluc3RhbnRXYXJjcnkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ffc975c2b7/AutoCastInstantWarcry.png","gem":{}} +{"name":"自動化","refName":"Automation","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzMwLDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BdXRvQ2FzdEluc3RhbnRTa2lsbHMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ec5d94a83e/AutoCastInstantSkills.png","gem":{}} +{"name":"覺醒.附加混沌傷害輔助","refName":"Awakened Added Chaos Damage Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0FkZGVkQ2hhb3NEYW1hZ2VQbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/61d2d11bfb/AddedChaosDamagePlus.png","gem":{"awakened":true}} +{"name":"覺醒.附加冰冷傷害輔助","refName":"Awakened Added Cold Damage Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0FkZGVkQ29sZERhbWFnZVBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8fef150dd7/AddedColdDamagePlus.png","gem":{"awakened":true}} +{"name":"覺醒.附加火焰傷害輔助","refName":"Awakened Added Fire Damage Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0FkZGVkRmlyZURhbWFnZVBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c1135da118/AddedFireDamagePlus.png","gem":{"awakened":true}} +{"name":"覺醒.附加閃電傷害輔助","refName":"Awakened Added Lightning Damage Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0FkZGVkTGlnaHRuaW5nRGFtYWdlUGx1cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/12f4edd322/AddedLightningDamagePlus.png","gem":{"awakened":true}} +{"name":"覺醒.先祖怒嚎輔助","refName":"Awakened Ancestral Call Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL01pcmFnZVN0cmlrZVBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f7a05689d9/MirageStrikePlus.png","gem":{"awakened":true}} +{"name":"覺醒.箭矢新星輔助","refName":"Awakened Arrow Nova Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0dyZWVuUmFpblBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/84da19af8c/GreenRainPlus.png","gem":{"awakened":true}} +{"name":"覺醒.詛咒光環輔助","refName":"Awakened Blasphemy Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0F1cmlmeVBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/fbdc11b158/AurifyPlus.png","gem":{"awakened":true}} +{"name":"覺醒.殘虐輔助","refName":"Awakened Brutality Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0JydXRhbGl0eVBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9553670260/BrutalityPlus.png","gem":{"awakened":true}} +{"name":"覺醒.燃燒傷害輔助","refName":"Awakened Burning Damage Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0luY3JlYXNlZEJ1cm5EdXJhdGlvblBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/021c221c69/IncreasedBurnDurationPlus.png","gem":{"awakened":true}} +{"name":"覺醒.暴擊時施放輔助","refName":"Awakened Cast On Critical Strike Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0Nhc3RPbkNyaXRQbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/928b624b08/CastOnCritPlus.png","gem":{"awakened":true}} +{"name":"覺醒.引導時施放輔助","refName":"Awakened Cast While Channelling Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0Nhc3RXaGlsZUNoYW5uZWxpbmdQbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b6365df6cb/CastWhileChannelingPlus.png","gem":{"awakened":true}} +{"name":"覺醒.連鎖輔助","refName":"Awakened Chain Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0NoYWluUGx1cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b328b4615c/ChainPlus.png","gem":{"awakened":true}} +{"name":"覺醒.冰冷穿透輔助","refName":"Awakened Cold Penetration Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0NvbGRQZW5ldHJhdGlvblBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/52ac74cbd4/ColdPenetrationPlus.png","gem":{"awakened":true}} +{"name":"覺醒.精準破壞輔助","refName":"Awakened Controlled Destruction Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0NvbnRyb2xsZWREZXN0cnVjdGlvblBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e545c985d0/ControlledDestructionPlus.png","gem":{"awakened":true}} +{"name":"覺醒.致命異常輔助","refName":"Awakened Deadly Ailments Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0RlYWRseUFpbG1lbnRzUGx1cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/68c620c3dc/DeadlyAilmentsPlus.png","gem":{"awakened":true}} +{"name":"覺醒.元素攻擊傷害輔助","refName":"Awakened Elemental Damage with Attacks Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL1dlYXBvbkVsZW1lbnRhbERhbWFnZVBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/2d6aa43759/WeaponElementalDamagePlus.png","gem":{"awakened":true}} +{"name":"覺醒.元素集中輔助","refName":"Awakened Elemental Focus Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0VsZW1lbnRhbEZvY3VzUGx1cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a84d493e28/ElementalFocusPlus.png","gem":{"awakened":true}} +{"name":"覺醒.賦予輔助","refName":"Awakened Empower Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0VtcG93ZXJQbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/eb0e6f91ed/EmpowerPlus.png","gem":{"awakened":true}} +{"name":"覺醒.增幅輔助","refName":"Awakened Enhance Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL2VuaGFuY2VwbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d3de7b3bd1/enhanceplus.png","gem":{"awakened":true}} +{"name":"覺醒.啟蒙輔助","refName":"Awakened Enlighten Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0VubGlnaHRlbnBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/7ec7d0544d/Enlightenplus.png","gem":{"awakened":true}} +{"name":"覺醒.火焰穿透輔助","refName":"Awakened Fire Penetration Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0ZpcmVQZW5ldHJhdGlvblBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b1308cf253/FirePenetrationPlus.png","gem":{"awakened":true}} +{"name":"覺醒.分裂輔助","refName":"Awakened Fork Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0ZvcmtQbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/664ffa6acd/ForkPlus.png","gem":{"awakened":true}} +{"name":"覺醒.和善輔助","refName":"Awakened Generosity Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0dlbmVyb3NpdHlQbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/14d887c794/GenerosityPlus.png","gem":{"awakened":true}} +{"name":"覺醒.高階多重投射輔助","refName":"Awakened Greater Multiple Projectiles Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0dyZWF0ZXJNdWx0aXBsZVByb2plY3RpbGVzUGx1cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/720eb18ad1/GreaterMultipleProjectilesPlus.png","gem":{"awakened":true}} +{"name":"覺醒.咒術降臨輔助","refName":"Awakened Hextouch Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0N1cnNlT25IaXRQbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/bae0341d74/CurseOnHitPlus.png","gem":{"awakened":true}} +{"name":"覺醒.增加範圍效果輔助","refName":"Awakened Increased Area of Effect Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0luY3JlYXNlZEFPRVBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/360e9e4ed5/IncreasedAOEPlus.png","gem":{"awakened":true}} +{"name":"覺醒.閃電穿透輔助","refName":"Awakened Lightning Penetration Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0xpZ2h0bmluZ1BlbmV0cmF0aW9uUGx1cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/163f40e5e5/LightningPenetrationPlus.png","gem":{"awakened":true}} +{"name":"覺醒.近戰物理傷害輔助","refName":"Awakened Melee Physical Damage Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0luY3JlYXNlZFBoeXNjaWFsRGFtYWdlUGx1cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b5d08a6777/IncreasedPhyscialDamagePlus.png","gem":{"awakened":true}} +{"name":"覺醒.近戰傷害擴散輔助","refName":"Awakened Melee Splash Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL1NwbGFzaFBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8c6dd76bf4/SplashPlus.png","gem":{"awakened":true}} +{"name":"覺醒.召喚物傷害輔助","refName":"Awakened Minion Damage Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL01pbmlvbkRhbWFnZVBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5a905affec/MinionDamagePlus.png","gem":{"awakened":true}} +{"name":"覺醒.多重打擊輔助","refName":"Awakened Multistrike Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL011bHRpcGxlQXR0YWNrc1BsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c32ddc2121/MultipleAttacksPlus.png","gem":{"awakened":true}} +{"name":"覺醒.秘能爆發輔助","refName":"Awakened Spell Cascade Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL1NwZWxsQ2FzY2FkZVBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/7a316ceb5c/SpellCascadePlus.png","gem":{"awakened":true}} +{"name":"覺醒.施放迴響輔助","refName":"Awakened Spell Echo Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0VjaG9QbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9cccabda03/EchoPlus.png","gem":{"awakened":true}} +{"name":"覺醒.極速苦痛輔助","refName":"Awakened Swift Affliction Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL1N1cHBvcnRSYXBpZERlY2F5UGx1cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/275f8da8d1/SupportRapidDecayPlus.png","gem":{"awakened":true}} +{"name":"覺醒.無邊異能輔助","refName":"Awakened Unbound Ailments Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL1VuYm91bmRBaWxtZW50UGx1cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/41b8082cb4/UnboundAilmentPlus.png","gem":{"awakened":true}} +{"name":"覺醒.釋放輔助","refName":"Awakened Unleash Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL1VubGVhc2hQbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/107949fc2b/UnleashPlus.png","gem":{"awakened":true}} +{"name":"覺醒.猛毒投射物輔助","refName":"Awakened Vicious Projectiles Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL1JhbmdlZFBoeXNpY2FsQXR0YWNrRGFtYWdlUGx1cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/982ca84dbe/RangedPhysicalAttackDamagePlus.png","gem":{"awakened":true}} +{"name":"覺醒.虛空操縱輔助","refName":"Awakened Void Manipulation Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL1ZvaWRNYW5pcHVsYXRpb25QbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9223d42a35/VoidManipulationPlus.png","gem":{"awakened":true}} +{"name":"天雷之珠","refName":"Ball Lightning","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CYWxsTGlnaHRuaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6c73d5c555/BallLightning.png","gem":{}} +{"name":"天雷之珠.軌跡","refName":"Ball Lightning of Orbiting","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CYWxsTGlnaHRuaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6c73d5c555/BallLightning.png","gem":{"transfigured":true,"normalVariant":"Ball Lightning"}} +{"name":"天雷之珠.靜電","refName":"Ball Lightning of Static","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CYWxsTGlnaHRuaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6c73d5c555/BallLightning.png","gem":{"transfigured":true,"normalVariant":"Ball Lightning"}} +{"name":"砲塔圖騰輔助","refName":"Ballista Totem Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1JhbmdlZEF0dGFja1RvdGVtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b7ee0c564e/RangedAttackTotem.png","gem":{}} +{"name":"災厄","refName":"Bane","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EYXJrUml0dWFsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/c59eb9d27b/DarkRitualGem.png","gem":{}} +{"name":"災厄.譴責","refName":"Bane of Condemnation","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EYXJrUml0dWFsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/c59eb9d27b/DarkRitualGem.png","gem":{"transfigured":true,"normalVariant":"Bane"}} +{"name":"彈幕","refName":"Barrage","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CYXJyYWdlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/0669bef74e/Barrage.png","gem":{}} +{"name":"彈幕.齊射","refName":"Barrage of Volley Fire","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CYXJyYWdlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/0669bef74e/Barrage.png","gem":{"transfigured":true,"normalVariant":"Barrage"}} +{"name":"彈幕輔助","refName":"Barrage Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0dyZWVuQmFycmFnZVN1cHBvcnRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9c04b6b337/GreenBarrageSupportGem.png","gem":{}} +{"name":"戰法戰吼","refName":"Battlemage's Cry","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXZpbmVDcnlHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6948014a56/DivineCryGem.png","gem":{}} +{"name":"捕熊陷阱","refName":"Bear Trap","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CZWFyVHJhcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a6ad2b45cf/BearTrap.png","gem":{}} +{"name":"捕熊陷阱.串燒","refName":"Bear Trap of Skewers","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CZWFyVHJhcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a6ad2b45cf/BearTrap.png","gem":{"transfigured":true,"normalVariant":"Bear Trap"}} +{"name":"斬首輔助","refName":"Behead Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0V4ZWN1dGlvbmVyU3VwcG9ydEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5a4440c4e7/ExecutionerSupportGem.png","gem":{}} +{"name":"狂戰","refName":"Berserk","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CZXNlcmtHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/fb31554c78/BeserkGem.png","gem":{}} +{"name":"劍刃爆破","refName":"Blade Blast","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFkZUJ1cnN0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/599beedaf4/BladeBurst.png","gem":{}} +{"name":"劍刃爆破.匕首爆炸","refName":"Blade Blast of Dagger Detonation","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFkZUJ1cnN0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/599beedaf4/BladeBurst.png","gem":{"transfigured":true,"normalVariant":"Blade Blast"}} +{"name":"劍刃爆破.卸載","refName":"Blade Blast of Unloading","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFkZUJ1cnN0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/599beedaf4/BladeBurst.png","gem":{"transfigured":true,"normalVariant":"Blade Blast"}} +{"name":"刀鋒亂舞","refName":"Blade Flurry","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFyZ2VkQXR0YWNrIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b55acf2e90/ChargedAttack.png","gem":{}} +{"name":"刀鋒亂舞.切割","refName":"Blade Flurry of Incision","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFyZ2VkQXR0YWNrIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b55acf2e90/ChargedAttack.png","gem":{"transfigured":true,"normalVariant":"Blade Flurry"}} +{"name":"刀鋒陷阱","refName":"Blade Trap","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFkZVRyYXBTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b4ce2d5dc5/BladeTrapSkillGem.png","gem":{}} +{"name":"刀鋒陷阱.巨劍","refName":"Blade Trap of Greatswords","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFkZVRyYXBTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b4ce2d5dc5/BladeTrapSkillGem.png","gem":{"transfigured":true,"normalVariant":"Blade Trap"}} +{"name":"刀鋒陷阱.撕裂","refName":"Blade Trap of Laceration","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFkZVRyYXBTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b4ce2d5dc5/BladeTrapSkillGem.png","gem":{"transfigured":true,"normalVariant":"Blade Trap"}} +{"name":"飛刃風暴","refName":"Blade Vortex","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGlubmluZ0V0aGVyZWFsQmxhZGVzR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8f7a7d7b81/SpinningEtherealBladesGem.png","gem":{}} +{"name":"飛刃風暴.鐮刀","refName":"Blade Vortex of the Scythe","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGlubmluZ0V0aGVyZWFsQmxhZGVzR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8f7a7d7b81/SpinningEtherealBladesGem.png","gem":{"transfigured":true,"normalVariant":"Blade Vortex"}} +{"name":"虛空刀雨","refName":"Bladefall","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWluT2ZCbGFkZXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0c68403963/RainOfBlades.png","gem":{}} +{"name":"虛空刀雨.穿刺","refName":"Bladefall of Impaling","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWluT2ZCbGFkZXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0c68403963/RainOfBlades.png","gem":{"transfigured":true,"normalVariant":"Bladefall"}} +{"name":"虛空刀雨.齊射","refName":"Bladefall of Volleys","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWluT2ZCbGFkZXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0c68403963/RainOfBlades.png","gem":{"transfigured":true,"normalVariant":"Bladefall"}} +{"name":"旋天劍舞","refName":"Bladestorm","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFkZXN0b3JtR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6b216c693a/BladestormGem.png","gem":{}} +{"name":"旋天劍舞.未知","refName":"Bladestorm of Uncertainty","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFkZXN0b3JtR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6b216c693a/BladestormGem.png","gem":{"transfigured":true,"normalVariant":"Bladestorm"}} +{"name":"詛咒光環輔助","refName":"Blasphemy Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0F1cmlmeSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ac2d013ed8/Aurify.png","gem":{}} +{"name":"爆裂箭雨","refName":"Blast Rain","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFzdFJhaW5HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1bc0aca8d7/BlastRainGem.png","gem":{}} +{"name":"連鎖爆破地雷輔助","refName":"Blastchain Mine Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1JlbW90ZU1pbmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6a62456c74/RemoteMine.png","gem":{}} +{"name":"熾熱魔炮","refName":"Blazing Salvo","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbWJlciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/dce0125adf/Ember.png","gem":{}} +{"name":"萎滅","refName":"Blight","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGlnaHRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/63c4ea3534/BlightGem.png","gem":{}} +{"name":"萎滅.萎縮","refName":"Blight of Atrophy","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGlnaHRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/63c4ea3534/BlightGem.png","gem":{"transfigured":true,"normalVariant":"Blight"}} +{"name":"萎滅.瘟疫","refName":"Blight of Contagion","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGlnaHRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/63c4ea3534/BlightGem.png","gem":{"transfigured":true,"normalVariant":"Blight"}} +{"name":"致盲輔助","refName":"Blind Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0JsaW5kIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/06f95114ae/Blind.png","gem":{}} +{"name":"閃現射擊","refName":"Blink Arrow","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGlua0Fycm93IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2836299d6e/BlinkArrow.png","gem":{}} +{"name":"閃現射擊.炸彈客","refName":"Blink Arrow of Bombarding Clones","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGlua0Fycm93IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2836299d6e/BlinkArrow.png","gem":{"transfigured":true,"normalVariant":"Blink Arrow"}} +{"name":"閃現射擊.神秘客","refName":"Blink Arrow of Prismatic Clones","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGlua0Fycm93IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2836299d6e/BlinkArrow.png","gem":{"transfigured":true,"normalVariant":"Blink Arrow"}} +{"name":"減少格擋率輔助","refName":"Block Chance Reduction Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0JyZWFrQmxvY2siLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/18132535a7/BreakBlock.png","gem":{}} +{"name":"血腥沙戮","refName":"Blood and Sand","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZFNhbmRTdGFuY2VHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/91016572ac/BloodSandStanceGem.png","gem":{}} +{"name":"鮮血狂怒","refName":"Blood Rage","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZFJhZ2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0a98a6bf95/BloodRage.png","gem":{}} +{"name":"嗜血輔助","refName":"Bloodlust Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Jsb29kbHVzdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0f21ba16fe/Bloodlust.png","gem":{}} +{"name":"渴血輔助","refName":"Bloodthirst Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Jsb29kUHJpY2VTdXBwb3J0R2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4ea8419360/BloodPriceSupportGem.png","gem":{}} +{"name":"屍術傳送","refName":"Bodyswap","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db3Jwc2VXYXJwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/93895fd56c/CorpseWarp.png","gem":{}} +{"name":"屍術傳送.獻祭","refName":"Bodyswap of Sacrifice","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db3Jwc2VXYXJwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/93895fd56c/CorpseWarp.png","gem":{"transfigured":true,"normalVariant":"Bodyswap"}} +{"name":"骸骨奉獻","refName":"Bone Offering","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Cb25lT2ZmZXJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9918a40b8a/BoneOffering.png","gem":{}} +{"name":"寒冰刺骨輔助","refName":"Bonechill Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0JvbmVDaGlsbFN1cHBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9aa30460fd/BoneChillSupport.png","gem":{}} +{"name":"碎骨","refName":"Boneshatter","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Cb25lc2hhdHRlclNraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9c37514f07/BoneshatterSkillGem.png","gem":{}} +{"name":"碎骨.屠殺","refName":"Boneshatter of Carnage","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Cb25lc2hhdHRlclNraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9c37514f07/BoneshatterSkillGem.png","gem":{"transfigured":true,"normalVariant":"Boneshatter"}} +{"name":"碎骨.創傷","refName":"Boneshatter of Complex Trauma","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Cb25lc2hhdHRlclNraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9c37514f07/BoneshatterSkillGem.png","gem":{"transfigured":true,"normalVariant":"Boneshatter"}} +{"name":"烙印呼喚","refName":"Brand Recall","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SZWNhbGxTaWdpbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ee8b0c8fd2/RecallSigil.png","gem":{}} +{"name":"殘虐輔助","refName":"Brutality Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0JydXRhbGl0eSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/62f8d5318d/Brutality.png","gem":{}} +{"name":"燃燒箭矢","refName":"Burning Arrow","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CdXJuaW5nQXJyb3ciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4cc118dd2c/BurningArrow.png","gem":{}} +{"name":"燃燒箭矢.活力","refName":"Burning Arrow of Vigour","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CdXJuaW5nQXJyb3ciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4cc118dd2c/BurningArrow.png","gem":{"transfigured":true,"normalVariant":"Burning Arrow"}} +{"name":"燃燒傷害輔助","refName":"Burning Damage Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0luY3JlYXNlZEJ1cm5EdXJhdGlvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/46900a1f5b/IncreasedBurnDuration.png","gem":{}} +{"name":"暴擊時施放輔助","refName":"Cast On Critical Strike Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Nhc3RPbkNyaXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8ebad1afae/CastOnCrit.png","gem":{}} +{"name":"死亡時施放輔助","refName":"Cast on Death Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Nhc3RPbkRlYXRoIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/7a8f023bcf/CastOnDeath.png","gem":{}} +{"name":"近戰擊殺時施放輔助","refName":"Cast on Melee Kill Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Nhc3RPbk1lbGVlS2lsbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/cbebb42cbc/CastOnMeleeKill.png","gem":{}} +{"name":"受傷時施放輔助","refName":"Cast when Damage Taken Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Nhc3RPbkRtZ1Rha2VuIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2f075f5964/CastOnDmgTaken.png","gem":{}} +{"name":"暈眩時施放輔助","refName":"Cast when Stunned Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Nhc3RPblN0dW4iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/12b3b0fdfc/CastOnStun.png","gem":{}} +{"name":"引導時施放輔助","refName":"Cast while Channelling Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Nhc3RXaGlsZUNoYW5uZWxpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/7a6045467d/CastWhileChanneling.png","gem":{}} +{"name":"腐蝕箭矢","refName":"Caustic Arrow","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb2lzb25BcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8aa59b2327/PoisonArrow.png","gem":{}} +{"name":"腐蝕箭矢.中毒","refName":"Caustic Arrow of Poison","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb2lzb25BcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8aa59b2327/PoisonArrow.png","gem":{"transfigured":true,"normalVariant":"Caustic Arrow"}} +{"name":"奪魂勾索","refName":"Chain Hook","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFpblN0cmlrZUdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fa737225f6/ChainStrikeGem.png","gem":{}} +{"name":"連鎖輔助","refName":"Chain Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L2NoYWluIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/812e47f631/chain.png","gem":{}} +{"name":"機率流血輔助","refName":"Chance to Bleed Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0NoYW5jZVRvQmxlZWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/51506e2da6/ChanceToBleed.png","gem":{}} +{"name":"機率逃跑輔助","refName":"Chance to Flee Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0NoYW5jZXRvRmxlZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ae4e560cd8/ChancetoFlee.png","gem":{}} +{"name":"機率中毒輔助","refName":"Chance to Poison Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0xlc3NlclBvaXNvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9cce1eb7ef/LesserPoison.png","gem":{}} +{"name":"雷霆衝鋒","refName":"Charged Dash","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFyZ2VkRGFzaEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/2e78031cd6/ChargedDashGem.png","gem":{}} +{"name":"地雷充能輔助","refName":"Charged Mines Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ludGVsbGlnZW5jZVBvd2VyRnJlbnp5Q2hhcmdlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/af11e7653b/IntelligencePowerFrenzyCharge.png","gem":{}} +{"name":"陷阱充能輔助","refName":"Charged Traps Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1Bvd2VyRnJlbnp5Q2hhcmdlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/50c4a0b8e0/PowerFrenzyCharge.png","gem":{}} +{"name":"清晰","refName":"Clarity","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DbGFyaXR5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/30046e480b/Clarity.png","gem":{}} +{"name":"劈砍","refName":"Cleave","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DbGVhdmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/7d4382b5e9/Cleave.png","gem":{}} +{"name":"劈砍.盛怒","refName":"Cleave of Rage","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DbGVhdmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/7d4382b5e9/Cleave.png","gem":{"transfigured":true,"normalVariant":"Cleave"}} +{"name":"近身戰輔助","refName":"Close Combat Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Nsb3NlQ29tYmF0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/812599bf67/CloseCombat.png","gem":{}} +{"name":"散彈陷阱輔助","refName":"Cluster Traps Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0NsdXN0ZXJUcmFwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/91000f9475/ClusterTrap.png","gem":{}} +{"name":"毒蛇鞭笞","refName":"Cobra Lash","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db2JyYUxhc2giLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9aaa5c123a/CobraLash.png","gem":{}} +{"name":"冰冷穿透輔助","refName":"Cold Penetration Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0NvbGRQZW5ldHJhdGlvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/bf21e6828c/ColdPenetration.png","gem":{}} +{"name":"霜暴","refName":"Cold Snap","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db2xkU25hcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/889f6cb1fd/ColdSnap.png","gem":{}} +{"name":"霜暴.暴擊","refName":"Cold Snap of Power","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db2xkU25hcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/889f6cb1fd/ColdSnap.png","gem":{"transfigured":true,"normalVariant":"Cold Snap"}} +{"name":"寒冰轉烈焰輔助","refName":"Cold to Fire Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0NvbGR0b0ZpcmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cc186488fc/ColdtoFire.png","gem":{}} +{"name":"燃燒輔助","refName":"Combustion Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0NoYW5jZXRvSWduaXRlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b24521e59a/ChancetoIgnite.png","gem":{}} +{"name":"集中效應輔助","refName":"Concentrated Effect Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0NvbmNlbnRyYXRlZEFPRSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/4db641d292/ConcentratedAOE.png","gem":{}} +{"name":"導電","refName":"Conductivity","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db25kdWN0aXZpdHkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1d64a0439e/Conductivity.png","gem":{}} +{"name":"奉獻之路","refName":"Consecrated Path","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ib2x5UGF0aEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ee190dd4e1/HolyPathGem.png","gem":{}} +{"name":"奉獻之路.持久","refName":"Consecrated Path of Endurance","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ib2x5UGF0aEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ee190dd4e1/HolyPathGem.png","gem":{"transfigured":true,"normalVariant":"Consecrated Path"}} +{"name":"瘟疫","refName":"Contagion","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db250YWdpb25HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a93197f89a/ContagionGem.png","gem":{}} +{"name":"瘟疫.消退","refName":"Contagion of Subsiding","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db250YWdpb25HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a93197f89a/ContagionGem.png","gem":{"transfigured":true,"normalVariant":"Contagion"}} +{"name":"瘟疫.移轉","refName":"Contagion of Transference","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db250YWdpb25HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a93197f89a/ContagionGem.png","gem":{"transfigured":true,"normalVariant":"Contagion"}} +{"name":"精準烈火輔助","refName":"Controlled Blaze Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0NvbnRyb2xsZWRCbGF6ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/da0249157e/ControlledBlaze.png","gem":{}} +{"name":"精準破壞輔助","refName":"Controlled Destruction Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0NvbnRyb2xsZWREZXN0cnVjdGlvbkdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0fca4292bb/ControlledDestructionGem.png","gem":{}} +{"name":"迷魅陷阱","refName":"Conversion Trap","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db252ZXJzaW9uVHJhcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/15f3ca7d18/ConversionTrap.png","gem":{}} +{"name":"號召","refName":"Convocation","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db252b2NhdGlvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/429e3e480f/Convocation.png","gem":{}} +{"name":"汙染戰吼輔助","refName":"Corrupting Cry Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0NvcnJ1cHRpbmdDcnkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/27dd12964c/CorruptingCry.png","gem":{}} +{"name":"腐化潮","refName":"Corrupting Fever","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db3JydXB0ZWRCbG9vZFN0cmVhbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fdc2a5d375/CorruptedBloodStream.png","gem":{}} +{"name":"碎雷電閃","refName":"Crackling Lance","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXNlbnRlZ3JhdGVHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/89788eeb5b/DisentegrateGem.png","gem":{}} +{"name":"碎雷電閃.分支","refName":"Crackling Lance of Branching","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXNlbnRlZ3JhdGVHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/89788eeb5b/DisentegrateGem.png","gem":{"transfigured":true,"normalVariant":"Crackling Lance"}} +{"name":"碎雷電閃.毀滅","refName":"Crackling Lance of Disintegration","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXNlbnRlZ3JhdGVHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/89788eeb5b/DisentegrateGem.png","gem":{"transfigured":true,"normalVariant":"Crackling Lance"}} +{"name":"寒霜滲透","refName":"Creeping Frost","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BcmN0aWNCcmVhdGgiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0102d0ec76/ArcticBreath.png","gem":{}} +{"name":"熔炎送葬","refName":"Cremation","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db3Jwc2VFcnVwdGlvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/83bc1fdffa/CorpseEruption.png","gem":{}} +{"name":"熔炎送葬.深掘","refName":"Cremation of Exhuming","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db3Jwc2VFcnVwdGlvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/83bc1fdffa/CorpseEruption.png","gem":{"transfigured":true,"normalVariant":"Cremation"}} +{"name":"熔炎送葬.火山","refName":"Cremation of the Volcano","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db3Jwc2VFcnVwdGlvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/83bc1fdffa/CorpseEruption.png","gem":{"transfigured":true,"normalVariant":"Cremation"}} +{"name":"暴擊苦痛輔助","refName":"Critical Strike Affliction Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1BvaXNvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/93b5718773/Poison.png","gem":{}} +{"name":"殘酷輔助","refName":"Cruelty Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ZyYWdpbGl0eSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/85392d054c/Fragility.png","gem":{}} +{"name":"粉碎之拳","refName":"Crushing Fist","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzMwLDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DcnVzaGluZ0Zpc3RTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f941a48bca/CrushingFistSkillGem.png","gem":{}} +{"name":"撲殺輔助","refName":"Culling Strike Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0N1bGxpbmdTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/328a156075/CullingStrike.png","gem":{}} +{"name":"詛咒地面輔助","refName":"Cursed Ground Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0hleFpvbmVTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/63e77cc4ae/HexZoneSupport.png","gem":{}} +{"name":"旋風斬","refName":"Cyclone","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DeWNsb25lIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f97bf2f477/Cyclone.png","gem":{}} +{"name":"旋風斬.騷動","refName":"Cyclone of Tumult","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DeWNsb25lIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f97bf2f477/Cyclone.png","gem":{"transfigured":true,"normalVariant":"Cyclone"}} +{"name":"滿血傷害輔助","refName":"Damage on Full Life Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01lbGVlRGFtYWdlb25GdWxsTGlmZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/487b8dcafd/MeleeDamageonFullLife.png","gem":{}} +{"name":"暗夜血契","refName":"Dark Pact","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ta2VsZXRhbENoYWlucyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5976d42537/SkeletalChains.png","gem":{}} +{"name":"幻步","refName":"Dash","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9RdWlja0Rhc2hHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9b7d6a4128/QuickDashGem.png","gem":{}} +{"name":"致命異常輔助","refName":"Deadly Ailments Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0RlYWRseUFpbG1lbnRzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/04acd7af7d/DeadlyAilments.png","gem":{}} +{"name":"腐化輔助","refName":"Decay Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0RlY2F5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/a88201c7c2/Decay.png","gem":{}} +{"name":"誘餌圖騰","refName":"Decoy Totem","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZWNveVRvdGVtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/7a5edf8963/DecoyTotem.png","gem":{}} +{"name":"反抗之旗","refName":"Defiance Banner","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Bcm1vdXJhbmRFdmFzaW9uQmFubmVyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b1f3dcfaa6/ArmourandEvasionBanner.png","gem":{}} +{"name":"褻瀆","refName":"Desecrate","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZXNlY3JhdGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/25ac841d64/Desecrate.png","gem":{}} +{"name":"絕望","refName":"Despair","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZXNwYWlyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b4dbf071cd/Despair.png","gem":{}} +{"name":"連結:破壞","refName":"Destructive Link","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Dcml0aWNhbExpbmtHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/78c8139685/CriticalLinkGem.png","gem":{}} +{"name":"堅定","refName":"Determination","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZXRlcm1pbmF0aW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/64c8ca9798/Determination.png","gem":{}} +{"name":"屍體爆破","refName":"Detonate Dead","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZXRvbmF0ZURlYWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/109199fc84/DetonateDead.png","gem":{}} +{"name":"屍體爆破.連鎖","refName":"Detonate Dead of Chain Reaction","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZXRvbmF0ZURlYWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/109199fc84/DetonateDead.png","gem":{"transfigured":true,"normalVariant":"Detonate Dead"}} +{"name":"屍體爆破.清洗","refName":"Detonate Dead of Scavenging","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZXRvbmF0ZURlYWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/109199fc84/DetonateDead.png","gem":{"transfigured":true,"normalVariant":"Detonate Dead"}} +{"name":"引爆地雷","refName":"Detonate Mines","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZXRvbmF0ZU1pbmVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/01399d507f/DetonateMines.png","gem":{}} +{"name":"吞噬輔助","refName":"Devour Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Rldm91ciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/3c8b4acc1b/Devour.png","gem":{}} +{"name":"吞噬圖騰","refName":"Devouring Totem","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZXZvdXJpbmdUb3RlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9aca73deb3/DevouringTotem.png","gem":{}} +{"name":"解放","refName":"Discharge","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXNjaGFyZ2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cedc22eeb5/Discharge.png","gem":{}} +{"name":"解放.苦痛","refName":"Discharge of Misery","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXNjaGFyZ2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cedc22eeb5/Discharge.png","gem":{"transfigured":true,"normalVariant":"Discharge"}} +{"name":"紀律","refName":"Discipline","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXNjaXBsaW5lIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8fb38b53f4/Discipline.png","gem":{}} +{"name":"神聖祝福輔助","refName":"Divine Blessing Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0JsZXNzaW5nU3VwcG9ydCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/99fba49d0f/BlessingSupport.png","gem":{}} +{"name":"聖怒","refName":"Divine Ire","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXZpbmVUZW1wZXN0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4b8cb33523/DivineTempest.png","gem":{}} +{"name":"聖怒.毀滅","refName":"Divine Ire of Disintegration","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXZpbmVUZW1wZXN0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4b8cb33523/DivineTempest.png","gem":{"transfigured":true,"normalVariant":"Divine Ire"}} +{"name":"聖怒.雷神","refName":"Divine Ire of Holy Lightning","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXZpbmVUZW1wZXN0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4b8cb33523/DivineTempest.png","gem":{"transfigured":true,"normalVariant":"Divine Ire"}} +{"name":"神聖制裁","refName":"Divine Retribution","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzMwLDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SZXRhbGlhdGlvbkhvbHlTcGVsbFNraWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/e0e8279ec8/RetaliationHolySpellSkill.png","gem":{}} +{"name":"霸氣之擊","refName":"Dominating Blow","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb21pbmF0aW5nQmxvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c0a344a783/DominatingBlow.png","gem":{}} +{"name":"霸氣之擊.啟發","refName":"Dominating Blow of Inspiring","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb21pbmF0aW5nQmxvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c0a344a783/DominatingBlow.png","gem":{"transfigured":true,"normalVariant":"Dominating Blow"}} +{"name":"雙重打擊","refName":"Double Strike","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb3VibGVTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/408f3e4fa9/DoubleStrike.png","gem":{}} +{"name":"雙重打擊.穿刺","refName":"Double Strike of Impaling","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb3VibGVTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/408f3e4fa9/DoubleStrike.png","gem":{"transfigured":true,"normalVariant":"Double Strike"}} +{"name":"雙重打擊.氣勢","refName":"Double Strike of Momentum","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb3VibGVTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/408f3e4fa9/DoubleStrike.png","gem":{"transfigured":true,"normalVariant":"Double Strike"}} +{"name":"恐懼之旗","refName":"Dread Banner","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EcmVhZEJhbm5lciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/cbb87b80fb/DreadBanner.png","gem":{}} +{"name":"雙持打擊","refName":"Dual Strike","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EdWFsU3RyaWtlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f5112d91e4/DualStrike.png","gem":{}} +{"name":"雙持打擊.靈活","refName":"Dual Strike of Ambidexterity","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EdWFsU3RyaWtlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f5112d91e4/DualStrike.png","gem":{"transfigured":true,"normalVariant":"Dual Strike"}} +{"name":"震地","refName":"Earthquake","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9RdWFrZVNsYW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3a3c0f1c46/QuakeSlam.png","gem":{}} +{"name":"震地.增幅","refName":"Earthquake of Amplification","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9RdWFrZVNsYW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3a3c0f1c46/QuakeSlam.png","gem":{"transfigured":true,"normalVariant":"Earthquake"}} +{"name":"碎地重擊","refName":"Earthshatter","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGlrZVNsYW1HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f366aab2cf/SpikeSlamGem.png","gem":{}} +{"name":"碎地重擊.易碎","refName":"Earthshatter of Fragility","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGlrZVNsYW1HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f366aab2cf/SpikeSlamGem.png","gem":{"transfigured":true,"normalVariant":"Earthshatter"}} +{"name":"碎地重擊.卓越","refName":"Earthshatter of Prominence","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGlrZVNsYW1HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f366aab2cf/SpikeSlamGem.png","gem":{"transfigured":true,"normalVariant":"Earthshatter"}} +{"name":"效能輔助","refName":"Efficacy Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0VmZmljYWN5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/90381ee91a/Efficacy.png","gem":{}} +{"name":"元素軍隊輔助","refName":"Elemental Army Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1bW1vbnNFbGVtZW50YWxSZXNpc3RzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/db4dac7400/SummonsElementalResists.png","gem":{}} +{"name":"元素攻擊傷害輔助","refName":"Elemental Damage with Attacks Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1dlYXBvbkVsZW1lbnRhbERhbWFnZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/2cfbdc80b2/WeaponElementalDamage.png","gem":{}} +{"name":"元素集中輔助","refName":"Elemental Focus Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0VsZW1lbnRhbEZvY3VzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/89a3556bad/ElementalFocus.png","gem":{}} +{"name":"元素打擊","refName":"Elemental Hit","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbGVtZW50YWxoaXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/498f9dcd1e/Elementalhit.png","gem":{}} +{"name":"元素打擊.光譜","refName":"Elemental Hit of the Spectrum","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbGVtZW50YWxoaXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/498f9dcd1e/Elementalhit.png","gem":{"transfigured":true,"normalVariant":"Elemental Hit"}} +{"name":"元素穿透輔助","refName":"Elemental Penetration Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0VsZW1lbnRhbFBlbmV0cmF0aW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/36b75b1496/ElementalPenetration.png","gem":{}} +{"name":"元素擴散輔助","refName":"Elemental Proliferation Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0VsZW1lbnRhbFByb2xpZmVyYXRpb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/820a3ee1f5/ElementalProliferation.png","gem":{}} +{"name":"元素要害","refName":"Elemental Weakness","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbGVtZW50YWxXZWFrbmVzcyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b639dd2650/ElementalWeakness.png","gem":{}} +{"name":"賦予輔助","refName":"Empower Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0VtcG93ZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c2b1b38b15/Empower.png","gem":{}} +{"name":"近戰擊暈獲得耐力球輔助","refName":"Endurance Charge on Melee Stun Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0VuZHVyYW5jZUNoYXJnZVN0dW4iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e3b4ca1900/EnduranceChargeStun.png","gem":{}} +{"name":"堅決戰吼","refName":"Enduring Cry","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbmR1cmluZ0NyeSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/4c160bac55/EnduringCry.png","gem":{}} +{"name":"能量之刃","refName":"Energy Blade","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdG9ybUJsYWRlR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/387697170b/StormBladeGem.png","gem":{}} +{"name":"能量偷取輔助","refName":"Energy Leech Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0VuZXJneVNoaWVsZExlZWNoc3VwcG9ydCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/691b0c6570/EnergyShieldLeechsupport.png","gem":{}} +{"name":"衰弱","refName":"Enfeeble","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbmZlZWJsZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e85edd0ad5/Enfeeble.png","gem":{}} +{"name":"增幅輔助","refName":"Enhance Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L2VuaGFuY2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9f8df30377/enhance.png","gem":{}} +{"name":"啟蒙輔助","refName":"Enlighten Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0VubGlnaHRlbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/05a949e270/Enlighten.png","gem":{}} +{"name":"誘捕箭矢","refName":"Ensnaring Arrow","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbnNuYXJpbmdBcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d73b324dd3/EnsnaringArrow.png","gem":{}} +{"name":"靈魂吸取","refName":"Essence Drain","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaXBob25HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/97ff6075bf/SiphonGem.png","gem":{}} +{"name":"靈魂吸取.絕望","refName":"Essence Drain of Desperation","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaXBob25HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/97ff6075bf/SiphonGem.png","gem":{"transfigured":true,"normalVariant":"Essence Drain"}} +{"name":"靈魂吸取.邪惡","refName":"Essence Drain of Wickedness","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaXBob25HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/97ff6075bf/SiphonGem.png","gem":{"transfigured":true,"normalVariant":"Essence Drain"}} +{"name":"永恆祝福輔助","refName":"Eternal Blessing Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01vcnRhbENvbnZpY3Rpb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/39ae65a638/MortalConviction.png","gem":{}} +{"name":"虛空匕首","refName":"Ethereal Knives","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FdGhlcmVhbEtuaXZlcyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/67d0809c7c/EtherealKnives.png","gem":{}} +{"name":"虛空匕首.餘刃","refName":"Ethereal Knives of Lingering Blades","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FdGhlcmVhbEtuaXZlcyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/67d0809c7c/EtherealKnives.png","gem":{"transfigured":true,"normalVariant":"Ethereal Knives"}} +{"name":"虛空匕首.屠殺","refName":"Ethereal Knives of the Massacre","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FdGhlcmVhbEtuaXZlcyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/67d0809c7c/EtherealKnives.png","gem":{"transfigured":true,"normalVariant":"Ethereal Knives"}} +{"name":"剔骨","refName":"Eviscerate","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzMwLDE0LHsiZiI6IjJESXRlbXMvR2Vtcy8xSGFuZFNoaWVsZENvdW50ZXJhdHRhY2tTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/18612cf0b3/1HandShieldCounterattackSkillGem.png","gem":{}} +{"name":"專家復仇輔助","refName":"Expert Retaliation Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0V4cGVydFJldGFsaWF0aW9uU3VwcG9ydCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7897b090f1/ExpertRetaliationSupport.png","gem":{}} +{"name":"爆炸箭矢","refName":"Explosive Arrow","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FeHBsb3NpdmVBcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a9cd35adfb/ExplosiveArrow.png","gem":{}} +{"name":"爆裂物","refName":"Explosive Concoction","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FeHBsb3NpdmVGbGFza1NraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9114018038/ExplosiveFlaskSkillGem.png","gem":{}} +{"name":"爆裂物.破壞","refName":"Explosive Concoction of Destruction","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FeHBsb3NpdmVGbGFza1NraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9114018038/ExplosiveFlaskSkillGem.png","gem":{"transfigured":true,"normalVariant":"Explosive Concoction"}} +{"name":"爆裂陷阱","refName":"Explosive Trap","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaHJhcG5lbFRyYXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/77d643292b/ShrapnelTrap.png","gem":{}} +{"name":"爆裂陷阱.量級","refName":"Explosive Trap of Magnitude","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaHJhcG5lbFRyYXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/77d643292b/ShrapnelTrap.png","gem":{"transfigured":true,"normalVariant":"Explosive Trap"}} +{"name":"爆裂陷阱.彈片","refName":"Explosive Trap of Shrapnel","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaHJhcG5lbFRyYXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/77d643292b/ShrapnelTrap.png","gem":{"transfigured":true,"normalVariant":"Explosive Trap"}} +{"name":"抽血","refName":"Exsanguinate","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZFRlbmRyaWxzU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d421c5c70e/BloodTendrilsSkillGem.png","gem":{}} +{"name":"抽血.傳染","refName":"Exsanguinate of Transmission","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZFRlbmRyaWxzU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d421c5c70e/BloodTendrilsSkillGem.png","gem":{"transfigured":true,"normalVariant":"Exsanguinate"}} +{"name":"凜冬之眼","refName":"Eye of Winter","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm96ZW5TcGhlcmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b51924877e/FrozenSphereSkillGem.png","gem":{}} +{"name":"凜冬之眼.終結","refName":"Eye of Winter of Finality","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm96ZW5TcGhlcmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b51924877e/FrozenSphereSkillGem.png","gem":{"transfigured":true,"normalVariant":"Eye of Winter"}} +{"name":"凜冬之眼.轉瞬","refName":"Eye of Winter of Transience","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm96ZW5TcGhlcmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b51924877e/FrozenSphereSkillGem.png","gem":{"transfigured":true,"normalVariant":"Eye of Winter"}} +{"name":"快速攻擊輔助","refName":"Faster Attacks Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Zhc3RlckF0dGFja3MiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c3e1544a95/FasterAttacks.png","gem":{}} +{"name":"快速施放輔助","refName":"Faster Casting Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Zhc3RlckNhc3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4a65f03270/FasterCast.png","gem":{}} +{"name":"快速投射輔助","refName":"Faster Projectiles Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Zhc3RlclByb2plY3RpbGVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/a6517119dd/FasterProjectiles.png","gem":{}} +{"name":"豢養狂熱輔助","refName":"Feeding Frenzy Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L09mZmVuc2l2ZU1pbmlvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f90cd05483/OffensiveMinion.png","gem":{}} +{"name":"火焰穿透輔助","refName":"Fire Penetration Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ZpcmVQZW5ldHJhdGlvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/191dcc704c/FirePenetration.png","gem":{}} +{"name":"火焰陷阱","refName":"Fire Trap","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlVHJhcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9d94f9ce06/FireTrap.png","gem":{}} +{"name":"火焰陷阱.爆發","refName":"Fire Trap of Blasting","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlVHJhcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9d94f9ce06/FireTrap.png","gem":{"transfigured":true,"normalVariant":"Fire Trap"}} +{"name":"火球","refName":"Fireball","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlYmFsbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8f374db219/Fireball.png","gem":{}} +{"name":"烈炎風暴","refName":"Firestorm","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlc3Rvcm0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/86d85233c1/Firestorm.png","gem":{}} +{"name":"烈炎風暴.隕石","refName":"Firestorm of Meteors","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlc3Rvcm0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/86d85233c1/Firestorm.png","gem":{"transfigured":true,"normalVariant":"Firestorm"}} +{"name":"烈炎風暴.猛擲","refName":"Firestorm of Pelting","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlc3Rvcm0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/86d85233c1/Firestorm.png","gem":{"transfigured":true,"normalVariant":"Firestorm"}} +{"name":"拳霸輔助","refName":"Fist of War Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Zpc3RPZldhckdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6ba67a3963/FistOfWarGem.png","gem":{}} +{"name":"烈焰衝刺","refName":"Flame Dash","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZURhc2giLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6816a20975/FlameDash.png","gem":{}} +{"name":"烈焰衝刺.返回","refName":"Flame Dash of Return","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZURhc2giLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6816a20975/FlameDash.png","gem":{"transfigured":true,"normalVariant":"Flame Dash"}} +{"name":"連結:烈焰","refName":"Flame Link","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZUxpbmtHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/fee913312b/FlameLinkGem.png","gem":{}} +{"name":"怒焰奔騰","refName":"Flame Surge","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZXdoaXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/005ce2aecc/Flamewhip.png","gem":{}} +{"name":"怒焰奔騰.燃燒","refName":"Flame Surge of Combusting","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZXdoaXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/005ce2aecc/Flamewhip.png","gem":{"transfigured":true,"normalVariant":"Flame Surge"}} +{"name":"烈焰之牆","refName":"Flame Wall","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJld2FsbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d3c69ec0a3/Firewall.png","gem":{}} +{"name":"烈焰爆破","refName":"Flameblast","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFyZ2VkQmxhc3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/90adc64f44/ChargedBlast.png","gem":{}} +{"name":"烈焰爆破.迅速","refName":"Flameblast of Celerity","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFyZ2VkQmxhc3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/90adc64f44/ChargedBlast.png","gem":{"transfigured":true,"normalVariant":"Flameblast"}} +{"name":"烈焰爆破.緊縮","refName":"Flameblast of Contraction","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFyZ2VkQmxhc3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/90adc64f44/ChargedBlast.png","gem":{"transfigured":true,"normalVariant":"Flameblast"}} +{"name":"噴火陷阱","refName":"Flamethrower Trap","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZXRocm93ZXJUcmFwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/11e6f1dd04/FlamethrowerTrap.png","gem":{}} +{"name":"焚木輔助","refName":"Flamewood Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ZsYW1ld29vZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/83ebdeea1c/Flamewood.png","gem":{}} +{"name":"易燃","refName":"Flammability","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtbWFiaWxpdHkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ba43e87752/Flammability.png","gem":{}} +{"name":"血肉骸骨","refName":"Flesh and Stone","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZFNhbmRBcm1vdXJHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a66b8062e9/BloodSandArmourGem.png","gem":{}} +{"name":"血肉奉獻","refName":"Flesh Offering","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGVzaE9mZmVyaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d0a2e49abe/FleshOffering.png","gem":{}} +{"name":"閃現打擊","refName":"Flicker Strike","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGlja2VyU3RyaWtlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4d16009413/FlickerStrike.png","gem":{}} +{"name":"閃現打擊.暴擊","refName":"Flicker Strike of Power","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGlja2VyU3RyaWtlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4d16009413/FlickerStrike.png","gem":{"transfigured":true,"normalVariant":"Flicker Strike"}} +{"name":"專注砲塔輔助","refName":"Focused Ballista Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ZvY3Vzc2VkQmFsbGlzdGFTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/7fe5aa6d93/FocussedBallistaSupport.png","gem":{}} +{"name":"禁忌儀式","refName":"Forbidden Rite","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Tb3VsZmVhc3RHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b4fd5ae750/SoulfeastGem.png","gem":{}} +{"name":"禁忌儀式.靈魂獻祭","refName":"Forbidden Rite of Soul Sacrifice","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Tb3VsZmVhc3RHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b4fd5ae750/SoulfeastGem.png","gem":{"transfigured":true,"normalVariant":"Forbidden Rite"}} +{"name":"分裂輔助","refName":"Fork Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ZvcmsiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9de72b6ab9/Fork.png","gem":{}} +{"name":"護體輔助","refName":"Fortify Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ZvcnRpZnlHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0f54034785/FortifyGem.png","gem":{}} +{"name":"冰霜脈衝","refName":"Freezing Pulse","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GcmVlemluZ1B1bHNlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d62582b397/FreezingPulse.png","gem":{}} +{"name":"狂怒","refName":"Frenzy","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GcmVuenkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cd16439994/Frenzy.png","gem":{}} +{"name":"狂怒.猛攻","refName":"Frenzy of Onslaught","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GcmVuenkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cd16439994/Frenzy.png","gem":{"transfigured":true,"normalVariant":"Frenzy"}} +{"name":"鮮肉輔助","refName":"Fresh Meat Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ZyZXNoTWVhdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/aad1cf4139/FreshMeat.png","gem":{}} +{"name":"冰寒之繫輔助","refName":"Frigid Bond Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ZyaWdpZEJvbmQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e595841550/FrigidBond.png","gem":{}} +{"name":"冰霜之刃","refName":"Frost Blades","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d5e5a05831/IceStrike.png","gem":{}} +{"name":"冰霜之刃.降臨","refName":"Frost Blades of Katabasis","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d5e5a05831/IceStrike.png","gem":{"transfigured":true,"normalVariant":"Frost Blades"}} +{"name":"寒霜爆","refName":"Frost Bomb","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdEJvbWIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c8aeb75684/FrostBomb.png","gem":{}} +{"name":"寒霜爆.來臨","refName":"Frost Bomb of Forthcoming","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdEJvbWIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c8aeb75684/FrostBomb.png","gem":{"transfigured":true,"normalVariant":"Frost Bomb"}} +{"name":"寒霜爆.不穩定","refName":"Frost Bomb of Instability","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdEJvbWIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c8aeb75684/FrostBomb.png","gem":{"transfigured":true,"normalVariant":"Frost Bomb"}} +{"name":"寒霜護盾","refName":"Frost Shield","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdEdsb2JlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/e7020ad872/FrostGlobe.png","gem":{}} +{"name":"冰牆","refName":"Frost Wall","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdFdhbGwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6b6d630e19/FrostWall.png","gem":{}} +{"name":"凍傷","refName":"Frostbite","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdEJpdGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b858d8016a/FrostBite.png","gem":{}} +{"name":"霜漣之瞬","refName":"Frostblink","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdGJsaW5rU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5d0c50f5e4/FrostblinkSkillGem.png","gem":{}} +{"name":"霜漣之瞬.寒風","refName":"Frostblink of Wintry Blast","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdGJsaW5rU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5d0c50f5e4/FrostblinkSkillGem.png","gem":{"transfigured":true,"normalVariant":"Frostblink"}} +{"name":"寒冰彈","refName":"Frostbolt","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdEJvbHQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/33202c1f22/FrostBolt.png","gem":{}} +{"name":"戰亂.凍結","refName":"Frozen Legion","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm96ZW5MZWdpb25Ta2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f177c9b520/FrozenLegionSkillGem.png","gem":{}} +{"name":"戰亂.凍結.號召","refName":"Frozen Legion of Rallying","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm96ZW5MZWdpb25Ta2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f177c9b520/FrozenLegionSkillGem.png","gem":{"transfigured":true,"normalVariant":"Frozen Legion"}} +{"name":"電流箭矢","refName":"Galvanic Arrow","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaHJhcG5lbFNob3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6efbafb70a/ShrapnelShot.png","gem":{}} +{"name":"電流箭矢.能量","refName":"Galvanic Arrow of Energy","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaHJhcG5lbFNob3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6efbafb70a/ShrapnelShot.png","gem":{"transfigured":true,"normalVariant":"Galvanic Arrow"}} +{"name":"電流箭矢.波動","refName":"Galvanic Arrow of Surging","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaHJhcG5lbFNob3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6efbafb70a/ShrapnelShot.png","gem":{"transfigured":true,"normalVariant":"Galvanic Arrow"}} +{"name":"電光領域","refName":"Galvanic Field","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HYWx2YW5pY0ZpZWxkU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8aa27ccb46/GalvanicFieldSkillGem.png","gem":{}} +{"name":"電光領域.強度","refName":"Galvanic Field of Intensity","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HYWx2YW5pY0ZpZWxkU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8aa27ccb46/GalvanicFieldSkillGem.png","gem":{"transfigured":true,"normalVariant":"Galvanic Field"}} +{"name":"將軍戰吼","refName":"General's Cry","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HZW5lcmFsc0NyeSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8f89442969/GeneralsCry.png","gem":{}} +{"name":"和善輔助","refName":"Generosity Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0dlbmVyb3NpdHlTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/a32a095b6b/GenerositySupport.png","gem":{}} +{"name":"冰川之刺","refName":"Glacial Cascade","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9VcGhlYXZhbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e29730bc66/Upheaval.png","gem":{}} +{"name":"冰川之刺.裂隙","refName":"Glacial Cascade of the Fissure","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9VcGhlYXZhbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e29730bc66/Upheaval.png","gem":{"transfigured":true,"normalVariant":"Glacial Cascade"}} +{"name":"冰霜之錘","refName":"Glacial Hammer","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HbGFjaWFsSGFtbWVyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ff8c64eae7/GlacialHammer.png","gem":{}} +{"name":"冰霜之錘.粉碎","refName":"Glacial Hammer of Shattering","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HbGFjaWFsSGFtbWVyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ff8c64eae7/GlacialHammer.png","gem":{"transfigured":true,"normalVariant":"Glacial Hammer"}} +{"name":"冰川盾擊","refName":"Glacial Shield Swipe","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzMwLDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VXYXZlc1NraWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/37c0c2b118/IceWavesSkill.png","gem":{}} +{"name":"優雅","refName":"Grace","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HcmFjZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e98082048a/Grace.png","gem":{}} +{"name":"高階多重投射輔助","refName":"Greater Multiple Projectiles Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0dyZWF0ZXJNdWx0aXBsZVByb2plY3RpbGVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/c157c4f1e9/GreaterMultipleProjectiles.png","gem":{}} +{"name":"高階齊射輔助","refName":"Greater Volley Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0dyZWF0ZXJWb2xsZXlTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/bb821215f4/GreaterVolleySupport.png","gem":{}} +{"name":"裂地之擊","refName":"Ground Slam","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Hcm91bmRzbGFtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/fe4a163a74/Groundslam.png","gem":{}} +{"name":"裂地之擊.地震","refName":"Ground Slam of Earthshaking","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Hcm91bmRzbGFtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/fe4a163a74/Groundslam.png","gem":{"transfigured":true,"normalVariant":"Ground Slam"}} +{"name":"守護者的祝福輔助","refName":"Guardian's Blessing Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0d1YXJkaWFuc0JsZXNzaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/bd80e27bb7/GuardiansBlessing.png","gem":{}} +{"name":"迅捷","refName":"Haste","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IYXN0ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/151b5aa85b/Haste.png","gem":{}} +{"name":"憎恨","refName":"Hatred","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IYXRyZWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/432bfae70e/Hatred.png","gem":{}} +{"name":"沉重之擊","refName":"Heavy Strike","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IZWF2eVN0cmlrZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6139e85fcd/HeavyStrike.png","gem":{}} +{"name":"苦痛之捷","refName":"Herald of Agony","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IZXJhbGRPZkFnb255R2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/0e95349c4d/HeraldOfAgonyGem.png","gem":{}} +{"name":"灰燼之捷","refName":"Herald of Ash","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IZXJhbGRvZkFzaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/10697bcbfe/HeraldofAsh.png","gem":{}} +{"name":"冰霜之捷","refName":"Herald of Ice","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IZXJhbGRvZkljZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ce4dc073c8/HeraldofIce.png","gem":{}} +{"name":"純淨之捷","refName":"Herald of Purity","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IZXJhbGRPZkxpZ2h0IEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8e500098c1/HeraldOfLight%20Gem.png","gem":{}} +{"name":"閃電之捷","refName":"Herald of Thunder","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IZXJhbGRvZlRodW5kZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/567f7d8ad4/HeraldofThunder.png","gem":{}} +{"name":"咒術綻放輔助","refName":"Hex Bloom Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IZXhTcHJlYWRpbmdTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/873fa8ef65/HexSpreadingSupport.png","gem":{}} +{"name":"咒術枯萎","refName":"Hexblast","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb29tQmxhc3RTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1866f44c9d/DoomBlastSkillGem.png","gem":{}} +{"name":"咒術枯萎.矛盾","refName":"Hexblast of Contradiction","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb29tQmxhc3RTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1866f44c9d/DoomBlastSkillGem.png","gem":{"transfigured":true,"normalVariant":"Hexblast"}} +{"name":"咒術枯萎.浩劫","refName":"Hexblast of Havoc","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb29tQmxhc3RTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1866f44c9d/DoomBlastSkillGem.png","gem":{"transfigured":true,"normalVariant":"Hexblast"}} +{"name":"咒術降臨輔助","refName":"Hextouch Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0N1cnNlT25IaXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/da0ae156c5/CurseOnHit.png","gem":{}} +{"name":"高能地雷輔助","refName":"High-Impact Mine Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0FsdFJlbW90ZU1pbmVTdXBwb3J0R2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/22c3e66b67/AltRemoteMineSupportGem.png","gem":{}} +{"name":"神聖火舌圖騰","refName":"Holy Flame Totem","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZVRvdGVtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b622628c3c/FlameTotem.png","gem":{}} +{"name":"神聖火舌圖騰.怒火","refName":"Holy Flame Totem of Ire","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZVRvdGVtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b622628c3c/FlameTotem.png","gem":{"transfigured":true,"normalVariant":"Holy Flame Totem"}} +{"name":"水弒界","refName":"Hydrosphere","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IeWRyb3NwaGVyZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8602dc0a80/Hydrosphere.png","gem":{}} +{"name":"急凍輔助","refName":"Hypothermia Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0RhbWFnZUFnYWluc3RDaGlsbGVkIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/97f8b88dfa/DamageAgainstChilled.png","gem":{}} +{"name":"霜咬輔助","refName":"Ice Bite Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ZyZW56eUNoYXJnZU9uU2hhdHRlciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d172bfc06a/FrenzyChargeOnShatter.png","gem":{}} +{"name":"寒冰衝擊","refName":"Ice Crash","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VDcmFzaEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/23f3dc49b4/IceCrashGem.png","gem":{}} +{"name":"寒冰衝擊.節奏","refName":"Ice Crash of Cadence","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VDcmFzaEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/23f3dc49b4/IceCrashGem.png","gem":{"transfigured":true,"normalVariant":"Ice Crash"}} +{"name":"冰霜新星","refName":"Ice Nova","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VOb3ZhIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/65f9588dac/IceNova.png","gem":{}} +{"name":"冰霜新星.深層冰凍","refName":"Ice Nova of Deep Freeze","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VOb3ZhIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/65f9588dac/IceNova.png","gem":{"transfigured":true,"normalVariant":"Ice Nova"}} +{"name":"冰霜新星.寒冰彈","refName":"Ice Nova of Frostbolts","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VOb3ZhIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/65f9588dac/IceNova.png","gem":{"transfigured":true,"normalVariant":"Ice Nova"}} +{"name":"冰霜射擊","refName":"Ice Shot","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTaG90IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6ebe439727/IceShot.png","gem":{}} +{"name":"穿透之冰霜射擊","refName":"Ice Shot of Penetration","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTaG90IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6ebe439727/IceShot.png","gem":{"transfigured":true,"normalVariant":"Ice Shot"}} +{"name":"冰矛","refName":"Ice Spear","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTcGVhciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1ba7d15d5d/IceSpear.png","gem":{}} +{"name":"冰矛.分裂","refName":"Ice Spear of Splitting","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTcGVhciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1ba7d15d5d/IceSpear.png","gem":{"transfigured":true,"normalVariant":"Ice Spear"}} +{"name":"冰凍陷阱","refName":"Ice Trap","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VUcmFwUnVuZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5211666f1b/IceTrapRune.png","gem":{}} +{"name":"冰凍陷阱.空心","refName":"Ice Trap of Hollowness","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VUcmFwUnVuZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5211666f1b/IceTrapRune.png","gem":{"transfigured":true,"normalVariant":"Ice Trap"}} +{"name":"冰雹地雷","refName":"Icicle Mine","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db2xkUHJvamVjdGlsZU1pbmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a7c134082a/ColdProjectileMineSkillGem.png","gem":{}} +{"name":"冰雹地雷.扇動","refName":"Icicle Mine of Fanning","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db2xkUHJvamVjdGlsZU1pbmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a7c134082a/ColdProjectileMineSkillGem.png","gem":{"transfigured":true,"normalVariant":"Icicle Mine"}} +{"name":"冰雹地雷.破壞","refName":"Icicle Mine of Sabotage","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db2xkUHJvamVjdGlsZU1pbmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a7c134082a/ColdProjectileMineSkillGem.png","gem":{"transfigured":true,"normalVariant":"Icicle Mine"}} +{"name":"點燃擴散輔助","refName":"Ignite Proliferation Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0lnbml0ZVByb2xpZmVyYXRpb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e6a337b58f/IgniteProliferation.png","gem":{}} +{"name":"犧牲輔助","refName":"Immolate Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ltbW9sYXRlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/af3f7bc354/Immolate.png","gem":{}} +{"name":"不朽怒嚎","refName":"Immortal Call","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JbW1vcnRhbENhbGwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ef38147c94/ImmortalCall.png","gem":{}} +{"name":"穿刺輔助","refName":"Impale Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L2ltcGFsZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a974bd1dc1/impale.png","gem":{}} +{"name":"末日厄運輔助","refName":"Impending Doom Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1ZpY2lvdXNIZXhTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ca0675bd9c/ViciousHexSupport.png","gem":{}} +{"name":"燒毀","refName":"Incinerate","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZXRocm93ZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d7c85f1aa4/Flamethrower.png","gem":{}} +{"name":"燒毀.蔓延","refName":"Incinerate of Expanse","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZXRocm93ZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d7c85f1aa4/Flamethrower.png","gem":{"transfigured":true,"normalVariant":"Incinerate"}} +{"name":"燒毀.通風","refName":"Incinerate of Venting","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZXRocm93ZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d7c85f1aa4/Flamethrower.png","gem":{"transfigured":true,"normalVariant":"Incinerate"}} +{"name":"增加範圍輔助","refName":"Increased Area of Effect Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0luY3JlYXNlZEFPRSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a4111d2154/IncreasedAOE.png","gem":{}} +{"name":"增加暴擊傷害輔助","refName":"Increased Critical Damage Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0luY3JlYXNlZENyaXRpY2FsRGFtYWdlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/74164474d1/IncreasedCriticalDamage.png","gem":{}} +{"name":"增加暴擊率輔助","refName":"Increased Critical Strikes Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0luY3JlYXNlZENyaXRpY2FsU3RyaWtlcyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/afc7a604cf/IncreasedCriticalStrikes.png","gem":{}} +{"name":"煉獄之擊","refName":"Infernal Blow","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JbmZlcm5hbEJsb3ciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d016d5b5a1/InfernalBlow.png","gem":{}} +{"name":"煉獄之擊.自焚","refName":"Infernal Blow of Immolation","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JbmZlcm5hbEJsb3ciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d016d5b5a1/InfernalBlow.png","gem":{"transfigured":true,"normalVariant":"Infernal Blow"}} +{"name":"煉獄戰吼","refName":"Infernal Cry","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JbmZlcm5hbENyeSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/dccf976e24/InfernalCry.png","gem":{}} +{"name":"煉獄軍團輔助","refName":"Infernal Legion Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0luZmVybmFsTGVnaW9uU3VwcG9ydEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/461a9b10aa/InfernalLegionSupportGem.png","gem":{}} +{"name":"注入引導輔助","refName":"Infused Channelling Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N0b3JtQmFycmllciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7db72233e9/StormBarrier.png","gem":{}} +{"name":"亢奮輔助","refName":"Innervate Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L09uc2xhdWdodE9uU2xheWluZ1Nob2NrZWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0780d91964/OnslaughtOnSlayingShocked.png","gem":{}} +{"name":"啟發輔助","refName":"Inspiration Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1JlZHVjZWRNYW5hQ29zdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f9f7503054/ReducedManaCost.png","gem":{}} +{"name":"強化輔助","refName":"Intensify Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1NwZWxsRm9jdXNTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f1143120cd/SpellFocusSupport.png","gem":{}} +{"name":"威嚇戰吼","refName":"Intimidating Cry","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JbnRpbWlkYXRpbmdDcnkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d208dc6bb5/IntimidatingCry.png","gem":{}} +{"name":"連結:直覺","refName":"Intuitive Link","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9UcmlnZ2VyTGlua0dlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/726a29e3ef/TriggerLinkGem.png","gem":{}} +{"name":"鋼鐵之握輔助","refName":"Iron Grip Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0lyb25HcmlwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/e4644c9b8b/IronGrip.png","gem":{}} +{"name":"鋼鐵意志輔助","refName":"Iron Will Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0lyb25XaWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/fe7bad1137/IronWill.png","gem":{}} +{"name":"物品稀有度增幅輔助","refName":"Item Rarity Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0luY3JlYXNlZFF1YWxpdHkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3419db9edf/IncreasedQuality.png","gem":{}} +{"name":"力量爆破","refName":"Kinetic Blast","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DbHVzdGVyQnVyc3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1b7aff0832/ClusterBurst.png","gem":{}} +{"name":"聚集之力量爆破","refName":"Kinetic Blast of Clustering","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DbHVzdGVyQnVyc3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1b7aff0832/ClusterBurst.png","gem":{"transfigured":true,"normalVariant":"Kinetic Blast"}} +{"name":"力量穿引","refName":"Kinetic Bolt","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9aaWdaYWdXYW5kU2tpbGwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/461e91bc97/ZigZagWandSkill.png","gem":{}} +{"name":"力量穿引.碎片","refName":"Kinetic Bolt of Fragmentation","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9aaWdaYWdXYW5kU2tpbGwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/461e91bc97/ZigZagWandSkill.png","gem":{"transfigured":true,"normalVariant":"Kinetic Bolt"}} +{"name":"擊退輔助","refName":"Knockback Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0tub2NrYmFjayIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/682a61d0bb/Knockback.png","gem":{}} +{"name":"破空斬","refName":"Lacerate","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb3VibGVTbGFzaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fb44a829bd/DoubleSlash.png","gem":{}} +{"name":"破空斬.屠宰","refName":"Lacerate of Butchering","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb3VibGVTbGFzaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fb44a829bd/DoubleSlash.png","gem":{"transfigured":true,"normalVariant":"Lacerate"}} +{"name":"破空斬.出血","refName":"Lacerate of Haemorrhage","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb3VibGVTbGFzaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fb44a829bd/DoubleSlash.png","gem":{"transfigured":true,"normalVariant":"Lacerate"}} +{"name":"鋼之突刺","refName":"Lancing Steel","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MYW5jaW5nU3RlZWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8ed78ceb39/LancingSteel.png","gem":{}} +{"name":"鋼之突刺.噴射","refName":"Lancing Steel of Spraying","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MYW5jaW5nU3RlZWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8ed78ceb39/LancingSteel.png","gem":{"transfigured":true,"normalVariant":"Lancing Steel"}} +{"name":"躍擊","refName":"Leap Slam","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MZWFwU2xhbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f65891de7a/LeapSlam.png","gem":{}} +{"name":"躍擊.地破","refName":"Leap Slam of Groundbreaking","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MZWFwU2xhbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f65891de7a/LeapSlam.png","gem":{"transfigured":true,"normalVariant":"Leap Slam"}} +{"name":"持續時間縮短輔助","refName":"Less Duration Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1JlZHVjZUR1cmF0aW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ab88044f5f/ReduceDuration.png","gem":{}} +{"name":"低階多重投射輔助","refName":"Lesser Multiple Projectiles Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0xlc3Nlck11bHRpcGxlUHJvamVjdGlsZXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/db32a787d3/LesserMultipleProjectiles.png","gem":{}} +{"name":"擊中生命回復輔助","refName":"Life Gain on Hit Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0xpZmVvbkhpdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7f577bed88/LifeonHit.png","gem":{}} +{"name":"生命偷取輔助","refName":"Life Leech Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0xpZmVMZWVjaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/56a5e21d58/LifeLeech.png","gem":{}} +{"name":"活栓輔助","refName":"Lifetap Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0xpZmVUYXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9cef38ae47/LifeTap.png","gem":{}} +{"name":"閃電箭矢","refName":"Lightning Arrow","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdBcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f5ad901f20/LightningArrow.png","gem":{}} +{"name":"閃電箭矢.電刑","refName":"Lightning Arrow of Electrocution","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdBcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f5ad901f20/LightningArrow.png","gem":{"transfigured":true,"normalVariant":"Lightning Arrow"}} +{"name":"導雷","refName":"Lightning Conduit","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbmVyZ3lSZWxlYXNlU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5a89cebfb0/EnergyReleaseSkillGem.png","gem":{}} +{"name":"導雷.天堂","refName":"Lightning Conduit of the Heavens","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbmVyZ3lSZWxlYXNlU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5a89cebfb0/EnergyReleaseSkillGem.png","gem":{"transfigured":true,"normalVariant":"Lightning Conduit"}} +{"name":"閃電穿透輔助","refName":"Lightning Penetration Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0xpZ2h0bmluZ1BlbmV0cmF0aW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4fcb8dce90/LightningPenetration.png","gem":{}} +{"name":"鋒雷陷阱","refName":"Lightning Spire Trap","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdTcGlyZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/701078aee5/LightningSpire.png","gem":{}} +{"name":"鋒雷陷阱.過載","refName":"Lightning Spire Trap of Overloading","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdTcGlyZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/701078aee5/LightningSpire.png","gem":{"transfigured":true,"normalVariant":"Lightning Spire Trap"}} +{"name":"鋒雷陷阱.殘喘","refName":"Lightning Spire Trap of Zapping","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdTcGlyZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/701078aee5/LightningSpire.png","gem":{"transfigured":true,"normalVariant":"Lightning Spire Trap"}} +{"name":"閃電打擊","refName":"Lightning Strike","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e593a52f90/LightningStrike.png","gem":{}} +{"name":"閃電打擊.電弧","refName":"Lightning Strike of Arcing","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e593a52f90/LightningStrike.png","gem":{"transfigured":true,"normalVariant":"Lightning Strike"}} +{"name":"電能釋放","refName":"Lightning Tendrils","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodGVuaW5nVG91Y2giLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/418fa752e4/LighteningTouch.png","gem":{}} +{"name":"電能釋放.異變","refName":"Lightning Tendrils of Eccentricity","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodGVuaW5nVG91Y2giLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/418fa752e4/LighteningTouch.png","gem":{"transfigured":true,"normalVariant":"Lightning Tendrils"}} +{"name":"電能釋放.擴大","refName":"Lightning Tendrils of Escalation","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodGVuaW5nVG91Y2giLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/418fa752e4/LighteningTouch.png","gem":{"transfigured":true,"normalVariant":"Lightning Tendrils"}} +{"name":"閃電陷阱","refName":"Lightning Trap","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdUcmFwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/18365fa604/LightningTrap.png","gem":{}} +{"name":"閃電陷阱.電球","refName":"Lightning Trap of Sparking","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdUcmFwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/18365fa604/LightningTrap.png","gem":{"transfigured":true,"normalVariant":"Lightning Trap"}} +{"name":"閃電傳送","refName":"Lightning Warp","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdXYXJwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5f79874aa8/LightningWarp.png","gem":{}} +{"name":"定位地雷輔助","refName":"Locus Mine Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0xvY3VzTWluZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/81e9dcb0a5/LocusMine.png","gem":{}} +{"name":"癱瘓輔助","refName":"Maim Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01haW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/dc8062db46/Maim.png","gem":{}} +{"name":"惡意","refName":"Malevolence","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZWxpcml1bUdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/68eb889340/DeliriumGem.png","gem":{}} +{"name":"魔力偷取輔助","refName":"Mana Leech Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01hbmFMZWVjaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d7f54dd2b1/ManaLeech.png","gem":{}} +{"name":"魔能束縛","refName":"Manabond","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9NYW5hVm9pZEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ce344fd0e1/ManaVoidGem.png","gem":{}} +{"name":"魔改箭矢輔助","refName":"Manaforged Arrows Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0FyY2FuZUFyY2hlclN1cHBvcnRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5258fad72b/ArcaneArcherSupportGem.png","gem":{}} +{"name":"擊中時印記輔助","refName":"Mark On Hit Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01hcmtPbkhpdHRpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/082becefa3/MarkOnHitting.png","gem":{}} +{"name":"肉盾輔助","refName":"Meat Shield Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0RlZmVuc2l2ZU1pbmlvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/604a531a0b/DefensiveMinion.png","gem":{}} +{"name":"近戰物理傷害輔助","refName":"Melee Physical Damage Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0luY3JlYXNlZFBoeXNpY2FsRGFtYWdlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/99e02beaac/IncreasedPhysicalDamage.png","gem":{}} +{"name":"近戰傷害擴散輔助","refName":"Melee Splash Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1NwbGFzaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/739d21a3fc/Splash.png","gem":{}} +{"name":"地雷網輔助","refName":"Minefield Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01pbmVmaWVsZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/04b0f0d1e0/Minefield.png","gem":{}} +{"name":"召喚物傷害輔助","refName":"Minion Damage Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01pbmlvbkRhbWFnZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9bf4329029/MinionDamage.png","gem":{}} +{"name":"召喚物生命輔助","refName":"Minion Life Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01pbmlvbkxpZmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/efcc549806/MinionLife.png","gem":{}} +{"name":"召喚物速度輔助","refName":"Minion Speed Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01pbmlvblNwZWVkIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/83f397f71b/MinionSpeed.png","gem":{}} +{"name":"幻影射手輔助","refName":"Mirage Archer Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01pcmFnZUFyY2hlciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/4f37cfb6a7/MirageArcher.png","gem":{}} +{"name":"魅影射擊","refName":"Mirror Arrow","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9NaXJyb3JBcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/73b6c24402/MirrorArrow.png","gem":{}} +{"name":"魅影射擊.炸彈客","refName":"Mirror Arrow of Bombarding Clones","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9NaXJyb3JBcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/73b6c24402/MirrorArrow.png","gem":{"transfigured":true,"normalVariant":"Mirror Arrow"}} +{"name":"魅影射擊.神秘客","refName":"Mirror Arrow of Prismatic Clones","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9NaXJyb3JBcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/73b6c24402/MirrorArrow.png","gem":{"transfigured":true,"normalVariant":"Mirror Arrow"}} +{"name":"熔岩護盾","refName":"Molten Shell","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Nb2x0ZW5TaGVsbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9d2618a44a/MoltenShell.png","gem":{}} +{"name":"熔岩之擊","refName":"Molten Strike","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Nb2x0ZW5TdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3493f9e016/MoltenStrike.png","gem":{}} +{"name":"熔岩之擊.極盛","refName":"Molten Strike of the Zenith","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Nb2x0ZW5TdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3493f9e016/MoltenStrike.png","gem":{"transfigured":true,"normalVariant":"Molten Strike"}} +{"name":"氣勢輔助","refName":"Momentum Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01vbWVudHVtU3VwcG9ydEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ccdd57e05a/MomentumSupportGem.png","gem":{}} +{"name":"持續時間延長輔助","refName":"More Duration Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0luY3JlYXNlZER1cmF0aW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/a5db7ae0bd/IncreasedDuration.png","gem":{}} +{"name":"多重圖騰輔助","refName":"Multiple Totems Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L011bHRpcGxlVG90ZW1zIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/dc8f032f0b/MultipleTotems.png","gem":{}} +{"name":"多重陷阱輔助","refName":"Multiple Traps Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L011bHRpVHJhcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/40a7787dff/MultiTrap.png","gem":{}} +{"name":"多重打擊輔助","refName":"Multistrike Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L211bHRpcGxlYXR0YWNrcyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/49bb71ab5f/multipleattacks.png","gem":{}} +{"name":"夜刃輔助","refName":"Nightblade Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L05pZ2h0YmxhZGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ffa3ac8f49/Nightblade.png","gem":{}} +{"name":"風暴漩渦","refName":"Orb of Storms","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdG9ybUNsb3VkR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5b77e4b3b2/StormCloudGem.png","gem":{}} +{"name":"超負荷輔助","refName":"Overcharge Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1B1cmVTaG9ja1N1cHBvcnRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/161c06a8d4/PureShockSupportGem.png","gem":{}} +{"name":"竭盡全力輔助","refName":"Overexertion Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L092ZXJleGVydGlvbldhcmNyeVN1cHBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/2f39285834/OverexertionWarcrySupport.png","gem":{}} +{"name":"贖罪烙印","refName":"Penance Brand","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QZW5hbmNlQnJhbmRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/72054bdbca/PenanceBrandGem.png","gem":{}} +{"name":"贖罪烙印.傳導","refName":"Penance Brand of Conduction","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QZW5hbmNlQnJhbmRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/72054bdbca/PenanceBrandGem.png","gem":{"transfigured":true,"normalVariant":"Penance Brand"}} +{"name":"贖罪烙印.消散","refName":"Penance Brand of Dissipation","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QZW5hbmNlQnJhbmRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/72054bdbca/PenanceBrandGem.png","gem":{"transfigured":true,"normalVariant":"Penance Brand"}} +{"name":"裂地刺穿","refName":"Perforate","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZFNhbmRTcGVhcnNTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c39a8a0fbb/BloodSandSpearsSkillGem.png","gem":{}} +{"name":"裂地刺穿.流血","refName":"Perforate of Bloodshed","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZFNhbmRTcGVhcnNTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c39a8a0fbb/BloodSandSpearsSkillGem.png","gem":{"transfigured":true,"normalVariant":"Perforate"}} +{"name":"裂地刺穿.雙持","refName":"Perforate of Duality","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZFNhbmRTcGVhcnNTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c39a8a0fbb/BloodSandSpearsSkillGem.png","gem":{"transfigured":true,"normalVariant":"Perforate"}} +{"name":"瘟疫打擊","refName":"Pestilent Strike","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9NYW1iYVN0cmlrZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/456033ff00/MambaStrike.png","gem":{}} +{"name":"石化之血","refName":"Petrified Blood","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QZXRyaWZpZWRCbG9vZEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9221d2458d/PetrifiedBloodGem.png","gem":{}} +{"name":"暗影迷蹤","refName":"Phase Run","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QaGFzZVJ1biIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0f3a780d1f/PhaseRun.png","gem":{}} +{"name":"物理轉閃電輔助","refName":"Physical to Lightning Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1BoeXNpY2FsVG9MaWdodG5pbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5f0b03c090/PhysicalToLightning.png","gem":{}} +{"name":"穿透輔助","refName":"Pierce Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1BpZXJjZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9cceecca83/Pierce.png","gem":{}} +{"name":"精確輔助","refName":"Pinpoint Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1Byb2plY3RpbGVJbnRlbnNpdHkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ee6ee305b9/ProjectileIntensity.png","gem":{}} +{"name":"病疫之難","refName":"Plague Bearer","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QbGFndWVCZWFyZXJHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9b3e8e4025/PlagueBearerGem.png","gem":{}} +{"name":"盜獵者印記","refName":"Poacher's Mark","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb2FjaGVyc01hcmsiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4a716d544e/PoachersMark.png","gem":{}} +{"name":"零點射擊輔助","refName":"Point Blank Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1BvaW50QmxhbmsiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/23dd6314d7/PointBlank.png","gem":{}} +{"name":"毒藥","refName":"Poisonous Concoction","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb2lzb25vdXNDb25jb2N0aW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b1cde568a6/PoisonousConcoction.png","gem":{}} +{"name":"彈炸之毒藥","refName":"Poisonous Concoction of Bouncing","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb2lzb25vdXNDb25jb2N0aW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b1cde568a6/PoisonousConcoction.png","gem":{"transfigured":true,"normalVariant":"Poisonous Concoction"}} +{"name":"時空之門","refName":"Portal","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb3J0YWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/179ddc4cbd/Portal.png","gem":{}} +{"name":"暴擊獲得暴擊球輔助","refName":"Power Charge On Critical Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1Bvd2VyQ2hhcmdlcyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d65c84e89f/PowerCharges.png","gem":{}} +{"name":"力量抽取","refName":"Power Siphon","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb3dlclNpcGhvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8c00738194/PowerSiphon.png","gem":{}} +{"name":"力量抽取.大法師","refName":"Power Siphon of the Archmage","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb3dlclNpcGhvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8c00738194/PowerSiphon.png","gem":{"transfigured":true,"normalVariant":"Power Siphon"}} +{"name":"精準","refName":"Precision","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BY2N1cmFjeWFuZENyaXRpY2FsQ2hhbmNlQXVyYSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/3996a0a9cf/AccuracyandCriticalChanceAura.png","gem":{}} +{"name":"掠奪者輔助","refName":"Predator Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01pbmlvbkZvY3VzRmlyZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/84babeb963/MinionFocusFire.png","gem":{}} +{"name":"驕傲","refName":"Pride","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QcmlkZUF1cmFHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/115cf1f969/PrideAuraGem.png","gem":{}} +{"name":"三相爆發輔助","refName":"Prismatic Burst Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0VsZW1lbnRhbEJ1cnN0U3VwcG9ydEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/717e468ab8/ElementalBurstSupportGem.png","gem":{}} +{"name":"連結:保護","refName":"Protective Link","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9ja0xpbmtHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a459f4b2b0/BlockLinkGem.png","gem":{}} +{"name":"磨鍊輔助","refName":"Pulverise Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1B1bHZlcml6ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f6e9b6cedb/Pulverize.png","gem":{}} +{"name":"放血","refName":"Puncture","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QdW5jdHVyZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5c16efd68b/Puncture.png","gem":{}} +{"name":"腿脛放血","refName":"Puncture of Shanking","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QdW5jdHVyZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5c16efd68b/Puncture.png","gem":{"transfigured":true,"normalVariant":"Puncture"}} +{"name":"懲戒","refName":"Punishment","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QdW5pc2htZW50IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4bffb6422c/Punishment.png","gem":{}} +{"name":"淨化烈焰","refName":"Purifying Flame","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QdXJpZnlpbmdGbGFtZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/3f5689d6e1/PurifyingFlame.png","gem":{}} +{"name":"淨化烈焰.啟示","refName":"Purifying Flame of Revelations","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QdXJpZnlpbmdGbGFtZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/3f5689d6e1/PurifyingFlame.png","gem":{"transfigured":true,"normalVariant":"Purifying Flame"}} +{"name":"元素淨化","refName":"Purity of Elements","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QdXJpdHkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/44bd765302/Purity.png","gem":{}} +{"name":"火焰淨化","refName":"Purity of Fire","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlUmVzaXN0QXVyYSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/973e94bf0a/FireResistAura.png","gem":{}} +{"name":"冰霜淨化","refName":"Purity of Ice","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db2xkUmVzaXN0QXVyYSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0ebc7da568/ColdResistAura.png","gem":{}} +{"name":"閃電淨化","refName":"Purity of Lightning","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdSZXNpc3RBdXJhIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4c883997e3/LightningResistAura.png","gem":{}} +{"name":"炎爆新星地雷","refName":"Pyroclast Mine","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlTW9ydGFyQmFycmFnZU1pbmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0dbce41c29/FireMortarBarrageMineSkillGem.png","gem":{}} +{"name":"炎爆新星地雷.破壞","refName":"Pyroclast Mine of Sabotage","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlTW9ydGFyQmFycmFnZU1pbmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0dbce41c29/FireMortarBarrageMineSkillGem.png","gem":{"transfigured":true,"normalVariant":"Pyroclast Mine"}} +{"name":"盛怒輔助","refName":"Rage Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1JhZ2VTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ed66060764/RageSupport.png","gem":{}} +{"name":"盛怒漩渦","refName":"Rage Vortex","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWdlVm9ydGV4IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/31794f9875/RageVortex.png","gem":{}} +{"name":"盛怒漩渦.狂暴","refName":"Rage Vortex of Berserking","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWdlVm9ydGV4IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/31794f9875/RageVortex.png","gem":{"transfigured":true,"normalVariant":"Rage Vortex"}} +{"name":"箭雨","refName":"Rain of Arrows","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlub2ZBcnJvd3MiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a7e02c03ad/RainofArrows.png","gem":{}} +{"name":"箭雨.火炮","refName":"Rain of Arrows of Artillery","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlub2ZBcnJvd3MiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a7e02c03ad/RainofArrows.png","gem":{"transfigured":true,"normalVariant":"Rain of Arrows"}} +{"name":"箭雨.飽和","refName":"Rain of Arrows of Saturation","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlub2ZBcnJvd3MiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a7e02c03ad/RainofArrows.png","gem":{"transfigured":true,"normalVariant":"Rain of Arrows"}} +{"name":"喚醒幽魂","refName":"Raise Spectre","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlzZVNwZWN0cmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8b97da3ff6/RaiseSpectre.png","gem":{}} +{"name":"喚醒幽魂.轉瞬","refName":"Raise Spectre of Transience","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlzZVNwZWN0cmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8b97da3ff6/RaiseSpectre.png","gem":{"transfigured":true,"normalVariant":"Raise Spectre"}} +{"name":"殭屍復甦","refName":"Raise Zombie","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlzZVpvbWJpZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/91518203be/RaiseZombie.png","gem":{}} +{"name":"殭屍復甦.殞落","refName":"Raise Zombie of Falling","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlzZVpvbWJpZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/91518203be/RaiseZombie.png","gem":{"transfigured":true,"normalVariant":"Raise Zombie"}} +{"name":"殭屍復甦.重擊","refName":"Raise Zombie of Slamming","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlzZVpvbWJpZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/91518203be/RaiseZombie.png","gem":{"transfigured":true,"normalVariant":"Raise Zombie"}} +{"name":"激勵戰吼","refName":"Rallying Cry","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWxseWluZ0NyeVNraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1baf6b0602/RallyingCrySkillGem.png","gem":{}} +{"name":"收割","refName":"Reap","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZHJlYXBHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a57bea32ba/BloodreapGem.png","gem":{}} +{"name":"衝擊波","refName":"Reave","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SZWF2ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/cdfa67890f/Reave.png","gem":{}} +{"name":"衝擊波.折射","refName":"Reave of Refraction","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SZWF2ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/cdfa67890f/Reave.png","gem":{"transfigured":true,"normalVariant":"Reave"}} +{"name":"回春圖騰","refName":"Rejuvenation Totem","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SZWp1dmluYXRpb25Ub3RlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5dd895cd90/RejuvinationTotem.png","gem":{}} +{"name":"投射物返回輔助","refName":"Returning Projectiles Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1JldHVyblByb2plY3RpbGVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/76e59b7e35/ReturnProjectiles.png","gem":{}} +{"name":"正義之火","refName":"Righteous Fire","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SaWdodGVvdXNGaXJlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/da7c97a11c/RighteousFire.png","gem":{}} +{"name":"正義之火.秘能奉獻","refName":"Righteous Fire of Arcane Devotion","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SaWdodGVvdXNGaXJlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/da7c97a11c/RighteousFire.png","gem":{"transfigured":true,"normalVariant":"Righteous Fire"}} +{"name":"熔岩翻騰","refName":"Rolling Magma","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlTW9ydGFyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9339ca9a6b/FireMortar.png","gem":{}} +{"name":"殘破輔助","refName":"Rupture Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1J1cHR1cmVTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/38a8e54b96/RuptureSupport.png","gem":{}} +{"name":"殘暴輔助","refName":"Ruthless Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1J1dGhsZXNzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d8a9bf875d/Ruthless.png","gem":{}} +{"name":"聖潔妖精輔助","refName":"Sacred Wisps Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1dhbmRXaXNwU3VwcG9ydCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/20976859e1/WandWispSupport.png","gem":{}} +{"name":"獻祭輔助","refName":"Sacrifice Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1NhY3JpZmljZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7797a594a9/Sacrifice.png","gem":{}} +{"name":"虐待輔助","refName":"Sadism Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1NhZGlzbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/13cc734252/Sadism.png","gem":{}} +{"name":"熾灼奔流","refName":"Scorching Ray","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlQmVhbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/daf2631e95/FireBeam.png","gem":{}} +{"name":"熾灼奔流.焚燒","refName":"Scorching Ray of Immolation","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlQmVhbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/daf2631e95/FireBeam.png","gem":{"transfigured":true,"normalVariant":"Scorching Ray"}} +{"name":"天譴之箭","refName":"Scourge Arrow","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9WaXJ1bGVudEFycm93IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/e633045dfb/VirulentArrow.png","gem":{}} +{"name":"天譴之箭.威脅","refName":"Scourge Arrow of Menace","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9WaXJ1bGVudEFycm93IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/e633045dfb/VirulentArrow.png","gem":{"transfigured":true,"normalVariant":"Scourge Arrow"}} +{"name":"灼熱連結","refName":"Searing Bond","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TZWFyaW5nQm9uZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1bc968cafb/SearingBond.png","gem":{}} +{"name":"恢復輔助","refName":"Second Wind Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1NlY29uZFdpbmRTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ccfc5c7b25/SecondWindSupport.png","gem":{}} +{"name":"裂地戰吼","refName":"Seismic Cry","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TZWlzbWljQ3J5U2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f15f5c64ff/SeismicCrySkillGem.png","gem":{}} +{"name":"地裂陷阱","refName":"Seismic Trap","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdWJ0ZXJyYW5lYW5UcmFwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/592e94541c/SubterraneanTrap.png","gem":{}} +{"name":"地裂陷阱.膨脹","refName":"Seismic Trap of Swells","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdWJ0ZXJyYW5lYW5UcmFwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/592e94541c/SubterraneanTrap.png","gem":{"transfigured":true,"normalVariant":"Seismic Trap"}} +{"name":"鋼之碎擊","refName":"Shattering Steel","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaGF0dGVyaW5nU3RlZWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f2f0ff3d2b/ShatteringSteel.png","gem":{}} +{"name":"鋼之碎擊.彈藥","refName":"Shattering Steel of Ammunition","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaGF0dGVyaW5nU3RlZWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f2f0ff3d2b/ShatteringSteel.png","gem":{"transfigured":true,"normalVariant":"Shattering Steel"}} +{"name":"重盾衝鋒","refName":"Shield Charge","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaGllbGRDaGFyZ2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1749dcaa1d/ShieldCharge.png","gem":{}} +{"name":"重盾粉碎","refName":"Shield Crush","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaGllbGRDcnVzaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/920a5e462f/ShieldCrush.png","gem":{}} +{"name":"重盾粉碎.酋長","refName":"Shield Crush of the Chieftain","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaGllbGRDcnVzaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/920a5e462f/ShieldCrush.png","gem":{"transfigured":true,"normalVariant":"Shield Crush"}} +{"name":"閃電新星","refName":"Shock Nova","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaG9ja05vdmEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/671a5ad79a/ShockNova.png","gem":{}} +{"name":"震波輔助","refName":"Shockwave Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1Nob2Nrd2F2ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/891f9888bb/Shockwave.png","gem":{}} +{"name":"震波圖騰","refName":"Shockwave Totem","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaG9ja3dhdmVUb3RlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/406bc8da09/ShockwaveTotem.png","gem":{}} +{"name":"彈片砲塔","refName":"Shrapnel Ballista","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaG90Z3VuVG90ZW1Cb3dTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c52d90f33e/ShotgunTotemBowSkillGem.png","gem":{}} +{"name":"彈片砲塔.鋼鐵","refName":"Shrapnel Ballista of Steel","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaG90Z3VuVG90ZW1Cb3dTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c52d90f33e/ShotgunTotemBowSkillGem.png","gem":{"transfigured":true,"normalVariant":"Shrapnel Ballista"}} +{"name":"攻城炮台","refName":"Siege Ballista","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Dcm9zc0Jvd1RvdGVtR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/90dbc7b7ca/CrossBowTotemGem.png","gem":{}} +{"name":"攻城炮台.碎片","refName":"Siege Ballista of Splintering","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Dcm9zc0Jvd1RvdGVtR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/90dbc7b7ca/CrossBowTotemGem.png","gem":{"transfigured":true,"normalVariant":"Siege Ballista"}} +{"name":"咒符之力","refName":"Sigil of Power","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaXJjbGVvZlBvd2VyU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b47a71c6bf/CircleofPowerSkillGem.png","gem":{}} +{"name":"虹吸陷阱","refName":"Siphoning Trap","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTaXBob24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b04d5c8c56/IceSiphon.png","gem":{}} +{"name":"投射物減速輔助","refName":"Slower Projectiles Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1Nsb3dlclByb2plY3RpbGVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2192faa440/SlowerProjectiles.png","gem":{}} +{"name":"雷鳴重擊","refName":"Smite","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TbWl0ZUdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7c84ed15fc/SmiteGem.png","gem":{}} +{"name":"雷鳴重擊.聖判","refName":"Smite of Divine Judgement","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TbWl0ZUdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7c84ed15fc/SmiteGem.png","gem":{"transfigured":true,"normalVariant":"Smite"}} +{"name":"煙霧地雷","refName":"Smoke Mine","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TbW9rZUJvbWIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b002b08d2d/SmokeBomb.png","gem":{}} +{"name":"狙擊","refName":"Snipe","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TbmlwZXJTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ae5061110b/SniperSkillGem.png","gem":{}} +{"name":"狙擊者印記","refName":"Sniper's Mark","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qcm9qZWN0aWxlV2Vha25lc3MiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3dd2dfcc61/ProjectileWeakness.png","gem":{}} +{"name":"連結:靈魂","refName":"Soul Link","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Tb3VsTGlua0dlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/77a2f86ddb/SoulLinkGem.png","gem":{}} +{"name":"靈體撕裂","refName":"Soulrend","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Tb3VscmVuZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ff1bb335b0/Soulrend.png","gem":{}} +{"name":"靈體撕裂.收割","refName":"Soulrend of Reaping","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Tb3VscmVuZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ff1bb335b0/Soulrend.png","gem":{"transfigured":true,"normalVariant":"Soulrend"}} +{"name":"靈體撕裂.螺旋","refName":"Soulrend of the Spiral","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Tb3VscmVuZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ff1bb335b0/Soulrend.png","gem":{"transfigured":true,"normalVariant":"Soulrend"}} +{"name":"電球","refName":"Spark","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGFyayIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/60a5c0ff13/Spark.png","gem":{}} +{"name":"電球.新星","refName":"Spark of the Nova","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGFyayIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/60a5c0ff13/Spark.png","gem":{"transfigured":true,"normalVariant":"Spark"}} +{"name":"電球.未知","refName":"Spark of Unpredictability","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGFyayIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/60a5c0ff13/Spark.png","gem":{"transfigured":true,"normalVariant":"Spark"}} +{"name":"靈體旋武","refName":"Spectral Helix","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGVjdHJhbFNwaXJhbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a4324285be/SpectralSpiralGem.png","gem":{}} +{"name":"盾靈投擲","refName":"Spectral Shield Throw","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9UaHJvd24gU2hpZWxkIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f6b7871386/Thrown%20Shield.png","gem":{}} +{"name":"盾靈投擲.粉碎","refName":"Spectral Shield Throw of Shattering","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9UaHJvd24gU2hpZWxkIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f6b7871386/Thrown%20Shield.png","gem":{"transfigured":true,"normalVariant":"Spectral Shield Throw"}} +{"name":"靈體投擲","refName":"Spectral Throw","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HaG9zdGx5VGhyb3ciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c3b7611261/GhostlyThrow.png","gem":{}} +{"name":"靈體投擲.具現化","refName":"Spectral Throw of Materialising","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HaG9zdGx5VGhyb3ciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c3b7611261/GhostlyThrow.png","gem":{"transfigured":true,"normalVariant":"Spectral Throw"}} +{"name":"秘能爆發輔助","refName":"Spell Cascade Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1NwZWxsQ2FzY2FkZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c72a3fbf82/SpellCascade.png","gem":{}} +{"name":"施放迴響輔助","refName":"Spell Echo Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0VjaG8iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1868afbf2e/Echo.png","gem":{}} +{"name":"法術圖騰輔助","refName":"Spell Totem Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1RvdGVtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/e168c87ee6/Totem.png","gem":{}} +{"name":"魔刃輔助","refName":"Spellblade Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1NwZWxsQmxhZGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6f4a6cf751/SpellBlade.png","gem":{}} +{"name":"法術回音","refName":"Spellslinger","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGVsbHNsaW5nZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/2417fd6a3c/Spellslinger.png","gem":{}} +{"name":"靈魂奉獻","refName":"Spirit Offering","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGlyaXRPZmZlcmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/3ba85cdc49/SpiritOffering.png","gem":{}} +{"name":"分裂箭矢","refName":"Split Arrow","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGxpdEFycm93IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3107527c8d/SplitArrow.png","gem":{}} +{"name":"分裂箭矢.分裂","refName":"Split Arrow of Splitting","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGxpdEFycm93IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3107527c8d/SplitArrow.png","gem":{"transfigured":true,"normalVariant":"Split Arrow"}} +{"name":"鋼之裂化","refName":"Splitting Steel","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JbXBhY3RpbmdTdGVlbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/67462b2579/ImpactingSteelGem.png","gem":{}} +{"name":"鋼之裂化.彈藥","refName":"Splitting Steel of Ammunition","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JbXBhY3RpbmdTdGVlbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/67462b2579/ImpactingSteelGem.png","gem":{"transfigured":true,"normalVariant":"Splitting Steel"}} +{"name":"充能打擊","refName":"Static Strike","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdGF0aWNHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6eee72093c/StaticGem.png","gem":{}} +{"name":"鋼筋鐵骨","refName":"Steelskin","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9RdWlja0d1YXJkR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/7dcb756463/QuickGuardGem.png","gem":{}} +{"name":"風暴烙印","refName":"Storm Brand","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db25kdWl0U2lnaWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8f4eb9be01/ConduitSigil.png","gem":{}} +{"name":"風暴烙印.躊躇","refName":"Storm Brand of Indecision","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db25kdWl0U2lnaWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8f4eb9be01/ConduitSigil.png","gem":{"transfigured":true,"normalVariant":"Storm Brand"}} +{"name":"風爆","refName":"Storm Burst","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdG9ybUJ1cnN0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6ce2215dff/StormBurst.png","gem":{}} +{"name":"風暴呼喚","refName":"Storm Call","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdG9ybWNhbGwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/eb3168564d/Stormcall.png","gem":{}} +{"name":"暴風雷雨","refName":"Storm Rain","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QcmlzbWF0aWNSYWluIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/576ba4b47b/PrismaticRain.png","gem":{}} +{"name":"暴風雷雨.導管","refName":"Storm Rain of the Conduit","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QcmlzbWF0aWNSYWluIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/576ba4b47b/PrismaticRain.png","gem":{"transfigured":true,"normalVariant":"Storm Rain"}} +{"name":"暴風雷雨.籬笆","refName":"Storm Rain of the Fence","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QcmlzbWF0aWNSYWluIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/576ba4b47b/PrismaticRain.png","gem":{"transfigured":true,"normalVariant":"Storm Rain"}} +{"name":"風暴術符","refName":"Stormbind","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdG9ybWJpbmRTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/30ae7dcd24/StormbindSkillGem.png","gem":{}} +{"name":"風暴術符.傳送","refName":"Stormbind of Teleportation","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdG9ybWJpbmRTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/30ae7dcd24/StormbindSkillGem.png","gem":{"transfigured":true,"normalVariant":"Stormbind"}} +{"name":"風暴地雷","refName":"Stormblast Mine","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdFeHBsb3Npb25NaW5lU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4722363740/LightningExplosionMineSkillGem.png","gem":{}} +{"name":"擊暈輔助","refName":"Stun Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N0dW4iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/38371dbefc/Stun.png","gem":{}} +{"name":"召喚食腐魔像","refName":"Summon Carrion Golem","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25DYXJyaW9uR29sZW1HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/01dce8b537/SummonCarrionGolemGem.png","gem":{}} +{"name":"召喚食腐魔像.部落","refName":"Summon Carrion Golem of Hordes","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25DYXJyaW9uR29sZW1HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/01dce8b537/SummonCarrionGolemGem.png","gem":{"transfigured":true,"normalVariant":"Summon Carrion Golem"}} +{"name":"召喚食腐魔像.清洗","refName":"Summon Carrion Golem of Scavenging","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25DYXJyaW9uR29sZW1HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/01dce8b537/SummonCarrionGolemGem.png","gem":{"transfigured":true,"normalVariant":"Summon Carrion Golem"}} +{"name":"召喚混沌魔像","refName":"Summon Chaos Golem","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFvc0VsZW1lbnRhbFN1bW1vbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e735374a53/ChaosElementalSummon.png","gem":{}} +{"name":"召喚混沌魔像.部落","refName":"Summon Chaos Golem of Hordes","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFvc0VsZW1lbnRhbFN1bW1vbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e735374a53/ChaosElementalSummon.png","gem":{"transfigured":true,"normalVariant":"Summon Chaos Golem"}} +{"name":"召喚混沌魔像.漩渦","refName":"Summon Chaos Golem of the Maelström","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFvc0VsZW1lbnRhbFN1bW1vbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e735374a53/ChaosElementalSummon.png","gem":{"transfigured":true,"normalVariant":"Summon Chaos Golem"}} +{"name":"召喚烈焰魔像","refName":"Summon Flame Golem","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlRWxlbWVudGFsU3VtbW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/cca9edd8f9/FireElementalSummon.png","gem":{}} +{"name":"召喚烈焰魔像.部落","refName":"Summon Flame Golem of Hordes","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlRWxlbWVudGFsU3VtbW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/cca9edd8f9/FireElementalSummon.png","gem":{"transfigured":true,"normalVariant":"Summon Flame Golem"}} +{"name":"召喚烈焰魔像.隕石","refName":"Summon Flame Golem of the Meteor","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlRWxlbWVudGFsU3VtbW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/cca9edd8f9/FireElementalSummon.png","gem":{"transfigured":true,"normalVariant":"Summon Flame Golem"}} +{"name":"召喚聖物","refName":"Summon Holy Relic","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ib2x5UmVsaWMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b624fd0cda/HolyRelic.png","gem":{}} +{"name":"信念之召喚聖物","refName":"Summon Holy Relic of Conviction","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ib2x5UmVsaWMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b624fd0cda/HolyRelic.png","gem":{"transfigured":true,"normalVariant":"Summon Holy Relic"}} +{"name":"召喚寒冰魔像","refName":"Summon Ice Golem","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VFbGVtZW50YWxTdW1tb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1b7a06245a/IceElementalSummon.png","gem":{}} +{"name":"召喚寒冰魔像.部落","refName":"Summon Ice Golem of Hordes","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VFbGVtZW50YWxTdW1tb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1b7a06245a/IceElementalSummon.png","gem":{"transfigured":true,"normalVariant":"Summon Ice Golem"}} +{"name":"召喚寒冰魔像.粉碎","refName":"Summon Ice Golem of Shattering","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VFbGVtZW50YWxTdW1tb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1b7a06245a/IceElementalSummon.png","gem":{"transfigured":true,"normalVariant":"Summon Ice Golem"}} +{"name":"召喚閃電魔像","refName":"Summon Lightning Golem","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdHb2xlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5dbb993d49/LightningGolem.png","gem":{}} +{"name":"召喚閃電魔像.部落","refName":"Summon Lightning Golem of Hordes","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdHb2xlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5dbb993d49/LightningGolem.png","gem":{"transfigured":true,"normalVariant":"Summon Lightning Golem"}} +{"name":"召喚幻影輔助","refName":"Summon Phantasm Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1bW1vblBoYW50YXNtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/beef708237/SummonPhantasm.png","gem":{}} +{"name":"召喚憤怒狂靈","refName":"Summon Raging Spirit","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25FbGVtZW50YWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/65322c4405/SummonElemental.png","gem":{}} +{"name":"召喚憤怒狂靈.巨型","refName":"Summon Raging Spirit of Enormity","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25FbGVtZW50YWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/65322c4405/SummonElemental.png","gem":{"transfigured":true,"normalVariant":"Summon Raging Spirit"}} +{"name":"召喚奪魂鐮","refName":"Summon Reaper","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25SZWFwZXJTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/24f147e638/SummonReaperSkillGem.png","gem":{}} +{"name":"召喚奪魂鐮.剜剖","refName":"Summon Reaper of Eviscerating","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25SZWFwZXJTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/24f147e638/SummonReaperSkillGem.png","gem":{"transfigured":true,"normalVariant":"Summon Reaper"}} +{"name":"召喚奪魂鐮.亡靈","refName":"Summon Reaper of Revenants","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25SZWFwZXJTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/24f147e638/SummonReaperSkillGem.png","gem":{"transfigured":true,"normalVariant":"Summon Reaper"}} +{"name":"召喚骷髏","refName":"Summon Skeletons","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25Ta2VsZXRvbnMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d686d7dd8a/SummonSkeletons.png","gem":{}} +{"name":"召喚骷髏.箭術","refName":"Summon Skeletons of Archers","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25Ta2VsZXRvbnMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d686d7dd8a/SummonSkeletons.png","gem":{"transfigured":true,"normalVariant":"Summon Skeletons"}} +{"name":"召喚骷髏.巫術","refName":"Summon Skeletons of Mages","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25Ta2VsZXRvbnMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d686d7dd8a/SummonSkeletons.png","gem":{"transfigured":true,"normalVariant":"Summon Skeletons"}} +{"name":"召喚探測機獸","refName":"Summon Skitterbots","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ta2l0dGVyYm90U2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d6f39b50a5/SkitterbotSkillGem.png","gem":{}} +{"name":"召喚巨石魔像","refName":"Summon Stone Golem","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Sb2NrR29sZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6a504c60d3/RockGolem.png","gem":{}} +{"name":"召喚巨石魔像.部落","refName":"Summon Stone Golem of Hordes","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Sb2NrR29sZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6a504c60d3/RockGolem.png","gem":{"transfigured":true,"normalVariant":"Summon Stone Golem"}} +{"name":"召喚巨石魔像.保安","refName":"Summon Stone Golem of Safeguarding","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Sb2NrR29sZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6a504c60d3/RockGolem.png","gem":{"transfigured":true,"normalVariant":"Summon Stone Golem"}} +{"name":"大地震擊","refName":"Sunder","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaG9ja3dhdmVTbGFtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6e2b0e71d5/ShockwaveSlam.png","gem":{}} +{"name":"大地震擊.地破","refName":"Sunder of Earthbreaking","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaG9ja3dhdmVTbGFtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6e2b0e71d5/ShockwaveSlam.png","gem":{"transfigured":true,"normalVariant":"Sunder"}} +{"name":"橫掃","refName":"Sweep","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Td2VlcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/dcad278e28/Sweep.png","gem":{}} +{"name":"極速苦痛輔助","refName":"Swift Affliction Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRSYXBpZERlY2F5R2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/bed2b2a224/SupportRapidDecayGem.png","gem":{}} +{"name":"迅速組裝輔助","refName":"Swift Assembly Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1RyYXBNaW5lU3VwcG9ydEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/809e461b30/TrapMineSupportGem.png","gem":{}} +{"name":"迅速烙印輔助","refName":"Swiftbrand Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N3aWZ0YnJhbmRTdXBwb3J0R2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/18dcd7a075/SwiftbrandSupportGem.png","gem":{}} +{"name":"劍刃風暴","refName":"Swordstorm","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzMwLDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9XZWFwb25TdG9ybVNraWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/be6f64c9c5/WeaponStormSkill.png","gem":{}} +{"name":"破體之擊","refName":"Tectonic Slam","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9UZWN0b25pY1NsYW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f19a11009f/TectonicSlam.png","gem":{}} +{"name":"破體之擊.災變","refName":"Tectonic Slam of Cataclysm","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9UZWN0b25pY1NsYW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f19a11009f/TectonicSlam.png","gem":{"transfigured":true,"normalVariant":"Tectonic Slam"}} +{"name":"暴風之盾","refName":"Tempest Shield","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9UZW1wZXN0U2hpZWxkIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/bfe0750738/TempestShield.png","gem":{}} +{"name":"時空鎖鏈","refName":"Temporal Chains","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9UZW1wb3JhbENoYWlucyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9746170624/TemporalChains.png","gem":{}} +{"name":"時空裂隙","refName":"Temporal Rift","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaHJvbm9tYW5jZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9977b27b7c/Chronomancer.png","gem":{}} +{"name":"龍捲風","refName":"Tornado","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ub3JuYWRvR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6ff8d3b903/TornadoGem.png","gem":{}} +{"name":"元素湍流之龍捲風","refName":"Tornado of Elemental Turbulence","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ub3JuYWRvR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6ff8d3b903/TornadoGem.png","gem":{"transfigured":true,"normalVariant":"Tornado"}} +{"name":"龍捲射擊","refName":"Tornado Shot","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ub3JuYWRvU2hvdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7299d3edf8/TornadoShot.png","gem":{}} +{"name":"龍捲射擊.雲爆","refName":"Tornado Shot of Cloudburst","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ub3JuYWRvU2hvdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7299d3edf8/TornadoShot.png","gem":{"transfigured":true,"normalVariant":"Tornado Shot"}} +{"name":"腐蝕毒雨","refName":"Toxic Rain","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlub2ZTcG9yZXNHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/968913d716/RainofSporesGem.png","gem":{}} +{"name":"腐蝕毒雨.爆發","refName":"Toxic Rain of Sporeburst","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlub2ZTcG9yZXNHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/968913d716/RainofSporesGem.png","gem":{"transfigured":true,"normalVariant":"Toxic Rain"}} +{"name":"腐蝕毒雨.凋零","refName":"Toxic Rain of Withering","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlub2ZTcG9yZXNHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/968913d716/RainofSporesGem.png","gem":{"transfigured":true,"normalVariant":"Toxic Rain"}} +{"name":"陷阱及地雷傷害輔助","refName":"Trap and Mine Damage Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1RyYXBBbmRNaW5lRGFtYWdlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/83b5eac9be/TrapAndMineDamage.png","gem":{}} +{"name":"陷阱輔助","refName":"Trap Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1RyYXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8893adb50f/Trap.png","gem":{}} +{"name":"創傷輔助","refName":"Trauma Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1RyYXVtYSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f1642bf8e3/Trauma.png","gem":{}} +{"name":"三體輔助","refName":"Trinity Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1RyaW5pdHlTdXBwb3J0R2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f547899752/TrinitySupportGem.png","gem":{}} +{"name":"無邊異能輔助","refName":"Unbound Ailments Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1VuYm91bmRBaWxtZW50cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a5ce74c4dc/UnboundAilments.png","gem":{}} +{"name":"屍術矢","refName":"Unearth","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Cb25lTGFuY2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ba9f4da647/BoneLance.png","gem":{}} +{"name":"釋放輔助","refName":"Unleash Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1VubGVhc2hTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9c92c88f3e/UnleashSupport.png","gem":{}} +{"name":"緊急詔令輔助","refName":"Urgent Orders Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1VyZ2VudE9yZGVyc1N1cHBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/dfa6ae426c/UrgentOrdersSupport.png","gem":{}} +{"name":"瓦爾.赦免","refName":"Vaal Absolution","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BYnNvbHV0aW9uQmxhc3RHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/11111dec89/AbsolutionBlastGem.png","gem":{"vaal":true}} +{"name":"瓦爾.幻化武器","refName":"Vaal Animate Weapon","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BbmltYXRlV2VhcG9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/739caf7508/AnimateWeapon.png","gem":{"vaal":true}} +{"name":"瓦爾.電弧","refName":"Vaal Arc","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BcmMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3778fcf505/Arc.png","gem":{"vaal":true}} +{"name":"瓦爾.極地裝甲","refName":"Vaal Arctic Armour","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTaGllbGQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/22044364a7/IceShield.png","gem":{"vaal":true}} +{"name":"瓦爾.刀鋒亂舞","refName":"Vaal Blade Flurry","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFyZ2VkQXR0YWNrIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b55acf2e90/ChargedAttack.png","gem":{"vaal":true}} +{"name":"瓦爾.飛刃風暴","refName":"Vaal Blade Vortex","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGlubmluZ0V0aGVyZWFsQmxhZGVzR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8f7a7d7b81/SpinningEtherealBladesGem.png","gem":{"vaal":true}} +{"name":"瓦爾.萎滅","refName":"Vaal Blight","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGlnaHRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/63c4ea3534/BlightGem.png","gem":{"vaal":true}} +{"name":"瓦爾.裂痕","refName":"Vaal Breach","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9WYWFsR2Vtcy9WYWFsQnJlYWNoUG9ydGFsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/99b58a9a68/VaalBreachPortal.png","gem":{}} +{"name":"瓦爾.燃燒箭矢","refName":"Vaal Burning Arrow","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CdXJuaW5nQXJyb3ciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4cc118dd2c/BurningArrow.png","gem":{"vaal":true}} +{"name":"瓦爾.腐蝕箭矢","refName":"Vaal Caustic Arrow","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb2lzb25BcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8aa59b2327/PoisonArrow.png","gem":{"vaal":true}} +{"name":"瓦爾.清晰","refName":"Vaal Clarity","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DbGFyaXR5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/30046e480b/Clarity.png","gem":{"vaal":true}} +{"name":"瓦爾.劈砍","refName":"Vaal Cleave","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DbGVhdmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/7d4382b5e9/Cleave.png","gem":{"vaal":true}} +{"name":"瓦爾.霜暴","refName":"Vaal Cold Snap","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db2xkU25hcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/889f6cb1fd/ColdSnap.png","gem":{"vaal":true}} +{"name":"瓦爾.旋風斬","refName":"Vaal Cyclone","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DeWNsb25lIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f97bf2f477/Cyclone.png","gem":{"vaal":true}} +{"name":"瓦爾.屍體爆破","refName":"Vaal Detonate Dead","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZXRvbmF0ZURlYWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/109199fc84/DetonateDead.png","gem":{"vaal":true}} +{"name":"瓦爾.紀律","refName":"Vaal Discipline","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXNjaXBsaW5lIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8fb38b53f4/Discipline.png","gem":{"vaal":true}} +{"name":"瓦爾.霸氣","refName":"Vaal Domination","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb21pbmF0aW5nQmxvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c0a344a783/DominatingBlow.png","gem":{"vaal":true}} +{"name":"瓦爾.雙重打擊","refName":"Vaal Double Strike","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb3VibGVTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/408f3e4fa9/DoubleStrike.png","gem":{"vaal":true}} +{"name":"瓦爾.震地","refName":"Vaal Earthquake","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9RdWFrZVNsYW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3a3c0f1c46/QuakeSlam.png","gem":{"vaal":true}} +{"name":"瓦爾.火球","refName":"Vaal Fireball","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlYmFsbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8f374db219/Fireball.png","gem":{"vaal":true}} +{"name":"瓦爾.烈炎風暴","refName":"Vaal Firestorm","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlc3Rvcm0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/86d85233c1/Firestorm.png","gem":{"vaal":true}} +{"name":"瓦爾.烈焰爆破","refName":"Vaal Flameblast","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFyZ2VkQmxhc3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/90adc64f44/ChargedBlast.png","gem":{"vaal":true}} +{"name":"瓦爾.閃現打擊","refName":"Vaal Flicker Strike","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGlja2VyU3RyaWtlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4d16009413/FlickerStrike.png","gem":{"vaal":true}} +{"name":"瓦爾.冰霜之錘","refName":"Vaal Glacial Hammer","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HbGFjaWFsSGFtbWVyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ff8c64eae7/GlacialHammer.png","gem":{"vaal":true}} +{"name":"瓦爾.優雅","refName":"Vaal Grace","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HcmFjZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e98082048a/Grace.png","gem":{"vaal":true}} +{"name":"瓦爾.裂地之擊","refName":"Vaal Ground Slam","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Hcm91bmRzbGFtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/fe4a163a74/Groundslam.png","gem":{"vaal":true}} +{"name":"瓦爾.迅捷","refName":"Vaal Haste","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IYXN0ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/151b5aa85b/Haste.png","gem":{"vaal":true}} +{"name":"瓦爾.冰霜新星","refName":"Vaal Ice Nova","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VOb3ZhIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/65f9588dac/IceNova.png","gem":{"vaal":true}} +{"name":"瓦爾.冰霜射擊","refName":"Vaal Ice Shot","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTaG90IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6ebe439727/IceShot.png","gem":{"vaal":true}} +{"name":"瓦爾.不淨之火","refName":"Vaal Impurity of Fire","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlUmVzaXN0QXVyYSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/973e94bf0a/FireResistAura.png","gem":{"vaal":true}} +{"name":"瓦爾.不淨之冰","refName":"Vaal Impurity of Ice","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db2xkUmVzaXN0QXVyYSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0ebc7da568/ColdResistAura.png","gem":{"vaal":true}} +{"name":"瓦爾.不淨之雷","refName":"Vaal Impurity of Lightning","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdSZXNpc3RBdXJhIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4c883997e3/LightningResistAura.png","gem":{"vaal":true}} +{"name":"瓦爾.閃電箭矢","refName":"Vaal Lightning Arrow","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdBcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f5ad901f20/LightningArrow.png","gem":{"vaal":true}} +{"name":"瓦爾.閃電打擊","refName":"Vaal Lightning Strike","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e593a52f90/LightningStrike.png","gem":{"vaal":true}} +{"name":"瓦爾.閃電陷阱","refName":"Vaal Lightning Trap","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdUcmFwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/18365fa604/LightningTrap.png","gem":{"vaal":true}} +{"name":"瓦爾.熔岩護盾","refName":"Vaal Molten Shell","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Nb2x0ZW5TaGVsbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9d2618a44a/MoltenShell.png","gem":{"vaal":true}} +{"name":"瓦爾.熔岩之擊","refName":"Vaal Molten Strike","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Nb2x0ZW5TdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3493f9e016/MoltenStrike.png","gem":{"vaal":true}} +{"name":"瓦爾.力量抽取","refName":"Vaal Power Siphon","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb3dlclNpcGhvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8c00738194/PowerSiphon.png","gem":{"vaal":true}} +{"name":"瓦爾.箭雨","refName":"Vaal Rain of Arrows","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlub2ZBcnJvd3MiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a7e02c03ad/RainofArrows.png","gem":{"vaal":true}} +{"name":"瓦爾.收割","refName":"Vaal Reap","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZHJlYXBHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a57bea32ba/BloodreapGem.png","gem":{"vaal":true}} +{"name":"瓦爾.衝擊波","refName":"Vaal Reave","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SZWF2ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/cdfa67890f/Reave.png","gem":{"vaal":true}} +{"name":"瓦爾.回春圖騰","refName":"Vaal Rejuvenation Totem","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SZWp1dmluYXRpb25Ub3RlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5dd895cd90/RejuvinationTotem.png","gem":{"vaal":true}} +{"name":"瓦爾.正義之火","refName":"Vaal Righteous Fire","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SaWdodGVvdXNGaXJlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/da7c97a11c/RighteousFire.png","gem":{"vaal":true}} +{"name":"瓦爾.雷鳴重擊","refName":"Vaal Smite","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TbWl0ZUdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7c84ed15fc/SmiteGem.png","gem":{"vaal":true}} +{"name":"瓦爾.電球","refName":"Vaal Spark","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGFyayIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/60a5c0ff13/Spark.png","gem":{"vaal":true}} +{"name":"瓦爾.靈體投擲","refName":"Vaal Spectral Throw","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HaG9zdGx5VGhyb3ciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c3b7611261/GhostlyThrow.png","gem":{"vaal":true}} +{"name":"瓦爾.風暴呼喚","refName":"Vaal Storm Call","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdG9ybWNhbGwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/eb3168564d/Stormcall.png","gem":{"vaal":true}} +{"name":"瓦爾.召喚骷髏","refName":"Vaal Summon Skeletons","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25Ta2VsZXRvbnMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d686d7dd8a/SummonSkeletons.png","gem":{"vaal":true}} +{"name":"瓦爾.猛毒迴旋","refName":"Vaal Venom Gyre","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TbmFwcGluZ0FkZGVyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d3f9a31aac/SnappingAdder.png","gem":{"vaal":true}} +{"name":"瓦爾.炎火脈動","refName":"Vaal Volcanic Fissure","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Wb2xjYW5pY0Zpc3N1cmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b12b9ef422/VolcanicFissureSkillGem.png","gem":{"vaal":true}} +{"name":"連結:吸血","refName":"Vampiric Link","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MZWVjaExpbmtHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cb9c98d9f4/LeechLinkGem.png","gem":{}} +{"name":"復仇之嚎","refName":"Vengeful Cry","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzMwLDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SZXRhbGlhdGlvblJhZ2VXYXJlY3J5V2FyY3J5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/963303d35a/RetaliationRageWarecryWarcry.png","gem":{}} +{"name":"猛毒迴旋","refName":"Venom Gyre","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TbmFwcGluZ0FkZGVyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d3f9a31aac/SnappingAdder.png","gem":{}} +{"name":"猛毒投射物輔助","refName":"Vicious Projectiles Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1JhbmdlZFBoeXNpY2FsQXR0YWNrRGFtYWdlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ad10efb4f6/RangedPhysicalAttackDamage.png","gem":{}} +{"name":"戒備打擊","refName":"Vigilant Strike","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9WaWdpbGFudFN0cmlrZUdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/14cfefd50c/VigilantStrikeGem.png","gem":{}} +{"name":"罪惡毒素輔助","refName":"Vile Toxins Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1ZpbGVUb3hpbnMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f63c48d4b1/VileToxins.png","gem":{}} +{"name":"毒蛇打擊","refName":"Viper Strike","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9WaXBlclN0cmlrZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/185f7013c7/ViperStrike.png","gem":{}} +{"name":"毒蛇打擊.曼巴","refName":"Viper Strike of the Mamba","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9WaXBlclN0cmlrZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/185f7013c7/ViperStrike.png","gem":{"transfigured":true,"normalVariant":"Viper Strike"}} +{"name":"活力","refName":"Vitality","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9WaXRhbGl0eSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/125dbe04db/Vitality.png","gem":{}} +{"name":"虛空操縱輔助","refName":"Void Manipulation Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1ZvaWRNYW5pcHVsYXRpb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d43a79f597/VoidManipulation.png","gem":{}} +{"name":"虛無玉","refName":"Void Sphere","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFja0hvbGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5a522c3871/BlackHole.png","gem":{}} +{"name":"虛無玉.分裂","refName":"Void Sphere of Rending","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFja0hvbGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5a522c3871/BlackHole.png","gem":{"transfigured":true,"normalVariant":"Void Sphere"}} +{"name":"致命之息","refName":"Volatile Dead","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Wb2xhdGlsZURlYWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/75c543dab5/VolatileDead.png","gem":{}} +{"name":"致命之息.禁閉","refName":"Volatile Dead of Confinement","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Wb2xhdGlsZURlYWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/75c543dab5/VolatileDead.png","gem":{"transfigured":true,"normalVariant":"Volatile Dead"}} +{"name":"致命之息.沸騰","refName":"Volatile Dead of Seething","namespace":"GEM","tradeDisc":"alt_y","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Wb2xhdGlsZURlYWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/75c543dab5/VolatileDead.png","gem":{"transfigured":true,"normalVariant":"Volatile Dead"}} +{"name":"易變輔助","refName":"Volatility Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1ZvbGF0aWxpdHkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/89efd990e3/Volatility.png","gem":{}} +{"name":"炎火脈動","refName":"Volcanic Fissure","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Wb2xjYW5pY0Zpc3N1cmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b12b9ef422/VolcanicFissureSkillGem.png","gem":{}} +{"name":"炎火脈動.蜿蜒","refName":"Volcanic Fissure of Snaking","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Wb2xjYW5pY0Zpc3N1cmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b12b9ef422/VolcanicFissureSkillGem.png","gem":{"transfigured":true,"normalVariant":"Volcanic Fissure"}} +{"name":"齊射輔助","refName":"Volley Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1BhcmFsbGVsUHJvamVjdGlsZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/814ab0a18f/ParallelProjectile.png","gem":{}} +{"name":"魔痕爆發","refName":"Voltaxic Burst","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Wb2lkYnVyc3RTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ba291fb033/VoidburstSkillGem.png","gem":{}} +{"name":"漩渦","refName":"Vortex","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdFZvcnRleCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/13869ff5ca/FrostVortex.png","gem":{}} +{"name":"漩渦.投射","refName":"Vortex of Projection","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdFZvcnRleCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/13869ff5ca/FrostVortex.png","gem":{"transfigured":true,"normalVariant":"Vortex"}} +{"name":"脆弱","refName":"Vulnerability","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9WdWxuZXJhYmlsaXR5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1235ccd6b3/Vulnerability.png","gem":{}} +{"name":"戰爭之旗","refName":"War Banner","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9XYXJiYW5uZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/bad44cab15/Warbanner.png","gem":{}} +{"name":"督軍印記","refName":"Warlord's Mark","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9XYXJsb3Jkc01hcmsiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a51e4dbcb5/WarlordsMark.png","gem":{}} +{"name":"信念浪湧","refName":"Wave of Conviction","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QdXJnZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/773530e679/Purge.png","gem":{}} +{"name":"迴旋之刃","refName":"Whirling Blades","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9XaGlybGluZ0JsYWRlcyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c2fc108c55/WhirlingBlades.png","gem":{}} +{"name":"野性打擊","refName":"Wild Strike","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbGVtZW50YWxTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3d431c517c/ElementalStrike.png","gem":{}} +{"name":"野性打擊.極致","refName":"Wild Strike of Extremes","namespace":"GEM","tradeDisc":"alt_x","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbGVtZW50YWxTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3d431c517c/ElementalStrike.png","gem":{"transfigured":true,"normalVariant":"Wild Strike"}} +{"name":"凜冬之球","refName":"Winter Orb","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdEZ1cnkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/89ef86a052/FrostFury.png","gem":{}} +{"name":"冬潮烙印","refName":"Wintertide Brand","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9XaW50ZXJ0aWRlQnJhbmRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/21a236e3c7/WintertideBrandGem.png","gem":{}} +{"name":"死亡凋零","refName":"Wither","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9XaXRoZXJHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f4a77cf6bc/WitherGem.png","gem":{}} +{"name":"凋零之步","refName":"Withering Step","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9XaXRoZXJpbmdTdGVwR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6f949bee1e/WitheringStepGem.png","gem":{}} +{"name":"凋零之觸輔助","refName":"Withering Touch Support","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1dpdGhlckdlbVN1cHBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/214e5fcb53/WitherGemSupport.png","gem":{}} +{"name":"雷霆","refName":"Wrath","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9XcmF0aCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6646c27a1b/Wrath.png","gem":{}} +{"name":"狂熱","refName":"Zealotry","namespace":"GEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGVsbERhbWFnZUdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f36b77014f/SpellDamageGem.png","gem":{}} +{"name":"特異化石","refName":"Aberrant Fossil","namespace":"ITEM","tradeTag":"aberrant-fossil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvQWJiZXJhbnRGb3NzaWwiLCJzY2FsZSI6MX1d/0ebc664beb/AbberantFossil.png"} +{"name":"憎惡地圖","refName":"Abomination Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{}} +{"name":"研磨的催化劑","refName":"Abrasive Catalyst","namespace":"ITEM","tradeTag":"abrasive-catalyst","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL0FicmFzaXZlQ2F0YWx5c3QiLCJzY2FsZSI6MX1d/aca49c3cc0/AbrasiveCatalyst.png"} +{"name":"深淵聖甲蟲","refName":"Abyss Scarab","namespace":"ITEM","tradeTag":"abyss-scarab","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJBYnlzcyIsInNjYWxlIjoxfV0/05f3ac3c5c/LesserScarabAbyss.png"} +{"name":"聖甲蟲:宏偉深淵","refName":"Abyss Scarab of Edifice","namespace":"ITEM","tradeTag":"abyss-scarab-of-edifice","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiQWJ5c3MiLCJzY2FsZSI6MX1d/84851bd122/GreaterScarabAbyss.png"} +{"name":"聖甲蟲:空虛深淵","refName":"Abyss Scarab of Emptiness","namespace":"ITEM","tradeTag":"abyss-scarab-of-emptiness","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHROb3JtYWxTY2FyYWJBYnlzcyIsInNjYWxlIjoxfV0/1dbd071787/AltNormalScarabAbyss.png"} +{"name":"聖甲蟲:眾生深淵","refName":"Abyss Scarab of Multitudes","namespace":"ITEM","tradeTag":"abyss-scarab-of-multitudes","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJBYnlzcyIsInNjYWxlIjoxfV0/e28a53e1a0/NormalScarabAbyss.png"} +{"name":"聖甲蟲:深沉深淵","refName":"Abyss Scarab of Profound Depth","namespace":"ITEM","tradeTag":"abyss-scarab-of-profound-depth","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRUaWVyNFNjYXJhYkFieXNzIiwic2NhbGUiOjF9XQ/b40fb2422b/AltTier4ScarabAbyss.png"} +{"name":"深淵巨斧","refName":"Abyssal Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNyIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/931ad5cc29/TwoHandAxe7.png","w":2,"h":4} +{"name":"深淵之譫妄玉","refName":"Abyssal Delirium Orb","namespace":"ITEM","tradeTag":"abyssal-delirium-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJBYnlzcyIsInNjYWxlIjoxfV0/7434403ff2/DeliriumOrbAbyss.png"} +{"name":"深淵的培育器","refName":"Abyssal Incubator","namespace":"ITEM","tradeTag":"abyssal-incubator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQWJ5c3MiLCJzY2FsZSI6MX1d/f3c36d1eb4/IncubationAbyss.png"} +{"name":"深淵權杖","refName":"Abyssal Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyOCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/6644b94336/scepter8.png","w":2,"h":3} +{"name":"惡靈學院","refName":"Academy Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{}} +{"name":"加速催化劑","refName":"Accelerating Catalyst","namespace":"ITEM","tradeTag":"accelerating-catalyst","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL1NwZWVkTW9kaWZpZXJDYXRhbHlzdCIsInNjYWxlIjoxfV0/6493f34e78/SpeedModifierCatalyst.png"} +{"name":"蓄能法杖","refName":"Accumulator Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9IZWlzdFdhbmQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/4499b00066/HeistWand.png","h":3} +{"name":"酸岩酸嶼","refName":"Acid Caverns Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/vISJftF.jpg"}} +{"name":"神幻化石","refName":"Aetheric Fossil","namespace":"ITEM","tradeTag":"aetheric-fossil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvQWV0aGVyaWNGb3NzaWwiLCJzY2FsZSI6MX1d/4c874e6fa9/AethericFossil.png"} +{"name":"乙太之風手套","refName":"Aetherwind Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[28,32]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUml0dWFsSW50R2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/b698da54ed/RitualIntGloves.png","w":2,"h":2} +{"name":"瑪瑙護身符","refName":"Agate Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BZ2F0ZUFtdWxldCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/710a5a8ec4/AgateAmulet.png"} +{"name":"匯聚符","refName":"Aggregator Charm","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQWdncmVnYXRvckNoYXJtTWFnaWNTdG9uZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/18dabef4ca/AggregatorCharmMagicStone.png","w":2,"h":2} +{"name":"奧赫茲明刻紋","refName":"Al-Hezmin's Crest","namespace":"ITEM","tradeTag":"al-hezmins-crest","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9IdW50ZXJGcmFnbWVudCIsInNjYWxlIjoxfV0/3ad268c533/HunterFragment.png"} +{"name":"白化的羽毛","refName":"Albino Rhoa Feather","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lSaG9hRmVhdGhlciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a6c81de02d/CurrencyRhoaFeather.png"} +{"name":"榿木刺盾","refName":"Alder Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[209,240],"es":[43,49]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/db9355404e/ShieldDexInt2.png","w":2,"h":2} +{"name":"危城巷弄","refName":"Alleyways Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/m21vNCp.jpg"}} +{"name":"合金刺盾","refName":"Alloyed Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[56,70],"es":[13,16]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/36d311e1dc/ShieldDexInt3.png","w":2,"h":2} +{"name":"輪迴權杖","refName":"Alternating Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9IZWlzdFNjZXB0cmVFbGVtZW50YWwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/34e5d78ab3/HeistSceptreElemental.png","w":2,"h":3} +{"name":"艾瓦的記憶","refName":"Alva's Memory","namespace":"ITEM","craftable":{"category":"Memory Line"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWVtb3J5TGluZS9BbHZhTWVtb3J5SXRlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5adc01981d/AlvaMemoryItem.png"} +{"name":"琥珀護身符","refName":"Amber Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/abb6811fa1/Amulet3.png"} +{"name":"琥珀油瓶","refName":"Amber Oil","namespace":"ITEM","tradeTag":"amber-oil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9BbWJlck9pbCIsInNjYWxlIjoxfV0/bd5ce1adfa/AmberOil.png"} +{"name":"伏擊之靴","refName":"Ambush Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[85,95],"es":[18,20]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0c80b843d0/BootsDexInt3.png","w":2,"h":2} +{"name":"伏擊護手","refName":"Ambush Mitts","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[81,91],"es":[17,19]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/e18b986979/GlovesDexInt2.png","w":2,"h":2} +{"name":"聖甲蟲·伏擊","refName":"Ambush Scarab","namespace":"ITEM","tradeTag":"ambush-scarab","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJTdHJvbmdib3hlcyIsInNjYWxlIjoxfV0/137917584a/LesserScarabStrongboxes.png"} +{"name":"聖甲蟲:遏制伏擊","refName":"Ambush Scarab of Containment","namespace":"ITEM","tradeTag":"ambush-scarab-of-containment","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYlN0cm9uZ2JveGVzIiwic2NhbGUiOjF9XQ/da665a65ee/Tier4ScarabStrongboxes.png"} +{"name":"聖甲蟲:洞察伏擊","refName":"Ambush Scarab of Discernment","namespace":"ITEM","tradeTag":"ambush-scarab-of-discernment","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRUaWVyNFNjYXJhYlN0cm9uZ2JveGVzIiwic2NhbGUiOjF9XQ/72722370df/AltTier4ScarabStrongboxes.png"} +{"name":"聖甲蟲:暗室伏擊","refName":"Ambush Scarab of Hidden Compartments","namespace":"ITEM","tradeTag":"ambush-scarab-of-hidden-compartments","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJTdHJvbmdib3hlcyIsInNjYWxlIjoxfV0/2654dacfee/NormalScarabStrongboxes.png"} +{"name":"聖甲蟲:爆發伏擊","refName":"Ambush Scarab of Potency","namespace":"ITEM","tradeTag":"ambush-scarab-of-potency","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiU3Ryb25nYm94ZXMiLCJzY2FsZSI6MX1d/c2cb4efc18/GreaterScarabStrongboxes.png"} +{"name":"伏擊刺刃","refName":"Ambusher","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/954af836f7/Dagger4.png","h":3} +{"name":"紫晶藥劑","refName":"Amethyst Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvQW1ldGh5c3QiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/0f93f9050a/Amethyst.png","h":2} +{"name":"紫晶戒指","refName":"Amethyst Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQW1ldGh5c3RSaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/804d781735/AmethystRing.png"} +{"name":"謁見國王","refName":"An Audience With The King","namespace":"ITEM","tradeTag":"an-audience-with-the-king","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb0tpbmdFZmZpZ3kiLCJzY2FsZSI6MX1d/55e8fd8f34/VoodooKingEffigy.png"} +{"name":"翻天魂刃","refName":"Anarchic Spiritblade","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0hlaXN0T25lSGFuZFN3b3JkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/6b56c4c406/HeistOneHandSword.png","w":2,"h":3} +{"name":"混亂聖甲蟲","refName":"Anarchy Scarab","namespace":"ITEM","tradeTag":"anarchy-scarab","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJBbmFyY2h5Iiwic2NhbGUiOjF9XQ/73d1ee9b23/LesserScarabAnarchy.png"} +{"name":"聖甲蟲:浩瀚混亂","refName":"Anarchy Scarab of Gigantification","namespace":"ITEM","tradeTag":"anarchy-scarab-of-gigantification","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJBbmFyY2h5Iiwic2NhbGUiOjF9XQ/d391e90e68/NormalScarabAnarchy.png"} +{"name":"聖甲蟲:結夥混亂","refName":"Anarchy Scarab of Partnership","namespace":"ITEM","tradeTag":"anarchy-scarab-of-partnership","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiQW5hcmNoeSIsInNjYWxlIjoxfV0/4697e57871/GreaterScarabAnarchy.png"} +{"name":"祖靈之杵","refName":"Ancestral Club","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2UyIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/75d926bb65/OneHandMace2.png","h":3} +{"name":"遠古危城","refName":"Ancient City Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/MThKML2.jpg"}} +{"name":"遠古護手","refName":"Ancient Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[154,173]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyMyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f5896830bf/GlovesStr3.png","w":2,"h":2} +{"name":"遠古脛甲","refName":"Ancient Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[151,174]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/56efa25c50/BootsStr3.png","w":2,"h":2} +{"name":"遠古面具","refName":"Ancient Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[308,355],"es":[62,71]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDEwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/62018602df/HelmetDexInt10.png","w":2,"h":2} +{"name":"古變石","refName":"Ancient Orb","namespace":"ITEM","tradeTag":"ancient-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jaWVudE9yYiIsInNjYWxlIjoxfV0/83015d0dc9/AncientOrb.png"} +{"name":"古典遺鑰","refName":"Ancient Reliquary Key","namespace":"ITEM","tradeTag":"ancient-reliquary-key","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYXVsdE1hcCIsInNjYWxlIjoxfV0/e1342052dd/VaultMap.png"} +{"name":"古變石碎片","refName":"Ancient Shard","namespace":"ITEM","tradeTag":"ancient-shard","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jaWVudFNoYXJkIiwic2NhbGUiOjF9XQ/3695589639/AncientShard.png"} +{"name":"遠古魔盾","refName":"Ancient Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[38,45]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/2fcc8b522c/ShieldInt4.png","w":2,"h":2} +{"name":"遠古之劍","refName":"Ancient Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDYiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/c12083d6b6/OneHandSword6.png","w":2,"h":3} +{"name":"天使鳶盾","refName":"Angelic Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[124,142],"es":[25,29]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/92beb951d5/ShieldStrInt5.png","w":2,"h":3} +{"name":"無效石碎片","refName":"Annulment Shard","namespace":"ITEM","tradeTag":"annulment-shard","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5udWxsU2hhcmQiLCJzY2FsZSI6MX1d/1cf9962d97/AnnullShard.png"} +{"name":"古鋼護手","refName":"Antique Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[129,154]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyMiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/557280e2c8/GlovesStr2.png","w":2,"h":2} +{"name":"古鋼脛甲","refName":"Antique Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[122,144]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c55db774a6/BootsStr2.png","w":2,"h":2} +{"name":"古代細劍","refName":"Antique Rapier","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjYiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/f9bc0a5aa1/Rapier6.png","h":4} +{"name":"巔峰砍斧","refName":"Apex Cleaver","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9IZWlzdFR3b0hhbmRBeGUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/4aef1881cc/HeistTwoHandAxe.png","w":2,"h":4} +{"name":"銳鋒細劍","refName":"Apex Rapier","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjgiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/1f11ed5e87/Rapier8.png","h":4} +{"name":"靈藥手套","refName":"Apothecary's Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[108,124],"es":[29,33]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQ2hlbWlzdEdsb3ZlcyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/b6fad295a2/ChemistGloves.png","w":2,"h":2} +{"name":"學徒手套","refName":"Apprentice Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[132,152]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUml0dWFsRGV4R2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/2785fe1c37/RitualDexGloves.png","w":2,"h":2} +{"name":"海藍藥劑","refName":"Aquamarine Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvYXF1YW1hcmluZSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/b48851db23/aquamarine.png","h":2} +{"name":"異蛛巢穴","refName":"Arachnid Nest Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/Ljh7mDh.jpg"}} +{"name":"異蛛墓塚","refName":"Arachnid Tomb Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/1IAVUXr.jpg"}} +{"name":"崩壞長廊","refName":"Arcade Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/mTl4tTm.jpg"}} +{"name":"奧術長衣","refName":"Arcane Vestment","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[196,225]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9ea39de510/BodyInt1C.png","w":2,"h":3} +{"name":"秘術手套","refName":"Arcanist Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[45,52]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/abe163b992/GlovesInt3.png","w":2,"h":2} +{"name":"秘術便鞋","refName":"Arcanist Slippers","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[47,55]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/036cf97e61/BootsInt3.png","w":2,"h":2} +{"name":"罪魔邪冠","refName":"Archdemon Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[185,212],"es":[38,43]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01hc2tDcm93biIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/dbad72643e/MaskCrown.png","w":2,"h":2} +{"name":"文書遺鑰","refName":"Archive Reliquary Key","namespace":"ITEM","tradeTag":"archive-reliquary-key","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TZWFyaW5nRXhhcmNoRm9pbCIsInNjYWxlIjoxfV0/76bce43f6c/SearingExarchFoil.png"} +{"name":"威能鳶盾","refName":"Archon Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[156,179],"es":[32,37]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/92beb951d5/ShieldStrInt5.png","w":2,"h":3} +{"name":"威能鳶盾碎片","refName":"Archon Kite Shield Piece","namespace":"ITEM","craftable":{"category":"Unique Fragment","uniqueOnly":true},"icon":"","w":1,"h":2} +{"name":"競技場","refName":"Arena Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/EaTICR6.jpg"}} +{"name":"鬥者之鎧","refName":"Arena Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[324,389]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/429eee131d/BodyStr2C.png","w":2,"h":3} +{"name":"乾枯湖岸","refName":"Arid Lake Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/9gm7OPL.jpg"}} +{"name":"長柄斧","refName":"Arming Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/01f0e16494/OneHandAxe6.png","w":2,"h":3} +{"name":"護甲片","refName":"Armourer's Scrap","namespace":"ITEM","tradeTag":"scrap","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lBcm1vdXJRdWFsaXR5Iiwic2NhbGUiOjF9XQ/fc4e26afbc/CurrencyArmourQuality.png"} +{"name":"護甲之譫妄玉","refName":"Armoursmith's Delirium Orb","namespace":"ITEM","tradeTag":"armoursmiths-delirium-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJBcm1vdXIiLCJzY2FsZSI6MX1d/c00fa9e1a3/DeliriumOrbArmour.png"} +{"name":"軍械庫","refName":"Armoury Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/d5Y7MBu.jpg"}} +{"name":"古兵工廠","refName":"Arsenal Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/5iGxpEn.jpg"}} +{"name":"火炮箭袋","refName":"Artillery Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9DaGlzZWxRdWl2ZXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e316e63433/ChiselQuiver.png","w":2,"h":3} +{"name":"灰樹皮萃取物","refName":"Ashbark Tincture","namespace":"ITEM","craftable":{"category":"Tincture"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL0lnbml0ZVNhcCIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/deba37a1a1/IgniteSap.png","h":2} +{"name":"旱木林地","refName":"Ashen Wood Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/kHvVFYI.jpg"}} +{"name":"灰燼魔符","refName":"Ashscale Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbldoaXRlOCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/2554d58070/TalismanWhite8.png"} +{"name":"暗殺弓","refName":"Assassin Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/2c90c93faf/Bow5.png","w":2,"h":4} +{"name":"刺殺者之靴","refName":"Assassin's Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[121,139],"es":[25,28]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0c80b843d0/BootsDexInt3.png","w":2,"h":2} +{"name":"刺殺者之裝","refName":"Assassin's Garb","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[737,811]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8f1d1cfaa9/BodyDex2C.png","w":2,"h":3} +{"name":"刺殺者護手","refName":"Assassin's Mitts","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[104,123],"es":[21,25]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/e18b986979/GlovesDexInt2.png","w":2,"h":2} +{"name":"拼裝法杖","refName":"Assembler Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9IZWlzdFdhbmQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/4499b00066/HeistWand.png","h":3} +{"name":"骰子","refName":"Astragali","namespace":"ITEM","tradeTag":"astragali","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXhwZWRpdGlvbi9HYW1ibGVyUmVmcmVzaEN1cnJlbmN5Iiwic2NhbGUiOjF9XQ/ff5640db4c/GamblerRefreshCurrency.png"} +{"name":"星際皮甲","refName":"Astral Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[1037,1193]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4M0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e30de2c7a6/BodyDex3C.png","w":2,"h":3} +{"name":"星芒戰鎧","refName":"Astral Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[711,782]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/94a3d5d98e/BodyStr1C.png","w":2,"h":3} +{"name":"星盤護身符","refName":"Astrolabe Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9IZWlzdEFtdWxldDEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MSwiZWxkZXIiOnRydWUsInNoYXBlciI6dHJ1ZX1d/8dcc0d5883/HeistAmulet1.png"} +{"name":"濱海山丘","refName":"Atoll Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/ynKNdxR.jpg"}} +{"name":"贖罪面具","refName":"Atonement Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[122,140],"ev":[122,140]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleFIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f63493ca95/HelmetStrDexR.png","w":2,"h":2} +{"name":"聖約之錘","refName":"Auric Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U3IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/84402507d1/OneHandMace7.png","w":2,"h":3} +{"name":"戰意之盔","refName":"Aventail Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[101,119],"es":[21,25]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/6ec3ce7dae/HelmetStrInt5.png","w":2,"h":2} +{"name":"雙子魔符","refName":"Avian Twins Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbkJsYWNrMiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/51fd60eedf/TalismanBlack2.png"} +{"name":"喚醒者之玉","refName":"Awakener's Orb","namespace":"ITEM","tradeTag":"awakeners-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVHJhbnNmZXJPcmIiLCJzY2FsZSI6MX1d/f3b1c1566f/TransferOrb.png"} +{"name":"覺醒碎片","refName":"Awakening Fragment","namespace":"ITEM","tradeTag":"awakening-fragment","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyQm9zc0tleVNpcnVzIiwic2NhbGUiOjF9XQ/094681ee85/UberBossKeySirus.png"} +{"name":"鑿釘","refName":"Awl","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ac6e7ab61d/Claw3.png","w":2,"h":2} +{"name":"碧藍油瓶","refName":"Azure Oil","namespace":"ITEM","tradeTag":"azure-oil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9BenVyZU9pbCIsInNjYWxlIjoxfV0/a68235e8e8/AzureOil.png"} +{"name":"碧藍閃光粉","refName":"Azurite Flashpowder","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQXp1cml0ZUZsYXNocG93ZGVyIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/b8addc416a/AzuriteFlashpowder.png","w":2,"h":2} +{"name":"放逐之刃","refName":"Banishing Blade","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL0hlaXN0VHdvSGFuZFN3b3JkIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/9757ea88b2/HeistTwoHandSword.png","w":2,"h":4} +{"name":"巴倫刻紋","refName":"Baran's Crest","namespace":"ITEM","tradeTag":"barans-crest","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9DcnVzYWRlckZyYWdtZW50Iiwic2NhbGUiOjF9XQ/3e2fecf3bc/CrusaderFragment.png"} +{"name":"銳刺木棒","refName":"Barbed Club","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2UzIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/a3a1dace2a/OneHandMace3.png","h":3} +{"name":"輕騎盔","refName":"Barbute Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[92,115]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/38b7aedad1/HelmetStr3.png","w":2,"h":2} +{"name":"古代圓盾","refName":"Baroque Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[122,140],"ev":[122,140]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/b81ab44241/ShieldStrDex5.png","w":2,"h":3} +{"name":"熱林塚墓","refName":"Barrows Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/SwZdc6q.jpg"}} +{"name":"石化藥劑","refName":"Basalt Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3Mvc3RvbmUiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/00261d09db/stone.png","h":2} +{"name":"冷光長劍","refName":"Baselard","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/936e00e3e6/OneHandSword4.png","w":2,"h":3} +{"name":"金屬鐵靴","refName":"Basemetal Treads","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[68,78]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SaXR1YWxTdHJCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/fa0ce420ed/RitualStrBoots.png","w":2,"h":2} +{"name":"基礎偽裝套組","refName":"Basic Disguise Kit","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmFzaWNEaXNndWlzZUtpdCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7be5d4947a/BasicDisguiseKit.png","w":2,"h":2} +{"name":"聖殿","refName":"Basilica Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/G6ySvIu.jpg"}} +{"name":"練武者細劍","refName":"Basket Rapier","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjQiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/dc28604809/Rapier4.png","h":4} +{"name":"重劍","refName":"Bastard Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/28f44a7a0c/TwoHandSword3.png","w":2,"h":4} +{"name":"鈍刃細劍","refName":"Battered Foil","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjMiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/11f4a8b0d0/Rapier3.png","h":4} +{"name":"殘破之盔","refName":"Battered Helm","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[13,18],"ev":[13,18]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/00af4cd199/HelmetStrDex1.png","w":2,"h":2} +{"name":"蓄能長杖","refName":"Battery Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGVpc3RTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/5e852184f5/HeistStaff.png","w":2,"h":4} +{"name":"鬥者輕盾","refName":"Battle Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[287,330]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5a38d58259/ShieldDex5.png","w":2,"h":2} +{"name":"強化戰錘","refName":"Battle Hammer","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U1IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/7a42346f2b/OneHandMace5.png","w":2,"h":3} +{"name":"爭戰鱗甲","refName":"Battle Lamellar","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[297,341],"ev":[297,341]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyNEEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/7e1c29aacf/BodyStr4A.png","w":2,"h":3} +{"name":"戰鎧","refName":"Battle Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[412,474]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/c62bd1159e/BodyStr2B.png","w":2,"h":3} +{"name":"士兵長劍","refName":"Battle Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/38536bcafb/OneHandSword5.png","w":2,"h":3} +{"name":"遠古市集","refName":"Bazaar Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/bo5223u.jpg"}} +{"name":"白沙灘頭","refName":"Beach Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/qZNQGdD.jpg"}} +{"name":"巴哈姆特","refName":"Behemoth Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U5IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f2a493ef7a/OneHandMace9.png","w":2,"h":3} +{"name":"雲頂鐘樓","refName":"Belfry Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/7zjdJvN.jpg"}} +{"name":"獸魂玉","refName":"Bestiary Orb","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJFbXB0eSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/023527ca4e/BestiaryOrbEmpty.png"} +{"name":"聖甲蟲·獸獵","refName":"Bestiary Scarab","namespace":"ITEM","tradeTag":"bestiary-scarab","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJCZWFzdHMiLCJzY2FsZSI6MX1d/a13711c8ed/LesserScarabBeasts.png"} +{"name":"聖甲蟲:增生獸獵","refName":"Bestiary Scarab of Duplicating","namespace":"ITEM","tradeTag":"bestiary-scarab-of-duplicating","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiQmVhc3RzIiwic2NhbGUiOjF9XQ/09caa391c6/GreaterScarabBeasts.png"} +{"name":"聖甲蟲:牧群獸獵","refName":"Bestiary Scarab of the Herd","namespace":"ITEM","tradeTag":"bestiary-scarab-of-the-herd","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJCZWFzdHMiLCJzY2FsZSI6MX1d/0d5c9d2d30/NormalScarabBeasts.png"} +{"name":"聖甲蟲:暗影烏鴉獸獵","refName":"Bestiary Scarab of the Shadowed Crow","namespace":"ITEM","tradeTag":"bestiary-scarab-of-the-shadowed-crow","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkJlYXN0cyIsInNjYWxlIjoxfV0/c8a03d1108/Tier4ScarabBeasts.png"} +{"name":"反叛聖甲蟲","refName":"Betrayal Scarab","namespace":"ITEM","tradeTag":"betrayal-scarab","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJCZXRyYXlhbCIsInNjYWxlIjoxfV0/d53970be47/LesserScarabBetrayal.png"} +{"name":"聖甲蟲:智慧反叛","refName":"Betrayal Scarab of Intelligence","namespace":"ITEM","tradeTag":"betrayal-scarab-of-intelligence","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJCZXRyYXlhbCIsInNjYWxlIjoxfV0/3e4a843098/NormalScarabBetrayal.png"} +{"name":"聖甲蟲:永存反叛","refName":"Betrayal Scarab of Perpetuation","namespace":"ITEM","tradeTag":"betrayal-scarab-of-perpetuation","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkJldHJheWFsIiwic2NhbGUiOjF9XQ/4290457e94/Tier4ScarabBetrayal.png"} +{"name":"聖甲蟲:支援反叛","refName":"Betrayal Scarab of Reinforcements","namespace":"ITEM","tradeTag":"betrayal-scarab-of-reinforcements","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiQmV0cmF5YWwiLCJzY2FsZSI6MX1d/7dd831f857/GreaterScarabBetrayal.png"} +{"name":"超越聖甲蟲","refName":"Beyond Scarab","namespace":"ITEM","tradeTag":"beyond-scarab","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJCZXlvbmQiLCJzY2FsZSI6MX1d/28f0c03cf7/LesserScarabBeyond.png"} +{"name":"聖甲蟲:腐化超越","refName":"Beyond Scarab of Corruption","namespace":"ITEM","tradeTag":"beyond-scarab-of-corruption","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiQmV5b25kIiwic2NhbGUiOjF9XQ/a7736e43ae/GreaterScarabBeyond.png"} +{"name":"聖甲蟲:血病超越","refName":"Beyond Scarab of Haemophilia","namespace":"ITEM","tradeTag":"beyond-scarab-of-haemophilia","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJCZXlvbmQiLCJzY2FsZSI6MX1d/6d3487e108/NormalScarabBeyond.png"} +{"name":"聖甲蟲:復興超越","refName":"Beyond Scarab of Resurgence","namespace":"ITEM","tradeTag":"beyond-scarab-of-resurgence","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRHcmVhdGVyU2NhcmFiQmV5b25kIiwic2NhbGUiOjF9XQ/4e3cafe44b/AltGreaterScarabBeyond.png"} +{"name":"聖甲蟲:侵略超越","refName":"Beyond Scarab of the Invasion","namespace":"ITEM","tradeTag":"beyond-scarab-of-the-invasion","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkJleW9uZCIsInNjYWxlIjoxfV0/a1d0b3e27b/Tier4ScarabBeyond.png"} +{"name":"束縛石碎片","refName":"Binding Shard","namespace":"ITEM","tradeTag":"binding-shard","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmluZGluZ1NoYXJkIiwic2NhbGUiOjF9XQ/569d09ac86/BindingShard.png"} +{"name":"灰岩藥劑","refName":"Bismuth Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvYmlzbXV0aCIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MSwiZmkiOnRydWV9XQ/d8294b3822/bismuth.png","h":2} +{"name":"黑牙魔符","refName":"Black Maw Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbldoaXRlMyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a0b3d42186/TalismanWhite3.png"} +{"name":"漆黑油瓶","refName":"Black Oil","namespace":"ITEM","tradeTag":"black-oil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9CbGFja09pbCIsInNjYWxlIjoxfV0/ce6830b309/BlackOil.png"} +{"name":"鐵匠之譫妄玉","refName":"Blacksmith's Delirium Orb","namespace":"ITEM","tradeTag":"blacksmiths-delirium-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJXZWFwb25zIiwic2NhbGUiOjF9XQ/eaa6f85f6c/DeliriumOrbWeapons.png"} +{"name":"磨刀石","refName":"Blacksmith's Whetstone","namespace":"ITEM","tradeTag":"whetstone","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lXZWFwb25RdWFsaXR5Iiwic2NhbGUiOjF9XQ/c9cd72719e/CurrencyWeaponQuality.png"} +{"name":"多刃錘","refName":"Bladed Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U2IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/a2a18837d4/OneHandMace6.png","w":2,"h":3} +{"name":"褻瀆者","refName":"Blasphemer","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0dlb2ZyaUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/c8c02e1c54/GeofriCorpse.png","w":3,"h":2} +{"name":"爆破之刃","refName":"Blasting Blade","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL0hlaXN0VHdvSGFuZFN3b3JkIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/9757ea88b2/HeistTwoHandSword.png","w":2,"h":4} +{"name":"熾熱箭袋","refName":"Blazing Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJGaXJlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/0537b8437d/QuiverFire.png","w":2,"h":3} +{"name":"熾熱碎片","refName":"Blazing Fragment","namespace":"ITEM","tradeTag":"blazing-fragment","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyQm9zc0tleVNlYXJpbmdFeGFyY2giLCJzY2FsZSI6MX1d/cc2f3bce1b/UberBossKeySearingExarch.png"} +{"name":"祝福石","refName":"Blessed Orb","namespace":"ITEM","tradeTag":"blessed","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lJbXBsaWNpdE1vZCIsInNjYWxlIjoxfV0/48e700cc20/CurrencyImplicitMod.png"} +{"name":"夏烏拉的祝福","refName":"Blessing of Chayula","namespace":"ITEM","tradeTag":"blessing-chayula","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFVwZ3JhZGVyQ2hhb3MiLCJzY2FsZSI6MX1d/45e8da717e/BreachUpgraderChaos.png"} +{"name":"艾許的祝福","refName":"Blessing of Esh","namespace":"ITEM","tradeTag":"blessing-esh","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFVwZ3JhZGVyTGlnaHRuaW5nIiwic2NhbGUiOjF9XQ/3d1db83ad2/BreachUpgraderLightning.png"} +{"name":"托沃的祝福","refName":"Blessing of Tul","namespace":"ITEM","tradeTag":"blessing-tul","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFVwZ3JhZGVyQ29sZCIsInNjYWxlIjoxfV0/3573fedbf3/BreachUpgraderCold.png"} +{"name":"烏爾尼多的祝福","refName":"Blessing of Uul-Netol","namespace":"ITEM","tradeTag":"blessing-uul-netol","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFVwZ3JhZGVyUGh5c2ljYWwiLCJzY2FsZSI6MX1d/f230a19a13/BreachUpgraderPhysical.png"} +{"name":"索伏的祝福","refName":"Blessing of Xoph","namespace":"ITEM","tradeTag":"blessing-xoph","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFVwZ3JhZGVyRmlyZSIsInNjYWxlIjoxfV0/16a58db13d/BreachUpgraderFire.png"} +{"name":"凋落聖甲蟲","refName":"Blight Scarab","namespace":"ITEM","tradeTag":"blight-scarab","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJCbGlnaHQiLCJzY2FsZSI6MX1d/401222e4f4/LesserScarabBlight.png"} +{"name":"聖甲蟲:綻放凋落","refName":"Blight Scarab of Blooming","namespace":"ITEM","tradeTag":"blight-scarab-of-blooming","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkJsaWdodCIsInNjYWxlIjoxfV0/7ecd3dcebc/Tier4ScarabBlight.png"} +{"name":"聖甲蟲:珍寶凋落","refName":"Blight Scarab of Bounty","namespace":"ITEM","tradeTag":"blight-scarab-of-bounty","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJCbGlnaHQiLCJzY2FsZSI6MX1d/de78905e90/NormalScarabBlight.png"} +{"name":"聖甲蟲:振奮凋落","refName":"Blight Scarab of Invigoration","namespace":"ITEM","tradeTag":"blight-scarab-of-invigoration","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRUaWVyNFNjYXJhYkJsaWdodCIsInNjYWxlIjoxfV0/34e07da01c/AltTier4ScarabBlight.png"} +{"name":"聖甲蟲:枯萎之心凋落","refName":"Blight Scarab of the Blightheart","namespace":"ITEM","tradeTag":"blight-scarab-of-the-blightheart","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiQmxpZ2h0Iiwic2NhbGUiOjF9XQ/d0aa6a6d55/GreaterScarabBlight.png"} +{"name":"Blight-ravaged Map","refName":"Blight-ravaged Map","namespace":"ITEM","icon":"https://i.imgur.com/FpyXU1v.png"} +{"name":"凋落之譫妄玉","refName":"Blighted Delirium Orb","namespace":"ITEM","tradeTag":"blighted-delirium-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJCbGlnaHQiLCJzY2FsZSI6MX1d/e65965e8bd/DeliriumOrbBlight.png"} +{"name":"凋落的培育器","refName":"Blighted Incubator","namespace":"ITEM","tradeTag":"blighted-incubator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQmxpZ2h0Iiwic2NhbGUiOjF9XQ/0f1872598d/IncubationBlight.png"} +{"name":"Blighted Map","refName":"Blighted Map","namespace":"ITEM","icon":"https://i.imgur.com/CRmwRkA.png"} +{"name":"凋落偵查報告","refName":"Blighted Scouting Report","namespace":"ITEM","tradeTag":"blighted-scouting-report","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png"} +{"name":"襲眼鉤","refName":"Blinder","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/1d5586ea56/Claw5.png","w":2,"h":2} +{"name":"暴雪之冠","refName":"Blizzard Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[185,212],"es":[38,43]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludFIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/9da7af13c1/HelmetDexIntR.png","w":2,"h":2} +{"name":"血腥惡魔","refName":"Blood Demon","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0hlbGxzY2FwZURlbW9uQm9zc0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/9bcd7bb5b8/HellscapeDemonBossCorpse.png","w":3,"h":2} +{"name":"血色之衣","refName":"Blood Raiment","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[436,501],"es":[73,84]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/95329b265f/BodyDexInt1C.png","w":2,"h":3} +{"name":"鮮血液萃取物","refName":"Blood Sap Tincture","namespace":"ITEM","craftable":{"category":"Tincture"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL0JsZWVkU2FwIiwidyI6MSwiaCI6Miwic2NhbGUiOjF9XQ/853d2bf5b5/BleedSap.png","h":2} +{"name":"血色權杖","refName":"Blood Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/35e149f5cf/scepter6.png","w":2,"h":3} +{"name":"浸血碑器","refName":"Blood-filled Vessel","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUml0dWFsL0Jsb29kU29ha2VkRWZmaWd5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1adc81c853/BloodSoakedEffigy.png"} +{"name":"血漬化石","refName":"Bloodstained Fossil","namespace":"ITEM","tradeTag":"bloodstained-fossil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvQmxvb2RzdGFpbmVkRm9zc2lsIiwic2NhbGUiOjF9XQ/91236983e9/BloodstainedFossil.png"} +{"name":"碧珠護身符","refName":"Blue Pearl Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9CbHVlUGVhcmxBbXVsZXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e71aeafbd3/BluePearlAmulet.png"} +{"name":"藍圖:碉堡","refName":"Blueprint: Bunker","namespace":"ITEM","craftable":{"category":"Heist Blueprint"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/03e0a85e57/BlueprintNotApproved.png"} +{"name":"藍圖:實驗室","refName":"Blueprint: Laboratory","namespace":"ITEM","craftable":{"category":"Heist Blueprint"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/fd4cd3685e/BlueprintNotApproved3.png"} +{"name":"藍圖:官邸","refName":"Blueprint: Mansion","namespace":"ITEM","craftable":{"category":"Heist Blueprint"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQ5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/c6b8f5dbc2/BlueprintNotApproved9.png"} +{"name":"藍圖:禁忌館藏","refName":"Blueprint: Prohibited Library","namespace":"ITEM","craftable":{"category":"Heist Blueprint"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQ1IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/78c1f7c667/BlueprintNotApproved5.png"} +{"name":"藍圖:紀錄室","refName":"Blueprint: Records Office","namespace":"ITEM","craftable":{"category":"Heist Blueprint"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQ4IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/cc90ce9113/BlueprintNotApproved8.png"} +{"name":"藍圖:展覽室","refName":"Blueprint: Repository","namespace":"ITEM","craftable":{"category":"Heist Blueprint"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQ0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2705c5829f/BlueprintNotApproved4.png"} +{"name":"藍圖:走私者老巢","refName":"Blueprint: Smuggler's Den","namespace":"ITEM","craftable":{"category":"Heist Blueprint"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/cbd577605e/BlueprintNotApproved2.png"} +{"name":"藍圖:地道","refName":"Blueprint: Tunnels","namespace":"ITEM","craftable":{"category":"Heist Blueprint"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQ2IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f2e3a9ec0f/BlueprintNotApproved6.png"} +{"name":"藍圖:地下道","refName":"Blueprint: Underbelly","namespace":"ITEM","craftable":{"category":"Heist Blueprint"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQ3IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/bafd718e24/BlueprintNotApproved7.png"} +{"name":"鈍矢箭袋","refName":"Blunt Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJCbHVudCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/435539df0f/QuiverBlunt.png","w":2,"h":3} +{"name":"鈍矢箭袋碎片","refName":"Blunt Arrow Quiver Piece","namespace":"ITEM","craftable":{"category":"Unique Fragment","uniqueOnly":true},"icon":"","w":1,"h":2} +{"name":"鈍擊力凝聚錘","refName":"Blunt Force Condenser","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvSGVpc3RUd29IYW5kTWFjZSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/ecc9c2724b/HeistTwoHandMace.png","w":2,"h":4} +{"name":"萬用手斧","refName":"Boarding Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlMyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/126bb32028/OneHandAxe3.png","w":2,"h":3} +{"name":"瘴氣泥沼","refName":"Bog Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/cPWmdWr.jpg"}} +{"name":"骨製戰甲","refName":"Bone Armour","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[194,233],"es":[41,49]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50NEMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/99efce2041/BodyDexInt4C.png","w":2,"h":3} +{"name":"骨製弓","refName":"Bone Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/6642f8922a/Bow6.png","w":2,"h":4} +{"name":"靈骨之冠","refName":"Bone Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[36,40]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/6edb78065a/HelmetInt5.png","w":2,"h":2} +{"name":"骨跡陵墓","refName":"Bone Crypt Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/NVVVCOt.jpg"}} +{"name":"喚骨頭盔","refName":"Bone Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[197,227],"es":[40,46]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0JvbmVIZWxtIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/81dc21096f/BoneHelm.png","w":2,"h":2} +{"name":"骸骨之戒","refName":"Bone Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQm9uZVJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4ed569fff9/BoneRing.png"} +{"name":"骨製魔盾","refName":"Bone Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[15,19]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f0b78ea97c/ShieldInt3.png","w":2,"h":2} +{"name":"脊骨魔符","refName":"Bonespire Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbldoaXRlNyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d1c13039a9/TalismanWhite7.png"} +{"name":"爆裂之錘","refName":"Boom Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvSGVpc3RPbmVIYW5kTWFjZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/48ff9d9c4c/HeistOneHandMace.png","w":2,"h":3} +{"name":"戰亂劍","refName":"Boot Blade","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjUiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/3431875aaf/Dagger5.png","h":3} +{"name":"戰亂刀","refName":"Boot Knife","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjUiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/3431875aaf/Dagger5.png","h":3} +{"name":"針葉木萃取物","refName":"Borealwood Tincture","namespace":"ITEM","craftable":{"category":"Tincture"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL0ZyZWV6ZVNhcCIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/3d546137f5/FreezeSap.png","h":2} +{"name":"畛域化石","refName":"Bound Fossil","namespace":"ITEM","tradeTag":"bound-fossil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUmVzb25hdGluZ0Zvc3NpbCIsInNjYWxlIjoxfV0/9db0326ecc/ResonatingFossil.png"} +{"name":"邊界符文","refName":"Bound Rune","namespace":"ITEM","tradeTag":"bound-rune","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2V0dGxlcnMvVmlsbGFnZVJ1bmUzIiwic2NhbGUiOjF9XQ/7e7fa2cc52/VillageRune3.png"} +{"name":"寶藏符文","refName":"Bounty Rune","namespace":"ITEM","tradeTag":"bounty-rune","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2V0dGxlcnMvVmlsbGFnZVJ1bmU2Iiwic2NhbGUiOjF9XQ/2eed968220/VillageRune6.png"} +{"name":"荊棘谷","refName":"Bramble Valley Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/1HM5ro5.jpg"}} +{"name":"聖記鳶盾","refName":"Branded Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[186,208],"es":[38,43]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/996436dc6d/ShieldStrInt2.png","w":2,"h":3} +{"name":"銅影巨錘","refName":"Brass Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U2IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/a114ad5617/TwoHandMace6.png","w":2,"h":4} +{"name":"銅鍛魔盾","refName":"Brass Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[35,40]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/404ef29c87/ShieldInt6.png","w":2,"h":2} +{"name":"裂痕戒指","refName":"Breach Ring","namespace":"ITEM","craftable":{"category":"Ring","corrupted":true},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQnJlYWNoUmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c21b912df7/BreachRing.png"} +{"name":"聖甲蟲·裂痕","refName":"Breach Scarab","namespace":"ITEM","tradeTag":"breach-scarab","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJCcmVhY2giLCJzY2FsZSI6MX1d/769139d13b/LesserScarabBreach.png"} +{"name":"聖甲蟲:統領裂痕","refName":"Breach Scarab of Lordship","namespace":"ITEM","tradeTag":"breach-scarab-of-lordship","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiQnJlYWNoIiwic2NhbGUiOjF9XQ/b129897f73/GreaterScarabBreach.png"} +{"name":"聖甲蟲:共鳴浪湧裂痕","refName":"Breach Scarab of Resonant Cascade","namespace":"ITEM","tradeTag":"breach-scarab-of-resonant-cascade","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRUaWVyNFNjYXJhYkJyZWFjaCIsInNjYWxlIjoxfV0/d6fe5cdce6/AltTier4ScarabBreach.png"} +{"name":"聖甲蟲:誘捕裂痕","refName":"Breach Scarab of Snares","namespace":"ITEM","tradeTag":"breach-scarab-of-snares","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkJyZWFjaCIsInNjYWxlIjoxfV0/2e4da41035/Tier4ScarabBreach.png"} +{"name":"聖甲蟲:破碎裂痕","refName":"Breach Scarab of Splintering","namespace":"ITEM","tradeTag":"breach-scarab-of-splintering","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRHcmVhdGVyU2NhcmFiQnJlYWNoIiwic2NhbGUiOjF9XQ/99f8bb0c06/AltGreaterScarabBreach.png"} +{"name":"聖甲蟲:築夢裂痕","refName":"Breach Scarab of the Dreamer","namespace":"ITEM","tradeTag":"breach-scarab-of-the-dreamer","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJCcmVhY2giLCJzY2FsZSI6MX1d/d8bc60711f/NormalScarabBreach.png"} +{"name":"碎骨魔符","refName":"Breakrib Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbldoaXRlMSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8f8a4eaa88/TalismanWhite1.png"} +{"name":"硫磺鐵靴","refName":"Brimstone Treads","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[236,271]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SaXR1YWxTdHJCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/fa0ce420ed/RitualStrBoots.png","w":2,"h":2} +{"name":"闊斧","refName":"Broad Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/9cdefe9de4/OneHandAxe5.png","w":2,"h":3} +{"name":"闊劍","refName":"Broad Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/936e00e3e6/OneHandSword4.png","w":2,"h":3} +{"name":"寬矢箭袋","refName":"Broadhead Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJCcm9hZGhlYWQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5265402022/QuiverBroadhead.png","w":2,"h":3} +{"name":"青銅護手","refName":"Bronze Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[77,96]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyMyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f5896830bf/GlovesStr3.png","w":2,"h":2} +{"name":"青銅鎧甲","refName":"Bronze Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[373,429]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/ca9e30f668/BodyStr1B.png","w":2,"h":3} +{"name":"銅鍛權杖","refName":"Bronze Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyMyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/366212755a/scepter3.png","w":2,"h":3} +{"name":"青銅塔盾","refName":"Bronze Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[290,324]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/ee43ed9cee/ShieldStr5.png","w":2,"h":4} +{"name":"銅影長靴","refName":"Bronzescale Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[55,63],"ev":[55,63]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3418ad050e/BootsStrDex3.png","w":2,"h":2} +{"name":"銅影手套","refName":"Bronzescale Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[50,62],"ev":[50,62]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyRGV4MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/01471b423e/GlovesStrDex3.png","w":2,"h":2} +{"name":"鹿皮塔盾","refName":"Buckskin Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[177,209]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8d8c4e161f/ShieldStr3.png","w":2,"h":4} +{"name":"鹿皮外套","refName":"Buckskin Tunic","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[176,221]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/57409a1844/BodyDex1B.png","w":2,"h":3} +{"name":"旱地墓室","refName":"Burial Chambers Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/Wp5GF44.jpg"}} +{"name":"埋葬獎章","refName":"Burial Medallion","namespace":"ITEM","tradeTag":"burial-medallion","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXhwZWRpdGlvbi9EYW5uaWdSZXJvbGxDdXJyZW5jeSIsInNjYWxlIjoxfV0/58eed604a2/DannigRerollCurrency.png"} +{"name":"冷芒刺劍","refName":"Burnished Foil","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjMiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/11f4a8b0d0/Rapier3.png","h":4} +{"name":"冷芒刺盾","refName":"Burnished Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[62,73],"es":[13,16]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/53a98ddeac/ShieldDexInt4.png","w":2,"h":2} +{"name":"暴裂法帶","refName":"Burst Band","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQnVyc3RCYW5kTWFnaWNTdG9uZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/01e87b79d4/BurstBandMagicStone.png","w":2,"h":2} +{"name":"屠戮之斧","refName":"Butcher Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/9cdefe9de4/OneHandAxe5.png","w":2,"h":3} +{"name":"屠夫刀","refName":"Butcher Knife","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjMiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/fbc18a1b4f/Dagger3.png","h":3} +{"name":"殺戮巨劍","refName":"Butcher Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDIiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/fcaf050e0f/TwoHandSword2.png","w":2,"h":4} +{"name":"秘術法衣","refName":"Cabalist Regalia","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[75,88]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e6eb42b23a/BodyStrDexInt1C.png","w":2,"h":3} +{"name":"羈破牢籠","refName":"Cage Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/r20ygP0.jpg"}} +{"name":"火山炎口","refName":"Caldera Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/dAFd7cQ.jpg"}} +{"name":"呼喚法杖","refName":"Calling Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9Db252b2tpbmdXYW5kIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/fc10997b84/ConvokingWand.png","h":3} +{"name":"無情之面","refName":"Callous Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[122,137],"es":[25,28]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/49d89bccdb/HelmetDexInt7.png","w":2,"h":2} +{"name":"無情之面碎片","refName":"Callous Mask Piece","namespace":"ITEM","craftable":{"category":"Unique Fragment","uniqueOnly":true},"icon":"","w":1,"h":1} +{"name":"燭台聖物","refName":"Candlestick Relic","namespace":"ITEM","craftable":{"category":"Sanctum Relic"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljQmFzZTF4NCIsInciOjEsImgiOjQsInNjYWxlIjoxfV0/160debfe1b/RelicBase1x4.png","h":4} +{"name":"炙陽峽谷","refName":"Canyon Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/8BSd3du.jpg"}} +{"name":"才能長桿","refName":"Capacity Rod","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGVpc3RXYXJTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/c9454891da/HeistWarStaff.png","w":2,"h":4} +{"name":"怪談魂刃","refName":"Capricious Spiritblade","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0hlaXN0T25lSGFuZFN3b3JkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/6b56c4c406/HeistOneHandSword.png","w":2,"h":3} +{"name":"惡臭屍域","refName":"Carcass Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/bANX02j.jpg"}} +{"name":"祭者圓盾","refName":"Cardinal Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[209,240],"ev":[209,240]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/f50adf0569/ShieldStrDex4.png","w":2,"h":3} +{"name":"禁禮之甲","refName":"Carnal Armour","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[353,388],"es":[103,113]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50NEMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/99efce2041/BodyDexInt4C.png","w":2,"h":3} +{"name":"禁禮之靴","refName":"Carnal Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[99,117],"es":[20,24]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/bad1ba72df/BootsDexInt4.png","w":2,"h":2} +{"name":"禁禮護手","refName":"Carnal Mitts","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[90,101],"es":[19,21]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/060b6ea395/GlovesDexInt3.png","w":2,"h":2} +{"name":"禁禮權杖","refName":"Carnal Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/6b9c62e4c3/scepter7.png","w":2,"h":3} +{"name":"製圖釘","refName":"Cartographer's Chisel","namespace":"ITEM","tradeTag":"chisel","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lNYXBRdWFsaXR5Iiwic2NhbGUiOjF9XQ/0246313b99/CurrencyMapQuality.png"} +{"name":"製圖之譫妄玉","refName":"Cartographer's Delirium Orb","namespace":"ITEM","tradeTag":"cartographers-delirium-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJNYXBzIiwic2NhbGUiOjF9XQ/0e2be34e49/DeliriumOrbMaps.png"} +{"name":"製圖師的培育器","refName":"Cartographer's Incubator","namespace":"ITEM","tradeTag":"cartographers-incubator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uTWFwcyIsInNjYWxlIjoxfV0/3d07c20be0/IncubationMaps.png"} +{"name":"聖甲蟲:腐化製圖","refName":"Cartography Scarab of Corruption","namespace":"ITEM","tradeTag":"cartography-scarab-of-corruption","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiTWFwcyIsInNjYWxlIjoxfV0/7c589dbe02/GreaterScarabMaps.png"} +{"name":"聖甲蟲:惡化製圖","refName":"Cartography Scarab of Escalation","namespace":"ITEM","tradeTag":"cartography-scarab-of-escalation","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJNYXBzIiwic2NhbGUiOjF9XQ/e7d11bcc5b/LesserScarabMaps.png"} +{"name":"聖甲蟲:風險製圖","refName":"Cartography Scarab of Risk","namespace":"ITEM","tradeTag":"cartography-scarab-of-risk","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJNYXBzIiwic2NhbGUiOjF9XQ/b41df1ff07/NormalScarabMaps.png"} +{"name":"聖甲蟲:極寶製圖","refName":"Cartography Scarab of Singularity","namespace":"ITEM","tradeTag":"cartography-scarab-of-singularity","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHROb3JtYWxTY2FyYWJNYXBzIiwic2NhbGUiOjF9XQ/41c689bbef/AltNormalScarabMaps.png"} +{"name":"聖甲蟲:增生製圖","refName":"Cartography Scarab of the Multitude","namespace":"ITEM","tradeTag":"cartography-scarab-of-the-multitude","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHROb3JtYWxTY2FyYWJNYXBzIiwic2NhbGUiOjF9XQ/41c689bbef/AltNormalScarabMaps.png"} +{"name":"粗紋法杖","refName":"Carved Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kMyIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/6322bd53f5/Wand3.png","h":3} +{"name":"雕刻刀","refName":"Carving Knife","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjMiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/fbc18a1b4f/Dagger3.png","h":3} +{"name":"遺跡廢墟","refName":"Castle Ruins Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/aFT1RlG.jpg"}} +{"name":"貓爪刃","refName":"Cat's Paw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0a98c635d3/Claw4.png","w":2,"h":2} +{"name":"松木塔盾","refName":"Cedar Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[94,113]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d95a5bfcf0/ShieldStr4.png","w":2,"h":4} +{"name":"眾星.鐵匠的培育器","refName":"Celestial Armoursmith's Incubator","namespace":"ITEM","tradeTag":"celestial-armoursmiths-incubator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQXJtb3VyIiwic2NhbGUiOjF9XQ/8cd6cd0531/IncubationArmour.png"} +{"name":"眾星.鑄鐵的培育器","refName":"Celestial Blacksmith's Incubator","namespace":"ITEM","tradeTag":"celestial-blacksmiths-incubator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uV2VhcG9ucyIsInNjYWxlIjoxfV0/4c2bb7d249/IncubationWeapons.png"} +{"name":"眾星.珠寶匠的培育器","refName":"Celestial Jeweller's Incubator","namespace":"ITEM","tradeTag":"celestial-jewellers-incubator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uVHJpbmtldHMiLCJzY2FsZSI6MX1d/74b5811007/IncubationTrinkets.png"} +{"name":"幽魂監牢","refName":"Cells Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/ks4E8Cs.jpg"}} +{"name":"晨曦墓地","refName":"Cemetery Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/j9OPnMf.jpg"}} +{"name":"香爐聖物","refName":"Censer Relic","namespace":"ITEM","craftable":{"category":"Sanctum Relic"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljQmFzZTF4MiIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/95a2dfd60b/RelicBase1x2.png","h":2} +{"name":"血儀之斧","refName":"Ceremonial Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/5bbf95c3b4/OneHandAxe7.png","w":2,"h":3} +{"name":"祭儀鳶盾","refName":"Ceremonial Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[77,89],"es":[16,19]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/92beb951d5/ShieldStrInt5.png","w":2,"h":3} +{"name":"祭禮之錘","refName":"Ceremonial Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U3IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/84402507d1/OneHandMace7.png","w":2,"h":3} +{"name":"碧藍戒指","refName":"Cerulean Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQ2VydWxlYW5SaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/c5fe3e533c/CeruleanRing.png"} +{"name":"扣鏈腰帶","refName":"Chain Belt","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdDIiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/3a6ece4e40/Belt2.png","w":2} +{"name":"鏈甲長靴","refName":"Chain Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[11,15],"es":[3,5]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckludDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0519faf993/BootsStrInt1.png","w":2,"h":2} +{"name":"鏈甲手套","refName":"Chain Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[14,20],"es":[4,6]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RySW50MSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/5d45f8da8f/GlovesStrInt1.png","w":2,"h":2} +{"name":"鎖子長甲","refName":"Chain Hauberk","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[281,314],"es":[58,65]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5a1804c81b/BodyStrInt2C.png","w":2,"h":3} +{"name":"護體鎖甲","refName":"Chainmail Doublet","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[119,140],"es":[27,31]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2cea5723dd/BodyStrInt2B.png","w":2,"h":3} +{"name":"鏈甲外衣","refName":"Chainmail Tunic","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[48,63],"es":[13,17]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MkEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9f12486d42/BodyStrInt2A.png","w":2,"h":3} +{"name":"鎖鏈背心","refName":"Chainmail Vest","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[27,38],"es":[9,13]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MUEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5cc435caff/BodyStrInt1A.png","w":2,"h":3} +{"name":"挑戰之譫妄玉","refName":"Challenging Delirium Orb","namespace":"ITEM","tradeTag":"challenging-delirium-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJVbHRpbWF0dW0iLCJzY2FsZSI6MX1d/3e820d9958/DeliriumOrbUltimatum.png"} +{"name":"挑戰的培育器","refName":"Challenging Incubator","namespace":"ITEM","tradeTag":"challenging-incubator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uVWx0aW1hdHVtIiwic2NhbGUiOjF9XQ/ea6dbbb27e/IncubationUltimatum.png"} +{"name":"鬥士鳶盾","refName":"Champion Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[215,247],"es":[44,50]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8d673b3a1f/ShieldStrInt4.png","w":2,"h":3} +{"name":"秘密通道","refName":"Channel Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/qNjNqND.jpg"}} +{"name":"混沌石","refName":"Chaos Orb","namespace":"ITEM","tradeTag":"chaos","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lSZXJvbGxSYXJlIiwic2NhbGUiOjF9XQ/46a2347805/CurrencyRerollRare.png"} +{"name":"混沌石碎片","refName":"Chaos Shard","namespace":"ITEM","tradeTag":"chaos-shard","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2hhb3NTaGFyZCIsInNjYWxlIjoxfV0/db7041e193/ChaosShard.png"} +{"name":"查蘭之劍","refName":"Charan's Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1RoZUdvZGRlc3NVbmxlYXNoZWQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/37ecd7541b/TheGoddessUnleashed.png","w":2,"h":3} +{"name":"古堡","refName":"Chateau Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/9K7IyE3.jpg"}} +{"name":"夏烏拉裂痕石","refName":"Chayula's Breachstone","namespace":"ITEM","tradeTag":"chayulas-breachstone","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaEZyYWdtZW50c0NoYW9zIiwic2NhbGUiOjF9XQ/4c99b7dd49/BreachFragmentsChaos.png"} +{"name":"夏烏拉無暇裂痕石","refName":"Chayula's Flawless Breachstone","namespace":"ITEM","tradeTag":"chayulas-flawless-breachstone","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0NoYXl1bGFzRmxhd2xlc3NCcmVhY2hzdG9uZSIsInNjYWxlIjoxfV0/daa631766b/ChayulasFlawlessBreachstone.png"} +{"name":"開膛利刃","refName":"Chest Splitter","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/01f0e16494/OneHandAxe6.png","w":2,"h":3} +{"name":"胸甲","refName":"Chestplate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[68,89]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMkEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/33a8fe3c3f/BodyStr2A.png","w":2,"h":3} +{"name":"龍蜥鱗長靴","refName":"Chimerascale Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[176,203],"ev":[176,203]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/d5b5430d4c/BootsStrDex2.png","w":2,"h":2} +{"name":"龍蜥鱗護手","refName":"Chimerascale Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[176,176],"ev":[176,176]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyRGV4MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0bb5dd1e50/GlovesStrDex2.png","w":2,"h":2} +{"name":"魂相魔盾","refName":"Chiming Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[42,48]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4bf20f79d1/ShieldInt5.png","w":2,"h":2} +{"name":"幻色石","refName":"Chromatic Orb","namespace":"ITEM","tradeTag":"chrome","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lSZXJvbGxTb2NrZXRDb2xvdXJzIiwic2NhbGUiOjF9XQ/19c8ddae20/CurrencyRerollSocketColours.png"} +{"name":"阿茲瓦特史記","refName":"Chronicle of Atzoatl","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UZW1wbGVNYXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9be10cc6b3/TempleMap.png"} +{"name":"蟲蛹魔符","refName":"Chrysalis Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9OZXdUYWxpc21hbjIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/bf3f4938da/NewTalisman2.png"} +{"name":"城塞戰弓","refName":"Citadel Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/c064c479fa/Bow3.png","w":2,"h":4} +{"name":"壁壘地圖","refName":"Citadel Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{}} +{"name":"黃晶護身符","refName":"Citrine Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9DaXRyaW5lQW11bGV0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/95804f838b/CitrineAmulet.png"} +{"name":"危城廣場","refName":"City Square Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/dpMpwdP.jpg"}} +{"name":"環帶長靴","refName":"Clasped Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[50,57],"es":[11,12]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0c80b843d0/BootsDexInt3.png","w":2,"h":2} +{"name":"環帶護手","refName":"Clasped Mitts","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[57,65],"es":[12,14]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/060b6ea395/GlovesDexInt3.png","w":2,"h":2} +{"name":"清透油瓶","refName":"Clear Oil","namespace":"ITEM","tradeTag":"clear-oil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9DbGVhck9pbCIsInNjYWxlIjoxfV0/0a7f30cc3b/ClearOil.png"} +{"name":"切割者","refName":"Cleaver","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/451ba2cadb/OneHandAxe4.png","w":2,"h":3} +{"name":"護面盔","refName":"Close Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[130,150]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0a862ec4b2/HelmetStr4.png","w":2,"h":2} +{"name":"飾布腰帶","refName":"Cloth Belt","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdDQiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/fce1729448/Belt4.png","w":2} +{"name":"飾布腰帶碎片","refName":"Cloth Belt Piece","namespace":"ITEM","craftable":{"category":"Unique Fragment","uniqueOnly":true},"icon":""} +{"name":"雲語短靴","refName":"Cloudwhisper Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[68,78]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SaXR1YWxEZXhCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7172feff67/RitualDexBoots.png","w":2,"h":2} +{"name":"咒箍魔符","refName":"Clutching Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbkJsYWNrMyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1cd5ee74f4/TalismanBlack3.png"} +{"name":"鈷藍珠寶","refName":"Cobalt Jewel","namespace":"ITEM","craftable":{"category":"Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL2Jhc2ljaW50IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/510013aec2/basicint.png"} +{"name":"寶箱聖物","refName":"Coffer Relic","namespace":"ITEM","craftable":{"category":"Sanctum Relic"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljQmFzZTJ4MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/4d7c38a2ac/RelicBase2x2.png","w":2,"h":2} +{"name":"齒輪戒指","refName":"Cogwork Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvSGVpc3RSaW5nMSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/23b3000b81/HeistRing1.png"} +{"name":"強化長杖","refName":"Coiled Staff","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY1IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/53f1a6b438/Staff5.png","w":2,"h":4} +{"name":"纏繞法杖","refName":"Coiled Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/a28035d7c4/Wand5.png","h":3} +{"name":"寒河","refName":"Cold River Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/ld3HPg6.jpg"}} +{"name":"冷調輕盾","refName":"Cold-attuned Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[206,237]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0RleEhlaXN0U2hpZWxkIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/484b5bba00/DexHeistShield.png","w":2,"h":2} +{"name":"激戰柱廊","refName":"Colonnade Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/5uaNQwH.jpg"}} +{"name":"高階複合藥劑","refName":"Colossal Hybrid Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvaHlicmlkZmxhc2sxIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/88dca03c78/hybridflask1.png","h":2} +{"name":"高階生命藥劑","refName":"Colossal Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrNyIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/a3a05678ea/lifeflask7.png","h":2} +{"name":"高階魔力藥劑","refName":"Colossal Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrNyIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/da16d2d8c3/manaflask7.png","h":2} +{"name":"巨型塔盾","refName":"Colossal Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[522,601]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d883ad1ca2/ShieldStr6.png","w":2,"h":4} +{"name":"大決鬥場","refName":"Colosseum Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/LYXkjl8.jpg"}} +{"name":"決鬥之鎧","refName":"Colosseum Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[491,589]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/429eee131d/BodyStr2C.png","w":2,"h":3} +{"name":"巨型重錘","refName":"Colossus Mallet","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2UzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/5e536c19aa/TwoHandMace3.png","w":2,"h":4} +{"name":"指揮者鎖甲","refName":"Commander's Brigandine","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[275,325],"ev":[275,325]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/60a6d7b58c/BodyStrDex2C.png","w":2,"h":3} +{"name":"合成弓","refName":"Composite Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d7cd8910cc/Bow4.png","w":2,"h":4} +{"name":"複合戒指","refName":"Composite Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvSGVpc3RSaW5nMlNpbHZlciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/717c7a2c50/HeistRing2Silver.png"} +{"name":"複合弓","refName":"Compound Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d7cd8910cc/Bow4.png","w":2,"h":4} +{"name":"複合刺盾","refName":"Compound Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[122,144],"es":[25,30]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/36d311e1dc/ShieldDexInt3.png","w":2,"h":2} +{"name":"全面偵查報告","refName":"Comprehensive Scouting Report","namespace":"ITEM","tradeTag":"comprehensive-scouting-report","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png"} +{"name":"導管線","refName":"Conduit Line","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29uZHVpdExpbmVNYWdpY1N0b25lIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/a7c30a541b/ConduitLineMagicStone.png","w":2,"h":2} +{"name":"錐頂盔","refName":"Cone Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[38,50]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/fdb5370ecb/HelmetStr2.png","w":2,"h":2} +{"name":"匯能法杖","refName":"Congregator Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9IZWlzdFdhbmQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/4499b00066/HeistWand.png","h":3} +{"name":"咒者長靴","refName":"Conjurer Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[36,42]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5589419509/BootsInt4.png","w":2,"h":2} +{"name":"咒者手套","refName":"Conjurer Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[37,44]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/484e9bd879/GlovesInt4.png","w":2,"h":2} +{"name":"咒者長衣","refName":"Conjurer's Vestment","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[94,105]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9ea39de510/BodyInt1C.png","w":2,"h":3} +{"name":"征服者的頭盔","refName":"Conqueror's Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[501,576]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjEwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/b1e95342a8/HelmetStr10.png","w":2,"h":2} +{"name":"征戰鎖甲","refName":"Conquest Chainmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[387,445],"es":[79,91]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2cea5723dd/BodyStrInt2B.png","w":2,"h":3} +{"name":"征戰頭盔","refName":"Conquest Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[308,355],"ev":[308,355]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0884b27765/HelmetStrDex7.png","w":2,"h":2} +{"name":"征戰薄甲","refName":"Conquest Lamellar","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[723,831],"ev":[723,831]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyNEEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MSwic2VhcmluZyI6dHJ1ZSwidGFuZ2xlZCI6dHJ1ZX1d/b732d8618c/BodyStr4A.png","w":2,"h":3} +{"name":"寧逸溫房","refName":"Conservatory Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/VfVUpKT.jpg"}} +{"name":"契約書:碉堡","refName":"Contract: Bunker","namespace":"ITEM","craftable":{"category":"Heist Contract"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8262f2ca0e/ContractItem.png"} +{"name":"契約書:實驗室","refName":"Contract: Laboratory","namespace":"ITEM","craftable":{"category":"Heist Contract"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtMyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8838f281b6/ContractItem3.png"} +{"name":"契約書:官邸","refName":"Contract: Mansion","namespace":"ITEM","craftable":{"category":"Heist Contract"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtOSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/24220667d4/ContractItem9.png"} +{"name":"契約書:禁忌館藏","refName":"Contract: Prohibited Library","namespace":"ITEM","craftable":{"category":"Heist Contract"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtNSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fd1a9eb91f/ContractItem5.png"} +{"name":"契約書:紀錄室","refName":"Contract: Records Office","namespace":"ITEM","craftable":{"category":"Heist Contract"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtOCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d28f52922a/ContractItem8.png"} +{"name":"契約書:展覽室","refName":"Contract: Repository","namespace":"ITEM","craftable":{"category":"Heist Contract"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtNCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d555dbf890/ContractItem4.png"} +{"name":"契約書:走私者老巢","refName":"Contract: Smuggler's Den","namespace":"ITEM","craftable":{"category":"Heist Contract"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtMiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f755c71433/ContractItem2.png"} +{"name":"契約書:地道","refName":"Contract: Tunnels","namespace":"ITEM","craftable":{"category":"Heist Contract"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtNiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fda76bd516/ContractItem6.png"} +{"name":"契約書:地下道","refName":"Contract: Underbelly","namespace":"ITEM","craftable":{"category":"Heist Contract"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtNyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/aa8fd5bde5/ContractItem7.png"} +{"name":"召集法杖","refName":"Convening Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9Db252b2tpbmdXYW5kIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/fc10997b84/ConvokingWand.png","h":3} +{"name":"召喚法杖","refName":"Convoking Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9Db252b2tpbmdXYW5kIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/fc10997b84/ConvokingWand.png","h":3} +{"name":"銅器波刃","refName":"Copper Kris","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjYiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/5dcee0019c/Dagger6.png","h":3} +{"name":"銅鍛板甲","refName":"Copper Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[176,221]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/ca9e30f668/BodyStr1B.png","w":2,"h":3} +{"name":"青銅短劍","refName":"Copper Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDIiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/606dae9ce9/OneHandSword2.png","h":3} +{"name":"銅鍛塔盾","refName":"Copper Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[151,173]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/ee43ed9cee/ShieldStr5.png","w":2,"h":4} +{"name":"珊瑚護身符","refName":"Coral Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/fe19a0a686/Amulet2.png"} +{"name":"珊瑚戒指","refName":"Coral Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6e12710920/Ring2.png"} +{"name":"破碎堡礁","refName":"Coral Ruins Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/YI4jsqt.jpg"}} +{"name":"核心","refName":"Core Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/SCCsOxV.jpg"}} +{"name":"光耀皮甲","refName":"Coronal Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[491,579]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4M0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e30de2c7a6/BodyDex3C.png","w":2,"h":3} +{"name":"花冠重錘","refName":"Coronal Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U4IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/d7f01f7a37/TwoHandMace8.png","w":2,"h":4} +{"name":"鏽斑巨劍","refName":"Corroded Blade","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDEiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/1ba03c111f/TwoHandSword1.png","h":4} +{"name":"斑駁化石","refName":"Corroded Fossil","namespace":"ITEM","tradeTag":"corroded-fossil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvQ29ycm9kZWRGb3NzaWwiLCJzY2FsZSI6MX1d/7578bf6bab/CorrodedFossil.png"} +{"name":"斑駁塔盾","refName":"Corroded Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[36,47]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjIiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/b2c0ccc044/ShieldStr2.png","w":2,"h":4} +{"name":"波紋輕盾","refName":"Corrugated Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[227,272]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/60c6c83831/ShieldDex4.png","w":2,"h":2} +{"name":"海賊長刀","refName":"Corsair Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDMiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/0aa55ff7a1/OneHandSword3.png","h":3} +{"name":"金剛藥劑","refName":"Corundum Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvQW50aVN0dW5GbGFzayIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/4df2dac26a/AntiStunFlask.png","h":2} +{"name":"宇宙碎片","refName":"Cosmic Fragment","namespace":"ITEM","tradeTag":"cosmic-fragment","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyQm9zc0tleVNoYXBlciIsInNjYWxlIjoxfV0/719e96a82a/UberBossKeyShaper.png"} +{"name":"宇宙遺鑰","refName":"Cosmic Reliquary Key","namespace":"ITEM","tradeTag":"cosmic-reliquary-key","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TaGFwZXJGb2lsIiwic2NhbGUiOjF9XQ/5c88f39bc3/ShaperFoil.png"} +{"name":"花魁之劍","refName":"Courtesan Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjkiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/e409e11584/Rapier9.png","h":4} +{"name":"失序教院","refName":"Courthouse Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/zg9qN4K.jpg"}} +{"name":"奇術之庭","refName":"Courtyard Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/rRYcncq.jpg"}} +{"name":"疾風峽灣","refName":"Coves Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/NB7i3Mu.jpg"}} +{"name":"碎裂之錘","refName":"Crack Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvSGVpc3RPbmVIYW5kTWFjZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/48ff9d9c4c/HeistOneHandMace.png","w":2,"h":3} +{"name":"殘破殞坑","refName":"Crater Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/ffRs5qU.jpg"}} +{"name":"新月裂片","refName":"Crescent Splinter","namespace":"ITEM","tradeTag":"crescent-splinter","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXRsYXMvTWF2ZW5LZXlGcmFnbWVudCIsInNjYWxlIjoxfV0/014d46c630/MavenKeyFragment.png"} +{"name":"新月長杖","refName":"Crescent Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY4IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/edbdbaa9ba/Staff8.png","w":2,"h":4} +{"name":"榮冠塔盾","refName":"Crested Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[293,337]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/80f9f1abea/ShieldStr7.png","w":2,"h":4} +{"name":"赤紅珠寶","refName":"Crimson Jewel","namespace":"ITEM","craftable":{"category":"Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL2Jhc2ljc3RyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8129ab1f4d/basicstr.png"} +{"name":"緋紅油瓶","refName":"Crimson Oil","namespace":"ITEM","tradeTag":"crimson-oil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9Dcmltc29uT2lsIiwic2NhbGUiOjF9XQ/5e5f62ac0e/CrimsonOil.png"} +{"name":"緋紅之衣","refName":"Crimson Raiment","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[264,304],"es":[55,63]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/95329b265f/BodyDexInt1C.png","w":2,"h":3} +{"name":"緋紅圓盾","refName":"Crimson Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[155,178],"ev":[155,178]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/f50adf0569/ShieldStrDex4.png","w":2,"h":3} +{"name":"緋紅神殿","refName":"Crimson Temple Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/4731HPd.jpg"}} +{"name":"緋紅之鎮","refName":"Crimson Township Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/OOugfbm.jpg"}} +{"name":"粗製弓","refName":"Crude Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/50dd0fd6ac/Bow1.png","w":2,"h":3} +{"name":"初級感知咒術","refName":"Crude Sensing Charm","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ3J1ZGVTZW5zaW5nQ2hhcm0iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/207cf61525/CrudeSensingCharm.png","w":2,"h":2} +{"name":"低階法杖","refName":"Crude Ward","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ3J1ZGVXYXJkIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/0308021b23/CrudeWard.png","w":2,"h":2} +{"name":"聖戰長靴","refName":"Crusader Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[121,139],"es":[25,28]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e75ade3184/BootsStrInt3.png","w":2,"h":2} +{"name":"聖戰輕盾","refName":"Crusader Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[385,442]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5a38d58259/ShieldDex5.png","w":2,"h":2} +{"name":"聖戰鎖甲","refName":"Crusader Chainmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[237,266],"es":[50,55]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2cea5723dd/BodyStrInt2B.png","w":2,"h":3} +{"name":"聖戰手套","refName":"Crusader Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[121,139],"es":[25,28]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RySW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7adc65bac6/GlovesStrInt3.png","w":2,"h":2} +{"name":"聖戰之盔","refName":"Crusader Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[85,95],"es":[18,20]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f6a9c01543/HelmetStrInt4.png","w":2,"h":2} +{"name":"征戰重鎧","refName":"Crusader Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[601,691]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/c62bd1159e/BodyStr2B.png","w":2,"h":3} +{"name":"聖戰士的崇高石","refName":"Crusader's Exalted Orb","namespace":"ITEM","tradeTag":"crusaders-exalted-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5mbHVlbmNlIEV4YWx0cy9DcnVzYWRlck9yYiIsInNjYWxlIjoxfV0/8b48230188/CrusaderOrb.png"} +{"name":"粉碎力增幅錘","refName":"Crushing Force Magnifier","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvSGVpc3RUd29IYW5kTWFjZSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/ecc9c2724b/HeistTwoHandMace.png","w":2,"h":4} +{"name":"地穴戰甲","refName":"Crypt Armour","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[308,369],"es":[63,76]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50NEMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/99efce2041/BodyDexInt4C.png","w":2,"h":3} +{"name":"水晶腰帶","refName":"Crystal Belt","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQ3J5c3RhbEJlbHQiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/1e9174ec8f/CrystalBelt.png","w":2} +{"name":"紫晶礦山","refName":"Crystal Ore Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/ff3kcZI.jpg"}} +{"name":"水晶權杖","refName":"Crystal Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/c986bafb78/scepter4.png","w":2,"h":3} +{"name":"水晶法杖","refName":"Crystal Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNCIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/b505ad92e7/Wand4.png","h":3} +{"name":"惡咒陵墓","refName":"Cursed Crypt Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/hz8a9Ea.jpg"}} +{"name":"彎刃","refName":"Curved Blade","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDgiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/decb6a0e86/TwoHandSword8.png","w":2,"h":4} +{"name":"軍用長刃","refName":"Cutlass","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDMiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/0aa55ff7a1/OneHandSword3.png","h":3} +{"name":"殘殺者之裝","refName":"Cutthroat's Garb","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[530,594]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8f1d1cfaa9/BodyDex2C.png","w":2,"h":3} +{"name":"匕斧","refName":"Dagger Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlOCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/ba1d6734bb/TwoHandAxe8.png","w":2,"h":4} +{"name":"劍舞","refName":"Dancing Sword","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0FuaW1hdGVkV2VhcG9uQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/2720caa383/AnimatedWeaponCorpse.png","w":3,"h":2} +{"name":"夜語幽林","refName":"Dark Forest Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/ayyUVDP.jpg"}} +{"name":"黑暗木偶","refName":"Dark Marionette","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JvYm90TWFubmVxdWluQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/2ad85223a4/RobotMannequinCorpse.png","w":3,"h":2} +{"name":"黑暗奪魂鐮","refName":"Dark Reaper","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JlYXBlckJvc3NDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/d6c81d82f9/ReaperBossCorpse.png","w":3,"h":2} +{"name":"暗鋼鐵靴","refName":"Darksteel Treads","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[164,189]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SaXR1YWxTdHJCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/fa0ce420ed/RitualStrBoots.png","w":2,"h":2} +{"name":"烏木權杖","refName":"Darkwood Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyMiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/e3e72321e0/scepter2.png","w":2,"h":3} +{"name":"亡手魔符","refName":"Deadhand Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbldoaXRlNCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5c187331d9/TalismanWhite4.png"} +{"name":"憤怒之破空精髓","refName":"Deafening Essence of Anger","namespace":"ITEM","tradeTag":"deafening-essence-of-anger","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9BbmdlcjciLCJzY2FsZSI6MX1d/4af31038e6/Anger7.png"} +{"name":"煎熬之破空精髓","refName":"Deafening Essence of Anguish","namespace":"ITEM","tradeTag":"deafening-essence-of-anguish","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Bbmd1aXNoNyIsInNjYWxlIjoxfV0/b7bb2fa059/Anguish7.png"} +{"name":"輕視之破空精髓","refName":"Deafening Essence of Contempt","namespace":"ITEM","tradeTag":"deafening-essence-of-contempt","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Db250ZW1wdDciLCJzY2FsZSI6MX1d/b8be130237/Contempt7.png"} +{"name":"疑惑之破空精髓","refName":"Deafening Essence of Doubt","namespace":"ITEM","tradeTag":"deafening-essence-of-doubt","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Eb3VidDciLCJzY2FsZSI6MX1d/663b299868/Doubt7.png"} +{"name":"忌憚之破空精髓","refName":"Deafening Essence of Dread","namespace":"ITEM","tradeTag":"deafening-essence-of-dread","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9EcmVhZDciLCJzY2FsZSI6MX1d/5f5d022b78/Dread7.png"} +{"name":"忌妒之破空精髓","refName":"Deafening Essence of Envy","namespace":"ITEM","tradeTag":"deafening-essence-of-envy","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9FbnZ5NyIsInNjYWxlIjoxfV0/83c7610bca/Envy7.png"} +{"name":"恐懼之破空精髓","refName":"Deafening Essence of Fear","namespace":"ITEM","tradeTag":"deafening-essence-of-fear","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9GZWFyNyIsInNjYWxlIjoxfV0/0b0dcd4320/Fear7.png"} +{"name":"貪婪之破空精髓","refName":"Deafening Essence of Greed","namespace":"ITEM","tradeTag":"deafening-essence-of-greed","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVlZDciLCJzY2FsZSI6MX1d/9d7e9a3b11/Greed7.png"} +{"name":"憎恨之破空精髓","refName":"Deafening Essence of Hatred","namespace":"ITEM","tradeTag":"deafening-essence-of-hatred","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9IYXRyZWQ3Iiwic2NhbGUiOjF9XQ/a69c5c06cc/Hatred7.png"} +{"name":"厭惡之破空精髓","refName":"Deafening Essence of Loathing","namespace":"ITEM","tradeTag":"deafening-essence-of-loathing","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Mb2F0aGluZzciLCJzY2FsZSI6MX1d/67a47325e8/Loathing7.png"} +{"name":"悽慘之破空精髓","refName":"Deafening Essence of Misery","namespace":"ITEM","tradeTag":"deafening-essence-of-misery","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9NaXNlcnk3Iiwic2NhbGUiOjF9XQ/a86e9a3359/Misery7.png"} +{"name":"肆虐之破空精髓","refName":"Deafening Essence of Rage","namespace":"ITEM","tradeTag":"deafening-essence-of-rage","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9SYWdlNyIsInNjYWxlIjoxfV0/6567f7bb78/Rage7.png"} +{"name":"傲視之破空精髓","refName":"Deafening Essence of Scorn","namespace":"ITEM","tradeTag":"deafening-essence-of-scorn","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TY29ybjciLCJzY2FsZSI6MX1d/ac4ec5f480/Scorn7.png"} +{"name":"哀惜之破空精髓","refName":"Deafening Essence of Sorrow","namespace":"ITEM","tradeTag":"deafening-essence-of-sorrow","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Tb3Jyb3c3Iiwic2NhbGUiOjF9XQ/db24a92da3/Sorrow7.png"} +{"name":"刻毒之破空精髓","refName":"Deafening Essence of Spite","namespace":"ITEM","tradeTag":"deafening-essence-of-spite","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TcGl0ZTciLCJzY2FsZSI6MX1d/c26296fbeb/Spite7.png"} +{"name":"苦難之破空精髓","refName":"Deafening Essence of Suffering","namespace":"ITEM","tradeTag":"deafening-essence-of-suffering","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TdWZmZXJpbmc3Iiwic2NhbGUiOjF9XQ/e48c276341/Suffering7.png"} +{"name":"折磨之破空精髓","refName":"Deafening Essence of Torment","namespace":"ITEM","tradeTag":"deafening-essence-of-torment","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Ub3JtZW50NyIsInNjYWxlIjoxfV0/4c9779fe15/Torment7.png"} +{"name":"悲痛之破空精髓","refName":"Deafening Essence of Woe","namespace":"ITEM","tradeTag":"deafening-essence-of-woe","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Xb2U3Iiwic2NhbGUiOjF9XQ/6bb5af5409/Woe7.png"} +{"name":"雷霆之破空精髓","refName":"Deafening Essence of Wrath","namespace":"ITEM","tradeTag":"deafening-essence-of-wrath","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9XcmF0aDciLCJzY2FsZSI6MX1d/c2d8ad83fc/Wrath7.png"} +{"name":"熱情之破空精髓","refName":"Deafening Essence of Zeal","namespace":"ITEM","tradeTag":"deafening-essence-of-zeal","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9aZWFsNyIsInNjYWxlIjoxfV0/27ff3b63ea/Zeal7.png"} +{"name":"死亡之弓","refName":"Death Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzgiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8d079c60ed/Bow8.png","w":2,"h":4} +{"name":"腐朽碎片","refName":"Decaying Fragment","namespace":"ITEM","tradeTag":"decaying-fragment","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyQm9zc0tleUVsZGVyIiwic2NhbGUiOjF9XQ/42d1e96e4e/UberBossKeyElder.png"} +{"name":"腐化遺鑰","refName":"Decaying Reliquary Key","namespace":"ITEM","tradeTag":"decaying-reliquary-key","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FbGRlckZvaWwiLCJzY2FsZSI6MX1d/cbb24273c1/ElderFoil.png"} +{"name":"獵魂之弓","refName":"Decimation Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzgiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8d079c60ed/Bow8.png","w":2,"h":4} +{"name":"富貴之斧","refName":"Decorative Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/5bbf95c3b4/OneHandAxe7.png","w":2,"h":3} +{"name":"直弓","refName":"Decurve Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/c064c479fa/Bow3.png","w":2,"h":4} +{"name":"女神奉獻","refName":"Dedication to the Goddess","namespace":"ITEM","tradeTag":"offer-dedication","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9MYWJ5cmludGhIYXJ2ZXN0SW5mdXNlZDIiLCJzY2FsZSI6MX1d/31d582aac1/LabyrinthHarvestInfused2.png"} +{"name":"深淵魔符","refName":"Deep One Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbldoaXRlNSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fbd475431a/TalismanWhite5.png"} +{"name":"鹿皮短靴","refName":"Deerskin Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[74,92]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f2e9a30d4a/BootsDex3.png","w":2,"h":2} +{"name":"鹿皮手套","refName":"Deerskin Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[71,88]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/445d038f1d/GlovesDex3.png","w":2,"h":2} +{"name":"不潔教堂","refName":"Defiled Cathedral Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/rSqf91M.jpg"}} +{"name":"靈巧化石","refName":"Deft Fossil","namespace":"ITEM","tradeTag":"deft-fossil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvRW5jaGFudGVkRm9zc2lsIiwic2NhbGUiOjF9XQ/299ee9bcb8/EnchantedFossil.png"} +{"name":"弒神之面","refName":"Deicide Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[190,219],"es":[47,54]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDExIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/ff51fc2e8c/HelmetDexInt11.png","w":2,"h":2} +{"name":"譫妄偵查報告","refName":"Delirious Scouting Report","namespace":"ITEM","tradeTag":"delirious-scouting-report","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png"} +{"name":"譫妄聖甲蟲","refName":"Delirium Scarab","namespace":"ITEM","tradeTag":"delirium-scarab","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJEZWxpcml1bSIsInNjYWxlIjoxfV0/0b8b887e88/LesserScarabDelirium.png"} +{"name":"聖甲蟲:幻覺譫妄","refName":"Delirium Scarab of Delusions","namespace":"ITEM","tradeTag":"delirium-scarab-of-delusions","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkRlbGlyaXVtIiwic2NhbGUiOjF9XQ/aa8241bb6c/Tier4ScarabDelirium.png"} +{"name":"聖甲蟲:狂熱譫妄","refName":"Delirium Scarab of Mania","namespace":"ITEM","tradeTag":"delirium-scarab-of-mania","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJEZWxpcml1bSIsInNjYWxlIjoxfV0/9de6ce65c5/NormalScarabDelirium.png"} +{"name":"聖甲蟲:神經譫妄","refName":"Delirium Scarab of Neuroses","namespace":"ITEM","tradeTag":"delirium-scarab-of-neuroses","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRHcmVhdGVyU2NhcmFiRGVsaXJpdW0iLCJzY2FsZSI6MX1d/5690762715/AltGreaterScarabDelirium.png"} +{"name":"聖甲蟲:偏執譫妄","refName":"Delirium Scarab of Paranoia","namespace":"ITEM","tradeTag":"delirium-scarab-of-paranoia","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiRGVsaXJpdW0iLCJzY2FsZSI6MX1d/e6730494ae/GreaterScarabDelirium.png"} +{"name":"惡魔邪冠","refName":"Demon Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[122,140],"es":[25,29]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01hc2tDcm93biIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/dbad72643e/MaskCrown.png","w":2,"h":2} +{"name":"惡魔短匕","refName":"Demon Dagger","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjgiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/e0bade03f8/Dagger8.png","h":3} +{"name":"魔角法杖","refName":"Demon's Horn","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kMiIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/896948eee2/Wand2.png","h":3} +{"name":"稠密化石","refName":"Dense Fossil","namespace":"ITEM","tradeTag":"dense-fossil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvRGVuc2VGb3NzaWwiLCJzY2FsZSI6MX1d/ac39aaf3cd/DenseFossil.png"} +{"name":"反常卷軸","refName":"Deregulation Scroll","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9IYXJiaW5nZXJUb2tlbkhlbG0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ee0bd282eb/HarbingerTokenHelm.png"} +{"name":"荒野鎖鎧","refName":"Desert Brigandine","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[376,451],"ev":[376,451]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/cd52e7b841/BodyStrDex2B.png","w":2,"h":3} +{"name":"貧瘠之地","refName":"Desert Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/BcaiqlN.jpg"}} +{"name":"硫磺荒漠","refName":"Desert Spring Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/aDop71B.jpg"}} +{"name":"霸主巨斧","refName":"Despot Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/e2c34a0fb2/TwoHandAxe6.png","w":2,"h":4} +{"name":"命運皮甲","refName":"Destiny Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[601,721]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4M0IiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/db900972c7/BodyDex3B.png","w":2,"h":3} +{"name":"滅世法衣","refName":"Destroyer Regalia","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[109,129]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e6eb42b23a/BodyStrDexInt1C.png","w":2,"h":3} +{"name":"吞噬碎片","refName":"Devouring Fragment","namespace":"ITEM","tradeTag":"devouring-fragment","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyQm9zc0tleUVhdGVyT2ZXb3JsZHMiLCJzY2FsZSI6MX1d/6022aa0897/UberBossKeyEaterOfWorlds.png"} +{"name":"虔誠鏈甲","refName":"Devout Chainmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[302,363],"es":[62,74]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50M0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/900b4f2c03/BodyStrInt3C.png","w":2,"h":3} +{"name":"寶鑽藥劑","refName":"Diamond Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvZGlhbW9uZCIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/98bf48b8dd/diamond.png","h":2} +{"name":"寶鑽戒指","refName":"Diamond Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvRGlhbW9uZFJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d07e3dfbb6/DiamondRing.png"} +{"name":"違禁掘坑","refName":"Dig Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/E8Z9yPz.jpg"}} +{"name":"恐懼皮盔","refName":"Dire Pelt","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[431,496]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/549bc86dd9/HelmetDex4.png","w":2,"h":2} +{"name":"駁斥之斧","refName":"Disapprobation Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9IZWlzdE9uZWhhbmRBeGUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5ba95d3930/HeistOnehandAxe.png","w":2,"h":3} +{"name":"盜竊之命運聖甲蟲","refName":"Divination Scarab of Pilfering","namespace":"ITEM","tradeTag":"divination-scarab-of-pilfering","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiRGl2aW5hdGlvbiIsInNjYWxlIjoxfV0/73ab11f6bd/GreaterScarabDivination.png"} +{"name":"豐富之命運聖甲蟲","refName":"Divination Scarab of Plenty","namespace":"ITEM","tradeTag":"divination-scarab-of-plenty","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJEaXZpbmF0aW9uIiwic2NhbGUiOjF9XQ/acb5d1754a/NormalScarabDivination.png"} +{"name":"神殿廟之命運聖甲蟲","refName":"Divination Scarab of The Cloister","namespace":"ITEM","tradeTag":"divination-scarab-of-the-cloister","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJEaXZpbmF0aW9uIiwic2NhbGUiOjF9XQ/20ff060a8d/LesserScarabDivination.png"} +{"name":"神聖之冠","refName":"Divine Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[355,409],"es":[71,82]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/6ad7c513a8/HelmetStrInt9.png","w":2,"h":2} +{"name":"不朽生命藥劑","refName":"Divine Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrMTEiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/54ba3c70ae/lifeflask11.png","h":2} +{"name":"不朽魔力藥劑","refName":"Divine Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrMTEiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/9313e55ff4/manaflask11.png","h":2} +{"name":"神聖石","refName":"Divine Orb","namespace":"ITEM","tradeTag":"divine","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lNb2RWYWx1ZXMiLCJzY2FsZSI6MX1d/ec48896769/CurrencyModValues.png"} +{"name":"眾神聖器","refName":"Divine Vessel","namespace":"ITEM","tradeTag":"divine-vessel","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TaW5GbGFza0VtcHR5Iiwic2NhbGUiOjF9XQ/3a2d49608a/SinFlaskEmpty.png"} +{"name":"聖人之譫妄玉","refName":"Diviner's Delirium Orb","namespace":"ITEM","tradeTag":"diviners-delirium-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJEaXZpbmF0aW9uQ2FyZHMiLCJzY2FsZSI6MX1d/9ab37abc47/DeliriumOrbDivinationCards.png"} +{"name":"聖者的培育器","refName":"Diviner's Incubator","namespace":"ITEM","tradeTag":"diviners-incubator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRGl2aW5hdGlvbkNhcmRzIiwic2NhbGUiOjF9XQ/e14c3ef7f9/IncubationDivinationCards.png"} +{"name":"支配聖甲蟲","refName":"Domination Scarab","namespace":"ITEM","tradeTag":"domination-scarab","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJEb21pbmF0aW9uIiwic2NhbGUiOjF9XQ/76cedf832c/LesserScarabDomination.png"} +{"name":"聖甲蟲:映像支配","refName":"Domination Scarab of Apparitions","namespace":"ITEM","tradeTag":"domination-scarab-of-apparitions","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJEb21pbmF0aW9uIiwic2NhbGUiOjF9XQ/c907d44dec/NormalScarabDomination.png"} +{"name":"聖甲蟲:進化支配","refName":"Domination Scarab of Evolution","namespace":"ITEM","tradeTag":"domination-scarab-of-evolution","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiRG9taW5hdGlvbiIsInNjYWxlIjoxfV0/8913234164/GreaterScarabDomination.png"} +{"name":"聖甲蟲:惡懼支配","refName":"Domination Scarab of Terrors","namespace":"ITEM","tradeTag":"domination-scarab-of-terrors","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkRvbWluYXRpb24iLCJzY2FsZSI6MX1d/0d55e72414/Tier4ScarabDomination.png"} +{"name":"雙刃巨斧","refName":"Double Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/4b3fbfcd65/TwoHandAxe5.png","w":2,"h":4} +{"name":"雙刃爪","refName":"Double Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3OSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/84eab7e6ba/Claw9.png","w":2,"h":2} +{"name":"龍之錘","refName":"Dragon Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U5IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f2a493ef7a/OneHandMace9.png","w":2,"h":3} +{"name":"龍骨細劍","refName":"Dragonbone Rapier","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjIiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/481efcada5/Rapier2.png","h":4} +{"name":"龍鱗長靴","refName":"Dragonscale Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[121,139],"ev":[121,139]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3418ad050e/BootsStrDex3.png","w":2,"h":2} +{"name":"龍鱗護甲","refName":"Dragonscale Doublet","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[313,351],"ev":[313,351]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/d9b2da2bce/BodyStrDex1B.png","w":2,"h":3} +{"name":"龍鱗手套","refName":"Dragonscale Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[121,139],"ev":[121,139]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyRGV4MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/01471b423e/GlovesStrDex3.png","w":2,"h":2} +{"name":"騎兵軍刀","refName":"Dragoon Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjkiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/e409e11584/Rapier9.png","h":4} +{"name":"威權巨錘","refName":"Dread Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U3IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/d7e632f004/TwoHandMace7.png","w":2,"h":4} +{"name":"夢境之錘","refName":"Dream Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U4IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/57786131bb/OneHandMace8.png","w":2,"h":3} +{"name":"幻夢之尋便鞋","refName":"Dreamquest Slippers","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[50,57]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SaXR1YWxJbnRCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/dfe31cc493/RitualIntBoots.png","w":2,"h":2} +{"name":"朽木之棒","refName":"Driftwood Club","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2UxIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/e51d4ef68d/OneHandMace1.png","h":3} +{"name":"朽木巨錘","refName":"Driftwood Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2UxIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/5977f27334/TwoHandMace1.png","w":2,"h":4} +{"name":"朽木權杖","refName":"Driftwood Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyMSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/4b2438446d/scepter1.png","h":3} +{"name":"朽木刺盾","refName":"Driftwood Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[46,60],"es":[11,15]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/db9355404e/ShieldDexInt2.png","w":2,"h":2} +{"name":"朽木法杖","refName":"Driftwood Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kMSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/899dabeaf1/Wand1.png","h":3} +{"name":"圖拉克斯刻紋","refName":"Drox's Crest","namespace":"ITEM","tradeTag":"droxs-crest","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9XYXJsb3JkRnJhZ21lbnQiLCJzY2FsZSI6MX1d/3d735a8303/WarlordFragment.png"} +{"name":"德魯伊鍊金師","refName":"Druidic Alchemist","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Rhd2hvYU1lZGljaW5lV29tYW5Db3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/a446a2f4d0/TawhoaMedicineWomanCorpse.png","w":3,"h":2} +{"name":"乾海","refName":"Dry Sea Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/JGfVZsB.jpg"}} +{"name":"暮色沙丘","refName":"Dunes Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/88Gm4iq.jpg"}} +{"name":"禁魂炎獄","refName":"Dungeon Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/GRI8xIf.jpg"}} +{"name":"暮色之刃","refName":"Dusk Blade","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDgiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/406f7aec97/OneHandSword8.png","w":2,"h":3} +{"name":"暮色之行便鞋","refName":"Duskwalk Slippers","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[15,18]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SaXR1YWxJbnRCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/dfe31cc493/RitualIntBoots.png","w":2,"h":2} +{"name":"鷹爪刃","refName":"Eagle Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3OCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/3cc3260177/Claw8.png","w":2,"h":2} +{"name":"烏木塔盾","refName":"Ebony Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[357,411]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d95a5bfcf0/ShieldStr4.png","w":2,"h":4} +{"name":"月蝕長杖","refName":"Eclipse Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY4IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/edbdbaa9ba/Staff8.png","w":2,"h":4} +{"name":"鰻皮短靴","refName":"Eelskin Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[129,148]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/37d9d4d590/BootsDex2.png","w":2,"h":2} +{"name":"鰻皮手套","refName":"Eelskin Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[125,148]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/b051b2c9f5/GlovesDex2.png","w":2,"h":2} +{"name":"鰻皮鞋底","refName":"Eelskin Sole","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRWVsc2tpblNvbGUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/38cd92718b/EelskinSole.png","w":2,"h":2} +{"name":"鰻皮之衣","refName":"Eelskin Tunic","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[373,429]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/57409a1844/BodyDex1B.png","w":2,"h":3} +{"name":"埃哈的記憶","refName":"Einhar's Memory","namespace":"ITEM","craftable":{"category":"Memory Line"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWVtb3J5TGluZS9FaW5oYXJNZW1vcnlJdGVtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5e4c7a8f89/EinharMemoryItem.png"} +{"name":"智者長劍","refName":"Elder Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDYiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/c12083d6b6/OneHandSword6.png","w":2,"h":3} +{"name":"異能混沌石","refName":"Eldritch Chaos Orb","namespace":"ITEM","tradeTag":"eldritch-chaos-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRWxkcml0Y2hDaGFvc09yYiIsInNjYWxlIjoxfV0/98091fc653/EldritchChaosOrb.png"} +{"name":"異能崇高石","refName":"Eldritch Exalted Orb","namespace":"ITEM","tradeTag":"eldritch-exalted-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRWxkcml0Y2hFeGFsdGVkT3JiIiwic2NhbGUiOjF9XQ/2da131e652/EldritchExaltedOrb.png"} +{"name":"異能之眼","refName":"Eldritch Eye","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0VsZGVyVGVudGFjbGVNaW5pb25MYXJnZUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/19b67ee9a1/ElderTentacleMinionLargeCorpse.png","w":3,"h":2} +{"name":"異界尊師的培育器","refName":"Eldritch Incubator","namespace":"ITEM","tradeTag":"eldritch-incubator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uTWFwcyIsInNjYWxlIjoxfV0/3d07c20be0/IncubationMaps.png"} +{"name":"異能無效石","refName":"Eldritch Orb of Annulment","namespace":"ITEM","tradeTag":"eldritch-orb-of-annulment","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRWxkcml0Y2hBbm51bG1lbnRPcmIiLCJzY2FsZSI6MX1d/b58add03eb/EldritchAnnulmentOrb.png"} +{"name":"電擊卷軸","refName":"Electroshock Scroll","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9IYXJiaW5nZXJUb2tlblN3b3JkIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/e3cec18702/HarbingerTokenSword.png"} +{"name":"貴族細劍","refName":"Elegant Foil","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjciLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/97d714e903/Rapier7.png","h":4} +{"name":"權貴環甲","refName":"Elegant Ringmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[377,433],"es":[92,105]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/3247afb396/BodyStrInt1C.png","w":2,"h":3} +{"name":"權貴圓盾","refName":"Elegant Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[148,170],"ev":[148,170]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/b81ab44241/ShieldStrDex5.png","w":2,"h":3} +{"name":"貴族之劍","refName":"Elegant Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDciLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9ac21989c5/OneHandSword7.png","w":2,"h":3} +{"name":"刺繡手套","refName":"Embroidered Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[25,28]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/484e9bd879/GlovesInt4.png","w":2,"h":2} +{"name":"琺瑯胸針","refName":"Enamel Brooch","namespace":"ITEM","craftable":{"category":"Heist Brooch"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRW5hbWVsQnJvb2NoIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/0d1e9c956e/EnamelBrooch.png"} +{"name":"釉彩輕盾","refName":"Enameled Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[311,349]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/10a005f978/ShieldDex3.png","w":2,"h":2} +{"name":"附魔的培育器","refName":"Enchanted Incubator","namespace":"ITEM","tradeTag":"enchanted-incubator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uTGFieXJpbnRoIiwic2NhbGUiOjF9XQ/755a289f04/IncubationLabyrinth.png"} +{"name":"熱力輕盾","refName":"Endothermic Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[75,86]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0RleEhlaXN0U2hpZWxkIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/484b5bba00/DexHeistShield.png","w":2,"h":2} +{"name":"工程石","refName":"Engineer's Orb","namespace":"ITEM","tradeTag":"engineers","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRW5naW5lZXJzT3JiIiwic2NhbGUiOjF9XQ/114b671d41/EngineersOrb.png"} +{"name":"工程石碎片","refName":"Engineer's Shard","namespace":"ITEM","tradeTag":"engineers-shard","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRW5naW5lZXJzU2hhcmQiLCJzY2FsZSI6MX1d/9fe1384ff9/EngineersShard.png"} +{"name":"符文巨劍","refName":"Engraved Greatsword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/828ca9e450/TwoHandSword5.png","w":2,"h":4} +{"name":"雕文戰斧","refName":"Engraved Hatchet","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlOSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/8f1da4998f/OneHandAxe9.png","w":2,"h":3} +{"name":"刻劃最後通牒","refName":"Engraved Ultimatum","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{}} +{"name":"符文法杖","refName":"Engraved Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kMyIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/6322bd53f5/Wand3.png","h":3} +{"name":"點燃石","refName":"Enkindling Orb","namespace":"ITEM","tradeTag":"enkindling-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXhwZWRpdGlvbi9GbGFza1BsYXRlIiwic2NhbGUiOjF9XQ/7c1a584a8d/FlaskPlate.png"} +{"name":"艾許裂痕石","refName":"Esh's Breachstone","namespace":"ITEM","tradeTag":"eshs-breachstone","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaEZyYWdtZW50c0xpZ2h0bmluZyIsInNjYWxlIjoxfV0/a281438d22/BreachFragmentsLightning.png"} +{"name":"艾許無暇裂痕石","refName":"Esh's Flawless Breachstone","namespace":"ITEM","tradeTag":"eshs-flawless-breachstone","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0VzaHNGbGF3bGVzc0JyZWFjaHN0b25lIiwic2NhbGUiOjF9XQ/bd6b28f988/EshsFlawlessBreachstone.png"} +{"name":"間諜偽裝套組","refName":"Espionage Disguise Kit","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvUmVnaWNpZGVEaXNndWlzZUtpdCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/e52bff7d39/RegicideDisguiseKit.png","w":2,"h":2} +{"name":"譫妄精髓","refName":"Essence of Delirium","namespace":"ITEM","tradeTag":"essence-of-delirium","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9NYWRuZXNzMSIsInNjYWxlIjoxfV0/e7a9b32a18/Madness1.png"} +{"name":"極恐精髓","refName":"Essence of Horror","namespace":"ITEM","tradeTag":"essence-of-horror","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Ib3Jyb3IxIiwic2NhbGUiOjF9XQ/8be6722c5e/Horror1.png"} +{"name":"浮誇精髓","refName":"Essence of Hysteria","namespace":"ITEM","tradeTag":"essence-of-hysteria","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9UZXJyb3IxIiwic2NhbGUiOjF9XQ/10ab1f6037/Terror1.png"} +{"name":"錯亂精髓","refName":"Essence of Insanity","namespace":"ITEM","tradeTag":"essence-of-insanity","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9JbnNhbml0eTEiLCJzY2FsZSI6MX1d/8086f1f3e5/Insanity1.png"} +{"name":"精髓聖甲蟲","refName":"Essence Scarab","namespace":"ITEM","tradeTag":"essence-scarab","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJFc3NlbmNlIiwic2NhbGUiOjF9XQ/4c99af0610/LesserScarabEssence.png"} +{"name":"聖甲蟲:適性精髓","refName":"Essence Scarab of Adaptation","namespace":"ITEM","tradeTag":"essence-scarab-of-adaptation","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRUaWVyNFNjYXJhYkVzc2VuY2UiLCJzY2FsZSI6MX1d/56560d691e/AltTier4ScarabEssence.png"} +{"name":"聖甲蟲:上升精髓","refName":"Essence Scarab of Ascent","namespace":"ITEM","tradeTag":"essence-scarab-of-ascent","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJFc3NlbmNlIiwic2NhbGUiOjF9XQ/3a091b8052/NormalScarabEssence.png"} +{"name":"聖甲蟲:鈣化精髓","refName":"Essence Scarab of Calcification","namespace":"ITEM","tradeTag":"essence-scarab-of-calcification","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkVzc2VuY2UiLCJzY2FsZSI6MX1d/d7e7534a07/Tier4ScarabEssence.png"} +{"name":"聖甲蟲:穩定精髓","refName":"Essence Scarab of Stability","namespace":"ITEM","tradeTag":"essence-scarab-of-stability","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiRXNzZW5jZSIsInNjYWxlIjoxfV0/28e74041a5/GreaterScarabEssence.png"} +{"name":"基礎鑰匙圈","refName":"Essential Keyring","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRXNzZW50aWFsS2V5cmluZyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/03fd96aa15/EssentialKeyring.png","w":2,"h":2} +{"name":"穿甲刺劍","refName":"Estoc","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjQiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/dc28604809/Rapier4.png","h":4} +{"name":"熔火岩灘","refName":"Estuary Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/LNLcK2Z.jpg"}} +{"name":"術雕巨劍","refName":"Etched Greatsword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/828ca9e450/TwoHandSword5.png","w":2,"h":4} +{"name":"蝕刻戰斧","refName":"Etched Hatchet","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlOSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/8f1da4998f/OneHandAxe9.png","w":2,"h":3} +{"name":"刻文鳶盾","refName":"Etched Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[127,142],"es":[27,30]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/996436dc6d/ShieldStrInt2.png","w":2,"h":3} +{"name":"永恆堅盔","refName":"Eternal Burgonet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[373,429]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjExIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/d288bbe11b/HelmetStr11.png","w":2,"h":2} +{"name":"永恆生命藥劑","refName":"Eternal Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrMTIiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/7be2c09015/lifeflask12.png","h":2} +{"name":"永恆魔力藥劑","refName":"Eternal Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrMTIiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/6146902646/manaflask12.png","h":2} +{"name":"永恆之劍","refName":"Eternal Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDciLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9ac21989c5/OneHandSword7.png","w":2,"h":3} +{"name":"萬能長桿","refName":"Eventuality Rod","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGVpc3RXYXJTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/c9454891da/HeistWarStaff.png","w":2,"h":4} +{"name":"崇高石","refName":"Exalted Orb","namespace":"ITEM","tradeTag":"exalted","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lBZGRNb2RUb1JhcmUiLCJzY2FsZSI6MX1d/33f2656aea/CurrencyAddModToRare.png"} +{"name":"崇高石碎片","refName":"Exalted Shard","namespace":"ITEM","tradeTag":"exalted-shard","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXhhbHRlZFNoYXJkIiwic2NhbGUiOjF9XQ/b9e4013af5/ExaltedShard.png"} +{"name":"挖掘場","refName":"Excavation Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/A3E80Du.jpg"}} +{"name":"卓越異能灰燼","refName":"Exceptional Eldritch Ember","namespace":"ITEM","tradeTag":"exceptional-eldritch-ember","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2xlYW5zaW5nRmlyZU9yYlJhbms0Iiwic2NhbGUiOjF9XQ/c2c828fa16/CleansingFireOrbRank4.png"} +{"name":"卓越異能靈液","refName":"Exceptional Eldritch Ichor","namespace":"ITEM","tradeTag":"exceptional-eldritch-ichor","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVGFuZ2xlT3JiUmFuazQiLCJzY2FsZSI6MX1d/dcf73ecd8e/TangleOrbRank4.png"} +{"name":"力竭魔盾","refName":"Exhausting Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[16,19]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0ludEhlaXN0U2hpZWxkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f58639d2f4/IntHeistShield.png","w":2,"h":3} +{"name":"熱氣塔盾","refName":"Exothermic Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[87,100]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0hlaXN0U2hpZWxkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/e65fb9efea/HeistShield.png","w":2,"h":3} +{"name":"異域幣鑄","refName":"Exotic Coinage","namespace":"ITEM","tradeTag":"exotic-coinage","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXhwZWRpdGlvbi9CYXJ0ZXJSZWZyZXNoQ3VycmVuY3kiLCJzY2FsZSI6MX1d/0542d74d3c/BarterRefreshCurrency.png"} +{"name":"探險日誌","refName":"Expedition Logbook","namespace":"ITEM","craftable":{"category":"Expedition Logbook"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FeHBlZGl0aW9uQ2hyb25pY2xlMyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/2802fe605e/ExpeditionChronicle3.png"} +{"name":"探險聖甲蟲","refName":"Expedition Scarab","namespace":"ITEM","tradeTag":"expedition-scarab","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJFeHBlZGl0aW9uIiwic2NhbGUiOjF9XQ/fa49f53ac8/LesserScarabExpedition.png"} +{"name":"聖甲蟲:考古探險","refName":"Expedition Scarab of Archaeology","namespace":"ITEM","tradeTag":"expedition-scarab-of-archaeology","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkV4cGVkaXRpb24iLCJzY2FsZSI6MX1d/6bd03eec75/Tier4ScarabExpedition.png"} +{"name":"聖甲蟲:尋符探險","refName":"Expedition Scarab of Runefinding","namespace":"ITEM","tradeTag":"expedition-scarab-of-runefinding","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJFeHBlZGl0aW9uIiwic2NhbGUiOjF9XQ/a751f91a8e/NormalScarabExpedition.png"} +{"name":"聖甲蟲:詩人探險","refName":"Expedition Scarab of the Skald","namespace":"ITEM","tradeTag":"expedition-scarab-of-the-skald","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRHcmVhdGVyU2NhcmFiRXhwZWRpdGlvbiIsInNjYWxlIjoxfV0/cbeb3c974b/AltGreaterScarabExpedition.png"} +{"name":"聖甲蟲:維里西姆粉末探險","refName":"Expedition Scarab of Verisium Powder","namespace":"ITEM","tradeTag":"expedition-scarab-of-verisium-powder","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiRXhwZWRpdGlvbiIsInNjYWxlIjoxfV0/1bf78dd20a/GreaterScarabExpedition.png"} +{"name":"探險家偵查報告","refName":"Explorer's Scouting Report","namespace":"ITEM","tradeTag":"explorers-scouting-report","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png"} +{"name":"精緻之刃","refName":"Exquisite Blade","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDgiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/decb6a0e86/TwoHandSword8.png","w":2,"h":4} +{"name":"精製皮甲","refName":"Exquisite Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[704,810]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/47360dcc4a/BodyDex1C.png","w":2,"h":3} +{"name":"刺眼鉤","refName":"Eye Gouger","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/1d5586ea56/Claw5.png","w":2,"h":2} +{"name":"艾茲麥巨斧","refName":"Ezomyte Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/24ac93d9cd/TwoHandAxe4.png","w":2,"h":4} +{"name":"艾茲麥巨劍","refName":"Ezomyte Blade","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/294bd80312/TwoHandSword4.png","w":2,"h":4} +{"name":"艾茲麥堅盔","refName":"Ezomyte Burgonet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[346,381]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/b814dc309a/HelmetStr9.png","w":2,"h":2} +{"name":"艾茲麥短匕","refName":"Ezomyte Dagger","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjUiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/3431875aaf/Dagger5.png","h":3} +{"name":"艾茲麥刺盾","refName":"Ezomyte Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[181,209],"es":[37,43]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/36d311e1dc/ShieldDexInt3.png","w":2,"h":2} +{"name":"艾茲麥長杖","refName":"Ezomyte Staff","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY0IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/85c22bd16b/Staff4.png","w":2,"h":4} +{"name":"艾茲麥塔盾","refName":"Ezomyte Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[412,474]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/ee43ed9cee/ShieldStr5.png","w":2,"h":4} +{"name":"雕琢化石","refName":"Faceted Fossil","namespace":"ITEM","tradeTag":"faceted-fossil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvRmFjZXRlZEZvc3NpbCIsInNjYWxlIjoxfV0/473889cafb/FacetedFossil.png"} +{"name":"費斯特之鏡","refName":"Facetor's Lens","namespace":"ITEM","tradeTag":"facetors","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lHZW1FeHBlcmllbmNlIiwic2NhbGUiOjF9XQ/7011b1ed48/CurrencyGemExperience.png"} +{"name":"鐵鏽工廠","refName":"Factory Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/zOsCvpG.jpg"}} +{"name":"信仰頭盔","refName":"Faithful Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[268,308],"es":[54,62]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f6a9c01543/HelmetStrInt4.png","w":2,"h":2} +{"name":"家庭契約書","refName":"Familial Contract","namespace":"ITEM","craftable":{"uniqueOnly":true,"category":"Heist Contract"},"icon":""} +{"name":"華麗細劍","refName":"Fancy Foil","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjciLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/97d714e903/Rapier7.png","h":4} +{"name":"齒鯊魔符","refName":"Fangjaw Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbkJsYWNrNSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/48fab16b73/TalismanBlack5.png"} +{"name":"獸角法杖","refName":"Faun's Horn","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kMiIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/896948eee2/Wand2.png","h":3} +{"name":"羽翼箭袋","refName":"Feathered Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9GZWF0aGVyZWRBcnJvd1F1aXZlciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/76aab0d0b0/FeatheredArrowQuiver.png","w":2,"h":3} +{"name":"擊劍士之盔","refName":"Fencer Helm","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[117,134],"ev":[117,134]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/07fb25d634/HelmetStrDex6.png","w":2,"h":2} +{"name":"狂野的培育器","refName":"Feral Incubator","namespace":"ITEM","tradeTag":"feral-incubator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQmVzdGlhcnkiLCJzY2FsZSI6MX1d/7c98be601d/IncubationBestiary.png"} +{"name":"富饒的催化劑","refName":"Fertile Catalyst","namespace":"ITEM","tradeTag":"fertile-catalyst","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL0ZlcnRpbGVDYXRhbHlzdCIsInNjYWxlIjoxfV0/74603722ac/FertileCatalyst.png"} +{"name":"節慶之面","refName":"Festival Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[77,88],"es":[17,19]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/bfdfda111a/HelmetDexInt4.png","w":2,"h":2} +{"name":"非命魂刃","refName":"Fickle Spiritblade","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0hlaXN0T25lSGFuZFN3b3JkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/6b56c4c406/HeistOneHandSword.png","w":2,"h":3} +{"name":"野戰薄甲","refName":"Field Lamellar","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[194,223],"ev":[194,223]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyNEEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/7e1c29aacf/BodyStr4A.png","w":2,"h":3} +{"name":"無疆田野","refName":"Fields Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/ZBYW0jj.jpg"}} +{"name":"妖魔短匕","refName":"Fiend Dagger","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjgiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/e0bade03f8/Dagger8.png","h":3} +{"name":"烈焰食人族","refName":"Fiery Cannibal","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0ZpcmVGdXJ5Q29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/458c4ab871/FireFuryCorpse.png","w":3,"h":2} +{"name":"精良之譫妄玉","refName":"Fine Delirium Orb","namespace":"ITEM","tradeTag":"fine-delirium-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJDdXJyZW5jeSIsInNjYWxlIjoxfV0/a0ccb93233/DeliriumOrbCurrency.png"} +{"name":"精緻的培育器","refName":"Fine Incubator","namespace":"ITEM","tradeTag":"fine-incubator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQ3VycmVuY3kiLCJzY2FsZSI6MX1d/e8a6d32623/IncubationCurrency.png"} +{"name":"精良鎖撬","refName":"Fine Lockpick","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRmluZUxvY2twaWNrIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/c894ea53b2/FineLockpick.png","w":2,"h":2} +{"name":"精良感知咒術","refName":"Fine Sensing Charm","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRmluZVNlbnNpbmdDaGFybSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/5725075134/FineSensingCharm.png","w":2,"h":2} +{"name":"精良磨刀石","refName":"Fine Sharpening Stone","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRmluZVNoYXJwZW5pbmdTdG9uZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/eee568b5c8/FineSharpeningStone.png","w":2,"h":2} +{"name":"魔指手套","refName":"Fingerless Silk Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[45,52]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRmluZ2VybGVzc1NpbGtHbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/8853f1e934/FingerlessSilkGloves.png","w":2,"h":2} +{"name":"杉木圓盾","refName":"Fir Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[29,37],"ev":[29,37]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9cccab30a2/ShieldStrDex2.png","w":2,"h":3} +{"name":"火靈箭袋","refName":"Fire Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJGaXJlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/0537b8437d/QuiverFire.png","w":2,"h":3} +{"name":"魚竿","refName":"Fishing Rod","namespace":"ITEM","craftable":{"category":"Fishing Rod"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9GaXNoaW5nUm9kcy9GaXNoaW5nUm9kMSIsInciOjEsImgiOjQsInNjYWxlIjoxfV0/d2a4a8b57a/FishingRod1.png","h":4} +{"name":"魚鱗手套","refName":"Fishscale Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[9,12],"ev":[9,12]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyRGV4MSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ba243000da/GlovesStrDex1.png","w":2,"h":2} +{"name":"法蘭箭矢","refName":"Flanged Arrowhead","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQXJyb3doZWFkRmxhbmdlZCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/2f2fd20710/ArrowheadFlanged.png","w":2,"h":2} +{"name":"法蘭鑽頭","refName":"Flanged Drill","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRHJpbGxBZHYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/bf2c8d3b0b/DrillAdv.png","w":2,"h":2} +{"name":"護體之錘","refName":"Flanged Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U2IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/a2a18837d4/OneHandMace6.png","w":2,"h":3} +{"name":"閃耀之錘","refName":"Flare Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvSGVpc3RPbmVIYW5kTWFjZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/48ff9d9c4c/HeistOneHandMace.png","w":2,"h":3} +{"name":"瞬炎之刃","refName":"Flashfire Blade","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0hlaXN0UnVuZURhZ2dlciIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/1760d17051/HeistRuneDagger.png","h":3} +{"name":"殘體利刃","refName":"Flaying Knife","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjIiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/c2c0a06eec/Dagger2.png","h":3} +{"name":"裂肉者","refName":"Fleshripper","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlOCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/ba1d6734bb/TwoHandAxe8.png","w":2,"h":4} +{"name":"閃火之刃","refName":"Flickerflame Blade","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0hlaXN0UnVuZURhZ2dlciIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/1760d17051/HeistRuneDagger.png","h":3} +{"name":"洪災礦坑","refName":"Flooded Mine Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/RYNfkXJ.jpg"}} +{"name":"全罩戰盔","refName":"Fluted Bascinet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[160,189],"ev":[160,189]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/cc388acb00/HelmetStrDex8.png","w":2,"h":2} +{"name":"聚焦石","refName":"Focal Stone","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRm9jYWxNYWdpY1N0b25lIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/65ffdbcd59/FocalMagicStone.png","w":2,"h":2} +{"name":"專注護身符","refName":"Focused Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9IZWlzdEFtdWxldDFTaWx2ZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MSwiZWxkZXIiOnRydWV9XQ/2795ad9a97/HeistAmulet1Silver.png"} +{"name":"箔片胸針","refName":"Foliate Brooch","namespace":"ITEM","craftable":{"category":"Heist Brooch"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRm9saWF0ZUJyb29jaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/72a57eb200/FoliateBrooch.png"} +{"name":"士兵巨劍","refName":"Footman Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/28f44a7a0c/TwoHandSword3.png","w":2,"h":4} +{"name":"禁忌契約書","refName":"Forbidden Contract","namespace":"ITEM","craftable":{"uniqueOnly":true,"category":"Heist Contract"},"icon":""} +{"name":"禁忌之書","refName":"Forbidden Tome","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2FuY3R1bS9TYW5jdHVtS2V5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d0326cac9a/SanctumKey.png"} +{"name":"禁忌之森","refName":"Forbidden Woods Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/5Jl2OoA.jpg"}} +{"name":"預感之譫妄玉","refName":"Foreboding Delirium Orb","namespace":"ITEM","tradeTag":"foreboding-delirium-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJIYXJiaW5nZXIiLCJzY2FsZSI6MX1d/a10060782a/DeliriumOrbHarbinger.png"} +{"name":"預示的培育器","refName":"Foreboding Incubator","namespace":"ITEM","tradeTag":"foreboding-incubator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uSGFyYmluZ2VyIiwic2NhbGUiOjF9XQ/11f4bcf0ee/IncubationHarbinger.png"} +{"name":"森林猛虎","refName":"Forest Tiger","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1RpZ2VyQmVzdGlhcnlTcGlyaXRCb3NzQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/6a46a7dc19/TigerBestiarySpiritBossCorpse.png","w":3,"h":2} +{"name":"森林戰士","refName":"Forest Warrior","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zpa2luZ01hcEJvc3NDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/cc6f33141d/VikingMapBossCorpse.png","w":3,"h":2} +{"name":"火鳳凰熔核","refName":"Forge of the Phoenix Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhczJNYXBzL05ldy9QaG9lbml4IiwidyI6MSwiaCI6MSwic2NhbGUiOjEsIm1uIjoxNCwibXQiOjAsIm1pIjoxfV0/b71e695513/Phoenix.png","map":{"screenshot":"https://i.imgur.com/Oiqrl9M.jpg"}} +{"name":"遺忘遺鑰","refName":"Forgotten Reliquary Key","namespace":"ITEM","tradeTag":"forgotten-reliquary-key","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WZW5hcml1c0ZvaWwiLCJzY2FsZSI6MX1d/ba2d66a470/VenariusFoil.png"} +{"name":"岔河","refName":"Forking River Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/KLlqoMv.jpg"}} +{"name":"堡壘地圖","refName":"Fortress Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{}} +{"name":"石化之譫妄玉","refName":"Fossilised Delirium Orb","namespace":"ITEM","tradeTag":"fossilised-delirium-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJGb3NzaWxzIiwic2NhbGUiOjF9XQ/ce824132c2/DeliriumOrbFossils.png"} +{"name":"化石的培育器","refName":"Fossilised Incubator","namespace":"ITEM","tradeTag":"fossilised-incubator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRm9zc2lscyIsInNjYWxlIjoxfV0/bb7663432d/IncubationFossils.png"} +{"name":"石化魔盾","refName":"Fossilised Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[49,55]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f0b78ea97c/ShieldInt3.png","w":2,"h":2} +{"name":"惡靈長杖","refName":"Foul Staff","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY3IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/c1ded974d5/Staff7.png","w":2,"h":4} +{"name":"鑄造之弓","refName":"Foundry Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0hlaXN0Qm93RmlyZSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/30526435da/HeistBowFire.png","w":2,"h":4} +{"name":"鍊金房","refName":"Foundry Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/EeefLOA.jpg"}} +{"name":"湖皮鞋底","refName":"Foxhide Sole","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRm94aGlkZVNvbGUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/55215f9d79/FoxhideSole.png","w":2,"h":2} +{"name":"破裂化石","refName":"Fractured Fossil","namespace":"ITEM","tradeTag":"fractured-fossil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvRnJhY3R1cmVkRm9zc2lsIiwic2NhbGUiOjF9XQ/328d2256ce/FracturedFossil.png"} +{"name":"破裂石","refName":"Fracturing Orb","namespace":"ITEM","tradeTag":"fracturing-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRnJhY3R1cmluZ09yYkNvbWJpbmVkIiwic2NhbGUiOjF9XQ/3fb18e8a5b/FracturingOrbCombined.png"} +{"name":"破裂石碎片","refName":"Fracturing Shard","namespace":"ITEM","tradeTag":"fracturing-shard","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRnJhY3R1cmluZ09yYlNoYXJkIiwic2NhbGUiOjF9XQ/34fdc6a813/FracturingOrbShard.png"} +{"name":"干擾斷片","refName":"Fragment of Constriction","namespace":"ITEM","tradeTag":"fragment-of-constriction","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcEd1YXJkaWFuSG9seSIsInNjYWxlIjoxfV0/b9ef66f983/AtlasMapGuardianHoly.png"} +{"name":"空虛斷片","refName":"Fragment of Emptiness","namespace":"ITEM","tradeTag":"fragment-of-emptiness","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyRWxkZXIwMiIsInNjYWxlIjoxfV0/085f7abd0b/UberElder02.png"} +{"name":"奴役斷片","refName":"Fragment of Enslavement","namespace":"ITEM","tradeTag":"fragment-of-enslavement","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcEd1YXJkaWFuRmlyZSIsInNjYWxlIjoxfV0/7497ffd64d/AtlasMapGuardianFire.png"} +{"name":"根除斷片","refName":"Fragment of Eradication","namespace":"ITEM","tradeTag":"fragment-of-eradication","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcEd1YXJkaWFuTGlnaHRuaW5nIiwic2NhbGUiOjF9XQ/e6e792e80e/AtlasMapGuardianLightning.png"} +{"name":"智慧斷片","refName":"Fragment of Knowledge","namespace":"ITEM","tradeTag":"fragment-of-knowledge","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyRWxkZXIwNCIsInNjYWxlIjoxfV0/096ec774b0/UberElder04.png"} +{"name":"淨化斷片","refName":"Fragment of Purification","namespace":"ITEM","tradeTag":"fragment-of-purification","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcEd1YXJkaWFuQ2hhb3MiLCJzY2FsZSI6MX1d/7938e7a7ee/AtlasMapGuardianChaos.png"} +{"name":"雕塑斷片","refName":"Fragment of Shape","namespace":"ITEM","tradeTag":"fragment-of-shape","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyRWxkZXIwMyIsInNjYWxlIjoxfV0/4a8c196777/UberElder03.png"} +{"name":"恐懼斷片","refName":"Fragment of Terror","namespace":"ITEM","tradeTag":"fragment-of-terror","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyRWxkZXIwMSIsInNjYWxlIjoxfV0/322988dd38/UberElder01.png"} +{"name":"奇美拉斷片","refName":"Fragment of the Chimera","namespace":"ITEM","tradeTag":"chimer","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcHMvRnJhZ21lbnRDaGltZXJhIiwic2NhbGUiOjF9XQ/191b838e55/FragmentChimera.png"} +{"name":"九頭蛇斷片","refName":"Fragment of the Hydra","namespace":"ITEM","tradeTag":"hydra","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcHMvRnJhZ21lbnRIeWRyYSIsInNjYWxlIjoxfV0/975dcd6b1c/FragmentHydra.png"} +{"name":"牛頭斷片","refName":"Fragment of the Minotaur","namespace":"ITEM","tradeTag":"minot","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcHMvRnJhZ21lbnRNaW5vdGF1ciIsInNjYWxlIjoxfV0/e976236f7a/FragmentMinotaur.png"} +{"name":"鳳凰斷片","refName":"Fragment of the Phoenix","namespace":"ITEM","tradeTag":"phoenix","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcHMvRnJhZ21lbnRQaG9lbml4Iiwic2NhbGUiOjF9XQ/3091d971ad/FragmentPhoenix.png"} +{"name":"碎片卷軸","refName":"Fragmentation Scroll","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9IYXJiaW5nZXJUb2tlblF1aXZlciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a6017fd37d/HarbingerTokenQuiver.png"} +{"name":"碎片之譫妄玉","refName":"Fragmented Delirium Orb","namespace":"ITEM","tradeTag":"fragmented-delirium-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJGcmFnbWVudHMiLCJzY2FsZSI6MX1d/a0b9780684/DeliriumOrbFragments.png"} +{"name":"碎片培育器","refName":"Fragmented Incubator","namespace":"ITEM","tradeTag":"fragmented-incubator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRnJhZ21lbnRzIiwic2NhbGUiOjF9XQ/a3cf9d4a10/IncubationFragments.png"} +{"name":"碎片箭矢","refName":"Fragmenting Arrowhead","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQXJyb3doZWFkRnJhZ21lbnRpbmciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/14b9a9dba3/ArrowheadFragmenting.png","w":2,"h":2} +{"name":"恐懼之爪","refName":"Fright Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3OCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/3cc3260177/Claw8.png","w":2,"h":2} +{"name":"恐懼重錘","refName":"Fright Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U3IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/d7e632f004/TwoHandMace7.png","w":2,"h":4} +{"name":"寒風化石","refName":"Frigid Fossil","namespace":"ITEM","tradeTag":"frigid-fossil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvQW1iZXJGYW5nIiwic2NhbGUiOjF9XQ/2e63199a3e/AmberFang.png"} +{"name":"邊戍皮甲","refName":"Frontier Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[412,495]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4M0IiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/db900972c7/BodyDex3B.png","w":2,"h":3} +{"name":"凍原小屋","refName":"Frozen Cabins Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/eAML7S2.jpg"}} +{"name":"冰凍食人族","refName":"Frozen Cannibal","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0hhaWxyYWtlQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/a3828d3005/HailrakeCorpse.png","w":3,"h":2} +{"name":"逃難短靴","refName":"Fugitive Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[112,129],"es":[32,37]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9IYWxmVG9uZWRCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/3bfd47b73a/HalfTonedBoots.png","w":2,"h":2} +{"name":"電熔岩萃取物","refName":"Fulgurite Tincture","namespace":"ITEM","craftable":{"category":"Tincture"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL1Nob2NrU2FwIiwidyI6MSwiaCI6Miwic2NhbGUiOjF9XQ/b5365ad256/ShockSap.png","h":2} +{"name":"連身鎖甲","refName":"Full Chainmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[178,199],"es":[38,43]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5a1804c81b/BodyStrInt2C.png","w":2,"h":3} +{"name":"連身龍鱗鎧","refName":"Full Dragonscale","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[470,541],"ev":[373,429]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/769e4eedeb/BodyStrDex1C.png","w":2,"h":3} +{"name":"連身皮甲","refName":"Full Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[284,327]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/47360dcc4a/BodyDex1C.png","w":2,"h":3} +{"name":"連身鎧甲","refName":"Full Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[284,319]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/94a3d5d98e/BodyStr1C.png","w":2,"h":3} +{"name":"連身環甲","refName":"Full Ringmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[156,180],"es":[34,39]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/3247afb396/BodyStrInt1C.png","w":2,"h":3} +{"name":"連身鱗甲","refName":"Full Scale Armour","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[156,180],"ev":[156,180]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/769e4eedeb/BodyStrDex1C.png","w":2,"h":3} +{"name":"連身龍鱗戰甲","refName":"Full Wyrmscale","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[254,292],"ev":[254,292]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/769e4eedeb/BodyStrDex1C.png","w":2,"h":3} +{"name":"全套龍鱗甲","refName":"Full Wyvernscale","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[545,627],"ev":[545,627]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/769e4eedeb/BodyStrDex1C.png","w":2,"h":3} +{"name":"根本化石","refName":"Fundamental Fossil","namespace":"ITEM","tradeTag":"fundamental-fossil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvRW5jcnVzdGVkRm9zc2lsIiwic2NhbGUiOjF9XQ/17b85500f2/EncrustedFossil.png"} +{"name":"毒菌魔域","refName":"Fungal Hollow Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/D4HiW8x.jpg"}} +{"name":"颶風之冠","refName":"Gale Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[42,49],"es":[10,12]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludFIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/9da7af13c1/HelmetDexIntR.png","w":2,"h":2} +{"name":"迷宮花園","refName":"Gardens Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/nnb6Fss.jpg"}} +{"name":"堅錘","refName":"Gavel","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U0IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/b0b1a18a0c/OneHandMace4.png","w":2,"h":3} +{"name":"寶石匠的培育器","refName":"Gemcutter's Incubator","namespace":"ITEM","tradeTag":"gemcutters-incubator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uR2VtcyIsInNjYWxlIjoxfV0/7df785d740/IncubationGems.png"} +{"name":"寶石匠的稜鏡","refName":"Gemcutter's Prism","namespace":"ITEM","tradeTag":"gcp","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lHZW1RdWFsaXR5Iiwic2NhbGUiOjF9XQ/dbe9678a28/CurrencyGemQuality.png"} +{"name":"雙子戰爪","refName":"Gemini Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3OSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/84eab7e6ba/Claw9.png","w":2,"h":2} +{"name":"寶石之劍","refName":"Gemstone Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDIiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/606dae9ce9/OneHandSword2.png","h":3} +{"name":"將軍鎧甲","refName":"General's Brigandine","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[415,465],"ev":[415,465]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/60a6d7b58c/BodyStrDex2C.png","w":2,"h":3} +{"name":"將軍的頭盔","refName":"General's Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[431,496]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/b814dc309a/HelmetStr9.png","w":2,"h":2} +{"name":"詭譎晶洞","refName":"Geode Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/iGJ0Ohk.jpg"}} +{"name":"大地戒指","refName":"Geodesic Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvSGVpc3RSaW5nMiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ef30e9565e/HeistRing2.png"} +{"name":"占卜師的培育器","refName":"Geomancer's Incubator","namespace":"ITEM","tradeTag":"geomancers-incubator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQXJtb3VyIiwic2NhbGUiOjF9XQ/8cd6cd0531/IncubationArmour.png"} +{"name":"極懼之眼珠寶","refName":"Ghastly Eye Jewel","namespace":"ITEM","craftable":{"category":"Abyss Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0doYXN0bHlFeWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ed72511412/GhastlyEye.png"} +{"name":"赤貧居所","refName":"Ghetto Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/I8onB4N.jpg"}} +{"name":"巨型生命藥劑","refName":"Giant Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrNiIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/13cd1c8a08/lifeflask6.png","h":2} +{"name":"巨型魔力藥劑","refName":"Giant Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrNiIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/61993fdd4b/manaflask6.png","h":2} +{"name":"巨人殺手頭盔","refName":"Giantslayer Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[582,669]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjExIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/d288bbe11b/HelmetStr11.png","w":2,"h":2} +{"name":"女神之贈","refName":"Gift to the Goddess","namespace":"ITEM","tradeTag":"offer-gift","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9MYWJ5cmludGhIYXJ2ZXN0SW5mdXNlZDEiLCJzY2FsZSI6MX1d/a5254d7933/LabyrinthHarvestInfused1.png"} +{"name":"金柄之斧","refName":"Gilded Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/e2c34a0fb2/TwoHandAxe6.png","w":2,"h":4} +{"name":"金面輕盾","refName":"Gilded Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[225,259]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/ad59b083a6/ShieldDex6.png","w":2,"h":2} +{"name":"鑲金化石","refName":"Gilded Fossil","namespace":"ITEM","tradeTag":"gilded-fossil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvU2FuY3RpZmllZEZvc3NpbCIsInNjYWxlIjoxfV0/7240f907f2/SanctifiedFossil.png"} +{"name":"金面護盔","refName":"Gilded Sallet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[90,97],"ev":[90,97]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e013d5e90a/HelmetStrDex4.png","w":2,"h":2} +{"name":"征戰塔盾","refName":"Girded Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[397,437]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d883ad1ca2/ShieldStr6.png","w":2,"h":4} +{"name":"冰川山丘","refName":"Glacier Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/t3Arfep.jpg"}} +{"name":"角鬥者之盔","refName":"Gladiator Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[174,195]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/38bfc94781/HelmetStr5.png","w":2,"h":2} +{"name":"角鬥重鎧","refName":"Gladiator Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[738,848]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/429eee131d/BodyStr2C.png","w":2,"h":3} +{"name":"鬥士長劍","refName":"Gladius","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/936e00e3e6/OneHandSword4.png","w":2,"h":3} +{"name":"玻璃利片","refName":"Glass Shank","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjEiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/aeb581e270/Dagger1.png","h":3} +{"name":"玻璃彈珠","refName":"Glassblower's Bauble","namespace":"ITEM","tradeTag":"bauble","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lGbGFza1F1YWxpdHkiLCJzY2FsZSI6MX1d/59e57027e5/CurrencyFlaskQuality.png"} +{"name":"榮耀皮甲","refName":"Glorious Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[451,519]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/47360dcc4a/BodyDex1C.png","w":2,"h":3} +{"name":"榮耀戰鎧","refName":"Glorious Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[776,892]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyM0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/09903268a5/BodyStr3C.png","w":2,"h":3} +{"name":"雕紋化石","refName":"Glyphic Fossil","namespace":"ITEM","tradeTag":"glyphic-fossil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvR2x5cGhpY0Zvc3NpbCIsInNjYWxlIjoxfV0/3e6fb90b9d/GlyphicFossil.png"} +{"name":"朽木之幹","refName":"Gnarled Branch","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmYxIiwidyI6MSwiaCI6NCwic2NhbGUiOjF9XQ/c4f884eb64/Staff1.png","h":4} +{"name":"羊角法杖","refName":"Goat's Horn","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kMiIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/896948eee2/Wand2.png","h":3} +{"name":"羊皮短靴","refName":"Goathide Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[42,54]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/37d9d4d590/BootsDex2.png","w":2,"h":2} +{"name":"羊皮輕盾","refName":"Goathide Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[14,20]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f5469d2393/ShieldDex1.png","w":2,"h":2} +{"name":"羊皮手套","refName":"Goathide Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[32,42]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/b051b2c9f5/GlovesDex2.png","w":2,"h":2} +{"name":"帝金護身符","refName":"Gold Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQ2IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9c1412b6dd/Amulet6.png"} +{"name":"黃金藥劑","refName":"Gold Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvR29sZEZsYXNrIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/0669496bc6/GoldFlask.png","h":2} +{"name":"金光戒指","refName":"Gold Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/2164e44179/Ring4.png"} +{"name":"黃金之刃","refName":"Golden Blade","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0RlbWlnb2RzQXV0aG9yaXR5IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/be10fa5951/DemigodsAuthority.png","w":2,"h":3} +{"name":"黃金臂甲","refName":"Golden Bracers","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRGVtaWdvZHNUb3VjaCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f0cc5eee0b/DemigodsTouch.png","w":2,"h":2} +{"name":"黃金胸針","refName":"Golden Brooch","namespace":"ITEM","craftable":{"category":"Heist Brooch"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvR29sZGVuQnJvb2NoIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ef48504f78/GoldenBrooch.png"} +{"name":"金陽輕盾","refName":"Golden Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[354,407]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/ad59b083a6/ShieldDex6.png","w":2,"h":2} +{"name":"黃金纏鞋","refName":"Golden Caligae","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9EZW1pZ29kc1N0cmlkZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/b58f10a704/DemigodsStride.png","w":2,"h":2} +{"name":"黃金聖炎","refName":"Golden Flame","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0RlbWlnb2RzU2hpZWxkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/c838c8c4a7/DemigodsShield.png","w":2,"h":3} +{"name":"金環","refName":"Golden Hoop","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvRGVtaWdvZHNCYW5kIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ed7fdf1fb6/DemigodsBand.png"} +{"name":"金耀波刃","refName":"Golden Kris","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjYiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/5dcee0019c/Dagger6.png","h":3} +{"name":"黃金戰甲","refName":"Golden Mantle","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[75,86],"ev":[75,86],"es":[17,19]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9EZW1pZ29kc0FybW91ciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/c491aef3bb/DemigodsArmour.png","w":2,"h":3} +{"name":"黃金之面","refName":"Golden Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[96,103],"es":[20,22]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/445c130e44/HelmetDexInt5.png","w":2,"h":2} +{"name":"金羽腰帶","refName":"Golden Obi","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvRGVtaWJlbHQxIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/aff71be0d1/Demibelt1.png","w":2} +{"name":"金黃油瓶","refName":"Golden Oil","namespace":"ITEM","tradeTag":"golden-oil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9Hb2xkZW5PaWwiLCJzY2FsZSI6MX1d/263a5d73da/GoldenOil.png"} +{"name":"金耀之鎧","refName":"Golden Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[559,643]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/ca9e30f668/BodyStr1B.png","w":2,"h":3} +{"name":"黃金頭飾","refName":"Golden Visage","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0RlbWlnb2RzSW1tb3J0YWxpdHkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/49ce309a2f/DemigodsImmortality.png","w":2,"h":2} +{"name":"金黃花環","refName":"Golden Wreath","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0RlbWlnb2RzdHJpdW1waCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/4af6a35515/Demigodstriumph.png","w":2,"h":2} +{"name":"巨靈護手","refName":"Goliath Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[174,200]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyNCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/468f466568/GlovesStr4.png","w":2,"h":2} +{"name":"巨靈脛甲","refName":"Goliath Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[177,209]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/82bedfd1e0/BootsStr4.png","w":2,"h":2} +{"name":"穿體鑿","refName":"Gouger","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ac6e7ab61d/Claw3.png","w":2,"h":2} +{"name":"權貴之劍","refName":"Graceful Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDciLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9ac21989c5/OneHandSword7.png","w":2,"h":3} +{"name":"宏偉異能灰燼","refName":"Grand Eldritch Ember","namespace":"ITEM","tradeTag":"grand-eldritch-ember","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2xlYW5zaW5nRmlyZU9yYlJhbmszIiwic2NhbGUiOjF9XQ/0486f1ac82/CleansingFireOrbRank3.png"} +{"name":"宏偉異能靈液","refName":"Grand Eldritch Ichor","namespace":"ITEM","tradeTag":"grand-eldritch-ichor","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVGFuZ2xlT3JiUmFuazMiLCJzY2FsZSI6MX1d/199f3b36f3/TangleOrbRank3.png"} +{"name":"優質生命藥劑","refName":"Grand Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrNSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/52f0b42c56/lifeflask5.png","h":2} +{"name":"優質魔力藥劑","refName":"Grand Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrNSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/035910bcbc/manaflask5.png","h":2} +{"name":"宏偉環甲","refName":"Grand Ringmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[545,627],"es":[110,127]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/3247afb396/BodyStrInt1C.png","w":2,"h":3} +{"name":"大師鑰匙圈","refName":"Grandmaster Keyring","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvR3JhbmRtYXN0ZXJLZXlyaW5nIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/0c53c85ef3/GrandmasterKeyring.png","w":2,"h":2} +{"name":"堅岩藥劑","refName":"Granite Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvZ3Jhbml0ZSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/101bce8899/granite.png","h":2} +{"name":"捕捉者","refName":"Grappler","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDkiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/d11450350f/OneHandSword9.png","w":2,"h":3} +{"name":"貪婪鎧甲","refName":"Grasping Mail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[217,250],"ev":[217,250],"es":[44,51]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9HcmFzcGluZ01haWwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/ec1ff98d3c/GraspingMail.png","w":2,"h":3} +{"name":"墓地谷","refName":"Grave Trough Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/ee5davj.jpg"}} +{"name":"墮影墓場","refName":"Graveyard Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/gm0UolB.jpg"}} +{"name":"強化巨盔","refName":"Great Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[143,161],"es":[29,33]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/607b69e687/HelmetStrInt7.png","w":2,"h":2} +{"name":"巨盔","refName":"Great Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[61,76],"es":[14,17]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/b4ec7dbe33/HelmetStrInt3.png","w":2,"h":2} +{"name":"剛猛巨錘","refName":"Great Mallet","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2UzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/5e536c19aa/TwoHandMace3.png","w":2,"h":4} +{"name":"白靈之爪","refName":"Great White Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/8b8d9559cd/Claw2.png","w":2,"h":2} +{"name":"高階異能灰燼","refName":"Greater Eldritch Ember","namespace":"ITEM","tradeTag":"greater-eldritch-ember","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2xlYW5zaW5nRmlyZU9yYlJhbmsyIiwic2NhbGUiOjF9XQ/698817b93d/CleansingFireOrbRank2.png"} +{"name":"高階異能靈液","refName":"Greater Eldritch Ichor","namespace":"ITEM","tradeTag":"greater-eldritch-ichor","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVGFuZ2xlT3JiUmFuazIiLCJzY2FsZSI6MX1d/689d1897c7/TangleOrbRank2.png"} +{"name":"良質生命藥劑","refName":"Greater Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrNCIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/2601beea57/lifeflask4.png","h":2} +{"name":"良質魔力藥劑","refName":"Greater Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrNCIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/54e8624da7/manaflask4.png","h":2} +{"name":"狼王魔符","refName":"Greatwolf Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UNFRhbGlzbWFuIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/92e5669fe8/T4Talisman.png"} +{"name":"遠古之祭","refName":"Grinning Fetish","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyMiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/e3e72321e0/scepter2.png","w":2,"h":3} +{"name":"擒拿手套","refName":"Gripped Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[220,253]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR3JpcEdsb3Zlc0Jhc2VUeXBlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/905e5572e6/GripGlovesBaseType.png","w":2,"h":2} +{"name":"灰熊皮盔","refName":"Grizzly Pelt","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[501,576]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e2b3ccec11/HelmetDex7.png","w":2,"h":2} +{"name":"幽暗地穴","refName":"Grotto Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/N7P59cb.jpg"}} +{"name":"叢林獵弓","refName":"Grove Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/0fcc51afcd/Bow2.png","w":2,"h":3} +{"name":"守護野龜","refName":"Guardian Turtle","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Jvbmdva3VyYWlTcGlyaXRUb3J0b2lzZUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/5cdaded7da/RongokuraiSpiritTortoiseCorpse.png","w":3,"h":2} +{"name":"保衛手套","refName":"Guarding Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[132,152]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUml0dWFsU3RyR2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/254b8a0066/RitualStrGloves.png","w":2,"h":2} +{"name":"裂臟鉤","refName":"Gut Ripper","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/1d5586ea56/Claw5.png","w":2,"h":2} +{"name":"重傷短刀","refName":"Gutting Knife","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjIiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/c2c0a06eec/Dagger2.png","h":3} +{"name":"爆燃卷軸","refName":"Haemocombustion Scroll","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9IYXJiaW5nZXJUb2tlblN0YWZmIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3bac452156/HarbingerTokenStaff.png"} +{"name":"腦殘巨人","refName":"Half-remembered Goliath","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1N5bnRoZXNpc0dvbGVtQm9zc0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/aed2848215/SynthesisGolemBossCorpse.png","w":3,"h":2} +{"name":"祝福複合藥劑","refName":"Hallowed Hybrid Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvaHlicmlkZmxhc2s0IiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/541bb93a64/hybridflask4.png","h":2} +{"name":"祝福生命藥劑","refName":"Hallowed Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrOSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/67262f06f5/lifeflask9.png","h":2} +{"name":"祝福魔力藥劑","refName":"Hallowed Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrOSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/8ef0a39c9d/manaflask9.png","h":2} +{"name":"鉚釘輕盾","refName":"Hammered Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[116,139]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/60c6c83831/ShieldDex4.png","w":2,"h":2} +{"name":"先驅者之弓","refName":"Harbinger Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzgiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8d079c60ed/Bow8.png","w":2,"h":4} +{"name":"神諭之殿.歸徒","refName":"Harbinger Map","namespace":"ITEM","craftable":{"uniqueOnly":true,"category":"Map"},"icon":"","map":{}} +{"name":"神諭之殿.降師","refName":"Harbinger Map","namespace":"ITEM","craftable":{"uniqueOnly":true,"category":"Map"},"icon":"","map":{}} +{"name":"神諭之殿.神臨","refName":"Harbinger Map","namespace":"ITEM","craftable":{"uniqueOnly":true,"category":"Map"},"icon":"","map":{}} +{"name":"神諭之殿.煉獄","refName":"Harbinger Map","namespace":"ITEM","craftable":{"uniqueOnly":true,"category":"Map"},"icon":"","map":{}} +{"name":"聖甲蟲·神諭","refName":"Harbinger Scarab","namespace":"ITEM","tradeTag":"harbinger-scarab","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJIYXJiaW5nZXJzIiwic2NhbGUiOjF9XQ/cc33d9f639/LesserScarabHarbingers.png"} +{"name":"聖甲蟲:石碑神諭","refName":"Harbinger Scarab of Obelisks","namespace":"ITEM","tradeTag":"harbinger-scarab-of-obelisks","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJIYXJiaW5nZXJzIiwic2NhbGUiOjF9XQ/dc5f44e261/NormalScarabHarbingers.png"} +{"name":"聖甲蟲:攝政神諭","refName":"Harbinger Scarab of Regency","namespace":"ITEM","tradeTag":"harbinger-scarab-of-regency","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiSGFyYmluZ2VycyIsInNjYWxlIjoxfV0/335df4321f/GreaterScarabHarbingers.png"} +{"name":"聖甲蟲:戰儲神諭","refName":"Harbinger Scarab of Warhoards","namespace":"ITEM","tradeTag":"harbinger-scarab-of-warhoards","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkhhcmJpbmdlcnMiLCJzY2FsZSI6MX1d/58a4c0d3f8/Tier4ScarabHarbingers.png"} +{"name":"神諭石","refName":"Harbinger's Orb","namespace":"ITEM","tradeTag":"harbingers-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFyYmluZ2VyT3JiIiwic2NhbGUiOjF9XQ/0a26e01f15/HarbingerOrb.png"} +{"name":"神諭石碎片","refName":"Harbinger's Shard","namespace":"ITEM","tradeTag":"harbingers-shard","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFyYmluZ2VyU2hhcmQiLCJzY2FsZSI6MX1d/ad19e27b2f/HarbingerShard.png"} +{"name":"鷹喙之面","refName":"Harlequin Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[157,185],"es":[32,38]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c006f13480/HelmetDexInt9.png","w":2,"h":2} +{"name":"和諧魔盾","refName":"Harmonic Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[58,66]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4bf20f79d1/ShieldInt5.png","w":2,"h":2} +{"name":"魔喙細劍","refName":"Harpy Rapier","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjgiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/1f11ed5e87/Rapier8.png","h":4} +{"name":"妖羽皮短靴","refName":"Harpyskin Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[307,353]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f2e9a30d4a/BootsDex3.png","w":2,"h":2} +{"name":"妖羽皮手套","refName":"Harpyskin Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[307,353]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/445d038f1d/GlovesDex3.png","w":2,"h":2} +{"name":"豐收聖甲蟲","refName":"Harvest Scarab","namespace":"ITEM","tradeTag":"harvest-scarab","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJIYXJ2ZXN0Iiwic2NhbGUiOjF9XQ/976dcf6526/LesserScarabHarvest.png"} +{"name":"聖甲蟲:富饒豐收","refName":"Harvest Scarab of Cornucopia","namespace":"ITEM","tradeTag":"harvest-scarab-of-cornucopia","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkhhcnZlc3QiLCJzY2FsZSI6MX1d/35e8847de2/Tier4ScarabHarvest.png"} +{"name":"聖甲蟲:倍增豐收","refName":"Harvest Scarab of Doubling","namespace":"ITEM","tradeTag":"harvest-scarab-of-doubling","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiSGFydmVzdCIsInNjYWxlIjoxfV0/6077972903/GreaterScarabHarvest.png"} +{"name":"鬧鬼戰盔","refName":"Haunted Bascinet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[355,409],"ev":[355,409]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDEwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/4c9ea10e7c/HelmetStrDex10.png","w":2,"h":2} +{"name":"幽魂宅邸","refName":"Haunted Mansion Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/TyBueyN.jpg"}} +{"name":"行刑巨劍","refName":"Headman's Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDIiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/fcaf050e0f/TwoHandSword2.png","w":2,"h":4} +{"name":"行刑巨斧","refName":"Headsman Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/24ac93d9cd/TwoHandAxe4.png","w":2,"h":4} +{"name":"熱調塔盾","refName":"Heat-attuned Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[220,253]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0hlaXN0U2hpZWxkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/e65fb9efea/HeistShield.png","w":2,"h":3} +{"name":"異徒法杖","refName":"Heathen Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNyIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/84ced52bef/Wand7.png","h":3} +{"name":"沉頓箭袋","refName":"Heavy Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJCbHVudCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/435539df0f/QuiverBlunt.png","w":2,"h":3} +{"name":"重革腰帶","refName":"Heavy Belt","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdDUiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MSwiZWxkZXIiOnRydWV9XQ/440fb77647/Belt5.png","w":2} +{"name":"海德隆之弓","refName":"Hedron Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0hlaXN0Qm93RmlyZSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/30526435da/HeistBowFire.png","w":2,"h":4} +{"name":"螺旋戒指","refName":"Helical Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvSGVpc3RSaW5nMURhcmsiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/50914baa93/HeistRing1Dark.png"} +{"name":"魔爪刃","refName":"Hellion's Paw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0a98c635d3/Claw4.png","w":2,"h":2} +{"name":"幻爪魔符","refName":"Hexclaw Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbkJsYWNrNiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6885b449d4/TalismanBlack6.png"} +{"name":"貴族之弓","refName":"Highborn Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/1e6a3da9aa/Bow7.png","w":2,"h":4} +{"name":"貴族長杖","refName":"Highborn Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY2IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/5e3de6f391/Staff6.png","w":2,"h":4} +{"name":"高山重刃","refName":"Highland Blade","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/294bd80312/TwoHandSword4.png","w":2,"h":4} +{"name":"悉妮蔻拉的髮絲","refName":"Hinekora's Lock","namespace":"ITEM","tradeTag":"hinekoras-lock","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGluZWtvcmFzTG9jayIsInNjYWxlIjoxfV0/b188026e7f/HinekorasLock.png"} +{"name":"鏤空化石","refName":"Hollow Fossil","namespace":"ITEM","tradeTag":"hollow-fossil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvQW1iZXJFeWUiLCJzY2FsZSI6MX1d/542a2b7b0a/AmberEye.png"} +{"name":"簍空箭矢","refName":"Hollowpoint Arrowhead","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQXJyb3doZWFkSG9sbG93cG9pbnQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/517705408e/ArrowheadHollowpoint.png","w":2,"h":2} +{"name":"簍空短匕","refName":"Hollowpoint Dagger","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0hlaXN0RGFnZ2VyIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/d484666b70/HeistDagger.png","h":3} +{"name":"聖語鎖甲","refName":"Holy Chainmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[194,233],"es":[41,49]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50M0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/900b4f2c03/BodyStrInt3C.png","w":2,"h":3} +{"name":"珩磨砍斧","refName":"Honed Cleaver","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9IZWlzdFR3b0hhbmRBeGUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/4aef1881cc/HeistTwoHandAxe.png","w":2,"h":4} +{"name":"連帽披風","refName":"Hooded Cloak","namespace":"ITEM","craftable":{"category":"Heist Cloak"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvSG9vZGVkQ2xvYWsiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/cc1771375c/HoodedCloak.png","w":2,"h":2} +{"name":"鉤爪劍","refName":"Hook Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDkiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/d11450350f/OneHandSword9.png","w":2,"h":3} +{"name":"地平石碎片","refName":"Horizon Shard","namespace":"ITEM","tradeTag":"horizon-shard","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSG9yaXpvblNoYXJkIiwic2NhbGUiOjF9XQ/627ae5f273/HorizonShard.png"} +{"name":"聖甲蟲:覺醒犄角","refName":"Horned Scarab of Awakening","namespace":"ITEM","tradeTag":"horned-scarab-of-awakening","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9TdXBlclNjYXJhYjQiLCJzY2FsZSI6MX1d/c939905663/SuperScarab4.png"} +{"name":"聖甲蟲:血統犄角","refName":"Horned Scarab of Bloodlines","namespace":"ITEM","tradeTag":"horned-scarab-of-bloodlines","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9TdXBlclNjYXJhYjEiLCJzY2FsZSI6MX1d/acc1b258a3/SuperScarab1.png"} +{"name":"聖甲蟲:閃亮犄角","refName":"Horned Scarab of Glittering","namespace":"ITEM","tradeTag":"horned-scarab-of-glittering","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9TdXBlclNjYXJhYjYiLCJzY2FsZSI6MX1d/f74c2fdd4f/SuperScarab6.png"} +{"name":"聖甲蟲:復仇犄角","refName":"Horned Scarab of Nemeses","namespace":"ITEM","tradeTag":"horned-scarab-of-nemeses","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9TdXBlclNjYXJhYjIiLCJzY2FsZSI6MX1d/c4f92c444d/SuperScarab2.png"} +{"name":"聖甲蟲:萬劫犄角","refName":"Horned Scarab of Pandemonium","namespace":"ITEM","tradeTag":"horned-scarab-of-pandemonium","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9TdXBlclNjYXJhYjciLCJzY2FsZSI6MX1d/28b95bae7b/SuperScarab7.png"} +{"name":"聖甲蟲:庇護犄角","refName":"Horned Scarab of Preservation","namespace":"ITEM","tradeTag":"horned-scarab-of-preservation","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9TdXBlclNjYXJhYjMiLCJzY2FsZSI6MX1d/64d9f06e78/SuperScarab3.png"} +{"name":"聖甲蟲:傳統犄角","refName":"Horned Scarab of Tradition","namespace":"ITEM","tradeTag":"horned-scarab-of-tradition","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9TdXBlclNjYXJhYjUiLCJzY2FsZSI6MX1d/cbdd57fa7e/SuperScarab5.png"} +{"name":"犄角權杖","refName":"Horned Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyOSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/151820601e/scepter9.png","w":2,"h":3} +{"name":"尖角魔符","refName":"Horned Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9OZXdUYWxpc21hbjciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/98ae73297c/NewTalisman7.png"} +{"name":"靈主之環","refName":"Hubris Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[80,92]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDExIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/4588b92597/HelmetInt11.png","w":2,"h":2} +{"name":"巨大畸形","refName":"Hulking Miscreation","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JvYm90QXJndXNNaW5pYm9zc0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/b72efcb93e/RobotArgusMinibossCorpse.png","w":3,"h":2} +{"name":"獵者之兜","refName":"Hunter Hood","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[203,227]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/00026e167c/HelmetDex5.png","w":2,"h":2} +{"name":"狩獵者的崇高石","refName":"Hunter's Exalted Orb","namespace":"ITEM","tradeTag":"hunters-exalted-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5mbHVlbmNlIEV4YWx0cy9CYXNpbGlza09yYiIsInNjYWxlIjoxfV0/cd2131d564/BasiliskOrb.png"} +{"name":"輕騎鎖甲","refName":"Hussar Brigandine","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[232,278],"ev":[232,278]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/cd52e7b841/BodyStrDex2B.png","w":2,"h":3} +{"name":"九頭蛇","refName":"Hydra","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0h5ZHJhQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/cd848db11b/HydraCorpse.png","w":3,"h":2} +{"name":"火蝮鱗長靴","refName":"Hydrascale Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[106,122],"ev":[106,122]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/d5b5430d4c/BootsStrDex2.png","w":2,"h":2} +{"name":"火蝮鱗手套","refName":"Hydrascale Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[106,122],"ev":[106,122]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyRGV4MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0bb5dd1e50/GlovesStrDex2.png","w":2,"h":2} +{"name":"催眠之眼珠寶","refName":"Hypnotic Eye Jewel","namespace":"ITEM","craftable":{"category":"Abyss Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JpdmV0ZWRFeWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a17c4bcc60/RivetedEye.png"} +{"name":"極原冰帽","refName":"Iceberg Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/9g2hpKu.jpg"}} +{"name":"充能的催化劑","refName":"Imbued Catalyst","namespace":"ITEM","tradeTag":"imbued-catalyst","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL0ltYnVlZENhdGFseXN0Iiwic2NhbGUiOjF9XQ/cce071aa45/ImbuedCatalyst.png"} +{"name":"魔性法杖","refName":"Imbued Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kMyIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/6322bd53f5/Wand3.png","h":3} +{"name":"妖怪邪冠","refName":"Imp Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[42,49],"es":[10,12]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01hc2tDcm93biIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/dbad72643e/MaskCrown.png","w":2,"h":2} +{"name":"妖邪短匕","refName":"Imp Dagger","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjgiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/e0bade03f8/Dagger8.png","h":3} +{"name":"衝擊力擴散錘","refName":"Impact Force Propagator","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvSGVpc3RUd29IYW5kTWFjZSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/ecc9c2724b/HeistTwoHandMace.png","w":2,"h":4} +{"name":"不完美褻瀆者","refName":"Imperfect Blasphemer","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0dlb2ZyaUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/c8c02e1c54/GeofriCorpse.png","w":3,"h":2} +{"name":"不完美血腥惡魔","refName":"Imperfect Blood Demon","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0hlbGxzY2FwZURlbW9uQm9zc0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/9bcd7bb5b8/HellscapeDemonBossCorpse.png","w":3,"h":2} +{"name":"不完美劍舞","refName":"Imperfect Dancing Sword","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0FuaW1hdGVkV2VhcG9uQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/2720caa383/AnimatedWeaponCorpse.png","w":3,"h":2} +{"name":"不完美黑暗木偶","refName":"Imperfect Dark Marionette","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JvYm90TWFubmVxdWluQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/2ad85223a4/RobotMannequinCorpse.png","w":3,"h":2} +{"name":"不完美黑暗奪魂鐮","refName":"Imperfect Dark Reaper","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JlYXBlckJvc3NDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/d6c81d82f9/ReaperBossCorpse.png","w":3,"h":2} +{"name":"不完美德魯伊鍊金師","refName":"Imperfect Druidic Alchemist","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Rhd2hvYU1lZGljaW5lV29tYW5Db3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/a446a2f4d0/TawhoaMedicineWomanCorpse.png","w":3,"h":2} +{"name":"不完美異能之眼","refName":"Imperfect Eldritch Eye","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0VsZGVyVGVudGFjbGVNaW5pb25MYXJnZUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/19b67ee9a1/ElderTentacleMinionLargeCorpse.png","w":3,"h":2} +{"name":"不完美烈焰食人族","refName":"Imperfect Fiery Cannibal","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0ZpcmVGdXJ5Q29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/458c4ab871/FireFuryCorpse.png","w":3,"h":2} +{"name":"不完美森林猛虎","refName":"Imperfect Forest Tiger","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1RpZ2VyQmVzdGlhcnlTcGlyaXRCb3NzQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/6a46a7dc19/TigerBestiarySpiritBossCorpse.png","w":3,"h":2} +{"name":"不完美森林戰士","refName":"Imperfect Forest Warrior","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zpa2luZ01hcEJvc3NDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/cc6f33141d/VikingMapBossCorpse.png","w":3,"h":2} +{"name":"不完美冰凍食人族","refName":"Imperfect Frozen Cannibal","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0hhaWxyYWtlQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/a3828d3005/HailrakeCorpse.png","w":3,"h":2} +{"name":"不完美守護野龜","refName":"Imperfect Guardian Turtle","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Jvbmdva3VyYWlTcGlyaXRUb3J0b2lzZUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/5cdaded7da/RongokuraiSpiritTortoiseCorpse.png","w":3,"h":2} +{"name":"不完美腦殘巨人","refName":"Imperfect Half-remembered Goliath","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1N5bnRoZXNpc0dvbGVtQm9zc0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/aed2848215/SynthesisGolemBossCorpse.png","w":3,"h":2} +{"name":"不完美巨大畸形","refName":"Imperfect Hulking Miscreation","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JvYm90QXJndXNNaW5pYm9zc0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/b72efcb93e/RobotArgusMinibossCorpse.png","w":3,"h":2} +{"name":"不完美九頭蛇","refName":"Imperfect Hydra","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0h5ZHJhQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/cd848db11b/HydraCorpse.png","w":3,"h":2} +{"name":"不完美審判之魂","refName":"Imperfect Judgemental Spirit","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0dvZGRlc3NPZkp1c3RpY2VDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/e674a594ff/GoddessOfJusticeCorpse.png","w":3,"h":2} +{"name":"不完美肉袋","refName":"Imperfect Meatsack","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0Z1bmd1c1pvbWJpZUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/4da2b7756d/FungusZombieCorpse.png","w":3,"h":2} +{"name":"不完美海軍軍官","refName":"Imperfect Naval Officer","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0FkbWlyYWxEYXJuYXdDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/ccfa254872/AdmiralDarnawCorpse.png","w":3,"h":2} +{"name":"不完美針恐怖","refName":"Imperfect Needle Horror","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0RlbW9uQm9zczNDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/6abaea26f2/DemonBoss3Corpse.png","w":3,"h":2} +{"name":"不完美恐怖主義","refName":"Imperfect Pain Artist","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0FmZmxpY3Rpb25NaW5pb24yQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/afa1eaea1c/AfflictionMinion2Corpse.png","w":3,"h":2} +{"name":"不完美原始造物主","refName":"Imperfect Primal Demiurge","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0NydXNhZGVyTWFuYVBoYW50YXNtQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/66bb067c9b/CrusaderManaPhantasmCorpse.png","w":3,"h":2} +{"name":"不完美原始雷鳥","refName":"Imperfect Primal Thunderbird","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JhdmVuQm9zc0JsdWVDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/1a1ed30e2f/RavenBossBlueCorpse.png","w":3,"h":2} +{"name":"不完美符文骷髏","refName":"Imperfect Runic Skeleton","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1N3b3JkU2tlbGV0b25Db3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/171f40accf/SwordSkeletonCorpse.png","w":3,"h":2} +{"name":"不完美占血惡魔","refName":"Imperfect Sanguimancer Demon","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0hlbGxzY2FwZURlbW9uRWxpdGUyQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/a795ad40fa/HellscapeDemonElite2Corpse.png","w":3,"h":2} +{"name":"不完美奪魂鋸","refName":"Imperfect Sawblade Horror","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0RlbW9uQm9zczFDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/27f61146a0/DemonBoss1Corpse.png","w":3,"h":2} +{"name":"不完美蛇靈戰士","refName":"Imperfect Serpent Warrior","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0F0bGFzRXhpbGUzQXBwYXJpdGlvbkNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/127b613caf/AtlasExile3ApparitionCorpse.png","w":3,"h":2} +{"name":"不完美影子暴徒","refName":"Imperfect Shadow Berserker","namespace":"ITEM","icon":"%NOT_FOUND%","w":3,"h":2} +{"name":"不完美影子創造物","refName":"Imperfect Shadow Construct","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0luY2FTaGFkb3dCb3NzQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/acddc4a119/IncaShadowBossCorpse.png","w":3,"h":2} +{"name":"不完美劈砍幽魂","refName":"Imperfect Slashing Horror","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0RlbW9uQm9zczJDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/211195cd4d/DemonBoss2Corpse.png","w":3,"h":2} +{"name":"不完美蜘蛛女族長","refName":"Imperfect Spider Matriarch","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0JsYWNrRGVhdGhCb3NzQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/658153825a/BlackDeathBossCorpse.png","w":3,"h":2} +{"name":"不完美財富之魂","refName":"Imperfect Spirit of Fortune","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0t1ZHVrdVRvdGVtQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/7faf1de77b/KudukuTotemCorpse.png","w":3,"h":2} +{"name":"不完美督軍","refName":"Imperfect Warlord","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL09ha0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/9a9c4d9ada/OakCorpse.png","w":3,"h":2} +{"name":"帝國之弓","refName":"Imperial Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/1e6a3da9aa/Bow7.png","w":2,"h":4} +{"name":"帝國輕盾","refName":"Imperial Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[440,506]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/ad59b083a6/ShieldDex6.png","w":2,"h":2} +{"name":"帝國戰爪","refName":"Imperial Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/9efad90cdb/Claw7.png","w":2,"h":2} +{"name":"帝王之譫妄玉","refName":"Imperial Delirium Orb","namespace":"ITEM","tradeTag":"imperial-delirium-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJMYWJ5cmludGgiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/50340fc6c8/DeliriumOrbLabyrinth.png"} +{"name":"帝國重錘","refName":"Imperial Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U2IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/a114ad5617/TwoHandMace6.png","w":2,"h":4} +{"name":"帝國雙刃匕","refName":"Imperial Skean","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjciLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/61e8f27cc5/Dagger7.png","h":3} +{"name":"帝國長杖","refName":"Imperial Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY2IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/5e3de6f391/Staff6.png","w":2,"h":4} +{"name":"帝國長杖碎片","refName":"Imperial Staff Piece","namespace":"ITEM","craftable":{"category":"Unique Fragment","uniqueOnly":true},"icon":"","w":1,"h":2} +{"name":"熾熱之邀","refName":"Incandescent Invitation","namespace":"ITEM","craftable":{"category":"Invitation"},"tradeTag":"incandescent-invitation","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVlc3RJdGVtcy9DbGVhbnNpbmdGaXJlT3JiUXVlc3Q1Iiwic2NhbGUiOjF9XQ/d5ac505898/CleansingFireOrbQuest5.png"} +{"name":"穿越聖甲蟲","refName":"Incursion Scarab","namespace":"ITEM","tradeTag":"incursion-scarab","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJJbmN1cnNpb24iLCJzY2FsZSI6MX1d/4afd758a13/LesserScarabIncursion.png"} +{"name":"聖甲蟲:鬥士穿越","refName":"Incursion Scarab of Champions","namespace":"ITEM","tradeTag":"incursion-scarab-of-champions","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiSW5jdXJzaW9uIiwic2NhbGUiOjF9XQ/ff92bda004/GreaterScarabIncursion.png"} +{"name":"聖甲蟲:侵略穿越","refName":"Incursion Scarab of Invasion","namespace":"ITEM","tradeTag":"incursion-scarab-of-invasion","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJJbmN1cnNpb24iLCJzY2FsZSI6MX1d/a38b517f35/NormalScarabIncursion.png"} +{"name":"聖甲蟲:時間線穿越","refName":"Incursion Scarab of Timelines","namespace":"ITEM","tradeTag":"incursion-scarab-of-timelines","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkluY3Vyc2lvbiIsInNjYWxlIjoxfV0/748b10e2cf/Tier4ScarabIncursion.png"} +{"name":"靛青油瓶","refName":"Indigo Oil","namespace":"ITEM","tradeTag":"indigo-oil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9JbmRpZ29PaWwiLCJzY2FsZSI6MX1d/d11c298ca8/IndigoOil.png"} +{"name":"步兵鎖甲","refName":"Infantry Brigandine","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[119,142],"ev":[119,142]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/cd52e7b841/BodyStrDex2B.png","w":2,"h":3} +{"name":"獄火之刃","refName":"Infernal Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlOCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/1c9ff58159/OneHandAxe8.png","w":2,"h":3} +{"name":"煉獄之刃","refName":"Infernal Blade","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0hlaXN0UnVuZURhZ2dlciIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/1760d17051/HeistRuneDagger.png","h":3} +{"name":"獄炎重劍","refName":"Infernal Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/cba6615b1a/TwoHandSword7.png","w":2,"h":4} +{"name":"病疫林谷","refName":"Infested Valley Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/9FiIb93.jpg"}} +{"name":"滲透者長靴","refName":"Infiltrator Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[176,203],"es":[35,41]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0c80b843d0/BootsDexInt3.png","w":2,"h":2} +{"name":"滲透者護手","refName":"Infiltrator Mitts","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[176,203],"es":[35,41]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/e18b986979/GlovesDexInt2.png","w":2,"h":2} +{"name":"勢力偵查報告","refName":"Influenced Scouting Report","namespace":"ITEM","tradeTag":"influenced-scouting-report","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png"} +{"name":"聖甲蟲:","refName":"Influencing Scarab of Conversion","namespace":"ITEM","tradeTag":"influencing-scarab-of-conversion","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYlNoYXBlciIsInNjYWxlIjoxfV0/320c05daeb/Tier4ScarabShaper.png"} +{"name":"聖甲蟲:","refName":"Influencing Scarab of Hordes","namespace":"ITEM","tradeTag":"influencing-scarab-of-hordes","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiRWxkZXIiLCJzY2FsZSI6MX1d/660528eb40/GreaterScarabElder.png"} +{"name":"聖甲蟲:","refName":"Influencing Scarab of the Elder","namespace":"ITEM","tradeTag":"influencing-scarab-of-the-elder","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJFbGRlciIsInNjYWxlIjoxfV0/8828d3f4eb/LesserScarabElder.png"} +{"name":"聖甲蟲:","refName":"Influencing Scarab of the Shaper","namespace":"ITEM","tradeTag":"influencing-scarab-of-the-shaper","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJTaGFwZXIiLCJzY2FsZSI6MX1d/caf0ac9307/LesserScarabShaper.png"} +{"name":"注能的培育器","refName":"Infused Incubator","namespace":"ITEM","tradeTag":"infused-incubator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRXNzZW5jZSIsInNjYWxlIjoxfV0/839bf6cef9/IncubationEssence.png"} +{"name":"最後通牒雕刻","refName":"Inscribed Ultimatum","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VbHRpbWF0dW1UcmlhbEJhc2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b65f1edffb/UltimatumTrialBase.png"} +{"name":"滴注石","refName":"Instilling Orb","namespace":"ITEM","tradeTag":"instilling-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXhwZWRpdGlvbi9GbGFza0luamVjdG9yIiwic2NhbGUiOjF9XQ/efc518b1be/FlaskInjector.png"} +{"name":"本質的催化劑","refName":"Intrinsic Catalyst","namespace":"ITEM","tradeTag":"intrinsic-catalyst","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL0ludHJpbnNpY0NhdGFseXN0Iiwic2NhbGUiOjF9XQ/cea67fbce2/IntrinsicCatalyst.png"} +{"name":"混青石戒指","refName":"Iolite Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQ2hhb3NEbWdSaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/41236019f8/ChaosDmgRing.png"} +{"name":"鐵鍛之冠","refName":"Iron Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[12,15]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/64cde8f674/HelmetInt2.png","w":2,"h":2} +{"name":"鋼鐵藥劑","refName":"Iron Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvV2FyZGZsYXNrMDEiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/19bbf3a214/Wardflask01.png","h":2} +{"name":"鐵鍛護手","refName":"Iron Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[6,9]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyMSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/413116fb67/GlovesStr1.png","w":2,"h":2} +{"name":"鐵鍛脛甲","refName":"Iron Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[6,9]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/10332346d1/BootsStr1.png","w":2,"h":2} +{"name":"粗鐵盔","refName":"Iron Hat","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[9,13]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/a114c1308e/HelmetStr1.png","w":2,"h":2} +{"name":"鐵鍛之面","refName":"Iron Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[48,60],"es":[11,14]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/a56694476d/HelmetDexInt3.png","w":2,"h":2} +{"name":"鍛鐵戒指","refName":"Iron Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/bf29c9d45e/Ring1.png"} +{"name":"冷鐵權杖","refName":"Iron Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/4b16d71d85/scepter5.png","w":2,"h":3} +{"name":"鐵鍛長杖","refName":"Iron Staff","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY0IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/85c22bd16b/Staff4.png","w":2,"h":4} +{"name":"鐵影長靴","refName":"Ironscale Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[34,44],"ev":[34,44]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/d5b5430d4c/BootsStrDex2.png","w":2,"h":2} +{"name":"鐵影手套","refName":"Ironscale Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[28,37],"ev":[28,37]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyRGV4MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0bb5dd1e50/GlovesStrDex2.png","w":2,"h":2} +{"name":"鋼木輕盾","refName":"Ironwood Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[327,385]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/cffdb4477e/ShieldDex2.png","w":2,"h":2} +{"name":"鐵木林萃取物","refName":"Ironwood Tincture","namespace":"ITEM","craftable":{"category":"Tincture"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL1N0dW5TYXAiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MX1d/d28b324f64/StunSap.png","h":2} +{"name":"象牙弓","refName":"Ivory Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/6642f8922a/Bow6.png","w":2,"h":4} +{"name":"象牙魔盾","refName":"Ivory Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[35,40]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f0b78ea97c/ShieldInt3.png","w":2,"h":2} +{"name":"象牙神殿","refName":"Ivory Temple Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/gl7ODl5.jpg"}} +{"name":"翠玉護身符","refName":"Jade Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQ0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ffc5888355/Amulet4.png"} +{"name":"碎玉大斧","refName":"Jade Chopper","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlMiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/bc8072f8c3/TwoHandAxe2.png","w":2,"h":4} +{"name":"翠玉藥劑","refName":"Jade Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvZXZhc2lvbmZsYXNrMDEiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/8ead4435df/evasionflask01.png","h":2} +{"name":"碎玉斧","refName":"Jade Hatchet","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlMiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/2bb7df0078/OneHandAxe2.png","w":2,"h":3} +{"name":"鋸狀薄刃","refName":"Jagged Foil","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjUiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/ccce0178cc/Rapier5.png","h":4} +{"name":"鋸齒化石","refName":"Jagged Fossil","namespace":"ITEM","tradeTag":"jagged-fossil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvSmFnZ2VkRm9zc2lsIiwic2NhbGUiOjF9XQ/ca9c17d7d9/JaggedFossil.png"} +{"name":"狼牙重錘","refName":"Jagged Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U1IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/88d16a9600/TwoHandMace5.png","w":2,"h":4} +{"name":"靈玉斧","refName":"Jasper Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlMiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/2bb7df0078/OneHandAxe2.png","w":2,"h":3} +{"name":"靈玉巨斧","refName":"Jasper Chopper","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlMiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/bc8072f8c3/TwoHandAxe2.png","w":2,"h":4} +{"name":"小丑面具","refName":"Jester Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[268,308],"es":[54,62]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c006f13480/HelmetDexInt9.png","w":2,"h":2} +{"name":"寶飾細劍","refName":"Jewelled Foil","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjciLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/97d714e903/Rapier7.png","h":4} +{"name":"飾品之譫妄玉","refName":"Jeweller's Delirium Orb","namespace":"ITEM","tradeTag":"jewellers-delirium-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJUcmlua2V0cyIsInNjYWxlIjoxfV0/165e84bd2a/DeliriumOrbTrinkets.png"} +{"name":"工匠石","refName":"Jeweller's Orb","namespace":"ITEM","tradeTag":"jewellers","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lSZXJvbGxTb2NrZXROdW1iZXJzIiwic2NhbGUiOjF9XQ/ba411ff58a/CurrencyRerollSocketNumbers.png"} +{"name":"靈相魔盾","refName":"Jingling Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[25,29]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4bf20f79d1/ShieldInt5.png","w":2,"h":2} +{"name":"旅途符文","refName":"Journey Rune","namespace":"ITEM","tradeTag":"journey-rune","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2V0dGxlcnMvVmlsbGFnZVJ1bmU3Iiwic2NhbGUiOjF9XQ/953733102b/VillageRune7.png"} +{"name":"軀體的歷練紋身","refName":"Journey Tattoo of the Body","namespace":"ITEM","tradeTag":"journey-tattoo-of-the-body","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL1VuaXF1ZTNUYXR0dG9vRXF1aXBtZW50Iiwic2NhbGUiOjF9XQ/f83d9c508a/Unique3TatttooEquipment.png"} +{"name":"心智的歷練紋身","refName":"Journey Tattoo of the Mind","namespace":"ITEM","tradeTag":"journey-tattoo-of-the-mind","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL1VuaXF1ZTNUYXR0dG9vRXF1aXBtZW50Iiwic2NhbGUiOjF9XQ/f83d9c508a/Unique3TatttooEquipment.png"} +{"name":"靈魂的歷練紋身","refName":"Journey Tattoo of the Soul","namespace":"ITEM","tradeTag":"journey-tattoo-of-the-soul","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL1VuaXF1ZTNUYXR0dG9vRXF1aXBtZW50Iiwic2NhbGUiOjF9XQ/f83d9c508a/Unique3TatttooEquipment.png"} +{"name":"審判長杖","refName":"Judgement Staff","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY3IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/c1ded974d5/Staff7.png","w":2,"h":4} +{"name":"審判之魂","refName":"Judgemental Spirit","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0dvZGRlc3NPZkp1c3RpY2VDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/e674a594ff/GoddessOfJusticeCorpse.png","w":3,"h":2} +{"name":"劇毒林谷","refName":"Jungle Valley Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/O4q6Op8.jpg"}} +{"name":"卡爾葛之譫妄玉","refName":"Kalguuran Delirium Orb","namespace":"ITEM","tradeTag":"kalguuran-delirium-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJFeHBlZGl0aW9uIiwic2NhbGUiOjF9XQ/486dcec31d/DeliriumOrbExpedition.png"} +{"name":"卡爾葛的培育器","refName":"Kalguuran Incubator","namespace":"ITEM","tradeTag":"kalguuran-incubator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRXhwZWRpdGlvbiIsInNjYWxlIjoxfV0/2916070090/IncubationExpedition.png"} +{"name":"卡魯古斧","refName":"Karui Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlMiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/2bb7df0078/OneHandAxe2.png","w":2,"h":3} +{"name":"卡魯巨斧","refName":"Karui Chopper","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlMiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/bc8072f8c3/TwoHandAxe2.png","w":2,"h":4} +{"name":"卡魯重錘","refName":"Karui Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2UyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/36201397ff/TwoHandMace2.png","w":2,"h":4} +{"name":"卡魯權杖","refName":"Karui Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyMiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/e3e72321e0/scepter2.png","w":2,"h":3} +{"name":"基拉克的記憶","refName":"Kirac's Memory","namespace":"ITEM","craftable":{"category":"Memory Line"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWVtb3J5TGluZS9LaXJhY01lbW9yeUl0ZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/def36e7b78/KiracMemoryItem.png"} +{"name":"騎士之盔","refName":"Knight Helm","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[268,308],"ev":[268,308]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/07fb25d634/HelmetStrDex6.png","w":2,"h":2} +{"name":"實驗居所","refName":"Laboratory Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/3wlWzSX.jpg"}} +{"name":"雙影巨斧","refName":"Labrys","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/4b3fbfcd65/TwoHandAxe5.png","w":2,"h":4} +{"name":"軟橡魔盾","refName":"Lacewood Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[47,55]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/99b47eb1fa/ShieldInt2.png","w":2,"h":2} +{"name":"漆彩輕盾","refName":"Lacquered Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[477,549]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/10a005f978/ShieldDex3.png","w":2,"h":2} +{"name":"漆彩束衣","refName":"Lacquered Garb","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[286,329],"es":[59,68]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/6744d2d486/BodyDexInt2C.png","w":2,"h":3} +{"name":"漆彩之盔","refName":"Lacquered Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[138,155],"ev":[138,155]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0884b27765/HelmetStrDex7.png","w":2,"h":2} +{"name":"餓獸巢穴","refName":"Lair Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/Uj6Ef71.jpg"}} +{"name":"九頭蛇冰窟","refName":"Lair of the Hydra Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhczJNYXBzL05ldy9IeWRyYSIsInciOjEsImgiOjEsInNjYWxlIjoxLCJtbiI6MTQsIm10IjowLCJtaSI6MX1d/c0a42dd7bc/Hydra.png","map":{"screenshot":"https://i.imgur.com/eOWrITq.jpg"}} +{"name":"合板鳶盾","refName":"Laminated Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[113,133],"es":[23,27]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/23fbb47426/ShieldStrInt3.png","w":2,"h":3} +{"name":"海玉護身符","refName":"Lapis Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQ1IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/998c42287b/Amulet5.png"} +{"name":"巨型星團珠寶","refName":"Large Cluster Jewel","namespace":"ITEM","craftable":{"category":"Cluster Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL05ld0dlbUJhc2UzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/db35e60885/NewGemBase3.png"} +{"name":"大型複合藥劑","refName":"Large Hybrid Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvaHlicmlkZmxhc2s0IiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/541bb93a64/hybridflask4.png","h":2} +{"name":"大型生命藥劑","refName":"Large Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrMyIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/35b22b6cc3/lifeflask3.png","h":2} +{"name":"大型魔力藥劑","refName":"Large Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrMyIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/36c890e698/manaflask3.png","h":2} +{"name":"武術長杖","refName":"Lathi","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmYzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/9bc79ef01c/Staff3.png","w":2,"h":4} +{"name":"精製環甲","refName":"Latticed Ringmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[216,248],"es":[45,52]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/61293d71af/BodyStrInt1B.png","w":2,"h":3} +{"name":"熔岩之室","refName":"Lava Chamber Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/XR1YVVq.jpg"}} +{"name":"岩漿熔湖","refName":"Lava Lake Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/G85TEg5.jpg"}} +{"name":"層板鳶盾","refName":"Layered Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[62,73],"es":[13,16]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/23fbb47426/ShieldStrInt3.png","w":2,"h":3} +{"name":"鉛鑄權杖","refName":"Lead Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/4b16d71d85/scepter5.png","w":2,"h":3} +{"name":"皮革腰帶","refName":"Leather Belt","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdDMiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/93af17affd/Belt3.png","w":2} +{"name":"皮革護腕","refName":"Leather Bracers","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQnJhY2VyQmFzZVR5cGVfbGVhdGhlciIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/863a42f603/BracerBaseType_leather.png","w":2,"h":2} +{"name":"皮帽","refName":"Leather Cap","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[19,27]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/765e9b75f1/HelmetDex1.png","w":2,"h":2} +{"name":"革兜","refName":"Leather Hood","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[101,127]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/636c0ab999/HelmetDex3.png","w":2,"h":2} +{"name":"粗鱗皮靴","refName":"Leatherscale Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[12,17],"ev":[12,17]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/bae77b3a2c/BootsStrDex1.png","w":2,"h":2} +{"name":"軍團長靴","refName":"Legion Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[104,120],"es":[21,25]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/742e5a15d7/BootsStrInt2.png","w":2,"h":2} +{"name":"軍團手套","refName":"Legion Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[103,121],"es":[21,25]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RySW50MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f09ae395f5/GlovesStrInt2.png","w":2,"h":2} +{"name":"軍團之錘","refName":"Legion Hammer","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U1IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/7a42346f2b/OneHandMace5.png","w":2,"h":3} +{"name":"戰亂之鎧","refName":"Legion Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[1018,1171]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/429eee131d/BodyStr2C.png","w":2,"h":3} +{"name":"戰亂聖甲蟲","refName":"Legion Scarab","namespace":"ITEM","tradeTag":"legion-scarab","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJMZWdpb24iLCJzY2FsZSI6MX1d/e7b6e5659c/LesserScarabLegion.png"} +{"name":"聖甲蟲:命令戰亂","refName":"Legion Scarab of Command","namespace":"ITEM","tradeTag":"legion-scarab-of-command","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHROb3JtYWxTY2FyYWJMZWdpb24iLCJzY2FsZSI6MX1d/5d88c1f891/AltNormalScarabLegion.png"} +{"name":"聖甲蟲:永恆鬥爭戰亂","refName":"Legion Scarab of Eternal Conflict","namespace":"ITEM","tradeTag":"legion-scarab-of-eternal-conflict","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkxlZ2lvbiIsInNjYWxlIjoxfV0/4a56211137/Tier4ScarabLegion.png"} +{"name":"聖甲蟲:幹部戰亂","refName":"Legion Scarab of Officers","namespace":"ITEM","tradeTag":"legion-scarab-of-officers","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJMZWdpb24iLCJzY2FsZSI6MX1d/986b842d3f/NormalScarabLegion.png"} +{"name":"聖甲蟲:絲克瑪戰亂","refName":"Legion Scarab of The Sekhema","namespace":"ITEM","tradeTag":"legion-scarab-of-the-sekhema","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiTGVnaW9uIiwic2NhbGUiOjF9XQ/d687801212/GreaterScarabLegion.png"} +{"name":"軍團長劍","refName":"Legion Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/38536bcafb/OneHandSword5.png","w":2,"h":3} +{"name":"軍團長劍碎片","refName":"Legion Sword Piece","namespace":"ITEM","craftable":{"category":"Unique Fragment","uniqueOnly":true},"icon":"","w":1,"h":2} +{"name":"低階異能灰燼","refName":"Lesser Eldritch Ember","namespace":"ITEM","tradeTag":"lesser-eldritch-ember","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2xlYW5zaW5nRmlyZU9yYlJhbmsxIiwic2NhbGUiOjF9XQ/c7df0e0316/CleansingFireOrbRank1.png"} +{"name":"低階異能靈液","refName":"Lesser Eldritch Ichor","namespace":"ITEM","tradeTag":"lesser-eldritch-ichor","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVGFuZ2xlT3JiUmFuazEiLCJzY2FsZSI6MX1d/70e5e53590/TangleOrbRank1.png"} +{"name":"海獸護手","refName":"Leviathan Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[359,413]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyNCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/468f466568/GlovesStr4.png","w":2,"h":2} +{"name":"海獸脛甲","refName":"Leviathan Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[359,413]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/82bedfd1e0/BootsStr4.png","w":2,"h":2} +{"name":"荒野手套","refName":"Leyline Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[9,10]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUml0dWFsSW50R2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/b698da54ed/RitualIntGloves.png","w":2,"h":2} +{"name":"荒涼牧野","refName":"Leyline Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/5UjUxso.jpg"}} +{"name":"巫妖之冠","refName":"Lich's Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[117,134]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4bb6b31cbe/HelmetInt8.png","w":2,"h":2} +{"name":"生命符文","refName":"Life Rune","namespace":"ITEM","tradeTag":"life-rune","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2V0dGxlcnMvVmlsbGFnZVJ1bmUxIiwic2NhbGUiOjF9XQ/98d663edbd/VillageRune1.png"} +{"name":"輕鎖甲","refName":"Light Brigandine","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[48,63],"ev":[48,63]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MkEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/c9df1157d4/BodyStrDex2A.png","w":2,"h":3} +{"name":"絕望燈塔","refName":"Lighthouse Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/40gXcr4.jpg"}} +{"name":"椴木鳶盾","refName":"Linden Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[43,56],"es":[11,14]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/996436dc6d/ShieldStrInt2.png","w":2,"h":3} +{"name":"獅首皮盔","refName":"Lion Pelt","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[380,437]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDEwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/ea03257436/HelmetDex10.png","w":2,"h":2} +{"name":"獅爪巨劍","refName":"Lion Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d69254d0a6/TwoHandSword6.png","w":2,"h":4} +{"name":"細刃","refName":"Lithe Blade","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDgiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/decb6a0e86/TwoHandSword8.png","w":2,"h":4} +{"name":"孤角魔符","refName":"Lone Antler Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbldoaXRlMiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/21377608a3/TalismanWhite2.png"} +{"name":"長弓","refName":"Long Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/c064c479fa/Bow3.png","w":2,"h":4} +{"name":"長杖","refName":"Long Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmYzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/9bc79ef01c/Staff3.png","w":2,"h":4} +{"name":"大劍","refName":"Longsword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDIiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/fcaf050e0f/TwoHandSword2.png","w":2,"h":4} +{"name":"長牙魔符","refName":"Longtooth Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hblJlZDQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/47b8c0e94f/TalismanRed4.png"} +{"name":"如履危牆","refName":"Lookout Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/QNuOzHT.jpg"}} +{"name":"領主護鎧","refName":"Lordly Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[353,417]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyM0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/09903268a5/BodyStr3C.png","w":2,"h":3} +{"name":"覆體環甲","refName":"Loricated Ringmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[325,374],"es":[66,76]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/61293d71af/BodyStrInt1B.png","w":2,"h":3} +{"name":"明透化石","refName":"Lucent Fossil","namespace":"ITEM","tradeTag":"lucent-fossil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvTHVjZW50Rm9zc2lsIiwic2NhbGUiOjF9XQ/0cf6de72d4/LucentFossil.png"} +{"name":"月影之冠","refName":"Lunaris Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[41,48]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/558833af02/HelmetInt6.png","w":2,"h":2} +{"name":"光輝法杖","refName":"Lustrous Ward","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvTHVtaW5vdXNXYXJkIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/0be7aaf163/LuminousWard.png","w":2,"h":2} +{"name":"瘋狂的培育器","refName":"Maddening Incubator","namespace":"ITEM","tradeTag":"maddening-incubator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRGVsaXJpdW0iLCJzY2FsZSI6MX1d/74f49a934c/IncubationDelirium.png"} +{"name":"風暴長杖","refName":"Maelström Staff","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY1IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/53f1a6b438/Staff5.png","w":2,"h":4} +{"name":"博學長衣","refName":"Mage's Vestment","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[62,69]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9ea39de510/BodyInt1C.png","w":2,"h":3} +{"name":"行政者戰冠","refName":"Magistrate Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[160,189],"es":[33,39]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/cf727943d2/HelmetStrInt8.png","w":2,"h":2} +{"name":"熔岩塔盾","refName":"Magmatic Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[144,165]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0hlaXN0U2hpZWxkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/e65fb9efea/HeistShield.png","w":2,"h":3} +{"name":"桃木塔盾","refName":"Mahogany Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[230,265]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d95a5bfcf0/ShieldStr4.png","w":2,"h":4} +{"name":"莊嚴皮盔","refName":"Majestic Pelt","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[582,669]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDEwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/ea03257436/HelmetDex10.png","w":2,"h":2} +{"name":"莊嚴之鎧","refName":"Majestic Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[530,625]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyM0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/09903268a5/BodyStr3C.png","w":2,"h":3} +{"name":"畸形亡域","refName":"Malformation Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/bVcvxGD.jpg"}} +{"name":"邪惡獠牙","refName":"Malign Fangs","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9IZWlzdENsYXciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/7ebe8140fa/HeistClaw.png","w":2,"h":2} +{"name":"千斤錘","refName":"Mallet","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2UzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/5e536c19aa/TwoHandMace3.png","w":2,"h":4} +{"name":"肆虐之斧","refName":"Maltreatment Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9IZWlzdE9uZWhhbmRBeGUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5ba95d3930/HeistOnehandAxe.png","w":2,"h":3} +{"name":"巨顎魔符","refName":"Mandible Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9OZXdUYWxpc21hbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c548be9ed4/NewTalisman.png"} +{"name":"孔洞戒指","refName":"Manifold Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvSGVpc3RSaW5nMkRhcmsiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/087a05ad4a/HeistRing2Dark.png"} +{"name":"楓木圓盾","refName":"Maple Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[88,99],"ev":[88,99]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9cccab30a2/ShieldStrDex2.png","w":2,"h":3} +{"name":"馬拉克斯弓","refName":"Maraketh Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzkiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/aa9bf2b0d1/Bow9.png","w":2,"h":4} +{"name":"理石護身符","refName":"Marble Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9NYXJibGVBbXVsZXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3dee478d8d/MarbleAmulet.png"} +{"name":"元帥鎧甲","refName":"Marshall's Brigandine","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[627,721],"ev":[627,721]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/60a6d7b58c/BodyStrDex2C.png","w":2,"h":3} +{"name":"惡臭沼地","refName":"Marshes Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/25Oc1GQ.jpg"}} +{"name":"烈士長靴","refName":"Martyr Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[176,203],"es":[35,41]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/742e5a15d7/BootsStrInt2.png","w":2,"h":2} +{"name":"烈士手套","refName":"Martyr Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[176,203],"es":[35,41]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RySW50MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f09ae395f5/GlovesStrInt2.png","w":2,"h":2} +{"name":"專業鎖撬","refName":"Master Lockpick","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvTWFzdGVyTG9ja3BpY2siLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c0ac4addef/MasterLockpick.png","w":2,"h":2} +{"name":"靜縊陵墓","refName":"Mausoleum Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/lppiQiQ.jpg"}} +{"name":"釋界之貪婪鑿","refName":"Maven's Chisel of Avarice","namespace":"ITEM","tradeTag":"mavens-chisel-of-avarice","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWF2ZW5DaGlzZWw0Iiwic2NhbGUiOjF9XQ/d878502dc7/MavenChisel4.png"} +{"name":"釋界之占卜鑿","refName":"Maven's Chisel of Divination","namespace":"ITEM","tradeTag":"mavens-chisel-of-divination","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWF2ZW5DaGlzZWw1Iiwic2NhbGUiOjF9XQ/ff3e7f02eb/MavenChisel5.png"} +{"name":"釋界之採購鑿","refName":"Maven's Chisel of Procurement","namespace":"ITEM","tradeTag":"mavens-chisel-of-procurement","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWF2ZW5DaGlzZWwxIiwic2NhbGUiOjF9XQ/a21d7d73da/MavenChisel1.png"} +{"name":"釋界之增值鑿","refName":"Maven's Chisel of Proliferation","namespace":"ITEM","tradeTag":"mavens-chisel-of-proliferation","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWF2ZW5DaGlzZWwyIiwic2NhbGUiOjF9XQ/bb82bb4150/MavenChisel2.png"} +{"name":"釋界之聖甲蟲鑿","refName":"Maven's Chisel of Scarabs","namespace":"ITEM","tradeTag":"mavens-chisel-of-scarabs","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWF2ZW5DaGlzZWwzIiwic2NhbGUiOjF9XQ/a7a9ac8f01/MavenChisel3.png"} +{"name":"冥神之域","refName":"Maze Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/vPKZUFI.jpg"}} +{"name":"牛頭人謎域","refName":"Maze of the Minotaur Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhczJNYXBzL05ldy9NaW5vdGF1ciIsInciOjEsImgiOjEsInNjYWxlIjoxLCJtbiI6MTQsIm10IjowLCJtaSI6MX1d/6bee7d5ef7/Minotaur.png","map":{"screenshot":"https://i.imgur.com/rMcvBGP.jpg"}} +{"name":"戮魂重錘","refName":"Meatgrinder","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U1IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/88d16a9600/TwoHandMace5.png","w":2,"h":4} +{"name":"肉袋","refName":"Meatsack","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0Z1bmd1c1pvbWJpZUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/4da2b7756d/FungusZombieCorpse.png","w":3,"h":2} +{"name":"機械腰帶","refName":"Mechalarm Belt","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSGVpc3RCZWx0MiIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/21286700c8/HeistBelt2.png","w":2} +{"name":"腰帶外觀:機械龐克","refName":"Mechanical Belt","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSGVpc3RCZWx0MiIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/21286700c8/HeistBelt2.png","w":2} +{"name":"中型星團珠寶","refName":"Medium Cluster Jewel","namespace":"ITEM","craftable":{"category":"Cluster Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL05ld0dlbUJhc2UyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/78f6bf8356/NewGemBase2.png"} +{"name":"中型複合藥劑","refName":"Medium Hybrid Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvaHlicmlkZmxhc2syIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/7ac2158cdf/hybridflask2.png","h":2} +{"name":"中型生命藥劑","refName":"Medium Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrMiIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/c06020a713/lifeflask2.png","h":2} +{"name":"中型魔力藥劑","refName":"Medium Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrMiIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/3c612edd38/manaflask2.png","h":2} +{"name":"平頂荒漠","refName":"Mesa Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/gvpYUBQ.jpg"}} +{"name":"網眼長靴","refName":"Mesh Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[51,64],"es":[11,14]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e75ade3184/BootsStrInt3.png","w":2,"h":2} +{"name":"網眼手套","refName":"Mesh Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[58,67],"es":[12,14]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RySW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7adc65bac6/GlovesStrInt3.png","w":2,"h":2} +{"name":"金鋼化石","refName":"Metallic Fossil","namespace":"ITEM","tradeTag":"metallic-fossil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvTWV0YWxsaWNGb3NzaWwiLCJzY2FsZSI6MX1d/5a8a5bd1b1/MetallicFossil.png"} +{"name":"微釀腰帶","refName":"Micro-Distillery Belt","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSGVpc3RCZWx0MSIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/1f77620811/HeistBelt1.png","w":2} +{"name":"夜語長劍","refName":"Midnight Blade","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDgiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/406f7aec97/OneHandSword8.png","w":2,"h":3} +{"name":"軍用長杖","refName":"Military Staff","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY0IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/85c22bd16b/Staff4.png","w":2,"h":4} +{"name":"靈能之籠","refName":"Mind Cage","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[73,84]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDEwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/79abe1a202/HelmetInt10.png","w":2,"h":2} +{"name":"濕地礦山","refName":"Mineral Pools Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/AvgBb6c.jpg"}} +{"name":"卡蘭德的魔鏡","refName":"Mirror of Kalandra","namespace":"ITEM","tradeTag":"mirror","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lEdXBsaWNhdGUiLCJzY2FsZSI6MX1d/8d7fea29d1/CurrencyDuplicate.png"} +{"name":"魔鏡碎片","refName":"Mirror Shard","namespace":"ITEM","tradeTag":"mirror-shard","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWlycm9yU2hhcmQiLCJzY2FsZSI6MX1d/698183ea2b/MirrorShard.png"} +{"name":"鋼鏡刺盾","refName":"Mirrored Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[151,174],"es":[31,35]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/53a98ddeac/ShieldDexInt4.png","w":2,"h":2} +{"name":"猴掌魔符","refName":"Monkey Paw Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Nb25rZXlQYXdUYWxpc21hbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/4eb5202fe4/MonkeyPawTalisman.png"} +{"name":"雙猴魔符","refName":"Monkey Twins Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hblJlZDYiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/2cd96aba6e/TalismanRed6.png"} +{"name":"月神長杖","refName":"Moon Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY4IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/edbdbaa9ba/Staff8.png","w":2,"h":4} +{"name":"嬋娟神殿","refName":"Moon Temple Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/WoUgaQp.jpg"}} +{"name":"月光之冠","refName":"Moonlit Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[87,100]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/558833af02/HelmetInt6.png","w":2,"h":2} +{"name":"月光石戒指","refName":"Moonstone Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTW9vbnN0b25lUmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6dbab29358/MoonstoneRing.png"} +{"name":"晨星","refName":"Morning Star","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U4IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/d7f01f7a37/TwoHandMace8.png","w":2,"h":4} +{"name":"凡人的哀傷","refName":"Mortal Grief","namespace":"ITEM","tradeTag":"grie","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyVmFhbDA0Iiwic2NhbGUiOjF9XQ/fa8dd8fea2/UberVaal04.png"} +{"name":"凡人的希望","refName":"Mortal Hope","namespace":"ITEM","tradeTag":"hope","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyVmFhbDAyIiwic2NhbGUiOjF9XQ/9f6c126c9e/UberVaal02.png"} +{"name":"凡人的無知","refName":"Mortal Ignorance","namespace":"ITEM","tradeTag":"ign","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyVmFhbDAzIiwic2NhbGUiOjF9XQ/3d126fe51b/UberVaal03.png"} +{"name":"凡人的憤怒","refName":"Mortal Rage","namespace":"ITEM","tradeTag":"rage","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyVmFhbDAxIiwic2NhbGUiOjF9XQ/9dca208434/UberVaal01.png"} +{"name":"厚裝鳶盾","refName":"Mosaic Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[147,169],"es":[30,34]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/23fbb47426/ShieldStrInt3.png","w":2,"h":3} +{"name":"山脊符文","refName":"Mountain Rune","namespace":"ITEM","tradeTag":"mountain-rune","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2V0dGxlcnMvVmlsbGFnZVJ1bmU4Iiwic2NhbGUiOjF9XQ/f5ea7b3aa9/VillageRune8.png"} +{"name":"陰晦泥灘","refName":"Mud Geyser Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/qVVPlhi.jpg"}} +{"name":"暗殺者長靴","refName":"Murder Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[185,213],"es":[18,21]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/bad1ba72df/BootsDexInt4.png","w":2,"h":2} +{"name":"暗殺者護手","refName":"Murder Mitts","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[121,139],"es":[25,28]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/060b6ea395/GlovesDexInt3.png","w":2,"h":2} +{"name":"殺戮之眼珠寶","refName":"Murderous Eye Jewel","namespace":"ITEM","craftable":{"category":"Abyss Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL011cmRlcm91c0V5ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/439da96896/MurderousEye.png"} +{"name":"古博物館","refName":"Museum Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/oOrFsgt.jpg"}} +{"name":"憤怒之呢喃精髓","refName":"Muttering Essence of Anger","namespace":"ITEM","tradeTag":"muttering-essence-of-anger","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9BbmdlcjIiLCJzY2FsZSI6MX1d/3963f7ecaf/Anger2.png"} +{"name":"輕視之呢喃精髓","refName":"Muttering Essence of Contempt","namespace":"ITEM","tradeTag":"muttering-essence-of-contempt","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Db250ZW1wdDIiLCJzY2FsZSI6MX1d/13a5416e7b/Contempt2.png"} +{"name":"恐懼之呢喃精髓","refName":"Muttering Essence of Fear","namespace":"ITEM","tradeTag":"muttering-essence-of-fear","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9GZWFyMiIsInNjYWxlIjoxfV0/e65af458a0/Fear2.png"} +{"name":"貪婪之呢喃精髓","refName":"Muttering Essence of Greed","namespace":"ITEM","tradeTag":"muttering-essence-of-greed","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVlZDIiLCJzY2FsZSI6MX1d/66dcbcfe6c/Greed2.png"} +{"name":"憎恨之呢喃精髓","refName":"Muttering Essence of Hatred","namespace":"ITEM","tradeTag":"muttering-essence-of-hatred","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9IYXRyZWQyIiwic2NhbGUiOjF9XQ/cb37284b43/Hatred2.png"} +{"name":"哀惜之呢喃精髓","refName":"Muttering Essence of Sorrow","namespace":"ITEM","tradeTag":"muttering-essence-of-sorrow","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Tb3Jyb3cyIiwic2NhbGUiOjF9XQ/d4fa234cf8/Sorrow2.png"} +{"name":"折磨之呢喃精髓","refName":"Muttering Essence of Torment","namespace":"ITEM","tradeTag":"muttering-essence-of-torment","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Ub3JtZW50MiIsInNjYWxlIjoxfV0/e2ca4c066f/Torment2.png"} +{"name":"悲痛之呢喃精髓","refName":"Muttering Essence of Woe","namespace":"ITEM","tradeTag":"muttering-essence-of-woe","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Xb2UyIiwic2NhbGUiOjF9XQ/de9769c922/Woe2.png"} +{"name":"神祕的培育器","refName":"Mysterious Incubator","namespace":"ITEM","tradeTag":"mysterious-incubator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uR2VuZXJpYyIsInNjYWxlIjoxfV0/9476a818a5/IncubationGeneric.png"} +{"name":"拳釘","refName":"Nailed Fist","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3MSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/22e3c62f0d/Claw1.png","w":2,"h":2} +{"name":"無名戒指","refName":"Nameless Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUml0dWFsUmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1213b9959b/RitualRing.png"} +{"name":"契約書:海軍","refName":"Naval Contract","namespace":"ITEM","craftable":{"uniqueOnly":true,"category":"Heist Contract"},"icon":""} +{"name":"海軍軍官","refName":"Naval Officer","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0FkbWlyYWxEYXJuYXdDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/ccfa254872/AdmiralDarnawCorpse.png","w":3,"h":2} +{"name":"操靈者之冠","refName":"Necromancer Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[55,64]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4bb6b31cbe/HelmetInt8.png","w":2,"h":2} +{"name":"操靈者背心","refName":"Necromancer Silks","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[123,147]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/3689be0ddd/BodyInt2B.png","w":2,"h":3} +{"name":"魔影墓場","refName":"Necropolis Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/6cNUs2I.jpg"}} +{"name":"亡者護甲","refName":"Necrotic Armour","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[723,831],"es":[145,167]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50NEMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/99efce2041/BodyDexInt4C.png","w":2,"h":3} +{"name":"針恐怖","refName":"Needle Horror","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0RlbW9uQm9zczNDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/6abaea26f2/DemonBoss3Corpse.png","w":3,"h":2} +{"name":"核心手套","refName":"Nexus Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[47,54]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUml0dWFsSW50R2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/b698da54ed/RitualIntGloves.png","w":2,"h":2} +{"name":"夢魘戰盔","refName":"Nightmare Bascinet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[162,187],"ev":[233,268]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDEwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/4c9ea10e7c/HelmetStrDex10.png","w":2,"h":2} +{"name":"夢魘之錘","refName":"Nightmare Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U4IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/57786131bb/OneHandMace8.png","w":2,"h":3} +{"name":"夜織之袍","refName":"Nightweave Robe","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[227,260]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8b200fbbb5/BodyInt2C.png","w":2,"h":3} +{"name":"黑夜之風便鞋","refName":"Nightwind Slippers","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[34,39]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SaXR1YWxJbnRCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/dfe31cc493/RitualIntBoots.png","w":2,"h":2} +{"name":"尼科的記憶","refName":"Niko's Memory","namespace":"ITEM","craftable":{"category":"Memory Line"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWVtb3J5TGluZS9OaWtvTWVtb3J5SXRlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5c560ea8fd/NikoMemoryItem.png"} +{"name":"權貴巨斧","refName":"Noble Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/e2c34a0fb2/TwoHandAxe6.png","w":2,"h":4} +{"name":"貴族戰爪","refName":"Noble Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/9efad90cdb/Claw7.png","w":2,"h":2} +{"name":"貴族三角帽","refName":"Noble Tricorne","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[232,266]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/545e1905b3/HelmetDex6.png","w":2,"h":2} +{"name":"毒性催化劑","refName":"Noxious Catalyst","namespace":"ITEM","tradeTag":"noxious-catalyst","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL0NoYW9zUGh5c2ljYWxDYXRhbHlzdCIsInNjYWxlIjoxfV0/2b886f8343/ChaosPhysicalCatalyst.png"} +{"name":"砂影短靴","refName":"Nubuck Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[113,126]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/76eb290c9b/BootsDex4.png","w":2,"h":2} +{"name":"砂影手套","refName":"Nubuck Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[109,122]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/05a8c03e95/GlovesDex4.png","w":2,"h":2} +{"name":"橡木輕盾","refName":"Oak Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[220,259]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/cffdb4477e/ShieldDex2.png","w":2,"h":2} +{"name":"橡木枝萃取物","refName":"Oakbranch Tincture","namespace":"ITEM","craftable":{"category":"Tincture"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL0NyaXRpY2FsU3RyaWtlU2FwIiwidyI6MSwiaCI6Miwic2NhbGUiOjF9XQ/d7d5d7ef19/CriticalStrikeSap.png","h":2} +{"name":"晦澀之譫妄玉","refName":"Obscured Delirium Orb","namespace":"ITEM","tradeTag":"obscured-delirium-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJCcmVhY2giLCJzY2FsZSI6MX1d/0b320eec66/DeliriumOrbBreach.png"} +{"name":"朦朧的培育器","refName":"Obscured Incubator","namespace":"ITEM","tradeTag":"obscured-incubator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQnJlYWNoIiwic2NhbGUiOjF9XQ/e9b256aff0/IncubationBreach.png"} +{"name":"黑曜磨刀石","refName":"Obsidian Sharpening Stone","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvT2JzaWRpYW5TaGFycGVuaW5nU3RvbmUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3b585d05fe/ObsidianSharpeningStone.png","w":2,"h":2} +{"name":"秘術長衣","refName":"Occultist's Vestment","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[137,151]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9ea39de510/BodyInt1C.png","w":2,"h":3} +{"name":"赤色權杖","refName":"Ochre Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/35e149f5cf/scepter6.png","w":2,"h":3} +{"name":"女神祭品","refName":"Offering to the Goddess","namespace":"ITEM","tradeTag":"offer","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9MYWJ5cmludGgiLCJzY2FsZSI6MX1d/24fe6dc261/Labyrinth.png"} +{"name":"精油淬鍊","refName":"Oil Extractor","namespace":"ITEM","tradeTag":"oil-extractor","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9JY2hvckV4dHJhY3RvciIsInNjYWxlIjoxfV0/e020224caf/IchorExtractor.png"} +{"name":"防水外衣","refName":"Oiled Coat","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[124,146],"es":[28,33]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/360c5ce7d4/BodyDexInt2B.png","w":2,"h":3} +{"name":"防水背心","refName":"Oiled Vest","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[54,70],"es":[14,18]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MkEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2b44daac92/BodyDexInt2A.png","w":2,"h":3} +{"name":"腎上腺素之預兆","refName":"Omen of Adrenaline","namespace":"ITEM","tradeTag":"omen-of-adrenaline","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zM1llbGxvdyIsInNjYWxlIjoxfV0/3713d430a2/VoodooOmens3Yellow.png"} +{"name":"改善之預兆","refName":"Omen of Amelioration","namespace":"ITEM","tradeTag":"omen-of-amelioration","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zMUJsdWUiLCJzY2FsZSI6MX1d/7af7f24083/VoodooOmens1Blue.png"} +{"name":"白化之預兆","refName":"Omen of Blanching","namespace":"ITEM","tradeTag":"omen-of-blanching","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zNFB1cnBsZSIsInNjYWxlIjoxfV0/cc40d87dcb/VoodooOmens4Purple.png"} +{"name":"光輝之預兆","refName":"Omen of Brilliance","namespace":"ITEM","tradeTag":"omen-of-brilliance","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zNEJsdWUiLCJzY2FsZSI6MX1d/0fb19e3399/VoodooOmens4Blue.png"} +{"name":"連結之預兆","refName":"Omen of Connections","namespace":"ITEM","tradeTag":"omen-of-connections","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zM1B1cnBsZSIsInNjYWxlIjoxfV0/ef5b7d0a85/VoodooOmens3Purple.png"} +{"name":"死舞之預兆","refName":"Omen of Death-dancing","namespace":"ITEM","tradeTag":"omen-of-death-dancing","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zMVllbGxvdyIsInNjYWxlIjoxfV0/cbc6367481/VoodooOmens1Yellow.png"} +{"name":"死者大門之預兆","refName":"Omen of Death's Door","namespace":"ITEM","tradeTag":"omen-of-deaths-door","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zNFllbGxvdyIsInNjYWxlIjoxfV0/6e22195c5b/VoodooOmens4Yellow.png"} +{"name":"財富之預兆","refName":"Omen of Fortune","namespace":"ITEM","tradeTag":"omen-of-fortune","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zMVB1cnBsZSIsInNjYWxlIjoxfV0/f7558b6e48/VoodooOmens1Purple.png"} +{"name":"提神之預兆","refName":"Omen of Refreshment","namespace":"ITEM","tradeTag":"omen-of-refreshment","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zMlllbGxvdyIsInNjYWxlIjoxfV0/292381414c/VoodooOmens2Yellow.png"} +{"name":"返回之預兆","refName":"Omen of Return","namespace":"ITEM","tradeTag":"omen-of-return","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zMkJsdWUiLCJzY2FsZSI6MX1d/bd2fd8bf5b/VoodooOmens2Blue.png"} +{"name":"工匠之預兆","refName":"Omen of the Jeweller","namespace":"ITEM","tradeTag":"omen-of-the-jeweller","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zMlB1cnBsZSIsInNjYWxlIjoxfV0/220fd7098d/VoodooOmens2Purple.png"} +{"name":"嗜魂者之預兆","refName":"Omen of the Soul Devourer","namespace":"ITEM","tradeTag":"omen-of-the-soul-devourer","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zM0JsdWUiLCJzY2FsZSI6MX1d/00f28b94e2/VoodooOmens3Blue.png"} +{"name":"靈兆法杖","refName":"Omen Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNiIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/30763e0fe7/Wand6.png","h":3} +{"name":"黑曜護身符","refName":"Onyx Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQ3IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/58942b1ab3/Amulet7.png"} +{"name":"蛋白石戒指","refName":"Opal Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvT3BhbFJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8c87f65b28/OpalRing.png"} +{"name":"靈石權杖","refName":"Opal Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/c986bafb78/scepter4.png","w":2,"h":3} +{"name":"靈石法杖","refName":"Opal Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNCIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/b505ad92e7/Wand4.png","h":3} +{"name":"乳白油瓶","refName":"Opalescent Oil","namespace":"ITEM","tradeTag":"opalescent-oil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9PcGFsZXNjZW50T2lsIiwic2NhbGUiOjF9XQ/abd419a154/OpalescentOil.png"} +{"name":"技工偵查報告","refName":"Operative's Scouting Report","namespace":"ITEM","tradeTag":"operatives-scouting-report","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png"} +{"name":"華麗化石","refName":"Opulent Fossil","namespace":"ITEM","tradeTag":"opulent-fossil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUGVyZmVjdEZvc3NpbCIsInNjYWxlIjoxfV0/f9e43ecadb/PerfectFossil.png"} +{"name":"點金石","refName":"Orb of Alchemy","namespace":"ITEM","tradeTag":"alch","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lVcGdyYWRlVG9SYXJlIiwic2NhbGUiOjF9XQ/0c72cd1d44/CurrencyUpgradeToRare.png"} +{"name":"改造石","refName":"Orb of Alteration","namespace":"ITEM","tradeTag":"alt","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lSZXJvbGxNYWdpYyIsInNjYWxlIjoxfV0/6308fc8ca2/CurrencyRerollMagic.png"} +{"name":"無效石","refName":"Orb of Annulment","namespace":"ITEM","tradeTag":"annul","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5udWxsT3JiIiwic2NhbGUiOjF9XQ/0858a418ac/AnnullOrb.png"} +{"name":"增幅石","refName":"Orb of Augmentation","namespace":"ITEM","tradeTag":"aug","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lBZGRNb2RUb01hZ2ljIiwic2NhbGUiOjF9XQ/d879c15321/CurrencyAddModToMagic.png"} +{"name":"束縛石","refName":"Orb of Binding","namespace":"ITEM","tradeTag":"orb-of-binding","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmluZGluZ09yYiIsInNjYWxlIjoxfV0/aac9579bd2/BindingOrb.png"} +{"name":"機會石","refName":"Orb of Chance","namespace":"ITEM","tradeTag":"chance","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lVcGdyYWRlUmFuZG9tbHkiLCJzY2FsZSI6MX1d/a3f9bf0917/CurrencyUpgradeRandomly.png"} +{"name":"衝突寶珠","refName":"Orb of Conflict","namespace":"ITEM","tradeTag":"orb-of-conflict","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ29uZmxpY3RPcmJSYW5rMSIsInNjYWxlIjoxfV0/7e02c990fc/ConflictOrbRank1.png"} +{"name":"支配之玉","refName":"Orb of Dominance","namespace":"ITEM","tradeTag":"mavens-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWF2ZW5PcmIiLCJzY2FsZSI6MX1d/f307d80bfd/MavenOrb.png"} +{"name":"鏈結石","refName":"Orb of Fusing","namespace":"ITEM","tradeTag":"fusing","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lSZXJvbGxTb2NrZXRMaW5rcyIsInNjYWxlIjoxfV0/c5e1959880/CurrencyRerollSocketLinks.png"} +{"name":"地平石","refName":"Orb of Horizons","namespace":"ITEM","tradeTag":"orb-of-horizons","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSG9yaXpvbk9yYiIsInNjYWxlIjoxfV0/0891338fb0/HorizonOrb.png"} +{"name":"後悔石","refName":"Orb of Regret","namespace":"ITEM","tradeTag":"regret","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lQYXNzaXZlU2tpbGxSZWZ1bmQiLCJzY2FsZSI6MX1d/32d499f562/CurrencyPassiveSkillRefund.png"} +{"name":"重鑄石","refName":"Orb of Scouring","namespace":"ITEM","tradeTag":"scour","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lDb252ZXJ0VG9Ob3JtYWwiLCJzY2FsZSI6MX1d/a0981d67fe/CurrencyConvertToNormal.png"} +{"name":"蛻變石","refName":"Orb of Transmutation","namespace":"ITEM","tradeTag":"transmute","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lVcGdyYWRlVG9NYWdpYyIsInNjYWxlIjoxfV0/ded9e8ee63/CurrencyUpgradeToMagic.png"} +{"name":"撤銷石","refName":"Orb of Unmaking","namespace":"ITEM","tradeTag":"orb-of-unmaking","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUmVncmV0T3JiIiwic2NhbGUiOjF9XQ/beae1b00c7/RegretOrb.png"} +{"name":"密林果園","refName":"Orchard Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/S5wxemk.jpg"}} +{"name":"華麗的孵育器","refName":"Ornate Incubator","namespace":"ITEM","tradeTag":"ornate-incubator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQ3VycmVuY3kiLCJzY2FsZSI6MX1d/e8a6d32623/IncubationCurrency.png"} +{"name":"華麗之錘","refName":"Ornate Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U3IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/84402507d1/OneHandMace7.png","w":2,"h":3} +{"name":"華麗箭袋","refName":"Ornate Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9UcmlnZ2VyUXVpdmVyVW5pcXVlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/925018d4b5/TriggerQuiverUnique.png","w":2,"h":3} +{"name":"華麗環甲","refName":"Ornate Ringmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[259,298],"es":[54,62]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/3247afb396/BodyStrInt1C.png","w":2,"h":3} +{"name":"華麗刺盾","refName":"Ornate Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[120,135],"es":[26,29]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3f3c95a49a/ShieldDexInt5.png","w":2,"h":2} +{"name":"名貴巨劍","refName":"Ornate Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d69254d0a6/TwoHandSword6.png","w":2,"h":4} +{"name":"猶疑權杖","refName":"Oscillating Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9IZWlzdFNjZXB0cmVFbGVtZW50YWwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/34e5d78ab3/HeistSceptreElemental.png","w":2,"h":3} +{"name":"超凡的培育器","refName":"Otherworldly Incubator","namespace":"ITEM","tradeTag":"otherworldly-incubator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uTWFwcyIsInNjYWxlIjoxfV0/3d07c20be0/IncubationMaps.png"} +{"name":"超凡偵查報告","refName":"Otherworldly Scouting Report","namespace":"ITEM","tradeTag":"otherworldly-scouting-report","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png"} +{"name":"地窖遺鑰","refName":"Oubliette Reliquary Key","namespace":"ITEM","tradeTag":"oubliette-reliquary-key","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TaXJ1c0ZvaWwiLCJzY2FsZSI6MX1d/1ada8ca2a7/SirusFoil.png"} +{"name":"長草遺跡","refName":"Overgrown Ruin Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/U1gMZhT.jpg"}} +{"name":"密草神殿","refName":"Overgrown Shrine Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/vXh4QKk.jpg"}} +{"name":"長袖棉襖","refName":"Padded Jacket","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[102,128],"es":[24,29]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/333216677b/BodyDexInt1B.png","w":2,"h":3} +{"name":"薄襯衣","refName":"Padded Vest","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[27,38],"es":[9,13]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MUEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/4e0c88b753/BodyDexInt1A.png","w":2,"h":3} +{"name":"異教法杖","refName":"Pagan Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNyIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/84ced52bef/Wand7.png","h":3} +{"name":"恐怖主義","refName":"Pain Artist","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0FmZmxpY3Rpb25NaW5pb24yQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/afa1eaea1c/AfflictionMinion2Corpse.png","w":3,"h":2} +{"name":"彩繪輕盾","refName":"Painted Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[123,154]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/10a005f978/ShieldDex3.png","w":2,"h":2} +{"name":"彩繪塔盾","refName":"Painted Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[188,216]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/80f9f1abea/ShieldStr7.png","w":2,"h":4} +{"name":"神域之殿","refName":"Palace Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/U7ABlGw.jpg"}} +{"name":"聖騎士長靴","refName":"Paladin Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[205,236],"es":[41,47]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e75ade3184/BootsStrInt3.png","w":2,"h":2} +{"name":"聖騎士之冠","refName":"Paladin Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[308,355],"es":[62,71]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/607b69e687/HelmetStrInt7.png","w":2,"h":2} +{"name":"聖騎士手套","refName":"Paladin Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[205,236],"es":[41,47]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RySW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7adc65bac6/GlovesStrInt3.png","w":2,"h":2} +{"name":"聖騎士長甲","refName":"Paladin's Hauberk","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[627,721],"es":[126,145]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5a1804c81b/BodyStrInt2C.png","w":2,"h":3} +{"name":"草紙聖物","refName":"Papyrus Relic","namespace":"ITEM","craftable":{"category":"Sanctum Relic"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljQmFzZTR4MSIsInciOjQsImgiOjEsInNjYWxlIjoxfV0/978c0b6ab9/RelicBase4x1.png","w":4} +{"name":"園林苑","refName":"Park Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/HlFwmtM.jpg"}} +{"name":"海靈護身符","refName":"Paua Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQxIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/aa977ebe43/Amulet1.png"} +{"name":"海靈戒指","refName":"Paua Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4f08d18365/Ring3.png"} +{"name":"寒光刺劍","refName":"Pecoraro","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjQiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/dc28604809/Rapier4.png","h":4} +{"name":"穢陰獄牢","refName":"Pen Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/FYax6WD.jpg"}} +{"name":"穿射箭袋","refName":"Penetrating Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJQZW5ldHJhdGluZyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/7db7561558/QuiverPenetrating.png","w":2,"h":3} +{"name":"乾潮林地","refName":"Peninsula Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/5YycEWs.jpg"}} +{"name":"懺悔面具","refName":"Penitent Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[185,212],"ev":[185,212]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleFIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f63493ca95/HelmetStrDexR.png","w":2,"h":2} +{"name":"完美褻瀆者","refName":"Perfect Blasphemer","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0dlb2ZyaUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/c8c02e1c54/GeofriCorpse.png","w":3,"h":2} +{"name":"完美血腥惡魔","refName":"Perfect Blood Demon","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0hlbGxzY2FwZURlbW9uQm9zc0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/9bcd7bb5b8/HellscapeDemonBossCorpse.png","w":3,"h":2} +{"name":"完美劍舞","refName":"Perfect Dancing Sword","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0FuaW1hdGVkV2VhcG9uQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/2720caa383/AnimatedWeaponCorpse.png","w":3,"h":2} +{"name":"完美黑暗木偶","refName":"Perfect Dark Marionette","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JvYm90TWFubmVxdWluQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/2ad85223a4/RobotMannequinCorpse.png","w":3,"h":2} +{"name":"完美黑暗奪魂鐮","refName":"Perfect Dark Reaper","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JlYXBlckJvc3NDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/d6c81d82f9/ReaperBossCorpse.png","w":3,"h":2} +{"name":"完美德魯伊鍊金師","refName":"Perfect Druidic Alchemist","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Rhd2hvYU1lZGljaW5lV29tYW5Db3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/a446a2f4d0/TawhoaMedicineWomanCorpse.png","w":3,"h":2} +{"name":"完美異能之眼","refName":"Perfect Eldritch Eye","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0VsZGVyVGVudGFjbGVNaW5pb25MYXJnZUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/19b67ee9a1/ElderTentacleMinionLargeCorpse.png","w":3,"h":2} +{"name":"完美烈焰食人族","refName":"Perfect Fiery Cannibal","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0ZpcmVGdXJ5Q29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/458c4ab871/FireFuryCorpse.png","w":3,"h":2} +{"name":"完美森林猛虎","refName":"Perfect Forest Tiger","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1RpZ2VyQmVzdGlhcnlTcGlyaXRCb3NzQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/6a46a7dc19/TigerBestiarySpiritBossCorpse.png","w":3,"h":2} +{"name":"完美森林戰士","refName":"Perfect Forest Warrior","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zpa2luZ01hcEJvc3NDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/cc6f33141d/VikingMapBossCorpse.png","w":3,"h":2} +{"name":"完美冰凍食人族","refName":"Perfect Frozen Cannibal","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0hhaWxyYWtlQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/a3828d3005/HailrakeCorpse.png","w":3,"h":2} +{"name":"完美守護野龜","refName":"Perfect Guardian Turtle","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Jvbmdva3VyYWlTcGlyaXRUb3J0b2lzZUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/5cdaded7da/RongokuraiSpiritTortoiseCorpse.png","w":3,"h":2} +{"name":"完美腦殘巨人","refName":"Perfect Half-remembered Goliath","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1N5bnRoZXNpc0dvbGVtQm9zc0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/aed2848215/SynthesisGolemBossCorpse.png","w":3,"h":2} +{"name":"完美巨大畸形","refName":"Perfect Hulking Miscreation","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JvYm90QXJndXNNaW5pYm9zc0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/b72efcb93e/RobotArgusMinibossCorpse.png","w":3,"h":2} +{"name":"完美九頭蛇","refName":"Perfect Hydra","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0h5ZHJhQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/cd848db11b/HydraCorpse.png","w":3,"h":2} +{"name":"完美審判之魂","refName":"Perfect Judgemental Spirit","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0dvZGRlc3NPZkp1c3RpY2VDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/e674a594ff/GoddessOfJusticeCorpse.png","w":3,"h":2} +{"name":"完美肉袋","refName":"Perfect Meatsack","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0Z1bmd1c1pvbWJpZUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/4da2b7756d/FungusZombieCorpse.png","w":3,"h":2} +{"name":"完美海軍軍官","refName":"Perfect Naval Officer","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0FkbWlyYWxEYXJuYXdDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/ccfa254872/AdmiralDarnawCorpse.png","w":3,"h":2} +{"name":"完美針恐怖","refName":"Perfect Needle Horror","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0RlbW9uQm9zczNDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/6abaea26f2/DemonBoss3Corpse.png","w":3,"h":2} +{"name":"完美恐怖主義","refName":"Perfect Pain Artist","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0FmZmxpY3Rpb25NaW5pb24yQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/afa1eaea1c/AfflictionMinion2Corpse.png","w":3,"h":2} +{"name":"完美原始造物主","refName":"Perfect Primal Demiurge","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0NydXNhZGVyTWFuYVBoYW50YXNtQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/66bb067c9b/CrusaderManaPhantasmCorpse.png","w":3,"h":2} +{"name":"完美原始雷鳥","refName":"Perfect Primal Thunderbird","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JhdmVuQm9zc0JsdWVDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/1a1ed30e2f/RavenBossBlueCorpse.png","w":3,"h":2} +{"name":"完美符文骷髏","refName":"Perfect Runic Skeleton","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1N3b3JkU2tlbGV0b25Db3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/171f40accf/SwordSkeletonCorpse.png","w":3,"h":2} +{"name":"完美占血惡魔","refName":"Perfect Sanguimancer Demon","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0hlbGxzY2FwZURlbW9uRWxpdGUyQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/a795ad40fa/HellscapeDemonElite2Corpse.png","w":3,"h":2} +{"name":"完美奪魂鋸","refName":"Perfect Sawblade Horror","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0RlbW9uQm9zczFDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/27f61146a0/DemonBoss1Corpse.png","w":3,"h":2} +{"name":"完美蛇靈戰士","refName":"Perfect Serpent Warrior","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0F0bGFzRXhpbGUzQXBwYXJpdGlvbkNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/127b613caf/AtlasExile3ApparitionCorpse.png","w":3,"h":2} +{"name":"完美影子暴徒","refName":"Perfect Shadow Berserker","namespace":"ITEM","icon":"%NOT_FOUND%","w":3,"h":2} +{"name":"完美影子創造物","refName":"Perfect Shadow Construct","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0luY2FTaGFkb3dCb3NzQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/acddc4a119/IncaShadowBossCorpse.png","w":3,"h":2} +{"name":"完美劈砍幽魂","refName":"Perfect Slashing Horror","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0RlbW9uQm9zczJDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/211195cd4d/DemonBoss2Corpse.png","w":3,"h":2} +{"name":"完美蜘蛛女族長","refName":"Perfect Spider Matriarch","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0JsYWNrRGVhdGhCb3NzQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/658153825a/BlackDeathBossCorpse.png","w":3,"h":2} +{"name":"完美財富之魂","refName":"Perfect Spirit of Fortune","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0t1ZHVrdVRvdGVtQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/7faf1de77b/KudukuTotemCorpse.png","w":3,"h":2} +{"name":"完美督軍","refName":"Perfect Warlord","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL09ha0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/9a9c4d9ada/OakCorpse.png","w":3,"h":2} +{"name":"鋒刃重錘","refName":"Pernach","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U2IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/a2a18837d4/OneHandMace6.png","w":2,"h":3} +{"name":"堅石木棒","refName":"Petrified Club","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2UyIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/75d926bb65/OneHandMace2.png","h":3} +{"name":"魔靈幻獄","refName":"Phantasmagoria Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/yCDYKxA.jpg"}} +{"name":"魅影長靴","refName":"Phantom Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[205,236],"es":[41,47]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/bad1ba72df/BootsDexInt4.png","w":2,"h":2} +{"name":"幻象之錘","refName":"Phantom Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U4IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/57786131bb/OneHandMace8.png","w":2,"h":3} +{"name":"魅影護手","refName":"Phantom Mitts","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[205,236],"es":[41,47]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/060b6ea395/GlovesDexInt3.png","w":2,"h":2} +{"name":"怒浪之港","refName":"Pier Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/rZMXMj1.jpg"}} +{"name":"豬面頭盔","refName":"Pig-Faced Bascinet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[229,263],"ev":[159,183]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f0313fc805/HelmetStrDex9.png","w":2,"h":2} +{"name":"掃蕩者","refName":"Piledriver","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U0IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/8c1f2059d0/TwoHandMace4.png","w":2,"h":4} +{"name":"松木輕盾","refName":"Pine Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[51,66]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/cffdb4477e/ShieldDex2.png","w":2,"h":2} +{"name":"堅毅塔盾","refName":"Pinnacle Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[467,537]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/80f9f1abea/ShieldStr7.png","w":2,"h":4} +{"name":"巨坑","refName":"Pit Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/PkwpOv0.jpg"}} +{"name":"奇美拉魔坑","refName":"Pit of the Chimera Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhczJNYXBzL05ldy9DaGltZXJhIiwidyI6MSwiaCI6MSwic2NhbGUiOjEsIm1uIjoxNCwibXQiOjAsIm1pIjoxfV0/c48b6d1b55/Chimera.png","map":{"screenshot":"https://i.imgur.com/ey3258Y.jpg"}} +{"name":"疫災之面","refName":"Plague Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[29,38],"es":[7,10]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/1bcda70f31/HelmetDexInt2.png","w":2,"h":2} +{"name":"朽木鳶盾","refName":"Plank Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[18,25],"es":[5,7]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/beeb773dcf/ShieldStrInt1.png","w":2,"h":3} +{"name":"鐵製背心","refName":"Plate Vest","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[19,27]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMUEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/027d388361/BodyStr1A.png","w":2,"h":3} +{"name":"海風高原","refName":"Plateau Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/0t2NnqI.jpg"}} +{"name":"堅鐵護手","refName":"Plated Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[39,50]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyMiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/557280e2c8/GlovesStr2.png","w":2,"h":2} +{"name":"堅鐵脛甲","refName":"Plated Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[77,96]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/56efa25c50/BootsStr3.png","w":2,"h":2} +{"name":"華麗重錘","refName":"Plated Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U2IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/a114ad5617/TwoHandMace6.png","w":2,"h":4} +{"name":"白金波刃","refName":"Platinum Kris","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjYiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/5dcee0019c/Dagger6.png","h":3} +{"name":"白金權杖","refName":"Platinum Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/4b16d71d85/scepter5.png","w":2,"h":3} +{"name":"廣場","refName":"Plaza Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/kYGkNDs.jpg"}} +{"name":"魂靈短匕","refName":"Pneumatic Dagger","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0hlaXN0RGFnZ2VyIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/d484666b70/HeistDagger.png","h":3} +{"name":"奪命刺","refName":"Poignard","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/954af836f7/Dagger4.png","h":3} +{"name":"毒莓果萃取物","refName":"Poisonberry Tincture","namespace":"ITEM","craftable":{"category":"Tincture"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL1BvaXNvblNhcCIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/d8e5f6cbdc/PoisonSap.png","h":2} +{"name":"極地輕盾","refName":"Polar Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[123,142]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0RleEhlaXN0U2hpZWxkIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/484b5bba00/DexHeistShield.png","w":2,"h":2} +{"name":"極地之邀","refName":"Polaric Invitation","namespace":"ITEM","craftable":{"category":"Invitation"},"tradeTag":"polaric-invitation","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVlc3RJdGVtcy9DbGVhbnNpbmdGaXJlT3JiUXVlc3QwIiwic2NhbGUiOjF9XQ/b5b962d0c8/CleansingFireOrbQuest0.png"} +{"name":"巨戰斧","refName":"Poleaxe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/24ac93d9cd/TwoHandAxe4.png","w":2,"h":4} +{"name":"金光感知咒術","refName":"Polished Sensing Charm","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvUG9saXNoZWRTZW5zaW5nQ2hhcm0iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/395f37968e/PolishedSensingCharm.png","w":2,"h":2} +{"name":"光輝刺盾","refName":"Polished Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[111,131],"es":[23,27]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/53a98ddeac/ShieldDexInt4.png","w":2,"h":2} +{"name":"失落城塢","refName":"Port Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/9KprAxq.jpg"}} +{"name":"傳送卷軸","refName":"Portal Scroll","namespace":"ITEM","tradeTag":"portal","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lQb3J0YWwiLCJzY2FsZSI6MX1d/d92d3478a0/CurrencyPortal.png"} +{"name":"增幅煉金鑄新儀","refName":"Potent Alchemical Resonator","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvVXBncmFkZTJ4MUIiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MX1d/0a97cfef85/Upgrade2x1B.png","h":2} +{"name":"增幅混沌鑄新儀","refName":"Potent Chaotic Resonator","namespace":"ITEM","tradeTag":"potent-chaotic-resonator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUmVyb2xsMngxQSIsInNjYWxlIjoxfV0/bee1bcfe36/Reroll2x1A.png","h":2} +{"name":"潛能長桿","refName":"Potentiality Rod","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGVpc3RXYXJTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/c9454891da/HeistWarStaff.png","w":2,"h":4} +{"name":"能量符文","refName":"Power Rune","namespace":"ITEM","tradeTag":"power-rune","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2V0dGxlcnMvVmlsbGFnZVJ1bmUxMCIsInNjYWxlIjoxfV0/7a75e42c42/VillageRune10.png"} +{"name":"強力煉金鑄新儀","refName":"Powerful Alchemical Resonator","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvVXBncmFkZTJ4MkEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/30b32cdb00/Upgrade2x2A.png","w":2,"h":2} +{"name":"強力混沌鑄新儀","refName":"Powerful Chaotic Resonator","namespace":"ITEM","tradeTag":"powerful-chaotic-resonator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUmVyb2xsMngyQSIsInNjYWxlIjoxfV0/80b90b6b94/Reroll2x2A.png","w":2,"h":2} +{"name":"領主戰冠","refName":"Praetor Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[161,185],"es":[51,58]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDEwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/6eed6bbe8e/HelmetStrInt10.png","w":2,"h":2} +{"name":"苦行之域","refName":"Precinct Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/fAJ8DcM.jpg"}} +{"name":"精準箭矢","refName":"Precise Arrowhead","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQXJyb3doZWFkUHJlY2lzZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/6cb3029c66/ArrowheadPrecise.png","w":2,"h":2} +{"name":"先行者護手","refName":"Precursor Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[307,353]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyMyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f5896830bf/GlovesStr3.png","w":2,"h":2} +{"name":"先行者脛甲","refName":"Precursor Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[307,353]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/56efa25c50/BootsStr3.png","w":2,"h":2} +{"name":"史前戰爪","refName":"Prehistoric Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ae1fb6dddd/Claw6.png","w":2,"h":2} +{"name":"庇護手套","refName":"Preserving Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[35,41]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUml0dWFsU3RyR2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/254b8a0066/RitualStrGloves.png","w":2,"h":2} +{"name":"高壓短匕","refName":"Pressurised Dagger","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0hlaXN0RGFnZ2VyIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/d484666b70/HeistDagger.png","h":3} +{"name":"預防契約書","refName":"Preventative Contract","namespace":"ITEM","craftable":{"uniqueOnly":true,"category":"Heist Contract"},"icon":""} +{"name":"始祖箭袋","refName":"Primal Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9SaWtlclJpblF1aXZlciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/8f01e6977f/RikerRinQuiver.png","w":2,"h":3} +{"name":"原始結晶生靈之力","refName":"Primal Crystallised Lifeforce","namespace":"ITEM","tradeTag":"primal-lifeforce","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9QcmltYWxMaWZlZm9yY2UiLCJzY2FsZSI6MX1d/c498cdfd7f/PrimalLifeforce.png"} +{"name":"初始之譫妄玉","refName":"Primal Delirium Orb","namespace":"ITEM","tradeTag":"primal-delirium-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJUYWxpc21hbnMiLCJzY2FsZSI6MX1d/7fd8a5c64e/DeliriumOrbTalismans.png"} +{"name":"原始造物主","refName":"Primal Demiurge","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0NydXNhZGVyTWFuYVBoYW50YXNtQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/66bb067c9b/CrusaderManaPhantasmCorpse.png","w":3,"h":2} +{"name":"先祖培育器","refName":"Primal Incubator","namespace":"ITEM","tradeTag":"primal-incubator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uVGFsaXNtYW5zIiwic2NhbGUiOjF9XQ/994245860e/IncubationTalismans.png"} +{"name":"皇骨魔符","refName":"Primal Skull Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbkJsYWNrNyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c02ff6ddaf/TalismanBlack7.png"} +{"name":"原始雷鳥","refName":"Primal Thunderbird","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JhdmVuQm9zc0JsdWVDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/1a1ed30e2f/RavenBossBlueCorpse.png","w":3,"h":2} +{"name":"終極煉金鑄新儀","refName":"Prime Alchemical Resonator","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvVXBncmFkZTJ4MkMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5192b134c8/Upgrade2x2C.png","w":2,"h":2} +{"name":"終極混沌鑄新儀","refName":"Prime Chaotic Resonator","namespace":"ITEM","tradeTag":"prime-chaotic-resonator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUmVyb2xsMngyQyIsInNjYWxlIjoxfV0/c624d45072/Reroll2x2C.png","w":2,"h":2} +{"name":"原始砍斧","refName":"Prime Cleaver","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9IZWlzdFR3b0hhbmRBeGUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/4aef1881cc/HeistTwoHandAxe.png","w":2,"h":4} +{"name":"古典刺劍","refName":"Primeval Rapier","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjYiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/f9bc0a5aa1/Rapier6.png","h":4} +{"name":"原始煉金鑄新儀","refName":"Primitive Alchemical Resonator","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvVXBncmFkZTF4MUEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/bf5a71a635/Upgrade1x1A.png"} +{"name":"原始混沌鑄新儀","refName":"Primitive Chaotic Resonator","namespace":"ITEM","tradeTag":"primitive-chaotic-resonator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUmVyb2xsMXgxQSIsInNjYWxlIjoxfV0/9c7dcd6158/Reroll1x1A.png"} +{"name":"粗製長杖","refName":"Primitive Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmYyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/69ff746d86/Staff2.png","w":2,"h":4} +{"name":"血腥陣地","refName":"Primordial Blocks Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/TtaIepR.jpg"}} +{"name":"先祖碎片","refName":"Primordial Fragment","namespace":"ITEM","craftable":{"category":"Unique Fragment","uniqueOnly":true},"icon":""} +{"name":"血腥沼澤","refName":"Primordial Pool Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/Fxl9Naf.jpg"}} +{"name":"史典長杖","refName":"Primordial Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmYyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/69ff746d86/Staff2.png","w":2,"h":4} +{"name":"多稜的催化劑","refName":"Prismatic Catalyst","namespace":"ITEM","tradeTag":"prismatic-catalyst","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL1ByaXNtYXRpY0NhdGFseXN0Iiwic2NhbGUiOjF9XQ/1e725fd26d/PrismaticCatalyst.png"} +{"name":"三相化石","refName":"Prismatic Fossil","namespace":"ITEM","tradeTag":"prismatic-fossil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUHJpc21hdGljRm9zc2lsIiwic2NhbGUiOjF9XQ/af5347946f/PrismaticFossil.png"} +{"name":"三相珠寶","refName":"Prismatic Jewel","namespace":"ITEM","craftable":{"category":"Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL01hc3RlcnkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/eb1cf5699e/Mastery.png"} +{"name":"三相之油","refName":"Prismatic Oil","namespace":"ITEM","tradeTag":"prismatic-oil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9QcmlzbWF0aWNPaWwiLCJzY2FsZSI6MX1d/271183afbe/PrismaticOil.png"} +{"name":"三相戒指","refName":"Prismatic Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzEyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/51db874b5c/Ring12.png"} +{"name":"三相萃取物","refName":"Prismatic Tincture","namespace":"ITEM","craftable":{"category":"Tincture"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL1ByaXNtYXRpY1NhcCIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/81563db8c1/PrismaticSap.png","h":2} +{"name":"原始化石","refName":"Pristine Fossil","namespace":"ITEM","tradeTag":"pristine-fossil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUHJpc3RpbmVGb3NzaWwiLCJzY2FsZSI6MX1d/bc91a1b44b/PristineFossil.png"} +{"name":"詩歌聖物","refName":"Processional Relic","namespace":"ITEM","craftable":{"category":"Sanctum Relic"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljQmFzZTF4MyIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/d1a161fb4d/RelicBase1x3.png","h":3} +{"name":"褻瀆法杖","refName":"Profane Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNyIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/84ced52bef/Wand7.png","h":3} +{"name":"月色迴廊","refName":"Promenade Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/Q8E3SQ5.jpg"}} +{"name":"尖耙短匕","refName":"Prong Dagger","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjkiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/ac5b740611/Dagger9.png","h":3} +{"name":"箴言法杖","refName":"Prophecy Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNiIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/30763e0fe7/Wand6.png","h":3} +{"name":"箴言戰冠","refName":"Prophet Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[224,258],"es":[32,37]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/6ad7c513a8/HelmetStrInt9.png","w":2,"h":2} +{"name":"神亂之斧","refName":"Psychotic Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9IZWlzdE9uZWhhbmRBeGUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5ba95d3930/HeistOnehandAxe.png","w":2,"h":3} +{"name":"細柄長杖","refName":"Quarterstaff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmYzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/9bc79ef01c/Staff3.png","w":2,"h":4} +{"name":"石英藥劑","refName":"Quartz Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvcGhhc2VmbGFzazAxIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/6266d738e1/phaseflask01.png","h":2} +{"name":"石英權杖","refName":"Quartz Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/c986bafb78/scepter4.png","w":2,"h":3} +{"name":"石英法杖","refName":"Quartz Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNCIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/b505ad92e7/Wand4.png","h":3} +{"name":"水銀藥劑","refName":"Quicksilver Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3Mvc3ByaW50IiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/aa66be180b/sprint.png","h":2} +{"name":"菱紋外衣","refName":"Quilted Jacket","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[221,248],"es":[46,52]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/333216677b/BodyDexInt1B.png","w":2,"h":3} +{"name":"古競速場","refName":"Racecourse Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/tKH5lyG.jpg"}} +{"name":"濱海堡壘","refName":"Ramparts Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/Yx5UIDO.jpg"}} +{"name":"漫遊之弓","refName":"Ranger Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d7cd8910cc/Bow4.png","w":2,"h":4} +{"name":"荊棘戒指","refName":"Ratcheting Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvSGVpc3RSaW5nMVNpbHZlciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/3ea47de609/HeistRing1Silver.png"} +{"name":"禍鴉之面","refName":"Raven Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[104,119],"es":[22,25]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/39565b89de/HelmetDexInt6.png","w":2,"h":2} +{"name":"生皮短靴","refName":"Rawhide Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[13,18]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/d9494fc647/BootsDex1.png","w":2,"h":2} +{"name":"生皮手套","refName":"Rawhide Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[13,18]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4MSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/9d9390ed4a/GlovesDex1.png","w":2,"h":2} +{"name":"生皮塔盾","refName":"Rawhide Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[53,66]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8d8c4e161f/ShieldStr3.png","w":2,"h":4} +{"name":"現實碎片","refName":"Reality Fragment","namespace":"ITEM","tradeTag":"reality-fragment","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyQm9zc0tleU1hdmVuIiwic2NhbGUiOjF9XQ/20e155ad7d/UberBossKeyMaven.png"} +{"name":"殘暴之斧","refName":"Reaver Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/451ba2cadb/OneHandAxe4.png","w":2,"h":3} +{"name":"掠奪者之盔","refName":"Reaver Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[198,233]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/497b497cd5/HelmetStr6.png","w":2,"h":2} +{"name":"殘暴巨劍","refName":"Reaver Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/28f44a7a0c/TwoHandSword3.png","w":2,"h":4} +{"name":"鞭策之刃","refName":"Rebuking Blade","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL0hlaXN0VHdvSGFuZFN3b3JkIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/9757ea88b2/HeistTwoHandSword.png","w":2,"h":4} +{"name":"鐘擺長杖","refName":"Reciprocation Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGVpc3RTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/5e852184f5/HeistStaff.png","w":2,"h":4} +{"name":"反曲弓","refName":"Recurve Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/2c90c93faf/Bow5.png","w":2,"h":4} +{"name":"救贖者的崇高石","refName":"Redeemer's Exalted Orb","namespace":"ITEM","tradeTag":"redeemers-exalted-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5mbHVlbmNlIEV4YWx0cy9FeXJpZU9yYiIsInNjYWxlIjoxfV0/8ec9b52d65/EyrieOrb.png"} +{"name":"紅木刺盾","refName":"Redwood Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[142,163],"es":[30,34]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/db9355404e/ShieldDexInt2.png","w":2,"h":2} +{"name":"危機海礁","refName":"Reef Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/pVdQXl9.jpg"}} +{"name":"映像迷霧","refName":"Reflecting Mist","namespace":"ITEM","tradeTag":"reflecting-mist","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUmVmbGVjdGl2ZU1pc3QiLCJzY2FsZSI6MX1d/26956f795e/ReflectiveMist.png"} +{"name":"映像油瓶","refName":"Reflective Oil","namespace":"ITEM","tradeTag":"reflective-oil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9NaXJyb3JPaWwiLCJzY2FsZSI6MX1d/eca4a49588/MirrorOil.png"} +{"name":"反射弓","refName":"Reflex Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzkiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/aa9bf2b0d1/Bow9.png","w":2,"h":4} +{"name":"富豪石","refName":"Regal Orb","namespace":"ITEM","tradeTag":"regal","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lVcGdyYWRlTWFnaWNUb1JhcmUiLCJzY2FsZSI6MX1d/0ded706f57/CurrencyUpgradeMagicToRare.png"} +{"name":"富豪石碎片","refName":"Regal Shard","namespace":"ITEM","tradeTag":"regal-shard","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUmVnYWxTaGFyZCIsInNjYWxlIjoxfV0/6f7fc44a91/RegalShard.png"} +{"name":"弒君偽裝套組","refName":"Regicide Disguise Kit","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVGhlYXRyZURpc2d1aXNlS2l0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/5a52352c52/TheatreDisguiseKit.png","w":2,"h":2} +{"name":"弒君之面","refName":"Regicide Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[141,158],"es":[29,32]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/03d255fadc/HelmetDexInt8.png","w":2,"h":2} +{"name":"強化脛甲","refName":"Reinforced Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[109,120]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/82bedfd1e0/BootsStr4.png","w":2,"h":2} +{"name":"強化鳶盾","refName":"Reinforced Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[65,81],"es":[15,18]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8d673b3a1f/ShieldStrInt4.png","w":2,"h":3} +{"name":"強化塔盾","refName":"Reinforced Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[237,260]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d883ad1ca2/ShieldStr6.png","w":2,"h":4} +{"name":"古典密室","refName":"Relic Chambers Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/jsNHNa1.jpg"}} +{"name":"遺忘的污染器皿","refName":"Remnant of Corruption","namespace":"ITEM","tradeTag":"remnant-of-corruption","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Fc3NlbmNlQ29ycnVwdCIsInNjYWxlIjoxfV0/e0e8a57a15/EssenceCorrupt.png"} +{"name":"神主居所","refName":"Residence Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/FF5qpbI.jpg"}} +{"name":"戒指","refName":"Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"%NOT_FOUND%"} +{"name":"環甲筒靴","refName":"Ringmail Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[25,32],"es":[6,8]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/742e5a15d7/BootsStrInt2.png","w":2,"h":2} +{"name":"環甲外套","refName":"Ringmail Coat","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[97,121],"es":[22,28]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/61293d71af/BodyStrInt1B.png","w":2,"h":3} +{"name":"環甲手套","refName":"Ringmail Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[35,46],"es":[8,10]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RySW50MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f09ae395f5/GlovesStrInt2.png","w":2,"h":2} +{"name":"聖甲蟲:繁榮祭祀","refName":"Ritual Scarab of Abundance","namespace":"ITEM","tradeTag":"ritual-scarab-of-abundance","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiUml0dWFsIiwic2NhbGUiOjF9XQ/a990c91de5/GreaterScarabRitual.png"} +{"name":"聖甲蟲:揀選祭祀","refName":"Ritual Scarab of Selectiveness","namespace":"ITEM","tradeTag":"ritual-scarab-of-selectiveness","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJSaXR1YWwiLCJzY2FsZSI6MX1d/08f82dab28/LesserScarabRitual.png"} +{"name":"聖甲蟲:妖精祭祀","refName":"Ritual Scarab of Wisps","namespace":"ITEM","tradeTag":"ritual-scarab-of-wisps","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJSaXR1YWwiLCJzY2FsZSI6MX1d/f2c3231213/NormalScarabRitual.png"} +{"name":"祭儀權杖","refName":"Ritual Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/6b9c62e4c3/scepter7.png","w":2,"h":3} +{"name":"祭祀裂片","refName":"Ritual Splinter","namespace":"ITEM","tradeTag":"ritual-splinter","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUml0dWFsL1JpdHVhbFNwbGludGVyIiwic2NhbGUiOjF9XQ/702c7441d8/RitualSplinter.png"} +{"name":"祭祀碑器","refName":"Ritual Vessel","namespace":"ITEM","tradeTag":"ritual-vessel","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUml0dWFsL0VmZmlneSIsInNjYWxlIjoxfV0/1686de4490/Effigy.png"} +{"name":"河川符文","refName":"River Rune","namespace":"ITEM","tradeTag":"river-rune","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2V0dGxlcnMvVmlsbGFnZVJ1bmU1Iiwic2NhbGUiOjF9XQ/239b52bb4d/VillageRune5.png"} +{"name":"儀式短靴","refName":"Riveted Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[65,71],"es":[14,15]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckludDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0519faf993/BootsStrInt1.png","w":2,"h":2} +{"name":"儀式手套","refName":"Riveted Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[67,77],"es":[14,16]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RySW50MSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/5d45f8da8f/GlovesStrInt1.png","w":2,"h":2} +{"name":"破岩錘","refName":"Rock Breaker","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U0IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/b0b1a18a0c/OneHandMace4.png","w":2,"h":3} +{"name":"盜賊之印","refName":"Rogue's Marker","namespace":"ITEM","tradeTag":"rogues-marker","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvSGVpc3RDb2luQ3VycmVuY3kiLCJzY2FsZSI6MX1d/335e66630d/HeistCoinCurrency.png"} +{"name":"玫瑰刺萃取物","refName":"Rosethorn Tincture","namespace":"ITEM","craftable":{"category":"Tincture"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL0N1bGxpbmdTdHJpa2VTYXAiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MX1d/a0158b364e/CullingStrikeSap.png","h":2} +{"name":"腐首魔符","refName":"Rot Head Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9GaXNoVGFsaXNtYW4iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/dec3900c32/FishTalisman.png"} +{"name":"死羽魔符","refName":"Rotfeather Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hblJlZDEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/7d856182d7/TalismanRed1.png"} +{"name":"朽木圓盾","refName":"Rotted Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[13,18],"ev":[13,18]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/a6a71ad77b/ShieldStrDex1.png","w":2,"h":3} +{"name":"低階磨刀石","refName":"Rough Sharpening Stone","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvUm91Z2hTaGFycGVuaW5nU3RvbmUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/16a700882f/RoughSharpeningStone.png","w":2,"h":2} +{"name":"皇家之斧","refName":"Royal Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/5bbf95c3b4/OneHandAxe7.png","w":2,"h":3} +{"name":"皇家獵弓","refName":"Royal Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/1e6a3da9aa/Bow7.png","w":2,"h":4} +{"name":"皇室堅盔","refName":"Royal Burgonet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[377,434]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjEwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/b1e95342a8/HelmetStr10.png","w":2,"h":2} +{"name":"皇家之鎧","refName":"Royal Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[1183,1360]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyM0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/09903268a5/BodyStr3C.png","w":2,"h":3} +{"name":"皇家權杖","refName":"Royal Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/6b9c62e4c3/scepter7.png","w":2,"h":3} +{"name":"皇家雙刃匕","refName":"Royal Skean","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjciLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/61e8f27cc5/Dagger7.png","h":3} +{"name":"皇家長杖","refName":"Royal Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY2IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/5e3de6f391/Staff6.png","w":2,"h":4} +{"name":"血色護身符","refName":"Ruby Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9SdWJ5QW11bGV0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/55c35f60fe/RubyAmulet.png"} +{"name":"紅玉藥劑","refName":"Ruby Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvcnVieSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/0d582b3f83/ruby.png","h":2} +{"name":"紅玉戒指","refName":"Ruby Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0e04df86a3/Ring7.png"} +{"name":"符紋護腕","refName":"Runed Bracers","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQnJhY2VyQmFzZVR5cGVfcnVuZWQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/7fedd82771/BracerBaseType_runed.png","w":2,"h":2} +{"name":"魔符之冠","refName":"Runic Crest","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ward":[97,112]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1NwaXJpdEhlbG1ldEJhc2VUeXBlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/53e1ae7954/SpiritHelmetBaseType.png","w":2,"h":2} +{"name":"魔符皇冠","refName":"Runic Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ward":[164,189]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1NwaXJpdEhlbG1ldEJhc2VUeXBlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/53e1ae7954/SpiritHelmetBaseType.png","w":2,"h":2} +{"name":"魔符手環","refName":"Runic Gages","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ward":[62,71]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3Bpcml0R2xvdmVzQmFzZVR5cGUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c6f6ccf94f/SpiritGlovesBaseType.png","w":2,"h":2} +{"name":"魔符護手","refName":"Runic Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ward":[102,117]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3Bpcml0R2xvdmVzQmFzZVR5cGUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c6f6ccf94f/SpiritGlovesBaseType.png","w":2,"h":2} +{"name":"魔符手套","refName":"Runic Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ward":[24,28]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3Bpcml0R2xvdmVzQmFzZVR5cGUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c6f6ccf94f/SpiritGlovesBaseType.png","w":2,"h":2} +{"name":"魔符脛甲","refName":"Runic Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ward":[24,28]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TcGlyaXRCb290c0Jhc2VUeXBlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/c6826fae52/SpiritBootsBaseType.png","w":2,"h":2} +{"name":"密文之斧","refName":"Runic Hatchet","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlOSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/8f1da4998f/OneHandAxe9.png","w":2,"h":3} +{"name":"魔符頭飾","refName":"Runic Helm","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ward":[41,47]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1NwaXJpdEhlbG1ldEJhc2VUeXBlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/53e1ae7954/SpiritHelmetBaseType.png","w":2,"h":2} +{"name":"魔符短靴","refName":"Runic Sabatons","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ward":[102,117]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TcGlyaXRCb290c0Jhc2VUeXBlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/c6826fae52/SpiritBootsBaseType.png","w":2,"h":2} +{"name":"符文骷髏","refName":"Runic Skeleton","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1N3b3JkU2tlbGV0b25Db3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/171f40accf/SwordSkeletonCorpse.png","w":3,"h":2} +{"name":"魔符長靴","refName":"Runic Sollerets","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ward":[62,71]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TcGlyaXRCb290c0Jhc2VUeXBlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/c6826fae52/SpiritBootsBaseType.png","w":2,"h":2} +{"name":"鏽鐵鏈盔","refName":"Rusted Coif","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[16,22],"es":[5,7]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/9987324e35/HelmetStrInt1.png","w":2,"h":2} +{"name":"鏽斧","refName":"Rusted Hatchet","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlMSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/0e8f6203f2/OneHandAxe1.png","h":3} +{"name":"鏽刺劍","refName":"Rusted Spike","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjEiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/feb0e7f8d8/Rapier1.png","h":4} +{"name":"鏽劍","refName":"Rusted Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDEiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/ae6e9dda13/OneHandSword1.png","h":3} +{"name":"素布腰帶","refName":"Rustic Sash","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdDEiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/6b67d971e8/Belt1.png","w":2} +{"name":"舊軍刀","refName":"Sabre","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDMiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/0aa55ff7a1/OneHandSword3.png","h":3} +{"name":"神聖之花","refName":"Sacred Blossom","namespace":"ITEM","tradeTag":"sacred-blossom","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9Pc2hhYmlNYXAiLCJzY2FsZSI6MX1d/ae20ec4d5f/OshabiMap.png"} +{"name":"神聖鎖甲","refName":"Sacred Chainmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[723,831],"es":[145,167]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50M0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/900b4f2c03/BodyStrInt3C.png","w":2,"h":3} +{"name":"神聖結晶生靈之力","refName":"Sacred Crystallised Lifeforce","namespace":"ITEM","tradeTag":"sacred-lifeforce","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9TYWNyZWRMaWZlZm9yY2UiLCJzY2FsZSI6MX1d/edfba3c893/SacredLifeforce.png"} +{"name":"聖語複合藥劑","refName":"Sacred Hybrid Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvaHlicmlkZmxhc2syIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/7ac2158cdf/hybridflask2.png","h":2} +{"name":"聖語生命藥劑","refName":"Sacred Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrOCIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/1c24a51fc4/lifeflask8.png","h":2} +{"name":"聖語魔力藥劑","refName":"Sacred Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrOCIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/52e82c502f/manaflask8.png","h":2} +{"name":"聖玉","refName":"Sacred Orb","namespace":"ITEM","tradeTag":"sacred-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2FjcmVkT3JiIiwic2NhbGUiOjF9XQ/0380fd0dba/SacredOrb.png"} +{"name":"黎明的奉獻","refName":"Sacrifice at Dawn","namespace":"ITEM","tradeTag":"dawn","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYWFsMDIiLCJzY2FsZSI6MX1d/3516d95235/Vaal02.png"} +{"name":"黃昏的奉獻","refName":"Sacrifice at Dusk","namespace":"ITEM","tradeTag":"dusk","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYWFsMDQiLCJzY2FsZSI6MX1d/3be8311430/Vaal04.png"} +{"name":"午夜的奉獻","refName":"Sacrifice at Midnight","namespace":"ITEM","tradeTag":"mid","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYWFsMDEiLCJzY2FsZSI6MX1d/c7cd8058f6/Vaal01.png"} +{"name":"正午的奉獻","refName":"Sacrifice at Noon","namespace":"ITEM","tradeTag":"noon","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYWFsMDMiLCJzY2FsZSI6MX1d/55524425f4/Vaal03.png"} +{"name":"祭禮束衣","refName":"Sacrificial Garb","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[329,378],"ev":[329,378],"es":[67,77]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9TYWNyaWZpY2lhbEdhcmIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/fa818f4ae3/SacrificialGarb.png","w":2,"h":3} +{"name":"狂虐者束衣","refName":"Sadist Garb","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[427,491],"es":[93,107]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/6744d2d486/BodyDexInt2C.png","w":2,"h":3} +{"name":"哲人手套","refName":"Sage Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[62,71]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/abe163b992/GlovesInt3.png","w":2,"h":2} +{"name":"哲人便鞋","refName":"Sage Slippers","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[62,71]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/036cf97e61/BootsInt3.png","w":2,"h":2} +{"name":"賢者法杖","refName":"Sage Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNiIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/30763e0fe7/Wand6.png","h":3} +{"name":"賢者之袍","refName":"Sage's Robe","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[79,90]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/906a100c16/BodyInt1B.png","w":2,"h":3} +{"name":"戰叉","refName":"Sai","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjkiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/ac5b740611/Dagger9.png","h":3} +{"name":"聖者鏈甲","refName":"Saint's Hauberk","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[443,496],"es":[76,85]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5a1804c81b/BodyStrInt2C.png","w":2,"h":3} +{"name":"聖潔鎖甲","refName":"Saintly Chainmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[401,461],"es":[96,110]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50M0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/900b4f2c03/BodyStrInt3C.png","w":2,"h":3} +{"name":"輕鐵護盔","refName":"Sallet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[37,48],"ev":[37,48]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0dc199afb2/HelmetStrDex2.png","w":2,"h":2} +{"name":"惡魔權杖","refName":"Sambar Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyOSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/151820601e/scepter9.png","w":2,"h":3} +{"name":"繡布手套","refName":"Samite Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[32,37]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/abe163b992/GlovesInt3.png","w":2,"h":2} +{"name":"繡布便鞋","refName":"Samite Slippers","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[30,35]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/036cf97e61/BootsInt3.png","w":2,"h":2} +{"name":"薩模柰堅盔","refName":"Samnite Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[276,325]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/8bd91531d0/HelmetStr8.png","w":2,"h":2} +{"name":"神聖化石","refName":"Sanctified Fossil","namespace":"ITEM","tradeTag":"sanctified-fossil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvR2lsZGVkRm9zc2lsIiwic2NhbGUiOjF9XQ/fc2d3fdf51/GildedFossil.png"} +{"name":"聖化生命藥劑","refName":"Sanctified Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrMTAiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/c32c443453/lifeflask10.png","h":2} +{"name":"聖化魔力藥劑","refName":"Sanctified Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrMTAiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/437e6be59d/manaflask10.png","h":2} +{"name":"聖所地圖","refName":"Sanctuary Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{}} +{"name":"占血惡魔","refName":"Sanguimancer Demon","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0hlbGxzY2FwZURlbW9uRWxpdGUyQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/a795ad40fa/HellscapeDemonElite2Corpse.png","w":3,"h":2} +{"name":"樂觀之衣","refName":"Sanguine Raiment","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[545,627],"es":[110,127]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/95329b265f/BodyDexInt1C.png","w":2,"h":3} +{"name":"藍玉藥劑","refName":"Sapphire Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3Mvc2FwcGhpcmUiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjEsImZpIjp0cnVlfV0/7762dad209/sapphire.png","h":2} +{"name":"藍玉戒指","refName":"Sapphire Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzYiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/74a5d719fd/Ring6.png"} +{"name":"緞布手套","refName":"Satin Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[28,33]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/cb34a7c551/GlovesInt2.png","w":2,"h":2} +{"name":"緞布便鞋","refName":"Satin Slippers","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[26,30]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/efece2ca68/BootsInt2.png","w":2,"h":2} +{"name":"智者之袍","refName":"Savant's Robe","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[115,132]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/906a100c16/BodyInt1B.png","w":2,"h":3} +{"name":"奪魂鋸","refName":"Sawblade Horror","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0RlbW9uQm9zczFDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/27f61146a0/DemonBoss1Corpse.png","w":3,"h":2} +{"name":"合身鱗甲","refName":"Scale Doublet","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[97,121],"ev":[97,121]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/d9b2da2bce/BodyStrDex1B.png","w":2,"h":3} +{"name":"細鱗背心","refName":"Scale Vest","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[27,38],"ev":[27,38]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MUEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/171496c8b0/BodyStrDex1A.png","w":2,"h":3} +{"name":"聖甲蟲:敵手","refName":"Scarab of Adversaries","namespace":"ITEM","tradeTag":"scarab-of-adversaries","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRMZXNzZXJTY2FyYWJNaXNjIiwic2NhbGUiOjF9XQ/ab24a34cd1/AltLesserScarabMisc.png"} +{"name":"聖甲蟲:神聖","refName":"Scarab of Divinity","namespace":"ITEM","tradeTag":"scarab-of-divinity","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJNaXNjIiwic2NhbGUiOjF9XQ/6d4755a692/NormalScarabMisc.png"} +{"name":"聖甲蟲:通緝叛徒","refName":"Scarab of Hunted Traitors","namespace":"ITEM","tradeTag":"scarab-of-hunted-traitors","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiTWlzYyIsInNjYWxlIjoxfV0/7a40f7ea9f/GreaterScarabMisc.png"} +{"name":"聖甲蟲:畸形血脈","refName":"Scarab of Monstrous Lineage","namespace":"ITEM","tradeTag":"scarab-of-monstrous-lineage","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJNaXNjIiwic2NhbGUiOjF9XQ/9196715e8d/LesserScarabMisc.png"} +{"name":"聖甲蟲:光輝風暴","refName":"Scarab of Radiant Storms","namespace":"ITEM","tradeTag":"scarab-of-radiant-storms","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYk1pc2MyIiwic2NhbGUiOjF9XQ/d19b59b6b8/Tier4ScarabMisc2.png"} +{"name":"聖甲蟲:穩定","refName":"Scarab of Stability","namespace":"ITEM","tradeTag":"scarab-of-stability","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYk1pc2MiLCJzY2FsZSI6MX1d/c80f553284/Tier4ScarabMisc.png"} +{"name":"聖甲蟲:妖精","refName":"Scarab of Wisps","namespace":"ITEM","tradeTag":"scarab-of-wisps","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiTWlzYzEiLCJzY2FsZSI6MX1d/303001a475/GreaterScarabMisc1.png"} +{"name":"幽懼之面","refName":"Scare Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[13,18],"es":[4,6]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f1a4b7abd8/HelmetDexInt1.png","w":2,"h":2} +{"name":"熾紅之衣","refName":"Scarlet Raiment","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[156,180],"es":[34,39]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/95329b265f/BodyDexInt1C.png","w":2,"h":3} +{"name":"熾紅圓盾","refName":"Scarlet Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[87,100],"ev":[87,100]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/f50adf0569/ShieldStrDex4.png","w":2,"h":3} +{"name":"學者長靴","refName":"Scholar Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[23,25]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5589419509/BootsInt4.png","w":2,"h":2} +{"name":"學者之袍","refName":"Scholar's Robe","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[43,53]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/906a100c16/BodyInt1B.png","w":2,"h":3} +{"name":"暴炎化石","refName":"Scorched Fossil","namespace":"ITEM","tradeTag":"scorched-fossil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvQW1iZXJGaXJlRmx5Iiwic2NhbGUiOjF9XQ/0954934026/AmberFireFly.png"} +{"name":"廢金屬","refName":"Scrap Metal","namespace":"ITEM","tradeTag":"scrap-metal","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXhwZWRpdGlvbi9EZWFsZXJSZWZyZXNoQ3VycmVuY3kiLCJzY2FsZSI6MX1d/7c2be64768/DealerRefreshCurrency.png"} +{"name":"憤怒之咆哮精髓","refName":"Screaming Essence of Anger","namespace":"ITEM","tradeTag":"screaming-essence-of-anger","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9BbmdlcjUiLCJzY2FsZSI6MX1d/495b51bb22/Anger5.png"} +{"name":"煎熬之咆哮精髓","refName":"Screaming Essence of Anguish","namespace":"ITEM","tradeTag":"screaming-essence-of-anguish","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Bbmd1aXNoNSIsInNjYWxlIjoxfV0/f1577676f8/Anguish5.png"} +{"name":"輕視之咆哮精髓","refName":"Screaming Essence of Contempt","namespace":"ITEM","tradeTag":"screaming-essence-of-contempt","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Db250ZW1wdDUiLCJzY2FsZSI6MX1d/57f3c59876/Contempt5.png"} +{"name":"疑惑之咆哮精髓","refName":"Screaming Essence of Doubt","namespace":"ITEM","tradeTag":"screaming-essence-of-doubt","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Eb3VidDUiLCJzY2FsZSI6MX1d/3411e349a4/Doubt5.png"} +{"name":"忌憚之咆哮精髓","refName":"Screaming Essence of Dread","namespace":"ITEM","tradeTag":"screaming-essence-of-dread","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9EcmVhZDUiLCJzY2FsZSI6MX1d/089502a0ef/Dread5.png"} +{"name":"忌妒之咆哮精髓","refName":"Screaming Essence of Envy","namespace":"ITEM","tradeTag":"screaming-essence-of-envy","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9FbnZ5NSIsInNjYWxlIjoxfV0/19657c80a1/Envy5.png"} +{"name":"恐懼之咆哮精髓","refName":"Screaming Essence of Fear","namespace":"ITEM","tradeTag":"screaming-essence-of-fear","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9GZWFyNSIsInNjYWxlIjoxfV0/1032005927/Fear5.png"} +{"name":"貪婪之咆哮精髓","refName":"Screaming Essence of Greed","namespace":"ITEM","tradeTag":"screaming-essence-of-greed","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVlZDUiLCJzY2FsZSI6MX1d/f78130ca89/Greed5.png"} +{"name":"憎恨之咆哮精髓","refName":"Screaming Essence of Hatred","namespace":"ITEM","tradeTag":"screaming-essence-of-hatred","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9IYXRyZWQ1Iiwic2NhbGUiOjF9XQ/79d7666969/Hatred5.png"} +{"name":"厭惡之咆哮精髓","refName":"Screaming Essence of Loathing","namespace":"ITEM","tradeTag":"screaming-essence-of-loathing","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Mb2F0aGluZzUiLCJzY2FsZSI6MX1d/b72c845694/Loathing5.png"} +{"name":"悽慘之咆哮精髓","refName":"Screaming Essence of Misery","namespace":"ITEM","tradeTag":"screaming-essence-of-misery","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9NaXNlcnk1Iiwic2NhbGUiOjF9XQ/f9d69650b9/Misery5.png"} +{"name":"肆虐之咆哮精髓","refName":"Screaming Essence of Rage","namespace":"ITEM","tradeTag":"screaming-essence-of-rage","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9SYWdlNSIsInNjYWxlIjoxfV0/e59a378e12/Rage5.png"} +{"name":"傲視之咆哮精髓","refName":"Screaming Essence of Scorn","namespace":"ITEM","tradeTag":"screaming-essence-of-scorn","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TY29ybjUiLCJzY2FsZSI6MX1d/0325ed7212/Scorn5.png"} +{"name":"哀惜之咆哮精髓","refName":"Screaming Essence of Sorrow","namespace":"ITEM","tradeTag":"screaming-essence-of-sorrow","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Tb3Jyb3c1Iiwic2NhbGUiOjF9XQ/c4e14310c9/Sorrow5.png"} +{"name":"刻毒之咆哮精髓","refName":"Screaming Essence of Spite","namespace":"ITEM","tradeTag":"screaming-essence-of-spite","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TcGl0ZTUiLCJzY2FsZSI6MX1d/5e2c82ccb4/Spite5.png"} +{"name":"苦難之咆哮精髓","refName":"Screaming Essence of Suffering","namespace":"ITEM","tradeTag":"screaming-essence-of-suffering","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TdWZmZXJpbmc1Iiwic2NhbGUiOjF9XQ/08db350c33/Suffering5.png"} +{"name":"折磨之咆哮精髓","refName":"Screaming Essence of Torment","namespace":"ITEM","tradeTag":"screaming-essence-of-torment","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Ub3JtZW50NSIsInNjYWxlIjoxfV0/46f5990204/Torment5.png"} +{"name":"悲痛之咆哮精髓","refName":"Screaming Essence of Woe","namespace":"ITEM","tradeTag":"screaming-essence-of-woe","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Xb2U1Iiwic2NhbGUiOjF9XQ/685579dedd/Woe5.png"} +{"name":"雷霆之咆哮精髓","refName":"Screaming Essence of Wrath","namespace":"ITEM","tradeTag":"screaming-essence-of-wrath","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9XcmF0aDUiLCJzY2FsZSI6MX1d/47601c9382/Wrath5.png"} +{"name":"熱情之咆哮精髓","refName":"Screaming Essence of Zeal","namespace":"ITEM","tradeTag":"screaming-essence-of-zeal","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9aZWFsNSIsInNjYWxlIjoxfV0/27f4023314/Zeal5.png"} +{"name":"尖嘯之邀","refName":"Screaming Invitation","namespace":"ITEM","craftable":{"category":"Invitation"},"tradeTag":"screaming-invitation","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVlc3RJdGVtcy9UYW5nbGVkT3JiUXVlc3Q1Iiwic2NhbGUiOjF9XQ/aad87e6738/TangledOrbQuest5.png"} +{"name":"墓影書坊","refName":"Scriptorium Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{}} +{"name":"知識卷軸","refName":"Scroll of Wisdom","namespace":"ITEM","tradeTag":"wisdom","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lJZGVudGlmaWNhdGlvbiIsInNjYWxlIjoxfV0/c2d03ed3fd/CurrencyIdentification.png"} +{"name":"海鏡項鍊","refName":"Seaglass Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9DcmVzY2VudEFtdWxldCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ef6f218ca4/CrescentAmulet.png"} +{"name":"勘查之眼珠寶","refName":"Searching Eye Jewel","namespace":"ITEM","craftable":{"category":"Abyss Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1NlYXJjaGluZ0V5ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ff2df16522/SearchingEye.png"} +{"name":"精兵之盔","refName":"Secutor Helm","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[98,116],"ev":[98,116]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/b609cfed8b/HelmetStrDex5.png","w":2,"h":2} +{"name":"威能權杖","refName":"Sekhem","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyMyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/366212755a/scepter3.png","w":2,"h":3} +{"name":"哨兵之衣","refName":"Sentinel Jacket","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[330,370],"es":[67,76]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/333216677b/BodyDexInt1B.png","w":2,"h":3} +{"name":"深褐油瓶","refName":"Sepia Oil","namespace":"ITEM","tradeTag":"sepia-oil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9TZXBpYU9pbCIsInNjYWxlIjoxfV0/9114927bcc/SepiaOil.png"} +{"name":"陰暗墓塚","refName":"Sepulchre Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/I8et20T.jpg"}} +{"name":"蛇靈戰士","refName":"Serpent Warrior","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0F0bGFzRXhpbGUzQXBwYXJpdGlvbkNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/127b613caf/AtlasExile3ApparitionCorpse.png","w":3,"h":2} +{"name":"蛇紋長杖","refName":"Serpentine Staff","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY1IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/53f1a6b438/Staff5.png","w":2,"h":4} +{"name":"蛇鱗長靴","refName":"Serpentscale Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[76,90],"ev":[76,90]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/d5b5430d4c/BootsStrDex2.png","w":2,"h":2} +{"name":"蛇鱗手套","refName":"Serpentscale Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[78,87],"ev":[78,87]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyRGV4MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0bb5dd1e50/GlovesStrDex2.png","w":2,"h":2} +{"name":"鋸齒箭袋","refName":"Serrated Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJTZXJyYXRlZCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/3660315ba6/QuiverSerrated.png","w":2,"h":3} +{"name":"鋸齒細劍","refName":"Serrated Foil","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjUiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/ccce0178cc/Rapier5.png","h":4} +{"name":"利齒化石","refName":"Serrated Fossil","namespace":"ITEM","tradeTag":"serrated-fossil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvU2VycmF0ZWRGb3NzaWwiLCJzY2FsZSI6MX1d/227ff121c8/SerratedFossil.png"} +{"name":"破舊外套","refName":"Shabby Jerkin","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[29,41]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MUEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/693fc9456c/BodyDex1A.png","w":2,"h":3} +{"name":"縛足長靴","refName":"Shackled Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[62,71],"es":[13,15]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/bad1ba72df/BootsDexInt4.png","w":2,"h":2} +{"name":"幽影巨斧","refName":"Shadow Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNyIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/931ad5cc29/TwoHandAxe7.png","w":2,"h":4} +{"name":"影子暴徒","refName":"Shadow Berserker","namespace":"ITEM","icon":"%NOT_FOUND%","w":3,"h":2} +{"name":"影子創造物","refName":"Shadow Construct","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0luY2FTaGFkb3dCb3NzQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/acddc4a119/IncaShadowBossCorpse.png","w":3,"h":2} +{"name":"暗影獠牙","refName":"Shadow Fangs","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9IZWlzdENsYXciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/7ebe8140fa/HeistClaw.png","w":2,"h":2} +{"name":"影語權杖","refName":"Shadow Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyOCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/6644b94336/scepter8.png","w":2,"h":3} +{"name":"粗革短靴","refName":"Shagreen Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[180,216]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/76eb290c9b/BootsDex4.png","w":2,"h":2} +{"name":"粗革手套","refName":"Shagreen Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[177,212]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/05a8c03e95/GlovesDex4.png","w":2,"h":2} +{"name":"粗革塔盾","refName":"Shagreen Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[261,308]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8d8c4e161f/ShieldStr3.png","w":2,"h":4} +{"name":"鯊皮短靴","refName":"Sharkskin Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[145,171]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f2e9a30d4a/BootsDex3.png","w":2,"h":2} +{"name":"鯊皮手套","refName":"Sharkskin Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[148,163]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/445d038f1d/GlovesDex3.png","w":2,"h":2} +{"name":"鯊皮之衣","refName":"Sharkskin Tunic","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[559,643]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/57409a1844/BodyDex1B.png","w":2,"h":3} +{"name":"鯊齒箭袋","refName":"Sharktooth Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJTaGFya3Rvb3RoIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/da7b4cd60a/QuiverSharktooth.png","w":2,"h":3} +{"name":"鯊顎爪","refName":"Sharktooth Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/8b8d9559cd/Claw2.png","w":2,"h":2} +{"name":"閃耀法杖","refName":"Shining Ward","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvU2hpbmluZ1dhcmQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/275019d027/ShiningWard.png","w":2,"h":2} +{"name":"閃耀遺鑰","refName":"Shiny Reliquary Key","namespace":"ITEM","tradeTag":"shiny-reliquary-key","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9NYXZlbkZvaWwiLCJzY2FsZSI6MX1d/09cccd8ddb/MavenFoil.png"} +{"name":"熾炎船塢","refName":"Shipyard Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/J5hM5mR.jpg"}} +{"name":"暮光海灘","refName":"Shore Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/HNPAnu9.jpg"}} +{"name":"短弓","refName":"Short Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/0fcc51afcd/Bow2.png","w":2,"h":3} +{"name":"憤怒之尖嘯精髓","refName":"Shrieking Essence of Anger","namespace":"ITEM","tradeTag":"shrieking-essence-of-anger","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9BbmdlcjYiLCJzY2FsZSI6MX1d/e3c71c9c4d/Anger6.png"} +{"name":"煎熬之尖嘯精髓","refName":"Shrieking Essence of Anguish","namespace":"ITEM","tradeTag":"shrieking-essence-of-anguish","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Bbmd1aXNoNiIsInNjYWxlIjoxfV0/080db712a7/Anguish6.png"} +{"name":"輕視之尖嘯精髓","refName":"Shrieking Essence of Contempt","namespace":"ITEM","tradeTag":"shrieking-essence-of-contempt","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Db250ZW1wdDYiLCJzY2FsZSI6MX1d/fd0dfb89ba/Contempt6.png"} +{"name":"疑惑之尖嘯精髓","refName":"Shrieking Essence of Doubt","namespace":"ITEM","tradeTag":"shrieking-essence-of-doubt","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Eb3VidDYiLCJzY2FsZSI6MX1d/6972865109/Doubt6.png"} +{"name":"忌憚之尖嘯精髓","refName":"Shrieking Essence of Dread","namespace":"ITEM","tradeTag":"shrieking-essence-of-dread","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9EcmVhZDYiLCJzY2FsZSI6MX1d/7a5c6cc4be/Dread6.png"} +{"name":"忌妒之尖嘯精髓","refName":"Shrieking Essence of Envy","namespace":"ITEM","tradeTag":"shrieking-essence-of-envy","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9FbnZ5NiIsInNjYWxlIjoxfV0/58075e71ff/Envy6.png"} +{"name":"恐懼之尖嘯精髓","refName":"Shrieking Essence of Fear","namespace":"ITEM","tradeTag":"shrieking-essence-of-fear","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9GZWFyNiIsInNjYWxlIjoxfV0/f5a1ac133b/Fear6.png"} +{"name":"貪婪之尖嘯精髓","refName":"Shrieking Essence of Greed","namespace":"ITEM","tradeTag":"shrieking-essence-of-greed","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVlZDYiLCJzY2FsZSI6MX1d/ec10f707ab/Greed6.png"} +{"name":"憎恨之尖嘯精髓","refName":"Shrieking Essence of Hatred","namespace":"ITEM","tradeTag":"shrieking-essence-of-hatred","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9IYXRyZWQ2Iiwic2NhbGUiOjF9XQ/f55a53e6f4/Hatred6.png"} +{"name":"厭惡之尖嘯精髓","refName":"Shrieking Essence of Loathing","namespace":"ITEM","tradeTag":"shrieking-essence-of-loathing","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Mb2F0aGluZzYiLCJzY2FsZSI6MX1d/7ffe10ffb7/Loathing6.png"} +{"name":"悽慘之尖嘯精髓","refName":"Shrieking Essence of Misery","namespace":"ITEM","tradeTag":"shrieking-essence-of-misery","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9NaXNlcnk2Iiwic2NhbGUiOjF9XQ/00f76e01d2/Misery6.png"} +{"name":"肆虐之尖嘯精髓","refName":"Shrieking Essence of Rage","namespace":"ITEM","tradeTag":"shrieking-essence-of-rage","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9SYWdlNiIsInNjYWxlIjoxfV0/387d05ebf5/Rage6.png"} +{"name":"傲視之尖嘯精髓","refName":"Shrieking Essence of Scorn","namespace":"ITEM","tradeTag":"shrieking-essence-of-scorn","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TY29ybjYiLCJzY2FsZSI6MX1d/e168e93dcc/Scorn6.png"} +{"name":"哀惜之尖嘯精髓","refName":"Shrieking Essence of Sorrow","namespace":"ITEM","tradeTag":"shrieking-essence-of-sorrow","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Tb3Jyb3c2Iiwic2NhbGUiOjF9XQ/33a6bbf50d/Sorrow6.png"} +{"name":"刻毒之尖嘯精髓","refName":"Shrieking Essence of Spite","namespace":"ITEM","tradeTag":"shrieking-essence-of-spite","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TcGl0ZTYiLCJzY2FsZSI6MX1d/4afdf2e61f/Spite6.png"} +{"name":"苦難之尖嘯精髓","refName":"Shrieking Essence of Suffering","namespace":"ITEM","tradeTag":"shrieking-essence-of-suffering","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TdWZmZXJpbmc2Iiwic2NhbGUiOjF9XQ/521d87c5a2/Suffering6.png"} +{"name":"折磨之尖嘯精髓","refName":"Shrieking Essence of Torment","namespace":"ITEM","tradeTag":"shrieking-essence-of-torment","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Ub3JtZW50NiIsInNjYWxlIjoxfV0/fba7f2005f/Torment6.png"} +{"name":"悲痛之尖嘯精髓","refName":"Shrieking Essence of Woe","namespace":"ITEM","tradeTag":"shrieking-essence-of-woe","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Xb2U2Iiwic2NhbGUiOjF9XQ/89ba32200e/Woe6.png"} +{"name":"雷霆之尖嘯精髓","refName":"Shrieking Essence of Wrath","namespace":"ITEM","tradeTag":"shrieking-essence-of-wrath","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9XcmF0aDYiLCJzY2FsZSI6MX1d/792a6dca01/Wrath6.png"} +{"name":"熱情之尖嘯精髓","refName":"Shrieking Essence of Zeal","namespace":"ITEM","tradeTag":"shrieking-essence-of-zeal","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9aZWFsNiIsInNjYWxlIjoxfV0/e949dfa6e3/Zeal6.png"} +{"name":"奇術秘殿","refName":"Shrine Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/wDK8KBW.jpg"}} +{"name":"顫慄化石","refName":"Shuddering Fossil","namespace":"ITEM","tradeTag":"shuddering-fossil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvU2h1ZGRlcmluZ0Zvc3NpbCIsInNjYWxlIjoxfV0/ecd4122277/ShudderingFossil.png"} +{"name":"破城斧","refName":"Siege Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlMyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/126bb32028/OneHandAxe3.png","w":2,"h":3} +{"name":"破城之盔","refName":"Siege Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[237,272]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/2844841911/HelmetStr7.png","w":2,"h":2} +{"name":"禁斷圍城","refName":"Siege Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/vOwwEDe.jpg"}} +{"name":"絲綢手套","refName":"Silk Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[18,23]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/abe163b992/GlovesInt3.png","w":2,"h":2} +{"name":"絲質之袍","refName":"Silk Robe","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[69,80]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8b200fbbb5/BodyInt2C.png","w":2,"h":3} +{"name":"絲綢便鞋","refName":"Silk Slippers","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[17,21]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/036cf97e61/BootsInt3.png","w":2,"h":2} +{"name":"絲綢之衣","refName":"Silken Garb","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[56,64]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/3689be0ddd/BodyInt2B.png","w":2,"h":3} +{"name":"綢緞之兜","refName":"Silken Hood","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[346,381]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5e6f2df960/HelmetDex8.png","w":2,"h":2} +{"name":"綢緞背心","refName":"Silken Vest","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[30,38]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MkEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/ca22533d0a/BodyInt2A.png","w":2,"h":3} +{"name":"絲絨背心","refName":"Silken Wrap","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[86,104]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/3689be0ddd/BodyInt2B.png","w":2,"h":3} +{"name":"絲織鞋底","refName":"Silkweave Sole","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvU2lsa3dlYXZlU29sZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0139320677/SilkweaveSole.png","w":2,"h":2} +{"name":"儲物倉","refName":"Silo Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/hk740NA.jpg"}} +{"name":"白銀胸針","refName":"Silver Brooch","namespace":"ITEM","craftable":{"category":"Heist Brooch"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvU2lsdmVyQnJvb2NoIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6601ca4fe0/SilverBrooch.png"} +{"name":"真銀藥劑","refName":"Silver Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3Mvc2lsdmVyIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/a2143b575d/silver.png","h":2} +{"name":"純銀油瓶","refName":"Silver Oil","namespace":"ITEM","tradeTag":"silver-oil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9TaWx2ZXJPaWwiLCJzY2FsZSI6MX1d/d6ad829c2f/SilverOil.png"} +{"name":"簡易鎖撬","refName":"Simple Lockpick","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvU2ltcGxlTG9ja3BpY2siLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/6dbc6c1463/SimpleLockpick.png","w":2,"h":2} +{"name":"簡易之袍","refName":"Simple Robe","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[14,20]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MUEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/7c925b445f/BodyInt1A.png","w":2,"h":3} +{"name":"簡純護身符","refName":"Simplex Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9IZWlzdEFtdWxldDIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MSwic2hhcGVyIjp0cnVlfV0/8f62b43742/HeistAmulet2.png"} +{"name":"幻像異界","refName":"Simulacrum","namespace":"ITEM","tradeTag":"simulacrum","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9EZWxpcml1bUZyYWdtZW50Iiwic2NhbGUiOjF9XQ/7f29157183/DeliriumFragment.png"} +{"name":"幻像斷片","refName":"Simulacrum Splinter","namespace":"ITEM","tradeTag":"simulacrum-splinter","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9EZWxpcml1bVNwbGludGVyIiwic2NhbGUiOjF9XQ/b36d2fcff6/DeliriumSplinter.png"} +{"name":"卓越之譫妄玉","refName":"Singular Delirium Orb","namespace":"ITEM","tradeTag":"singular-delirium-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJVbmlxdWVzIiwic2NhbGUiOjF9XQ/f8eb9f0b63/DeliriumOrbUniques.png"} +{"name":"卓越的培育器","refName":"Singular Incubator","namespace":"ITEM","tradeTag":"singular-incubator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uVW5pcXVlcyIsInNjYWxlIjoxfV0/72b48d1f1b/IncubationUniques.png"} +{"name":"卓越偵查報告","refName":"Singular Scouting Report","namespace":"ITEM","tradeTag":"singular-scouting-report","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png"} +{"name":"罪者之帽","refName":"Sinner Tricorne","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[369,425]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f348f6138b/HelmetDex9.png","w":2,"h":2} +{"name":"雙刃匕","refName":"Skean","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjciLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/61e8f27cc5/Dagger7.png","h":3} +{"name":"專業鑰匙圈","refName":"Skeleton Keyring","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvTWFzdGVyS2V5cmluZyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/d43f92c4ad/MasterKeyring.png","w":2,"h":2} +{"name":"剝皮刀","refName":"Skinning Knife","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjIiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/c2c0a06eec/Dagger2.png","h":3} +{"name":"飛掠之譫妄玉","refName":"Skittering Delirium Orb","namespace":"ITEM","tradeTag":"skittering-delirium-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJTY2FyYWJzIiwic2NhbGUiOjF9XQ/ca1dcdc38b/DeliriumOrbScarabs.png"} +{"name":"飛掠的培育器","refName":"Skittering Incubator","namespace":"ITEM","tradeTag":"skittering-incubator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uU2NhcmFicyIsInNjYWxlIjoxfV0/1627db84fb/IncubationScarabs.png"} +{"name":"劈砍幽魂","refName":"Slashing Horror","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0RlbW9uQm9zczJDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/211195cd4d/DemonBoss2Corpse.png","w":3,"h":2} +{"name":"殘暴短匕","refName":"Slaughter Knife","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjMiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/fbc18a1b4f/Dagger3.png","h":3} +{"name":"冷鐵重錘","refName":"Sledgehammer","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U0IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/8c1f2059d0/TwoHandMace4.png","w":2,"h":4} +{"name":"滑布外套","refName":"Sleek Coat","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[243,287],"es":[51,60]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/360c5ce7d4/BodyDexInt2B.png","w":2,"h":3} +{"name":"迷蹤短靴","refName":"Slink Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[246,283]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/76eb290c9b/BootsDex4.png","w":2,"h":2} +{"name":"迷蹤手套","refName":"Slink Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[242,278]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/05a8c03e95/GlovesDex4.png","w":2,"h":2} +{"name":"小型星團珠寶","refName":"Small Cluster Jewel","namespace":"ITEM","craftable":{"category":"Cluster Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL05ld0dlbUJhc2UxIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/0eb1a9d981/NewGemBase1.png"} +{"name":"小型複合藥劑","refName":"Small Hybrid Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvaHlicmlkZmxhc2sxIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/88dca03c78/hybridflask1.png","h":2} +{"name":"小型生命藥劑","refName":"Small Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrMSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/a7ca6503d9/lifeflask1.png","h":2} +{"name":"小型魔力藥劑","refName":"Small Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrMSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/b764885739/manaflask1.png","h":2} +{"name":"小劍","refName":"Smallsword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjkiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/e409e11584/Rapier9.png","h":4} +{"name":"狙殺弓","refName":"Sniper Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/2c90c93faf/Bow5.png","w":2,"h":4} +{"name":"日光錘","refName":"Solar Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U4IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/d7f01f7a37/TwoHandMace8.png","w":2,"h":4} +{"name":"日耀之弓","refName":"Solarine Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0hlaXN0Qm93RmlyZSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/30526435da/HeistBowFire.png","w":2,"h":4} +{"name":"日耀之冠","refName":"Solaris Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[60,68]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e5e3144056/HelmetInt9.png","w":2,"h":2} +{"name":"戰士之靴","refName":"Soldier Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[88,99],"es":[18,20]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e75ade3184/BootsStrInt3.png","w":2,"h":2} +{"name":"戰士手套","refName":"Soldier Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[92,103],"es":[19,21]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RySW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7adc65bac6/GlovesStrInt3.png","w":2,"h":2} +{"name":"士兵之盔","refName":"Soldier Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[34,45],"es":[8,11]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/8e5221f23d/HelmetStrInt2.png","w":2,"h":2} +{"name":"戰士鎖甲","refName":"Soldier's Brigandine","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[178,210],"ev":[178,210]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/60a6d7b58c/BodyStrDex2C.png","w":2,"h":3} +{"name":"術士長靴","refName":"Sorcerer Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[51,59]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5589419509/BootsInt4.png","w":2,"h":2} +{"name":"術士手套","refName":"Sorcerer Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[49,57]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/484e9bd879/GlovesInt4.png","w":2,"h":2} +{"name":"悲鳴面具","refName":"Sorrow Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[42,49],"ev":[42,49]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleFIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f63493ca95/HelmetStrDexR.png","w":2,"h":2} +{"name":"王權刺盾","refName":"Sovereign Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[195,218],"es":[40,45]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3f3c95a49a/ShieldDexInt5.png","w":2,"h":2} +{"name":"眩目爪刃","refName":"Sparkling Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/9efad90cdb/Claw7.png","w":2,"h":2} +{"name":"幽魂之斧","refName":"Spectral Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlOCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/1c9ff58159/OneHandAxe8.png","w":2,"h":3} +{"name":"幽魂巨劍","refName":"Spectral Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/cba6615b1a/TwoHandSword7.png","w":2,"h":4} +{"name":"反射卷軸","refName":"Specularity Scroll","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9IYXJiaW5nZXJUb2tlblNoaWVsZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7e0479ea6e/HarbingerTokenShield.png"} +{"name":"巨蛛之林","refName":"Spider Forest Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/HkKHFTB.jpg"}} +{"name":"巨蛛巢穴","refName":"Spider Lair Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/s2WAMm5.jpg"}} +{"name":"蜘蛛女族長","refName":"Spider Matriarch","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0JsYWNrRGVhdGhCb3NzQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/658153825a/BlackDeathBossCorpse.png","w":3,"h":2} +{"name":"蛛絲之袍","refName":"Spidersilk Robe","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[101,117]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8b200fbbb5/BodyInt2C.png","w":2,"h":3} +{"name":"刺鋒箭袋","refName":"Spike-Point Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJTcGlrZS1Qb2ludCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/e420070f35/QuiverSpike-Point.png","w":2,"h":3} +{"name":"尖木刺盾","refName":"Spiked Bundle","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[13,18],"es":[4,6]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/76037de1f6/ShieldDexInt1.png","w":2,"h":2} +{"name":"鈍釘木棒","refName":"Spiked Club","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2UzIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/a3a1dace2a/OneHandMace3.png","h":3} +{"name":"釦釘手套","refName":"Spiked Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[220,253]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3Bpa2VkR2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/d98a3475e1/SpikedGloves.png","w":2,"h":2} +{"name":"尖刺圓盾","refName":"Spiked Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[102,120],"ev":[102,120]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5839b7b6f4/ShieldStrDex3.png","w":2,"h":3} +{"name":"脊弓","refName":"Spine Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/6642f8922a/Bow6.png","w":2,"h":4} +{"name":"潛能魔符","refName":"Spinefuse Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hblJlZDMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/25b4056f52/TalismanRed3.png"} +{"name":"凶刺巨錘","refName":"Spiny Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U1IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/88d16a9600/TwoHandMace5.png","w":2,"h":4} +{"name":"棘刺圓盾","refName":"Spiny Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[154,177],"ev":[154,177]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5839b7b6f4/ShieldStrDex3.png","w":2,"h":3} +{"name":"螺紋細劍","refName":"Spiraled Foil","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjUiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/ccce0178cc/Rapier5.png","h":4} +{"name":"螺紋法杖","refName":"Spiraled Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/a28035d7c4/Wand5.png","h":3} +{"name":"財富之魂","refName":"Spirit of Fortune","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0t1ZHVrdVRvdGVtQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/7faf1de77b/KudukuTotemCorpse.png","w":3,"h":2} +{"name":"光輝圓盾","refName":"Splendid Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[75,86],"ev":[75,86]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/b81ab44241/ShieldStrDex5.png","w":2,"h":3} +{"name":"夏烏拉裂片","refName":"Splinter of Chayula","namespace":"ITEM","tradeTag":"splinter-chayula","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFNoYXJkQ2hhb3MiLCJzY2FsZSI6MX1d/14332eaec8/BreachShardChaos.png"} +{"name":"艾許裂片","refName":"Splinter of Esh","namespace":"ITEM","tradeTag":"splinter-esh","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFNoYXJkTGlnaHRuaW5nIiwic2NhbGUiOjF9XQ/38665f5bda/BreachShardLightning.png"} +{"name":"托沃裂片","refName":"Splinter of Tul","namespace":"ITEM","tradeTag":"splinter-tul","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFNoYXJkQ29sZCIsInNjYWxlIjoxfV0/6fb888d0e1/BreachShardCold.png"} +{"name":"烏爾尼多裂片","refName":"Splinter of Uul-Netol","namespace":"ITEM","tradeTag":"splinter-uul","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFNoYXJkUGh5c2ljYWwiLCJzY2FsZSI6MX1d/3919f62b2a/BreachShardPhysical.png"} +{"name":"索伏裂片","refName":"Splinter of Xoph","namespace":"ITEM","tradeTag":"splinter-xoph","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFNoYXJkRmlyZSIsInNjYWxlIjoxfV0/b53a90ea19/BreachShardFire.png"} +{"name":"朽木塔盾","refName":"Splintered Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[9,12]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjEiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/3c332a170f/ShieldStr1.png","w":2,"h":4} +{"name":"斷螈魔符","refName":"Splitnewt Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbkJsYWNrNCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9ef3586829/TalismanBlack4.png"} +{"name":"孢子花萃取物","refName":"Sporebloom Tincture","namespace":"ITEM","craftable":{"category":"Tincture"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL1Nwb3JlYmxvb21TYXAiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MX1d/1d33094e39/SporebloomSap.png","h":2} +{"name":"安定權杖","refName":"Stabilising Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9IZWlzdFNjZXB0cmVFbGVtZW50YWwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/34e5d78ab3/HeistSceptreElemental.png","w":2,"h":3} +{"name":"豐裕牌組","refName":"Stacked Deck","namespace":"ITEM","tradeTag":"stacked-deck","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9EZWNrIiwic2NhbGUiOjF9XQ/8e83aea79a/Deck.png"} +{"name":"靈鹿權杖","refName":"Stag Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyOSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/151820601e/scepter9.png","w":2,"h":3} +{"name":"淤塞水道","refName":"Stagnation Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/OJbjzlG.jpg"}} +{"name":"標準鎖撬","refName":"Standard Lockpick","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvU3RhbmRhcmRMb2NrcGljayIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/c07ad566fa/StandardLockpick.png","w":2,"h":2} +{"name":"標準磨刀石","refName":"Standard Sharpening Stone","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvU3RhbmRhcmRTaGFycGVuaW5nU3RvbmUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/451be8e369/StandardSharpeningStone.png","w":2,"h":2} +{"name":"匿蹤短靴","refName":"Stealth Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[220,253]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f2e9a30d4a/BootsDex3.png","w":2,"h":2} +{"name":"匿蹤手套","refName":"Stealth Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[231,265]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/445d038f1d/GlovesDex3.png","w":2,"h":2} +{"name":"鋼鐵護腕","refName":"Steel Bracers","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQnJhY2VyQmFzZVR5cGVfbWV0YWwiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/9922db6069/BracerBaseType_metal.png","w":2,"h":2} +{"name":"冷鋼之冠","refName":"Steel Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[49,55]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/52f5eb243a/HelmetInt7.png","w":2,"h":2} +{"name":"鋼鐵鑽頭","refName":"Steel Drill","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRHJpbGxTdGQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/918de329aa/DrillStd.png","w":2,"h":2} +{"name":"冷鋼護手","refName":"Steel Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[116,127]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyNCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/468f466568/GlovesStr4.png","w":2,"h":2} +{"name":"冷鋼脛甲","refName":"Steel Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[32,42]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c55db774a6/BootsStr2.png","w":2,"h":2} +{"name":"冷鋼鳶盾","refName":"Steel Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[146,167],"es":[30,35]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8d673b3a1f/ShieldStrInt4.png","w":2,"h":3} +{"name":"鋼鑄戒指","refName":"Steel Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQWRhbWFudGluZVJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/04d7eaa12e/AdamantineRing.png"} +{"name":"沉鋼重錘","refName":"Steelhead","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U0IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/8c1f2059d0/TwoHandMace4.png","w":2,"h":4} +{"name":"鋼影長靴","refName":"Steelscale Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[65,75],"ev":[65,75]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/bae77b3a2c/BootsStrDex1.png","w":2,"h":2} +{"name":"鋼影護手","refName":"Steelscale Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[65,75],"ev":[65,75]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyRGV4MSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ba243000da/GlovesStrDex1.png","w":2,"h":2} +{"name":"鋼木之弓","refName":"Steelwood Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzkiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/aa9bf2b0d1/Bow9.png","w":2,"h":4} +{"name":"迷霧藥劑","refName":"Stibnite Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3Mvc3RpYm5pdGUiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/35fbc2f198/stibnite.png","h":2} +{"name":"銳利刺匕","refName":"Stiletto","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/954af836f7/Dagger4.png","h":3} +{"name":"石斧","refName":"Stone Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlMSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/fd3d66a367/TwoHandAxe1.png","w":2,"h":4} +{"name":"石錘","refName":"Stone Hammer","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U0IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/b0b1a18a0c/OneHandMace4.png","w":2,"h":3} +{"name":"風暴者短靴","refName":"Stormrider Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[236,271]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SaXR1YWxEZXhCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7172feff67/RitualDexBoots.png","w":2,"h":2} +{"name":"致命岩灘","refName":"Strand Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/7aE4Xzp.jpg"}} +{"name":"扣環短靴","refName":"Strapped Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[30,39],"es":[7,9]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/2f86a773a5/BootsDexInt2.png","w":2,"h":2} +{"name":"扣環皮甲","refName":"Strapped Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[98,127]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4M0EiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e725e99b1b/BodyDex3A.png","w":2,"h":3} +{"name":"扣環護手","refName":"Strapped Mitts","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[30,39],"es":[7,9]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/e18b986979/GlovesDexInt2.png","w":2,"h":2} +{"name":"扣釘腰帶","refName":"Studded Belt","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdDYiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/7ae25523b2/Belt6.png","w":2} +{"name":"鉚釘護腕","refName":"Studded Bracers","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQnJhY2VyQmFzZVR5cGVfc3R1ZGRlZCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/1dc4ea1d4c/BracerBaseType_studded.png","w":2,"h":2} +{"name":"鉚釘圓盾","refName":"Studded Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[46,58],"ev":[46,58]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5839b7b6f4/ShieldStrDex3.png","w":2,"h":3} +{"name":"冥河腰帶","refName":"Stygian Vise","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQWJ5c3NCZWx0IiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/973fb5fe7a/AbyssBelt.png","w":2} +{"name":"靈吸魔盾","refName":"Subsuming Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[25,29]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0ludEhlaXN0U2hpZWxkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f58639d2f4/IntHeistShield.png","w":2,"h":3} +{"name":"聖甲蟲·硫酸","refName":"Sulphite Scarab","namespace":"ITEM","tradeTag":"sulphite-scarab","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJTdWxwaGl0ZSIsInNjYWxlIjoxfV0/9bdde2cec0/LesserScarabSulphite.png"} +{"name":"聖甲蟲:煙毒硫酸","refName":"Sulphite Scarab of Fumes","namespace":"ITEM","tradeTag":"sulphite-scarab-of-fumes","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiU3VscGhpdGUiLCJzY2FsZSI6MX1d/55c0fed4b6/GreaterScarabSulphite.png"} +{"name":"聖甲蟲:貪婪硫酸","refName":"Sulphite Scarab of Greed","namespace":"ITEM","tradeTag":"sulphite-scarab-of-greed","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJTdWxwaGl0ZSIsInNjYWxlIjoxfV0/8121093ec0/NormalScarabSulphite.png"} +{"name":"硫酸噴管","refName":"Sulphur Blowtorch","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVG9yY2hTdGQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/9291e5d539/TorchStd.png","w":2,"h":2} +{"name":"硫磺藥劑","refName":"Sulphur Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvZ29sZCIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/74568fc9b9/gold.png","h":2} +{"name":"硫磺蝕岸","refName":"Sulphur Vents Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/D3sc6Dg.jpg"}} +{"name":"寒頂之巔","refName":"Summit Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/6aL5NhS.jpg"}} +{"name":"日光皮甲","refName":"Sun Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[324,382]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4M0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e30de2c7a6/BodyDex3C.png","w":2,"h":3} +{"name":"日光之鎧","refName":"Sun Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[451,506]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/94a3d5d98e/BodyStr1C.png","w":2,"h":3} +{"name":"太陽符文","refName":"Sun Rune","namespace":"ITEM","tradeTag":"sun-rune","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2V0dGxlcnMvVmlsbGFnZVJ1bmUyIiwic2NhbGUiOjF9XQ/c0bfc39082/VillageRune2.png"} +{"name":"裂甲巨斧","refName":"Sundering Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlMyIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/7d35a55caa/TwoHandAxe3.png","w":2,"h":4} +{"name":"陽炎之冠","refName":"Sunfire Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[101,116]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e5e3144056/HelmetInt9.png","w":2,"h":2} +{"name":"亞特蘭提斯","refName":"Sunken City Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/QAoHzcR.jpg"}} +{"name":"至高皮甲","refName":"Supreme Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[894,1028]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/47360dcc4a/BodyDex1C.png","w":2,"h":3} +{"name":"霸者刺盾","refName":"Supreme Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[242,278],"es":[49,57]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3f3c95a49a/ShieldDexInt5.png","w":2,"h":2} +{"name":"密教束衣","refName":"Syndicate's Garb","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[1205,1386]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8f1d1cfaa9/BodyDex2C.png","w":2,"h":3} +{"name":"尋夢追憶","refName":"Synthesised Map","namespace":"ITEM","craftable":{"uniqueOnly":true,"category":"Map"},"icon":"","map":{}} +{"name":"追憶碎片","refName":"Synthesising Fragment","namespace":"ITEM","tradeTag":"synthesising-fragment","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyQm9zc0tleUNvcnRleCIsInNjYWxlIjoxfV0/f97fadd4b1/UberBossKeyCortex.png"} +{"name":"裁縫石","refName":"Tailoring Orb","namespace":"ITEM","tradeTag":"tailoring-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGl2aW5lRW5jaGFudFdlYXBvbkN1cnJlbmN5Iiwic2NhbGUiOjF9XQ/d417654a23/DivineEnchantWeaponCurrency.png"} +{"name":"玷污的護甲片","refName":"Tainted Armourer's Scrap","namespace":"ITEM","tradeTag":"tainted-armourers-scrap","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZUFybW91cmVyc1NjcmFwIiwic2NhbGUiOjF9XQ/9ee0a10625/HellscapeArmourersScrap.png"} +{"name":"玷污的磨刀石","refName":"Tainted Blacksmith's Whetstone","namespace":"ITEM","tradeTag":"tainted-blacksmiths-whetstone","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZUJsYWNrc21pdGhXaGV0c3RvbmUiLCJzY2FsZSI6MX1d/0309648ccb/HellscapeBlacksmithWhetstone.png"} +{"name":"玷汙催化劑","refName":"Tainted Catalyst","namespace":"ITEM","tradeTag":"tainted-catalyst","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL1RhaW50ZWRDYXRhbHlzdCIsInNjYWxlIjoxfV0/5ce364bd70/TaintedCatalyst.png"} +{"name":"玷污的混沌石","refName":"Tainted Chaos Orb","namespace":"ITEM","tradeTag":"tainted-chaos-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZUNoYW9zT3JiIiwic2NhbGUiOjF9XQ/64d1f4db99/HellscapeChaosOrb.png"} +{"name":"玷污的幻色石","refName":"Tainted Chromatic Orb","namespace":"ITEM","tradeTag":"tainted-chromatic-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZUNocm9tYXRpY09yYiIsInNjYWxlIjoxfV0/702d29c7ab/HellscapeChromaticOrb.png"} +{"name":"玷污的神聖淚珠","refName":"Tainted Divine Teardrop","namespace":"ITEM","tradeTag":"tainted-divine-teardrop","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZVRlYXJkcm9wT3JiIiwic2NhbGUiOjF9XQ/0d251b9d52/HellscapeTeardropOrb.png"} +{"name":"玷污的崇高石","refName":"Tainted Exalted Orb","namespace":"ITEM","tradeTag":"tainted-exalted-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZUV4YWx0ZWRPcmIiLCJzY2FsZSI6MX1d/68a0ea3020/HellscapeExaltedOrb.png"} +{"name":"玷污的工匠石","refName":"Tainted Jeweller's Orb","namespace":"ITEM","tradeTag":"tainted-jewellers-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZUpld2VsbGVyc09yYiIsInNjYWxlIjoxfV0/f146c29db2/HellscapeJewellersOrb.png"} +{"name":"玷污的神話石","refName":"Tainted Mythic Orb","namespace":"ITEM","tradeTag":"tainted-mythic-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZU15dGhpY09yYiIsInNjYWxlIjoxfV0/72ba97d1a8/HellscapeMythicOrb.png"} +{"name":"汙染油瓶","refName":"Tainted Oil","namespace":"ITEM","tradeTag":"tainted-oil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9WYWFsT2lsIiwic2NhbGUiOjF9XQ/ac4ceb0430/VaalOil.png"} +{"name":"玷污的鏈結石","refName":"Tainted Orb of Fusing","namespace":"ITEM","tradeTag":"tainted-orb-of-fusing","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZU9yYk9mRnVzaW5nIiwic2NhbGUiOjF9XQ/845f3c20ed/HellscapeOrbOfFusing.png"} +{"name":"猛禽爪斧","refName":"Talon Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlOCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/ba1d6734bb/TwoHandAxe8.png","w":2,"h":4} +{"name":"紊亂化石","refName":"Tangled Fossil","namespace":"ITEM","tradeTag":"tangled-fossil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvVGFuZ2xlZEZvc3NpbCIsInNjYWxlIjoxfV0/b96bdfe155/TangledFossil.png"} +{"name":"環形魔盾","refName":"Tarnished Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[21,25]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/2fcc8b522c/ShieldInt4.png","w":2,"h":2} +{"name":"破損披風","refName":"Tattered Cloak","namespace":"ITEM","craftable":{"category":"Heist Cloak"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVGF0dGVyZWRDbG9hayIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/9c3ef0c0c4/TatteredCloak.png","w":2,"h":2} +{"name":"艾蘿紅薇月護衛的紋身","refName":"Tattoo of the Arohongui Moonwarden","namespace":"ITEM","tradeTag":"tattoo-of-the-arohongui-moonwarden","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"艾蘿紅薇哨兵的紋身","refName":"Tattoo of the Arohongui Scout","namespace":"ITEM","tradeTag":"tattoo-of-the-arohongui-scout","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"艾蘿紅薇薩滿的紋身","refName":"Tattoo of the Arohongui Shaman","namespace":"ITEM","tradeTag":"tattoo-of-the-arohongui-shaman","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"艾蘿紅薇戰鬥王的紋身","refName":"Tattoo of the Arohongui Warmonger","namespace":"ITEM","tradeTag":"tattoo-of-the-arohongui-warmonger","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"艾蘿紅薇戰士的紋身","refName":"Tattoo of the Arohongui Warrior","namespace":"ITEM","tradeTag":"tattoo-of-the-arohongui-warrior","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"悉妮蔻拉死護衛的紋身","refName":"Tattoo of the Hinekora Deathwarden","namespace":"ITEM","tradeTag":"tattoo-of-the-hinekora-deathwarden","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"悉妮蔻拉薩滿的紋身","refName":"Tattoo of the Hinekora Shaman","namespace":"ITEM","tradeTag":"tattoo-of-the-hinekora-shaman","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"悉妮蔻拉說書人的紋身","refName":"Tattoo of the Hinekora Storyteller","namespace":"ITEM","tradeTag":"tattoo-of-the-hinekora-storyteller","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"悉妮蔻拉戰鬥王的紋身","refName":"Tattoo of the Hinekora Warmonger","namespace":"ITEM","tradeTag":"tattoo-of-the-hinekora-warmonger","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"悉妮蔻拉戰士的紋身","refName":"Tattoo of the Hinekora Warrior","namespace":"ITEM","tradeTag":"tattoo-of-the-hinekora-warrior","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"奇塔弗飲血者的紋身","refName":"Tattoo of the Kitava Blood Drinker","namespace":"ITEM","tradeTag":"tattoo-of-the-kitava-blood-drinker","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"奇塔弗嗜心者的紋身","refName":"Tattoo of the Kitava Heart Eater","namespace":"ITEM","tradeTag":"tattoo-of-the-kitava-heart-eater","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"奇塔弗叛亂的紋身","refName":"Tattoo of the Kitava Rebel","namespace":"ITEM","tradeTag":"tattoo-of-the-kitava-rebel","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"奇塔弗薩滿的紋身","refName":"Tattoo of the Kitava Shaman","namespace":"ITEM","tradeTag":"tattoo-of-the-kitava-shaman","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"奇塔弗戰士的紋身","refName":"Tattoo of the Kitava Warrior","namespace":"ITEM","tradeTag":"tattoo-of-the-kitava-warrior","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"努葛瑪呼火行者的紋身","refName":"Tattoo of the Ngamahu Firewalker","namespace":"ITEM","tradeTag":"tattoo-of-the-ngamahu-firewalker","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"努葛瑪呼薩滿的紋身","refName":"Tattoo of the Ngamahu Shaman","namespace":"ITEM","tradeTag":"tattoo-of-the-ngamahu-shaman","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"努葛瑪呼戰鬥王的紋身","refName":"Tattoo of the Ngamahu Warmonger","namespace":"ITEM","tradeTag":"tattoo-of-the-ngamahu-warmonger","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"努葛瑪呼戰士的紋身","refName":"Tattoo of the Ngamahu Warrior","namespace":"ITEM","tradeTag":"tattoo-of-the-ngamahu-warrior","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"努葛瑪呼木工的紋身","refName":"Tattoo of the Ngamahu Woodcarver","namespace":"ITEM","tradeTag":"tattoo-of-the-ngamahu-woodcarver","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"雷默科射手的紋身","refName":"Tattoo of the Ramako Archer","namespace":"ITEM","tradeTag":"tattoo-of-the-ramako-archer","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"雷默科偵瞬步的紋身","refName":"Tattoo of the Ramako Fleetfoot","namespace":"ITEM","tradeTag":"tattoo-of-the-ramako-fleetfoot","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"雷默科哨兵的紋身","refName":"Tattoo of the Ramako Scout","namespace":"ITEM","tradeTag":"tattoo-of-the-ramako-scout","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"雷默科薩滿的紋身","refName":"Tattoo of the Ramako Shaman","namespace":"ITEM","tradeTag":"tattoo-of-the-ramako-shaman","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"雷默科狙擊手的紋身","refName":"Tattoo of the Ramako Sniper","namespace":"ITEM","tradeTag":"tattoo-of-the-ramako-sniper","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"隆格庫萊暴徒的紋身","refName":"Tattoo of the Rongokurai Brute","namespace":"ITEM","tradeTag":"tattoo-of-the-rongokurai-brute","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"隆格庫萊巨獸的紋身","refName":"Tattoo of the Rongokurai Goliath","namespace":"ITEM","tradeTag":"tattoo-of-the-rongokurai-goliath","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"隆格庫萊守衛的紋身","refName":"Tattoo of the Rongokurai Guard","namespace":"ITEM","tradeTag":"tattoo-of-the-rongokurai-guard","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"隆格庫萊巨龜的紋身","refName":"Tattoo of the Rongokurai Turtle","namespace":"ITEM","tradeTag":"tattoo-of-the-rongokurai-turtle","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"隆格庫萊戰士的紋身","refName":"Tattoo of the Rongokurai Warrior","namespace":"ITEM","tradeTag":"tattoo-of-the-rongokurai-warrior","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"塔薩里奧舞劍者的紋身","refName":"Tattoo of the Tasalio Bladedancer","namespace":"ITEM","tradeTag":"tattoo-of-the-tasalio-bladedancer","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"塔薩里奧哨兵的紋身","refName":"Tattoo of the Tasalio Scout","namespace":"ITEM","tradeTag":"tattoo-of-the-tasalio-scout","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"塔薩里奧薩滿的紋身","refName":"Tattoo of the Tasalio Shaman","namespace":"ITEM","tradeTag":"tattoo-of-the-tasalio-shaman","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"塔薩里奧潮汐變幻者的紋身","refName":"Tattoo of the Tasalio Tideshifter","namespace":"ITEM","tradeTag":"tattoo-of-the-tasalio-tideshifter","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"塔薩里奧戰士的紋身","refName":"Tattoo of the Tasalio Warrior","namespace":"ITEM","tradeTag":"tattoo-of-the-tasalio-warrior","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"塔赫亞藥草師的紋身","refName":"Tattoo of the Tawhoa Herbalist","namespace":"ITEM","tradeTag":"tattoo-of-the-tawhoa-herbalist","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"塔赫亞自然的紋身","refName":"Tattoo of the Tawhoa Naturalist","namespace":"ITEM","tradeTag":"tattoo-of-the-tawhoa-naturalist","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"塔赫亞哨兵的紋身","refName":"Tattoo of the Tawhoa Scout","namespace":"ITEM","tradeTag":"tattoo-of-the-tawhoa-scout","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"塔赫亞薩滿的紋身","refName":"Tattoo of the Tawhoa Shaman","namespace":"ITEM","tradeTag":"tattoo-of-the-tawhoa-shaman","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"塔赫亞戰士的紋身","refName":"Tattoo of the Tawhoa Warrior","namespace":"ITEM","tradeTag":"tattoo-of-the-tawhoa-warrior","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"圖克哈瑪鬥士的紋身","refName":"Tattoo of the Tukohama Brawler","namespace":"ITEM","tradeTag":"tattoo-of-the-tukohama-brawler","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"圖克哈瑪薩滿的紋身","refName":"Tattoo of the Tukohama Shaman","namespace":"ITEM","tradeTag":"tattoo-of-the-tukohama-shaman","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"圖克哈瑪戰爭喚者的紋身","refName":"Tattoo of the Tukohama Warcaller","namespace":"ITEM","tradeTag":"tattoo-of-the-tukohama-warcaller","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"圖克哈瑪戰鬥王的紋身","refName":"Tattoo of the Tukohama Warmonger","namespace":"ITEM","tradeTag":"tattoo-of-the-tukohama-warmonger","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"圖克哈瑪戰士的紋身","refName":"Tattoo of the Tukohama Warrior","namespace":"ITEM","tradeTag":"tattoo-of-the-tukohama-warrior","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"瓦拉庫哨兵的紋身","refName":"Tattoo of the Valako Scout","namespace":"ITEM","tradeTag":"tattoo-of-the-valako-scout","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"瓦拉庫薩滿的紋身","refName":"Tattoo of the Valako Shaman","namespace":"ITEM","tradeTag":"tattoo-of-the-valako-shaman","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"瓦拉庫護盾大師的紋身","refName":"Tattoo of the Valako Shieldbearer","namespace":"ITEM","tradeTag":"tattoo-of-the-valako-shieldbearer","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"瓦拉庫風暴馭者的紋身","refName":"Tattoo of the Valako Stormrider","namespace":"ITEM","tradeTag":"tattoo-of-the-valako-stormrider","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"瓦拉庫戰士的紋身","refName":"Tattoo of the Valako Warrior","namespace":"ITEM","tradeTag":"tattoo-of-the-valako-warrior","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"柚木圓盾","refName":"Teak Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[131,146],"ev":[131,146]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9cccab30a2/ShieldStrDex2.png","w":2,"h":3} +{"name":"清綠油瓶","refName":"Teal Oil","namespace":"ITEM","tradeTag":"teal-oil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9UZWFsT2lsIiwic2NhbGUiOjF9XQ/d90d65a90b/TealOil.png"} +{"name":"強化細劍","refName":"Tempered Foil","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjMiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/11f4a8b0d0/Rapier3.png","h":4} +{"name":"冶鍊的催化劑","refName":"Tempering Catalyst","namespace":"ITEM","tradeTag":"tempering-catalyst","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL1RlbXBlcmluZ0NhdGFseXN0Iiwic2NhbGUiOjF9XQ/6bf69c356e/TemperingCatalyst.png"} +{"name":"淬鍊石","refName":"Tempering Orb","namespace":"ITEM","tradeTag":"tempering-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGl2aW5lRW5jaGFudEJvZHlBcm1vdXJDdXJyZW5jeSIsInNjYWxlIjoxfV0/37681eda1c/DivineEnchantBodyArmourCurrency.png"} +{"name":"奪魂之殿","refName":"Temple Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/g3LZ4zC.jpg"}} +{"name":"裂肉之錘","refName":"Tenderizer","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2UzIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/a3a1dace2a/OneHandMace3.png","h":3} +{"name":"露台花園","refName":"Terrace Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/dZZGyRt.jpg"}} +{"name":"恐懼之牙","refName":"Terror Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3OCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/3cc3260177/Claw8.png","w":2,"h":2} +{"name":"懼靈重錘","refName":"Terror Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U3IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/d7e632f004/TwoHandMace7.png","w":2,"h":4} +{"name":"奇術之譫妄玉","refName":"Thaumaturge's Delirium Orb","namespace":"ITEM","tradeTag":"thaumaturges-delirium-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJHZW1zIiwic2NhbGUiOjF9XQ/027802e844/DeliriumOrbGems.png"} +{"name":"幻術師的培育器","refName":"Thaumaturge's Incubator","namespace":"ITEM","tradeTag":"thaumaturges-incubator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uR2VtcyIsInNjYWxlIjoxfV0/7df785d740/IncubationGems.png"} +{"name":"奇術感知咒術","refName":"Thaumaturgical Sensing Charm","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVGhhdW1hdHVyZ2ljYWxTZW5zaW5nQ2hhcm0iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/7717c977a0/ThaumaturgicalSensingCharm.png","w":2,"h":2} +{"name":"奇術法杖","refName":"Thaumaturgical Ward","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVGhhdW1hdHVyZ2ljYWxXYXJkIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/5c04225225/ThaumaturgicalWard.png","w":2,"h":2} +{"name":"奇術噴管","refName":"Thaumetic Blowtorch","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVG9yY2hBZHYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/56e93dd6de/TorchAdv.png","w":2,"h":2} +{"name":"奇術閃光粉","refName":"Thaumetic Flashpowder","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVGhhdW1ldGljRmxhc2hwb3dkZXIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/1544d0cf33/ThaumeticFlashpowder.png","w":2,"h":2} +{"name":"釋界之令","refName":"The Maven's Writ","namespace":"ITEM","tradeTag":"the-mavens-writ","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXRsYXMvTWF2ZW5LZXkiLCJzY2FsZSI6MX1d/40683e487b/MavenKey.png"} +{"name":"劇場偽裝套組","refName":"Theatre Disguise Kit","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRXNwaW9uYWdlRGlzZ3Vpc2VLaXQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e450ea475f/EspionageDisguiseKit.png","w":2,"h":2} +{"name":"林野獵弓","refName":"Thicket Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/0fcc51afcd/Bow2.png","w":2,"h":3} +{"name":"驚懼樹叢","refName":"Thicket Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/rlY2iPC.jpg"}} +{"name":"竊賊之裝","refName":"Thief's Garb","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[353,396]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8f1d1cfaa9/BodyDex2C.png","w":2,"h":3} +{"name":"盜賊飾品","refName":"Thief's Trinket","namespace":"ITEM","craftable":{"category":"Trinket","corrupted":true},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvTHVja0NoYXJtMSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/3641828a4f/LuckCharm1.png"} +{"name":"暗金魔盾","refName":"Thorium Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[54,62]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/404ef29c87/ShieldInt6.png","w":2,"h":2} +{"name":"棘刺細劍","refName":"Thorn Rapier","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjgiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/1f11ed5e87/Rapier8.png","h":4} +{"name":"三手魔符","refName":"Three Hands Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hblJlZDgiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4606db8db3/TalismanRed8.png"} +{"name":"三鼠魔符","refName":"Three Rat Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hblJlZDciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ebaea93f2d/TalismanRed7.png"} +{"name":"撕裂尖爪","refName":"Thresher Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/8b8d9559cd/Claw2.png","w":2,"h":2} +{"name":"刺喉刃","refName":"Throat Stabber","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ac6e7ab61d/Claw3.png","w":2,"h":2} +{"name":"阻擾手套","refName":"Thwarting Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[236,271]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUml0dWFsU3RyR2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/254b8a0066/RitualStrGloves.png","w":2,"h":2} +{"name":"虎鉤","refName":"Tiger Hook","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDkiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/d11450350f/OneHandSword9.png","w":2,"h":3} +{"name":"虎牙巨劍","refName":"Tiger Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d69254d0a6/TwoHandSword6.png","w":2,"h":4} +{"name":"虎爪刃","refName":"Tiger's Paw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0a98c635d3/Claw4.png","w":2,"h":2} +{"name":"裂木巨斧","refName":"Timber Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlMyIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/7d35a55caa/TwoHandAxe3.png","w":2,"h":4} +{"name":"時間符文","refName":"Time Rune","namespace":"ITEM","tradeTag":"time-rune","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2V0dGxlcnMvVmlsbGFnZVJ1bmU5Iiwic2NhbGUiOjF9XQ/d6a60dbfc9/VillageRune9.png"} +{"name":"時光卷軸","refName":"Time-light Scroll","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9IYXJiaW5nZXJUb2tlbkJlbHQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cd4f70a070/HarbingerTokenBelt.png"} +{"name":"時間遺忘的培育器","refName":"Time-Lost Incubator","namespace":"ITEM","tradeTag":"time-lost-incubator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uVW5pcXVlcyIsInNjYWxlIjoxfV0/72b48d1f1b/IncubationUniques.png"} +{"name":"永恆之譫妄玉","refName":"Timeless Delirium Orb","namespace":"ITEM","tradeTag":"timeless-delirium-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJMZWdpb24iLCJzY2FsZSI6MX1d/b61cc0e1f6/DeliriumOrbLegion.png"} +{"name":"永恆不朽帝國徽印","refName":"Timeless Eternal Emblem","namespace":"ITEM","tradeTag":"timeless-eternal-emblem","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FdGVybmFsRW1waXJlRnJhZ21lbnQiLCJzY2FsZSI6MX1d/974fcca603/EternalEmpireFragment.png"} +{"name":"永恆不朽帝國裂片","refName":"Timeless Eternal Empire Splinter","namespace":"ITEM","tradeTag":"timeless-eternal-empire-splinter","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FdGVybmFsRW1waXJlU2hhcmQiLCJzY2FsZSI6MX1d/f404e7925c/EternalEmpireShard.png"} +{"name":"永恆珠寶","refName":"Timeless Jewel","namespace":"ITEM","craftable":{"category":"Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RpbWVsZXNzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2cc52f22d7/Timeless.png"} +{"name":"永恆卡魯徽印","refName":"Timeless Karui Emblem","namespace":"ITEM","tradeTag":"timeless-karui-emblem","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9LYXJ1aUZyYWdtZW50Iiwic2NhbGUiOjF9XQ/c616b0ee65/KaruiFragment.png"} +{"name":"永恆卡魯裂片","refName":"Timeless Karui Splinter","namespace":"ITEM","tradeTag":"timeless-karui-splinter","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9LYXJ1aVNoYXJkIiwic2NhbGUiOjF9XQ/dd21055148/KaruiShard.png"} +{"name":"永恆馬拉克斯徽印","refName":"Timeless Maraketh Emblem","namespace":"ITEM","tradeTag":"timeless-maraketh-emblem","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9NYXJha2V0aEZyYWdtZW50Iiwic2NhbGUiOjF9XQ/a81c4968ab/MarakethFragment.png"} +{"name":"永恆馬拉克斯裂片","refName":"Timeless Maraketh Splinter","namespace":"ITEM","tradeTag":"timeless-maraketh-splinter","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9NYXJha2V0aFNoYXJkIiwic2NhbGUiOjF9XQ/04ec0d80fe/MarakethShard.png"} +{"name":"永恆聖宗徽印","refName":"Timeless Templar Emblem","namespace":"ITEM","tradeTag":"timeless-templar-emblem","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UZW1wbGFyRnJhZ21lbnQiLCJzY2FsZSI6MX1d/e7ede9f816/TemplarFragment.png"} +{"name":"永恆聖宗裂片","refName":"Timeless Templar Splinter","namespace":"ITEM","tradeTag":"timeless-templar-splinter","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UZW1wbGFyU2hhcmQiLCJzY2FsZSI6MX1d/fd3d766dd5/TemplarShard.png"} +{"name":"永恆瓦爾徽印","refName":"Timeless Vaal Emblem","namespace":"ITEM","tradeTag":"timeless-vaal-emblem","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYWFsRnJhZ21lbnQiLCJzY2FsZSI6MX1d/1f8bc8f5ad/VaalFragment.png"} +{"name":"永恆瓦爾裂片","refName":"Timeless Vaal Splinter","namespace":"ITEM","tradeTag":"timeless-vaal-splinter","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYWFsU2hhcmQiLCJzY2FsZSI6MX1d/6b356215ac/VaalShard.png"} +{"name":"遠古戰爪","refName":"Timeworn Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ae1fb6dddd/Claw6.png","w":2,"h":2} +{"name":"古朽遺鑰","refName":"Timeworn Reliquary Key","namespace":"ITEM","tradeTag":"timeworn-reliquary-key","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYXVsdE1hcDMiLCJzY2FsZSI6MX1d/b7e8aacbaa/VaultMap3.png"} +{"name":"修補匠手套","refName":"Tinker Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[35,41]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUml0dWFsRGV4R2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/2785fe1c37/RitualDexGloves.png","w":2,"h":2} +{"name":"巨人護手","refName":"Titan Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[242,278]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyNCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/468f466568/GlovesStr4.png","w":2,"h":2} +{"name":"巨人脛甲","refName":"Titan Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[241,278]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/82bedfd1e0/BootsStr4.png","w":2,"h":2} +{"name":"泰坦之鎧","refName":"Titan Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[877,1009]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/94a3d5d98e/BodyStr1C.png","w":2,"h":3} +{"name":"聖甲蟲.泰坦","refName":"Titanic Scarab","namespace":"ITEM","tradeTag":"titanic-scarab","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJVbmlxdWUiLCJzY2FsZSI6MX1d/9ed658ddba/LesserScarabUnique.png"} +{"name":"聖甲蟲:傳說泰坦","refName":"Titanic Scarab of Legend","namespace":"ITEM","tradeTag":"titanic-scarab-of-legend","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiVW5pcXVlIiwic2NhbGUiOjF9XQ/0194f878a0/GreaterScarabUnique.png"} +{"name":"聖甲蟲:珍寶泰坦","refName":"Titanic Scarab of Treasures","namespace":"ITEM","tradeTag":"titanic-scarab-of-treasures","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJVbmlxdWUiLCJzY2FsZSI6MX1d/e2945f5878/NormalScarabUnique.png"} +{"name":"巨人魔盾","refName":"Titanium Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[67,77]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/404ef29c87/ShieldInt6.png","w":2,"h":2} +{"name":"征戰之斧","refName":"Tomahawk","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlMyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/126bb32028/OneHandAxe3.png","w":2,"h":3} +{"name":"卷冊聖物","refName":"Tome Relic","namespace":"ITEM","craftable":{"category":"Sanctum Relic"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljQmFzZTN4MSIsInciOjMsImgiOjEsInNjYWxlIjoxfV0/7463c2ce89/RelicBase3x1.png","w":3} +{"name":"黃玉藥劑","refName":"Topaz Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvdG9wYXoiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/2a6d920bc1/topaz.png","h":2} +{"name":"黃玉戒指","refName":"Topaz Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6f90cd3c4b/Ring5.png"} +{"name":"聖甲蟲·苦痛","refName":"Torment Scarab","namespace":"ITEM","tradeTag":"torment-scarab","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJUb3JtZW50Iiwic2NhbGUiOjF9XQ/8c43bf8c64/LesserScarabTorment.png"} +{"name":"聖甲蟲:特異苦痛","refName":"Torment Scarab of Peculiarity","namespace":"ITEM","tradeTag":"torment-scarab-of-peculiarity","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJUb3JtZW50Iiwic2NhbGUiOjF9XQ/4c94a84fd8/NormalScarabTorment.png"} +{"name":"聖甲蟲:附身苦痛","refName":"Torment Scarab of Possession","namespace":"ITEM","tradeTag":"torment-scarab-of-possession","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYlRvcm1lbnQiLCJzY2FsZSI6MX1d/5b3bed9d3d/Tier4ScarabTorment.png"} +{"name":"聖甲蟲:釋放苦痛","refName":"Torment Scarab of Release","namespace":"ITEM","tradeTag":"torment-scarab-of-release","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiVG9ybWVudCIsInNjYWxlIjoxfV0/548c57abc3/GreaterScarabTorment.png"} +{"name":"撕裂披風","refName":"Torn Cloak","namespace":"ITEM","craftable":{"category":"Heist Cloak"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVG9ybkNsb2FrIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/8857eabe4c/TornCloak.png","w":2,"h":2} +{"name":"狂風法杖","refName":"Tornado Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/a28035d7c4/Wand5.png","h":3} +{"name":"刑罰頭籠","refName":"Torture Cage","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[20,25]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/bdf765283d/HelmetInt3.png","w":2,"h":2} +{"name":"刑求束衣","refName":"Torturer Garb","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[627,721],"es":[126,145]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/6744d2d486/BodyDexInt2C.png","w":2,"h":3} +{"name":"刑求面具","refName":"Torturer's Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[355,409],"es":[71,82]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDExIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/ff51fc2e8c/HelmetDexInt11.png","w":2,"h":2} +{"name":"圖騰巨錘","refName":"Totemic Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2UyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/36201397ff/TwoHandMace2.png","w":2,"h":4} +{"name":"闇獄尖塔","refName":"Tower Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/LqSPV6K.jpg"}} +{"name":"腐敗下水道","refName":"Toxic Sewer Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/CgSpbBl.jpg"}} +{"name":"調和魔盾","refName":"Transfer-attuned Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[39,45]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0ludEhlaXN0U2hpZWxkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f58639d2f4/IntHeistShield.png","w":2,"h":3} +{"name":"變形長杖","refName":"Transformer Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGVpc3RTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/5e852184f5/HeistStaff.png","w":2,"h":4} +{"name":"獵人之靴","refName":"Trapper Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[74,85],"es":[16,18]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/2f86a773a5/BootsDexInt2.png","w":2,"h":2} +{"name":"獵人護手","refName":"Trapper Mitts","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[65,77],"es":[14,16]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50MSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/983aa9c9fc/GlovesDexInt1.png","w":2,"h":2} +{"name":"設陷者手套","refName":"Trapsetter Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[236,271]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUml0dWFsRGV4R2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/2785fe1c37/RitualDexGloves.png","w":2,"h":2} +{"name":"查爾森閃光粉","refName":"Trarthan Flashpowder","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVHJhcnRocmFuRmxhc2hwb3dkZXIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/8f197f178c/TrarthranFlashpowder.png","w":2,"h":2} +{"name":"祭儀之冠","refName":"Tribal Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[28,33]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/ce784f5b72/HelmetInt4.png","w":2,"h":2} +{"name":"祭儀之杵","refName":"Tribal Club","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2UyIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/75d926bb65/OneHandMace2.png","h":3} +{"name":"祭儀巨錘","refName":"Tribal Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2UyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/36201397ff/TwoHandMace2.png","w":2,"h":4} +{"name":"女神獻禮","refName":"Tribute to the Goddess","namespace":"ITEM","tradeTag":"offer-tribute","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9MYWJ5cmludGhIYXJ2ZXN0Iiwic2NhbGUiOjF9XQ/81054ff374/LabyrinthHarvest.png"} +{"name":"三角帽","refName":"Tricorne","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[53,69]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c4c9b53e80/HelmetDex2.png","w":2,"h":2} +{"name":"三叉短匕","refName":"Trisula","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjkiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/ac5b740611/Dagger9.png","h":3} +{"name":"勝利盔甲","refName":"Triumphant Lamellar","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[380,437],"ev":[477,549]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyNEEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/7e1c29aacf/BodyStr4A.png","w":2,"h":3} +{"name":"晴空幽島","refName":"Tropical Island Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/wraPtBT.jpg"}} +{"name":"托沃裂痕石","refName":"Tul's Breachstone","namespace":"ITEM","tradeTag":"tuls-breachstone","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaEZyYWdtZW50c0NvbGQiLCJzY2FsZSI6MX1d/d1a2906729/BreachFragmentsCold.png"} +{"name":"托沃無暇裂痕石","refName":"Tul's Flawless Breachstone","namespace":"ITEM","tradeTag":"tuls-flawless-breachstone","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL1R1bHNGbGF3bGVzc0JyZWFjaHN0b25lIiwic2NhbGUiOjF9XQ/f238a20f9a/TulsFlawlessBreachstone.png"} +{"name":"洶湧的催化劑","refName":"Turbulent Catalyst","namespace":"ITEM","tradeTag":"turbulent-catalyst","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL1R1cmJ1bGVudENhdGFseXN0Iiwic2NhbGUiOjF9XQ/1f49d03e58/TurbulentCatalyst.png"} +{"name":"青玉護身符","refName":"Turquoise Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UdXJxdW9pc2VBbXVsZXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/605b4da0e1/TurquoiseAmulet.png"} +{"name":"殘枝魔盾","refName":"Twig Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[6,8]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/26dafd13bc/ShieldInt1.png","w":2,"h":2} +{"name":"暮光長劍","refName":"Twilight Blade","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDgiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/406f7aec97/OneHandSword8.png","w":2,"h":3} +{"name":"暮光法衣","refName":"Twilight Regalia","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[262,302]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e6eb42b23a/BodyStrDexInt1C.png","w":2,"h":3} +{"name":"重刃爪","refName":"Twin Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3OSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/84eab7e6ba/Claw9.png","w":2,"h":2} +{"name":"雙手劍","refName":"Two-Handed Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/294bd80312/TwoHandSword4.png","w":2,"h":4} +{"name":"雙鋒箭袋","refName":"Two-Point Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJUd28tUG9pbnQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5a4772c3db/QuiverTwo-Point.png","w":2,"h":3} +{"name":"雙玉戒指","refName":"Two-Stone Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVG9wYXpSdWJ5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8878077651/TopazRuby.png","disc":{"hasImplicit":{"ref":"+#% to Fire and Lightning Resistances"}}} +{"name":"雙玉戒指","refName":"Two-Stone Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVG9wYXpTYXBwaGlyZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0c211c12b4/TopazSapphire.png","disc":{"hasImplicit":{"ref":"+#% to Cold and Lightning Resistances"}}} +{"name":"雙玉戒指","refName":"Two-Stone Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU2FwcGhpcmVSdWJ5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/7df6d65dfd/SapphireRuby.png","disc":{"hasImplicit":{"ref":"+#% to Fire and Cold Resistances"}}} +{"name":"異色鞋","refName":"Two-Toned Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[126,145],"es":[26,30]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Ud29Ub25lZEJvb3RzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/93a61b5672/TwoTonedBoots.png","w":2,"h":2,"disc":{"propEV":true,"propES":true}} +{"name":"異色鞋","refName":"Two-Toned Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[126,145],"ev":[126,145]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Ud29Ub25lZEJvb3RzMkIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c046f556ab/TwoTonedBoots2B.png","w":2,"h":2,"disc":{"propAR":true,"propEV":true}} +{"name":"異色鞋","refName":"Two-Toned Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[126,145],"es":[26,30]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Ud29Ub25lZEJvb3RzM0IiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e3271c5de1/TwoTonedBoots3B.png","w":2,"h":2,"disc":{"propAR":true,"propES":true}} +{"name":"暴君之統","refName":"Tyrant's Sekhem","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyMyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/366212755a/scepter3.png","w":2,"h":3} +{"name":"通牒聖甲蟲","refName":"Ultimatum Scarab","namespace":"ITEM","tradeTag":"ultimatum-scarab","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJVbHRpbWF0dW0iLCJzY2FsZSI6MX1d/b1b423625d/LesserScarabUltimatum.png"} +{"name":"通牒賄賂之聖甲蟲","refName":"Ultimatum Scarab of Bribing","namespace":"ITEM","tradeTag":"ultimatum-scarab-of-bribing","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJVbHRpbWF0dW0iLCJzY2FsZSI6MX1d/d688264f91/NormalScarabUltimatum.png"} +{"name":"通牒催化的聖甲蟲","refName":"Ultimatum Scarab of Catalysing","namespace":"ITEM","tradeTag":"ultimatum-scarab-of-catalysing","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYlVsdGltYXR1bSIsInNjYWxlIjoxfV0/abfc80cf45/Tier4ScarabUltimatum.png"} +{"name":"通牒決鬥之聖甲蟲","refName":"Ultimatum Scarab of Dueling","namespace":"ITEM","tradeTag":"ultimatum-scarab-of-dueling","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiVWx0aW1hdHVtIiwic2NhbGUiOjF9XQ/be3b513bfe/GreaterScarabUltimatum.png"} +{"name":"通牒銘文之聖甲蟲","refName":"Ultimatum Scarab of Inscription","namespace":"ITEM","tradeTag":"ultimatum-scarab-of-inscription","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRUaWVyNFNjYXJhYlVsdGltYXR1bSIsInNjYWxlIjoxfV0/080e60e969/AltTier4ScarabUltimatum.png"} +{"name":"地底之河","refName":"Underground River Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/8k4Dug4.jpg"}} +{"name":"濱海幽穴","refName":"Underground Sea Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/ELUmbfz.jpg"}} +{"name":"不朽魔符","refName":"Undying Flesh Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbldoaXRlNiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b59ac8a156/TalismanWhite6.png"} +{"name":"無情的永恆不朽帝國徽印","refName":"Unrelenting Timeless Eternal Emblem","namespace":"ITEM","tradeTag":"uber-timeless-eternal-emblem","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UaW1lbGVzc0NvbmZsaWN0S2FydWkiLCJzY2FsZSI6MX1d/48dd647843/TimelessConflictKarui.png"} +{"name":"無情的永恆卡魯徽印","refName":"Unrelenting Timeless Karui Emblem","namespace":"ITEM","tradeTag":"uber-timeless-karui-emblem","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UaW1lbGVzc0NvbmZsaWN0RXRlcm5hbCIsInNjYWxlIjoxfV0/f96320f889/TimelessConflictEternal.png"} +{"name":"無情的永恆馬拉克斯徽印","refName":"Unrelenting Timeless Maraketh Emblem","namespace":"ITEM","tradeTag":"uber-timeless-maraketh-emblem","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UaW1lbGVzc0NvbmZsaWN0TWFyYWtldGgiLCJzY2FsZSI6MX1d/8eca6f27b3/TimelessConflictMaraketh.png"} +{"name":"無情的永恆聖宗徽印","refName":"Unrelenting Timeless Templar Emblem","namespace":"ITEM","tradeTag":"uber-timeless-templar-emblem","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UaW1lbGVzc0NvbmZsaWN0VGVtcGxhciIsInNjYWxlIjoxfV0/b0a76a5f78/TimelessConflictTemplar.png"} +{"name":"無情的永恆瓦爾徽印","refName":"Unrelenting Timeless Vaal Emblem","namespace":"ITEM","tradeTag":"uber-timeless-vaal-emblem","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UaW1lbGVzc0NvbmZsaWN0VmFhbCIsInNjYWxlIjoxfV0/895e0137f2/TimelessConflictVaal.png"} +{"name":"夕暮護身符","refName":"Unset Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9VbnNldEFtdWxldCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/19b70eaa5b/UnsetAmulet.png"} +{"name":"潛能之戒","refName":"Unset Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvRW1wdHktU29ja2V0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/82146b3aa4/Empty-Socket.png"} +{"name":"還原玉","refName":"Unshaping Orb","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXRsYXNEb3duZ3JhZGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0f3716b72b/AtlasDowngrade.png"} +{"name":"易變催化劑","refName":"Unstable Catalyst","namespace":"ITEM","tradeTag":"unstable-catalyst","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL0NyaXRpY2FsTW9kaWZpZXJDYXRhbHlzdCIsInNjYWxlIjoxfV0/eebe548a38/CriticalModifierCatalyst.png"} +{"name":"古甕聖物","refName":"Urn Relic","namespace":"ITEM","craftable":{"category":"Sanctum Relic"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljQmFzZTJ4MSIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/676ca95b04/RelicBase2x1.png","w":2} +{"name":"熊首皮盔","refName":"Ursine Pelt","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[276,325]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e2b3ccec11/HelmetDex7.png","w":2,"h":2} +{"name":"烏爾尼多裂痕石","refName":"Uul-Netol's Breachstone","namespace":"ITEM","tradeTag":"uul-breachstone","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaEZyYWdtZW50c1BoeXNpY2FsIiwic2NhbGUiOjF9XQ/2b4821437a/BreachFragmentsPhysical.png"} +{"name":"烏爾尼多無暇裂痕石","refName":"Uul-Netol's Flawless Breachstone","namespace":"ITEM","tradeTag":"uul-flawless-breachstone","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL1V1bE5ldG9sc0ZsYXdsZXNzQnJlYWNoc3RvbmUiLCJzY2FsZSI6MX1d/afcbb96429/UulNetolsFlawlessBreachstone.png"} +{"name":"瓦爾祝福","refName":"Vaal Aspect","namespace":"ITEM","craftable":{"category":"Unique Fragment","uniqueOnly":true},"icon":"","w":1,"h":2} +{"name":"瓦爾巨斧","refName":"Vaal Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/4b3fbfcd65/TwoHandAxe5.png","w":2,"h":4} +{"name":"瓦爾軍刃","refName":"Vaal Blade","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDYiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/c12083d6b6/OneHandSword6.png","w":2,"h":3} +{"name":"瓦爾輕盾","refName":"Vaal Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[330,379]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/60c6c83831/ShieldDex4.png","w":2,"h":2} +{"name":"瓦爾戰爪","refName":"Vaal Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ae1fb6dddd/Claw6.png","w":2,"h":2} +{"name":"瓦爾護手","refName":"Vaal Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[232,266]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyMyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f5896830bf/GlovesStr3.png","w":2,"h":2} +{"name":"瓦爾巨劍","refName":"Vaal Greatsword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/828ca9e450/TwoHandSword5.png","w":2,"h":4} +{"name":"瓦爾脛甲","refName":"Vaal Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[220,253]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/56efa25c50/BootsStr3.png","w":2,"h":2} +{"name":"瓦爾戰斧","refName":"Vaal Hatchet","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/01f0e16494/OneHandAxe6.png","w":2,"h":3} +{"name":"瓦爾之面","refName":"Vaal Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[207,239],"es":[37,43]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDEwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/62018602df/HelmetDexInt10.png","w":2,"h":2} +{"name":"瓦爾寶珠","refName":"Vaal Orb","namespace":"ITEM","tradeTag":"vaal","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lWYWFsIiwic2NhbGUiOjF9XQ/593fe2e22e/CurrencyVaal.png"} +{"name":"瓦爾金字塔","refName":"Vaal Pyramid Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/RM2CNDk.jpg"}} +{"name":"瓦爾細劍","refName":"Vaal Rapier","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjYiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/f9bc0a5aa1/Rapier6.png","h":4} +{"name":"瓦爾法衣","refName":"Vaal Regalia","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[171,197]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e6eb42b23a/BodyStrDexInt1C.png","w":2,"h":3} +{"name":"瓦爾遺鑰","refName":"Vaal Reliquary Key","namespace":"ITEM","tradeTag":"vaal-reliquary-key","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYXVsdE1hcDQiLCJzY2FsZSI6MX1d/7d798c8941/VaultMap4.png"} +{"name":"瓦爾權杖","refName":"Vaal Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/35e149f5cf/scepter6.png","w":2,"h":3} +{"name":"瓦爾偵查報告","refName":"Vaal Scouting Report","namespace":"ITEM","tradeTag":"vaal-scouting-report","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png"} +{"name":"瓦爾魔盾","refName":"Vaal Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[56,64]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/2fcc8b522c/ShieldInt4.png","w":2,"h":2} +{"name":"瓦爾密殿","refName":"Vaal Temple Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhczJNYXBzL05ldy9WYWFsVGVtcGxlQmFzZSIsInciOjEsImgiOjEsInNjYWxlIjoxLCJtbiI6MTQsIm10IjowfV0/129c5f8ca8/VaalTempleBase.png","map":{"screenshot":"https://i.imgur.com/zgJl9NF.jpg"}} +{"name":"瓦爾多的謎盒","refName":"Valdo's Puzzle Box","namespace":"ITEM","tradeTag":"valdos-puzzle-box","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmFsZG9zUHV6emxlQm94Iiwic2NhbGUiOjF9XQ/bed9b1b28b/ValdosPuzzleBox.png"} +{"name":"先鋒腰帶","refName":"Vanguard Belt","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdDciLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/98bc736db6/Belt7.png","w":2} +{"name":"碧銅短劍","refName":"Variscite Blade","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDIiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/606dae9ce9/OneHandSword2.png","h":3} +{"name":"映彩外套","refName":"Varnished Coat","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[387,434],"es":[79,89]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/360c5ce7d4/BodyDexInt2B.png","w":2,"h":3} +{"name":"魔金寶庫","refName":"Vault Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/zdIUUwN.jpg"}} +{"name":"隱匿石","refName":"Veiled Orb","namespace":"ITEM","tradeTag":"veiled-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmVpbGVkQ2hhb3NPcmIiLCJzY2FsZSI6MX1d/fd913b89d0/VeiledChaosOrb.png"} +{"name":"隱匿聖甲蟲","refName":"Veiled Scarab","namespace":"ITEM","tradeTag":"veiled-scarab","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9TdGFja2VkU2NhcmFiIiwic2NhbGUiOjF9XQ/4674c86ff2/StackedScarab.png"} +{"name":"絲絨長靴","refName":"Velour Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[359,413]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/76eb290c9b/BootsDex4.png","w":2,"h":2} +{"name":"絲絨手套","refName":"Velour Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[359,413]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/05a8c03e95/GlovesDex4.png","w":2,"h":2} +{"name":"絲絨手套","refName":"Velvet Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[10,13]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/cb34a7c551/GlovesInt2.png","w":2,"h":2} +{"name":"絲絨便鞋","refName":"Velvet Slippers","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[8,11]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/efece2ca68/BootsInt2.png","w":2,"h":2} +{"name":"復仇契約書","refName":"Vengeful Contract","namespace":"ITEM","craftable":{"uniqueOnly":true,"category":"Heist Contract"},"icon":""} +{"name":"翠綠油瓶","refName":"Verdant Oil","namespace":"ITEM","tradeTag":"verdant-oil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9WZXJkYW50T2lsIiwic2NhbGUiOjF9XQ/efeac217c1/VerdantOil.png"} +{"name":"維羅提尼亞刻紋","refName":"Veritania's Crest","namespace":"ITEM","tradeTag":"veritanias-crest","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9SZWRlZW1lckZyYWdtZW50Iiwic2NhbGUiOjF9XQ/86d22a34cc/RedeemerFragment.png"} +{"name":"朱紅戒指","refName":"Vermillion Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVmVybWlsbGlvblJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b0570b8efc/VermillionRing.png"} +{"name":"多功鑰匙圈","refName":"Versatile Keyring","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVmVyc2F0aWxlS2V5cmluZyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/eda0c08359/VersatileKeyring.png","w":2,"h":2} +{"name":"覺醒之罈","refName":"Vial of Awakening","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbFNsdW1iZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/153f99e185/VialSlumber.png"} +{"name":"因果之罈","refName":"Vial of Consequence","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbENvd2FyZHNDaGFpbnMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/49367d5e04/VialCowardsChains.png"} +{"name":"統御之罈","refName":"Vial of Dominance","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbEFyY2hpdGVjdHNIYW5kIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/dbe46fb20c/VialArchitectsHand.png"} +{"name":"命運之罈","refName":"Vial of Fate","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbFN0b3J5VmFhbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5cc747026e/VialStoryVaal.png"} +{"name":"獻祭之罈","refName":"Vial of Sacrifice","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbFNhY3JpZmljaWFsSGVhcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/7f68150b22/VialSacrificialHeart.png"} +{"name":"召喚之罈","refName":"Vial of Summoning","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbFNwaXJpdERyaW5rZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b4c71ef906/VialSpiritDrinker.png"} +{"name":"亡靈之罈","refName":"Vial of the Ghost","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbFNvdWxDYXRjaGVyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/41cbc9ed1d/VialSoulCatcher.png"} +{"name":"儀式之罈","refName":"Vial of the Ritual","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbERhbmNlT2ZmZXJlZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a21fb783fd/VialDanceOffered.png"} +{"name":"超越之罈","refName":"Vial of Transcendence","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbFRlbXBlcmVkRmxlc2giLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ff6f1f931e/VialTemperedFlesh.png"} +{"name":"自衛契約書","refName":"Vigilante Contract","namespace":"ITEM","craftable":{"uniqueOnly":true,"category":"Heist Contract"},"icon":""} +{"name":"邪惡箭袋","refName":"Vile Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9WaWxlQXJyb3dRdWl2ZXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MSwic2hhcGVyIjp0cnVlfV0/ffa143a8d8/VileArrowQuiver.png","w":2,"h":3} +{"name":"毒牙長杖","refName":"Vile Staff","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY3IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/c1ded974d5/Staff7.png","w":2,"h":4} +{"name":"魅影別墅","refName":"Villa Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/EB0wTDF.jpg"}} +{"name":"藤蔓之冠","refName":"Vine Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[7,10]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/78dd152257/HelmetInt1.png","w":2,"h":2} +{"name":"奼紫油瓶","refName":"Violet Oil","namespace":"ITEM","tradeTag":"violet-oil","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9WaW9sZXRPaWwiLCJzY2FsZSI6MX1d/76c3dc06f8/VioletOil.png"} +{"name":"翠綠珠寶","refName":"Viridian Jewel","namespace":"ITEM","craftable":{"category":"Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL2Jhc2ljZGV4IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9ed22a2b94/basicdex.png"} +{"name":"吞噬遺鑰","refName":"Visceral Reliquary Key","namespace":"ITEM","tradeTag":"visceral-reliquary-key","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FYXRlck9mV29ybGRzRm9pbCIsInNjYWxlIjoxfV0/9b4e8c2e7c/EaterOfWorldsFoil.png"} +{"name":"清視護盔","refName":"Visored Sallet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[64,80],"ev":[64,80]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/12db09a4ce/HelmetStrDex3.png","w":2,"h":2} +{"name":"靈現結晶生靈之力","refName":"Vivid Crystallised Lifeforce","namespace":"ITEM","tradeTag":"vivid-lifeforce","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9WaXZpZExpZmVmb3JjZSIsInNjYWxlIjoxfV0/a355b8a5a2/VividLifeforce.png"} +{"name":"虛影巨斧","refName":"Void Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNyIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/931ad5cc29/TwoHandAxe7.png","w":2,"h":4} +{"name":"虛空獠牙","refName":"Void Fangs","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9IZWlzdENsYXciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/7ebe8140fa/HeistClaw.png","w":2,"h":2} +{"name":"虛影權杖","refName":"Void Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyOCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/6644b94336/scepter8.png","w":2,"h":3} +{"name":"虛誕遺鑰","refName":"Voidborn Reliquary Key","namespace":"ITEM","tradeTag":"voidborn-reliquary-key","icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9Db3NtaWNDb3JlU3VwcG9ydGVyVmF1bHRLZXkiLCJzY2FsZSI6MX1d/1f2d34a36d/CosmicCoreSupporterVaultKey.png"} +{"name":"火山炎域","refName":"Volcano Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/kNQfYSd.jpg"}} +{"name":"魔暴閃光粉","refName":"Voltaxic Flashpowder","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVm9sdGF4aWNGbGFzaHBvd2RlciIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/2df5470ba8/VoltaxicFlashpowder.png","w":2,"h":2} +{"name":"憤怒之哀嚎精髓","refName":"Wailing Essence of Anger","namespace":"ITEM","tradeTag":"wailing-essence-of-anger","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9BbmdlcjQiLCJzY2FsZSI6MX1d/193cf26944/Anger4.png"} +{"name":"煎熬之哀嚎精髓","refName":"Wailing Essence of Anguish","namespace":"ITEM","tradeTag":"wailing-essence-of-anguish","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Bbmd1aXNoNCIsInNjYWxlIjoxfV0/b0116a21e3/Anguish4.png"} +{"name":"輕視之哀嚎精髓","refName":"Wailing Essence of Contempt","namespace":"ITEM","tradeTag":"wailing-essence-of-contempt","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Db250ZW1wdDQiLCJzY2FsZSI6MX1d/8ab6b81ea8/Contempt4.png"} +{"name":"疑惑之哀嚎精髓","refName":"Wailing Essence of Doubt","namespace":"ITEM","tradeTag":"wailing-essence-of-doubt","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Eb3VidDQiLCJzY2FsZSI6MX1d/b9bda2f648/Doubt4.png"} +{"name":"恐懼之哀嚎精髓","refName":"Wailing Essence of Fear","namespace":"ITEM","tradeTag":"wailing-essence-of-fear","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9GZWFyNCIsInNjYWxlIjoxfV0/f5a9ea67a9/Fear4.png"} +{"name":"貪婪之哀嚎精髓","refName":"Wailing Essence of Greed","namespace":"ITEM","tradeTag":"wailing-essence-of-greed","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVlZDQiLCJzY2FsZSI6MX1d/a390d6d853/Greed4.png"} +{"name":"憎恨之哀嚎精髓","refName":"Wailing Essence of Hatred","namespace":"ITEM","tradeTag":"wailing-essence-of-hatred","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9IYXRyZWQ0Iiwic2NhbGUiOjF9XQ/7bc001e2dd/Hatred4.png"} +{"name":"厭惡之哀嚎精髓","refName":"Wailing Essence of Loathing","namespace":"ITEM","tradeTag":"wailing-essence-of-loathing","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Mb2F0aGluZzQiLCJzY2FsZSI6MX1d/77278edd37/Loathing4.png"} +{"name":"肆虐之哀嚎精髓","refName":"Wailing Essence of Rage","namespace":"ITEM","tradeTag":"wailing-essence-of-rage","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9SYWdlNCIsInNjYWxlIjoxfV0/c5fa73b85f/Rage4.png"} +{"name":"哀惜之哀嚎精髓","refName":"Wailing Essence of Sorrow","namespace":"ITEM","tradeTag":"wailing-essence-of-sorrow","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Tb3Jyb3c0Iiwic2NhbGUiOjF9XQ/3264cd0f60/Sorrow4.png"} +{"name":"刻毒之哀嚎精髓","refName":"Wailing Essence of Spite","namespace":"ITEM","tradeTag":"wailing-essence-of-spite","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TcGl0ZTQiLCJzY2FsZSI6MX1d/b0d6219d6b/Spite4.png"} +{"name":"苦難之哀嚎精髓","refName":"Wailing Essence of Suffering","namespace":"ITEM","tradeTag":"wailing-essence-of-suffering","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TdWZmZXJpbmc0Iiwic2NhbGUiOjF9XQ/98885460cb/Suffering4.png"} +{"name":"折磨之哀嚎精髓","refName":"Wailing Essence of Torment","namespace":"ITEM","tradeTag":"wailing-essence-of-torment","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Ub3JtZW50NCIsInNjYWxlIjoxfV0/7f54171175/Torment4.png"} +{"name":"悲痛之哀嚎精髓","refName":"Wailing Essence of Woe","namespace":"ITEM","tradeTag":"wailing-essence-of-woe","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Xb2U0Iiwic2NhbGUiOjF9XQ/7d06629499/Woe4.png"} +{"name":"雷霆之哀嚎精髓","refName":"Wailing Essence of Wrath","namespace":"ITEM","tradeTag":"wailing-essence-of-wrath","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9XcmF0aDQiLCJzY2FsZSI6MX1d/24ec8dd88b/Wrath4.png"} +{"name":"熱情之哀嚎精髓","refName":"Wailing Essence of Zeal","namespace":"ITEM","tradeTag":"wailing-essence-of-zeal","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9aZWFsNCIsInNjYWxlIjoxfV0/a4af1958b7/Zeal4.png"} +{"name":"桃木魔盾","refName":"Walnut Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[32,38]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/99b47eb1fa/ShieldInt2.png","w":2,"h":2} +{"name":"行軍斧","refName":"War Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/9cdefe9de4/OneHandAxe5.png","w":2,"h":3} +{"name":"戰爭輕盾","refName":"War Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[169,194]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5a38d58259/ShieldDex5.png","w":2,"h":2} +{"name":"戰錘","refName":"War Hammer","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U1IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/7a42346f2b/OneHandMace5.png","w":2,"h":3} +{"name":"戰爭之鎧","refName":"War Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[216,248]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/c62bd1159e/BodyStr2B.png","w":2,"h":3} +{"name":"戰爭符文","refName":"War Rune","namespace":"ITEM","tradeTag":"war-rune","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2V0dGxlcnMvVmlsbGFnZVJ1bmU0Iiwic2NhbGUiOjF9XQ/81bdd89a32/VillageRune4.png"} +{"name":"征戰之劍","refName":"War Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/38536bcafb/OneHandSword5.png","w":2,"h":3} +{"name":"術士長靴","refName":"Warlock Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[72,83]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5589419509/BootsInt4.png","w":2,"h":2} +{"name":"術士手套","refName":"Warlock Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[72,83]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/484e9bd879/GlovesInt4.png","w":2,"h":2} +{"name":"督軍","refName":"Warlord","namespace":"ITEM","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL09ha0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/9a9c4d9ada/OakCorpse.png","w":3,"h":2} +{"name":"總督軍的崇高石","refName":"Warlord's Exalted Orb","namespace":"ITEM","tradeTag":"warlords-exalted-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5mbHVlbmNlIEV4YWx0cy9Db25xdWVyb3JPcmIiLCJzY2FsZSI6MX1d/57f0d85951/ConquerorOrb.png"} +{"name":"死寂泥溝","refName":"Waste Pool Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/fEvrcih.jpg"}} +{"name":"荒地","refName":"Wasteland Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/ywddRfu.jpg"}} +{"name":"危機水道","refName":"Waterways Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/qAEf4WS.jpg"}} +{"name":"蠟封束衣","refName":"Waxed Garb","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[178,205],"es":[38,44]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/6744d2d486/BodyDexInt2C.png","w":2,"h":3} +{"name":"憤怒之啼泣精髓","refName":"Weeping Essence of Anger","namespace":"ITEM","tradeTag":"weeping-essence-of-anger","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9BbmdlcjMiLCJzY2FsZSI6MX1d/d873f23914/Anger3.png"} +{"name":"輕視之啼泣精髓","refName":"Weeping Essence of Contempt","namespace":"ITEM","tradeTag":"weeping-essence-of-contempt","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Db250ZW1wdDMiLCJzY2FsZSI6MX1d/843175cf8e/Contempt3.png"} +{"name":"疑惑之啼泣精髓","refName":"Weeping Essence of Doubt","namespace":"ITEM","tradeTag":"weeping-essence-of-doubt","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Eb3VidDMiLCJzY2FsZSI6MX1d/f4e471aadd/Doubt3.png"} +{"name":"恐懼之啼泣精髓","refName":"Weeping Essence of Fear","namespace":"ITEM","tradeTag":"weeping-essence-of-fear","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9GZWFyMyIsInNjYWxlIjoxfV0/9d1b4909f4/Fear3.png"} +{"name":"貪婪之啼泣精髓","refName":"Weeping Essence of Greed","namespace":"ITEM","tradeTag":"weeping-essence-of-greed","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVlZDMiLCJzY2FsZSI6MX1d/4b4549da17/Greed3.png"} +{"name":"憎恨之啼泣精髓","refName":"Weeping Essence of Hatred","namespace":"ITEM","tradeTag":"weeping-essence-of-hatred","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9IYXRyZWQzIiwic2NhbGUiOjF9XQ/27bb7480f9/Hatred3.png"} +{"name":"肆虐之啼泣精髓","refName":"Weeping Essence of Rage","namespace":"ITEM","tradeTag":"weeping-essence-of-rage","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9SYWdlMyIsInNjYWxlIjoxfV0/7e03c21483/Rage3.png"} +{"name":"哀惜之啼泣精髓","refName":"Weeping Essence of Sorrow","namespace":"ITEM","tradeTag":"weeping-essence-of-sorrow","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Tb3Jyb3czIiwic2NhbGUiOjF9XQ/93f2e30be4/Sorrow3.png"} +{"name":"苦難之啼泣精髓","refName":"Weeping Essence of Suffering","namespace":"ITEM","tradeTag":"weeping-essence-of-suffering","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TdWZmZXJpbmczIiwic2NhbGUiOjF9XQ/2f8350590a/Suffering3.png"} +{"name":"折磨之啼泣精髓","refName":"Weeping Essence of Torment","namespace":"ITEM","tradeTag":"weeping-essence-of-torment","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Ub3JtZW50MyIsInNjYWxlIjoxfV0/437e50ebd4/Torment3.png"} +{"name":"悲痛之啼泣精髓","refName":"Weeping Essence of Woe","namespace":"ITEM","tradeTag":"weeping-essence-of-woe","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Xb2UzIiwic2NhbGUiOjF9XQ/982d6149c8/Woe3.png"} +{"name":"雷霆之啼泣精髓","refName":"Weeping Essence of Wrath","namespace":"ITEM","tradeTag":"weeping-essence-of-wrath","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9XcmF0aDMiLCJzY2FsZSI6MX1d/6d2ea95b65/Wrath3.png"} +{"name":"亡爪魔符","refName":"Wereclaw Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9EaXJlQ2xhd1RhbGlzbWFuIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5c57893c7c/DireClawTalisman.png"} +{"name":"鯨骨細刃","refName":"Whalebone Rapier","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjIiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/481efcada5/Rapier2.png","h":4} +{"name":"毒牙海港","refName":"Wharf Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/JirgJcM.jpg"}} +{"name":"細織披風","refName":"Whisper-woven Cloak","namespace":"ITEM","craftable":{"category":"Heist Cloak"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvV2hpc3BlcldvdmVuQ2xvYWsiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5d44c09a37/WhisperWovenCloak.png","w":2,"h":2} +{"name":"低語之譫妄玉","refName":"Whispering Delirium Orb","namespace":"ITEM","tradeTag":"whispering-delirium-orb","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJFc3NlbmNlIiwic2NhbGUiOjF9XQ/e9f784c467/DeliriumOrbEssence.png"} +{"name":"輕視之低語精髓","refName":"Whispering Essence of Contempt","namespace":"ITEM","tradeTag":"whispering-essence-of-contempt","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Db250ZW1wdDEiLCJzY2FsZSI6MX1d/20e306f652/Contempt1.png"} +{"name":"貪婪之低語精髓","refName":"Whispering Essence of Greed","namespace":"ITEM","tradeTag":"whispering-essence-of-greed","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVlZDEiLCJzY2FsZSI6MX1d/e2fe787fba/Greed1.png"} +{"name":"憎恨之低語精髓","refName":"Whispering Essence of Hatred","namespace":"ITEM","tradeTag":"whispering-essence-of-hatred","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9IYXRyZWQxIiwic2NhbGUiOjF9XQ/b22aed8024/Hatred1.png"} +{"name":"悲痛之低語精髓","refName":"Whispering Essence of Woe","namespace":"ITEM","tradeTag":"whispering-essence-of-woe","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Xb2UxIiwic2NhbGUiOjF9XQ/bccf321620/Woe1.png"} +{"name":"低語的培育器","refName":"Whispering Incubator","namespace":"ITEM","tradeTag":"whispering-incubator","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRXNzZW5jZSIsInNjYWxlIjoxfV0/839bf6cef9/IncubationEssence.png"} +{"name":"毒蛛絲之袍","refName":"Widowsilk Robe","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[157,181]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8b200fbbb5/BodyInt2C.png","w":2,"h":3} +{"name":"野性結晶生靈之力","refName":"Wild Crystallised Lifeforce","namespace":"ITEM","tradeTag":"wild-lifeforce","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9XaWxkTGlmZWZvcmNlIiwic2NhbGUiOjF9XQ/e3d0b372b0/WildLifeforce.png"} +{"name":"野性皮甲","refName":"Wild Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[255,306]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4M0IiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/db900972c7/BodyDex3B.png","w":2,"h":3} +{"name":"風帳短靴","refName":"Windbreak Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[164,189]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SaXR1YWxEZXhCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7172feff67/RitualDexBoots.png","w":2,"h":2} +{"name":"羽翅鞋底","refName":"Winged Sole","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvV2luZ2VkU29sZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/6b844e2bd0/WingedSole.png","w":2,"h":2} +{"name":"凜冬之冠","refName":"Winter Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[122,140],"es":[25,29]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludFIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/9da7af13c1/HelmetDexIntR.png","w":2,"h":2} +{"name":"狼首皮盔","refName":"Wolf Pelt","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[150,172]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/549bc86dd9/HelmetDex4.png","w":2,"h":2} +{"name":"堅木長杖","refName":"Woodful Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmYyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/69ff746d86/Staff2.png","w":2,"h":4} +{"name":"柴斧","refName":"Woodsplitter","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlMyIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/7d35a55caa/TwoHandAxe3.png","w":2,"h":4} +{"name":"羊毛手套","refName":"Wool Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[5,7]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50MSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f279ba86df/GlovesInt1.png","w":2,"h":2} +{"name":"羊毛之鞋","refName":"Wool Shoes","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[5,7]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/68affe41bc/BootsInt1.png","w":2,"h":2} +{"name":"凶靈之斧","refName":"Wraith Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlOCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/1c9ff58159/OneHandAxe8.png","w":2,"h":3} +{"name":"凶靈巨劍","refName":"Wraith Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/cba6615b1a/TwoHandSword7.png","w":2,"h":4} +{"name":"裹趾涼鞋","refName":"Wrapped Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[12,17],"es":[4,5]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5106be74b2/BootsDexInt1.png","w":2,"h":2} +{"name":"裹趾護手","refName":"Wrapped Mitts","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[11,15],"es":[3,5]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50MSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/983aa9c9fc/GlovesDexInt1.png","w":2,"h":2} +{"name":"斷腕之刃","refName":"Wrist Chopper","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/451ba2cadb/OneHandAxe4.png","w":2,"h":3} +{"name":"纏繞之邀","refName":"Writhing Invitation","namespace":"ITEM","craftable":{"category":"Invitation"},"tradeTag":"writhing-invitation","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVlc3RJdGVtcy9UYW5nbGVkT3JiUXVlc3QwIiwic2NhbGUiOjF9XQ/7a2f21c33e/TangledOrbQuest0.png"} +{"name":"狂癲魔符","refName":"Writhing Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9OZXdUYWxpc21hbjMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e015e2d7cc/NewTalisman3.png"} +{"name":"古龍之錘","refName":"Wyrm Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U5IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f2a493ef7a/OneHandMace9.png","w":2,"h":3} +{"name":"龍骨細劍","refName":"Wyrmbone Rapier","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjIiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/481efcada5/Rapier2.png","h":4} +{"name":"地蝮鱗長靴","refName":"Wyrmscale Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[92,103],"ev":[92,103]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3418ad050e/BootsStrDex3.png","w":2,"h":2} +{"name":"龍鱗戰甲","refName":"Wyrmscale Doublet","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[210,236],"ev":[210,236]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/d9b2da2bce/BodyStrDex1B.png","w":2,"h":3} +{"name":"蝮鱗手套","refName":"Wyrmscale Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[88,104],"ev":[88,104]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyRGV4MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/01471b423e/GlovesStrDex3.png","w":2,"h":2} +{"name":"飛龍鱗長靴","refName":"Wyvernscale Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[205,236],"ev":[205,236]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3418ad050e/BootsStrDex3.png","w":2,"h":2} +{"name":"飛龍鱗護手","refName":"Wyvernscale Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[205,205],"ev":[205,205]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyRGV4MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/01471b423e/GlovesStrDex3.png","w":2,"h":2} +{"name":"索伏裂痕石","refName":"Xoph's Breachstone","namespace":"ITEM","tradeTag":"xophs-breachstone","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaEZyYWdtZW50c0ZpcmUiLCJzY2FsZSI6MX1d/2fc9d593d6/BreachFragmentsFire.png"} +{"name":"索伏無暇裂痕石","refName":"Xoph's Flawless Breachstone","namespace":"ITEM","tradeTag":"xophs-flawless-breachstone","icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL1hvcGhzRmxhd2xlc3NCcmVhY2hzdG9uZSIsInNjYWxlIjoxfV0/a9d5100ceb/XophsFlawlessBreachstone.png"} +{"name":"紫衫魔盾","refName":"Yew Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[11,14]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/99b47eb1fa/ShieldInt2.png","w":2,"h":2} +{"name":"狂熱者長靴","refName":"Zealot Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[73,87],"es":[15,18]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/742e5a15d7/BootsStrInt2.png","w":2,"h":2} +{"name":"狂熱者手套","refName":"Zealot Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[78,92],"es":[16,19]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RySW50MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f09ae395f5/GlovesStrInt2.png","w":2,"h":2} +{"name":"熱戰之盔","refName":"Zealot Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[119,137],"es":[25,29]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/cff363f9cb/HelmetStrInt6.png","w":2,"h":2} +{"name":"高地神塔地圖","refName":"Ziggurat Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{}} +{"name":"星辰皮甲","refName":"Zodiac Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[854,982]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4M0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e30de2c7a6/BodyDex3C.png","w":2,"h":3} +{"name":"艾貝拉斯之蹄","refName":"Abberath's Hooves","namespace":"UNIQUE","unique":{"base":"Goathide Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9BYmJlcmF0aHNIb292ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/445b84d83c/AbberathsHooves.png"} +{"name":"艾貝拉斯之角","refName":"Abberath's Horn","namespace":"UNIQUE","unique":{"base":"Goat's Horn"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XeWNodmVyZ2UiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/ea4dd8a801/Wychverge.png"} +{"name":"悖逆審訊","refName":"Abhorrent Interrogation","namespace":"UNIQUE","unique":{"base":"Ambush Mitts"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRGVjYXlpbmdHcmlwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/fa04f8c987/DecayingGrip.png"} +{"name":"深淵之喚","refName":"Abyssus","namespace":"UNIQUE","unique":{"base":"Ezomyte Burgonet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0FieXNzdXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/a12f5424c8/Abyssus.png"} +{"name":"輪迴的夢魘","refName":"Acton's Nightmare","namespace":"UNIQUE","unique":{"base":"Overgrown Shrine Map"},"map":{"screenshot":"https://i.imgur.com/WNGS7TW.jpg"},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9tdXNpY2JveCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/765ebfd00f/musicbox.png"} +{"name":"談判","refName":"Actum","namespace":"UNIQUE","unique":{"base":"Butcher Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9IYW5sb25zUmF6b3IiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/a81f0f6259/HanlonsRazor.png"} +{"name":"將軍的傲慢","refName":"Admiral's Arrogance","namespace":"UNIQUE","unique":{"base":"Antique Gauntlets"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvSG9ybmVkT25lR2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/0d26e3c415/HornedOneGloves.png"} +{"name":"超越壁壘","refName":"Advancing Fortress","namespace":"UNIQUE","unique":{"base":"Gut Ripper"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3c2hpZWxkMyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/a04190ca2b/Clawshield3.png"} +{"name":"幻芒聖盾","refName":"Aegis Aurora","namespace":"UNIQUE","unique":{"base":"Champion Kite Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludFVuaXF1ZTd1bmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/ae1ec0f5d1/ShieldStrIntUnique7unique.png"} +{"name":"東方雷霆聖杖","refName":"Agnerod East","namespace":"UNIQUE","unique":{"base":"Imperial Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY2dW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/8b60f5a033/Staff6unique.png"} +{"name":"北方雷霆聖杖","refName":"Agnerod North","namespace":"UNIQUE","unique":{"base":"Imperial Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY2dW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/8b60f5a033/Staff6unique.png"} +{"name":"南方雷霆聖杖","refName":"Agnerod South","namespace":"UNIQUE","unique":{"base":"Imperial Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY2dW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/8b60f5a033/Staff6unique.png"} +{"name":"西方雷霆聖杖","refName":"Agnerod West","namespace":"UNIQUE","unique":{"base":"Imperial Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY2dW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/8b60f5a033/Staff6unique.png"} +{"name":"阿卡莉的草原","refName":"Ahkeli's Meadow","namespace":"UNIQUE","unique":{"base":"Ruby Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmVkQ29tcG9uZW50MiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0c950dc560/RedComponent2.png"} +{"name":"阿卡莉的山巒","refName":"Ahkeli's Mountain","namespace":"UNIQUE","unique":{"base":"Ruby Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmVkQ29tcG9uZW50IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4c8c42f98b/RedComponent.png"} +{"name":"阿卡莉的峽谷","refName":"Ahkeli's Valley","namespace":"UNIQUE","unique":{"base":"Ruby Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmVkQ29tcG9uZW50MyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fe1c0d1513/RedComponent3.png"} +{"name":"漢恩的蔑視","refName":"Ahn's Contempt","namespace":"UNIQUE","unique":{"base":"Praetor Crown"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0FobnNDb250ZW1wdCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/a946d28e48/AhnsContempt.png"} +{"name":"漢恩的遺產","refName":"Ahn's Heritage","namespace":"UNIQUE","unique":{"base":"Colossal Tower Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0FobnNIZXJpdGFnZSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/5a4ca9d54a/AhnsHeritage.png"} +{"name":"漢恩的期許","refName":"Ahn's Might","namespace":"UNIQUE","unique":{"base":"Midnight Blade"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0FobnNNaWdodCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/ee9d3b45a4/AhnsMight.png"} +{"name":"阿呼阿娜的咬痕","refName":"Ahuana's Bite","namespace":"UNIQUE","unique":{"base":"Sharktooth Arrow Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9BaHVhbmFRdWl2ZXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/4cc0ef813d/AhuanaQuiver.png"} +{"name":"艾古亞的凝視","refName":"Akoya's Gaze","namespace":"UNIQUE","unique":{"base":"Regicide Mask"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Frb3lhTWFzayIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/bee9827a02/AkoyaMask.png"} +{"name":"鬣犬之牙","refName":"Al Dhih","namespace":"UNIQUE","unique":{"base":"Timeworn Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9BbGRoaWgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5af625fdd1/Aldhih.png"} +{"name":"阿爾貝隆的征途","refName":"Alberon's Warpath","namespace":"UNIQUE","unique":{"base":"Soldier Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9BbGJlcm9uc3dhcnBhdGgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/be7b089ef3/Alberonswarpath.png"} +{"name":"阿爾戈.莫堤斯","refName":"Algor Mortis","namespace":"UNIQUE","unique":{"base":"Carnal Mitts"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvVGFuZ21henVhcm1vdXJnbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/fff14c8039/Tangmazuarmourgloves.png"} +{"name":"相生相剋","refName":"Allelopathy","namespace":"UNIQUE","unique":{"base":"Satin Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRW1iYWxtZXJzR2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/62148488f8/EmbalmersGloves.png"} +{"name":"魅惑","refName":"Allure","namespace":"UNIQUE","unique":{"base":"Vaal Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9BbGx1cmUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/ff5311676c/Allure.png"} +{"name":"極地之嗥","refName":"Alpha's Howl","namespace":"UNIQUE","unique":{"base":"Sinner Tricorne"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1dvbGZoZWFkIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/2acc10e593/Wolfhead.png"} +{"name":"遙遠記憶:編造","refName":"Altered Distant Memory","namespace":"UNIQUE","unique":{"base":"Synthesised Map"},"map":{},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TeW50aGVzaXNDb2xkR3VhcmRpYW5NYXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5800fc91db/SynthesisColdGuardianMap.png"} +{"name":"阿姆那姆的邪眼","refName":"Amanamu's Gaze","namespace":"UNIQUE","unique":{"base":"Ghastly Eye Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0doYXN0bHlFeWVVbmlxdWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/301d98e6cb/GhastlyEyeUnique.png"} +{"name":"野心","refName":"Ambition","namespace":"UNIQUE","unique":{"base":"Vaal Aspect"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UcmlhbG1hc3Rlck1pZGRsZUZyYWdtZW50IiwidyI6MSwiaCI6Miwic2NhbGUiOjF9XQ/ce938362fd/TrialmasterMiddleFragment.png"} +{"name":"安姆布的戰甲","refName":"Ambu's Charge","namespace":"UNIQUE","unique":{"base":"Crusader Chainmail"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9TdHJJbnQzQVVuaXF1ZTIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9928614b24/StrInt3AUnique2.png"} +{"name":"咒詛","refName":"Anathema","namespace":"UNIQUE","unique":{"base":"Moonstone Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVW5pcXVlQ3Vyc2VSaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/db99b5c4d2/UniqueCurseRing.png"} +{"name":"先祖預視","refName":"Ancestral Vision","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1ByaXN0aW5lQ29uZGl0aW9uaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5ad58d3a2e/PristineConditioning.png"} +{"name":"遠古骷髏","refName":"Ancient Skull","namespace":"UNIQUE","unique":{"base":"Bone Helmet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRWZmZWN0cy9IYXRzL0NodWh1dGx1c1NrdWxsIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/65537c5ac3/ChuhutlusSkull.png"} +{"name":"貪慾之記","refName":"Andvarius","namespace":"UNIQUE","unique":{"base":"Gold Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzRVbmlxdWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/eea4645cf2/Ring4Unique.png"} +{"name":"殲滅的方法","refName":"Annihilation's Approach","namespace":"UNIQUE","unique":{"base":"Dragonscale Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9VYmVyU2VhcmluZ0V4YXJjaEJvb3QiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/705e9f657f/UberSearingExarchBoot.png"} +{"name":"艾普之怒","refName":"Apep's Rage","namespace":"UNIQUE","unique":{"base":"Omen Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9BcGVwc1JhZ2UiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/074c66dadc/ApepsRage.png"} +{"name":"艾普之眠","refName":"Apep's Slumber","namespace":"UNIQUE","unique":{"base":"Vaal Spirit Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0FwZXBzU2x1bWJlciIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/334298da3d/ApepsSlumber.png"} +{"name":"艾普霸權","refName":"Apep's Supremacy","namespace":"UNIQUE","unique":{"base":"Vaal Spirit Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0FwZXBzU3VwcmVtYWN5IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/e97426b026/ApepsSupremacy.png"} +{"name":"巔峰模式","refName":"Apex Mode","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0ludGVuc2l0eUpld2VsMSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/2b116c20d2/IntensityJewel1.png"} +{"name":"艾爾卡莉之牙","refName":"Arakaali's Fang","namespace":"UNIQUE","unique":{"base":"Fiend Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0ZhbmdVbmlxdWUiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/de6e51652e/FangUnique.png"} +{"name":"隱靈之符","refName":"Araku Tiki","namespace":"UNIQUE","unique":{"base":"Coral Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQyVW5pcXVlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6468b95d6b/Amulet2Unique.png"} +{"name":"阿布里斯","refName":"Arborix","namespace":"UNIQUE","unique":{"base":"Assassin Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL1ZlcmRhbnRHdWFyZGlhbkJvdyIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/9008310cc7/VerdantGuardianBow.png"} +{"name":"構築之手","refName":"Architect's Hand","namespace":"UNIQUE","unique":{"base":"Ambush Mitts"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQXJjaGl0ZWN0c0hhbmQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/8f303b6f98/ArchitectsHand.png"} +{"name":"昂恩的煩惱","refName":"Arn's Anguish","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQWx0Q2hhcmdlU3RyIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/c07eed602e/AltChargeStr.png"} +{"name":"血軀昇華","refName":"Ascent From Flesh","namespace":"UNIQUE","unique":{"base":"Chain Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvVHVybmNvYXRzZm9ydHVuZSIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/3adba0ad35/Turncoatsfortune.png"} +{"name":"安賽娜絲的安撫之語","refName":"Asenath's Gentle Touch","namespace":"UNIQUE","unique":{"base":"Silk Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQXNlbmF0aHNHZW50bGVUb3VjaCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ea6e822bbe/AsenathsGentleTouch.png"} +{"name":"安賽娜絲的迅敏之冠","refName":"Asenath's Mark","namespace":"UNIQUE","unique":{"base":"Iron Circlet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0h5cnJpc01hcmsiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4e0f1cc6a8/HyrrisMark.png"} +{"name":"灰燼行者","refName":"Ashcaller","namespace":"UNIQUE","unique":{"base":"Carved Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9Bc2h3YWtlciIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/a36e60acf6/Ashwaker.png"} +{"name":"星塵","refName":"Ashes of the Stars","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9NYXN0ZXJPZkdlbXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f6497cbdfe/MasterOfGems.png"} +{"name":"拂燼","refName":"Ashrend","namespace":"UNIQUE","unique":{"base":"Buckskin Tunic"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Bc2hyZW5kIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/9755e9fe99/Ashrend.png"} +{"name":"冰靈之吼","refName":"Asphyxia's Wrath","namespace":"UNIQUE","unique":{"base":"Feathered Arrow Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9Bc3BoeXhpYXNXcmF0aCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/e33bd46903/AsphyxiasWrath.png"} +{"name":"刺殺","refName":"Assailum","namespace":"UNIQUE","unique":{"base":"Sinner Tricorne"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RhbmdtYXp1YXJtb3VyaGVsbWV0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/6e327593b9/Tangmazuarmourhelmet.png"} +{"name":"星空之影","refName":"Astral Projector","namespace":"UNIQUE","unique":{"base":"Topaz Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQXN0cmFsUHJvamVjdG9yIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/92eca463f2/AstralProjector.png"} +{"name":"均衡之符","refName":"Astramentis","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQzNiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/95da0d04a4/Amulet36.png"} +{"name":"阿茲里的捷思","refName":"Atziri's Acuity","namespace":"UNIQUE","unique":{"base":"Vaal Gauntlets"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQXR6aXJpc0FjdWl0eSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/2c0f04ae47/AtzirisAcuity.png"} +{"name":"阿茲里的刑刃","refName":"Atziri's Disfavour","namespace":"UNIQUE","unique":{"base":"Vaal Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9BdHppcmlzRGlzZmF2b3VyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/1ffab716f8/AtzirisDisfavour.png"} +{"name":"阿茲里聖徽","refName":"Atziri's Foible","namespace":"UNIQUE","unique":{"base":"Paua Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9RdWlkIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/00c2b3a588/Quid.png"} +{"name":"阿茲里的諾言","refName":"Atziri's Promise","namespace":"UNIQUE","unique":{"base":"Amethyst Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvQXR6aXJpc1Byb21pc2UiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/8a5f4f13b4/AtzirisPromise.png"} +{"name":"阿茲里的映照","refName":"Atziri's Reflection","namespace":"UNIQUE","unique":{"base":"Golden Buckler"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDVVbmlxdWUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/78fb81c375/ShieldDex5Unique.png"} +{"name":"阿茲里之權","refName":"Atziri's Reign","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JlZENvcnJ1cHQxIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b14eb2eeb7/RedCorrupt1.png"} +{"name":"阿茲里的統御","refName":"Atziri's Rule","namespace":"UNIQUE","unique":{"base":"Judgement Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvUG9ydGVudE9mQUZhbHNlR29kIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/a3949ac141/PortentOfAFalseGod.png"} +{"name":"阿茲里的威權","refName":"Atziri's Splendour","namespace":"UNIQUE","unique":{"base":"Sacrificial Garb"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9BdHppcmlzU3BsZW5kb3VyIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/24c910e168/AtzirisSplendour.png"} +{"name":"阿茲里的金履","refName":"Atziri's Step","namespace":"UNIQUE","unique":{"base":"Slink Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9BdHppcmlzU3RlcCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ec85575514/AtzirisStep.png"} +{"name":"遙遠記憶:增幅","refName":"Augmented Distant Memory","namespace":"UNIQUE","unique":{"base":"Synthesised Map"},"map":{},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TeW50aGVzaXNGaXJlR3VhcmRpYW5NYXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/924cb164d0/SynthesisFireGuardianMap.png"} +{"name":"相星占卜","refName":"Augyre","namespace":"UNIQUE","unique":{"base":"Void Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9FbGRlclNjZXB0cmUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/325c7b1591/ElderSceptre.png"} +{"name":"奧庫納之意","refName":"Aukuna's Will","namespace":"UNIQUE","unique":{"base":"Clasped Mitts"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQXVrdW5hc1dpbGwiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/b3a94fe874/AukunasWill.png"} +{"name":"奧爾的崛起","refName":"Aul's Uprising","namespace":"UNIQUE","unique":{"base":"Onyx Amulet","fixedStats":["Grants Level # Envy Skill","Nearby Enemies grant #% increased Flask Charges","Hits against Nearby Enemies have #% increased Critical Strike Chance","Nearby Enemies have #% reduced Stun and Block Recovery"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BaG4gQXJ0aWZhY3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5234506d57/Ahn%20Artifact.png"} +{"name":"富貴之運","refName":"Aurseize","namespace":"UNIQUE","unique":{"base":"Steelscale Gauntlets"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQXVyc2VpemUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4c0d010425/Aurseize.png"} +{"name":"靈護","refName":"Aurumvorax","namespace":"UNIQUE","unique":{"base":"Basket Rapier"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL0F1cnVtdm9yYXgiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/64b63c7413/Aurumvorax.png"} +{"name":"奧術之符","refName":"Auxium","namespace":"UNIQUE","unique":{"base":"Crystal Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQXV4aXVtIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/acf784e82e/Auxium.png"} +{"name":"歷史公理","refName":"Axiom Perpetuum","namespace":"UNIQUE","unique":{"base":"Bronze Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9BeGlvbVBlcnBldHV1bSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/da686b937b/AxiomPerpetuum.png"} +{"name":"激情之章","refName":"Badge of the Brotherhood","namespace":"UNIQUE","unique":{"base":"Turquoise Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Bc3Nhc3NpblVuaXF1ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/3616219d7d/AssassinUnique.png"} +{"name":"野火","refName":"Balefire","namespace":"UNIQUE","unique":{"base":"Opal Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9CYWVsZmlyZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/082c0ee423/Baelfire.png"} +{"name":"凝息","refName":"Bated Breath","namespace":"UNIQUE","unique":{"base":"Chain Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmF0ZWRCcmVhdGgiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/0a8cc4529f/BatedBreath.png"} +{"name":"瘋癲之引","refName":"Beacon of Madness","namespace":"UNIQUE","unique":{"base":"Two-Toned Boots","fixedStats":["Grants Level # Embrace Madness Skill","#% increased Movement Speed"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9UYW5nbWF6dWFybW91cmJvb3RzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/664521517c/Tangmazuarmourboots.png"} +{"name":"熊之束","refName":"Bear's Girdle","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVhcnNDbHV0Y2giLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/31930452e4/BearsClutch.png"} +{"name":"美麗","refName":"Beauty","namespace":"UNIQUE","unique":{"base":"Vaal Aspect"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UcmlhbG1hc3RlckxlZnRGcmFnbWVudCIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/ec9e7257ef/TrialmasterLeftFragment.png"} +{"name":"獸腹","refName":"Belly of the Beast","namespace":"UNIQUE","unique":{"base":"Full Wyrmscale"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9iZWxseW9mdGhlYmVhc3QiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/d38723f8b9/bellyofthebeast.png"} +{"name":"狡徒束腰","refName":"Belt of the Deceiver","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdE9mVGhlRGVjaWV2ZXIiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/914fb37e8c/BeltOfTheDeciever.png"} +{"name":"刀鋒禁材","refName":"Beltimber Blade","namespace":"UNIQUE","unique":{"base":"Eternal Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL1ZlcmRhbnRHdWFyZGlhblN3b3JkMiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/3f09536952/VerdantGuardianSword2.png"} +{"name":"貝雷克的冰與雷之曲","refName":"Berek's Grip","namespace":"UNIQUE","unique":{"base":"Two-Stone Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmVyZWtzR3JpcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7abb06d839/BereksGrip.png"} +{"name":"貝雷克的冰與火之歌","refName":"Berek's Pass","namespace":"UNIQUE","unique":{"base":"Two-Stone Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmVyZWtzUGFzcyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/efb7743eeb/BereksPass.png"} +{"name":"貝雷克的火與雷之樂","refName":"Berek's Respite","namespace":"UNIQUE","unique":{"base":"Two-Stone Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmVyZWtzUmVzcGl0ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/82b228798a/BereksRespite.png"} +{"name":"比諾的廚刀","refName":"Bino's Kitchen Knife","namespace":"UNIQUE","unique":{"base":"Slaughter Knife"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0Jpbm9zS2l0Y2hlbktuaWZlIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/499d39d615/BinosKitchenKnife.png"} +{"name":"畢斯寇的項圈","refName":"Bisco's Collar","namespace":"UNIQUE","unique":{"base":"Gold Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9CaXNjb3NDb2xsYXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8aa730c40e/BiscosCollar.png"} +{"name":"畢斯寇繫帶","refName":"Bisco's Leash","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmlzY29zTGVhc2giLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/87b17c98e7/BiscosLeash.png"} +{"name":"苦綑畸點","refName":"Bitterbind Point","namespace":"UNIQUE","unique":{"base":"Titanium Spirit Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL01hc3RlcnNGb2N1cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/1b2e5df5a6/MastersFocus.png"} +{"name":"苦夢","refName":"Bitterdream","namespace":"UNIQUE","unique":{"base":"Shadow Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyOHVuaXF1ZTIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/085f7726de/scepter8unique2.png"} +{"name":"黑陽之冠","refName":"Black Sun Crest","namespace":"UNIQUE","unique":{"base":"Lacquered Helmet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0JsYWNrc3VuY3Jlc3QiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/d5c3617a52/Blacksuncrest.png"} +{"name":"漆黑極頂","refName":"Black Zenith","namespace":"UNIQUE","unique":{"base":"Fingerless Silk Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRWJiQW5kRmxvdyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/3e5e1a62ea/EbbAndFlow.png"} +{"name":"黯炎","refName":"Blackflame","namespace":"UNIQUE","unique":{"base":"Amethyst Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmxhY2tGbGFtZUZpcmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d8cb90fe20/BlackFlameFire.png"} +{"name":"黑炎之芒","refName":"Blackgleam","namespace":"UNIQUE","unique":{"base":"Blazing Arrow Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJVbmlxdWUxIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/797ce777ed/QuiverUnique1.png"} +{"name":"幽暗之語","refName":"Blackheart","namespace":"UNIQUE","unique":{"base":"Iron Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzFVbmlxdWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/40666e2827/Ring1Unique.png"} +{"name":"褻瀆者之握","refName":"Blasphemer's Grasp","namespace":"UNIQUE","unique":{"base":"Assassin's Mitts"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRWxkZXJHbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MSwiZWxkZXIiOnRydWV9XQ/b07fd0eac2/ElderGloves.png"} +{"name":"枯井","refName":"Blightwell","namespace":"UNIQUE","unique":{"base":"Clutching Talisman"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWludGVkU3ByaW5ncyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a95bad91d3/TaintedSprings.png"} +{"name":"墮落之血","refName":"Blood of Corruption","namespace":"UNIQUE","unique":{"base":"Amber Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9IZWFydE9mQ29ycnVwdGlvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ded3d6446f/HeartOfCorruption.png"} +{"name":"卡魯之血","refName":"Blood of the Karui","namespace":"UNIQUE","unique":{"base":"Sanctified Life Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvQmxvb2RPZlRoZUthcnVpIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/f70bd57e9f/BloodOfTheKarui.png"} +{"name":"血償","refName":"Blood Price","namespace":"UNIQUE","unique":{"base":"Reaver Helmet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Jsb29kUHJpY2VIZWxtVW5pcXVlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/ae8ee271e3/BloodPriceHelmUnique.png"} +{"name":"血肉結合","refName":"Bloodbond","namespace":"UNIQUE","unique":{"base":"Bone Armour"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Db21tdW5hbEZsZXNoIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/ad6a787fcf/CommunalFlesh.png"} +{"name":"鮮血支配","refName":"Bloodgrip","namespace":"UNIQUE","unique":{"base":"Marble Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9CbG9vZEFtdWxldCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/546826e52b/BloodAmulet.png"} +{"name":"缺血症","refName":"Bloodnotch","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0lnbm9yZVBhaW4iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/191f378925/IgnorePain.png"} +{"name":"血謔","refName":"Bloodplay","namespace":"UNIQUE","unique":{"base":"Stiletto"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0Jsb29kUGxheSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/3c8258f393/BloodPlay.png"} +{"name":"嗜血之爪","refName":"Bloodseeker","namespace":"UNIQUE","unique":{"base":"Hellion's Paw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9CbG9vZHNlZWtlciIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0b888c4189/Bloodseeker.png"} +{"name":"血染勳章","refName":"Bloodsoaked Medallion","namespace":"UNIQUE","unique":{"base":"Amber Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9CbG9vZFNvYWtlZF9NZWRhbGxpb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/2160ca2460/BloodSoaked_Medallion.png"} +{"name":"失誤之孔","refName":"Blunderbore","namespace":"UNIQUE","unique":{"base":"Astral Plate"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9CbHVuZGVyYm9yZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/4b34ebf3fe/Blunderbore.png"} +{"name":"烏勒爾之骨","refName":"Bones of Ullr","namespace":"UNIQUE","unique":{"base":"Silk Slippers"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9ib290dW5pcXVlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/1dfabe3358/bootunique.png"} +{"name":"瓶中信仰","refName":"Bottled Faith","namespace":"UNIQUE","unique":{"base":"Sulphur Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvQm90dGxlZFB1cml0eSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/b2ef237bf3/BottledPurity.png"} +{"name":"命運繫帶","refName":"Bound Fate","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSGluZWtvcmFCZWx0IiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/0ffa60853d/HinekoraBelt.png"} +{"name":"腦亂者","refName":"Brain Rattler","namespace":"UNIQUE","unique":{"base":"Meatgrinder"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvQnJhaW5TY3JhbWJsZXIiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/0749c07fa6/BrainScrambler.png"} +{"name":"刺棘寶甲","refName":"Bramblejack","namespace":"UNIQUE","unique":{"base":"Plate Vest"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9CcmFtYmxlamFjayIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/d2e07d1ed8/Bramblejack.png"} +{"name":"議會之息","refName":"Breath of the Council","namespace":"UNIQUE","unique":{"base":"Carnal Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9QbGFndWVicmluZ2VyIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/c22a70dd6e/Plaguebringer.png"} +{"name":"偷息","refName":"Breathstealer","namespace":"UNIQUE","unique":{"base":"Hydrascale Gauntlets"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3VwcG9ydGVyMWdsb3ZlQSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0cbf141437/Supporter1gloveA.png"} +{"name":"光耀之錘","refName":"Brightbeak","namespace":"UNIQUE","unique":{"base":"War Hammer"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U1VW5pcXVlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/d3f763cad7/OneHandMace5Unique.png"} +{"name":"布琳洛特之旗","refName":"Brinerot Flag","namespace":"UNIQUE","unique":{"base":"Tarnished Spirit Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0JyaW5lcm90RmxhZyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/4645154405/BrinerotFlag.png"} +{"name":"布琳洛特印記","refName":"Brinerot Mark","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQnJpbmVyb3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c1d39c178d/Brinerot.png"} +{"name":"布琳洛特岸行者","refName":"Brinerot Whalers","namespace":"UNIQUE","unique":{"base":"Trapper Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SZWVmc2NvdXJnZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/6f72714c8f/Reefscourge.png"} +{"name":"荒途","refName":"Briskwrap","namespace":"UNIQUE","unique":{"base":"Sun Leather"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Ccmlza3dyYXAiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/4a3c7d71e6/Briskwrap.png"} +{"name":"破碎信念","refName":"Broken Faith","namespace":"UNIQUE","unique":{"base":"Archon Kite Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NhbnRvbmlzRmFpdGgiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/82ea2899a8/SantonisFaith.png"} +{"name":"布隆的影衣","refName":"Bronn's Lithe","namespace":"UNIQUE","unique":{"base":"Cutthroat's Garb"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Ccm9ubnNsaXRoZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/80b9cf6b0b/Bronnslithe.png"} +{"name":"殘酷的紀律","refName":"Brutal Restraint","namespace":"UNIQUE","unique":{"base":"Timeless Jewel","fixedStats":["Historic"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL01hcmFrZXRoQ2l2aWxpemF0aW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8e18d378b4/MarakethCivilization.png"} +{"name":"蠻力衝撞","refName":"Brute Force Solution","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1NUUnRvSU5UIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d8b66f795b/STRtoINT.png"} +{"name":"布魯特斯的刑具","refName":"Brutus' Lead Sprinkler","namespace":"UNIQUE","unique":{"base":"Ritual Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvVGhlTGVhZFNwcmlua2xlciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/9a9217f832/TheLeadSprinkler.png"} +{"name":"布巴尼克的線索","refName":"Bubonic Trail","namespace":"UNIQUE","unique":{"base":"Murder Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9BYnlzc0Jvb3RzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/61dd23f86c/AbyssBoots.png"} +{"name":"卡迪根皇冠","refName":"Cadigan's Crown","namespace":"UNIQUE","unique":{"base":"Runic Crown"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0FkYXB0YXRpb25IZWxtZXRVbmlxdWUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/693ad15174/AdaptationHelmetUnique.png"} +{"name":"塞爾.佈雷德狼穴","refName":"Caer Blaidd, Wolfpack's Den","namespace":"UNIQUE","unique":{"base":"Underground River Map"},"map":{"screenshot":"https://i.imgur.com/5BwJouH.jpg"},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9Xb2xmTWFwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/db94bff258/WolfMap.png"} +{"name":"悲慘幻視","refName":"Calamitous Visions","namespace":"UNIQUE","unique":{"base":"Small Cluster Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0xvbmVNZXNzZW5nZXJKZXdlbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/46f8de709e/LoneMessengerJewel.png"} +{"name":"意志呼喚","refName":"Call of the Brotherhood","namespace":"UNIQUE","unique":{"base":"Two-Stone Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQnJvdGhlcmhvb2QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/956d645be0/Brotherhood.png"} +{"name":"虛空呼喚","refName":"Call of the Void","namespace":"UNIQUE","unique":{"base":"Sapphire Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvRnJvc3RHbGF6ZWRFeWVSaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjEsImVsZGVyIjp0cnVlLCJzaGFwZXIiOnRydWV9XQ/ed288bc494/FrostGlazedEyeRing.png"} +{"name":"堅定之刃","refName":"Callinellus Malleus","namespace":"UNIQUE","unique":{"base":"Auric Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvQ2FsbGluZWxsdXNNYWxsZXVzIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/54da9946c9/CallinellusMalleus.png"} +{"name":"卡美利亞的貪婪","refName":"Cameria's Avarice","namespace":"UNIQUE","unique":{"base":"Gavel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvQW1lcmljc01hdWwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e1b9d35ca3/AmericsMaul.png"} +{"name":"卡美利亞之錘","refName":"Cameria's Maul","namespace":"UNIQUE","unique":{"base":"Gavel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvQW1lcmljc01hdWwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e1b9d35ca3/AmericsMaul.png"} +{"name":"骷髏馬克的靈杖","refName":"Cane of Kulemak","namespace":"UNIQUE","unique":{"base":"Serpentine Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvQ2F0YXJpbmFTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/9e79ed63e5/CatarinaStaff.png"} +{"name":"初惡枝枒","refName":"Cane of Unravelling","namespace":"UNIQUE","unique":{"base":"Ezomyte Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvQ2FuZU9mVW5yYXZlbGxpbmciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/99b4e7e44e/CaneOfUnravelling.png"} +{"name":"致命之體","refName":"Carcass Jack","namespace":"UNIQUE","unique":{"base":"Varnished Coat"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9DYXJjYXNzSmFjayIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/e496ea8e6e/CarcassJack.png"} +{"name":"審慎計畫","refName":"Careful Planning","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0lOVHRvREVYIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/e30df474e0/INTtoDEX.png"} +{"name":"屠戮之心","refName":"Carnage Heart","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQzNyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/451ac32a56/Amulet37.png"} +{"name":"無盡盛宴","refName":"Ceaseless Feast","namespace":"UNIQUE","unique":{"base":"Spiked Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvVG91Y2hPZlJ1c3QiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/a9b7f33bdf/TouchOfRust.png"} +{"name":"仁愛之心","refName":"Ceinture of Benevolence","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvTGlua21hc3RlcnNDb2lsIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/19af94314e/LinkmastersCoil.png"} +{"name":"獄犬殘肢","refName":"Cerberus Limb","namespace":"UNIQUE","unique":{"base":"Blood Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9DZXJlYnVzIExpbWIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/abffc5b395/Cerebus%20Limb.png"} +{"name":"堅決鎖鏈","refName":"Chain of Endurance","namespace":"UNIQUE","unique":{"base":"Chain Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvVW5oZWFsdGh5QnVyZGVuIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/d59c2c2bc9/UnhealthyBurden.png"} +{"name":"統帥之鏈","refName":"Chains of Command","namespace":"UNIQUE","unique":{"base":"Saintly Chainmail"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9DaGFpbnNPZkNvbW1hbmQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/3919d27d1b/ChainsOfCommand.png"} +{"name":"解放鏈","refName":"Chains of Emancipation","namespace":"UNIQUE","unique":{"base":"Chain Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvU2xhdmVyc0JlbHQiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/0b8d818fbb/SlaversBelt.png"} +{"name":"恐懼之缶","refName":"Chalice of Horrors","namespace":"UNIQUE","unique":{"base":"War Buckler"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0NoYWxpY2VvZmhvcnJvcnMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/532f7ec81c/Chaliceofhorrors.png"} +{"name":"五芒屏障","refName":"Chernobog's Pillar","namespace":"UNIQUE","unique":{"base":"Ebony Tower Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0NoZXJub2JvZ3NwaWxsYXIiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8868d6add1/Chernobogspillar.png"} +{"name":"薛魯賓的惡作劇","refName":"Cherrubim's Maleficence","namespace":"UNIQUE","unique":{"base":"Triumphant Lamellar"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9DaGVycnViaW1zQ3JhdmUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/90d81e1e5b/CherrubimsCrave.png"} +{"name":"腐化寒息","refName":"Chill of Corruption","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dyZWVuQ29ycnVwdDIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/567ed38e5d/GreenCorrupt2.png"} +{"name":"亂矢之弦","refName":"Chin Sol","namespace":"UNIQUE","unique":{"base":"Assassin Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzV1bmlxdWUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/199f28ea8d/Bow5unique.png"} +{"name":"切特斯的威權","refName":"Chitus' Apex","namespace":"UNIQUE","unique":{"base":"Necromancer Circlet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0NoaXR1c0FwZXgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/65697b1d09/ChitusApex.png"} +{"name":"忠誠之錘","refName":"Chober Chaber","namespace":"UNIQUE","unique":{"base":"Great Mallet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvQ2hvYmVyQ2hhYmVyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/77d9d3e30a/ChoberChaber.png"} +{"name":"暴風之語","refName":"Choir of the Storm","namespace":"UNIQUE","unique":{"base":"Lapis Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Wb2ljZU9mVGhlU3Rvcm1VcGdyYWRlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/50b59f1123/VoiceOfTheStormUpgrade.png"} +{"name":"噬燼甕","refName":"Cinderswallow Urn","namespace":"UNIQUE","unique":{"base":"Silver Flask","fixedStats":["+# to Maximum Charges","Recharges # Charge when you Consume an Ignited corpse","#% increased Charges per use","Enemies Ignited by you during Effect take #% increased Damage"]},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvVmlhbG9mVW5saWZlIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/9911226887/VialofUnlife.png"} +{"name":"野心之環","refName":"Circle of Ambition","namespace":"UNIQUE","unique":{"base":"Prismatic Ring","fixedStats":["#% increased Mana Reservation Efficiency of Herald Skills"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVWJlckNpcmNsZUhlcmFsZCIsInciOjEsImgiOjEsInNjYWxlIjoxLCJzeW50aGVzaXNlZCI6dHJ1ZX1d/77050fa01b/UberCircleHerald.png"} +{"name":"煎熬之環","refName":"Circle of Anguish","namespace":"UNIQUE","unique":{"base":"Ruby Ring","fixedStats":["Adds # to # Fire Damage"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU3ludGhlc2lzRmlyZSIsInciOjEsImgiOjEsInNjYWxlIjoxLCJzeW50aGVzaXNlZCI6dHJ1ZX1d/f64b382150/SynthesisFire.png"} +{"name":"恐懼之環","refName":"Circle of Fear","namespace":"UNIQUE","unique":{"base":"Sapphire Ring","fixedStats":["Adds # to # Cold Damage"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU3ludGhlc2lzQ29sZCIsInciOjEsImgiOjEsInNjYWxlIjoxLCJzeW50aGVzaXNlZCI6dHJ1ZX1d/f2a949365a/SynthesisCold.png"} +{"name":"愧疚之環","refName":"Circle of Guilt","namespace":"UNIQUE","unique":{"base":"Iron Ring","fixedStats":["Adds # to # Physical Damage","+# to Armour"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU3ludGhlc2lzUGh5c2ljYWwyIiwidyI6MSwiaCI6MSwic2NhbGUiOjEsInN5bnRoZXNpc2VkIjp0cnVlfV0/9345ce30d7/SynthesisPhysical2.png"} +{"name":"懷舊之環","refName":"Circle of Nostalgia","namespace":"UNIQUE","unique":{"base":"Amethyst Ring","fixedStats":["Adds # to # Chaos Damage","+#% to Chaos Resistance"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU3ludGhlc2lzUGh5c2ljYWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MSwic3ludGhlc2lzZWQiOnRydWV9XQ/91f50b535b/SynthesisPhysical.png"} +{"name":"遺憾之環","refName":"Circle of Regret","namespace":"UNIQUE","unique":{"base":"Topaz Ring","fixedStats":["Adds # to # Lightning Damage"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU3ludGhlc2lzTGlnaHRuaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjEsInN5bnRoZXNpc2VkIjp0cnVlfV0/ce810e2fcc/SynthesisLightning.png"} +{"name":"塑泥者","refName":"Clayshaper","namespace":"UNIQUE","unique":{"base":"Rock Breaker"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvQ2xheVNoYXBlciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/9224ab6497/ClayShaper.png"} +{"name":"衛道之袍","refName":"Cloak of Defiance","namespace":"UNIQUE","unique":{"base":"Lacquered Garb"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9DbG9ha09mRGVmaWFuY2UiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/87997e3b8a/CloakOfDefiance.png"} +{"name":"烈炎之袍","refName":"Cloak of Flame","namespace":"UNIQUE","unique":{"base":"Scholar's Robe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MUF1bmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/41c15c6511/BodyInt1Aunique.png"} +{"name":"陶米兒艾斯理之袍","refName":"Cloak of Tawm'r Isley","namespace":"UNIQUE","unique":{"base":"Savant's Robe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Ub21PUmVpbGx5Q2xvYWsiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/595ee9c868/TomOReillyCloak.png"} +{"name":"寒鋼之刃","refName":"Cold Iron Point","namespace":"UNIQUE","unique":{"base":"Ezomyte Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0NvbGRJcm9uUG9pbnQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/1a4002957b/ColdIronPoint.png"} +{"name":"專精作戰","refName":"Combat Focus","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0VsZW1lbnRhbEhpdExpZ2h0ZW5pbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e913bb8301/ElementalHitLightening.png"} +{"name":"專精作戰","refName":"Combat Focus","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0VsZW1lbnRhbEhpdENvbGQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/2d08fbc4ec/ElementalHitCold.png"} +{"name":"專精作戰","refName":"Combat Focus","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0VsZW1lbnRhbEhpdEZpcmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/7dac7ceff8/ElementalHitFire.png"} +{"name":"闇核號令","refName":"Command of the Pit","namespace":"UNIQUE","unique":{"base":"Riveted Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQ29tbWFuZG9mdGhlUGl0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/cc7772a880/CommandofthePit.png"} +{"name":"契約書:攻破不破者","refName":"Contract: Breaking the Unbreakable","namespace":"UNIQUE","unique":{"base":"Preventative Contract"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVW5icmVha2FibGVGaWdodENvbnRyYWN0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4e50a5f0ae/UnbreakableFightContract.png"} +{"name":"契約書:達爾奈之死","refName":"Contract: Death to Darnaw","namespace":"UNIQUE","unique":{"base":"Naval Contract"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQWRtaXJhbERhcm5hd0ZpZ2h0Q29udHJhY3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d3d9bf5da6/AdmiralDarnawFightContract.png"} +{"name":"榮譽之心","refName":"Contract: Heart of Glory","namespace":"UNIQUE","unique":{"base":"Familial Contract"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVXN1cnBlckZpZ2h0Q29udHJhY3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/46d7ba4bf9/UsurperFightContract.png"} +{"name":"契約書:奴隸王","refName":"Contract: The Slaver King","namespace":"UNIQUE","unique":{"base":"Vigilante Contract"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvU2xhdmVNZXJjaGFudEZpZ2h0Q29udHJhY3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/05c788361c/SlaveMerchantFightContract.png"} +{"name":"契約書:雙胞胎","refName":"Contract: The Twins","namespace":"UNIQUE","unique":{"base":"Vengeful Contract"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVm94RmFtaWx5RmlnaHRDb250cmFjdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/28f9230b0b/VoxFamilyFightContract.png"} +{"name":"協作","refName":"Cooperation","namespace":"UNIQUE","unique":{"base":"Vaal Aspect"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UcmlhbG1hc3RlclJpZ2h0RnJhZ21lbnQiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MX1d/923a1f4d20/TrialmasterRightFragment.png"} +{"name":"克拉里多的名印","refName":"Coralito's Signature","namespace":"UNIQUE","unique":{"base":"Diamond Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvR29yZ29uc0ZsYXNrIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/8fa50a1974/GorgonsFlask.png"} +{"name":"行屍走肉","refName":"Corpsewalker","namespace":"UNIQUE","unique":{"base":"Carnal Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9EaXN0dXJiVGhlRGVhZCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/fabb05d84e/DisturbTheDead.png"} +{"name":"深沉記憶","refName":"Cortex","namespace":"UNIQUE","unique":{"base":"Synthesised Map"},"map":{},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TeW50aGVzaXNCb3NzR3VhcmRpYW5NYXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/542f2635c7/SynthesisBossGuardianMap.png"} +{"name":"閃耀精華","refName":"Coruscating Elixir","namespace":"UNIQUE","unique":{"base":"Ruby Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvQ29ydXNFbGl4aXIiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/26769c58f3/CorusElixir.png"} +{"name":"卡斯普里的怨恨","refName":"Cospri's Malice","namespace":"UNIQUE","unique":{"base":"Jewelled Foil"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL0Nvc3ByaXNNYWxpY2UiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/e9e517220b/CosprisMalice.png"} +{"name":"卡斯普里意志","refName":"Cospri's Will","namespace":"UNIQUE","unique":{"base":"Assassin's Garb"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Db3NwcmlzV2lsbCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/e7801b1322/CosprisWill.png"} +{"name":"懦夫的鎖鏈","refName":"Coward's Chains","namespace":"UNIQUE","unique":{"base":"Chain Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQ293YXJkJ3MgQ2hhaW5zIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/b1cb3d3a26/Coward%27s%20Chains.png"} +{"name":"懦夫的遺產","refName":"Coward's Legacy","namespace":"UNIQUE","unique":{"base":"Chain Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQ293YXJkJ3MgTGVnYWN5IiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/2325fc7213/Coward%27s%20Legacy.png"} +{"name":"狂雷斗篷","refName":"Cowl of the Ceraunophile","namespace":"UNIQUE","unique":{"base":"Solaris Circlet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1N1cHBvcnRlcjFoZWxtZXRDIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/9455b25c23/Supporter1helmetC.png"} +{"name":"酷寒斗篷","refName":"Cowl of the Cryophile","namespace":"UNIQUE","unique":{"base":"Silken Hood"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1N1cHBvcnRlcjFoZWxtZXRBIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/5283e1920d/Supporter1helmetA.png"} +{"name":"嗜炎斗篷","refName":"Cowl of the Thermophile","namespace":"UNIQUE","unique":{"base":"Ezomyte Burgonet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1N1cHBvcnRlcjFoZWxtZXRCIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/3a31f05cd3/Supporter1helmetB.png"} +{"name":"岩頭","refName":"Craghead","namespace":"UNIQUE","unique":{"base":"Serrated Arrow Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJVbmlxdWU0IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/dfccecb2ae/QuiverUnique4.png"} +{"name":"奎爾珊硬甲","refName":"Craiceann's Carapace","namespace":"UNIQUE","unique":{"base":"Golden Plate"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9DcmFiVW5pcXVlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/b6db96049a/CrabUnique.png"} +{"name":"奎爾珊畸面","refName":"Craiceann's Chitin","namespace":"UNIQUE","unique":{"base":"Magistrate Crown"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0NyYWJVbmlxdWVIZWxtZXQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/70715aae61/CrabUniqueHelmet.png"} +{"name":"奎爾珊堅鉗","refName":"Craiceann's Pincers","namespace":"UNIQUE","unique":{"base":"Titan Gauntlets"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQ3JhYlVuaXF1ZUdsb3ZlcyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/c5811ae4bd/CrabUniqueGloves.png"} +{"name":"奎爾珊之跡","refName":"Craiceann's Tracks","namespace":"UNIQUE","unique":{"base":"Goliath Greaves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9DcmFiVW5pcXVlQm9vdHMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/65740a31fd/CrabUniqueBoots.png"} +{"name":"慾望之冠","refName":"Crest of Desire","namespace":"UNIQUE","unique":{"base":"Fluted Bascinet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01hZ25pZmljYXRpb24iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/1c4139ef41/Magnification.png"} +{"name":"普蘭德斯之徽","refName":"Crest of Perandus","namespace":"UNIQUE","unique":{"base":"Pine Buckler"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleFVuaXF1ZTUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e85f672678/ShieldDexUnique5.png"} +{"name":"邪眼之冠","refName":"Crown of Eyes","namespace":"UNIQUE","unique":{"base":"Hubris Circlet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Nyb3dub2ZFeWVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/778182e367/CrownofEyes.png"} +{"name":"暗眼之冠","refName":"Crown of the Inward Eye","namespace":"UNIQUE","unique":{"base":"Prophet Crown"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Nyb3duT2ZUaGVJbndhcmRFeWUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/fdb20856e4/CrownOfTheInwardEye.png"} +{"name":"殞皇之冠","refName":"Crown of the Pale King","namespace":"UNIQUE","unique":{"base":"Regicide Mask"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Nyb3dub2Z0aGVQYWxlS2luZyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/a2cd2b0900/CrownofthePaleKing.png"} +{"name":"堂皇冠冕","refName":"Crown of the Tyrant","namespace":"UNIQUE","unique":{"base":"Magistrate Crown"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RoZUltcG9zaW5nIENyb3duIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/e9e915daa7/TheImposing%20Crown.png"} +{"name":"刺棘之冠","refName":"Crown of Thorns","namespace":"UNIQUE","unique":{"base":"Vine Circlet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Nyb3dub2ZUaG9ybnMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/23054b0443/CrownofThorns.png"} +{"name":"晶化全知","refName":"Crystallised Omniscience","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Bc2NlbmRhbmNlQW11bGV0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/60368620d5/AscendanceAmulet.png"} +{"name":"融合之逸品","refName":"Curio of Absorption","namespace":"UNIQUE","unique":{"base":"Primordial Fragment"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9QaW5uYWNsZUZyYWdtZW50RXhhcmNoIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/0da90fe2d1/PinnacleFragmentExarch.png"} +{"name":"消耗之逸品","refName":"Curio of Consumption","namespace":"UNIQUE","unique":{"base":"Primordial Fragment"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9QaW5uYWNsZUZyYWdtZW50RWF0ZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a386f18599/PinnacleFragmentEater.png"} +{"name":"腐化之逸品","refName":"Curio of Decay","namespace":"UNIQUE","unique":{"base":"Primordial Fragment"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9QaW5uYWNsZUZyYWdtZW50RWxkZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/40544dbcfb/PinnacleFragmentElder.png"} +{"name":"野心之逸品","refName":"Curio of Potential","namespace":"UNIQUE","unique":{"base":"Primordial Fragment"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9QaW5uYWNsZUZyYWdtZW50TWF2ZW4iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/53c751ef5d/PinnacleFragmentMaven.png"} +{"name":"好奇","refName":"Curiosity","namespace":"UNIQUE","unique":{"base":"Vaal Aspect"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UcmlhbG1hc3RlckJvdHRvbUZyYWdtZW50IiwidyI6MywiaCI6MSwic2NhbGUiOjF9XQ/78cddd2ad4/TrialmasterBottomFragment.png"} +{"name":"華麗閉幕","refName":"Curtain Call","namespace":"UNIQUE","unique":{"base":"Plague Mask"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0N1cnRhaW5DYWxsIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/5f3eb95031/CurtainCall.png"} +{"name":"希比爾的冰爪","refName":"Cybil's Paw","namespace":"UNIQUE","unique":{"base":"Thresher Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DeWJpbHNDbGF3IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/6da52a7519/CybilsClaw.png"} +{"name":"巨岩之環","refName":"Cyclopean Coil","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvRWxkZXJCZWx0IiwidyI6MiwiaCI6MSwic2NhbGUiOjEsImVsZGVyIjp0cnVlfV0/e933baf49d/ElderBelt.png"} +{"name":"奉獻之舞","refName":"Dance of the Offered","namespace":"UNIQUE","unique":{"base":"Carnal Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9EYW5jZU9mVGhlT2ZmZXJlZCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ca6a0319e6/DanceOfTheOffered.png"} +{"name":"德瑞索的勇者之盾","refName":"Daresso's Courage","namespace":"UNIQUE","unique":{"base":"Baroque Round Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleFVuaXF1ZTEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/320f1e78fa/ShieldStrDexUnique1.png"} +{"name":"德瑞索的衛衣","refName":"Daresso's Defiance","namespace":"UNIQUE","unique":{"base":"Full Dragonscale"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9EYXJlc3Nvc0RlZmlhbmNlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/2e5802be5f/DaressosDefiance.png"} +{"name":"德瑞索的熱情","refName":"Daresso's Passion","namespace":"UNIQUE","unique":{"base":"Estoc"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL0RhcmVzc29zIiwidyI6MSwiaCI6NCwic2NhbGUiOjF9XQ/d698c36c19/Daressos.png"} +{"name":"德瑞索的戰禮","refName":"Daresso's Salute","namespace":"UNIQUE","unique":{"base":"Citrine Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9DaXRyaW5lQW11bGV0VW5pcXVlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ea232d0123/CitrineAmuletUnique.png"} +{"name":"夜惡降臨","refName":"Darkness Enthroned","namespace":"UNIQUE","unique":{"base":"Stygian Vise"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvRGFya25lc3NFbnRocm9uZWQiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/2e418e2c4d/DarknessEnthroned.png"} +{"name":"暗雷","refName":"Darkray Vectors","namespace":"UNIQUE","unique":{"base":"Dragonscale Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9EYXJrcmF5VmVjdG9ycyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/e96f134d02/DarkrayVectors.png"} +{"name":"夜吟","refName":"Darkscorn","namespace":"UNIQUE","unique":{"base":"Assassin Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0RhcmtzY29ybiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/5145b7feef/Darkscorn.png"} +{"name":"破曉","refName":"Dawnbreaker","namespace":"UNIQUE","unique":{"base":"Colossal Tower Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1N1cGVyaGVhdGVkU2hpZWxkIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/59e3552a9b/SuperheatedShield.png"} +{"name":"晨行者","refName":"Dawnstrider","namespace":"UNIQUE","unique":{"base":"Vaal Greaves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9JbmZlY3Rpb3VzQ29uc3RydWN0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/bf1cb0a5b4/InfectiousConstruct.png"} +{"name":"死亡清算","refName":"Dead Reckoning","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0FkZGl0aW9uYWxTa2VsZXRvbk1hZ2VzTW9kaWZpZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/64b5aa8a03/AdditionalSkeletonMagesModifier.png"} +{"name":"亡者之財","refName":"Death and Taxes","namespace":"UNIQUE","unique":{"base":"Necropolis Map"},"map":{},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9EZWF0aGFuZFRheGVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/0cc72adc19/DeathandTaxes.png"} +{"name":"亡者呼喚","refName":"Death Rush","namespace":"UNIQUE","unique":{"base":"Amethyst Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQW1ldGh5c3RSaW5nVW5pcXVlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1ade97e0ac/AmethystRingUnique.png"} +{"name":"死亡大門","refName":"Death's Door","namespace":"UNIQUE","unique":{"base":"Crusader Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9EZWF0aHNkb29yIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/49384091d3/Deathsdoor.png"} +{"name":"死神之手","refName":"Death's Hand","namespace":"UNIQUE","unique":{"base":"Karui Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9FbmRPZkVyYSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/fbfd20f658/EndOfEra.png"} +{"name":"冥使之琴","refName":"Death's Harp","namespace":"UNIQUE","unique":{"base":"Death Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0RlYXRoc2hhcnAiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/488e5f6267/Deathsharp.png"} +{"name":"冥使之體","refName":"Death's Oath","namespace":"UNIQUE","unique":{"base":"Astral Plate"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9EZWF0aHNvYXRoIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f81375e335/Deathsoath.png"} +{"name":"狄恩的輓歌","refName":"Debeon's Dirge","namespace":"UNIQUE","unique":{"base":"Despot Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9TdHJpbmdBeGUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/c3289a678a/StringAxe.png"} +{"name":"獵蹤","refName":"Deerstalker","namespace":"UNIQUE","unique":{"base":"Deerskin Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleFVuaXF1ZTEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/8d8725b395/BootsDexUnique1.png"} +{"name":"拒絕命運","refName":"Defiance of Destiny","namespace":"UNIQUE","unique":{"base":"Paua Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9IaW5la29yYUFtdWxldCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d26f80f9c7/HinekoraAmulet.png"} +{"name":"喪鐘","refName":"Deidbell","namespace":"UNIQUE","unique":{"base":"Gilded Sallet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0RlaWRiZWxsIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/fd66b0b28f/Deidbell.png"} +{"name":"縫魔","refName":"Demon Stitcher","namespace":"UNIQUE","unique":{"base":"Satin Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRGVtb25TdGljaGVyIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/0269893a5c/DemonSticher.png"} +{"name":"箭毒蛙","refName":"Dendrobate","namespace":"UNIQUE","unique":{"base":"Sentinel Jacket"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9EZW5kcm9iYXRpcyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/7c2d6dd5ce/Dendrobatis.png"} +{"name":"德沃托的信念之盔","refName":"Devoto's Devotion","namespace":"UNIQUE","unique":{"base":"Nightmare Bascinet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDJ1bmlxdWUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/65fa7daa88/HelmetStrDex2unique.png"} +{"name":"達拉的罪刑","refName":"Dialla's Malefaction","namespace":"UNIQUE","unique":{"base":"Sage's Robe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9EaWFsbGFzTWFsZWZhY3Rpb24iLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/842ace4d64/DiallasMalefaction.png"} +{"name":"滅碎獠杖","refName":"Disintegrator","namespace":"UNIQUE","unique":{"base":"Maelström Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvRWxkZXJTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxLCJlbGRlciI6dHJ1ZX1d/b01af8c2ff/ElderStaff.png"} +{"name":"血肉溶解","refName":"Dissolution of the Flesh","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1Jlc2VydmVkQmxvb2RKZXdlbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1a4688f335/ReservedBloodJewel.png"} +{"name":"戒律之影","refName":"Divinarius","namespace":"UNIQUE","unique":{"base":"Imperial Skean"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjd1bmlxdWUiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/3deec3773b/Dagger7unique.png"} +{"name":"寶視精華","refName":"Divination Distillate","namespace":"UNIQUE","unique":{"base":"Large Hybrid Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MveUZsYXNrczE3IiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/df28fc612b/yFlasks17.png"} +{"name":"德瑞的魔具","refName":"Doedre's Damning","namespace":"UNIQUE","unique":{"base":"Paua Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzNVbmlxdWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d06b386d73/Ring3Unique.png"} +{"name":"德瑞的妙藥","refName":"Doedre's Elixir","namespace":"UNIQUE","unique":{"base":"Greater Mana Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MveUZsYXNrNCIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/59c415efed/yFlask4.png"} +{"name":"德瑞的蔑視","refName":"Doedre's Scorn","namespace":"UNIQUE","unique":{"base":"Lunaris Circlet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0RvZWRyZXNTY29ybiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/16c4d034ee/DoedresScorn.png"} +{"name":"德瑞之膚","refName":"Doedre's Skin","namespace":"UNIQUE","unique":{"base":"Widowsilk Robe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Eb2VkcmVzU2tpbiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/a04f3c7a0a/DoedresSkin.png"} +{"name":"德瑞的精神手套","refName":"Doedre's Tenure","namespace":"UNIQUE","unique":{"base":"Velvet Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRG9lZHJlc1RlbnVyZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/052a57aabd/DoedresTenure.png"} +{"name":"德瑞的毒舌","refName":"Doedre's Tongue","namespace":"UNIQUE","unique":{"base":"Lapis Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Eb2VkcmVzVG9uZ3VlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/434403db05/DoedresTongue.png"} +{"name":"滅世","refName":"Doomfletch","namespace":"UNIQUE","unique":{"base":"Royal Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0Rvb21GbGV0Y2giLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/a284f1cdab/DoomFletch.png"} +{"name":"終末之始","refName":"Doomsower","namespace":"UNIQUE","unique":{"base":"Lion Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL0Rvb21Tb3dlciIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/7d9d914b75/DoomSower.png"} +{"name":"黑鋼","refName":"Doon Cuebiyari","namespace":"UNIQUE","unique":{"base":"Vaal Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvRG9vbkN1ZWJpeWFyaSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/8a4a0ccb6b/DoonCuebiyari.png"} +{"name":"達佩爾甘格偽裝","refName":"Doppelgänger Guise","namespace":"UNIQUE","unique":{"base":"Sadist Garb"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Db2xsZWN0b3JzR2FyYkRpZmYiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/eb8a6d36ef/CollectorsGarbDiff.png"} +{"name":"多里亞尼的幻化之杖","refName":"Doryani's Catalyst","namespace":"UNIQUE","unique":{"base":"Vaal Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9Eb3J5YW5pc0NhdGFseXN0IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/aa54cbb507/DoryanisCatalyst.png"} +{"name":"多里亞尼的幻想","refName":"Doryani's Delusion","namespace":"UNIQUE","unique":{"base":"Sorcerer Boots","fixedStats":["#% increased Movement Speed"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Eb3JpeWFuaXNCbHVlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/0288b52fee/DoriyanisBlue.png"} +{"name":"多里亞尼的幻想","refName":"Doryani's Delusion","namespace":"UNIQUE","unique":{"base":"Titan Greaves","fixedStats":["#% increased Movement Speed"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Eb3JpeWFuaXNSZWQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/10255d4b05/DoriyanisRed.png"} +{"name":"多里亞尼的幻想","refName":"Doryani's Delusion","namespace":"UNIQUE","unique":{"base":"Slink Boots","fixedStats":["#% increased Movement Speed"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Eb3JpeWFuaXNHcmVlbiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ef81cb1e57/DoriyanisGreen.png"} +{"name":"多里亞尼之拳","refName":"Doryani's Fist","namespace":"UNIQUE","unique":{"base":"Vaal Gauntlets"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRG9yeWFuaXNGaXN0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/92cfa78e4d/DoryanisFist.png"} +{"name":"多里亞尼之約","refName":"Doryani's Invitation","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvRG9yeWFuaXNJbnZpdGF0aW9uIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/d0085639cc/DoryanisInvitation.png"} +{"name":"多里亞尼的機械迷城","refName":"Doryani's Machinarium","namespace":"UNIQUE","unique":{"base":"Maze Map"},"map":{},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9Eb3J5YW5pcyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/581444be53/Doryanis.png"} +{"name":"多里亞尼之型","refName":"Doryani's Prototype","namespace":"UNIQUE","unique":{"base":"Saint's Hauberk"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9TaG9ja0Nsb2FrIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/44e73cc73c/ShockCloak.png"} +{"name":"恐懼之鐮","refName":"Dreadarc","namespace":"UNIQUE","unique":{"base":"Cleaver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9EcmVhZGFyYyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/fd1e188ee3/Dreadarc.png"} +{"name":"夢語之痕","refName":"Dream Fragments","namespace":"UNIQUE","unique":{"base":"Sapphire Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzZVbmlxdWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0c74ddd77c/Ring6Unique.png"} +{"name":"幻夢飛羽","refName":"Dreamfeather","namespace":"UNIQUE","unique":{"base":"Eternal Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0RyZWFtZmVhdGhlciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/89a3a7588c/Dreamfeather.png"} +{"name":"穿心","refName":"Drillneck","namespace":"UNIQUE","unique":{"base":"Penetrating Arrow Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9EcmlsbG5lY2siLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2e0770a7b1/Drillneck.png"} +{"name":"宵曉","refName":"Duskdawn","namespace":"UNIQUE","unique":{"base":"Maelström Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU29sYXJpc0x1bmFyaXNTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/e5e9df18a4/SolarisLunarisStaff.png"} +{"name":"迎暮","refName":"Dusktoe","namespace":"UNIQUE","unique":{"base":"Ironscale Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleFVuaXF1ZTMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/39b842cf85/BootsStrDexUnique3.png"} +{"name":"戴亞迪安的晨曦","refName":"Dyadian Dawn","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvTW90aGVyRHlhZHVzIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/ca299e5015/MotherDyadus.png"} +{"name":"龍鳳吟","refName":"Dyadus","namespace":"UNIQUE","unique":{"base":"Infernal Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9EeWFkdXMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e1b1cf2439/Dyadus.png"} +{"name":"亡者之息","refName":"Dying Breath","namespace":"UNIQUE","unique":{"base":"Iron Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvRHlpbmdCcmVhdGgiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/3b7be0c935/DyingBreath.png"} +{"name":"滅日","refName":"Dying Sun","namespace":"UNIQUE","unique":{"base":"Ruby Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvU2hhcGVyc0ZsYXNrIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/c6e2f8118d/ShapersFlask.png"} +{"name":"伊爾多恩的擁抱","refName":"Earendel's Embrace","namespace":"UNIQUE","unique":{"base":"Grinning Fetish"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9FYXJlbmRlbHNFbWJyYWNlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/7fbecdb2b3/EarendelsEmbrace.png"} +{"name":"希伯的統治","refName":"Eber's Unification","namespace":"UNIQUE","unique":{"base":"Hubris Circlet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1BhbGVDb3VuY2lsSGVsbWV0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/4415fd6474/PaleCouncilHelmet.png"} +{"name":"創造迴聲","refName":"Echoes of Creation","namespace":"UNIQUE","unique":{"base":"Royal Burgonet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RoZVR3aXN0aW5nU2NyZWFtIiwidyI6MiwiaCI6Miwic2NhbGUiOjEsInNoYXBlciI6dHJ1ZX1d/a52bc6cab0/TheTwistingScream.png"} +{"name":"核聲","refName":"Echoforge","namespace":"UNIQUE","unique":{"base":"Infernal Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL0Nvc21pY0ZvcmdlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/df82c06267/CosmicForge.png"} +{"name":"宇蝕","refName":"Eclipse Solaris","namespace":"UNIQUE","unique":{"base":"Engraved Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kVW5pcXVlMSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/e1734b812d/WandUnique1.png"} +{"name":"瘋狂邊界","refName":"Edge of Madness","namespace":"UNIQUE","unique":{"base":"Etched Greatsword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL0VkZ2VPZk1hZG5lc3MiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/5ab6c808b5/EdgeOfMadness.png"} +{"name":"充分訓練","refName":"Efficient Training","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0lOVHRvU1RSIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3631faae6d/INTtoSTR.png"} +{"name":"優雅的高傲","refName":"Elegant Hubris","namespace":"UNIQUE","unique":{"base":"Timeless Jewel","fixedStats":["Historic"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0V0ZXJuYWxFbXBpcmVDaXZpbGl6YXRpb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8d1d098584/EternalEmpireCivilization.png"} +{"name":"愛勒弗","refName":"Elevore","namespace":"UNIQUE","unique":{"base":"Wolf Pelt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1dpbGRjYWxsIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/bf0a462a3a/Wildcall.png"} +{"name":"不破環之靈藥","refName":"Elixir of the Unbroken Circle","namespace":"UNIQUE","unique":{"base":"Iron Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvV2FyZEZsYXNrMDMiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/d78b003b9a/WardFlask03.png"} +{"name":"餘燼之痕","refName":"Emberwake","namespace":"UNIQUE","unique":{"base":"Ruby Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzEwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/55c8711fd7/Ring10.png"} +{"name":"帝王的詭計","refName":"Emperor's Cunning","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0N1bm5pbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4b5d857ef3/Cunning.png"} +{"name":"帝王的純熟","refName":"Emperor's Mastery","namespace":"UNIQUE","unique":{"base":"Prismatic Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL01hc3RlcnkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/eb1cf5699e/Mastery.png"} +{"name":"帝王的霸權","refName":"Emperor's Might","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL01pZ2h0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d1507b1ec4/Might.png"} +{"name":"帝王的戒心","refName":"Emperor's Vigilance","namespace":"UNIQUE","unique":{"base":"Steel Kite Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0hpZ2hQcmllc3RTaGllbGQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/4c24c383b8/HighPriestShield.png"} +{"name":"帝王的智慧","refName":"Emperor's Wit","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1dpdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/bc537c241b/Wit.png"} +{"name":"帝國之掌","refName":"Empire's Grasp","namespace":"UNIQUE","unique":{"base":"Goliath Gauntlets"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvSGl0aGVyIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/c23bccbc39/Hither.png"} +{"name":"能量堅甲","refName":"Energised Armour","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JlZEpld2VsNSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5d09a69cbc/RedJewel5.png"} +{"name":"潛能防護","refName":"Energy From Within","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0JsdWVKZXdlbDYiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/43c313a2c4/BlueJewel6.png"} +{"name":"熵毀滅","refName":"Entropic Devastation","namespace":"UNIQUE","unique":{"base":"Assassin's Mitts"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvVWJlclNoYXBlckdsb3ZlcyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/50bd7171bf/UberShaperGloves.png"} +{"name":"影殞","refName":"Ephemeral Edge","namespace":"UNIQUE","unique":{"base":"Dusk Blade"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDhVbmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/d2fdb4e56e/OneHandSword8Unique.png"} +{"name":"艾許之鏡","refName":"Esh's Mirror","namespace":"UNIQUE","unique":{"base":"Vaal Spirit Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0VzaHNNaXJyb3IiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/983cf91bf4/EshsMirror.png"} +{"name":"艾許之面","refName":"Esh's Visage","namespace":"UNIQUE","unique":{"base":"Vaal Spirit Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0VzaHNNaXJyb3JVcGdyYWRlZCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f965a13213/EshsMirrorUpgraded.png"} +{"name":"菁華蠕蟲","refName":"Essence Worm","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvRXNzZW5jZVdvcm0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4455cc009b/EssenceWorm.png"} +{"name":"精華收割器","refName":"Essentia Sanguis","namespace":"UNIQUE","unique":{"base":"Vaal Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NVVuaXF1ZTIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/8041876a9e/Claw5Unique2.png"} +{"name":"永恆的詛咒","refName":"Eternal Damnation","namespace":"UNIQUE","unique":{"base":"Agate Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbndlbnNBbXVsZXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1d40745e7d/AnwensAmulet.png"} +{"name":"伊沃幻像","refName":"Ewar's Mirage","namespace":"UNIQUE","unique":{"base":"Antique Rapier"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL0V3YXJzTWlyYWdlIiwidyI6MSwiaCI6NCwic2NhbGUiOjF9XQ/c7b916c7f4/EwarsMirage.png"} +{"name":"遠征之盡","refName":"Expedition's End","namespace":"UNIQUE","unique":{"base":"Sentinel Jacket"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9BZG1pcmFsc0phY2tldCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/8c204b4c87/AdmiralsJacket.png"} +{"name":"心靈抽取","refName":"Extractor Mentis","namespace":"UNIQUE","unique":{"base":"Agate Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9FeHRyYWN0b3JNZW50aXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/af5684bd74/ExtractorMentis.png"} +{"name":"夏烏拉之眼","refName":"Eye of Chayula","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQ3VW5pcXVlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6b059ec15d/Amulet7Unique.png"} +{"name":"無罪之眼","refName":"Eye of Innocence","namespace":"UNIQUE","unique":{"base":"Citrine Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9FeWVPZklubm9jZW5jZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9544014b69/EyeOfInnocence.png"} +{"name":"邪眼","refName":"Eye of Malice","namespace":"UNIQUE","unique":{"base":"Callous Mask"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0V5ZU9mRGVzaXJlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/4218c3cc66/EyeOfDesire.png"} +{"name":"巨狼之眼","refName":"Eyes of the Greatwolf","namespace":"UNIQUE","unique":{"base":"Greatwolf Talisman"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9SaWd3YWxkc1RhbGlzbWFuIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4936fcad86/RigwaldsTalisman.png"} +{"name":"艾茲麥的榮光","refName":"Ezomyte Peak","namespace":"UNIQUE","unique":{"base":"Iron Hat"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0V6b215dGVQZWFrIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/058b75e4e0/EzomytePeak.png"} +{"name":"毀面者","refName":"Facebreaker","namespace":"UNIQUE","unique":{"base":"Strapped Mitts"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50VW5pcXVlMSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/b97dda23b0/GlovesDexIntUnique1.png"} +{"name":"費爾之帽","refName":"Fairgraves' Tricorne","namespace":"UNIQUE","unique":{"base":"Tricorne"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0ZhaXJncmF2ZXNUcmljb3JuZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/6a828c8150/FairgravesTricorne.png"} +{"name":"信仰守護","refName":"Faithguard","namespace":"UNIQUE","unique":{"base":"Runic Helm"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1NwaXJpdEhlbG1ldFVuaXF1ZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0921dc17df/SpiritHelmetUnique.png"} +{"name":"饑荒之結","refName":"Faminebind","namespace":"UNIQUE","unique":{"base":"Rustic Sash"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvRmFtaW5lYmluZCIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/a790722613/Faminebind.png"} +{"name":"費爾羅咥喙","refName":"Farrul's Bite","namespace":"UNIQUE","unique":{"base":"Harlequin Mask"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RpZ2VySGVsbWV0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/c056a59c62/TigerHelmet.png"} +{"name":"費爾羅獵靴","refName":"Farrul's Chase","namespace":"UNIQUE","unique":{"base":"Slink Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9UaWdlckJvb3RzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/640a42e82a/TigerBoots.png"} +{"name":"費爾羅羽衣","refName":"Farrul's Fur","namespace":"UNIQUE","unique":{"base":"Triumphant Lamellar"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaWdlckJvZHlBcm1vdXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/1cfa248b9b/TigerBodyArmour.png"} +{"name":"費爾羅鋒爪","refName":"Farrul's Pounce","namespace":"UNIQUE","unique":{"base":"Hydrascale Gauntlets"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvVGlnZXJHbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/294e636cf1/TigerGloves.png"} +{"name":"瓦爾之命","refName":"Fate of the Vaal","namespace":"UNIQUE","unique":{"base":"Gemstone Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0ZhdGVPZlRoZVZhYWwiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/0a4128aace/FateOfTheVaal.png"} +{"name":"命運終結","refName":"Fated End","namespace":"UNIQUE","unique":{"base":"Paua Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvRm9yYmlkZGVuU2VhbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f402209b8f/ForbiddenSeal.png"} +{"name":"盛宴之結","refName":"Feastbind","namespace":"UNIQUE","unique":{"base":"Rustic Sash"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvRmVhc3RiaW5kIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/f5d1f232d6/Feastbind.png"} +{"name":"聖徒脛骨","refName":"Femurs of the Saints","namespace":"UNIQUE","unique":{"base":"Primordial Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvRmVtdXJzb2Z0aGVTYWludHMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/e275f87366/FemursoftheSaints.png"} +{"name":"綠藤","refName":"Fencoil","namespace":"UNIQUE","unique":{"base":"Gnarled Branch"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmYxdW5pcXVlIiwidyI6MSwiaCI6NCwic2NhbGUiOjF9XQ/cff9022931/Staff1unique.png"} +{"name":"菲恩絲魘甲","refName":"Fenumus' Shroud","namespace":"UNIQUE","unique":{"base":"Widowsilk Robe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9TcGlkZXJBcm1vdXJCb2R5IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f48eff23e8/SpiderArmourBody.png"} +{"name":"菲恩絲刺靴","refName":"Fenumus' Spinnerets","namespace":"UNIQUE","unique":{"base":"Assassin's Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TcGlkZXJBcm1vdXJCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ba3f1e4f2a/SpiderArmourBoots.png"} +{"name":"菲恩絲獠牙","refName":"Fenumus' Toxins","namespace":"UNIQUE","unique":{"base":"Necromancer Circlet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1NwaWRlckFybW91ckhlbG1ldCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/da7582cbf6/SpiderArmourHelmet.png"} +{"name":"菲恩絲夜織","refName":"Fenumus' Weave","namespace":"UNIQUE","unique":{"base":"Carnal Mitts"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3BpZGVyQXJtb3VyIEdsb3ZlcyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/cb4ae94f6d/SpiderArmour%20Gloves.png"} +{"name":"豐富心靈","refName":"Fertile Mind","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0RFWHRvSU5UIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b363fdbd52/DEXtoINT.png"} +{"name":"狂熱之心","refName":"Fevered Mind","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0JsdWVDb3JydXB0NCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ad8d514185/BlueCorrupt4.png"} +{"name":"費德利塔斯之鋒","refName":"Fidelitas' Spike","namespace":"UNIQUE","unique":{"base":"Jagged Foil"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0ZpZGVsaXRhc1NwaWtlIiwidyI6MSwiaCI6NCwic2NhbGUiOjF9XQ/de1d15ceb1/FidelitasSpike.png"} +{"name":"炔頌","refName":"Firesong","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JlZEpld2VsNyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/dd6b13c77c/RedJewel7.png"} +{"name":"第一暴虐碎片","refName":"First Piece of Brutality","namespace":"UNIQUE","unique":{"base":"Imperial Staff Piece"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGFyYmluZ2VyU2hhcmRzL1NoYXJkMSIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/4dec967e18/Shard1.png"} +{"name":"第一象限碎片","refName":"First Piece of Directions","namespace":"UNIQUE","unique":{"base":"Blunt Arrow Quiver Piece"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9TaGFyZHMvU2hhcmQxIiwidyI6MSwiaCI6Miwic2NhbGUiOjF9XQ/3e8a036316/Shard1.png"} +{"name":"第一專注碎片","refName":"First Piece of Focus","namespace":"UNIQUE","unique":{"base":"Archon Kite Shield Piece"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoYXJkcy9DaGFubmVsaW5nU2hpZWxkU2hhcmQxIiwidyI6MSwiaCI6Miwic2NhbGUiOjF9XQ/37cf3313be/ChannelingShieldShard1.png"} +{"name":"第一風暴碎片","refName":"First Piece of Storms","namespace":"UNIQUE","unique":{"base":"Callous Mask Piece"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hhcmJpbmdlclNoYXJkcy9TaGFyZDEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/571346519c/Shard1.png"} +{"name":"第一奧術碎片","refName":"First Piece of the Arcane","namespace":"UNIQUE","unique":{"base":"Legion Sword Piece"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0hhcmJpbmdlckxlYWd1ZVNoYXJkcy9IYXJiaW5nZXJTd29yZFNoYXJkMSIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/34740b6337/HarbingerSwordShard1.png"} +{"name":"第一時空碎片","refName":"First Piece of Time","namespace":"UNIQUE","unique":{"base":"Cloth Belt Piece"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvU2hhcmRzL0hhcmJpbmdlckJlbHRTaGFyZDEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/59ab81025f/HarbingerBeltShard1.png"} +{"name":"炎視","refName":"Flamesight","namespace":"UNIQUE","unique":{"base":"Solaris Circlet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0V4cGxvcmVyc1Zpc2lvbkZpcmUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/972275807c/ExplorersVisionFire.png"} +{"name":"肉體與魂靈","refName":"Flesh and Spirit","namespace":"UNIQUE","unique":{"base":"Ironscale Gauntlets"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRmxlc2hBbmRTcGlyaXQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/cff8e05a60/FleshAndSpirit.png"} +{"name":"血肉之嗜","refName":"Flesh-Eater","namespace":"UNIQUE","unique":{"base":"Dream Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U2VW5pcXVlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/2db8b10771/OneHandMace6Unique.png"} +{"name":"人體匠師","refName":"Fleshcrafter","namespace":"UNIQUE","unique":{"base":"Necromancer Silks"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Fc3NlbmNlR2lmdGVyIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/3b3446e019/EssenceGifter.png"} +{"name":"流暢行動","refName":"Fluid Motion","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1NUUnRvREVYIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f5a4ea844d/STRtoDEX.png"} +{"name":"雷霆聖器","refName":"Font of Thunder","namespace":"UNIQUE","unique":{"base":"Mirrored Spiked Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0ZvbnRPZlRodW5kZXIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/dec53fec0c/FontOfThunder.png"} +{"name":"禁忌烈焰","refName":"Forbidden Flame","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1B1enpsZVBpZWNlSmV3ZWxfQ2xlYW5zaW5nRmlyZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ddfe57ac90/PuzzlePieceJewel_CleansingFire.png"} +{"name":"禁忌血肉","refName":"Forbidden Flesh","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1B1enpsZVBpZWNlSmV3ZWxfR3JlYXRUYW5nbGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9035b9ffd4/PuzzlePieceJewel_GreatTangle.png"} +{"name":"禁忌軍帽","refName":"Forbidden Shako","namespace":"UNIQUE","unique":{"base":"Great Crown","fixedStats":["+# to all Attributes"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RoZUVwaXBoYW55IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/e8e44ba854/TheEpiphany.png"} +{"name":"禁果","refName":"Forbidden Taste","namespace":"UNIQUE","unique":{"base":"Quartz Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvUGhhbnRvbUJsb29kIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/d04fc2ce16/PhantomBlood.png"} +{"name":"堅壁誓約","refName":"Fortress Covenant","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0JsdWVKZXdlbDQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5801f4441d/BlueJewel4.png"} +{"name":"第四專注碎片","refName":"Fourth Piece of Focus","namespace":"UNIQUE","unique":{"base":"Archon Kite Shield Piece"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoYXJkcy9DaGFubmVsaW5nU2hpZWxkU2hhcmQ0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/dd368f0f34/ChannelingShieldShard4.png"} +{"name":"狐毛鎧","refName":"Foxshade","namespace":"UNIQUE","unique":{"base":"Wild Leather"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Gb3hzaGFkZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/bf15e97218/Foxshade.png"} +{"name":"異想","refName":"Fractal Thoughts","namespace":"UNIQUE","unique":{"base":"Vaal Mask"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0ZyYWN0YWx0aG91Z2h0cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/64d44c7c52/Fractalthoughts.png"} +{"name":"虛弱","refName":"Fragility","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JlZENvcnJ1cHQ2IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/161d0c411c/RedCorrupt6.png"} +{"name":"霜息","refName":"Frostbreath","namespace":"UNIQUE","unique":{"base":"Ornate Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvRnJvc3RCcmVhdGgiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8a6b305388/FrostBreath.png"} +{"name":"憤怒閉鎖","refName":"Fury Valve","namespace":"UNIQUE","unique":{"base":"Turquoise Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9NZXRhbW9ycGhvc2lzQW11bGV0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f8bdb14091/MetamorphosisAmulet.png"} +{"name":"風視","refName":"Galesight","namespace":"UNIQUE","unique":{"base":"Solaris Circlet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0V4cGxvcmVyc1Zpc2lvbkNvbGQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/702f0515fb/ExplorersVisionCold.png"} +{"name":"豪賭","refName":"Gamblesprint","namespace":"UNIQUE","unique":{"base":"Hydrascale Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9VbHRpbWF0dW1Cb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/2e5d0d7dc7/UltimatumBoots.png"} +{"name":"剛勇","refName":"Gang's Momentum","namespace":"UNIQUE","unique":{"base":"Legion Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9HYW5nc0Jvb3RzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/4443459d14/GangsBoots.png"} +{"name":"無常禮袍","refName":"Garb of the Ephemeral","namespace":"UNIQUE","unique":{"base":"Savant's Robe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaGVUZW1wbGFyc1JvYmVzIiwidyI6MiwiaCI6Mywic2NhbGUiOjEsInN5bnRoZXNpc2VkIjp0cnVlfV0/bd9f49e4b4/TheTemplarsRobes.png"} +{"name":"卡洛翰之影","refName":"Garukhan's Flight","namespace":"UNIQUE","unique":{"base":"Stealth Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Ud29Ub25lZEJvb3RzQUxUIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/4e0bb109ae/TwoTonedBootsALT.png"} +{"name":"吉爾菲的淨罪之錘","refName":"Geofri's Baptism","namespace":"UNIQUE","unique":{"base":"Brass Maul"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U3VW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/378419527e/TwoHandMace7Unique.png"} +{"name":"吉爾菲的榮光","refName":"Geofri's Crest","namespace":"UNIQUE","unique":{"base":"Great Crown"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0dlb2ZyaXNDcmVzdCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/4daae52cf5/GeofrisCrest.png"} +{"name":"吉爾菲的聖殿","refName":"Geofri's Sanctuary","namespace":"UNIQUE","unique":{"base":"Elegant Ringmail"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9HZW9mcmlTYW5jdHVhcnkiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/6f94f74244/GeofriSanctuary.png"} +{"name":"鬧鬼","refName":"Ghostwrithe","namespace":"UNIQUE","unique":{"base":"Silken Vest"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9HaG9zdHdlYXZlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/95d1911033/Ghostweave.png"} +{"name":"大屠殺","refName":"Giantsbane","namespace":"UNIQUE","unique":{"base":"Bronze Gauntlets"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRGVhdGhmb3JnZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/88c0b6908a/Deathforge.png"} +{"name":"神賜","refName":"Gifts from Above","namespace":"UNIQUE","unique":{"base":"Diamond Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvRGlhbW9uZFJpbmdVbmlxdWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8edaf6655a/DiamondRingUnique.png"} +{"name":"混沌一瞥","refName":"Glimpse of Chaos","namespace":"UNIQUE","unique":{"base":"Vaal Mask"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1ZhYWxDb3JydXB0aW9uSGVsbWV0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/3476e5818d/VaalCorruptionHelmet.png"} +{"name":"憂愁獠根","refName":"Gloomfang","namespace":"UNIQUE","unique":{"base":"Blue Pearl Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9TaGFkb3dSYXkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9c05fb0b03/ShadowRay.png"} +{"name":"輝煌的虛榮","refName":"Glorious Vanity","namespace":"UNIQUE","unique":{"base":"Timeless Jewel","fixedStats":["Historic"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1ZhYWxDaXZpbGl6YXRpb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/568c0e7c98/VaalCivilization.png"} +{"name":"貪食腰","refName":"Gluttony","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvR2x1dHRvbnkiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/850a3a646d/Gluttony.png"} +{"name":"妖精之緣","refName":"Goblinedge","namespace":"UNIQUE","unique":{"base":"Ambusher"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0dvYmxpbkVkZ2UiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/61d1382d07/GoblinEdge.png"} +{"name":"金縷帽","refName":"Goldrim","namespace":"UNIQUE","unique":{"base":"Leather Cap"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleFVuaXF1ZTIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/7f4908ef2f/HelmetDexUnique2.png"} +{"name":"龍炎足跡","refName":"Goldwyrm","namespace":"UNIQUE","unique":{"base":"Nubuck Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleFVuaXF1ZTIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/548228175c/BootsDexUnique2.png"} +{"name":"血裂","refName":"Gorebreaker","namespace":"UNIQUE","unique":{"base":"Spiked Club"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2UzVW5pcXVlIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/c3ca02cad8/OneHandMace3Unique.png"} +{"name":"血鑿","refName":"Goredrill","namespace":"UNIQUE","unique":{"base":"Skinning Knife"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0dvcmVkcmlsbCIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/e61d6f038e/Goredrill.png"} +{"name":"戈耳戈的凝視","refName":"Gorgon's Gaze","namespace":"UNIQUE","unique":{"base":"Regicide Mask"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1BpbGxhcnNPZkFydW4iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/49ec219fc5/PillarsOfArun.png"} +{"name":"女神恩典","refName":"Grace of the Goddess","namespace":"UNIQUE","unique":{"base":"Prophecy Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9VYmVyTWF2ZW5XYW5kIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/1e06b23a5b/UberMavenWand.png"} +{"name":"巨光譜","refName":"Grand Spectrum","namespace":"UNIQUE","unique":{"base":"Viridian Jewel","fixedStats":[]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dyZWVuR3JhbmRTcGVjdHJ1bSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/df87965e3f/GreenGrandSpectrum.png"} +{"name":"巨光譜","refName":"Grand Spectrum","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel","fixedStats":[]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0JsdWVHcmFuZFNwZWN0cnVtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b1282ca004/BlueGrandSpectrum.png"} +{"name":"巨光譜","refName":"Grand Spectrum","namespace":"UNIQUE","unique":{"base":"Crimson Jewel","fixedStats":[]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JlZEdyYW5kU3BlY3RydW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3e6789a065/RedGrandSpectrum.png"} +{"name":"束縛夜影","refName":"Grasping Nightshade","namespace":"UNIQUE","unique":{"base":"Sporebloom Tincture"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL1VuaXF1ZVNwb3JlYmxvb20iLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MX1d/7b26d28408/UniqueSporebloom.png"} +{"name":"格拉圖斯之記","refName":"Grattus Signet","namespace":"UNIQUE","unique":{"base":"Diamond Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvR3JhdHR1c1JpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/230a414e3d/GrattusRing.png"} +{"name":"幽墓束縛","refName":"Gravebind","namespace":"UNIQUE","unique":{"base":"Hydrascale Gauntlets"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRGVhdGhHcmlwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/371752d95c/DeathGrip.png"} +{"name":"格雷文的秘密","refName":"Graven's Secret","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQWx0Q2hhcmdlSW50IiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/1300aed2ac/AltChargeInt.png"} +{"name":"偉大老者之觸","refName":"Great Old One's Tentacles","namespace":"UNIQUE","unique":{"base":"Eelskin Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvSW1wYWxlR2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/37dd8738f8/ImpaleGloves.png"} +{"name":"邪神庇護","refName":"Great Old One's Ward","namespace":"UNIQUE","unique":{"base":"Corrugated Buckler"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0dyZWF0T2xkT25lc1dhcmQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3c0efbf6be/GreatOldOnesWard.png"} +{"name":"貪婪之擁","refName":"Greed's Embrace","namespace":"UNIQUE","unique":{"base":"Golden Plate"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9HcmVlZHNFbWJyYWNlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/0e8984128f/GreedsEmbrace.png"} +{"name":"沃德步伐","refName":"Grelwood Shank","namespace":"UNIQUE","unique":{"base":"Eternal Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL1ZlcmRhbnRHdWFyZGlhblN3b3JkMSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/b085f741a5/VerdantGuardianSword1.png"} +{"name":"議會之握","refName":"Grip of the Council","namespace":"UNIQUE","unique":{"base":"Arcanist Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50M1VuaXF1ZTIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/88338fac41/GlovesInt3Unique2.png"} +{"name":"葛魯斯寇真皮","refName":"Gruthkul's Pelt","namespace":"UNIQUE","unique":{"base":"Wyrmscale Doublet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9XaWxlZmFuZ3NQZWx0IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/e393dbd9af/WilefangsPelt.png"} +{"name":"逆凝之血","refName":"Haemophilia","namespace":"UNIQUE","unique":{"base":"Serpentscale Gauntlets"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvYmxlZWRnbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/005045bec7/bleedgloves.png"} +{"name":"強彈辯駁","refName":"Hale Negator","namespace":"UNIQUE","unique":{"base":"Mind Cage"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hhbGVOZWdhdG9yIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/f1a292f713/HaleNegator.png"} +{"name":"元帥殿堂","refName":"Hall of Grandmasters","namespace":"UNIQUE","unique":{"base":"Promenade Map"},"map":{},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9IYWxsT2ZHcmFuZG1hc3RlcnMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/73778c0f28/HallOfGrandmasters.png"} +{"name":"萬聖之地","refName":"Hallowed Ground","namespace":"UNIQUE","unique":{"base":"Cemetery Map"},"map":{"screenshot":"https://i.imgur.com/CvyxLuI.jpg"},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9IYWxsb3dlZEdyb3VuZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0dfbdc7da9/HallowedGround.png"} +{"name":"熱情之手","refName":"Hand of the Fervent","namespace":"UNIQUE","unique":{"base":"Zealot Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR3JpcG9mU2FjcmlmaWNlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/9ac4073c28/GripofSacrifice.png"} +{"name":"思動之手","refName":"Hand of Thought and Motion","namespace":"UNIQUE","unique":{"base":"Imperial Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9UaG91Z2h0TW90aW9uMSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/cc443b5108/ThoughtMotion1.png"} +{"name":"智行之手","refName":"Hand of Wisdom and Action","namespace":"UNIQUE","unique":{"base":"Imperial Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9UaG91Z2h0TW90aW9uMiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/69f2b430d0/ThoughtMotion2.png"} +{"name":"聖宗神手","refName":"Hands of the High Templar","namespace":"UNIQUE","unique":{"base":"Crusader Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvSGFuZHNPZlRoZUhpZ2hUZW1wbGFyIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/239b2df5cf/HandsOfTheHighTemplar.png"} +{"name":"怨恨鍛造","refName":"Hateforge","namespace":"UNIQUE","unique":{"base":"Ancient Gauntlets"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvVmFhbFJhZ2VHbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/fbc53ac89d/VaalRageGloves.png"} +{"name":"獵首","refName":"Headhunter","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSGVhZGh1bnRlciIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/e9542ec6ee/Headhunter.png"} +{"name":"靈體轉換","refName":"Healthy Mind","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0JsdWVKZXdlbDciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/73584bc29e/BlueJewel7.png"} +{"name":"結魂之環","refName":"Heartbound Loop","namespace":"UNIQUE","unique":{"base":"Moonstone Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvSGVhcnRib3VuZFJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c214aff507/HeartboundRing.png"} +{"name":"裂心刃","refName":"Heartbreaker","namespace":"UNIQUE","unique":{"base":"Royal Skean"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0hlYXJ0YnJlYWtlciIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/fa73c4d5b4/Heartbreaker.png"} +{"name":"寒焰","refName":"Heatshiver","namespace":"UNIQUE","unique":{"base":"Leather Hood"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlYXRzaGl2ZXIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/b1860c890e/Heatshiver.png"} +{"name":"霸權時代","refName":"Hegemony's Era","namespace":"UNIQUE","unique":{"base":"Judgement Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGVnZW1vbnlzRXJhIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/85929506ae/HegemonysEra.png"} +{"name":"異教面紗","refName":"Heretic's Veil","namespace":"UNIQUE","unique":{"base":"Deicide Mask"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0ZhY2VPZkRpdmluaXR5IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/dcefc8975e/FaceOfDivinity.png"} +{"name":"嗜血黑茲瑪娜","refName":"Hezmana's Bloodlust","namespace":"UNIQUE","unique":{"base":"Vaal Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9IZXptYW5hc0Jsb29kbHVzdCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/fdbd48147f/HezmanasBloodlust.png"} +{"name":"深藏的潛能","refName":"Hidden Potential","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL3VuaXF1ZTE3IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/c445828c50/unique17.png"} +{"name":"長卷","refName":"Hiltless","namespace":"UNIQUE","unique":{"base":"Reaver Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL0hpbHRsZXNzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/04689b7d41/Hiltless.png"} +{"name":"悉妮蔻拉之眼","refName":"Hinekora's Sight","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9IaW5la29yYXNTaWdodCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/13820d857f/HinekorasSight.png"} +{"name":"私慾的光輝","refName":"Honourhome","namespace":"UNIQUE","unique":{"base":"Soldier Helmet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hvbm91cmhvbWUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/11382c25e9/Honourhome.png"} +{"name":"破滅之希","refName":"Hopeshredder","namespace":"UNIQUE","unique":{"base":"Ranger Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0VsZGVyQm93IiwidyI6MiwiaCI6NCwic2NhbGUiOjEsImVsZGVyIjp0cnVlfV0/0dcd0422ae/ElderBow.png"} +{"name":"雷姆諾的奪命樂具","refName":"Hrimnor's Hymn","namespace":"UNIQUE","unique":{"base":"Sledgehammer"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U2VW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/31ad6258ac/TwoHandMace6Unique.png"} +{"name":"雷姆諾的豪情","refName":"Hrimnor's Resolve","namespace":"UNIQUE","unique":{"base":"Samnite Helmet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hyaW1ub3JzUmVzb2x2ZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/cb3ab90132/HrimnorsResolve.png"} +{"name":"冰冷之眼","refName":"Hrimsorrow","namespace":"UNIQUE","unique":{"base":"Goathide Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvSHJpbXNvcnJvdyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/bc13b3487c/Hrimsorrow.png"} +{"name":"海昂的狂怒","refName":"Hyaon's Fury","namespace":"UNIQUE","unique":{"base":"Legion Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0h5YW9uc0Z1cnkiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/1abaf6507b/HyaonsFury.png"} +{"name":"極地束腹","refName":"Hyperboreus","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmV0cmF5YWxfVW5pcXVlX1RyYW5zcG9ydF9CZWx0IiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/52b9b09a12/Betrayal_Unique_Transport_Belt.png"} +{"name":"西里的嗜血之矢","refName":"Hyrri's Bite","namespace":"UNIQUE","unique":{"base":"Sharktooth Arrow Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9Icnl5aXNCaXRlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/91937737c4/HryyisBite.png"} +{"name":"西里的戰衣","refName":"Hyrri's Ire","namespace":"UNIQUE","unique":{"base":"Zodiac Leather"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4M0NVbmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/fb532d6c21/BodyDex3CUnique.png"} +{"name":"西里的真理","refName":"Hyrri's Truth","namespace":"UNIQUE","unique":{"base":"Jade Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9TeW50aGVzaXNBY2N1cmFjeUFtdWxldCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6062fd361e/SynthesisAccuracyAmulet.png"} +{"name":"冰風軌跡","refName":"Icefang Orbit","namespace":"UNIQUE","unique":{"base":"Iron Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvSWNlZmFuZ09yYml0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/da6e5eb5aa/IcefangOrbit.png"} +{"name":"冰息","refName":"Icetomb","namespace":"UNIQUE","unique":{"base":"Latticed Ringmail"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9JY2V0b21iIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/956a92a3fd/Icetomb.png"} +{"name":"一文字","refName":"Ichimonji","namespace":"UNIQUE","unique":{"base":"Corsair Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0JsYWRlT2ZWYXN0cmkiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/a01d200e74/BladeOfVastri.png"} +{"name":"伊基亞呼的承諾","refName":"Ikiaho's Promise","namespace":"UNIQUE","unique":{"base":"Coral Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Ja2lhaG9BbXVsZXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/119e919299/IkiahoAmulet.png"} +{"name":"永生","refName":"Immortal Flesh","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSW1tb3J0YWxGbGVzaCIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/fceb1b8f8c/ImmortalFlesh.png"} +{"name":"不變之力","refName":"Immutable Force","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JlZEpld2VsMiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/87ba4f5e53/RedJewel2.png"} +{"name":"逃脫不能","refName":"Impossible Escape","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL01pbmRib3JlUGVhcmwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/367683a1bb/MindborePearl.png"} +{"name":"不在場證明","refName":"Impresence","namespace":"UNIQUE","unique":{"base":"Onyx Amulet","fixedStats":["Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy","Regenerate #% of Life per second","Regenerate #% of Energy Shield per second","#% increased Stun and Block Recovery","Adds # to # Cold Damage","Adds # to # Fire Damage","Adds # to # Lightning Damage","Adds # to # Physical Damage"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9FbGRlckZpcmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MSwiZWxkZXIiOnRydWV9XQ/e46ce6b266/ElderFire.png"} +{"name":"烈炎之心","refName":"Incandescent Heart","namespace":"UNIQUE","unique":{"base":"Saintly Chainmail"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9JbGx1bWluYXRpcyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/da0dbbc10a/Illuminatis.png"} +{"name":"地印之環","refName":"Indigon","namespace":"UNIQUE","unique":{"base":"Hubris Circlet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1ViZXJFbGRlckhlbG1ldCIsInciOjIsImgiOjIsInNjYWxlIjoxLCJzaGFwZXIiOnRydWV9XQ/3ba8eceecd/UberElderHelmet.png"} +{"name":"慣性","refName":"Inertia","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0RFWHRvU1RSIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2fc9d85725/DEXtoSTR.png"} +{"name":"無法掙脫之命","refName":"Inextricable Fate","namespace":"UNIQUE","unique":{"base":"Fugitive Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9WaW5lZ3Jhc3BCb290c1VuaXF1ZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/4f56e4bdb0/VinegraspBootsUnique.png"} +{"name":"煉獄之心","refName":"Infernal Mantle","namespace":"UNIQUE","unique":{"base":"Widowsilk Robe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9JbmZlcm5hbG1hbnRsZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/ea1b86d7f9/Infernalmantle.png"} +{"name":"穿雲","refName":"Infractem","namespace":"UNIQUE","unique":{"base":"Decimation Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0luZnJhY3RlbSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/ea06e13fb8/Infractem.png"} +{"name":"神域之殿.煉獄","refName":"Infused Beachhead","namespace":"UNIQUE","unique":{"base":"Harbinger Map"},"map":{},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9IYXJiaW5nZXJVYmVyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/91398360e4/HarbingerUber.png"} +{"name":"茵斯布雷之刃","refName":"Innsbury Edge","namespace":"UNIQUE","unique":{"base":"Elder Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0VsZGVyU3dvcmQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2bd26d4bf6/ElderSword.png"} +{"name":"印卜薩的心碎","refName":"Inpulsa's Broken Heart","namespace":"UNIQUE","unique":{"base":"Sadist Garb"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9PblNob2NrZWQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/ce499f7b0b/OnShocked.png"} +{"name":"求知的熱情","refName":"Inspired Learning","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL3VuaXF1ZTciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/05e61f124f/unique7.png"} +{"name":"直覺之躍","refName":"Intuitive Leap","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL3VuaXF1ZTYiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f2dc5c37a5/unique6.png"} +{"name":"堅毅日耀","refName":"Invictus Solaris","namespace":"UNIQUE","unique":{"base":"Archon Kite Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0ludmljdHVzIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/98194c56fe/Invictus.png"} +{"name":"茵雅的頓悟","refName":"Inya's Epiphany","namespace":"UNIQUE","unique":{"base":"Arcanist Slippers"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9QYWxlQ291bmNpbEJvb3RzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/78e277875f/PaleCouncilBoots.png"} +{"name":"鋼鐵指揮","refName":"Iron Commander","namespace":"UNIQUE","unique":{"base":"Death Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0lyb25Db21tZW5kYW50IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/001ca245e3/IronCommendant.png"} +{"name":"薩雷許的誘惑","refName":"Ixchel's Temptation","namespace":"UNIQUE","unique":{"base":"Gold Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQWx0QnJlYWNoIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b2c5201c70/AltBreach.png"} +{"name":"劊子手.傑克","refName":"Jack, the Axe","namespace":"UNIQUE","unique":{"base":"Vaal Hatchet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9KYWNrdGhlYXhlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f1f813fe9f/Jacktheaxe.png"} +{"name":"苦痛狂鯊","refName":"Jaws of Agony","namespace":"UNIQUE","unique":{"base":"Supreme Spiked Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0JlYXJUcmFwU2hpZWxkMiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/4d66593647/BearTrapShield2.png"} +{"name":"喬赫黑鋼","refName":"Jorrhast's Blacksteel","namespace":"UNIQUE","unique":{"base":"Steelhead"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvSm9ycmhhc3RzQmxhY2tzdGVlbCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/a1ee3a6a3c/JorrhastsBlacksteel.png"} +{"name":"卡胡圖羅亞的確信","refName":"Kahuturoa's Certainty","namespace":"UNIQUE","unique":{"base":"Ancient Greaves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9LYWh1dHVyb2FCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/1453ec94bb/KahuturoaBoots.png"} +{"name":"卡蘭德之觸","refName":"Kalandra's Touch","namespace":"UNIQUE","unique":{"base":"Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTWlycm9yUmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxLCJkdXBsaWNhdGVkIjp0cnVlfV0/2cbd02eced/MirrorRing.png"} +{"name":"卡莉莎的優雅之影","refName":"Kalisa's Grace","namespace":"UNIQUE","unique":{"base":"Samite Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvS2FsaXNhc0dyYWNlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/b165e39eff/KalisasGrace.png"} +{"name":"冰霜之鏡","refName":"Kaltenhalt","namespace":"UNIQUE","unique":{"base":"Painted Buckler"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleFVuaXF1ZTYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/543c4a2444/ShieldDexUnique6.png"} +{"name":"岡姆的束縛","refName":"Kaom's Binding","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvS2FvbUJlbHQiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/94edbfb12d/KaomBelt.png"} +{"name":"岡姆的壯志","refName":"Kaom's Heart","namespace":"UNIQUE","unique":{"base":"Glorious Plate"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyM0NVbmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/1027cdf1ad/BodyStr3CUnique.png"} +{"name":"岡姆的霸業","refName":"Kaom's Primacy","namespace":"UNIQUE","unique":{"base":"Karui Chopper"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlMTFVbmlxdWUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/544409d7f6/TwoHandAxe11Unique.png"} +{"name":"岡姆的穩重之靴","refName":"Kaom's Roots","namespace":"UNIQUE","unique":{"base":"Titan Greaves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9LYW9tc1Jvb3RzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/23b569d35e/KaomsRoots.png"} +{"name":"岡姆的遠見","refName":"Kaom's Sign","namespace":"UNIQUE","unique":{"base":"Coral Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzJVbmlxdWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/15ce180809/Ring2Unique.png"} +{"name":"岡姆之魂","refName":"Kaom's Spirit","namespace":"UNIQUE","unique":{"base":"Titan Gauntlets"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvS2FvbXNTcGlyaXQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/eefa7c48f9/KaomsSpirit.png"} +{"name":"卡魯的戰徽","refName":"Karui Ward","namespace":"UNIQUE","unique":{"base":"Jade Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQ0VW5pcXVlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/069e4f76ea/Amulet4Unique.png"} +{"name":"奇亞拉的決心","refName":"Kiara's Determination","namespace":"UNIQUE","unique":{"base":"Silver Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvS2lhcmFzRGV0ZXJtaW5hdGlvbiIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/591dcd7979/KiarasDetermination.png"} +{"name":"基加薩魯","refName":"Kikazaru","namespace":"UNIQUE","unique":{"base":"Topaz Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvS2lrYXphcnUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/911affa06b/Kikazaru.png"} +{"name":"基洛阿瓦的咆嘯","refName":"Kiloava's Bluster","namespace":"UNIQUE","unique":{"base":"Ironwood Buckler"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0tpbG9hdmFTaGllbGQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/b1ec2a922a/KiloavaShield.png"} +{"name":"王者之刃","refName":"Kingmaker","namespace":"UNIQUE","unique":{"base":"Despot Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9BbGV4YXhlYW5kaGVhcnRicmVha2VyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/fb47351eee/Alexaxeandheartbreaker.png"} +{"name":"皇家衛甲","refName":"Kingsguard","namespace":"UNIQUE","unique":{"base":"Conquest Chainmail"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9LaW5nc2d1YXJkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/28d6e7ff11/Kingsguard.png"} +{"name":"金繕","refName":"Kintsugi","namespace":"UNIQUE","unique":{"base":"Exquisite Leather"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9LaW50c3VnaSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/8fcd7ea593/Kintsugi.png"} +{"name":"奇塔弗之盛宴","refName":"Kitava's Feast","namespace":"UNIQUE","unique":{"base":"Void Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9LaXRhdmFzSHVuZ2VyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/7e0b7ac41a/KitavasHunger.png"} +{"name":"奇塔弗的教學","refName":"Kitava's Teachings","namespace":"UNIQUE","unique":{"base":"Small Cluster Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0Rpc2NpcGxlT2ZLaXRhdmFKZXdlbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/43d818445c/DiscipleOfKitavaJewel.png"} +{"name":"奇塔弗之渴望","refName":"Kitava's Thirst","namespace":"UNIQUE","unique":{"base":"Zealot Helmet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0tpdGF2YXNUaGlyc3QiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/585034f884/KitavasThirst.png"} +{"name":"剛多的虛榮","refName":"Kondo's Pride","namespace":"UNIQUE","unique":{"base":"Ezomyte Blade"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL0tvbmRvc1ByaWRlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/59f41a868c/KondosPride.png"} +{"name":"孔明的神算","refName":"Kongming's Stratagem","namespace":"UNIQUE","unique":{"base":"Ancient Spirit Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0tvbmdtaW5nc1N0cmF0YWdlbSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/b7f1e57399/KongmingsStratagem.png"} +{"name":"康戈的戰炎","refName":"Kongor's Undying Rage","namespace":"UNIQUE","unique":{"base":"Terror Maul"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvS29uZ29yc1VuZHlpbmdSYWdlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/5fa26110bc/KongorsUndyingRage.png"} +{"name":"柯戈的邪眼","refName":"Kurgal's Gaze","namespace":"UNIQUE","unique":{"base":"Hypnotic Eye Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0h5cG5vdGljRXllVW5pcXVlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f909ca8b69/HypnoticEyeUnique.png"} +{"name":"拉奇許之刃","refName":"Lakishu's Blade","namespace":"UNIQUE","unique":{"base":"Elegant Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDVVbmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5a5771852b/OneHandSword5Unique.png"} +{"name":"終息","refName":"Last Resort","namespace":"UNIQUE","unique":{"base":"Nailed Fist"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9OZXJhc0xhc3RSZXNvcnQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5f5a6bd205/NerasLastResort.png"} +{"name":"拉維安加之泉","refName":"Lavianga's Spirit","namespace":"UNIQUE","unique":{"base":"Sanctified Mana Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvTGF2aWFuZ2FzT2lsIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/44f064d737/LaviangasOil.png"} +{"name":"拉維安加的智慧","refName":"Lavianga's Wisdom","namespace":"UNIQUE","unique":{"base":"War Hammer"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2UzYSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/3c0044c7be/OneHandMace3a.png"} +{"name":"野性法則","refName":"Law of the Wilds","namespace":"UNIQUE","unique":{"base":"Hellion's Paw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9Xb2xmQ2xhdyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/8dd39cb98e/WolfClaw.png"} +{"name":"英靈寶環","refName":"Le Heup of All","namespace":"UNIQUE","unique":{"base":"Iron Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTGVoZXVwb2ZhbGwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6ea73cc7e4/Leheupofall.png"} +{"name":"領導力的代價","refName":"Leadership's Price","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9LdXJhaXNNYXN0ZXJ5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/bf33f8013a/KuraisMastery.png"} +{"name":"祭品之繫","refName":"Leash of Oblation","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvTGVhc2hPZk9ibGF0aW9uIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/f865c7f643/LeashOfOblation.png"} +{"name":"共鳴之面","refName":"Leer Cast","namespace":"UNIQUE","unique":{"base":"Festival Mask"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDl4IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/6693f97fdf/HelmetDexInt9x.png"} +{"name":"傳承憤怒","refName":"Legacy of Fury","namespace":"UNIQUE","unique":{"base":"Wyrmscale Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TY29yY2hlZEVhcnRoIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/fda63f7588/ScorchedEarth.png"} +{"name":"痲瘋的醫款","refName":"Leper's Alms","namespace":"UNIQUE","unique":{"base":"Mirrored Spiked Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0xlcGVyc0FsbXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3f9c2a1cec/LepersAlms.png"} +{"name":"致命的驕傲","refName":"Lethal Pride","namespace":"UNIQUE","unique":{"base":"Timeless Jewel","fixedStats":["Historic"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0thcnVpQ2l2aWxpemF0aW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/04aefd20e6/KaruiCivilization.png"} +{"name":"生機之記","refName":"Lifesprig","namespace":"UNIQUE","unique":{"base":"Driftwood Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9MaWZlU3ByaWciLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/8e97a1d808/LifeSprig.png"} +{"name":"月影之耀","refName":"Light of Lunaris","namespace":"UNIQUE","unique":{"base":"Jingling Spirit Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0x1bmFyaXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/a684af2793/Lunaris.png"} +{"name":"魔道之衣","refName":"Lightbane Raiment","namespace":"UNIQUE","unique":{"base":"Ornate Ringmail"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9MaWdodGJhbmVyYWlubWVudCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/016757db31/Lightbanerainment.png"} +{"name":"雷語","refName":"Lightning Coil","namespace":"UNIQUE","unique":{"base":"Desert Brigandine"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9MaWdodG5pbmdDb2lsIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/1b36c39f5a/LightningCoil.png"} +{"name":"光明獵盜者","refName":"Lightpoacher","namespace":"UNIQUE","unique":{"base":"Great Crown"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0FieXNzSGVsbWV0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/45c869b05c/AbyssHelmet.png"} +{"name":"斷罪","refName":"Limbsplit","namespace":"UNIQUE","unique":{"base":"Woodsplitter"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlX3NwYXJlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/6cc29798f1/TwoHandAxe_spare.png"} +{"name":"獅吼精華","refName":"Lion's Roar","namespace":"UNIQUE","unique":{"base":"Granite Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MveUZsYXNrNSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/69fe070e32/yFlask5.png"} +{"name":"獅眼的隕落","refName":"Lioneye's Fall","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0xpb25leWVzRmFsbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/164c5c1080/LioneyesFall.png"} +{"name":"獅眼的戰弓","refName":"Lioneye's Glare","namespace":"UNIQUE","unique":{"base":"Imperial Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0Jvdzh1bmlxdWUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/29fc966523/Bow8unique.png"} +{"name":"獅眼的鬥志","refName":"Lioneye's Paws","namespace":"UNIQUE","unique":{"base":"Bronzescale Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9MaW9uZXllc1Bhd3MiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/550a8f59d4/LioneyesPaws.png"} +{"name":"獅眼的榮耀之盾","refName":"Lioneye's Remorse","namespace":"UNIQUE","unique":{"base":"Pinnacle Tower Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0clVuaXF1ZTYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/dd7ee8e1a0/ShieldStrUnique6.png"} +{"name":"獅眼的視線","refName":"Lioneye's Vision","namespace":"UNIQUE","unique":{"base":"Crusader Plate"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9MaW9uZXllc0FybW91ciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/b6e10a9216/LioneyesArmour.png"} +{"name":"意識之緣","refName":"Lochtonial Caress","namespace":"UNIQUE","unique":{"base":"Iron Gauntlets"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvTG9jaHRvbmlhbENhcmVzcyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/4609116291/LochtonialCaress.png"} +{"name":"智者織衫","refName":"Loreweave","namespace":"UNIQUE","unique":{"base":"Elegant Ringmail"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Mb3Jld2VhdmUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/fd11495220/Loreweave.png"} +{"name":"羅里的幸運之燈","refName":"Lori's Lantern","namespace":"UNIQUE","unique":{"base":"Prismatic Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTG9yaXNMYW50ZXJuIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/7abe3ca54f/LorisLantern.png"} +{"name":"狼蛛","refName":"Lycosidae","namespace":"UNIQUE","unique":{"base":"Rawhide Tower Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0x5Y29zaWRhZSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/ec38e32a56/Lycosidae.png"} +{"name":"瑪塔的教導","refName":"Maata's Teaching","namespace":"UNIQUE","unique":{"base":"Karui Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9NYWF0YVNjZXB0cmUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/27dd9da5a6/MaataSceptre.png"} +{"name":"詭計魔手","refName":"Machina Mitts","namespace":"UNIQUE","unique":{"base":"Murder Mitts"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvODU0NzkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/360a5df732/85479.png"} +{"name":"混沌之淵","refName":"Maelström of Chaos","namespace":"UNIQUE","unique":{"base":"Atoll Map"},"map":{"screenshot":"https://i.imgur.com/Y7V6E2k.jpg"},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9NYWVsc3Ryb21vZkNoYW9zIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/7772c4e971/MaelstromofChaos.png"} +{"name":"魔血","refName":"Mageblood","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSW5qZWN0b3JCZWx0IiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/21ec0269de/InjectorBelt.png"} +{"name":"堅毅之蝕","refName":"Magna Eclipsis","namespace":"UNIQUE","unique":{"base":"Pinnacle Tower Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL01hZ25pc0VjbGlwc2lzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/1e76b68e1a/MagnisEclipsis.png"} +{"name":"瑪哈薩多的陰謀","refName":"Mahuxotl's Machination","namespace":"UNIQUE","unique":{"base":"Steel Kite Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL01haHV4b3RsU2hpZWxkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/b39b6fe011/MahuxotlShield.png"} +{"name":"瑪拉凱的巧技","refName":"Malachai's Artifice","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTWFsYWNoYWlzQXJ0aWZpY2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/dfbb52ebfe/MalachaisArtifice.png"} +{"name":"輪迴","refName":"Malachai's Loop","namespace":"UNIQUE","unique":{"base":"Harmonic Spirit Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL01hbGFjaGFpTG9vcCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/8c38fb6a4e/MalachaiLoop.png"} +{"name":"瑪拉凱之面","refName":"Malachai's Mark","namespace":"UNIQUE","unique":{"base":"Murder Mitts"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvTWFsYWNoYWlzTWFyayIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/2f2a8c0dff/MalachaisMark.png"} +{"name":"瑪拉凱的祭具","refName":"Malachai's Simula","namespace":"UNIQUE","unique":{"base":"Iron Mask"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01hbGFjaGFpc1NpbXVsYSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/8bf83455f4/MalachaisSimula.png"} +{"name":"瑪拉凱的遠見","refName":"Malachai's Vision","namespace":"UNIQUE","unique":{"base":"Praetor Crown"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01hbGFjaGFpc1Zpc2lvbiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/bbdd9c241f/MalachaisVision.png"} +{"name":"馬雷葛蘿的殘暴","refName":"Maligaro's Cruelty","namespace":"UNIQUE","unique":{"base":"Turquoise Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQxNSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f1b938bbd1/Amulet15.png"} +{"name":"馬雷葛蘿的染血透鏡","refName":"Maligaro's Lens","namespace":"UNIQUE","unique":{"base":"Compound Spiked Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL01hbGlnYXJvc0xlbnMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/514791cb42/MaligarosLens.png"} +{"name":"馬雷葛蘿的染血之環","refName":"Maligaro's Restraint","namespace":"UNIQUE","unique":{"base":"Chain Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvTWFsaWdhcm9zUmVzdHJhaW50IiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/17a500cb6f/MaligarosRestraint.png"} +{"name":"馬雷葛蘿的血染手套","refName":"Maligaro's Virtuosity","namespace":"UNIQUE","unique":{"base":"Deerskin Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvTWFsaWdhcm9zVmlydG91c2l0eSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7cdbba458f/MaligarosVirtousity.png"} +{"name":"馬洛尼的機關","refName":"Maloney's Mechanism","namespace":"UNIQUE","unique":{"base":"Ornate Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9UcmlnZ2VyUXVpdmVyQmFzZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/1f3958bdb3/TriggerQuiverBase.png"} +{"name":"馬洛尼的暮光","refName":"Maloney's Nightfall","namespace":"UNIQUE","unique":{"base":"Vile Arrow Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9NYWxvbmV5c05pZ2h0ZmFsbCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/aad4bc5b10/MaloneysNightfall.png"} +{"name":"魔能暴風","refName":"Manastorm","namespace":"UNIQUE","unique":{"base":"Lacewood Spirit Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL01hbmFzdG9ybSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/d816fe3053/Manastorm.png"} +{"name":"賊窩","refName":"Mao Kun","namespace":"UNIQUE","unique":{"base":"Shore Map"},"map":{"screenshot":"https://i.imgur.com/EceJCHQ.jpg"},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9GYWlyZ3JhdmVzTWFwMDEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e1c1de7d51/FairgravesMap01.png"} +{"name":"軍閥行軍","refName":"March of the Legion","namespace":"UNIQUE","unique":{"base":"Legion Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9BdXJhQm9vdHMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/736eee69a4/AuraBoots.png"} +{"name":"臣服之記","refName":"Mark of Submission","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmVkQnJhbmRSaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8f15300177/RedBrandRing.png"} +{"name":"迷茫幻符","refName":"Mark of the Doubting Knight","namespace":"UNIQUE","unique":{"base":"Platinum Kris"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RvdWJ0aW5nS25pZ2h0IiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/a71d0de38e/DoubtingKnight.png"} +{"name":"尊師之印","refName":"Mark of the Elder","namespace":"UNIQUE","unique":{"base":"Steel Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVWJlckVsZGVyUmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxLCJlbGRlciI6dHJ1ZX1d/02f45acdfb/UberElderRing.png"} +{"name":"焰首支環","refName":"Mark of the Red Covenant","namespace":"UNIQUE","unique":{"base":"Tribal Circlet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1BoYW50YXNtbGFGbGFtZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0d222d092f/PhantasmlaFlame.png"} +{"name":"塑者之印","refName":"Mark of the Shaper","namespace":"UNIQUE","unique":{"base":"Opal Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVWJlclNoYXBlclJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MSwic2hhcGVyIjp0cnVlfV0/d856526767/UberShaperRing.png"} +{"name":"爾奇的巨靈之錘","refName":"Marohi Erqi","namespace":"UNIQUE","unique":{"base":"Karui Maul"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2UydW5pcXVlMiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/6ae0a56923/TwoHandMace2unique2.png"} +{"name":"烈士之淨","refName":"Martyr of Innocence","namespace":"UNIQUE","unique":{"base":"Highborn Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvTWFydHlySW5ub2NlbmNlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/6fd4eee9df/MartyrInnocence.png"} +{"name":"瑪莉琳的護體之符","refName":"Marylene's Fallacy","namespace":"UNIQUE","unique":{"base":"Lapis Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9NYXJ5bGVuZXNGYWxsYWN5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1665e40d51/MarylenesFallacy.png"} +{"name":"魂飲化面","refName":"Mask of the Spirit Drinker","namespace":"UNIQUE","unique":{"base":"Magistrate Crown"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01hc2tvZnRoZVNwaXJpdERyaW5rZXIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/7a9bcf5886/MaskoftheSpiritDrinker.png"} +{"name":"惡縫之面","refName":"Mask of the Stitched Demon","namespace":"UNIQUE","unique":{"base":"Magistrate Crown"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01hc2tvZnRoZVN0aXRjaGVkRGVtb24iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0e24c9f156/MaskoftheStitchedDemon.png"} +{"name":"審判莊嚴","refName":"Mask of the Tribunal","namespace":"UNIQUE","unique":{"base":"Magistrate Crown"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldE9mRG9taW5hbmNlMiIsInciOjIsImgiOjIsInNjYWxlIjoxLCJzeW50aGVzaXNlZCI6dHJ1ZX1d/7cac104f3e/HelmetOfDominance2.png"} +{"name":"遠祖之顱","refName":"Matua Tupuna","namespace":"UNIQUE","unique":{"base":"Tarnished Spirit Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL01hdHVhdHVwdW5hIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/db1b66f81d/Matuatupuna.png"} +{"name":"雛鳥之征","refName":"Maw of Conquest","namespace":"UNIQUE","unique":{"base":"Steel Circlet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01hd09mQ29ucXVlc3QiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4d335be1c6/MawOfConquest.png"} +{"name":"頑皮裂齒獸","refName":"Maw of Mischief","namespace":"UNIQUE","unique":{"base":"Bone Helmet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01hd09mTWlzY2hpZWYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/1e970a0f36/MawOfMischief.png"} +{"name":"梅德偉的挑戰","refName":"Medved's Challenge","namespace":"UNIQUE","unique":{"base":"Runic Gauntlets"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQWRhcHRhdGlvbkdsb3Zlc1VuaXF1ZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/865b871153/AdaptationGlovesUnique.png"} +{"name":"妄想症","refName":"Megalomaniac","namespace":"UNIQUE","unique":{"base":"Medium Cluster Jewel","fixedStats":["Adds # Passive Skills","Added Small Passive Skills grant Nothing"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1VuaXF1ZUpld2VsQmFzZTIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/659b3e6b90/UniqueJewelBase2.png"} +{"name":"梅吉諾德的力量泉源","refName":"Meginord's Girdle","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdDdVbmlxdWUiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/59718aca01/Belt7Unique.png"} +{"name":"梅吉諾德的巨力腕甲","refName":"Meginord's Vise","namespace":"UNIQUE","unique":{"base":"Steel Gauntlets"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyNSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/2aaf87839e/GlovesStr5.png"} +{"name":"血肉融合","refName":"Melding of the Flesh","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0VudGFuZ2xlZEVsZW1lbnRzSmV3ZWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/781ab651c4/EntangledElementsJewel.png"} +{"name":"回憶寶庫","refName":"Memory Vault","namespace":"UNIQUE","unique":{"base":"Praetor Crown"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0VsZGVyR3VhcmRpYW4iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/efcf4a9c86/ElderGuardian.png"} +{"name":"僱用兵之命","refName":"Mercenary's Lot","namespace":"UNIQUE","unique":{"base":"Slink Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3RyaWtlVHJ1ZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/4a73ba7bf5/StrikeTrue.png"} +{"name":"冥約","refName":"Midnight Bargain","namespace":"UNIQUE","unique":{"base":"Engraved Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kVW5pcXVlMyIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/1db4fb5dbf/WandUnique3.png"} +{"name":"儒子可教","refName":"Might of the Meek","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1BvdGVuY3lPZlRoZVVucmVtYXJrYWJsZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/10117c9173/PotencyOfTheUnremarkable.png"} +{"name":"力血之怒","refName":"Mightblood Ire","namespace":"UNIQUE","unique":{"base":"Ironwood Tincture"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL1VuaXF1ZUlyb253b29kIiwidyI6MSwiaCI6Miwic2NhbGUiOjF9XQ/204dc321f7/UniqueIronwood.png"} +{"name":"力量獵刃","refName":"Mightflay","namespace":"UNIQUE","unique":{"base":"Flaying Knife"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjJ1bmlxdWUiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/831b56800f/Dagger2unique.png"} +{"name":"激進的信仰","refName":"Militant Faith","namespace":"UNIQUE","unique":{"base":"Timeless Jewel","fixedStats":["Historic"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RlbXBsYXJDaXZpbGl6YXRpb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/09ecf8ac86/TemplarCivilization.png"} +{"name":"議會之心","refName":"Mind of the Council","namespace":"UNIQUE","unique":{"base":"Harlequin Mask"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RodW5kZXJpbmdXaGlzcGVycyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/dd96346bfc/ThunderingWhispers.png"} +{"name":"靈漩","refName":"Mindspiral","namespace":"UNIQUE","unique":{"base":"Aventail Helmet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01pbmRzcGlyYWwiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e4b2c14ad7/Mindspiral.png"} +{"name":"明恩的慧心","refName":"Ming's Heart","namespace":"UNIQUE","unique":{"base":"Amethyst Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTWluZ3NIZWFydCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7395d98bba/MingsHeart.png"} +{"name":"迷霧之璧","refName":"Mistwall","namespace":"UNIQUE","unique":{"base":"Lacquered Buckler"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL01pc3R3YWxsIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/d81f034c2d/Mistwall.png"} +{"name":"沉默之雷","refName":"Mjölner","namespace":"UNIQUE","unique":{"base":"Gavel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvTWpvbG5lciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/3e6fc15b26/Mjolner.png"} +{"name":"莫考之擁","refName":"Mokou's Embrace","namespace":"UNIQUE","unique":{"base":"Ruby Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTW9rb3VzRW1icmFjZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b3bd556d83/MokousEmbrace.png"} +{"name":"凋靈魔爪","refName":"Mon'tregul's Grasp","namespace":"UNIQUE","unique":{"base":"Void Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9Nb250cmVndWxzR3Jhc3AiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/c94034110b/MontregulsGrasp.png"} +{"name":"月嵐","refName":"Moonbender's Wing","namespace":"UNIQUE","unique":{"base":"Tomahawk"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9Nb29uYmVuZGVyc1dpbmciLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/68a04ccc3f/MoonbendersWing.png"} +{"name":"泣月","refName":"Moonsorrow","namespace":"UNIQUE","unique":{"base":"Imbued Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kVW5pcXVlMiIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/7a5458ab50/WandUnique2.png"} +{"name":"噬魂之牙","refName":"Mortem Morsu","namespace":"UNIQUE","unique":{"base":"Fright Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3OHVuaXF1ZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7294efb794/Claw8unique.png"} +{"name":"母親的擁抱","refName":"Mother's Embrace","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvTW90aGVyc0VtYnJhY2UiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/e576fccc3e/MothersEmbrace.png"} +{"name":"啞風尖旗","refName":"Mutewind Pennant","namespace":"UNIQUE","unique":{"base":"Enameled Buckler"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL011dGV3aW5kUGVubmFudCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/a3efaf0921/MutewindPennant.png"} +{"name":"啞風封印","refName":"Mutewind Seal","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTXV0ZXdpbmQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3c7eee1d2b/Mutewind.png"} +{"name":"啞風輕步","refName":"Mutewind Whispersteps","namespace":"UNIQUE","unique":{"base":"Serpentscale Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9UYXJnZW10YWJpIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/fb8815a6bd/Targemtabi.png"} +{"name":"深淵模式","refName":"Nadir Mode","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0ludGVuc2l0eUpld2VsMiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/dd6952365a/IntensityJewel2.png"} +{"name":"奪名","refName":"Nametaker","namespace":"UNIQUE","unique":{"base":"Graceful Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0FmZmxpY3Rpb25Td29yZCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/7b5d4f7c22/AfflictionSword.png"} +{"name":"天性","refName":"Natural Affinity","namespace":"UNIQUE","unique":{"base":"Small Cluster Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL05hdHVyZXNQYXRpZW5jZUpld2VsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1f4e80dd70/NaturesPatienceJewel.png"} +{"name":"自然組織","refName":"Natural Hierarchy","namespace":"UNIQUE","unique":{"base":"Rotfeather Talisman"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hblVuaXF1ZTIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3783a100bf/TalismanUnique2.png"} +{"name":"銀河星雲","refName":"Nebulis","namespace":"UNIQUE","unique":{"base":"Void Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9TY2VwdHJlT2ZNZW1vcmllcyIsInciOjIsImgiOjMsInNjYWxlIjoxLCJzeW50aGVzaXNlZCI6dHJ1ZX1d/42c37f31d6/SceptreOfMemories.png"} +{"name":"銀河眾星","refName":"Nebuloch","namespace":"UNIQUE","unique":{"base":"Nightmare Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvRWxkZXJNYWNlIiwidyI6MiwiaCI6Mywic2NhbGUiOjEsImVsZGVyIjp0cnVlfV0/84e6532c8a/ElderMace.png"} +{"name":"涅瓦里烏斯背向","refName":"Nevalius Inheritance","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvTmV2YWxpdXNCZWx0IiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/db57602cd1/NevaliusBelt.png"} +{"name":"里特拿馬乎","refName":"Ngamahu's Flame","namespace":"UNIQUE","unique":{"base":"Abyssal Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvUmlyaVRlTmdhbWFodSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/55c2a170af/RiriTeNgamahu.png"} +{"name":"拿瑪乎之印","refName":"Ngamahu's Sign","namespace":"UNIQUE","unique":{"base":"Ruby Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTmdhbWFodXNTaWduIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4323574c5a/NgamahusSign.png"} +{"name":"夜守","refName":"Night's Hold","namespace":"UNIQUE","unique":{"base":"Black Maw Talisman"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Tb2NrZXRlZFRhbGlzbWFuIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/89ef47ed1c/SocketedTalisman.png"} +{"name":"夜之觸","refName":"Nightgrip","namespace":"UNIQUE","unique":{"base":"Runic Gages"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3Bpcml0R2xvdmVzVW5pcXVlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/c40058de12/SpiritGlovesUnique.png"} +{"name":"尼米斯","refName":"Nimis","namespace":"UNIQUE","unique":{"base":"Topaz Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVWJlckVhdGVyb2ZXb3JsZHMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6dbfb1baea/UberEaterofWorlds.png"} +{"name":"諾米克的風暴","refName":"Nomic's Storm","namespace":"UNIQUE","unique":{"base":"Strapped Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Ob21pY3NTdG9ybSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/33fedc8e3d/NomicsStorm.png"} +{"name":"虛空","refName":"Null and Void","namespace":"UNIQUE","unique":{"base":"Legion Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvTnVsbEFuZFZvaWQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4f851f97fc/NullAndVoid.png"} +{"name":"虛無之傾","refName":"Null's Inclination","namespace":"UNIQUE","unique":{"base":"Ranger Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL051bGxCb3ciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/067d0e5884/NullBow.png"} +{"name":"努羅的豎琴","refName":"Nuro's Harp","namespace":"UNIQUE","unique":{"base":"Harbinger Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL051cm9zUHVyaWZ5aW5nSGFycCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/36ac89806c/NurosPurifyingHarp.png"} +{"name":"奈可妲之燈","refName":"Nycta's Lantern","namespace":"UNIQUE","unique":{"base":"Crystal Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9MeWNobnVzbHlhZWkiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/c69b77ef8a/Lychnuslyaei.png"} +{"name":"歐霸的咒怨寶庫","refName":"Oba's Cursed Trove","namespace":"UNIQUE","unique":{"base":"Underground Sea Map"},"map":{"screenshot":"https://i.imgur.com/pqbFnju.jpg"},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9vYmEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c94e09c1a8/oba.png"} +{"name":"抹滅","refName":"Obliteration","namespace":"UNIQUE","unique":{"base":"Imbued Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9NYWxlZGljdCIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/2ddc131782/Maledict.png"} +{"name":"朦朧詭面","refName":"Obscurantis","namespace":"UNIQUE","unique":{"base":"Lion Pelt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL09ic2N1cmFudGlzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/95ebfbbef1/Obscurantis.png"} +{"name":"蛇皮獻祭","refName":"Offering to the Serpent","namespace":"UNIQUE","unique":{"base":"Legion Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR3JpcE9mVGhlQ29icmEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MSwic3ludGhlc2lzZWQiOnRydWV9XQ/f77051c363/GripOfTheCobra.png"} +{"name":"奧莉西亞的喜悅","refName":"Olesya's Delight","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQWx0Q2hhcmdlRGV4IiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/caa418edee/AltChargeDex.png"} +{"name":"遠古之印","refName":"Olmec's Sanctum","namespace":"UNIQUE","unique":{"base":"Bone Crypt Map"},"map":{"screenshot":"https://i.imgur.com/UnrLWC4.jpg"},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9vbG1lYyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/844fea2e54/olmec.png"} +{"name":"奧爾羅斯的衝刺","refName":"Olroth's Charge","namespace":"UNIQUE","unique":{"base":"Runic Sollerets"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9BZGFwdGF0aW9uQm9vdHNVbmlxdWUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/a0b7d6e35c/AdaptationBootsUnique.png"} +{"name":"奧爾羅斯的決心","refName":"Olroth's Resolve","namespace":"UNIQUE","unique":{"base":"Iron Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvV2FyZEZsYXNrMDIiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/b6f390075a/WardFlask02.png"} +{"name":"歐門悠根","refName":"Omeyocan","namespace":"UNIQUE","unique":{"base":"Carnal Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9PbWV5b2NhbiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f72f6a000d/Omeyocan.png"} +{"name":"恩德的迅影","refName":"Ondar's Clasp","namespace":"UNIQUE","unique":{"base":"Wrapped Mitts"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvT25kYXJzQ2xhc3AiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/029ff8ad2d/OndarsClasp.png"} +{"name":"一無所有","refName":"One With Nothing","namespace":"UNIQUE","unique":{"base":"Small Cluster Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0RyYWdvblN0eWxlSmV3ZWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/fa9a94b12e/DragonStyleJewel.png"} +{"name":"西拉氣流殺","refName":"Oni-Goroshi","namespace":"UNIQUE","unique":{"base":"Charan's Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1RoZUdvZGRlc3NVbmxlYXNoZWQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/37ecd7541b/TheGoddessUnleashed.png"} +{"name":"奧爾巴拉的姿態","refName":"Orbala's Stand","namespace":"UNIQUE","unique":{"base":"Eelskin Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SdWdnZWRTdGVwQm9vdHMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/d3af99e8fe/RuggedStepBoots.png"} +{"name":"奧瑞亞之終","refName":"Oriath's End","namespace":"UNIQUE","unique":{"base":"Bismuth Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvVWJlclNpcnVzRmxhc2siLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/8758d70627/UberSirusFlask.png"} +{"name":"原罪","refName":"Original Sin","namespace":"UNIQUE","unique":{"base":"Amethyst Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU2FuY3R1bVNwZWNpYWxVbmlxdWVSaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/e0ff1c1c6b/SanctumSpecialUniqueRing.png"} +{"name":"東之飾","refName":"Ornament of the East","namespace":"UNIQUE","unique":{"base":"Gut Ripper"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9Pcm5hbWVudE9mVGhlRWFzdCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/5bea7643a2/OrnamentOfTheEast.png"} +{"name":"歐羅的貢品","refName":"Oro's Sacrifice","namespace":"UNIQUE","unique":{"base":"Infernal Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL09yb3NTYWNyaWZpY2UiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/82b813f27d/OrosSacrifice.png"} +{"name":"厄斯根","refName":"Oskarm","namespace":"UNIQUE","unique":{"base":"Nubuck Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvWmVub0dsb3ZlcyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/a0056936c7/ZenoGloves.png"} +{"name":"和平主義","refName":"Pacifism","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dyZWVuQ29ycnVwdDYiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1b1c1912b2/GreenCorrupt6.png"} +{"name":"尋苦","refName":"Painseeker","namespace":"UNIQUE","unique":{"base":"Shagreen Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR3JpcE9mVW5tYWtpbmciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/9a6348dc81/GripOfUnmaking.png"} +{"name":"矛盾對決","refName":"Paradoxica","namespace":"UNIQUE","unique":{"base":"Vaal Rapier"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL0Fzc2Fzc2luYXRpb25VbmlxdWUyIiwidyI6MSwiaCI6NCwic2NhbGUiOjF9XQ/b84147fcbd/AssassinationUnique2.png"} +{"name":"普蘭德斯之印","refName":"Perandus Blazon","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQnVja2xlZEJlbHRVbmlxdWUyIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/b67e6fa4a9/BuckledBeltUnique2.png"} +{"name":"普蘭德斯之記","refName":"Perandus Signet","namespace":"UNIQUE","unique":{"base":"Paua Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTGFkeVJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d696be5b25/LadyRing.png"} +{"name":"極轉電刑","refName":"Perepiteia","namespace":"UNIQUE","unique":{"base":"Ezomyte Spiked Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0xpZ2h0bmluZ1NoaWVsZCIsInciOjIsImgiOjIsInNjYWxlIjoxLCJzeW50aGVzaXNlZCI6dHJ1ZX1d/05aa542efd/LightningShield.png"} +{"name":"背信忘義","refName":"Perfidy","namespace":"UNIQUE","unique":{"base":"Glorious Plate","fixedStats":["#% increased Melee Damage","+# to maximum Life","You can have two different Banners at the same time","Banners you are carrying gain 1 Stage on Melee Hit, up to 5 per second"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UYW5nbWF6dWFybW91cmJvZHlhcm1vdXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2170370e8f/Tangmazuarmourbodyarmour.png"} +{"name":"珀奎爾的指頭","refName":"Perquil's Toe","namespace":"UNIQUE","unique":{"base":"Gold Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9QZXJxdWlsc1RvZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7509c4517f/PerquilsToe.png"} +{"name":"恆毅意志","refName":"Perseverance","namespace":"UNIQUE","unique":{"base":"Vanguard Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvUGVyc2VydmVyYW5jZSIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/1ff634248a/Perserverance.png"} +{"name":"囚神杵","refName":"Pillar of the Caged God","namespace":"UNIQUE","unique":{"base":"Iron Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvUGlsbGFyb2Z0aGVDYWdlZEdvZCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/0451281624/PillaroftheCagedGod.png"} +{"name":"艾倫之柱","refName":"Pillars of Arun","namespace":"UNIQUE","unique":{"base":"Dunes Map"},"map":{"screenshot":"https://i.imgur.com/yitkSnN.jpg"},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9QaWxsYXJzT2ZWYXN0aXJpIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f030aac473/PillarsOfVastiri.png"} +{"name":"皮斯卡托的慧眼","refName":"Piscator's Vigil","namespace":"UNIQUE","unique":{"base":"Imbued Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9QaXNjYXRvcnNWaWdpbCIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/332f80f7ac/PiscatorsVigil.png"} +{"name":"誓約","refName":"Pledge of Hands","namespace":"UNIQUE","unique":{"base":"Judgement Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvUGxlZGdlb2ZIYW5kcyIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/1da7239060/PledgeofHands.png"} +{"name":"追逐之羽","refName":"Plume of Pursuit","namespace":"UNIQUE","unique":{"base":"Bone Circlet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1JhdmVuc0Nyb3duIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/dc40362912/RavensCrown.png"} +{"name":"極地毀滅","refName":"Polaric Devastation","namespace":"UNIQUE","unique":{"base":"Opal Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQXNoQW5kRnJvc3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/70630a6e17/AshAndFrost.png"} +{"name":"沉淪之間","refName":"Poorjoy's Asylum","namespace":"UNIQUE","unique":{"base":"Temple Map"},"map":{"screenshot":"https://i.imgur.com/ZPJdcfs.jpg"},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9Qb29yam95c0FzeWx1bSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d7e9aba922/PoorjoysAsylum.png"} +{"name":"無力","refName":"Powerlessness","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0JsdWVDb3JydXB0NiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/281293a0c5/BlueCorrupt6.png"} +{"name":"實用主義","refName":"Pragmatism","namespace":"UNIQUE","unique":{"base":"Colosseum Plate"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9HcmVlbmV5ZXNBcm1vdXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/bef792208d/GreeneyesArmour.png"} +{"name":"普拉克斯","refName":"Praxis","namespace":"UNIQUE","unique":{"base":"Paua Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUHJheGlzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5098474fb7/Praxis.png"} +{"name":"先引之征","refName":"Precursor's Emblem","namespace":"UNIQUE","unique":{"base":"Sapphire Ring","fixedStats":["#% increased maximum Energy Shield","#% increased maximum Life"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQ29tYmluZWRHcmVlblJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/76c5b311f3/CombinedGreenRing.png"} +{"name":"先引之征","refName":"Precursor's Emblem","namespace":"UNIQUE","unique":{"base":"Topaz Ring","fixedStats":["#% increased maximum Energy Shield","#% increased maximum Life"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQ29tYmluZWRCbHVlUmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8d07d0d3bb/CombinedBlueRing.png"} +{"name":"先引之征","refName":"Precursor's Emblem","namespace":"UNIQUE","unique":{"base":"Ruby Ring","fixedStats":["#% increased maximum Energy Shield","#% increased maximum Life"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQ29tYmluZWRSZWRSaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ca98bb7e51/CombinedRedRing.png"} +{"name":"先引之征","refName":"Precursor's Emblem","namespace":"UNIQUE","unique":{"base":"Two-Stone Ring","fixedStats":["#% increased maximum Energy Shield","#% increased maximum Life"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQ29tYmluZWRSZWRCbHVlUmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6f6c0766b4/CombinedRedBlueRing.png"} +{"name":"先引之征","refName":"Precursor's Emblem","namespace":"UNIQUE","unique":{"base":"Prismatic Ring","fixedStats":["#% increased maximum Energy Shield","#% increased maximum Life"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQ29tYmluZWRQcmlzbWF0aWNSaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5dd23ff6ad/CombinedPrismaticRing.png"} +{"name":"夏烏拉之印","refName":"Presence of Chayula","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9QcmVzZW5jZU9mQ2hheXVsYSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6460da7c94/PresenceOfChayula.png"} +{"name":"先祖卓越","refName":"Primordial Eminence","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dvbGVtQXJjdGljIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8461900064/GolemArctic.png"} +{"name":"先祖和諧","refName":"Primordial Harmony","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dvbGVtVGVtcGVzdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/aac7579ae7/GolemTempest.png"} +{"name":"先祖力量","refName":"Primordial Might","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dvbGVtSW5mZXJuYWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a50b1917f5/GolemInfernal.png"} +{"name":"元素的庇護","refName":"Prism Guardian","namespace":"UNIQUE","unique":{"base":"Archon Kite Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1RoZUNvcnVuZHVtIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f9ca50a663/TheCorundum.png"} +{"name":"虹耀之月","refName":"Prismatic Eclipse","namespace":"UNIQUE","unique":{"base":"Twilight Blade"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1ByaXNtYXRpY0VjbGlwc2UiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/d6243ca476/PrismaticEclipse.png"} +{"name":"幻彩菱織","refName":"Prismweave","namespace":"UNIQUE","unique":{"base":"Rustic Sash"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvUHJpc213ZWF2ZSIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/822582fe24/Prismweave.png"} +{"name":"褻瀆之替","refName":"Profane Proxy","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU2tpdHRlcmJvdFJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/20b7d215dd/SkitterbotRing.png"} +{"name":"生育","refName":"Progenesis","namespace":"UNIQUE","unique":{"base":"Amethyst Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvVWJlck1hdmVuRmxhc2siLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/b82c247a54/UberMavenFlask.png"} +{"name":"純才","refName":"Pure Talent","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1B1cmVUYWxlbnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/64b53e536e/PureTalent.png"} +{"name":"普坦堡的草原","refName":"Putembo's Meadow","namespace":"UNIQUE","unique":{"base":"Topaz Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmx1ZUNvbXBvbmVudDIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e8d0f426fe/BlueComponent2.png"} +{"name":"普坦堡的山巒","refName":"Putembo's Mountain","namespace":"UNIQUE","unique":{"base":"Topaz Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmx1ZUNvbXBvbmVudCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/086886e893/BlueComponent.png"} +{"name":"普坦堡的峽谷","refName":"Putembo's Valley","namespace":"UNIQUE","unique":{"base":"Topaz Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmx1ZUNvbXBvbmVudDMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cd1b931996/BlueComponent3.png"} +{"name":"燃焰","refName":"Pyre","namespace":"UNIQUE","unique":{"base":"Sapphire Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQ2hlcnVmZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/08c38718a4/Cherufe.png"} +{"name":"烈焰衝擊鉤","refName":"Pyroshock Clasp","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvUHlyb3Nob2NrQ2xhc3AiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/42b1bcc3c8/PyroshockClasp.png"} +{"name":"卡特拉的守則","refName":"Qotra's Regulator","namespace":"UNIQUE","unique":{"base":"Sovereign Spiked Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0Fnb255T2ZEZWNheSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/025ae438c5/AgonyOfDecay.png"} +{"name":"重擊之錘","refName":"Quecholli","namespace":"UNIQUE","unique":{"base":"Jagged Maul"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U1VW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/9361b8eb61/TwoHandMace5Unique.png"} +{"name":"森林之后","refName":"Queen of the Forest","namespace":"UNIQUE","unique":{"base":"Destiny Leather"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9RdWVlbm9mdGhlRm9yZXN0IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/bd3ec993e7/QueenoftheForest.png"} +{"name":"威嚴之刃","refName":"Queen's Decree","namespace":"UNIQUE","unique":{"base":"Ornate Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZFVuaXF1ZTMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/a79e04039c/TwoHandSwordUnique3.png"} +{"name":"復甦誓約","refName":"Quickening Covenant","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL3VuaXF1ZTEwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/46d92a634d/unique10.png"} +{"name":"驟雨之弦","refName":"Quill Rain","namespace":"UNIQUE","unique":{"base":"Short Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzJ1bmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5c5cad82e8/Bow2unique.png"} +{"name":"碎鏃雨","refName":"Rain of Splinters","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JlZEthcnVpIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/283aad3d25/RedKarui.png"} +{"name":"虹幕","refName":"Rainbowstride","namespace":"UNIQUE","unique":{"base":"Conjurer Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9yYWluYm93c3RyaWRlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/bf663baf47/rainbowstride.png"} +{"name":"萊基亞塔的舞步","refName":"Rakiata's Dance","namespace":"UNIQUE","unique":{"base":"Engraved Greatsword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1Jha2lhdGFTd29yZCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/ec593eeaa8/RakiataSword.png"} +{"name":"芮勒蓋許的急躁","refName":"Ralakesh's Impatience","namespace":"UNIQUE","unique":{"base":"Riveted Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SYWxha2VzaHNJbXBhdGllbmNlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/54540f0f3d/RalakeshsImpatience.png"} +{"name":"拉什卡德的耐心","refName":"Rashkaldor's Patience","namespace":"UNIQUE","unique":{"base":"Jade Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9SYXNoa2FsZG9yc1BhdGllbmNlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/336e3419f4/RashkaldorsPatience.png"} +{"name":"鼠巢","refName":"Rat's Nest","namespace":"UNIQUE","unique":{"base":"Ursine Pelt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1JhdHNOZXN0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/857976167e/RatsNest.png"} +{"name":"獻祭之心","refName":"Rathpith Globe","namespace":"UNIQUE","unique":{"base":"Titanium Spirit Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDZ1bmlxdWUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5f2434a635/ShieldInt6unique.png"} +{"name":"理性主義","refName":"Rational Doctrine","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1ViZXJDb3J0ZXhKZXdlbCIsInciOjEsImgiOjEsInNjYWxlIjoxLCJzeW50aGVzaXNlZCI6dHJ1ZX1d/75a97b9ff9/UberCortexJewel.png"} +{"name":"貪婪的激情","refName":"Ravenous Passion","namespace":"UNIQUE","unique":{"base":"Zealot Helmet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1ViZXJFYXRlcm9mV29ybGRzSGVsbWV0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/2215119a51/UberEaterofWorldsHelmet.png"} +{"name":"七日鋒","refName":"Razor of the Seventh Sun","namespace":"UNIQUE","unique":{"base":"Midnight Blade"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1Jhem9yT2ZUaGVTZXZlbnRoU3VuIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/ef21dd7f97/RazorOfTheSeventhSun.png"} +{"name":"議會之觸","refName":"Reach of the Council","namespace":"UNIQUE","unique":{"base":"Spine Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0Jvd09mVGhlQ291bmNpbCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/55dc65893e/BowOfTheCouncil.png"} +{"name":"創域","refName":"Realmshaper","namespace":"UNIQUE","unique":{"base":"Iron Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY1dW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/33929e1979/Staff5unique.png"} +{"name":"死神的取魂器","refName":"Reaper's Pursuit","namespace":"UNIQUE","unique":{"base":"Shadow Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlVW5pcXVlMSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/d39a181d8d/TwoHandAxeUnique1.png"} +{"name":"寒鋒之衛","refName":"Rearguard","namespace":"UNIQUE","unique":{"base":"Blunt Arrow Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9SZWFyZ3VhcmQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9b285161a6/Rearguard.png"} +{"name":"瓦爾戰刃","refName":"Rebuke of the Vaal","namespace":"UNIQUE","unique":{"base":"Vaal Blade"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDdVbmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/90312b1e4a/OneHandSword7Unique.png"} +{"name":"魯莽防禦","refName":"Reckless Defence","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JlY2tsZXNzRGVmZW5zZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/923e6cb6b5/RecklessDefense.png"} +{"name":"赤紅短刃","refName":"Redbeak","namespace":"UNIQUE","unique":{"base":"Rusted Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDFVbmlxdWUiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/a3010a69f5/OneHandSword1Unique.png"} +{"name":"紅刃之環","refName":"Redblade Band","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmVkYmxhZGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cf85c48dff/Redblade.png"} +{"name":"紅刃旗幟","refName":"Redblade Banner","namespace":"UNIQUE","unique":{"base":"Painted Tower Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1JlZGJsYWRlQmFubmVyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/33221fb3e1/RedbladeBanner.png"} +{"name":"紅刃蹂躪靴","refName":"Redblade Tramplers","namespace":"UNIQUE","unique":{"base":"Ancient Greaves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SdW1ibGVzdGVwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/7ebd8e4a3e/Rumblestep.png"} +{"name":"無盡憤怒","refName":"Relentless Fury","namespace":"UNIQUE","unique":{"base":"Decorative Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9SZWxlbnRsZXNzRnVyeSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/8013c33f55/RelentlessFury.png"} +{"name":"古典冥約","refName":"Relic of the Pact","namespace":"UNIQUE","unique":{"base":"Sage Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9JcG9jaG90bFdhbmQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MSwicmVsaWMiOjN9XQ/42065b29d1/IpochotlWand.png"} +{"name":"悔悟之掌","refName":"Repentance","namespace":"UNIQUE","unique":{"base":"Crusader Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUmVwZW50YW5jZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/20af664d44/Repentance.png"} +{"name":"贗品.深淵之喚","refName":"Replica Abyssus","namespace":"UNIQUE","unique":{"base":"Ezomyte Burgonet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0FieXNzdXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/a12f5424c8/Abyssus.png"} +{"name":"贗品.超越壁壘","refName":"Replica Advancing Fortress","namespace":"UNIQUE","unique":{"base":"Gut Ripper"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3c2hpZWxkMyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/a04190ca2b/Clawshield3.png"} +{"name":"贗品.阿爾貝隆的征途","refName":"Replica Alberon's Warpath","namespace":"UNIQUE","unique":{"base":"Soldier Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9BbGJlcm9uc3dhcnBhdGgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/be7b089ef3/Alberonswarpath.png"} +{"name":"贗品.相生相剋","refName":"Replica Allelopathy","namespace":"UNIQUE","unique":{"base":"Satin Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRW1iYWxtZXJzR2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/62148488f8/EmbalmersGloves.png"} +{"name":"贗品.魅惑","refName":"Replica Allure","namespace":"UNIQUE","unique":{"base":"Vaal Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9BbGx1cmUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/ff5311676c/Allure.png"} +{"name":"贗品.極地之嗥","refName":"Replica Alpha's Howl","namespace":"UNIQUE","unique":{"base":"Sinner Tricorne"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1dvbGZoZWFkIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/2acc10e593/Wolfhead.png"} +{"name":"贗品.安姆布的戰甲","refName":"Replica Ambu's Charge","namespace":"UNIQUE","unique":{"base":"Crusader Chainmail"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9TdHJJbnQzQVVuaXF1ZTIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9928614b24/StrInt3AUnique2.png"} +{"name":"贗品.阿茲里的捷思","refName":"Replica Atziri's Acuity","namespace":"UNIQUE","unique":{"base":"Vaal Gauntlets"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQXR6aXJpc0FjdWl0eSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/2c0f04ae47/AtzirisAcuity.png"} +{"name":"贗品.阿茲里聖徽","refName":"Replica Atziri's Foible","namespace":"UNIQUE","unique":{"base":"Paua Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9RdWlkIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/00c2b3a588/Quid.png"} +{"name":"贗品.激情之章","refName":"Replica Badge of the Brotherhood","namespace":"UNIQUE","unique":{"base":"Turquoise Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Bc3Nhc3NpblVuaXF1ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/3616219d7d/AssassinUnique.png"} +{"name":"贗品.凝息","refName":"Replica Bated Breath","namespace":"UNIQUE","unique":{"base":"Chain Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmF0ZWRCcmVhdGgiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/0a8cc4529f/BatedBreath.png"} +{"name":"贗品.苦夢","refName":"Replica Bitterdream","namespace":"UNIQUE","unique":{"base":"Shadow Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyOHVuaXF1ZTIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/085f7726de/scepter8unique2.png"} +{"name":"贗品.血棘","refName":"Replica Blood Thorn","namespace":"UNIQUE","unique":{"base":"Gnarled Branch"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvVGhlQmxvb2RUaG9ybiIsInciOjEsImgiOjQsInNjYWxlIjoxfV0/3dac5ee34b/TheBloodThorn.png"} +{"name":"贗品.血謔","refName":"Replica Bloodplay","namespace":"UNIQUE","unique":{"base":"Stiletto"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0Jsb29kUGxheSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/3c8258f393/BloodPlay.png"} +{"name":"贗品.烏勒爾之骨","refName":"Replica Bones of Ullr","namespace":"UNIQUE","unique":{"base":"Silk Slippers"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9ib290dW5pcXVlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/1dfabe3358/bootunique.png"} +{"name":"贗品.寒鋼之刃","refName":"Replica Cold Iron Point","namespace":"UNIQUE","unique":{"base":"Ezomyte Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0NvbGRJcm9uUG9pbnQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/1a4002957b/ColdIronPoint.png"} +{"name":"贗品.深沉記憶","refName":"Replica Cortex","namespace":"UNIQUE","unique":{"base":"Synthesised Map"},"map":{},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TeW50aGVzaXNCb3NzR3VhcmRpYW5NYXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/542f2635c7/SynthesisBossGuardianMap.png"} +{"name":"贗品.血誓","refName":"Replica Covenant","namespace":"UNIQUE","unique":{"base":"Spidersilk Robe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9FbWJyYWNlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/d0110e7660/Embrace.png"} +{"name":"贗品.德瑞的魔具","refName":"Replica Doedre's Damning","namespace":"UNIQUE","unique":{"base":"Paua Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzNVbmlxdWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d06b386d73/Ring3Unique.png"} +{"name":"贗品.龍牙翱翔","refName":"Replica Dragonfang's Flight","namespace":"UNIQUE","unique":{"base":"Onyx Amulet","fixedStats":["+#% to all Elemental Resistances","#% increased Reservation Efficiency of Skills","Items and Gems have #% increased Attribute Requirements"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9NYWxhY2hhaSdzIEJyaWxsaWFuY2VBbXVsZXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a1548914e0/Malachai%27s%20BrillianceAmulet.png"} +{"name":"贗品.幻夢飛羽","refName":"Replica Dreamfeather","namespace":"UNIQUE","unique":{"base":"Eternal Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0RyZWFtZmVhdGhlciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/89a3a7588c/Dreamfeather.png"} +{"name":"贗品.宵曉","refName":"Replica Duskdawn","namespace":"UNIQUE","unique":{"base":"Maelström Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU29sYXJpc0x1bmFyaXNTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/e5e9df18a4/SolarisLunarisStaff.png"} +{"name":"贗品.伊爾多恩的擁抱","refName":"Replica Earendel's Embrace","namespace":"UNIQUE","unique":{"base":"Grinning Fetish"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9FYXJlbmRlbHNFbWJyYWNlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/7fbecdb2b3/EarendelsEmbrace.png"} +{"name":"贗品.餘燼之痕","refName":"Replica Emberwake","namespace":"UNIQUE","unique":{"base":"Ruby Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzEwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/55c8711fd7/Ring10.png"} +{"name":"贗品.永恆屍布","refName":"Replica Eternity Shroud","namespace":"UNIQUE","unique":{"base":"Blood Raiment"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9NYW50bGVPZkRpc21hbnRsaW5nIiwidyI6MiwiaCI6Mywic2NhbGUiOjEsImVsZGVyIjp0cnVlfV0/7c6af4d6f5/MantleOfDismantling.png"} +{"name":"贗品.費爾羅羽衣","refName":"Replica Farrul's Fur","namespace":"UNIQUE","unique":{"base":"Triumphant Lamellar"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaWdlckJvZHlBcm1vdXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/1cfa248b9b/TigerBodyArmour.png"} +{"name":"贗品.綠藤","refName":"Replica Fencoil","namespace":"UNIQUE","unique":{"base":"Gnarled Branch"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmYxdW5pcXVlIiwidyI6MSwiaCI6NCwic2NhbGUiOjF9XQ/cff9022931/Staff1unique.png"} +{"name":"贗品.虛弱","refName":"Replica Fragility","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JlZENvcnJ1cHQ2IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/161d0c411c/RedCorrupt6.png"} +{"name":"贗品.霜息","refName":"Replica Frostbreath","namespace":"UNIQUE","unique":{"base":"Ornate Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvRnJvc3RCcmVhdGgiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8a6b305388/FrostBreath.png"} +{"name":"贗品.議會之握","refName":"Replica Grip of the Council","namespace":"UNIQUE","unique":{"base":"Arcanist Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50M1VuaXF1ZTIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/88338fac41/GlovesInt3Unique2.png"} +{"name":"贗品.收割者","refName":"Replica Harvest","namespace":"UNIQUE","unique":{"base":"Jasper Chopper"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9UaGVFeHRyYWN0b3IiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8452349a24/TheExtractor.png"} +{"name":"贗品.獵首","refName":"Replica Headhunter","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSGVhZGh1bnRlciIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/e9542ec6ee/Headhunter.png"} +{"name":"贗品.裂心刃","refName":"Replica Heartbreaker","namespace":"UNIQUE","unique":{"base":"Royal Skean"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0hlYXJ0YnJlYWtlciIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/fa73c4d5b4/Heartbreaker.png"} +{"name":"贗品.寒焰","refName":"Replica Heatshiver","namespace":"UNIQUE","unique":{"base":"Leather Hood"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlYXRzaGl2ZXIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/b1860c890e/Heatshiver.png"} +{"name":"贗品.悉妮蔻拉之眼","refName":"Replica Hinekora's Sight","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9IaW5la29yYXNTaWdodCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/13820d857f/HinekorasSight.png"} +{"name":"贗品.西里的戰衣","refName":"Replica Hyrri's Ire","namespace":"UNIQUE","unique":{"base":"Zodiac Leather"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4M0NVbmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/fb532d6c21/BodyDex3CUnique.png"} +{"name":"贗品.西里的真理","refName":"Replica Hyrri's Truth","namespace":"UNIQUE","unique":{"base":"Jade Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9TeW50aGVzaXNBY2N1cmFjeUFtdWxldCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6062fd361e/SynthesisAccuracyAmulet.png"} +{"name":"贗品.穿雲","refName":"Replica Infractem","namespace":"UNIQUE","unique":{"base":"Decimation Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0luZnJhY3RlbSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/ea06e13fb8/Infractem.png"} +{"name":"贗品.茵斯布雷之刃","refName":"Replica Innsbury Edge","namespace":"UNIQUE","unique":{"base":"Elder Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0VsZGVyU3dvcmQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2bd26d4bf6/ElderSword.png"} +{"name":"贗品.茵雅的頓悟","refName":"Replica Inya's Epiphany","namespace":"UNIQUE","unique":{"base":"Arcanist Slippers"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9QYWxlQ291bmNpbEJvb3RzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/78e277875f/PaleCouncilBoots.png"} +{"name":"贗品.鋼鐵指揮","refName":"Replica Iron Commander","namespace":"UNIQUE","unique":{"base":"Death Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0lyb25Db21tZW5kYW50IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/001ca245e3/IronCommendant.png"} +{"name":"贗品.卡莉莎的優雅之影","refName":"Replica Kalisa's Grace","namespace":"UNIQUE","unique":{"base":"Samite Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvS2FsaXNhc0dyYWNlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/b165e39eff/KalisasGrace.png"} +{"name":"贗品.岡姆的壯志","refName":"Replica Kaom's Heart","namespace":"UNIQUE","unique":{"base":"Glorious Plate"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyM0NVbmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/1027cdf1ad/BodyStr3CUnique.png"} +{"name":"贗品.卡魯的戰徽","refName":"Replica Karui Ward","namespace":"UNIQUE","unique":{"base":"Jade Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQ0VW5pcXVlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/069e4f76ea/Amulet4Unique.png"} +{"name":"贗品.康戈的戰炎","refName":"Replica Kongor's Undying Rage","namespace":"UNIQUE","unique":{"base":"Terror Maul"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvS29uZ29yc1VuZHlpbmdSYWdlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/5fa26110bc/KongorsUndyingRage.png"} +{"name":"贗品.終息","refName":"Replica Last Resort","namespace":"UNIQUE","unique":{"base":"Nailed Fist"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9OZXJhc0xhc3RSZXNvcnQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5f5a6bd205/NerasLastResort.png"} +{"name":"贗品.拉維安加之泉","refName":"Replica Lavianga's Spirit","namespace":"UNIQUE","unique":{"base":"Sanctified Mana Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvTGF2aWFuZ2FzT2lsIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/44f064d737/LaviangasOil.png"} +{"name":"贗品.共鳴之面","refName":"Replica Leer Cast","namespace":"UNIQUE","unique":{"base":"Festival Mask"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDl4IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/6693f97fdf/HelmetDexInt9x.png"} +{"name":"贗品.獅眼的鬥志","refName":"Replica Lioneye's Paws","namespace":"UNIQUE","unique":{"base":"Bronzescale Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9MaW9uZXllc1Bhd3MiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/550a8f59d4/LioneyesPaws.png"} +{"name":"贗品.智者織衫","refName":"Replica Loreweave","namespace":"UNIQUE","unique":{"base":"Elegant Ringmail"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Mb3Jld2VhdmUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/fd11495220/Loreweave.png"} +{"name":"贗品.瑪拉凱的巧技","refName":"Replica Malachai's Artifice","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTWFsYWNoYWlzQXJ0aWZpY2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/dfbb52ebfe/MalachaisArtifice.png"} +{"name":"贗品.馬洛尼的機關","refName":"Replica Maloney's Mechanism","namespace":"UNIQUE","unique":{"base":"Ornate Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9UcmlnZ2VyUXVpdmVyQmFzZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/1f3958bdb3/TriggerQuiverBase.png"} +{"name":"贗品.冥約","refName":"Replica Midnight Bargain","namespace":"UNIQUE","unique":{"base":"Engraved Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kVW5pcXVlMyIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/1db4fb5dbf/WandUnique3.png"} +{"name":"贗品.迷霧之璧","refName":"Replica Mistwall","namespace":"UNIQUE","unique":{"base":"Lacquered Buckler"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL01pc3R3YWxsIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/d81f034c2d/Mistwall.png"} +{"name":"贗品.銀河星雲","refName":"Replica Nebulis","namespace":"UNIQUE","unique":{"base":"Void Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9TY2VwdHJlT2ZNZW1vcmllcyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/a627a19fc4/SceptreOfMemories.png"} +{"name":"贗品.歐羅的貢品","refName":"Replica Oro's Sacrifice","namespace":"UNIQUE","unique":{"base":"Infernal Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL09yb3NTYWNyaWZpY2UiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/82b813f27d/OrosSacrifice.png"} +{"name":"贗品.和平主義","refName":"Replica Pacifism","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dyZWVuQ29ycnVwdDYiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1b1c1912b2/GreenCorrupt6.png"} +{"name":"贗品.矛盾對決","refName":"Replica Paradoxica","namespace":"UNIQUE","unique":{"base":"Vaal Rapier"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL0Fzc2Fzc2luYXRpb25VbmlxdWUyIiwidyI6MSwiaCI6NCwic2NhbGUiOjF9XQ/b84147fcbd/AssassinationUnique2.png"} +{"name":"贗品.完美姿態","refName":"Replica Perfect Form","namespace":"UNIQUE","unique":{"base":"Zodiac Leather"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaGVQZXJmZWN0Rm9ybSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/b149b68ecb/ThePerfectForm.png"} +{"name":"贗品.艾倫之柱","refName":"Replica Pillars of Arun","namespace":"UNIQUE","unique":{"base":"Dunes Map"},"map":{},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9QaWxsYXJzT2ZWYXN0aXJpIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f030aac473/PillarsOfVastiri.png"} +{"name":"贗品.沉淪之間","refName":"Replica Poorjoy's Asylum","namespace":"UNIQUE","unique":{"base":"Temple Map"},"map":{},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9Qb29yam95c0FzeWx1bSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d7e9aba922/PoorjoysAsylum.png"} +{"name":"贗品.無力","refName":"Replica Powerlessness","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0JsdWVDb3JydXB0NiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/281293a0c5/BlueCorrupt6.png"} +{"name":"贗品.先祖力量","refName":"Replica Primordial Might","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dvbGVtSW5mZXJuYWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a50b1917f5/GolemInfernal.png"} +{"name":"贗品.幻彩菱織","refName":"Replica Prismweave","namespace":"UNIQUE","unique":{"base":"Rustic Sash"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvUHJpc213ZWF2ZSIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/822582fe24/Prismweave.png"} +{"name":"贗品.驟雨之弦","refName":"Replica Quill Rain","namespace":"UNIQUE","unique":{"base":"Short Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzJ1bmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5c5cad82e8/Bow2unique.png"} +{"name":"贗品.魯莽防禦","refName":"Replica Reckless Defence","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JlY2tsZXNzRGVmZW5zZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/923e6cb6b5/RecklessDefense.png"} +{"name":"贗品.赤紅蹤跡","refName":"Replica Red Trail","namespace":"UNIQUE","unique":{"base":"Titan Greaves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9UaGVJbmZpbml0ZVB1cnN1aXQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/518d10f12f/TheInfinitePursuit.png"} +{"name":"贗品.無盡之衛","refName":"Replica Restless Ward","namespace":"UNIQUE","unique":{"base":"Carnal Armour"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaGVSZXN0bGVzc1dhcmQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2508832517/TheRestlessWard.png"} +{"name":"贗品.魯米的靈藥","refName":"Replica Rumi's Concoction","namespace":"UNIQUE","unique":{"base":"Granite Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvQmxvY2tGbGFzayIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/3bc27f19d5/BlockFlask.png"} +{"name":"贗品.晦暗的屍布","refName":"Replica Shroud of the Lightless","namespace":"UNIQUE","unique":{"base":"Carnal Armour"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9BYnlzc0JvZHkiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/cd67f9b5d3/AbyssBody.png"} +{"name":"贗品.突圍","refName":"Replica Siegebreaker","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvODU0ODIiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/ee893f3cb8/85482.png"} +{"name":"贗品.神聖哀悼","refName":"Replica Sorrow of the Divine","namespace":"UNIQUE","unique":{"base":"Sulphur Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvU29ycm93T2ZUaGVEaXZpbmUiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/5d9eb26bd6/SorrowOfTheDivine.png"} +{"name":"贗品.靈魂打擊","refName":"Replica Soul Strike","namespace":"UNIQUE","unique":{"base":"Spike-Point Arrow Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9Tb3Vsc3RyaWtlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/ecea242a12/Soulstrike.png"} +{"name":"贗品.靈魂束縛","refName":"Replica Soul Tether","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvU291bFRldGhlciIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/a2b7447a4a/SoulTether.png"} +{"name":"贗品.潰逃之靴","refName":"Replica Stampede","namespace":"UNIQUE","unique":{"base":"Assassin's Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TdXBwb3J0ZXIxYm9vdEEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f0b4c611d1/Supporter1bootA.png"} +{"name":"贗品.塔薩里之印","refName":"Replica Tasalio's Sign","namespace":"UNIQUE","unique":{"base":"Sapphire Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVGFzYWxpb3NTaWduIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1e73f81099/TasaliosSign.png"} +{"name":"贗品.暴風之鋼","refName":"Replica Tempestuous Steel","namespace":"UNIQUE","unique":{"base":"War Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1RlbXBlc3R1b3VzU3RlZWwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/72078201f9/TempestuousSteel.png"} +{"name":"贗品.三步突擊","refName":"Replica Three-step Assault","namespace":"UNIQUE","unique":{"base":"Shagreen Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9UaHJlZVN0ZXBBc3NhdWx0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/56daf8a36a/ThreeStepAssault.png"} +{"name":"贗品.裂顱","refName":"Replica Trypanon","namespace":"UNIQUE","unique":{"base":"Great Mallet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHJ5cGFub24iLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/3152ab4124/Trypanon.png"} +{"name":"贗品.圖克哈瑪堡壘","refName":"Replica Tukohama's Fortress","namespace":"UNIQUE","unique":{"base":"Ebony Tower Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1R1a29oYW1hc0ZvcnRyZXNzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/e502c4bcf2/TukohamasFortress.png"} +{"name":"贗品.托沃臥","refName":"Replica Tulfall","namespace":"UNIQUE","unique":{"base":"Opal Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9UdWxib3JuVXBncmFkZWQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/575d6058a2/TulbornUpgraded.png"} +{"name":"贗品.峽灣之星","refName":"Replica Twyzel","namespace":"UNIQUE","unique":{"base":"Sage Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kMVVuaXF1ZSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/086aeb214c/Wand1Unique.png"} +{"name":"贗品.恩吉爾的叉刃","refName":"Replica Ungil's Gauche","namespace":"UNIQUE","unique":{"base":"Boot Knife"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjN1bmlxdWUiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/ec0e6a82fb/Dagger3unique.png"} +{"name":"贗品.夜幕","refName":"Replica Veil of the Night","namespace":"UNIQUE","unique":{"base":"Great Helmet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1ZlaWxPZlRoZU5pZ2h0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/809ee0994f/VeilOfTheNight.png"} +{"name":"贗品.維多里奧的貢獻","refName":"Replica Victario's Charity","namespace":"UNIQUE","unique":{"base":"Laminated Kite Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1ZpY3Rhcm9zQ2hhcml0eSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/baf0e57fb2/VictarosCharity.png"} +{"name":"贗品.虛空慧眼","refName":"Replica Voideye","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvdW51c2VkNCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6f0e76fbbb/unused4.png"} +{"name":"贗品.虛空行者","refName":"Replica Voidwalker","namespace":"UNIQUE","unique":{"base":"Murder Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Dcm9zc2luZ1RoZVZvaWQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MSwic2hhcGVyIjp0cnVlfV0/97df35ca87/CrossingTheVoid.png"} +{"name":"贗品.福庫爾的指引","refName":"Replica Volkuur's Guidance","namespace":"UNIQUE","unique":{"base":"Zealot Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUGFsZUNvdW5jaWxHbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3271f5441a/PaleCouncilGloves.png"} +{"name":"贗品.裂風","refName":"Replica Windripper","namespace":"UNIQUE","unique":{"base":"Imperial Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0VhZ2xlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/01fdf37ac0/Eagle.png"} +{"name":"贗品.亂世之翼","refName":"Replica Wings of Entropy","namespace":"UNIQUE","unique":{"base":"Ezomyte Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9FbnRyb3B5d2luZ3MiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/86e128789a/Entropywings.png"} +{"name":"贗品.冬之心","refName":"Replica Winterheart","namespace":"UNIQUE","unique":{"base":"Gold Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9XaW50ZXJIZWFydEFMVCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ff8c8c67f2/WinterHeartALT.png"} +{"name":"贗品.巫火秘釀","refName":"Replica Witchfire Brew","namespace":"UNIQUE","unique":{"base":"Stibnite Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvV2l0Y2hGaXJlQnJldyIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/1696a739f5/WitchFireBrew.png"} +{"name":"復仇誘惑","refName":"Retaliation Charm","namespace":"UNIQUE","unique":{"base":"Citrine Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9TaGFyZWRVbnNpZ2h0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d12260a7ac/SharedUnsight.png"} +{"name":"混響","refName":"Reverberation Rod","namespace":"UNIQUE","unique":{"base":"Spiraled Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9SZXZlcmJlcmF0aW9uUm9kIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/676a395a5f/ReverberationRod.png"} +{"name":"遙遠記憶:改寫","refName":"Rewritten Distant Memory","namespace":"UNIQUE","unique":{"base":"Synthesised Map"},"map":{},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TeW50aGVzaXNHb2xlbUd1YXJkaWFuTWFwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f4fd693221/SynthesisGolemGuardianMap.png"} +{"name":"瑞佛的奮戰長劍","refName":"Rigwald's Charge","namespace":"UNIQUE","unique":{"base":"Highland Blade"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDVVbmlxdWUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/ce7492e94d/TwoHandSword5Unique.png"} +{"name":"瑞佛統帥","refName":"Rigwald's Command","namespace":"UNIQUE","unique":{"base":"Midnight Blade"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1JpZ3dhcmxTd29yZCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/90114046a7/RigwarlSword.png"} +{"name":"瑞佛之冠","refName":"Rigwald's Crest","namespace":"UNIQUE","unique":{"base":"Two-Stone Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmlnd2FsZHNDcmVzdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ba5e5c58a3/RigwaldsCrest.png"} +{"name":"瑞佛詛咒","refName":"Rigwald's Curse","namespace":"UNIQUE","unique":{"base":"Wereclaw Talisman"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9VbmlxdWVEaXJlQ2xhd1RhbGlzbWFuIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/e8cd3f0898/UniqueDireClawTalisman.png"} +{"name":"瑞佛之羽","refName":"Rigwald's Quills","namespace":"UNIQUE","unique":{"base":"Two-Point Arrow Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9SaWd3YWxkc1F1aWxscyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/b8325e5214/RigwaldsQuills.png"} +{"name":"野性瑞佛","refName":"Rigwald's Savagery","namespace":"UNIQUE","unique":{"base":"Royal Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9SaWd3YXJsQXhlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/e2ee95737e/RigwarlAxe.png"} +{"name":"酷寒的凝視","refName":"Rime Gaze","namespace":"UNIQUE","unique":{"base":"Mind Cage"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludFVuaXF1ZTEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/607641b0c2/HelmetDexIntUnique1.png"} +{"name":"烈炎之翼","refName":"Rise of the Phoenix","namespace":"UNIQUE","unique":{"base":"Mosaic Kite Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1Jpc2VvZnRoZXBob2VuaXgiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/965404630a/Riseofthephoenix.png"} +{"name":"裂隙","refName":"Rive","namespace":"UNIQUE","unique":{"base":"Terror Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9CbGVlZENsYXciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/085844fb05/BleedClaw.png"} +{"name":"羅米拉的潛力之環","refName":"Romira's Banquet","namespace":"UNIQUE","unique":{"base":"Diamond Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUm9taXJhc0JhbnF1ZXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/aa054b3ccd/RomirasBanquet.png"} +{"name":"敗血承諾","refName":"Rotblood Promise","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQ3Vyc2VkRXllIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6f6b42ce7e/CursedEye.png"} +{"name":"傷胃酒","refName":"Rotgut","namespace":"UNIQUE","unique":{"base":"Quicksilver Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvUm90Z3V0IiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/80c2799242/Rotgut.png"} +{"name":"蘿絲之觸","refName":"Roth's Reach","namespace":"UNIQUE","unique":{"base":"Recurve Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL1NhcmtoYW1zUmVhY2giLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/89bf0cff0b/SarkhamsReach.png"} +{"name":"魯米的靈藥","refName":"Rumi's Concoction","namespace":"UNIQUE","unique":{"base":"Granite Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvQmxvY2tGbGFzayIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/3bc27f19d5/BlockFlask.png"} +{"name":"瑞斯拉薩之纏","refName":"Ryslatha's Coil","namespace":"UNIQUE","unique":{"base":"Studded Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvUnl1c2xhdGhhc0NsdXRjaGVzIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/5b990decd3/RyuslathasClutches.png"} +{"name":"犧牲之心","refName":"Sacrificial Heart","namespace":"UNIQUE","unique":{"base":"Paua Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9TYWNyaWZpY2lhbF9IZWFydCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e3daa4cd32/Sacrificial_Heart.png"} +{"name":"獵寶者的護手","refName":"Sadima's Touch","namespace":"UNIQUE","unique":{"base":"Wool Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU2FkaW1hc1RvdWNoIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/751c14cb9c/SadimasTouch.png"} +{"name":"謝默斯的贈禮","refName":"Saemus' Gift","namespace":"UNIQUE","unique":{"base":"Feathered Arrow Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9TZWFtdXNHaWZ0IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/7da61eeb8e/SeamusGift.png"} +{"name":"薩費爾的智慧","refName":"Saffell's Frame","namespace":"UNIQUE","unique":{"base":"Branded Kite Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludFVuaXF1ZTYiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/89281a7dc3/ShieldStrIntUnique6.png"} +{"name":"沙瀑面紗","refName":"Sandstorm Visage","namespace":"UNIQUE","unique":{"base":"Necromancer Circlet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Fud2Vuc1RpYXJhIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/db74af1ed2/AnwensTiara.png"} +{"name":"季節樹液","refName":"Sap of the Seasons","namespace":"UNIQUE","unique":{"base":"Prismatic Tincture"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL1VuaXF1ZVByaXNtYXRpYyIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/9aaf6a2505/UniquePrismatic.png"} +{"name":"斯卡沃之徒","refName":"Saqawal's Flock","namespace":"UNIQUE","unique":{"base":"Silken Hood"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0F2aWFuSGVsbWV0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/29e7c95170/AvianHelmet.png"} +{"name":"斯卡沃之巢","refName":"Saqawal's Nest","namespace":"UNIQUE","unique":{"base":"Blood Raiment"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9BdmlhbkJvZHlBcm1vdXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/260410472f/AvianBodyArmour.png"} +{"name":"斯卡沃鷹爪","refName":"Saqawal's Talons","namespace":"UNIQUE","unique":{"base":"Hydrascale Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9BdmlhbkJvb3RzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/4ea544616e/AvianBoots.png"} +{"name":"斯卡沃之翼","refName":"Saqawal's Winds","namespace":"UNIQUE","unique":{"base":"Soldier Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQXZpYW5HbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/eff17664b9/AvianGloves.png"} +{"name":"食蚜","refName":"Scaeva","namespace":"UNIQUE","unique":{"base":"Gladius"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1NjYWV2YSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/320c7247e3/Scaeva.png"} +{"name":"禁語","refName":"Scold's Bridle","namespace":"UNIQUE","unique":{"base":"Mind Cage"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1Njb2xkc0JyaWRsZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/d8277c58aa/ScoldsBridle.png"} +{"name":"毒蠍之喚","refName":"Scorpion's Call","namespace":"UNIQUE","unique":{"base":"Heavy Arrow Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9CbG9vZFNhbmRRdWl2ZXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/57b1387b43/BloodSandQuiver.png"} +{"name":"第二暴虐碎片","refName":"Second Piece of Brutality","namespace":"UNIQUE","unique":{"base":"Imperial Staff Piece"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGFyYmluZ2VyU2hhcmRzL1NoYXJkMiIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/992359550f/Shard2.png"} +{"name":"第二象限碎片","refName":"Second Piece of Directions","namespace":"UNIQUE","unique":{"base":"Blunt Arrow Quiver Piece"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9TaGFyZHMvU2hhcmQyIiwidyI6MSwiaCI6Miwic2NhbGUiOjF9XQ/b992cd2275/Shard2.png"} +{"name":"第二專注碎片","refName":"Second Piece of Focus","namespace":"UNIQUE","unique":{"base":"Archon Kite Shield Piece"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoYXJkcy9DaGFubmVsaW5nU2hpZWxkU2hhcmQyIiwidyI6MSwiaCI6Miwic2NhbGUiOjF9XQ/d68b3e42b7/ChannelingShieldShard2.png"} +{"name":"第二風暴碎片","refName":"Second Piece of Storms","namespace":"UNIQUE","unique":{"base":"Callous Mask Piece"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hhcmJpbmdlclNoYXJkcy9TaGFyZDIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/931375a2c0/Shard2.png"} +{"name":"第二奧術碎片","refName":"Second Piece of the Arcane","namespace":"UNIQUE","unique":{"base":"Legion Sword Piece"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0hhcmJpbmdlckxlYWd1ZVNoYXJkcy9IYXJiaW5nZXJTd29yZFNoYXJkMiIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/244c6caa1e/HarbingerSwordShard2.png"} +{"name":"第二時空碎片","refName":"Second Piece of Time","namespace":"UNIQUE","unique":{"base":"Cloth Belt Piece"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvU2hhcmRzL0hhcmJpbmdlckJlbHRTaGFyZDIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/65a4798357/HarbingerBeltShard2.png"} +{"name":"沸騰之怒","refName":"Seething Fury","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1NwZWN0cmFsVGhyb3dUaHJlc2hvbGQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6de1cd92c9/SpectralThrowThreshold.png"} +{"name":"殘虐之歡愉","refName":"Self-Flagellation","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dyZWVuQ29ycnVwdDUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6aa93279b6/GreenCorrupt5.png"} +{"name":"山特立的回應","refName":"Sentari's Answer","namespace":"UNIQUE","unique":{"base":"Brass Spirit Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NhbnRhcmlzQW5zd2VyIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/f4438d618f/SantarisAnswer.png"} +{"name":"瑟雷的傑作","refName":"Serle's Masterwork","namespace":"UNIQUE","unique":{"base":"Phantom Mace"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvS2FsZ0ZvcmdlR3VhcmRNYWNlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/9b638e20ea/KalgForgeGuardMace.png"} +{"name":"盟誓之跡","refName":"Seven-League Step","namespace":"UNIQUE","unique":{"base":"Rawhide Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleFVuaXF1ZTMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/23e4614336/BootsDexUnique3.png"} +{"name":"離異夢寐","refName":"Severed in Sleep","namespace":"UNIQUE","unique":{"base":"Cutlass"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0V0ZXJuYWxTbGVlcDEiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/60deeaccc5/EternalSleep1.png"} +{"name":"悲運之縛","refName":"Shackles of the Wretched","namespace":"UNIQUE","unique":{"base":"Chain Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUmVjYWxsaW5ndGhlV3JldGNoZWQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/faf70b1bf0/RecallingtheWretched.png"} +{"name":"日耀之影","refName":"Shade of Solaris","namespace":"UNIQUE","unique":{"base":"Sage Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9Tb2xhcmlzV2FuZCIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/8f2f75ad2e/SolarisWand.png"} +{"name":"沙塵之影","refName":"Shadows and Dust","namespace":"UNIQUE","unique":{"base":"Clasped Mitts"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU2hhZG93c0FuZER1c3QiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/80cb67dfe9/ShadowsAndDust.png"} +{"name":"縫影","refName":"Shadowstitch","namespace":"UNIQUE","unique":{"base":"Sacrificial Garb"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9TaGFkb3dTdGl0Y2giLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2f847b36bd/ShadowStitch.png"} +{"name":"塑界者之籽","refName":"Shaper's Seed","namespace":"UNIQUE","unique":{"base":"Agate Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9TaGFwZXJzU2VlZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/99265d5594/ShapersSeed.png"} +{"name":"塑者之觸","refName":"Shaper's Touch","namespace":"UNIQUE","unique":{"base":"Crusader Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU2hhcGVyc0dsb3ZlcyIsInciOjIsImgiOjIsInNjYWxlIjoxLCJzaGFwZXIiOnRydWV9XQ/7f4c45d53e/ShapersGloves.png"} +{"name":"破碎之屑","refName":"Shattershard","namespace":"UNIQUE","unique":{"base":"Crimson Round Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0V2ZXJnbGFzc0JhcnJpZXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/179a505595/EverglassBarrier.png"} +{"name":"薛朗的秘術長靴","refName":"Shavronne's Pace","namespace":"UNIQUE","unique":{"base":"Scholar Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TaGF2cm9ubmVzUGFjZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/065a61276a/ShavronnesPace.png"} +{"name":"薛朗的啟示之環","refName":"Shavronne's Revelation","namespace":"UNIQUE","unique":{"base":"Moonstone Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTW9vbnN0b25lUmluZ1VuaXF1ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d8c1823da5/MoonstoneRingUnique.png"} +{"name":"薛朗的護身長袍","refName":"Shavronne's Wrappings","namespace":"UNIQUE","unique":{"base":"Occultist's Vestment"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MUNVbmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/4f3e22a163/BodyInt1CUnique.png"} +{"name":"低伏微光","refName":"Shimmeron","namespace":"UNIQUE","unique":{"base":"Tornado Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9FbGRlcldhbmQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MSwiZWxkZXIiOnRydWV9XQ/cfca0aa1f1/ElderWand.png"} +{"name":"寒光劍","refName":"Shiversting","namespace":"UNIQUE","unique":{"base":"Bastard Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDZVbmlxdWUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/084a248453/TwoHandSword6Unique.png"} +{"name":"晦暗的屍布","refName":"Shroud of the Lightless","namespace":"UNIQUE","unique":{"base":"Carnal Armour"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9BYnlzc0JvZHkiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/cd67f9b5d3/AbyssBody.png"} +{"name":"希比爾之嘆","refName":"Sibyl's Lament","namespace":"UNIQUE","unique":{"base":"Coral Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU2lieWxzTGFtZW50IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/73ccf7d7c4/SibylsLament.png"} +{"name":"魔靈之符","refName":"Sidhebreath","namespace":"UNIQUE","unique":{"base":"Paua Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQxVW5pcXVlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2a0f1c86cc/Amulet1Unique.png"} +{"name":"突圍","refName":"Siegebreaker","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvODU0ODIiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/ee893f3cb8/85482.png"} +{"name":"罪孽嗜者之示","refName":"Sign of the Sin Eater","namespace":"UNIQUE","unique":{"base":"Tyrant's Sekhem"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9TY2VwdGVyT2ZTdWZmZXJpbmciLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/49a06d1a23/ScepterOfSuffering.png"} +{"name":"幻銀之弦","refName":"Silverbranch","namespace":"UNIQUE","unique":{"base":"Crude Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzFVbmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/73d6f96075/Bow1Unique.png"} +{"name":"敏銳思維","refName":"Sin Trek","namespace":"UNIQUE","unique":{"base":"Stealth Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TaW5UcmVrIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/84281e0f84/SinTrek.png"} +{"name":"再生的罪惡","refName":"Sin's Rebirth","namespace":"UNIQUE","unique":{"base":"Stibnite Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvU2luIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/897bffaad1/Sin.png"} +{"name":"奇異","refName":"Singularity","namespace":"UNIQUE","unique":{"base":"Platinum Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9HbG9vbWV5ZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/12d7027e18/Gloomeye.png"} +{"name":"辛維塔之毅","refName":"Sinvicta's Mettle","namespace":"UNIQUE","unique":{"base":"Ezomyte Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9TaW52aWN0YXNNZXR0bGUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/f1eaf2346b/SinvictasMettle.png"} +{"name":"破碎傳承者","refName":"Sire of Shards","namespace":"UNIQUE","unique":{"base":"Serpentine Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvUmFkaWVuY2UiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/229388b736/Radience.png"} +{"name":"君主之膚","refName":"Skin of the Lords","namespace":"UNIQUE","unique":{"base":"Simple Robe","fixedStats":["Sockets cannot be modified","+# to Level of Socketed Gems","#% increased Global Defences","You can only Socket Corrupted Gems in this item"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9NeXJpYWRHcmFzcEdyYW5kIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/a4525f8d94/MyriadGraspGrand.png"} +{"name":"忠誠之膚","refName":"Skin of the Loyal","namespace":"UNIQUE","unique":{"base":"Simple Robe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9NeXJpYWRHcmFzcCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/03d7746f71/MyriadGrasp.png"} +{"name":"小會戰","refName":"Skirmish","namespace":"UNIQUE","unique":{"base":"Two-Point Arrow Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9UaGVTa2lybWlzaCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/9fe8813a15/TheSkirmish.png"} +{"name":"光輝之顱","refName":"Skullhead","namespace":"UNIQUE","unique":{"base":"Secutor Helm"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1NrdWxsaGVhZCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/55adeb7e35/Skullhead.png"} +{"name":"空向","refName":"Skyforth","namespace":"UNIQUE","unique":{"base":"Sorcerer Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Ta3lmb3J0aCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/56fee4545a/Skyforth.png"} +{"name":"奴役之手","refName":"Slavedriver's Hand","namespace":"UNIQUE","unique":{"base":"Ambush Mitts"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU2xhdmVkcml2ZXJzSGFuZCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/96ae934cf8/SlavedriversHand.png"} +{"name":"蒼蟒之鱗","refName":"Slitherpinch","namespace":"UNIQUE","unique":{"base":"Bronzescale Gauntlets"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU2xpdGhlcnBpbmNoIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/8f23a9535d/Slitherpinch.png"} +{"name":"裂舌","refName":"Slivertongue","namespace":"UNIQUE","unique":{"base":"Harbinger Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL1NpbHZlclRvbmd1ZSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/15c7237f48/SilverTongue.png"} +{"name":"蝮吻","refName":"Snakebite","namespace":"UNIQUE","unique":{"base":"Assassin's Mitts"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvZnJlbnp5Z2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/2d25853f41/frenzygloves.png"} +{"name":"蛇巢","refName":"Snakepit","namespace":"UNIQUE","unique":{"base":"Sapphire Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU2VycGVudHNlZWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/634a5c8913/Serpentseed.png"} +{"name":"烈陽鎧","refName":"Solaris Lorica","namespace":"UNIQUE","unique":{"base":"Copper Plate"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy90b3JuZmxlc2hvZmdvZHMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/420988ec91/tornfleshofgods.png"} +{"name":"守夜之至","refName":"Solstice Vigil","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9TaGFwZXJzUHJlc2VuY2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MSwic2hhcGVyIjp0cnVlfV0/5881f1f025/ShapersPresence.png"} +{"name":"靈魂昇華","refName":"Soul Ascension","namespace":"UNIQUE","unique":{"base":"Carnal Mitts"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU291bEFzY2Vuc2lvbiIsInciOjIsImgiOjIsInNjYWxlIjoxLCJlbGRlciI6dHJ1ZX1d/261dad7419/SoulAscension.png"} +{"name":"追魂者","refName":"Soul Catcher","namespace":"UNIQUE","unique":{"base":"Quartz Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvU291bENhdGNoZXIiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/00e2d0f2b5/SoulCatcher.png"} +{"name":"祖靈之約","refName":"Soul Mantle","namespace":"UNIQUE","unique":{"base":"Spidersilk Robe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Tb3VsTWFudGxlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/19bb017ce4/SoulMantle.png"} +{"name":"碎魂者","refName":"Soul Ripper","namespace":"UNIQUE","unique":{"base":"Quartz Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvU291bFJpcHBlciIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/f74d277e1d/SoulRipper.png"} +{"name":"靈魂打擊","refName":"Soul Strike","namespace":"UNIQUE","unique":{"base":"Spike-Point Arrow Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9Tb3Vsc3RyaWtlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/ecea242a12/Soulstrike.png"} +{"name":"開膛斧","refName":"Soul Taker","namespace":"UNIQUE","unique":{"base":"Siege Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9BbGV4YXhlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/647bb8bb63/Alexaxe.png"} +{"name":"靈魂束縛","refName":"Soul Tether","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvU291bFRldGhlciIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/a2b7447a4a/SoulTether.png"} +{"name":"靈魂之絆","refName":"Soulbound","namespace":"UNIQUE","unique":{"base":"Paua Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQm9uZGVkTGlmZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/2ee06d14a2/BondedLife.png"} +{"name":"嗜魂","refName":"Soulthirst","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvU291bHRoaXJzdCIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/ee53d9c1ef/Soulthirst.png"} +{"name":"鑄影","refName":"Soulwrest","namespace":"UNIQUE","unique":{"base":"Ezomyte Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvVG9wRG93blN0YXZlSWNvbiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/f62cfea775/TopDownStaveIcon.png"} +{"name":"南方","refName":"Southbound","namespace":"UNIQUE","unique":{"base":"Soldier Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvTm9ydGhib3VuZCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7b4cbc713d/Northbound.png"} +{"name":"預言家桂冠","refName":"Speaker's Wreath","namespace":"UNIQUE","unique":{"base":"Prophet Crown"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01pbmlvbkhlbG1ldCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7cf5db368e/MinionHelmet.png"} +{"name":"人格分裂","refName":"Split Personality","namespace":"UNIQUE","unique":{"base":"Crimson Jewel","fixedStats":["This Jewel's Socket has #% increased effect per Allocated Passive Skill between\nit and your Class' starting location"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1VuaXF1ZUpld2VsQmFzZTEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/166fecc863/UniqueJewelBase1.png"} +{"name":"毒孢守衛","refName":"Sporeguard","namespace":"UNIQUE","unique":{"base":"Saint's Hauberk"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9TdXBwb3J0ZXIxYm9keUEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2eeb350e76/Supporter1bodyA.png"} +{"name":"新生之徽","refName":"Springleaf","namespace":"UNIQUE","unique":{"base":"Plank Kite Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludFVuaXF1ZTIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/def84c6e93/ShieldStrIntUnique2.png"} +{"name":"瓦爾克拉斯之星","refName":"Star of Wraeclast","namespace":"UNIQUE","unique":{"base":"Ruby Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9EaXJnZU9mVmljdG9yeSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e30fe7839f/DirgeOfVictory.png"} +{"name":"核星","refName":"Starforge","namespace":"UNIQUE","unique":{"base":"Infernal Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1N0YXJmb3JnZSIsInciOjIsImgiOjQsInNjYWxlIjoxLCJzaGFwZXIiOnRydWV9XQ/ed81eb98fb/Starforge.png"} +{"name":"斯塔空加之首","refName":"Starkonja's Head","namespace":"UNIQUE","unique":{"base":"Silken Hood"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Z1cnJ5aGVhZG9mc3RhcmtvbmphIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/ba13fa5202/Furryheadofstarkonja.png"} +{"name":"星光聖杯","refName":"Starlight Chalice","namespace":"UNIQUE","unique":{"base":"Iron Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvQWRhcHRhdGlvbkZsYXNrMDIiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/e2a95fa6e6/AdaptationFlask02.png"} +{"name":"靜止牢籠","refName":"Stasis Prison","namespace":"UNIQUE","unique":{"base":"Carnal Armour"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9DaHJvbm9tYW5jZXJBcm1vdXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/12a9d49478/ChronomancerArmour.png"} +{"name":"鐵幕蟲","refName":"Steelworm","namespace":"UNIQUE","unique":{"base":"Broadhead Arrow Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9TaGFyZFF1aXZlciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/f531e46359/ShardQuiver.png"} +{"name":"絕地魔履","refName":"Steppan Eard","namespace":"UNIQUE","unique":{"base":"Sorcerer Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Bc3NlZGFpc2ZlcnZvciIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/6758b977d2/Assedaisfervor.png"} +{"name":"拉茲瓦的靈石","refName":"Stone of Lazhwar","namespace":"UNIQUE","unique":{"base":"Lapis Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQ1VW5pcXVlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/c7c2e9bfcf/Amulet5Unique.png"} +{"name":"暴雨之弦","refName":"Storm Cloud","namespace":"UNIQUE","unique":{"base":"Long Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL1N0b3JtY2xvdWQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/003957da0c/Stormcloud.png"} +{"name":"禁錮暴風","refName":"Storm Prison","namespace":"UNIQUE","unique":{"base":"Spiraled Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9TdG9ybVByaXNvbiIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/0fc4811c94/StormPrison.png"} +{"name":"風暴之密","refName":"Storm Secret","namespace":"UNIQUE","unique":{"base":"Topaz Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVGh1bmRlckxvb3AiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1322cee671/ThunderLoop.png"} +{"name":"風暴之贈","refName":"Storm's Gift","namespace":"UNIQUE","unique":{"base":"Assassin's Mitts"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3Rvcm1HbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MSwic3ludGhlc2lzZWQiOnRydWV9XQ/11d9bac786/StormGloves.png"} +{"name":"暴充","refName":"Stormcharger","namespace":"UNIQUE","unique":{"base":"Plated Greaves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TdG9ybWNoYXJnZXIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4f1fe9a640/Stormcharger.png"} +{"name":"烈風暴","refName":"Stormfire","namespace":"UNIQUE","unique":{"base":"Opal Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU3Rvcm1GaXJlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6b3db4e8df/StormFire.png"} +{"name":"風暴千尋","refName":"Stormseeker","namespace":"UNIQUE","unique":{"base":"Ambush Mitts"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3Rvcm1zZWVrZXJHbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5f70258b38/StormseekerGloves.png"} +{"name":"風暴籠罩","refName":"Stormshroud","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dyZWVuSmV3ZWwyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/75f171fff6/GreenJewel2.png"} +{"name":"瓦爾之序","refName":"Story of the Vaal","namespace":"UNIQUE","unique":{"base":"Gemstone Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1N0b3J5T2ZUaGVWYWFsIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/b83d2c0b68/StoryOfTheVaal.png"} +{"name":"扼殺之息","refName":"Stranglegasp","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9HaWZ0T2ZHbG9waCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/babc794c98/GiftOfGloph.png"} +{"name":"奴役之索","refName":"String of Servitude","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvU3RyaW5nX29mX1NlcnZpdHVkZSIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/a19be8cb67/String_of_Servitude.png"} +{"name":"崇高願景","refName":"Sublime Vision","namespace":"UNIQUE","unique":{"base":"Prismatic Jewel","fixedStats":["Auras from your Skills have #% increased Effect on you","#% increased Effect of Non-Curse Auras from your Skills on Enemies"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1N1YmxpbWVWaXNpb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MSwic2hhcGVyIjp0cnVlfV0/c2fd05d3b6/SublimeVision.png"} +{"name":"黎明驟起","refName":"Sudden Dawn","namespace":"UNIQUE","unique":{"base":"Steel Circlet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1NvdWxsZXNzRWxlZ2FuY2UiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/9c572a99fe/SoullessElegance.png"} +{"name":"日炎","refName":"Sunblast","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdDgiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/c50a807f09/Belt8.png"} +{"name":"日耀","refName":"Sundance","namespace":"UNIQUE","unique":{"base":"Clasped Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TdW5kYW5jZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/b3a611197c/Sundance.png"} +{"name":"浪湧縛者","refName":"Surgebinders","namespace":"UNIQUE","unique":{"base":"Dragonscale Gauntlets"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3VyZ2VCaW5kZXJzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/c0b8d5494e/SurgeBinders.png"} +{"name":"倖存者的原罪","refName":"Survivor's Guilt","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSW1iYWxhbmNlZENvcmQiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/0560075a4c/ImbalancedCord.png"} +{"name":"史瓦林","refName":"Svalinn","namespace":"UNIQUE","unique":{"base":"Girded Tower Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0xheWVyZWRCYXJyaWVyU2hpZWxkIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/54079c2263/LayeredBarrierShield.png"} +{"name":"無盡之衣","refName":"Tabula Rasa","namespace":"UNIQUE","unique":{"base":"Simple Robe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UYWJ1bGFSYXNhIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/3bdbff0756/TabulaRasa.png"} +{"name":"汙穢契約","refName":"Tainted Pact","namespace":"UNIQUE","unique":{"base":"Coral Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWludGVkUGFjdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/77ad55d4dd/TaintedPact.png"} +{"name":"埋火","refName":"Tanu Ahi","namespace":"UNIQUE","unique":{"base":"Wyrmscale Gauntlets"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR29yZWZpc3RHbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4c11aafeb7/GorefistGloves.png"} +{"name":"砥礪深根","refName":"Taproot","namespace":"UNIQUE","unique":{"base":"Ambusher"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL01hcnJvd0dhc2hlciIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/22be181636/MarrowGasher.png"} +{"name":"塔林的顫慄之語","refName":"Taryn's Shiver","namespace":"UNIQUE","unique":{"base":"Maelström Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvVGFyeW5zc2hpdmVyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/b11b3dffb7/Tarynsshiver.png"} +{"name":"塔薩里之印","refName":"Tasalio's Sign","namespace":"UNIQUE","unique":{"base":"Sapphire Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVGFzYWxpb3NTaWduIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1e73f81099/TasaliosSign.png"} +{"name":"恨意","refName":"Taste of Hate","namespace":"UNIQUE","unique":{"base":"Sapphire Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvVGFzdGVPZkhhdGUiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/37ff43c7ff/TasteOfHate.png"} +{"name":"狂靈之怒","refName":"Tavukai","namespace":"UNIQUE","unique":{"base":"Coral Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYXZ1a2FpIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/86cc756de2/Tavukai.png"} +{"name":"塔瓦努庫的時機","refName":"Tawhanuku's Timing","namespace":"UNIQUE","unique":{"base":"Moonstone Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVGF3aGFudWt1UmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/024958a572/TawhanukuRing.png"} +{"name":"塔赫亞的殞落","refName":"Tawhoa's Felling","namespace":"UNIQUE","unique":{"base":"Piledriver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvSmFkZU1hcm9oaUVycWlIYW1tZXIiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/c0c1952927/JadeMarohiErqiHammer.png"} +{"name":"純淨之淚","refName":"Tear of Purity","namespace":"UNIQUE","unique":{"base":"Lapis Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UZWFyT2ZQdXJpdHkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8a2e6d3c61/TearOfPurity.png"} +{"name":"特克羅德的邪眼","refName":"Tecrod's Gaze","namespace":"UNIQUE","unique":{"base":"Murderous Eye Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL011cmRlcm91c0V5ZVVuaXF1ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f54f211029/MurderousEyeUnique.png"} +{"name":"冶鍊之體","refName":"Tempered Flesh","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RlbXBlcmVkUmVkIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/66e750a720/TemperedRed.png"} +{"name":"冶鍊之意","refName":"Tempered Mind","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RlbXBlcmVkQmx1ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/995f6d4810/TemperedBlue.png"} +{"name":"冶鍊之靈","refName":"Tempered Spirit","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RlbXBlcmVkR3JlZW4iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/29ecf43831/TemperedGreen.png"} +{"name":"誘惑步伐","refName":"Temptation Step","namespace":"UNIQUE","unique":{"base":"Shagreen Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9BdGFpdG9sQm9vdHMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/dd0d386124/AtaitolBoots.png"} +{"name":"行刑之刃","refName":"Terminus Est","namespace":"UNIQUE","unique":{"base":"Tiger Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZFVuaXF1ZTIiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/c5d5843861/TwoHandSwordUnique2.png"} +{"name":"霸佔","refName":"That Which Was Taken","namespace":"UNIQUE","unique":{"base":"Crimson Jewel","fixedStats":[]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0FmZmxpY3Rpb25KZXdlbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0794886e1c/AfflictionJewel.png"} +{"name":"上將","refName":"The Admiral","namespace":"UNIQUE","unique":{"base":"Varnished Coat"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9IZWFydG9mdGhlRWxlbWVudHMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/f211c99b10/HeartoftheElements.png"} +{"name":"假掰","refName":"The Adorned","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RyaWFsbWFzdGVySmV3IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f04386d454/TrialmasterJew.png"} +{"name":"聚魂石","refName":"The Anima Stone","namespace":"UNIQUE","unique":{"base":"Prismatic Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dvbGVtQ2hhb3MiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/2daa0c1149/GolemChaos.png"} +{"name":"毀滅白光","refName":"The Annihilating Light","namespace":"UNIQUE","unique":{"base":"Quarterstaff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSW50cmVwaWR1c0RvbG9yZW0iLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8244c5f079/IntrepidusDolorem.png"} +{"name":"懸念","refName":"The Anticipation","namespace":"UNIQUE","unique":{"base":"Ezomyte Tower Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0xvbmdpbmcxIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/50fbf4d6ba/Longing1.png"} +{"name":"信念之砧","refName":"The Anvil","namespace":"UNIQUE","unique":{"base":"Amber Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbnZpbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8d05280077/Anvil.png"} +{"name":"叛教者","refName":"The Apostate","namespace":"UNIQUE","unique":{"base":"Cabalist Regalia"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9VYmVyQ29ydGV4QXJtb3VyIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/aa4ef867a8/UberCortexArmour.png"} +{"name":"苦行","refName":"The Ascetic","namespace":"UNIQUE","unique":{"base":"Gold Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQxMyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8dd083062d/Amulet13.png"} +{"name":"艾拉黛絲","refName":"The Aylardex","namespace":"UNIQUE","unique":{"base":"Agate Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9YZWRyYWx5YXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d9ae7f380f/Xedralyas.png"} +{"name":"恐怖平衡","refName":"The Balance of Terror","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel","fixedStats":["+#% to all Elemental Resistances"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL3VuaXF1ZTE5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/72dbd8bd3d/unique19.png"} +{"name":"男爵","refName":"The Baron","namespace":"UNIQUE","unique":{"base":"Close Helmet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RoZUJhcm9uIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/7a7ba87170/TheBaron.png"} +{"name":"不可見之戰","refName":"The Battle Within","namespace":"UNIQUE","unique":{"base":"Oakbranch Tincture"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL1VuaXF1ZU9ha2JyYW5jaCIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/3200ef2d9b/UniqueOakbranch.png"} +{"name":"神諭之殿","refName":"The Beachhead","namespace":"UNIQUE","unique":{"base":"Harbinger Map"},"map":{},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9IYXJiaW5nZXJXaGl0ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/4a6302065c/HarbingerWhite.png","disc":{"mapTier":"W"}} +{"name":"神諭之殿","refName":"The Beachhead","namespace":"UNIQUE","unique":{"base":"Harbinger Map"},"map":{},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9IYXJiaW5nZXJZZWxsb3ciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e98c7f846e/HarbingerYellow.png","disc":{"mapTier":"Y"}} +{"name":"神諭之殿","refName":"The Beachhead","namespace":"UNIQUE","unique":{"base":"Harbinger Map"},"map":{},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9IYXJiaW5nZXJSZWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1321ebcec0/HarbingerRed.png","disc":{"mapTier":"R"}} +{"name":"獸毛披肩","refName":"The Beast Fur Shawl","namespace":"UNIQUE","unique":{"base":"Vaal Regalia"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9CZWFzdEZ1clNoYXdsIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f2a30a7f0c/BeastFurShawl.png"} +{"name":"黑藤","refName":"The Black Cane","namespace":"UNIQUE","unique":{"base":"Royal Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9UaGVCbGFja0NhbmUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/b2aa96460e/TheBlackCane.png"} +{"name":"血影","refName":"The Blood Dance","namespace":"UNIQUE","unique":{"base":"Sharkskin Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Hb3JlRnJlbnp5IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/db5eeb8b01/GoreFrenzy.png"} +{"name":"善之血","refName":"The Blood of Innocence","namespace":"UNIQUE","unique":{"base":"Censer Relic"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL0NvcmVSZWxpY1VuaXF1ZTF4MiIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/a9230e3b96/CoreRelicUnique1x2.png"} +{"name":"竭血之鐮","refName":"The Blood Reaper","namespace":"UNIQUE","unique":{"base":"Headsman Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlVW5pcXVlMiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/3f8b59ec70/TwoHandAxeUnique2.png"} +{"name":"血棘","refName":"The Blood Thorn","namespace":"UNIQUE","unique":{"base":"Gnarled Branch"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvVGhlQmxvb2RUaG9ybiIsInciOjEsImgiOjQsInNjYWxlIjoxfV0/3dac5ee34b/TheBloodThorn.png"} +{"name":"碧影夢境","refName":"The Blue Dream","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RoZUJsdWVEcmVhbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1cb1c74958/TheBlueDream.png"} +{"name":"碧影夢魘","refName":"The Blue Nightmare","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RoZUJsdWVEcmVhbVVwZ3JhZGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MSwicmVsaWMiOnRydWV9XQ/6b097a58d9/TheBlueDreamUpgrade.png"} +{"name":"堅銅戰罩","refName":"The Brass Dome","namespace":"UNIQUE","unique":{"base":"Gladiator Plate"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Eb21lT2ZCcmFzcyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/41f06694f2/DomeOfBrass.png"} +{"name":"海王冠冕","refName":"The Brine Crown","namespace":"UNIQUE","unique":{"base":"Prophet Crown"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RoZUJyaW5lQ3Jvd24iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/785aa5f630/TheBrineCrown.png"} +{"name":"祭禮之雨","refName":"The Bringer of Rain","namespace":"UNIQUE","unique":{"base":"Nightmare Bascinet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RoZUJyaW5nZXJvZlJhaW4iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3878572958/TheBringerofRain.png"} +{"name":"破香爐","refName":"The Broken Censer","namespace":"UNIQUE","unique":{"base":"Tome Relic"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljVW5pcXVlM3gxIiwidyI6MywiaCI6MSwic2NhbGUiOjF9XQ/97c059a9f1/RelicUnique3x1.png"} +{"name":"缺角帝冠","refName":"The Broken Crown","namespace":"UNIQUE","unique":{"base":"Prophet Crown"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Jyb2tlbkNyb3duIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/98b19a6cfb/BrokenCrown.png"} +{"name":"沉重陰影","refName":"The Burden of Shadows","namespace":"UNIQUE","unique":{"base":"Primordial Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvVm9vZG9vS2luZ1N0YWZmIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/295f49d20f/VoodooKingStaff.png"} +{"name":"真理負擔","refName":"The Burden of Truth","namespace":"UNIQUE","unique":{"base":"Crystal Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvU2lydXNCZWx0IiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/757f213691/SirusBelt.png"} +{"name":"眾星援護","refName":"The Celestial Brace","namespace":"UNIQUE","unique":{"base":"Goliath Gauntlets"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvVWJlclNlYXJpbmdFeGFyY2hHbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/47d365fea7/UberSearingExarchGloves.png"} +{"name":"懲戒鎖鏈","refName":"The Chains of Castigation","namespace":"UNIQUE","unique":{"base":"Processional Relic"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL0NvcmVSZWxpY1VuaXF1ZTF4MyIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/0640b266e6/CoreRelicUnique1x3.png"} +{"name":"災難臨頭","refName":"The Coming Calamity","namespace":"UNIQUE","unique":{"base":"Destroyer Regalia"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9TcGlyaXRIYXJuZXNzIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/69c0a6780d/SpiritHarness.png"} +{"name":"蠶食之闇","refName":"The Consuming Dark","namespace":"UNIQUE","unique":{"base":"Fiend Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0NvbnN1bWluZ3RoZURhcmsiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/71882cbd42/ConsumingtheDark.png"} +{"name":"血誓","refName":"The Covenant","namespace":"UNIQUE","unique":{"base":"Spidersilk Robe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9FbWJyYWNlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/d0110e7660/Embrace.png"} +{"name":"懦者的試驗","refName":"The Coward's Trial","namespace":"UNIQUE","unique":{"base":"Cursed Crypt Map"},"map":{"screenshot":"https://i.imgur.com/BCOsIS2.jpg"},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VbmRlYWRTaWVnZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/53f1dbdcb4/UndeadSiege.png"} +{"name":"緋紅風暴","refName":"The Crimson Storm","namespace":"UNIQUE","unique":{"base":"Steelwood Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0ZvcnRpZmljYXRpb25zVW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/b95b104d3e/FortificationsUnique.png"} +{"name":"狂舞德爾維希","refName":"The Dancing Dervish","namespace":"UNIQUE","unique":{"base":"Reaver Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1JoeXNibGFkZSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/3ed974e708/Rhysblade.png"} +{"name":"黯黑賢者","refName":"The Dark Seer","namespace":"UNIQUE","unique":{"base":"Shadow Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9Wb2lkR2F6ZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/e24a55cd27/VoidGaze.png"} +{"name":"深淵絕壁","refName":"The Deep One's Hide","namespace":"UNIQUE","unique":{"base":"Studded Round Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0NoaXRpbmh1bGwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/90921c2a19/Chitinhull.png"} +{"name":"心靈吞噬者","refName":"The Devourer of Minds","namespace":"UNIQUE","unique":{"base":"Pig-Faced Bascinet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1ViZXJFbGRlckhlbG0iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MSwiZWxkZXIiOnRydWV9XQ/c701291b5a/UberElderHelm.png"} +{"name":"吞噬之冠","refName":"The Devouring Diadem","namespace":"UNIQUE","unique":{"base":"Necromancer Circlet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RoZURldm91cmluZ0RpYWRlbSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/8bc93d2104/TheDevouringDiadem.png"} +{"name":"純貨","refName":"The Druggery","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvVGhlRHJ1Z2dlcnkiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/136b59f839/TheDruggery.png"} +{"name":"福馬林","refName":"The Embalmer","namespace":"UNIQUE","unique":{"base":"Carnal Mitts"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQWxsZWxvcGF0aHkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/bcf128d770/Allelopathy.png"} +{"name":"惡言聖語","refName":"The Enmity Divine","namespace":"UNIQUE","unique":{"base":"Imperial Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvUmFnZSBTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/7c95713fe7/Rage%20Staff.png"} +{"name":"短期債券","refName":"The Ephemeral Bond","namespace":"UNIQUE","unique":{"base":"Lapis Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9DaGFyZ2UgQW1wbGlmaWVyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/a285d4c77a/Charge%20Amplifier.png"} +{"name":"永恆的蘋果","refName":"The Eternal Apple","namespace":"UNIQUE","unique":{"base":"Chiming Spirit Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1RoZUV0ZXJuYWxBcHBsZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0f1033587d/TheEternalApple.png"} +{"name":"永恆鬥爭","refName":"The Eternal Struggle","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Wb2lkY29yZUFtdWxldCIsInciOjEsImgiOjEsInNjYWxlIjoxLCJzZWFyaW5nIjp0cnVlLCJ0YW5nbGVkIjp0cnVlfV0/3ca1f8ecb5/VoidcoreAmulet.png"} +{"name":"永恆屍布","refName":"The Eternity Shroud","namespace":"UNIQUE","unique":{"base":"Blood Raiment"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9NYW50bGVPZkRpc21hbnRsaW5nIiwidyI6MiwiaCI6Mywic2NhbGUiOjEsInNoYXBlciI6dHJ1ZX1d/bd0c9d1646/MantleOfDismantling.png"} +{"name":"費爾博格獠牙","refName":"The Felbog Fang","namespace":"UNIQUE","unique":{"base":"Citrine Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9TYWJlcnRvb3Roc1BlbmRhbnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/bbb6f80324/SabertoothsPendant.png"} +{"name":"第一頂峰","refName":"The First Crest","namespace":"UNIQUE","unique":{"base":"Coffer Relic","fixedStats":["This item is destroyed when applied to a Sanctum"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljVW5pcXVlMngyIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/15bd9eec94/RelicUnique2x2.png"} +{"name":"瑕疵避難","refName":"The Flawed Refuge","namespace":"UNIQUE","unique":{"base":"Maple Round Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0FmZmxpY3Rpb25TaGllbGQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e24ff32b75/AfflictionShield.png"} +{"name":"幼雛","refName":"The Fledgling","namespace":"UNIQUE","unique":{"base":"Lacquered Helmet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0V4dHJlbWVGb2N1cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/d900d9764f/ExtremeFocus.png"} +{"name":"潺流不息","refName":"The Flow Untethered","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSGFyYmluZ2VyQmVsdCIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/805aeb48f1/HarbingerBelt.png"} +{"name":"無形火炬","refName":"The Formless Flame","namespace":"UNIQUE","unique":{"base":"Royal Burgonet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Zvcm1sZXNzSW5GbGFtZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/baa0d0009b/FormlessInFlames.png"} +{"name":"無形煉獄","refName":"The Formless Inferno","namespace":"UNIQUE","unique":{"base":"Royal Burgonet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Zvcm1sZXNzSW5GbGFtZXNVUEdSQURFIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/3ac12068fd/FormlessInFlamesUPGRADE.png"} +{"name":"第四誓願","refName":"The Fourth Vow","namespace":"UNIQUE","unique":{"base":"Devout Chainmail"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9DbGVyaWNzU2FuY3R1YXJ5IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/447f6b17b1/ClericsSanctuary.png"} +{"name":"裂斷蛛絲","refName":"The Fracturing Spinner","namespace":"UNIQUE","unique":{"base":"Blunt Arrow Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9IYXJiaW5nZXJRdWl2ZXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/288bd960f9/HarbingerQuiver.png"} +{"name":"前列的線","refName":"The Front Line","namespace":"UNIQUE","unique":{"base":"Small Cluster Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1ZldGVyYW4nc0F3YXJlbmVzc0pld2VsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/7912a0c702/Veteran%27sAwarenessJewel.png"} +{"name":"支點","refName":"The Fulcrum","namespace":"UNIQUE","unique":{"base":"Ezomyte Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvRWxlbWVudGFsSGFybW9ueSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/912f60acd7/ElementalHarmony.png"} +{"name":"恐怖劇院","refName":"The Ghastly Theatre","namespace":"UNIQUE","unique":{"base":"Teak Round Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1Ntb2tlQW5kTWlycm9ycyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/95eb622489/SmokeAndMirrors.png"} +{"name":"鍍金聖杯","refName":"The Gilded Chalice","namespace":"UNIQUE","unique":{"base":"Processional Relic"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljVW5pcXVlMXgzIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/7a0ff8a041/RelicUnique1x3.png"} +{"name":"饕餮浪潮","refName":"The Gluttonous Tide","namespace":"UNIQUE","unique":{"base":"Citadel Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0ZyZW56aWVkVGVudGFjbGVzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/6dc3218af0/FrenziedTentacles.png"} +{"name":"女神的靈縛","refName":"The Goddess Bound","namespace":"UNIQUE","unique":{"base":"Whalebone Rapier"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1VuaXF1ZVJhcGllcjYiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/b9f0cc5e60/UniqueRapier6.png"} +{"name":"女神的怒炎","refName":"The Goddess Scorned","namespace":"UNIQUE","unique":{"base":"Elegant Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1RoZUdvZGRlc3NzY29ybmVkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/65470d38e9/TheGoddessscorned.png"} +{"name":"黃金守則","refName":"The Golden Rule","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RoZUdvbGRlblJ1bGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3c5f6382fc/TheGoldenRule.png"} +{"name":"青影夢境","refName":"The Green Dream","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RoZUdyZWVuRHJlYW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1a25683711/TheGreenDream.png"} +{"name":"青影夢魘","refName":"The Green Nightmare","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RoZUdyZWVuRHJlYW1VcGdyYWRlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2a2234606a/TheGreenDreamUpgrade.png"} +{"name":"斑駁蒼杖","refName":"The Grey Spire","namespace":"UNIQUE","unique":{"base":"Judgement Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvVGhlR3JleVNwaXJlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/6e3a1c2c79/TheGreySpire.png"} +{"name":"鷗喙","refName":"The Gull","namespace":"UNIQUE","unique":{"base":"Raven Mask"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RoZUd1bGwiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/ca1678efd9/TheGull.png"} +{"name":"太平","refName":"The Halcyon","namespace":"UNIQUE","unique":{"base":"Jade Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9HbGFjaWVyQ2Fjb29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9bb08197c4/GlacierCacoon.png"} +{"name":"費西亞之手","refName":"The Hand of Phrecia","namespace":"UNIQUE","unique":{"base":"Mesh Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUGhyZWNpYUdsb3ZlcyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/29b76be04c/PhreciaGloves.png"} +{"name":"收割者","refName":"The Harvest","namespace":"UNIQUE","unique":{"base":"Jasper Chopper"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9UaGVFeHRyYWN0b3IiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8452349a24/TheExtractor.png"} +{"name":"憎惡控告者","refName":"The Hateful Accuser","namespace":"UNIQUE","unique":{"base":"Nameless Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUml0dWFsUGhhbnRhc21SaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/cba7f7e493/RitualPhantasmRing.png"} +{"name":"隱藏之劍","refName":"The Hidden Blade","namespace":"UNIQUE","unique":{"base":"Ambusher"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL1NlY3JldEJsYWRlIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/a82388d924/SecretBlade.png"} +{"name":"高尚之人","refName":"The Highwayman","namespace":"UNIQUE","unique":{"base":"Gold Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmFuZGl0UmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e08cd25657/BanditRing.png"} +{"name":"神聖時刻","refName":"The Hour of Divinity","namespace":"UNIQUE","unique":{"base":"Censer Relic"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljVW5pcXVlMXgyIiwidyI6MSwiaCI6Miwic2NhbGUiOjF9XQ/f39ebcc337/RelicUnique1x2.png"} +{"name":"惡鬼轉世","refName":"The Hungry Loop","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVGhlSHVuZ3J5TG9vcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/2225980dc6/TheHungryLoop.png"} +{"name":"烈陽徽記","refName":"The Ignomon","namespace":"UNIQUE","unique":{"base":"Gold Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQ2VW5pcXVlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/41a964dea4/Amulet6Unique.png"} +{"name":"不朽之意志","refName":"The Immortal Will","namespace":"UNIQUE","unique":{"base":"Archon Kite Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0hhcmJpbmdlclNoaWVsZFVwZ3JhZGVkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/a259d55fe1/HarbingerShieldUpgraded.png"} +{"name":"無盡之距","refName":"The Infinite Pursuit","namespace":"UNIQUE","unique":{"base":"Titan Greaves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Ud29Ub25lZEJvb3RzQUxUMyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ce68366000/TwoTonedBootsALT3.png"} +{"name":"審問","refName":"The Interrogation","namespace":"UNIQUE","unique":{"base":"Small Cluster Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1NlY3JldHNPZkFnb255SmV3ZWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/fbc829657e/SecretsOfAgonyJewel.png"} +{"name":"鋼鐵壁壘","refName":"The Iron Fortress","namespace":"UNIQUE","unique":{"base":"Crusader Plate"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Jcm9uSGVhcnQgRmluYWwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/113c4e83b6/IronHeart%20Final.png"} +{"name":"鐵塊","refName":"The Iron Mass","namespace":"UNIQUE","unique":{"base":"Gladius"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1NrZWxldG9uU3dvcmQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/f3b8e5c988/SkeletonSword.png"} +{"name":"象牙塔","refName":"The Ivory Tower","namespace":"UNIQUE","unique":{"base":"Saint's Hauberk"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaGVJdm9yeVRvd2VyIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/26d71eb965/TheIvoryTower.png"} +{"name":"惡咒護符","refName":"The Jinxed Juju","namespace":"UNIQUE","unique":{"base":"Citrine Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9KdWp1c1NvdWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6d30276e6f/JujusSoul.png"} +{"name":"意涵之光","refName":"The Light of Meaning","namespace":"UNIQUE","unique":{"base":"Prismatic Jewel","fixedStats":[]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0FmZmxpY3Rpb25KZXdlbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0794886e1c/AfflictionJewel.png"} +{"name":"生者之刃","refName":"The Living Blade","namespace":"UNIQUE","unique":{"base":"Ezomyte Blade"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL0dyZWVuZXllc1N3b3JkIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/f9c9d0d265/GreeneyesSword.png"} +{"name":"堅毅之環","refName":"The Magnate","namespace":"UNIQUE","unique":{"base":"Studded Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQnVja2xlZEJlbHRVbmlxdWUiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/10d87b7baf/BuckledBeltUnique.png"} +{"name":"夜燈","refName":"The Night Lamp","namespace":"UNIQUE","unique":{"base":"Urn Relic"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljVW5pcXVlMngxIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/2a6a7e317d/RelicUnique2x1.png"} +{"name":"壓迫者","refName":"The Oppressor","namespace":"UNIQUE","unique":{"base":"Elegant Round Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1RoZVN1cHByZXNzb3IiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/c8dcd744a2/TheSuppressor.png"} +{"name":"初始經文","refName":"The Original Scripture","namespace":"UNIQUE","unique":{"base":"Papyrus Relic"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljVW5pcXVlNHgxIiwidyI6NCwiaCI6MSwic2NhbGUiOjF9XQ/e6e8bfb6e4/RelicUnique4x1.png"} +{"name":"滿溢聖杯","refName":"The Overflowing Chalice","namespace":"UNIQUE","unique":{"base":"Sulphur Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvT3ZlcmZsb3dpbmdDaGFsaWNlIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/ff0069d957/OverflowingChalice.png"} +{"name":"群魔殿","refName":"The Pandemonius","namespace":"UNIQUE","unique":{"base":"Jade Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9HbGFjaWVyQ2Fjb29uVXBncmFkZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f54aa988e2/GlacierCacoonUpgrade.png"} +{"name":"草民","refName":"The Pariah","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVGhlUGFyaWFoIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/778fe35c1e/ThePariah.png"} +{"name":"完美姿態","refName":"The Perfect Form","namespace":"UNIQUE","unique":{"base":"Zodiac Leather"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaGVQZXJmZWN0Rm9ybSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/b149b68ecb/ThePerfectForm.png"} +{"name":"學富之筆","refName":"The Poet's Pen","namespace":"UNIQUE","unique":{"base":"Carved Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9Qb2V0c1BlbiIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/f6f0645739/PoetsPen.png"} +{"name":"優雅迷鏡","refName":"The Poised Prism","namespace":"UNIQUE","unique":{"base":"Primal Arrow Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9QcmlzbWF0aWNHbGVhbSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/25341c4e59/PrismaticGleam.png"} +{"name":"權力和誓約","refName":"The Power and the Promise","namespace":"UNIQUE","unique":{"base":"Tome Relic"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL0NvcmVSZWxpY1VuaXF1ZTN4MSIsInciOjMsImgiOjEsInNjYWxlIjoxfV0/b7de2a9095/CoreRelicUnique3x1.png"} +{"name":"先祖羈絆","refName":"The Primordial Chain","namespace":"UNIQUE","unique":{"base":"Coral Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UaGVQcmltb3JkaWFsQ2hhaW4iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cd566defdb/ThePrimordialChain.png"} +{"name":"女爵","refName":"The Princess","namespace":"UNIQUE","unique":{"base":"Sabre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDNVbmlxdWUiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/2ffa300730/OneHandSword3Unique.png"} +{"name":"腐臭迴廊","refName":"The Putrid Cloister","namespace":"UNIQUE","unique":{"base":"Museum Map"},"map":{"screenshot":"https://i.imgur.com/s3LKUtm.jpg"},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9QdXRyaWRDbG9pc3RlciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/4113992f12/PutridCloister.png"} +{"name":"女王的渴望","refName":"The Queen's Hunger","namespace":"UNIQUE","unique":{"base":"Vaal Regalia"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaGVRdWVlbnNIdW5nZXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9dd0ea5e00/TheQueensHunger.png"} +{"name":"心靈鎮壓者","refName":"The Queller of Minds","namespace":"UNIQUE","unique":{"base":"Nameless Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUml0dWFsU2lsZW5jZVJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5e33a5eefb/RitualSilenceRing.png"} +{"name":"疫鼠囚籠","refName":"The Rat Cage","namespace":"UNIQUE","unique":{"base":"Sharkskin Tunic"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaGVSYXRDYWdlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/585313cc27/TheRatCage.png"} +{"name":"赤影夢境","refName":"The Red Dream","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RoZVJlZERyZWFtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5fc736ec75/TheRedDream.png"} +{"name":"赤影夢魘","refName":"The Red Nightmare","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RoZVJlZERyZWFtVXBncmFkZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/69a20aa6e0/TheRedDreamUpgrade.png"} +{"name":"赤紅蹤跡","refName":"The Red Trail","namespace":"UNIQUE","unique":{"base":"Titan Greaves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9UaGVJbmZpbml0ZVB1cnN1aXQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/518d10f12f/TheInfinitePursuit.png"} +{"name":"無盡之衛","refName":"The Restless Ward","namespace":"UNIQUE","unique":{"base":"Carnal Armour"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaGVSZXN0bGVzc1dhcmQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2508832517/TheRestlessWard.png"} +{"name":"嘔吐","refName":"The Retch","namespace":"UNIQUE","unique":{"base":"Rustic Sash"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvVGhlUmV0Y2giLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/4d93673157/TheRetch.png"} +{"name":"漣漪冥想","refName":"The Rippling Thoughts","namespace":"UNIQUE","unique":{"base":"Legion Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0hhcmJpbmdlckxlYWd1ZVN3b3JkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/e8a974a73b/HarbingerLeagueSword.png"} +{"name":"救世主","refName":"The Saviour","namespace":"UNIQUE","unique":{"base":"Legion Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL01pcmFnZUJsYWRlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/c84975781c/MirageBlade.png"} +{"name":"正義天秤","refName":"The Scales of Justice","namespace":"UNIQUE","unique":{"base":"Chiming Spirit Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0dvZGRlc3NTY2FsZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e4ddbd93f5/GoddessScales.png"} +{"name":"災害","refName":"The Scourge","namespace":"UNIQUE","unique":{"base":"Terror Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9UaGVTY291cmdlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/598a9f9893/TheScourge.png"} +{"name":"鷹嘯","refName":"The Screaming Eagle","namespace":"UNIQUE","unique":{"base":"Jade Hatchet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9TY3JlYW1pbmdlYWdsZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/1fd02e9312/Screamingeagle.png"} +{"name":"熾炎之使","refName":"The Searing Touch","namespace":"UNIQUE","unique":{"base":"Lathi"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY0dW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/5c7ddd5550/Staff4unique.png"} +{"name":"第二聖事","refName":"The Second Sacrament","namespace":"UNIQUE","unique":{"base":"Candlestick Relic"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljVW5pcXVlMXg0IiwidyI6MSwiaCI6NCwic2NhbGUiOjF9XQ/adaa7ec07c/RelicUnique1x4.png"} +{"name":"自私牧羊人","refName":"The Selfish Shepherd","namespace":"UNIQUE","unique":{"base":"Nameless Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUml0dWFsTGlmZWRyYWluUmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0ce3466499/RitualLifedrainRing.png"} +{"name":"碎裂之神力","refName":"The Shattered Divinity","namespace":"UNIQUE","unique":{"base":"Blunt Arrow Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9IYXJiaW5nZXJRdWl2ZXJVcGdyYWRlZCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/866d1ab1b7/HarbingerQuiverUpgraded.png"} +{"name":"圍城","refName":"The Siege","namespace":"UNIQUE","unique":{"base":"Small Cluster Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0tpbmV0aWNpc21KZXdlbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d748a39b2e/KineticismJewel.png"} +{"name":"雪盲恩惠","refName":"The Snowblind Grace","namespace":"UNIQUE","unique":{"base":"Zodiac Leather"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaGVTbm93YmxpbmRHcmFjZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/1f9378f004/TheSnowblindGrace.png"} +{"name":"神聖哀悼","refName":"The Sorrow of the Divine","namespace":"UNIQUE","unique":{"base":"Sulphur Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvU29ycm93T2ZUaGVEaXZpbmUiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/5d9eb26bd6/SorrowOfTheDivine.png"} +{"name":"大地主","refName":"The Squire","namespace":"UNIQUE","unique":{"base":"Elegant Round Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0Nhc3Bpcm9zUmVzb25hbmNlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/94531d2461/CaspirosResonance.png"} +{"name":"潰逃之靴","refName":"The Stampede","namespace":"UNIQUE","unique":{"base":"Assassin's Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TdXBwb3J0ZXIxYm9vdEEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f0b4c611d1/Supporter1bootA.png"} +{"name":"風暴之眼","refName":"The Stormheart","namespace":"UNIQUE","unique":{"base":"Royal Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY4dW5pcXVlWCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/fa0b46bc0c/Staff8uniqueX.png"} +{"name":"無上箴言","refName":"The Supreme Truth","namespace":"UNIQUE","unique":{"base":"Crystal Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9UaGVzdXByZW1ldHJ1dGgiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/1f03434324/Thesupremetruth.png"} +{"name":"湧浪之思想","refName":"The Surging Thoughts","namespace":"UNIQUE","unique":{"base":"Legion Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0hhcmJpbmdlclN3b3JkVXBncmFkZWQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/bf1d1647f5/HarbingerSwordUpgraded.png"} +{"name":"降伏","refName":"The Surrender","namespace":"UNIQUE","unique":{"base":"Ezomyte Tower Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0xvbmdpbmcyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/c97882a68e/Longing2.png"} +{"name":"元素之章","refName":"The Taming","namespace":"UNIQUE","unique":{"base":"Prismatic Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVGhlVGFtaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/17c5d3d74b/TheTaming.png"} +{"name":"風暴崛起","refName":"The Tempest Rising","namespace":"UNIQUE","unique":{"base":"Goliath Greaves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9VYmVyU2lydXNCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/587f0ef638/UberSirusBoots.png"} +{"name":"風暴的拘束","refName":"The Tempest's Binding","namespace":"UNIQUE","unique":{"base":"Callous Mask"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0NoaWxsU2hvY2tIYXJiaW5nZXJNYXNrIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/9a113d997b/ChillShockHarbingerMask.png"} +{"name":"暴雨之解放","refName":"The Tempest's Liberation","namespace":"UNIQUE","unique":{"base":"Callous Mask"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hhcmJpbmdlckhlbG1VcGdyYWRlZCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f4b2c70b07/HarbingerHelmUpgraded.png"} +{"name":"暴風之鋼","refName":"The Tempestuous Steel","namespace":"UNIQUE","unique":{"base":"War Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1RlbXBlc3R1b3VzU3RlZWwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/72078201f9/TempestuousSteel.png"} +{"name":"三龍戰紀","refName":"The Three Dragons","namespace":"UNIQUE","unique":{"base":"Golden Mask"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RocmVlRHJhZ29ucyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/50afe0768b/ThreeDragons.png"} +{"name":"時間之潮","refName":"The Tides of Time","namespace":"UNIQUE","unique":{"base":"Vanguard Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvVWJlclNoYXBlckJlbHQiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MSwic2hhcGVyIjp0cnVlfV0/40da4c8de9/UberShaperBelt.png"} +{"name":"奔流之開拓","refName":"The Torrent's Reclamation","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSGFyYmluZ2VyQmVsdFVwZ3JhZGVkIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/0c8b942a94/HarbingerBeltUpgraded.png"} +{"name":"戲法師的微笑","refName":"The Trickster's Smile","namespace":"UNIQUE","unique":{"base":"Visored Sallet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0F6bWVyaUhlbG1ldCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/8f7af19434/AzmeriHelmet.png"} +{"name":"暮色神廟","refName":"The Twilight Temple","namespace":"UNIQUE","unique":{"base":"Moon Temple Map"},"map":{},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9DZWxlc3RpYWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/2b43e37784/Celestial.png"} +{"name":"不滅意志","refName":"The Unshattered Will","namespace":"UNIQUE","unique":{"base":"Archon Kite Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0NoYW5uZWxpbmcgU2hpZWxkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/95b237ca78/Channeling%20Shield.png"} +{"name":"聖潔之魂","refName":"The Untouched Soul","namespace":"UNIQUE","unique":{"base":"Gold Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9TdHJpbmdPZlJpbmdzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/a79e77693d/StringOfRings.png"} +{"name":"竭誠者","refName":"The Utmost","namespace":"UNIQUE","unique":{"base":"Gold Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9QaW5uYWNsZUFtdWxldCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9e3b1529fa/PinnacleAmulet.png"} +{"name":"謎容","refName":"The Vertex","namespace":"UNIQUE","unique":{"base":"Vaal Mask"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RoZVZlcnRleCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/e4cca2929d/TheVertex.png"} +{"name":"維克塔廣場","refName":"The Vinktar Square","namespace":"UNIQUE","unique":{"base":"Courtyard Map"},"map":{},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UaGVWaW5rdGFyU3F1YXJlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d26b82ca56/TheVinktarSquare.png"} +{"name":"獄使之印","refName":"The Warden's Brand","namespace":"UNIQUE","unique":{"base":"Iron Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVGhlV2FyZGVuc0JhbmQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5d3830d11d/TheWardensBand.png"} +{"name":"蜂巢浪湧","refName":"The Wasp Nest","namespace":"UNIQUE","unique":{"base":"Throat Stabber"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9MZXZpYXRoYW5pdm9yeSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/8d31776c34/Leviathanivory.png"} +{"name":"冰點低語","refName":"The Whispering Ice","namespace":"UNIQUE","unique":{"base":"Vile Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY4dW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/04e7459f43/Staff8unique.png"} +{"name":"命定之風","refName":"The Winds of Fate","namespace":"UNIQUE","unique":{"base":"Foul Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvQW53ZW5zU3RhZmYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/e26a5d3c65/AnwensStaff.png"} +{"name":"哲櫟","refName":"The Wise Oak","namespace":"UNIQUE","unique":{"base":"Bismuth Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvVGhlV2lzZU9hayIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/80a47134d5/TheWiseOak.png"} +{"name":"扭曲之罐","refName":"The Writhing Jar","namespace":"UNIQUE","unique":{"base":"Hallowed Hybrid Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvV3JpdGhpbmdKYXIiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/6d3e384036/WrithingJar.png"} +{"name":"屈服之死相","refName":"The Yielding Mortality","namespace":"UNIQUE","unique":{"base":"Imperial Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGFyYmluZ2VyU3RhZmZVcGdyYWRlZCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/76cf7c8cb7/HarbingerStaffUpgraded.png"} +{"name":"竊罪","refName":"Thief's Torment","namespace":"UNIQUE","unique":{"base":"Prismatic Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVGhpZWZzVG9ybWVudCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1c182176dc/ThiefsTorment.png"} +{"name":"第三暴虐碎片","refName":"Third Piece of Brutality","namespace":"UNIQUE","unique":{"base":"Imperial Staff Piece"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGFyYmluZ2VyU2hhcmRzL1NoYXJkMyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/b2ec5375d5/Shard3.png"} +{"name":"第三象限碎片","refName":"Third Piece of Directions","namespace":"UNIQUE","unique":{"base":"Blunt Arrow Quiver Piece"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9TaGFyZHMvU2hhcmQzIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/d577e203a5/Shard3.png"} +{"name":"第三專注碎片","refName":"Third Piece of Focus","namespace":"UNIQUE","unique":{"base":"Archon Kite Shield Piece"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoYXJkcy9DaGFubmVsaW5nU2hpZWxkU2hhcmQzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/c50183e0b2/ChannelingShieldShard3.png"} +{"name":"第三風暴碎片","refName":"Third Piece of Storms","namespace":"UNIQUE","unique":{"base":"Callous Mask Piece"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hhcmJpbmdlclNoYXJkcy9TaGFyZDMiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/130f12073c/Shard3.png"} +{"name":"第三奧術碎片","refName":"Third Piece of the Arcane","namespace":"UNIQUE","unique":{"base":"Legion Sword Piece"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0hhcmJpbmdlckxlYWd1ZVNoYXJkcy9IYXJiaW5nZXJTd29yZFNoYXJkMyIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/b0044b38e9/HarbingerSwordShard3.png"} +{"name":"千縷","refName":"Thousand Ribbons","namespace":"UNIQUE","unique":{"base":"Simple Robe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaG91c2FuZHJpYmJvbnMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/65a99640e9/Thousandribbons.png"} +{"name":"千齒","refName":"Thousand Teeth Temu","namespace":"UNIQUE","unique":{"base":"Vaal Buckler"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleFVuaXF1ZTEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c466a1eb2a/ShieldDexUnique1.png"} +{"name":"希望之絃","refName":"Thread of Hope","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0Nvbm5lY3RlZEpld2VsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1d2c1f698a/ConnectedJewel.png"} +{"name":"三步突擊","refName":"Three-step Assault","namespace":"UNIQUE","unique":{"base":"Shagreen Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9UaHJlZVN0ZXBBc3NhdWx0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/56daf8a36a/ThreeStepAssault.png"} +{"name":"顫慄之鋼","refName":"Thrillsteel","namespace":"UNIQUE","unique":{"base":"Barbute Helmet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1vZldhciIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/887e20115c/HelmofWar.png"} +{"name":"轟天雷","refName":"Thunderfist","namespace":"UNIQUE","unique":{"base":"Murder Mitts"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvdGh1bmRlcmNsYXciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c566a6b7aa/thunderclaw.png"} +{"name":"雷視","refName":"Thundersight","namespace":"UNIQUE","unique":{"base":"Solaris Circlet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0V4cGxvcmVyc1Zpc2lvbkxpZ2h0bmluZyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/56f2f88c51/ExplorersVisionLightning.png"} +{"name":"破浪者","refName":"Tidebreaker","namespace":"UNIQUE","unique":{"base":"Imperial Maul"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVGlkZWJyZWFrZXIiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/25b69a132f/Tidebreaker.png"} +{"name":"時光之握","refName":"Timeclasp","namespace":"UNIQUE","unique":{"base":"Moonstone Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVGltZWNsYXNwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b0c1b94ad1/Timeclasp.png"} +{"name":"焊匠之膚","refName":"Tinkerskin","namespace":"UNIQUE","unique":{"base":"Sadist Garb"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UcmFwcGVyQXJtb3VyIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/3e6bd8eefe/TrapperArmour.png"} +{"name":"提圖庫斯的堅盾","refName":"Titucius' Span","namespace":"UNIQUE","unique":{"base":"Reinforced Tower Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0clVuaXF1ZTciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8dd443976b/ShieldStrUnique7.png"} +{"name":"塵埃落定","refName":"To Dust","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL3VuaXF1ZTgiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/50417e8914/unique8.png"} +{"name":"陵拳","refName":"Tombfist","namespace":"UNIQUE","unique":{"base":"Steelscale Gauntlets","fixedStats":["#% increased Attack Speed"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQWJ5c3NHbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/d0d174823c/AbyssGloves.png"} +{"name":"火柳之步","refName":"Torchoak Step","namespace":"UNIQUE","unique":{"base":"Antique Greaves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy84NTQ4MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/5d406f4285/85483.png"} +{"name":"極度苦痛","refName":"Touch of Anguish","namespace":"UNIQUE","unique":{"base":"Imperial Claw"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9Ub3VjaE9mQW5ndWlzaCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/c3b67bc0c2/TouchOfAnguish.png"} +{"name":"超凡之體","refName":"Transcendent Flesh","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RyYW5zY2VuZGVudFJlZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7dcf8933ad/TranscendentRed.png"} +{"name":"超凡之意","refName":"Transcendent Mind","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RyYW5zY2VuZGVudEJsdWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d02c69b7dc/TranscendentBlue.png"} +{"name":"超凡之靈","refName":"Transcendent Spirit","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RyYW5zY2VuZGVudEdyZWVuIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6eb091ee7a/TranscendentGreen.png"} +{"name":"顫抖之杖","refName":"Tremor Rod","namespace":"UNIQUE","unique":{"base":"Military Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvTWluZVN0YWZmIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/51a69e0959/MineStaff.png"} +{"name":"三弦指法","refName":"Triad Grip","namespace":"UNIQUE","unique":{"base":"Mesh Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvTWluaW9uQ29udmVyc2lvbkdsb3ZlcyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/6b9b027d0f/MinionConversionGloves.png"} +{"name":"三體權威","refName":"Triumvirate Authority","namespace":"UNIQUE","unique":{"base":"Unset Ring","fixedStats":["+# to Level of Socketed Vaal Gems"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVmFhbFVuc2V0UmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/21c7f71af2/VaalUnsetRing.png"} +{"name":"巫木","refName":"Trolltimber Spire","namespace":"UNIQUE","unique":{"base":"Cedar Tower Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0clVuaXF1ZTMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/062f3d11c8/ShieldStrUnique3.png"} +{"name":"裂顱","refName":"Trypanon","namespace":"UNIQUE","unique":{"base":"Great Mallet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHJ5cGFub24iLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/3152ab4124/Trypanon.png"} +{"name":"圖克哈瑪堡壘","refName":"Tukohama's Fortress","namespace":"UNIQUE","unique":{"base":"Ebony Tower Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1R1a29oYW1hc0ZvcnRyZXNzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/e502c4bcf2/TukohamasFortress.png"} +{"name":"托沃崩","refName":"Tulborn","namespace":"UNIQUE","unique":{"base":"Opal Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9UdWxib3JuIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/7c7cf3e1f2/Tulborn.png"} +{"name":"托沃臥","refName":"Tulfall","namespace":"UNIQUE","unique":{"base":"Opal Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9UdWxib3JuVXBncmFkZWQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/575d6058a2/TulbornUpgraded.png"} +{"name":"遙遠記憶:扭曲","refName":"Twisted Distant Memory","namespace":"UNIQUE","unique":{"base":"Synthesised Map"},"map":{},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TeW50aGVzaXNMaWdodG5pbmdHdWFyZGlhbk1hcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/30f4dc76de/SynthesisLightningGuardianMap.png"} +{"name":"峽灣之星","refName":"Twyzel","namespace":"UNIQUE","unique":{"base":"Sage Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kMVVuaXF1ZSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/086aeb214c/Wand1Unique.png"} +{"name":"烏拉曼的邪眼","refName":"Ulaman's Gaze","namespace":"UNIQUE","unique":{"base":"Searching Eye Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1NlYXJjaGluZ0V5ZVVuaXF1ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fd2beeb2ad/SearchingEyeUnique.png"} +{"name":"不朽繫命","refName":"Umbilicus Immortalis","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvVW1iaWxpY3VzSW1tb3J0YWxpcyIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/822946a168/UmbilicusImmortalis.png"} +{"name":"無盡飢餓","refName":"Unending Hunger","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1NwZWN0cmVKZXdlbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/4e2d72df55/SpectreJewel.png"} +{"name":"恩吉爾的叉刃","refName":"Ungil's Gauche","namespace":"UNIQUE","unique":{"base":"Boot Knife"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjN1bmlxdWUiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/ec0e6a82fb/Dagger3unique.png"} +{"name":"恩吉爾的和諧","refName":"Ungil's Harmony","namespace":"UNIQUE","unique":{"base":"Turquoise Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9VbmdpbHNIYXJtb255IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/dfdaf30e66/UngilsHarmony.png"} +{"name":"合流夢寐","refName":"United in Dream","namespace":"UNIQUE","unique":{"base":"Cutlass"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0V0ZXJuYWxTbGVlcDIiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/8d706ed435/EternalSleep2.png"} +{"name":"神感","refName":"Unnatural Instinct","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1VubmF0dXJhbEluc3RpbmN0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/c37fa5c2b6/UnnaturalInstinct.png"} +{"name":"不屈惡火","refName":"Unyielding Flame","namespace":"UNIQUE","unique":{"base":"Archon Kite Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0RhbW5hdGlvQWV0ZXJuYSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/755ec1c5d8/DamnatioAeterna.png"} +{"name":"篡位者的懺悔","refName":"Usurper's Penance","namespace":"UNIQUE","unique":{"base":"Eternal Burgonet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1VuYnJpZGxlZFJhZ2UiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3d6a6901bb/UnbridledRage.png"} +{"name":"烏圖拉的飢餓","refName":"Utula's Hunger","namespace":"UNIQUE","unique":{"base":"Majestic Plate"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9VdGFsYUJvZHlBcm1vdXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/4a4891f3f3/UtalaBodyArmour.png"} +{"name":"烏爾尼多的擁抱","refName":"Uul-Netol's Embrace","namespace":"UNIQUE","unique":{"base":"Vaal Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9VdWxOZXRvbHNLaXNzVXBncmFkZWQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8c4738c8a9/UulNetolsKissUpgraded.png"} +{"name":"烏爾尼多之吻","refName":"Uul-Netol's Kiss","namespace":"UNIQUE","unique":{"base":"Vaal Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9VdWxOZXRvbHNLaXNzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/300d5ffe23/UulNetolsKiss.png"} +{"name":"烏爾尼多之誓","refName":"Uul-Netol's Vow","namespace":"UNIQUE","unique":{"base":"Unset Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9HaWZ0b2ZVdWxOZXRvbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6cabe4da33/GiftofUulNetol.png"} +{"name":"尤莎莎的草原","refName":"Uzaza's Meadow","namespace":"UNIQUE","unique":{"base":"Sapphire Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvR3JlZW5Db21wb25lbnQyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/c5f02c50a6/GreenComponent2.png"} +{"name":"尤莎莎的山巒","refName":"Uzaza's Mountain","namespace":"UNIQUE","unique":{"base":"Sapphire Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvR3JlZW5Db21wb25lbnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f6e55e6800/GreenComponent.png"} +{"name":"尤莎莎的峽谷","refName":"Uzaza's Valley","namespace":"UNIQUE","unique":{"base":"Sapphire Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvR3JlZW5Db21wb25lbnQzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/7e3d39e9a7/GreenComponent3.png"} +{"name":"瓦爾的靈手","refName":"Vaal Caress","namespace":"UNIQUE","unique":{"base":"Bronzescale Gauntlets"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvVmFhbENhcmVzcyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/1caec1617d/VaalCaress.png"} +{"name":"瓦拉庫之印","refName":"Valako's Sign","namespace":"UNIQUE","unique":{"base":"Topaz Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVmFsYWtvc1NpZ24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cd646c8c54/ValakosSign.png"} +{"name":"戰日","refName":"Valyrium","namespace":"UNIQUE","unique":{"base":"Moonstone Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVmFseXJpdW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/dd9261042f/Valyrium.png"} +{"name":"黑鯊","refName":"Varunastra","namespace":"UNIQUE","unique":{"base":"Vaal Blade"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1ZhcnVuYXN0cmEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/ce779b1e41/Varunastra.png"} +{"name":"阿茲里的秘寶庫","refName":"Vaults of Atziri","namespace":"UNIQUE","unique":{"base":"Vaal Pyramid Map"},"map":{"screenshot":"https://i.imgur.com/O60qvAb.jpg"},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VbmlxdWVNYXAxIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/7612528d07/UniqueMap1.png"} +{"name":"夜幕","refName":"Veil of the Night","namespace":"UNIQUE","unique":{"base":"Great Helmet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1ZlaWxPZlRoZU5pZ2h0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/809ee0994f/VeilOfTheNight.png"} +{"name":"脈絡針刺","refName":"Venopuncture","namespace":"UNIQUE","unique":{"base":"Iron Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmxvb2RmcmVlemUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8873778384/Bloodfreeze.png"} +{"name":"賭神芬多","refName":"Ventor's Gamble","namespace":"UNIQUE","unique":{"base":"Gold Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvRGllT2ZEZXN0aW55IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1470dfcdce/DieOfDestiny.png"} +{"name":"維盧梭的野心","refName":"Veruso's Ambition","namespace":"UNIQUE","unique":{"base":"Shackled Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9WZXJzdXNvQm9vdHMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0b431567c7/VersusoBoots.png"} +{"name":"維盧梭攻城槌","refName":"Veruso's Battering Rams","namespace":"UNIQUE","unique":{"base":"Titan Gauntlets"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvVmVydXNvc0JhdHRlcmluZ1JhbXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e6727320e2/VerusosBatteringRams.png"} +{"name":"維克塔血器","refName":"Vessel of Vinktar","namespace":"UNIQUE","unique":{"base":"Topaz Flask","fixedStats":["#% increased Charges used","Shocks nearby Enemies during Effect, causing 10% increased Damage taken","You are Shocked during Effect, causing 50% increased Damage taken","#% of Lightning Damage Leeched as Life during Effect"]},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvVmlua3RhckZsYXNrIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/caf5220901/VinktarFlask.png"} +{"name":"維多里奧的捷思","refName":"Victario's Acuity","namespace":"UNIQUE","unique":{"base":"Turquoise Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UdXJxdW9pc2VBbXVsZXRVbmlxdWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8ba340b31f/TurquoiseAmuletUnique.png"} +{"name":"維多里奧的貢獻","refName":"Victario's Charity","namespace":"UNIQUE","unique":{"base":"Laminated Kite Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1ZpY3Rhcm9zQ2hhcml0eSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/baf0e57fb2/VictarosCharity.png"} +{"name":"維多里奧的飛昇","refName":"Victario's Flight","namespace":"UNIQUE","unique":{"base":"Goathide Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludFVuaXF1ZTIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/11ab397d3d/BootsDexIntUnique2.png"} +{"name":"維多里奧之絕響","refName":"Victario's Influence","namespace":"UNIQUE","unique":{"base":"Lacquered Garb"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9WaWN0YXJpb3NKYWNrZXQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/b50998d963/VictariosJacket.png"} +{"name":"維里迪的薄紗","refName":"Viridi's Veil","namespace":"UNIQUE","unique":{"base":"Praetor Crown"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0NvbnN0cmljdGluZ0Nyb3duIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/04ee655ca5/ConstrictingCrown.png"} +{"name":"兀鳴","refName":"Vis Mortis","namespace":"UNIQUE","unique":{"base":"Necromancer Silks"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9WaXNNb3J0aXMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/771efa547e/VisMortis.png"} +{"name":"寄生惡魔","refName":"Vivinsect","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmV0cmF5YWxFeHBlcmltZW50YXRpb25SaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/0131f81491/BetrayalExperimentationRing.png"} +{"name":"波動月影","refName":"Vix Lunaris","namespace":"UNIQUE","unique":{"base":"Cardinal Round Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleFVuaXF1ZTQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/24175c8ffb/ShieldStrDexUnique4.png"} +{"name":"雌狐的圈套","refName":"Vixen's Entrapment","namespace":"UNIQUE","unique":{"base":"Embroidered Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvVml4ZW5zRW50cmFwbWVudCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/e2d77223f8/VixensEntrapment.png"} +{"name":"暴風之言","refName":"Voice of the Storm","namespace":"UNIQUE","unique":{"base":"Lapis Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Wb2ljZU9mVGhlU3Rvcm0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c5fb24dbbe/VoiceOfTheStorm.png"} +{"name":"嗓音","refName":"Voices","namespace":"UNIQUE","unique":{"base":"Large Cluster Jewel","fixedStats":["Adds # Jewel Socket Passive Skills"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1VuaXF1ZUpld2VsQmFzZTMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/314c9905c8/UniqueJewelBase3.png"} +{"name":"潛能魔棒","refName":"Void Battery","namespace":"UNIQUE","unique":{"base":"Prophecy Wand"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9Wb2lkQmF0dGVyeSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/71a0fdc8db/VoidBattery.png"} +{"name":"虛空之力","refName":"Voidbringer","namespace":"UNIQUE","unique":{"base":"Conjurer Gloves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvSGVsbGJyaW5nZXIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/d82eb1cc3f/Hellbringer.png"} +{"name":"虛空慧眼","refName":"Voideye","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvdW51c2VkNCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6f0e76fbbb/unused4.png"} +{"name":"虛眼箭矢","refName":"Voidfletcher","namespace":"UNIQUE","unique":{"base":"Primal Arrow Quiver"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9FbGRhclF1aXZlciIsInciOjIsImgiOjMsInNjYWxlIjoxLCJlbGRlciI6dHJ1ZX1d/49051164a3/EldarQuiver.png"} +{"name":"核虛","refName":"Voidforge","namespace":"UNIQUE","unique":{"base":"Infernal Sword"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1N0YXJmb3JnZSIsInciOjIsImgiOjQsInNjYWxlIjoxLCJlbGRlciI6dHJ1ZX1d/7adc9ae2a1/Starforge.png"} +{"name":"逝空之錘","refName":"Voidhome","namespace":"UNIQUE","unique":{"base":"Dread Maul"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVm9pZGhvbWUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/0122c9dcf4/Voidhome.png"} +{"name":"虛空行者","refName":"Voidwalker","namespace":"UNIQUE","unique":{"base":"Murder Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Dcm9zc2luZ1RoZVZvaWQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MSwic2hhcGVyIjp0cnVlfV0/97df35ca87/CrossingTheVoid.png"} +{"name":"福庫爾的指引","refName":"Volkuur's Guidance","namespace":"UNIQUE","unique":{"base":"Zealot Gloves","fixedStats":["#% less Poison Duration","Cold Skills have #% chance to Poison on Hit","Fire Skills have #% chance to Poison on Hit","Lightning Skills have #% chance to Poison on Hit"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUGFsZUNvdW5jaWxHbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3271f5441a/PaleCouncilGloves.png"} +{"name":"福爾的忠誠之符","refName":"Voll's Devotion","namespace":"UNIQUE","unique":{"base":"Agate Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BZ2F0ZUFtdWxldFVuaXF1ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a67e002c89/AgateAmuletUnique.png"} +{"name":"福爾的戰鎧","refName":"Voll's Protector","namespace":"UNIQUE","unique":{"base":"Holy Chainmail"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9TdHJJbnQzQVVuaXF1ZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/d79c6d5644/StrInt3AUnique.png"} +{"name":"福爾的遠見","refName":"Voll's Vision","namespace":"UNIQUE","unique":{"base":"Praetor Crown"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1ZvbGxzVmlzaW9uIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/c8dd3f6cf3/VollsVision.png"} +{"name":"魔暴之痕","refName":"Voltaxic Rift","namespace":"UNIQUE","unique":{"base":"Spine Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL1ZvaWRzaGFmdCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/aaa5cfdba1/Voidshaft.png"} +{"name":"沃拉娜的軍隊","refName":"Vorana's March","namespace":"UNIQUE","unique":{"base":"Runic Sabatons","fixedStats":["Has no Sockets","Triggers Level # Summon Arbalists when Equipped","#% increased Movement Speed"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TcGlyaXRCb290c1VuaXF1ZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/90177dcbec/SpiritBootsUnique.png"} +{"name":"沃拉娜的醞釀","refName":"Vorana's Preparation","namespace":"UNIQUE","unique":{"base":"Iron Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvQWRhcHRhdGlvbkZsYXNrMDMiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/f67d3bf6f2/AdaptationFlask03.png"} +{"name":"祝融鍛冶","refName":"Vulconus","namespace":"UNIQUE","unique":{"base":"Demon Dagger"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL1Z1bGNvbnVzIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/aefa0a977b/Vulconus.png"} +{"name":"覆滅之兆","refName":"Wake of Destruction","namespace":"UNIQUE","unique":{"base":"Mesh Boots"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9XYWtlT2ZEZXN0cnVjdGlvbiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/5964f215f5/WakeOfDestruction.png"} +{"name":"苦行之履","refName":"Wanderlust","namespace":"UNIQUE","unique":{"base":"Wool Shoes"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9XYW5kZXJsdXN0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/c83c1c3bdc/Wanderlust.png"} +{"name":"扭曲之鐘","refName":"Warped Timepiece","namespace":"UNIQUE","unique":{"base":"Turquoise Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9XYXJwZWRUaW1lcGllY2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/abee67f17d/WarpedTimepiece.png"} +{"name":"戰士遺物","refName":"Warrior's Legacy","namespace":"UNIQUE","unique":{"base":"Ruby Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvV2FycmlvcnNMZWdhY3kiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/80c16ee4e7/WarriorsLegacy.png"} +{"name":"看守之眼","refName":"Watcher's Eye","namespace":"UNIQUE","unique":{"base":"Prismatic Jewel","fixedStats":["#% increased maximum Energy Shield","#% increased maximum Life","#% increased maximum Mana"]},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0VsZGVySmV3ZWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/278c673716/ElderJewel.png"} +{"name":"禁閉祭壇","refName":"Whakawairua Tuahu","namespace":"UNIQUE","unique":{"base":"Strand Map"},"map":{"screenshot":"https://i.imgur.com/EhrYM8w.jpg"},"icon":"https://webtw.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VbmlxdWVNYXBFeWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/7c20a66814/UniqueMapEye.png"} +{"name":"暴雨之舵","refName":"Wheel of the Stormsail","namespace":"UNIQUE","unique":{"base":"Rotted Round Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1doZWVsb2Z0aGVzdG9ybXNhaWwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9ff4153db8/Wheelofthestormsail.png"} +{"name":"白風","refName":"White Wind","namespace":"UNIQUE","unique":{"base":"Imperial Skean"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL1doaXRlV2luZCIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/48866b1c7f/WhiteWind.png"} +{"name":"闊斬","refName":"Wideswing","namespace":"UNIQUE","unique":{"base":"Poleaxe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9XaWRlc3dpbmciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/e9dfcf58df/Wideswing.png"} +{"name":"鰥寡之托","refName":"Widowhail","namespace":"UNIQUE","unique":{"base":"Crude Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL1dpZG93aGFpbEJvdyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/1f31742277/WidowhailBow.png"} +{"name":"寡婦","refName":"Widowmaker","namespace":"UNIQUE","unique":{"base":"Boot Blade"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL1dpZG93bWFrZXIiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/c581a2aec4/Widowmaker.png"} +{"name":"野火韌皮","refName":"Wildfire Phloem","namespace":"UNIQUE","unique":{"base":"Ashbark Tincture"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL1VuaXF1ZUFzaGJhcmsiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MX1d/2805cb697f/UniqueAshbark.png"} +{"name":"野性狂爪","refName":"Wildslash","namespace":"UNIQUE","unique":{"base":"Awl"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9XaWxkc2xhc2giLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/9dc7260a86/Wildslash.png"} +{"name":"意志衝突","refName":"Willclash","namespace":"UNIQUE","unique":{"base":"Golden Mask"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01pbmRCbG9ja01hc2siLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/aeb4a78ada/MindBlockMask.png"} +{"name":"柳木之禮","refName":"Willowgift","namespace":"UNIQUE","unique":{"base":"Jade Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9TdGFybGlnaHRNYXJrIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b956123acc/StarlightMark.png"} +{"name":"威爾瑪的報復","refName":"Wilma's Requital","namespace":"UNIQUE","unique":{"base":"Solaris Circlet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1dpbG1hc1JlcXVpdGFsIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/32cf26ca5b/WilmasRequital.png"} +{"name":"裂風","refName":"Windripper","namespace":"UNIQUE","unique":{"base":"Imperial Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0VhZ2xlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/01fdf37ac0/Eagle.png"} +{"name":"昇華之風","refName":"Winds of Change","namespace":"UNIQUE","unique":{"base":"Ancient Gauntlets"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyNiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/d66854dd65/GlovesStr6.png"} +{"name":"惡風足跡","refName":"Windscream","namespace":"UNIQUE","unique":{"base":"Reinforced Greaves"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9XaW5kc2NyZWFtIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/7cc293769c/Windscream.png"} +{"name":"亂世之翼","refName":"Wings of Entropy","namespace":"UNIQUE","unique":{"base":"Ezomyte Axe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9FbnRyb3B5d2luZ3MiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/86e128789a/Entropywings.png"} +{"name":"冬之心","refName":"Winterheart","namespace":"UNIQUE","unique":{"base":"Gold Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9XaW50ZXJIZWFydEFMVCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ff8c8c67f2/WinterHeartALT.png"} +{"name":"冬織","refName":"Winterweave","namespace":"UNIQUE","unique":{"base":"Coral Ring"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmxvb2RCb2lsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8335c22285/BloodBoil.png"} +{"name":"禍星女巫","refName":"Witchbane","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL3VuaXF1ZTEzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9cc73bdf26/unique13.png"} +{"name":"巫火秘釀","refName":"Witchfire Brew","namespace":"UNIQUE","unique":{"base":"Stibnite Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvV2l0Y2hGaXJlQnJldyIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/1696a739f5/WitchFireBrew.png"} +{"name":"獵巫者的審判","refName":"Witchhunter's Judgment","namespace":"UNIQUE","unique":{"base":"Highborn Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvQnJhbmREZXRvbmF0ZVN0YWZmIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/07d64ef02c/BrandDetonateStaff.png"} +{"name":"迴光之跡","refName":"Wondertrap","namespace":"UNIQUE","unique":{"base":"Velvet Slippers"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Xb25kZXJ0cmFwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/6af24f543f/Wondertrap.png"} +{"name":"憤靈郡主","refName":"Wraithlord","namespace":"UNIQUE","unique":{"base":"Bone Circlet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1dyYWl0aGxvcmQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/090d3d6bb3/Wraithlord.png"} +{"name":"費西亞之環","refName":"Wreath of Phrecia","namespace":"UNIQUE","unique":{"base":"Iron Circlet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1dyZWF0aF9vZl9QaHJlY2lhIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/7ae5bac7c5/Wreath_of_Phrecia.png"} +{"name":"龍蛻之帶","refName":"Wurm's Molt","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdDZVbmlxdWUiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/3307668b96/Belt6Unique.png"} +{"name":"龍族印記","refName":"Wyrmsign","namespace":"UNIQUE","unique":{"base":"Wyrmscale Gauntlets"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvV3lybXNpZ25HbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/fe7ef54102/WyrmsignGloves.png"} +{"name":"舍吉的手柄","refName":"Xirgil's Crank","namespace":"UNIQUE","unique":{"base":"Coiled Staff"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY3dW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/2437d7498a/Staff7unique.png"} +{"name":"索伏之血","refName":"Xoph's Blood","namespace":"UNIQUE","unique":{"base":"Amber Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9ZcGhldGhha2tzSGVhcnRVcGdyYWRlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/259f2be84d/YphethakksHeartUpgrade.png"} +{"name":"索伏之心","refName":"Xoph's Heart","namespace":"UNIQUE","unique":{"base":"Amber Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9ZcGhldGhha2tzSGVhcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8fce3ec78f/YphethakksHeart.png"} +{"name":"索伏的始源","refName":"Xoph's Inception","namespace":"UNIQUE","unique":{"base":"Citadel Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0Jsb29kUGVyaWdyZWUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/7856c171f7/BloodPerigree.png"} +{"name":"索伏的愛撫","refName":"Xoph's Nurture","namespace":"UNIQUE","unique":{"base":"Citadel Bow"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0Jsb29kUGVyaWdyZWVCUkVBQ0giLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/c1e05d8e31/BloodPerigreeBREACH.png"} +{"name":"堯馬克之權","refName":"Yaomac's Accord","namespace":"UNIQUE","unique":{"base":"Vaal Sceptre"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9PbmF0emxpU2NlcHRyZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/49dafc0859/OnatzliSceptre.png"} +{"name":"伊芙班的詭計","refName":"Ylfeban's Trickery","namespace":"UNIQUE","unique":{"base":"Hubris Circlet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1lsZmViYW4iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c40f798e46/Ylfeban.png"} +{"name":"英達的小販","refName":"Ynda's Stand","namespace":"UNIQUE","unique":{"base":"Studded Belt"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvS2FsZ3V1cmFuV2FyZEJlbHQiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/07e1a52bf3/KalguuranWardBelt.png"} +{"name":"磨難之軛","refName":"Yoke of Suffering","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Zb2tlT2ZTdWZmZXJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/80cc716213/YokeOfSuffering.png"} +{"name":"伊瑞的栽培","refName":"Yriel's Fostering","namespace":"UNIQUE","unique":{"base":"Exquisite Leather"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9QYWxlQ291bmNpbEFybW91ciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/f3c31cf6b4/PaleCouncilArmour.png"} +{"name":"札德圖斯的聖衣","refName":"Zahndethus' Cassock","namespace":"UNIQUE","unique":{"base":"Sage's Robe"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9aYWhuZGV0aHVzY2Fzc29jayIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/6de1273e49/Zahndethuscassock.png"} +{"name":"薩爾的揚音","refName":"Zeel's Amplifier","namespace":"UNIQUE","unique":{"base":"Polished Spiked Shield"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1plYWxzQW1wbGlmaWVyIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/d1e9af3da7/ZealsAmplifier.png"} +{"name":"澤佛伊之心","refName":"Zerphi's Heart","namespace":"UNIQUE","unique":{"base":"Paua Amulet"},"icon":"https://webtw.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9aZXJwaGlzSGVhcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3e35140dfe/ZerphisHeart.png"} +{"name":"澤佛伊的終息","refName":"Zerphi's Last Breath","namespace":"UNIQUE","unique":{"base":"Grand Mana Flask"},"icon":"https://webtw.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvWmVycGhpc0xhc3RCcmVhdGgiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/bf8cb7b943/ZerphisLastBreath.png"} diff --git a/renderer/public/.DS_Store/data/cmn-Hant/stats.ndjson.old b/renderer/public/.DS_Store/data/cmn-Hant/stats.ndjson.old new file mode 100644 index 000000000..7c4c2be17 --- /dev/null +++ b/renderer/public/.DS_Store/data/cmn-Hant/stats.ndjson.old @@ -0,0 +1,6648 @@ +{"ref":"# Added Passive Skills are Jewel Sockets","better":1,"matchers":[{"string":"# 個附加的天賦為珠寶插槽"},{"string":"1 個附加的天賦為珠寶插槽","value":1}],"trade":{"ids":{"explicit":["explicit.stat_4079888060"],"fractured":["fractured.stat_4079888060"],"enchant":["enchant.stat_4079888060"]}}} +{"ref":"# Cold Damage taken per second per Frenzy Charge while moving","better":1,"matchers":[{"string":"移動時每秒每顆狂怒球受到 # 冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1528823952"]}}} +{"ref":"# Crafted Modifiers","better":1,"matchers":[{"string":"# 工藝詞綴 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_crafted_mods"]}}} +{"ref":"# Crafted Prefix Modifiers","better":1,"matchers":[{"string":"# 工藝前綴 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_crafted_prefix_mods"]}}} +{"ref":"# Crafted Suffix Modifiers","better":1,"matchers":[{"string":"# 工藝後綴 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_crafted_suffix_mods"]}}} +{"ref":"# Dexterity per 1 Dexterity on Allocated Passives in Radius","better":1,"matchers":[{"string":"範圍內每 1 點配置敏捷為 # 敏捷"}],"trade":{"ids":{"explicit":["explicit.stat_172076472"]}}} +{"ref":"# Empty Modifiers","better":1,"matchers":[{"string":"# 空詞綴 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_empty_affix_mods"]}}} +{"ref":"# Empty Prefix Modifiers","better":1,"matchers":[{"string":"# 空前綴 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_empty_prefix_mods"]}}} +{"ref":"# Empty Suffix Modifiers","better":1,"matchers":[{"string":"# 空後綴 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_empty_suffix_mods"]}}} +{"ref":"# Enchant Modifiers","better":1,"matchers":[{"string":"# 附魔詞綴 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_enchant_mods"]}}} +{"ref":"# Fire Damage taken per second per Endurance Charge if you've been Hit Recently","better":1,"matchers":[{"string":"若你近期有被擊中,每秒每顆耐力球承受 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1920234902"]}}} +{"ref":"# Fractured Modifiers","better":1,"matchers":[{"string":"# 破裂詞綴 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_fractured_mods"]}}} +{"ref":"# Implicit Modifiers","better":1,"matchers":[{"string":"# 固定詞綴 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_implicit_mods"]}}} +{"ref":"# Intelligence per 1 Intelligence on Allocated Passives in Radius","better":1,"matchers":[{"string":"範圍內每 1 點配置智慧為 # 智慧"}],"trade":{"ids":{"explicit":["explicit.stat_1070347065"]}}} +{"ref":"# Life gained on Kill per Frenzy Charge","better":1,"matchers":[{"string":"每個狂怒球 # 擊殺回復生命"}],"trade":{"ids":{"explicit":["explicit.stat_1269609669"]}}} +{"ref":"# Life gained when you Block","better":1,"matchers":[{"string":"當你格擋時獲得 # 生命"},{"string":"當你格擋時失去 # 生命","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_762600725"],"implicit":["implicit.stat_762600725"],"fractured":["fractured.stat_762600725"],"scourge":["scourge.stat_762600725"]}}} +{"ref":"# Life Regenerated per Second","better":1,"matchers":[{"string":"# 每秒生命回復 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_life_regen"]}}} +{"ref":"# Lightning Damage taken per second per Power Charge if\nyour Skills have dealt a Critical Strike Recently","better":1,"matchers":[{"string":"若近期你的技能造成暴擊,\n每秒每顆暴擊球承受 # 閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1964333391"]}}} +{"ref":"# Mana gained when you Block","better":1,"matchers":[{"string":"當你格擋時獲得 # 魔力"},{"string":"當你格擋時失去 # 魔力","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2122183138"],"implicit":["implicit.stat_2122183138"],"fractured":["fractured.stat_2122183138"],"scourge":["scourge.stat_2122183138"]}}} +{"ref":"# Maximum Void Charges","better":1,"matchers":[{"string":"# 最大虛空能量球數量"}],"trade":{"ids":{"explicit":["explicit.stat_1209237645"]}}} +{"ref":"# Modifiers","better":1,"matchers":[{"string":"# 詞綴 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_affix_mods"]}}} +{"ref":"# Notable Passive Skills","better":1,"matchers":[{"string":"# 強力天賦 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_notable_passive_skills"]}}} +{"ref":"# Physical Damage taken on Minion Death","better":1,"matchers":[{"string":"當你的召喚物死亡時承受 # 點物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_4176970656"]}}} +{"ref":"# Prefix Modifiers","better":1,"matchers":[{"string":"# 前綴 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_prefix_mods"]}}} +{"ref":"# Strength per 1 Strength on Allocated Passives in Radius","better":1,"matchers":[{"string":"範圍內每 1 點配置力量為 # 力量"}],"trade":{"ids":{"explicit":["explicit.stat_552705983"]}}} +{"ref":"# Suffix Modifiers","better":1,"matchers":[{"string":"# 後綴 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_suffix_mods"]}}} +{"ref":"# to # Added Attack Lightning Damage per 200 Accuracy Rating","better":1,"matchers":[{"string":"每 200 命中值附加 # 至 # 攻擊閃電傷害"}],"trade":{"ids":{"implicit":["implicit.stat_4139229725"]}}} +{"ref":"# to # Added Chaos Damage with Bow Attacks","better":1,"matchers":[{"string":"弓攻擊附加 # 至 # 混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3478075311"],"implicit":["implicit.stat_3478075311"],"fractured":["fractured.stat_3478075311"]}}} +{"ref":"# to # Added Chaos Damage with Claw Attacks","better":1,"matchers":[{"string":"爪攻擊附加 # 至 # 混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_4191067677"],"fractured":["fractured.stat_4191067677"]}}} +{"ref":"# to # Added Chaos Damage with Dagger Attacks","better":1,"matchers":[{"string":"匕首攻擊附加 # 至 # 混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3248691197"],"fractured":["fractured.stat_3248691197"]}}} +{"ref":"# to # added Cold Damage\nPlayers and their Minions have # to # added Cold Damage","better":1,"matchers":[{"string":"附加 # 至 # 冰冷傷害\n玩家和他們的召喚物附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3938603844"],"fractured":["fractured.stat_3938603844"]}}} +{"ref":"# to # Added Cold Damage per Frenzy Charge","better":1,"matchers":[{"string":"每顆狂怒球附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3648858570"],"implicit":["implicit.stat_3648858570"],"fractured":["fractured.stat_3648858570"]}}} +{"ref":"# to # Added Cold Damage with Axe Attacks","better":1,"matchers":[{"string":"斧攻擊附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1782176131"],"fractured":["fractured.stat_1782176131"]}}} +{"ref":"# to # Added Cold Damage with Bow Attacks","better":1,"matchers":[{"string":"弓攻擊附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_215124030"],"implicit":["implicit.stat_215124030"],"fractured":["fractured.stat_215124030"]}}} +{"ref":"# to # Added Cold Damage with Claw Attacks","better":1,"matchers":[{"string":"爪攻擊附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2848646243"],"fractured":["fractured.stat_2848646243"]}}} +{"ref":"# to # Added Cold Damage with Dagger Attacks","better":1,"matchers":[{"string":"匕首攻擊附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1263342750"],"fractured":["fractured.stat_1263342750"]}}} +{"ref":"# to # Added Cold Damage with Mace or Sceptre Attacks","better":1,"matchers":[{"string":"錘和權杖攻擊附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_187418672"],"fractured":["fractured.stat_187418672"]}}} +{"ref":"# to # Added Cold Damage with Staff Attacks","better":1,"matchers":[{"string":"長杖攻擊附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1261958804"],"fractured":["fractured.stat_1261958804"]}}} +{"ref":"# to # Added Cold Damage with Sword Attacks","better":1,"matchers":[{"string":"劍攻擊附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_972201717"],"fractured":["fractured.stat_972201717"]}}} +{"ref":"# to # Added Cold Damage with Wand Attacks","better":1,"matchers":[{"string":"法杖攻擊附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2383797932"],"fractured":["fractured.stat_2383797932"]}}} +{"ref":"# to # added Fire Damage\nPlayers and their Minions have # to # added Fire Damage","better":1,"matchers":[{"string":"附加 # 至 # 火焰傷害\n玩家和他們的召喚物附加 # 至 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_190652296"],"fractured":["fractured.stat_190652296"]}}} +{"ref":"# to # added Fire Damage against Burning Enemies","better":1,"matchers":[{"string":"對燃燒的敵人附加 # 至 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_165402179"],"fractured":["fractured.stat_165402179"]}}} +{"ref":"# to # added Fire Damage per 100 of Maximum Life or Maximum Mana, whichever is lower","better":1,"matchers":[{"string":"每 100 最大生命或最大魔力附加 # 至 # 火焰傷害,兩者取低者"}],"trade":{"ids":{"explicit":["explicit.stat_753801406"]}}} +{"ref":"# to # Added Fire Damage with Axe Attacks","better":1,"matchers":[{"string":"斧攻擊附加 # 至 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2461965653"],"fractured":["fractured.stat_2461965653"]}}} +{"ref":"# to # Added Fire Damage with Bow Attacks","better":1,"matchers":[{"string":"弓攻擊附加 # 至 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3120164895"],"implicit":["implicit.stat_3120164895"],"fractured":["fractured.stat_3120164895"]}}} +{"ref":"# to # Added Fire Damage with Claw Attacks","better":1,"matchers":[{"string":"爪攻擊附加 # 至 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2154290807"],"fractured":["fractured.stat_2154290807"]}}} +{"ref":"# to # Added Fire Damage with Dagger Attacks","better":1,"matchers":[{"string":"匕首攻擊附加 # 至 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1910361436"],"fractured":["fractured.stat_1910361436"]}}} +{"ref":"# to # Added Fire Damage with Mace or Sceptre Attacks","better":1,"matchers":[{"string":"錘和權杖攻擊附加 # 至 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3146788701"],"fractured":["fractured.stat_3146788701"]}}} +{"ref":"# to # Added Fire Damage with Staff Attacks","better":1,"matchers":[{"string":"長杖攻擊附加 # 至 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3220927448"],"fractured":["fractured.stat_3220927448"]}}} +{"ref":"# to # Added Fire Damage with Sword Attacks","better":1,"matchers":[{"string":"劍攻擊附加 # 至 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_601249293"],"fractured":["fractured.stat_601249293"]}}} +{"ref":"# to # Added Fire Damage with Wand Attacks","better":1,"matchers":[{"string":"法杖攻擊附加 # 至 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_87098247"],"fractured":["fractured.stat_87098247"]}}} +{"ref":"# to # added Lightning Damage\nPlayers and their Minions have # to # added Lightning Damage","better":1,"matchers":[{"string":"附加 # 至 # 閃電傷害\n玩家和他們的召喚物附加 # 至 # 閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2697534676"],"fractured":["fractured.stat_2697534676"]}}} +{"ref":"# to # Added Lightning Damage with Axe Attacks","better":1,"matchers":[{"string":"斧攻擊附加 # 至 # 閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1582068183"],"fractured":["fractured.stat_1582068183"]}}} +{"ref":"# to # Added Lightning Damage with Bow Attacks","better":1,"matchers":[{"string":"弓攻擊附加 # 至 # 閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1040269876"],"implicit":["implicit.stat_1040269876"],"fractured":["fractured.stat_1040269876"]}}} +{"ref":"# to # Added Lightning Damage with Claw Attacks","better":1,"matchers":[{"string":"爪攻擊附加 # 至 # 閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_4231842891"],"fractured":["fractured.stat_4231842891"]}}} +{"ref":"# to # Added Lightning Damage with Dagger Attacks","better":1,"matchers":[{"string":"匕首攻擊附加 # 至 # 閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3479683016"],"fractured":["fractured.stat_3479683016"]}}} +{"ref":"# to # Added Lightning Damage with Mace or Sceptre Attacks","better":1,"matchers":[{"string":"錘和權杖攻擊附加 # 至 # 閃電攻擊"}],"trade":{"ids":{"explicit":["explicit.stat_2096159630"],"fractured":["fractured.stat_2096159630"]}}} +{"ref":"# to # Added Lightning Damage with Staff Attacks","better":1,"matchers":[{"string":"長杖攻擊附加 # 至 # 閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3212481075"],"fractured":["fractured.stat_3212481075"]}}} +{"ref":"# to # Added Lightning Damage with Sword Attacks","better":1,"matchers":[{"string":"劍攻擊附加 # 至 # 閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1237708713"],"fractured":["fractured.stat_1237708713"]}}} +{"ref":"# to # Added Lightning Damage with Wand Attacks","better":1,"matchers":[{"string":"法杖攻擊附加 # 至 # 閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2787733863"],"fractured":["fractured.stat_2787733863"]}}} +{"ref":"# to # added Physical Damage\nPlayers and their Minions have # to # added Physical Damage","better":1,"matchers":[{"string":"附加 # 至 # 物理傷害\n玩家和他們的召喚物附加 # 至 # 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1563396443"],"fractured":["fractured.stat_1563396443"]}}} +{"ref":"# to # Added Physical Damage with Axe Attacks","better":1,"matchers":[{"string":"斧攻擊附加 # 至 # 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_311030839"],"fractured":["fractured.stat_311030839"]}}} +{"ref":"# to # Added Physical Damage with Bow Attacks","better":1,"matchers":[{"string":"弓攻擊附加 # 至 # 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1760576992"],"implicit":["implicit.stat_1760576992"],"fractured":["fractured.stat_1760576992"]}}} +{"ref":"# to # Added Physical Damage with Claw Attacks","better":1,"matchers":[{"string":"爪攻擊附加 # 至 # 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3303015"],"fractured":["fractured.stat_3303015"]}}} +{"ref":"# to # Added Physical Damage with Dagger Attacks","better":1,"matchers":[{"string":"匕首攻擊附加 # 至 # 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1298238534"],"fractured":["fractured.stat_1298238534"]}}} +{"ref":"# to # Added Physical Damage with Mace or Sceptre Attacks","better":1,"matchers":[{"string":"錘和權杖攻擊附加 # 至 # 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3882662078"],"fractured":["fractured.stat_3882662078"]}}} +{"ref":"# to # Added Physical Damage with Staff Attacks","better":1,"matchers":[{"string":"長杖攻擊附加 # 至 # 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_69898010"],"fractured":["fractured.stat_69898010"]}}} +{"ref":"# to # Added Physical Damage with Sword Attacks","better":1,"matchers":[{"string":"劍攻擊附加 # 至 # 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1040189894"],"fractured":["fractured.stat_1040189894"]}}} +{"ref":"# to # Added Physical Damage with Wand Attacks","better":1,"matchers":[{"string":"法杖攻擊附加 # 至 # 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_133683091"],"fractured":["fractured.stat_133683091"]}}} +{"ref":"# to # Added Spell Chaos Damage while Dual Wielding","better":1,"matchers":[{"string":"雙持武器時法術附加 # 至 # 混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1865428306"],"fractured":["fractured.stat_1865428306"]}}} +{"ref":"# to # Added Spell Chaos Damage while holding a Shield","better":1,"matchers":[{"string":"持盾時法術附加 # 至 # 混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1181129483"],"fractured":["fractured.stat_1181129483"]}}} +{"ref":"# to # Added Spell Chaos Damage while wielding a Two Handed Weapon","better":1,"matchers":[{"string":"持雙手武器時法術附加 # 至 # 混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1743759111"],"fractured":["fractured.stat_1743759111"]}}} +{"ref":"# to # Added Spell Cold Damage while Dual Wielding","better":1,"matchers":[{"string":"雙持武器時法術附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3376452528"],"fractured":["fractured.stat_3376452528"]}}} +{"ref":"# to # Added Spell Cold Damage while holding a Shield","better":1,"matchers":[{"string":"持盾時法術附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2671663397"],"fractured":["fractured.stat_2671663397"]}}} +{"ref":"# to # Added Spell Cold Damage while wielding a Two Handed Weapon","better":1,"matchers":[{"string":"持雙手武器時法術附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2464689927"],"fractured":["fractured.stat_2464689927"]}}} +{"ref":"# to # Added Spell Fire Damage while Dual Wielding","better":1,"matchers":[{"string":"雙持武器時法術附加 # 至 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_662691280"],"fractured":["fractured.stat_662691280"]}}} +{"ref":"# to # Added Spell Fire Damage while holding a Shield","better":1,"matchers":[{"string":"持盾時法術附加 # 至 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_44182350"],"fractured":["fractured.stat_44182350"]}}} +{"ref":"# to # Added Spell Fire Damage while wielding a Two Handed Weapon","better":1,"matchers":[{"string":"持雙手武器時法術附加 # 至 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2135335407"],"fractured":["fractured.stat_2135335407"]}}} +{"ref":"# to # Added Spell Lightning Damage while Dual Wielding","better":1,"matchers":[{"string":"雙持武器時法術附加 # 至 # 閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3352373076"],"fractured":["fractured.stat_3352373076"]}}} +{"ref":"# to # Added Spell Lightning Damage while holding a Shield","better":1,"matchers":[{"string":"持盾時法術附加 # 至 # 閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1801889979"],"fractured":["fractured.stat_1801889979"]}}} +{"ref":"# to # Added Spell Lightning Damage while wielding a Two Handed Weapon","better":1,"matchers":[{"string":"持雙手武器時法術附加 # 至 # 閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2398198236"],"fractured":["fractured.stat_2398198236"]}}} +{"ref":"# to # Added Spell Physical Damage while Dual Wielding","better":1,"matchers":[{"string":"雙持武器時法術附加 # 至 # 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_4255924189"],"fractured":["fractured.stat_4255924189"]}}} +{"ref":"# to # Added Spell Physical Damage while holding a Shield","better":1,"matchers":[{"string":"持盾時法術附加 # 至 # 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3954157711"],"fractured":["fractured.stat_3954157711"]}}} +{"ref":"# to # Added Spell Physical Damage while wielding a Two Handed Weapon","better":1,"matchers":[{"string":"持雙手武器時法術附加 # 至 # 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2921084940"],"fractured":["fractured.stat_2921084940"]}}} +{"ref":"# to # Fire Damage per Endurance Charge","better":1,"matchers":[{"string":"每顆耐力球附加 # 至 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1073447019"],"fractured":["fractured.stat_1073447019"]}}} +{"ref":"# to # Lightning Damage per Power Charge","better":1,"matchers":[{"string":"每顆暴擊球附加 # 至 # 閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1917107159"],"fractured":["fractured.stat_1917107159"]}}} +{"ref":"# total Elemental Resistances","better":1,"matchers":[{"string":"# 元素抗性 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_count_elemental_resistances"]}}} +{"ref":"# total Resistances","better":1,"matchers":[{"string":"# 總抗性 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_count_resistances"]}}} +{"ref":"#% additional Elemental Resistances during Effect","better":1,"matchers":[{"string":"效果持續時間,有 #% 額外元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_962725504"],"fractured":["fractured.stat_962725504"]}}} +{"ref":"#% additional Physical Damage Reduction","better":1,"matchers":[{"string":"#% 額外物理傷害減免"}],"trade":{"ids":{"explicit":["explicit.stat_3771516363"],"implicit":["implicit.stat_3771516363"],"fractured":["fractured.stat_3771516363"],"crafted":["crafted.stat_3771516363"]}}} +{"ref":"#% additional Physical Damage Reduction against Abyssal Monsters","better":1,"matchers":[{"string":"對深淵怪物獲得 #% 額外物理傷害減免"}],"trade":{"ids":{"explicit":["explicit.stat_287491423"],"implicit":["implicit.stat_287491423"],"fractured":["fractured.stat_287491423"]}}} +{"ref":"#% additional Physical Damage Reduction during any Flask Effect","better":1,"matchers":[{"string":"在任何藥劑效果持續時間內,有 #% 額外物理傷害減免"}],"trade":{"ids":{"explicit":["explicit.stat_2693266036"],"fractured":["fractured.stat_2693266036"]}}} +{"ref":"#% additional Physical Damage Reduction from Hits per Siphoning Charge","better":1,"matchers":[{"string":"每顆虹吸能量球使被擊中有 #% 額外物理傷害減免"}],"trade":{"ids":{"explicit":["explicit.stat_3837366401"]}}} +{"ref":"#% additional Physical Damage Reduction if you weren't Damaged by a Hit Recently","better":1,"matchers":[{"string":"若近期沒有被擊中傷害,減少 #% 額外物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3603666270"],"fractured":["fractured.stat_3603666270"]}}} +{"ref":"#% additional Physical Damage Reduction per 10 Strength on Allocated Passives in Radius","better":1,"matchers":[{"string":"範圍內每 10 點配置力量有 #% 額外物理傷害減免"}],"trade":{"ids":{"explicit":["explicit.stat_2519848087"]}}} +{"ref":"#% additional Physical Damage Reduction per Frenzy Charge","better":1,"matchers":[{"string":"每顆狂怒球有 #% 額外物理傷害減免"}],"trade":{"ids":{"explicit":["explicit.stat_1226049915"]}}} +{"ref":"#% additional Physical Damage Reduction per Power Charge","better":1,"matchers":[{"string":"每顆暴擊球有 #% 額外物理傷害減免"}],"trade":{"ids":{"explicit":["explicit.stat_3986347319"]}}} +{"ref":"#% additional Physical Damage Reduction while affected by Determination","better":1,"matchers":[{"string":"被堅定影響時,有 #% 額外物理傷害減免"}],"trade":{"ids":{"explicit":["explicit.stat_1873457881"],"implicit":["implicit.stat_1873457881"]}}} +{"ref":"#% additional Physical Damage Reduction while affected by Herald of Purity","better":1,"matchers":[{"string":"被純淨之捷影響時,有 #% 額外物理傷害減免"}],"trade":{"ids":{"explicit":["explicit.stat_3163114700"]}}} +{"ref":"#% additional Physical Damage Reduction while Focused","better":1,"matchers":[{"string":"專注時有 #% 額外物理傷害減免"}],"trade":{"ids":{"explicit":["explicit.stat_3753650187"],"fractured":["fractured.stat_3753650187"],"crafted":["crafted.stat_3753650187"]}}} +{"ref":"#% additional Physical Damage Reduction while moving","better":1,"matchers":[{"string":"移動時有 #% 額外物理傷害減免"}],"trade":{"ids":{"explicit":["explicit.stat_2713357573"]}}} +{"ref":"#% additional Physical Damage Reduction while stationary","better":1,"matchers":[{"string":"站立時,承受 #% 物理傷害"},{"string":"站立時,有額外 #% 物理傷害減免"}],"trade":{"ids":{"explicit":["explicit.stat_2181129193"],"implicit":["implicit.stat_2181129193"],"fractured":["fractured.stat_2181129193"]}}} +{"ref":"#% Base Defence Percentile","better":1,"matchers":[{"string":"#% 基礎防禦百分比 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_base_defence_percentile"]}}} +{"ref":"#% chance for Bleeding inflicted with this Weapon to deal 100% more Damage","better":1,"matchers":[{"string":"使用此武器攻擊所造成的流血有 #% 機率使流血造成 100% 更多傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1560880986"]}}} +{"ref":"#% chance for Discharge to deal Damage without removing Charges","better":1,"matchers":[{"string":"解放有 #% 機率在造成傷害時不移除能量球"},{"string":"解放造成傷害時不移除能量球","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1833626118"]}}} +{"ref":"#% chance for dropped Maps to convert to Atlas Memories","better":1,"matchers":[{"string":"掉落的地圖有 #% 機率轉化至輿圖記憶 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_conversion_memory_line"]}}} +{"ref":"#% chance for dropped Maps to convert to Conqueror Maps","better":1,"matchers":[{"string":"掉落的地圖有 #% 機率轉化至征服者地圖 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_conversion_conqueror_map"]}}} +{"ref":"#% chance for dropped Maps to convert to Elder Maps","better":1,"matchers":[{"string":"掉落的地圖有 #% 機率轉化至尊師地圖 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_conversion_elder_map"]}}} +{"ref":"#% chance for dropped Maps to convert to Maven Invitations","better":1,"matchers":[{"string":"掉落的地圖有 #% 機率轉化至釋界之邀 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_conversion_maven_invitation"]}}} +{"ref":"#% chance for dropped Maps to convert to Scarabs","better":1,"matchers":[{"string":"掉落的地圖有 #% 機率轉化至聖甲蟲 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_conversion_scarab"]}}} +{"ref":"#% chance for dropped Maps to convert to Shaper Maps","better":1,"matchers":[{"string":"掉落的地圖有 #% 機率轉化至塑界者地圖 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_conversion_shaper_map"]}}} +{"ref":"#% chance for dropped Maps to convert to Unique Maps","better":1,"matchers":[{"string":"掉落的地圖有 #% 機率轉化至傳奇地圖 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_conversion_unique_map"]}}} +{"ref":"#% chance for Elemental Resistances to count as being 90% against Enemy Hits","better":1,"matchers":[{"string":"有 #% 機率使元素抗性以 90% 的值對抗敵人的擊中"},{"string":"使元素抗性以 90% 的值對抗敵人的擊中","value":100}],"trade":{"ids":{"explicit":["explicit.stat_204458505"]}}} +{"ref":"#% chance for Energy Shield Recharge to start when you Block","better":1,"matchers":[{"string":"當你格擋時,有 #% 機率開始充能能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_762154651"]}}} +{"ref":"#% chance for Energy Shield Recharge to start when you Kill an Enemy","better":1,"matchers":[{"string":"當你擊殺敵人時,有 #% 機率開始充能能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_1618482990"]}}} +{"ref":"#% chance for Energy Shield Recharge to start when you Suppress Spell Damage","better":1,"matchers":[{"string":"當你壓抑法術傷害時,有 #% 機率開始充能能量護盾"},{"string":"當你壓抑法術傷害時,開始充能能量護盾","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3410306164"]}}} +{"ref":"#% chance for Energy Shield Recharge to start when you use a Skill","better":1,"matchers":[{"string":"當你使用技能時,有 #% 機率開始充能能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_3853996752"]}}} +{"ref":"#% chance for Flasks you use to not consume Charges","better":1,"matchers":[{"string":"#% 機率使你使用藥劑時不消耗充能"}],"trade":{"ids":{"explicit":["explicit.stat_311641062"],"fractured":["fractured.stat_311641062"],"scourge":["scourge.stat_311641062"],"crafted":["crafted.stat_311641062"]}}} +{"ref":"#% chance for Impales on Enemies you Kill to Reflect Damage to surrounding Enemies","better":1,"matchers":[{"string":"你擊殺的敵人,有 #% 機率使他們身上的穿刺對附近敵人造成反射傷害"},{"string":"你擊殺的敵人,使他們身上的穿刺對附近敵人造成反射傷害","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3927388937"]}}} +{"ref":"#% chance for Phase Run to increase Duration without removing Frenzy Charges","better":1,"matchers":[{"string":"#% 機率不用消耗狂怒球,增加暗影迷蹤持續時間"},{"string":"不用消耗狂怒球,增加暗影迷蹤持續時間","value":100}],"trade":{"ids":{"enchant":["enchant.stat_4259029320"]}}} +{"ref":"#% chance for Poisons inflicted with this Weapon to deal 100% more Damage","better":1,"matchers":[{"string":"使用此武器攻擊所造成的中毒有 #% 機率使中毒造成 100% 更多傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2523146878"]}}} +{"ref":"#% chance for Poisons inflicted with this Weapon to deal 300% more Damage","better":1,"matchers":[{"string":"使用此武器攻擊所造成的中毒有 #% 機率使中毒造成 300% 更多傷害"}],"trade":{"ids":{"explicit":["explicit.stat_768124628"]}}} +{"ref":"#% Chance for Puncture to Maim on hit","better":1,"matchers":[{"string":"放血擊中時有 #% 機率造成癱瘓"}],"trade":{"ids":{"enchant":["enchant.stat_244125450"]}}} +{"ref":"#% chance for Rare Monsters to Fracture on death","better":1,"fromUberAreaMods":true,"matchers":[{"string":"稀有怪物死亡時有 #% 機率破裂"}],"trade":{"ids":{"explicit":["explicit.stat_3097694855"]}}} +{"ref":"#% chance for Resolve Mitigation to be doubled when Hit by an Enemy","better":1,"matchers":[{"string":"當被擊人擊中時,有 #% 機率使決心輕減為 2 倍"}],"trade":{"ids":{"explicit":["sanctum.stat_774484840"]}}} +{"ref":"#% chance for Slain monsters to drop an additional Scroll of Wisdom","better":1,"matchers":[{"string":"擊殺敵人有 #% 機率掉落 1 個額外知識卷軸"}],"trade":{"ids":{"explicit":["explicit.stat_2920230984"]}}} +{"ref":"#% chance for Spell Hits against you to inflict Poison","better":1,"matchers":[{"string":"法術 #% 機率對你擊中造成中毒"},{"string":"法術對你擊中造成中毒","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2043747322"]}}} +{"ref":"#% Chance for Traps to Trigger an additional time","better":1,"matchers":[{"string":"陷阱有 #% 機率額外觸發一次"},{"string":"陷阱額外觸發一次","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1087710344"]}}} +{"ref":"#% chance in Heists for Basic Currency drops to be Duplicated","better":1,"matchers":[{"string":"劫盜中有 #% 機率掉落的基礎通貨被複製"},{"string":"劫盜中掉落的基礎通貨被複製","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2966079414"]}}} +{"ref":"#% chance in Heists for Chaos Orbs to drop as Divine Orbs instead","better":1,"matchers":[{"string":"劫盜中有 #% 機率混沌石掉落為神聖石"},{"string":"劫盜中混沌石掉落為神聖石","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2106095595"]}}} +{"ref":"#% chance in Heists for Chaos Orbs to drop as Exalted Orbs instead","better":1,"matchers":[{"string":"劫盜中有 #% 機率混沌石掉落為崇高石"},{"string":"劫盜中混沌石掉落為崇高石","value":100}],"trade":{"ids":{"explicit":["explicit.stat_779592324"]}}} +{"ref":"#% chance in Heists for Chromatic Orbs to drop as Jeweller's Orbs instead","better":1,"matchers":[{"string":"劫盜中有 #% 機率幻色石掉落為工匠石"},{"string":"劫盜中幻色石掉落為工匠石","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1545361315"]}}} +{"ref":"#% chance in Heists for Chromatic Orbs to drop as Orbs of Fusing instead","better":1,"matchers":[{"string":"劫盜中有 #% 機率幻色石掉落為鏈結石"},{"string":"劫盜中幻色石掉落為鏈結石","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3213734550"]}}} +{"ref":"#% chance in Heists for Items to drop Corrupted","better":1,"matchers":[{"string":"劫盜中有 #% 機率掉落已汙染的道具"},{"string":"劫盜中掉落已汙染的道具","value":100}],"trade":{"ids":{"explicit":["explicit.stat_530889264"]}}} +{"ref":"#% chance in Heists for Items to drop fully linked","better":1,"matchers":[{"string":"劫盜中有 #% 機率掉落最大連線的道具"},{"string":"劫盜中掉落最大連線的道具","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3892832319"]}}} +{"ref":"#% chance in Heists for Items to drop Identified","better":1,"matchers":[{"string":"劫盜中有 #% 機率掉落已鑑定道具"},{"string":"劫盜中掉落已鑑定道具","value":100}],"trade":{"ids":{"explicit":["explicit.stat_701843516"]}}} +{"ref":"#% chance in Heists for Items to drop with an additional Socket","better":1,"matchers":[{"string":"劫盜中有 #% 機率掉落的物品有 1 個額外插槽"},{"string":"劫盜中掉落的物品有 1 個額外插槽","value":100}],"trade":{"ids":{"explicit":["explicit.stat_986381677"]}}} +{"ref":"#% chance in Heists for Items to drop with Elder Influence","better":1,"matchers":[{"string":"劫盜中有 #% 機率掉落的道具有尊師勢力"},{"string":"劫盜中掉落的道具有尊師勢力","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3733808322"]}}} +{"ref":"#% chance in Heists for Items to drop with Shaper Influence","better":1,"matchers":[{"string":"劫盜中有 #% 機率掉落的道具有塑界者勢力"},{"string":"劫盜中掉落的道具有塑界者勢力","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1494306466"]}}} +{"ref":"#% chance in Heists for Jeweller's Orbs to drop as Orbs of Fusing instead","better":1,"matchers":[{"string":"劫盜中有 #% 機率工匠石掉落為鏈結石"},{"string":"劫盜中工匠石掉落為鏈結石","value":100}],"trade":{"ids":{"explicit":["explicit.stat_533969887"]}}} +{"ref":"#% chance in Heists for Orbs of Alteration to drop as Chaos Orbs instead","better":1,"matchers":[{"string":"劫盜中有 #% 機率改造石掉落為混沌石"},{"string":"劫盜中改造石掉落為混沌石","value":100}],"trade":{"ids":{"explicit":["explicit.stat_844812352"]}}} +{"ref":"#% chance in Heists for Orbs of Alteration to drop as Orbs of Alchemy instead","better":1,"matchers":[{"string":"劫盜中有 #% 機率改造石掉落為點金石"},{"string":"劫盜中改造石掉落為點金石","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1122682019"]}}} +{"ref":"#% chance in Heists for Orbs of Alteration to drop as Regal Orbs instead","better":1,"matchers":[{"string":"劫盜中有 #% 機率改造石掉落為富豪石"},{"string":"劫盜中改造石掉落為富豪石","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1290611485"]}}} +{"ref":"#% chance in Heists for Orbs of Augmentation to drop as Chaos Orbs instead","better":1,"matchers":[{"string":"劫盜中有 #% 機率增幅石掉落為混沌石"},{"string":"劫盜中增幅石掉落為混沌石","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2559492014"]}}} +{"ref":"#% chance in Heists for Orbs of Augmentation to drop as Orbs of Alchemy instead","better":1,"matchers":[{"string":"劫盜中有 #% 機率增幅石掉落為點金石"},{"string":"劫盜中增幅石掉落為點金石","value":100}],"trade":{"ids":{"explicit":["explicit.stat_306037665"]}}} +{"ref":"#% chance in Heists for Orbs of Augmentation to drop as Regal Orbs instead","better":1,"matchers":[{"string":"劫盜中有 #% 機率增幅石掉落為富豪石"},{"string":"劫盜中增幅石掉落為富豪石","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1071676747"]}}} +{"ref":"#% chance in Heists for Orbs of Regret to drop as Orbs of Annulment instead","better":1,"matchers":[{"string":"劫盜中有 #% 機率後悔石掉落為無效石"},{"string":"劫盜中後悔石掉落為無效石","value":100}],"trade":{"ids":{"explicit":["explicit.stat_559827707"]}}} +{"ref":"#% chance in Heists for Orbs of Scouring to drop as Orbs of Annulment instead","better":1,"matchers":[{"string":"劫盜中有 #% 機率重鑄石掉落為無效石"},{"string":"劫盜中重鑄石掉落為無效石","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2845459668"]}}} +{"ref":"#% chance in Heists for Orbs of Scouring to drop as Orbs of Regret instead","better":1,"matchers":[{"string":"劫盜中有 #% 機率重鑄石掉落為後悔石"},{"string":"劫盜中重鑄石掉落為後悔石","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1824085933"]}}} +{"ref":"#% chance in Heists for Orbs of Transmutation to drop as Chaos Orbs instead","better":1,"matchers":[{"string":"劫盜中有 #% 機率蛻變石掉落為混沌石"},{"string":"劫盜中蛻變石掉落為混沌石","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3265666559"]}}} +{"ref":"#% chance in Heists for Orbs of Transmutation to drop as Orbs of Alchemy instead","better":1,"matchers":[{"string":"劫盜中有 #% 機率蛻變石掉落為點金石"},{"string":"劫盜中蛻變石掉落為點金石","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2532905418"]}}} +{"ref":"#% chance in Heists for Regal Orbs to drop as Divine Orbs instead","better":1,"matchers":[{"string":"劫盜中有 #% 機率富豪石掉落為神聖石"},{"string":"劫盜中富豪石掉落為神聖石","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2766470009"]}}} +{"ref":"#% chance in Heists for Regal Orbs to drop as Exalted Orbs instead","better":1,"matchers":[{"string":"劫盜中有 #% 機率富豪石掉落為崇高石"},{"string":"劫盜中富豪石掉落為崇高石","value":100}],"trade":{"ids":{"explicit":["explicit.stat_866391849"]}}} +{"ref":"#% chance on completing a Heist to generate an additional Reveal with Whakano","better":1,"matchers":[{"string":"和華卡諾完成劫盜有 #% 機率產生額外的揭露"}],"trade":{"ids":{"explicit":["explicit.stat_3107439245"],"fractured":["fractured.stat_3107439245"]}}} +{"ref":"#% Chance on Frenzy to gain an additional Frenzy Charge","better":1,"matchers":[{"string":"狂怒狀態時有 #% 獲得一個額外的狂怒球"}],"trade":{"ids":{"enchant":["enchant.stat_4243904146"]}}} +{"ref":"#% Chance on Hit to Taunt an Enemy","better":1,"matchers":[{"string":"擊中時 #% 機率嘲諷敵人"},{"string":"擊中時有 #% 機率嘲諷敵人"}],"trade":{"ids":{"explicit":["explicit.stat_3272283603"]}}} +{"ref":"#% chance on opening a Chest to not generate Alert Level","better":1,"matchers":[{"string":"開啟保險箱時有 #% 機率不產生警戒等級"}],"trade":{"ids":{"explicit":["explicit.stat_3844152269"],"fractured":["fractured.stat_3844152269"]}}} +{"ref":"#% chance that if you would gain a Crab Barrier, you instead gain up to\nyour maximum number of Crab Barriers","better":1,"matchers":[{"string":"你獲得 1 層蟹將重盾時,有 #% 機率\n獲得你最大層數的蟹將重盾"}],"trade":{"ids":{"explicit":["explicit.stat_1829869055"]}}} +{"ref":"#% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges","better":1,"matchers":[{"string":"獲得耐力球時有 #% 機率直接獲得你的最大上限耐力球數量"}],"trade":{"ids":{"explicit":["explicit.stat_2713233613"]}}} +{"ref":"#% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges","better":1,"matchers":[{"string":"若你獲得狂怒球,有 #% 機率獲得最大上限狂怒球"}],"trade":{"ids":{"explicit":["explicit.stat_2119664154"]}}} +{"ref":"#% chance that if you would gain Power Charges, you instead gain up to\nyour maximum number of Power Charges","better":1,"matchers":[{"string":"若你獲得暴擊球,有 #% 機率獲得最大上限暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_1232004574"]}}} +{"ref":"#% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage","better":1,"matchers":[{"string":"若你擊中時會獲得盛怒,有 #% 機率改為獲得最大盛怒"}],"trade":{"ids":{"explicit":["explicit.stat_2710292678"]}}} +{"ref":"#% chance to Aggravate Bleeding on targets you Hit with Attacks","better":1,"matchers":[{"string":"攻擊擊中時有 #% 機率加劇目標身上的流血"}],"trade":{"ids":{"implicit":["implicit.stat_2705185939"]}}} +{"ref":"#% chance to Avoid being Chilled","better":1,"matchers":[{"string":"#% 機率避免被冰緩"}],"trade":{"ids":{"explicit":["explicit.stat_3483999943"],"implicit":["implicit.stat_3483999943"],"fractured":["fractured.stat_3483999943"],"enchant":["enchant.stat_3483999943"],"scourge":["scourge.stat_3483999943"],"crafted":["crafted.stat_3483999943"]}}} +{"ref":"#% chance to Avoid being Chilled during Effect","better":1,"matchers":[{"string":"效果持續時間,#% 機率避免被冰緩"}],"trade":{"ids":{"explicit":["explicit.stat_1053326368","explicit.stat_1619168299"],"fractured":["fractured.stat_1619168299"]}}} +{"ref":"#% chance to Avoid being Chilled during Onslaught","better":1,"matchers":[{"string":"猛攻持續時間內,#% 機率避免被冰緩"}],"trade":{"ids":{"explicit":["explicit.stat_2872105818"]}}} +{"ref":"#% chance to Avoid being Chilled or Frozen if you have used a Fire Skill Recently","better":1,"matchers":[{"string":"若你近期有使用火焰技能,#% 機率避免被冰緩或冰凍"}],"trade":{"ids":{"explicit":["explicit.stat_3706656107"]}}} +{"ref":"#% chance to Avoid being Frozen","better":1,"matchers":[{"string":"#% 機率避免被冰凍"}],"trade":{"ids":{"explicit":["explicit.stat_1514829491"],"implicit":["implicit.stat_1514829491"],"fractured":["fractured.stat_1514829491"],"enchant":["enchant.stat_1514829491"],"scourge":["scourge.stat_1514829491"],"crafted":["crafted.stat_1514829491"]}}} +{"ref":"#% chance to Avoid being Frozen during Effect","better":1,"matchers":[{"string":"效果持續時間,#% 機率避免被冰凍"}],"trade":{"ids":{"explicit":["explicit.stat_2872815301","explicit.stat_475518267"],"fractured":["fractured.stat_475518267"]}}} +{"ref":"#% chance to Avoid being Ignited","better":1,"matchers":[{"string":"#% 機率避免被點燃"}],"trade":{"ids":{"explicit":["explicit.stat_1783006896"],"implicit":["implicit.stat_1783006896"],"fractured":["fractured.stat_1783006896"],"enchant":["enchant.stat_1783006896"],"scourge":["scourge.stat_1783006896"],"crafted":["crafted.stat_1783006896"]}}} +{"ref":"#% chance to Avoid being Ignited during Effect","better":1,"matchers":[{"string":"效果持續時間,#% 機率避免被點燃"}],"trade":{"ids":{"explicit":["explicit.stat_20251177"],"fractured":["fractured.stat_20251177"]}}} +{"ref":"#% chance to Avoid being Ignited while on Low Life","better":1,"matchers":[{"string":"貧血時 #% 機率避免被點燃"}],"trade":{"ids":{"explicit":["explicit.stat_4271082039"]}}} +{"ref":"#% chance to Avoid being Ignited, Chilled or Frozen with Her Blessing","better":1,"matchers":[{"string":"有她的祝福時,#% 機率避免被點燃、冰緩或冰凍"}],"trade":{"ids":{"explicit":["explicit.stat_1093704472"]}}} +{"ref":"#% chance to Avoid being Interrupted","better":1,"matchers":[{"string":"#% 機率避免被干擾"}],"trade":{"ids":{"explicit":["explicit.stat_3313284037"],"fractured":["fractured.stat_3313284037"]}}} +{"ref":"#% chance to Avoid being Poisoned","better":1,"matchers":[{"string":"#% 機率避免被中毒"},{"string":"不會中毒","value":100},{"string":"不能被中毒","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3835551335","explicit.stat_4053951709"],"implicit":["implicit.stat_3835551335","implicit.stat_4053951709"],"fractured":["fractured.stat_3835551335","fractured.stat_4053951709"],"enchant":["enchant.stat_4053951709"],"scourge":["scourge.stat_4053951709"]}}} +{"ref":"#% chance to Avoid being Shocked","better":1,"matchers":[{"string":"#% 機率避免被感電"}],"trade":{"ids":{"explicit":["explicit.stat_1871765599"],"implicit":["implicit.stat_1871765599"],"fractured":["fractured.stat_1871765599"],"enchant":["enchant.stat_1871765599"],"scourge":["scourge.stat_1871765599"],"crafted":["crafted.stat_1871765599"]}}} +{"ref":"#% chance to Avoid being Shocked during Effect","better":1,"matchers":[{"string":"效果持續時間,#% 機率避免被感電"}],"trade":{"ids":{"explicit":["explicit.stat_3642618258"],"fractured":["fractured.stat_3642618258"]}}} +{"ref":"#% chance to Avoid being Shocked while Chilled","better":1,"matchers":[{"string":"被冰緩時,#% 機率避免被感電"}],"trade":{"ids":{"explicit":["explicit.stat_3981960937"]}}} +{"ref":"#% chance to Avoid being Stunned","better":1,"matchers":[{"string":"#% 機率避免被暈眩"},{"string":"不會被暈眩","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1694106311","explicit.stat_4262448838"],"implicit":["implicit.stat_4262448838"],"fractured":["fractured.stat_4262448838"],"enchant":["enchant.stat_4262448838"],"scourge":["scourge.stat_4262448838"],"crafted":["crafted.stat_4262448838"]}}} +{"ref":"#% Chance to Avoid being Stunned during Effect","better":1,"matchers":[{"string":"效果持續時間,#% 機率避免被暈眩"},{"string":"效果持續時間不會被擊暈","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2312652600"],"fractured":["fractured.stat_2312652600"],"crafted":["crafted.stat_2312652600"]}}} +{"ref":"#% chance to Avoid being Stunned if you've Killed Recently","better":1,"matchers":[{"string":"近期內你若有擊殺,獲得 #% 機率避免被暈眩"}],"trade":{"ids":{"enchant":["enchant.stat_412905518"]}}} +{"ref":"#% chance to Avoid being Stunned while Channelling Snipe","better":1,"matchers":[{"string":"引導施放狙擊時,有 #% 機率避免被暈眩"}],"trade":{"ids":{"enchant":["enchant.stat_3024408350"]}}} +{"ref":"#% chance to Avoid Bleeding","better":1,"matchers":[{"string":"#% 機率避免流血"},{"string":"流血不會對你造成影響","value":100},{"string":"流血對你沒有影響","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1618589784","explicit.stat_1901158930"],"implicit":["implicit.stat_1618589784","implicit.stat_1901158930"],"fractured":["fractured.stat_1618589784"],"scourge":["scourge.stat_1618589784"],"crafted":["crafted.stat_1618589784"]}}} +{"ref":"#% chance to Avoid Cold Damage from Hits","better":1,"matchers":[{"string":"#% 機率避免來自擊中的冰冷傷害"},{"string":"避免來自擊中的冰冷傷害","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3743375737"],"implicit":["implicit.stat_3743375737"],"fractured":["fractured.stat_3743375737"]}}} +{"ref":"#% chance to Avoid Elemental Ailments","better":1,"matchers":[{"string":"#% 機率避免元素異常狀態"}],"trade":{"ids":{"explicit":["explicit.stat_3005472710"],"implicit":["implicit.stat_3005472710"],"fractured":["fractured.stat_3005472710"],"scourge":["scourge.stat_3005472710"],"crafted":["crafted.stat_3005472710"]}}} +{"ref":"#% chance to Avoid Elemental Ailments per Grand Spectrum","better":1,"matchers":[{"string":"每顆巨光譜有 #% 機率避免元素異常狀態"}],"trade":{"ids":{"explicit":["explicit.stat_611279043"]}}} +{"ref":"#% chance to Avoid Elemental Ailments while Phasing","better":1,"matchers":[{"string":"迷蹤時有 #% 機率避免元素異常狀態"}],"trade":{"ids":{"explicit":["explicit.stat_115351487"]}}} +{"ref":"#% chance to Avoid Elemental Ailments while you have Elusive","better":1,"matchers":[{"string":"你有靈巧時有 #% 機率避免元素異常狀態"}],"trade":{"ids":{"explicit":["explicit.stat_2662268382"],"fractured":["fractured.stat_2662268382"],"enchant":["enchant.stat_2662268382"]}}} +{"ref":"#% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention","better":1,"matchers":[{"string":"停止獲得靈魂期間,#% 機率避免來自擊中的元素傷害"}],"trade":{"ids":{"explicit":["explicit.stat_720398262"],"fractured":["fractured.stat_720398262"],"crafted":["crafted.stat_720398262"]}}} +{"ref":"#% chance to Avoid Elemental Damage from Hits per Frenzy Charge","better":1,"matchers":[{"string":"每顆狂怒球有 #% 機率避免來自擊中的元素傷害"},{"string":"當你有狂怒球時避免來自擊中的元素傷害","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1649883131"]}}} +{"ref":"#% chance to Avoid Fire Damage from Hits","better":1,"matchers":[{"string":"#% 機率避免來自擊中的火焰傷害"},{"string":"避免來自擊中的火焰傷害","value":100}],"trade":{"ids":{"explicit":["explicit.stat_42242677"],"implicit":["implicit.stat_42242677"],"fractured":["fractured.stat_42242677"]}}} +{"ref":"#% chance to Avoid gaining an Affliction","better":1,"matchers":[{"string":"#% 機率避免獲得苦痛"},{"string":"不會獲得苦痛","value":100}],"trade":{"ids":{"explicit":["sanctum.stat_1960517795"]}}} +{"ref":"#% chance to Avoid Lightning Damage from Hits","better":1,"matchers":[{"string":"#% 機率避免來自擊中的閃電傷害"},{"string":"避免來自擊中的閃電傷害","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2889664727"],"implicit":["implicit.stat_2889664727"],"fractured":["fractured.stat_2889664727"]}}} +{"ref":"#% chance to Avoid Physical Damage from Hits","better":1,"matchers":[{"string":"#% 機率避免來自擊中的物理傷害"},{"string":"避免來自擊中的物理傷害","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2415497478"]}}} +{"ref":"#% chance to avoid Projectiles","better":1,"matchers":[{"string":"#% 機率避免投射物"},{"string":"避免投射物","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3452269808"],"fractured":["fractured.stat_3452269808"]}}} +{"ref":"#% chance to avoid Projectiles if you've taken Projectile Damage Recently","better":1,"matchers":[{"string":"若你近期有承受投射物傷害,有 #% 機率避免投射物"}],"trade":{"ids":{"explicit":["explicit.stat_3114696875"]}}} +{"ref":"#% chance to Avoid Projectiles while Phasing","better":1,"matchers":[{"string":"迷蹤效果下有 #% 機率避免投射物"}],"trade":{"ids":{"explicit":["explicit.stat_3635120731"]}}} +{"ref":"#% chance to Avoid Resolve loss from Enemy Hits if you've been Hit recently","better":1,"matchers":[{"string":"若你近期有被擊中,有 #% 機率避免敵人擊中時失去決心"}],"trade":{"ids":{"explicit":["sanctum.stat_2284543592"]}}} +{"ref":"#% chance to be inflicted with Bleeding when Hit by an Attack","better":1,"matchers":[{"string":"被攻擊擊中時有 #% 機率進入流血狀態"}],"trade":{"ids":{"explicit":["explicit.stat_2155467472"]}}} +{"ref":"#% chance to Blind Enemies on Critical Strike","better":1,"matchers":[{"string":"暴擊有 #% 機率致盲敵人"}],"trade":{"ids":{"explicit":["explicit.stat_3983981705"]}}} +{"ref":"#% chance to Blind Enemies on hit","better":1,"matchers":[{"string":"擊中時 #% 機率致盲敵人"}],"trade":{"ids":{"explicit":["explicit.stat_2301191210"],"fractured":["fractured.stat_2301191210"],"crafted":["crafted.stat_2301191210"]}}} +{"ref":"#% chance to Blind Enemies on Hit with Attacks","better":1,"matchers":[{"string":"攻擊擊中時有 #% 機率造成致盲"},{"string":"攻擊擊中時造成致盲","value":100}],"trade":{"ids":{"explicit":["explicit.stat_318953428"],"implicit":["implicit.stat_318953428"],"fractured":["fractured.stat_318953428"]}}} +{"ref":"#% chance to Blind Enemies on Hit with Melee Weapons","better":1,"matchers":[{"string":"使用近戰武器擊中時有 #% 機率致盲敵人"}],"trade":{"ids":{"implicit":["implicit.stat_2795267150"]}}} +{"ref":"#% chance to Blind Enemies when they Hit you","better":1,"matchers":[{"string":"當敵人擊中你時,他們有 #% 機率被致盲"}],"trade":{"ids":{"scourge":["scourge.stat_26216403"]}}} +{"ref":"#% chance to Blind Enemies which Hit you while affected by Grace","better":1,"matchers":[{"string":"被優雅影響時,有 #% 機率致盲擊中你的敵人"},{"string":"被優雅影響時致盲擊中你的敵人","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2548097895"]}}} +{"ref":"#% chance to Blind nearby Enemies when gaining Her Blessing","better":1,"matchers":[{"string":"獲得她的祝福時有 #% 機率致盲附近敵人"},{"string":"獲得她的祝福時致盲附近敵人","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2327728343"]}}} +{"ref":"#% Chance to Block Attack Damage","better":1,"matchers":[{"string":"#% 攻擊傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_1702195217","explicit.stat_2530372417"],"implicit":["implicit.stat_1702195217","implicit.stat_2530372417"],"fractured":["fractured.stat_2530372417"],"scourge":["scourge.stat_1702195217"],"crafted":["crafted.stat_1702195217","crafted.stat_2530372417"]}}} +{"ref":"#% Chance to Block Spell Damage","better":1,"matchers":[{"string":"#% 法術傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_19803471","explicit.stat_2881111359","explicit.stat_561307714"],"implicit":["implicit.stat_2881111359","implicit.stat_561307714"],"fractured":["fractured.stat_561307714"],"scourge":["scourge.stat_19803471"],"crafted":["crafted.stat_561307714"]}}} +{"ref":"#% Chance to cause Bleeding Enemies to Flee on hit","better":1,"matchers":[{"string":"擊中流血中敵人時有 #% 機率使敵人逃跑"}],"trade":{"ids":{"explicit":["explicit.stat_2072206041"]}}} +{"ref":"#% chance to Cause Bleeding on Critical Strike","better":1,"matchers":[{"string":"暴擊時有 #% 機率造成流血"},{"string":"暴擊時造成流血","value":100},{"string":"暴擊時有 50% 機率造成流血","value":50}],"trade":{"ids":{"explicit":["explicit.stat_513681673"]}}} +{"ref":"#% chance to cause Bleeding on Hit","better":1,"matchers":[{"string":"擊中時 #% 機率造成流血"}],"trade":{"ids":{"explicit":["explicit.stat_1519615863"],"implicit":["implicit.stat_1519615863"],"fractured":["fractured.stat_1519615863"],"enchant":["enchant.stat_1519615863"],"crafted":["crafted.stat_1519615863"]}}} +{"ref":"#% chance to cause Bleeding with Melee Weapons","better":1,"matchers":[{"string":"使用近戰武器時有 #% 機率造成流血"}],"trade":{"ids":{"implicit":["implicit.stat_1630041051"]}}} +{"ref":"#% chance to cause Enemies to Flee on use","better":1,"matchers":[{"string":"使用時有 #% 機率導致敵人逃跑"}],"trade":{"ids":{"explicit":["explicit.stat_1457911472"]}}} +{"ref":"#% Chance to Cause Monster to Flee on Block","better":1,"matchers":[{"string":"格擋時有 #% 機率造成怪物逃跑"}],"trade":{"ids":{"explicit":["explicit.stat_3212461220"]}}} +{"ref":"#% chance to Cause Monsters to Flee","better":1,"matchers":[{"string":"#% 機率使敵人逃跑"}],"trade":{"ids":{"explicit":["explicit.stat_3181974858"],"implicit":["implicit.stat_3181974858"]}}} +{"ref":"#% chance to Cause Poison on Critical Strike","better":1,"matchers":[{"string":"暴擊時有 #% 機率造成中毒"},{"string":"暴擊時造成中毒","value":100}],"trade":{"ids":{"explicit":["explicit.stat_374737750"]}}} +{"ref":"#% chance to Chill Attackers for 4 seconds on Block","better":1,"matchers":[{"string":"格擋時有 #% 機率冰緩攻擊者 4 秒"},{"string":"格擋時冰緩攻擊者 4 秒","value":100}],"trade":{"ids":{"explicit":["explicit.stat_864879045"],"fractured":["fractured.stat_864879045"],"scourge":["scourge.stat_864879045"]}}} +{"ref":"#% chance to Cover Enemies in Ash on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率使敵人餘燼纏身"},{"string":"擊中時使敵人餘燼纏身","value":100}],"trade":{"ids":{"explicit":["explicit.stat_324460247"]}}} +{"ref":"#% chance to cover Enemies in Ash when they Hit you","better":1,"matchers":[{"string":"被擊中時有 #% 機率使敵人餘燼纏身"},{"string":"被擊中時使敵人餘燼纏身","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3748879662"],"fractured":["fractured.stat_3748879662"]}}} +{"ref":"#% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit","better":1,"matchers":[{"string":"擊中稀有或傳奇敵人時,有 #% 機率使他們餘燼纏身 10 秒"},{"string":"擊中稀有或傳奇敵人時,使他們餘燼纏身 10 秒","value":100}],"trade":{"ids":{"explicit":["explicit.stat_240642724"]}}} +{"ref":"#% chance to create a Smoke Cloud when Hit","better":1,"matchers":[{"string":"被擊中時 #% 機率製造一團煙霧"},{"string":"被擊中時製造一團煙霧","value":100}],"trade":{"ids":{"explicit":["explicit.stat_953314356"]}}} +{"ref":"#% chance to create an additional Animate Weapon copy","better":1,"matchers":[{"string":"幻化武器有 #% 機率額外召喚一個複製品"}],"trade":{"ids":{"enchant":["enchant.stat_3711386843"]}}} +{"ref":"#% chance to create Chilled Ground when Hit with an Attack","better":1,"matchers":[{"string":"當攻擊擊中時,有 #% 機率製造冰緩地面"},{"string":"當攻擊擊中時,製造冰緩地面","value":100}],"trade":{"ids":{"explicit":["explicit.stat_358040686"]}}} +{"ref":"#% chance to create Chilled Ground when you Freeze an Enemy","better":1,"matchers":[{"string":"冰凍敵人時,有 #% 機率製造冰緩地面"},{"string":"冰凍敵人時,製造冰緩地面","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2901262227"]}}} +{"ref":"#% chance to create Consecrated Ground when Hit, lasting 8 seconds","better":1,"matchers":[{"string":"被擊中時有 #% 機率產生奉獻地面,持續 8 秒"},{"string":"被擊中時產生奉獻地面,持續 8 秒","value":100}],"trade":{"ids":{"scourge":["scourge.stat_1968872681"]}}} +{"ref":"#% chance to create Consecrated Ground when you Block","better":1,"matchers":[{"string":"格擋時 #% 機率產生奉獻地面"}],"trade":{"ids":{"explicit":["explicit.stat_573884683"]}}} +{"ref":"#% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds","better":1,"matchers":[{"string":"你擊中稀有或傳奇敵人時有 #% 機率製造奉獻地面,持續 8 秒"}],"trade":{"ids":{"explicit":["explicit.stat_3135669941"]}}} +{"ref":"#% chance to create Consecrated Ground when you Shatter an Enemy","better":1,"matchers":[{"string":"當你擊碎冰凍的敵人有 #% 機率製造奉獻地面"},{"string":"當你擊碎冰凍的敵人製造奉獻地面","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4148932984"]}}} +{"ref":"#% chance to create Desecrated Ground when you Block","better":1,"matchers":[{"string":"格擋時 #% 機率產生腐化地面"}],"trade":{"ids":{"explicit":["explicit.stat_3685028559"]}}} +{"ref":"#% chance to create Profane Ground on Critical\nStrike if Intelligence is your highest Attribute","better":1,"matchers":[{"string":"若智慧是你最高的能力值,暴擊時有 #% 機率製造褻瀆地面"}],"trade":{"ids":{"explicit":["explicit.stat_2047846165"]}}} +{"ref":"#% chance to create Shocked Ground when Hit","better":1,"matchers":[{"string":"被擊中時 #% 機率產生感電地面"},{"string":"被擊中時產生感電地面","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3355479537"]}}} +{"ref":"#% chance to Crush on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率壓碎"},{"string":"擊中時壓碎","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2228892313"],"fractured":["fractured.stat_2228892313"]}}} +{"ref":"#% chance to Curse Enemies which Hit you with a random Hex, ignoring Curse Limit","better":1,"matchers":[{"string":"#% 機率使用 1 個隨機咒術詛咒擊中你的敵人,無視詛咒上限"}],"trade":{"ids":{"explicit":["explicit.stat_2674214144"]}}} +{"ref":"#% chance to Curse Enemies with Socketed Hex Curse Gem on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率使用插槽中的咒術詛咒寶石詛咒敵人"},{"string":"擊中時使用插槽中的咒術詛咒寶石詛咒敵人","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1352418057"]}}} +{"ref":"#% chance to Curse non-Cursed Enemies with a random Hex on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率使用 1 個隨機咒術詛咒未被詛咒的敵人"}],"trade":{"ids":{"explicit":["explicit.stat_1726444796"]}}} +{"ref":"#% chance to Curse you with Silence when Hit","better":1,"matchers":[{"string":"被擊中時有 #% 機率詛咒你沉默"},{"string":"被擊中時詛咒你沉默","value":100}],"trade":{"ids":{"scourge":["scourge.stat_3370064078"]}}} +{"ref":"#% chance to deal Double Damage","better":1,"matchers":[{"string":"#% 機率造成 2 倍傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1172810729"],"implicit":["implicit.stat_1172810729"],"fractured":["fractured.stat_1172810729"],"crafted":["crafted.stat_1172810729"]}}} +{"ref":"#% chance to deal Double Damage if you have Stunned an Enemy Recently","better":1,"matchers":[{"string":"若你近期有暈眩敵人,有 #% 機率造成 2 倍傷害"}],"trade":{"ids":{"explicit":["explicit.stat_4224978303"],"fractured":["fractured.stat_4224978303"]}}} +{"ref":"#% chance to deal Double Damage if you've cast Vulnerability in the past 10 seconds","better":1,"matchers":[{"string":"若你過去 10 秒有施放過脆弱,有 #% 機率造成 2 倍傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2304988974"]}}} +{"ref":"#% chance to deal Double Damage while affected by Glorious Madness","better":1,"matchers":[{"string":"被榮耀瘋癲影響時,有 #% 機率造成 2 倍傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1299868012"]}}} +{"ref":"#% chance to deal Double Damage while Focused","better":1,"matchers":[{"string":"專注時有 #% 機率造成 2 倍傷害"},{"string":"專注時造成 2 倍傷害","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2908886986"],"fractured":["fractured.stat_2908886986"],"crafted":["crafted.stat_2908886986"]}}} +{"ref":"#% chance to deal Double Damage while using Pride","better":1,"matchers":[{"string":"使用驕傲時有 #% 機率造成 2 倍傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3371719014"]}}} +{"ref":"#% chance to deal Double Damage while you have at least 200 Strength","better":1,"matchers":[{"string":"你至少有 200 點力量時,有 #% 機率造成 2 倍傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1535606605"]}}} +{"ref":"#% chance to deal Triple Damage","better":1,"matchers":[{"string":"#% 機率造成 3 倍傷害"},{"string":"造成 3 倍傷害","value":100}],"trade":{"ids":{"scourge":["scourge.stat_2445189705"]}}} +{"ref":"#% chance to deal Triple Damage while you have at least 400 Strength","better":1,"matchers":[{"string":"你至少有 400 點力量時,有 #% 機率造成 3 倍傷害"}],"trade":{"ids":{"explicit":["explicit.stat_147155654"]}}} +{"ref":"#% chance to Defend with 200% of Armour","better":1,"matchers":[{"string":"#% 機率使用 200% 護甲防禦"}],"trade":{"ids":{"explicit":["explicit.stat_327253797"],"implicit":["implicit.stat_327253797"],"fractured":["fractured.stat_327253797"]}}} +{"ref":"#% chance to double Stun Duration","better":1,"matchers":[{"string":"有 #% 機率增加暈眩時間 1 倍"}],"trade":{"ids":{"explicit":["explicit.stat_2622251413"],"implicit":["implicit.stat_2622251413"]}}} +{"ref":"#% chance to Extinguish Enemies on Hit","better":1,"matchers":[{"string":"擊中有 #% 機率熄滅敵人"}],"trade":{"ids":{"implicit":["implicit.stat_49183689"]}}} +{"ref":"#% chance to Freeze","better":1,"matchers":[{"string":"#% 機率使用冰冷傷害擊中敵人造成冰凍效果"},{"string":"所有冰冷傷害擊中敵人造成冰凍效果","value":100},{"string":"擊中時必定冰凍敵人","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2309614417"],"implicit":["implicit.stat_2309614417"],"fractured":["fractured.stat_2309614417"],"enchant":["enchant.stat_2309614417"],"scourge":["scourge.stat_2309614417"],"crafted":["crafted.stat_2309614417"]}}} +{"ref":"#% chance to Freeze during any Flask Effect","better":1,"matchers":[{"string":"任何藥劑效果持續時間內,有 #% 機率造成冰凍"}],"trade":{"ids":{"explicit":["explicit.stat_2332726055"]}}} +{"ref":"#% chance to Freeze Enemies for 1 second when they Hit you","better":1,"matchers":[{"string":"敵人擊中你時有 #% 機率冰凍它們 1 秒"}],"trade":{"ids":{"explicit":["explicit.stat_2168861013"]}}} +{"ref":"#% chance to Freeze with Melee Weapons","better":1,"matchers":[{"string":"近戰武器有 #% 機率造成冰凍"}],"trade":{"ids":{"implicit":["implicit.stat_1858426568"]}}} +{"ref":"#% chance to Freeze, Shock and Ignite","better":1,"matchers":[{"string":"#% 機率使敵人冰凍、感電與點燃"},{"string":"總是使敵人冰凍、感電與點燃","value":100}],"trade":{"ids":{"explicit":["explicit.stat_800141891"],"implicit":["implicit.stat_800141891"]}}} +{"ref":"#% chance to Freeze, Shock and Ignite during Effect","better":1,"matchers":[{"string":"效果持續時間,有 #% 機率造成冰凍、感電和點燃"}],"trade":{"ids":{"explicit":["explicit.stat_97064873"],"fractured":["fractured.stat_97064873"]}}} +{"ref":"#% chance to Freeze, Shock and Ignite if you haven't Crit Recently","better":1,"matchers":[{"string":"若近期你沒有暴擊,有 #% 機率造成冰凍、感電,和點燃"}],"trade":{"ids":{"enchant":["enchant.stat_3915210550"]}}} +{"ref":"#% chance to gain 25% of Non-Chaos Damage with Hits as Extra Chaos Damage","better":1,"matchers":[{"string":"你的擊中有 #% 機率獲得 25% 非混沌傷害的額外混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1741279188"]}}} +{"ref":"#% chance to gain a Divine Charge on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率獲得 1 層神聖充能"},{"string":"擊中時獲得 1 層神聖充能","value":100}],"trade":{"ids":{"explicit":["explicit.stat_108334292"]}}} +{"ref":"#% chance to gain a Flask Charge when you deal a Critical Strike","better":1,"matchers":[{"string":"暴擊時有 #% 機率獲得 1 點藥劑充能"},{"string":"當你暴擊時有 #% 機率補充 1 充能"},{"string":"暴擊時獲得 1 點藥劑充能","value":100},{"string":"當你暴擊時補充 1 充能","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1546046884","explicit.stat_2858921304","explicit.stat_3738001379"],"fractured":["fractured.stat_3738001379"]}}} +{"ref":"#% chance to gain a Flask Charge when you deal a Critical Strike while at maximum Frenzy Charges","better":1,"matchers":[{"string":"當狂怒球達上限時你造成暴擊,有 #% 機率獲得藥劑充能"},{"string":"當狂怒球達上限時你造成暴擊,獲得藥劑充能","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3371432622"]}}} +{"ref":"#% chance to gain a Frenzy Charge for each Enemy you hit with a Critical Strike","better":1,"matchers":[{"string":"你的暴擊擊中敵人有 #% 機率獲得 1 顆狂怒球"},{"string":"你的暴擊擊中敵人獲得 1 顆狂怒球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1302845655"]}}} +{"ref":"#% chance to gain a Frenzy Charge on Critical Strike","better":1,"matchers":[{"string":"暴擊時有 #% 機率獲得 1 顆狂怒球"},{"string":"暴擊時獲得 1 顆狂怒球","value":100},{"string":"暴擊時獲得狂怒球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3032585258","explicit.stat_398702949"],"fractured":["fractured.stat_3032585258"],"crafted":["crafted.stat_3032585258"]}}} +{"ref":"#% chance to gain a Frenzy Charge on Critical Strike at Close Range","better":1,"matchers":[{"string":"近距離時暴擊有 #% 機率獲得 1 顆狂怒球"}],"trade":{"ids":{"explicit":["explicit.stat_911695185"]}}} +{"ref":"#% chance to gain a Frenzy Charge on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率獲得 1 顆狂怒球"}],"trade":{"ids":{"explicit":["explicit.stat_2323242761"],"implicit":["implicit.stat_2323242761"]}}} +{"ref":"#% chance to gain a Frenzy Charge on Hit while Blinded","better":1,"matchers":[{"string":"致盲時擊中有 #% 機率獲得 1 顆狂怒球"}],"trade":{"ids":{"explicit":["explicit.stat_2478268100"]}}} +{"ref":"#% chance to gain a Frenzy Charge on Hitting an Enemy with no Evasion Rating","better":1,"matchers":[{"string":"擊中沒有閃避值的敵人有 #% 機率獲得 1 顆狂怒球"}],"trade":{"ids":{"explicit":["explicit.stat_471924383"]}}} +{"ref":"#% chance to gain a Frenzy Charge on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率獲得 1 顆狂怒球"},{"string":"擊殺時獲得 1 顆狂怒球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1826802197"],"implicit":["implicit.stat_1826802197"],"fractured":["fractured.stat_1826802197"],"scourge":["scourge.stat_1826802197"]}}} +{"ref":"#% chance to gain a Frenzy Charge on Killing a Frozen Enemy","better":1,"matchers":[{"string":"擊殺冰凍敵人時有 #% 機率獲得 1 個狂怒球"},{"string":"擊殺冰凍敵人時獲得 1 個狂怒球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2230931659"]}}} +{"ref":"#% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons","better":1,"matchers":[{"string":"擊殺中 5 層毒以上的敵人時,有 #% 機率獲得一顆狂怒球"}],"trade":{"ids":{"explicit":["explicit.stat_496822696"]}}} +{"ref":"#% chance to gain a Frenzy Charge when Hit","better":1,"matchers":[{"string":"被擊中時 #% 機率獲得 1 顆狂怒球"}],"trade":{"ids":{"explicit":["explicit.stat_881914531"]}}} +{"ref":"#% chance to gain a Frenzy Charge when you Block","better":1,"matchers":[{"string":"當你格擋時有 #% 機率獲得 1 顆狂怒球"},{"string":"當你格擋時獲得 1 顆狂怒球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3769211656"],"fractured":["fractured.stat_3769211656"]}}} +{"ref":"#% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy","better":1,"matchers":[{"string":"擊中稀有或傳奇敵人時有 #% 機率獲得一顆狂怒球"}],"trade":{"ids":{"explicit":["explicit.stat_4179663748"]}}} +{"ref":"#% chance to gain a Frenzy Charge when you Stun an Enemy","better":1,"matchers":[{"string":"暈眩敵人時有 #% 機率獲得一顆狂怒球"}],"trade":{"ids":{"explicit":["explicit.stat_1695720239"]}}} +{"ref":"#% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy","better":1,"matchers":[{"string":"當你的陷阱被敵人觸發時有 #% 機率獲得 1 顆狂怒球"},{"string":"當你的陷阱被敵人觸發時獲得 1 顆狂怒球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3738335639"]}}} +{"ref":"#% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage","better":1,"matchers":[{"string":"近戰傷害擊退敵人時有 #% 的機率獲得 1 顆暴擊球"},{"string":"近戰傷害擊退敵人時獲得 1 顆暴擊球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2179619644"]}}} +{"ref":"#% chance to gain a Power Charge on Critical Strike","better":1,"matchers":[{"string":"暴擊時 #% 機率獲得暴擊球"},{"string":"暴擊時獲得暴擊球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3814876985"],"implicit":["implicit.stat_3814876985"],"fractured":["fractured.stat_3814876985"]}}} +{"ref":"#% Chance to gain a Power Charge on Critical Strike with Ice Spear","better":1,"matchers":[{"string":"冰矛暴擊時有 #% 機率獲得 1 顆暴擊球"}],"trade":{"ids":{"enchant":["enchant.stat_3232905239"]}}} +{"ref":"#% chance to gain a Power Charge on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率獲得 1 顆暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_1453197917"]}}} +{"ref":"#% chance to Gain a Power Charge on Hit while Poisoned","better":1,"matchers":[{"string":"中毒時擊中有 #% 機率獲得 1 顆暴擊球"},{"string":"中毒時擊中獲得 1 顆暴擊球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_800598487"]}}} +{"ref":"#% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web","better":1,"matchers":[{"string":"擊中被蛛網纏繞的敵人有 #% 機率獲得 1 顆暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_273206351"]}}} +{"ref":"#% chance to gain a Power Charge on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率獲得 1 顆暴擊球"},{"string":"擊殺時獲得 1 顆暴擊球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2483795307"],"implicit":["implicit.stat_2483795307"],"fractured":["fractured.stat_2483795307"],"scourge":["scourge.stat_2483795307"]}}} +{"ref":"#% chance to gain a Power Charge on Killing a Frozen Enemy","better":1,"matchers":[{"string":"擊殺冰凍敵人時有 #% 機率獲得 1 顆暴擊球"},{"string":"擊殺冰凍敵人時獲得 1 顆暴擊球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3607154250"],"fractured":["fractured.stat_3607154250"]}}} +{"ref":"#% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons","better":1,"matchers":[{"string":"擊殺少於 5 層中毒的敵人時,有 #% 機率獲得 1 顆暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_352612932"]}}} +{"ref":"#% chance to gain a Power Charge when you Block","better":1,"matchers":[{"string":"格擋時有 #% 機率獲得暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_3945147290"],"fractured":["fractured.stat_3945147290"]}}} +{"ref":"#% chance to gain a Power Charge when you Cast a Curse Spell","better":1,"matchers":[{"string":"當你施放 1 個詛咒法術,有 #% 機率獲得 1 顆暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_322835727"]}}} +{"ref":"#% chance to gain a Power Charge when you Stun","better":1,"matchers":[{"string":"擊暈時有 #% 機率獲得暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_3470535775"]}}} +{"ref":"#% chance to gain a Power Charge when you Throw a Trap","better":1,"matchers":[{"string":"投擲陷阱時有 #% 的機率獲得 1 顆暴擊球"},{"string":"投擲陷阱時獲得 1 顆暴擊球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1936544447"]}}} +{"ref":"#% chance to gain a Power Charge when you use a Vaal Skill","better":1,"matchers":[{"string":"當你使用瓦爾技能時,有 #% 機率獲得 1 顆暴擊球"},{"string":"當你使用瓦爾技能時,獲得 1 顆暴擊球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2383388829"]}}} +{"ref":"#% chance to gain a Power, Frenzy or Endurance Charge on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率獲得 1 顆暴擊、狂怒或耐力球"},{"string":"擊殺時獲得 1 顆暴擊、狂怒或耐力球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_498214257"],"fractured":["fractured.stat_498214257"]}}} +{"ref":"#% chance to gain a Siphoning Charge when you use a Skill","better":1,"matchers":[{"string":"當你使用技能時有 #% 機率獲得 1 顆虹吸能量球"},{"string":"當你使用技能時獲得 1 顆虹吸能量球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2922737717"]}}} +{"ref":"#% chance to gain a Spirit Charge on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率獲得 1 顆靈體能量球"},{"string":"擊殺時獲得 1 顆靈體能量球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_570644802"]}}} +{"ref":"#% chance to gain Adrenaline for 2 Seconds when Leech is\nremoved by Filling Unreserved Life","better":1,"matchers":[{"string":"當偷取被填滿未保留生命移除時,有 #% 機率獲得腎上腺素 2 秒"}],"trade":{"ids":{"explicit":["explicit.stat_414749123"]}}} +{"ref":"#% chance to gain Alchemist's Genius when you use a Flask","better":1,"matchers":[{"string":"當你使用藥劑時有 #% 機率獲得鍊金之材"},{"string":"當你使用藥劑時獲得鍊金之材","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2989883253"],"fractured":["fractured.stat_2989883253"]}}} +{"ref":"#% Chance to gain an additional Power Charge on Kill with Power Siphon","better":1,"matchers":[{"string":"使用力量抽取擊殺敵人時有 #% 機率獲得 1 個額外的暴擊球"}],"trade":{"ids":{"enchant":["enchant.stat_3609207587"]}}} +{"ref":"#% chance to gain an additional Vaal Soul on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率額外獲得 1 個瓦爾靈魂"}],"trade":{"ids":{"explicit":["explicit.stat_1962922582"],"implicit":["implicit.stat_1962922582"],"fractured":["fractured.stat_1962922582"]}}} +{"ref":"#% chance to gain an additional Vaal Soul per Enemy Shattered","better":1,"matchers":[{"string":"擊碎敵人時有 #% 機率額外獲得 1 個瓦爾靈魂"}],"trade":{"ids":{"explicit":["explicit.stat_1633381214"]}}} +{"ref":"#% chance to gain an Endurance Charge on Critical Strike","better":1,"matchers":[{"string":"暴擊時有 #% 機率獲得 1 個耐力球"},{"string":"暴擊時獲得 1 個耐力球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2542650946"]}}} +{"ref":"#% chance to gain an Endurance Charge on Hitting an Enemy with no Armour","better":1,"matchers":[{"string":"擊中沒有護甲的敵人有 #% 機率獲得 1 顆耐力球"}],"trade":{"ids":{"explicit":["explicit.stat_3488208924"]}}} +{"ref":"#% chance to gain an Endurance Charge on Kill","better":1,"matchers":[{"string":"#% 機率擊殺時獲得 1 顆耐力球"},{"string":"擊殺時你獲得 1 顆耐力球","value":100},{"string":"擊殺時獲得 1 顆耐力球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1054322244","explicit.stat_2064503808"],"implicit":["implicit.stat_1054322244"],"fractured":["fractured.stat_1054322244"],"scourge":["scourge.stat_1054322244"]}}} +{"ref":"#% chance to gain an Endurance Charge when you are Hit","better":1,"matchers":[{"string":"被擊中時 #% 機率獲得耐力球"},{"string":"被擊中時獲得耐力球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1514657588"]}}} +{"ref":"#% chance to gain an Endurance Charge when you Block","better":1,"matchers":[{"string":"格擋時 #% 機率獲得耐力球"},{"string":"格擋時獲得耐力球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_417188801"],"fractured":["fractured.stat_417188801"]}}} +{"ref":"#% chance to gain an Endurance Charge when you Hit a Bleeding Enemy","better":1,"matchers":[{"string":"當擊中流血的敵人時,有 #% 機率獲得 1 顆耐力球"}],"trade":{"ids":{"explicit":["explicit.stat_1536266147"]}}} +{"ref":"#% chance to gain an Endurance Charge when you Stun an Enemy","better":1,"matchers":[{"string":"當你暈眩敵人時,有 #% 機率獲得 1 顆耐力球"}],"trade":{"ids":{"explicit":["explicit.stat_1582887649"],"implicit":["implicit.stat_1582887649"]}}} +{"ref":"#% chance to gain an Endurance Charge when you Taunt an Enemy","better":1,"matchers":[{"string":"當你嘲諷敵人時,有 #% 機率獲得 1 顆耐力球"}],"trade":{"ids":{"explicit":["explicit.stat_1657549833"]}}} +{"ref":"#% chance to gain an Endurance, Frenzy or Power Charge when any\nof your Traps are Triggered by an Enemy","better":1,"matchers":[{"string":"當你的陷阱被敵人觸發時,\n有 #% 機率獲得 1 顆耐力、狂怒或暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_710805027"]}}} +{"ref":"#% chance to Gain Arcane Surge on Hit with Spells","better":1,"matchers":[{"string":"法術擊中時有 #% 機率獲得秘能波動"},{"string":"法術擊中時獲得秘能波動","value":100}],"trade":{"ids":{"implicit":["implicit.stat_4208096430"]}}} +{"ref":"#% chance to Gain Arcane Surge on Hit with Spells while at maximum Power Charges","better":1,"matchers":[{"string":"當暴擊球達上限時,有 #% 機率獲得秘能波動"},{"string":"當暴擊球達上限時,獲得秘能波動","value":100}],"trade":{"ids":{"explicit":["explicit.stat_813119588"]}}} +{"ref":"#% chance to Gain Arcane Surge when you deal a Critical Strike","better":1,"matchers":[{"string":"當你造成暴擊時,有 #% 機率獲得秘能波動"},{"string":"當你造成暴擊時獲得秘能波動","value":100}],"trade":{"ids":{"explicit":["explicit.stat_446027070"]}}} +{"ref":"#% chance to gain Arcane Surge when you Kill an Enemy","better":1,"matchers":[{"string":"當你擊殺敵人時,有 #% 機率獲得秘能波動"},{"string":"當你擊殺敵人時獲得秘能波動","value":100}],"trade":{"ids":{"explicit":["explicit.stat_573223427"],"fractured":["fractured.stat_573223427"],"crafted":["crafted.stat_573223427"]}}} +{"ref":"#% chance to gain Chaotic Might for 10 seconds on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率獲得 10 秒混沌之力"},{"string":"擊殺時獲得 10 秒混沌之力","value":100}],"trade":{"ids":{"explicit":["explicit.stat_562371749"],"enchant":["enchant.stat_562371749"]}}} +{"ref":"#% chance to gain Elusive on Critical Strike","better":1,"matchers":[{"string":"暴擊時有 #% 機率獲得靈巧"},{"string":"暴擊時獲得靈巧","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2896192589"],"fractured":["fractured.stat_2896192589"]}}} +{"ref":"#% chance to gain Her Blessing for 3 seconds when you Ignite an Enemy","better":1,"matchers":[{"string":"點燃敵人時有 #% 機率獲得她的祝福 3 秒"},{"string":"點燃敵人時獲得她的祝福 3 秒","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4203400545"]}}} +{"ref":"#% chance to gain Onslaught for 10 seconds on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率獲得猛攻 10 秒"},{"string":"擊殺時獲得猛攻 10 秒","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2453026567"]}}} +{"ref":"#% chance to gain Onslaught for 3 seconds when Hit","better":1,"matchers":[{"string":"被擊中時有 #% 機率獲得 3 秒猛攻"},{"string":"被擊中時有獲得 3 秒猛攻","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3049760680"]}}} +{"ref":"#% chance to Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges","better":1,"matchers":[{"string":"當最大狂怒球數量時,擊中有 #% 機率獲得猛攻 4 秒"},{"string":"當最大狂怒球數量時,擊中獲得猛攻 4 秒","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2408544213"]}}} +{"ref":"#% chance to gain Onslaught for 4 seconds on Kill","better":1,"matchers":[{"string":"擊殺時 #% 機率獲得 4 秒猛攻"},{"string":"擊殺時獲得 4 秒猛攻","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3023957681","explicit.stat_665823128"],"implicit":["implicit.stat_3023957681"],"fractured":["fractured.stat_3023957681","fractured.stat_665823128"],"scourge":["scourge.stat_3023957681"],"crafted":["crafted.stat_3023957681"]}}} +{"ref":"#% chance to gain Onslaught for 4 Seconds when Leech is\nremoved by Filling Unreserved Life","better":1,"matchers":[{"string":"當偷取被填滿未保留生命移除時,有 #% 機率獲得猛攻 4 秒"}],"trade":{"ids":{"explicit":["explicit.stat_3106724907"]}}} +{"ref":"#% chance to gain Onslaught when you use a Flask","better":1,"matchers":[{"string":"當你使用藥劑時,有 #% 機率獲得猛攻"}],"trade":{"ids":{"explicit":["explicit.stat_1324450398"]}}} +{"ref":"#% chance to gain Phasing for 4 seconds on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率獲得 4 秒迷蹤效果"},{"string":"擊殺時獲得 4 秒迷蹤效果","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2918708827"],"fractured":["fractured.stat_2918708827"],"scourge":["scourge.stat_2918708827"]}}} +{"ref":"#% chance to gain Unholy Might for 3 seconds on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率獲得不潔之力 3 秒"},{"string":"擊殺時獲得不潔之力 3 秒","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3562211447"],"implicit":["implicit.stat_3562211447"],"fractured":["fractured.stat_3562211447"],"scourge":["scourge.stat_3562211447"]}}} +{"ref":"#% chance to Gain Unholy Might for 4 seconds on Melee Kill","better":1,"matchers":[{"string":"近戰擊殺時有 #% 機率獲得不潔之力 4 秒"}],"trade":{"ids":{"explicit":["explicit.stat_3166317791"],"fractured":["fractured.stat_3166317791"]}}} +{"ref":"#% chance to grant a Frenzy Charge to nearby Allies on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率賦予附近友方 1 顆狂怒球"},{"string":"擊中時賦予附近友方 1 顆狂怒球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_991168463"]}}} +{"ref":"#% chance to grant a Power Charge to nearby Allies on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率給予附近友方 1 顆暴擊球"},{"string":"擊殺時給予附近友方 1 顆暴擊球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2367680009"]}}} +{"ref":"#% chance to grant Chaotic Might to nearby Enemies on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率給予附近敵人混沌之力"},{"string":"擊殺時給予附近敵人混沌之力","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3607444087"]}}} +{"ref":"#% chance to grant Onslaught to nearby Enemies on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率給予附近敵人猛攻"},{"string":"擊殺時給予附近敵人猛攻","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1924591908"]}}} +{"ref":"#% chance to Hinder Enemies on Hit with Spells","better":1,"matchers":[{"string":"法術擊中時有 #% 機率阻礙敵人"},{"string":"法術擊中時阻礙敵人","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3002506763"],"implicit":["implicit.stat_3002506763"],"fractured":["fractured.stat_3002506763"],"scourge":["scourge.stat_3002506763"]}}} +{"ref":"#% chance to Ignite","better":1,"matchers":[{"string":"#% 機率使用火焰傷害擊中敵人造成點燃效果"},{"string":"所有火焰傷害擊中敵人造成點燃效果","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1335054179"],"implicit":["implicit.stat_1335054179"],"fractured":["fractured.stat_1335054179"],"enchant":["enchant.stat_1335054179"],"scourge":["scourge.stat_1335054179"],"crafted":["crafted.stat_1335054179"]}}} +{"ref":"#% chance to Ignite during any Flask Effect","better":1,"matchers":[{"string":"任何藥劑效果持續時間內,有 #% 機率造成點燃"}],"trade":{"ids":{"explicit":["explicit.stat_3888064854"]}}} +{"ref":"#% chance to Ignite when in Main Hand","better":1,"matchers":[{"string":"在主手 #% 機率點燃"},{"string":"在主手總是點燃","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2919089822"]}}} +{"ref":"#% chance to Ignite with Melee Weapons","better":1,"matchers":[{"string":"近戰武器有 #% 機率造成點燃"}],"trade":{"ids":{"implicit":["implicit.stat_4206255461"]}}} +{"ref":"#% chance to Ignore Stuns while Casting","better":1,"matchers":[{"string":"施放時,有 #% 機率無視暈眩"},{"string":"施放時無視暈眩","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1916706958"],"implicit":["implicit.stat_1916706958"],"fractured":["fractured.stat_1916706958"]}}} +{"ref":"#% chance to Ignore Stuns while using Socketed Attack Skills","better":1,"matchers":[{"string":"使用插槽中的攻擊技能時,有 #% 機率無視暈眩"},{"string":"使用插槽中的攻擊技能時,無視暈眩","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1439818705"]}}} +{"ref":"#% chance to Impale Enemies on Hit with Attacks","better":1,"matchers":[{"string":"攻擊擊中時有 #% 機率穿刺敵人"},{"string":"攻擊擊中時穿刺敵人","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3739863694","explicit.stat_725880290"],"implicit":["implicit.stat_3739863694"],"fractured":["fractured.stat_3739863694","fractured.stat_725880290"],"scourge":["scourge.stat_3739863694"],"crafted":["crafted.stat_725880290"]}}} +{"ref":"#% chance to Impale Enemies on Hit with Attacks while using Pride","better":1,"matchers":[{"string":"使用驕傲時,攻擊擊中有 #% 機率穿刺敵人"},{"string":"使用驕傲時,攻擊擊中穿刺敵人","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4173751044"]}}} +{"ref":"#% chance to Impale on Spell Hit","better":1,"matchers":[{"string":"法術擊中有 #% 機率造成穿刺"}],"trade":{"ids":{"explicit":["explicit.stat_3094222195"]}}} +{"ref":"#% chance to inflict a Grasping Vine on Melee Weapon Hit","better":1,"matchers":[{"string":"近戰武器擊中時有 #% 機率造成 1 層緩速藤蔓"},{"string":"近戰武器擊中時造成 1 層緩速藤蔓","value":100}],"trade":{"ids":{"explicit":["explicit.stat_19313391"]}}} +{"ref":"#% chance to inflict Bleeding on Critical Strike with Attacks","better":1,"matchers":[{"string":"攻擊暴擊時有 #% 機率造成流血"}],"trade":{"ids":{"explicit":["explicit.stat_2054257693"]}}} +{"ref":"#% chance to inflict Brittle","better":1,"matchers":[{"string":"#% 機率造成易碎"},{"string":"總是造成易碎","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2238174408"]}}} +{"ref":"#% chance to inflict Brittle on Enemies when you Block their Damage","better":1,"matchers":[{"string":"當你格擋敵人的傷害時,有 #% 機率對他們造成易碎"},{"string":"當你格擋敵人的傷害時,對他們造成易碎","value":100}],"trade":{"ids":{"implicit":["implicit.stat_1749278976"]}}} +{"ref":"#% chance to inflict Cold Exposure on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率造成冰冷曝曬"},{"string":"擊中時造成冰冷曝曬","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2630708439"],"scourge":["scourge.stat_2630708439"]}}} +{"ref":"#% chance to inflict Corrosion on Hit with Attacks","better":1,"matchers":[{"string":"攻擊擊中時有 #% 機率造成腐蝕"}],"trade":{"ids":{"explicit":["explicit.stat_2523122963"]}}} +{"ref":"#% chance to inflict Fire Exposure on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率造成火焰曝曬"},{"string":"擊中時造成火焰曝曬","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3602667353"],"scourge":["scourge.stat_3602667353"]}}} +{"ref":"#% chance to inflict Lightning Exposure on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率造成閃電曝曬"},{"string":"擊中時造成閃電曝曬","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4265906483"],"fractured":["fractured.stat_4265906483"],"scourge":["scourge.stat_4265906483"]}}} +{"ref":"#% chance to inflict Withered for 2 seconds on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率造成凋零,持續 2 秒"},{"string":"擊中時造成凋零,持續 2 秒","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1957711555"]}}} +{"ref":"#% chance to inflict Withered for 2 seconds on Hit with this Weapon","better":1,"matchers":[{"string":"使用此武器擊中時,有 #% 機率造成凋零 2 秒"},{"string":"使用此武器擊中時,造成凋零 2 秒","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1226121733"]}}} +{"ref":"#% chance to Intimidate Enemies for 4 seconds on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率威嚇敵人 4 秒"},{"string":"擊中時威嚇敵人 4 秒","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2089652545","explicit.stat_78985352"],"implicit":["implicit.stat_2089652545","implicit.stat_78985352"],"scourge":["scourge.stat_78985352"]}}} +{"ref":"#% chance to Intimidate Enemies for 4 seconds on Hit with Attacks","better":1,"matchers":[{"string":"攻擊擊中時,有 #% 機率威嚇敵人 4 秒"},{"string":"攻擊擊中時,威嚇敵人 4 秒","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3438201750"],"implicit":["implicit.stat_3438201750"],"fractured":["fractured.stat_3438201750"]}}} +{"ref":"#% chance to Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges","better":1,"matchers":[{"string":"當最大耐力球數量時,攻擊擊中有 #% 機率威嚇敵人 4 秒"},{"string":"當最大耐力球數量時,攻擊擊中威嚇敵人 4 秒","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2877370216"]}}} +{"ref":"#% chance to Knock Enemies Back on hit","better":1,"matchers":[{"string":"擊中時有 #% 機率擊退敵人"},{"string":"擊中時擊退敵人","value":100}],"trade":{"ids":{"explicit":["explicit.stat_977908611"],"implicit":["implicit.stat_977908611"],"fractured":["fractured.stat_977908611"],"scourge":["scourge.stat_977908611"]}}} +{"ref":"#% chance to lose a Frenzy Charge when you use a Travel Skill","better":1,"matchers":[{"string":"當你使用快行技能,有 #% 機率失去 1 顆狂怒球"},{"string":"當你使用快行技能,失去 1 顆狂怒球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_445906009"]}}} +{"ref":"#% chance to lose a Power Charge when you gain Elusive","better":1,"matchers":[{"string":"當你獲得靈巧,有 #% 機率失去 1 顆暴擊球"},{"string":"當你獲得靈巧,失去 1 顆暴擊球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1819086604"]}}} +{"ref":"#% chance to lose an Endurance Charge when you gain Fortification","better":1,"matchers":[{"string":"當你獲得護體時,有 #% 機率失去 1 顆耐力球"},{"string":"當你獲得護體時,失去 1 顆耐力球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1087146228"]}}} +{"ref":"#% chance to Maim Enemies on Critical Strike with Attacks","better":1,"matchers":[{"string":"攻擊暴擊時有 #% 機率使敵人癱瘓"}],"trade":{"ids":{"explicit":["explicit.stat_996483959"]}}} +{"ref":"#% chance to Maim on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率造成癱瘓"},{"string":"擊中時造成癱瘓","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2763429652"],"implicit":["implicit.stat_2763429652"],"fractured":["fractured.stat_2763429652"]}}} +{"ref":"#% chance to not Activate Lockdown in Grand Heists","better":1,"matchers":[{"string":"劫盜之星時有 #% 機率不啟動封鎖"}],"trade":{"ids":{"explicit":["explicit.stat_2438099615"],"fractured":["fractured.stat_2438099615"]}}} +{"ref":"#% chance to not generate Alert Level on opening a Chest using Agility","better":1,"matchers":[{"string":"使用靈巧開啟保險箱時有 #% 機率不產生警戒等級"}],"trade":{"ids":{"explicit":["explicit.stat_277930304"]}}} +{"ref":"#% chance to not generate Alert Level on opening a Chest using Brute Force","better":1,"matchers":[{"string":"使用蠻力開啟保險箱時有 #% 機率不產生警戒等級"}],"trade":{"ids":{"explicit":["explicit.stat_1195895224"]}}} +{"ref":"#% chance to not generate Alert Level on opening a Chest using Counter-Thaumaturgy","better":1,"matchers":[{"string":"使用解咒師開啟保險箱時有 #% 機率不產生警戒等級"}],"trade":{"ids":{"explicit":["explicit.stat_2232609651"],"fractured":["fractured.stat_2232609651"]}}} +{"ref":"#% chance to not generate Alert Level on opening a Chest using Deception","better":1,"matchers":[{"string":"使用詐欺開啟保險箱時有 #% 機率不產生警戒等級"}],"trade":{"ids":{"explicit":["explicit.stat_3146356577"],"fractured":["fractured.stat_3146356577"]}}} +{"ref":"#% chance to not generate Alert Level on opening a Chest using Demolition","better":1,"matchers":[{"string":"使用拆除開啟保險箱時有 #% 機率不產生警戒等級"}],"trade":{"ids":{"explicit":["explicit.stat_581152495"],"fractured":["fractured.stat_581152495"]}}} +{"ref":"#% chance to not generate Alert Level on opening a Chest using Engineering","better":1,"matchers":[{"string":"使用工程開啟保險箱時有 #% 機率不產生警戒等級"}],"trade":{"ids":{"explicit":["explicit.stat_316122366"]}}} +{"ref":"#% chance to not generate Alert Level on opening a Chest using Lockpicking","better":1,"matchers":[{"string":"使用開鎖開啟保險箱時有 #% 機率不會產生警戒等級"}],"trade":{"ids":{"explicit":["explicit.stat_647064288"]}}} +{"ref":"#% chance to not generate Alert Level on opening a Chest using Perception","better":1,"matchers":[{"string":"使用洞察力開啟保險箱時有 #% 機率不產生警戒等級"}],"trade":{"ids":{"explicit":["explicit.stat_397829245"]}}} +{"ref":"#% chance to not generate Alert Level on opening a Chest using Trap Disarmament","better":1,"matchers":[{"string":"使用陷阱解除開啟保險箱時有 #% 機率不會產生警戒等級"}],"trade":{"ids":{"explicit":["explicit.stat_3015749212"],"fractured":["fractured.stat_3015749212"]}}} +{"ref":"#% chance to Poison on Hit","better":1,"matchers":[{"string":"擊中時 #% 機率使目標中毒"},{"string":"擊中時有 #% 機率使敵人中毒"},{"string":"擊中時使敵人中毒","value":100},{"string":"擊中時使目標中毒","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3885634897","explicit.stat_795138349"],"implicit":["implicit.stat_3885634897","implicit.stat_795138349"],"fractured":["fractured.stat_3885634897","fractured.stat_795138349"],"scourge":["scourge.stat_795138349"],"crafted":["crafted.stat_3885634897"]}}} +{"ref":"#% chance to Poison on Hit against Cursed Enemies","better":1,"matchers":[{"string":"擊中被詛咒的敵人有 #% 機率造成中毒"},{"string":"擊中被詛咒的敵人造成中毒","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2208857094"]}}} +{"ref":"#% chance to Poison on Hit during Effect","better":1,"matchers":[{"string":"效果持續時間,有 #% 機率造成中毒"}],"trade":{"ids":{"explicit":["explicit.stat_2777278657"]}}} +{"ref":"#% chance to Poison on Hit with Attacks","better":1,"matchers":[{"string":"攻擊擊中時有 #% 機率使目標中毒"},{"string":"攻擊擊中時使目標中毒","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3954735777"]}}} +{"ref":"#% chance to Poison per Power Charge","better":1,"matchers":[{"string":"每顆暴擊球有 #% 機率造成中毒"}],"trade":{"ids":{"explicit":["explicit.stat_2992087211"]}}} +{"ref":"#% chance to Poison with Melee Weapons","better":1,"matchers":[{"string":"近戰武器有 #% 機率造成中毒"}],"trade":{"ids":{"implicit":["implicit.stat_1168985596"]}}} +{"ref":"#% chance to receive additional Abyss items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"劫盜中開啟獎勵箱時,有 #% 機率獲得額外深淵之物"}],"trade":{"ids":{"explicit":["explicit.stat_1361025326"]}}} +{"ref":"#% chance to receive additional Armour items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"劫盜中開啟獎勵箱時,有 #% 機率獲得額外護甲道具"}],"trade":{"ids":{"explicit":["explicit.stat_3835470471"]}}} +{"ref":"#% chance to receive additional Blight items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"劫盜中開啟獎勵箱時,有 #% 機率獲得額外凋落之物"}],"trade":{"ids":{"explicit":["explicit.stat_2581419165"]}}} +{"ref":"#% chance to receive additional Breach items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"劫盜中開啟獎勵箱時,有 #% 機率獲得額外裂痕之物"}],"trade":{"ids":{"explicit":["explicit.stat_4146386957"]}}} +{"ref":"#% chance to receive additional Delirium items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"劫盜中開啟獎勵箱時,有 #% 機率獲得額外譫妄之物"}],"trade":{"ids":{"explicit":["explicit.stat_3876876906"]}}} +{"ref":"#% chance to receive additional Delve items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"劫盜中開啟獎勵箱時,有 #% 機率獲得額外掘獄之物"}],"trade":{"ids":{"explicit":["explicit.stat_1852069308"]}}} +{"ref":"#% chance to receive additional Divination Card items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"劫盜中開啟獎勵箱時,有 #% 機率獲得額外命運卡"}],"trade":{"ids":{"explicit":["explicit.stat_3099138455"]}}} +{"ref":"#% chance to receive additional Essences when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"劫盜中開啟獎勵箱時,有 #% 機率獲得額外精髓"}],"trade":{"ids":{"explicit":["explicit.stat_2454528473"]}}} +{"ref":"#% chance to receive additional Gem items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"劫盜中開啟獎勵箱時,有 #% 機率獲得額外寶石"}],"trade":{"ids":{"explicit":["explicit.stat_2610785454"]}}} +{"ref":"#% chance to receive additional Harbinger items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"劫盜中開啟獎勵箱時,有 #% 機率獲得額外神諭之物"}],"trade":{"ids":{"explicit":["explicit.stat_73487979"]}}} +{"ref":"#% chance to receive additional Jewellery when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"劫盜中開啟獎勵箱時,有 #% 機率獲得額外飾品"}],"trade":{"ids":{"explicit":["explicit.stat_1323476506"]}}} +{"ref":"#% chance to receive additional Legion items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"劫盜中開啟獎勵箱時,有 #% 機率獲得額外戰亂之物"}],"trade":{"ids":{"explicit":["explicit.stat_1463604143"]}}} +{"ref":"#% chance to receive additional Talismans when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"劫盜中開啟獎勵箱時,有 #% 機率獲得額外魔符"}],"trade":{"ids":{"explicit":["explicit.stat_2917742181"]}}} +{"ref":"#% chance to receive additional Ultimatum items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"劫盜中開啟獎勵箱時,有 #% 機率獲得額外通牒之物"}],"trade":{"ids":{"explicit":["explicit.stat_1485150248"]}}} +{"ref":"#% chance to receive additional Unique items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"劫盜中開啟獎勵箱時,有 #% 機率獲得額外傳奇道具"}],"trade":{"ids":{"explicit":["explicit.stat_3145607602"]}}} +{"ref":"#% chance to receive additional Weapons when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"劫盜中開啟獎勵箱時,有 #% 機率獲得額外武器"}],"trade":{"ids":{"explicit":["explicit.stat_953018841"]}}} +{"ref":"#% chance to Recover 10% of Mana when you use a Skill","better":1,"matchers":[{"string":"當你使用技能時,有 #% 機率恢復 10% 魔力"}],"trade":{"ids":{"explicit":["explicit.stat_308309328"],"fractured":["fractured.stat_308309328"]}}} +{"ref":"#% chance to Recover 10% of Mana when you use a Skill while affected by Clarity","better":1,"matchers":[{"string":"被清晰影響下使用技能時,有 #% 機率恢復 10% 最大魔力"}],"trade":{"ids":{"explicit":["explicit.stat_1699077932"]}}} +{"ref":"#% chance to refresh Ignite Duration on Melee Weapon Hit","better":1,"matchers":[{"string":"近戰武器擊中有 #% 機率刷新點燃持續時間"}],"trade":{"ids":{"explicit":["explicit.stat_93054948"]}}} +{"ref":"#% chance to Sap Enemies","better":1,"matchers":[{"string":"#% 機率殘喘敵人"},{"string":"總是殘喘敵人","value":100}],"trade":{"ids":{"explicit":["explicit.stat_532324017"]}}} +{"ref":"#% chance to Sap Enemies in Chilling Areas","better":1,"matchers":[{"string":"#% 機率殘喘在冰緩地區的敵人"},{"string":"必定殘喘在冰緩地區的敵人","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3057853352"]}}} +{"ref":"#% chance to Sap Enemies when you Block their Damage","better":1,"matchers":[{"string":"當你格擋敵人的傷害時,有 #% 機率對他們造成殘喘"},{"string":"當你格擋敵人的傷害時,對他們造成殘喘","value":100}],"trade":{"ids":{"implicit":["implicit.stat_2113677718"]}}} +{"ref":"#% chance to Scorch Enemies","better":1,"matchers":[{"string":"#% 機率焦灼敵人"},{"string":"總是焦灼敵人","value":100}],"trade":{"ids":{"explicit":["explicit.stat_606940191"]}}} +{"ref":"#% chance to Scorch Enemies when you Block their Damage","better":1,"matchers":[{"string":"當你格擋敵人的傷害時,有 #% 機率對他們造成焦灼"},{"string":"當你格擋敵人的傷害時,對他們造成焦灼","value":100}],"trade":{"ids":{"implicit":["implicit.stat_779391868"]}}} +{"ref":"#% chance to Shock","better":1,"matchers":[{"string":"#% 機率使用閃電傷害擊中敵人造成感電效果"},{"string":"所有閃電傷害擊中敵人造成感電效果","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1538773178"],"implicit":["implicit.stat_1538773178"],"fractured":["fractured.stat_1538773178"],"enchant":["enchant.stat_1538773178"],"scourge":["scourge.stat_1538773178"],"crafted":["crafted.stat_1538773178"]}}} +{"ref":"#% chance to Shock Attackers for 4 seconds on Block","better":1,"matchers":[{"string":"格擋時有 #% 機率感電攻擊者 4 秒"},{"string":"格擋時感電攻擊者 4 秒","value":100}],"trade":{"ids":{"explicit":["explicit.stat_575111651"],"fractured":["fractured.stat_575111651"],"scourge":["scourge.stat_575111651"]}}} +{"ref":"#% chance to Shock Chilled Enemies","better":1,"matchers":[{"string":"#% 機率對被冰緩的敵人造成感電"}],"trade":{"ids":{"explicit":["explicit.stat_4069101408"]}}} +{"ref":"#% chance to Shock during any Flask Effect","better":1,"matchers":[{"string":"任何藥劑效果持續時間內,有 #% 機率造成感電"}],"trade":{"ids":{"explicit":["explicit.stat_796406325"]}}} +{"ref":"#% chance to Shock with Melee Weapons","better":1,"matchers":[{"string":"近戰武器有 #% 機率造成感電"}],"trade":{"ids":{"implicit":["implicit.stat_2313961828"]}}} +{"ref":"#% chance to Steal Power, Frenzy, and Endurance Charges on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率偷取暴擊、狂怒和耐力球"},{"string":"擊中時偷取暴擊、狂怒和耐力球。","value":100}],"trade":{"ids":{"explicit":["explicit.stat_875143443"]}}} +{"ref":"#% chance to Summon an additional Skeleton with Summon Skeletons","better":1,"matchers":[{"string":"有 #% 機率使用召喚骷髏召喚 1 個額外骷髏"}],"trade":{"ids":{"enchant":["enchant.stat_1040958896"]}}} +{"ref":"#% chance to take 50% less Area Damage from Hits","better":1,"matchers":[{"string":"#% 機率承受 50% 更少範圍傷害"}],"trade":{"ids":{"explicit":["explicit.stat_4253777805"]}}} +{"ref":"#% chance to Taunt Enemies on Hit with Attacks","better":1,"matchers":[{"string":"攻擊擊中時有 #% 機率嘲諷敵人"},{"string":"攻擊擊中時嘲諷敵人","value":100}],"trade":{"ids":{"explicit":["explicit.stat_280213220"],"implicit":["implicit.stat_280213220"],"fractured":["fractured.stat_280213220"],"scourge":["scourge.stat_280213220"]}}} +{"ref":"#% chance to throw up to 4 additional Traps","better":1,"matchers":[{"string":"#% 機率投擲最多 4 個額外陷阱"}],"trade":{"ids":{"explicit":["explicit.stat_3132227798"]}}} +{"ref":"#% chance to Trigger a Socketed Bow Skill when you Attack with a Bow, with a 1 second Cooldown","better":1,"matchers":[{"string":"當你使用弓攻擊時有 #% 機率觸發插槽中的 1 個弓技能,有 1 秒冷卻時間"},{"string":"當你使用弓攻擊時觸發插槽中的 1 個弓技能,有 1 秒冷卻時間","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3171958921"]}}} +{"ref":"#% chance to Trigger a Socketed Bow Skill when you Cast a Spell while wielding a Bow, with a 1 second Cooldown","better":1,"matchers":[{"string":"當你持弓時施放法術,有 #% 機率觸發 1 個插槽中的弓技能,有 1 秒冷卻時間"},{"string":"當你持弓時施放法術,觸發 1 個插槽中的弓技能,有 1 秒冷卻時間","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1378815167"]}}} +{"ref":"#% chance to Trigger a Socketed Spell on Using a Skill, with a 8 second Cooldown\nSpells Triggered this way have 150% more Cost","better":1,"matchers":[{"string":"使用技能時有 #% 機率觸發插槽中的 1 個法術,有 8 秒冷卻時間\n以此方式觸發的法術有 150% 更多消耗"},{"string":"使用技能時觸發插槽中的 1 個法術,有 8 秒冷卻時間\n以此方式觸發的法術有 150% 更多消耗","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3079007202"],"fractured":["fractured.stat_3079007202"],"crafted":["crafted.stat_3079007202"]}}} +{"ref":"#% chance to Trigger a Socketed Spell when you Attack with a Bow, with a 0.3 second Cooldown","better":1,"matchers":[{"string":"當你使用弓攻擊時有 #% 機率觸發插槽中的 1 個法術,有 0.3 秒冷卻時間"},{"string":"當你使用弓攻擊時觸發插槽中的 1 個法術,有 0.3 秒冷卻時間","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3302736916"]}}} +{"ref":"#% chance to Trigger a Socketed Spell when you Attack with this Weapon, with a 0.25 second Cooldown","better":1,"matchers":[{"string":"當你使用此武器攻擊時,有 #% 機率觸發 1 個插槽中的法術,有 0.25 秒冷卻時間"},{"string":"當你使用此武器攻擊時,觸發 1 個插槽中的法術,有 0.25 秒冷卻時間","value":100}],"trade":{"ids":{"explicit":["explicit.stat_209056835"]}}} +{"ref":"#% chance to Trigger a Socketed Warcry Skill when you lose Endurance Charges, with a 0.25 second Cooldown","better":1,"matchers":[{"string":"當你失去耐力球時有 #% 機率觸發插槽中 1 個戰吼技能,有 0.25 秒冷卻時間"},{"string":"當你失去耐力球時觸發插槽中 1 個戰吼技能,有 0.25 秒冷卻時間","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1112135314"]}}} +{"ref":"#% chance to Trigger Commandment of Blades on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率觸發刀鋒之誡"},{"string":"擊中時觸發刀鋒之誡","value":100}],"trade":{"ids":{"enchant":["enchant.stat_147952811"]}}} +{"ref":"#% chance to Trigger Commandment of Flames on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率觸發烈火之誡"},{"string":"擊中時觸發烈火之誡","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3703722637"]}}} +{"ref":"#% chance to Trigger Commandment of Force on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率觸發原力之誡"},{"string":"擊中時觸發原力之誡","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2666843091"]}}} +{"ref":"#% chance to Trigger Commandment of Frost on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率觸發寒冰之誡"},{"string":"擊殺時觸發寒冰之誡","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1877374369"]}}} +{"ref":"#% chance to Trigger Commandment of Fury on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率觸發狂怒之誡"},{"string":"擊中時觸發狂怒之誡","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1554500307"]}}} +{"ref":"#% chance to Trigger Commandment of Inferno on Critical Strike","better":1,"matchers":[{"string":"暴擊時有 #% 機率觸發煉獄之誡"},{"string":"暴擊時觸發煉獄之誡","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3251948367"]}}} +{"ref":"#% chance to Trigger Commandment of Inferno on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率觸發煉獄之誡"},{"string":"擊殺時觸發煉獄之誡","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2020183428"]}}} +{"ref":"#% chance to Trigger Commandment of Ire when Hit","better":1,"matchers":[{"string":"被擊中時有 #% 機率觸發雷霆之誡"},{"string":"被擊中時觸發雷霆之誡","value":100}],"trade":{"ids":{"enchant":["enchant.stat_620045439"]}}} +{"ref":"#% chance to Trigger Commandment of Light when you take a Critical Strike","better":1,"matchers":[{"string":"當你被暴擊時有 #% 機率觸發光之誡"},{"string":"當你被暴擊時觸發光之誡","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3109915337"]}}} +{"ref":"#% chance to Trigger Commandment of Reflection when Hit","better":1,"matchers":[{"string":"被擊中時有 #% 機率觸發倒影之誡"},{"string":"被擊中時觸發倒影之誡","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3036365740"]}}} +{"ref":"#% chance to Trigger Commandment of Spite when Hit","better":1,"matchers":[{"string":"當被擊中時有 #% 機率觸發怨恨之誡"},{"string":"當被擊中時觸發怨恨之誡","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1259277978"]}}} +{"ref":"#% chance to Trigger Commandment of the Grave when your Skills or Minions Kill","better":1,"matchers":[{"string":"當你的技能或召喚物擊殺時,有 #% 機率觸發冰墓之誡"},{"string":"當你的技能或召喚物擊殺時,觸發冰墓之誡","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1374371477"]}}} +{"ref":"#% chance to Trigger Commandment of the Tempest on Hit","better":1,"matchers":[{"string":"擊中時有 #% 觸發風暴之誡"},{"string":"擊中時觸發風暴之誡","value":100}],"trade":{"ids":{"enchant":["enchant.stat_4203647216"]}}} +{"ref":"#% chance to Trigger Commandment of Thunder on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率觸發雷電之誡"},{"string":"擊殺時觸發雷電之誡","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1988467615"]}}} +{"ref":"#% chance to Trigger Commandment of War on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率觸發戰爭之誡"},{"string":"擊殺時觸發戰爭之誡","value":100}],"trade":{"ids":{"enchant":["enchant.stat_494477497"]}}} +{"ref":"#% chance to Trigger Commandment of Winter when Hit","better":1,"matchers":[{"string":"被擊中時有 #% 機率觸發冬之誡"},{"string":"被擊中時觸發冬之誡","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3222886961"]}}} +{"ref":"#% chance to Trigger Decree of Blades on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率觸發刀鋒之令"},{"string":"擊中時觸發刀鋒之令","value":100}],"trade":{"ids":{"enchant":["enchant.stat_165958462"]}}} +{"ref":"#% chance to Trigger Decree of Flames on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率觸發烈火之令"},{"string":"擊中時觸發烈火之令","value":100}],"trade":{"ids":{"enchant":["enchant.stat_990408262"]}}} +{"ref":"#% chance to Trigger Decree of Force on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率觸發原力之令"},{"string":"擊中時觸發原力之令","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2925650365"]}}} +{"ref":"#% chance to Trigger Decree of Frost on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率觸發寒冰之令"},{"string":"擊殺時觸發寒冰之令","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1268512925"]}}} +{"ref":"#% chance to Trigger Decree of Fury on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率觸發狂怒之令"},{"string":"擊中時觸發狂怒之令","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2252338738"]}}} +{"ref":"#% chance to Trigger Decree of Inferno on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率觸發煉獄之令"},{"string":"擊殺時觸發煉獄之令","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1366391108"]}}} +{"ref":"#% chance to Trigger Decree of Ire when Hit","better":1,"matchers":[{"string":"被擊中時有 #% 機率觸發雷霆之令"},{"string":"被擊中時觸發雷霆之令","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1818525360"]}}} +{"ref":"#% chance to Trigger Decree of Light when you take a Critical Strike","better":1,"matchers":[{"string":"當你被暴擊時有 #% 機率觸發光之令"},{"string":"當你被暴擊時觸發光之令","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3641868987"]}}} +{"ref":"#% chance to Trigger Decree of Reflection when Hit","better":1,"matchers":[{"string":"被擊中時有 #% 機率觸發倒影之令"},{"string":"被擊中時觸發倒影之令","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1792647120"]}}} +{"ref":"#% chance to Trigger Decree of Spite when Hit","better":1,"matchers":[{"string":"當被擊中時有 #% 機率觸發怨恨之令"},{"string":"當被擊中時觸發怨恨之令","value":100}],"trade":{"ids":{"enchant":["enchant.stat_889695873"]}}} +{"ref":"#% chance to Trigger Decree of the Grave when your Skills or Minions Kill","better":1,"matchers":[{"string":"當你的技能或召喚物擊殺時,有 #% 機率觸發冰墓之令"},{"string":"當你的技能或召喚物擊殺時,觸發冰墓之令","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2187415468"]}}} +{"ref":"#% chance to Trigger Decree of the Tempest on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率觸發風暴之令"},{"string":"擊中時觸發風暴之令","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1671985305"]}}} +{"ref":"#% chance to Trigger Decree of Thunder on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率觸發雷電之令"},{"string":"擊殺時觸發雷電之令","value":100}],"trade":{"ids":{"enchant":["enchant.stat_4152292551"]}}} +{"ref":"#% chance to Trigger Decree of War on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率觸發戰爭之令"},{"string":"擊殺時觸發戰爭之令","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1106926438"]}}} +{"ref":"#% chance to Trigger Decree of Winter when Hit","better":1,"matchers":[{"string":"被擊中時有 #% 機率觸發冬之令"},{"string":"被擊中時觸發冬之令","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2515273888"]}}} +{"ref":"#% chance to Trigger Edict of Blades on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率觸發刀鋒之律"},{"string":"擊中時有觸發刀鋒之律","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2160886943"]}}} +{"ref":"#% chance to Trigger Edict of Flames on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率觸發烈火之律"},{"string":"擊中時觸發烈火之律","value":100}],"trade":{"ids":{"enchant":["enchant.stat_786149615"]}}} +{"ref":"#% chance to Trigger Edict of Force on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率觸發原力之律"},{"string":"擊中時觸發原力之律","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2760193888"]}}} +{"ref":"#% chance to Trigger Edict of Frost on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率觸發寒冰之律"},{"string":"擊殺時觸發寒冰之律","value":100}],"trade":{"ids":{"enchant":["enchant.stat_90942364"]}}} +{"ref":"#% chance to Trigger Edict of Fury on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率觸發狂怒之律"},{"string":"擊中時觸發狂怒之律","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1153637043"]}}} +{"ref":"#% chance to Trigger Edict of Inferno on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率觸發煉獄之律"},{"string":"擊殺時觸發煉獄之律","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2246143608"]}}} +{"ref":"#% chance to Trigger Edict of Ire when Hit","better":1,"matchers":[{"string":"被擊中時有 #% 機率觸發雷霆之律"},{"string":"被擊中時觸發雷霆之律","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3285719520"]}}} +{"ref":"#% chance to Trigger Edict of Light when you take a Critical Strike","better":1,"matchers":[{"string":"你被暴擊時有 #% 機率觸發光之律"},{"string":"你被暴擊時觸發光之律","value":100}],"trade":{"ids":{"enchant":["enchant.stat_271342637"]}}} +{"ref":"#% chance to Trigger Edict of Reflection when Hit","better":1,"matchers":[{"string":"被擊中時有 #% 機率觸發倒影之律"},{"string":"被擊中時觸發倒影之律","value":100}],"trade":{"ids":{"enchant":["enchant.stat_4228580629"]}}} +{"ref":"#% chance to Trigger Edict of Spite when Hit","better":1,"matchers":[{"string":"當被擊中時有 #% 機率觸發怨恨之律"},{"string":"當被擊中時觸發怨恨之律","value":100}],"trade":{"ids":{"enchant":["enchant.stat_257027296"]}}} +{"ref":"#% chance to Trigger Edict of the Grave when your Skills or Minions Kill","better":1,"matchers":[{"string":"當你的技能或召喚物擊殺時,有 #% 機率觸發冰墓之律"},{"string":"當你的技能或召喚物擊殺時,觸發冰墓之律","value":100}],"trade":{"ids":{"enchant":["enchant.stat_308154324"]}}} +{"ref":"#% chance to Trigger Edict of the Tempest on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率觸發風暴之律"},{"string":"擊中時觸發風暴之律","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1711789839"]}}} +{"ref":"#% chance to Trigger Edict of Thunder on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率觸發雷電之律"},{"string":"擊殺時觸發雷電之律","value":100}],"trade":{"ids":{"enchant":["enchant.stat_603658709"]}}} +{"ref":"#% chance to Trigger Edict of War on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率觸發戰爭之律"},{"string":"擊殺時觸發戰爭之律","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2033463878"]}}} +{"ref":"#% chance to Trigger Edict of Winter when Hit","better":1,"matchers":[{"string":"被擊中時有 #% 機率觸發冬之律"},{"string":"被擊中時觸發冬之律","value":100}],"trade":{"ids":{"enchant":["enchant.stat_147678606"]}}} +{"ref":"#% chance to Trigger Level 1 Blood Rage when you Kill an Enemy","better":1,"matchers":[{"string":"當你擊殺敵人時,有 #% 機率觸發等級 1 的鮮血狂怒"},{"string":"當你擊殺敵人時觸發等級 1 的鮮血狂怒","value":100}],"trade":{"ids":{"explicit":["explicit.stat_205619502"],"fractured":["fractured.stat_205619502"],"crafted":["crafted.stat_205619502"]}}} +{"ref":"#% chance to Trigger Level 1 Create Lesser Shrine when you Kill an Enemy","better":1,"matchers":[{"string":"當你擊殺敵人時,有 #% 機率觸發召喚等級 1 的低階神殿"},{"string":"當你擊殺敵人時,觸發召喚等級 1 的低階神殿","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1010340836"]}}} +{"ref":"#% chance to Trigger Level 1 Raise Spiders on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率觸發異蛛復甦"}],"trade":{"ids":{"explicit":["explicit.stat_3844016207"]}}} +{"ref":"#% chance to Trigger Level 10 Summon Raging Spirit on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率觸發等級 8 的召喚憤怒狂靈"},{"string":"擊殺時觸發等級 8 的召喚憤怒狂靈","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3751996449"]}}} +{"ref":"#% chance to Trigger Level 16 Molten Burst on Melee Hit","better":1,"matchers":[{"string":"近戰擊中時有 #% 機率觸發等級 16 的熔岩爆破"}],"trade":{"ids":{"explicit":["explicit.stat_4125471110"]}}} +{"ref":"#% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy","better":1,"matchers":[{"string":"當幻化武器擊殺敵人時,有 #% 機率觸發等級 18 的幻化守衛武器"},{"string":"當幻化武器擊殺敵人時觸發等級 18 的幻化守衛武器","value":100}],"trade":{"ids":{"explicit":["explicit.stat_919960234"]}}} +{"ref":"#% chance to Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy","better":1,"matchers":[{"string":"當幻化守衛擊殺敵人時,有 #% 機率觸發等級 20 的幻化守衛武器"},{"string":"當幻化守衛擊殺敵人時觸發等級 20 的幻化守衛武器","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3682009780"]}}} +{"ref":"#% chance to Trigger Level 20 Animate Weapon on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率觸發等級 20 的幻化武器"}],"trade":{"ids":{"explicit":["explicit.stat_1973890509"]}}} +{"ref":"#% chance to Trigger Level 20 Arcane Wake after Spending a total of 200 Mana","better":1,"matchers":[{"string":"消耗總計 200 魔力時,有 #% 機率觸發等級 20 的秘能喚醒"},{"string":"消耗總計 200 魔力時觸發等級 20 的秘能喚醒","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3344568504"]}}} +{"ref":"#% chance to Trigger Level 20 Glimpse of Eternity when Hit","better":1,"matchers":[{"string":"被擊中時有 #% 機率觸發等級 20 的永恆閃光"},{"string":"被擊中時觸發等級 20 的永恆閃光","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3141831683"]}}} +{"ref":"#% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill","better":1,"matchers":[{"string":"當你使用物品上的技能時,有 #% 機率觸發等級 20 的暗影姿態"}],"trade":{"ids":{"explicit":["explicit.stat_3308936917"]}}} +{"ref":"#% chance to Trigger Level 20 Summon Volatile Anomaly on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率觸發等級 20 的召喚極凍天體"}],"trade":{"ids":{"explicit":["explicit.stat_2143990571"]}}} +{"ref":"#% chance to Trigger Level 20 Tentacle Whip on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率觸發等級 20 的觸手鞭擊"}],"trade":{"ids":{"explicit":["explicit.stat_1350938937"]}}} +{"ref":"#% chance to Trigger Level 25 Summon Spectral Wolf on Critical Strike with this Weapon","better":1,"matchers":[{"string":"使用此武器暴擊時,有 #% 機率觸發等級 25 的召喚幽狼"},{"string":"使用此武器暴擊時,觸發等級 25 的召喚幽狼","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4221489692"]}}} +{"ref":"#% chance to Trigger Socketed Curse Spell when you Cast a Curse Spell, with a 0.25 second Cooldown","better":1,"matchers":[{"string":"當你施放詛咒法術時,有 #% 機率觸發插槽中的詛咒法術,有 0.25 秒冷卻時間"},{"string":"當你施放詛咒法術時,觸發插槽中的詛咒法術,有 0.25 秒冷卻時間","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3657377047"]}}} +{"ref":"#% chance to Trigger Socketed Spells when you Focus, with a 0.25 second Cooldown","better":1,"matchers":[{"string":"當你專注時,有 #% 機率觸發插槽中的法術,有 0.25 秒冷卻時間"},{"string":"當你專注時,觸發插槽中的法術,有 0.25 秒冷卻時間","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2062792091"],"fractured":["fractured.stat_2062792091"],"crafted":["crafted.stat_2062792091"]}}} +{"ref":"#% chance to Trigger Socketed Spells when you Spend at least # Mana on an\nUpfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown","better":1,"matchers":[{"string":"你在前期消耗使用或觸發技能至少 # 魔力時,\n觸發插槽中的法術,有 0.1 秒冷卻"},{"string":"你在前期消耗使用或觸發技能至少 # 魔力時,有 #% 機率觸發插槽中的法術,有 0.1 秒冷卻"}],"trade":{"ids":{"explicit":["explicit.stat_723388324"]}}} +{"ref":"#% chance to Trigger Summon Spirit of Ahuana on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率觸發召喚阿呼阿娜之魂"}],"trade":{"ids":{"explicit":["explicit.stat_31336590"]}}} +{"ref":"#% chance to Trigger Summon Spirit of Akoya on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率觸發召喚艾古亞之魂"}],"trade":{"ids":{"explicit":["explicit.stat_3888707953"]}}} +{"ref":"#% chance to Trigger Summon Spirit of Ikiaho on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率觸發召喚伊基亞呼之魂"}],"trade":{"ids":{"explicit":["explicit.stat_1163205473"]}}} +{"ref":"#% chance to Trigger Summon Spirit of Kahuturoa on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率觸發召喚卡胡圖羅亞之魂"}],"trade":{"ids":{"explicit":["explicit.stat_264841388"]}}} +{"ref":"#% chance to Trigger Summon Spirit of Kaom on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率觸發召喚岡姆之魂"}],"trade":{"ids":{"explicit":["explicit.stat_817287945"]}}} +{"ref":"#% chance to Trigger Summon Spirit of Kiloava on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率觸發召喚基洛阿瓦之魂"}],"trade":{"ids":{"explicit":["explicit.stat_999837849"]}}} +{"ref":"#% chance to Trigger Summon Spirit of Maata on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率觸發召喚瑪塔之魂"}],"trade":{"ids":{"explicit":["explicit.stat_3572665414"]}}} +{"ref":"#% chance to Trigger Summon Spirit of Rakiata on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率觸發召喚萊基亞塔之魂"}],"trade":{"ids":{"explicit":["explicit.stat_1630969195"]}}} +{"ref":"#% chance to Trigger Summon Spirit of Tawhanuku on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率觸發召喚塔瓦努庫之魂"}],"trade":{"ids":{"explicit":["explicit.stat_4217417523"]}}} +{"ref":"#% chance to Trigger Summon Spirit of Utula on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率觸發召喚烏圖拉之魂"}],"trade":{"ids":{"explicit":["explicit.stat_272515409"]}}} +{"ref":"#% chance to Trigger Word of Blades on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率觸發刀鋒之誓"},{"string":"擊中時觸發刀鋒之誓","value":100}],"trade":{"ids":{"enchant":["enchant.stat_756653426"]}}} +{"ref":"#% chance to Trigger Word of Flames on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率觸發烈火之誓"},{"string":"擊中時觸發烈火之誓","value":100}],"trade":{"ids":{"enchant":["enchant.stat_891161612"]}}} +{"ref":"#% chance to Trigger Word of Force on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率觸發原力之誓"},{"string":"擊中時觸發原力之誓","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1162506883"]}}} +{"ref":"#% chance to Trigger Word of Frost on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率觸發寒冰之誓"},{"string":"擊殺時觸發寒冰之誓","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3302747233"]}}} +{"ref":"#% chance to Trigger Word of Fury on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率觸發狂怒之誓"},{"string":"擊中時觸發狂怒之誓","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3012437250"]}}} +{"ref":"#% chance to Trigger Word of Inferno on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率觸發煉獄之誓"},{"string":"擊殺時觸發煉獄之誓","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3901337328"]}}} +{"ref":"#% chance to Trigger Word of Ire when Hit","better":1,"matchers":[{"string":"被擊中時有 #% 機率觸發雷霆之誓"},{"string":"被擊中時觸發雷霆之誓","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2472584898"]}}} +{"ref":"#% chance to Trigger Word of Light when you take a Critical Strike","better":1,"matchers":[{"string":"當你被暴擊時有 #% 機率觸發光之誓"},{"string":"當你被暴擊時觸發光之誓","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3111060801"]}}} +{"ref":"#% chance to Trigger Word of Reflection when Hit","better":1,"matchers":[{"string":"被擊中時有 #% 機率觸發倒影之誓"},{"string":"被擊中時觸發倒影之誓","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2634094270"]}}} +{"ref":"#% chance to Trigger Word of Spite when Hit","better":1,"matchers":[{"string":"當被擊中時有 #% 機率觸發怨恨之誓"},{"string":"當被擊中時觸發怨恨之誓","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3992962185"]}}} +{"ref":"#% chance to Trigger Word of the Grave when your Skills or Minions Kill","better":1,"matchers":[{"string":"當你的技能或召喚物擊殺時,有 #% 機率觸發冰墓之誓"},{"string":"當你的技能或召喚物擊殺時,觸發冰墓之誓","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2527140156"]}}} +{"ref":"#% chance to Trigger Word of the Tempest on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率觸發風暴之誓"},{"string":"擊中時觸發風暴之誓","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3610104224"]}}} +{"ref":"#% chance to Trigger Word of Thunder on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率觸發雷電之誓"},{"string":"擊殺時觸發雷電之誓","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1350605126"]}}} +{"ref":"#% chance to Trigger Word of War on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 觸發戰爭之誓"},{"string":"擊殺時觸發戰爭之誓","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1906144841"]}}} +{"ref":"#% chance to Trigger Word of Winter when Hit","better":1,"matchers":[{"string":"被擊中時有 #% 機率觸發冬之誓"},{"string":"被擊中時觸發冬之誓","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1354248411"]}}} +{"ref":"#% chance to Unnerve Enemies for 4 seconds on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率使敵人膽怯 4 秒"},{"string":"擊中時使敵人膽怯 4 秒","value":100}],"trade":{"ids":{"explicit":["explicit.stat_763611529"],"implicit":["implicit.stat_763611529"],"fractured":["fractured.stat_763611529"],"scourge":["scourge.stat_763611529"]}}} +{"ref":"#% chance to Unnerve Enemies for 4 seconds on Hit with Spells","better":1,"matchers":[{"string":"法術擊中時有 #% 機率使敵人膽怯 4 秒"},{"string":"法術擊中時使敵人膽怯 4 秒","value":100}],"trade":{"ids":{"explicit":["explicit.stat_220991810"],"fractured":["fractured.stat_220991810"]}}} +{"ref":"#% chance when you Kill a Scorched Enemy to Burn Each surrounding\nEnemy for 4 seconds, dealing 8% of the Killed Enemy's Life as Fire Damage per second","better":1,"matchers":[{"string":"當你擊殺焦灼的敵人時,有 #% 機率燃燒附近每個敵人,\n持續 4 秒,每秒造成被擊殺敵人生命 8% 的火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3717165313"]}}} +{"ref":"#% chance when you pay a Skill's Cost to gain that much Mana","better":1,"matchers":[{"string":"當你付出技能消耗時,有 #% 機率獲得等量的魔力"}],"trade":{"ids":{"implicit":["implicit.stat_1915414884"]}}} +{"ref":"#% faster Restoration of Ward","better":1,"matchers":[{"string":"保護回復加速 #%"},{"string":"保護回復減緩 #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1130670241"],"fractured":["fractured.stat_1130670241"]}}} +{"ref":"#% faster start of Energy Shield Recharge","better":1,"matchers":[{"string":"比平常快 #% 開始充能能量護盾"},{"string":"比平常慢 #% 開始充能能量護盾","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1782086450"],"implicit":["implicit.stat_1782086450"],"fractured":["fractured.stat_1782086450"],"crafted":["crafted.stat_1782086450"]}}} +{"ref":"#% faster start of Energy Shield Recharge while affected by Discipline","better":1,"matchers":[{"string":"被紀律影響時,提前 #% 開始充能能量護盾"},{"string":"被紀律影響時,延後 #% 開始充能能量護盾","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1016185292"]}}} +{"ref":"#% Global chance to Blind Enemies on hit","better":1,"matchers":[{"string":"擊中時有 #% 機率導致敵人致盲"}],"trade":{"ids":{"explicit":["explicit.stat_2221570601"],"implicit":["implicit.stat_2221570601"],"fractured":["fractured.stat_2221570601"],"scourge":["scourge.stat_2221570601"]}}} +{"ref":"#% increased Absolution Cast Speed","better":1,"matchers":[{"string":"增加 #% 赦免施放速度"},{"string":"減少 #% 赦免施放速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2558170600"]}}} +{"ref":"#% increased Accuracy Rating if you've dealt a Critical Strike in the past 8 seconds","better":1,"matchers":[{"string":"若你過去 8 秒有造成暴擊,增加 #% 命中值"},{"string":"若你過去 8 秒有造成暴擊,減少 #% 命中值","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1381557885"]}}} +{"ref":"#% increased Accuracy Rating per Frenzy Charge","better":1,"matchers":[{"string":"每個狂怒球增加 #% 命中值"},{"string":"每個狂怒球減少 #% 命中值","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3700381193"],"fractured":["fractured.stat_3700381193"]}}} +{"ref":"#% increased Accuracy Rating when on Low Life","better":1,"matchers":[{"string":"貧血時增加 #% 命中值"},{"string":"貧血時減少 #% 命中值","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_347697569"]}}} +{"ref":"#% increased Accuracy Rating while you have Onslaught","better":1,"matchers":[{"string":"你有猛攻時,增加 #% 命中值"},{"string":"你有猛攻時,減少 #% 命中值","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2593021351"]}}} +{"ref":"#% increased Accuracy Rating with Axes","better":1,"matchers":[{"string":"使用斧類武器時增加 #% 命中值"},{"string":"使用斧類武器時減少 #% 命中值","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2538120572"]}}} +{"ref":"#% increased Accuracy Rating with Bows","better":1,"matchers":[{"string":"使用弓類武器時增加 #% 命中值"},{"string":"使用弓類武器時減少 #% 命中值","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_169946467"]}}} +{"ref":"#% increased Accuracy Rating with Claws","better":1,"matchers":[{"string":"使用爪類武器時增加 #% 命中值"},{"string":"使用爪類武器時減少 #% 命中值","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1297965523"]}}} +{"ref":"#% increased Accuracy Rating with Daggers","better":1,"matchers":[{"string":"使用匕首類武器時增加 #% 命中值"},{"string":"使用匕首類武器時減少 #% 命中值","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2054715690"]}}} +{"ref":"#% increased Accuracy Rating with Maces or Sceptres","better":1,"matchers":[{"string":"錘和權杖增加 #% 命中值"},{"string":"錘和權杖減少 #% 命中值","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3208450870"]}}} +{"ref":"#% increased Accuracy Rating with Staves","better":1,"matchers":[{"string":"使用長杖類武器時增加 #% 命中值"},{"string":"使用長杖類武器時減少 #% 命中值","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1617235962"]}}} +{"ref":"#% increased Accuracy Rating with Swords","better":1,"matchers":[{"string":"使用劍類武器時增加 #% 命中值"},{"string":"使用劍類武器時減少 #% 命中值","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2090868905"]}}} +{"ref":"#% increased Accuracy Rating with Wands","better":1,"matchers":[{"string":"使用法杖類武器時增加 #% 命中值"},{"string":"使用法杖類武器時減少 #% 命中值","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2150183156"]}}} +{"ref":"#% increased Action Speed","better":1,"matchers":[{"string":"減少 #% 行動速度"},{"string":"增加 #% 行動速度","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2878959938"]},"inverted":true}} +{"ref":"#% increased Action Speed while affected by Haste","better":1,"matchers":[{"string":"被迅捷影響時,增加 #% 行動速度"},{"string":"被迅捷影響時,減少 #% 行動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1960426186"]}}} +{"ref":"#% increased Agility Experience gained","better":1,"matchers":[{"string":"增加 #% 獲得靈敏經驗值"}],"trade":{"ids":{"explicit":["explicit.stat_245401622"],"fractured":["fractured.stat_245401622"]}}} +{"ref":"#% increased Agility speed","better":1,"matchers":[{"string":"增加 #% 靈巧速度"},{"string":"減少 #% 靈巧速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3422638915"],"implicit":["implicit.stat_3422638915"],"fractured":["fractured.stat_3422638915"]}}} +{"ref":"#% increased Alchemist's Mark Curse Effect","better":1,"matchers":[{"string":"增加 #% 煉金術士印記的詛咒效果"},{"string":"減少 #% 煉金術士印記的詛咒效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3583185303"]}}} +{"ref":"#% increased Ambush Cooldown Recovery Rate","better":1,"matchers":[{"string":"增加 #% 伏擊冷卻時間恢復速度"},{"string":"減少 #% 伏擊冷卻時間恢復速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2977107166"]}}} +{"ref":"#% increased Amount Recovered","better":1,"matchers":[{"string":"增加 #% 恢復量"},{"string":"減少 #% 恢復量","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_700317374"],"fractured":["fractured.stat_700317374"]}}} +{"ref":"#% increased Ancestral Protector Totem Placement Speed","better":1,"matchers":[{"string":"增加 #% 先祖衛士圖騰放置速度"},{"string":"減少 #% 先祖衛士圖騰放置速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_592861938"]}}} +{"ref":"#% increased Ancestral Warchief Totem Area of Effect","better":1,"matchers":[{"string":"增加 #% 先祖戰士長圖騰範圍效果"},{"string":"減少 #% 先祖戰士長圖騰範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3320271130"]}}} +{"ref":"#% increased Ancestral Warchief Totem Damage","better":1,"matchers":[{"string":"增加 #% 先祖戰士長圖騰傷害"},{"string":"減少 #% 先祖戰士長圖騰傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_78239163"]}}} +{"ref":"#% increased Animate Weapon Duration","better":1,"matchers":[{"string":"增加 #% 幻化武器時間"},{"string":"減少 #% 幻化武器時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3338074370"]}}} +{"ref":"#% increased Arc Damage","better":1,"matchers":[{"string":"增加 #% 電弧傷害"},{"string":"減少 #% 電弧傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2740567252"]}}} +{"ref":"#% increased Arctic Armour Buff Effect","better":1,"matchers":[{"string":"增加 #% 極地裝甲增益效果"},{"string":"減少 #% 極地裝甲增益效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3995612171"],"implicit":["implicit.stat_3995612171"],"enchant":["enchant.stat_3995612171"]}}} +{"ref":"#% increased Area Damage","better":1,"matchers":[{"string":"增加 #% 範圍傷害"},{"string":"減少 #% 範圍傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4251717817"],"implicit":["implicit.stat_4251717817"],"fractured":["fractured.stat_4251717817"],"scourge":["scourge.stat_4251717817"],"crafted":["crafted.stat_4251717817"]}}} +{"ref":"#% increased Area Damage per 10 Devotion","better":1,"matchers":[{"string":"每 10 個奉獻增加 #% 範圍傷害"},{"string":"每 10 個奉獻減少 #% 範圍傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1724614884"]}}} +{"ref":"#% increased Area of Effect","better":1,"matchers":[{"string":"增加 #% 範圍效果"},{"string":"減少 #% 範圍效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_280731498"],"implicit":["implicit.stat_280731498"],"fractured":["fractured.stat_280731498"],"scourge":["scourge.stat_280731498"],"crafted":["crafted.stat_280731498"]}}} +{"ref":"#% increased Area of Effect during Effect","better":1,"matchers":[{"string":"效果持續時間,增加 #% 範圍效果"}],"trade":{"ids":{"explicit":["explicit.stat_215882879"]}}} +{"ref":"#% increased Area of Effect for Attacks","better":1,"matchers":[{"string":"增加攻擊技能 #% 範圍效果"},{"string":"减少攻擊技能 #% 範圍效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1840985759"]}}} +{"ref":"#% increased Area of Effect for Skills used by Totems","better":1,"matchers":[{"string":"增加 #% 圖騰使用的技能範圍"}],"trade":{"ids":{"explicit":["explicit.stat_869436347"]}}} +{"ref":"#% increased Area of Effect if you have Stunned an Enemy Recently","better":1,"matchers":[{"string":"若近期有暈眩敵人,增加 #% 範圍效果"},{"string":"若近期有暈眩敵人,減少 #% 範圍效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_430248187"],"implicit":["implicit.stat_430248187"]}}} +{"ref":"#% increased Area of Effect if you've dealt a Culling Strike Recently","better":1,"matchers":[{"string":"若你近期有造成撲殺,增加 #% 範圍效果"},{"string":"若你近期有造成撲殺,減少 #% 範圍效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1785568076"]}}} +{"ref":"#% increased Area of Effect if you've Killed Recently","better":1,"matchers":[{"string":"若你近期有擊殺,增加 #% 範圍效果"},{"string":"若你近期有擊殺,減少 #% 範圍效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3481736410"]}}} +{"ref":"#% increased Area of Effect of Aura Skills","better":1,"matchers":[{"string":"增加光環技能 #% 範圍效果"},{"string":"減少光環技能 #% 範圍效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_895264825"],"implicit":["implicit.stat_895264825"],"enchant":["enchant.stat_895264825"]}}} +{"ref":"#% increased Area of Effect of Hex Skills","better":1,"matchers":[{"string":"增加 #% 咒術技能的範圍效果"},{"string":"減少 #% 咒術技能的範圍效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_153777645"],"fractured":["fractured.stat_153777645"]}}} +{"ref":"#% increased Area of Effect per 20 Intelligence","better":1,"matchers":[{"string":"每 20 點智慧增加 #% 範圍效果"},{"string":"每 20 點智慧減少 #% 範圍效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1307972622"]}}} +{"ref":"#% increased Area of Effect per 25 Rampage Kills","better":1,"matchers":[{"string":"每 25 層暴怒擊殺增加 #% 範圍效果"},{"string":"每 25 層暴怒擊殺減少 #% 範圍效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4119032338"]}}} +{"ref":"#% increased Area of Effect per 50 Strength","better":1,"matchers":[{"string":"每 50 點力量增加 #% 範圍效果"},{"string":"每 50 點力量減少 #% 範圍效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2611023406"],"fractured":["fractured.stat_2611023406"]}}} +{"ref":"#% increased Area of Effect per Endurance Charge","better":1,"matchers":[{"string":"每顆耐力球增加 #% 範圍效果"},{"string":"每顆耐力球減少 #% 範圍效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2448279015"]}}} +{"ref":"#% increased Area of Effect per Enemy killed recently, up to 50%","better":1,"matchers":[{"string":"近期每個擊殺敵人增加 #% 範圍效果,最多 50%"},{"string":"近期每個擊殺敵人減少 #% 範圍效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4070157876"]}}} +{"ref":"#% increased Area of Effect per Power Charge","better":1,"matchers":[{"string":"每顆暴擊球增加 #% 範圍效果"}],"trade":{"ids":{"explicit":["explicit.stat_3094501804"]}}} +{"ref":"#% increased Area of Effect while in Sand Stance","better":1,"matchers":[{"string":"沙戮姿態時增加 #% 範圍效果"},{"string":"沙戮姿態時減少 #% 範圍效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1647746883"]}}} +{"ref":"#% increased Area of Effect while Unarmed","better":1,"matchers":[{"string":"空手時增加 #% 範圍效果"},{"string":"空手時減少 #% 範圍效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2216127021"]}}} +{"ref":"#% increased Area of Effect while you have Arcane Surge","better":1,"matchers":[{"string":"當你有秘能波動時增加 #% 範圍效果"},{"string":"當你有秘能波動時減少 #% 範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1406617410"]}}} +{"ref":"#% increased Armour","better":1,"matchers":[{"string":"增加 #% 護甲"},{"string":"減少 #% 護甲","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1062208444","explicit.stat_2866361420"],"implicit":["implicit.stat_1062208444","implicit.stat_2866361420"],"fractured":["fractured.stat_1062208444","fractured.stat_2866361420"],"crafted":["crafted.stat_1062208444","crafted.stat_2866361420"]}}} +{"ref":"#% increased Armour against Projectiles","better":1,"matchers":[{"string":"對投射物的攻擊增加 #% 護甲"},{"string":"對投射物的攻擊減少 #% 護甲","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_706246936"]}}} +{"ref":"#% increased Armour and Energy Shield","better":1,"matchers":[{"string":"增加 #% 護甲與能量護盾"},{"string":"減少 #% 護甲與能量護盾","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3321629045"],"fractured":["fractured.stat_3321629045"],"crafted":["crafted.stat_3321629045"]}}} +{"ref":"#% increased Armour and Evasion","better":1,"matchers":[{"string":"增加 #% 護甲與閃避"},{"string":"減少 #% 護甲與閃避","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2451402625"],"fractured":["fractured.stat_2451402625"],"crafted":["crafted.stat_2451402625"]}}} +{"ref":"#% increased Armour during Effect","better":1,"matchers":[{"string":"效果持續時間,增加 #% 護甲"}],"trade":{"ids":{"explicit":["explicit.stat_1693613464"],"fractured":["fractured.stat_1693613464"]}}} +{"ref":"#% increased Armour from Equipped Helmet and Gloves","better":1,"matchers":[{"string":"增加 #% 裝備的頭盔和手套的護甲"},{"string":"減少 #% 裝備的頭盔和手套的護甲","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_791154540"]}}} +{"ref":"#% increased Armour if you haven't Killed Recently","better":1,"matchers":[{"string":"若近期沒有擊殺,增加 #% 護甲"},{"string":"若近期沒有擊殺,減少 #% 護甲","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2424133568"],"fractured":["fractured.stat_2424133568"]}}} +{"ref":"#% increased Armour per 50 Reserved Mana","better":1,"matchers":[{"string":"每 50 保留魔力,增加 #% 護甲"}],"trade":{"ids":{"explicit":["explicit.stat_2574337583"]}}} +{"ref":"#% increased Armour per 50 Strength","better":1,"matchers":[{"string":"每 50 力量增加 #% 護甲"},{"string":"每 50 力量減少 #% 護甲","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3621706946"]}}} +{"ref":"#% increased Armour per Endurance Charge","better":1,"matchers":[{"string":"每顆耐力球增加 #% 護甲"}],"trade":{"ids":{"explicit":["explicit.stat_1447080724"]}}} +{"ref":"#% increased Armour while Bleeding","better":1,"matchers":[{"string":"流血時增加 #% 護甲"}],"trade":{"ids":{"explicit":["explicit.stat_2466912132"]}}} +{"ref":"#% increased Armour while not Ignited, Frozen or Shocked","better":1,"matchers":[{"string":"當沒被點燃、冰凍、感電時增加 #% 護甲"},{"string":"當沒被點燃、冰凍、感電時減少 #% 護甲","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1164767410"]}}} +{"ref":"#% increased Armour while stationary","better":1,"matchers":[{"string":"站立時,增加 #% 護甲"},{"string":"站立時,減少 #% 護甲","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3184053924"]}}} +{"ref":"#% increased Armour, Evasion and Energy Shield","better":1,"matchers":[{"string":"增加 #% 護甲、閃避與能量護盾"},{"string":"減少 #% 護甲、閃避與能量護盾","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3523867985"],"fractured":["fractured.stat_3523867985"],"scourge":["scourge.stat_3523867985"],"crafted":["crafted.stat_3523867985"]}}} +{"ref":"#% increased Aspect of the Avian Buff Effect","better":1,"matchers":[{"string":"增加 #% 飛羽祝福效果"},{"string":"減少#% 飛羽祝福效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1746347097"]}}} +{"ref":"#% increased Aspect of the Spider Area of Effect","better":1,"matchers":[{"string":"增加 #% 毒蛛祝福的範圍效果"},{"string":"減少 #% 毒蛛祝福的範圍效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3686780108"]}}} +{"ref":"#% increased Aspect of the Spider Debuff Duration","better":1,"matchers":[{"string":"增加毒蛛祝福 #% 持續時間"},{"string":"減少毒蛛祝福 #% 持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_332854027"]}}} +{"ref":"#% increased Assassin's Mark Curse Effect","better":1,"matchers":[{"string":"增加 #% 刺客印記的詛咒效果"},{"string":"減少 #% 刺客印記的詛咒效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1961975107"]}}} +{"ref":"#% increased Attack and Cast Speed","better":1,"matchers":[{"string":"增加 #% 攻擊與施放速度"},{"string":"減少 #% 攻擊與施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2672805335"],"implicit":["implicit.stat_2672805335"],"fractured":["fractured.stat_2672805335"],"crafted":["crafted.stat_2672805335"]}}} +{"ref":"#% increased Attack and Cast Speed during Onslaught","better":1,"matchers":[{"string":"猛攻持續時間內,增加 #% 攻擊和施放速度"},{"string":"猛攻持續時間內,減少 #% 攻擊和施放速度","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2320884914"]}}} +{"ref":"#% increased Attack and Cast Speed if Corrupted","better":1,"matchers":[{"string":"若已汙染增加 #% 攻擊和施放速度"},{"string":"若已汙染減少 #% 攻擊和施放速度","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_26867112"]}}} +{"ref":"#% increased Attack and Cast Speed if you haven't been Hit Recently","better":1,"matchers":[{"string":"若你近期沒有被擊中,增加 #% 攻擊和施放速度"},{"string":"若你近期沒有被擊中,減少 #% 攻擊和施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_223937937"]}}} +{"ref":"#% increased Attack and Cast Speed if you've Hit an Enemy Recently","better":1,"matchers":[{"string":"若你近期有擊中敵人,增加 #% 攻擊和施放速度"},{"string":"若你近期有擊中敵人,減少 #% 攻擊和施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1483753325"]}}} +{"ref":"#% increased Attack and Cast Speed if you've Killed Recently","better":1,"matchers":[{"string":"近期內你若有擊殺,增加 #% 攻擊和施放速度"}],"trade":{"ids":{"enchant":["enchant.stat_4135304575"]}}} +{"ref":"#% increased Attack and Cast Speed if you've used a Movement Skill Recently","better":1,"matchers":[{"string":"近期內你若有使用移動技能,增加 #% 攻擊和施放速度"},{"string":"近期內你若有使用移動技能,減少 #% 攻擊和施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2831922878"]}}} +{"ref":"#% increased Attack and Cast Speed per Endurance Charge","better":1,"matchers":[{"string":"每顆耐力球增加 #% 攻擊和施放速度"},{"string":"每顆耐力球減少 #% 攻擊和施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3618888098"]}}} +{"ref":"#% increased Attack and Cast Speed per Power Charge","better":1,"matchers":[{"string":"每顆暴擊球增加 #% 攻擊和施放速度"},{"string":"每顆暴擊球減少 #% 攻擊和施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_987588151"]}}} +{"ref":"#% increased Attack and Cast Speed per Summoned Raging Spirit","better":1,"matchers":[{"string":"每隻召喚憤怒狂靈增加 #% 攻擊和施放速度"},{"string":"每隻召喚憤怒狂靈減少 #% 攻擊和施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3133579934"]}}} +{"ref":"#% increased Attack and Cast Speed while at maximum Fortification","better":1,"matchers":[{"string":"達到最大護體時,增加 #% 攻擊和施放速度"},{"string":"達到最大護體時,減少 #% 攻擊和施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1473444150"]}}} +{"ref":"#% increased Attack and Cast Speed while Focused","better":1,"matchers":[{"string":"專注時增加 #% 攻擊和施放速度"},{"string":"專注時減少 #% 攻擊和施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2628163981"],"fractured":["fractured.stat_2628163981"],"crafted":["crafted.stat_2628163981"]}}} +{"ref":"#% increased Attack and Cast Speed while Physical Aegis is depleted","better":1,"matchers":[{"string":"當物理聖盾被耗盡時,增加 #% 攻擊和施放速度"},{"string":"當物理聖盾被耗盡時,減少 #% 攻擊和施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_232331266"]}}} +{"ref":"#% increased Attack and Movement Speed while you have a Bestial Minion","better":1,"matchers":[{"string":"你有凶猛的召喚物時,增加 #% 攻擊速度和移動速度"}],"trade":{"ids":{"explicit":["explicit.stat_3597737983"]}}} +{"ref":"#% increased Attack and Movement Speed with Her Blessing","better":1,"matchers":[{"string":"獲得她的祝福時增加 #% 攻擊速度和移動速度"},{"string":"獲得她的祝福時減少 #% 攻擊速度和移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2968804751"]}}} +{"ref":"#% increased Attack Critical Strike Chance per 200 Accuracy Rating","better":1,"matchers":[{"string":"每 200 點命中值增加 #% 攻擊暴擊率"},{"string":"每 200 點命中值減少 #% 攻擊暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2196695640"]}}} +{"ref":"#% increased Attack Critical Strike Chance while Dual Wielding","better":1,"matchers":[{"string":"雙持時增加 #% 攻擊暴擊率"},{"string":"雙持時減少 #% 攻擊暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3702513529"],"fractured":["fractured.stat_3702513529"]}}} +{"ref":"#% increased Attack Damage","better":1,"matchers":[{"string":"增加 #% 攻擊傷害"},{"string":"減少 #% 攻擊傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2843214518"],"implicit":["implicit.stat_2843214518"],"fractured":["fractured.stat_2843214518"]}}} +{"ref":"#% increased Attack Damage against Bleeding Enemies","better":1,"matchers":[{"string":"增加對流血中敵人 #% 攻擊傷害"},{"string":"減少對流血中敵人 #% 攻擊傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3944782785"],"implicit":["implicit.stat_3944782785"]}}} +{"ref":"#% increased Attack Damage for each Map Item Modifier affecting the Area","better":1,"matchers":[{"string":"每個影響該地區地圖道具的詞綴,增加 #% 攻擊傷害"}],"trade":{"ids":{"explicit":["explicit.stat_698336758"]}}} +{"ref":"#% increased Attack Damage if Corrupted","better":1,"matchers":[{"string":"若已汙染增加 #% 攻擊傷害"},{"string":"若已汙染減少 #% 攻擊傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2347923784"]}}} +{"ref":"#% increased Attack Damage if your other Ring is a Shaper Item","better":1,"matchers":[{"string":"若另一個戒指為塑者之物,增加 #% 攻擊傷害"},{"string":"若另一個戒指為塑者之物,減少 #% 攻擊傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1555962658"]}}} +{"ref":"#% increased Attack Damage per 450 Armour","better":1,"matchers":[{"string":"每 450 護甲增加 #% 攻擊傷害"}],"trade":{"ids":{"explicit":["explicit.stat_192842973"]}}} +{"ref":"#% increased Attack Damage per 450 Evasion Rating","better":1,"matchers":[{"string":"每 450 閃避值增加 #% 攻擊傷害"},{"string":"每 450 閃避值減少加 #% 攻擊傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_93696421"]}}} +{"ref":"#% increased Attack Damage per 500 Maximum Mana","better":1,"matchers":[{"string":"每 500 魔力增加 #% 攻擊傷害"},{"string":"每 500 魔力減少 #% 攻擊傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4134865890"]}}} +{"ref":"#% increased Attack Damage while affected by Precision","better":1,"matchers":[{"string":"被精準影響時,增加 #% 攻擊傷害"},{"string":"被精準影響時,減少 #% 攻擊傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2048747572"]}}} +{"ref":"#% increased Attack Damage while Dual Wielding","better":1,"matchers":[{"string":"雙持時增加 #% 攻擊傷害"},{"string":"雙持時減少 #% 攻擊傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_444174528"],"fractured":["fractured.stat_444174528"]}}} +{"ref":"#% increased Attack Damage while holding a Shield","better":1,"matchers":[{"string":"持盾時增加 #% 攻擊傷害"},{"string":"持盾時減少 #% 攻擊傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1393393937"],"fractured":["fractured.stat_1393393937"]}}} +{"ref":"#% increased Attack Damage with Main Hand","better":1,"matchers":[{"string":"使用主手時增加 #% 攻擊傷害"},{"string":"使用主手時減少 #% 攻擊傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2696701853"]}}} +{"ref":"#% increased Attack Damage with Off Hand","better":1,"matchers":[{"string":"使用副手時增加 #% 攻擊傷害"},{"string":"使用副手時減少 #% 攻擊傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2924279089"]}}} +{"ref":"#% increased Attack Speed","better":1,"matchers":[{"string":"增加 #% 攻擊速度"},{"string":"減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_210067635","explicit.stat_681332047"],"implicit":["implicit.stat_210067635","implicit.stat_681332047"],"fractured":["fractured.stat_210067635","fractured.stat_681332047"],"enchant":["enchant.stat_210067635"],"scourge":["scourge.stat_681332047"],"crafted":["crafted.stat_210067635","crafted.stat_681332047"]}}} +{"ref":"#% increased Attack Speed during any Flask Effect","better":1,"matchers":[{"string":"任何藥劑效果持續時間內,增加 #% 攻擊速度"},{"string":"任何藥劑效果持續時間內,減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1365052901"],"implicit":["implicit.stat_1365052901"],"fractured":["fractured.stat_1365052901"]}}} +{"ref":"#% increased Attack Speed during Effect","better":1,"matchers":[{"string":"效果持續時間,增加 #% 攻擊速度"},{"string":"效果持續時間,減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_968369591"],"fractured":["fractured.stat_968369591"]}}} +{"ref":"#% increased Attack Speed for each Map Item Modifier affecting the Area","better":1,"matchers":[{"string":"每個影響該地區地圖道具的詞綴,增加 #% 攻擊速度"}],"trade":{"ids":{"explicit":["explicit.stat_2025297472"]}}} +{"ref":"#% increased Attack Speed if you haven't Cast Dash recently","better":1,"matchers":[{"string":"若你近期沒有施放幻步,增加 #% 攻擊速度"},{"string":"若你近期沒有施放幻步,減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1003608257"]}}} +{"ref":"#% increased Attack Speed if you haven't gained a Frenzy Charge Recently","better":1,"matchers":[{"string":"若你近期沒有獲得狂怒球,增加 #% 攻擊速度"},{"string":"若你近期沒有獲得狂怒球,減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_749465463"]}}} +{"ref":"#% increased Attack Speed if you've been Hit Recently","better":1,"matchers":[{"string":"若你近期有被擊中,增加 #% 攻擊速度"},{"string":"若你近期有被擊中,減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4137521191"],"fractured":["fractured.stat_4137521191"]}}} +{"ref":"#% increased Attack Speed if you've changed Stance Recently","better":1,"matchers":[{"string":"若你近期有切換姿態,增加 #% 攻擊速度"},{"string":"若你近期有切換姿態,減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2188905761"]}}} +{"ref":"#% increased Attack Speed if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"若近期有造成暴擊,增加 #% 攻擊速度"},{"string":"若近期有造成暴擊,減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1585344030"],"fractured":["fractured.stat_1585344030"]}}} +{"ref":"#% increased Attack Speed if you've Killed Recently","better":1,"matchers":[{"string":"若你近期有擊殺,增加 #% 攻擊速度"},{"string":"若你近期有擊殺,減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1507059769"],"fractured":["fractured.stat_1507059769"]}}} +{"ref":"#% increased Attack Speed if you've taken a Savage Hit Recently","better":1,"matchers":[{"string":"近期內你若受到了殘暴打擊,增加 #% 攻擊速度"}],"trade":{"ids":{"explicit":["explicit.stat_3842406602"]}}} +{"ref":"#% increased Attack Speed per 10 Dexterity","better":1,"matchers":[{"string":"每 10 敏捷增加 #% 攻擊速度"},{"string":"每 10 敏捷減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_889691035"]}}} +{"ref":"#% increased Attack Speed per 25 Dexterity","better":1,"matchers":[{"string":"每 25 點敏捷增加 #% 攻擊速度"}],"trade":{"ids":{"explicit":["explicit.stat_2241560081"],"fractured":["fractured.stat_2241560081"]}}} +{"ref":"#% increased Attack Speed per 8% Quality","better":1,"matchers":[{"string":"每 8% 品質增加 #% 攻擊速度"}],"trade":{"ids":{"enchant":["enchant.stat_3331111689"]}}} +{"ref":"#% increased Attack Speed per Fortification","better":1,"matchers":[{"string":"每層護體增加 #% 攻擊速度"}],"trade":{"ids":{"explicit":["explicit.stat_1039149869"]}}} +{"ref":"#% increased Attack Speed per Frenzy Charge","better":1,"matchers":[{"string":"每個狂怒球增加 #% 攻擊速度"},{"string":"每個狂怒球減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3548561213"]}}} +{"ref":"#% increased Attack Speed when on Full Life","better":1,"matchers":[{"string":"滿血時增加 #% 攻擊速度"},{"string":"滿血時減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4268321763"]}}} +{"ref":"#% increased Attack Speed when on Low Life","better":1,"matchers":[{"string":"貧血時增加 #% 攻擊速度"},{"string":"貧血時減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1921572790"]}}} +{"ref":"#% increased Attack Speed while a Rare or Unique Enemy is Nearby","better":1,"matchers":[{"string":"當附近有稀有或傳奇敵人時,增加 #% 攻擊速度"},{"string":"當附近有稀有或傳奇敵人時,減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_314741699"],"fractured":["fractured.stat_314741699"],"crafted":["crafted.stat_314741699"]}}} +{"ref":"#% increased Attack Speed while affected by Precision","better":1,"matchers":[{"string":"被精準影響時,增加 #% 攻擊速度"},{"string":"被精準影響時,減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3375743050"]}}} +{"ref":"#% increased Attack Speed while Chilled","better":1,"matchers":[{"string":"被冰緩時增加 #% 攻擊速度"},{"string":"被冰緩時減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3935294261"]}}} +{"ref":"#% increased Attack Speed while Dual Wielding","better":1,"matchers":[{"string":"雙持武器時增加 #% 攻擊速度"},{"string":"雙持武器時減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4249220643"],"fractured":["fractured.stat_4249220643"]}}} +{"ref":"#% increased Attack Speed while Fortified","better":1,"matchers":[{"string":"護體時增加 #% 攻擊速度"},{"string":"護體時減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_122450405"]}}} +{"ref":"#% increased Attack Speed while holding a Shield","better":1,"matchers":[{"string":"持盾時增加 #% 攻擊速度"},{"string":"持盾時減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3805075944"],"fractured":["fractured.stat_3805075944"]}}} +{"ref":"#% increased Attack Speed while Ignited","better":1,"matchers":[{"string":"被點燃時增加 #% 攻擊速度"},{"string":"被點燃時減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2047819517"]}}} +{"ref":"#% increased Attack Speed while not on Low Mana","better":1,"matchers":[{"string":"不是瀕魔時,增加 #% 攻擊速度"},{"string":"不是瀕魔時,減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_779663446"]}}} +{"ref":"#% increased Attack Speed while Phasing","better":1,"matchers":[{"string":"迷蹤時增加 #% 攻擊速度"},{"string":"迷蹤時減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2752264922"]}}} +{"ref":"#% increased Attack Speed with Axes","better":1,"matchers":[{"string":"使用斧類武器時增加 #% 攻擊速度"},{"string":"使用斧類武器時減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3550868361"],"implicit":["implicit.stat_3550868361"],"fractured":["fractured.stat_3550868361"]}}} +{"ref":"#% increased Attack Speed with Bows","better":1,"matchers":[{"string":"使用弓類武器時增加 #% 攻擊速度"},{"string":"使用弓類武器時減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3759735052"],"implicit":["implicit.stat_3759735052"],"fractured":["fractured.stat_3759735052"]}}} +{"ref":"#% increased Attack Speed with Claws","better":1,"matchers":[{"string":"使用爪類武器時增加 #% 攻擊速度"},{"string":"使用爪類武器時減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1421645223"],"implicit":["implicit.stat_1421645223"],"fractured":["fractured.stat_1421645223"]}}} +{"ref":"#% increased Attack Speed with Daggers","better":1,"matchers":[{"string":"使用匕首類武器時增加 #% 攻擊速度"},{"string":"使用匕首類武器時減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2538566497"],"implicit":["implicit.stat_2538566497"],"fractured":["fractured.stat_2538566497"]}}} +{"ref":"#% increased Attack Speed with Maces or Sceptres","better":1,"matchers":[{"string":"錘和權杖增加 #% 攻擊速度"},{"string":"錘和權杖減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2515515064"],"implicit":["implicit.stat_2515515064"],"fractured":["fractured.stat_2515515064"]}}} +{"ref":"#% increased Attack Speed with Movement Skills","better":1,"matchers":[{"string":"移動技能增加 #% 攻擊速度"},{"string":"移動技能減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3683134121"]}}} +{"ref":"#% increased Attack Speed with One Handed Melee Weapons","better":1,"matchers":[{"string":"使用單手近戰武器時增加 #% 攻擊速度"},{"string":"使用單手近戰武器時減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1813451228"],"fractured":["fractured.stat_1813451228"]}}} +{"ref":"#% increased Attack Speed with Snipe","better":1,"matchers":[{"string":"增加 #% 狙擊的攻擊速度"},{"string":"減少 #% 狙擊的攻擊速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2513745555"]}}} +{"ref":"#% increased Attack Speed with Staves","better":1,"matchers":[{"string":"使用長杖類武器時增加 #% 攻擊速度"},{"string":"使用長杖類武器時減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1394963553"],"implicit":["implicit.stat_1394963553"],"fractured":["fractured.stat_1394963553"]}}} +{"ref":"#% increased Attack Speed with Swords","better":1,"matchers":[{"string":"使用劍類武器時增加 #% 攻擊速度"},{"string":"使用劍類武器時減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3293699237"],"implicit":["implicit.stat_3293699237"],"fractured":["fractured.stat_3293699237"]}}} +{"ref":"#% increased Attack Speed with Two Handed Melee Weapons","better":1,"matchers":[{"string":"使用雙手近戰武器時增加 #% 攻擊速度"},{"string":"使用雙手近戰武器時減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1917910910"],"fractured":["fractured.stat_1917910910"]}}} +{"ref":"#% increased Attack Speed with Wands","better":1,"matchers":[{"string":"使用法杖類武器時增加 #% 攻擊速度"},{"string":"使用法杖類武器時減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3720627346"],"implicit":["implicit.stat_3720627346"],"fractured":["fractured.stat_3720627346"]}}} +{"ref":"#% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes","better":1,"matchers":[{"string":"當你沒有霸體時,增加 #% 攻擊、施放和移動速度"},{"string":"當你沒有霸體時,減少 #% 攻擊、施放和移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3476327198"]}}} +{"ref":"#% increased Attack, Cast and Movement Speed while you have Onslaught","better":1,"matchers":[{"string":"你有猛攻時,增加 #% 攻擊、施放和移動速度"},{"string":"你有猛攻時,減少 #% 攻擊、施放和移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_879520319"]}}} +{"ref":"#% increased Attribute Requirements","better":-1,"matchers":[{"string":"增加 #% 能力值需求"},{"string":"減少 #% 能力值需求","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3639275092"],"fractured":["fractured.stat_3639275092"],"enchant":["enchant.stat_3639275092"],"scourge":["scourge.stat_3639275092"]}}} +{"ref":"#% increased Attributes","better":1,"matchers":[{"string":"增加 #% 所有屬性"},{"string":"減少 #% 所有屬性","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3143208761"],"implicit":["implicit.stat_3143208761"],"fractured":["fractured.stat_3143208761"],"crafted":["crafted.stat_3143208761"]}}} +{"ref":"#% increased Ball Lightning Area of Effect","better":1,"matchers":[{"string":"增加 #% 天雷之珠範圍效果"},{"string":"減少 #% 天雷之珠範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_788307702"]}}} +{"ref":"#% increased Ball Lightning Damage","better":1,"matchers":[{"string":"增加 #% 天雷之珠傷害"},{"string":"減少 #% 天雷之珠傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3152812191"]}}} +{"ref":"#% increased Barrage Attack Speed","better":1,"matchers":[{"string":"增加 #% 彈幕攻擊速度"},{"string":"減少 #% 彈幕攻擊速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2523298357"]}}} +{"ref":"#% increased Barrage Damage","better":1,"matchers":[{"string":"增加 #% 彈幕傷害"},{"string":"減少 #% 彈幕傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3685345485"]}}} +{"ref":"#% increased Battlemage's Cry Buff Effect","better":1,"matchers":[{"string":"增加 #% 戰法戰吼增益效果"},{"string":"減少 #% 戰法戰吼增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2426838124"],"enchant":["enchant.stat_2426838124"]}}} +{"ref":"#% increased Bear Trap Damage","better":1,"matchers":[{"string":"增加 #% 捕熊陷阱傷害"},{"string":"減少 #% 捕熊陷阱傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1877863115"]}}} +{"ref":"#% increased Blade Flurry Area of Effect","better":1,"matchers":[{"string":"增加 #% 刀鋒亂舞範圍效果"},{"string":"減少 #% 刀鋒亂舞範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2746213081"]}}} +{"ref":"#% increased Blade Flurry Damage","better":1,"matchers":[{"string":"增加 #% 刀鋒亂舞傷害"},{"string":"減少 #% 刀鋒亂舞傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_754797886"]}}} +{"ref":"#% increased Blade Trap Area of Effect","better":1,"matchers":[{"string":"增加 #% 刀鋒陷阱範圍效果"},{"string":"減少 #% 刀鋒陷阱範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1502095380"]}}} +{"ref":"#% increased Blade Trap Damage","better":1,"matchers":[{"string":"增加 #% 刀鋒陷阱傷害"},{"string":"減少 #% 刀鋒陷阱傷害e","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3676486210"]}}} +{"ref":"#% increased Blade Vortex Area of Effect","better":1,"matchers":[{"string":"增加 #% 飛刃風暴範圍效果"},{"string":"減少 #% 飛刃風暴範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2748553775"]}}} +{"ref":"#% increased Blade Vortex Duration","better":1,"matchers":[{"string":"增加 #% 飛刃風暴持續時間"},{"string":"減少 #% 飛刃風暴持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3024867180"]}}} +{"ref":"#% increased Blade Vortex Spell Damage","better":1,"matchers":[{"string":"增加 #% 飛刃風暴法術傷害"},{"string":"減少 #% 飛刃風暴法術傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4221797807"]}}} +{"ref":"#% increased Bladefall Area of Effect","better":1,"matchers":[{"string":"增加 #% 刀雨範圍效果"},{"string":"減少 #% 刀雨範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2413715772"]}}} +{"ref":"#% increased Bladefall Critical Strike Chance","better":1,"matchers":[{"string":"增加 #% 虛空刀雨暴擊率"},{"string":"減少 #% 虛空刀雨暴擊率","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2833482311"]}}} +{"ref":"#% increased Bladefall Damage","better":1,"matchers":[{"string":"增加 #% 虛空刀雨傷害"},{"string":"減少 #% 虛空刀雨傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3069740560"]}}} +{"ref":"#% increased Bleed Duration on you","better":1,"matchers":[{"string":"增加 #% 你身上流血的持續時間"},{"string":"減少 #% 你身上流血的持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1692879867"],"implicit":["implicit.stat_1692879867"],"fractured":["fractured.stat_1692879867"]}}} +{"ref":"#% increased Bleeding Duration","better":1,"matchers":[{"string":"增加 #% 流血持續時間"},{"string":"減少 #% 流血持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1459321413"],"implicit":["implicit.stat_1459321413"],"fractured":["fractured.stat_1459321413"]}}} +{"ref":"#% increased Bleeding Duration per 12 Intelligence","better":1,"matchers":[{"string":"每 12 智慧增加 #% 流血持續時間"},{"string":"每 12 智慧減少 #% 流血持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1030835421"]}}} +{"ref":"#% increased Blight Area of Effect","better":1,"matchers":[{"string":"增加 #% 萎滅範圍效果"},{"string":"減少 #% 萎滅範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2511915418"]}}} +{"ref":"#% increased Blight Damage","better":1,"matchers":[{"string":"增加 #% 萎滅傷害"},{"string":"減少 #% 萎滅傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1623552446"]}}} +{"ref":"#% increased Blind Effect","better":1,"matchers":[{"string":"增加 #% 致盲效果"},{"string":"減少 #% 致盲效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1585769763"]}}} +{"ref":"#% increased Block and Stun Recovery during Effect","better":1,"matchers":[{"string":"效果持續時間,增加 #% 格擋及暈眩恢復"}],"trade":{"ids":{"explicit":["explicit.stat_3479987487"],"fractured":["fractured.stat_3479987487"]}}} +{"ref":"#% increased Block Recovery","better":1,"matchers":[{"string":"增加 #% 格擋恢復"},{"string":"減少 #% 格擋恢復","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_369183568"]}}} +{"ref":"#% increased Bodyswap Cast Speed","better":1,"matchers":[{"string":"增加屍術傳送 #% 施放速度"},{"string":"減少屍術傳送 #% 施放速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_397438226"]}}} +{"ref":"#% increased Bodyswap Damage","better":1,"matchers":[{"string":"增加 #% 屍術傳送傷害"},{"string":"減少 #% 屍術傳送傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_341054435"]}}} +{"ref":"#% increased Bone Offering Duration","better":1,"matchers":[{"string":"增加 #% 骸骨奉獻持續時間"},{"string":"減少 #% 骸骨奉獻持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1607493537"]}}} +{"ref":"#% increased Boneshatter Damage","better":1,"matchers":[{"string":"增加 #% 碎骨傷害"},{"string":"減少 #% 碎骨傷害e","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2384264970"]}}} +{"ref":"#% increased Boneshatter Stun Duration","better":1,"matchers":[{"string":"增加 #% 碎骨暈眩持續時間"},{"string":"減少 #% 碎骨暈眩持續時間n","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2742093846"]}}} +{"ref":"#% increased bonuses gained from Equipped Quiver","better":1,"matchers":[{"string":"增加 #% 你箭袋詞綴的效果"},{"string":"減少 #% 你箭袋詞綴的效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1200678966"]}}} +{"ref":"#% increased Brand Attachment range","better":1,"matchers":[{"string":"增加 #% 烙印附著距離"},{"string":"減少 #% 烙印附著距離","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4223377453"],"implicit":["implicit.stat_4223377453"],"fractured":["fractured.stat_4223377453"],"scourge":["scourge.stat_4223377453"],"crafted":["crafted.stat_4223377453"]}}} +{"ref":"#% increased Brand Damage","better":1,"matchers":[{"string":"增加 #% 烙印傷害"},{"string":"減少 #% 烙印傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1323465399"]}}} +{"ref":"#% increased Brand Damage per 10 Devotion","better":1,"matchers":[{"string":"每 10 奉獻增加 #% 烙印傷害"},{"string":"每 10 奉獻減少 #% 烙印傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2697019412"]}}} +{"ref":"#% increased Brute Force Experience gained","better":1,"matchers":[{"string":"增加 #% 獲得蠻力經驗值"},{"string":"減少 #% 獲得蠻力經驗值","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2377447058"],"fractured":["fractured.stat_2377447058"]}}} +{"ref":"#% increased Brute Force speed","better":1,"matchers":[{"string":"增加 #% 蠻力速度"},{"string":"減少 #% 蠻力速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3095027077"],"implicit":["implicit.stat_3095027077"]}}} +{"ref":"#% increased Burning Arrow Damage","better":1,"matchers":[{"string":"增加 #% 燃燒箭矢傷害"},{"string":"減少 #% 燃燒箭矢傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_696995312"]}}} +{"ref":"#% increased Burning Damage","better":1,"matchers":[{"string":"增加 #% 燃燒傷害"},{"string":"減少 #% 燃燒傷害","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_burning_damage"],"explicit":["explicit.stat_1175385867"],"implicit":["implicit.stat_1175385867"],"fractured":["fractured.stat_1175385867"]}}} +{"ref":"#% increased Burning Damage for each time you have Shocked a Non-Shocked Enemy Recently, up to a maximum of 120%","better":1,"matchers":[{"string":"近期每次你感電未被感電的敵人,增加 #% 燃燒傷害,最多 120%"},{"string":"近期每次你感電未被感電的敵人,減少 #% 燃燒傷害,最多 120%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3285748758"]}}} +{"ref":"#% increased Burning Damage if you've Ignited an Enemy Recently","better":1,"matchers":[{"string":"近期你若有點燃敵人,短時間内增加 #% 燃燒傷害"},{"string":"近期你若有點燃敵人,短時間内減少 #% 燃燒傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3919557483"]}}} +{"ref":"#% increased Cast Speed","better":1,"matchers":[{"string":"增加 #% 施放速度"},{"string":"減少 #% 施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2891184298"],"implicit":["implicit.stat_2891184298"],"fractured":["fractured.stat_2891184298"],"scourge":["scourge.stat_2891184298"],"crafted":["crafted.stat_2891184298"]}}} +{"ref":"#% increased Cast Speed during any Flask Effect","better":1,"matchers":[{"string":"在任何藥劑效果持續時間內,增加 #% 施放速度"},{"string":"在任何藥劑效果持續時間內,減少 #% 施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_252194507"],"implicit":["implicit.stat_252194507"],"fractured":["fractured.stat_252194507"]}}} +{"ref":"#% increased Cast Speed during Effect","better":1,"matchers":[{"string":"效果持續時間,增加 #% 施放速度"},{"string":"效果持續時間,減少 #% 施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3256116097"],"fractured":["fractured.stat_3256116097"]}}} +{"ref":"#% increased Cast Speed if a Minion has been Killed Recently","better":1,"matchers":[{"string":"若近期有召喚物被擊殺,增加 #% 施放速度"},{"string":"若近期有召喚物被擊殺,減少 #% 施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3110907148"],"fractured":["fractured.stat_3110907148"]}}} +{"ref":"#% increased Cast Speed if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"若近期有造成暴擊,增加 #% 施放速度"},{"string":"若近期有造成暴擊,減少 #% 施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1174076861"],"fractured":["fractured.stat_1174076861"]}}} +{"ref":"#% increased Cast Speed if you've Killed Recently","better":1,"matchers":[{"string":"若你近期有擊殺,增加 #% 施放速度"},{"string":"若你近期有擊殺,減少 #% 施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2072625596"]}}} +{"ref":"#% increased Cast Speed per Power Charge","better":1,"matchers":[{"string":"每個暴擊球增加 #% 施放速度"}],"trade":{"ids":{"explicit":["explicit.stat_1604393896"]}}} +{"ref":"#% increased Cast Speed while affected by Zealotry","better":1,"matchers":[{"string":"被狂熱影響時,增加 #% 施放速度"},{"string":"被狂熱影響時,減少 #% 施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2444534954"]}}} +{"ref":"#% increased Cast Speed while Chilled","better":1,"matchers":[{"string":"被冰緩時增加 #% 施放速度"},{"string":"被冰緩時減少 #% 施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_778552242"]}}} +{"ref":"#% increased Cast Speed while Dual Wielding","better":1,"matchers":[{"string":"雙持武器時增加 #% 施放速度"},{"string":"雙持武器時減少 #% 施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2382196858"],"implicit":["implicit.stat_2382196858"],"fractured":["fractured.stat_2382196858"]}}} +{"ref":"#% increased Cast Speed while holding a Shield","better":1,"matchers":[{"string":"持盾時增加 #% 施放速度"},{"string":"持盾時減少 #% 施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1612163368"],"implicit":["implicit.stat_1612163368"],"fractured":["fractured.stat_1612163368"]}}} +{"ref":"#% increased Cast Speed while Ignited","better":1,"matchers":[{"string":"被點燃時增加 #% 施放速度"},{"string":"被點燃時減少 #% 施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3660039923"]}}} +{"ref":"#% increased Cast Speed while wielding a Staff","better":1,"matchers":[{"string":"持長杖時增加 #% 施放速度"},{"string":"持長杖時減少 #% 施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2066542501"],"implicit":["implicit.stat_2066542501"],"fractured":["fractured.stat_2066542501"]}}} +{"ref":"#% increased Cast Speed with Cold Skills","better":1,"matchers":[{"string":"增加 #% 冰冷技能施放速度"},{"string":"減少 #% 冰冷技能施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_928238845"],"fractured":["fractured.stat_928238845"]}}} +{"ref":"#% increased Cast Speed with Fire Skills","better":1,"matchers":[{"string":"增加 #% 火焰技能施放速度"},{"string":"減少 #% 火焰技能施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1476643878"],"fractured":["fractured.stat_1476643878"]}}} +{"ref":"#% increased Cast Speed with Lightning Skills","better":1,"matchers":[{"string":"增加 #% 閃電技能施放速度"},{"string":"減少 #% 閃電技能施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1788635023"],"fractured":["fractured.stat_1788635023"]}}} +{"ref":"#% increased Caustic Arrow Area of Effect","better":1,"matchers":[{"string":"增加 #% 腐蝕箭矢範圍效果"},{"string":"減少 #% 腐蝕箭矢範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3854556792"]}}} +{"ref":"#% increased Caustic Arrow Damage","better":1,"matchers":[{"string":"增加 #% 腐蝕箭矢傷害"},{"string":"減少 #% 腐蝕箭矢傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1496334795"]}}} +{"ref":"#% increased Caustic Arrow Duration","better":1,"matchers":[{"string":"增加 #% 腐蝕箭矢持續時間"},{"string":"減少 #% 腐蝕箭矢持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_387490713"]}}} +{"ref":"#% increased chance to Avoid Resolve Loss from Enemy Melee Hits","better":1,"matchers":[{"string":"增加 #% 機率避免敵人擊中時失去決心"}],"trade":{"ids":{"explicit":["sanctum.stat_3134588943"]}}} +{"ref":"#% increased chance to Avoid Resolve Loss from Enemy Projectile Hits","better":1,"matchers":[{"string":"增加 #% 機率避免敵人投射物擊中時失去決心"}],"trade":{"ids":{"explicit":["sanctum.stat_1798691236"]}}} +{"ref":"#% increased Chance to Block","better":1,"matchers":[{"string":"增加 #% 格擋率"},{"string":"減少 #% 格擋率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2481353198"],"fractured":["fractured.stat_2481353198"],"crafted":["crafted.stat_2481353198"]}}} +{"ref":"#% increased Chaos Damage","better":1,"matchers":[{"string":"增加 #% 混沌傷害"},{"string":"減少 #% 混沌傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_736967255"],"implicit":["implicit.stat_736967255"],"fractured":["fractured.stat_736967255"],"scourge":["scourge.stat_736967255"],"crafted":["crafted.stat_736967255"]}}} +{"ref":"#% increased Chaos Damage over Time","better":1,"matchers":[{"string":"增加 #% 混沌持續傷害"},{"string":"減少 #% 混沌持續傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_601272515"],"fractured":["fractured.stat_601272515"]}}} +{"ref":"#% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius","better":1,"matchers":[{"string":"範圍內每配置 10 智慧增加 #% 混沌傷害"},{"string":"範圍內每配置 10 智慧減少 #% 混沌傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2582360791"]}}} +{"ref":"#% increased Chaos Damage per Level","better":1,"matchers":[{"string":"每等級增加 #% 混沌傷害"},{"string":"每等級減少 #% 混沌傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4084331136"]}}} +{"ref":"#% increased Chaos Damage while affected by Herald of Agony","better":1,"matchers":[{"string":"被苦痛之捷影響時,增加 #% 混沌傷害"},{"string":"被苦痛之捷影響時,減少 #% 混沌傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_739274558"]}}} +{"ref":"#% increased Chaos Damage with Attack Skills","better":1,"matchers":[{"string":"攻擊技能增加 #% 混沌傷害"},{"string":"攻擊技能減少 #% 混沌傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1959092146"]}}} +{"ref":"#% increased Chaos Damage with Spell Skills","better":1,"matchers":[{"string":"法術技能增加 #% 混沌傷害"},{"string":"法術技能減少 #% 混沌傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3761858151"]}}} +{"ref":"#% increased Character Size","better":1,"matchers":[{"string":"增加 #% 角色體型"},{"string":"減少 #% 角色體型","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1408638732"],"implicit":["implicit.stat_1408638732"]}}} +{"ref":"#% increased Charge Duration","better":1,"matchers":[{"string":"增加 #% 能量球持續時間"},{"string":"減少 #% 能量球持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2171629017"]}}} +{"ref":"#% increased Charge Recovery","better":1,"matchers":[{"string":"增加 #% 充能恢復"}],"trade":{"ids":{"explicit":["explicit.stat_3196823591"],"fractured":["fractured.stat_3196823591"],"enchant":["enchant.stat_3196823591"]}}} +{"ref":"#% increased Charged Dash Damage","better":1,"matchers":[{"string":"增加 #% 雷霆衝鋒傷害"},{"string":"減少 #% 雷霆衝鋒傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1265055278"]}}} +{"ref":"#% increased Charges gained by Other Flasks during Effect","better":1,"matchers":[{"string":"效果持續時間,增加 #% 其他藥劑獲得的充能"}],"trade":{"ids":{"explicit":["explicit.stat_1085359447"]}}} +{"ref":"#% increased Charges per use","better":-1,"matchers":[{"string":"每次使用增加 #% 充能"},{"string":"每次使用減少 #% 充能","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_388617051"],"fractured":["fractured.stat_388617051"],"enchant":["enchant.stat_388617051"]}}} +{"ref":"#% increased Chill Duration on Enemies","better":1,"matchers":[{"string":"增加 #% 敵人冰緩持續時間"},{"string":"減少 #% 敵人冰緩持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3485067555"],"implicit":["implicit.stat_3485067555"],"crafted":["crafted.stat_3485067555"]}}} +{"ref":"#% increased Chill Duration on Enemies when in Off Hand","better":1,"matchers":[{"string":"在副手增加 #% 對敵人冰緩持續時間"},{"string":"在副手減少 #% 對敵人冰緩持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4199402748"]}}} +{"ref":"#% increased Claw Physical Damage when on Low Life","better":1,"matchers":[{"string":"貧血時增加 #% 爪類武器物理傷害"},{"string":"貧血時減少 #% 爪類武器物理傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1081444608"]}}} +{"ref":"#% increased Cleave Area of Effect","better":1,"matchers":[{"string":"增加 #% 劈砍範圍"},{"string":"減少 #% 劈砍範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3172519570"]}}} +{"ref":"#% increased Cleave Attack Speed","better":1,"matchers":[{"string":"增加 #% 劈砍攻擊速度"},{"string":"減少 #% 劈砍攻擊速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3106577499"]}}} +{"ref":"#% increased Cleave Damage","better":1,"matchers":[{"string":"增加 #% 劈砍傷害"},{"string":"減少 #% 劈砍傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1359058534"]}}} +{"ref":"#% increased Cold Damage","better":1,"matchers":[{"string":"增加 #% 冰冷傷害"},{"string":"減少 #% 冰冷傷害","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_cold_damage"],"explicit":["explicit.stat_3291658075"],"implicit":["implicit.stat_3291658075"],"fractured":["fractured.stat_3291658075"],"scourge":["scourge.stat_3291658075"],"crafted":["crafted.stat_3291658075"]}}} +{"ref":"#% increased Cold Damage if you have used a Fire Skill Recently","better":1,"matchers":[{"string":"若近期有使用火焰技能 ,增加 #% 冰冷傷害"},{"string":"若近期有使用火焰技能 ,減少 #% 冰冷傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3612256591"]}}} +{"ref":"#% increased Cold Damage per 1% Cold Resistance above 75%","better":1,"matchers":[{"string":"每 1% 點超過 75% 的冰冷抗性,增加 #% 冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2517031897"]}}} +{"ref":"#% increased Cold Damage per 1% Missing Cold Resistance, up to a maximum of 300%","better":1,"matchers":[{"string":"每 1% 失去的冰冷抗性增加 #% 冰冷傷害,最多 300%"},{"string":"每 1% 失去的冰冷抗性減少 #% 冰冷傷害,最多 300%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2859664487"]}}} +{"ref":"#% increased Cold Damage per Frenzy Charge","better":1,"matchers":[{"string":"每顆狂怒球增加 #% 冰冷傷害"},{"string":"每顆狂怒球減少 #% 冰冷傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_329974315"]}}} +{"ref":"#% increased Cold Damage while affected by Hatred","better":1,"matchers":[{"string":"被憎恨影響時增加 #% 冰冷傷害"},{"string":"被憎恨影響時減少 #% 冰冷傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1413864591"]}}} +{"ref":"#% increased Cold Damage while affected by Herald of Ice","better":1,"matchers":[{"string":"被冰霜之捷影響時,增加 #% 冰冷傷害"},{"string":"被冰霜之捷影響時,減少 #% 冰冷傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1970606344"]}}} +{"ref":"#% increased Cold Damage while your Off Hand is empty","better":1,"matchers":[{"string":"未裝備副手時,增加 #% 冰冷傷害"},{"string":"未裝備副手時,減少 #% 冰冷傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3520048646"]}}} +{"ref":"#% increased Cold Damage with Attack Skills","better":1,"matchers":[{"string":"攻擊技能增加 #% 冰冷傷害"},{"string":"攻擊技能減少 #% 冰冷傷害","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_cold_damage_with_attack_skills"],"explicit":["explicit.stat_860668586"],"implicit":["implicit.stat_860668586"]}}} +{"ref":"#% increased Cold Damage with Spell Skills","better":1,"matchers":[{"string":"法術技能增加 #% 冰冷傷害"},{"string":"法術技能減少 #% 冰冷傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2186994986"]}}} +{"ref":"#% increased Cold Resistance","better":1,"matchers":[{"string":"增加 #% 冰冷抗性"},{"string":"減少 #% 冰冷抗性","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4252311791"]}}} +{"ref":"#% increased Cold Snap Area of Effect","better":1,"matchers":[{"string":"增加 #% 霜爆範圍效果"},{"string":"減少 #% 霜爆範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3371538704"]}}} +{"ref":"#% increased Cold Snap Damage","better":1,"matchers":[{"string":"增加 #% 霜暴傷害"},{"string":"減少 #% 霜暴傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3729006707"]}}} +{"ref":"#% increased Cold Spell Damage","better":1,"matchers":[{"string":"增加 #% 冰冷法術傷害 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_cold_spell_damage"]}}} +{"ref":"#% increased Conductivity Curse Effect","better":1,"matchers":[{"string":"增加 #% 導電的詛咒效果"},{"string":"減少 #% 導電的詛咒效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3395908304"],"enchant":["enchant.stat_3395908304"]}}} +{"ref":"#% increased Conductivity Duration","better":1,"matchers":[{"string":"增加 #% 導電持續時間"},{"string":"減少 #% 導電持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_819890745"]}}} +{"ref":"#% increased Contagion Area of Effect","better":1,"matchers":[{"string":"增加 #% 瘟疫範圍效果"},{"string":"減少 #% 瘟疫範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1056396846"]}}} +{"ref":"#% increased Contagion Damage","better":1,"matchers":[{"string":"增加 #% 瘟疫傷害"},{"string":"減少 #% 瘟疫傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_277116504"]}}} +{"ref":"#% increased Contagion Duration","better":1,"matchers":[{"string":"增加 #% 瘟疫持續時間"},{"string":"減少 #% 瘟疫持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2565809961"]}}} +{"ref":"#% increased Convocation Buff Effect","better":1,"matchers":[{"string":"增加 #% 號召增益效果"},{"string":"減少 #% 號召增益效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2054059315"]}}} +{"ref":"#% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"增加 #% 冷卻恢復速度"},{"string":"減少 #% 冷卻恢復速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1004011302","explicit.stat_239144"],"implicit":["implicit.stat_1004011302"],"fractured":["fractured.stat_1004011302"],"scourge":["scourge.stat_1004011302"],"crafted":["crafted.stat_1004011302"]}}} +{"ref":"#% increased Cooldown Recovery Rate for throwing Traps","better":1,"matchers":[{"string":"增加 #% 陷阱冷卻恢復速度"},{"string":"減少 #% 陷阱冷卻恢復速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3417757416"],"implicit":["implicit.stat_3417757416"],"fractured":["fractured.stat_3417757416"]}}} +{"ref":"#% increased Cooldown Recovery Rate if you've cast Temporal Chains in the past 10 seconds","better":1,"matchers":[{"string":"若你過去 10 秒有失放過時空鎖鏈,增加 #% 冷卻時間恢復速度"}],"trade":{"ids":{"explicit":["explicit.stat_2954796309"]}}} +{"ref":"#% increased Cooldown Recovery Rate of Movement Skills","better":1,"matchers":[{"string":"增加 #% 位移技能的冷卻時間恢復速度"},{"string":"減少 #% 位移技能的冷卻時間恢復速度","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1124980805"]}}} +{"ref":"#% increased Cooldown Recovery Rate of Movement Skills used while affected by Haste","better":1,"matchers":[{"string":"被迅捷影響時,增加 #% 移動技能冷卻時間恢復速度"},{"string":"被迅捷影響時,減少 #% 移動技能冷卻時間恢復速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3332055899"]}}} +{"ref":"#% increased Cooldown Recovery Rate of Travel Skills","better":1,"matchers":[{"string":"增加 #% 快行技能冷卻時間恢復速度"},{"string":"減少 #% 快行技能冷卻時間恢復速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2308278768"],"implicit":["implicit.stat_2308278768"]}}} +{"ref":"#% increased Cooldown Recovery Rate of Travel Skills per Frenzy Charge","better":1,"matchers":[{"string":"每顆狂怒球增加快行技能 #% 冷卻時間恢復速度"},{"string":"每顆狂怒球減少快行技能 #% 冷卻時間恢復速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3083201633"]}}} +{"ref":"#% increased Corrupting Fever Duration","better":1,"matchers":[{"string":"增加 #% 腐化潮持續時間"},{"string":"減少 #% 腐化潮持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3529090048"]}}} +{"ref":"#% increased Cost of Skills for each 200 total Mana Spent Recently","better":1,"matchers":[{"string":"近期每消耗 200 總魔力,增加 #% 技能消耗"},{"string":"近期每消耗 200 總魔力,減少 #% 技能消耗","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2650053239"]}}} +{"ref":"#% increased Counter-Thaumaturgy Experience gained","better":1,"matchers":[{"string":"增加 #% 獲得解咒師經驗值"},{"string":"減少 #% 獲得解咒師經驗值","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1237550112"]}}} +{"ref":"#% increased Counter-Thaumaturgy speed","better":1,"matchers":[{"string":"增加 #% 解咒師速度"},{"string":"減少 #% 解咒師速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2888942321"],"implicit":["implicit.stat_2888942321"],"fractured":["fractured.stat_2888942321"]}}} +{"ref":"#% increased Creeping Frost Area of Effect","better":1,"matchers":[{"string":"增加 #% 寒霜滲透範圍效果"},{"string":"減少 #% 寒霜滲透範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3816022821"]}}} +{"ref":"#% increased Creeping Frost Damage","better":1,"matchers":[{"string":"增加 #% 寒霜滲透傷害"},{"string":"減少 #% 寒霜滲透傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2846773529"]}}} +{"ref":"#% increased Creeping Frost Duration","better":1,"matchers":[{"string":"增加 #% 寒霜滲透持續時間"},{"string":"減少 #% 寒霜滲透持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3804575865"]}}} +{"ref":"#% increased Cremation Cast Speed","better":1,"matchers":[{"string":"增加熔炎送葬 #% 施放速度"},{"string":"減少熔炎送葬 #% 施放速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2938856716"]}}} +{"ref":"#% increased Cremation Damage","better":1,"matchers":[{"string":"增加 #% 熔炎送葬傷害"},{"string":"減少 #% 熔炎送葬傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4175469673"]}}} +{"ref":"#% increased Critical Strike Chance","better":1,"matchers":[{"string":"增加 #% 暴擊率"},{"string":"減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2375316951"],"implicit":["implicit.stat_2375316951"],"fractured":["fractured.stat_2375316951"],"enchant":["enchant.stat_2375316951"],"crafted":["crafted.stat_2375316951"]}}} +{"ref":"#% increased Critical Strike Chance against Bleeding Enemies","better":1,"matchers":[{"string":"對流血的敵人增加 #% 暴擊率"},{"string":"對流血的敵人減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2282705842"]}}} +{"ref":"#% increased Critical Strike Chance against Blinded Enemies","better":1,"matchers":[{"string":"對致盲的敵人增加 #% 暴擊率"},{"string":"對致盲的敵人減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1939202111"]}}} +{"ref":"#% increased Critical Strike Chance against Chilled Enemies","better":1,"matchers":[{"string":"對冰緩的敵人增加 #% 暴擊率"},{"string":"對冰緩的敵人減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3699490848"]}}} +{"ref":"#% increased Critical Strike Chance against Enemies on Consecrated Ground during Effect","better":1,"matchers":[{"string":"效果持續時間,對站在奉獻地面上的敵人增加 #% 暴擊率"},{"string":"效果持續時間,對站在奉獻地面上的敵人減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3278399103"]}}} +{"ref":"#% increased Critical Strike Chance against Enemies on Consecrated Ground while affected by Zealotry","better":1,"matchers":[{"string":"被狂熱影響時,對站在奉獻地面上的敵人增加 #% 暴擊率"}],"trade":{"ids":{"explicit":["explicit.stat_214835567"]}}} +{"ref":"#% increased Critical Strike Chance against Enemies that are on Full Life","better":1,"matchers":[{"string":"對滿血的敵人增加 #% 暴擊率"},{"string":"對滿血的敵人減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_47954913"]}}} +{"ref":"#% increased Critical Strike Chance against Poisoned Enemies","better":1,"matchers":[{"string":"對中毒敵人增加 #% 暴擊率"},{"string":"對中毒敵人減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1345659139"]}}} +{"ref":"#% increased Critical Strike Chance against Shocked Enemies","better":1,"matchers":[{"string":"對感電的敵人增加 #% 暴擊率"},{"string":"對感電的敵人減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_276103140"],"fractured":["fractured.stat_276103140"]}}} +{"ref":"#% increased Critical Strike Chance during any Flask Effect","better":1,"matchers":[{"string":"在任何藥劑效果期間增加 #% 暴擊率"},{"string":"在任何藥劑效果期間減少 #% 暴擊率","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2898434123"]}}} +{"ref":"#% increased Critical Strike Chance during Effect","better":1,"matchers":[{"string":"效果持續時間,增加 #% 暴擊率"}],"trade":{"ids":{"explicit":["explicit.stat_2008255263"],"fractured":["fractured.stat_2008255263"],"crafted":["crafted.stat_2008255263"]}}} +{"ref":"#% increased Critical Strike Chance for Attacks","better":1,"matchers":[{"string":"攻擊增加 #% 暴擊率"},{"string":"攻擊減少 #% 暴擊率","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2194114101"]}}} +{"ref":"#% increased Critical Strike Chance for Spells if you've Killed Recently","better":1,"matchers":[{"string":"若你近期有擊殺,增加 #% 法術暴擊率"},{"string":"若你近期有擊殺,減少 #% 法術暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1243114410"]}}} +{"ref":"#% increased Critical Strike Chance for Spells while Dual Wielding","better":1,"matchers":[{"string":"雙持武器時,增加 #% 法術暴擊率"},{"string":"雙持武器時,減少 #% 法術暴擊率","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1218939541"]}}} +{"ref":"#% increased Critical Strike Chance for Spells while holding a Shield","better":1,"matchers":[{"string":"持盾時,增加 #% 法術暴擊率"},{"string":"持盾時,減少 #% 法術暴擊率","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_952509814"]}}} +{"ref":"#% increased Critical Strike Chance for Spells while wielding a Staff","better":1,"matchers":[{"string":"持長杖時,增加 #% 法術暴擊率"},{"string":"持長杖時,減少 #% 法術暴擊率","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_140429540"]}}} +{"ref":"#% increased Critical Strike Chance if you have Killed Recently","better":1,"matchers":[{"string":"若近期有擊殺,增加 #% 暴擊率"},{"string":"若近期有擊殺,減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3914638685"],"fractured":["fractured.stat_3914638685"]}}} +{"ref":"#% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently","better":1,"matchers":[{"string":"若近期你沒有暴擊,增加 #% 暴擊率"},{"string":"若近期沒有造成暴擊,增加 #% 暴擊率"},{"string":"若近期你沒有暴擊,減少 #% 暴擊率","negate":true},{"string":"若近期沒有造成暴擊,減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2856328513"],"fractured":["fractured.stat_2856328513"],"enchant":["enchant.stat_3010587200"]}}} +{"ref":"#% increased Critical Strike Chance if you haven't gained a Power Charge Recently","better":1,"matchers":[{"string":"若你近期沒有獲得暴擊球,增加 #% 暴擊率"},{"string":"若你近期沒有獲得暴擊球,減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_151106430"]}}} +{"ref":"#% increased Critical Strike Chance if you've been Shocked Recently","better":1,"matchers":[{"string":"若你近期被感電,增加 #% 暴擊率"},{"string":"若你近期被感電,減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1434381067"]}}} +{"ref":"#% increased Critical Strike Chance per 10 Strength","better":1,"matchers":[{"string":"每 10 點力量增加 #% 暴擊率"},{"string":"每 10 點力量減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2511370818"]}}} +{"ref":"#% increased Critical Strike Chance per 25 Intelligence","better":1,"matchers":[{"string":"每 25 點智慧增加 #% 暴擊率"}],"trade":{"ids":{"explicit":["explicit.stat_1861913998"]}}} +{"ref":"#% increased Critical Strike Chance per 4% Quality","better":1,"matchers":[{"string":"每 4% 品質增加 #% 暴擊率"}],"trade":{"ids":{"enchant":["enchant.stat_3103053611"]}}} +{"ref":"#% increased Critical Strike Chance per Brand","better":1,"matchers":[{"string":"每個烙印增加 #% 暴擊率"},{"string":"每個烙印減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2409504914"]}}} +{"ref":"#% increased Critical Strike Chance per Endurance Charge","better":1,"matchers":[{"string":"每顆耐力球增加 #% 暴擊率"},{"string":"每顆耐力球減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2547511866"]}}} +{"ref":"#% increased Critical Strike Chance per Frenzy Charge","better":1,"matchers":[{"string":"每顆狂怒球增加 #% 暴擊率"},{"string":"每顆狂怒球減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_707887043"]}}} +{"ref":"#% increased Critical Strike Chance per Grand Spectrum","better":1,"matchers":[{"string":"每顆巨光譜增加 #% 暴擊率"}],"trade":{"ids":{"explicit":["explicit.stat_2948375275"]}}} +{"ref":"#% increased Critical Strike Chance while affected by Wrath","better":1,"matchers":[{"string":"被雷霆影響時增加 #% 暴擊率"},{"string":"被雷霆影響時減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3357049845"]}}} +{"ref":"#% increased Critical Strike Chance while area is not in Lockdown\nPlayers have #% increased Critical Strike Chance while area is not in Lockdown","better":1,"matchers":[{"string":"區域沒有被封鎖時,增加 #% 暴擊率\n玩家在區域沒有被封鎖時,增加 #% 暴擊率"},{"string":"區域沒有被封鎖時,減少 #% 暴擊率\n玩家在區域沒有被封鎖時,減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1051688002"],"fractured":["fractured.stat_1051688002"]}}} +{"ref":"#% increased Critical Strike Chance while Physical Aegis is depleted","better":1,"matchers":[{"string":"當物理聖盾被耗盡時,增加 #% 暴擊率"},{"string":"當物理聖盾被耗盡時,減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2620656067"]}}} +{"ref":"#% increased Critical Strike Chance while you have at least 200 Intelligence","better":1,"matchers":[{"string":"當你至少有 200 點智慧時,增加 #% 暴擊率"},{"string":"當你至少有 200 點智慧時,減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_578121324"]}}} +{"ref":"#% increased Critical Strike Chance while you have Avatar of Fire","better":1,"matchers":[{"string":"當你有火之化身時,增加 #% 暴擊率"},{"string":"當你有火之化身時,減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2815652613"]}}} +{"ref":"#% increased Critical Strike Chance with arrows that Fork","better":1,"matchers":[{"string":"分裂的箭矢增加 #% 暴擊率"},{"string":"分裂的箭矢减少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4169623196"]}}} +{"ref":"#% increased Critical Strike Chance with Bows","better":1,"matchers":[{"string":"使用弓類武器時增加 #% 暴擊率"},{"string":"使用弓類武器時減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2091591880"],"implicit":["implicit.stat_2091591880"],"fractured":["fractured.stat_2091591880"],"scourge":["scourge.stat_2091591880"]}}} +{"ref":"#% increased Critical Strike Chance with Cold Skills","better":1,"matchers":[{"string":"增加 #% 冰冷技能暴擊率"},{"string":"減少 #% 冰冷技能暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3337344042"],"fractured":["fractured.stat_3337344042"]}}} +{"ref":"#% increased Critical Strike Chance with Elemental Skills","better":1,"matchers":[{"string":"增加 #% 全元素技能暴擊率"},{"string":"減少 #% 全元素技能暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_439950087"],"fractured":["fractured.stat_439950087"]}}} +{"ref":"#% increased Critical Strike Chance with Fire Skills","better":1,"matchers":[{"string":"增加 #% 火焰技能暴擊率"},{"string":"減少 #% 火焰技能暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1104796138"],"fractured":["fractured.stat_1104796138"]}}} +{"ref":"#% increased Critical Strike Chance with Lightning Skills","better":1,"matchers":[{"string":"增加 #% 閃電技能暴擊率"},{"string":"減少 #% 閃電技能暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1186596295"],"fractured":["fractured.stat_1186596295"]}}} +{"ref":"#% increased Critical Strike Chance with Melee Weapons","better":1,"matchers":[{"string":"增加 #% 近戰武器暴擊率"},{"string":"減少 #% 近戰武器暴擊率","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3678828098"]}}} +{"ref":"#% increased Critical Strike Chance with One Handed Melee Weapons","better":1,"matchers":[{"string":"使用單手近戰武器時增加 #% 暴擊率"},{"string":"使用單手近戰武器時減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2381842786"],"fractured":["fractured.stat_2381842786"]}}} +{"ref":"#% increased Critical Strike Chance with Spells which remove the maximum number of Seals","better":1,"matchers":[{"string":"移除封印的最大數量,增加法術 #% 暴擊率"},{"string":"移除封印的最大數量,減少法術 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2897207025"]}}} +{"ref":"#% increased Critical Strike Chance with Traps","better":1,"matchers":[{"string":"增加 #% 陷阱暴擊率"},{"string":"減少 #% 陷阱暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1192661666"]}}} +{"ref":"#% increased Critical Strike Chance with Two Handed Melee Weapons","better":1,"matchers":[{"string":"使用雙手近戰武器時增加 #% 暴擊率"},{"string":"使用雙手近戰武器時減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_764295120"],"fractured":["fractured.stat_764295120"]}}} +{"ref":"#% increased Critical Strike Chance with Vaal Skills during effect","better":1,"matchers":[{"string":"效果期間增加 #% 瓦爾技能的暴擊率"},{"string":"效果期間減少 #% 瓦爾技能的暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_778036553"]}}} +{"ref":"#% increased Cyclone Attack Speed","better":1,"matchers":[{"string":"增加 #% 旋風斬攻擊速度"},{"string":"減少 #% 旋風斬攻擊速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_835592326"]}}} +{"ref":"#% increased Cyclone Damage","better":1,"matchers":[{"string":"增加 #% 旋風斬傷害"},{"string":"減少 #% 旋風斬傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1454162553"]}}} +{"ref":"#% increased Damage","better":1,"matchers":[{"string":"增加 #% 傷害"},{"string":"減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2154246560"],"implicit":["implicit.stat_2154246560"],"fractured":["fractured.stat_2154246560"],"crafted":["crafted.stat_2154246560"]}}} +{"ref":"#% increased Damage during any Flask Effect","better":1,"matchers":[{"string":"在藥劑效果持續時間內,增加 #% 傷害"},{"string":"在藥劑效果持續時間內,減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2947215268"],"implicit":["implicit.stat_2947215268"],"fractured":["fractured.stat_2947215268"],"crafted":["crafted.stat_2947215268"]}}} +{"ref":"#% increased Damage for each Magic Item Equipped","better":1,"matchers":[{"string":"每件裝備的的魔法物品增加 #% 傷害"},{"string":"每件裝備的的魔法物品減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_886366428"]}}} +{"ref":"#% increased Damage for each Poison on you up to a maximum of 75%","better":1,"matchers":[{"string":"你身上每層中毒增加 #% 傷害,最多 75%"},{"string":"你身上每層中毒減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1034580601"]}}} +{"ref":"#% increased Damage for each type of Abyss Jewel affecting you","better":1,"matchers":[{"string":"每種你身上的深淵珠寶增加 #% 傷害"},{"string":"每種你身上的深淵珠寶減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_154272030"]}}} +{"ref":"#% increased Damage if Corrupted","better":1,"matchers":[{"string":"若已汙染增加 #% 傷害"},{"string":"若已汙染減少 #% 傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_767196662"]}}} +{"ref":"#% increased Damage if you have Consumed a corpse Recently","better":1,"matchers":[{"string":"若你近期有消耗屍體,增加 #% 傷害"},{"string":"若你近期有消耗屍體,減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2118708619"]}}} +{"ref":"#% increased Damage if you have Shocked an Enemy Recently","better":1,"matchers":[{"string":"若近期有感電敵人,增加 #% 傷害"},{"string":"若近期有感電敵人,減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_908650225"]}}} +{"ref":"#% increased Damage if you Summoned a Golem in the past 8 seconds","better":1,"matchers":[{"string":"召喚魔像後 8 秒內傷害增加 #%"},{"string":"召喚魔像後 8 秒內傷害減少 #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3384291300"]}}} +{"ref":"#% increased Damage if you've been Ignited Recently","better":1,"matchers":[{"string":"若你近期被點燃,增加 #% 傷害"},{"string":"若你近期被點燃,減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_430821956"]}}} +{"ref":"#% increased Damage if you've Frozen an Enemy Recently","better":1,"matchers":[{"string":"若近期你有使敵人冰凍則增加 #% 傷害"},{"string":"若近期你有使敵人冰凍則減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1064477264"]}}} +{"ref":"#% increased Damage if you've Killed Recently","better":1,"matchers":[{"string":"若近期有擊殺,增加 #% 傷害"},{"string":"若近期有擊殺,減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1072119541"],"fractured":["fractured.stat_1072119541"]}}} +{"ref":"#% increased Damage on Burning Ground","better":1,"matchers":[{"string":"在燃燒地面上增加 #% 傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3098087057"]}}} +{"ref":"#% increased Damage over Time","better":1,"matchers":[{"string":"增加 #% 持續傷害"},{"string":"減少 #% 持續傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_967627487"],"implicit":["implicit.stat_967627487"],"fractured":["fractured.stat_967627487"],"crafted":["crafted.stat_967627487"]}}} +{"ref":"#% increased Damage over Time while Dual Wielding","better":1,"matchers":[{"string":"雙持武器時增加 #% 持續傷害"}],"trade":{"ids":{"explicit":["explicit.stat_214001793"],"fractured":["fractured.stat_214001793"]}}} +{"ref":"#% increased Damage over Time while holding a Shield","better":1,"matchers":[{"string":"持盾時增加 #% 持續傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1244360317"],"fractured":["fractured.stat_1244360317"]}}} +{"ref":"#% increased Damage over Time while wielding a Two Handed Weapon","better":1,"matchers":[{"string":"持雙手武器時增加 #% 持續傷害"}],"trade":{"ids":{"explicit":["explicit.stat_4193088553"],"fractured":["fractured.stat_4193088553"]}}} +{"ref":"#% increased Damage per 1% Chance to Block Attack Damage","better":1,"matchers":[{"string":"每 1% 攻擊傷害格擋率,增加 #% 傷害"},{"string":"每 1% 攻擊傷害格擋率,減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3400437584"],"fractured":["fractured.stat_3400437584"]}}} +{"ref":"#% increased Damage per 100 Dexterity","better":1,"matchers":[{"string":"每 100 點敏捷增加 #% 傷害"},{"string":"每 100 點敏捷減少 #% 傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_342670903"]}}} +{"ref":"#% increased Damage per 100 Intelligence","better":1,"matchers":[{"string":"每 100 點智慧增加 #% 傷害"},{"string":"每 100 點智慧減少 #% 傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3966666111"]}}} +{"ref":"#% increased Damage per 100 Strength","better":1,"matchers":[{"string":"每 100 點力量增加 #% 傷害"},{"string":"每 100 點力量減少 #% 傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4274080377"]}}} +{"ref":"#% increased Damage per 15 Dexterity","better":1,"matchers":[{"string":"每 15 點敏捷增加 #% 傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2062174346"],"implicit":["implicit.stat_2062174346"],"fractured":["fractured.stat_2062174346"]}}} +{"ref":"#% increased Damage per 15 Intelligence","better":1,"matchers":[{"string":"每 15 點智慧增加 #% 傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3801128794"],"implicit":["implicit.stat_3801128794"],"fractured":["fractured.stat_3801128794"]}}} +{"ref":"#% increased Damage per 15 Strength","better":1,"matchers":[{"string":"每 15 點力量增加 #% 傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3948776386"],"implicit":["implicit.stat_3948776386"],"fractured":["fractured.stat_3948776386"]}}} +{"ref":"#% increased Damage per 5 of your lowest Attribute","better":1,"matchers":[{"string":"每 5 點你最低的能力值,增加 #% 傷害"},{"string":"每 5 點你最低的能力值,減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_35476451"]}}} +{"ref":"#% increased Damage per Crab Barrier","better":1,"matchers":[{"string":"每層蟹將重盾增加 #% 傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1019038967"]}}} +{"ref":"#% increased Damage per Curse on you","better":1,"matchers":[{"string":"自身上每個詛咒增加你 #% 傷害"},{"string":"自身上每個詛咒減少你 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1019020209"]}}} +{"ref":"#% increased Damage per Endurance Charge","better":1,"matchers":[{"string":"每個耐力球增加 #% 傷害"},{"string":"每個耐力球減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3515686789"],"implicit":["implicit.stat_3515686789"],"fractured":["fractured.stat_3515686789"],"crafted":["crafted.stat_3515686789"]}}} +{"ref":"#% increased Damage per Frenzy Charge","better":1,"matchers":[{"string":"每顆狂怒球增加 #% 傷害"},{"string":"每顆狂怒球減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_902747843"],"implicit":["implicit.stat_902747843"],"fractured":["fractured.stat_902747843"],"crafted":["crafted.stat_902747843"]}}} +{"ref":"#% increased Damage per Frenzy Charge with Hits against Enemies on Low Life","better":1,"matchers":[{"string":"擊中貧血敵人,每顆狂怒球增加 #% 傷害"},{"string":"擊中對貧血敵人,每顆狂怒球減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1696792323"]}}} +{"ref":"#% increased Damage per Power Charge","better":1,"matchers":[{"string":"每顆暴擊球增加 #% 傷害"},{"string":"每顆暴擊球減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2034658008"],"implicit":["implicit.stat_2034658008"],"fractured":["fractured.stat_2034658008"],"crafted":["crafted.stat_2034658008"]}}} +{"ref":"#% increased Damage per Raised Zombie","better":1,"matchers":[{"string":"每隻殭屍復甦增加 #% 傷害"},{"string":"每隻殭屍復甦減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3868443508"]}}} +{"ref":"#% increased Damage taken","better":1,"matchers":[{"string":"增加 #% 承受傷害"},{"string":"減少 #% 承受傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3691641145"]}}} +{"ref":"#% increased Damage taken from Ghosts","better":1,"matchers":[{"string":"遭受鬼魂的傷害增加 #%"},{"string":"遭受鬼魂的傷害減少 #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2156764291"]}}} +{"ref":"#% increased Damage taken from Skeletons","better":1,"matchers":[{"string":"遭受骷髏的傷害增加 #%"},{"string":"遭受骷髏的傷害減少 #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_705686721"]}}} +{"ref":"#% increased Damage taken if you've been Frozen Recently","better":1,"matchers":[{"string":"若你近期被冰凍,增加承受 #% 傷害"},{"string":"若你近期被冰凍,減少承受 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3616645755"]}}} +{"ref":"#% increased Damage taken per 250 Dexterity","better":1,"matchers":[{"string":"每 250 點敏捷,增加 #% 承受傷害"},{"string":"每 250 點敏捷,減少 #% 承受傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2477636501"]}}} +{"ref":"#% increased Damage taken per 250 Intelligence","better":1,"matchers":[{"string":"每 250 點智慧,增加 #% 承受傷害"},{"string":"每 250 點智慧,減少 #% 承受傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3522931817"]}}} +{"ref":"#% increased Damage taken per 250 Strength","better":1,"matchers":[{"string":"每 250 點力量,增加 #% 承受傷害"},{"string":"每 250 點力量,減少 #% 承受傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1443108510"]}}} +{"ref":"#% increased Damage taken per Frenzy Charge","better":1,"matchers":[{"string":"承受每個狂怒球的傷害增加 #%"},{"string":"承受每個狂怒球的傷害減少 #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1625103793"]}}} +{"ref":"#% increased Damage taken while on Full Energy Shield","better":1,"matchers":[{"string":"能量護盾全滿時增加 #% 受到的傷害"},{"string":"能量護盾全滿時減少 #% 受到的傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_969865219"]}}} +{"ref":"#% increased Damage taken while on Full Life","better":1,"matchers":[{"string":"滿血時增加承受 #% 傷害"},{"string":"滿血時減少承受 #% 傷害","negate":true}],"trade":{"ids":{"scourge":["scourge.stat_4091521421"]}}} +{"ref":"#% increased Damage taken while Phasing","better":1,"matchers":[{"string":"迷蹤時,增加 #% 承受傷害"},{"string":"迷蹤時,減少 #% 承受傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_146268648"]}}} +{"ref":"#% increased Damage when on Full Life","better":1,"matchers":[{"string":"當滿血時增加 #% 傷害"},{"string":"當滿血時減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_592020238"]}}} +{"ref":"#% increased Damage when on Low Life","better":1,"matchers":[{"string":"貧血時增加 #% 傷害"},{"string":"貧血時減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1513447578"]}}} +{"ref":"#% increased Damage while area is not in Lockdown\nPlayers deal #% increased Damage while area is not in Lockdown","better":1,"matchers":[{"string":"區域沒有被封鎖時,增加 #% 傷害\n玩家在區域沒有被封鎖時,增加 #% 傷害"},{"string":"區域沒有被封鎖時,減少 #% 傷害\n玩家在區域沒有被封鎖時,減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1312481589"],"fractured":["fractured.stat_1312481589"]}}} +{"ref":"#% increased Damage while Ignited","better":1,"matchers":[{"string":"點燃時增加 #% 傷害"},{"string":"點燃時減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1686122637"]}}} +{"ref":"#% increased Damage while Leeching","better":1,"matchers":[{"string":"偷取時增加 #% 傷害"},{"string":"偷取時減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_310246444"],"implicit":["implicit.stat_310246444"],"fractured":["fractured.stat_310246444"],"crafted":["crafted.stat_310246444"]}}} +{"ref":"#% increased Damage while Leeching Life","better":1,"matchers":[{"string":"偷取生命時,增加 #% 傷害"},{"string":"偷取生命時,減少 #% 傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3591306273"]}}} +{"ref":"#% increased Damage while Leeching Mana","better":1,"matchers":[{"string":"偷取魔力時,增加 #% 傷害"},{"string":"偷取魔力時,減少 #% 傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1994684426"]}}} +{"ref":"#% increased Damage while on Consecrated Ground","better":1,"matchers":[{"string":"在奉獻地面上時,增加 #% 傷害"},{"string":"在奉獻地面上時,減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1704905020"]}}} +{"ref":"#% increased Damage while Shocked","better":1,"matchers":[{"string":"感電時增加 #% 傷害"},{"string":"感電時減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_529432426"]}}} +{"ref":"#% increased Damage while you have no Energy Shield","better":1,"matchers":[{"string":"當能量護盾歸零時增加 #% 傷害"}],"trade":{"ids":{"explicit":["explicit.stat_414379784"]}}} +{"ref":"#% increased Damage while you have no Frenzy Charges","better":1,"matchers":[{"string":"當你身上沒有狂怒球時增加 #% 傷害"},{"string":"當你身上沒有狂怒球時減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3905661226"]}}} +{"ref":"#% increased Damage with Ailments","better":1,"matchers":[{"string":"增加 #% 異常狀態傷害"},{"string":"減少 #% 異常狀態傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_690707482"],"implicit":["implicit.stat_690707482"]}}} +{"ref":"#% increased Damage with Ailments per Elder Item Equipped","better":1,"matchers":[{"string":"每件裝備的尊師之物增加 #% 異常狀態傷害"},{"string":"每件裝備的尊師之物減少 #% 異常狀態傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2418574586"]}}} +{"ref":"#% increased Damage with Axes","better":1,"matchers":[{"string":"增加 #% 斧的傷害"},{"string":"減少 #% 斧的傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3314142259"],"fractured":["fractured.stat_3314142259"]}}} +{"ref":"#% increased Damage with Bleeding","better":1,"matchers":[{"string":"增加 #% 流血傷害"},{"string":"減少 #% 流血傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1294118672"],"implicit":["implicit.stat_1294118672"],"fractured":["fractured.stat_1294118672"]}}} +{"ref":"#% increased Damage with Bleeding from Melee Weapons","better":1,"matchers":[{"string":"近戰武器造成的流血增加 #% 傷害"},{"string":"近戰武器造成的流血減少 #% 傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3660450649"]}}} +{"ref":"#% increased Damage with Bow Skills","better":1,"matchers":[{"string":"增加 #% 弓技能的傷害"},{"string":"減少 #% 弓技能的傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1241625305"],"fractured":["fractured.stat_1241625305"]}}} +{"ref":"#% increased Damage with Bows","better":1,"matchers":[{"string":"持弓類武器時增加 #% 傷害"},{"string":"持弓類武器時減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4188894176"],"fractured":["fractured.stat_4188894176"]}}} +{"ref":"#% increased Damage with Claws","better":1,"matchers":[{"string":"增加 #% 爪的傷害"},{"string":"減少 #% 爪的傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1069260037"],"fractured":["fractured.stat_1069260037"]}}} +{"ref":"#% increased Damage with Claws while on Low Life","better":1,"matchers":[{"string":"貧血時增加 #% 爪的傷害"},{"string":"貧血時減少 #% 爪的傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1629782265"]}}} +{"ref":"#% increased Damage with Daggers","better":1,"matchers":[{"string":"增加 #% 匕首的傷害"},{"string":"減少 #% 匕首的傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3586984690"],"fractured":["fractured.stat_3586984690"]}}} +{"ref":"#% increased Damage with Hits against Chilled Enemies","better":1,"matchers":[{"string":"擊中冰緩敵人增加 #% 傷害"},{"string":"擊中冰緩敵人減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2805714016"],"fractured":["fractured.stat_2805714016"]}}} +{"ref":"#% increased Damage with Hits against Enemies on Full Life","better":1,"matchers":[{"string":"對滿血的敵人增加 #% 擊中傷害"},{"string":"滿血時對敵人增加 #% 擊中傷害\n玩家滿血時對敵人增加 #% 擊中傷害"},{"string":"對滿血的敵人減少 #% 擊中傷害","negate":true},{"string":"滿血時對敵人減少 #% 擊中傷害\n玩家滿血時對敵人減少 #% 擊中傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3708045494"],"fractured":["fractured.stat_3708045494"]}}} +{"ref":"#% increased Damage with Hits against Frozen Enemies","better":1,"matchers":[{"string":"擊中冰凍敵人增加 #% 傷害"},{"string":"擊中冰凍敵人減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1196902248"]}}} +{"ref":"#% increased Damage with Hits against Magic monsters","better":1,"matchers":[{"string":"對魔法怪物的擊中增加 #% 傷害"},{"string":"對魔法怪物的擊中減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1278047991"]}}} +{"ref":"#% increased Damage with Hits against Rare monsters","better":1,"matchers":[{"string":"擊中稀有怪物增加 #% 傷害"},{"string":"擊中稀有怪物減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2137878565"]}}} +{"ref":"#% increased Damage with Hits against Shocked Enemies","better":1,"matchers":[{"string":"對感電的敵人增加 #% 擊中傷害"},{"string":"對感電的敵人減少 #% 擊中傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4194900521"]}}} +{"ref":"#% increased Damage with Hits and Ailments against Abyssal Monsters","better":1,"matchers":[{"string":"對深淵怪物增加 #% 擊中和異常狀態傷害"},{"string":"對深淵怪物減少 #% 擊中和異常狀態傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3257279374"],"implicit":["implicit.stat_3257279374"],"fractured":["fractured.stat_3257279374"]}}} +{"ref":"#% increased Damage with Hits and Ailments against Bleeding Enemies","better":1,"matchers":[{"string":"對流血敵人增加 #% 擊中和異常狀態傷害"},{"string":"對流血敵人減少 #% 擊中和異常狀態傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1790172543"]}}} +{"ref":"#% increased Damage with Hits and Ailments against Blinded Enemies","better":1,"matchers":[{"string":"對致盲的敵人增加 #% 擊中和異常狀態傷害"},{"string":"擊中和異常狀態對致盲敵人增加 #% 傷害"},{"string":"對致盲的敵人減少 #% 擊中和異常狀態傷害","negate":true},{"string":"擊中和異常狀態對致盲敵人減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3503466234","explicit.stat_3565956680"]}}} +{"ref":"#% increased Damage with Hits and Ailments against Chilled Enemies","better":1,"matchers":[{"string":"對冰緩的敵人增加 #% 擊中和異常狀態的傷害"},{"string":"對冰緩的敵人減少 #% 擊中和異常狀態的傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3747189159"]}}} +{"ref":"#% increased Damage with Hits and Ailments against Cursed Enemies","better":1,"matchers":[{"string":"對被詛咒的敵人增加 #% 擊中和異常狀態傷害"},{"string":"對被詛咒的敵人減少 #% 擊中和異常狀態傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_539970476"],"fractured":["fractured.stat_539970476"]}}} +{"ref":"#% increased Damage with Hits and Ailments against Enemies affected by 3 Spider's Webs","better":1,"matchers":[{"string":"對被蛛網纏繞 3 層的敵人增加 #% 擊中和異常狀態傷害"},{"string":"對被蛛網纏繞 3 層的敵人減少 #% 擊中和異常狀態傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_103928310"]}}} +{"ref":"#% increased Damage with Hits and Ailments against Hindered Enemies","better":1,"matchers":[{"string":"擊中和異常狀態對緩速敵人增加 #% 傷害"},{"string":"擊中和異常狀態對緩速敵人減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_528422616"]}}} +{"ref":"#% increased Damage with Hits and Ailments against Ignited Enemies","better":1,"matchers":[{"string":"對點燃的敵人增加 #% 擊中和異常狀態傷害"},{"string":"對點燃的敵人減少 #% 擊中和異常狀態傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_485151258"]}}} +{"ref":"#% increased Damage with Hits and Ailments against Marked Enemy","better":1,"matchers":[{"string":"對被印記的敵人增加 #% 擊中和異常狀態傷害"},{"string":"對被印記的敵人減少 #% 擊中和異常狀態傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2001747092"]}}} +{"ref":"#% increased Damage with Hits and Ailments per Curse on Enemy","better":1,"matchers":[{"string":"敵人身上每個詛咒增加擊中和異常狀態 #% 傷害"},{"string":"敵人身上每個詛咒減少擊中和異常狀態 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1818773442"],"fractured":["fractured.stat_1818773442"]}}} +{"ref":"#% increased Damage with Ignite from Melee Weapons","better":1,"matchers":[{"string":"近戰武器造成的點燃增加 #% 傷害"},{"string":"近戰武器造成的點燃減少 #% 傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3935936274"]}}} +{"ref":"#% increased Damage with Ignite inflicted on Chilled Enemies","better":1,"matchers":[{"string":"對冰緩的敵人增加 #% 點燃傷害"},{"string":"對冰緩的敵人減少 #% 點燃傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1891782369"]}}} +{"ref":"#% increased Damage with Maces or Sceptres","better":1,"matchers":[{"string":"錘和權杖增加 #% 傷害"},{"string":"錘和權杖減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1181419800"],"fractured":["fractured.stat_1181419800"]}}} +{"ref":"#% increased Damage with Movement Skills","better":1,"matchers":[{"string":"移動技能增加 #% 傷害"},{"string":"移動技能減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_856021430"]}}} +{"ref":"#% increased Damage with Non-Vaal Skills during Soul Gain Prevention","better":1,"matchers":[{"string":"停止獲得靈魂持續時間,增加 #% 非瓦爾技能傷害"},{"string":"停止獲得靈魂持續時間,減少 #% 非瓦爾技能傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1583385065"],"fractured":["fractured.stat_1583385065"],"crafted":["crafted.stat_1583385065"]}}} +{"ref":"#% increased Damage with One Handed Weapons","better":1,"matchers":[{"string":"持單手武器時增加 #% 傷害"},{"string":"持單手武器時減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1010549321"],"fractured":["fractured.stat_1010549321"]}}} +{"ref":"#% increased Damage with Poison","better":1,"matchers":[{"string":"增加 #% 中毒傷害"},{"string":"減少 #% 中毒傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1290399200"],"implicit":["implicit.stat_1290399200"],"fractured":["fractured.stat_1290399200"]}}} +{"ref":"#% increased Damage with Poison from Melee Weapons","better":1,"matchers":[{"string":"近戰武器造成的中毒增加 #% 傷害"},{"string":"近戰武器造成的中毒減少 #% 傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_776174407"]}}} +{"ref":"#% increased Damage with Poison if you have at least 300 Dexterity","better":1,"matchers":[{"string":"若你至少有 300 點敏捷,增加 #% 中毒傷害"},{"string":"若你至少有 300 點敏捷,減少 #% 中毒傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_256730087"]}}} +{"ref":"#% increased Damage with Poison per Frenzy Charge","better":1,"matchers":[{"string":"每顆狂怒球增加 #% 中毒傷害"},{"string":"每顆狂怒球減少 #% 中毒傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1221011086"]}}} +{"ref":"#% increased Damage with Poison per Power Charge","better":1,"matchers":[{"string":"每顆暴擊球增加 #% 中毒傷害"},{"string":"每顆暴擊球減少 #% 中毒傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4230767876"]}}} +{"ref":"#% increased Damage with Staves","better":1,"matchers":[{"string":"增加 #% 長杖的傷害"},{"string":"減少 #% 長杖的傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4087089130"],"fractured":["fractured.stat_4087089130"]}}} +{"ref":"#% increased Damage with Swords","better":1,"matchers":[{"string":"增加 #% 劍的傷害"},{"string":"減少 #% 劍的傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_83050999"],"fractured":["fractured.stat_83050999"]}}} +{"ref":"#% increased Damage with Two Handed Weapons","better":1,"matchers":[{"string":"持雙手武器時增加 #% 傷害"},{"string":"持雙手武器時減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1836374041"],"fractured":["fractured.stat_1836374041"]}}} +{"ref":"#% increased Damage with Vaal Skills","better":1,"matchers":[{"string":"增加 #% 瓦爾技能傷害"},{"string":"減少 #% 瓦爾技能傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2257141320"],"implicit":["implicit.stat_2257141320"],"fractured":["fractured.stat_2257141320"],"crafted":["crafted.stat_2257141320"]}}} +{"ref":"#% increased Damage with Vaal Skills during effect","better":1,"matchers":[{"string":"效果持續時間增加 #% 瓦爾技能傷害"},{"string":"效果持續時間減少 #% 瓦爾技能傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4067144129"]}}} +{"ref":"#% increased Damage with Wands","better":1,"matchers":[{"string":"增加 #% 法杖傷害"},{"string":"減少 #% 法杖傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_379328644"],"fractured":["fractured.stat_379328644"]}}} +{"ref":"#% increased Dark Pact Area of Effect","better":1,"matchers":[{"string":"增加 #% 暗夜血契範圍效果"},{"string":"減少 #% 暗夜血契範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_957864706"]}}} +{"ref":"#% increased Dark Pact Cast Speed","better":1,"matchers":[{"string":"增加 #% 暗夜血契施放速度"},{"string":"減少 #% 暗夜血契施放速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1549594869"]}}} +{"ref":"#% increased Dark Pact Damage","better":1,"matchers":[{"string":"增加 #% 暗夜血契傷害"},{"string":"減少 #% 暗夜血契傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1573799461"]}}} +{"ref":"#% increased Deception Experience gained","better":1,"matchers":[{"string":"增加 #% 獲得詐欺經驗值"},{"string":"減少 #% 獲得詐欺經驗值","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2678065384"]}}} +{"ref":"#% increased Deception speed","better":1,"matchers":[{"string":"增加 #% 詐欺速度"},{"string":"減少 #% 詐欺速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2520458995"],"implicit":["implicit.stat_2520458995"],"fractured":["fractured.stat_2520458995"]}}} +{"ref":"#% increased Decoy Totem Area of Effect","better":1,"matchers":[{"string":"增加 #% 誘餌圖騰範圍效果"},{"string":"減少 #% 誘餌圖騰範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1686675991"]}}} +{"ref":"#% increased Decoy Totem Life","better":1,"matchers":[{"string":"增加 #% 誘餌圖騰生命"},{"string":"減少 #% 誘餌圖騰生命","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1631824124"]}}} +{"ref":"#% increased Defences from Equipped Shield","better":1,"matchers":[{"string":"增加 #% 從盾牌獲取的防禦"},{"string":"減少 #% 從盾牌獲取的防禦","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1215155013"]}}} +{"ref":"#% increased Defences from Equipped Shield per 10 Devotion","better":1,"matchers":[{"string":"每 10 個奉獻,增加 #% 裝備的盾牌的防禦"},{"string":"每 10 個奉獻,減少 #% 裝備的盾牌的防禦","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2803981661"]}}} +{"ref":"#% increased Demolition Experience gained","better":1,"matchers":[{"string":"增加 #% 獲得拆除經驗值"},{"string":"減少 #% 獲得拆除經驗值","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1492314881"],"fractured":["fractured.stat_1492314881"]}}} +{"ref":"#% increased Demolition speed","better":1,"matchers":[{"string":"增加 #% 拆除速度"},{"string":"減少 #% 拆除速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2847917427"],"implicit":["implicit.stat_2847917427"],"fractured":["fractured.stat_2847917427"]}}} +{"ref":"#% increased Despair Curse Effect","better":1,"matchers":[{"string":"增加 #% 絕望詛咒效果"},{"string":"減少 #% 絕望詛咒效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3185156108"],"enchant":["enchant.stat_3185156108"]}}} +{"ref":"#% increased Despair Duration","better":1,"matchers":[{"string":"增加 #% 絕望持續時間"},{"string":"減少 #% 絕望持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_683073695"]}}} +{"ref":"#% increased Destructive Link Duration","better":1,"matchers":[{"string":"增加 #% 連結:破壞持續時間"},{"string":"減少 #% 連結:破壞持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_728213819"]}}} +{"ref":"#% increased Detonate Dead Area of Effect","better":1,"matchers":[{"string":"增加 #% 屍體爆破範圍效果"},{"string":"減少 #% 屍體爆破範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_482660590"]}}} +{"ref":"#% increased Detonate Dead Damage","better":1,"matchers":[{"string":"增加 #% 屍體爆破傷害"},{"string":"減少 #% 屍體爆破傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3087527696"]}}} +{"ref":"#% increased Devouring Totem Leech per second","better":1,"matchers":[{"string":"增加 #% 吞噬圖騰每秒偷取速度"},{"string":"減少 #% 吞噬圖騰每秒偷取速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3317752680"]}}} +{"ref":"#% increased Dexterity","better":1,"matchers":[{"string":"增加 #% 敏捷"},{"string":"減少 #% 敏捷","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4139681126"],"implicit":["implicit.stat_4139681126"],"fractured":["fractured.stat_4139681126"],"scourge":["scourge.stat_4139681126"]}}} +{"ref":"#% increased Dexterity if Strength is higher than Intelligence","better":1,"matchers":[{"string":"若力量高於智慧,增加 #% 敏捷"},{"string":"若力量高於智慧,減少 #% 敏捷","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2022724400"]}}} +{"ref":"#% increased Discharge Damage","better":1,"matchers":[{"string":"增加 #% 解放的傷害"},{"string":"減少 #% 解放的傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1935930829"]}}} +{"ref":"#% increased Double Strike Attack Speed","better":1,"matchers":[{"string":"增加 #% 雙重打擊攻擊速度"},{"string":"減少 #% 雙重打擊攻擊速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2779309910"]}}} +{"ref":"#% increased Double Strike Critical Strike Chance","better":1,"matchers":[{"string":"增加 #% 雙重打擊暴擊率"},{"string":"減少 #% 雙重打擊暴擊率","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1201942540"]}}} +{"ref":"#% increased Double Strike Damage","better":1,"matchers":[{"string":"增加 #% 雙重打擊傷害"},{"string":"減少 #% 雙重打擊傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1809965314"]}}} +{"ref":"#% increased Dual Strike Attack Speed","better":1,"matchers":[{"string":"增加 #% 雙持打擊攻擊速度"},{"string":"減少 #% 雙持打擊攻擊速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1917107304"]}}} +{"ref":"#% increased Dual Strike Critical Strike Chance","better":1,"matchers":[{"string":"增加 #% 雙持打擊暴擊率"},{"string":"減少 #% 雙持打擊暴擊率","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2729530556"]}}} +{"ref":"#% increased Dual Strike Damage","better":1,"matchers":[{"string":"增加 #% 雙持打擊傷害"},{"string":"減少 #% 雙持打擊傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2094069860"]}}} +{"ref":"#% increased Duration","better":1,"matchers":[{"string":"增加 #% 持續時間"},{"string":"減少 #% 持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1256719186"],"fractured":["fractured.stat_1256719186"],"enchant":["enchant.stat_1256719186"]}}} +{"ref":"#% increased Duration of Ailments on Enemies","better":1,"matchers":[{"string":"增加 #% 敵人身上異常狀態時間"},{"string":"減少 #% 敵人身上異常狀態時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2419712247"],"implicit":["implicit.stat_2419712247"],"scourge":["scourge.stat_2419712247"]}}} +{"ref":"#% increased Duration of Ailments you inflict while Focused","better":1,"matchers":[{"string":"專注時增加 #% 你造成異常狀態的持續時間"},{"string":"專注時減少 #% 你造成異常狀態的持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1840751341"],"fractured":["fractured.stat_1840751341"],"crafted":["crafted.stat_1840751341"]}}} +{"ref":"#% increased Duration of Cold Ailments","better":1,"matchers":[{"string":"增加 #% 冰冷異常狀態持續時間"},{"string":"減少 #% 冰冷異常狀態持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3571964448"],"fractured":["fractured.stat_3571964448"]}}} +{"ref":"#% increased Duration of Curses on you","better":1,"matchers":[{"string":"增加 #% 自身詛咒的持續時間"},{"string":"減少 #% 自身詛咒的持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2920970371"]}}} +{"ref":"#% increased Duration of Curses on you per 10 Devotion","better":1,"matchers":[{"string":"每 10 個奉獻,增加 #% 你身上詛咒的持續時間"},{"string":"每 10 個奉獻,減少 #% 你身上詛咒的持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4235333770"]}}} +{"ref":"#% increased Duration of Elemental Ailments from Melee Weapon Attacks","better":1,"matchers":[{"string":"增加 #% 來自近戰武器攻擊的元素異常狀態持續時間"},{"string":"減少 #% 來自近戰武器攻擊的元素異常狀態持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3284469689"]}}} +{"ref":"#% increased Duration of Elemental Ailments on Enemies","better":1,"matchers":[{"string":"增加 #% 敵人身上元素異常狀態時間"},{"string":"減少 #% 敵人身上元素異常狀態時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2604619892"]}}} +{"ref":"#% increased Duration of Elemental Ailments on You while affected by a Rare Abyss Jewel","better":1,"matchers":[{"string":"被稀有深淵珠寶影響時,增加 #% 你身上元素異常狀態的持續時間"},{"string":"被稀有深淵珠寶影響時,減少 #% 你身上元素異常狀態的持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_287112619"]}}} +{"ref":"#% increased Duration of Lightning Ailments","better":1,"matchers":[{"string":"增加 #% 閃電異常狀態持續時間"},{"string":"減少 #% 閃電異常狀態持續時","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1484471543"]}}} +{"ref":"#% increased Duration of Poisons you inflict during Effect","better":1,"matchers":[{"string":"效果持續時間,增加 #% 你造成的中毒持續時間"},{"string":"效果持續時間,減少 #% 你造成的中毒持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_510304734"]}}} +{"ref":"#% increased Duration of Shrine Effects on you","better":1,"matchers":[{"string":"增加 #% 神殿效果持續時間"},{"string":"減少 #% 神殿效果持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1877661946"]}}} +{"ref":"#% increased Earthquake Area of Effect","better":1,"matchers":[{"string":"增加 #% 震地範圍效果"},{"string":"減少 #% 震地範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_684174846"]}}} +{"ref":"#% increased Earthquake Damage","better":1,"matchers":[{"string":"增加 #% 震地傷害"},{"string":"減少 #% 震地傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1697080607"]}}} +{"ref":"#% increased effect","better":1,"matchers":[{"string":"增加 #% 效果"},{"string":"減少 #% 效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2448920197","explicit.stat_3529940209"],"fractured":["fractured.stat_2448920197"],"enchant":["enchant.stat_2448920197"]}}} +{"ref":"#% increased Effect of Arcane Surge on you","better":1,"matchers":[{"string":"增加你身上秘能波動 #% 效果"},{"string":"減少你身上秘能波動 #% 效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3015437071"],"implicit":["implicit.stat_3015437071"],"fractured":["fractured.stat_3015437071"]}}} +{"ref":"#% increased Effect of Arcane Surge on you per\nHypnotic Eye Jewel affecting you, up to a maximum of 40%","better":1,"matchers":[{"string":"每顆影響你的催眠之眼珠寶,增加 #% 你身上秘能波動的效果,最多 40%"},{"string":"每顆影響你的催眠之眼珠寶,減少 #% 你身上秘能波動的效果,最多 40%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1012072406"]}}} +{"ref":"#% increased Effect of Arcane Surge on you while affected by Clarity","better":1,"matchers":[{"string":"被清晰影響時,增加 #% 你身上秘能波動的效果"},{"string":"被清晰影響時,減少 #% 你身上秘能波動的效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1808477254"]}}} +{"ref":"#% increased Effect of Auras from Mines","better":1,"matchers":[{"string":"增加 #% 來自地雷的光環效果"},{"string":"減少 #% 來自地雷的光環效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2121424530"]}}} +{"ref":"#% increased Effect of Blind from Melee Weapons","better":1,"matchers":[{"string":"近戰武器造成的致盲增加 #% 效果"},{"string":"近戰武器造成的致盲減少 #% 效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1808507379"]}}} +{"ref":"#% increased Effect of Buffs granted by Socketed Golem Skills","better":1,"matchers":[{"string":"插槽中魔像技能的增益效果增加 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2813516522"]}}} +{"ref":"#% increased Effect of Buffs granted by your Golems","better":1,"matchers":[{"string":"魔像的增益效果增加 #%"},{"string":"魔像的增益效果減少 #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2109043683"],"implicit":["implicit.stat_2109043683"]}}} +{"ref":"#% increased Effect of Buffs on you","better":1,"matchers":[{"string":"增加 #% 你身上的增益效果"}],"trade":{"ids":{"explicit":["explicit.stat_306104305"]}}} +{"ref":"#% increased Effect of Chill and Shock on you","better":-1,"matchers":[{"string":"增加 #% 你身上冰緩和感電的效果"},{"string":"減少 #% 你身上冰緩和感電的效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1984113628"],"fractured":["fractured.stat_1984113628"],"crafted":["crafted.stat_1984113628"]}}} +{"ref":"#% increased Effect of Chill from Melee Weapons","better":1,"matchers":[{"string":"近戰武器造成的冰緩增加 #% 效果"},{"string":"近戰武器造成的冰緩減少 #% 效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3296814491"]}}} +{"ref":"#% increased Effect of Chilled Ground","better":1,"matchers":[{"string":"增加 #% 冰緩地面的效果"},{"string":"減少 #% 冰緩地面的效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2134166669"]}}} +{"ref":"#% increased Effect of Chills you inflict while Leeching Mana","better":1,"matchers":[{"string":"偷取魔力時,增加 #% 你造成冰緩的效果"},{"string":"偷取魔力時,減少 #% 你造成冰緩的效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_898270877"]}}} +{"ref":"#% increased Effect of Cold Ailments","better":1,"matchers":[{"string":"增加 #% 冰冷異常狀態效果"},{"string":"減少 #% 冰冷異常狀態效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1793818220"],"implicit":["implicit.stat_1793818220"],"fractured":["fractured.stat_1793818220"]}}} +{"ref":"#% increased Effect of Curses applied by Bane","better":1,"matchers":[{"string":"增加 #% 災厄套用的詛咒效果"},{"string":"減少 #% 災厄套用的詛咒效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2843908086"]}}} +{"ref":"#% increased Effect of Curses on Monsters","better":1,"fromUberAreaMods":true,"matchers":[{"string":"增加 #% 怪物所受詛咒效果"},{"string":"減少 #% 怪物所受詛咒效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1661698405"],"fractured":["fractured.stat_1661698405"]}}} +{"ref":"#% increased Effect of Curses on you while on Consecrated Ground","better":-1,"matchers":[{"string":"站在奉獻地面上時,增加 #% 你身上詛咒的效果"},{"string":"站在奉獻地面上時,減少 #% 你身上詛咒的效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3444629796"],"fractured":["fractured.stat_3444629796"],"enchant":["enchant.stat_3444629796"]}}} +{"ref":"#% increased Effect of Elusive on you per Power Charge","better":1,"matchers":[{"string":"每顆暴擊球增加 #% 靈巧效果"},{"string":"每顆暴擊球減少 #% 靈巧效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3545269928"]}}} +{"ref":"#% increased Effect of Freeze on you","better":-1,"matchers":[{"string":"增加 #% 你身上的冰凍效果"},{"string":"減少 #% 你身上的冰凍效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2069161757"],"crafted":["crafted.stat_2069161757"]}}} +{"ref":"#% increased Effect of Impales inflicted with Spells","better":1,"matchers":[{"string":"增加 #% 法術造成的穿刺效果"},{"string":"減少 #% 法術造成的穿刺效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1480595847"]}}} +{"ref":"#% increased Effect of Lightning Ailments","better":1,"matchers":[{"string":"增加 #% 閃電異常狀態效果"},{"string":"減少 #% 閃電異常狀態效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3081816887"],"fractured":["fractured.stat_3081816887"]}}} +{"ref":"#% increased effect of Non-Curse Auras from your Skills","better":1,"matchers":[{"string":"增加 #% 你技能的非詛咒光環效果"},{"string":"減少 #% 你技能的非詛咒光環效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1880071428"],"implicit":["implicit.stat_1880071428"],"fractured":["fractured.stat_1880071428"],"scourge":["scourge.stat_1880071428"]}}} +{"ref":"#% increased Effect of Non-Curse Auras from your Skills on Enemies","better":1,"matchers":[{"string":"增加 #% 你技能在敵人身上非詛咒光環的效果"},{"string":"減少 #% 你技能在敵人身上非詛咒光環的效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1636209393"],"fractured":["fractured.stat_1636209393"]}}} +{"ref":"#% increased effect of Non-Curse Auras from your Skills on your Minions","better":1,"matchers":[{"string":"增加 #% 你召喚物身上來自你技能的非詛咒光環效果"},{"string":"減少 #% 你召喚物身上來自你技能的非詛咒光環效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_634031003"]}}} +{"ref":"#% increased Effect of Non-Curse Auras from your Skills while you have a Linked Target","better":1,"matchers":[{"string":"當你有 1 個連結目標時,增加 #% 你技能的非詛咒光環效果"},{"string":"當你有 1 個連結目標時,減少 #% 你技能的非詛咒光環效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3995650818"]}}} +{"ref":"#% increased effect of Non-Curse Auras per 10 Devotion","better":1,"matchers":[{"string":"每 10 個奉獻,增加 #% 非詛咒光環的效果"},{"string":"每 10 個奉獻,減少 #% 非詛咒光環的效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2585926696"]}}} +{"ref":"#% increased Effect of Non-Damaging Ailments","better":1,"matchers":[{"string":"增加 #% 非傷害型異常狀態的效果"},{"string":"減少 #% 非傷害型異常狀態的效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_782230869"],"implicit":["implicit.stat_782230869"],"fractured":["fractured.stat_782230869"],"scourge":["scourge.stat_782230869"],"crafted":["crafted.stat_782230869"]}}} +{"ref":"#% increased Effect of non-Damaging Ailments on Enemies per 10 Devotion","better":1,"matchers":[{"string":"每 10 個奉獻,增加 #% 敵人身上非傷害型異常狀態的效果"},{"string":"每 10 個奉獻,減少 #% 敵人身上非傷害型異常狀態的效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1810368194"]}}} +{"ref":"#% increased Effect of Non-Damaging Ailments per Elder Item Equipped","better":1,"matchers":[{"string":"每件裝備的尊師之物,增加 #% 非傷害型異常狀態效果"},{"string":"每件裝備的尊師之物,減少 #% 非傷害型異常狀態效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4133552694"]}}} +{"ref":"#% increased Effect of Non-Damaging Ailments you inflict during Effect","better":1,"matchers":[{"string":"效果持續時間,增加 #% 你造成非傷害型異常狀態的效果"},{"string":"效果持續時間,減少 #% 你造成非傷害型異常狀態的效果"}],"trade":{"ids":{"explicit":["explicit.stat_1122693835"]}}} +{"ref":"#% increased Effect of non-Damaging Ailments you inflict with Critical Strikes","better":1,"matchers":[{"string":"增加 #% 你暴擊所造成非傷害型異常狀態的效果"},{"string":"減少 #% 你暴擊所造成非傷害型異常狀態的效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3772078232"]}}} +{"ref":"#% increased Effect of non-Keystone Passive Skills in Radius","better":1,"matchers":[{"string":"增加 #% 範圍內非關鍵天賦的效果"},{"string":"減少 #% 範圍內非關鍵天賦的效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_607548408"]}}} +{"ref":"#% increased Effect of Onslaught on you","better":1,"matchers":[{"string":"增加 #% 你身上的猛攻效果"},{"string":"減少 #% 你身上的猛攻效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3151397056"],"implicit":["implicit.stat_3151397056"],"fractured":["fractured.stat_3151397056"]}}} +{"ref":"#% increased Effect of Scorch","better":1,"matchers":[{"string":"增加 #% 焦灼效果"},{"string":"減少 #% 焦灼效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_344570534"]}}} +{"ref":"#% increased Effect of Shock","better":1,"matchers":[{"string":"增加 #% 感電效果"},{"string":"減少 #% 感電效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2527686725"],"implicit":["implicit.stat_2527686725"],"fractured":["fractured.stat_2527686725"]}}} +{"ref":"#% increased Effect of Shock from Melee Weapons","better":1,"matchers":[{"string":"近戰武器造成的感電增加 #% 效果"},{"string":"近戰武器造成的感電減少 #% 效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2245266924"]}}} +{"ref":"#% increased Effect of Shock on you during Effect","better":-1,"matchers":[{"string":"效果持續時間,增加 #% 你身上感電的效果"},{"string":"效果持續時間,減少 #% 你身上感電的效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1878455805"],"fractured":["fractured.stat_1878455805"]}}} +{"ref":"#% increased Effect of Shocks you inflict during Effect","better":1,"matchers":[{"string":"效果持續時間,增加 #% 你造成感電的效果"},{"string":"效果持續時間,減少 #% 你造成感電的效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3338065776"]}}} +{"ref":"#% increased Effect of Shocks you inflict while Leeching Energy Shield","better":1,"matchers":[{"string":"偷取能量護盾時,增加 #% 你造成的感電效果"},{"string":"偷取能量護盾時,減少 #% 你造成的感電效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3578946428"]}}} +{"ref":"#% increased Effect of Shrine Buffs on you","better":1,"matchers":[{"string":"增加 #% 神殿效果"},{"string":"減少 #% 神殿效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1939175721"]}}} +{"ref":"#% increased Effect of Socketed Abyss Jewels","better":1,"matchers":[{"string":"增加 #% 插槽中深淵珠寶的效果"},{"string":"減少 #% 插槽中深淵珠寶的效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1482572705"],"implicit":["implicit.stat_1482572705"]}}} +{"ref":"#% increased Effect of Tailwind on you","better":1,"matchers":[{"string":"增加 #% 你身上流順之風的效果"},{"string":"減少 #% 你身上流順之風的效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2172944497"]}}} +{"ref":"#% increased effect of Tattoos in Radius","better":1,"matchers":[{"string":"增加 #% 範圍內紋身的效果"},{"string":"減少 #% 範圍內紋身的效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4149388787"]}}} +{"ref":"#% increased Effect of the Buff granted by your Carrion Golems","better":1,"matchers":[{"string":"增加 #% 你食腐魔像提供的增益效果"},{"string":"減少 #% 你食腐魔像提供的增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2420972973"],"enchant":["enchant.stat_2420972973"]}}} +{"ref":"#% increased Effect of the Buff granted by your Chaos Golems","better":1,"matchers":[{"string":"增加 #% 混沌魔像賦予你的增益效果"},{"string":"減少 #% 混沌魔像賦予你的增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1648511635"],"enchant":["enchant.stat_1648511635"]}}} +{"ref":"#% increased Effect of the Buff granted by your Flame Golems","better":1,"matchers":[{"string":"增加 #% 烈焰魔像賦予你的增益效果"},{"string":"減少 #% 烈焰魔像賦予你的增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_269930125"],"enchant":["enchant.stat_269930125"]}}} +{"ref":"#% increased Effect of the Buff granted by your Ice Golems","better":1,"matchers":[{"string":"增加 #% 寒冰魔像賦予你的增益效果"},{"string":"減少 #% 寒冰魔像賦予你的增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2250111474"],"enchant":["enchant.stat_2250111474"]}}} +{"ref":"#% increased Effect of the Buff granted by your Lightning Golems","better":1,"matchers":[{"string":"增加 #% 雷電魔像賦予你的增益效果"},{"string":"減少 #% 雷電魔像賦予你的增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2527931375"],"enchant":["enchant.stat_2527931375"]}}} +{"ref":"#% increased Effect of the Buff granted by your Stone Golems","better":1,"matchers":[{"string":"增加 #% 巨石魔像賦予你的增益效果"},{"string":"減少 #% 巨石魔像賦予你的增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2284801675"],"enchant":["enchant.stat_2284801675"]}}} +{"ref":"#% increased Effect of Withered","better":1,"matchers":[{"string":"增加 #% 凋零效果"},{"string":"減少 #% 凋零效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2545584555"]}}} +{"ref":"#% increased Effect of your Curses","better":1,"matchers":[{"string":"增加 #% 你所施放詛咒的效果"},{"string":"減少 #% 你所施放詛咒的效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2353576063"],"implicit":["implicit.stat_2353576063"],"fractured":["fractured.stat_2353576063"],"scourge":["scourge.stat_2353576063"],"crafted":["crafted.stat_2353576063"]}}} +{"ref":"#% increased Effect of your Marks","better":1,"matchers":[{"string":"增加 #% 你印記的效果"},{"string":"減少 #% 你印記的效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_803185500"],"implicit":["implicit.stat_803185500"],"fractured":["fractured.stat_803185500"]}}} +{"ref":"#% increased Elemental Damage","better":1,"matchers":[{"string":"增加 #% 元素傷害"},{"string":"有增加 #% 的元素傷害"},{"string":"有減少 #% 的元素傷害","negate":true},{"string":"減少 #% 元素傷害","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_elemental_damage"],"explicit":["explicit.stat_3141070085"],"implicit":["implicit.stat_3141070085"],"fractured":["fractured.stat_3141070085"],"scourge":["scourge.stat_3141070085"]}}} +{"ref":"#% increased Elemental Damage during any Flask Effect","better":1,"matchers":[{"string":"在任何藥劑效果持續時間內,增加 #% 元素傷害"},{"string":"在任何藥劑效果持續時間內,減少 #% 元素傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3150967823"]}}} +{"ref":"#% increased Elemental Damage if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"若你近期有造成暴擊,增加 #% 元素傷害"},{"string":"若你近期有造成暴擊,減少 #% 元素傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2379781920"],"fractured":["fractured.stat_2379781920"],"crafted":["crafted.stat_2379781920"]}}} +{"ref":"#% increased Elemental Damage if you've Warcried Recently","better":1,"matchers":[{"string":"若近期你有使用戰吼,增加 #% 元素傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2803182108"]}}} +{"ref":"#% increased Elemental Damage per 10 Devotion","better":1,"matchers":[{"string":"每 10 個奉獻增加 #% 元素傷害"},{"string":"每 10 個奉獻減少 #% 元素傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3103189267"]}}} +{"ref":"#% increased Elemental Damage per 10 Dexterity","better":1,"matchers":[{"string":"每 10 點敏捷增加 #% 元素傷害"},{"string":"每 10 點敏捷減少 #% 元素傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_963261439"]}}} +{"ref":"#% increased Elemental Damage per Frenzy Charge","better":1,"matchers":[{"string":"每個狂怒球增加 #% 元素傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1586440250"]}}} +{"ref":"#% increased Elemental Damage per Grand Spectrum","better":1,"matchers":[{"string":"每顆巨光譜增加 #% 元素傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3163738488"]}}} +{"ref":"#% increased Elemental Damage per Level","better":1,"matchers":[{"string":"每等級增加 #% 元素傷害"},{"string":"每等級減少 #% 元素傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2094646950"]}}} +{"ref":"#% increased Elemental Damage per Power charge","better":1,"matchers":[{"string":"每顆暴擊球增加 #% 元素傷害"},{"string":"每顆暴擊球減少 #% 元素傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1482070333"]}}} +{"ref":"#% increased Elemental Damage taken","better":-1,"matchers":[{"string":"增加 #% 承受的元素傷害"},{"string":"減少 #% 承受的元素傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2734809852"]}}} +{"ref":"#% increased Elemental Damage with Attack Skills","better":1,"matchers":[{"string":"攻擊技能增加 #% 元素傷害"},{"string":"攻擊技能減少 #% 元素傷害","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_elemental_damage_with_attack_skills"],"explicit":["explicit.stat_387439868"],"implicit":["implicit.stat_387439868"],"fractured":["fractured.stat_387439868"],"scourge":["scourge.stat_387439868"],"crafted":["crafted.stat_387439868"]}}} +{"ref":"#% increased Elemental Damage with Attack Skills during any Flask Effect","better":1,"matchers":[{"string":"任何藥劑效果持續時間內,增加 #% 攻擊技能的元素傷害"},{"string":"任何藥劑效果持續時間內,減少 #% 攻擊技能的元素傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_782323220"]}}} +{"ref":"#% increased Elemental Damage with Attack Skills per Power Charge","better":1,"matchers":[{"string":"每顆暴擊球增加 #% 攻擊技能元素傷害"},{"string":"每顆暴擊球減少 #% 攻擊技能元素傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4116409626"]}}} +{"ref":"#% increased Elemental Damage with Hits and Ailments for\neach type of Elemental Ailment on Enemy","better":1,"matchers":[{"string":"敵人身上每種元素異常狀態,\n增加 #% 擊中和異常狀態元素傷害"},{"string":"敵人身上每種元素異常狀態,\n減少 #% 擊中和異常狀態元素傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2605663324"]}}} +{"ref":"#% increased Elemental Damage with Melee Weapons","better":1,"matchers":[{"string":"近戰武器增加 #% 元素傷害"},{"string":"近戰武器減少 #% 元素傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_503138266"]}}} +{"ref":"#% increased Elemental Hit Attack Speed","better":1,"matchers":[{"string":"增加 #% 元素打擊攻擊速度"},{"string":"減少 #% 元素打擊攻擊速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1151217691"]}}} +{"ref":"#% increased Elemental Weakness Curse Effect","better":1,"matchers":[{"string":"增加 #% 元素要害的詛咒效果"},{"string":"減少 #% 元素要害的詛咒效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3348324479"],"enchant":["enchant.stat_3348324479"]}}} +{"ref":"#% increased Elemental Weakness Duration","better":1,"matchers":[{"string":"增加 #% 元素要害持續時間"},{"string":"減少 #% 元素要害持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2690620076"]}}} +{"ref":"#% increased Elusive Effect","better":1,"matchers":[{"string":"增加 #% 靈巧效果"},{"string":"減少 #% 靈巧效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_240857668"],"implicit":["implicit.stat_240857668"],"scourge":["scourge.stat_240857668"]}}} +{"ref":"#% increased Endurance Charge Duration","better":1,"matchers":[{"string":"增加 #% 耐力球持續時間"},{"string":"減少 #% 耐力球持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1170174456"],"implicit":["implicit.stat_1170174456"],"enchant":["enchant.stat_1170174456"]}}} +{"ref":"#% increased Endurance, Frenzy and Power Charge Duration","better":1,"matchers":[{"string":"增加 #% 耐力球、狂怒球、以及暴擊球的持續時間"},{"string":"減少 #% 耐力球、狂怒球、以及暴擊球的持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2839036860"],"implicit":["implicit.stat_2839036860"]}}} +{"ref":"#% increased Energy Shield","better":1,"matchers":[{"string":"增加 #% 能量護盾"},{"string":"減少 #% 能量護盾","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4015621042"],"implicit":["implicit.stat_4015621042"],"fractured":["fractured.stat_4015621042"],"crafted":["crafted.stat_4015621042"]}}} +{"ref":"#% increased Energy Shield from Equipped Body Armour","better":1,"matchers":[{"string":"增加 #% 裝備的胸甲的能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_1195319608"],"fractured":["fractured.stat_1195319608"]}}} +{"ref":"#% increased Energy Shield per 10 Strength","better":1,"matchers":[{"string":"每 10 點力量增加 #% 能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_506942497"]}}} +{"ref":"#% increased Energy Shield per Power Charge","better":1,"matchers":[{"string":"每顆暴擊球增加 #% 能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_2189382346"]}}} +{"ref":"#% increased Energy Shield Recharge Rate","better":1,"matchers":[{"string":"增加 #% 能量護盾充能率"},{"string":"減少 #% 能量護盾充能率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2339757871"],"implicit":["implicit.stat_2339757871"],"fractured":["fractured.stat_2339757871"],"enchant":["enchant.stat_2339757871"],"scourge":["scourge.stat_2339757871"],"crafted":["crafted.stat_2339757871"]}}} +{"ref":"#% increased Energy Shield Recharge Rate during any Flask Effect","better":1,"matchers":[{"string":"在任何藥劑效果持續時間內,增加 #% 能量護盾充能率"},{"string":"在任何藥劑效果持續時間內,減少 #% 能量護盾充能率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1827657795"]}}} +{"ref":"#% increased Energy Shield Recovery rate","better":1,"matchers":[{"string":"增加 #% 能量護盾恢復率"},{"string":"減少 #% 能量護盾恢復率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_988575597"],"implicit":["implicit.stat_988575597"],"fractured":["fractured.stat_988575597"],"scourge":["scourge.stat_988575597"]}}} +{"ref":"#% increased Energy Shield Recovery Rate if you haven't Killed Recently","better":1,"matchers":[{"string":"若你近期沒有擊殺,增加 #% 能量護盾恢復率"},{"string":"若你近期沒有擊殺,減少 #% 能量護盾恢復率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2698606393"]}}} +{"ref":"#% increased Energy Shield Recovery Rate while affected by Discipline","better":1,"matchers":[{"string":"被紀律影響時增加 #% 能量護盾恢復率"},{"string":"被紀律影響時減少 #% 能量護盾恢復率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_80470845"]}}} +{"ref":"#% increased Enfeeble Curse Effect","better":1,"matchers":[{"string":"增加 #% 衰弱的詛咒效果"},{"string":"減少 #% 衰弱的詛咒效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3293830776"],"enchant":["enchant.stat_3293830776"]}}} +{"ref":"#% increased Enfeeble Duration","better":1,"matchers":[{"string":"增加 #% 衰弱持續時間"},{"string":"減少 #% 衰弱持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_516587640"]}}} +{"ref":"#% increased Engineering Experience gained","better":1,"matchers":[{"string":"增加 #% 獲得工程經驗值"},{"string":"減少 #% 獲得工程經驗值","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1372426763"]}}} +{"ref":"#% increased Engineering speed","better":1,"matchers":[{"string":"增加 #% 工程速度"},{"string":"減少 #% 工程速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3211817426"],"implicit":["implicit.stat_3211817426"],"fractured":["fractured.stat_3211817426"]}}} +{"ref":"#% increased Essence Drain Damage","better":1,"matchers":[{"string":"增加 #% 靈魂吸取傷害"},{"string":"減少 #% 靈魂吸取傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3469967347"]}}} +{"ref":"#% increased Essence Drain Duration","better":1,"matchers":[{"string":"增加 #% 靈魂吸取持續時間"},{"string":"減少 #% 靈魂吸取持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3698833303"]}}} +{"ref":"#% increased Ethereal Knives Damage","better":1,"matchers":[{"string":"增加 #% 虛空匕首傷害"},{"string":"減少 #% 虛空匕首傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3514973342"]}}} +{"ref":"#% increased Ethereal Knives Projectile Speed","better":1,"matchers":[{"string":"增加 #% 虛空匕首投射物速度"},{"string":"減少 #% 虛空匕首投射物速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_760994068"]}}} +{"ref":"#% increased Evasion and Energy Shield","better":1,"matchers":[{"string":"增加 #% 閃避與能量護盾"},{"string":"減少 #% 閃避與能量護盾","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1999113824"],"fractured":["fractured.stat_1999113824"],"crafted":["crafted.stat_1999113824"]}}} +{"ref":"#% increased Evasion Rating","better":1,"matchers":[{"string":"增加 #% 閃避值"},{"string":"減少 #% 閃避值","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_124859000","explicit.stat_2106365538"],"implicit":["implicit.stat_124859000","implicit.stat_2106365538"],"fractured":["fractured.stat_124859000","fractured.stat_2106365538"],"crafted":["crafted.stat_124859000","crafted.stat_2106365538"]}}} +{"ref":"#% increased Evasion Rating and Armour","better":1,"matchers":[{"string":"增加 #% 閃避值與護甲"},{"string":"減少 #% 閃避值與護甲","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3366029652"]}}} +{"ref":"#% increased Evasion Rating during Effect","better":1,"matchers":[{"string":"效果持續時間,增加 #% 閃避值"}],"trade":{"ids":{"explicit":["explicit.stat_299054775"],"fractured":["fractured.stat_299054775"]}}} +{"ref":"#% increased Evasion Rating during Onslaught","better":1,"matchers":[{"string":"獲得猛攻時增加 #% 閃避值"},{"string":"獲得猛攻時減少 #% 閃避值","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_156734303"]}}} +{"ref":"#% increased Evasion Rating from Equipped Helmet and Boots","better":1,"matchers":[{"string":"增加 #% 裝備的頭盔和鞋子的閃避值"},{"string":"減少 #% 裝備的頭盔和鞋子的閃避值","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_623823763"]}}} +{"ref":"#% increased Evasion Rating if you have been Hit Recently","better":1,"matchers":[{"string":"若近期內有被擊中,增加 #% 閃避值"},{"string":"若近期內有被擊中,減少 #% 閃避值","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1073310669"]}}} +{"ref":"#% increased Evasion Rating if you've Cast Dash recently","better":1,"matchers":[{"string":"若你近期有施放幻步,增加 #% 閃避值"},{"string":"若你近期有施放幻步,減少 #% 閃避值","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_237513297"]}}} +{"ref":"#% increased Evasion Rating per 10 Intelligence","better":1,"matchers":[{"string":"每 10 點智慧增加 #% 閃避值"}],"trade":{"ids":{"explicit":["explicit.stat_810772344"]}}} +{"ref":"#% increased Evasion Rating per 500 Maximum Mana, up to 100%","better":1,"matchers":[{"string":"每 500 最大魔力增加 #% 閃避值,最多 100%"}],"trade":{"ids":{"explicit":["explicit.stat_1687962297"]}}} +{"ref":"#% increased Evasion Rating per Frenzy Charge","better":1,"matchers":[{"string":"每個狂怒球增加 #% 閃避值"},{"string":"每個狂怒球減少 #% 閃避值","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_660404777"],"implicit":["implicit.stat_660404777"]}}} +{"ref":"#% increased Evasion Rating while Focused","better":1,"matchers":[{"string":"專注時增加 #% 閃避值"}],"trade":{"ids":{"explicit":["explicit.stat_3839620417"],"fractured":["fractured.stat_3839620417"],"crafted":["crafted.stat_3839620417"]}}} +{"ref":"#% increased Evasion Rating while moving","better":1,"matchers":[{"string":"移動時增加 #% 閃避值"},{"string":"移動時減少 #% 閃避值","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_734823525"],"fractured":["fractured.stat_734823525"]}}} +{"ref":"#% increased Evasion Rating while Phasing","better":1,"matchers":[{"string":"迷蹤時增加 #% 閃避值"}],"trade":{"ids":{"explicit":["explicit.stat_402176724"]}}} +{"ref":"#% increased Experience gain","better":1,"fromAreaMods":true,"matchers":[{"string":"增加 #% 經驗獲得"},{"string":"減少 #% 經驗獲得","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3666934677","explicit.stat_57434274"],"implicit":["implicit.stat_3666934677"],"enchant":["enchant.stat_57434274"]}}} +{"ref":"#% increased Experience Gain for Corrupted Gems","better":1,"matchers":[{"string":"增加 #% 被汙染寶石經驗獲得"},{"string":"減少 #% 被汙染寶石經驗獲得","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_47271484"]}}} +{"ref":"#% increased Experience Gain of Gems","better":1,"matchers":[{"string":"增加 #% 寶石經驗獲得"},{"string":"減少 #% 寶石經驗獲得","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3808869043"]}}} +{"ref":"#% increased Explicit Ailment Modifier magnitudes","better":1,"matchers":[{"string":"增加 #% 變動異常狀態詞綴的大小"},{"string":"減少 #% 變動異常狀態詞綴的大小","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3086446674"]}}} +{"ref":"#% increased Explicit Attribute Modifier magnitudes","better":1,"matchers":[{"string":"增加 #% 變動能力詞綴的大小"},{"string":"減少 #% 變動能力詞綴的大小","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3243861579"]}}} +{"ref":"#% increased Explicit Caster Damage Modifier magnitudes","better":1,"matchers":[{"string":"增加 #% 變動法術傷害詞綴的大小"},{"string":"減少 #% 變動法術傷害詞綴的大小","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1498186316"]}}} +{"ref":"#% increased Explicit Chaos Modifier magnitudes","better":1,"matchers":[{"string":"增加 #% 變動混沌詞綴的大小"},{"string":"減少 #% 變動混沌詞綴的大小","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3196512240"]}}} +{"ref":"#% increased Explicit Cold Modifier magnitudes","better":1,"matchers":[{"string":"增加 #% 變動冰冷詞綴的大小"},{"string":"減少 #% 變動冰冷詞綴的大小","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3206904707"]}}} +{"ref":"#% increased Explicit Critical Modifier magnitudes","better":1,"matchers":[{"string":"增加 #% 變動暴擊詞綴的大小"},{"string":"減少 #% 變動暴擊詞綴的大小","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2393315299"]}}} +{"ref":"#% increased Explicit Damage Modifier magnitudes","better":1,"matchers":[{"string":"增加 #% 變動傷害詞綴的大小"},{"string":"減少 #% 變動傷害詞綴的大小","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2979443822"]}}} +{"ref":"#% increased Explicit Defence Modifier magnitudes","better":1,"matchers":[{"string":"增加 #% 變動防禦詞綴的大小"},{"string":"減少 #% 變動防禦詞綴的大小","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3300369861"]}}} +{"ref":"#% increased Explicit Fire Modifier magnitudes","better":1,"matchers":[{"string":"增加 #% 變動火焰詞綴的大小"},{"string":"減少 #% 變動火焰詞綴的大小","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3574578302"]}}} +{"ref":"#% increased Explicit Life Modifier magnitudes","better":1,"matchers":[{"string":"增加 #% 變動生命詞綴的大小"},{"string":"減少 #% 變動生命詞綴的大小","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1308141466"]}}} +{"ref":"#% increased Explicit Lightning Modifier magnitudes","better":1,"matchers":[{"string":"增加 #% 變動閃電詞綴的大小"},{"string":"減少 #% 變動閃電詞綴的大小","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3624940721"]}}} +{"ref":"#% increased Explicit Mana Modifier magnitudes","better":1,"matchers":[{"string":"增加 #% 變動魔力詞綴的大小"},{"string":"減少 #% 變動魔力詞綴的大小","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3514984677"]}}} +{"ref":"#% increased Explicit Modifier magnitudes","better":1,"fromAreaMods":true,"matchers":[{"string":"增加 #% 變動詞綴大小"},{"string":"減少 #% 變動詞綴大小","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1581907402"]}}} +{"ref":"#% increased Explicit Physical Modifier magnitudes","better":1,"matchers":[{"string":"增加 #% 變動物理詞綴的大小"},{"string":"減少 #% 變動物理詞綴的大小","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1335369947"]}}} +{"ref":"#% increased Explicit Resistance Modifier magnitudes","better":1,"matchers":[{"string":"增加 #% 變動抗性詞綴的大小"},{"string":"減少 #% 變動抗性詞綴的大小","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1972391381"]}}} +{"ref":"#% increased Explicit Speed Modifier magnitudes","better":1,"matchers":[{"string":"增加 #% 變動速度詞綴的大小"},{"string":"減少 #% 變動速度詞綴的大小","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_363924732"]}}} +{"ref":"#% increased Explosive Concoction Area of Effect","better":1,"matchers":[{"string":"增加 #% 爆裂物範圍效果"},{"string":"減少 #% 爆裂物範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4100281103"]}}} +{"ref":"#% increased Explosive Concoction Damage","better":1,"matchers":[{"string":"增加 #% 爆裂物傷害"},{"string":"減少 #% 爆裂物傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_383710904"]}}} +{"ref":"#% increased Explosive Placement Range","better":1,"fromAreaMods":true,"matchers":[{"string":"增加 #% 爆裂物放置範圍"},{"string":"減少 #% 爆裂物放置範圍"}],"trade":{"ids":{"explicit":["explicit.stat_1539368271"],"implicit":["implicit.stat_1539368271"]}}} +{"ref":"#% increased Explosive Radius","better":1,"fromAreaMods":true,"matchers":[{"string":"增加 #% 爆炸範圍"}],"trade":{"ids":{"implicit":["implicit.stat_3289828378"]}}} +{"ref":"#% increased Exsanguinate Duration","better":1,"matchers":[{"string":"增加 #% 抽血持續時間"},{"string":"減少 #% 抽血持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_292721070"]}}} +{"ref":"#% increased Eye of Winter Damage","better":1,"matchers":[{"string":"增加 #% 凜冬之眼傷害"},{"string":"減少 #% 凜冬之眼傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1015388938"]}}} +{"ref":"#% increased Eye of Winter Projectile Speed","better":1,"matchers":[{"string":"增加 #% 凜冬之眼投射物速度"},{"string":"減少 #% 凜冬之眼投射物速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1739537617"]}}} +{"ref":"#% increased Fire Damage","better":1,"matchers":[{"string":"增加 #% 火焰傷害"},{"string":"減少 #% 火焰傷害","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_fire_damage"],"explicit":["explicit.stat_3962278098"],"implicit":["implicit.stat_3962278098"],"fractured":["fractured.stat_3962278098"],"scourge":["scourge.stat_3962278098"],"crafted":["crafted.stat_3962278098"]}}} +{"ref":"#% increased Fire Damage if you have used a Cold Skill Recently","better":1,"matchers":[{"string":"若近期有使用冰冷技能,增加 #% 火焰傷害"},{"string":"若近期有使用冰冷技能,減少 #% 火焰傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4167600809"]}}} +{"ref":"#% increased Fire Damage per 1% Missing Fire Resistance, up to a maximum of 300%","better":1,"matchers":[{"string":"每 1% 失去的火焰抗性增加 #% 火焰傷害,最多 300%"},{"string":"每 1% 失去的火焰抗性減少 #% 火焰傷害,最多 300%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1060236362"]}}} +{"ref":"#% increased Fire Damage per 20 Strength","better":1,"matchers":[{"string":"每 20 點力量增加 #% 火焰傷害"},{"string":"每 20 點力量減少 #% 火焰傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2241902512"],"implicit":["implicit.stat_2241902512"]}}} +{"ref":"#% increased Fire Damage taken","better":1,"matchers":[{"string":"增加 #% 承受的火焰傷害"},{"string":"減少 #% 承受的火焰傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3743301799"],"implicit":["implicit.stat_3743301799"],"fractured":["fractured.stat_3743301799"],"scourge":["scourge.stat_3743301799"]}}} +{"ref":"#% increased Fire Damage while affected by Anger","better":1,"matchers":[{"string":"被憤怒影響時增加 #% 火焰傷害"},{"string":"被憤怒影響時減少 #% 火焰傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3337107517"]}}} +{"ref":"#% increased Fire Damage while affected by Herald of Ash","better":1,"matchers":[{"string":"被灰燼之捷影響時,增加 #% 火焰傷害"},{"string":"被灰燼之捷影響時,減少 #% 火焰傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2775776604"]}}} +{"ref":"#% increased Fire Damage with Attack Skills","better":1,"matchers":[{"string":"攻擊技能增加 #% 火焰傷害"},{"string":"攻擊技能減少 #% 火焰傷害","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_fire_damage_with_attack_skills"],"implicit":["implicit.stat_2468413380"]}}} +{"ref":"#% increased Fire Damage with Hits and Ailments against Bleeding Enemies","better":1,"matchers":[{"string":"對流血的敵人增加 #% 擊中和異常狀態的火焰傷害"},{"string":"對流血的敵人減少 #% 擊中和異常狀態的火焰傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3703926412"]}}} +{"ref":"#% increased Fire Damage with Hits and Ailments against Blinded Enemies","better":1,"matchers":[{"string":"擊中和異常狀態對致盲敵人增加 #% 火焰傷害"},{"string":"擊中和異常狀態對致盲敵人減少 #% 火焰傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1601181226"]}}} +{"ref":"#% increased Fire Damage with Spell Skills","better":1,"matchers":[{"string":"法術技能增加 #% 火焰傷害"},{"string":"法術技能減少 #% 火焰傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_361162316"]}}} +{"ref":"#% increased Fire Resistance","better":1,"matchers":[{"string":"增加 #% 火焰抗性"},{"string":"減少 #% 火焰抗性","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1680060098"]}}} +{"ref":"#% increased Fire Spell Damage","better":1,"matchers":[{"string":"增加 #% 火焰法術傷害 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_fire_spell_damage"]}}} +{"ref":"#% increased Fire Trap Burning Damage","better":1,"matchers":[{"string":"增加 #% 火焰陷阱燃燒傷害"},{"string":"減少 #% 火焰陷阱燃燒傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_345703394"]}}} +{"ref":"#% increased Fire Trap Burning Ground Duration","better":1,"matchers":[{"string":"增加 #% 火焰陷阱燃燒地面持續時間"},{"string":"減少 #% 火焰陷阱燃燒地面持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3279786746"]}}} +{"ref":"#% increased Fire Trap Damage","better":1,"matchers":[{"string":"增加 #% 火焰陷阱傷害"},{"string":"減少 #% 火焰陷阱傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_181307038"]}}} +{"ref":"#% increased Fireball Cast Speed","better":1,"matchers":[{"string":"增加 #% 火球施放速度"},{"string":"減少 #% 火球施放速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2231403318"]}}} +{"ref":"#% increased Fireball Damage","better":1,"matchers":[{"string":"增加 #% 火球傷害"},{"string":"減少 #% 火球傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2600498881"]}}} +{"ref":"#% increased Firestorm Damage","better":1,"matchers":[{"string":"增加 #% 烈炎風暴傷害"},{"string":"減少 #% 烈炎風暴傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2201904285"]}}} +{"ref":"#% increased Firestorm Duration","better":1,"matchers":[{"string":"增加 #% 烈炎風暴持續時間"},{"string":"減少 #% 烈炎風暴持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1691710359"]}}} +{"ref":"#% increased Firestorm explosion Area of Effect","better":1,"matchers":[{"string":"增加 #% 烈炎風暴爆炸範圍效果"},{"string":"減少 #% 烈炎風暴爆炸範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3931013900"]}}} +{"ref":"#% increased Fish Bite Sensitivity","better":1,"matchers":[{"string":"增加 #% 魚咬靈敏度"}],"trade":{"ids":{"explicit":["explicit.stat_1296614065"],"implicit":["implicit.stat_1296614065"]}}} +{"ref":"#% increased Fishing Line Strength","better":1,"matchers":[{"string":"增加 #% 釣魚線強度"},{"string":"減少 #% 釣魚線強度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1842038569"],"fractured":["fractured.stat_1842038569"],"scourge":["scourge.stat_1842038569"]}}} +{"ref":"#% increased Fishing Range","better":1,"matchers":[{"string":"增加 #% 釣魚範圍"},{"string":"減少 #% 釣魚範圍","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_170497091"],"scourge":["scourge.stat_170497091"]}}} +{"ref":"#% increased Flame Dash Damage","better":1,"matchers":[{"string":"增加 #% 烈焰衝刺傷害"},{"string":"減少 #% 烈焰衝刺傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3013068851"]}}} +{"ref":"#% increased Flame Link Duration","better":1,"matchers":[{"string":"增加 #% 連結:烈焰持續時間"},{"string":"減少 #% 連結:烈焰持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3996051430"]}}} +{"ref":"#% increased Flame Surge Critical Strike Chance","better":1,"matchers":[{"string":"增加 #% 怒焰奔騰暴擊率"},{"string":"減少 #% 怒焰奔騰暴擊率","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1030003515"]}}} +{"ref":"#% increased Flame Surge Damage","better":1,"matchers":[{"string":"增加 #% 怒焰奔騰傷害"},{"string":"減少 #% 怒焰奔騰傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1491182794"]}}} +{"ref":"#% increased Flame Surge Damage with Hits and Ailments against Burning Enemies","better":1,"matchers":[{"string":"對燃燒的敵人增加 #% 怒焰奔騰擊中和異常狀態傷害"},{"string":"對燃燒的敵人減少 #% 怒焰奔騰擊中和異常狀態傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_430890565"]}}} +{"ref":"#% increased Flameblast Area of Effect","better":1,"matchers":[{"string":"增加 #% 烈焰爆破範圍效果"},{"string":"減少 #% 烈焰爆破範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1532964880"]}}} +{"ref":"#% increased Flameblast Critical Strike Chance","better":1,"matchers":[{"string":"增加 #% 烈焰爆破暴擊率"},{"string":"減少 #% 烈焰爆破暴擊率","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3053448465"]}}} +{"ref":"#% increased Flameblast Damage","better":1,"matchers":[{"string":"增加 #% 烈焰爆破傷害"},{"string":"減少 #% 烈焰爆破傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_169405468"]}}} +{"ref":"#% increased Flammability Curse Effect","better":1,"matchers":[{"string":"增加 #% 易燃的詛咒效果"},{"string":"減少 #% 易燃的詛咒效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_282417259"],"enchant":["enchant.stat_282417259"]}}} +{"ref":"#% increased Flammability Duration","better":1,"matchers":[{"string":"增加 #% 易燃持續時間"},{"string":"減少 #% 易燃持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2166622264"]}}} +{"ref":"#% increased Flask Charges gained","better":1,"matchers":[{"string":"增加 #% 藥劑充能獲取"},{"string":"玩家增加 #% 獲得藥劑充能"},{"string":"減少 #% 藥劑充能獲取","negate":true},{"string":"玩家減少 #% 獲得藥劑充能","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1452809865"],"implicit":["implicit.stat_1452809865"],"fractured":["fractured.stat_1452809865"],"scourge":["scourge.stat_1452809865"],"crafted":["crafted.stat_1452809865"]}}} +{"ref":"#% increased Flask Charges gained during any Flask Effect","better":1,"matchers":[{"string":"任何藥劑效果持續時間內,增加 #% 藥劑充能"},{"string":"任何藥劑效果持續時間內,減少 #% 藥劑充能","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_662803072"]}}} +{"ref":"#% increased Flask Charges gained from Kills with Melee Weapons","better":1,"matchers":[{"string":"增加 #% 來自近戰武器擊殺的藥劑充能"},{"string":"減少 #% 來自近戰武器擊殺的藥劑充能","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_6637015"]}}} +{"ref":"#% increased Flask Effect Duration","better":1,"matchers":[{"string":"增加 #% 藥劑效果持續時間"},{"string":"減少 #% 藥劑效果持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3741323227"],"implicit":["implicit.stat_3741323227"],"fractured":["fractured.stat_3741323227"],"enchant":["enchant.stat_3741323227"],"crafted":["crafted.stat_3741323227"]}}} +{"ref":"#% increased Flask Effect Duration per Level","better":1,"matchers":[{"string":"每等級增加 #% 藥劑效果持續時間"},{"string":"每等級減少 #% 藥劑效果持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_981878473"]}}} +{"ref":"#% increased Flask Life Recovery rate","better":1,"matchers":[{"string":"增加 #% 藥劑生命恢復率"},{"string":"減少 #% 藥劑生命恢復率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_51994685"],"fractured":["fractured.stat_51994685"],"scourge":["scourge.stat_51994685"],"crafted":["crafted.stat_51994685"]}}} +{"ref":"#% increased Flask Mana Recovery rate","better":1,"matchers":[{"string":"增加 #% 藥劑魔力恢復率"},{"string":"減少 #% 藥劑魔力恢復率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1412217137"],"fractured":["fractured.stat_1412217137"],"scourge":["scourge.stat_1412217137"],"crafted":["crafted.stat_1412217137"]}}} +{"ref":"#% increased Flesh Offering Duration","better":1,"matchers":[{"string":"增加 #% 血肉奉獻持續時間"},{"string":"減少 #% 血肉奉獻持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_101788216"]}}} +{"ref":"#% increased Flicker Strike Damage","better":1,"matchers":[{"string":"增加 #% 閃現打擊傷害"},{"string":"減少 #% 閃現打擊傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_464448327"]}}} +{"ref":"#% increased Flicker Strike Damage per Frenzy Charge","better":1,"matchers":[{"string":"每個狂怒球增加閃現打擊 #% 傷害"},{"string":"每個狂怒球減少閃現打擊 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3701991680"]}}} +{"ref":"#% increased Forbidden Rite Damage","better":1,"matchers":[{"string":"增加 #% 禁忌儀式傷害"},{"string":"減少 #% 禁忌儀式傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3383175526"]}}} +{"ref":"#% increased Forbidden Rite Projectile Speed","better":1,"matchers":[{"string":"增加 #% 禁忌儀式投射物速度"},{"string":"減少 #% 禁忌儀式投射物速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3316480899"]}}} +{"ref":"#% increased Freeze Duration on Enemies","better":1,"matchers":[{"string":"增加 #% 敵人冰凍持續時間"},{"string":"減少 #% 敵人冰凍持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1073942215"],"implicit":["implicit.stat_1073942215"],"fractured":["fractured.stat_1073942215"],"crafted":["crafted.stat_1073942215"]}}} +{"ref":"#% increased Freeze Duration on you during Effect","better":-1,"matchers":[{"string":"效果持續時間,增加 #% 你身上冰凍持續時間"},{"string":"效果持續時間,減少 #% 你身上冰凍持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_774474440"],"fractured":["fractured.stat_774474440"]}}} +{"ref":"#% increased Freezing Pulse Cast Speed","better":1,"matchers":[{"string":"增加 #% 冰霜脈衝施放速度"},{"string":"減少 #% 冰霜脈衝施放速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1894493605"]}}} +{"ref":"#% increased Freezing Pulse Damage","better":1,"matchers":[{"string":"增加 #% 冰霜脈衝傷害"},{"string":"減少 #% 冰霜脈衝傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_819852672"]}}} +{"ref":"#% increased Freezing Pulse Projectile Speed","better":1,"matchers":[{"string":"增加 #% 冰霜脈衝投射物速度"},{"string":"減少 #% 冰霜脈衝投射物速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2003026405"]}}} +{"ref":"#% increased Frenzy Charge Duration","better":1,"matchers":[{"string":"增加 #% 狂怒球持續時間"},{"string":"減少 #% 狂怒球持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3338298622"],"implicit":["implicit.stat_3338298622"],"enchant":["enchant.stat_3338298622"]}}} +{"ref":"#% increased Frenzy Damage","better":1,"matchers":[{"string":"增加 #% 狂怒傷害"},{"string":"減少 #% 狂怒傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_522780692"]}}} +{"ref":"#% increased Frenzy Damage per Frenzy Charge","better":1,"matchers":[{"string":"每個狂怒球增加 #% 狂怒傷害"},{"string":"每個狂怒球減少 #% 狂怒傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1255310381"]}}} +{"ref":"#% increased Frost Blades Damage","better":1,"matchers":[{"string":"增加 #% 冰霜之刃的傷害"},{"string":"減少 #% 冰霜之刃的傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3449510470"]}}} +{"ref":"#% increased Frost Blades Projectile Speed","better":1,"matchers":[{"string":"增加 #% 冰霜之刃的投射物速度"},{"string":"減少 #% 冰霜之刃的投射物速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1087923932"]}}} +{"ref":"#% increased Frost Bomb Area of Effect","better":1,"matchers":[{"string":"增加 #% 寒霜爆範圍效果"},{"string":"減少 #% 寒霜爆範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1451372148"]}}} +{"ref":"#% increased Frost Bomb Damage","better":1,"matchers":[{"string":"增加 #% 寒霜爆傷害"},{"string":"減少 #% 寒霜爆傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2380598805"]}}} +{"ref":"#% increased Frost Wall Duration","better":1,"matchers":[{"string":"增加 #% 冰牆持續時間"},{"string":"減少 #% 冰牆持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_775034903"]}}} +{"ref":"#% increased Frostbite Curse Effect","better":1,"matchers":[{"string":"增加 #% 凍傷的詛咒效果"},{"string":"減少 #% 凍傷的詛咒效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1443215722"],"enchant":["enchant.stat_1443215722"]}}} +{"ref":"#% increased Frostbite Duration","better":1,"matchers":[{"string":"增加 #% 凍傷持續時間"},{"string":"減少 #% 凍傷持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1783696476"]}}} +{"ref":"#% increased Frostbolt Cast Speed","better":1,"matchers":[{"string":"增加 #% 寒冰彈施放速度"},{"string":"減少 #% 寒冰彈施放速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4231484190"]}}} +{"ref":"#% increased Frostbolt Damage","better":1,"matchers":[{"string":"增加 #% 寒冰彈傷害"},{"string":"減少 #% 寒冰彈傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2078274993"]}}} +{"ref":"#% increased Galvanic Arrow Damage","better":1,"matchers":[{"string":"電流箭矢增加 #% 傷害"},{"string":"電流箭矢減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2634945088"]}}} +{"ref":"#% increased Glacial Cascade Area of Effect","better":1,"matchers":[{"string":"增加 #% 冰川之刺範圍效果"},{"string":"減少 #% 冰川之刺範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_88796379"]}}} +{"ref":"#% increased Glacial Cascade Damage","better":1,"matchers":[{"string":"增加 #% 冰川之刺傷害"},{"string":"減少 #% 冰川之刺傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_451037529"]}}} +{"ref":"#% increased Glacial Hammer Damage","better":1,"matchers":[{"string":"增加 #% 冰霜之錘傷害"},{"string":"減少 #% 冰霜之錘傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2732675053"]}}} +{"ref":"#% increased Global Accuracy Rating","better":1,"matchers":[{"string":"增加 #% 全域命中值"},{"string":"減少 #% 全域命中值","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_624954515"],"implicit":["implicit.stat_624954515"],"fractured":["fractured.stat_624954515"],"scourge":["scourge.stat_624954515"]}}} +{"ref":"#% increased Global Armour while you have no Energy Shield","better":1,"matchers":[{"string":"當你沒有能量護盾時增加 #% 全域護甲值"},{"string":"當你沒有能量護盾時減少 #% 全域護甲值","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3827349913"]}}} +{"ref":"#% increased Global Attack Speed per Green Socket","better":1,"matchers":[{"string":"每個綠色插槽增加 #% 全域攻擊速度"}],"trade":{"ids":{"explicit":["explicit.stat_250876318"]}}} +{"ref":"#% increased Global Critical Strike Chance","better":1,"matchers":[{"string":"增加 #% 全域暴擊率"},{"string":"減少 #% 全域暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_587431675"],"implicit":["implicit.stat_587431675"],"fractured":["fractured.stat_587431675"],"scourge":["scourge.stat_587431675"],"crafted":["crafted.stat_587431675"]}}} +{"ref":"#% increased Global Critical Strike Chance if Corrupted","better":1,"matchers":[{"string":"若已汙染增加 #% 全域暴擊率"},{"string":"若已汙染減少 #% 全域暴擊率","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4023723828"]}}} +{"ref":"#% increased Global Critical Strike Chance per Level","better":1,"matchers":[{"string":"每等級增加 #% 全域暴擊率"},{"string":"每等級減少 #% 全域暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3081076859"]}}} +{"ref":"#% increased Global Critical Strike Chance when in Main Hand","better":1,"matchers":[{"string":"裝備於主手時增加 #% 全域暴擊率"}],"trade":{"ids":{"explicit":["explicit.stat_3404168630"]}}} +{"ref":"#% increased Global Damage","better":1,"matchers":[{"string":"增加 #% 全域傷害"},{"string":"減少 #% 全域傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_819529588"]}}} +{"ref":"#% increased Global Defences","better":1,"matchers":[{"string":"增加 #% 全域防禦"},{"string":"減少 #% 全域防禦","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1389153006"],"implicit":["implicit.stat_1389153006"],"fractured":["fractured.stat_1389153006"],"scourge":["scourge.stat_1389153006"]}}} +{"ref":"#% increased Global Defences per White Socket","better":1,"matchers":[{"string":"每個白色插槽增加 #% 全域防禦"},{"string":"每個白色插槽減少 #% 全域防禦","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_967108924"]}}} +{"ref":"#% increased Global Evasion Rating when on Full Life","better":1,"matchers":[{"string":"滿血時增加 #% 全域閃避值"},{"string":"滿血時減少 #% 全域閃避值","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_88817332"]}}} +{"ref":"#% increased Global Evasion Rating when on Low Life","better":1,"matchers":[{"string":"貧血時增加 #% 全域閃避值"},{"string":"貧血時減少 #% 全域閃避值","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2695354435"]}}} +{"ref":"#% increased Global maximum Energy Shield and reduced Lightning Resistance","better":1,"matchers":[{"string":"增加 #% 全域能量護盾和減少閃電抗性"},{"string":"減少 #% 全域能量護盾和增加閃電抗性","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1381972535"]}}} +{"ref":"#% increased Global Physical Damage","better":1,"matchers":[{"string":"增加 #% 全域物理傷害"},{"string":"減少 #% 全域物理傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1310194496"],"implicit":["implicit.stat_1310194496"],"fractured":["fractured.stat_1310194496"],"scourge":["scourge.stat_1310194496"],"crafted":["crafted.stat_1310194496"]}}} +{"ref":"#% increased Global Physical Damage while Frozen","better":1,"matchers":[{"string":"被冰凍時增加 #% 全域物理攻擊"},{"string":"被冰凍時減少 #% 全域物理攻擊","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2614654450"]}}} +{"ref":"#% increased Global Physical Damage with Weapons per Red Socket","better":1,"matchers":[{"string":"武器上每個紅色插槽增加 #% 全域物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2112615899"]}}} +{"ref":"#% increased Golem Damage for each Type of Golem you have Summoned","better":1,"matchers":[{"string":"你所召喚的每一種魔像為你的魔像增加 #% 傷害"},{"string":"你所召喚的每一種魔像為你的魔像減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2114157293"]}}} +{"ref":"#% increased Ground Slam Area of Effect","better":1,"matchers":[{"string":"增加 #% 裂地之擊範圍"},{"string":"減少 #% 裂地之擊範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3061969105"]}}} +{"ref":"#% increased Ground Slam Damage","better":1,"matchers":[{"string":"增加 #% 裂地之擊傷害"},{"string":"減少 #% 裂地之擊傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_108883700"]}}} +{"ref":"#% increased Heavy Strike Attack Speed","better":1,"matchers":[{"string":"增加 #% 沉重之擊攻擊速度"},{"string":"減少 #% 沉重之擊攻擊速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_343849491"]}}} +{"ref":"#% increased Heavy Strike Damage","better":1,"matchers":[{"string":"增加 #% 沉重之擊傷害"},{"string":"減少 #% 沉重之擊傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_954135826"]}}} +{"ref":"#% increased Herald of Ash Damage","better":1,"matchers":[{"string":"增加 #% 灰燼之捷傷害"},{"string":"減少 #% 灰燼之捷傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_767884542"]}}} +{"ref":"#% increased Herald of Ice Damage","better":1,"matchers":[{"string":"增加 #% 冰霜之捷傷害"},{"string":"減少 #% 冰霜之捷傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3910961021"],"enchant":["enchant.stat_3910961021"]}}} +{"ref":"#% increased Herald of Thunder Damage","better":1,"matchers":[{"string":"增加 #% 閃電之捷傷害"},{"string":"減少 #% 閃電之捷傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_558298545"]}}} +{"ref":"#% increased Hiring Fee for Agility Jobs","better":-1,"matchers":[{"string":"靈敏職位增加 #% 僱用費"},{"string":"靈敏職位減少 #% 僱用費","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2164793549"]}}} +{"ref":"#% increased Hiring Fee for Brute Force Jobs","better":-1,"matchers":[{"string":"蠻力職位增加 #% 僱用費"},{"string":"蠻力職位減少 #% 僱用費","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1018753640"]}}} +{"ref":"#% increased Hiring Fee for Counter-Thaumaturgy Jobs","better":-1,"matchers":[{"string":"解咒師職位增加 #% 僱用費"},{"string":"解咒師職位減少 #% 僱用費","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3063943261"]}}} +{"ref":"#% increased Hiring Fee for Deception Jobs","better":-1,"matchers":[{"string":"詐欺職位增加 #% 僱用費"},{"string":"詐欺職位減少 #% 僱用費","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2506681313"],"fractured":["fractured.stat_2506681313"]}}} +{"ref":"#% increased Hiring Fee for Demolition Jobs","better":-1,"matchers":[{"string":"拆除職位增加 #% 僱用費"},{"string":"拆除職位減少 #% 僱用費","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3680061663"],"fractured":["fractured.stat_3680061663"]}}} +{"ref":"#% increased Hiring Fee for Engineering Jobs","better":-1,"matchers":[{"string":"工程職位增加 #% 僱用費"},{"string":"工程職位減少 #% 僱用費","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2956083810"],"fractured":["fractured.stat_2956083810"]}}} +{"ref":"#% increased Hiring Fee for Lockpicking Jobs","better":-1,"matchers":[{"string":"開鎖職位增加 #% 僱用費"},{"string":"開鎖職位減少 #% 僱用費","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3391299828"],"fractured":["fractured.stat_3391299828"]}}} +{"ref":"#% increased Hiring Fee for Perception Jobs","better":-1,"matchers":[{"string":"洞察力職位增加 #% 僱用費"},{"string":"洞察力職位減少 #% 僱用費","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2885031631"],"fractured":["fractured.stat_2885031631"]}}} +{"ref":"#% increased Hiring Fee for Trap Disarmament Jobs","better":-1,"matchers":[{"string":"陷阱解除職位增加 #% 僱用費"},{"string":"陷阱解除職位減少 #% 僱用費","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2872715880"]}}} +{"ref":"#% increased Hiring Fee of Rogues","better":-1,"matchers":[{"string":"增加 #% 僱用費"},{"string":"增加 #% 盜賊的僱用費"},{"string":"減少 #% 僱用費","negate":true},{"string":"減少 #% 盜賊的僱用費","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2257592286"],"fractured":["fractured.stat_2257592286"]}}} +{"ref":"#% increased Ice Crash Area of Effect","better":1,"matchers":[{"string":"增加 #% 寒冰衝擊範圍效果"},{"string":"減少 #% 寒冰衝擊範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3930497977"]}}} +{"ref":"#% increased Ice Crash Damage","better":1,"matchers":[{"string":"增加 #% 寒冰衝擊傷害"},{"string":"減少 #% 寒冰衝擊傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1794090421"]}}} +{"ref":"#% increased Ice Nova Area of Effect","better":1,"matchers":[{"string":"增加 #% 冰霜新星範圍"},{"string":"減少 #% 冰霜新星範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_68809719"]}}} +{"ref":"#% increased Ice Nova Damage","better":1,"matchers":[{"string":"增加 #% 冰霜新星傷害"},{"string":"減少 #% 冰霜新星傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1086309398"]}}} +{"ref":"#% increased Ice Shot Area of Effect","better":1,"matchers":[{"string":"增加 #% 冰霜射擊範圍"},{"string":"減少 #% 冰霜射擊範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1962401751"]}}} +{"ref":"#% increased Ice Shot Damage","better":1,"matchers":[{"string":"增加 #% 冰霜射擊傷害"},{"string":"減少 #% 冰霜射擊傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3026752303"]}}} +{"ref":"#% increased Ice Spear Critical Strike Chance in second form","better":1,"matchers":[{"string":"增加 #% 冰矛第二型態的暴擊率"},{"string":"減少 #% 冰矛第二型態的暴擊率","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3510848926"]}}} +{"ref":"#% increased Ice Trap Area of Effect","better":1,"matchers":[{"string":"增加 #% 冰凍陷阱範圍效果"},{"string":"減少 #% 冰凍陷阱範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3367298564"]}}} +{"ref":"#% increased Ice Trap Damage","better":1,"matchers":[{"string":"增加 #% 冰凍陷阱傷害"},{"string":"減少 #% 冰凍陷阱傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4224384031"]}}} +{"ref":"#% increased Ignite Duration on Enemies","better":1,"matchers":[{"string":"增加 #% 敵人點燃持續時間"},{"string":"減少 #% 敵人點燃持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1086147743"],"implicit":["implicit.stat_1086147743"],"fractured":["fractured.stat_1086147743"],"crafted":["crafted.stat_1086147743"]}}} +{"ref":"#% increased Immortal Call Duration","better":1,"matchers":[{"string":"增加 #% 不朽怒嚎持續時間"},{"string":"減少 #% 不朽怒嚎持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1336543283"]}}} +{"ref":"#% increased Impale Effect","better":1,"matchers":[{"string":"增加 #% 穿刺效果"},{"string":"減少 #% 穿刺效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_298173317"],"fractured":["fractured.stat_298173317"],"scourge":["scourge.stat_298173317"]}}} +{"ref":"#% increased Incinerate Damage","better":1,"matchers":[{"string":"增加 #% 燒毀傷害"},{"string":"減少 #% 燒毀傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2246425134"]}}} +{"ref":"#% increased Incinerate Damage for each stage","better":1,"matchers":[{"string":"增加燒毀 #% 每一階的傷害"},{"string":"減少燒毀 #% 每一階的傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4151555126"]}}} +{"ref":"#% increased Infernal Blow Area of Effect","better":1,"matchers":[{"string":"增加 #% 煉獄之擊範圍"},{"string":"減少 #% 煉獄之擊範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4031295671"]}}} +{"ref":"#% increased Infernal Blow Damage","better":1,"matchers":[{"string":"增加 #% 煉獄之擊傷害"},{"string":"減少 #% 煉獄之擊傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_242838571"]}}} +{"ref":"#% increased Intelligence","better":1,"matchers":[{"string":"增加 #% 智慧"},{"string":"減少 #% 智慧","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_656461285"],"implicit":["implicit.stat_656461285"],"fractured":["fractured.stat_656461285"],"scourge":["scourge.stat_656461285"]}}} +{"ref":"#% increased Intelligence for each Unique Item Equipped","better":1,"matchers":[{"string":"每件裝備的傳奇物品增加 #% 智慧"}],"trade":{"ids":{"explicit":["explicit.stat_4207939995"]}}} +{"ref":"#% increased Intelligence Requirement","better":1,"matchers":[{"string":"無智慧需求","value":-100},{"string":"增加 #% 智慧需求"},{"string":"減少 #% 智慧需求","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_18234720"]}}} +{"ref":"#% increased Intuitive Link Duration","better":1,"matchers":[{"string":"增加 #% 連結:直覺持續時間"},{"string":"減少 #% 連結:直覺持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3545503197"]}}} +{"ref":"#% increased Item Quantity per White Socket","better":1,"matchers":[{"string":"每個白色插槽增加 #% 物品數量"}],"trade":{"ids":{"explicit":["explicit.stat_2340173293"]}}} +{"ref":"#% increased Item Rarity per White Socket","better":1,"matchers":[{"string":"每個白色插槽增加 #% 物品稀有度"}],"trade":{"ids":{"explicit":["explicit.stat_144675621"]}}} +{"ref":"#% increased Job Experience gain","better":1,"matchers":[{"string":"增加 #% 獲取職務經驗值"},{"string":"減少 #% 獲取職務經驗值","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3569230441"],"fractured":["fractured.stat_3569230441"]}}} +{"ref":"#% increased Job speed","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"增加 #% 工作速度"},{"string":"減少 #% 工作速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2978905446"],"fractured":["fractured.stat_2978905446"]}}} +{"ref":"#% increased Kinetic Blast Area of Effect","better":1,"matchers":[{"string":"增加 #% 力量爆破範圍效果"},{"string":"減少 #% 力量爆破範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1660758870"]}}} +{"ref":"#% increased Kinetic Blast Damage","better":1,"matchers":[{"string":"增加 #% 力量爆破傷害"},{"string":"減少 #% 力量爆破傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1007135105"]}}} +{"ref":"#% increased Knockback Distance","better":1,"matchers":[{"string":"增加 #% 擊退距離"},{"string":"減少 #% 擊退距離","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_565784293"]}}} +{"ref":"#% increased Lacerate Area of Effect","better":1,"matchers":[{"string":"增加 #% 破空斬範圍效果"},{"string":"減少 #% 破空斬範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3854723321"]}}} +{"ref":"#% increased Lacerate Critical Strike Chance","better":1,"matchers":[{"string":"增加 #% 破空斬暴擊率"},{"string":"減少 #% 破空斬暴擊率","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_578067404"]}}} +{"ref":"#% increased Lacerate Damage","better":1,"matchers":[{"string":"增加 #% 破空斬傷害"},{"string":"減少 #% 破空斬傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1844721010"]}}} +{"ref":"#% increased Leap Slam Area of Effect","better":1,"matchers":[{"string":"增加 #% 躍擊範圍"},{"string":"減少 #% 躍擊範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3367800526"]}}} +{"ref":"#% increased Leap Slam Attack Speed","better":1,"matchers":[{"string":"增加 #% 躍擊攻擊速度"},{"string":"減少 #% 躍擊攻擊速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3730999759"]}}} +{"ref":"#% increased Leap Slam Damage","better":1,"matchers":[{"string":"增加 #% 躍擊傷害"},{"string":"減少 #% 躍擊傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3850775143"]}}} +{"ref":"#% increased Life Recovered","better":1,"matchers":[{"string":"增加 #% 生命恢復"},{"string":"減少 #% 生命恢復","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1261982764"],"fractured":["fractured.stat_1261982764"]}}} +{"ref":"#% increased Life Recovery from Flasks","better":1,"matchers":[{"string":"增加 #% 來自藥劑的生命恢復"},{"string":"減少 #% 來自藥劑的生命恢復","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_821241191"],"implicit":["implicit.stat_821241191"],"scourge":["scourge.stat_821241191"]}}} +{"ref":"#% increased Life Recovery from Flasks while affected by Vitality","better":1,"matchers":[{"string":"被活力影響時增加藥劑 #% 生命恢復"},{"string":"被活力影響時減少藥劑 #% 生命恢復","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_362838683"]}}} +{"ref":"#% increased Life Recovery rate","better":1,"matchers":[{"string":"增加 #% 生命恢復率"},{"string":"減少 #% 生命恢復率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3240073117"],"implicit":["implicit.stat_3240073117"],"fractured":["fractured.stat_3240073117"],"scourge":["scourge.stat_3240073117"]}}} +{"ref":"#% increased Life Recovery Rate if you haven't Killed Recently","better":1,"matchers":[{"string":"若你近期沒有擊殺,增加 #% 生命恢復率"},{"string":"若你近期沒有擊殺,減少 #% 生命恢復率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3353368340"]}}} +{"ref":"#% increased Life Recovery Rate per 10 Strength on Allocated Passives in Radius","better":1,"matchers":[{"string":"範圍內已配置的天賦中,每 10 點力量增加 #% 生命恢復率"},{"string":"範圍內已配置的天賦中,每 10 點力量減少 #% 生命恢復率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_235105674"]}}} +{"ref":"#% increased Life Recovery Rate per 10 Strength on Unallocated Passives in Radius","better":1,"matchers":[{"string":"範圍內未配置的天賦中,每 10 點力量增加 #% 生命恢復率"},{"string":"範圍內未配置的天賦中,每 10 點力量減少 #% 生命恢復率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4144221848"]}}} +{"ref":"#% increased Life Recovery Rate while affected by Vitality","better":1,"matchers":[{"string":"被活力影響時,增加 #% 生命恢復率"},{"string":"被活力影響時,減少 #% 生命恢復率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2690790844"]}}} +{"ref":"#% increased Life Regeneration rate","better":1,"matchers":[{"string":"增加 #% 生命回復率"},{"string":"減少 #% 生命回復率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_44972811"],"implicit":["implicit.stat_44972811"],"fractured":["fractured.stat_44972811"],"scourge":["scourge.stat_44972811"],"crafted":["crafted.stat_44972811"]}}} +{"ref":"#% increased Life Reservation Efficiency of Skills","better":1,"matchers":[{"string":"增加 #% 技能的生命保留效用"},{"string":"減少 #% 技能的生命保留效用","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_635485889"],"fractured":["fractured.stat_635485889"]}}} +{"ref":"#% increased Light Radius","better":1,"matchers":[{"string":"增加 #% 照亮範圍"},{"string":"減少 #% 照亮範圍","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1263695895"],"implicit":["implicit.stat_1263695895"],"fractured":["fractured.stat_1263695895"],"enchant":["enchant.stat_1263695895"],"scourge":["scourge.stat_1263695895"]}}} +{"ref":"#% increased Light Radius during Effect","better":1,"matchers":[{"string":"效果持續時間,增加 #% 照亮範圍"}],"trade":{"ids":{"explicit":["explicit.stat_2745936267"]}}} +{"ref":"#% increased Lightning Arrow Area of Effect","better":1,"matchers":[{"string":"增加 #% 閃電箭矢範圍"},{"string":"減少 #% 閃電箭矢範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4129421630"]}}} +{"ref":"#% increased Lightning Arrow Damage","better":1,"matchers":[{"string":"增加 #% 閃電箭矢傷害"},{"string":"減少 #% 閃電箭矢傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2896672990"]}}} +{"ref":"#% increased Lightning Damage","better":1,"matchers":[{"string":"增加 #% 閃電傷害"},{"string":"減少 #% 閃電傷害","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_lightning_damage"],"explicit":["explicit.stat_2231156303"],"implicit":["implicit.stat_2231156303"],"fractured":["fractured.stat_2231156303"],"scourge":["scourge.stat_2231156303"],"crafted":["crafted.stat_2231156303"]}}} +{"ref":"#% increased Lightning Damage per 1% Lightning Resistance above 75%","better":1,"matchers":[{"string":"每 1% 點超過 75% 的閃電抗性,增加 #% 閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2642525868"]}}} +{"ref":"#% increased Lightning Damage per 10 Intelligence","better":1,"matchers":[{"string":"每 10 智慧增加 #% 閃電傷害"},{"string":"每 10 智慧減少 #% 閃電傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_990219738"]}}} +{"ref":"#% increased Lightning Damage per Frenzy Charge","better":1,"matchers":[{"string":"每個狂怒球增加 #% 閃電傷害"},{"string":"每個狂怒球減少 #% 閃電傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3693130674"]}}} +{"ref":"#% increased Lightning Damage while affected by Herald of Thunder","better":1,"matchers":[{"string":"被閃電之捷影響時,增加 #% 閃電傷害"},{"string":"被閃電之捷影響時,減少 #% 閃電傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_536957"]}}} +{"ref":"#% increased Lightning Damage while affected by Wrath","better":1,"matchers":[{"string":"被雷霆影響時,增加 #% 閃電傷害"},{"string":"被雷霆影響時,減少 #% 閃電傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_418293304"]}}} +{"ref":"#% increased Lightning Damage with Attack Skills","better":1,"matchers":[{"string":"攻擊技能增加 #% 閃電傷害"},{"string":"攻擊技能減少 #% 閃電傷害","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_lightning_damage_with_attack_skills"],"explicit":["explicit.stat_4208907162"],"implicit":["implicit.stat_4208907162"]}}} +{"ref":"#% increased Lightning Damage with Spell Skills","better":1,"matchers":[{"string":"法術技能增加 #% 閃電傷害"},{"string":"法術技能減少 #% 閃電傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3935031607"]}}} +{"ref":"#% increased Lightning Resistance","better":1,"matchers":[{"string":"增加 #% 閃電抗性"},{"string":"減少 #% 閃電抗性","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2249211872"]}}} +{"ref":"#% increased Lightning Spell Damage","better":1,"matchers":[{"string":"增加 #% 閃電法術傷害 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_lightning_spell_damage"]}}} +{"ref":"#% increased Lightning Spire Trap Throwing Speed","better":1,"matchers":[{"string":"增加 #% 鋒雷陷阱投擲速度"},{"string":"減少 #% 鋒雷陷阱投擲速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1978232370"]}}} +{"ref":"#% increased Lightning Strike Damage","better":1,"matchers":[{"string":"增加 #% 閃電打擊傷害"},{"string":"減少 #% 閃電打擊傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3630274354"]}}} +{"ref":"#% increased Lightning Tendrils Area of Effect","better":1,"matchers":[{"string":"增加 #% 電能釋放範圍"},{"string":"減少 #% 電能釋放範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1230050013"]}}} +{"ref":"#% increased Lightning Tendrils Critical Strike Chance","better":1,"matchers":[{"string":"增加 #% 電能釋放暴擊率"},{"string":"減少 #% 電能釋放暴擊率","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_12756171"]}}} +{"ref":"#% increased Lightning Tendrils Damage","better":1,"matchers":[{"string":"增加 #% 電能釋放傷害"},{"string":"減少 #% 電能釋放傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_39356080"]}}} +{"ref":"#% increased Lightning Trap Damage","better":1,"matchers":[{"string":"增加 #% 閃電陷阱的傷害"},{"string":"減少 #% 閃電陷阱的傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3131492956"]}}} +{"ref":"#% increased Lightning Trap Lightning Ailment Effect","better":1,"matchers":[{"string":"增加 #% 閃電陷阱的閃電異常狀態效果"},{"string":"減少 #% 閃電陷阱的閃電異常狀態效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4210927948"]}}} +{"ref":"#% increased Lightning Warp Cast Speed","better":1,"matchers":[{"string":"增加 #% 閃電傳送施放速度"},{"string":"減少 #% 閃電傳送施放速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1347575155"]}}} +{"ref":"#% increased Lightning Warp Damage","better":1,"matchers":[{"string":"增加 #% 閃電傳送傷害"},{"string":"減少 #% 閃電傳送傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_209345940"]}}} +{"ref":"#% increased Lockpicking Experience gained","better":1,"matchers":[{"string":"增加 #% 獲得開鎖經驗值"},{"string":"減少 #% 獲得開鎖經驗值","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2316712523"]}}} +{"ref":"#% increased Lockpicking speed","better":1,"matchers":[{"string":"增加 #% 開鎖速度"},{"string":"減少 #% 開鎖速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3312732077"],"implicit":["implicit.stat_3312732077"],"fractured":["fractured.stat_3312732077"]}}} +{"ref":"#% increased Magic Monsters","better":1,"fromAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"魔法怪物增加 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3873704640"],"fractured":["fractured.stat_3873704640"]}}} +{"ref":"#% increased Main Hand Critical Strike Chance per\nMurderous Eye Jewel affecting you, up to a maximum of 200%","better":1,"matchers":[{"string":"每顆影響你的殺戮之眼珠寶,增加 #% 主手暴擊率,最多 200%"},{"string":"每顆影響你的殺戮之眼珠寶,減少 #% 主手暴擊率"}],"trade":{"ids":{"explicit":["explicit.stat_3454830051"]}}} +{"ref":"#% increased Mana Cost of Skills during Effect","better":-1,"matchers":[{"string":"效果持續時間,增加 #% 技能的魔力消耗"},{"string":"效果持續時間,減少 #% 技能的魔力消耗","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_683273571"],"fractured":["fractured.stat_683273571"],"crafted":["crafted.stat_683273571"]}}} +{"ref":"#% increased Mana Recovered","better":1,"matchers":[{"string":"增加 #% 魔力恢復"},{"string":"減少 #% 魔力恢復","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1811130680"],"fractured":["fractured.stat_1811130680"]}}} +{"ref":"#% increased Mana Recovery from Flasks","better":1,"matchers":[{"string":"增加 #% 來自藥劑的魔力恢復"},{"string":"減少 #% 來自藥劑的魔力恢復","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2222186378"],"scourge":["scourge.stat_2222186378"]}}} +{"ref":"#% increased Mana Recovery rate","better":1,"matchers":[{"string":"增加 #% 魔力恢復率"},{"string":"減少 #% 魔力恢復率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3513180117"],"implicit":["implicit.stat_3513180117"],"fractured":["fractured.stat_3513180117"],"scourge":["scourge.stat_3513180117"]}}} +{"ref":"#% increased Mana Recovery Rate if you haven't Killed Recently","better":1,"matchers":[{"string":"若你近期沒有擊殺,增加 #% 魔力恢復率"},{"string":"若你近期沒有擊殺,減少 #% 魔力恢復率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_630994130"]}}} +{"ref":"#% increased Mana Recovery Rate per 10 Intelligence on Allocated Passives in Radius","better":1,"matchers":[{"string":"範圍內已配置的天賦中,每 10 點智慧增加 #% 魔力恢復率"},{"string":"範圍內已配置的天賦中,每 10 點智慧減少 #% 魔力恢復率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_514215387"]}}} +{"ref":"#% increased Mana Recovery Rate per 10 Intelligence on Unallocated Passives in Radius","better":1,"matchers":[{"string":"範圍內未配置的天賦中,每 10 點智慧增加 #% 魔力恢復率"},{"string":"範圍內未配置的天賦中,每 10 點智慧減少 #% 魔力恢復率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1439347620"]}}} +{"ref":"#% increased Mana Recovery Rate while affected by Clarity","better":1,"matchers":[{"string":"被清晰影響時,增加 #% 魔力恢復率"},{"string":"被清晰影響時,減少 #% 魔力恢復率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_556659145"]}}} +{"ref":"#% increased Mana Regeneration Rate","better":1,"matchers":[{"string":"增加 #% 魔力回復率"},{"string":"減少 #% 魔力回復率","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_mana_regen"],"explicit":["explicit.stat_789117908"],"implicit":["implicit.stat_789117908"],"fractured":["fractured.stat_789117908"],"scourge":["scourge.stat_789117908"],"crafted":["crafted.stat_789117908"]}}} +{"ref":"#% increased Mana Regeneration Rate during any Flask Effect","better":1,"matchers":[{"string":"任何藥劑效果持續時間內,增加 #% 魔力回復率"},{"string":"任何藥劑效果持續時間內,減少 #% 魔力回復率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2993091567"]}}} +{"ref":"#% increased Mana Regeneration Rate if you've cast a Spell Recently","better":1,"matchers":[{"string":"若你近期有施放魔法,增加 #% 魔力回復率"},{"string":"若你近期有施放魔法,減少 #% 魔力回復率","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1409388882"]}}} +{"ref":"#% increased Mana Regeneration Rate per Power Charge","better":1,"matchers":[{"string":"每個暴擊球增加 #% 魔力回復率"},{"string":"每個暴擊球減少 #% 魔力回復率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2847548062"],"implicit":["implicit.stat_2847548062"]}}} +{"ref":"#% increased Mana Regeneration Rate per Raised Spectre","better":1,"matchers":[{"string":"每隻喚醒幽魂增加 #% 魔力回復率"},{"string":"每隻喚醒幽魂減少 #% 魔力回復率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2666795121"]}}} +{"ref":"#% increased Mana Regeneration Rate while moving","better":1,"matchers":[{"string":"移動時增加 #% 魔力回復率"},{"string":"移動時減少 #% 魔力回復率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1327522346"],"fractured":["fractured.stat_1327522346"]}}} +{"ref":"#% increased Mana Regeneration Rate while Shocked","better":1,"matchers":[{"string":"被感電時,增加 #% 魔力回復率"},{"string":"被感電時,減少 #% 魔力回復率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2076519255"],"fractured":["fractured.stat_2076519255"]}}} +{"ref":"#% increased Mana Regeneration Rate while stationary","better":1,"matchers":[{"string":"站立時,增加 #% 魔力回復率"},{"string":"站立時減少 #% 魔力回復率"}],"trade":{"ids":{"explicit":["explicit.stat_3308030688"]}}} +{"ref":"#% increased Mana Reservation Efficiency of Curse Aura Skills","better":1,"matchers":[{"string":"增加 #% 詛咒光環技能的魔力保留效用"},{"string":"減少 #% 詛咒光環技能的魔力保留效用","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_443165947","explicit.stat_714566414"]}}} +{"ref":"#% increased Mana Reservation Efficiency of Herald Skills","better":1,"matchers":[{"string":"增加 #% 捷技能的魔力保留效用"},{"string":"減少 #% 捷技能的魔力保留效用","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3078295401"]}}} +{"ref":"#% increased Mana Reservation Efficiency of Skills","better":1,"matchers":[{"string":"增加 #% 技能的魔力保留效用"},{"string":"減少 #% 技能的魔力保留效用","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1269219558","explicit.stat_4237190083"],"implicit":["implicit.stat_1269219558","implicit.stat_4237190083"],"fractured":["fractured.stat_1269219558","fractured.stat_4237190083"],"scourge":["scourge.stat_1269219558","scourge.stat_4237190083"]}}} +{"ref":"#% increased Mana Reservation Efficiency of Skills per 250 total Attributes","better":1,"matchers":[{"string":"每 250 點總能力值,增加 #% 技能的魔力保留效用"},{"string":"每 250 點總能力值,減少 #% 技能的魔力保留效用","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1212083058","explicit.stat_2676451350"]}}} +{"ref":"#% increased Mana Reservation Efficiency of Skills Supported by Spellslinger","better":1,"matchers":[{"string":"增加 #% 被法術回音輔助技能的魔力保留效用"},{"string":"減少 #% 被法術回音輔助技能的魔力保留效用","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1341061286","enchant.stat_3305838454"]}}} +{"ref":"#% increased Manabond Area of Effect","better":1,"matchers":[{"string":"增加 #% 魔能束縛範圍效果"},{"string":"減少 #% 魔能束縛範圍效果t","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_441455463"]}}} +{"ref":"#% increased Manabond Damage","better":1,"matchers":[{"string":"增加 #% 魔能束縛傷害"},{"string":"減少 #% 魔能束縛傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1609869231"]}}} +{"ref":"#% increased maximum Energy Shield","better":1,"matchers":[{"string":"增加 #% 最大能量護盾"},{"string":"減少 #% 最大能量護盾","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2482852589"],"implicit":["implicit.stat_2482852589"],"fractured":["fractured.stat_2482852589"],"crafted":["crafted.stat_2482852589"]}}} +{"ref":"#% increased Maximum Energy Shield for each Corrupted Item Equipped","better":1,"matchers":[{"string":"每件裝備的已汙染物品增加 #% 最大能量護盾"},{"string":"每件裝備的已汙染物品減少 #% 最大能量護盾","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3916980068"]}}} +{"ref":"#% increased Maximum Energy Shield from Equipped Gloves and Boots","better":1,"matchers":[{"string":"增加 #% 裝備的手套和鞋子的最大能量護盾"},{"string":"減少 #% 裝備的手套和鞋子的最大能量護盾","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1234687045"]}}} +{"ref":"#% increased maximum Energy Shield if Corrupted","better":1,"matchers":[{"string":"若已汙染增加 #% 最大能量護盾"},{"string":"若已汙染減少 #% 最大能量護盾","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1025108940"]}}} +{"ref":"#% increased maximum Life","better":1,"matchers":[{"string":"增加 #% 最大生命"},{"string":"減少 #% 最大生命","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_983749596"],"implicit":["implicit.stat_983749596"],"fractured":["fractured.stat_983749596"],"scourge":["scourge.stat_983749596"],"crafted":["crafted.stat_983749596"]}}} +{"ref":"#% increased maximum Life and reduced Fire Resistance","better":1,"matchers":[{"string":"增加 #% 最大生命和減少火焰抗性"},{"string":"減少 #% 最大生命和增加火焰抗性","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3018691556"]}}} +{"ref":"#% increased Maximum Life for each Corrupted Item Equipped","better":1,"matchers":[{"string":"每件裝備的已汙染物品增加 #% 最大生命"},{"string":"每件裝備的已汙染物品減少 #% 最大生命","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4169430079"]}}} +{"ref":"#% increased maximum Life if Corrupted","better":1,"matchers":[{"string":"若已汙染增加 #% 最大生命"},{"string":"若已汙染減少 #% 最大生命","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3887484120"]}}} +{"ref":"#% increased Maximum Life if no Equipped Items are Corrupted","better":1,"matchers":[{"string":"所有裝備的物品無已汙染時增加 #% 最大生命"}],"trade":{"ids":{"explicit":["explicit.stat_2217962305"]}}} +{"ref":"#% increased Maximum Life per Abyss Jewel affecting you","better":1,"matchers":[{"string":"每顆裝備的的深淵珠寶增加 #% 最大生命"},{"string":"每顆裝備的的深淵珠寶減少 #% 最大生命","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3185671537"]}}} +{"ref":"#% increased Maximum Life per Grand Spectrum","better":1,"matchers":[{"string":"每顆巨光譜增加 #% 最大生命"},{"string":"每顆巨光譜減少 #% 最大生命","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_332217711"]}}} +{"ref":"#% increased maximum Life, Mana and Global Energy Shield","better":1,"matchers":[{"string":"增加 #% 最大生命、魔力和全域能量護盾"},{"string":"減少 #% 最大生命、魔力和全域能量護盾","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3899352861"]}}} +{"ref":"#% increased maximum Mana","better":1,"matchers":[{"string":"增加 #% 最大魔力"},{"string":"減少 #% 最大魔力","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2748665614"],"implicit":["implicit.stat_2748665614"],"fractured":["fractured.stat_2748665614"],"scourge":["scourge.stat_2748665614"],"crafted":["crafted.stat_2748665614"]}}} +{"ref":"#% increased maximum Mana and reduced Cold Resistance","better":1,"matchers":[{"string":"增加 #% 最大魔力和減少冰冷抗性"},{"string":"減少 #% 最大魔力和增加冰冷抗性","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1156957589"]}}} +{"ref":"#% increased Maximum Mana per Abyss Jewel affecting you","better":1,"matchers":[{"string":"每顆裝備的的深淵珠寶增加 #% 最大魔力"},{"string":"每顆裝備的的深淵珠寶減少 #% 最大魔力","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2135370196"]}}} +{"ref":"#% increased Maximum Recovery per Energy Shield Leech","better":1,"matchers":[{"string":"每個能量護盾偷取增加 #% 最大恢復"},{"string":"每個能量護盾偷取減少 #% 最大恢復","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3589396689"]}}} +{"ref":"#% increased Maximum Recovery per Life Leech","better":1,"matchers":[{"string":"每個生命偷取增加 #% 最大恢復"},{"string":"每個生命偷取減少 #% 最大恢復","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3101897388"]}}} +{"ref":"#% increased Maximum Resolve","better":1,"matchers":[{"string":"增加 #% 最大決心"},{"string":"減少 #% 最大決心","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_3866860190"]}}} +{"ref":"#% increased Maximum total Energy Shield Recovery per second from Leech","better":1,"matchers":[{"string":"增加 #% 來自偷取每秒最大總能量護盾恢復"},{"string":"減少 #% 來自偷取每秒最大總能量護盾恢復","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2013799819"],"implicit":["implicit.stat_2013799819"]}}} +{"ref":"#% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry","better":1,"matchers":[{"string":"被狂熱影響時,增加 #% 來自偷取每秒最大總能量護盾恢復"},{"string":"被狂熱影響時,減少 #% 來自偷取每秒最大總能量護盾恢復","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2731416566","explicit.stat_3848992177"]}}} +{"ref":"#% increased Maximum total Life Recovery per second from Leech","better":1,"matchers":[{"string":"增加 #% 來自偷取每秒最大總生命恢復"},{"string":"減少 #% 來自偷取每秒最大總生命恢復","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2916634441","explicit.stat_4118987751"],"implicit":["implicit.stat_4118987751"]}}} +{"ref":"#% increased Maximum total Mana Recovery per second from Leech","better":1,"matchers":[{"string":"增加 #% 來自偷取每秒最大總魔力恢復"},{"string":"減少 #% 來自偷取每秒最大總魔力恢復","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_96977651"],"implicit":["implicit.stat_96977651"]}}} +{"ref":"#% increased Melee Critical Strike Chance","better":1,"matchers":[{"string":"增加 #% 近戰暴擊率"},{"string":"減少 #% 近戰暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1199429645"],"fractured":["fractured.stat_1199429645"]}}} +{"ref":"#% increased Melee Damage","better":1,"matchers":[{"string":"增加 #% 近戰傷害"},{"string":"減少 #% 近戰傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1002362373"],"implicit":["implicit.stat_1002362373"],"fractured":["fractured.stat_1002362373"],"crafted":["crafted.stat_1002362373"]}}} +{"ref":"#% increased Melee Damage against Bleeding Enemies","better":1,"matchers":[{"string":"對流血的敵人增加 #% 近戰傷害"},{"string":"對流血的敵人減少 #% 近戰傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1282978314"]}}} +{"ref":"#% increased Melee Damage during any Flask Effect","better":1,"matchers":[{"string":"藥劑效果持續時間內增加 #% 近戰傷害"},{"string":"藥劑效果持續時間內減少 #% 近戰傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4091369450"],"fractured":["fractured.stat_4091369450"]}}} +{"ref":"#% increased Melee Damage per Endurance Charge","better":1,"matchers":[{"string":"每 1 個耐力球增加 #% 近戰傷害"},{"string":"每 1 個耐力球減少 #% 近戰傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1275066948"]}}} +{"ref":"#% increased Melee Damage when on Full Life","better":1,"matchers":[{"string":"滿血時增加 #% 近戰傷害"},{"string":"滿血時減少 #% 近戰傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3579807004"]}}} +{"ref":"#% increased Melee Physical Damage against Ignited Enemies","better":1,"matchers":[{"string":"對點燃的敵人增加 #% 近戰物理傷害"},{"string":"對點燃的敵人減少 #% 近戰物理傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1332534089"]}}} +{"ref":"#% increased Melee Physical Damage per 10 Dexterity","better":1,"matchers":[{"string":"每 10 點敏捷增加 #% 近戰物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2355151849"]}}} +{"ref":"#% increased Melee Weapon Attack Speed","better":1,"matchers":[{"string":"增加 #% 近戰武器攻擊速度"},{"string":"減少 #% 近戰武器攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2038105340"]}}} +{"ref":"#% increased Melee Weapon Damage against Enemies that are on Low Life","better":1,"matchers":[{"string":"對貧血的敵人,增加 #% 近戰武器傷害"}],"trade":{"ids":{"explicit":["explicit.stat_259714394"]}}} +{"ref":"#% increased Merchant Prices","better":1,"matchers":[{"string":"增加 #% 販售價格"},{"string":"減少 #% 販售價格","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_3096446459"]}}} +{"ref":"#% increased Mine Damage","better":1,"matchers":[{"string":"增加 #% 地雷傷害"},{"string":"減少 #% 地雷傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2137912951"],"fractured":["fractured.stat_2137912951"],"crafted":["crafted.stat_2137912951"]}}} +{"ref":"#% increased Mine Duration","better":1,"matchers":[{"string":"增加 #% 地雷持續時間"},{"string":"減少 #% 地雷持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_117667746"],"fractured":["fractured.stat_117667746"]}}} +{"ref":"#% increased Mine Throwing Speed","better":1,"matchers":[{"string":"增加 #% 地雷投擲速度"},{"string":"減少 #% 地雷投擲速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1896971621"],"implicit":["implicit.stat_1896971621"],"fractured":["fractured.stat_1896971621"],"scourge":["scourge.stat_1896971621"],"crafted":["crafted.stat_1896971621"]}}} +{"ref":"#% increased Minion Accuracy Rating","better":1,"matchers":[{"string":"增加 #% 召喚物命中值"},{"string":"減少 #% 召喚物命中值","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1718147982"],"implicit":["implicit.stat_1718147982"],"fractured":["fractured.stat_1718147982"]}}} +{"ref":"#% increased Minion Attack and Cast Speed per 10 Devotion","better":1,"matchers":[{"string":"每 10 個奉獻,增加 #% 召喚物攻擊和施放速度"},{"string":"每 10 個奉獻,減少 #% 召喚物攻擊和施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3808469650"]}}} +{"ref":"#% increased Minion Attack and Cast Speed per Skeleton you own","better":1,"matchers":[{"string":"每個你控制的骷髏增加 #% 召喚物傷害和施放速度"},{"string":"每個你控制的骷髏減少 #% 召喚物傷害和施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_729367217"]}}} +{"ref":"#% increased Minion Attack Speed per 50 Dexterity","better":1,"matchers":[{"string":"每 50 點敏捷,增加召喚物 #% 攻擊速度"},{"string":"每 50 點敏捷,減少召喚物 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4047895119"]}}} +{"ref":"#% increased Minion Damage per Raised Spectre","better":1,"matchers":[{"string":"每個你擁有的幽魂增加 #% 召喚物傷害"},{"string":"每個你擁有的幽魂減少 #% 召喚物傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3191537057"]}}} +{"ref":"#% increased Minion Duration","better":1,"matchers":[{"string":"增加 #% 召喚物持續時間"},{"string":"減少 #% 召喚物持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_999511066"],"fractured":["fractured.stat_999511066"]}}} +{"ref":"#% increased Minion Duration per Raised Zombie","better":1,"matchers":[{"string":"每隻殭屍復甦增加 #% 召喚物持續時間"},{"string":"每隻殭屍復甦減少 #% 召喚物持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_777246604"]}}} +{"ref":"#% increased Minion Movement Speed per 50 Dexterity","better":1,"matchers":[{"string":"每 50 點敏捷,增加召喚物 #% 移動速度"},{"string":"每 50 點敏捷,減少召喚物 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4017879067"]}}} +{"ref":"#% increased Mirage Archer Duration","better":1,"matchers":[{"string":"增加 #% 幻影射手持續時間"},{"string":"減少 #% 幻影射手持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3663580344"]}}} +{"ref":"#% increased Molten Strike Area of Effect","better":1,"matchers":[{"string":"增加 #% 熔岩之擊範圍"},{"string":"減少 #% 熔岩之擊範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2524620107"]}}} +{"ref":"#% increased Molten Strike Damage","better":1,"matchers":[{"string":"增加 #% 熔岩之擊傷害"},{"string":"減少 #% 熔岩之擊傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2038865857"]}}} +{"ref":"#% increased Monster Attack Speed","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"增加 #% 怪物攻擊速度"}],"trade":{"ids":{"explicit":["explicit.stat_1913583994"],"fractured":["fractured.stat_1913583994"]}}} +{"ref":"#% increased Monster Cast Speed","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"增加 #% 怪物施放速度"}],"trade":{"ids":{"explicit":["explicit.stat_2488361432"],"fractured":["fractured.stat_2488361432"]}}} +{"ref":"#% increased Monster Damage","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"增加 #% 怪物傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1890519597"],"fractured":["fractured.stat_1890519597"]}}} +{"ref":"#% increased Monster Movement Speed","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"增加 #% 怪物移動速度"},{"string":"減少 #% 怪物移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2306522833"],"implicit":["implicit.stat_2306522833"],"fractured":["fractured.stat_2306522833"],"enchant":["enchant.stat_2306522833"]}}} +{"ref":"#% increased Movement Speed","better":1,"matchers":[{"string":"增加 #% 移動速度"},{"string":"減少 #% 移動速度","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_movement_speed"],"explicit":["explicit.stat_2250533757"],"implicit":["implicit.stat_2250533757"],"fractured":["fractured.stat_2250533757"],"enchant":["enchant.stat_2250533757"],"scourge":["scourge.stat_2250533757"],"crafted":["crafted.stat_2250533757"]}}} +{"ref":"#% increased Movement Speed during any Flask Effect","better":1,"matchers":[{"string":"任何藥劑效果持續時間內,增加 #% 移動速度"},{"string":"任何藥劑效果持續時間內,減少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_304970526"],"implicit":["implicit.stat_304970526"],"fractured":["fractured.stat_304970526"]}}} +{"ref":"#% increased Movement Speed during Effect","better":1,"matchers":[{"string":"效果持續時間,增加 #% 移動速度"}],"trade":{"ids":{"explicit":["explicit.stat_3182498570"],"fractured":["fractured.stat_3182498570"],"crafted":["crafted.stat_3182498570"]}}} +{"ref":"#% increased Movement Speed for # seconds on Throwing a Trap","better":1,"matchers":[{"string":"投擲陷阱後 # 秒內增加 #% 移動速度"}],"trade":{"ids":{"explicit":["explicit.stat_3102860761"]}}} +{"ref":"#% increased Movement Speed for each Poison on you up to a maximum of 50%","better":1,"matchers":[{"string":"你身上每層中毒增加 #% 移動速度,最多 50%"},{"string":"你身上每層中毒減少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1360723495"]}}} +{"ref":"#% increased Movement Speed for you and nearby Allies","better":1,"matchers":[{"string":"你和附近友方增加 #% 移動速度"},{"string":"你和附近友方減少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3410049114"]}}} +{"ref":"#% increased Movement Speed if Corrupted","better":1,"matchers":[{"string":"若已汙染增加 #% 移動速度"},{"string":"若已汙染減少 #% 移動速度","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2880601380"]}}} +{"ref":"#% increased Movement Speed if you have used a Vaal Skill Recently","better":1,"matchers":[{"string":"若你近期有使用瓦爾技能增加 #% 移動速度"},{"string":"若你近期有使用瓦爾技能減少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1285172810"]}}} +{"ref":"#% increased Movement Speed if you haven't been Hit Recently","better":1,"matchers":[{"string":"近期內你若沒有被擊中,增加 #% 移動速度"},{"string":"近期內若你沒有被擊中,增加 #% 移動速度"},{"string":"近期內你若沒有被擊中,減少 #% 移動速度","negate":true},{"string":"近期內若你沒有被擊中,減少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1177358866","explicit.stat_308396001"],"fractured":["fractured.stat_1177358866","fractured.stat_308396001"],"enchant":["enchant.stat_308396001"],"crafted":["crafted.stat_1177358866"]}}} +{"ref":"#% increased Movement Speed if you haven't taken Damage Recently","better":1,"matchers":[{"string":"若你近期沒受到傷害,增加 #% 移動速度"},{"string":"若你近期沒受到傷害,減少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3854949926"],"fractured":["fractured.stat_3854949926"]}}} +{"ref":"#% increased Movement Speed if you've Cast Dash recently","better":1,"matchers":[{"string":"若你近期有施放幻步,增加 #% 移動速度"},{"string":"若你近期有施放幻步,減少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2659793306"]}}} +{"ref":"#% increased Movement Speed if you've Hit an Enemy Recently","better":1,"matchers":[{"string":"若你近期有擊中敵人,增加 #% 移動速度"},{"string":"若你近期有擊中敵人,減少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3178542354"],"fractured":["fractured.stat_3178542354"]}}} +{"ref":"#% increased Movement Speed if you've Killed Recently","better":1,"matchers":[{"string":"若近期內有擊殺增加 #% 移動速度"},{"string":"若近期內有擊殺減少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_279227559"],"fractured":["fractured.stat_279227559"]}}} +{"ref":"#% increased Movement Speed if you've Warcried Recently","better":1,"matchers":[{"string":"若近期內有使用戰吼,增加 #% 移動速度"}],"trade":{"ids":{"explicit":["explicit.stat_2546417825"]}}} +{"ref":"#% increased Movement Speed on Shocked Ground","better":1,"matchers":[{"string":"在感電地面上增加 #% 移動速度"}],"trade":{"ids":{"explicit":["explicit.stat_3678841229"]}}} +{"ref":"#% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius","better":1,"matchers":[{"string":"範圍內每 10 點配置敏捷增加 #% 移動速度"},{"string":"範圍內每 10 點配置敏捷減少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1795365307"]}}} +{"ref":"#% increased Movement Speed per 10 Dexterity on Unallocated Passives in Radius","better":1,"matchers":[{"string":"範圍內未配置的天賦中,每 10 點敏捷增加 #% 移動速度"},{"string":"範圍內未配置的天賦中,每 10 點敏捷減少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4169318921"]}}} +{"ref":"#% increased Movement Speed per Endurance Charge","better":1,"matchers":[{"string":"每顆耐力球增加 #% 移動速度"},{"string":"每顆耐力球減少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2116250000"]}}} +{"ref":"#% increased Movement Speed per Frenzy Charge","better":1,"matchers":[{"string":"每個狂怒球增加 #% 移動速度"}],"trade":{"ids":{"explicit":["explicit.stat_1541516339"]}}} +{"ref":"#% increased Movement Speed per Power Charge","better":1,"matchers":[{"string":"每顆暴擊球增加 #% 移動速度"},{"string":"每顆暴擊球減少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3774108776"]}}} +{"ref":"#% increased Movement Speed when on Full Life","better":1,"matchers":[{"string":"滿血時增加 #% 移動速度"},{"string":"滿血時減少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3393547195"]}}} +{"ref":"#% increased Movement Speed when on Low Life","better":1,"matchers":[{"string":"貧血時增加 #% 移動速度"},{"string":"貧血時減少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_649025131"]}}} +{"ref":"#% increased Movement Speed while affected by a Magic Abyss Jewel","better":1,"matchers":[{"string":"被魔法深淵珠寶影響時,增加 #% 移動速度"},{"string":"被魔法深淵珠寶影響時,減少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3874817029"]}}} +{"ref":"#% increased Movement Speed while affected by Grace","better":1,"matchers":[{"string":"被優雅影響時,增加 #% 移動速度"},{"string":"被優雅影響時,減少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3329402420"]}}} +{"ref":"#% increased Movement Speed while area is not in Lockdown\nPlayers have #% increased Movement Speed while area is not in Lockdown","better":1,"matchers":[{"string":"區域沒有被封鎖時,增加 #% 移動速度\n玩家在區域沒有被封鎖時,增加 #% 移動速度"},{"string":"區域沒有被封鎖時,減少 #% 移動速度\n玩家在區域沒有被封鎖時,減少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_902577520"],"fractured":["fractured.stat_902577520"]}}} +{"ref":"#% increased Movement Speed while Bleeding","better":1,"matchers":[{"string":"流血時增加 #% 移動速度"},{"string":"流血時減少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_696659555"]}}} +{"ref":"#% increased Movement Speed while Chilled","better":1,"matchers":[{"string":"被冰緩時增加 #% 移動速度"},{"string":"被冰緩時減少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2203777380"]}}} +{"ref":"#% increased Movement Speed while Ignited","better":1,"matchers":[{"string":"被點燃時增加 #% 移動速度"},{"string":"被點燃時減少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_581625445"]}}} +{"ref":"#% increased Movement speed while on Burning, Chilled or Shocked ground","better":1,"matchers":[{"string":"在燃燒、冰緩、感電地面上時增加 #% 移動速度"},{"string":"在燃燒、冰緩、感電地面上時减少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1521863824"]}}} +{"ref":"#% increased Movement Speed while on Full Energy Shield","better":1,"matchers":[{"string":"能量護盾全滿時增加 #% 移動速度"},{"string":"能量護盾全滿時減少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2825197711"]}}} +{"ref":"#% increased Movement Speed while Phasing","better":1,"matchers":[{"string":"迷蹤效果下增加 #% 移動速度"},{"string":"迷蹤效果下減少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3684879618"],"implicit":["implicit.stat_3684879618"]}}} +{"ref":"#% increased Movement Speed while Shocked","better":1,"matchers":[{"string":"感電時增加 #% 移動速度"},{"string":"感電時減少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_542923416"]}}} +{"ref":"#% increased Movement Speed while you have Cat's Stealth","better":1,"matchers":[{"string":"當你有傲貓隱身時,增加 #% 移動速度"},{"string":"當你有傲貓隱身時,減少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_673704994"]}}} +{"ref":"#% increased number of Explosives","better":1,"fromAreaMods":true,"matchers":[{"string":"增加 #% 爆炸數量"}],"trade":{"ids":{"implicit":["implicit.stat_3051490307"]}}} +{"ref":"#% increased number of Rare Monsters","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"增加 #% 稀有怪物的數量"}],"trade":{"ids":{"explicit":["explicit.stat_3793155082"],"fractured":["fractured.stat_3793155082"]}}} +{"ref":"#% increased Orb of Storms Area of Effect","better":1,"matchers":[{"string":"增加 #% 風暴漩渦範圍效果"},{"string":"減少 #% 風暴漩渦範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2875508213"]}}} +{"ref":"#% increased Orb of Storms Critical Strike Chance","better":1,"matchers":[{"string":"增加 #% 風暴漩渦暴擊率"},{"string":"減少 #% 風暴漩渦暴擊率","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_168538372"]}}} +{"ref":"#% increased Perception Experience gained","better":1,"matchers":[{"string":"增加 #% 獲得洞察力經驗值"},{"string":"減少 #% 獲得洞察力經驗值","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_154668190"]}}} +{"ref":"#% increased Perception speed","better":1,"matchers":[{"string":"增加 #% 洞察力速度"},{"string":"減少 #% 洞察力速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1456551059"],"implicit":["implicit.stat_1456551059"],"fractured":["fractured.stat_1456551059"]}}} +{"ref":"#% increased Phase Run Duration","better":1,"matchers":[{"string":"增加 #% 暗影迷蹤持續時間"},{"string":"減少 #% 暗影迷蹤持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2556095677"]}}} +{"ref":"#% increased Physical Attack Damage while Dual Wielding","better":1,"matchers":[{"string":"雙持時增加 #% 物理攻擊傷害"},{"string":"雙持時減少 #% 物理攻擊傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1274831335"],"fractured":["fractured.stat_1274831335"]}}} +{"ref":"#% increased Physical Damage","better":1,"matchers":[{"string":"沒有物理傷害","value":-1},{"string":"增加 #% 物理傷害"},{"string":"減少 #% 物理傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1509134228"],"implicit":["implicit.stat_1509134228"],"fractured":["fractured.stat_1509134228"],"enchant":["enchant.stat_1509134228"],"crafted":["crafted.stat_1509134228"]}}} +{"ref":"#% increased Physical Damage over Time","better":1,"matchers":[{"string":"增加 #% 物理持續傷害"},{"string":"減少 #% 物理持續傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1692565595"],"fractured":["fractured.stat_1692565595"]}}} +{"ref":"#% increased Physical Damage Over Time per 10 Dexterity","better":1,"matchers":[{"string":"每 10 敏捷增加 #% 持續性物理傷害"},{"string":"每 10 敏捷減少 #% 持續性物理傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_555311393"]}}} +{"ref":"#% increased Physical Damage per Endurance Charge","better":1,"matchers":[{"string":"每個耐力球增加 #% 物理傷害"},{"string":"每個耐力球減少 #% 物理傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2481358827"]}}} +{"ref":"#% increased Physical Damage taken","better":-1,"matchers":[{"string":"增加 #% 承受的物理傷害"},{"string":"減少 #% 承受的物理傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3853018505"],"scourge":["scourge.stat_3853018505"]}}} +{"ref":"#% increased Physical Damage while affected by Herald of Purity","better":1,"matchers":[{"string":"被純淨之捷影響時,增加 #% 物理傷害"},{"string":"被純淨之捷影響時,減少 #% 物理傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3294232483"]}}} +{"ref":"#% increased Physical Damage while using Pride","better":1,"matchers":[{"string":"使用驕傲時,增加 #% 物理傷害"},{"string":"使用驕傲時,減少 #% 物理傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_576528026"]}}} +{"ref":"#% increased Physical Damage while you have Resolute Technique","better":1,"matchers":[{"string":"當你有堅毅之心時,增加 #% 物理傷害"},{"string":"當你有堅毅之心時,減少 #% 物理傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1258679667"]}}} +{"ref":"#% increased Physical Damage while you have Unholy Might","better":1,"matchers":[{"string":"當你有不潔之力時,增加 #% 物理傷害"},{"string":"當你有不潔之力時,減少 #% 物理傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1609570656"]}}} +{"ref":"#% increased Physical Damage with Attack Skills","better":1,"matchers":[{"string":"攻擊技能增加 #% 物理傷害"},{"string":"攻擊技能減少 #% 物理傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2266750692"]}}} +{"ref":"#% increased Physical Damage with Axes","better":1,"matchers":[{"string":"斧類武器增加 #% 物理傷害"},{"string":"斧類武器減少 #% 物理傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2008219439"],"implicit":["implicit.stat_2008219439"],"fractured":["fractured.stat_2008219439"]}}} +{"ref":"#% increased Physical Damage with Bows","better":1,"matchers":[{"string":"持弓類武器時增加 #% 物理傷害"},{"string":"持弓類武器時減少 #% 物理傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_402920808"],"implicit":["implicit.stat_402920808"],"fractured":["fractured.stat_402920808"]}}} +{"ref":"#% increased Physical Damage with Claws","better":1,"matchers":[{"string":"持爪類武器時增加 #% 物理傷害"},{"string":"持爪類武器時減少 #% 物理傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_635761691"],"implicit":["implicit.stat_635761691"],"fractured":["fractured.stat_635761691"]}}} +{"ref":"#% increased Physical Damage with Daggers","better":1,"matchers":[{"string":"持匕首類武器時增加 #% 物理傷害"},{"string":"持匕首類武器時減少 #% 物理傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3882531569"],"implicit":["implicit.stat_3882531569"],"fractured":["fractured.stat_3882531569"]}}} +{"ref":"#% increased Physical Damage with Hits and Ailments against Ignited Enemies","better":1,"matchers":[{"string":"對被點燃的敵人增加 #% 擊中和異常狀態的物理傷害"},{"string":"對被點燃的敵人減少 #% 擊中和異常狀態的物理傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3375415245"]}}} +{"ref":"#% increased Physical Damage with Maces or Sceptres","better":1,"matchers":[{"string":"錘和權杖增加 #% 物理傷害"},{"string":"錘和權杖減少 #% 物理傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3774831856"],"implicit":["implicit.stat_3774831856"],"fractured":["fractured.stat_3774831856"]}}} +{"ref":"#% increased Physical Damage with Ranged Weapons","better":1,"matchers":[{"string":"增加 #% 遠程武器物理傷害"},{"string":"減少 #% 遠程武器物理傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_766615564"]}}} +{"ref":"#% increased Physical Damage with Spell Skills","better":1,"matchers":[{"string":"法術技能增加 #% 物理傷害"},{"string":"法術技能減少 #% 物理傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1430255627"]}}} +{"ref":"#% increased Physical Damage with Staves","better":1,"matchers":[{"string":"持長杖類武器時增加 #% 物理傷害"},{"string":"持長杖類武器時減少 #% 物理傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3150705301"],"implicit":["implicit.stat_3150705301"],"fractured":["fractured.stat_3150705301"]}}} +{"ref":"#% increased Physical Damage with Swords","better":1,"matchers":[{"string":"持劍類武器時增加 #% 物理傷害"},{"string":"持劍類武器時減少 #% 物理傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3814560373"],"implicit":["implicit.stat_3814560373"],"fractured":["fractured.stat_3814560373"]}}} +{"ref":"#% increased Physical Damage with Wands","better":1,"matchers":[{"string":"持法杖類武器時增加 #% 物理傷害"},{"string":"持法杖類武器時減少 #% 物理傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2769075491"],"implicit":["implicit.stat_2769075491"],"fractured":["fractured.stat_2769075491"]}}} +{"ref":"#% increased Physical Weapon Damage per 10 Strength","better":1,"matchers":[{"string":"每 10 力量增加 #% 物理武器傷害"},{"string":"每 10 力量減少 #% 物理武器傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2594215131"]}}} +{"ref":"#% increased Poacher's Mark Curse Effect","better":1,"matchers":[{"string":"增加 #% 盜獵者印記的詛咒效果"},{"string":"減少 #% 盜獵者印記的詛咒效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3278819254"]}}} +{"ref":"#% increased Poison Duration","better":1,"matchers":[{"string":"增加 #% 中毒持續時間"},{"string":"減少 #% 中毒持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2011656677"],"implicit":["implicit.stat_2011656677"],"fractured":["fractured.stat_2011656677"]}}} +{"ref":"#% increased Poison Duration for each Poison you have inflicted Recently, up to a maximum of 100%","better":1,"matchers":[{"string":"近期每個你造成的中毒增加 #% 中毒持續時間,最多 100%"},{"string":"近期每個你造成的中毒減少 #% 中毒持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_86516932"]}}} +{"ref":"#% increased Poison Duration if you have at least 150 Intelligence","better":1,"matchers":[{"string":"若你至少有 150 點智慧,增加 #% 中毒期間"},{"string":"若你至少有 150 點智慧,減少 #% 中毒期間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2771181375"]}}} +{"ref":"#% increased Poison Duration on you","better":1,"matchers":[{"string":"增加 #% 你身上中毒的持續時間"},{"string":"減少 #% 你身上中毒的持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3301100256"],"implicit":["implicit.stat_3301100256"],"fractured":["fractured.stat_3301100256"]}}} +{"ref":"#% increased Poison Duration per Power Charge","better":1,"matchers":[{"string":"每顆暴擊球增加 #% 中毒期間"},{"string":"每顆暴擊球減少 #% 中毒期間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3491499175"]}}} +{"ref":"#% increased Poisonous Concoction Area of Effect","better":1,"matchers":[{"string":"增加 #% 毒藥範圍效果"},{"string":"減少 #% 毒藥範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3892584986"]}}} +{"ref":"#% increased Poisonous Concoction Damage","better":1,"matchers":[{"string":"增加 #% 毒藥傷害"},{"string":"減少 #% 毒藥傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_295557151"]}}} +{"ref":"#% increased Power Charge Duration","better":1,"matchers":[{"string":"增加 #% 暴擊球持續時間"},{"string":"減少 #% 暴擊球持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3872306017"],"implicit":["implicit.stat_3872306017"],"enchant":["enchant.stat_3872306017"]}}} +{"ref":"#% increased Power Siphon Attack Speed","better":1,"matchers":[{"string":"增加 #% 力量抽取攻擊速度"},{"string":"減少 #% 力量抽取攻擊速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2753191013"]}}} +{"ref":"#% increased Power Siphon Damage","better":1,"matchers":[{"string":"增加 #% 力量抽取傷害"},{"string":"減少 #% 力量抽取傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_78767457"]}}} +{"ref":"#% increased Prefix Modifier magnitudes","better":1,"matchers":[{"string":"增加 #% 前綴大小"},{"string":"減少 #% 前綴大小","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1794120699"]}}} +{"ref":"#% increased Projectile Attack Damage","better":1,"matchers":[{"string":"增加 #% 攻擊投射物傷害"},{"string":"減少 #% 攻擊投射物傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2162876159"],"implicit":["implicit.stat_2162876159"],"fractured":["fractured.stat_2162876159"]}}} +{"ref":"#% increased Projectile Attack Damage during any Flask Effect","better":1,"matchers":[{"string":"在任何藥劑效果持續時間內,增加 #% 投射物攻擊傷害"},{"string":"在任何藥劑效果持續時間內,減少 #% 投射物攻擊傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2771016039"],"fractured":["fractured.stat_2771016039"]}}} +{"ref":"#% increased Projectile Attack Damage per 200 Accuracy Rating","better":1,"matchers":[{"string":"每200命中值增加 #% 投射物攻擊傷害"},{"string":"每200命中值減少 #% 投射物攻擊傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4157767905"],"fractured":["fractured.stat_4157767905"]}}} +{"ref":"#% increased Projectile Attack Damage while you have at least 200 Dexterity","better":1,"matchers":[{"string":"當你至少有 200 點敏捷時,增加 #% 投射物攻擊傷害"},{"string":"當你至少有 200 點敏捷時,減少 #% 投射物攻擊傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1822142649"]}}} +{"ref":"#% increased Projectile Damage","better":1,"matchers":[{"string":"增加 #% 投射物傷害"},{"string":"減少 #% 投射物傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1839076647"],"implicit":["implicit.stat_1839076647"],"fractured":["fractured.stat_1839076647"],"scourge":["scourge.stat_1839076647"],"crafted":["crafted.stat_1839076647"]}}} +{"ref":"#% increased Projectile Damage per Power Charge","better":1,"matchers":[{"string":"每個暴擊球 #% 增加投射物傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3816512110"]}}} +{"ref":"#% increased Projectile Damage while in Blood Stance","better":1,"matchers":[{"string":"血腥姿態時,增加 #% 投射物傷害"},{"string":"血腥姿態時,減少 #% 投射物傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2982500944"]}}} +{"ref":"#% increased Projectile Speed","better":1,"matchers":[{"string":"增加 #% 投射物速度"},{"string":"減少 #% 投射物速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3759663284"],"implicit":["implicit.stat_3759663284"],"fractured":["fractured.stat_3759663284"],"scourge":["scourge.stat_3759663284"],"crafted":["crafted.stat_3759663284"]}}} +{"ref":"#% increased Projectile Speed per Frenzy Charge","better":1,"matchers":[{"string":"每個狂怒球增加 #% 投射物速度"}],"trade":{"ids":{"explicit":["explicit.stat_3159161267"]}}} +{"ref":"#% increased Protective Link Duration","better":1,"matchers":[{"string":"增加 #% 連結:保護持續時間"},{"string":"減少 #% 連結:保護持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3917923501"]}}} +{"ref":"#% increased Puncture Damage","better":1,"matchers":[{"string":"增加 #% 放血傷害"},{"string":"減少 #% 放血傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3496292484"]}}} +{"ref":"#% increased Puncture Duration","better":1,"matchers":[{"string":"增加 #% 放血持續時間"},{"string":"減少 #% 放血持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3186938438"]}}} +{"ref":"#% increased Punishment Curse Effect","better":1,"matchers":[{"string":"增加 #% 懲戒的詛咒效果"},{"string":"減少 #% 懲戒的詛咒效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2844206732"],"enchant":["enchant.stat_2844206732"]}}} +{"ref":"#% increased Punishment Duration","better":1,"matchers":[{"string":"增加 #% 懲戒持續時間"},{"string":"減少 #% 懲戒持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1924239636"]}}} +{"ref":"#% increased quantity of Artifacts dropped by Monsters","better":1,"fromAreaMods":true,"matchers":[{"string":"增加 #% 怪物掉落文物的數量"},{"string":"減少 #% 怪物掉落文物的數量"}],"trade":{"ids":{"explicit":["explicit.stat_4219583418"],"implicit":["implicit.stat_4219583418"]}}} +{"ref":"#% increased Quantity of Fish Caught","better":1,"matchers":[{"string":"增加 #% 釣魚數量"},{"string":"減少 #% 釣魚數量","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3802667447"],"implicit":["implicit.stat_3802667447"],"fractured":["fractured.stat_3802667447"]}}} +{"ref":"#% increased Quantity of Items Dropped by Slain Frozen Enemies","better":1,"matchers":[{"string":"擊殺冰凍敵人後增加 #% 物品數量"},{"string":"擊殺冰凍敵人後減少 #% 物品數量","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3304763863"]}}} +{"ref":"#% increased Quantity of Items Dropped by Slain Normal Enemies","better":1,"matchers":[{"string":"增加 #% 普通怪物擊殺時物品掉落數量"},{"string":"減少 #% 普通怪物擊殺時物品掉落數量","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1342790450"]}}} +{"ref":"#% increased Quantity of Items dropped in Heists","better":1,"matchers":[{"string":"劫盜時增加 #% 物品掉落數量"},{"string":"劫盜時減少 #% 物品掉落數量","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3683643898"],"fractured":["fractured.stat_3683643898"]}}} +{"ref":"#% increased Quantity of Items found","better":1,"matchers":[{"string":"增加 #% 物品數量"},{"string":"減少 #% 物品數量","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_884586851"],"implicit":["implicit.stat_884586851"]}}} +{"ref":"#% increased Quantity of Items found during Effect","better":1,"matchers":[{"string":"效果持續時間,增加 #% 掉落物品數量"}],"trade":{"ids":{"explicit":["explicit.stat_3736953565"]}}} +{"ref":"#% increased Quantity of Items found when on Low Life","better":1,"matchers":[{"string":"貧血時增加 #% 物品數量"},{"string":"貧血時減少 #% 物品數量","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_760855772"]}}} +{"ref":"#% increased Quantity of Items found with a Magic Item Equipped","better":1,"matchers":[{"string":"裝備 1 件魔法物品時增加 #% 物品數量"},{"string":"裝備 1 件魔法物品時減少 #% 物品數量","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1498954300"]}}} +{"ref":"#% increased Quantity of Relics Dropped by Monsters","better":1,"matchers":[{"string":"增加 #% 怪物掉落聖物的數量"},{"string":"減少 #% 怪物掉落聖物的數量","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_1680962389"]}}} +{"ref":"#% increased Rage Cost of Skills","better":1,"matchers":[{"string":"增加 #% 技能的盛怒消耗"},{"string":"減少 #% 技能的盛怒消耗","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3415234440"]}}} +{"ref":"#% increased Rage Vortex Area of Effect","better":1,"matchers":[{"string":"增加 #% 盛怒漩渦範圍效果"},{"string":"減少 #% 盛怒漩渦範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3988628118"]}}} +{"ref":"#% increased Rage Vortex Damage","better":1,"matchers":[{"string":"增加 #% 盛怒漩渦傷害"},{"string":"減少 #% 盛怒漩渦傷","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3153431030"]}}} +{"ref":"#% increased Rain of Arrows Area of Effect","better":1,"matchers":[{"string":"增加 #% 箭雨範圍"},{"string":"減少 #% 箭雨範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2205814812"]}}} +{"ref":"#% increased Rain of Arrows Attack Speed","better":1,"matchers":[{"string":"增加 #% 箭雨攻擊速度"},{"string":"減少 #% 箭雨攻擊速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3825617457"]}}} +{"ref":"#% increased Rain of Arrows Damage","better":1,"matchers":[{"string":"增加 #% 箭雨傷害"},{"string":"減少 #% 箭雨傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3432170876"]}}} +{"ref":"#% increased Raised Zombie Size","better":1,"matchers":[{"string":"增加 #% 殭屍體積"},{"string":"減少 #% 殭屍體積","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3563667308"]}}} +{"ref":"#% increased raising of Alert Level","better":-1,"matchers":[{"string":"增加 #% 提升警戒等級"},{"string":"減少 #% 提升警戒等級","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_703341733"],"implicit":["implicit.stat_703341733"]}}} +{"ref":"#% increased raising of Alert Level from opening Chests","better":-1,"matchers":[{"string":"開啟保險箱增加 #% 提升警戒等級"},{"string":"開啟保險箱減少 #% 提升警戒等級","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2500803699"],"fractured":["fractured.stat_2500803699"]}}} +{"ref":"#% increased Rallying Cry Buff Effect","better":1,"matchers":[{"string":"增加 #% 激勵戰吼增益效果"},{"string":"減少 #% 激勵戰吼增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4147277532"],"enchant":["enchant.stat_4147277532","enchant.stat_865263728","enchant.stat_945725535"]}}} +{"ref":"#% increased Rarity of Fish Caught","better":1,"matchers":[{"string":"增加 #% 釣魚稀有度"},{"string":"減少 #% 釣魚稀有度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3310914132"],"implicit":["implicit.stat_3310914132"],"fractured":["fractured.stat_3310914132"],"scourge":["scourge.stat_3310914132"]}}} +{"ref":"#% increased Rarity of Items Dropped by Enemies killed with a Critical Strike","better":1,"matchers":[{"string":"暴擊並擊殺時增加 #% 物品稀有度"},{"string":"暴擊並擊殺時減少 #% 物品稀有度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_21824003"]}}} +{"ref":"#% increased Rarity of Items Dropped by Frozen Enemies","better":1,"matchers":[{"string":"冰凍的敵人增加 #% 掉落物品稀有度"}],"trade":{"ids":{"explicit":["explicit.stat_2138434718"]}}} +{"ref":"#% increased Rarity of Items Dropped by Slain Magic Enemies","better":1,"matchers":[{"string":"增加 #% 魔法怪物擊殺時掉落物品稀有度"},{"string":"減少 #% 魔法怪物擊殺時掉落物品稀有度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3433676080"]}}} +{"ref":"#% increased Rarity of Items Dropped by Slain Rare or Unique Enemies","better":1,"matchers":[{"string":"擊殺稀有或傳奇敵人增加 #% 物品掉落稀有度"},{"string":"擊殺稀有或傳奇敵人減少 #% 物品掉落稀有度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2161689853"],"fractured":["fractured.stat_2161689853"],"crafted":["crafted.stat_2161689853"]}}} +{"ref":"#% increased Rarity of Items Dropped by Slain Shocked Enemies","better":1,"matchers":[{"string":"擊殺感電敵人後增加 #% 物品稀有度"},{"string":"擊殺感電敵人後減少 #% 物品稀有度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3188291252"]}}} +{"ref":"#% increased Rarity of Items dropped in Heists","better":1,"matchers":[{"string":"劫盜時增加 #% 物品掉落稀有度"},{"string":"劫盜時減少 #% 物品掉落稀有度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2833896424"],"implicit":["implicit.stat_2833896424"],"fractured":["fractured.stat_2833896424"]}}} +{"ref":"#% increased Rarity of Items found","better":1,"matchers":[{"string":"增加 #% 物品稀有度"},{"string":"減少 #% 物品稀有度","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_rarity"],"explicit":["explicit.stat_3917489142"],"implicit":["implicit.stat_3917489142"],"fractured":["fractured.stat_3917489142"],"scourge":["scourge.stat_3917489142"],"crafted":["crafted.stat_3917489142"]}}} +{"ref":"#% increased Rarity of Items found during Effect","better":1,"matchers":[{"string":"效果持續時間,增加 #% 掉落物品稀有度"},{"string":"效果持續時間,減少 #% 掉落物品稀有度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1740200922","explicit.stat_3251705960"],"crafted":["crafted.stat_3251705960"]}}} +{"ref":"#% increased Rarity of Items found from Slain Unique Enemies","better":1,"matchers":[{"string":"擊殺傳奇敵人增加 #% 掉落物品稀有度"},{"string":"擊殺傳奇敵人減少 #% 掉落物品稀有度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_121185030"],"fractured":["fractured.stat_121185030"]}}} +{"ref":"#% increased Rarity of Items found per Mana Burn, up to a maximum of 100%","better":1,"matchers":[{"string":"每層魔力灼燒增加 #% 掉落物品稀有度,最多 100%"}],"trade":{"ids":{"explicit":["explicit.stat_3226452989"]}}} +{"ref":"#% increased Rarity of Items found when on Low Life","better":1,"matchers":[{"string":"貧血時增加 #% 物品稀有度"},{"string":"貧血時減少 #% 物品稀有度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2929867083"]}}} +{"ref":"#% increased Rarity of Items found with a Normal Item Equipped","better":1,"matchers":[{"string":"裝備 1 件普通物品時增加 #% 物品稀有度"},{"string":"裝備 1 件普通物品時減少 #% 物品稀有度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4151190513"]}}} +{"ref":"#% increased Reap Area of Effect","better":1,"matchers":[{"string":"增加 #% 收割的範圍效果"},{"string":"減少 #% 收割的範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_647221668"]}}} +{"ref":"#% increased Reave Damage","better":1,"matchers":[{"string":"增加 #% 衝擊波傷害"},{"string":"減少 #% 衝擊波傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_862824495"]}}} +{"ref":"#% increased Reave Radius","better":1,"matchers":[{"string":"增加 #% 衝擊波的範圍半徑"},{"string":"減少 #% 衝擊波的範圍半徑","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1486490067"]}}} +{"ref":"#% increased Reckoning Damage","better":1,"matchers":[{"string":"增加 #% 清算傷害"},{"string":"減少 #% 清算傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_308326229"]}}} +{"ref":"#% increased Recovery rate","better":1,"matchers":[{"string":"增加 #% 恢復率"},{"string":"減少 #% 恢復率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_173226756"],"fractured":["fractured.stat_173226756"]}}} +{"ref":"#% increased Recovery rate of Life and Energy Shield","better":1,"matchers":[{"string":"增加 #% 生命和能量護盾恢復率"},{"string":"減少 #% 生命和能量護盾恢復率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1092546321"]}}} +{"ref":"#% increased Recovery rate of Life and Energy Shield per Power Charge","better":1,"matchers":[{"string":"每顆暴擊球增加 #% 生命和能量護盾恢復率"},{"string":"每顆暴擊球減少 #% 生命和能量護盾恢復率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_604671218"]}}} +{"ref":"#% increased Recovery rate of Life and Energy Shield while affected by Malevolence","better":1,"matchers":[{"string":"被惡意影響時,增加 #% 生命和能量護盾恢復率"},{"string":"被惡意影響時,減少 #% 生命和能量護盾恢復率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3643449791"]}}} +{"ref":"#% increased Reeling Stability","better":1,"matchers":[{"string":"增加 #% 收線穩定度"},{"string":"減少 #% 收線穩定度","negate":true}],"trade":{"ids":{"scourge":["scourge.stat_3332149074"]}}} +{"ref":"#% increased Rejuvenation Totem Aura Effect","better":1,"matchers":[{"string":"增加 #% 回春圖騰光環效果"},{"string":"減少 #% 回春圖騰光環效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1588572574"]}}} +{"ref":"#% increased Reservation Efficiency of Skills","better":1,"matchers":[{"string":"增加 #% 技能的保留效用"},{"string":"減少 #% 技能的保留效用","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2587176568","explicit.stat_4202507508"],"implicit":["implicit.stat_2587176568","implicit.stat_4202507508"]}}} +{"ref":"#% increased Reservation Efficiency of Skills while affected by a Unique Abyss Jewel","better":1,"matchers":[{"string":"被傳奇深淵珠寶影響時,增加 #% 技能的保留效用"},{"string":"被傳奇深淵珠寶影響時,減少 #% 技能的保留效用","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2811179011"]}}} +{"ref":"#% increased Reservation of Curse Aura Skills","better":1,"matchers":[{"string":"#% increased Reservation of Curse Aura Skills"},{"string":"#% reduced Reservation of Curse Aura Skills","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3292930705"]}}} +{"ref":"#% increased Resolve Aegis","better":1,"matchers":[{"string":"增加 #% 決心護盾"},{"string":"減少 #% 決心護盾","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_1388771661"]}}} +{"ref":"#% increased Resolve Recovered","better":1,"matchers":[{"string":"增加 #% 恢復決心"},{"string":"減少 #% 恢復決心","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_1306482168"]}}} +{"ref":"#% increased Righteous Fire Area of Effect","better":1,"matchers":[{"string":"增加 #% 正義之火範圍"},{"string":"減少 #% 正義之火範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2430635444"]}}} +{"ref":"#% increased Righteous Fire Damage","better":1,"matchers":[{"string":"增加 #% 正義之火傷害"},{"string":"減少 #% 正義之火傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3359178310"]}}} +{"ref":"#% increased Riposte Damage","better":1,"matchers":[{"string":"增加 #% 擊刃傷害"},{"string":"減少 #% 擊刃傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4071708873"]}}} +{"ref":"#% increased Rogue's Marker value of primary Heist Target","better":1,"matchers":[{"string":"增加 #% 主要劫盜目標的盜賊之印價值"},{"string":"減少 #% 主要劫盜目標的盜賊之印價值","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2357136187"],"fractured":["fractured.stat_2357136187"]}}} +{"ref":"#% increased Rolling Magma Area of Effect","better":1,"matchers":[{"string":"增加 #% 熔岩翻騰範圍"},{"string":"減少 #% 熔岩翻騰範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1646093658"]}}} +{"ref":"#% increased Rolling Magma Damage","better":1,"matchers":[{"string":"增加 #% 熔岩翻騰傷害"},{"string":"減少 #% 熔岩翻騰傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_600891507"]}}} +{"ref":"#% increased Scorching Ray beam length","better":1,"matchers":[{"string":"增加熾灼奔流 #% 光束長度"},{"string":"減少熾灼奔流 #% 光束長度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_702909553"],"enchant":["enchant.stat_702909553"]}}} +{"ref":"#% increased Scorching Ray Cast Speed","better":1,"matchers":[{"string":"增加熾灼奔流 #% 施法速度"},{"string":"減少熾灼奔流 #% 施法速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3279758713"]}}} +{"ref":"#% increased Scorching Ray Damage","better":1,"matchers":[{"string":"增加熾灼奔流 #% 傷害"},{"string":"減少熾灼奔流 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3395096718"]}}} +{"ref":"#% increased Searing Bond Damage","better":1,"matchers":[{"string":"增加 #% 灼熱連結傷害"},{"string":"減少 #% 灼熱連結傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2298223148"]}}} +{"ref":"#% increased Searing Bond Totem Elemental Resistances","better":1,"matchers":[{"string":"增加 #% 灼熱連結的元素抗性"},{"string":"減少 #% 灼熱連結的元素抗性","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2519689029"]}}} +{"ref":"#% increased Searing Bond Totem Placement Speed","better":1,"matchers":[{"string":"增加 #% 灼熱連結放置速度"},{"string":"減少 #% 灼熱連結放置速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_708179348"]}}} +{"ref":"#% increased Sentinel of Absolution Duration","better":1,"matchers":[{"string":"增加 #% 赦免哨兵的持續時間"},{"string":"減少 #% 赦免哨兵的持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1778800422"]}}} +{"ref":"#% increased Sentinel of Dominance Duration","better":1,"matchers":[{"string":"增加 #% 統御哨兵持續時間"},{"string":"減少 #% 統御哨兵持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3772643988"]}}} +{"ref":"#% increased Shield Charge Attack Speed","better":1,"matchers":[{"string":"增加 #% 重盾衝鋒攻擊速度"},{"string":"減少 #% 重盾衝鋒攻擊速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_648343221"]}}} +{"ref":"#% increased Shield Charge Damage","better":1,"matchers":[{"string":"增加 #% 重盾衝鋒傷害"},{"string":"減少 #% 重盾衝鋒傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3490662882"]}}} +{"ref":"#% increased Shield Crush Attack Speed","better":1,"matchers":[{"string":"增加 #% 重盾粉碎攻擊速度"},{"string":"減少 #% 重盾粉碎攻擊速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1948292587"]}}} +{"ref":"#% increased Shield Crush Damage","better":1,"matchers":[{"string":"增加 #% 重盾粉碎傷害"},{"string":"減少 #% 重盾粉碎傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1451671945"]}}} +{"ref":"#% increased Shock Duration on Enemies","better":1,"matchers":[{"string":"增加 #% 敵人感電持續時間"},{"string":"減少 #% 敵人感電持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3668351662"],"implicit":["implicit.stat_3668351662"],"fractured":["fractured.stat_3668351662"],"crafted":["crafted.stat_3668351662"]}}} +{"ref":"#% increased Shock Nova Area of Effect","better":1,"matchers":[{"string":"增加 #% 閃電星新範圍效果"},{"string":"減少 #% 閃電星新範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_565901339"]}}} +{"ref":"#% increased Shock Nova Damage","better":1,"matchers":[{"string":"增加 #% 閃電新星傷害"},{"string":"減少 #% 閃電新星傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3948894096"]}}} +{"ref":"#% increased Shockwave Totem Area of Effect","better":1,"matchers":[{"string":"增加 #% 震波圖騰範圍效果"},{"string":"減少 #% 震波圖騰範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1153159301"]}}} +{"ref":"#% increased Shockwave Totem Cast Speed","better":1,"matchers":[{"string":"增加 #% 震波圖騰施放速度"},{"string":"減少 #% 震波圖騰施放速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2259906777"]}}} +{"ref":"#% increased Shockwave Totem Damage","better":1,"matchers":[{"string":"增加 #% 震波圖騰傷害"},{"string":"減少 #% 震波圖騰傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2440551805"]}}} +{"ref":"#% increased Size of Fish caught during Daytime","better":1,"matchers":[{"string":"白天期間增加 #% 捕獲魚的大小"},{"string":"白天期間減少 #% 捕獲魚的大小","negate":true}],"trade":{"ids":{"scourge":["scourge.stat_1771018579"]}}} +{"ref":"#% increased Skeleton Attack Speed","better":1,"matchers":[{"string":"增加 #% 骷髏攻擊速度"},{"string":"減少 #% 骷髏攻擊速","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3413085237"]}}} +{"ref":"#% increased Skeleton Cast Speed","better":1,"matchers":[{"string":"增加 #% 骷髏施放速度"},{"string":"減少 #% 骷髏施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2725259389"]}}} +{"ref":"#% increased Skeleton Duration","better":1,"matchers":[{"string":"增加 #% 骷髏持續時間"},{"string":"減少 #% 骷髏持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1331384105"]}}} +{"ref":"#% increased Skeleton Movement Speed","better":1,"matchers":[{"string":"增加 #% 骷髏移動速度"},{"string":"減少 #% 骷髏移動","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3295031203"]}}} +{"ref":"#% increased Skill Effect Duration","better":1,"matchers":[{"string":"增加 #% 技能效果持續時間"},{"string":"減少 #% 技能效果持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3377888098"],"implicit":["implicit.stat_3377888098"],"fractured":["fractured.stat_3377888098"]}}} +{"ref":"#% increased Smoke Mine Duration","better":1,"matchers":[{"string":"增加 #% 煙霧地雷持續時間"},{"string":"減少 #% 煙霧地雷持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3719728947"]}}} +{"ref":"#% increased Soul Gain Prevention Duration","better":1,"matchers":[{"string":"增加 #% 停止獲得靈魂持續時間"},{"string":"減少 #% 停止獲得靈魂持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1980613100"]}}} +{"ref":"#% increased Soul Link Duration","better":1,"matchers":[{"string":"增加 #% 連結:靈魂持續時間"},{"string":"減少 #% 連結:靈魂持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3975033889"]}}} +{"ref":"#% increased Spark Damage","better":1,"matchers":[{"string":"增加 #% 電球傷害"},{"string":"減少 #% 電球傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1208019382"]}}} +{"ref":"#% increased Spectral Helix Damage","better":1,"matchers":[{"string":"增加 #% 靈體旋武傷害"},{"string":"減少 #% 靈體旋武傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_183131376"]}}} +{"ref":"#% increased Spectral Helix Projectile Speed","better":1,"matchers":[{"string":"增加 #% 靈體旋武投射物速度"},{"string":"減少 #% 靈體旋武投射物速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1952647315"]}}} +{"ref":"#% increased Spectral Shield Throw Damage","better":1,"matchers":[{"string":"增加 #% 盾靈投擲傷害"},{"string":"減少 #% 盾靈投擲傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1891516164"]}}} +{"ref":"#% increased Spectral Shield Throw Projectile Speed","better":1,"matchers":[{"string":"增加 #% 盾靈投擲投射物速度"},{"string":"減少 #% 盾靈投擲投射物速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1561141582"]}}} +{"ref":"#% increased Spectral Throw Damage","better":1,"matchers":[{"string":"增加 #% 靈體投擲傷害"},{"string":"減少 #% 靈體投擲傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3755794090"]}}} +{"ref":"#% increased Spectral Throw Projectile Speed","better":1,"matchers":[{"string":"增加 #% 靈體投擲投射物速度"},{"string":"減少 #% 靈體投擲投射物速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1062615953"]}}} +{"ref":"#% increased Spell Critical Strike Chance","better":1,"matchers":[{"string":"增加 #% 法術暴擊率"},{"string":"減少 #% 法術暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_737908626"],"implicit":["implicit.stat_737908626"],"fractured":["fractured.stat_737908626"],"crafted":["crafted.stat_737908626"]}}} +{"ref":"#% increased Spell Critical Strike Chance per 100 Player Maximum Life","better":1,"matchers":[{"string":"每 100 玩家最大生命,增加 #% 法術暴擊率"},{"string":"每 100 玩家最大生命,減少 #% 法術暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3775574601"]}}} +{"ref":"#% increased Spell Critical Strike Chance per Raised Spectre","better":1,"matchers":[{"string":"每個喚醒幽魂增加 #% 法術暴擊率"},{"string":"每個喚醒幽魂減少 #% 法術暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_495095219"]}}} +{"ref":"#% increased Spell Damage","better":1,"matchers":[{"string":"增加 #% 法術傷害"},{"string":"減少 #% 法術傷害","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_spell_damage"],"explicit":["explicit.stat_2974417149"],"implicit":["implicit.stat_2974417149"],"fractured":["fractured.stat_2974417149"],"enchant":["enchant.stat_2974417149"],"scourge":["scourge.stat_2974417149"],"crafted":["crafted.stat_2974417149"]}}} +{"ref":"#% increased Spell Damage during any Flask Effect","better":1,"matchers":[{"string":"在任何藥劑效果持續時間內,增加 #% 法術傷害"},{"string":"在任何藥劑效果持續時間內,減少 #% 法術傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2080171093"],"fractured":["fractured.stat_2080171093"]}}} +{"ref":"#% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%","better":1,"matchers":[{"string":"近期你每施放總 200 魔力時,增加 #% 法術傷害,最多上限的 2000%"},{"string":"近期你每施放總 200 魔力時,減少 #% 法術傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_347220474"]}}} +{"ref":"#% increased Spell Damage if Corrupted","better":1,"matchers":[{"string":"若已汙染增加 #% 法術傷害"},{"string":"若已汙染減少 #% 法術傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_374116820"]}}} +{"ref":"#% increased Spell Damage if you've dealt a Critical Strike in the past 8 seconds","better":1,"matchers":[{"string":"若過去 8 秒你有造成暴擊,增加 #% 法術傷害"},{"string":"若過去 8 秒你有造成暴擊,減少 #% 法術傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_467806158"]}}} +{"ref":"#% increased Spell Damage if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"若你近期造成暴擊,增加 #% 法術傷害"},{"string":"若你近期造成暴擊,減少 #% 法術傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1550015622"]}}} +{"ref":"#% increased Spell Damage if your other Ring is an Elder Item","better":1,"matchers":[{"string":"若另一個戒指為尊師之物,增加 #% 法術傷害"},{"string":"若另一個戒指為尊師之物,減少 #% 法術傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2921373173"]}}} +{"ref":"#% increased Spell Damage per 10 Intelligence","better":1,"matchers":[{"string":"每 10 智慧增加 #% 法術傷害"},{"string":"每 10 智慧減少 #% 法術傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2818518881"],"implicit":["implicit.stat_2818518881"]}}} +{"ref":"#% increased Spell Damage per 10 Strength","better":1,"matchers":[{"string":"每 10 點力量增加 #% 法術傷害"},{"string":"每 10 點力量減少 #% 法術傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1073314277"],"implicit":["implicit.stat_1073314277"]}}} +{"ref":"#% increased Spell Damage per 100 Player Maximum Life","better":1,"matchers":[{"string":"每 100 玩家最大生命,增加 #% 法術傷害"},{"string":"每 100 玩家最大生命,減少 #% 法術傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3491815140"]}}} +{"ref":"#% increased Spell Damage per 16 Dexterity","better":1,"matchers":[{"string":"每 16 點敏捷增加 #% 法術傷害"},{"string":"每 16 點敏捷減少 #% 法術傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2612056840"],"implicit":["implicit.stat_2612056840"]}}} +{"ref":"#% increased Spell Damage per 16 Intelligence","better":1,"matchers":[{"string":"每 16 點智慧增加 #% 法術傷害"},{"string":"每 16 點智慧減少 #% 法術傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3961014595"],"implicit":["implicit.stat_3961014595"],"fractured":["fractured.stat_3961014595"]}}} +{"ref":"#% increased Spell Damage per 16 Strength","better":1,"matchers":[{"string":"每 16 點力量增加 #% 法術傷害"},{"string":"每 16 點力量減少 #% 法術傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4249521944"],"implicit":["implicit.stat_4249521944"]}}} +{"ref":"#% increased Spell Damage per 5% Chance to Block Attack Damage","better":1,"matchers":[{"string":"每 5% 攻擊傷害格擋率增加 #% 法術傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2449668043"]}}} +{"ref":"#% increased Spell Damage per 500 Maximum Mana","better":1,"matchers":[{"string":"每 500 最大魔力增加 #% 法術傷害"},{"string":"每 500 最大魔力減少 #% 法術傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3555662994"]}}} +{"ref":"#% increased Spell Damage per Power Charge","better":1,"matchers":[{"string":"每個暴擊球增加 #% 法術傷害"}],"trade":{"ids":{"explicit":["explicit.stat_827329571"],"implicit":["implicit.stat_827329571"]}}} +{"ref":"#% increased Spell Damage taken when on Low Mana","better":1,"matchers":[{"string":"貧魔時增加 #% 承受的法術傷害"},{"string":"貧魔時減少 #% 承受的法術傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3557561376"]}}} +{"ref":"#% increased Spell Damage while Dual Wielding","better":1,"matchers":[{"string":"雙持時增加 #% 法術傷害"},{"string":"雙持時減少 #% 法術傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1678690824"],"implicit":["implicit.stat_1678690824"],"fractured":["fractured.stat_1678690824"]}}} +{"ref":"#% increased Spell Damage while holding a Shield","better":1,"matchers":[{"string":"持盾時增加 #% 法術傷害"},{"string":"持盾時減少 #% 法術傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1766142294"],"implicit":["implicit.stat_1766142294"],"fractured":["fractured.stat_1766142294"]}}} +{"ref":"#% increased Spell Damage while no Mana is Reserved","better":1,"matchers":[{"string":"無魔力保留時增加 #% 法術傷害"},{"string":"無魔力保留時增減少 #% 法術傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3779823630"]}}} +{"ref":"#% increased Spell Damage while wielding a Staff","better":1,"matchers":[{"string":"持長杖時增加 #% 法術傷害"},{"string":"持長杖時減少 #% 法術傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3496944181"],"implicit":["implicit.stat_3496944181"],"fractured":["fractured.stat_3496944181"]}}} +{"ref":"#% increased Spirit Offering Duration","better":1,"matchers":[{"string":"增加 #% 靈魂奉獻持續時間"},{"string":"減少 #% 靈魂奉獻持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1063173946"]}}} +{"ref":"#% increased Split Arrow Critical Strike Chance","better":1,"matchers":[{"string":"增加 #% 分裂箭矢暴擊率"},{"string":"減少 #% 分裂箭矢暴擊率","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1028884162"]}}} +{"ref":"#% increased Split Arrow Damage","better":1,"matchers":[{"string":"增加 #% 分裂箭矢傷害"},{"string":"減少 #% 分裂箭矢傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2555469486"]}}} +{"ref":"#% increased Static Strike Area of Effect","better":1,"matchers":[{"string":"增加 #% 充能打擊範圍"},{"string":"減少 #% 充能打擊範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2685860927"]}}} +{"ref":"#% increased Static Strike Damage","better":1,"matchers":[{"string":"增加 #% 充能打擊傷害"},{"string":"減少 #% 充能打擊傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_551375258"]}}} +{"ref":"#% increased Static Strike Duration","better":1,"matchers":[{"string":"增加 #% 充能打擊持續時間"},{"string":"減少 #% 充能打擊持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2906742892"]}}} +{"ref":"#% increased Storm Burst Area of Effect","better":1,"matchers":[{"string":"增加 #% 風爆範圍效果"},{"string":"減少 #% 風爆範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3961497709"]}}} +{"ref":"#% increased Storm Burst Damage","better":1,"matchers":[{"string":"增加 #% 風爆傷害"},{"string":"減少 #% 風爆傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2948719994"]}}} +{"ref":"#% increased Storm Call Area of Effect","better":1,"matchers":[{"string":"增加 #% 風暴呼喚範圍效果"},{"string":"減少 #% 風暴呼喚範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2070247068"]}}} +{"ref":"#% increased Storm Call Damage","better":1,"matchers":[{"string":"增加 #% 風暴呼喚傷害"},{"string":"減少 #% 風暴呼喚傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3359777583"]}}} +{"ref":"#% increased Storm Rain Damage","better":1,"matchers":[{"string":"增加 #% 暴風雷雨傷害"},{"string":"減少 #% 暴風雷雨傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1463790510"]}}} +{"ref":"#% increased Strength","better":1,"matchers":[{"string":"增加 #% 力量"},{"string":"減少 #% 力量","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_734614379"],"implicit":["implicit.stat_734614379"],"fractured":["fractured.stat_734614379"],"scourge":["scourge.stat_734614379"]}}} +{"ref":"#% increased Strength Requirement","better":1,"matchers":[{"string":"無力量需求","value":-100},{"string":"增加 #% 力量需求"},{"string":"減少 #% 力量需求","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_295075366"]}}} +{"ref":"#% increased Stun and Block Recovery","better":1,"matchers":[{"string":"增加 #% 暈眩恢復和格擋恢復"},{"string":"減少 #% 暈眩恢復和格擋恢復","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2511217560"],"implicit":["implicit.stat_2511217560"],"fractured":["fractured.stat_2511217560"],"scourge":["scourge.stat_2511217560"]}}} +{"ref":"#% increased Stun Duration on Enemies","better":1,"matchers":[{"string":"增加 #% 敵人暈眩時間"},{"string":"減少 #% 敵人暈眩時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2517001139"],"implicit":["implicit.stat_2517001139"],"fractured":["fractured.stat_2517001139"],"scourge":["scourge.stat_2517001139"],"crafted":["crafted.stat_2517001139"]}}} +{"ref":"#% increased Stun Duration on you","better":1,"matchers":[{"string":"增加你 #% 被暈眩的時間"},{"string":"減少你 #% 被暈眩的時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1067429236"]}}} +{"ref":"#% increased Stun Duration with Melee Weapons","better":1,"matchers":[{"string":"使用近戰武器時增加 #% 暈眩持續時間"},{"string":"使用近戰武器時減少 #% 暈眩持續時間","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2912587137"]}}} +{"ref":"#% increased Stun Threshold","better":1,"matchers":[{"string":"增加 #% 暈眩門檻"},{"string":"減少 #% 暈眩門檻","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_680068163"],"implicit":["implicit.stat_680068163"],"fractured":["fractured.stat_680068163"]}}} +{"ref":"#% increased Suffix Modifier magnitudes","better":1,"matchers":[{"string":"增加 #% 後綴大小"},{"string":"減少 #% 後綴大小","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1033086302"]}}} +{"ref":"#% increased Summon Reaper Cooldown Recovery Rate","better":1,"matchers":[{"string":"增加 #% 召喚奪魂鐮冷卻時間恢復速度"},{"string":"減少 #% 召喚奪魂鐮冷卻時間恢復速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_82475304"]}}} +{"ref":"#% increased Sweep Area of Effect","better":1,"matchers":[{"string":"增加 #% 橫掃範圍效果"},{"string":"減少 #% 橫掃範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4202548383"]}}} +{"ref":"#% increased Sweep Damage","better":1,"matchers":[{"string":"增加 #% 橫掃傷害"},{"string":"減少 #% 橫掃傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_253870897"]}}} +{"ref":"#% increased Taunt Duration","better":1,"matchers":[{"string":"增加 #% 嘲諷持續時間"},{"string":"減少 #% 嘲諷持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3651611160"]}}} +{"ref":"#% increased Tempest Shield Damage","better":1,"matchers":[{"string":"增加 #% 暴風之盾傷害"},{"string":"減少 #% 暴風之盾傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2121581717"]}}} +{"ref":"#% increased Temporal Chains Curse Effect","better":1,"matchers":[{"string":"增加 #% 時空鎖鏈的詛咒效果"},{"string":"減少 #% 時空鎖鏈的詛咒效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1662974426"],"enchant":["enchant.stat_1662974426"]}}} +{"ref":"#% increased Temporal Chains Duration","better":1,"matchers":[{"string":"增加 #% 時空鎖鍊持續時間"},{"string":"減少 #% 時空鎖鍊持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_888039248"]}}} +{"ref":"#% increased time before Lockdown","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"增加 #% 封鎖前的時間"},{"string":"封鎖前增加 #% 時間"},{"string":"封鎖前減少 #% 時間","negate":true},{"string":"減少 #% 封鎖前的時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2435922859","explicit.stat_4004160031"],"fractured":["fractured.stat_2435922859"],"enchant":["enchant.stat_429193272"]}}} +{"ref":"#% increased Tornado Area of Effect","better":1,"matchers":[{"string":"增加 #% 龍捲風範圍效果"},{"string":"減少 #% 龍捲風範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1866415366"]}}} +{"ref":"#% increased Tornado Damage","better":1,"matchers":[{"string":"增加 #% 龍捲風傷害"},{"string":"減少 #% 龍捲風傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2681941384"]}}} +{"ref":"#% increased Tornado Shot Critical Strike Chance","better":1,"matchers":[{"string":"增加 #% 龍捲射擊暴擊率"},{"string":"減少 #% 龍捲射擊暴擊率","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1815368527"]}}} +{"ref":"#% increased Tornado Shot Damage","better":1,"matchers":[{"string":"增加 #% 龍捲射擊傷害"},{"string":"減少 #% 龍捲射擊傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3555919553"]}}} +{"ref":"#% increased Total Heist Fee","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"增加 #% 總計劫盜費用"},{"string":"減少 #% 總計劫盜費","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_553402472"],"fractured":["fractured.stat_553402472"]}}} +{"ref":"#% increased total Recovery per second from Life Leech","better":1,"matchers":[{"string":"增加 #% 生命偷取的每秒總恢復"},{"string":"減少 #% 生命偷取的每秒總恢復","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2633745731"],"implicit":["implicit.stat_2633745731"],"fractured":["fractured.stat_2633745731"],"enchant":["enchant.stat_2633745731"]}}} +{"ref":"#% increased total Recovery per second from Life, Mana, or Energy Shield Leech","better":1,"matchers":[{"string":"增加 #% 生命、魔力或能量護盾偷取的每秒總恢復"},{"string":"減少 #% 生命、魔力或能量護盾偷取的每秒總恢復","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2314393054"]}}} +{"ref":"#% increased total Recovery per second from Mana Leech","better":1,"matchers":[{"string":"增加 #% 魔力偷取的每秒總恢復"},{"string":"減少 #% 魔力偷取的每秒總恢復","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_690135178"],"implicit":["implicit.stat_690135178"],"enchant":["enchant.stat_690135178"]}}} +{"ref":"#% increased Totem Damage","better":1,"matchers":[{"string":"增加 #% 圖騰傷害"},{"string":"減少 #% 圖騰傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3851254963"],"fractured":["fractured.stat_3851254963"]}}} +{"ref":"#% increased Totem Damage per 10 Devotion","better":1,"matchers":[{"string":"每 10 個奉獻,增加 #% 圖騰傷害"},{"string":"每 10 個奉獻,減少 #% 圖騰傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2566390555"]}}} +{"ref":"#% increased Totem Duration","better":1,"matchers":[{"string":"增加 #% 圖騰持續時間"},{"string":"減少 #% 圖騰持續時間","negate":true}],"trade":{"ids":{"scourge":["scourge.stat_2357996603"]}}} +{"ref":"#% increased Totem Life","better":1,"matchers":[{"string":"增加 #% 圖騰生命"},{"string":"減少 #% 圖騰生命","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_686254215"],"fractured":["fractured.stat_686254215"],"scourge":["scourge.stat_686254215"]}}} +{"ref":"#% increased Totem Life per 10 Strength Allocated in Radius","better":1,"matchers":[{"string":"範圍內每配置 10 力量增加 #% 圖騰生命"},{"string":"範圍內每配置 10 力量減少 #% 圖騰生命","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_747037697"]}}} +{"ref":"#% increased Totem Placement speed","better":1,"matchers":[{"string":"增加 #% 圖騰放置速度"},{"string":"減少 #% 圖騰放置速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3374165039"],"implicit":["implicit.stat_3374165039"],"fractured":["fractured.stat_3374165039"],"enchant":["enchant.stat_3374165039"],"scourge":["scourge.stat_3374165039"],"crafted":["crafted.stat_3374165039"]}}} +{"ref":"#% increased Trap and Mine Throwing Speed","better":1,"matchers":[{"string":"增加 #% 陷阱和地雷投擲速度"},{"string":"減少 #% 陷阱和地雷投擲速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_464535071"],"fractured":["fractured.stat_464535071"]}}} +{"ref":"#% increased Trap Damage","better":1,"matchers":[{"string":"增加 #% 陷阱傷害"},{"string":"減少 #% 陷阱傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2941585404"],"fractured":["fractured.stat_2941585404"],"crafted":["crafted.stat_2941585404"]}}} +{"ref":"#% increased Trap Disarmament Experience gained","better":1,"matchers":[{"string":"增加 #% 獲得陷阱解除經驗值"},{"string":"減少 #% 獲得陷阱解除經驗值","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_502047644"],"fractured":["fractured.stat_502047644"]}}} +{"ref":"#% increased Trap Disarmament speed","better":1,"matchers":[{"string":"增加 #% 拆除陷阱速度"},{"string":"增加 #% 解除陷阱速度"},{"string":"減少 #% 拆除陷阱速度","negate":true},{"string":"減少 #% 解除陷阱速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1579578270"],"implicit":["implicit.stat_1579578270"]}}} +{"ref":"#% increased Trap Duration","better":1,"matchers":[{"string":"增加 #% 陷阱持續時間"},{"string":"減少 #% 陷阱持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2001530951"],"fractured":["fractured.stat_2001530951"]}}} +{"ref":"#% increased Trap Throwing Speed","better":1,"matchers":[{"string":"增加 #% 陷阱投擲速度"},{"string":"減少 #% 陷阱投擲速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_118398748"],"implicit":["implicit.stat_118398748"],"fractured":["fractured.stat_118398748"],"scourge":["scourge.stat_118398748"],"crafted":["crafted.stat_118398748"]}}} +{"ref":"#% increased Trap Trigger Area of Effect","better":1,"matchers":[{"string":"增加 #% 陷阱觸發範圍"},{"string":"減少 #% 陷阱觸發範圍","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_497716276"]}}} +{"ref":"#% increased Travel Fee","better":-1,"matchers":[{"string":"增加 #% 旅費"},{"string":"減少 #% 旅費","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2904116257"],"fractured":["fractured.stat_2904116257"]}}} +{"ref":"#% increased Unearth Cast Speed","better":1,"matchers":[{"string":"增加 #% 屍術矢施放速度"},{"string":"減少 #% 屍術矢施放速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2387717928"]}}} +{"ref":"#% increased Unearth Damage","better":1,"matchers":[{"string":"增加 #% 屍術矢傷害"},{"string":"減少 #% 屍術矢傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3953599026"]}}} +{"ref":"#% increased Unveiled Modifier magnitudes","better":1,"matchers":[{"string":"增加 #% 已揭露詞綴的幅度"}],"trade":{"ids":{"explicit":["explicit.stat_586037801"]}}} +{"ref":"#% increased Vaal Skill Critical Strike Chance","better":1,"matchers":[{"string":"增加 #% 瓦爾技能暴擊率"},{"string":"減少 #% 瓦爾技能暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3165492062"],"implicit":["implicit.stat_3165492062"],"fractured":["fractured.stat_3165492062"]}}} +{"ref":"#% increased Vaal Skill Effect Duration","better":1,"matchers":[{"string":"增加 #% 瓦爾技能持續時間"},{"string":"減少 #% 瓦爾技能持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_547412107"],"implicit":["implicit.stat_547412107"],"fractured":["fractured.stat_547412107"]}}} +{"ref":"#% increased Valour gained","better":1,"matchers":[{"string":"增加 #% 獲得勇氣"},{"string":"減少 #% 獲得勇氣","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1050359418"]}}} +{"ref":"#% increased Vampiric Link Duration","better":1,"matchers":[{"string":"增加 #% 連結:吸血持續時間"},{"string":"減少 #% 連結:吸血持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1238426677"]}}} +{"ref":"#% increased Vengeance Damage","better":1,"matchers":[{"string":"增加 #% 復仇傷害"},{"string":"減少 #% 復仇傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1972101281"]}}} +{"ref":"#% increased Vigilant Strike Damage","better":1,"matchers":[{"string":"增加 #% 戒備打擊傷害"},{"string":"減少 #% 戒備打擊傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2287764959"]}}} +{"ref":"#% increased Viper Strike Critical Strike Chance","better":1,"matchers":[{"string":"增加 #% 毒蛇打擊暴擊率"},{"string":"減少 #% 毒蛇打擊暴擊率","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3734756042"]}}} +{"ref":"#% increased Viper Strike Damage","better":1,"matchers":[{"string":"增加 #% 毒蛇打擊傷害"},{"string":"減少 #% 毒蛇打擊傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2585271359"]}}} +{"ref":"#% increased Viper Strike Duration","better":1,"matchers":[{"string":"增加 #% 毒蛇打擊持續時間"},{"string":"減少 #% 毒蛇打擊持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3869217625"]}}} +{"ref":"#% increased Volatile Dead Cast Speed","better":1,"matchers":[{"string":"增加 #% 致命之息施放速度"},{"string":"減少 #% 致命之息施放速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3179781611"]}}} +{"ref":"#% increased Volatile Dead Damage","better":1,"matchers":[{"string":"增加 #% 致命之息傷害"},{"string":"減少 #% 致命之息傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1212590278"]}}} +{"ref":"#% increased Voltaxic Burst Area of Effect","better":1,"matchers":[{"string":"增加 #% 魔痕爆發範圍效果"},{"string":"減少 #% 魔痕爆發範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2982851186"]}}} +{"ref":"#% increased Voltaxic Burst Damage","better":1,"matchers":[{"string":"增加 #% 魔痕爆發傷害"},{"string":"減少 #% 魔痕爆發傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2913890852"]}}} +{"ref":"#% increased Vortex Damage","better":1,"matchers":[{"string":"增加 #% 漩渦傷害"},{"string":"減少 #% 漩渦傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_200942664"]}}} +{"ref":"#% increased Vortex Duration","better":1,"matchers":[{"string":"增加 #% 漩渦持續時間"},{"string":"減少 #% 漩渦持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4074562940"]}}} +{"ref":"#% increased Vulnerability Curse Effect","better":1,"matchers":[{"string":"增加 #% 脆弱的詛咒效果"},{"string":"減少 #% 脆弱的詛咒效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1065909420"],"enchant":["enchant.stat_1065909420"]}}} +{"ref":"#% increased Vulnerability Duration","better":1,"matchers":[{"string":"增加 #% 脆弱持續時間"},{"string":"減少 #% 脆弱持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3229878341"]}}} +{"ref":"#% increased Warcry Buff Effect","better":1,"matchers":[{"string":"增加 #% 戰吼的增益效果"},{"string":"減少 #% 戰吼的增益效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3037553757"],"implicit":["implicit.stat_3037553757"],"crafted":["crafted.stat_3037553757"]}}} +{"ref":"#% increased Warcry Cooldown Recovery Rate","better":1,"matchers":[{"string":"增加 #% 戰吼冷卻恢復速度"},{"string":"減少 #% 戰吼冷卻恢復速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4159248054"]}}} +{"ref":"#% increased Warcry Speed","better":1,"matchers":[{"string":"增加 #% 戰吼施放速度"},{"string":"減少 #% 戰吼施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1316278494"],"implicit":["implicit.stat_1316278494"],"fractured":["fractured.stat_1316278494"],"scourge":["scourge.stat_1316278494"],"crafted":["crafted.stat_1316278494"]}}} +{"ref":"#% increased Ward","better":1,"matchers":[{"string":"增加 #% 保護"},{"string":"減少 #% 保護","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_830161081"],"fractured":["fractured.stat_830161081"]}}} +{"ref":"#% increased Ward during Effect","better":1,"matchers":[{"string":"效果持續時間,增加 #% 保護"},{"string":"效果持續時間,減少 #% 保護","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2891175306"]}}} +{"ref":"#% increased Warlord's Mark Curse Effect","better":1,"matchers":[{"string":"增加 #% 督軍印記的詛咒效果"},{"string":"減少 #% 督軍印記的詛咒效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1528965411"]}}} +{"ref":"#% increased Whirling Blades Attack Speed","better":1,"matchers":[{"string":"增加 #% 迴旋之刃攻擊速度"},{"string":"減少 #% 迴旋之刃攻擊速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1902197291"]}}} +{"ref":"#% increased Whirling Blades Damage","better":1,"matchers":[{"string":"增加 #% 迴旋之刃傷害"},{"string":"減少 #% 迴旋之刃傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3723124286"]}}} +{"ref":"#% increased Wild Strike Area of Effect","better":1,"matchers":[{"string":"增加 #% 野性打擊範圍效果"},{"string":"減少 #% 野性打擊範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_524936200"]}}} +{"ref":"#% increased Wild Strike Damage","better":1,"matchers":[{"string":"增加 #% 野性打擊傷害"},{"string":"減少 #% 野性打擊傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1666713639"]}}} +{"ref":"#% less Animate Weapon Duration","better":-1,"matchers":[{"string":"#% 更多幻化武器時間"},{"string":"#% 更少幻化武器時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_414991155"]},"inverted":true}} +{"ref":"#% less Critical Strike Chance","better":-1,"matchers":[{"string":"更多 #% 暴擊率"},{"string":"更少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4181057577"]},"inverted":true}} +{"ref":"#% less Damage taken if you have not been Hit Recently","better":-1,"matchers":[{"string":"若近期未被擊中,承受 #% 更多傷害"},{"string":"若近期未被擊中,承受 #% 更少傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_67637087"]},"inverted":true}} +{"ref":"#% less effect of Curses on Monsters","better":-1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"對怪物的詛咒有 #% 更多效果"},{"string":"對怪物的詛咒有 #% 更少效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3796523155"],"fractured":["fractured.stat_3796523155"]},"inverted":true}} +{"ref":"#% less Mine Damage","better":-1,"matchers":[{"string":"#% 更多地雷傷害"},{"string":"#% 更少地雷傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3298440988"]},"inverted":true}} +{"ref":"#% less Minimum Physical Attack Damage","better":1,"matchers":[{"string":"#% 更多最小物理攻擊傷害"},{"string":"#% 更少最小物理攻擊傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1715495976"]},"inverted":true}} +{"ref":"#% less Poison Duration","better":-1,"matchers":[{"string":"#% 更多中毒期間"},{"string":"#% 更少中毒期間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1237693206"]},"inverted":true}} +{"ref":"#% more Accuracy Rating","better":1,"matchers":[{"string":"更多 #% 命中值"},{"string":"更少 #% 命中值","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_170394517"]}}} +{"ref":"#% more Attack Speed","better":1,"matchers":[{"string":"#% 更多攻擊速度"},{"string":"#% 更少攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2418322751"]}}} +{"ref":"#% more Burning Damage","better":1,"matchers":[{"string":"#% 更多燃燒傷害"},{"string":"#% 更少燃燒傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3134513219"]}}} +{"ref":"#% more Critical Strike chance while affected by Precision","better":1,"matchers":[{"string":"被精準影響時,有 #% 更多暴擊率"},{"string":"被精準影響時,有 #% 更少暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2617837023"]}}} +{"ref":"#% more Critical Strike Chance while Insane","better":1,"matchers":[{"string":"瘋狂時有 #% 更多暴擊率"},{"string":"瘋狂時有 #% 更少暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2692289207"]}}} +{"ref":"#% more Damage","better":1,"matchers":[{"string":"#% 更多傷害"},{"string":"#% 更少傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_412462523"]}}} +{"ref":"#% more Damage with Arrow Hits at Close Range","better":1,"matchers":[{"string":"近距離使用弓擊中時造成 #% 更多傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2749166636"]}}} +{"ref":"#% more Damage with Arrow Hits at Close Range while you have Iron Reflexes","better":1,"matchers":[{"string":"當你有霸體時近距離使用弓擊中有 #% 更多傷害"}],"trade":{"ids":{"explicit":["explicit.stat_304032021"]}}} +{"ref":"#% more Duration","better":1,"matchers":[{"string":"#% 更多持續時間"},{"string":"#% 更少持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1506355899"],"fractured":["fractured.stat_1506355899"]}}} +{"ref":"#% more Effect of your Curses","better":1,"matchers":[{"string":"你的詛咒有 #% 更多效果"},{"string":"你的詛咒有 #% 更少效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4106109768"]}}} +{"ref":"#% more Elemental Damage taken per Raised Zombie","better":1,"matchers":[{"string":"每隻殭屍復甦承受 #% 更多元素傷害"},{"string":"每隻殭屍復甦承受 #% 更少元素傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_512740886"]}}} +{"ref":"#% more Energy Shield Recharge Rate","better":1,"matchers":[{"string":"#% 更多能量護盾充能率"},{"string":"#% 更少能量護盾充能率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3432301333"]}}} +{"ref":"#% more Flask Charges gained from Kills","better":1,"matchers":[{"string":"擊殺時獲得 #% 更多藥劑充能"},{"string":"擊殺時獲得 #% 更少藥劑充能","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3790386828","explicit.stat_624257168"]}}} +{"ref":"#% more Ignite Duration","better":1,"matchers":[{"string":"#% 更多點燃持續時間"},{"string":"#% 更少點燃持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2614885550"]}}} +{"ref":"#% more Main Hand attack speed","better":1,"matchers":[{"string":"#% 更多主手攻擊速度"},{"string":"#% 更少主手攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_56401364"]}}} +{"ref":"#% more Maximum Life","better":1,"matchers":[{"string":"#% 更多最大生命"},{"string":"#% 更少最大生命","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2783958145"]}}} +{"ref":"#% more Maximum Physical Attack Damage","better":1,"matchers":[{"string":"#% 更多最大物理攻擊傷害"},{"string":"#% 更少物理最大攻擊傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3029185248"]}}} +{"ref":"#% more Melee Physical Damage during effect","better":1,"matchers":[{"string":"藥劑效果期間獲得 #% 更多近戰物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3636096208"]}}} +{"ref":"#% more Monster Life","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"#% 更多怪物生命"},{"string":"怪物有 #% 更多生命"},{"string":"#% 更少怪物生命","negate":true},{"string":"怪物有 #% 更少生命","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2710898947","explicit.stat_95249895"],"implicit":["implicit.stat_95249895"],"fractured":["fractured.stat_95249895"],"enchant":["enchant.stat_3026134008"]}}} +{"ref":"#% more Physical and Chaos Damage Taken while Sane","better":1,"matchers":[{"string":"理智時,承受 #% 更多物理和混沌傷害"},{"string":"理智時,承受 #% 更少物理和混沌傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_388639924"]}}} +{"ref":"#% more Physical Damage with Unarmed Melee Attacks","better":1,"matchers":[{"string":"空手近戰攻擊有 #% 更多物理傷害"},{"string":"空手近戰攻擊有 #% 更少物理傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1814782245"]}}} +{"ref":"#% more Power Charge Duration","better":1,"matchers":[{"string":"#% 更多暴擊球持續時間"},{"string":"#% 更少暴擊球持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2625134410"]}}} +{"ref":"#% more Recovery if used while on Low Life","better":1,"matchers":[{"string":"若使用時貧血,有 #% 更多恢復"}],"trade":{"ids":{"explicit":["explicit.stat_886931978"],"fractured":["fractured.stat_886931978"]}}} +{"ref":"#% more Rogue's Marker value of primary Heist Target","better":1,"matchers":[{"string":"主要劫盜目標有 #% 更多盜賊之印"},{"string":"主要劫盜目標有 #% 更少盜賊之印","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3009603087"]}}} +{"ref":"#% more Ward during Effect","better":1,"matchers":[{"string":"效果持續時間,有 #% 更多保護"},{"string":"效果持續時間,有 #% 更少保護","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3615541554"]}}} +{"ref":"#% of Armour applies to Fire, Cold and Lightning Damage taken from Hits","better":1,"matchers":[{"string":"#% 護甲套用至承受來自擊中的火焰、冰冷和閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3362812763"]}}} +{"ref":"#% of Attack Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"#% 攻擊傷害偷取生命"}],"trade":{"ids":{"explicit":["explicit.stat_141810208"],"implicit":["implicit.stat_141810208"]}}} +{"ref":"#% of Attack Damage Leeched as Life against Bleeding Enemies","dp":true,"better":1,"matchers":[{"string":"#% 對流血的敵人所造成的攻擊傷害偷取生命"}],"trade":{"ids":{"explicit":["explicit.stat_1625933063"]}}} +{"ref":"#% of Attack Damage Leeched as Life against Chilled Enemies","dp":true,"better":1,"matchers":[{"string":"#% 對冰緩的敵人所造成的攻擊傷害偷取生命"}],"trade":{"ids":{"explicit":["explicit.stat_748813744"]}}} +{"ref":"#% of Attack Damage Leeched as Life against Maimed Enemies","dp":true,"better":1,"matchers":[{"string":"攻擊癱瘓的敵人時,偷取等同攻擊傷害 #% 的生命"}],"trade":{"ids":{"explicit":["explicit.stat_447636597"]}}} +{"ref":"#% of Attack Damage Leeched as Life against Taunted Enemies","dp":true,"better":1,"matchers":[{"string":"攻擊受嘲諷的敵人時,偷取等同攻擊傷害 #% 的生命"}],"trade":{"ids":{"explicit":["explicit.stat_3750917270"]}}} +{"ref":"#% of Attack Damage Leeched as Life and Mana if you've Killed Recently","dp":true,"better":1,"matchers":[{"string":"若你近期有擊殺,#% 攻擊傷害偷取生命和魔力"}],"trade":{"ids":{"explicit":["explicit.stat_2770801535"]}}} +{"ref":"#% of Attack Damage Leeched as Life during Effect","dp":true,"better":1,"matchers":[{"string":"效果持續時間,#% 攻擊傷害偷取生命"}],"trade":{"ids":{"explicit":["explicit.stat_1173558568"],"fractured":["fractured.stat_1173558568"]}}} +{"ref":"#% of Attack Damage Leeched as Life on Critical Strike","dp":true,"better":1,"matchers":[{"string":"暴擊時 #% 攻擊傷害偷取生命"}],"trade":{"ids":{"explicit":["explicit.stat_2100196861"]}}} +{"ref":"#% of Attack Damage Leeched as Life per Frenzy Charge","dp":true,"better":1,"matchers":[{"string":"每顆狂怒球,#% 攻擊傷害偷取生命"}],"trade":{"ids":{"explicit":["explicit.stat_3243062554"]}}} +{"ref":"#% of Attack Damage Leeched as Mana","dp":true,"better":1,"matchers":[{"string":"#% 攻擊傷害偷取魔力"}],"trade":{"ids":{"explicit":["explicit.stat_350069479"],"implicit":["implicit.stat_350069479"]}}} +{"ref":"#% of Attack Damage Leeched as Mana against Poisoned Enemies","dp":true,"better":1,"matchers":[{"string":"對中毒敵人所造成傷害 #% 偷取魔力"}],"trade":{"ids":{"explicit":["explicit.stat_3067409450"]}}} +{"ref":"#% of Attack Damage Leeched as Mana per Power Charge","dp":true,"better":1,"matchers":[{"string":"你的每顆暴擊球皆提供攻擊傷害 #% 的魔力偷取"}],"trade":{"ids":{"explicit":["explicit.stat_2628721358"]}}} +{"ref":"#% of Burning Arrow Physical Damage gained as Extra Fire Damage","better":1,"matchers":[{"string":"獲得等同 #% 燃燒箭矢物理傷害的額外火焰傷害"}],"trade":{"ids":{"enchant":["enchant.stat_3229580299"]}}} +{"ref":"#% of Chaos Damage is taken from Mana before Life","better":1,"matchers":[{"string":"生命值所受的 #% 混沌傷害由魔力扣除"},{"string":"生命值所受的混沌傷害由魔力扣除","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3967028570"]}}} +{"ref":"#% of Chaos Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"#% 混沌傷害偷取生命"}],"trade":{"ids":{"explicit":["explicit.stat_744082851"],"implicit":["implicit.stat_2238792070","implicit.stat_744082851"],"fractured":["fractured.stat_744082851"],"scourge":["scourge.stat_744082851"]}}} +{"ref":"#% of Chaos Damage Leeched as Life during Effect","dp":true,"better":1,"matchers":[{"string":"效果持續時間,#% 混沌傷害偷取生命"}],"trade":{"ids":{"explicit":["explicit.stat_1341148741"]}}} +{"ref":"#% of Chaos Damage taken does not bypass Energy Shield","better":1,"matchers":[{"string":"#% 承受的混沌傷害不會無視能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_1865744989"]}}} +{"ref":"#% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire","better":1,"matchers":[{"string":"被火焰淨化影響時,承受 #% 的冰冷和閃電傷害視為火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1723738042"]}}} +{"ref":"#% of Cold Damage Converted to Fire Damage","better":1,"matchers":[{"string":"#% 冰冷傷害轉換為火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_723832351"]}}} +{"ref":"#% of Cold Damage from Hits taken as Fire Damage","better":1,"matchers":[{"string":"承受 #% 的擊中冰冷傷害視為火焰傷害"}],"trade":{"ids":{"implicit":["implicit.stat_1189760108"]}}} +{"ref":"#% of Cold Damage from Hits taken as Lightning Damage","better":1,"matchers":[{"string":"承受 #% 的擊中冰冷傷害視為閃電傷害"}],"trade":{"ids":{"implicit":["implicit.stat_1313503107"]}}} +{"ref":"#% of Cold Damage Leeched as Energy Shield","dp":true,"better":1,"matchers":[{"string":"#% 冰冷傷害偷取能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_1939452467"]}}} +{"ref":"#% of Cold Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"#% 冰冷傷害偷取生命"}],"trade":{"ids":{"explicit":["explicit.stat_3999401129"],"implicit":["implicit.stat_2459451600","implicit.stat_3999401129"],"fractured":["fractured.stat_3999401129"],"scourge":["scourge.stat_3999401129"],"crafted":["crafted.stat_3999401129"]}}} +{"ref":"#% of Cold Damage Leeched by Enemy as Life","dp":true,"better":1,"matchers":[{"string":"#% 冰冷傷害被敵人偷取為生命"}],"trade":{"ids":{"explicit":["explicit.stat_3271464175"]}}} +{"ref":"#% of Cold Damage taken as Fire Damage","better":1,"matchers":[{"string":"#% 的冰冷傷害承受為火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1642347505"]}}} +{"ref":"#% of Cold Damage taken as Lightning Damage","better":1,"matchers":[{"string":"#% 的冰冷傷害承受為閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2881210047"]}}} +{"ref":"#% of Cold Damage taken Recouped as Life","better":1,"matchers":[{"string":"#% 承受的冰冷傷害補償為生命"}],"trade":{"ids":{"explicit":["explicit.stat_3679418014"],"implicit":["implicit.stat_3679418014"]}}} +{"ref":"#% of Damage against Frozen Enemies Leeched as Life","dp":true,"better":1,"matchers":[{"string":"#% 對冰凍的敵人造成之傷害偷取生命"}],"trade":{"ids":{"explicit":["explicit.stat_593279674"]}}} +{"ref":"#% of Damage dealt by your Mines is Leeched to you as Life","dp":true,"better":1,"matchers":[{"string":"你偷取等同 #% 你地雷造成的傷害之生命"}],"trade":{"ids":{"explicit":["explicit.stat_807450540"]}}} +{"ref":"#% of Damage dealt by your Totems is Leeched to you as Life","dp":true,"better":1,"matchers":[{"string":"你偷取等同 #% 你圖騰造成的傷害之生命"}],"trade":{"ids":{"explicit":["explicit.stat_3812562802"]}}} +{"ref":"#% of Damage from Hits is taken from your nearest Totem's Life before you","better":1,"matchers":[{"string":"被擊中時,承受的 #% 傷害由最靠近你的圖騰生命扣除"}],"trade":{"ids":{"explicit":["explicit.stat_2762445213"]}}} +{"ref":"#% of Damage from Hits is taken from your Spectres' Life before you","better":1,"matchers":[{"string":"被擊中時,生命值所受的 #% 傷害由你的幽魂扣除"}],"trade":{"ids":{"explicit":["explicit.stat_54812069"]}}} +{"ref":"#% of Damage is taken from Mana before Life","better":1,"matchers":[{"string":"生命值所受的 #% 傷害由魔力扣除"}],"trade":{"ids":{"explicit":["explicit.stat_458438597"],"implicit":["implicit.stat_458438597"]}}} +{"ref":"#% of Damage is taken from Mana before Life per Power Charge","better":1,"matchers":[{"string":"每個暴擊球讓你生命值受到的 #% 傷害由魔力先承受"}],"trade":{"ids":{"explicit":["explicit.stat_1325047894"]}}} +{"ref":"#% of Damage is taken from Mana before Life while Focused","better":1,"matchers":[{"string":"專注時,生命值所受的 #% 傷害由魔力扣除"}],"trade":{"ids":{"explicit":["explicit.stat_1588539856"],"crafted":["crafted.stat_1588539856"]}}} +{"ref":"#% of Damage Leeched as Energy Shield","dp":true,"better":1,"matchers":[{"string":"#% 傷害偷取能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_4201339891"]}}} +{"ref":"#% of Damage Leeched as Energy Shield against Frozen Enemies","dp":true,"better":1,"matchers":[{"string":"對冰凍的敵人造成傷害的 #% 偷取能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_4091709362"]}}} +{"ref":"#% of Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"#% 傷害偷取生命"}],"trade":{"ids":{"explicit":["explicit.stat_4069440714"]}}} +{"ref":"#% of Damage Leeched as Life against Cursed Enemies","dp":true,"better":1,"matchers":[{"string":"對受詛咒的敵人 #% 造成傷害偷取生命"}],"trade":{"ids":{"explicit":["explicit.stat_3861913659"]}}} +{"ref":"#% of Damage Leeched as Life against Shocked Enemies","dp":true,"better":1,"matchers":[{"string":"對感電的敵人造成傷害的 #% 偷取生命"}],"trade":{"ids":{"explicit":["explicit.stat_2614321687"]}}} +{"ref":"#% of Damage Leeched as Life for Skills used by Totems","dp":true,"better":1,"matchers":[{"string":"偷取生命等同 #% 圖騰使用的技能造成之傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2449723897"]}}} +{"ref":"#% of Damage Leeched as Life if you've Killed Recently","dp":true,"better":1,"matchers":[{"string":"若你近期有擊殺,#% 傷害偷取生命"}],"trade":{"ids":{"enchant":["enchant.stat_4291115328"]}}} +{"ref":"#% of Damage Leeched as Life on Critical Strike","dp":true,"better":1,"matchers":[{"string":"暴擊時偷取等同 #% 傷害的生命"}],"trade":{"ids":{"explicit":["explicit.stat_958088871"]}}} +{"ref":"#% of Damage Leeched as Life per Siphoning Charge","dp":true,"better":1,"matchers":[{"string":"每顆虹吸能量球 #% 的傷害偷取生命"}],"trade":{"ids":{"explicit":["explicit.stat_1587137379"]}}} +{"ref":"#% of Damage leeched as Life while affected by Vitality","dp":true,"better":1,"matchers":[{"string":"被活力影響時,#% 的傷害偷取生命"}],"trade":{"ids":{"explicit":["explicit.stat_3656959867"]}}} +{"ref":"#% of Damage Leeched as Life while Focused","dp":true,"better":1,"matchers":[{"string":"專注時,#% 的傷害偷取生命"}],"trade":{"ids":{"explicit":["explicit.stat_3324747104"],"fractured":["fractured.stat_3324747104"],"crafted":["crafted.stat_3324747104"]}}} +{"ref":"#% of Damage Leeched as Life while you have at least 5 total Endurance, Frenzy and Power Charges","dp":true,"better":1,"matchers":[{"string":"你耐力、狂怒和暴擊求總計至少有 5 顆時,#% 傷害偷取生命"}],"trade":{"ids":{"explicit":["explicit.stat_1526625193"]}}} +{"ref":"#% of Damage Leeched as Mana against Frozen Enemies","dp":true,"better":1,"matchers":[{"string":"對冰凍敵人所造成傷害 #% 偷取魔力"}],"trade":{"ids":{"explicit":["explicit.stat_2908111053"]}}} +{"ref":"#% of Damage Players' Totems take from Hits is taken from their Summoner's Life instead","better":1,"fromUberAreaMods":true,"matchers":[{"string":"玩家圖騰受到攻擊時承受傷害的 #% 改由召喚者承受"}],"trade":{"ids":{"explicit":["explicit.stat_297552946"]}}} +{"ref":"#% of Damage taken bypasses Ward","better":1,"matchers":[{"string":"#% 承受的傷害無視保護"}],"trade":{"ids":{"explicit":["explicit.stat_3000966016"]}}} +{"ref":"#% of Damage Taken from Hits is Leeched as Life during Effect","dp":true,"better":1,"matchers":[{"string":"效果持續時間,#% 承受的擊中傷害偷取為生命"}],"trade":{"ids":{"explicit":["explicit.stat_3824033729"],"crafted":["crafted.stat_3824033729"]}}} +{"ref":"#% of Damage taken from Mana before Life while affected by Clarity","better":1,"matchers":[{"string":"被清晰影響時,生命值所受的 #% 傷害由魔力扣除"}],"trade":{"ids":{"explicit":["explicit.stat_2383304564"]}}} +{"ref":"#% of Damage taken from Stunning Hits is Recovered as Life","better":1,"matchers":[{"string":"暈眩之擊造成的 #% 傷害,恢復為生命"}],"trade":{"ids":{"explicit":["explicit.stat_3913936991"]}}} +{"ref":"#% of Damage taken Recouped as Life","better":1,"matchers":[{"string":"承受 #% 傷害補償為生命"}],"trade":{"ids":{"explicit":["explicit.stat_1444556985"],"implicit":["implicit.stat_1444556985"],"fractured":["fractured.stat_1444556985"],"scourge":["scourge.stat_1444556985"]}}} +{"ref":"#% of Damage taken Recouped as Mana","better":1,"matchers":[{"string":"#% 的承受傷害補償為魔力"}],"trade":{"ids":{"explicit":["explicit.stat_472520716"],"implicit":["implicit.stat_472520716"],"fractured":["fractured.stat_472520716"],"enchant":["enchant.stat_472520716"],"crafted":["crafted.stat_472520716"]}}} +{"ref":"#% of Damage taken while affected by Clarity Recouped as Mana","better":1,"matchers":[{"string":"被清晰影響時,#% 承受的傷害補償為魔力"}],"trade":{"ids":{"explicit":["explicit.stat_380220671"]}}} +{"ref":"#% of Damage you Reflect to Enemies when Hit is leeched as Life","better":1,"matchers":[{"string":"#% 你反射至敵人的傷害擊中時偷取為生命"}],"trade":{"ids":{"explicit":["explicit.stat_743992531"]}}} +{"ref":"#% of Elemental Damage from Hits taken as Chaos Damage","better":1,"matchers":[{"string":"承受 #% 的擊中元素傷害視為混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1175213674"]}}} +{"ref":"#% of Elemental Damage from Hits taken as Physical Damage","better":1,"matchers":[{"string":"承受 #% 擊中的元素傷害視為物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2340750293"]}}} +{"ref":"#% of Elemental Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"#% 元素傷害偷取生命"}],"trade":{"ids":{"explicit":["explicit.stat_720395808"],"implicit":["implicit.stat_720395808"]}}} +{"ref":"#% of Evasion Rating is Regenerated as Life per second while Focused","better":1,"matchers":[{"string":"專注時,每秒回復 #% 閃避值的生命"}],"trade":{"ids":{"explicit":["explicit.stat_3244118730"],"fractured":["fractured.stat_3244118730"],"crafted":["crafted.stat_3244118730"]}}} +{"ref":"#% of Fire and Cold Damage taken as Lightning Damage while\naffected by Purity of Lightning","better":1,"matchers":[{"string":"被閃電淨化影響時,承受 #% 的火焰和冰冷傷害視為閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3953667743"]}}} +{"ref":"#% of Fire and Lightning Damage from Hits taken as Cold Damage during Effect","better":1,"matchers":[{"string":"效果持續期間,承受來自擊中的 #% 火焰和閃電傷害視為冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1349002319"]}}} +{"ref":"#% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice","better":1,"matchers":[{"string":"被冰霜淨化影響時,承受 #% 的火焰和閃電傷害視為冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2189467271"]}}} +{"ref":"#% of Fire Damage Converted to Chaos Damage","better":1,"matchers":[{"string":"#% 火焰傷害轉換為混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2731249891"]}}} +{"ref":"#% of Fire Damage from Hits taken as Cold Damage","better":1,"matchers":[{"string":"承受 #% 的擊中火焰傷害視為冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2522672898"],"implicit":["implicit.stat_2522672898"]}}} +{"ref":"#% of Fire Damage from Hits taken as Lightning Damage","better":1,"matchers":[{"string":"承受 #% 的擊中火焰傷害視為閃電傷害"}],"trade":{"ids":{"implicit":["implicit.stat_1504091975"]}}} +{"ref":"#% of Fire Damage from Hits taken as Physical Damage","better":1,"matchers":[{"string":"承受 #% 的擊中火焰傷害視為物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1029319062","explicit.stat_3205239847"]}}} +{"ref":"#% of Fire Damage Leeched as Energy Shield","dp":true,"better":1,"matchers":[{"string":"#% 火焰傷害偷取能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_3885409671"]}}} +{"ref":"#% of Fire Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"#% 火焰傷害偷取生命"}],"trade":{"ids":{"explicit":["explicit.stat_3848282610"],"implicit":["implicit.stat_1743742391","implicit.stat_3848282610"],"fractured":["fractured.stat_3848282610"],"scourge":["scourge.stat_3848282610"],"crafted":["crafted.stat_3848282610"]}}} +{"ref":"#% of Fire Damage Leeched as Life while affected by Anger","dp":true,"better":1,"matchers":[{"string":"被憤怒影響時,#% 火焰的傷害偷取生命"}],"trade":{"ids":{"explicit":["explicit.stat_2312747856"]}}} +{"ref":"#% of Fire Damage Leeched as Life while Ignited","dp":true,"better":1,"matchers":[{"string":"被點燃時 #% 火焰傷害吸取生命"}],"trade":{"ids":{"explicit":["explicit.stat_3633399302"]}}} +{"ref":"#% of Fire Damage Leeched by Enemy as Life","dp":true,"better":1,"matchers":[{"string":"#% 火焰傷害被敵人偷取為生命"}],"trade":{"ids":{"explicit":["explicit.stat_45548764"]}}} +{"ref":"#% of Fire Damage taken as Lightning Damage","better":1,"matchers":[{"string":"#% 的火焰傷害承受為閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_4142376596"]}}} +{"ref":"#% of Fire Damage taken Recouped as Life","better":1,"matchers":[{"string":"#% 承受的火焰傷害補償為生命"}],"trade":{"ids":{"explicit":["explicit.stat_1742651309"],"implicit":["implicit.stat_1742651309"]}}} +{"ref":"#% of Galvanic Arrow Physical Damage gained as extra Lightning Damage","better":1,"matchers":[{"string":"電流箭矢物理傷害的 #% 獲得為額外閃電傷害"}],"trade":{"ids":{"enchant":["enchant.stat_1943147282"]}}} +{"ref":"#% of Glacial Hammer Physical Damage gained as Extra Cold Damage","better":1,"matchers":[{"string":"獲得等同 #% 冰霜之錘物理傷害的額外冰冷傷害"}],"trade":{"ids":{"enchant":["enchant.stat_2555366825"]}}} +{"ref":"#% of Ice Crash Physical Damage gained as Extra Cold Damage","better":1,"matchers":[{"string":"獲得等同 #% 寒冰衝擊物理傷害的額外冰冷傷害"}],"trade":{"ids":{"enchant":["enchant.stat_3465202861"]}}} +{"ref":"#% of Infernal Blow Physical Damage gained as Extra Fire Damage","better":1,"matchers":[{"string":"獲得等同 #% 煉獄之擊物理傷害的額外火焰傷害"}],"trade":{"ids":{"enchant":["enchant.stat_2484188706"]}}} +{"ref":"#% of Leech from Hits with this Weapon is Instant per Enemy Power","better":1,"matchers":[{"string":"每敵人強度,來自此武器擊中 #% 偷取為立即"}],"trade":{"ids":{"explicit":["explicit.stat_2583648686"]}}} +{"ref":"#% of Leech is Instant","better":1,"matchers":[{"string":"#% 偷取為立即"}],"trade":{"ids":{"explicit":["explicit.stat_3561837752"]}}} +{"ref":"#% of Life Leech applies to Enemies as Chaos Damage","better":1,"matchers":[{"string":"對敵人造成等同 #% 生命偷取的混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_768537671"]}}} +{"ref":"#% of Life Recovery from Flasks is applied to nearby Allies instead of You","better":1,"matchers":[{"string":"來自藥劑的 #% 生命恢復作用於附近友方而不是你"}],"trade":{"ids":{"explicit":["explicit.stat_2264655303"]}}} +{"ref":"#% of Life Regenerated per Second","better":1,"matchers":[{"string":"每秒回復 #% 生命 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_percent_life_regen"]}}} +{"ref":"#% of Life Regenerated per Second if you've dealt a Critical Strike in the past 8 seconds","better":1,"matchers":[{"string":"若過去 8 秒你有造成暴擊,每秒回復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_221532021"]}}} +{"ref":"#% of Life Regenerated per second per Fragile Regrowth","dp":true,"better":1,"matchers":[{"string":"每層脆弱再生使每秒回復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_3175722882"]}}} +{"ref":"#% of Lightning Damage Converted to Chaos Damage","better":1,"matchers":[{"string":"#% 閃電傷害轉換為混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_4238266823"]}}} +{"ref":"#% of Lightning Damage Converted to Cold Damage","better":1,"matchers":[{"string":"#% 閃電傷害轉換為冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2158060122"]}}} +{"ref":"#% of Lightning Damage from Hits taken as Cold Damage","better":1,"matchers":[{"string":"承受 #% 的擊中閃電傷害視為冰冷傷害"}],"trade":{"ids":{"implicit":["implicit.stat_1017730114"]}}} +{"ref":"#% of Lightning Damage from Hits taken as Fire Damage","better":1,"matchers":[{"string":"承受 #% 的擊中閃電傷害視為火焰傷害"}],"trade":{"ids":{"implicit":["implicit.stat_3375859421"]}}} +{"ref":"#% of Lightning Damage is Leeched as Energy Shield while affected by Wrath","dp":true,"better":1,"matchers":[{"string":"被雷霆影響時,#% 閃電傷害偷取能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_121436064"]}}} +{"ref":"#% of Lightning Damage is Leeched as Mana while affected by Wrath","dp":true,"better":1,"matchers":[{"string":"被雷霆影響時,#% 閃電傷害偷取魔力"}],"trade":{"ids":{"explicit":["explicit.stat_2889601846"]}}} +{"ref":"#% of Lightning Damage is taken from Mana before Life","better":1,"matchers":[{"string":"生命值所受的 #% 閃電傷害由魔力扣除"}],"trade":{"ids":{"explicit":["explicit.stat_2477735984"]}}} +{"ref":"#% of Lightning Damage Leeched as Energy Shield","dp":true,"better":1,"matchers":[{"string":"#% 閃電傷害偷取能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_308127151"]}}} +{"ref":"#% of Lightning Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"#% 閃電傷害偷取生命"}],"trade":{"ids":{"explicit":["explicit.stat_80079005"],"implicit":["implicit.stat_2696663331","implicit.stat_80079005"],"fractured":["fractured.stat_80079005"],"scourge":["scourge.stat_80079005"],"crafted":["crafted.stat_80079005"]}}} +{"ref":"#% of Lightning Damage Leeched as Life during Effect","dp":true,"better":1,"matchers":[{"string":"效果持續時間,#% 閃電傷害偷取生命"}],"trade":{"ids":{"explicit":["explicit.stat_2687254633"]}}} +{"ref":"#% of Lightning Damage Leeched as Mana during Effect","dp":true,"better":1,"matchers":[{"string":"效果持續時間,#% 閃電傷害偷取魔力"}],"trade":{"ids":{"explicit":["explicit.stat_1454377049"]}}} +{"ref":"#% of Lightning Damage Leeched by Enemy as Life","dp":true,"better":1,"matchers":[{"string":"#% 閃電傷害被敵人偷取為生命"}],"trade":{"ids":{"explicit":["explicit.stat_3925004212"]}}} +{"ref":"#% of Lightning Damage taken as Fire Damage","better":1,"matchers":[{"string":"#% 的閃電傷害承受為火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1244494473"]}}} +{"ref":"#% of Lightning Damage taken Recouped as Life","better":1,"matchers":[{"string":"#% 承受的閃電傷害補償為生命"}],"trade":{"ids":{"explicit":["explicit.stat_2970621759"],"implicit":["implicit.stat_2970621759"]}}} +{"ref":"#% of Maximum Life Converted to Energy Shield","better":1,"matchers":[{"string":"#% 最大生命值轉換為能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_2458962764"],"fractured":["fractured.stat_2458962764"]}}} +{"ref":"#% of Maximum Life taken as Chaos Damage per second","better":1,"matchers":[{"string":"每秒受到等同 #% 最大生命的混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3232201443"]}}} +{"ref":"#% of Melee Physical Damage taken reflected to Attacker","better":1,"matchers":[{"string":"承受的近戰物理 #% 傷害反射給攻擊者"}],"trade":{"ids":{"explicit":["explicit.stat_1092987622"]}}} +{"ref":"#% of Non-Chaos Damage taken bypasses Energy Shield","better":1,"matchers":[{"string":"#% 承受的非混沌傷害無視能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_3379724776"]}}} +{"ref":"#% of Overkill Damage is Leeched as Life","better":1,"matchers":[{"string":"#% 滿溢的傷害轉為生命偷取"}],"trade":{"ids":{"explicit":["explicit.stat_3511523149"]}}} +{"ref":"#% of Physical Attack Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"#% 的物理攻擊傷害偷取生命"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_physical_attack_damage_leeched_as_life"],"explicit":["explicit.stat_3593843976","explicit.stat_55876295"],"implicit":["implicit.stat_3593843976","implicit.stat_55876295"],"fractured":["fractured.stat_3593843976","fractured.stat_55876295"],"scourge":["scourge.stat_3593843976"],"crafted":["crafted.stat_3593843976","crafted.stat_55876295"]}}} +{"ref":"#% of Physical Attack Damage Leeched as Life per Red Socket","dp":true,"better":1,"matchers":[{"string":"每個紅色插槽給予你 #% 物理攻擊傷害偷取生命"}],"trade":{"ids":{"explicit":["explicit.stat_3025389409"]}}} +{"ref":"#% of Physical Attack Damage Leeched as Mana","dp":true,"better":1,"matchers":[{"string":"#% 物理攻擊傷害偷取魔力"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_physical_attack_damage_leeched_as_mana"],"explicit":["explicit.stat_3237948413","explicit.stat_669069897"],"implicit":["implicit.stat_3237948413","implicit.stat_669069897"],"fractured":["fractured.stat_3237948413","fractured.stat_669069897"],"scourge":["scourge.stat_3237948413"],"crafted":["crafted.stat_3237948413","crafted.stat_669069897"]}}} +{"ref":"#% of Physical Attack Damage Leeched as Mana per Blue Socket","dp":true,"better":1,"matchers":[{"string":"每個藍色插槽增加 #% 物理攻擊傷害偷取魔力"}],"trade":{"ids":{"explicit":["explicit.stat_172852114"]}}} +{"ref":"#% of Physical Damage converted to a random Element","better":1,"matchers":[{"string":"#% 的物理傷害轉化至 1 個隨機元素"}],"trade":{"ids":{"explicit":["explicit.stat_1776612984"]}}} +{"ref":"#% of Physical Damage Converted to Chaos Damage","better":1,"matchers":[{"string":"#% 物理傷害轉換為混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_490098963"],"implicit":["implicit.stat_490098963"],"fractured":["fractured.stat_490098963"],"scourge":["scourge.stat_490098963"]}}} +{"ref":"#% of Physical Damage Converted to Cold Damage","better":1,"matchers":[{"string":"#% 物理傷害轉換為冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2133341901"],"implicit":["implicit.stat_2133341901"],"fractured":["fractured.stat_2133341901"],"scourge":["scourge.stat_2133341901"],"crafted":["crafted.stat_2133341901"]}}} +{"ref":"#% of Physical Damage Converted to Cold Damage while affected by Hatred","better":1,"matchers":[{"string":"被憎恨影響時,#% 的物理傷害轉化為冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_664849247"]}}} +{"ref":"#% of Physical Damage Converted to Fire Damage","better":1,"matchers":[{"string":"#% 物理傷害轉換為火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1533563525"],"implicit":["implicit.stat_1533563525"],"fractured":["fractured.stat_1533563525"],"scourge":["scourge.stat_1533563525"],"crafted":["crafted.stat_1533563525"]}}} +{"ref":"#% of Physical Damage Converted to Fire Damage while affected by Anger","better":1,"matchers":[{"string":"被憤怒影響時,#% 的物理傷害轉化為火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3624529132"]}}} +{"ref":"#% of Physical Damage Converted to Fire while you have Avatar of Fire","better":1,"matchers":[{"string":"當你有火之化身時,#% 的物理傷害轉化為火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2052379536"]}}} +{"ref":"#% of Physical Damage Converted to Lightning Damage","better":1,"matchers":[{"string":"#% 物理傷害轉換為閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3240769289"],"implicit":["implicit.stat_3240769289"],"fractured":["fractured.stat_3240769289"],"scourge":["scourge.stat_3240769289"],"crafted":["crafted.stat_3240769289"]}}} +{"ref":"#% of Physical Damage Converted to Lightning Damage while affected by Wrath","better":1,"matchers":[{"string":"被雷霆影響時,#% 的物理傷害轉化為閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2106756686"]}}} +{"ref":"#% of Physical Damage Converted to Lightning during Effect","better":1,"matchers":[{"string":"效果持續時間,#% 物理傷害轉換為閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_660386148"]}}} +{"ref":"#% of Physical Damage from Hits taken as Chaos Damage","better":1,"matchers":[{"string":"承受 #% 的擊中物理傷害視為混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_4129825612"],"implicit":["implicit.stat_4129825612"],"fractured":["fractured.stat_4129825612"],"scourge":["scourge.stat_4129825612"]}}} +{"ref":"#% of Physical Damage from Hits taken as Cold Damage","better":1,"matchers":[{"string":"承受 #% 的擊中物理傷害視為冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1871056256"],"implicit":["implicit.stat_1871056256"],"fractured":["fractured.stat_1871056256"],"scourge":["scourge.stat_1871056256"]}}} +{"ref":"#% of Physical Damage from Hits taken as Cold Damage during Effect","better":1,"matchers":[{"string":"效果持續時間,承受 #% 的擊中物理傷害視為冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_625682777"]}}} +{"ref":"#% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Elements","better":1,"matchers":[{"string":"被元素淨化影響時,#% 承受的擊中物理傷害視為冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1710207583"]}}} +{"ref":"#% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Ice","better":1,"matchers":[{"string":"被冰霜淨化影響時,#% 承受的擊中物理傷害視為冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1779027621"]}}} +{"ref":"#% of Physical Damage from Hits taken as Fire Damage","better":1,"matchers":[{"string":"承受 #% 的擊中物理傷害視為火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3342989455"],"implicit":["implicit.stat_3342989455"],"fractured":["fractured.stat_3342989455"],"scourge":["scourge.stat_3342989455"],"crafted":["crafted.stat_3342989455"]}}} +{"ref":"#% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Elements","better":1,"matchers":[{"string":"被元素淨化影響時,#% 承受的物理傷害視為火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1722775216"]}}} +{"ref":"#% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Fire","better":1,"matchers":[{"string":"被火焰淨化影響時,#% 承受的物理傷害視為火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1798459983"]}}} +{"ref":"#% of Physical Damage from Hits taken as Lightning Damage","better":1,"matchers":[{"string":"承受 #% 的擊中物理傷害視為閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_425242359"],"implicit":["implicit.stat_425242359"],"fractured":["fractured.stat_425242359"],"scourge":["scourge.stat_425242359"],"crafted":["crafted.stat_425242359"]}}} +{"ref":"#% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Elements","better":1,"matchers":[{"string":"被元素淨化影響時,#% 承受的物理傷害視為閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_873224517"]}}} +{"ref":"#% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Lightning","better":1,"matchers":[{"string":"被閃電淨化影響時,#% 承受的物理傷害視為閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_254131992"]}}} +{"ref":"#% of Physical Damage from Hits with this Weapon is Converted to a random Element","better":1,"matchers":[{"string":"使用此武器攻擊時 #% 物理傷害轉化為隨機元素傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1431238626"],"implicit":["implicit.stat_1431238626"]}}} +{"ref":"#% of Physical Damage is taken from Mana before Life","better":1,"matchers":[{"string":"生命值所受的 #% 物理傷害由魔力扣除"}],"trade":{"ids":{"implicit":["implicit.stat_3743438423"]}}} +{"ref":"#% of Physical Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"#% 物理傷害偷取生命"}],"trade":{"ids":{"explicit":["explicit.stat_3764265320"],"implicit":["implicit.stat_2508100173","implicit.stat_3764265320"],"fractured":["fractured.stat_3764265320"],"scourge":["scourge.stat_3764265320"]}}} +{"ref":"#% of Physical Damage taken as Fire Damage","better":1,"matchers":[{"string":"#% 的物理傷害承受為火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1004468512"]}}} +{"ref":"#% of Physical Damage taken Recouped as Life","better":1,"matchers":[{"string":"#% 承受的物理傷害補償為生命"}],"trade":{"ids":{"implicit":["implicit.stat_4021566756"]}}} +{"ref":"#% of Recovery applied Instantly","better":1,"matchers":[{"string":"#% 恢復量立即恢復"},{"string":"立即恢復","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1526933524","explicit.stat_2503377690"],"fractured":["fractured.stat_1526933524","fractured.stat_2503377690"]}}} +{"ref":"#% of Spell Damage Leeched as Energy Shield","dp":true,"better":1,"matchers":[{"string":"#% 法術傷害偷取能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_11106713"],"implicit":["implicit.stat_11106713"]}}} +{"ref":"#% of Spell Damage Leeched as Energy Shield during Effect","dp":true,"better":1,"matchers":[{"string":"效果持續時間,#% 法術傷害偷取能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_1456464057"],"fractured":["fractured.stat_1456464057"]}}} +{"ref":"#% of Spell Damage Leeched as Energy Shield for each Curse on Enemy","dp":true,"better":1,"matchers":[{"string":"每個敵人身上的詛咒,#% 法術傷害偷取能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_3734213780"]}}} +{"ref":"#% of Spell Damage Leeched as Life if Equipped Shield has at least 30% Chance to Block","dp":true,"better":1,"matchers":[{"string":"若裝備的的盾牌至少有 30% 格擋率,#% 的法術傷害偷取生命"}],"trade":{"ids":{"explicit":["explicit.stat_3893109186"]}}} +{"ref":"#% reduced Area Damage taken from Hits","better":-1,"matchers":[{"string":"增加承受 #% 擊中範圍傷害"},{"string":"減少承受 #% 擊中範圍傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3001376862"]},"inverted":true}} +{"ref":"#% reduced Attack and Cast Speed per Frenzy Charge","better":-1,"matchers":[{"string":"每個狂怒球增加 #% 攻擊和施放速度"},{"string":"每個狂怒球減少 #% 攻擊和施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_269590092"]},"inverted":true}} +{"ref":"#% reduced Chance to Block Attack and Spell Damage","better":-1,"matchers":[{"string":"增加 #% 攻擊和法術傷害格擋率"},{"string":"減少 #% 攻擊和法術傷害格擋率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4147897060"]},"inverted":true}} +{"ref":"#% reduced Chaos Damage taken","better":-1,"matchers":[{"string":"增加 #% 承受的混沌傷害"},{"string":"減少 #% 承受的混沌傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2960683632"],"implicit":["implicit.stat_2960683632"],"fractured":["fractured.stat_2960683632"],"scourge":["scourge.stat_2960683632"]},"inverted":true}} +{"ref":"#% reduced Chaos Damage taken over time","better":-1,"matchers":[{"string":"受到的持續性混沌傷害增加 #%"},{"string":"受到的持續性混沌傷害減少 #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3762784591"],"fractured":["fractured.stat_3762784591"]},"inverted":true}} +{"ref":"#% reduced Chill Duration on you","better":1,"matchers":[{"string":"減少 #% 你被冰緩的持續時間"},{"string":"增加 #% 你被冰緩的持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1874553720"],"implicit":["implicit.stat_1874553720"]}}} +{"ref":"#% reduced Cold Damage taken","better":-1,"matchers":[{"string":"增加 #% 承受的冰冷傷害"},{"string":"減少 #% 承受的冰冷傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3303114033"],"implicit":["implicit.stat_3303114033"],"fractured":["fractured.stat_3303114033"],"scourge":["scourge.stat_3303114033"]},"inverted":true}} +{"ref":"#% reduced Cost of Aura Skills that summon Totems","better":-1,"matchers":[{"string":"增加 #% 會召喚圖騰光環技能的消耗"},{"string":"減少 #% 會召喚圖騰光環技能的消耗","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2701327257"]},"inverted":true}} +{"ref":"#% reduced Critical Strike Chance per Power Charge","better":-1,"matchers":[{"string":"每個暴擊球增加 #% 暴擊率"},{"string":"每個暴擊球減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2102212273"]},"inverted":true}} +{"ref":"#% reduced Damage taken from Damage Over Time","better":-1,"matchers":[{"string":"增加 #% 所承受的持續性傷害"},{"string":"減少 #% 所承受的持續性傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1101403182"],"implicit":["implicit.stat_1101403182"],"crafted":["crafted.stat_1101403182"]},"inverted":true}} +{"ref":"#% reduced Damage taken from Projectile Hits","better":-1,"matchers":[{"string":"增加 #% 承受來自投射物擊中的傷害"},{"string":"減少 #% 承受來自投射物擊中的傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1425651005"]},"inverted":true}} +{"ref":"#% reduced Damage taken if Corrupted","better":-1,"matchers":[{"string":"若已汙染增加 #% 承受傷害"},{"string":"若已汙染減少 #% 承受傷","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3309607228"]},"inverted":true}} +{"ref":"#% reduced Effect of Chill on you","better":-1,"matchers":[{"string":"增加 #% 你所承受的冰緩效果"},{"string":"減少 #% 你所承受的冰緩效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1478653032"],"implicit":["implicit.stat_1478653032"],"fractured":["fractured.stat_1478653032"],"enchant":["enchant.stat_1478653032"],"scourge":["scourge.stat_1478653032"],"crafted":["crafted.stat_1478653032"]},"inverted":true}} +{"ref":"#% reduced Effect of Chill on you during Effect","better":-1,"matchers":[{"string":"效果持續時間,增加 #% 你身上冰緩的效果"},{"string":"效果持續時間,減少 #% 你身上冰緩的效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2434101731"],"fractured":["fractured.stat_2434101731"]},"inverted":true}} +{"ref":"#% reduced Effect of Curses on you","better":-1,"matchers":[{"string":"增加在你身上的詛咒效果 #%"},{"string":"減少在你身上的詛咒效果 #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3407849389"],"implicit":["implicit.stat_3407849389"],"fractured":["fractured.stat_3407849389"],"scourge":["scourge.stat_3407849389"],"crafted":["crafted.stat_3407849389"]},"inverted":true}} +{"ref":"#% reduced Effect of Curses on you during Effect","better":-1,"matchers":[{"string":"效果持續時間,增加 #% 你身上詛咒的效果"},{"string":"效果持續時間,減少 #% 你身上詛咒的效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4265534424"],"fractured":["fractured.stat_4265534424"]},"inverted":true}} +{"ref":"#% reduced Effect of Shock on you","better":-1,"matchers":[{"string":"增加 #% 你身上的感電效果"},{"string":"減少 #% 你身上的感電效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3801067695"],"implicit":["implicit.stat_3801067695"],"fractured":["fractured.stat_3801067695"],"enchant":["enchant.stat_3801067695"],"scourge":["scourge.stat_3801067695"],"crafted":["crafted.stat_3801067695"]},"inverted":true}} +{"ref":"#% reduced Elemental Ailment Duration on you","better":1,"matchers":[{"string":"減少 #% 身上元素異常狀態時間"},{"string":"增加 #% 身上元素異常狀態時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1745952865"],"implicit":["implicit.stat_1745952865"],"scourge":["scourge.stat_1745952865"]}}} +{"ref":"#% reduced Elemental Ailment Duration on you per 10 Devotion","better":1,"matchers":[{"string":"每 10 個奉獻,減少 #% 你身上元素異常狀態持續時間"},{"string":"每 10 個奉獻,增加 #% 你身上元素異常狀態持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_730530528"]}}} +{"ref":"#% reduced Elemental Damage taken from Hits per Endurance Charge","better":-1,"matchers":[{"string":"每顆耐力球增加被擊中時承受 #% 元素傷害"},{"string":"每顆耐力球減少被擊中時承受 #% 元素傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1686913105"]},"inverted":true}} +{"ref":"#% reduced Elemental Damage taken while stationary","better":-1,"matchers":[{"string":"站立時,增加 #% 承受元素傷害"},{"string":"站立時受到的元素傷害增加 #%"},{"string":"站立時,減少 #% 承受元素傷害","negate":true},{"string":"站立時受到的元素傷害減少 #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3859593448","explicit.stat_983989924"],"fractured":["fractured.stat_3859593448"]},"inverted":true}} +{"ref":"#% reduced Elemental Resistances","better":1,"matchers":[{"string":"增加 #% 元素抗性"},{"string":"減少 #% 元素抗性","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_76848920"]},"inverted":true}} +{"ref":"#% reduced Enemy Stun Threshold","better":1,"matchers":[{"string":"減少 #% 敵人暈眩門檻"},{"string":"增加 #% 敵人暈眩門檻","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1443060084"],"implicit":["implicit.stat_1443060084"],"fractured":["fractured.stat_1443060084"],"scourge":["scourge.stat_1443060084"]}}} +{"ref":"#% reduced Enemy Stun Threshold during any Flask Effect","better":1,"matchers":[{"string":"任何藥劑效果持續時間內,減少敵人 #% 暈眩門檻"}],"trade":{"ids":{"explicit":["explicit.stat_4228951304"]}}} +{"ref":"#% reduced Enemy Stun Threshold with Melee Weapons","better":1,"matchers":[{"string":"使用近戰武器時減少 #% 敵人暈眩門檻"},{"string":"使用近戰武器時增加 #% 敵人暈眩門檻","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2791825817"]}}} +{"ref":"#% reduced Enemy Stun Threshold with this Weapon","better":1,"matchers":[{"string":"使用此武器時減少 #% 敵人暈眩門檻"},{"string":"使用此武器時增加 #% 敵人暈眩門檻","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_832404842"],"crafted":["crafted.stat_832404842"]}}} +{"ref":"#% reduced Fishing Pool Consumption","better":-1,"matchers":[{"string":"增加 #% 釣魚池消耗量"},{"string":"減少 #% 釣魚池消耗量","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1550221644"],"fractured":["fractured.stat_1550221644"],"scourge":["scourge.stat_1550221644"]},"inverted":true}} +{"ref":"#% reduced Flask Charges used","better":-1,"matchers":[{"string":"增加 #% 藥劑充能使用"},{"string":"減少 #% 藥劑充能使用","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_644456512"],"implicit":["implicit.stat_644456512"],"fractured":["fractured.stat_644456512"],"scourge":["scourge.stat_644456512"]},"inverted":true}} +{"ref":"#% reduced Freeze Duration on you","better":1,"matchers":[{"string":"減少 #% 你被冰凍的持續時間"},{"string":"增加 #% 你被冰凍的持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2160282525"],"implicit":["implicit.stat_2160282525"],"enchant":["enchant.stat_2160282525"],"scourge":["scourge.stat_2160282525"]}}} +{"ref":"#% reduced Frenzy Charge Duration per Frenzy Charge","better":-1,"matchers":[{"string":"每個狂怒球增加 #% 狂怒球持續時間"},{"string":"每個狂怒球減少 #% 狂怒球持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2543931078"]},"inverted":true}} +{"ref":"#% reduced Golem Size","better":-1,"matchers":[{"string":"增加 #% 魔像大小"},{"string":"減少 #% 魔像大小","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2576412389"]},"inverted":true}} +{"ref":"#% reduced Ignite Duration on you","better":1,"matchers":[{"string":"減少 #% 你被點燃的持續時間"},{"string":"增加 #% 你被點燃的持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_986397080"],"implicit":["implicit.stat_986397080"],"fractured":["fractured.stat_986397080"],"enchant":["enchant.stat_986397080"],"scourge":["scourge.stat_986397080"],"crafted":["crafted.stat_986397080"]}}} +{"ref":"#% reduced Lightning Damage taken","better":-1,"matchers":[{"string":"增加 #% 承受的閃電傷害"},{"string":"減少 #% 承受的閃電傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1276918229"],"implicit":["implicit.stat_1276918229"],"fractured":["fractured.stat_1276918229"],"scourge":["scourge.stat_1276918229"]},"inverted":true}} +{"ref":"#% reduced Lightning Warp Duration","better":-1,"matchers":[{"string":"增加 #% 閃電傳送持續時間"},{"string":"減少 #% 閃電傳送持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_609478942"]},"inverted":true}} +{"ref":"#% reduced Mana Burn rate","better":-1,"matchers":[{"string":"增加 #% 魔力灼燒速度"},{"string":"減少 #% 魔力灼燒速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_116232170"]},"inverted":true}} +{"ref":"#% reduced Mana Cost of Attacks","better":-1,"matchers":[{"string":"增加 #% 攻擊的魔力消耗"},{"string":"減少 #% 攻擊的魔力消","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2859471749"]},"inverted":true}} +{"ref":"#% reduced Mana Cost of Minion Skills","better":-1,"matchers":[{"string":"召喚物技能增加 #% 魔力消耗"},{"string":"召喚物技能減少 #% 魔力消耗","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2969128501"]},"inverted":true}} +{"ref":"#% reduced Mana Cost of Raise Spectre","better":-1,"matchers":[{"string":"增加 #% 喚醒幽魂的魔力消耗"},{"string":"減少 #% 喚醒幽魂的魔力消耗","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_262301496"]},"inverted":true}} +{"ref":"#% reduced Mana Cost of Skills","better":1,"matchers":[{"string":"減少 #% 技能魔力消耗"},{"string":"增加 #% 技能魔力消耗","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_474294393"],"implicit":["implicit.stat_474294393"],"fractured":["fractured.stat_474294393"],"crafted":["crafted.stat_474294393"]}}} +{"ref":"#% reduced Mana Cost of Skills if you've been Hit Recently","better":-1,"matchers":[{"string":"近期內你若有被擊中,增加 #% 技能的魔力消耗"},{"string":"近期內你若有被擊中,減少 #% 技能的魔力消耗","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3693451031"]},"inverted":true}} +{"ref":"#% reduced Mana Cost of Skills per 10 Devotion","better":1,"matchers":[{"string":"每 10 奉獻增加 #% 技能的魔力消耗"},{"string":"每 10 奉獻減少 #% 技能的魔力消耗","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3293275880"]},"inverted":true}} +{"ref":"#% reduced Mana Cost of Skills when on Low Life","better":-1,"matchers":[{"string":"貧血時增加 #% 技能魔力消耗"},{"string":"貧血時減少 #% 技能魔力消耗","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_73272763"]},"inverted":true}} +{"ref":"#% reduced Mana Cost per Endurance Charge","better":1,"matchers":[{"string":"每個耐力球減少 #% 魔力消耗"}],"trade":{"ids":{"explicit":["explicit.stat_1774881905"]}}} +{"ref":"#% reduced maximum number of Raised Zombies","better":-1,"matchers":[{"string":"增加 #% 殭屍復甦最大數量"},{"string":"減少 #% 殭屍復甦最大數量","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4041805509"]},"inverted":true}} +{"ref":"#% reduced Maximum number of Summoned Raging Spirits","better":-1,"matchers":[{"string":"增加 #% 最大召喚憤怒狂靈數量"},{"string":"減少 #% 最大召喚憤怒狂靈數量","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1186934478"]},"inverted":true}} +{"ref":"#% reduced Physical Damage taken over time","better":-1,"matchers":[{"string":"增加 #% 承受物理持續傷害"},{"string":"減少 #% 承受物理持續傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_511024200"]},"inverted":true}} +{"ref":"#% reduced Reflected Damage taken","better":-1,"matchers":[{"string":"增加 #% 受到的反射傷害"},{"string":"減少 #% 受到的反射傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3846810663"],"implicit":["implicit.stat_3846810663"]},"inverted":true}} +{"ref":"#% reduced Reflected Damage taken during Effect","better":-1,"matchers":[{"string":"效果持續時間,增加承受 #% 反射傷害"},{"string":"效果持續時間,減少承受 #% 反射傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3842373291"],"crafted":["crafted.stat_3842373291"]},"inverted":true}} +{"ref":"#% reduced Reflected Elemental Damage taken","better":-1,"matchers":[{"string":"增加 #% 反射元素傷害"},{"string":"減少 #% 反射元素傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_248838155"],"implicit":["implicit.stat_248838155"],"enchant":["enchant.stat_248838155"]},"inverted":true}} +{"ref":"#% reduced Reflected Elemental Damage taken while affected by Purity of Elements","better":-1,"matchers":[{"string":"被元素淨化影響時增加 #% 反射元素傷害"},{"string":"被元素淨化影響時減少 #% 反射元素傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_65331133"]},"inverted":true}} +{"ref":"#% reduced Reflected Physical Damage taken","better":-1,"matchers":[{"string":"增加 #% 反射物理傷害"},{"string":"減少 #% 反射物理傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3158958938"],"implicit":["implicit.stat_3158958938"],"enchant":["enchant.stat_3158958938"]},"inverted":true}} +{"ref":"#% reduced Reflected Physical Damage taken while affected by Determination","better":-1,"matchers":[{"string":"被堅定影響時,增加 #% 反射承受物理傷害"},{"string":"被堅定影響時,減少 #% 反射承受物理傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2457540491"]},"inverted":true}} +{"ref":"#% reduced Shock Duration on you","better":1,"matchers":[{"string":"減少 #% 你感電的持續時間"},{"string":"增加 #% 你感電的持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_99927264"],"implicit":["implicit.stat_99927264"]}}} +{"ref":"#% reduced Spectral Throw Projectile Deceleration","better":-1,"matchers":[{"string":"增加靈體投擲 #% 投射物減速度"},{"string":"減少靈體投擲 #% 投射物減速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_444686294"]},"inverted":true}} +{"ref":"#% reduced Spell Damage taken from Blinded Enemies","better":-1,"matchers":[{"string":"增加承受來自致盲敵人 #% 的法術傷害"},{"string":"減少承受來自致盲敵人 #% 的法術傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1165847826"]},"inverted":true}} +{"ref":"#% reduced Storm Call Duration","better":-1,"matchers":[{"string":"增加 #% 風暴呼喚持續時間"},{"string":"減少 #% 風暴呼喚持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1843506018"]},"inverted":true}} +{"ref":"#% slower start of Energy Shield Recharge during any Flask Effect","better":-1,"matchers":[{"string":"在任何藥劑效果持續時間內,提前 #% 開始充能能量護盾"},{"string":"在任何藥劑效果持續時間內,延後 #% 開始充能能量護盾","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1912660783"]},"inverted":true}} +{"ref":"#% total increased maximum Energy Shield","better":1,"matchers":[{"string":"增加 #% 最大能量護盾 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_energy_shield"]}}} +{"ref":"#% total increased Physical Damage","better":1,"matchers":[{"string":"增加 #% 物裡傷害 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_physical_damage"]}}} +{"ref":"+# Accuracy Rating per 2 Intelligence","better":1,"matchers":[{"string":"每 2 點智慧 # 命中值"}],"trade":{"ids":{"explicit":["explicit.stat_2196657026"]}}} +{"ref":"+# Armour if you've Blocked Recently","better":1,"matchers":[{"string":"近期若你有格擋則 # 護甲"}],"trade":{"ids":{"explicit":["explicit.stat_4091848539"]}}} +{"ref":"+# Armour per Summoned Totem","better":1,"matchers":[{"string":"每個召喚的圖騰 # 護甲"}],"trade":{"ids":{"explicit":["explicit.stat_1429385513"]}}} +{"ref":"+# Armour while stationary","better":1,"matchers":[{"string":"站立時 # 護甲值"}],"trade":{"ids":{"explicit":["explicit.stat_2551779822"],"implicit":["implicit.stat_2551779822"]}}} +{"ref":"+# Armour while you do not have Avatar of Fire","better":1,"matchers":[{"string":"當你沒有火之化身時 # 護甲"}],"trade":{"ids":{"explicit":["explicit.stat_4078952782"]}}} +{"ref":"+# Chaos Damage taken","better":1,"matchers":[{"string":"# 承受的混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_496011033"],"implicit":["implicit.stat_496011033"]}}} +{"ref":"+# Cold Damage taken from Hits","better":1,"matchers":[{"string":"被擊中時 # 承受冰冷傷害"}],"trade":{"ids":{"implicit":["implicit.stat_261654754"]}}} +{"ref":"+# Dexterity Requirement","better":1,"matchers":[{"string":"# 敏捷需求"}],"trade":{"ids":{"explicit":["explicit.stat_1133453872"],"scourge":["scourge.stat_1133453872"]}}} +{"ref":"+# Energy Shield gained on Killing a Shocked Enemy","better":1,"matchers":[{"string":"擊殺每個感電的敵人回復 # 點能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_347328113"]}}} +{"ref":"+# Fire Damage taken from Hits","better":1,"matchers":[{"string":"被擊中時承受 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_614758785"],"implicit":["implicit.stat_614758785"]}}} +{"ref":"+# Fire Damage taken from Hits per Mana Burn","better":1,"matchers":[{"string":"每層魔力灼燒使被擊中時承受 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1483305963"]}}} +{"ref":"+# Intelligence Requirement","better":1,"matchers":[{"string":"# 智慧需求"}],"trade":{"ids":{"explicit":["explicit.stat_2153364323"],"scourge":["scourge.stat_2153364323"]}}} +{"ref":"+# Life per 4 Dexterity","better":1,"matchers":[{"string":"每 4 點敏捷 # 生命"}],"trade":{"ids":{"explicit":["explicit.stat_2042405614"]}}} +{"ref":"+# Lightning Damage taken from Hits","better":1,"matchers":[{"string":"被擊中時 # 承受閃電傷害"}],"trade":{"ids":{"implicit":["implicit.stat_465051235"]}}} +{"ref":"+# Mana gained on Killing a Frozen Enemy","better":1,"matchers":[{"string":"擊殺一個冰凍敵人 # 魔力"}],"trade":{"ids":{"explicit":["explicit.stat_3304801725"]}}} +{"ref":"+# Mana per 4 Strength","better":1,"matchers":[{"string":"每 4 點力量 # 魔力"}],"trade":{"ids":{"explicit":["explicit.stat_507075051"]}}} +{"ref":"+# maximum Energy Shield per 5 Strength","better":1,"matchers":[{"string":"每 5 力量增加 # 最大能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_3788706881"]}}} +{"ref":"+# Maximum Energy Shield per Level","better":1,"matchers":[{"string":"每級 # 最大能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_3864993324"]}}} +{"ref":"+# Maximum Life per Level","better":1,"matchers":[{"string":"每級 # 最大生命"}],"trade":{"ids":{"explicit":["explicit.stat_1982144275"]}}} +{"ref":"+# Maximum Mana per Level","better":1,"matchers":[{"string":"每級 # 最大魔力"}],"trade":{"ids":{"explicit":["explicit.stat_2563691316"]}}} +{"ref":"+# metre to Discharge radius","better":1,"matchers":[{"string":"解放 # 米範圍"}],"trade":{"ids":{"enchant":["enchant.stat_2716178075"]}}} +{"ref":"+# metre to Melee Strike Range if you have Killed Recently","better":1,"matchers":[{"string":"若你近期有擊殺,# 米近戰打擊距離"}],"trade":{"ids":{"explicit":["explicit.stat_3255961830"]}}} +{"ref":"+# metre to Melee Strike Range per White Socket","better":1,"matchers":[{"string":"每個白色插槽 # 米近戰打擊距離"}],"trade":{"ids":{"explicit":["explicit.stat_2076080860"]}}} +{"ref":"+# metre to Melee Strike Range while Unarmed","better":1,"matchers":[{"string":"空手時 # 米近戰打擊距離"}],"trade":{"ids":{"explicit":["explicit.stat_3273962791"]}}} +{"ref":"+# metre to Weapon Range per 10% Quality","better":1,"matchers":[{"string":"每 10% 品質 # 米武器距離"}],"trade":{"ids":{"enchant":["enchant.stat_2967267655"]}}} +{"ref":"+# metres to Weapon Range","better":1,"matchers":[{"string":"# 米武器距離"},{"string":"# 米近戰打擊距離"}],"trade":{"ids":{"explicit":["explicit.stat_2264295449","explicit.stat_350598685"],"implicit":["implicit.stat_2264295449","implicit.stat_350598685"],"fractured":["fractured.stat_2264295449","fractured.stat_350598685"],"scourge":["scourge.stat_350598685"],"crafted":["crafted.stat_2264295449","crafted.stat_350598685"]}}} +{"ref":"+# Physical Damage taken from Attack Hits","better":1,"matchers":[{"string":"攻擊擊中 # 承受物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3441651621"],"implicit":["implicit.stat_3441651621"]}}} +{"ref":"+# Physical Damage taken from Hits","better":1,"matchers":[{"string":"擊中 # 承受物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_321765853"]}}} +{"ref":"+# Physical Damage taken from Hits by Animals","better":1,"matchers":[{"string":"被動物擊中時承受 # 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3277537093"]}}} +{"ref":"+# Physical Damage taken from Projectile Attacks","better":1,"matchers":[{"string":"# 承受的投射物攻擊的物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3612407781"]}}} +{"ref":"+# Prefix Modifier allowed","better":1,"matchers":[{"string":"允許前綴 #"}],"trade":{"ids":{"implicit":["implicit.stat_3182714256"]}}} +{"ref":"+# second to Summon Skeleton Cooldown","better":1,"matchers":[{"string":"# 秒召喚骷髏冷卻時間"}],"trade":{"ids":{"explicit":["explicit.stat_3013430129"]}}} +{"ref":"+# seconds to Avian's Flight Duration","dp":true,"better":1,"matchers":[{"string":"# 秒飛羽飄翔持續時間"}],"trade":{"ids":{"explicit":["explicit.stat_1251731548"]}}} +{"ref":"+# seconds to Avian's Might Duration","dp":true,"better":1,"matchers":[{"string":"# 秒飛羽意志持續時間"}],"trade":{"ids":{"explicit":["explicit.stat_1251945210"]}}} +{"ref":"+# seconds to Cat's Agility Duration","dp":true,"better":1,"matchers":[{"string":"傲貓姣捷的持續時間 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_3686519528"]}}} +{"ref":"+# seconds to Cat's Stealth Duration","dp":true,"better":1,"matchers":[{"string":"# 秒傲貓隱身持續時間"}],"trade":{"ids":{"explicit":["explicit.stat_387596329"]}}} +{"ref":"+# seconds to Duration of Frenzy and Power Charges on Culling Strike","better":1,"matchers":[{"string":"撲殺時 # 秒狂怒和暴擊球的持續時間"}],"trade":{"ids":{"explicit":["explicit.stat_4244234128"]}}} +{"ref":"+# seconds to Lockdown Timer","better":1,"matchers":[{"string":"# 秒封鎖計時"}],"trade":{"ids":{"explicit":["explicit.stat_3471951849"],"fractured":["fractured.stat_3471951849"]}}} +{"ref":"+# Strength and Intelligence Requirement","better":1,"matchers":[{"string":"# 力量和智慧需求"}],"trade":{"ids":{"explicit":["explicit.stat_4272453892"]}}} +{"ref":"+# Strength Requirement","better":1,"matchers":[{"string":"# 力量需求"}],"trade":{"ids":{"explicit":["explicit.stat_2833226514"],"scourge":["scourge.stat_2833226514"]}}} +{"ref":"+# Suffix Modifier allowed","better":1,"matchers":[{"string":"允許後綴 #"}],"trade":{"ids":{"implicit":["implicit.stat_718638445"]}}} +{"ref":"+# to Accuracy Rating","better":1,"matchers":[{"string":"# 命中值"},{"string":"# 點命中"}],"trade":{"ids":{"explicit":["explicit.stat_691932474","explicit.stat_803737631"],"implicit":["implicit.stat_691932474","implicit.stat_803737631"],"fractured":["fractured.stat_691932474","fractured.stat_803737631"],"crafted":["crafted.stat_691932474","crafted.stat_803737631"]}}} +{"ref":"+# to Accuracy Rating for each Empty Green Socket on any Equipped Item","better":1,"matchers":[{"string":"裝備中每個空的綠色插槽,# 命中值"}],"trade":{"ids":{"explicit":["explicit.stat_4280703528"]}}} +{"ref":"+# to Accuracy Rating per 10 Dexterity on Unallocated Passives in Radius","better":1,"matchers":[{"string":"範圍內未配置的天賦中,每 10 點敏捷 # 命中值"}],"trade":{"ids":{"explicit":["explicit.stat_100820057"]}}} +{"ref":"+# to Accuracy Rating per 10 Intelligence on Unallocated Passives in Radius","better":1,"matchers":[{"string":"範圍內每 10 點未配置智慧 # 命中值"}],"trade":{"ids":{"explicit":["explicit.stat_3996149330"]}}} +{"ref":"+# to Accuracy Rating per 2 Dexterity","better":1,"matchers":[{"string":"每 2 點敏捷 # 命中值"}],"trade":{"ids":{"explicit":["explicit.stat_773731062"],"fractured":["fractured.stat_773731062"]}}} +{"ref":"+# to Accuracy Rating per Frenzy Charge","better":1,"matchers":[{"string":"每顆狂怒球 # 命中值"}],"trade":{"ids":{"implicit":["implicit.stat_3126680545"]}}} +{"ref":"+# to Accuracy Rating while at Maximum Frenzy Charges","better":1,"matchers":[{"string":"獲得最大狂怒球時 # 命中值"}],"trade":{"ids":{"explicit":["explicit.stat_3213407110"]}}} +{"ref":"+# to Agility Level for Heists","better":1,"matchers":[{"string":"為劫盜 # 靈巧等級"}],"trade":{"ids":{"explicit":["explicit.stat_2943725337"]}}} +{"ref":"+# to all Attributes","better":1,"matchers":[{"string":"# 全能力"}],"trade":{"ids":{"explicit":["explicit.stat_1379411836"],"implicit":["implicit.stat_1379411836"],"fractured":["fractured.stat_1379411836"],"crafted":["crafted.stat_1379411836"]}}} +{"ref":"+# to Armour","better":1,"matchers":[{"string":"# 點護甲"}],"trade":{"ids":{"explicit":["explicit.stat_3484657501","explicit.stat_809229260"],"implicit":["implicit.stat_3484657501"],"fractured":["fractured.stat_3484657501","fractured.stat_809229260"],"scourge":["scourge.stat_3484657501"],"crafted":["crafted.stat_3484657501","crafted.stat_809229260"]}}} +{"ref":"+# to Armour and Evasion Rating","better":1,"matchers":[{"string":"# 護甲和閃避值"}],"trade":{"ids":{"explicit":["explicit.stat_2316658489"],"implicit":["implicit.stat_2316658489"],"fractured":["fractured.stat_2316658489"],"crafted":["crafted.stat_2316658489"]}}} +{"ref":"+# to Armour and Evasion Rating per 1% Chance to Block Attack Damage","better":1,"matchers":[{"string":"每 1% 攻擊傷害格擋率 # 護甲和閃避值"}],"trade":{"ids":{"explicit":["explicit.stat_2818854203"]}}} +{"ref":"+# to Armour and Evasion Rating while Fortified","better":1,"matchers":[{"string":"護體時 # 護甲和閃避值"}],"trade":{"ids":{"implicit":["implicit.stat_2962782530"]}}} +{"ref":"+# to Armour during Soul Gain Prevention","better":1,"matchers":[{"string":"停止獲得靈魂期間內 # 護甲"}],"trade":{"ids":{"explicit":["explicit.stat_1539825365"],"fractured":["fractured.stat_1539825365"],"crafted":["crafted.stat_1539825365"]}}} +{"ref":"+# to Armour if you've Hit an Enemy Recently","better":1,"matchers":[{"string":"若你近期有擊中敵人,# 護甲"}],"trade":{"ids":{"explicit":["explicit.stat_2368149582"]}}} +{"ref":"+# to Armour per 5 Evasion Rating on Equipped Shield","better":1,"matchers":[{"string":"裝備的盾牌每 5 點閃避 # 點護甲"}],"trade":{"ids":{"explicit":["explicit.stat_3088183606"]}}} +{"ref":"+# to Armour per Endurance Charge","better":1,"matchers":[{"string":"每顆耐力球 # 護甲"}],"trade":{"ids":{"explicit":["explicit.stat_513221334"]}}} +{"ref":"+# to Armour while affected by Determination","better":1,"matchers":[{"string":"被堅定影響時 # 護甲"}],"trade":{"ids":{"explicit":["explicit.stat_3742808908"]}}} +{"ref":"+# to Armour while Fortified","better":1,"matchers":[{"string":"護體時 # 護甲"}],"trade":{"ids":{"explicit":["explicit.stat_153004860"],"enchant":["enchant.stat_153004860"]}}} +{"ref":"+# to Armour while Frozen","better":1,"matchers":[{"string":"冰凍時 # 點護甲"}],"trade":{"ids":{"explicit":["explicit.stat_504366827"]}}} +{"ref":"+# to Brute Force Level for Heists","better":1,"matchers":[{"string":"為劫盜 # 蠻力等級"}],"trade":{"ids":{"explicit":["explicit.stat_1169552613"]}}} +{"ref":"+# to Character Level","better":1,"matchers":[{"string":"角色等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_1172162241"],"fractured":["fractured.stat_1172162241"]}}} +{"ref":"+# to Counter-Thaumaturgy Level for Heists","better":1,"matchers":[{"string":"為劫盜 # 解咒師等級"}],"trade":{"ids":{"explicit":["explicit.stat_4207149030"],"fractured":["fractured.stat_4207149030"]}}} +{"ref":"+# to Deception Level for Heists","better":1,"matchers":[{"string":"為劫盜 # 詐欺等級"}],"trade":{"ids":{"explicit":["explicit.stat_828170926"]}}} +{"ref":"+# to Demolition Level for Heists","better":1,"matchers":[{"string":"為劫盜 # 拆除等級"}],"trade":{"ids":{"explicit":["explicit.stat_2359025380"]}}} +{"ref":"+# to Dexterity","better":1,"matchers":[{"string":"# 敏捷"}],"trade":{"ids":{"explicit":["explicit.stat_3261801346"],"implicit":["implicit.stat_3261801346"],"fractured":["fractured.stat_3261801346"],"scourge":["scourge.stat_3261801346"],"crafted":["crafted.stat_3261801346"]}}} +{"ref":"+# to Dexterity and Intelligence","better":1,"matchers":[{"string":"# 敏捷和智慧"}],"trade":{"ids":{"explicit":["explicit.stat_2300185227"],"implicit":["implicit.stat_2300185227"],"fractured":["fractured.stat_2300185227"],"crafted":["crafted.stat_2300185227"]}}} +{"ref":"+# to Engineering Level for Heists","better":1,"matchers":[{"string":"為劫盜 # 工程等級"}],"trade":{"ids":{"explicit":["explicit.stat_2978835006"]}}} +{"ref":"+# to Evasion Rating","better":1,"matchers":[{"string":"# 點閃避值"}],"trade":{"ids":{"explicit":["explicit.stat_2144192055","explicit.stat_53045048"],"implicit":["implicit.stat_53045048"],"fractured":["fractured.stat_2144192055","fractured.stat_53045048"],"scourge":["scourge.stat_53045048"],"crafted":["crafted.stat_2144192055","crafted.stat_53045048"]}}} +{"ref":"+# to Evasion Rating and Energy Shield","better":1,"matchers":[{"string":"# 閃避值和能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_1549868759"]}}} +{"ref":"+# to Evasion Rating if Hit an Enemy Recently","better":1,"matchers":[{"string":"若近期有擊中敵人,# 閃避值"}],"trade":{"ids":{"explicit":["explicit.stat_2935548106"]}}} +{"ref":"+# to Evasion Rating per 1 Maximum Energy Shield on Equipped Helmet","better":1,"matchers":[{"string":"裝備的頭盔每 1 最大能量護盾 # 閃避值"}],"trade":{"ids":{"explicit":["explicit.stat_1144937587"]}}} +{"ref":"+# to Evasion Rating per 5 Maximum Energy Shield on Equipped Shield","better":1,"matchers":[{"string":"裝備的盾牌每 5 點最大能量護盾 # 點閃避"}],"trade":{"ids":{"explicit":["explicit.stat_1115914670"]}}} +{"ref":"+# to Evasion Rating while in Sand Stance","better":1,"matchers":[{"string":"沙戮姿態時 # 閃避值"}],"trade":{"ids":{"explicit":["explicit.stat_1922061483"]}}} +{"ref":"+# to Evasion Rating while on Full Life","better":1,"matchers":[{"string":"滿血時 # 閃避值"}],"trade":{"ids":{"explicit":["explicit.stat_4082111882"]}}} +{"ref":"+# to Evasion Rating while on Low Life","better":1,"matchers":[{"string":"貧血時 # 閃避值"}],"trade":{"ids":{"explicit":["explicit.stat_3470876581"]}}} +{"ref":"+# to Evasion Rating while you have Phasing","better":1,"matchers":[{"string":"你有迷蹤時,# 閃避值"}],"trade":{"ids":{"enchant":["enchant.stat_3169671355"]}}} +{"ref":"+# to Global Evasion Rating while moving","better":1,"matchers":[{"string":"移動時 # 全域閃避值"}],"trade":{"ids":{"implicit":["implicit.stat_3825877290"]}}} +{"ref":"+# to Intelligence","better":1,"matchers":[{"string":"# 智慧"}],"trade":{"ids":{"explicit":["explicit.stat_328541901"],"implicit":["implicit.stat_328541901"],"fractured":["fractured.stat_328541901"],"scourge":["scourge.stat_328541901"],"crafted":["crafted.stat_328541901"]}}} +{"ref":"+# to Level of all Absolution Gems","better":1,"matchers":[{"string":"全部 赦免 寶石等級 #","advanced":"全部 赦免(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_251"]}}} +{"ref":"+# to Level of all Alchemist's Mark Gems","better":1,"matchers":[{"string":"全部 煉金術士印記 寶石等級 #","advanced":"全部 煉金術士印記(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_270"]}}} +{"ref":"+# to Level of all Ambush Gems","better":1,"matchers":[{"string":"全部 伏擊 寶石等級 #","advanced":"全部 伏擊(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_248"]}}} +{"ref":"+# to Level of all Ancestral Cry Gems","better":1,"matchers":[{"string":"全部 先祖戰吼 寶石等級 #","advanced":"全部 先祖戰吼(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_222"]}}} +{"ref":"+# to Level of all Anger Gems","better":1,"matchers":[{"string":"全部 憤怒 寶石等級 #","advanced":"全部 憤怒(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_68"]}}} +{"ref":"+# to Level of all Animate Guardian Gems","better":1,"matchers":[{"string":"全部 幻化守衛 寶石等級 #","advanced":"全部 幻化守衛(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_95"]}}} +{"ref":"+# to Level of all Animate Weapon Gems","better":1,"matchers":[{"string":"全部 幻化武器 寶石等級 #","advanced":"全部 幻化武器(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_97"]}}} +{"ref":"+# to Level of all Arc Gems","better":1,"matchers":[{"string":"全部 電弧 寶石等級 #","advanced":"全部 電弧(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_61"]}}} +{"ref":"+# to Level of all Arcane Cloak Gems","better":1,"matchers":[{"string":"全部 秘能披風 寶石等級 #","advanced":"全部 秘能披風(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_220"]}}} +{"ref":"+# to Level of all Arcanist Brand Gems","better":1,"matchers":[{"string":"全部 奧術烙印 寶石等級 #","advanced":"全部 奧術烙印(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_225"]}}} +{"ref":"+# to Level of all Arctic Armour Gems","better":1,"matchers":[{"string":"全部 極地裝甲 寶石等級 #","advanced":"全部 極地裝甲(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_81"]}}} +{"ref":"+# to Level of all Armageddon Brand Gems","better":1,"matchers":[{"string":"全部 末日烙印 寶石等級 #","advanced":"全部 末日烙印(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_182"]}}} +{"ref":"+# to Level of all Artillery Ballista Gems","better":1,"matchers":[{"string":"全部 火砲砲塔 寶石等級 #","advanced":"全部 火砲砲塔(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_213"]}}} +{"ref":"+# to Level of all Assassin's Mark Gems","better":1,"matchers":[{"string":"全部 刺客印記 寶石等級 #","advanced":"全部 刺客印記(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_43"]}}} +{"ref":"+# to Level of all Autoexertion Gems","better":1,"matchers":[{"string":"全部 自動竭盡 寶石等級 #","advanced":"全部 自動竭盡(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_274"]}}} +{"ref":"+# to Level of all Automation Gems","better":1,"matchers":[{"string":"全部 自動化 寶石等級 #","advanced":"全部 自動化(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_273"]}}} +{"ref":"+# to Level of all Ball Lightning Gems","better":1,"matchers":[{"string":"全部 天雷之珠 寶石等級 #","advanced":"全部 天雷之珠(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_104"]}}} +{"ref":"+# to Level of all Bane Gems","better":1,"matchers":[{"string":"全部 災厄 寶石等級 #","advanced":"全部 災厄(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_190"]}}} +{"ref":"+# to Level of all Barrage Gems","better":1,"matchers":[{"string":"全部 彈幕 寶石等級 #","advanced":"全部 彈幕(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_103"]}}} +{"ref":"+# to Level of all Battlemage's Cry Gems","better":1,"matchers":[{"string":"全部 戰法戰吼 寶石等級 #","advanced":"全部 戰法戰吼(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_250"]}}} +{"ref":"+# to Level of all Bear Trap Gems","better":1,"matchers":[{"string":"全部 捕熊陷阱 寶石等級 #","advanced":"全部 捕熊陷阱(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_76"]}}} +{"ref":"+# to Level of all Berserk Gems","better":1,"matchers":[{"string":"全部 狂戰 寶石等級 #","advanced":"全部 狂戰(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_200"]}}} +{"ref":"+# to Level of all Blade Blast Gems","better":1,"matchers":[{"string":"全部 劍刃爆破 寶石等級 #","advanced":"全部 劍刃爆破(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_217"]}}} +{"ref":"+# to Level of all Blade Flurry Gems","better":1,"matchers":[{"string":"全部 刀鋒亂舞 寶石等級 #","advanced":"全部 刀鋒亂舞(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_157"]}}} +{"ref":"+# to Level of all Blade Trap Gems","better":1,"matchers":[{"string":"全部 刀鋒陷阱 寶石等級 #","advanced":"全部 刀鋒陷阱(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_255"]}}} +{"ref":"+# to Level of all Blade Vortex Gems","better":1,"matchers":[{"string":"全部 飛刃風暴 寶石等級 #","advanced":"全部 飛刃風暴(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_138"]}}} +{"ref":"+# to Level of all Bladefall Gems","better":1,"matchers":[{"string":"全部 虛空刀雨 寶石等級 #","advanced":"全部 虛空刀雨(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_136"]}}} +{"ref":"+# to Level of all Bladestorm Gems","better":1,"matchers":[{"string":"全部 旋天劍舞 寶石等級 #","advanced":"全部 旋天劍舞(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_198"]}}} +{"ref":"+# to Level of all Blast Rain Gems","better":1,"matchers":[{"string":"全部 爆裂箭雨 寶石等級 #","advanced":"全部 爆裂箭雨(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_135"]}}} +{"ref":"+# to Level of all Blazing Salvo Gems","better":1,"matchers":[{"string":"全部 熾熱魔炮 寶石等級 #","advanced":"全部 熾熱魔炮(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_232"]}}} +{"ref":"+# to Level of all Blight Gems","better":1,"matchers":[{"string":"全部 邪風 寶石等級 #","advanced":"全部 邪風(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_155"]}}} +{"ref":"+# to Level of all Blink Arrow Gems","better":1,"matchers":[{"string":"全部 閃現射擊 寶石等級 #","advanced":"全部 閃現射擊(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_120"]}}} +{"ref":"+# to Level of all Blood and Sand Gems","better":1,"matchers":[{"string":"全部 血腥沙戮 寶石等級 #","advanced":"全部 血腥沙戮(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_199"]}}} +{"ref":"+# to Level of all Blood Rage Gems","better":1,"matchers":[{"string":"全部 鮮血狂怒 寶石等級 #","advanced":"全部 鮮血狂怒(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_23"]}}} +{"ref":"+# to Level of all Bodyswap Gems","better":1,"matchers":[{"string":"全部 屍術傳送 寶石等級 #","advanced":"全部 屍術傳送(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_162"]}}} +{"ref":"+# to Level of all Bone Offering Gems","better":1,"matchers":[{"string":"全部 骸骨奉獻 寶石等級 #","advanced":"全部 骸骨奉獻(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_109"]}}} +{"ref":"+# to Level of all Boneshatter Gems","better":1,"matchers":[{"string":"全部 碎骨 寶石等級 #","advanced":"全部 碎骨(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_247"]}}} +{"ref":"+# to Level of all Brand Recall Gems","better":1,"matchers":[{"string":"全部 烙印呼喚 寶石等級 #","advanced":"全部 烙印呼喚(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_183"]}}} +{"ref":"+# to Level of all Burning Arrow Gems","better":1,"matchers":[{"string":"全部 燃燒箭矢 寶石等級 #","advanced":"全部 燃燒箭矢(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_71"]}}} +{"ref":"+# to Level of all Caustic Arrow Gems","better":1,"matchers":[{"string":"全部 腐蝕箭矢 寶石等級 #","advanced":"全部 腐蝕箭矢(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_18"]}}} +{"ref":"+# to Level of all Chain Hook Gems","better":1,"matchers":[{"string":"全部 奪魂勾索 寶石等級 #","advanced":"全部 奪魂勾索(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_202"]}}} +{"ref":"+# to Level of all Chaos Skill Gems","better":1,"matchers":[{"string":"全部混沌技能寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_67169579"],"fractured":["fractured.stat_67169579"]}}} +{"ref":"+# to Level of all Chaos Spell Skill Gems","better":1,"matchers":[{"string":"全部混沌法術技能寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_4226189338"],"fractured":["fractured.stat_4226189338"],"scourge":["scourge.stat_4226189338"]}}} +{"ref":"+# to Level of all Charged Dash Gems","better":1,"matchers":[{"string":"全部 雷霆衝鋒 寶石等級 #","advanced":"全部 雷霆衝鋒(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_158"]}}} +{"ref":"+# to Level of all Clarity Gems","better":1,"matchers":[{"string":"全部 清晰 寶石等級 #","advanced":"全部 清晰(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_72"]}}} +{"ref":"+# to Level of all Cleave Gems","better":1,"matchers":[{"string":"全部 劈砍 寶石等級 #","advanced":"全部 劈砍(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_6"]}}} +{"ref":"+# to Level of all Cobra Lash Gems","better":1,"matchers":[{"string":"全部 毒蛇鞭笞 寶石等級 #","advanced":"全部 毒蛇鞭笞(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_206"]}}} +{"ref":"+# to Level of all Cold Skill Gems","better":1,"matchers":[{"string":"全部冰冷技能寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_1078455967"],"fractured":["fractured.stat_1078455967"]}}} +{"ref":"+# to Level of all Cold Snap Gems","better":1,"matchers":[{"string":"全部 霜暴 寶石等級 #","advanced":"全部 霜暴(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_15"]}}} +{"ref":"+# to Level of all Cold Spell Skill Gems","better":1,"matchers":[{"string":"全部冰冷法術技能寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_2254480358"],"fractured":["fractured.stat_2254480358"],"scourge":["scourge.stat_2254480358"]}}} +{"ref":"+# to Level of all Conductivity Gems","better":1,"matchers":[{"string":"全部 導電 寶石等級 #","advanced":"全部 導電(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_85"]}}} +{"ref":"+# to Level of all Consecrated Path Gems","better":1,"matchers":[{"string":"全部 奉獻之路 寶石等級 #","advanced":"全部 奉獻之路(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_175"]}}} +{"ref":"+# to Level of all Contagion Gems","better":1,"matchers":[{"string":"全部 瘟疫 寶石等級 #","advanced":"全部 瘟疫(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_139"]}}} +{"ref":"+# to Level of all Conversion Trap Gems","better":1,"matchers":[{"string":"全部 迷魅陷阱 寶石等級 #","advanced":"全部 迷魅陷阱(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_75"]}}} +{"ref":"+# to Level of all Convocation Gems","better":1,"matchers":[{"string":"全部 號召 寶石等級 #","advanced":"全部 號召(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_111"]}}} +{"ref":"+# to Level of all Corrupting Fever Gems","better":1,"matchers":[{"string":"全部 腐化潮 寶石等級 #","advanced":"全部 腐化潮(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_239"]}}} +{"ref":"+# to Level of all Crackling Lance Gems","better":1,"matchers":[{"string":"全部 碎雷電閃 寶石等級 #","advanced":"全部 碎雷電閃(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_233"]}}} +{"ref":"+# to Level of all Creeping Frost Gems","better":1,"matchers":[{"string":"全部 寒霜滲透 寶石等級 #","advanced":"全部 寒霜滲透(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_19"]}}} +{"ref":"+# to Level of all Cremation Gems","better":1,"matchers":[{"string":"全部 熔炎送葬 寶石等級 #","advanced":"全部 熔炎送葬(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_161"]}}} +{"ref":"+# to Level of all Crushing Fist Gems","better":1,"matchers":[{"string":"全部 粉碎之拳 寶石等級 #","advanced":"全部 粉碎之拳(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_49"]}}} +{"ref":"+# to Level of all Cyclone Gems","better":1,"matchers":[{"string":"全部 旋風斬 寶石等級 #","advanced":"全部 旋風斬(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_87"]}}} +{"ref":"+# to Level of all Dark Pact Gems","better":1,"matchers":[{"string":"全部 暗夜血契 寶石等級 #","advanced":"全部 暗夜血契(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_159"]}}} +{"ref":"+# to Level of all Dash Gems","better":1,"matchers":[{"string":"全部 幻步 寶石等級 #","advanced":"全部 幻步(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_197"]}}} +{"ref":"+# to Level of all Decoy Totem Gems","better":1,"matchers":[{"string":"全部 誘餌圖騰 寶石等級 #","advanced":"全部 誘餌圖騰(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_78"]}}} +{"ref":"+# to Level of all Defiance Banner Gems","better":1,"matchers":[{"string":"全部 反抗之旗 寶石等級 #","advanced":"全部 反抗之旗(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_242"]}}} +{"ref":"+# to Level of all Desecrate Gems","better":1,"matchers":[{"string":"全部 褻瀆 寶石等級 #","advanced":"全部 褻瀆(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_107"]}}} +{"ref":"+# to Level of all Despair Gems","better":1,"matchers":[{"string":"全部 絕望 寶石等級 #","advanced":"全部 絕望(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_45"]}}} +{"ref":"+# to Level of all Destructive Link Gems","better":1,"matchers":[{"string":"全部 連結:破壞 寶石等級 #","advanced":"全部 連結:破壞(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_267"]}}} +{"ref":"+# to Level of all Determination Gems","better":1,"matchers":[{"string":"全部 堅定 寶石等級 #","advanced":"全部 堅定(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_67"]}}} +{"ref":"+# to Level of all Detonate Dead Gems","better":1,"matchers":[{"string":"全部 屍體爆破 寶石等級 #","advanced":"全部 屍體爆破(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_17"]}}} +{"ref":"+# to Level of all Devouring Totem Gems","better":1,"matchers":[{"string":"全部 吞噬圖騰 寶石等級 #","advanced":"全部 吞噬圖騰(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_79"]}}} +{"ref":"+# to Level of all Discharge Gems","better":1,"matchers":[{"string":"全部 解放 寶石等級 #","advanced":"全部 解放(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_25"]}}} +{"ref":"+# to Level of all Discipline Gems","better":1,"matchers":[{"string":"全部 紀律 寶石等級 #","advanced":"全部 紀律(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_65"]}}} +{"ref":"+# to Level of all Divine Ire Gems","better":1,"matchers":[{"string":"全部 聖怒 寶石等級 #","advanced":"全部 聖怒(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_191"]}}} +{"ref":"+# to Level of all Divine Retribution Gems","better":1,"matchers":[{"string":"全部 神聖制裁 寶石等級 #","advanced":"全部 神聖制裁(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_275"]}}} +{"ref":"+# to Level of all Dominating Blow Gems","better":1,"matchers":[{"string":"全部 霸氣之擊 寶石等級 #","advanced":"全部 霸氣之擊(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_52"]}}} +{"ref":"+# to Level of all Double Strike Gems","better":1,"matchers":[{"string":"全部 雙重打擊 寶石等級 #","advanced":"全部 雙重打擊(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_9"]}}} +{"ref":"+# to Level of all Dread Banner Gems","better":1,"matchers":[{"string":"全部 恐懼之旗 寶石等級 #","advanced":"全部 恐懼之旗(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_185"]}}} +{"ref":"+# to Level of all Dual Strike Gems","better":1,"matchers":[{"string":"全部 雙持打擊 寶石等級 #","advanced":"全部 雙持打擊(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_12"]}}} +{"ref":"+# to Level of all Earthquake Gems","better":1,"matchers":[{"string":"全部 震地 寶石等級 #","advanced":"全部 震地(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_149"]}}} +{"ref":"+# to Level of all Earthshatter Gems","better":1,"matchers":[{"string":"全部 碎地重擊 寶石等級 #","advanced":"全部 碎地重擊(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_228"]}}} +{"ref":"+# to Level of all Elemental Hit Gems","better":1,"matchers":[{"string":"全部 元素打擊 寶石等級 #","advanced":"全部 元素打擊(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_10"]}}} +{"ref":"+# to Level of all Elemental Weakness Gems","better":1,"matchers":[{"string":"全部 元素要害 寶石等級 #","advanced":"全部 元素要害(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_39"]}}} +{"ref":"+# to Level of all Enduring Cry Gems","better":1,"matchers":[{"string":"全部 堅決戰吼 寶石等級 #","advanced":"全部 堅決戰吼(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_8"]}}} +{"ref":"+# to Level of all Energy Blade Gems","better":1,"matchers":[{"string":"全部 能量之刃 寶石等級 #","advanced":"全部 能量之刃(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_260"]}}} +{"ref":"+# to Level of all Enfeeble Gems","better":1,"matchers":[{"string":"全部 衰弱 寶石等級 #","advanced":"全部 衰弱(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_42"]}}} +{"ref":"+# to Level of all Ensnaring Arrow Gems","better":1,"matchers":[{"string":"全部 誘捕箭矢 寶石等級 #","advanced":"全部 誘捕箭矢(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_215"]}}} +{"ref":"+# to Level of all Essence Drain Gems","better":1,"matchers":[{"string":"全部 靈魂吸取 寶石等級 #","advanced":"全部 靈魂吸取(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_141"]}}} +{"ref":"+# to Level of all Ethereal Knives Gems","better":1,"matchers":[{"string":"全部 虛空匕首 寶石等級 #","advanced":"全部 虛空匕首(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_80"]}}} +{"ref":"+# to Level of all Eviscerate Gems","better":1,"matchers":[{"string":"全部 剔骨 寶石等級 #","advanced":"全部 剔骨(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_146"]}}} +{"ref":"+# to Level of all Explosive Arrow Gems","better":1,"matchers":[{"string":"全部 爆炸箭矢 寶石等級 #","advanced":"全部 爆炸箭矢(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_37"]}}} +{"ref":"+# to Level of all Explosive Concoction Gems","better":1,"matchers":[{"string":"全部 爆裂物 寶石等級 #","advanced":"全部 爆裂物(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_257"]}}} +{"ref":"+# to Level of all Explosive Trap Gems","better":1,"matchers":[{"string":"全部 爆裂陷阱 寶石等級 #","advanced":"全部 爆裂陷阱(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_165"]}}} +{"ref":"+# to Level of all Exsanguinate Gems","better":1,"matchers":[{"string":"全部 抽血 寶石等級 #","advanced":"全部 抽血(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_238"]}}} +{"ref":"+# to Level of all Eye of Winter Gems","better":1,"matchers":[{"string":"全部 凜冬之眼 寶石等級 #","advanced":"全部 凜冬之眼(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_252"]}}} +{"ref":"+# to Level of all Fire Skill Gems","better":1,"matchers":[{"string":"全部火焰技能寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_599749213"],"fractured":["fractured.stat_599749213"]}}} +{"ref":"+# to Level of all Fire Spell Skill Gems","better":1,"matchers":[{"string":"全部火焰法術技能寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_591105508"],"fractured":["fractured.stat_591105508"],"scourge":["scourge.stat_591105508"]}}} +{"ref":"+# to Level of all Fire Trap Gems","better":1,"matchers":[{"string":"全部 火焰陷阱 寶石等級 #","advanced":"全部 火焰陷阱(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_77"]}}} +{"ref":"+# to Level of all Fireball Gems","better":1,"matchers":[{"string":"全部 火球 寶石等級 #","advanced":"全部 火球(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_1"]}}} +{"ref":"+# to Level of all Firestorm Gems","better":1,"matchers":[{"string":"全部 烈炎風暴 寶石等級 #","advanced":"全部 烈炎風暴(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_54"]}}} +{"ref":"+# to Level of all Flame Dash Gems","better":1,"matchers":[{"string":"全部 烈焰衝刺 寶石等級 #","advanced":"全部 烈焰衝刺(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_131"]}}} +{"ref":"+# to Level of all Flame Link Gems","better":1,"matchers":[{"string":"全部 連結:烈焰 寶石等級 #","advanced":"全部 連結:烈焰(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_263"]}}} +{"ref":"+# to Level of all Flame Surge Gems","better":1,"matchers":[{"string":"全部 怒焰奔騰 寶石等級 #","advanced":"全部 怒焰奔騰(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_106"]}}} +{"ref":"+# to Level of all Flame Wall Gems","better":1,"matchers":[{"string":"全部 烈焰之牆 寶石等級 #","advanced":"全部 烈焰之牆(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_231"]}}} +{"ref":"+# to Level of all Flameblast Gems","better":1,"matchers":[{"string":"全部 烈焰爆破 寶石等級 #","advanced":"全部 烈焰爆破(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_102"]}}} +{"ref":"+# to Level of all Flamethrower Trap Gems","better":1,"matchers":[{"string":"全部 噴火陷阱 寶石等級 #","advanced":"全部 噴火陷阱(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_167"]}}} +{"ref":"+# to Level of all Flammability Gems","better":1,"matchers":[{"string":"全部 易燃 寶石等級 #","advanced":"全部 易燃(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_83"]}}} +{"ref":"+# to Level of all Flesh and Stone Gems","better":1,"matchers":[{"string":"全部 血肉骸骨 寶石等級 #","advanced":"全部 血肉骸骨(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_204"]}}} +{"ref":"+# to Level of all Flesh Offering Gems","better":1,"matchers":[{"string":"全部 血肉奉獻 寶石等級 #","advanced":"全部 血肉奉獻(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_108"]}}} +{"ref":"+# to Level of all Flicker Strike Gems","better":1,"matchers":[{"string":"全部 閃現打擊 寶石等級 #","advanced":"全部 閃現打擊(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_26"]}}} +{"ref":"+# to Level of all Forbidden Rite Gems","better":1,"matchers":[{"string":"全部 禁忌儀式 寶石等級 #","advanced":"全部 禁忌儀式(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_254"]}}} +{"ref":"+# to Level of all Freezing Pulse Gems","better":1,"matchers":[{"string":"全部 冰霜脈衝 寶石等級 #","advanced":"全部 冰霜脈衝(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_33"]}}} +{"ref":"+# to Level of all Frenzy Gems","better":1,"matchers":[{"string":"全部 狂怒 寶石等級 #","advanced":"全部 狂怒(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_14"]}}} +{"ref":"+# to Level of all Frost Blades Gems","better":1,"matchers":[{"string":"全部 冰霜之刃 寶石等級 #","advanced":"全部 冰霜之刃(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_132"]}}} +{"ref":"+# to Level of all Frost Bomb Gems","better":1,"matchers":[{"string":"全部 寒霜爆 寶石等級 #","advanced":"全部 寒霜爆(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_144"]}}} +{"ref":"+# to Level of all Frost Shield Gems","better":1,"matchers":[{"string":"全部 寒霜護盾 寶石等級 #","advanced":"全部 寒霜護盾(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_235"]}}} +{"ref":"+# to Level of all Frost Wall Gems","better":1,"matchers":[{"string":"全部 冰牆 寶石等級 #","advanced":"全部 冰牆(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_32"]}}} +{"ref":"+# to Level of all Frostbite Gems","better":1,"matchers":[{"string":"全部 凍傷 寶石等級 #","advanced":"全部 凍傷(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_84"]}}} +{"ref":"+# to Level of all Frostblink Gems","better":1,"matchers":[{"string":"全部 霜漣之瞬 寶石等級 #","advanced":"全部 霜漣之瞬(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_203"]}}} +{"ref":"+# to Level of all Frostbolt Gems","better":1,"matchers":[{"string":"全部 寒冰彈 寶石等級 #","advanced":"全部 寒冰彈(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_153"]}}} +{"ref":"+# to Level of all Frozen Legion Gems","better":1,"matchers":[{"string":"全部 戰亂.凍結 寶石等級 #","advanced":"全部 戰亂.凍結(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_271"]}}} +{"ref":"+# to Level of all Galvanic Arrow Gems","better":1,"matchers":[{"string":"全部 電流箭矢 寶石等級 #","advanced":"全部 電流箭矢(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_134"]}}} +{"ref":"+# to Level of all Galvanic Field Gems","better":1,"matchers":[{"string":"全部 電光領域 寶石等級 #","advanced":"全部 電光領域(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_268"]}}} +{"ref":"+# to Level of all General's Cry Gems","better":1,"matchers":[{"string":"全部 將軍戰吼 寶石等級 #","advanced":"全部 將軍戰吼(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_224"]}}} +{"ref":"+# to Level of all Glacial Cascade Gems","better":1,"matchers":[{"string":"全部 冰川之刺 寶石等級 #","advanced":"全部 冰川之刺(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_110"]}}} +{"ref":"+# to Level of all Glacial Hammer Gems","better":1,"matchers":[{"string":"全部 冰霜之錘 寶石等級 #","advanced":"全部 冰霜之錘(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_31"]}}} +{"ref":"+# to Level of all Glacial Shield Swipe Gems","better":1,"matchers":[{"string":"全部 冰川盾擊 寶石等級 #","advanced":"全部 冰川盾擊(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_48"]}}} +{"ref":"+# to Level of all Grace Gems","better":1,"matchers":[{"string":"全部 優雅 寶石等級 #","advanced":"全部 優雅(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_66"]}}} +{"ref":"+# to Level of all Ground Slam Gems","better":1,"matchers":[{"string":"全部 裂地之擊 寶石等級 #","advanced":"全部 裂地之擊(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_5"]}}} +{"ref":"+# to Level of all Haste Gems","better":1,"matchers":[{"string":"全部 迅捷 寶石等級 #","advanced":"全部 迅捷(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_62"]}}} +{"ref":"+# to Level of all Hatred Gems","better":1,"matchers":[{"string":"全部 憎恨 寶石等級 #","advanced":"全部 憎恨(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_69"]}}} +{"ref":"+# to Level of all Heavy Strike Gems","better":1,"matchers":[{"string":"全部 沉重之擊 寶石等級 #","advanced":"全部 沉重之擊(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_51"]}}} +{"ref":"+# to Level of all Herald of Agony Gems","better":1,"matchers":[{"string":"全部 苦痛之捷 寶石等級 #","advanced":"全部 苦痛之捷(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_174"]}}} +{"ref":"+# to Level of all Herald of Ash Gems","better":1,"matchers":[{"string":"全部 灰燼之捷 寶石等級 #","advanced":"全部 灰燼之捷(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_114"]}}} +{"ref":"+# to Level of all Herald of Ice Gems","better":1,"matchers":[{"string":"全部 冰霜之捷 寶石等級 #","advanced":"全部 冰霜之捷(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_115"]}}} +{"ref":"+# to Level of all Herald of Purity Gems","better":1,"matchers":[{"string":"全部 純淨之捷 寶石等級 #","advanced":"全部 純淨之捷(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_173"]}}} +{"ref":"+# to Level of all Herald of Thunder Gems","better":1,"matchers":[{"string":"全部 閃電之捷 寶石等級 #","advanced":"全部 閃電之捷(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_116"]}}} +{"ref":"+# to Level of all Hexblast Gems","better":1,"matchers":[{"string":"全部 咒術枯萎 寶石等級 #","advanced":"全部 咒術枯萎(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_237"]}}} +{"ref":"+# to Level of all Holy Flame Totem Gems","better":1,"matchers":[{"string":"全部 神聖火舌圖騰 寶石等級 #","advanced":"全部 神聖火舌圖騰(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_82"]}}} +{"ref":"+# to Level of all Hydrosphere Gems","better":1,"matchers":[{"string":"全部 水弒界 寶石等級 #","advanced":"全部 水弒界(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_236"]}}} +{"ref":"+# to Level of all Ice Crash Gems","better":1,"matchers":[{"string":"全部 寒冰衝擊 寶石等級 #","advanced":"全部 寒冰衝擊(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_126"]}}} +{"ref":"+# to Level of all Ice Nova Gems","better":1,"matchers":[{"string":"全部 冰霜新星 寶石等級 #","advanced":"全部 冰霜新星(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_2"]}}} +{"ref":"+# to Level of all Ice Shot Gems","better":1,"matchers":[{"string":"全部 冰霜射擊 寶石等級 #","advanced":"全部 冰霜射擊(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_20"]}}} +{"ref":"+# to Level of all Ice Spear Gems","better":1,"matchers":[{"string":"全部 冰矛 寶石等級 #","advanced":"全部 冰矛(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_28"]}}} +{"ref":"+# to Level of all Ice Trap Gems","better":1,"matchers":[{"string":"全部 冰凍陷阱 寶石等級 #","advanced":"全部 冰凍陷阱(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_142"]}}} +{"ref":"+# to Level of all Icicle Mine Gems","better":1,"matchers":[{"string":"全部 冰雹地雷 寶石等級 #","advanced":"全部 冰雹地雷(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_93"]}}} +{"ref":"+# to Level of all Immortal Call Gems","better":1,"matchers":[{"string":"全部 不朽怒嚎 寶石等級 #","advanced":"全部 不朽怒嚎(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_11"]}}} +{"ref":"+# to Level of all Incinerate Gems","better":1,"matchers":[{"string":"全部 燒毀 寶石等級 #","advanced":"全部 燒毀(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_86"]}}} +{"ref":"+# to Level of all Infernal Blow Gems","better":1,"matchers":[{"string":"全部 煉獄之擊 寶石等級 #","advanced":"全部 煉獄之擊(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_30"]}}} +{"ref":"+# to Level of all Infernal Cry Gems","better":1,"matchers":[{"string":"全部 煉獄戰吼 寶石等級 #","advanced":"全部 煉獄戰吼(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_128"]}}} +{"ref":"+# to Level of all Intimidating Cry Gems","better":1,"matchers":[{"string":"全部 威嚇戰吼 寶石等級 #","advanced":"全部 威嚇戰吼(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_221"]}}} +{"ref":"+# to Level of all Intuitive Link Gems","better":1,"matchers":[{"string":"全部 連結:直覺 寶石等級 #","advanced":"全部 連結:直覺(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_264"]}}} +{"ref":"+# to Level of all Jobs for Heists","better":1,"matchers":[{"string":"為劫盜 # 全部工作等級"}],"trade":{"ids":{"explicit":["explicit.stat_2692578539"],"fractured":["fractured.stat_2692578539"]}}} +{"ref":"+# to Level of all Kinetic Blast Gems","better":1,"matchers":[{"string":"全部 力量爆破 寶石等級 #","advanced":"全部 力量爆破(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_121"]}}} +{"ref":"+# to Level of all Kinetic Bolt Gems","better":1,"matchers":[{"string":"全部 力量穿引 寶石等級 #","advanced":"全部 力量穿引(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_219"]}}} +{"ref":"+# to Level of all Lacerate Gems","better":1,"matchers":[{"string":"全部 破空斬 寶石等級 #","advanced":"全部 破空斬(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_151"]}}} +{"ref":"+# to Level of all Lancing Steel Gems","better":1,"matchers":[{"string":"全部 鋼之突刺 寶石等級 #","advanced":"全部 鋼之突刺(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_187"]}}} +{"ref":"+# to Level of all Leap Slam Gems","better":1,"matchers":[{"string":"全部 躍擊 寶石等級 #","advanced":"全部 躍擊(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_3"]}}} +{"ref":"+# to Level of all Lightning Arrow Gems","better":1,"matchers":[{"string":"全部 閃電箭矢 寶石等級 #","advanced":"全部 閃電箭矢(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_60"]}}} +{"ref":"+# to Level of all Lightning Conduit Gems","better":1,"matchers":[{"string":"全部 導雷 寶石等級 #","advanced":"全部 導雷(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_269"]}}} +{"ref":"+# to Level of all Lightning Skill Gems","better":1,"matchers":[{"string":"全部閃電技能寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_1147690586"],"fractured":["fractured.stat_1147690586"]}}} +{"ref":"+# to Level of all Lightning Spell Skill Gems","better":1,"matchers":[{"string":"全部閃電法術技能寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_1545858329"],"fractured":["fractured.stat_1545858329"],"scourge":["scourge.stat_1545858329"]}}} +{"ref":"+# to Level of all Lightning Spire Trap Gems","better":1,"matchers":[{"string":"全部 鋒雷陷阱 寶石等級 #","advanced":"全部 鋒雷陷阱(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_168"]}}} +{"ref":"+# to Level of all Lightning Strike Gems","better":1,"matchers":[{"string":"全部 閃電打擊 寶石等級 #","advanced":"全部 閃電打擊(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_55"]}}} +{"ref":"+# to Level of all Lightning Tendrils Gems","better":1,"matchers":[{"string":"全部 電能釋放 寶石等級 #","advanced":"全部 電能釋放(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_118"]}}} +{"ref":"+# to Level of all Lightning Trap Gems","better":1,"matchers":[{"string":"全部 閃電陷阱 寶石等級 #","advanced":"全部 閃電陷阱(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_90"]}}} +{"ref":"+# to Level of all Lightning Warp Gems","better":1,"matchers":[{"string":"全部 閃電傳送 寶石等級 #","advanced":"全部 閃電傳送(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_46"]}}} +{"ref":"+# to Level of all Malevolence Gems","better":1,"matchers":[{"string":"全部 惡意 寶石等級 #","advanced":"全部 惡意(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_194"]}}} +{"ref":"+# to Level of all Manabond Gems","better":1,"matchers":[{"string":"全部 魔能束縛 寶石等級 #","advanced":"全部 魔能束縛(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_256"]}}} +{"ref":"+# to Level of all Melee Skill Gems","better":1,"matchers":[{"string":"全部近戰技能寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_9187492"]}}} +{"ref":"+# to Level of all Minion Skill Gems","better":1,"matchers":[{"string":"全部召喚物技能寶石 # 等級"}],"trade":{"ids":{"explicit":["explicit.stat_2162097452"],"fractured":["fractured.stat_2162097452"]}}} +{"ref":"+# to Level of all Mirror Arrow Gems","better":1,"matchers":[{"string":"全部 魅影射擊 寶石等級 #","advanced":"全部 魅影射擊(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_119"]}}} +{"ref":"+# to Level of all Molten Shell Gems","better":1,"matchers":[{"string":"全部 熔岩護盾 寶石等級 #","advanced":"全部 熔岩護盾(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_57"]}}} +{"ref":"+# to Level of all Molten Strike Gems","better":1,"matchers":[{"string":"全部 熔岩之擊 寶石等級 #","advanced":"全部 熔岩之擊(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_112"]}}} +{"ref":"+# to Level of all Orb of Storms Gems","better":1,"matchers":[{"string":"全部 風暴漩渦 寶石等級 #","advanced":"全部 風暴漩渦(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_143"]}}} +{"ref":"+# to Level of all Penance Brand Gems","better":1,"matchers":[{"string":"全部 贖罪烙印 寶石等級 #","advanced":"全部 贖罪烙印(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_226"]}}} +{"ref":"+# to Level of all Perforate Gems","better":1,"matchers":[{"string":"全部 裂地刺穿 寶石等級 #","advanced":"全部 裂地刺穿(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_201"]}}} +{"ref":"+# to Level of all Pestilent Strike Gems","better":1,"matchers":[{"string":"全部 瘟疫打擊 寶石等級 #","advanced":"全部 瘟疫打擊(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_211"]}}} +{"ref":"+# to Level of all Petrified Blood Gems","better":1,"matchers":[{"string":"全部 石化之血 寶石等級 #","advanced":"全部 石化之血(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_240"]}}} +{"ref":"+# to Level of all Phase Run Gems","better":1,"matchers":[{"string":"全部 暗影迷蹤 寶石等級 #","advanced":"全部 暗影迷蹤(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_36"]}}} +{"ref":"+# to Level of all Physical Skill Gems","better":1,"matchers":[{"string":"全部物理技能寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_619213329"],"fractured":["fractured.stat_619213329"]}}} +{"ref":"+# to Level of all Physical Spell Skill Gems","better":1,"matchers":[{"string":"全部物理法術技能寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_1600707273"],"fractured":["fractured.stat_1600707273"],"scourge":["scourge.stat_1600707273"]}}} +{"ref":"+# to Level of all Plague Bearer Gems","better":1,"matchers":[{"string":"全部 病疫之難 寶石等級 #","advanced":"全部 病疫之難(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_210"]}}} +{"ref":"+# to Level of all Poacher's Mark Gems","better":1,"matchers":[{"string":"全部 盜獵者印記 寶石等級 #","advanced":"全部 盜獵者印記(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_117"]}}} +{"ref":"+# to Level of all Poisonous Concoction Gems","better":1,"matchers":[{"string":"全部 毒藥 寶石等級 #","advanced":"全部 毒藥(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_258"]}}} +{"ref":"+# to Level of all Power Siphon Gems","better":1,"matchers":[{"string":"全部 力量抽取 寶石等級 #","advanced":"全部 力量抽取(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_58"]}}} +{"ref":"+# to Level of all Precision Gems","better":1,"matchers":[{"string":"全部 精準 寶石等級 #","advanced":"全部 精準(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_195"]}}} +{"ref":"+# to Level of all Pride Gems","better":1,"matchers":[{"string":"全部 驕傲 寶石等級 #","advanced":"全部 驕傲(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_205"]}}} +{"ref":"+# to Level of all Protective Link Gems","better":1,"matchers":[{"string":"全部 連結:保護 寶石等級 #","advanced":"全部 連結:保護(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_265"]}}} +{"ref":"+# to Level of all Puncture Gems","better":1,"matchers":[{"string":"全部 放血 寶石等級 #","advanced":"全部 放血(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_59"]}}} +{"ref":"+# to Level of all Punishment Gems","better":1,"matchers":[{"string":"全部 懲戒 寶石等級 #","advanced":"全部 懲戒(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_41"]}}} +{"ref":"+# to Level of all Purifying Flame Gems","better":1,"matchers":[{"string":"全部 淨化烈焰 寶石等級 #","advanced":"全部 淨化烈焰(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_188"]}}} +{"ref":"+# to Level of all Purity of Elements Gems","better":1,"matchers":[{"string":"全部 元素淨化 寶石等級 #","advanced":"全部 元素淨化(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_63"]}}} +{"ref":"+# to Level of all Purity of Fire Gems","better":1,"matchers":[{"string":"全部 火焰淨化 寶石等級 #","advanced":"全部 火焰淨化(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_98"]}}} +{"ref":"+# to Level of all Purity of Ice Gems","better":1,"matchers":[{"string":"全部 冰霜淨化 寶石等級 #","advanced":"全部 冰霜淨化(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_99"]}}} +{"ref":"+# to Level of all Purity of Lightning Gems","better":1,"matchers":[{"string":"全部 閃電淨化 寶石等級 #","advanced":"全部 閃電淨化(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_100"]}}} +{"ref":"+# to Level of all Pyroclast Mine Gems","better":1,"matchers":[{"string":"全部 炎爆新星地雷 寶石等級 #","advanced":"全部 炎爆新星地雷(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_91"]}}} +{"ref":"+# to Level of all Rage Vortex Gems","better":1,"matchers":[{"string":"全部 盛怒漩渦 寶石等級 #","advanced":"全部 盛怒漩渦(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_244"]}}} +{"ref":"+# to Level of all Rain of Arrows Gems","better":1,"matchers":[{"string":"全部 箭雨 寶石等級 #","advanced":"全部 箭雨(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_53"]}}} +{"ref":"+# to Level of all Raise Spectre Gems","better":1,"matchers":[{"string":"全部 喚醒幽魂 寶石等級 #","advanced":"全部 喚醒幽魂(火球-神聖制裁) 寶石等級 #"},{"string":"全部喚醒幽魂寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_29","explicit.stat_3235814433"],"fractured":["fractured.stat_3235814433"]}}} +{"ref":"+# to Level of all Raise Zombie Gems","better":1,"matchers":[{"string":"全部 殭屍復甦 寶石等級 #","advanced":"全部 殭屍復甦(火球-神聖制裁) 寶石等級 #"},{"string":"全部殭屍復甦寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_16","explicit.stat_2739830820"]}}} +{"ref":"+# to Level of all Rallying Cry Gems","better":1,"matchers":[{"string":"全部 激勵戰吼 寶石等級 #","advanced":"全部 激勵戰吼(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_127"]}}} +{"ref":"+# to Level of all Reap Gems","better":1,"matchers":[{"string":"全部 收割 寶石等級 #","advanced":"全部 收割(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_241"]}}} +{"ref":"+# to Level of all Reave Gems","better":1,"matchers":[{"string":"全部 衝擊波 寶石等級 #","advanced":"全部 衝擊波(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_89"]}}} +{"ref":"+# to Level of all Rejuvenation Totem Gems","better":1,"matchers":[{"string":"全部 回春圖騰 寶石等級 #","advanced":"全部 回春圖騰(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_74"]}}} +{"ref":"+# to Level of all Righteous Fire Gems","better":1,"matchers":[{"string":"全部 正義之火 寶石等級 #","advanced":"全部 正義之火(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_24"]}}} +{"ref":"+# to Level of all Rolling Magma Gems","better":1,"matchers":[{"string":"全部 熔岩翻騰 寶石等級 #","advanced":"全部 熔岩翻騰(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_130"]}}} +{"ref":"+# to Level of all Scorching Ray Gems","better":1,"matchers":[{"string":"全部 熾灼奔流 寶石等級 #","advanced":"全部 熾灼奔流(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_156"]}}} +{"ref":"+# to Level of all Scourge Arrow Gems","better":1,"matchers":[{"string":"全部 天譴之箭 寶石等級 #","advanced":"全部 天譴之箭(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_177"]}}} +{"ref":"+# to Level of all Searing Bond Gems","better":1,"matchers":[{"string":"全部 灼熱連結 寶石等級 #","advanced":"全部 灼熱連結(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_88"]}}} +{"ref":"+# to Level of all Seismic Cry Gems","better":1,"matchers":[{"string":"全部 裂地戰吼 寶石等級 #","advanced":"全部 裂地戰吼(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_223"]}}} +{"ref":"+# to Level of all Seismic Trap Gems","better":1,"matchers":[{"string":"全部 地裂陷阱 寶石等級 #","advanced":"全部 地裂陷阱(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_169"]}}} +{"ref":"+# to Level of all Shattering Steel Gems","better":1,"matchers":[{"string":"全部 鋼之碎擊 寶石等級 #","advanced":"全部 鋼之碎擊(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_186"]}}} +{"ref":"+# to Level of all Shield Charge Gems","better":1,"matchers":[{"string":"全部 重盾衝鋒 寶石等級 #","advanced":"全部 重盾衝鋒(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_7"]}}} +{"ref":"+# to Level of all Shield Crush Gems","better":1,"matchers":[{"string":"全部 重盾粉碎 寶石等級 #","advanced":"全部 重盾粉碎(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_245"]}}} +{"ref":"+# to Level of all Shock Nova Gems","better":1,"matchers":[{"string":"全部 閃電新星 寶石等級 #","advanced":"全部 閃電新星(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_34"]}}} +{"ref":"+# to Level of all Shockwave Totem Gems","better":1,"matchers":[{"string":"全部 震波圖騰 寶石等級 #","advanced":"全部 震波圖騰(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_73"]}}} +{"ref":"+# to Level of all Shrapnel Ballista Gems","better":1,"matchers":[{"string":"全部 彈片砲塔 寶石等級 #","advanced":"全部 彈片砲塔(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_214"]}}} +{"ref":"+# to Level of all Siege Ballista Gems","better":1,"matchers":[{"string":"全部 攻城炮台 寶石等級 #","advanced":"全部 攻城炮台(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_137"]}}} +{"ref":"+# to Level of all Sigil of Power Gems","better":1,"matchers":[{"string":"全部 咒符之力 寶石等級 #","advanced":"全部 咒符之力(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_229"]}}} +{"ref":"+# to Level of all Siphoning Trap Gems","better":1,"matchers":[{"string":"全部 虹吸陷阱 寶石等級 #","advanced":"全部 虹吸陷阱(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_166"]}}} +{"ref":"+# to Level of all Skill Gems","better":1,"matchers":[{"string":"全部技能寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_4283407333"],"fractured":["fractured.stat_4283407333"]}}} +{"ref":"+# to Level of all Smite Gems","better":1,"matchers":[{"string":"全部 雷鳴重擊 寶石等級 #","advanced":"全部 雷鳴重擊(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_176"]}}} +{"ref":"+# to Level of all Smoke Mine Gems","better":1,"matchers":[{"string":"全部 煙霧地雷 寶石等級 #","advanced":"全部 煙霧地雷(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_92"]}}} +{"ref":"+# to Level of all Snipe Gems","better":1,"matchers":[{"string":"全部 狙擊 寶石等級 #","advanced":"全部 狙擊(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_147"]}}} +{"ref":"+# to Level of all Sniper's Mark Gems","better":1,"matchers":[{"string":"全部 狙擊者印記 寶石等級 #","advanced":"全部 狙擊者印記(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_44"]}}} +{"ref":"+# to Level of all Soul Link Gems","better":1,"matchers":[{"string":"全部 連結:靈魂 寶石等級 #","advanced":"全部 連結:靈魂(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_262"]}}} +{"ref":"+# to Level of all Soulrend Gems","better":1,"matchers":[{"string":"全部 靈體撕裂 寶石等級 #","advanced":"全部 靈體撕裂(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_189"]}}} +{"ref":"+# to Level of all Spark Gems","better":1,"matchers":[{"string":"全部 電球 寶石等級 #","advanced":"全部 電球(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_27"]}}} +{"ref":"+# to Level of all Spectral Helix Gems","better":1,"matchers":[{"string":"全部 靈體旋武 寶石等級 #","advanced":"全部 靈體旋武(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_253"]}}} +{"ref":"+# to Level of all Spectral Shield Throw Gems","better":1,"matchers":[{"string":"全部 盾靈投擲 寶石等級 #","advanced":"全部 盾靈投擲(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_172"]}}} +{"ref":"+# to Level of all Spectral Throw Gems","better":1,"matchers":[{"string":"全部 靈體投擲 寶石等級 #","advanced":"全部 靈體投擲(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_96"]}}} +{"ref":"+# to Level of all Spell Skill Gems","better":1,"matchers":[{"string":"全部法術技能寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_124131830"],"fractured":["fractured.stat_124131830"],"scourge":["scourge.stat_124131830"]}}} +{"ref":"+# to Level of all Spellslinger Gems","better":1,"matchers":[{"string":"全部 法術回音 寶石等級 #","advanced":"全部 法術回音(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_218"]}}} +{"ref":"+# to Level of all Spirit Offering Gems","better":1,"matchers":[{"string":"全部 靈魂奉獻 寶石等級 #","advanced":"全部 靈魂奉獻(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_152"]}}} +{"ref":"+# to Level of all Split Arrow Gems","better":1,"matchers":[{"string":"全部 分裂箭矢 寶石等級 #","advanced":"全部 分裂箭矢(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_22"]}}} +{"ref":"+# to Level of all Splitting Steel Gems","better":1,"matchers":[{"string":"全部 鋼之裂化 寶石等級 #","advanced":"全部 鋼之裂化(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_230"]}}} +{"ref":"+# to Level of all Static Strike Gems","better":1,"matchers":[{"string":"全部 充能打擊 寶石等級 #","advanced":"全部 充能打擊(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_21"]}}} +{"ref":"+# to Level of all Steelskin Gems","better":1,"matchers":[{"string":"全部 鋼筋鐵骨 寶石等級 #","advanced":"全部 鋼筋鐵骨(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_196"]}}} +{"ref":"+# to Level of all Storm Brand Gems","better":1,"matchers":[{"string":"全部 風暴烙印 寶石等級 #","advanced":"全部 風暴烙印(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_181"]}}} +{"ref":"+# to Level of all Storm Burst Gems","better":1,"matchers":[{"string":"全部 風爆 寶石等級 #","advanced":"全部 風爆(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_160"]}}} +{"ref":"+# to Level of all Storm Call Gems","better":1,"matchers":[{"string":"全部 風暴呼喚 寶石等級 #","advanced":"全部 風暴呼喚(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_101"]}}} +{"ref":"+# to Level of all Storm Rain Gems","better":1,"matchers":[{"string":"全部 暴風雷雨 寶石等級 #","advanced":"全部 暴風雷雨(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_243"]}}} +{"ref":"+# to Level of all Stormbind Gems","better":1,"matchers":[{"string":"全部 風暴術符 寶石等級 #","advanced":"全部 風暴術符(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_216"]}}} +{"ref":"+# to Level of all Stormblast Mine Gems","better":1,"matchers":[{"string":"全部 風暴地雷 寶石等級 #","advanced":"全部 風暴地雷(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_94"]}}} +{"ref":"+# to Level of all Summon Carrion Golem Gems","better":1,"matchers":[{"string":"全部 召喚食腐魔像 寶石等級 #","advanced":"全部 召喚食腐魔像(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_212"]}}} +{"ref":"+# to Level of all Summon Chaos Golem Gems","better":1,"matchers":[{"string":"全部 召喚混沌魔像 寶石等級 #","advanced":"全部 召喚混沌魔像(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_122"]}}} +{"ref":"+# to Level of all Summon Flame Golem Gems","better":1,"matchers":[{"string":"全部 召喚烈焰魔像 寶石等級 #","advanced":"全部 召喚烈焰魔像(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_124"]}}} +{"ref":"+# to Level of all Summon Holy Relic Gems","better":1,"matchers":[{"string":"全部 召喚聖物 寶石等級 #","advanced":"全部 召喚聖物(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_179"]}}} +{"ref":"+# to Level of all Summon Ice Golem Gems","better":1,"matchers":[{"string":"全部 召喚寒冰魔像 寶石等級 #","advanced":"全部 召喚寒冰魔像(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_123"]}}} +{"ref":"+# to Level of all Summon Lightning Golem Gems","better":1,"matchers":[{"string":"全部 召喚閃電魔像 寶石等級 #","advanced":"全部 召喚閃電魔像(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_125"]}}} +{"ref":"+# to Level of all Summon Raging Spirit Gems","better":1,"matchers":[{"string":"全部 召喚憤怒狂靈 寶石等級 #","advanced":"全部 召喚憤怒狂靈(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_105"]}}} +{"ref":"+# to Level of all Summon Reaper Gems","better":1,"matchers":[{"string":"全部 召喚奪魂鐮 寶石等級 #","advanced":"全部 召喚奪魂鐮(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_246"]}}} +{"ref":"+# to Level of all Summon Skeletons Gems","better":1,"matchers":[{"string":"全部 召喚骷髏 寶石等級 #","advanced":"全部 召喚骷髏(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_47"]}}} +{"ref":"+# to Level of all Summon Skitterbots Gems","better":1,"matchers":[{"string":"全部 召喚探測機獸 寶石等級 #","advanced":"全部 召喚探測機獸(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_209"]}}} +{"ref":"+# to Level of all Summon Stone Golem Gems","better":1,"matchers":[{"string":"全部 召喚巨石魔像 寶石等級 #","advanced":"全部 召喚巨石魔像(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_145"]}}} +{"ref":"+# to Level of all Sunder Gems","better":1,"matchers":[{"string":"全部 大地震擊 寶石等級 #","advanced":"全部 大地震擊(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_150"]}}} +{"ref":"+# to Level of all Sweep Gems","better":1,"matchers":[{"string":"全部 橫掃 寶石等級 #","advanced":"全部 橫掃(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_4"]}}} +{"ref":"+# to Level of all Swordstorm Gems","better":1,"matchers":[{"string":"全部 劍刃風暴 寶石等級 #","advanced":"全部 劍刃風暴(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_50"]}}} +{"ref":"+# to Level of all Tectonic Slam Gems","better":1,"matchers":[{"string":"全部 破體之擊 寶石等級 #","advanced":"全部 破體之擊(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_171"]}}} +{"ref":"+# to Level of all Tempest Shield Gems","better":1,"matchers":[{"string":"全部 暴風之盾 寶石等級 #","advanced":"全部 暴風之盾(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_56"]}}} +{"ref":"+# to Level of all Temporal Chains Gems","better":1,"matchers":[{"string":"全部 時空鎖鏈 寶石等級 #","advanced":"全部 時空鎖鏈(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_38"]}}} +{"ref":"+# to Level of all Temporal Rift Gems","better":1,"matchers":[{"string":"全部 時空裂隙 寶石等級 #","advanced":"全部 時空裂隙(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_259"]}}} +{"ref":"+# to Level of all Tornado Gems","better":1,"matchers":[{"string":"全部 龍捲風 寶石等級 #","advanced":"全部 龍捲風(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_261"]}}} +{"ref":"+# to Level of all Tornado Shot Gems","better":1,"matchers":[{"string":"全部 龍捲射擊 寶石等級 #","advanced":"全部 龍捲射擊(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_113"]}}} +{"ref":"+# to Level of all Toxic Rain Gems","better":1,"matchers":[{"string":"全部 腐蝕毒雨 寶石等級 #","advanced":"全部 腐蝕毒雨(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_178"]}}} +{"ref":"+# to Level of all Unearth Gems","better":1,"matchers":[{"string":"全部 屍術矢 寶石等級 #","advanced":"全部 屍術矢(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_164"]}}} +{"ref":"+# to Level of all Vaal Skill Gems","better":1,"matchers":[{"string":"# 全部瓦爾技能寶石的等級"}],"trade":{"ids":{"implicit":["implicit.stat_4180346416"]}}} +{"ref":"+# to Level of all Vampiric Link Gems","better":1,"matchers":[{"string":"全部 連結:吸血 寶石等級 #","advanced":"全部 連結:吸血(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_266"]}}} +{"ref":"+# to Level of all Vengeful Cry Gems","better":1,"matchers":[{"string":"全部 復仇之嚎 寶石等級 #","advanced":"全部 復仇之嚎(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_148"]}}} +{"ref":"+# to Level of all Venom Gyre Gems","better":1,"matchers":[{"string":"全部 猛毒迴旋 寶石等級 #","advanced":"全部 猛毒迴旋(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_208"]}}} +{"ref":"+# to Level of all Vigilant Strike Gems","better":1,"matchers":[{"string":"全部 戒備打擊 寶石等級 #","advanced":"全部 戒備打擊(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_129"]}}} +{"ref":"+# to Level of all Viper Strike Gems","better":1,"matchers":[{"string":"全部 毒蛇打擊 寶石等級 #","advanced":"全部 毒蛇打擊(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_35"]}}} +{"ref":"+# to Level of all Vitality Gems","better":1,"matchers":[{"string":"全部 活力 寶石等級 #","advanced":"全部 活力(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_64"]}}} +{"ref":"+# to Level of all Void Sphere Gems","better":1,"matchers":[{"string":"全部 虛無玉 寶石等級 #","advanced":"全部 虛無玉(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_234"]}}} +{"ref":"+# to Level of all Volatile Dead Gems","better":1,"matchers":[{"string":"全部 致命之息 寶石等級 #","advanced":"全部 致命之息(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_163"]}}} +{"ref":"+# to Level of all Volcanic Fissure Gems","better":1,"matchers":[{"string":"全部 炎火脈動 寶石等級 #","advanced":"全部 炎火脈動(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_272"]}}} +{"ref":"+# to Level of all Voltaxic Burst Gems","better":1,"matchers":[{"string":"全部 魔痕爆發 寶石等級 #","advanced":"全部 魔痕爆發(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_249"]}}} +{"ref":"+# to Level of all Vortex Gems","better":1,"matchers":[{"string":"全部 漩渦 寶石等級 #","advanced":"全部 漩渦(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_154"]}}} +{"ref":"+# to Level of all Vulnerability Gems","better":1,"matchers":[{"string":"全部 脆弱 寶石等級 #","advanced":"全部 脆弱(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_170"]}}} +{"ref":"+# to Level of all War Banner Gems","better":1,"matchers":[{"string":"全部 戰爭之旗 寶石等級 #","advanced":"全部 戰爭之旗(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_184"]}}} +{"ref":"+# to Level of all Warlord's Mark Gems","better":1,"matchers":[{"string":"全部 督軍印記 寶石等級 #","advanced":"全部 督軍印記(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_40"]}}} +{"ref":"+# to Level of all Wave of Conviction Gems","better":1,"matchers":[{"string":"全部 信念浪湧 寶石等級 #","advanced":"全部 信念浪湧(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_192"]}}} +{"ref":"+# to Level of all Whirling Blades Gems","better":1,"matchers":[{"string":"全部 迴旋之刃 寶石等級 #","advanced":"全部 迴旋之刃(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_13"]}}} +{"ref":"+# to Level of all Wild Strike Gems","better":1,"matchers":[{"string":"全部 野性打擊 寶石等級 #","advanced":"全部 野性打擊(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_133"]}}} +{"ref":"+# to Level of all Winter Orb Gems","better":1,"matchers":[{"string":"全部 凜冬之球 寶石等級 #","advanced":"全部 凜冬之球(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_180"]}}} +{"ref":"+# to Level of all Wintertide Brand Gems","better":1,"matchers":[{"string":"全部 冬潮烙印 寶石等級 #","advanced":"全部 冬潮烙印(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_227"]}}} +{"ref":"+# to Level of all Wither Gems","better":1,"matchers":[{"string":"全部 死亡凋零 寶石等級 #","advanced":"全部 死亡凋零(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_140"]}}} +{"ref":"+# to Level of all Withering Step Gems","better":1,"matchers":[{"string":"全部 凋零之步 寶石等級 #","advanced":"全部 凋零之步(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_207"]}}} +{"ref":"+# to Level of all Wrath Gems","better":1,"matchers":[{"string":"全部 雷霆 寶石等級 #","advanced":"全部 雷霆(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_70"]}}} +{"ref":"+# to Level of all Zealotry Gems","better":1,"matchers":[{"string":"全部 狂熱 寶石等級 #","advanced":"全部 狂熱(火球-神聖制裁) 寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_193"]}}} +{"ref":"+# to Level of Socketed AoE Gems","better":1,"matchers":[{"string":"插槽中範圍效果寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_2551600084"],"implicit":["implicit.stat_2551600084"],"fractured":["fractured.stat_2551600084"],"scourge":["scourge.stat_2551600084"],"crafted":["crafted.stat_2551600084"]}}} +{"ref":"+# to Level of Socketed Aura Gems","better":1,"matchers":[{"string":"此物品插槽中光環寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_2452998583"],"implicit":["implicit.stat_2452998583"],"fractured":["fractured.stat_2452998583"],"scourge":["scourge.stat_2452998583"]}}} +{"ref":"+# to Level of Socketed Bow Gems","better":1,"matchers":[{"string":"此物品插槽中弓寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_2027269580"],"implicit":["implicit.stat_2027269580"],"fractured":["fractured.stat_2027269580"]}}} +{"ref":"+# to Level of Socketed Chaos Gems","better":1,"matchers":[{"string":"此物品插槽中混沌寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_2675603254"],"implicit":["implicit.stat_2675603254"],"fractured":["fractured.stat_2675603254"],"scourge":["scourge.stat_2675603254"]}}} +{"ref":"+# to Level of Socketed Cold Gems","better":1,"matchers":[{"string":"此物品插槽中冰冷寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_1645459191"],"implicit":["implicit.stat_1645459191"],"fractured":["fractured.stat_1645459191"],"scourge":["scourge.stat_1645459191"]}}} +{"ref":"+# to Level of Socketed Curse Gems","better":1,"matchers":[{"string":"此物品插槽中詛咒寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_3691695237"],"implicit":["implicit.stat_3691695237"],"fractured":["fractured.stat_3691695237"],"scourge":["scourge.stat_3691695237"]}}} +{"ref":"+# to Level of Socketed Dexterity Gems","better":1,"matchers":[{"string":"此物品插槽中敏捷寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_2718698372"],"implicit":["implicit.stat_2718698372"],"fractured":["fractured.stat_2718698372"],"scourge":["scourge.stat_2718698372"]}}} +{"ref":"+# to Level of Socketed Duration Gems","better":1,"matchers":[{"string":"插槽中持續時間寶石等級 #"}],"trade":{"ids":{"implicit":["implicit.stat_2115168758"],"scourge":["scourge.stat_2115168758"]}}} +{"ref":"+# to Level of Socketed Elemental Gems","better":1,"matchers":[{"string":"此物品插槽中元素寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_3571342795"]}}} +{"ref":"+# to Level of Socketed Fire Gems","better":1,"matchers":[{"string":"此物品插槽中火焰寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_339179093"],"implicit":["implicit.stat_339179093"],"fractured":["fractured.stat_339179093"],"scourge":["scourge.stat_339179093"]}}} +{"ref":"+# to Level of Socketed Gems","better":1,"matchers":[{"string":"此物品插槽中寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_2843100721"],"implicit":["implicit.stat_2843100721"],"fractured":["fractured.stat_2843100721"],"scourge":["scourge.stat_2843100721"]}}} +{"ref":"+# to Level of Socketed Golem Gems","better":1,"matchers":[{"string":"此物品插槽中魔像寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_3448743676"]}}} +{"ref":"+# to Level of Socketed Herald Gems","better":1,"matchers":[{"string":"此物品上捷光環寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_1344805487"]}}} +{"ref":"+# to Level of Socketed Intelligence Gems","better":1,"matchers":[{"string":"此物品插槽中智慧寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_1719423857"],"implicit":["implicit.stat_1719423857"],"fractured":["fractured.stat_1719423857"],"scourge":["scourge.stat_1719423857"]}}} +{"ref":"+# to Level of Socketed Lightning Gems","better":1,"matchers":[{"string":"此物品插槽中閃電寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_4043416969"],"implicit":["implicit.stat_4043416969"],"fractured":["fractured.stat_4043416969"],"scourge":["scourge.stat_4043416969"]}}} +{"ref":"+# to Level of Socketed Melee Gems","better":1,"matchers":[{"string":"此物品插槽中近戰寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_829382474"],"implicit":["implicit.stat_829382474"],"fractured":["fractured.stat_829382474"],"scourge":["scourge.stat_829382474"],"crafted":["crafted.stat_829382474"]}}} +{"ref":"+# to Level of Socketed Minion Gems","better":1,"matchers":[{"string":"此物品插槽中召喚物寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_3604946673"],"implicit":["implicit.stat_3604946673"],"fractured":["fractured.stat_3604946673"],"scourge":["scourge.stat_3604946673"]}}} +{"ref":"+# to Level of Socketed Movement Gems","better":1,"matchers":[{"string":"此物品插槽中移動寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_3852526385"]}}} +{"ref":"+# to Level of Socketed Non-Vaal Gems","better":1,"matchers":[{"string":"插槽中的非瓦爾寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_2574694107"]}}} +{"ref":"+# to Level of Socketed Projectile Gems","better":1,"matchers":[{"string":"此物品插槽中投射物寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_2176571093"],"implicit":["implicit.stat_2176571093"],"fractured":["fractured.stat_2176571093"],"scourge":["scourge.stat_2176571093"],"crafted":["crafted.stat_2176571093"]}}} +{"ref":"+# to Level of Socketed Skill Gems","better":1,"matchers":[{"string":"此物品插槽中技能寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_524797741"],"implicit":["implicit.stat_524797741"],"fractured":["fractured.stat_524797741"]}}} +{"ref":"+# to level of Socketed Skill Gems per Socketed Gem","better":1,"matchers":[{"string":"每顆插槽中的寶石,插槽技能寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_2503682584"]}}} +{"ref":"+# to Level of Socketed Spell Gems","better":1,"matchers":[{"string":"此物品插槽中法術寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_446733281"]}}} +{"ref":"+# to Level of Socketed Strength Gems","better":1,"matchers":[{"string":"此物品插槽中力量寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_916797432"],"implicit":["implicit.stat_916797432"],"fractured":["fractured.stat_916797432"],"scourge":["scourge.stat_916797432"]}}} +{"ref":"+# to Level of Socketed Support Gems","better":1,"matchers":[{"string":"此物品插槽中輔助寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_4154259475"],"implicit":["implicit.stat_4154259475"],"fractured":["fractured.stat_4154259475"],"scourge":["scourge.stat_4154259475"],"crafted":["crafted.stat_4154259475"]}}} +{"ref":"+# to Level of Socketed Trap Gems","better":1,"matchers":[{"string":"此物品插槽中陷阱寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_407139870"]}}} +{"ref":"+# to Level of Socketed Trap or Mine Gems","better":1,"matchers":[{"string":"插槽中陷阱或地雷寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_150668988"],"implicit":["implicit.stat_150668988"],"fractured":["fractured.stat_150668988"],"scourge":["scourge.stat_150668988"]}}} +{"ref":"+# to Level of Socketed Vaal Gems","better":1,"matchers":[{"string":"此物品插槽中瓦爾寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_1170386874"],"implicit":["implicit.stat_1170386874"]}}} +{"ref":"+# to Level of Socketed Warcry Gems","better":1,"matchers":[{"string":"此物品插槽中戰吼寶石等級 #"}],"trade":{"ids":{"explicit":["explicit.stat_1672793731"],"implicit":["implicit.stat_1672793731"],"scourge":["scourge.stat_1672793731"]}}} +{"ref":"+# to Lockpicking Level for Heists","better":1,"matchers":[{"string":"為劫盜 # 開鎖等級"}],"trade":{"ids":{"explicit":["explicit.stat_3031310169"],"fractured":["fractured.stat_3031310169"]}}} +{"ref":"+# to Maximum Blood Charges","better":1,"matchers":[{"string":"# 最大血腥球"}],"trade":{"ids":{"enchant":["enchant.stat_4218649240"]}}} +{"ref":"+# to Maximum Charges","better":1,"matchers":[{"string":"# 最大充能"}],"trade":{"ids":{"explicit":["explicit.stat_1437957544"],"fractured":["fractured.stat_1437957544"],"enchant":["enchant.stat_1437957544"]}}} +{"ref":"+# to maximum Divine Charges","better":1,"matchers":[{"string":"# 最大神聖充能"}],"trade":{"ids":{"explicit":["explicit.stat_3997368968"]}}} +{"ref":"+# to Maximum Endurance Charges","better":1,"matchers":[{"string":"# 最大耐力球"}],"trade":{"ids":{"explicit":["explicit.stat_1515657623"],"implicit":["implicit.stat_1515657623"],"fractured":["fractured.stat_1515657623"],"scourge":["scourge.stat_1515657623"]}}} +{"ref":"+# to Maximum Endurance Charges while affected by Determination","better":1,"matchers":[{"string":"被堅定影響時,# 最大耐力球"}],"trade":{"ids":{"explicit":["explicit.stat_2110586221"]}}} +{"ref":"+# to maximum Energy Shield","better":1,"matchers":[{"string":"# 最大能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_3489782002","explicit.stat_4052037485"],"implicit":["implicit.stat_3489782002","implicit.stat_4052037485"],"fractured":["fractured.stat_3489782002","fractured.stat_4052037485"],"scourge":["scourge.stat_4052037485"],"crafted":["crafted.stat_3489782002","crafted.stat_4052037485"]}}} +{"ref":"+# to maximum Energy Shield per 100 Reserved Life","better":1,"matchers":[{"string":"每 100 生命保留 # 最大能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_4270089231"]}}} +{"ref":"+# to Maximum Energy Shield per 5 Armour on Equipped Shield","better":1,"matchers":[{"string":"裝備的盾牌每 5 點護甲 # 最大能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_3636098185"]}}} +{"ref":"+# to Maximum Energy Shield per Blue Socket","better":1,"matchers":[{"string":"每個藍色插槽 # 最大能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_2906522048"]}}} +{"ref":"+# to maximum Fortification","better":1,"matchers":[{"string":"# 最大護體"}],"trade":{"ids":{"explicit":["explicit.stat_2094299742","explicit.stat_335507772"],"implicit":["implicit.stat_335507772"]}}} +{"ref":"+# to maximum Fortification per Endurance Charge","better":1,"matchers":[{"string":"每顆耐力球 # 護體上限"}],"trade":{"ids":{"explicit":["explicit.stat_2032578228"]}}} +{"ref":"+# to maximum Fortification while affected by Glorious Madness","better":1,"matchers":[{"string":"被榮耀瘋癲影響時,# 最大護體"}],"trade":{"ids":{"explicit":["explicit.stat_2611224062"]}}} +{"ref":"+# to maximum Fortification while Focused","better":1,"matchers":[{"string":"專注時 # 最大護體"}],"trade":{"ids":{"explicit":["explicit.stat_922014346"],"fractured":["fractured.stat_922014346"],"crafted":["crafted.stat_922014346"]}}} +{"ref":"+# to Maximum Frenzy Charges","better":1,"matchers":[{"string":"# 最大狂怒球"}],"trade":{"ids":{"explicit":["explicit.stat_4078695"],"implicit":["implicit.stat_4078695"],"fractured":["fractured.stat_4078695"],"scourge":["scourge.stat_4078695"]}}} +{"ref":"+# to Maximum Frenzy Charges while affected by Grace","better":1,"matchers":[{"string":"被優雅影響時,# 最大狂怒球"}],"trade":{"ids":{"explicit":["explicit.stat_3458080964"]}}} +{"ref":"+# to maximum Life","better":1,"matchers":[{"string":"# 最大生命"}],"trade":{"ids":{"explicit":["explicit.stat_3299347043"],"implicit":["implicit.stat_3299347043"],"fractured":["fractured.stat_3299347043"],"scourge":["scourge.stat_3299347043"],"crafted":["crafted.stat_3299347043"]}}} +{"ref":"+# to maximum Life for each Empty Red Socket on any Equipped Item","better":1,"matchers":[{"string":"裝備中每個空的紅色插槽,# 最大生命"}],"trade":{"ids":{"explicit":["explicit.stat_726359715"]}}} +{"ref":"+# to maximum Life if there are no Life Modifiers on other Equipped Items","better":1,"matchers":[{"string":"若其它裝備的物品沒有生命詞綴,# 最大生命"}],"trade":{"ids":{"explicit":["explicit.stat_2927667525"]}}} +{"ref":"+# to Maximum Life per 10 Dexterity","better":1,"matchers":[{"string":"每 10 點敏捷增加 # 最大生命"}],"trade":{"ids":{"explicit":["explicit.stat_3806100539"]}}} +{"ref":"+# to Maximum Life per 10 Intelligence","better":1,"matchers":[{"string":"每 10 點智慧 # 最大生命"}],"trade":{"ids":{"explicit":["explicit.stat_1114351662"]}}} +{"ref":"+# to Maximum Life per 2 Intelligence","better":1,"matchers":[{"string":"每 2 點智慧 # 最大生命"}],"trade":{"ids":{"explicit":["explicit.stat_4284915962"]}}} +{"ref":"+# to Maximum Life per Elder Item Equipped","better":1,"matchers":[{"string":"每件尊師之物 # 最大生命"}],"trade":{"ids":{"explicit":["explicit.stat_3849523464"]}}} +{"ref":"+# to Maximum Life per Red Socket","better":1,"matchers":[{"string":"每個紅色插槽 # 最大生命"}],"trade":{"ids":{"explicit":["explicit.stat_4210076836"]}}} +{"ref":"+# to maximum Mana","better":1,"matchers":[{"string":"# 最大魔力"}],"trade":{"ids":{"explicit":["explicit.stat_1050105434"],"implicit":["implicit.stat_1050105434"],"fractured":["fractured.stat_1050105434"],"scourge":["scourge.stat_1050105434"],"crafted":["crafted.stat_1050105434"]}}} +{"ref":"+# to maximum Mana for each Empty Blue Socket on any Equipped Item","better":1,"matchers":[{"string":"裝備中每個空的藍色插槽,# 最大魔力"}],"trade":{"ids":{"explicit":["explicit.stat_2962020005"]}}} +{"ref":"+# to Maximum Mana per 10 Dexterity on Unallocated Passives in Radius","better":1,"matchers":[{"string":"範圍內每 10 點未配置敏捷 # 最大魔力"}],"trade":{"ids":{"explicit":["explicit.stat_1276712564"]}}} +{"ref":"+# to maximum Mana per 2 Intelligence","better":1,"matchers":[{"string":"每 2 點智慧 # 最大魔力"}],"trade":{"ids":{"explicit":["explicit.stat_3822999954"],"fractured":["fractured.stat_3822999954"]}}} +{"ref":"+# to Maximum Mana per Green Socket","better":1,"matchers":[{"string":"每個綠色插槽 # 最大魔力"}],"trade":{"ids":{"explicit":["explicit.stat_896299992"]}}} +{"ref":"+# to Maximum number of Crab Barriers","better":1,"matchers":[{"string":"# 最大蟹將重盾層數"}],"trade":{"ids":{"explicit":["explicit.stat_2894704558"]}}} +{"ref":"+# to maximum number of Eaten Souls","better":1,"matchers":[{"string":"# 最大吞噬靈魂數量"}],"trade":{"ids":{"explicit":["explicit.stat_1915836277"]}}} +{"ref":"+# to maximum number of Flame Walls","better":1,"matchers":[{"string":"# 烈焰之牆最大數量"}],"trade":{"ids":{"enchant":["enchant.stat_1531456858"]}}} +{"ref":"+# to maximum number of Raging Spirits","better":1,"matchers":[{"string":"# 最大憤怒狂靈數量"}],"trade":{"ids":{"explicit":["explicit.stat_3143579606"]}}} +{"ref":"+# to maximum number of Raised Zombies","better":1,"matchers":[{"string":"# 最大殭屍數量"}],"trade":{"ids":{"explicit":["explicit.stat_966747987"],"implicit":["implicit.stat_966747987"],"fractured":["fractured.stat_966747987"],"scourge":["scourge.stat_966747987"],"crafted":["crafted.stat_966747987"]}}} +{"ref":"+# to maximum number of Sacred Wisps\n+# to number of Sacred Wisps Summoned","better":1,"matchers":[{"string":"# 聖潔妖精的最大數量\n# 召喚聖潔妖精數量"}],"trade":{"ids":{"explicit":["explicit.stat_13590525"]}}} +{"ref":"+# to maximum number of Sentinels of Purity","better":1,"matchers":[{"string":"# 純淨護衛最大數量"}],"trade":{"ids":{"enchant":["enchant.stat_2836937264"]}}} +{"ref":"+# to maximum number of Skeletons","better":1,"matchers":[{"string":"# 最大骷髏數量"}],"trade":{"ids":{"explicit":["explicit.stat_1225383362"],"fractured":["fractured.stat_1225383362"],"scourge":["scourge.stat_1225383362"],"crafted":["crafted.stat_1225383362"]}}} +{"ref":"+# to maximum number of Spectres","better":1,"matchers":[{"string":"# 最大幽魂數量"}],"trade":{"ids":{"explicit":["explicit.stat_125218179"],"fractured":["fractured.stat_125218179"]}}} +{"ref":"+# to maximum number of Spectres per Socketed Ghastly Eye Jewel","better":1,"matchers":[{"string":"插槽中每有 1 顆極懼之眼珠寶,最大幽魂數量便 #"}],"trade":{"ids":{"explicit":["explicit.stat_1664904679"]}}} +{"ref":"+# to maximum number of Summoned Golems","better":1,"matchers":[{"string":"# 魔像最大上限"}],"trade":{"ids":{"explicit":["explicit.stat_2821079699"]}}} +{"ref":"+# to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped","better":1,"matchers":[{"string":"若你插槽中或裝備的有 3 個先祖物品,# 最大召喚魔像上限"}],"trade":{"ids":{"explicit":["explicit.stat_920385757"]}}} +{"ref":"+# to maximum number of Summoned Holy Relics","better":1,"matchers":[{"string":"# 召喚聖物最大數量"}],"trade":{"ids":{"explicit":["explicit.stat_2056575682"]}}} +{"ref":"+# to maximum number of Summoned Phantasms","better":1,"matchers":[{"string":"# 召喚幻影的最大數量"}],"trade":{"ids":{"explicit":["explicit.stat_517587669"]}}} +{"ref":"+# to maximum number of Summoned Totems","better":1,"matchers":[{"string":"# 召喚圖騰的最大數量"}],"trade":{"ids":{"explicit":["explicit.stat_429867172"],"fractured":["fractured.stat_429867172"],"crafted":["crafted.stat_429867172"]}}} +{"ref":"+# to Maximum Power Charges","better":1,"matchers":[{"string":"# 最大暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_227523295"],"implicit":["implicit.stat_227523295"],"fractured":["fractured.stat_227523295"],"scourge":["scourge.stat_227523295"]}}} +{"ref":"+# to Maximum Power Charges and Maximum Endurance Charges","better":1,"matchers":[{"string":"# 最大暴擊球和耐力球數量"}],"trade":{"ids":{"implicit":["implicit.stat_4138979329"]}}} +{"ref":"+# to Maximum Power Charges while affected by Discipline","better":1,"matchers":[{"string":"被紀律影響時,# 最大暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_1465672972"]}}} +{"ref":"+# to Maximum Rage","better":1,"matchers":[{"string":"# 最大盛怒上限"}],"trade":{"ids":{"explicit":["explicit.stat_1181501418"],"implicit":["implicit.stat_1181501418"]}}} +{"ref":"+# to Maximum Rage while wielding a Sword","better":1,"matchers":[{"string":"持劍時 # 最大盛怒"}],"trade":{"ids":{"explicit":["explicit.stat_406887685"]}}} +{"ref":"+# to Maximum Resolve","better":1,"matchers":[{"string":"# 最大決心"}],"trade":{"ids":{"explicit":["sanctum.stat_1054634989"]}}} +{"ref":"+# to Maximum Siphoning Charges per Elder or Shaper Item Equipped","better":1,"matchers":[{"string":"每件裝備的尊師或塑者之物 # 最大虹吸能量球數量"}],"trade":{"ids":{"explicit":["explicit.stat_1872128565"]}}} +{"ref":"+# to maximum Snipe Stages","better":1,"matchers":[{"string":"# 最大狙擊疊層"}],"trade":{"ids":{"explicit":["explicit.stat_1239233415"],"enchant":["enchant.stat_1239233415"]}}} +{"ref":"+# to maximum Sockets","better":1,"matchers":[{"string":"# 最大插槽"}],"trade":{"ids":{"enchant":["enchant.stat_4099204231"]}}} +{"ref":"+# to Maximum Spirit Charges per Abyss Jewel affecting you","better":1,"matchers":[{"string":"每顆你身上的深淵珠寶 # 最大靈體能量球數量"}],"trade":{"ids":{"explicit":["explicit.stat_4053097676"]}}} +{"ref":"+# to Minimum Endurance Charges","better":1,"matchers":[{"string":"# 最小耐力球"}],"trade":{"ids":{"explicit":["explicit.stat_3706959521"],"implicit":["implicit.stat_3706959521"],"fractured":["fractured.stat_3706959521"],"scourge":["scourge.stat_3706959521"],"crafted":["crafted.stat_3706959521"]}}} +{"ref":"+# to Minimum Endurance Charges per Grand Spectrum","better":1,"matchers":[{"string":"每顆巨光譜 # 最小耐力球"}],"trade":{"ids":{"explicit":["explicit.stat_2276643899"]}}} +{"ref":"+# to Minimum Endurance, Frenzy and Power Charges","better":1,"matchers":[{"string":"# 最小耐力、狂怒和暴擊球"}],"trade":{"ids":{"implicit":["implicit.stat_66303477"]}}} +{"ref":"+# to Minimum Frenzy Charges","better":1,"matchers":[{"string":"# 最小狂怒球"}],"trade":{"ids":{"explicit":["explicit.stat_658456881"],"implicit":["implicit.stat_658456881"],"fractured":["fractured.stat_658456881"],"scourge":["scourge.stat_658456881"],"crafted":["crafted.stat_658456881"]}}} +{"ref":"+# to Minimum Frenzy Charges per Grand Spectrum","better":1,"matchers":[{"string":"每顆巨光譜 # 最小狂怒球"}],"trade":{"ids":{"explicit":["explicit.stat_596758264"]}}} +{"ref":"+# to Minimum Power Charges","better":1,"matchers":[{"string":"# 最小暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_1999711879"],"implicit":["implicit.stat_1999711879"],"fractured":["fractured.stat_1999711879"],"scourge":["scourge.stat_1999711879"],"crafted":["crafted.stat_1999711879"]}}} +{"ref":"+# to Minimum Power Charges per Grand Spectrum","better":1,"matchers":[{"string":"每顆巨光譜 # 最小暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_308799121"]}}} +{"ref":"+# to number of Summoned Arbalists","better":1,"matchers":[{"string":"# 召喚弩兵數量"}],"trade":{"ids":{"explicit":["explicit.stat_1886245216"]}}} +{"ref":"+# to Perception Level for Heists","better":1,"matchers":[{"string":"為劫盜 # 洞察力等級"}],"trade":{"ids":{"explicit":["explicit.stat_2932532516"]}}} +{"ref":"+# to Spectre maximum Life","better":1,"matchers":[{"string":"# 幽魂最大生命"}],"trade":{"ids":{"explicit":["explicit.stat_3111456397"]}}} +{"ref":"+# to Strength","better":1,"matchers":[{"string":"# 力量"}],"trade":{"ids":{"explicit":["explicit.stat_4080418644"],"implicit":["implicit.stat_4080418644"],"fractured":["fractured.stat_4080418644"],"scourge":["scourge.stat_4080418644"],"crafted":["crafted.stat_4080418644"]}}} +{"ref":"+# to Strength and Dexterity","better":1,"matchers":[{"string":"# 力量和敏捷"}],"trade":{"ids":{"explicit":["explicit.stat_538848803"],"implicit":["implicit.stat_538848803"],"fractured":["fractured.stat_538848803"],"crafted":["crafted.stat_538848803"]}}} +{"ref":"+# to Strength and Intelligence","better":1,"matchers":[{"string":"# 力量和智慧"},{"string":"增加 # 力量與智慧"}],"trade":{"ids":{"explicit":["explicit.stat_1535626285","explicit.stat_2543977012"],"implicit":["implicit.stat_1535626285"],"fractured":["fractured.stat_1535626285"],"crafted":["crafted.stat_1535626285"]}}} +{"ref":"+# to Total Mana Cost of Skills","better":1,"matchers":[{"string":"# 技能總魔力消耗"}],"trade":{"ids":{"explicit":["explicit.stat_3736589033"],"implicit":["implicit.stat_3736589033"],"fractured":["fractured.stat_3736589033"],"crafted":["crafted.stat_3736589033"]}}} +{"ref":"+# to Total Mana Cost of Skills for each Corrupted Item Equipped","better":1,"matchers":[{"string":"每件裝備的已汙染物品 # 技能總魔力消耗"}],"trade":{"ids":{"explicit":["explicit.stat_3750572810"]}}} +{"ref":"+# to Total Mana Cost of Skills while affected by Clarity","better":1,"matchers":[{"string":"被清晰影響時,# 技能的總魔力消耗"}],"trade":{"ids":{"explicit":["explicit.stat_2445618239"]}}} +{"ref":"+# to Trap Disarmament Level for Heists","better":1,"matchers":[{"string":"為劫盜 # 拆除陷阱等級"},{"string":"為劫盜 # 陷阱解除等級"}],"trade":{"ids":{"explicit":["explicit.stat_555061211"]}}} +{"ref":"+# to Ward","better":1,"matchers":[{"string":"# 保護"}],"trade":{"ids":{"explicit":["explicit.stat_774059442"],"fractured":["fractured.stat_774059442"]}}} +{"ref":"+# total maximum Energy Shield","better":1,"matchers":[{"string":"+# 最大能量護盾 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_energy_shield"]}}} +{"ref":"+# total maximum Life","better":1,"matchers":[{"string":"+# 最大生命 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_life"]}}} +{"ref":"+# total maximum Mana","better":1,"matchers":[{"string":"+# 最大魔力 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_mana"]}}} +{"ref":"+# total to all Attributes","better":1,"matchers":[{"string":"+# 全能力 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_all_attributes"]}}} +{"ref":"+# total to Dexterity","better":1,"matchers":[{"string":"+# 敏捷 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_dexterity"]}}} +{"ref":"+# total to Intelligence","better":1,"matchers":[{"string":"+# 智慧 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_intelligence"]}}} +{"ref":"+# total to Level of Socketed Aura Gems","better":1,"matchers":[{"string":"+# 插槽中光環寶石等級 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_aura_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Bow Gems","better":1,"matchers":[{"string":"+# 插槽中弓寶石等級 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_bow_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Chaos Gems","better":1,"matchers":[{"string":"+# 插槽中混沌寶石等級 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_chaos_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Cold Gems","better":1,"matchers":[{"string":"+# 插槽中冰冷寶石等級 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_cold_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Curse Gems","better":1,"matchers":[{"string":"+# 插槽中詛咒寶石等級 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_curse_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Dexterity Gems","better":1,"matchers":[{"string":"+# 插槽中敏捷寶石等級 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_dexterity_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Elemental Gems","better":1,"matchers":[{"string":"+# 插槽中元素寶石等級 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_elemental_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Fire Gems","better":1,"matchers":[{"string":"+# 插槽中火焰寶石等級 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_fire_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Gems","better":1,"matchers":[{"string":"+# 插槽中寶石等級 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Golem Gems","better":1,"matchers":[{"string":"+# 插槽中魔像寶石等級 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_golem_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Intelligence Gems","better":1,"matchers":[{"string":"+# 插槽中智慧寶石等級 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_intelligence_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Lightning Gems","better":1,"matchers":[{"string":"+# 插槽中閃電寶石等級 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_lightning_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Melee Gems","better":1,"matchers":[{"string":"+# 插槽中近戰寶石等級 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_melee_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Minion Gems","better":1,"matchers":[{"string":"+# 插槽中召喚物寶石等級 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_minion_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Movement Gems","better":1,"matchers":[{"string":"+# 插槽中位移寶石等級 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_movement_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Projectile Gems","better":1,"matchers":[{"string":"+# 插槽中投射物寶石等級 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_projectile_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Skill Gems","better":1,"matchers":[{"string":"+# 插槽中技能寶石等級 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_skill_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Spell Gems","better":1,"matchers":[{"string":"+# 插槽中法術寶石等級 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_spell_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Strength Gems","better":1,"matchers":[{"string":"+# 插槽中力量寶石等級 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_strength_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Support Gems","better":1,"matchers":[{"string":"+# 插槽中輔助寶石等級 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_support_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Vaal Gems","better":1,"matchers":[{"string":"+# 插槽中瓦爾寶石等級 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_vaal_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Warcry Gems","better":1,"matchers":[{"string":"+# 插槽中戰吼寶石等級 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_warcry_gem_levels"]}}} +{"ref":"+# total to Strength","better":1,"matchers":[{"string":"+# 力量 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_strength"]}}} +{"ref":"+#% chance to Avoid Elemental Damage from Hits while Phasing","better":1,"matchers":[{"string":"當迷蹤時,#% 機率避免元素傷害擊中"}],"trade":{"ids":{"explicit":["explicit.stat_143510471"]}}} +{"ref":"+#% chance to Avoid Physical Damage from Hits while Phasing","better":1,"matchers":[{"string":"迷蹤時,#% 機率避免來自擊中的物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2490633856"]}}} +{"ref":"+#% chance to be Frozen, Shocked and Ignited","better":1,"matchers":[{"string":"#% 機率被冰凍、感電和點燃"}],"trade":{"ids":{"explicit":["explicit.stat_4245896836"]}}} +{"ref":"+#% chance to be Ignited","better":1,"matchers":[{"string":"#% 機率被點燃"}],"trade":{"ids":{"explicit":["explicit.stat_1618339429"]}}} +{"ref":"+#% chance to be Poisoned","better":1,"matchers":[{"string":"#% 機率被中毒"}],"trade":{"ids":{"explicit":["explicit.stat_4250009622"]}}} +{"ref":"+#% chance to be Shocked","better":1,"matchers":[{"string":"#% 機率受到感電"}],"trade":{"ids":{"explicit":["explicit.stat_3206652215"]}}} +{"ref":"+#% Chance to Block","better":1,"matchers":[{"string":"#% 格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_4253454700"],"implicit":["implicit.stat_4253454700"],"fractured":["fractured.stat_4253454700"],"crafted":["crafted.stat_4253454700"]}}} +{"ref":"+#% Chance to Block Attack Damage during Effect","better":1,"matchers":[{"string":"效果持續時間,#% 攻擊傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_2519106214"]}}} +{"ref":"+#% Chance to Block Attack Damage for every 200 Fire Damage taken from Hits Recently","better":1,"matchers":[{"string":"近期每承受來自擊中的 200 火焰傷害,#% 格擋攻擊傷害率"}],"trade":{"ids":{"explicit":["explicit.stat_8517868"]}}} +{"ref":"+#% Chance to Block Attack Damage from Cursed Enemies","better":1,"matchers":[{"string":"來自被詛咒的敵人 #% 攻擊傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_3304203764"]}}} +{"ref":"+#% Chance to Block Attack Damage if there are at least 5 nearby Enemies","better":1,"matchers":[{"string":"若附近至少有 5 個敵人,#% 攻擊傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_1214532298"],"fractured":["fractured.stat_1214532298"]}}} +{"ref":"+#% Chance to Block Attack Damage if you have Blocked Attack Damage Recently","better":1,"matchers":[{"string":"若你近期有格擋攻擊傷害,#% 攻擊傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_3789765926"]}}} +{"ref":"+#% Chance to Block Attack Damage if you have Blocked Spell Damage Recently","better":1,"matchers":[{"string":"若你近期有格擋法術傷害,#% 攻擊傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_647983250"]}}} +{"ref":"+#% Chance to Block Attack Damage if you were Damaged by a Hit Recently","better":1,"matchers":[{"string":"若你近期被擊中傷害,有 #% 攻擊傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_852195286"],"fractured":["fractured.stat_852195286"]}}} +{"ref":"+#% Chance to Block Attack Damage per 50 Strength","better":1,"matchers":[{"string":"每 50 點力量 #% 攻擊傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_1061631617"]}}} +{"ref":"+#% Chance to Block Attack Damage per Endurance Charge","better":1,"matchers":[{"string":"每顆耐力球 #% 攻擊傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_2355741828","explicit.stat_3039589351"],"fractured":["fractured.stat_3039589351"]}}} +{"ref":"+#% Chance to Block Attack Damage per Frenzy Charge","better":1,"matchers":[{"string":"每顆狂怒球 #% 攻擊傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_2148784747"]}}} +{"ref":"+#% Chance to Block Attack Damage per Power Charge","better":1,"matchers":[{"string":"每顆暴擊球 #% 攻擊傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_2856326982"]}}} +{"ref":"+#% Chance to Block Attack Damage per Summoned Skeleton","better":1,"matchers":[{"string":"每隻召喚骷髏 #% 攻擊傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_2445675562"]}}} +{"ref":"+#% Chance to Block Attack Damage when in Off Hand","better":1,"matchers":[{"string":"當在副手時 #% 攻擊傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_2040585053"]}}} +{"ref":"+#% Chance to Block Attack Damage while affected by Determination","better":1,"matchers":[{"string":"被堅定影響時 #% 攻擊傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_3692646597"]}}} +{"ref":"+#% Chance to Block Attack Damage while Dual Wielding","better":1,"matchers":[{"string":"雙持時 #% 攻擊傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_2166444903"],"implicit":["implicit.stat_2166444903"],"fractured":["fractured.stat_2166444903"],"crafted":["crafted.stat_2166444903"]}}} +{"ref":"+#% Chance to Block Attack Damage while Dual Wielding Claws","better":1,"matchers":[{"string":"雙持爪時 #% 攻擊傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_2538694749"]}}} +{"ref":"+#% Chance to Block Attack Damage while holding a Shield","better":1,"matchers":[{"string":"持盾時 #% 攻擊傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_4061558269"],"fractured":["fractured.stat_4061558269"]}}} +{"ref":"+#% Chance to Block Attack Damage while not Cursed","better":1,"matchers":[{"string":"沒有被詛咒時 #% 攻擊傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_3619054484"]}}} +{"ref":"+#% Chance to Block Attack Damage while on Consecrated Ground","better":1,"matchers":[{"string":"在奉獻地面上時 #% 攻擊傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_3865999868"]}}} +{"ref":"+#% Chance to Block Attack Damage while wielding a Staff","better":1,"matchers":[{"string":"持長杖時 #% 攻擊傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_1001829678","explicit.stat_1778298516"],"implicit":["implicit.stat_1001829678"],"fractured":["fractured.stat_1778298516"]}}} +{"ref":"+#% Chance to Block Attack Damage while you have at least 10 Crab Barriers","better":1,"matchers":[{"string":"當你至少有 10 層蟹將重盾時 #% 攻擊傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_653107703"]}}} +{"ref":"+#% Chance to Block Attack Damage while you have at least 5 Crab Barriers","better":1,"matchers":[{"string":"當你至少有 5 層蟹將重盾時 #% 攻擊傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_1354504703"]}}} +{"ref":"+#% chance to Block Projectile Attack Damage","better":1,"matchers":[{"string":"#% 投射物攻擊傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_3416410609"],"fractured":["fractured.stat_3416410609"]}}} +{"ref":"+#% Chance to Block Spell Damage during Effect","better":1,"matchers":[{"string":"效果持續時間,#% 法術傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_215754572"]}}} +{"ref":"+#% chance to Block Spell Damage if you have Blocked Attack Damage Recently","better":1,"matchers":[{"string":"若你近期有格擋攻擊傷害,有 #% 機率格擋法術傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1214153650"]}}} +{"ref":"+#% Chance to Block Spell Damage if you have Blocked Spell Damage Recently","better":1,"matchers":[{"string":"若你近期有格擋法術傷害,#% 法術傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_4263513561"]}}} +{"ref":"+#% Chance to Block Spell Damage if you were Damaged by a Hit Recently","better":1,"matchers":[{"string":"若你近期有被擊中傷害,#% 法術傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_1101206134"],"fractured":["fractured.stat_1101206134"]}}} +{"ref":"+#% Chance to Block Spell Damage per Power Charge","better":1,"matchers":[{"string":"每顆暴擊球 #% 法術傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_816458107"]}}} +{"ref":"+#% Chance to Block Spell Damage while affected by Discipline","better":1,"matchers":[{"string":"被紀律影響時 #% 法術傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_1313498929"]}}} +{"ref":"+#% Chance to Block Spell Damage while Cursed","better":1,"matchers":[{"string":"被詛咒時 #% 法術傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_3218891195"]}}} +{"ref":"+#% Chance to Block Spell Damage while Dual Wielding","better":1,"matchers":[{"string":"雙持時 #% 法術傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_138741818"],"fractured":["fractured.stat_138741818"]}}} +{"ref":"+#% Chance to Block Spell Damage while holding a Shield","better":1,"matchers":[{"string":"持盾時 #% 法術傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_938645499"],"fractured":["fractured.stat_938645499"]}}} +{"ref":"+#% Chance to Block Spell Damage while on Low Life","better":1,"matchers":[{"string":"當貧血時 #% 法術傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_2253286128","explicit.stat_4070519133"],"fractured":["fractured.stat_2253286128"]}}} +{"ref":"+#% Chance to Block Spell Damage while wielding a Staff","better":1,"matchers":[{"string":"持長杖時 #% 法術傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_2120297997"],"implicit":["implicit.stat_2120297997"],"fractured":["fractured.stat_2120297997"]}}} +{"ref":"+#% Chance to contain a Vaal Side Area","better":1,"fromAreaMods":true,"matchers":[{"string":"#% 機率含有 1 個瓦爾區域"},{"string":"含有 1 個瓦爾地區","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2156201537"],"implicit":["implicit.stat_2156201537"]}}} +{"ref":"+#% chance to Evade Attack Hits","better":1,"matchers":[{"string":"#% 閃避攻擊擊中率"}],"trade":{"ids":{"explicit":["explicit.stat_2021058489"],"implicit":["implicit.stat_2021058489"]}}} +{"ref":"+#% chance to Evade Attack Hits while affected by Grace","better":1,"matchers":[{"string":"被優雅影響時, #% 閃避攻擊擊中率"}],"trade":{"ids":{"explicit":["explicit.stat_969576725"],"implicit":["implicit.stat_969576725"]}}} +{"ref":"+#% chance to Suppress Spell Damage","better":1,"matchers":[{"string":"#% 壓抑法術傷害率"}],"trade":{"ids":{"explicit":["explicit.stat_3680664274","explicit.stat_492027537"],"implicit":["implicit.stat_3680664274","implicit.stat_492027537"],"fractured":["fractured.stat_3680664274","fractured.stat_492027537"],"scourge":["scourge.stat_3680664274"],"crafted":["crafted.stat_3680664274","crafted.stat_492027537"]}}} +{"ref":"+#% chance to Suppress Spell Damage if you've\ntaken Spell Damage Recently","better":1,"matchers":[{"string":"若你近期有承受法術傷害,\n#% 壓抑法術傷害率"}],"trade":{"ids":{"enchant":["enchant.stat_1503864797"]}}} +{"ref":"+#% chance to Suppress Spell Damage per Endurance Charge","better":1,"matchers":[{"string":"每顆耐力球 #% 壓抑法術傷害率"}],"trade":{"ids":{"explicit":["explicit.stat_161741084"]}}} +{"ref":"+#% chance to Suppress Spell Damage per Fortification","better":1,"matchers":[{"string":"每層護體有 #% 壓抑法術傷害率"}],"trade":{"ids":{"explicit":["explicit.stat_2731261141"]}}} +{"ref":"+#% chance to Suppress Spell Damage per Frenzy Charge","better":1,"matchers":[{"string":"每顆狂怒球有 #% 壓抑法術傷害率"}],"trade":{"ids":{"explicit":["explicit.stat_482967934"]}}} +{"ref":"+#% chance to Suppress Spell Damage per Power Charge","better":1,"matchers":[{"string":"每顆報擊球 #% 壓抑法術傷害率"}],"trade":{"ids":{"explicit":["explicit.stat_1309947938"]}}} +{"ref":"+#% chance to Suppress Spell Damage while affected by Grace","better":1,"matchers":[{"string":"被優雅影響時,#% 壓抑法術傷害率"}],"trade":{"ids":{"explicit":["explicit.stat_4071658793"]}}} +{"ref":"+#% chance to Suppress Spell Damage while affected by Haste","better":1,"matchers":[{"string":"被迅捷影響時,#% 壓抑法術傷害率"}],"trade":{"ids":{"explicit":["explicit.stat_2170859717"]}}} +{"ref":"+#% chance to Suppress Spell Damage while Channelling","better":1,"matchers":[{"string":"引導時 #% 壓抑法術傷害率"}],"trade":{"ids":{"explicit":["explicit.stat_4108186648"]}}} +{"ref":"+#% chance to Suppress Spell Damage while your Off Hand is empty","better":1,"matchers":[{"string":"你沒有副手時,#% 壓抑法術傷害率"}],"trade":{"ids":{"explicit":["explicit.stat_2076926581"]}}} +{"ref":"+#% Chaos Resistance against Damage Over Time","better":1,"matchers":[{"string":"對持續傷害有 #% 混沌抗性"}],"trade":{"ids":{"explicit":["explicit.stat_2266636761"],"crafted":["crafted.stat_2266636761"]}}} +{"ref":"+#% Critical Strike Chance per Power Charge","dp":true,"better":1,"matchers":[{"string":"每個暴擊球 #% 暴擊率"},{"string":"每顆暴擊球 #% 暴擊率"}],"trade":{"ids":{"explicit":["explicit.stat_1818900806"]}}} +{"ref":"+#% Critical Strike Chance while at maximum Power Charges","dp":true,"better":1,"matchers":[{"string":"當獲得最大暴擊球時 #% 暴擊率"}],"trade":{"ids":{"explicit":["explicit.stat_1166971727"]}}} +{"ref":"+#% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby","better":1,"matchers":[{"string":"當附近有稀有或傳奇敵人時,#% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_3992439283"],"fractured":["fractured.stat_3992439283"],"crafted":["crafted.stat_3992439283"]}}} +{"ref":"+#% Global Critical Strike Chance","better":1,"matchers":[{"string":"+#% 全域暴擊機率 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_global_critical_strike_chance"]}}} +{"ref":"+#% Global Critical Strike Multiplier","better":1,"matchers":[{"string":"+#% 全域暴擊加成 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_global_critical_strike_multiplier"]}}} +{"ref":"+#% Global Critical Strike Multiplier while you have a Frenzy Charge","better":1,"matchers":[{"string":"你有狂怒球時 #% 全域暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_3375516056"]}}} +{"ref":"+#% Global Critical Strike Multiplier while you have no Frenzy Charges","better":1,"matchers":[{"string":"當你沒有狂怒球時,#% 全域暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_3062763405"]}}} +{"ref":"+#% increased Flame Golem Elemental Resistances","better":1,"matchers":[{"string":"烈焰魔像 #% 元素抗性"}],"trade":{"ids":{"enchant":["enchant.stat_1298820272"]}}} +{"ref":"+#% Item Quantity","better":1,"fromAreaMods":true,"matchers":[{"string":"#% 物品數量"}],"trade":{"ids":{"implicit":["implicit.stat_2023217031"]}}} +{"ref":"+#% Item Rarity","better":1,"fromAreaMods":true,"matchers":[{"string":"#% 物品稀有度"}],"trade":{"ids":{"implicit":["implicit.stat_190932737"]}}} +{"ref":"+#% maximum Player Resistances per 25% Alert Level","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"每 25% 警戒等級 #% 玩家抗性"}],"trade":{"ids":{"explicit":["explicit.stat_652638686"],"fractured":["fractured.stat_652638686"]}}} +{"ref":"+#% Monster Chaos Resistance","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"#% 怪物的混沌抗性"}],"trade":{"ids":{"explicit":["explicit.stat_365540634"],"fractured":["fractured.stat_365540634"]}}} +{"ref":"+#% Monster Cold Resistance","better":1,"fromAreaMods":true,"matchers":[{"string":"#% 怪物冰冷抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1430380429"]}}} +{"ref":"+#% Monster Elemental Resistances","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"#% 怪物的元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1054098949"],"fractured":["fractured.stat_1054098949"]}}} +{"ref":"+#% Monster Fire Resistance","better":1,"fromAreaMods":true,"matchers":[{"string":"#% 怪物火焰抗性"}],"trade":{"ids":{"explicit":["explicit.stat_2319127046"]}}} +{"ref":"+#% Monster Lightning Resistance","better":1,"fromAreaMods":true,"matchers":[{"string":"#% 怪物閃電抗性"}],"trade":{"ids":{"explicit":["explicit.stat_162742068"]}}} +{"ref":"+#% Monster Physical Damage Reduction","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"#% 怪物物理傷害減免"}],"trade":{"ids":{"explicit":["explicit.stat_839186746"],"fractured":["fractured.stat_839186746"]}}} +{"ref":"+#% Pack Size","better":1,"fromAreaMods":true,"matchers":[{"string":"#% 怪物群大小"}],"trade":{"ids":{"implicit":["implicit.stat_948600126"]}}} +{"ref":"+#% Player Cold Resistance per 25% Alert Level","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"每 25% 警戒等級,#% 玩家冰冷抗性"}],"trade":{"ids":{"explicit":["explicit.stat_2916448124"],"fractured":["fractured.stat_2916448124"]}}} +{"ref":"+#% Player Fire Resistance per 25% Alert Level","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"每 25% 警戒等級,#% 玩家火焰抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1318683911"],"fractured":["fractured.stat_1318683911"]}}} +{"ref":"+#% Player Lightning Resistance per 25% Alert Level","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"每 25% 警戒等級,#% 玩家閃電抗性"}],"trade":{"ids":{"explicit":["explicit.stat_3839688967"],"fractured":["fractured.stat_3839688967"]}}} +{"ref":"+#% to all Elemental Resistances","better":1,"matchers":[{"string":"#% 全部元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_2901986750"],"implicit":["implicit.stat_2901986750"],"fractured":["fractured.stat_2901986750"],"scourge":["scourge.stat_2901986750"],"crafted":["crafted.stat_2901986750"]}}} +{"ref":"+#% to all Elemental Resistances for each Empty White Socket on any Equipped Item","better":1,"matchers":[{"string":"裝備中每個空的白色插槽,#% 全部元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_597739519"]}}} +{"ref":"+#% to all Elemental Resistances if Corrupted","better":1,"matchers":[{"string":"若已汙染 #% 全部元素抗性"}],"trade":{"ids":{"implicit":["implicit.stat_3731630482"]}}} +{"ref":"+#% to all Elemental Resistances per 10 Devotion","better":1,"matchers":[{"string":"每 10 個奉獻 #% 全部元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1910205563"]}}} +{"ref":"+#% to all Elemental Resistances per 15 Omniscience","better":1,"matchers":[{"string":"每 15 全知 #% 全部元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_2569472704"]}}} +{"ref":"+#% to all Elemental Resistances per Endurance Charge","better":1,"matchers":[{"string":"每個耐力球 #% 全部元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1852896268"]}}} +{"ref":"+#% to all Elemental Resistances per Grand Spectrum","better":1,"matchers":[{"string":"每顆巨光譜 #% 全部元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_242161915"]}}} +{"ref":"+#% to all Elemental Resistances while on Low Life","better":1,"matchers":[{"string":"貧血時 #% 全元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1637928656"]}}} +{"ref":"+#% to all Elemental Resistances while you have at least 200 Strength","better":1,"matchers":[{"string":"擁有超過 200 點力量時 #% 全元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_2415398184"]}}} +{"ref":"+#% to all maximum Elemental Resistances","better":1,"matchers":[{"string":"#% 全部最大元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1978899297"],"scourge":["scourge.stat_1978899297"]}}} +{"ref":"+#% to all maximum Elemental Resistances during Effect","better":1,"matchers":[{"string":"效果持續時間,#% 全部最大元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_4026156644"]}}} +{"ref":"+#% to all maximum Elemental Resistances while affected by Purity of Elements","better":1,"matchers":[{"string":"被元素淨化影響時,#% 全部最大元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_3234824465"]}}} +{"ref":"+#% to all maximum Resistances","better":1,"matchers":[{"string":"#% 最大全部抗性"}],"trade":{"ids":{"explicit":["explicit.stat_569299859"],"implicit":["implicit.stat_569299859"],"fractured":["fractured.stat_569299859"]}}} +{"ref":"+#% to all maximum Resistances while Poisoned","better":1,"matchers":[{"string":"當中毒時 #% 全部抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1030987123"]}}} +{"ref":"+#% to all maximum Resistances while you have no Endurance Charges","better":1,"matchers":[{"string":"當身上不存在耐力球時,增加 #% 所有屬性的最大抗性"}],"trade":{"ids":{"explicit":["explicit.stat_3635566977"]}}} +{"ref":"+#% to All Resistances","better":1,"matchers":[{"string":"#% 全部抗性"}],"trade":{"ids":{"explicit":["explicit.stat_2016723660"],"fractured":["fractured.stat_2016723660"]}}} +{"ref":"+#% to all Resistances for each Corrupted Item Equipped","better":1,"matchers":[{"string":"每件裝備的已汙染物品 #% 全部抗性"}],"trade":{"ids":{"explicit":["explicit.stat_3100523498"]}}} +{"ref":"+#% to Ancestral Protector Totem Elemental Resistances","better":1,"matchers":[{"string":"先祖衛士 #% 元素抗性"}],"trade":{"ids":{"enchant":["enchant.stat_1220207954"]}}} +{"ref":"+#% to Animated Guardian Elemental Resistances","better":1,"matchers":[{"string":"幻化守衛 #% 元素抗性"}],"trade":{"ids":{"implicit":["implicit.stat_2094281311"],"enchant":["enchant.stat_2094281311"]}}} +{"ref":"+#% to Chaos Damage over Time Multiplier","better":1,"matchers":[{"string":"#% 混沌持續傷害加成"}],"trade":{"ids":{"explicit":["explicit.stat_4055307827"],"implicit":["implicit.stat_4055307827"],"fractured":["fractured.stat_4055307827"],"scourge":["scourge.stat_4055307827"],"crafted":["crafted.stat_4055307827"]}}} +{"ref":"+#% to Chaos Damage over Time Multiplier with Attack Skills","better":1,"matchers":[{"string":"攻擊技能 #% 混沌持續傷害加成"}],"trade":{"ids":{"explicit":["explicit.stat_3913282911"],"fractured":["fractured.stat_3913282911"]}}} +{"ref":"+#% to Chaos Golem Elemental Resistances","better":1,"matchers":[{"string":"混沌魔像 #% 元素抗性"}],"trade":{"ids":{"enchant":["enchant.stat_1946386823"]}}} +{"ref":"+#% to Chaos Resistance","better":1,"matchers":[{"string":"#% 混沌抗性"}],"trade":{"ids":{"explicit":["explicit.stat_2923486259"],"implicit":["implicit.stat_2923486259"],"fractured":["fractured.stat_2923486259"],"scourge":["scourge.stat_2923486259"]}}} +{"ref":"+#% to Chaos Resistance during any Flask Effect","better":1,"matchers":[{"string":"任何藥劑效果持續時間內,#% 混沌抗性"}],"trade":{"ids":{"explicit":["explicit.stat_392168009"],"fractured":["fractured.stat_392168009"]}}} +{"ref":"+#% to Chaos Resistance per Endurance Charge","better":1,"matchers":[{"string":"每顆耐力球 #% 混沌抗性"}],"trade":{"ids":{"explicit":["explicit.stat_4210011075"]}}} +{"ref":"+#% to Chaos Resistance per Poison on you","better":1,"matchers":[{"string":"你身上的每層中毒 #% 混沌抗性"}],"trade":{"ids":{"explicit":["explicit.stat_175362265"]}}} +{"ref":"+#% to Chaos Resistance when on Low Life","better":1,"matchers":[{"string":"貧血時 #% 混沌抗性"}],"trade":{"ids":{"explicit":["explicit.stat_2366940416"]}}} +{"ref":"+#% to Chaos Resistance while affected by Herald of Agony","better":1,"matchers":[{"string":"被苦痛之捷影響時,#% 混沌抗性"}],"trade":{"ids":{"explicit":["explicit.stat_3456816469"]}}} +{"ref":"+#% to Chaos Resistance while affected by Purity of Elements","better":1,"matchers":[{"string":"被元素淨化影響時 #% 混沌抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1138813382"]}}} +{"ref":"+#% to Chaos Resistance while stationary","better":1,"matchers":[{"string":"站立時 #% 混沌抗性"}],"trade":{"ids":{"explicit":["explicit.stat_779829642"]}}} +{"ref":"+#% to Cold and Chaos Resistances","better":1,"matchers":[{"string":"#% 冰冷和混沌抗性"}],"trade":{"ids":{"explicit":["explicit.stat_3393628375"],"fractured":["fractured.stat_3393628375"],"crafted":["crafted.stat_3393628375"]}}} +{"ref":"+#% to Cold and Lightning Resistances","better":1,"matchers":[{"string":"#% 冰冷與閃電抗性"}],"trade":{"ids":{"explicit":["explicit.stat_4277795662"],"implicit":["implicit.stat_4277795662"],"fractured":["fractured.stat_4277795662"],"crafted":["crafted.stat_4277795662"]}}} +{"ref":"+#% to Cold Damage over Time Multiplier","better":1,"matchers":[{"string":"#% 冰冷持續傷害加成"}],"trade":{"ids":{"explicit":["explicit.stat_1950806024"],"implicit":["implicit.stat_1950806024"],"fractured":["fractured.stat_1950806024"],"scourge":["scourge.stat_1950806024"],"crafted":["crafted.stat_1950806024"]}}} +{"ref":"+#% to Cold Resistance","better":1,"matchers":[{"string":"#% 冰冷抗性"}],"trade":{"ids":{"explicit":["explicit.stat_4220027924"],"implicit":["implicit.stat_4220027924"],"fractured":["fractured.stat_4220027924"],"scourge":["scourge.stat_4220027924"],"crafted":["crafted.stat_4220027924"]}}} +{"ref":"+#% to Cold Resistance when Socketed with a Green Gem","better":1,"matchers":[{"string":"插上 1 個綠色寶石時獲得 #% 冰冷抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1064331314"]}}} +{"ref":"+#% to Cold Resistance while affected by Herald of Ice","better":1,"matchers":[{"string":"被冰霜之捷影響時,#% 冰冷抗性"}],"trade":{"ids":{"explicit":["explicit.stat_2494069187"]}}} +{"ref":"+#% to Critical Strike Chance against Enemies on Consecrated Ground during Effect","dp":true,"better":1,"matchers":[{"string":"效果期間,對在奉獻地面上的敵人 #% 暴擊率"}],"trade":{"ids":{"explicit":["explicit.stat_1535051459"]}}} +{"ref":"+#% to Critical Strike Chance while affected by Aspect of the Cat","dp":true,"better":1,"matchers":[{"string":"被傲貓祝福影響時 #% 暴擊率"}],"trade":{"ids":{"explicit":["explicit.stat_3992636701"]}}} +{"ref":"+#% to Critical Strike Chance while affected by Hatred","dp":true,"better":1,"matchers":[{"string":"被憎恨影響時 #% 暴擊率"}],"trade":{"ids":{"explicit":["explicit.stat_2753985507"]}}} +{"ref":"+#% to Critical Strike Multiplier against Burning Enemies","better":1,"matchers":[{"string":"對燃燒的敵人 #% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_1963942874"]}}} +{"ref":"+#% to Critical Strike Multiplier against Enemies that are on Full Life","better":1,"matchers":[{"string":"對滿血的敵人增加 #% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_2355615476"],"fractured":["fractured.stat_2355615476"]}}} +{"ref":"+#% to Critical Strike Multiplier during any Flask Effect","better":1,"matchers":[{"string":"在任何藥劑效果期間 #% 暴擊加成"}],"trade":{"ids":{"implicit":["implicit.stat_240289863"]}}} +{"ref":"+#% to Critical Strike Multiplier for Attack Damage","better":1,"matchers":[{"string":"#% 攻擊傷害的暴擊加成"}],"trade":{"ids":{"implicit":["implicit.stat_3714003708"]}}} +{"ref":"+#% to Critical Strike Multiplier for Spell Damage","better":1,"matchers":[{"string":"#% 法術傷害的暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_274716455"],"implicit":["implicit.stat_274716455"],"fractured":["fractured.stat_274716455"]}}} +{"ref":"+#% to Critical Strike Multiplier for Spells if you haven't Killed Recently","better":1,"matchers":[{"string":"若你近期沒有擊殺,#% 法術暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_729430714"]}}} +{"ref":"+#% to Critical Strike Multiplier for Spells while Dual Wielding","better":1,"matchers":[{"string":"雙持武器時,#% 法術暴擊加成"}],"trade":{"ids":{"implicit":["implicit.stat_2349237916"]}}} +{"ref":"+#% to Critical Strike Multiplier for Spells while holding a Shield","better":1,"matchers":[{"string":"持盾時,#% 法術暴擊加成"}],"trade":{"ids":{"implicit":["implicit.stat_2311200892"]}}} +{"ref":"+#% to Critical Strike Multiplier for Spells while wielding a Staff","better":1,"matchers":[{"string":"持長杖時,#% 法術暴擊加成"}],"trade":{"ids":{"implicit":["implicit.stat_3629080637"]}}} +{"ref":"+#% to Critical Strike Multiplier if Dexterity is higher than Intelligence","better":1,"matchers":[{"string":"若敏捷高於智慧,#% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_2328588114"]}}} +{"ref":"+#% to Critical Strike Multiplier if you have Blocked Recently","better":1,"matchers":[{"string":"若近期有格擋,#% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_3527458221"]}}} +{"ref":"+#% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently","better":1,"matchers":[{"string":"若近期沒有造成暴擊,#% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_1478247313"],"fractured":["fractured.stat_1478247313"]}}} +{"ref":"+#% to Critical Strike Multiplier if you've cast Enfeeble in the past 10 seconds","better":1,"matchers":[{"string":"若你過去 10 秒有施放過衰弱,#% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_2379274646"]}}} +{"ref":"+#% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently","better":1,"matchers":[{"string":"若近期你造成了非暴擊傷害則增加 #% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_1626712767"]}}} +{"ref":"+#% to Critical Strike Multiplier if you've gained a Power Charge Recently","better":1,"matchers":[{"string":"若你近期有獲得暴擊球,#% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_2865731079"]}}} +{"ref":"+#% to Critical Strike Multiplier if you've Killed Recently","better":1,"matchers":[{"string":"若近期有擊殺,#% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_2937483991"],"fractured":["fractured.stat_2937483991"]}}} +{"ref":"+#% to Critical Strike Multiplier if you've Shattered an Enemy Recently","better":1,"matchers":[{"string":"若你近期有粉碎敵人,#% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_536929014"],"fractured":["fractured.stat_536929014"],"crafted":["crafted.stat_536929014"]}}} +{"ref":"+#% to Critical Strike Multiplier per 1% Chance to Block Attack Damage","better":1,"matchers":[{"string":"每 1% 攻擊傷害格擋率 #% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_956384511"]}}} +{"ref":"+#% to Critical Strike Multiplier per 10 Strength on Unallocated Passives in Radius","better":1,"matchers":[{"string":"範圍內每 10 點未配置力量 #% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_1154827254"]}}} +{"ref":"+#% to Critical Strike Multiplier per Power Charge","better":1,"matchers":[{"string":"每個暴擊球 #% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_4164870816"]}}} +{"ref":"+#% to Critical Strike Multiplier while affected by Anger","better":1,"matchers":[{"string":"被憤怒影響時 #% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_3627458291"]}}} +{"ref":"+#% to Critical Strike Multiplier while affected by Precision","better":1,"matchers":[{"string":"被精準影響時,#% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_1817023621"]}}} +{"ref":"+#% to Critical Strike Multiplier while area is not in Lockdown\nPlayers have +#% to Critical Strike Multiplier while area is not in Lockdown","better":1,"matchers":[{"string":"區域沒有被封鎖時,#% 暴擊加成\n玩家在區域沒有被封鎖時 #% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_3128272024"],"fractured":["fractured.stat_3128272024"]}}} +{"ref":"+#% to Critical Strike Multiplier while Dual Wielding","better":1,"matchers":[{"string":"雙持時 #% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_2546185479"],"fractured":["fractured.stat_2546185479"]}}} +{"ref":"+#% to Critical Strike Multiplier with Axes","better":1,"matchers":[{"string":"持斧時 #% 暴擊加成"}],"trade":{"ids":{"implicit":["implicit.stat_4219746989"]}}} +{"ref":"+#% to Critical Strike Multiplier with Bows","better":1,"matchers":[{"string":"持弓時 #% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_1712221299"],"implicit":["implicit.stat_1712221299"],"fractured":["fractured.stat_1712221299"],"scourge":["scourge.stat_1712221299"]}}} +{"ref":"+#% to Critical Strike Multiplier with Claws","better":1,"matchers":[{"string":"持爪時 #% 暴擊加成"}],"trade":{"ids":{"implicit":["implicit.stat_2811834828"]}}} +{"ref":"+#% to Critical Strike Multiplier with Cold Skills","better":1,"matchers":[{"string":"#% 冰冷技能暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_915908446"],"fractured":["fractured.stat_915908446"]}}} +{"ref":"+#% to Critical Strike Multiplier with Daggers","better":1,"matchers":[{"string":"持匕首時 #% 暴擊加成"}],"trade":{"ids":{"implicit":["implicit.stat_3998601568"]}}} +{"ref":"+#% to Critical Strike Multiplier with Elemental Skills","better":1,"matchers":[{"string":"#% 元素技能暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_1569407745"],"fractured":["fractured.stat_1569407745"]}}} +{"ref":"+#% to Critical Strike Multiplier with Fire Skills","better":1,"matchers":[{"string":"#% 火焰技能暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_2307547323"],"fractured":["fractured.stat_2307547323"]}}} +{"ref":"+#% to Critical Strike Multiplier with Lightning Skills","better":1,"matchers":[{"string":"#% 閃電技能暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_2441475928"],"fractured":["fractured.stat_2441475928"]}}} +{"ref":"+#% to Critical Strike Multiplier with Maces or Sceptres","better":1,"matchers":[{"string":"錘和權杖 #% 暴擊加成"}],"trade":{"ids":{"implicit":["implicit.stat_458899422"]}}} +{"ref":"+#% to Critical Strike Multiplier with One Handed Melee Weapons","better":1,"matchers":[{"string":"持單手近戰武器時 #% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_670153687"],"fractured":["fractured.stat_670153687"]}}} +{"ref":"+#% to Critical Strike Multiplier with Staves","better":1,"matchers":[{"string":"持長杖時 #% 暴擊加成"}],"trade":{"ids":{"implicit":["implicit.stat_1474913037"]}}} +{"ref":"+#% to Critical Strike Multiplier with Swords","better":1,"matchers":[{"string":"持劍時 #% 暴擊加成"}],"trade":{"ids":{"implicit":["implicit.stat_3114492047"]}}} +{"ref":"+#% to Critical Strike Multiplier with Two Handed Melee Weapons","better":1,"matchers":[{"string":"使用雙手近戰武器時 #% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_252507949"],"fractured":["fractured.stat_252507949"]}}} +{"ref":"+#% to Critical Strike Multiplier with Wands","better":1,"matchers":[{"string":"持法杖時 #% 暴擊加成"}],"trade":{"ids":{"implicit":["implicit.stat_1241396104"]}}} +{"ref":"+#% to Damage over Time Multiplier","better":1,"matchers":[{"string":"#% 持續傷害加成"}],"trade":{"ids":{"explicit":["explicit.stat_3988349707"],"implicit":["implicit.stat_3988349707"],"fractured":["fractured.stat_3988349707"],"scourge":["scourge.stat_3988349707"]}}} +{"ref":"+#% to Damage over Time Multiplier for Ailments per Elder Item Equipped","better":1,"matchers":[{"string":"每件裝備的的尊師之物 #% 異常狀態持續傷害加成"}],"trade":{"ids":{"explicit":["explicit.stat_2212731469"]}}} +{"ref":"+#% to Damage over Time Multiplier for Bleeding","better":1,"matchers":[{"string":"流血 #% 持續傷害加成"}],"trade":{"ids":{"implicit":["implicit.stat_1423749435"]}}} +{"ref":"+#% to Damage over Time Multiplier for Bleeding from Critical Strikes","better":1,"matchers":[{"string":"來自暴擊的流血 #% 持續傷害加成"}],"trade":{"ids":{"explicit":["explicit.stat_1454648374"]}}} +{"ref":"+#% to Damage over Time Multiplier for Bleeding from Hits with this Weapon","better":1,"matchers":[{"string":"使用此武器的擊中 #% 流血持續傷害加成"}],"trade":{"ids":{"explicit":["explicit.stat_951608773"],"fractured":["fractured.stat_951608773"]}}} +{"ref":"+#% to Damage over Time Multiplier for Bleeding per Frenzy Charge","better":1,"matchers":[{"string":"每顆狂怒球 #% 流血的持續傷害加成"}],"trade":{"ids":{"explicit":["explicit.stat_2583415204"]}}} +{"ref":"+#% to Damage over Time Multiplier for Poison from Critical Strikes during Effect","better":1,"matchers":[{"string":"效果持續時間,來自暴擊的中毒 #% 持續傷害加成"}],"trade":{"ids":{"explicit":["explicit.stat_1691221049"]}}} +{"ref":"+#% to Damage over Time Multiplier for Poison inflicted with this Weapon","better":1,"matchers":[{"string":"此武器造成的中毒 #% 持續傷害加成"}],"trade":{"ids":{"explicit":["explicit.stat_4096656097"],"fractured":["fractured.stat_4096656097"]}}} +{"ref":"+#% to Damage over Time Multiplier for Poison per Frenzy Charge","better":1,"matchers":[{"string":"每顆狂怒球 #% 中毒的持續傷害加成"}],"trade":{"ids":{"explicit":["explicit.stat_3504652942"]}}} +{"ref":"+#% to Damage over Time Multiplier if you've dealt a Critical Strike in the past 8 seconds","better":1,"matchers":[{"string":"若你過去 8 秒有造成暴擊,#% 持續傷害加成"}],"trade":{"ids":{"explicit":["explicit.stat_3203086927"]}}} +{"ref":"+#% to Damage over Time Multiplier per 10 Intelligence on Unallocated Passives in Radius","better":1,"matchers":[{"string":"範圍內未配置的天賦中,每 10 點智慧 #% 持續傷害加成"}],"trade":{"ids":{"explicit":["explicit.stat_1994121713"]}}} +{"ref":"+#% to Damage over Time Multiplier while affected by Malevolence","better":1,"matchers":[{"string":"被惡意影響時,#% 持續傷害加成"}],"trade":{"ids":{"explicit":["explicit.stat_2736708072"]}}} +{"ref":"+#% to Damage over Time Multiplier with Attack Skills","better":1,"matchers":[{"string":"攻擊技能 #% 持續傷害加成"}],"trade":{"ids":{"explicit":["explicit.stat_693959086"],"fractured":["fractured.stat_693959086"]}}} +{"ref":"+#% to Damage over Time Multiplier with Melee Weapon Attacks","better":1,"matchers":[{"string":"#% 近戰武器攻擊的持續傷害加成"}],"trade":{"ids":{"explicit":["explicit.stat_1867426121"]}}} +{"ref":"+#% to Elemental Resistances during Effect","better":1,"matchers":[{"string":"效果持續時間,#% 全部元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_3110554274"]}}} +{"ref":"+#% to Fire and Chaos Resistances","better":1,"matchers":[{"string":"#% 火焰和混沌抗性"}],"trade":{"ids":{"explicit":["explicit.stat_378817135"],"fractured":["fractured.stat_378817135"],"crafted":["crafted.stat_378817135"]}}} +{"ref":"+#% to Fire and Cold Resistances","better":1,"matchers":[{"string":"#% 火焰與冰冷抗性"}],"trade":{"ids":{"explicit":["explicit.stat_2915988346"],"implicit":["implicit.stat_2915988346"],"fractured":["fractured.stat_2915988346"],"crafted":["crafted.stat_2915988346"]}}} +{"ref":"+#% to Fire and Lightning Resistances","better":1,"matchers":[{"string":"#% 火焰與閃電抗性"}],"trade":{"ids":{"explicit":["explicit.stat_3441501978"],"implicit":["implicit.stat_3441501978"],"fractured":["fractured.stat_3441501978"],"crafted":["crafted.stat_3441501978"]}}} +{"ref":"+#% to Fire Damage over Time Multiplier","better":1,"matchers":[{"string":"#% 火焰持續傷害加成"}],"trade":{"ids":{"explicit":["explicit.stat_3382807662"],"implicit":["implicit.stat_3382807662"],"fractured":["fractured.stat_3382807662"],"scourge":["scourge.stat_3382807662"],"crafted":["crafted.stat_3382807662"]}}} +{"ref":"+#% to Fire Damage over Time Multiplier with Attack Skills","better":1,"matchers":[{"string":"攻擊技能 #% 火焰持續傷害加成"}],"trade":{"ids":{"explicit":["explicit.stat_2139660169"]}}} +{"ref":"+#% to Fire Resistance","better":1,"matchers":[{"string":"#% 火焰抗性"}],"trade":{"ids":{"explicit":["explicit.stat_3372524247"],"implicit":["implicit.stat_3372524247"],"fractured":["fractured.stat_3372524247"],"scourge":["scourge.stat_3372524247"],"crafted":["crafted.stat_3372524247"]}}} +{"ref":"+#% to Fire Resistance when Socketed with a Red Gem","better":1,"matchers":[{"string":"插上 1 個紅色寶石時獲得 #% 火焰抗性"}],"trade":{"ids":{"explicit":["explicit.stat_3051845758"]}}} +{"ref":"+#% to Fire Resistance while affected by Herald of Ash","better":1,"matchers":[{"string":"被灰燼之捷影響時,#% 火焰抗性"}],"trade":{"ids":{"explicit":["explicit.stat_2675641469"]}}} +{"ref":"+#% to Fire Resistance while on Low Life","better":1,"matchers":[{"string":"貧血時 #% 火焰抗性"}],"trade":{"ids":{"explicit":["explicit.stat_38301299"]}}} +{"ref":"+#% to Global Critical Strike Multiplier","better":1,"matchers":[{"string":"#% 全域暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_3556824919"],"implicit":["implicit.stat_3556824919"],"fractured":["fractured.stat_3556824919"],"scourge":["scourge.stat_3556824919"],"crafted":["crafted.stat_3556824919"]}}} +{"ref":"+#% to Global Critical Strike Multiplier per Green Socket","better":1,"matchers":[{"string":"每個綠色插槽 #% 全域暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_35810390"]}}} +{"ref":"+#% to Ice Golem Elemental Resistances","better":1,"matchers":[{"string":"寒冰魔像 #% 元素抗性"}],"trade":{"ids":{"enchant":["enchant.stat_2520825974"]}}} +{"ref":"+#% to Lightning and Chaos Resistances","better":1,"matchers":[{"string":"#% 閃電和混沌抗性"}],"trade":{"ids":{"explicit":["explicit.stat_3465022881"],"fractured":["fractured.stat_3465022881"],"crafted":["crafted.stat_3465022881"]}}} +{"ref":"+#% to Lightning Golem Elemental Resistances","better":1,"matchers":[{"string":"閃電魔像 #% 元素抗性"}],"trade":{"ids":{"enchant":["enchant.stat_2338484156"]}}} +{"ref":"+#% to Lightning Resistance","better":1,"matchers":[{"string":"#% 閃電抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1671376347"],"implicit":["implicit.stat_1671376347"],"fractured":["fractured.stat_1671376347"],"scourge":["scourge.stat_1671376347"],"crafted":["crafted.stat_1671376347"]}}} +{"ref":"+#% to Lightning Resistance when Socketed with a Blue Gem","better":1,"matchers":[{"string":"插上 1 個藍色寶石時獲得 #% 閃電抗性"}],"trade":{"ids":{"explicit":["explicit.stat_289814996"]}}} +{"ref":"+#% to Lightning Resistance while affected by Herald of Thunder","better":1,"matchers":[{"string":"被閃電之捷影響時,#% 閃電抗性"}],"trade":{"ids":{"explicit":["explicit.stat_2687017988"]}}} +{"ref":"+#% to maximum Chance to Block Attack Damage","better":1,"matchers":[{"string":"#% 最大攻擊傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_4124805414"],"implicit":["implicit.stat_4124805414"],"fractured":["fractured.stat_4124805414"]}}} +{"ref":"+#% to maximum Chance to Block Spell Damage","better":1,"matchers":[{"string":"#% 最大法術傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_2388574377"],"implicit":["implicit.stat_2388574377"]}}} +{"ref":"+#% to maximum Chaos Resistance","better":1,"matchers":[{"string":"#% 最大混沌抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1301765461"],"implicit":["implicit.stat_1301765461"],"fractured":["fractured.stat_1301765461"],"scourge":["scourge.stat_1301765461"]}}} +{"ref":"+#% to maximum Cold Resistance","better":1,"matchers":[{"string":"#% 最大冰冷抗性"}],"trade":{"ids":{"explicit":["explicit.stat_3676141501"],"implicit":["implicit.stat_3676141501"],"fractured":["fractured.stat_3676141501"],"scourge":["scourge.stat_3676141501"]}}} +{"ref":"+#% to maximum Cold Resistance while affected by Herald of Ice","better":1,"matchers":[{"string":"被冰霜之捷影響時,#% 最大冰冷抗性"}],"trade":{"ids":{"explicit":["explicit.stat_950661692"]}}} +{"ref":"+#% to maximum Fire Resistance","better":1,"matchers":[{"string":"#% 最大火焰抗性"}],"trade":{"ids":{"explicit":["explicit.stat_4095671657"],"implicit":["implicit.stat_4095671657"],"fractured":["fractured.stat_4095671657"],"scourge":["scourge.stat_4095671657"]}}} +{"ref":"+#% to maximum Fire Resistance while affected by Herald of Ash","better":1,"matchers":[{"string":"被灰燼之捷影響時,#% 最大火焰抗性"}],"trade":{"ids":{"explicit":["explicit.stat_3716758077"]}}} +{"ref":"+#% to maximum Lightning Resistance","better":1,"matchers":[{"string":"#% 最大閃電抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1011760251"],"implicit":["implicit.stat_1011760251"],"fractured":["fractured.stat_1011760251"],"scourge":["scourge.stat_1011760251"]}}} +{"ref":"+#% to maximum Lightning Resistance while affected by Herald of Thunder","better":1,"matchers":[{"string":"被閃電之捷影響時,#% 最大閃電抗性"}],"trade":{"ids":{"explicit":["explicit.stat_3259396413"]}}} +{"ref":"+#% to Maximum Quality","better":1,"matchers":[{"string":"#% 最大品質"}],"trade":{"ids":{"implicit":["implicit.stat_2039822488"]}}} +{"ref":"+#% to Melee Critical Strike Multiplier","better":1,"matchers":[{"string":"#% 近戰暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_4237442815"],"fractured":["fractured.stat_4237442815"]}}} +{"ref":"+#% to Melee Weapon Critical Strike Multiplier","better":1,"matchers":[{"string":"#% 近戰武器暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_605218169"]}}} +{"ref":"+#% to Monster Critical Strike Multiplier","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"#% 怪物暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_57326096"],"fractured":["fractured.stat_57326096"]}}} +{"ref":"+#% to Off Hand Critical Strike Chance","dp":true,"better":1,"matchers":[{"string":"#% 副手暴擊率"}],"trade":{"ids":{"explicit":["explicit.stat_1757389331"]}}} +{"ref":"+#% to Off Hand Critical Strike Chance per 10 Maximum Energy Shield on Shield","dp":true,"better":1,"matchers":[{"string":"盾牌上每 10 最大能量護盾 #% 副手暴擊率"}],"trade":{"ids":{"explicit":["explicit.stat_3285400610"]}}} +{"ref":"+#% to Off Hand Critical Strike Multiplier per\nMurderous Eye Jewel affecting you, up to a maximum of +100%","better":1,"matchers":[{"string":"每顆影響你的殺戮之眼珠寶,#% 副手暴擊加成,最多 +100%"}],"trade":{"ids":{"explicit":["explicit.stat_3699529133"]}}} +{"ref":"+#% to Off Hand Critical Strike Multiplier per 10 Maximum Energy Shield on Shield","better":1,"matchers":[{"string":"盾牌上每 10 最大能量護盾 #% 副手暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_240790947"]}}} +{"ref":"+#% to Physical Damage over Time Multiplier","better":1,"matchers":[{"string":"#% 物理持續傷害加成"}],"trade":{"ids":{"explicit":["explicit.stat_1314617696"],"implicit":["implicit.stat_1314617696"],"fractured":["fractured.stat_1314617696"],"scourge":["scourge.stat_1314617696"],"crafted":["crafted.stat_1314617696"]}}} +{"ref":"+#% to Physical Damage over Time Multiplier with Attack Skills","better":1,"matchers":[{"string":"攻擊技能 #% 物理持續傷害加成"}],"trade":{"ids":{"explicit":["explicit.stat_709768359"]}}} +{"ref":"+#% to Quality","better":1,"matchers":[{"string":"#% 品質"}],"trade":{"ids":{"explicit":["explicit.stat_2016708976"],"fractured":["fractured.stat_2016708976"],"crafted":["crafted.stat_2016708976"]}}} +{"ref":"+#% to Quality of all Skill Gems","better":1,"matchers":[{"string":"全部技能寶石品質 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3655769732"]}}} +{"ref":"+#% to Quality of Socketed AoE Gems","better":1,"matchers":[{"string":"插槽中的範圍寶石 #% 品質"}],"trade":{"ids":{"implicit":["implicit.stat_768982451"]}}} +{"ref":"+#% to Quality of Socketed Aura Gems","better":1,"matchers":[{"string":"插槽中的光環寶石 #% 品質"}],"trade":{"ids":{"implicit":["implicit.stat_2276941637"]}}} +{"ref":"+#% to Quality of Socketed Bow Gems","better":1,"matchers":[{"string":"插槽中的弓寶石 #% 品質"}],"trade":{"ids":{"implicit":["implicit.stat_3280600715"]}}} +{"ref":"+#% to Quality of Socketed Chaos Gems","better":1,"matchers":[{"string":"插槽中的混沌寶石 #% 品質"}],"trade":{"ids":{"explicit":["explicit.stat_2062835769"],"implicit":["implicit.stat_2062835769"]}}} +{"ref":"+#% to Quality of Socketed Cold Gems","better":1,"matchers":[{"string":"插槽中的冰冷寶石 #% 品質"}],"trade":{"ids":{"explicit":["explicit.stat_1164882313"],"implicit":["implicit.stat_1164882313"]}}} +{"ref":"+#% to Quality of Socketed Dexterity Gems","better":1,"matchers":[{"string":"插槽中的敏捷寶石 #% 品質"}],"trade":{"ids":{"implicit":["implicit.stat_2877754099"]}}} +{"ref":"+#% to Quality of Socketed Fire Gems","better":1,"matchers":[{"string":"插槽中的火焰寶石 #% 品質"}],"trade":{"ids":{"explicit":["explicit.stat_3422008440"],"implicit":["implicit.stat_3422008440"]}}} +{"ref":"+#% to Quality of Socketed Gems","better":1,"matchers":[{"string":"此物品插槽中寶石品質 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3828613551"],"implicit":["implicit.stat_3828613551"],"fractured":["fractured.stat_3828613551"],"crafted":["crafted.stat_3828613551"]}}} +{"ref":"+#% to Quality of Socketed Intelligence Gems","better":1,"matchers":[{"string":"插槽中的智慧寶石 #% 品質"}],"trade":{"ids":{"implicit":["implicit.stat_3174776455"]}}} +{"ref":"+#% to Quality of Socketed Lightning Gems","better":1,"matchers":[{"string":"插槽中的閃電寶石 #% 品質"}],"trade":{"ids":{"explicit":["explicit.stat_1065580342"],"implicit":["implicit.stat_1065580342"]}}} +{"ref":"+#% to Quality of Socketed Melee Gems","better":1,"matchers":[{"string":"插槽中的近戰寶石 #% 品質"}],"trade":{"ids":{"implicit":["implicit.stat_1396421504"]}}} +{"ref":"+#% to Quality of Socketed Projectile Gems","better":1,"matchers":[{"string":"插槽中的投射物寶石 #% 品質"}],"trade":{"ids":{"implicit":["implicit.stat_2428621158"]}}} +{"ref":"+#% to Quality of Socketed Skill Gems","better":1,"matchers":[{"string":"插槽中技能寶石品質 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1325783255"]}}} +{"ref":"+#% to Quality of Socketed Strength Gems","better":1,"matchers":[{"string":"插槽中的力量寶石 #% 品質"}],"trade":{"ids":{"implicit":["implicit.stat_122841557"]}}} +{"ref":"+#% to Quality of Socketed Support Gems","better":1,"matchers":[{"string":"插槽中輔助寶石品質 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1328548975"],"implicit":["implicit.stat_1328548975"],"fractured":["fractured.stat_1328548975"],"scourge":["scourge.stat_1328548975"]}}} +{"ref":"+#% to Raised Spectre Elemental Resistances","better":1,"matchers":[{"string":"幽魂 #% 元素抗性"}],"trade":{"ids":{"enchant":["enchant.stat_27640220"]}}} +{"ref":"+#% to Spell Critical Strike Chance","dp":true,"better":1,"matchers":[{"string":"#% 法術暴擊率"}],"trade":{"ids":{"explicit":["explicit.stat_791835907"],"implicit":["implicit.stat_791835907"],"fractured":["fractured.stat_791835907"]}}} +{"ref":"+#% to Stone Golem Elemental Resistances","better":1,"matchers":[{"string":"巨石魔像 #% 元素抗性"}],"trade":{"ids":{"enchant":["enchant.stat_1601558321"]}}} +{"ref":"+#% to Unarmed Melee Attack Critical Strike Chance","dp":true,"better":1,"matchers":[{"string":"#% 空手近戰攻擊暴擊率"}],"trade":{"ids":{"explicit":["explicit.stat_3613173483"]}}} +{"ref":"+#% total Attack Speed","better":1,"matchers":[{"string":"+#% 攻擊速度 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_attack_speed"]}}} +{"ref":"+#% total Cast Speed","better":1,"matchers":[{"string":"+#% 施放速度 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_cast_speed"]}}} +{"ref":"+#% total Critical Strike Chance for Spells","better":1,"matchers":[{"string":"+#% 法術暴擊機率 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_critical_strike_chance_for_spells"]}}} +{"ref":"+#% total Elemental Resistance","better":1,"matchers":[{"string":"+#% 元素抗性 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_elemental_resistance"]}}} +{"ref":"+#% total Resistance","better":1,"matchers":[{"string":"+#% 總抗性 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_resistance"]}}} +{"ref":"+#% total to all Elemental Resistances","better":1,"matchers":[{"string":"+#% 元素抗性 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_all_elemental_resistances"]}}} +{"ref":"+#% total to Chaos Resistance","better":1,"matchers":[{"string":"+#% 總混沌抗性 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_chaos_resistance"]}}} +{"ref":"+#% total to Cold Resistance","better":1,"matchers":[{"string":"+#% 冰冷抗性 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_cold_resistance"]}}} +{"ref":"+#% total to Fire Resistance","better":1,"matchers":[{"string":"+#% 火焰抗性 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_fire_resistance"]}}} +{"ref":"+#% total to Lightning Resistance","better":1,"matchers":[{"string":"+#% 閃電抗性 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_lightning_resistance"]}}} +{"ref":"+1 to Level of Socketed Skill Gems per # Player Levels","better":1,"matchers":[{"string":"玩家每 # 等級,插槽中的技能寶石等級 +1"}],"trade":{"ids":{"explicit":["explicit.stat_1435838855"]}}} +{"ref":"+1 to maximum Blade Flurry stages","better":1,"matchers":[{"string":"+1 最大刀鋒亂舞疊層"}],"trade":{"ids":{"enchant":["enchant.stat_865345996"]}}} +{"ref":"+1 to maximum number of Raised Zombies per # Strength","better":1,"matchers":[{"string":"每 # 點力量額外增加 1 個殭屍上限"}],"trade":{"ids":{"explicit":["explicit.stat_4056985119"]}}} +{"ref":"+40% to Maximum Effect of Shock","better":1,"matchers":[{"string":"+40% 最大感電效果"}],"trade":{"ids":{"explicit":["explicit.stat_4007740198"]}}} +{"ref":"1 Added Passive Skill is Adrenaline","better":1,"matchers":[{"string":"1 個附加天賦為腎上腺素"}],"trade":{"ids":{"explicit":["explicit.stat_4022743870"]}}} +{"ref":"1 Added Passive Skill is Advance Guard","better":1,"matchers":[{"string":"1 個附加天賦為進階守衛"}],"trade":{"ids":{"explicit":["explicit.stat_1625939562"],"fractured":["fractured.stat_1625939562"]}}} +{"ref":"1 Added Passive Skill is Aerialist","better":1,"matchers":[{"string":"1 個附加天賦為高空特技"}],"trade":{"ids":{"explicit":["explicit.stat_3848677307"]}}} +{"ref":"1 Added Passive Skill is Aerodynamics","better":1,"matchers":[{"string":"1 個附加天賦為氣動學"}],"trade":{"ids":{"explicit":["explicit.stat_4120556534"],"fractured":["fractured.stat_4120556534"]}}} +{"ref":"1 Added Passive Skill is Agent of Destruction","better":1,"matchers":[{"string":"1 個附加天賦為破壞特工"}],"trade":{"ids":{"explicit":["explicit.stat_3122491961"],"fractured":["fractured.stat_3122491961"]}}} +{"ref":"1 Added Passive Skill is Aggressive Defence","better":1,"matchers":[{"string":"1 個附加天賦為積極防禦"}],"trade":{"ids":{"explicit":["explicit.stat_4154008618"],"fractured":["fractured.stat_4154008618"]}}} +{"ref":"1 Added Passive Skill is Alchemist","better":1,"matchers":[{"string":"1 個附加天賦為鍊金術師"}],"trade":{"ids":{"explicit":["explicit.stat_2912949210"]}}} +{"ref":"1 Added Passive Skill is Ancestral Echo","better":1,"matchers":[{"string":"1 個附加天賦為先祖回響"}],"trade":{"ids":{"explicit":["explicit.stat_957679205"],"fractured":["fractured.stat_957679205"]}}} +{"ref":"1 Added Passive Skill is Ancestral Guidance","better":1,"matchers":[{"string":"1 個附加天賦為先祖指引"}],"trade":{"ids":{"explicit":["explicit.stat_2387747995"],"fractured":["fractured.stat_2387747995"]}}} +{"ref":"1 Added Passive Skill is Ancestral Inspiration","better":1,"matchers":[{"string":"1 個附加天賦為先祖啟發"}],"trade":{"ids":{"explicit":["explicit.stat_77045106"],"fractured":["fractured.stat_77045106"]}}} +{"ref":"1 Added Passive Skill is Ancestral Might","better":1,"matchers":[{"string":"1 個附加天賦為先祖之力"}],"trade":{"ids":{"explicit":["explicit.stat_3998316"],"fractured":["fractured.stat_3998316"]}}} +{"ref":"1 Added Passive Skill is Ancestral Preservation","better":1,"matchers":[{"string":"1 個附加天賦為先祖庇護"}],"trade":{"ids":{"explicit":["explicit.stat_3746703776"]}}} +{"ref":"1 Added Passive Skill is Ancestral Reach","better":1,"matchers":[{"string":"1 個附加天賦為先祖所向"}],"trade":{"ids":{"explicit":["explicit.stat_3294884567"],"fractured":["fractured.stat_3294884567"]}}} +{"ref":"1 Added Passive Skill is Antifreeze","better":1,"matchers":[{"string":"1 個附加天賦為抗凍"}],"trade":{"ids":{"explicit":["explicit.stat_2622946553"],"fractured":["fractured.stat_2622946553"]}}} +{"ref":"1 Added Passive Skill is Antivenom","better":1,"matchers":[{"string":"1 個附加天賦為抗毒"}],"trade":{"ids":{"explicit":["explicit.stat_774369953"],"fractured":["fractured.stat_774369953"]}}} +{"ref":"1 Added Passive Skill is Arcane Adept","better":1,"matchers":[{"string":"1 個附加天賦為祕能專精"}],"trade":{"ids":{"explicit":["explicit.stat_393565679"],"fractured":["fractured.stat_393565679"]}}} +{"ref":"1 Added Passive Skill is Arcane Heroism","better":1,"matchers":[{"string":"1 個附加天賦為祕能英雄"}],"trade":{"ids":{"explicit":["explicit.stat_3901992019"],"fractured":["fractured.stat_3901992019"]}}} +{"ref":"1 Added Passive Skill is Arcane Pyrotechnics","better":1,"matchers":[{"string":"1 個附加天賦為祕能煙花"}],"trade":{"ids":{"explicit":["explicit.stat_2043503530"]}}} +{"ref":"1 Added Passive Skill is Arcing Shot","better":1,"matchers":[{"string":"1 個附加天賦為弧射"}],"trade":{"ids":{"explicit":["explicit.stat_3212859169"],"fractured":["fractured.stat_3212859169"]}}} +{"ref":"1 Added Passive Skill is Assert Dominance","better":1,"matchers":[{"string":"1 個附加天賦為維護地位"}],"trade":{"ids":{"explicit":["explicit.stat_4222265138"],"fractured":["fractured.stat_4222265138"]}}} +{"ref":"1 Added Passive Skill is Astonishing Affliction","better":1,"matchers":[{"string":"1 個附加天賦為驚奇痛楚"}],"trade":{"ids":{"explicit":["explicit.stat_2428334013"]}}} +{"ref":"1 Added Passive Skill is Basics of Pain","better":1,"matchers":[{"string":"1 個附加天賦為苦痛之基"}],"trade":{"ids":{"explicit":["explicit.stat_3084359503"],"fractured":["fractured.stat_3084359503"]}}} +{"ref":"1 Added Passive Skill is Battle-Hardened","better":1,"matchers":[{"string":"1 個附加天賦為固守戰場"}],"trade":{"ids":{"explicit":["explicit.stat_4188581520"],"fractured":["fractured.stat_4188581520"]}}} +{"ref":"1 Added Passive Skill is Battlefield Dominator","better":1,"matchers":[{"string":"1 個附加天賦為戰場統治者"}],"trade":{"ids":{"explicit":["explicit.stat_1499057234"],"fractured":["fractured.stat_1499057234"]}}} +{"ref":"1 Added Passive Skill is Blacksmith","better":1,"matchers":[{"string":"1 個附加天賦為鐵匠"}],"trade":{"ids":{"explicit":["explicit.stat_1127706436"]}}} +{"ref":"1 Added Passive Skill is Blanketed Snow","better":1,"matchers":[{"string":"1 個附加天賦為拂雪"}],"trade":{"ids":{"explicit":["explicit.stat_1085167979"],"fractured":["fractured.stat_1085167979"]}}} +{"ref":"1 Added Passive Skill is Blast-Freeze","better":1,"matchers":[{"string":"1 個附加天賦為爆凍"}],"trade":{"ids":{"explicit":["explicit.stat_693808153"],"fractured":["fractured.stat_693808153"]}}} +{"ref":"1 Added Passive Skill is Blessed","better":1,"matchers":[{"string":"1 個附加天賦為祝福"}],"trade":{"ids":{"explicit":["explicit.stat_775689239"],"fractured":["fractured.stat_775689239"]}}} +{"ref":"1 Added Passive Skill is Blessed Rebirth","better":1,"matchers":[{"string":"1 個附加的天賦為祝禱重生"}],"trade":{"ids":{"explicit":["explicit.stat_1424794574"],"fractured":["fractured.stat_1424794574"]}}} +{"ref":"1 Added Passive Skill is Blizzard Caller","better":1,"matchers":[{"string":"1 個附加天賦為暴雪舵手"}],"trade":{"ids":{"explicit":["explicit.stat_3758712376"]}}} +{"ref":"1 Added Passive Skill is Blood Artist","better":1,"matchers":[{"string":"1 個附加天賦為血腥藝術家"}],"trade":{"ids":{"explicit":["explicit.stat_2284771334"]}}} +{"ref":"1 Added Passive Skill is Bloodscent","better":1,"matchers":[{"string":"1 個附加天賦為血腥味"}],"trade":{"ids":{"explicit":["explicit.stat_3967765261"],"fractured":["fractured.stat_3967765261"]}}} +{"ref":"1 Added Passive Skill is Blowback","better":1,"matchers":[{"string":"1 個附加天賦為後座力"}],"trade":{"ids":{"explicit":["explicit.stat_1612414696"],"fractured":["fractured.stat_1612414696"]}}} +{"ref":"1 Added Passive Skill is Bodyguards","better":1,"matchers":[{"string":"1 個附加天賦為保鑣"}],"trade":{"ids":{"explicit":["explicit.stat_791125124"]}}} +{"ref":"1 Added Passive Skill is Born of Chaos","better":1,"matchers":[{"string":"1 個附加天賦為混沌之誕"}],"trade":{"ids":{"explicit":["explicit.stat_2449392400"],"fractured":["fractured.stat_2449392400"]}}} +{"ref":"1 Added Passive Skill is Brand Loyalty","better":1,"matchers":[{"string":"1 個附加天賦為品牌忠誠"}],"trade":{"ids":{"explicit":["explicit.stat_3198006994"],"fractured":["fractured.stat_3198006994"]}}} +{"ref":"1 Added Passive Skill is Brewed for Potency","better":1,"matchers":[{"string":"1 個附加天賦為釀造之力"}],"trade":{"ids":{"explicit":["explicit.stat_3250272113"],"fractured":["fractured.stat_3250272113"]}}} +{"ref":"1 Added Passive Skill is Broadside","better":1,"matchers":[{"string":"1 個附加天賦為舷側砲"}],"trade":{"ids":{"explicit":["explicit.stat_2205982416"],"fractured":["fractured.stat_2205982416"]}}} +{"ref":"1 Added Passive Skill is Brush with Death","better":1,"matchers":[{"string":"1 個附加天賦為死神之拂"}],"trade":{"ids":{"explicit":["explicit.stat_2900833792"],"fractured":["fractured.stat_2900833792"]}}} +{"ref":"1 Added Passive Skill is Brutal Infamy","better":1,"matchers":[{"string":"1 個附加天賦為殘暴惡名"}],"trade":{"ids":{"explicit":["explicit.stat_2068574831"],"fractured":["fractured.stat_2068574831"]}}} +{"ref":"1 Added Passive Skill is Burden Projection","better":1,"matchers":[{"string":"1 個附加天賦為重擔投射"}],"trade":{"ids":{"explicit":["explicit.stat_2008682345"],"fractured":["fractured.stat_2008682345"]}}} +{"ref":"1 Added Passive Skill is Burning Bright","better":1,"matchers":[{"string":"1 個附加天賦為燃燒閃耀"}],"trade":{"ids":{"explicit":["explicit.stat_4199056048"],"fractured":["fractured.stat_4199056048"]}}} +{"ref":"1 Added Passive Skill is Calamitous","better":1,"matchers":[{"string":"1 個附加天賦為災難"}],"trade":{"ids":{"explicit":["explicit.stat_3359207393"],"fractured":["fractured.stat_3359207393"]}}} +{"ref":"1 Added Passive Skill is Call to the Slaughter","better":1,"matchers":[{"string":"1 個附加天賦為屠殺惡夢"}],"trade":{"ids":{"explicit":["explicit.stat_3317068522"],"fractured":["fractured.stat_3317068522"]}}} +{"ref":"1 Added Passive Skill is Capacitor","better":1,"matchers":[{"string":"1 個附加天賦為容器"}],"trade":{"ids":{"explicit":["explicit.stat_4025536654"]}}} +{"ref":"1 Added Passive Skill is Careful Handling","better":1,"matchers":[{"string":"1 個附加天賦為細心掌控"}],"trade":{"ids":{"explicit":["explicit.stat_456502758"],"fractured":["fractured.stat_456502758"]}}} +{"ref":"1 Added Passive Skill is Chilling Presence","better":1,"matchers":[{"string":"1 個附加天賦為冰緩光環"}],"trade":{"ids":{"explicit":["explicit.stat_2834490860"]}}} +{"ref":"1 Added Passive Skill is Chip Away","better":1,"matchers":[{"string":"1 個附加天賦為抹除"}],"trade":{"ids":{"explicit":["explicit.stat_968069586"],"fractured":["fractured.stat_968069586"]}}} +{"ref":"1 Added Passive Skill is Circling Oblivion","better":1,"matchers":[{"string":"1 個附加天賦為閉鎖遺忘"}],"trade":{"ids":{"explicit":["explicit.stat_2129392647"],"fractured":["fractured.stat_2129392647"]}}} +{"ref":"1 Added Passive Skill is Clarity of Purpose","better":1,"matchers":[{"string":"1 個附加天賦為明淨之志"}],"trade":{"ids":{"explicit":["explicit.stat_684087686"],"fractured":["fractured.stat_684087686"]}}} +{"ref":"1 Added Passive Skill is Cold Conduction","better":1,"matchers":[{"string":"1 個附加天賦為冷傳導"}],"trade":{"ids":{"explicit":["explicit.stat_1274505521"]}}} +{"ref":"1 Added Passive Skill is Cold to the Core","better":1,"matchers":[{"string":"1 個附加天賦為冰心"}],"trade":{"ids":{"explicit":["explicit.stat_744783843"],"fractured":["fractured.stat_744783843"]}}} +{"ref":"1 Added Passive Skill is Cold-Blooded Killer","better":1,"matchers":[{"string":"1 個附加天賦為冷血殺手"}],"trade":{"ids":{"explicit":["explicit.stat_836566759"],"fractured":["fractured.stat_836566759"]}}} +{"ref":"1 Added Passive Skill is Combat Rhythm","better":1,"matchers":[{"string":"1 個附加天賦為戰鬥韻律"}],"trade":{"ids":{"explicit":["explicit.stat_3122505794"],"fractured":["fractured.stat_3122505794"]}}} +{"ref":"1 Added Passive Skill is Compound Injury","better":1,"matchers":[{"string":"1 個附加天賦為複合傷害"}],"trade":{"ids":{"explicit":["explicit.stat_4018305528"]}}} +{"ref":"1 Added Passive Skill is Conjured Wall","better":1,"matchers":[{"string":"1 個附加天賦為召喚之璧"}],"trade":{"ids":{"explicit":["explicit.stat_4105031548"],"fractured":["fractured.stat_4105031548"]}}} +{"ref":"1 Added Passive Skill is Conservation of Energy","better":1,"matchers":[{"string":"1 個附加天賦為節能"}],"trade":{"ids":{"explicit":["explicit.stat_2083777017"]}}} +{"ref":"1 Added Passive Skill is Cooked Alive","better":1,"matchers":[{"string":"1 個附加天賦為現宰"}],"trade":{"ids":{"explicit":["explicit.stat_2938895712"],"fractured":["fractured.stat_2938895712"]}}} +{"ref":"1 Added Passive Skill is Corrosive Elements","better":1,"matchers":[{"string":"1 個附加天賦為腐蝕元素"}],"trade":{"ids":{"explicit":["explicit.stat_1777139212"],"fractured":["fractured.stat_1777139212"]}}} +{"ref":"1 Added Passive Skill is Cremator","better":1,"matchers":[{"string":"1 個附加天賦為焚屍爐"}],"trade":{"ids":{"explicit":["explicit.stat_1153801980"],"fractured":["fractured.stat_1153801980"]}}} +{"ref":"1 Added Passive Skill is Cry Wolf","better":1,"matchers":[{"string":"1 個附加天賦為狼嚎"}],"trade":{"ids":{"explicit":["explicit.stat_1821748178"]}}} +{"ref":"1 Added Passive Skill is Cult-Leader","better":1,"matchers":[{"string":"1 個附加天賦為邪教教主"}],"trade":{"ids":{"explicit":["explicit.stat_2026112251"]}}} +{"ref":"1 Added Passive Skill is Daring Ideas","better":1,"matchers":[{"string":"1 個附加天賦為大膽的想法"}],"trade":{"ids":{"explicit":["explicit.stat_2534405517"],"fractured":["fractured.stat_2534405517"]}}} +{"ref":"1 Added Passive Skill is Dark Ideation","better":1,"matchers":[{"string":"1 個附加天賦為黑暗觀念"}],"trade":{"ids":{"explicit":["explicit.stat_1603621602"],"fractured":["fractured.stat_1603621602"]}}} +{"ref":"1 Added Passive Skill is Dark Messenger","better":1,"matchers":[{"string":"1 個附加天賦為黑暗信使"}],"trade":{"ids":{"explicit":["explicit.stat_3784610129"],"fractured":["fractured.stat_3784610129"]}}} +{"ref":"1 Added Passive Skill is Darting Movements","better":1,"matchers":[{"string":"1 個附加天賦為猛突位移"}],"trade":{"ids":{"explicit":["explicit.stat_846491278"]}}} +{"ref":"1 Added Passive Skill is Deadly Repartee","better":1,"matchers":[{"string":"1 個附加天賦為致命才能"}],"trade":{"ids":{"explicit":["explicit.stat_1013470938"],"fractured":["fractured.stat_1013470938"]}}} +{"ref":"1 Added Passive Skill is Deep Chill","better":1,"matchers":[{"string":"1 個附加天賦為深層冰緩"}],"trade":{"ids":{"explicit":["explicit.stat_1703766309"],"fractured":["fractured.stat_1703766309"]}}} +{"ref":"1 Added Passive Skill is Destructive Aspect","better":1,"matchers":[{"string":"1 個附加天賦為破壞面"}],"trade":{"ids":{"explicit":["explicit.stat_3860179422"],"fractured":["fractured.stat_3860179422"]}}} +{"ref":"1 Added Passive Skill is Devastator","better":1,"matchers":[{"string":"1 個附加的天賦為毀滅者"}],"trade":{"ids":{"explicit":["explicit.stat_3711553948"],"fractured":["fractured.stat_3711553948"]}}} +{"ref":"1 Added Passive Skill is Disciples","better":1,"matchers":[{"string":"1 個附加的天賦為紀律"}],"trade":{"ids":{"explicit":["explicit.stat_3177526694"]}}} +{"ref":"1 Added Passive Skill is Disease Vector","better":1,"matchers":[{"string":"1 個附加的天賦為病原體"}],"trade":{"ids":{"explicit":["explicit.stat_183591019"],"fractured":["fractured.stat_183591019"]}}} +{"ref":"1 Added Passive Skill is Disorienting Display","better":1,"matchers":[{"string":"1 個附加的天賦為迷茫之列"}],"trade":{"ids":{"explicit":["explicit.stat_3206911230"],"fractured":["fractured.stat_3206911230"]}}} +{"ref":"1 Added Passive Skill is Disorienting Wounds","better":1,"matchers":[{"string":"1 個附加的天賦為迷茫之殤"}],"trade":{"ids":{"explicit":["explicit.stat_3351136461"],"fractured":["fractured.stat_3351136461"]}}} +{"ref":"1 Added Passive Skill is Distilled Perfection","better":1,"matchers":[{"string":"1 個附加的天賦為完美淬鍊"}],"trade":{"ids":{"explicit":["explicit.stat_3652138990"],"fractured":["fractured.stat_3652138990"]}}} +{"ref":"1 Added Passive Skill is Doedre's Apathy","better":1,"matchers":[{"string":"1 個附加天賦為德瑞的冷漠"}],"trade":{"ids":{"explicit":["explicit.stat_1381945089"],"fractured":["fractured.stat_1381945089"]}}} +{"ref":"1 Added Passive Skill is Doedre's Gluttony","better":1,"matchers":[{"string":"1 個附加天賦為德瑞的暴食"}],"trade":{"ids":{"explicit":["explicit.stat_2695848124"]}}} +{"ref":"1 Added Passive Skill is Doedre's Spite","better":1,"matchers":[{"string":"1 個附加天賦為德瑞的怨恨"}],"trade":{"ids":{"explicit":["explicit.stat_462115791"],"fractured":["fractured.stat_462115791"]}}} +{"ref":"1 Added Passive Skill is Doryani's Lesson","better":1,"matchers":[{"string":"1 個附加的天賦為多里亞尼的教程"}],"trade":{"ids":{"explicit":["explicit.stat_228455793"],"fractured":["fractured.stat_228455793"]}}} +{"ref":"1 Added Passive Skill is Dragon Hunter","better":1,"matchers":[{"string":"1 個附加的天賦為獵龍幻士"}],"trade":{"ids":{"explicit":["explicit.stat_1038955006"]}}} +{"ref":"1 Added Passive Skill is Dread March","better":1,"matchers":[{"string":"1 個附加的天賦為驚懼遊行"}],"trade":{"ids":{"explicit":["explicit.stat_3087667389"],"fractured":["fractured.stat_3087667389"]}}} +{"ref":"1 Added Passive Skill is Drive the Destruction","better":1,"matchers":[{"string":"1 個附加的天賦為破壞之意"}],"trade":{"ids":{"explicit":["explicit.stat_1911162866"],"fractured":["fractured.stat_1911162866"]}}} +{"ref":"1 Added Passive Skill is Eldritch Inspiration","better":1,"matchers":[{"string":"1 個附加的天賦為怪異靈感"}],"trade":{"ids":{"explicit":["explicit.stat_3737604164"]}}} +{"ref":"1 Added Passive Skill is Electric Presence","better":1,"matchers":[{"string":"1 個附加天賦為電力光環"}],"trade":{"ids":{"explicit":["explicit.stat_3950683692"],"fractured":["fractured.stat_3950683692"]}}} +{"ref":"1 Added Passive Skill is Elegant Form","better":1,"matchers":[{"string":"1 個附加的天賦為高雅之姿"}],"trade":{"ids":{"explicit":["explicit.stat_289714529"],"fractured":["fractured.stat_289714529"]}}} +{"ref":"1 Added Passive Skill is Empowered Envoy","better":1,"matchers":[{"string":"1 個附加的天賦為授權使徒"}],"trade":{"ids":{"explicit":["explicit.stat_2032453153"],"fractured":["fractured.stat_2032453153"]}}} +{"ref":"1 Added Passive Skill is Endbringer","better":1,"matchers":[{"string":"1 個附加的天賦為終焉使者"}],"trade":{"ids":{"explicit":["explicit.stat_2150878631"]}}} +{"ref":"1 Added Passive Skill is Enduring Composure","better":1,"matchers":[{"string":"1 個附加的天賦為耐久鎮靜"}],"trade":{"ids":{"explicit":["explicit.stat_2043284086"],"fractured":["fractured.stat_2043284086"]}}} +{"ref":"1 Added Passive Skill is Enduring Focus","better":1,"matchers":[{"string":"1 個附加的天賦為耐久專注"}],"trade":{"ids":{"explicit":["explicit.stat_2522970386"]}}} +{"ref":"1 Added Passive Skill is Enduring Ward","better":1,"matchers":[{"string":"1 個附加的天賦為耐久守衛"}],"trade":{"ids":{"explicit":["explicit.stat_252724319"]}}} +{"ref":"1 Added Passive Skill is Energy From Naught","better":1,"matchers":[{"string":"1 個附加的天賦為虛無淬能"}],"trade":{"ids":{"explicit":["explicit.stat_2195518432"]}}} +{"ref":"1 Added Passive Skill is Essence Rush","better":1,"matchers":[{"string":"1 個附加的天賦為精華湧現"}],"trade":{"ids":{"explicit":["explicit.stat_1096136223"],"fractured":["fractured.stat_1096136223"]}}} +{"ref":"1 Added Passive Skill is Eternal Suffering","better":1,"matchers":[{"string":"1 個附加的天賦為永恆磨難"}],"trade":{"ids":{"explicit":["explicit.stat_2144634814"]}}} +{"ref":"1 Added Passive Skill is Evil Eye","better":1,"matchers":[{"string":"1 個附加的天賦為邪眼"}],"trade":{"ids":{"explicit":["explicit.stat_156080652","explicit.stat_4291066912"],"fractured":["fractured.stat_4291066912"]}}} +{"ref":"1 Added Passive Skill is Expansive Might","better":1,"matchers":[{"string":"1 個附加的天賦為擴展之力"}],"trade":{"ids":{"explicit":["explicit.stat_394918362"],"fractured":["fractured.stat_394918362"]}}} +{"ref":"1 Added Passive Skill is Expendability","better":1,"matchers":[{"string":"1 個附加的天賦為擴展性"}],"trade":{"ids":{"explicit":["explicit.stat_2020075345"]}}} +{"ref":"1 Added Passive Skill is Expert Sabotage","better":1,"matchers":[{"string":"1 個附加的天賦為破壞專精"}],"trade":{"ids":{"explicit":["explicit.stat_2084371547"]}}} +{"ref":"1 Added Passive Skill is Exploit Weakness","better":1,"matchers":[{"string":"1 個附加天賦為攻其之弱"}],"trade":{"ids":{"explicit":["explicit.stat_50129423"]}}} +{"ref":"1 Added Passive Skill is Explosive Force","better":1,"matchers":[{"string":"1 個附加的天賦為爆破力"}],"trade":{"ids":{"explicit":["explicit.stat_2017927451"],"fractured":["fractured.stat_2017927451"]}}} +{"ref":"1 Added Passive Skill is Exposure Therapy","better":1,"matchers":[{"string":"1 個附加的天賦為曝曬療法"}],"trade":{"ids":{"explicit":["explicit.stat_131358113"],"fractured":["fractured.stat_131358113"]}}} +{"ref":"1 Added Passive Skill is Eye of the Storm","better":1,"matchers":[{"string":"1 個附加的天賦為風暴之眼"}],"trade":{"ids":{"explicit":["explicit.stat_3818661553"],"fractured":["fractured.stat_3818661553"]}}} +{"ref":"1 Added Passive Skill is Eye to Eye","better":1,"matchers":[{"string":"1 個附加的天賦為對視"}],"trade":{"ids":{"explicit":["explicit.stat_392942015"],"fractured":["fractured.stat_392942015"]}}} +{"ref":"1 Added Passive Skill is Fan of Blades","better":1,"matchers":[{"string":"1 個附加的天賦為刀鋒狂熱"}],"trade":{"ids":{"explicit":["explicit.stat_2484082827"],"fractured":["fractured.stat_2484082827"]}}} +{"ref":"1 Added Passive Skill is Fan the Flames","better":1,"matchers":[{"string":"1 個附加的天賦為搧風點火"}],"trade":{"ids":{"explicit":["explicit.stat_2918755450"],"fractured":["fractured.stat_2918755450"]}}} +{"ref":"1 Added Passive Skill is Fasting","better":1,"matchers":[{"string":"1 個附加的天賦為快速"}],"trade":{"ids":{"explicit":["explicit.stat_37078857"],"fractured":["fractured.stat_37078857"]}}} +{"ref":"1 Added Passive Skill is Fearsome Warrior","better":1,"matchers":[{"string":"1 個附加的天賦為膽怯戰士"}],"trade":{"ids":{"explicit":["explicit.stat_3134222965"]}}} +{"ref":"1 Added Passive Skill is Feast of Flesh","better":1,"matchers":[{"string":"1 個附加的天賦為血肉盛宴"}],"trade":{"ids":{"explicit":["explicit.stat_2396755365"]}}} +{"ref":"1 Added Passive Skill is Feasting Fiends","better":1,"matchers":[{"string":"1 個附加的天賦為宴請邪魔"}],"trade":{"ids":{"explicit":["explicit.stat_383245807"],"fractured":["fractured.stat_383245807"]}}} +{"ref":"1 Added Passive Skill is Feed the Fury","better":1,"matchers":[{"string":"1 個附加天賦為豢養狂怒"}],"trade":{"ids":{"explicit":["explicit.stat_3944525413"],"fractured":["fractured.stat_3944525413"]}}} +{"ref":"1 Added Passive Skill is Fettle","better":1,"matchers":[{"string":"1 個附加的天賦為修補"}],"trade":{"ids":{"explicit":["explicit.stat_1353571444"],"fractured":["fractured.stat_1353571444"]}}} +{"ref":"1 Added Passive Skill is Fire Attunement","better":1,"matchers":[{"string":"1 個附加的天賦為火焰曲調"}],"trade":{"ids":{"explicit":["explicit.stat_3188756614"]}}} +{"ref":"1 Added Passive Skill is Flexible Sentry","better":1,"matchers":[{"string":"1 個附加的天賦為機動哨兵"}],"trade":{"ids":{"explicit":["explicit.stat_982290947"],"fractured":["fractured.stat_982290947"]}}} +{"ref":"1 Added Passive Skill is Flow of Life","better":1,"matchers":[{"string":"1 個附加的天賦為生機流動"}],"trade":{"ids":{"explicit":["explicit.stat_2350430215"],"fractured":["fractured.stat_2350430215"]}}} +{"ref":"1 Added Passive Skill is Follow-Through","better":1,"matchers":[{"string":"1 個附加的天賦為貫徹始終"}],"trade":{"ids":{"explicit":["explicit.stat_3984980429"],"fractured":["fractured.stat_3984980429"]}}} +{"ref":"1 Added Passive Skill is Force Multiplier","better":1,"matchers":[{"string":"1 個附加的天賦為原力加成"}],"trade":{"ids":{"explicit":["explicit.stat_1904581068"],"fractured":["fractured.stat_1904581068"]}}} +{"ref":"1 Added Passive Skill is Frantic Aspect","better":1,"matchers":[{"string":"1 個附加天賦為瘋狂面"}],"trade":{"ids":{"explicit":["explicit.stat_792262925"],"fractured":["fractured.stat_792262925"]}}} +{"ref":"1 Added Passive Skill is Fuel the Fight","better":1,"matchers":[{"string":"1 個附加的天賦為刺激戰鬥"}],"trade":{"ids":{"explicit":["explicit.stat_3599340381"],"fractured":["fractured.stat_3599340381"]}}} +{"ref":"1 Added Passive Skill is Furious Assault","better":1,"matchers":[{"string":"1 個附加的天賦為狂暴突襲"}],"trade":{"ids":{"explicit":["explicit.stat_3415827027"],"fractured":["fractured.stat_3415827027"]}}} +{"ref":"1 Added Passive Skill is Genius","better":1,"matchers":[{"string":"1 個附加的天賦為天才"}],"trade":{"ids":{"explicit":["explicit.stat_2763732093"],"fractured":["fractured.stat_2763732093"]}}} +{"ref":"1 Added Passive Skill is Gladiator's Fortitude","better":1,"matchers":[{"string":"1 個附加的天賦為衛士的毅力"}],"trade":{"ids":{"explicit":["explicit.stat_1591995797"],"fractured":["fractured.stat_1591995797"]}}} +{"ref":"1 Added Passive Skill is Graceful Execution","better":1,"matchers":[{"string":"1 個附加的天賦為優雅處刑"}],"trade":{"ids":{"explicit":["explicit.stat_1903496649"],"fractured":["fractured.stat_1903496649"]}}} +{"ref":"1 Added Passive Skill is Grand Design","better":1,"matchers":[{"string":"1 個附加的天賦為宏偉設計"}],"trade":{"ids":{"explicit":["explicit.stat_2350900742"],"fractured":["fractured.stat_2350900742"]}}} +{"ref":"1 Added Passive Skill is Grim Oath","better":1,"matchers":[{"string":"1 個附加的天賦為殘酷誓言"}],"trade":{"ids":{"explicit":["explicit.stat_2194205899"],"fractured":["fractured.stat_2194205899"]}}} +{"ref":"1 Added Passive Skill is Guerilla Tactics","better":1,"matchers":[{"string":"1 個附加的天賦為游擊戰術"}],"trade":{"ids":{"explicit":["explicit.stat_1882129725"],"fractured":["fractured.stat_1882129725"]}}} +{"ref":"1 Added Passive Skill is Haemorrhage","better":1,"matchers":[{"string":"1 個附加的天賦為滲血"}],"trade":{"ids":{"explicit":["explicit.stat_72129119"],"fractured":["fractured.stat_72129119"]}}} +{"ref":"1 Added Passive Skill is Haunting Shout","better":1,"matchers":[{"string":"1 個附加的天賦為鬼魅呼嘯"}],"trade":{"ids":{"explicit":["explicit.stat_1080363357"]}}} +{"ref":"1 Added Passive Skill is Heart of Iron","better":1,"matchers":[{"string":"1 個附加的天賦為鋼鐵之心"}],"trade":{"ids":{"explicit":["explicit.stat_1483358825"]}}} +{"ref":"1 Added Passive Skill is Heavy Hitter","better":1,"matchers":[{"string":"1 個附加的天賦為沉重打手"}],"trade":{"ids":{"explicit":["explicit.stat_3640252904"],"fractured":["fractured.stat_3640252904"]}}} +{"ref":"1 Added Passive Skill is Heraldry","better":1,"matchers":[{"string":"1 個附加的天賦為符紋學"}],"trade":{"ids":{"explicit":["explicit.stat_3274270612"],"fractured":["fractured.stat_3274270612"]}}} +{"ref":"1 Added Passive Skill is Hex Breaker","better":1,"matchers":[{"string":"1 個附加的天賦為破魔者"}],"trade":{"ids":{"explicit":["explicit.stat_2341828832"]}}} +{"ref":"1 Added Passive Skill is Hibernator","better":1,"matchers":[{"string":"1 個附加的天賦為冬眠"}],"trade":{"ids":{"explicit":["explicit.stat_2294919888"]}}} +{"ref":"1 Added Passive Skill is Hit and Run","better":1,"matchers":[{"string":"1 個附加的天賦為打帶跑"}],"trade":{"ids":{"explicit":["explicit.stat_2665170385"],"fractured":["fractured.stat_2665170385"]}}} +{"ref":"1 Added Passive Skill is Holistic Health","better":1,"matchers":[{"string":"1 個附加的天賦為整體健康"}],"trade":{"ids":{"explicit":["explicit.stat_3667965781"]}}} +{"ref":"1 Added Passive Skill is Holy Conquest","better":1,"matchers":[{"string":"1 個附加的天賦為神聖征服"}],"trade":{"ids":{"explicit":["explicit.stat_3898572660"],"fractured":["fractured.stat_3898572660"]}}} +{"ref":"1 Added Passive Skill is Hound's Mark","better":1,"matchers":[{"string":"1 個附加天賦為獵犬印記"}],"trade":{"ids":{"explicit":["explicit.stat_555800967"],"fractured":["fractured.stat_555800967"]}}} +{"ref":"1 Added Passive Skill is Hulking Corpses","better":1,"matchers":[{"string":"1 個附加的天賦為龐大屍堆"}],"trade":{"ids":{"explicit":["explicit.stat_3467711950"],"fractured":["fractured.stat_3467711950"]}}} +{"ref":"1 Added Passive Skill is Improvisor","better":1,"matchers":[{"string":"1 個附加的天賦為即興詩人"}],"trade":{"ids":{"explicit":["explicit.stat_810219447"]}}} +{"ref":"1 Added Passive Skill is Insatiable Killer","better":1,"matchers":[{"string":"1 個附加的天賦為貪得無厭的殺手"}],"trade":{"ids":{"explicit":["explicit.stat_3904970959"]}}} +{"ref":"1 Added Passive Skill is Inspired Oppression","better":1,"matchers":[{"string":"1 個附加的天賦為啟發壓迫"}],"trade":{"ids":{"explicit":["explicit.stat_3872380586"],"fractured":["fractured.stat_3872380586"]}}} +{"ref":"1 Added Passive Skill is Insulated","better":1,"matchers":[{"string":"1 個附加的天賦為絕緣"}],"trade":{"ids":{"explicit":["explicit.stat_212648555"]}}} +{"ref":"1 Added Passive Skill is Introspection","better":1,"matchers":[{"string":"1 個附加天賦為自我反省"}],"trade":{"ids":{"explicit":["explicit.stat_1309218394"],"fractured":["fractured.stat_1309218394"]}}} +{"ref":"1 Added Passive Skill is Invigorating Portents","better":1,"matchers":[{"string":"1 個附加的天賦為振奮預兆"}],"trade":{"ids":{"explicit":["explicit.stat_2262034536"]}}} +{"ref":"1 Added Passive Skill is Iron Breaker","better":1,"matchers":[{"string":"1 個附加的天賦為碎鐵者"}],"trade":{"ids":{"explicit":["explicit.stat_3258653591"],"fractured":["fractured.stat_3258653591"]}}} +{"ref":"1 Added Passive Skill is Lasting Impression","better":1,"matchers":[{"string":"1 個附加的天賦為持續印象"}],"trade":{"ids":{"explicit":["explicit.stat_426715778"]}}} +{"ref":"1 Added Passive Skill is Lead By Example","better":1,"matchers":[{"string":"1 個附加的天賦為模範領導"}],"trade":{"ids":{"explicit":["explicit.stat_2195406641"],"fractured":["fractured.stat_2195406641"]}}} +{"ref":"1 Added Passive Skill is Life from Death","better":1,"matchers":[{"string":"1 個附加的天賦為死而復生"}],"trade":{"ids":{"explicit":["explicit.stat_2337273077"],"fractured":["fractured.stat_2337273077"]}}} +{"ref":"1 Added Passive Skill is Liquid Inspiration","better":1,"matchers":[{"string":"1 個附加的天賦為液態啟發"}],"trade":{"ids":{"explicit":["explicit.stat_1094635162"]}}} +{"ref":"1 Added Passive Skill is Lord of Drought","better":1,"matchers":[{"string":"1 個附加天賦為枯旱之王"}],"trade":{"ids":{"explicit":["explicit.stat_2055715585"]}}} +{"ref":"1 Added Passive Skill is Low Tolerance","better":1,"matchers":[{"string":"1 個附加的天賦為低容忍"}],"trade":{"ids":{"explicit":["explicit.stat_3989400244"]}}} +{"ref":"1 Added Passive Skill is Mage Bane","better":1,"matchers":[{"string":"1 個附加的天賦為魔術災厄"}],"trade":{"ids":{"explicit":["explicit.stat_684155617"],"fractured":["fractured.stat_684155617"]}}} +{"ref":"1 Added Passive Skill is Mage Hunter","better":1,"matchers":[{"string":"1 個附加的天賦為魔術獵手"}],"trade":{"ids":{"explicit":["explicit.stat_2118664144"],"fractured":["fractured.stat_2118664144"]}}} +{"ref":"1 Added Passive Skill is Magnifier","better":1,"matchers":[{"string":"1 個附加的天賦為放大"}],"trade":{"ids":{"explicit":["explicit.stat_2886441936"],"fractured":["fractured.stat_2886441936"]}}} +{"ref":"1 Added Passive Skill is Martial Mastery","better":1,"matchers":[{"string":"1 個附加的天賦為武術精通"}],"trade":{"ids":{"explicit":["explicit.stat_1015189426"],"fractured":["fractured.stat_1015189426"]}}} +{"ref":"1 Added Passive Skill is Martial Momentum","better":1,"matchers":[{"string":"1 個附加的天賦為武術氣勢"}],"trade":{"ids":{"explicit":["explicit.stat_2978494217"],"fractured":["fractured.stat_2978494217"]}}} +{"ref":"1 Added Passive Skill is Martial Prowess","better":1,"matchers":[{"string":"1 個附加的天賦為武術英勇"}],"trade":{"ids":{"explicit":["explicit.stat_1152182658"],"fractured":["fractured.stat_1152182658"]}}} +{"ref":"1 Added Passive Skill is Master of Command","better":1,"matchers":[{"string":"1 個附加的天賦為引導大師"}],"trade":{"ids":{"explicit":["explicit.stat_3257074218"],"fractured":["fractured.stat_3257074218"]}}} +{"ref":"1 Added Passive Skill is Master of Fire","better":1,"matchers":[{"string":"1 個附加的天賦為火焰大師"}],"trade":{"ids":{"explicit":["explicit.stat_1462135249"],"fractured":["fractured.stat_1462135249"]}}} +{"ref":"1 Added Passive Skill is Master of the Maelstrom","better":1,"matchers":[{"string":"1 個附加天賦為混亂大師"}],"trade":{"ids":{"explicit":["explicit.stat_185592058"],"fractured":["fractured.stat_185592058"]}}} +{"ref":"1 Added Passive Skill is Master the Fundamentals","better":1,"matchers":[{"string":"1 個附加的天賦為精通基礎"}],"trade":{"ids":{"explicit":["explicit.stat_3585232432"],"fractured":["fractured.stat_3585232432"]}}} +{"ref":"1 Added Passive Skill is Mender's Wellspring","better":1,"matchers":[{"string":"1 個附加的天賦為治癒湧泉"}],"trade":{"ids":{"explicit":["explicit.stat_4291434923"],"fractured":["fractured.stat_4291434923"]}}} +{"ref":"1 Added Passive Skill is Militarism","better":1,"matchers":[{"string":"1 個附加的天賦為軍國主義"}],"trade":{"ids":{"explicit":["explicit.stat_4154709486"]}}} +{"ref":"1 Added Passive Skill is Mindfulness","better":1,"matchers":[{"string":"1 個附加的天賦為謹慎"}],"trade":{"ids":{"explicit":["explicit.stat_2595115995"]}}} +{"ref":"1 Added Passive Skill is Misery Everlasting","better":1,"matchers":[{"string":"1 個附加天賦為永恆苦難"}],"trade":{"ids":{"explicit":["explicit.stat_3832665876"]}}} +{"ref":"1 Added Passive Skill is Mob Mentality","better":1,"matchers":[{"string":"1 個附加的天賦為暴民心理"}],"trade":{"ids":{"explicit":["explicit.stat_1048879642"],"fractured":["fractured.stat_1048879642"]}}} +{"ref":"1 Added Passive Skill is Molten One's Mark","better":1,"matchers":[{"string":"1 個附加的天賦為熔火之印"}],"trade":{"ids":{"explicit":["explicit.stat_3875792669"],"fractured":["fractured.stat_3875792669"]}}} +{"ref":"1 Added Passive Skill is Mortifying Aspect","better":1,"matchers":[{"string":"1 個附加天賦為屈辱面"}],"trade":{"ids":{"explicit":["explicit.stat_3881737087"],"fractured":["fractured.stat_3881737087"]}}} +{"ref":"1 Added Passive Skill is Mystical Ward","better":1,"matchers":[{"string":"1 個附加的天賦為魔幻守衛"}],"trade":{"ids":{"explicit":["explicit.stat_2314111938"]}}} +{"ref":"1 Added Passive Skill is Natural Vigour","better":1,"matchers":[{"string":"1 個附加的天賦為自然活力"}],"trade":{"ids":{"explicit":["explicit.stat_510654792"]}}} +{"ref":"1 Added Passive Skill is Non-Flammable","better":1,"matchers":[{"string":"1 個附加的天賦為非易燃"}],"trade":{"ids":{"explicit":["explicit.stat_731840035"]}}} +{"ref":"1 Added Passive Skill is Numbing Elixir","better":1,"matchers":[{"string":"1 個附加的天賦為無感不死藥"}],"trade":{"ids":{"explicit":["explicit.stat_1028754276"],"fractured":["fractured.stat_1028754276"]}}} +{"ref":"1 Added Passive Skill is One with the Shield","better":1,"matchers":[{"string":"1 個附加的天賦為持盾者"}],"trade":{"ids":{"explicit":["explicit.stat_1976069869"]}}} +{"ref":"1 Added Passive Skill is Openness","better":1,"matchers":[{"string":"1 個附加的天賦為開放"}],"trade":{"ids":{"explicit":["explicit.stat_633943719"]}}} +{"ref":"1 Added Passive Skill is Opportunistic Fusilade","better":1,"matchers":[{"string":"1 個附加的天賦為機會主義福斯雷"}],"trade":{"ids":{"explicit":["explicit.stat_4281625943"],"fractured":["fractured.stat_4281625943"]}}} +{"ref":"1 Added Passive Skill is Overlord","better":1,"matchers":[{"string":"1 個附加的天賦為封建霸主"}],"trade":{"ids":{"explicit":["explicit.stat_2250169390"],"fractured":["fractured.stat_2250169390"]}}} +{"ref":"1 Added Passive Skill is Overshock","better":1,"matchers":[{"string":"1 個附加的天賦為過度震驚"}],"trade":{"ids":{"explicit":["explicit.stat_3777170562"],"fractured":["fractured.stat_3777170562"]}}} +{"ref":"1 Added Passive Skill is Overwhelming Malice","better":1,"matchers":[{"string":"1 個附加的天賦為壓倒性的惡意"}],"trade":{"ids":{"explicit":["explicit.stat_770408103"],"fractured":["fractured.stat_770408103"]}}} +{"ref":"1 Added Passive Skill is Paralysis","better":1,"matchers":[{"string":"1 個附加的天賦為麻痺"}],"trade":{"ids":{"explicit":["explicit.stat_4272503233"],"fractured":["fractured.stat_4272503233"]}}} +{"ref":"1 Added Passive Skill is Peace Amidst Chaos","better":1,"matchers":[{"string":"1 個附加的天賦為混沌中的平靜"}],"trade":{"ids":{"explicit":["explicit.stat_1734275536"]}}} +{"ref":"1 Added Passive Skill is Peak Vigour","better":1,"matchers":[{"string":"1 個附加的天賦為活力之巔"}],"trade":{"ids":{"explicit":["explicit.stat_1722821275"],"fractured":["fractured.stat_1722821275"]}}} +{"ref":"1 Added Passive Skill is Phlebotomist","better":1,"matchers":[{"string":"1 個附加天賦為放血屍"}],"trade":{"ids":{"explicit":["explicit.stat_3057154383"]}}} +{"ref":"1 Added Passive Skill is Powerful Assault","better":1,"matchers":[{"string":"1 個附加的天賦為猛烈襲擊"}],"trade":{"ids":{"explicit":["explicit.stat_1005475168"],"fractured":["fractured.stat_1005475168"]}}} +{"ref":"1 Added Passive Skill is Powerful Ward","better":1,"matchers":[{"string":"1 個附加的天賦為強力守衛"}],"trade":{"ids":{"explicit":["explicit.stat_164032122"]}}} +{"ref":"1 Added Passive Skill is Practiced Caster","better":1,"matchers":[{"string":"1 個附加的天賦為見習術士"}],"trade":{"ids":{"explicit":["explicit.stat_3435403756"],"fractured":["fractured.stat_3435403756"]}}} +{"ref":"1 Added Passive Skill is Precise Focus","better":1,"matchers":[{"string":"1 個附加的天賦為精確專注"}],"trade":{"ids":{"explicit":["explicit.stat_2913581789"]}}} +{"ref":"1 Added Passive Skill is Precise Retaliation","better":1,"matchers":[{"string":"1 個附加的天賦為精確復仇"}],"trade":{"ids":{"explicit":["explicit.stat_2335364359"],"fractured":["fractured.stat_2335364359"]}}} +{"ref":"1 Added Passive Skill is Pressure Points","better":1,"matchers":[{"string":"1 個附加的天賦為壓力點"}],"trade":{"ids":{"explicit":["explicit.stat_3391925584"],"fractured":["fractured.stat_3391925584"]}}} +{"ref":"1 Added Passive Skill is Primordial Bond","better":1,"matchers":[{"string":"1 個附加的天賦為原始連繫"}],"trade":{"ids":{"explicit":["explicit.stat_622362787"],"fractured":["fractured.stat_622362787"]}}} +{"ref":"1 Added Passive Skill is Prismatic Carapace","better":1,"matchers":[{"string":"1 個附加的天賦為多稜甲殼"}],"trade":{"ids":{"explicit":["explicit.stat_3492924480"],"fractured":["fractured.stat_3492924480"]}}} +{"ref":"1 Added Passive Skill is Prismatic Dance","better":1,"matchers":[{"string":"1 個附加的天賦為多稜舞蹈"}],"trade":{"ids":{"explicit":["explicit.stat_1149662934"]}}} +{"ref":"1 Added Passive Skill is Prismatic Heart","better":1,"matchers":[{"string":"1 個附加的天賦為多稜之心"}],"trade":{"ids":{"explicit":["explicit.stat_2342448236"],"fractured":["fractured.stat_2342448236"]}}} +{"ref":"1 Added Passive Skill is Prodigious Defence","better":1,"matchers":[{"string":"1 個附加的天賦為出奇防禦"}],"trade":{"ids":{"explicit":["explicit.stat_1705633890"],"fractured":["fractured.stat_1705633890"]}}} +{"ref":"1 Added Passive Skill is Provocateur","better":1,"matchers":[{"string":"1 個附加的天賦為挑唆者"}],"trade":{"ids":{"explicit":["explicit.stat_814369372"],"fractured":["fractured.stat_814369372"]}}} +{"ref":"1 Added Passive Skill is Pure Agony","better":1,"matchers":[{"string":"1 個附加的天賦為純粹苦痛"}],"trade":{"ids":{"explicit":["explicit.stat_1507409483"]}}} +{"ref":"1 Added Passive Skill is Pure Aptitude","better":1,"matchers":[{"string":"1 個附加的天賦為純粹才能"}],"trade":{"ids":{"explicit":["explicit.stat_3509724289"],"fractured":["fractured.stat_3509724289"]}}} +{"ref":"1 Added Passive Skill is Pure Guile","better":1,"matchers":[{"string":"1 個附加的天賦為純粹詭計"}],"trade":{"ids":{"explicit":["explicit.stat_1621496909"],"fractured":["fractured.stat_1621496909"]}}} +{"ref":"1 Added Passive Skill is Pure Might","better":1,"matchers":[{"string":"1 個附加的天賦為純粹之力"}],"trade":{"ids":{"explicit":["explicit.stat_2372915005"],"fractured":["fractured.stat_2372915005"]}}} +{"ref":"1 Added Passive Skill is Purposeful Harbinger","better":1,"matchers":[{"string":"1 個附加的天賦為果斷的神諭"}],"trade":{"ids":{"explicit":["explicit.stat_507505131"],"fractured":["fractured.stat_507505131"]}}} +{"ref":"1 Added Passive Skill is Quick and Deadly","better":1,"matchers":[{"string":"1 個附加的天賦為迅速與致命"}],"trade":{"ids":{"explicit":["explicit.stat_2169345147"],"fractured":["fractured.stat_2169345147"]}}} +{"ref":"1 Added Passive Skill is Quick Getaway","better":1,"matchers":[{"string":"1 個附加的天賦為迅速逃離"}],"trade":{"ids":{"explicit":["explicit.stat_1626818279"],"fractured":["fractured.stat_1626818279"]}}} +{"ref":"1 Added Passive Skill is Rattling Bellow","better":1,"matchers":[{"string":"1 個附加的天賦為慌亂吼叫"}],"trade":{"ids":{"explicit":["explicit.stat_4288473380"]}}} +{"ref":"1 Added Passive Skill is Raze and Pillage","better":1,"matchers":[{"string":"1 個附加的天賦為抹除和掠奪"}],"trade":{"ids":{"explicit":["explicit.stat_1038897629"],"fractured":["fractured.stat_1038897629"]}}} +{"ref":"1 Added Passive Skill is Readiness","better":1,"matchers":[{"string":"1 個附加的天賦為準備就緒"}],"trade":{"ids":{"explicit":["explicit.stat_845306697"]}}} +{"ref":"1 Added Passive Skill is Remarkable","better":1,"matchers":[{"string":"1 個附加的天賦為非凡"}],"trade":{"ids":{"explicit":["explicit.stat_691431951"],"fractured":["fractured.stat_691431951"]}}} +{"ref":"1 Added Passive Skill is Rend","better":1,"matchers":[{"string":"1 個附加的天賦為撕裂"}],"trade":{"ids":{"explicit":["explicit.stat_4263287206"]}}} +{"ref":"1 Added Passive Skill is Renewal","better":1,"matchers":[{"string":"1 個附加的天賦為換新"}],"trade":{"ids":{"explicit":["explicit.stat_3607300552"],"fractured":["fractured.stat_3607300552"]}}} +{"ref":"1 Added Passive Skill is Repeater","better":1,"matchers":[{"string":"1 個附加的天賦為背誦者"}],"trade":{"ids":{"explicit":["explicit.stat_2233272527"],"fractured":["fractured.stat_2233272527"]}}} +{"ref":"1 Added Passive Skill is Replenishing Presence","better":1,"matchers":[{"string":"1 個附加的天賦為補充光環"}],"trade":{"ids":{"explicit":["explicit.stat_1496043857"],"fractured":["fractured.stat_1496043857"]}}} +{"ref":"1 Added Passive Skill is Righteous Path","better":1,"matchers":[{"string":"1 個附加天賦為正道"}],"trade":{"ids":{"explicit":["explicit.stat_2620267328"],"fractured":["fractured.stat_2620267328"]}}} +{"ref":"1 Added Passive Skill is Riot Queller","better":1,"matchers":[{"string":"1 個附加的天賦為暴動殺手"}],"trade":{"ids":{"explicit":["explicit.stat_254194892"],"fractured":["fractured.stat_254194892"]}}} +{"ref":"1 Added Passive Skill is Rot-Resistant","better":1,"matchers":[{"string":"1 個附加的天賦為抗鏽"}],"trade":{"ids":{"explicit":["explicit.stat_713945233"],"fractured":["fractured.stat_713945233"]}}} +{"ref":"1 Added Passive Skill is Rote Reinforcement","better":1,"matchers":[{"string":"1 個附加的天賦為加強記憶"}],"trade":{"ids":{"explicit":["explicit.stat_2478282326"]}}} +{"ref":"1 Added Passive Skill is Rotten Claws","better":1,"matchers":[{"string":"1 個附加的天賦為腐鏽之爪"}],"trade":{"ids":{"explicit":["explicit.stat_2289610642"],"fractured":["fractured.stat_2289610642"]}}} +{"ref":"1 Added Passive Skill is Run Through","better":1,"matchers":[{"string":"1 個附加的天賦為迅速略過"}],"trade":{"ids":{"explicit":["explicit.stat_1488030420"],"fractured":["fractured.stat_1488030420"]}}} +{"ref":"1 Added Passive Skill is Sadist","better":1,"matchers":[{"string":"1 個附加的天賦為施虐者"}],"trade":{"ids":{"explicit":["explicit.stat_3638731729"],"fractured":["fractured.stat_3638731729"]}}} +{"ref":"1 Added Passive Skill is Sage","better":1,"matchers":[{"string":"1 個附加的天賦為哲人"}],"trade":{"ids":{"explicit":["explicit.stat_478147593"],"fractured":["fractured.stat_478147593"]}}} +{"ref":"1 Added Passive Skill is Sap Psyche","better":1,"matchers":[{"string":"1 個附加的天賦為心靈乾枯"}],"trade":{"ids":{"explicit":["explicit.stat_715786975"],"fractured":["fractured.stat_715786975"]}}} +{"ref":"1 Added Passive Skill is Savage Response","better":1,"matchers":[{"string":"1 個附加的天賦為殘暴應對"}],"trade":{"ids":{"explicit":["explicit.stat_4222635921"],"fractured":["fractured.stat_4222635921"]}}} +{"ref":"1 Added Passive Skill is Savour the Moment","better":1,"matchers":[{"string":"1 個附加的天賦為享受時光"}],"trade":{"ids":{"explicit":["explicit.stat_3539175001"],"fractured":["fractured.stat_3539175001"]}}} +{"ref":"1 Added Passive Skill is Scintillating Idea","better":1,"matchers":[{"string":"1 個附加的天賦為靈光乍現"}],"trade":{"ids":{"explicit":["explicit.stat_2589589781"],"fractured":["fractured.stat_2589589781"]}}} +{"ref":"1 Added Passive Skill is Seal Mender","better":1,"matchers":[{"string":"1 個附加的天賦為封口修補"}],"trade":{"ids":{"explicit":["explicit.stat_876846990"],"fractured":["fractured.stat_876846990"]}}} +{"ref":"1 Added Passive Skill is Second Skin","better":1,"matchers":[{"string":"1 個附加的天賦為換皮"}],"trade":{"ids":{"explicit":["explicit.stat_2773515950"],"fractured":["fractured.stat_2773515950"]}}} +{"ref":"1 Added Passive Skill is Seeker Runes","better":1,"matchers":[{"string":"1 個附加的天賦為符文探尋者"}],"trade":{"ids":{"explicit":["explicit.stat_2261237498"]}}} +{"ref":"1 Added Passive Skill is Self-Control","better":1,"matchers":[{"string":"1 個附加天賦為自制力"}],"trade":{"ids":{"explicit":["explicit.stat_3025453294"],"fractured":["fractured.stat_3025453294"]}}} +{"ref":"1 Added Passive Skill is Self-Fulfilling Prophecy","better":1,"matchers":[{"string":"1 個附加的天賦為自我實現預言"}],"trade":{"ids":{"explicit":["explicit.stat_2644533453"]}}} +{"ref":"1 Added Passive Skill is Septic Spells","better":1,"matchers":[{"string":"1 個附加的天賦為腐爛法術"}],"trade":{"ids":{"explicit":["explicit.stat_4290522695"],"fractured":["fractured.stat_4290522695"]}}} +{"ref":"1 Added Passive Skill is Set and Forget","better":1,"matchers":[{"string":"1 個附加的天賦為設定和遺忘"}],"trade":{"ids":{"explicit":["explicit.stat_1101250813"],"fractured":["fractured.stat_1101250813"]}}} +{"ref":"1 Added Passive Skill is Shifting Shadow","better":1,"matchers":[{"string":"1 個附加的天賦為替換陰影"}],"trade":{"ids":{"explicit":["explicit.stat_1476913894"]}}} +{"ref":"1 Added Passive Skill is Shrieking Bolts","better":1,"matchers":[{"string":"1 個附加的天賦為尖嘯音波"}],"trade":{"ids":{"explicit":["explicit.stat_2783012144"],"fractured":["fractured.stat_2783012144"]}}} +{"ref":"1 Added Passive Skill is Skeletal Atrophy","better":1,"matchers":[{"string":"1 個附加的天賦為骷髏萎縮"}],"trade":{"ids":{"explicit":["explicit.stat_1290215329"],"fractured":["fractured.stat_1290215329"]}}} +{"ref":"1 Added Passive Skill is Skullbreaker","better":1,"matchers":[{"string":"1 個附加的天賦為碎骨者"}],"trade":{"ids":{"explicit":["explicit.stat_315697256"],"fractured":["fractured.stat_315697256"]}}} +{"ref":"1 Added Passive Skill is Sleepless Sentries","better":1,"matchers":[{"string":"1 個附加的天賦為無眠哨兵"}],"trade":{"ids":{"explicit":["explicit.stat_3993957711"],"fractured":["fractured.stat_3993957711"]}}} +{"ref":"1 Added Passive Skill is Smite the Weak","better":1,"matchers":[{"string":"1 個附加的天賦為弱點打擊"}],"trade":{"ids":{"explicit":["explicit.stat_540300548"],"fractured":["fractured.stat_540300548"]}}} +{"ref":"1 Added Passive Skill is Smoking Remains","better":1,"matchers":[{"string":"1 個附加的天賦為殘煙"}],"trade":{"ids":{"explicit":["explicit.stat_2322980282"],"fractured":["fractured.stat_2322980282"]}}} +{"ref":"1 Added Passive Skill is Snaring Spirits","better":1,"matchers":[{"string":"1 個附加的天賦為咆嘯靈魂"}],"trade":{"ids":{"explicit":["explicit.stat_3319205340"]}}} +{"ref":"1 Added Passive Skill is Snowstorm","better":1,"matchers":[{"string":"1 個附加的天賦為暴風雪"}],"trade":{"ids":{"explicit":["explicit.stat_1595367309"],"fractured":["fractured.stat_1595367309"]}}} +{"ref":"1 Added Passive Skill is Special Reserve","better":1,"matchers":[{"string":"1 個附加的天賦為特別保留"}],"trade":{"ids":{"explicit":["explicit.stat_4235300427"],"fractured":["fractured.stat_4235300427"]}}} +{"ref":"1 Added Passive Skill is Spiked Concoction","better":1,"matchers":[{"string":"1 個附加的天賦為尖刺混物"}],"trade":{"ids":{"explicit":["explicit.stat_3372255769"],"fractured":["fractured.stat_3372255769"]}}} +{"ref":"1 Added Passive Skill is Spiteful Presence","better":1,"matchers":[{"string":"1 個附加天賦為惡意光環"}],"trade":{"ids":{"explicit":["explicit.stat_1134501245"],"fractured":["fractured.stat_1134501245"]}}} +{"ref":"1 Added Passive Skill is Spring Back","better":1,"matchers":[{"string":"1 個附加的天賦為彈回"}],"trade":{"ids":{"explicit":["explicit.stat_3603695769"],"fractured":["fractured.stat_3603695769"]}}} +{"ref":"1 Added Passive Skill is Steady Torment","better":1,"matchers":[{"string":"1 個附加的天賦為持續折磨"}],"trade":{"ids":{"explicit":["explicit.stat_3500334379"],"fractured":["fractured.stat_3500334379"]}}} +{"ref":"1 Added Passive Skill is Stoic Focus","better":1,"matchers":[{"string":"1 個附加的天賦為專注禁慾"}],"trade":{"ids":{"explicit":["explicit.stat_1088949570"]}}} +{"ref":"1 Added Passive Skill is Storm Drinker","better":1,"matchers":[{"string":"1 個附加的天賦為風暴狂飲"}],"trade":{"ids":{"explicit":["explicit.stat_2087561637"],"fractured":["fractured.stat_2087561637"]}}} +{"ref":"1 Added Passive Skill is Storm's Hand","better":1,"matchers":[{"string":"1 個附加的天賦為風暴之手"}],"trade":{"ids":{"explicit":["explicit.stat_1122051203"],"fractured":["fractured.stat_1122051203"]}}} +{"ref":"1 Added Passive Skill is Stormrider","better":1,"matchers":[{"string":"1 個附加的天賦為風暴馭者"}],"trade":{"ids":{"explicit":["explicit.stat_889728548"],"fractured":["fractured.stat_889728548"]}}} +{"ref":"1 Added Passive Skill is Streamlined","better":1,"matchers":[{"string":"1 個附加的天賦為流線型"}],"trade":{"ids":{"explicit":["explicit.stat_1397498432"],"fractured":["fractured.stat_1397498432"]}}} +{"ref":"1 Added Passive Skill is Strike Leader","better":1,"matchers":[{"string":"1 個附加的天賦為罷工領袖"}],"trade":{"ids":{"explicit":["explicit.stat_282062371"],"fractured":["fractured.stat_282062371"]}}} +{"ref":"1 Added Passive Skill is Stubborn Student","better":1,"matchers":[{"string":"1 個附加的天賦為頑固學生"}],"trade":{"ids":{"explicit":["explicit.stat_2383914651"]}}} +{"ref":"1 Added Passive Skill is Student of Decay","better":1,"matchers":[{"string":"1 個附加的天賦為腐朽之徒"}],"trade":{"ids":{"explicit":["explicit.stat_3202667190"],"fractured":["fractured.stat_3202667190"]}}} +{"ref":"1 Added Passive Skill is Sublime Form","better":1,"matchers":[{"string":"1 個附加天賦為昇華之型"}],"trade":{"ids":{"explicit":["explicit.stat_2251304016"],"fractured":["fractured.stat_2251304016"]}}} +{"ref":"1 Added Passive Skill is Sublime Sensation","better":1,"matchers":[{"string":"1 個附加的天賦為崇高之覺"}],"trade":{"ids":{"explicit":["explicit.stat_1364858171"],"fractured":["fractured.stat_1364858171"]}}} +{"ref":"1 Added Passive Skill is Surefooted Striker","better":1,"matchers":[{"string":"1 個附加的天賦為踏實打手"}],"trade":{"ids":{"explicit":["explicit.stat_3410752193"],"fractured":["fractured.stat_3410752193"]}}} +{"ref":"1 Added Passive Skill is Surging Vitality","better":1,"matchers":[{"string":"1 個附加的天賦為活力湧現"}],"trade":{"ids":{"explicit":["explicit.stat_2410501331"],"fractured":["fractured.stat_2410501331"]}}} +{"ref":"1 Added Passive Skill is Surprise Sabotage","better":1,"matchers":[{"string":"1 個附加的天賦為驚喜破壞"}],"trade":{"ids":{"explicit":["explicit.stat_3051562738"],"fractured":["fractured.stat_3051562738"]}}} +{"ref":"1 Added Passive Skill is Tempered Arrowheads","better":1,"matchers":[{"string":"1 個附加的天賦為鍛煉的箭頭"}],"trade":{"ids":{"explicit":["explicit.stat_2631806437"],"fractured":["fractured.stat_2631806437"]}}} +{"ref":"1 Added Passive Skill is Tempt the Storm","better":1,"matchers":[{"string":"1 個附加天賦為誘惑風暴"}],"trade":{"ids":{"explicit":["explicit.stat_348883745"]}}} +{"ref":"1 Added Passive Skill is Thaumophage","better":1,"matchers":[{"string":"1 個附加的天賦為噬菌體"}],"trade":{"ids":{"explicit":["explicit.stat_177215332"],"fractured":["fractured.stat_177215332"]}}} +{"ref":"1 Added Passive Skill is Thunderstruck","better":1,"matchers":[{"string":"1 個附加的天賦為雷擊"}],"trade":{"ids":{"explicit":["explicit.stat_1741700339"],"fractured":["fractured.stat_1741700339"]}}} +{"ref":"1 Added Passive Skill is Titanic Swings","better":1,"matchers":[{"string":"1 個附加的天賦為泰坦揮擊"}],"trade":{"ids":{"explicit":["explicit.stat_2930275641"],"fractured":["fractured.stat_2930275641"]}}} +{"ref":"1 Added Passive Skill is Touch of Cruelty","better":1,"matchers":[{"string":"1 個附加的天賦為殘酷之觸"}],"trade":{"ids":{"explicit":["explicit.stat_2780712583"],"fractured":["fractured.stat_2780712583"]}}} +{"ref":"1 Added Passive Skill is Towering Threat","better":1,"matchers":[{"string":"1 個附加的天賦為聳天威脅"}],"trade":{"ids":{"explicit":["explicit.stat_3536778624"],"fractured":["fractured.stat_3536778624"]}}} +{"ref":"1 Added Passive Skill is Uncompromising","better":1,"matchers":[{"string":"1 個附加天賦為永不妥協"}],"trade":{"ids":{"explicit":["explicit.stat_382360671"],"fractured":["fractured.stat_382360671"]}}} +{"ref":"1 Added Passive Skill is Unholy Grace","better":1,"matchers":[{"string":"1 個附加的天賦為不潔優雅"}],"trade":{"ids":{"explicit":["explicit.stat_4186213466"],"fractured":["fractured.stat_4186213466"]}}} +{"ref":"1 Added Passive Skill is Unrestrained Focus","better":1,"matchers":[{"string":"1 個附加的天賦為無縛專注"}],"trade":{"ids":{"explicit":["explicit.stat_1570474940"]}}} +{"ref":"1 Added Passive Skill is Unspeakable Gifts","better":1,"matchers":[{"string":"1 個附加的天賦為不可描述之贈"}],"trade":{"ids":{"explicit":["explicit.stat_729163974"],"fractured":["fractured.stat_729163974"]}}} +{"ref":"1 Added Passive Skill is Untouchable","better":1,"matchers":[{"string":"1 個附加的天賦為不能觸碰"}],"trade":{"ids":{"explicit":["explicit.stat_2758966888"],"fractured":["fractured.stat_2758966888"]}}} +{"ref":"1 Added Passive Skill is Unwavering Focus","better":1,"matchers":[{"string":"1 個附加的天賦為堅定專注"}],"trade":{"ids":{"explicit":["explicit.stat_367638058"]}}} +{"ref":"1 Added Passive Skill is Unwaveringly Evil","better":1,"matchers":[{"string":"1 個附加的天賦為堅定邪靈"}],"trade":{"ids":{"explicit":["explicit.stat_2788982914"],"fractured":["fractured.stat_2788982914"]}}} +{"ref":"1 Added Passive Skill is Vast Power","better":1,"matchers":[{"string":"1 個附加的天賦為投入力量"}],"trade":{"ids":{"explicit":["explicit.stat_1996576560"],"fractured":["fractured.stat_1996576560"]}}} +{"ref":"1 Added Passive Skill is Veteran Defender","better":1,"matchers":[{"string":"1 個附加的天賦為防禦老手"}],"trade":{"ids":{"explicit":["explicit.stat_664010431"],"fractured":["fractured.stat_664010431"]}}} +{"ref":"1 Added Passive Skill is Vicious Bite","better":1,"matchers":[{"string":"1 個附加的天賦為惡毒之咬"}],"trade":{"ids":{"explicit":["explicit.stat_882876854"],"fractured":["fractured.stat_882876854"]}}} +{"ref":"1 Added Passive Skill is Vicious Guard","better":1,"matchers":[{"string":"1 個附加的天賦為惡毒護衛"}],"trade":{"ids":{"explicit":["explicit.stat_4054656914"]}}} +{"ref":"1 Added Passive Skill is Vicious Skewering","better":1,"matchers":[{"string":"1 個附加的天賦為惡毒穿刺"}],"trade":{"ids":{"explicit":["explicit.stat_567971948"],"fractured":["fractured.stat_567971948"]}}} +{"ref":"1 Added Passive Skill is Victim Maker","better":1,"matchers":[{"string":"1 個附加的天賦為加害人"}],"trade":{"ids":{"explicit":["explicit.stat_1936135020"],"fractured":["fractured.stat_1936135020"]}}} +{"ref":"1 Added Passive Skill is Vile Reinvigoration","better":1,"matchers":[{"string":"1 個附加的天賦為復興邪惡"}],"trade":{"ids":{"explicit":["explicit.stat_647201233"],"fractured":["fractured.stat_647201233"]}}} +{"ref":"1 Added Passive Skill is Vital Focus","better":1,"matchers":[{"string":"1 個附加的天賦為活力專注"}],"trade":{"ids":{"explicit":["explicit.stat_2134141047"]}}} +{"ref":"1 Added Passive Skill is Vivid Hues","better":1,"matchers":[{"string":"1 個附加的天賦為生動色調"}],"trade":{"ids":{"explicit":["explicit.stat_3957006524"]}}} +{"ref":"1 Added Passive Skill is Volatile Presence","better":1,"matchers":[{"string":"1 個附加天賦為變動光環"}],"trade":{"ids":{"explicit":["explicit.stat_2350668735"],"fractured":["fractured.stat_2350668735"]}}} +{"ref":"1 Added Passive Skill is Wall of Muscle","better":1,"matchers":[{"string":"1 個附加的天賦為肉璧"}],"trade":{"ids":{"explicit":["explicit.stat_1363668533"],"fractured":["fractured.stat_1363668533"]}}} +{"ref":"1 Added Passive Skill is Warning Call","better":1,"matchers":[{"string":"1 個附加的天賦為預警呼喚"}],"trade":{"ids":{"explicit":["explicit.stat_578355556"]}}} +{"ref":"1 Added Passive Skill is Wasting Affliction","better":1,"matchers":[{"string":"1 個附加的天賦為耗盡苦難"}],"trade":{"ids":{"explicit":["explicit.stat_2066820199"],"fractured":["fractured.stat_2066820199"]}}} +{"ref":"1 Added Passive Skill is Weight Advantage","better":1,"matchers":[{"string":"1 個附加的天賦為優勢權重"}],"trade":{"ids":{"explicit":["explicit.stat_2244243943"],"fractured":["fractured.stat_2244243943"]}}} +{"ref":"1 Added Passive Skill is Wicked Pall","better":1,"matchers":[{"string":"1 個附加的天賦為邪惡棺木"}],"trade":{"ids":{"explicit":["explicit.stat_1616734644"],"fractured":["fractured.stat_1616734644"]}}} +{"ref":"1 Added Passive Skill is Widespread Destruction","better":1,"matchers":[{"string":"1 個附加的天賦為毀滅擴散"}],"trade":{"ids":{"explicit":["explicit.stat_1678643716"],"fractured":["fractured.stat_1678643716"]}}} +{"ref":"1 Added Passive Skill is Will Shaper","better":1,"matchers":[{"string":"1 個附加的天賦為意志雕塑"}],"trade":{"ids":{"explicit":["explicit.stat_1162352537"]}}} +{"ref":"1 Added Passive Skill is Wind-up","better":1,"matchers":[{"string":"1 個附加的天賦為風起"}],"trade":{"ids":{"explicit":["explicit.stat_1938661964"],"fractured":["fractured.stat_1938661964"]}}} +{"ref":"1 Added Passive Skill is Winter Prowler","better":1,"matchers":[{"string":"1 個附加的天賦為冬季竊賊"}],"trade":{"ids":{"explicit":["explicit.stat_755881431"],"fractured":["fractured.stat_755881431"]}}} +{"ref":"1 Added Passive Skill is Wizardry","better":1,"matchers":[{"string":"1 個附加的天賦為巫術"}],"trade":{"ids":{"explicit":["explicit.stat_3078065247"]}}} +{"ref":"1 Added Passive Skill is Wound Aggravation","better":1,"matchers":[{"string":"1 個附加的天賦為創傷加劇"}],"trade":{"ids":{"explicit":["explicit.stat_69078820"],"fractured":["fractured.stat_69078820"]}}} +{"ref":"1 Added Passive Skill is Wrapped in Flame","better":1,"matchers":[{"string":"1 個附加的天賦為火焰包覆"}],"trade":{"ids":{"explicit":["explicit.stat_241783558"],"fractured":["fractured.stat_241783558"]}}} +{"ref":"1% increased Armour per # Strength when in Off Hand","better":1,"matchers":[{"string":"在副手,每 # 力量增加 1% 護甲"}],"trade":{"ids":{"explicit":["explicit.stat_2192181096"]}}} +{"ref":"1% increased Attack Damage per 200 of the lowest of Armour and Evasion Rating","better":1,"matchers":[{"string":"護甲與閃避值兩者較低的數值每 200 點增加 1% 攻擊傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1358422215"]}}} +{"ref":"1% increased Claw Physical Damage per # Dexterity Allocated in Radius","better":1,"matchers":[{"string":"範圍內配置每 # 敏捷增加爪類武器 1% 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1619923327"]}}} +{"ref":"1% increased Damage per # Strength when in Main Hand","better":1,"matchers":[{"string":"在主手,每 # 力量增加 1% 傷害"}],"trade":{"ids":{"explicit":["explicit.stat_679194784"]}}} +{"ref":"1% increased Evasion Rating per # Dexterity Allocated in Radius","better":1,"matchers":[{"string":"範圍內配置每 # 敏捷增加 1% 閃避值"}],"trade":{"ids":{"explicit":["explicit.stat_4113852051"]}}} +{"ref":"1% increased Melee Physical Damage with Unarmed Attacks per # Dexterity Allocated in Radius","better":1,"matchers":[{"string":"空手時範圍內每分配 # 敏捷增加 1% 近戰物理傷害"},{"string":"空手時範圍內每分配 # 敏捷減少 1% 近戰物理傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_915233352"]}}} +{"ref":"1% increased Movement Speed per # Evasion Rating, up to 75%","better":1,"matchers":[{"string":"每 # 閃避值增加 1% 移動速度,最多 75%"}],"trade":{"ids":{"explicit":["explicit.stat_2591020064"]}}} +{"ref":"1% increased Rarity of Items found per # Rampage Kills","better":1,"matchers":[{"string":"每 # 暴怒擊殺增加 1% 物品稀有度"}],"trade":{"ids":{"explicit":["explicit.stat_4260403588"],"fractured":["fractured.stat_4260403588"]}}} +{"ref":"1% less Damage Taken per # Dexterity","better":1,"matchers":[{"string":"每 # 點敏捷,承受 1% 更少傷害"}],"trade":{"ids":{"implicit":["implicit.stat_824762042"]}}} +{"ref":"1% less Damage Taken per # Intelligence","better":1,"matchers":[{"string":"每 # 點智慧,承受 1% 更少傷害"}],"trade":{"ids":{"implicit":["implicit.stat_2874488491"]}}} +{"ref":"1% less Damage Taken per # Strength","better":1,"matchers":[{"string":"每 # 點力量,承受 1% 更少傷害"}],"trade":{"ids":{"implicit":["implicit.stat_1871491972"]}}} +{"ref":"35% chance to avoid being Stunned for each Herald Buff affecting you","better":1,"matchers":[{"string":"每個影響你的捷光環增益效果有 35% 機率避免被暈眩"}],"trade":{"ids":{"explicit":["explicit.stat_1493090598"]}}} +{"ref":"Acrobatics","better":1,"matchers":[{"string":"移形換影"}],"trade":{"ids":{"explicit":["explicit.stat_383557755"],"fractured":["fractured.stat_383557755"],"scourge":["scourge.stat_383557755"]}}} +{"ref":"Action Speed cannot be modified to below #% of base value","better":1,"matchers":[{"string":"行動速度不能被調整至低於 #% 基礎值"}],"trade":{"ids":{"scourge":["scourge.stat_770490590"]}}} +{"ref":"Action Speed cannot be modified to below Base Value","better":1,"matchers":[{"string":"行動速度不能被調整至低於基礎值"}],"trade":{"ids":{"explicit":["explicit.stat_628716294"]}}} +{"ref":"Action Speed cannot be modified to below Base Value if you've cast Temporal Chains in the past 10 seconds","better":1,"matchers":[{"string":"若你過去 10 秒有施放時空鎖鏈,行動速度不能被降低至基礎值以下"}],"trade":{"ids":{"explicit":["explicit.stat_3616500790"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Area of Effect","better":1,"matchers":[{"string":"附加的小型天賦給予:增加 #% 範圍效果"}],"trade":{"ids":{"explicit":["explicit.stat_713280739"],"fractured":["fractured.stat_713280739"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Area of Effect of Aura Skills","better":1,"matchers":[{"string":"附加的小型天賦給予:增加 #% 光環技能的範圍效果"}],"trade":{"ids":{"explicit":["explicit.stat_2642917409"],"fractured":["fractured.stat_2642917409"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Area of Effect of Hex Skills","better":1,"matchers":[{"string":"附加的小天賦給予:增加 #% 咒術技能範圍效果"}],"trade":{"ids":{"explicit":["explicit.stat_2138819920"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed while affected by a Herald","better":1,"matchers":[{"string":"附加的小型天賦給予:被捷光環影響時增加 #% 攻擊和施放速度"}],"trade":{"ids":{"explicit":["explicit.stat_3262895685"],"fractured":["fractured.stat_3262895685"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Chaos Skills","better":1,"matchers":[{"string":"附加的小型天賦給予:混沌技能增加 #% 攻擊和施放速度"}],"trade":{"ids":{"explicit":["explicit.stat_3692167527"],"fractured":["fractured.stat_3692167527"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Cold Skills","better":1,"matchers":[{"string":"附加的小型天賦給予:冰冷技能增加 #% 攻擊和施放速度"}],"trade":{"ids":{"explicit":["explicit.stat_2054530657"],"fractured":["fractured.stat_2054530657"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Elemental Skills","better":1,"matchers":[{"string":"附加的小型天賦給予:元素技能增加 #% 攻擊和施放速度"}],"trade":{"ids":{"explicit":["explicit.stat_2699118751"],"fractured":["fractured.stat_2699118751"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Fire Skills","better":1,"matchers":[{"string":"附加的小型天賦給予:火焰技能增加 #% 攻擊和施放速度"}],"trade":{"ids":{"explicit":["explicit.stat_1849042097"],"fractured":["fractured.stat_1849042097"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Lightning Skills","better":1,"matchers":[{"string":"附加的小型天賦給予:閃電技能增加 #% 攻擊和施放速度"}],"trade":{"ids":{"explicit":["explicit.stat_201731102"],"fractured":["fractured.stat_201731102"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Physical Skills","better":1,"matchers":[{"string":"附加的小型天賦給予:物理技能增加 #% 攻擊和施放速度"}],"trade":{"ids":{"explicit":["explicit.stat_1903097619"],"fractured":["fractured.stat_1903097619"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Attack Speed","better":1,"matchers":[{"string":"附加的小型天賦給予:增加 #% 攻擊速度"}],"trade":{"ids":{"explicit":["explicit.stat_1411310186"],"fractured":["fractured.stat_1411310186"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Brand Attachment range","better":1,"matchers":[{"string":"附加的小天賦給予:增加 #% 烙印附著距離"}],"trade":{"ids":{"explicit":["explicit.stat_2265469693"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Cast Speed","better":1,"matchers":[{"string":"附加的小型天賦給予:增加 #% 施放速度"}],"trade":{"ids":{"explicit":["explicit.stat_1195353227"],"fractured":["fractured.stat_1195353227"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Damage","better":1,"matchers":[{"string":"附加的小天賦給予:增加 #% 傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1719521705"],"fractured":["fractured.stat_1719521705"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Damage over Time","better":1,"matchers":[{"string":"附加的小天賦給予:增加 #% 持續傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2401834120"],"fractured":["fractured.stat_2401834120"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Duration of Elemental Ailments on Enemies","better":1,"matchers":[{"string":"附加的小型天賦給予:增加 #% 敵人身上元素異常狀態持續時間"}],"trade":{"ids":{"explicit":["explicit.stat_3338465330"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Flask Charges gained","better":1,"matchers":[{"string":"附加的小天賦給予:增加 #% 獲得藥劑充能"}],"trade":{"ids":{"explicit":["explicit.stat_3187805501"],"fractured":["fractured.stat_3187805501"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Mana Regeneration Rate","better":1,"matchers":[{"string":"附加的小天賦給予:增加 #% 魔力回復率"}],"trade":{"ids":{"explicit":["explicit.stat_2474836297"],"fractured":["fractured.stat_2474836297"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Projectile Speed","better":1,"matchers":[{"string":"附加的小型天賦給予:增加 #% 投射物速度"}],"trade":{"ids":{"explicit":["explicit.stat_679080252"],"fractured":["fractured.stat_679080252"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Totem Placement speed","better":1,"matchers":[{"string":"附加的小天賦給予:增加 #% 圖騰放置速度"}],"trade":{"ids":{"explicit":["explicit.stat_1588674629"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Trap and Mine Throwing Speed","better":1,"matchers":[{"string":"附加的小天賦給予:增加 #% 陷阱和地雷投擲速度"}],"trade":{"ids":{"explicit":["explicit.stat_2135246244"],"fractured":["fractured.stat_2135246244"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Warcry Duration","better":1,"matchers":[{"string":"附加的小天賦給予:增加 #% 戰吼持續時間"}],"trade":{"ids":{"explicit":["explicit.stat_2596487673"]}}} +{"ref":"Added Small Passive Skills also grant: +# to All Attributes","better":1,"matchers":[{"string":"附加的小型天賦給予:# 全能力"}],"trade":{"ids":{"explicit":["explicit.stat_4036575250"],"fractured":["fractured.stat_4036575250"]}}} +{"ref":"Added Small Passive Skills also grant: +# to Armour","better":1,"matchers":[{"string":"附加的小型天賦給予:# 護甲"}],"trade":{"ids":{"explicit":["explicit.stat_2554466725"],"fractured":["fractured.stat_2554466725"]}}} +{"ref":"Added Small Passive Skills also grant: +# to Dexterity","better":1,"matchers":[{"string":"附加的小天賦給予:# 敏捷"}],"trade":{"ids":{"explicit":["explicit.stat_2090413987"],"fractured":["fractured.stat_2090413987"]}}} +{"ref":"Added Small Passive Skills also grant: +# to Evasion","better":1,"matchers":[{"string":"附加的小天賦給予:# 閃避"}],"trade":{"ids":{"explicit":["explicit.stat_4100161067"],"fractured":["fractured.stat_4100161067"]}}} +{"ref":"Added Small Passive Skills also grant: +# to Intelligence","better":1,"matchers":[{"string":"附加的小天賦給予:# 智慧"}],"trade":{"ids":{"explicit":["explicit.stat_724930776"],"fractured":["fractured.stat_724930776"]}}} +{"ref":"Added Small Passive Skills also grant: +# to Maximum Energy Shield","better":1,"matchers":[{"string":"附加的小天賦給予:# 最大能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_2643685329"],"fractured":["fractured.stat_2643685329"]}}} +{"ref":"Added Small Passive Skills also grant: +# to Maximum Life","better":1,"matchers":[{"string":"附加的小天賦給予:# 最大生命"}],"trade":{"ids":{"explicit":["explicit.stat_3819827377"],"fractured":["fractured.stat_3819827377"]}}} +{"ref":"Added Small Passive Skills also grant: +# to Maximum Mana","better":1,"matchers":[{"string":"附加的小天賦給予:# 最大魔力"}],"trade":{"ids":{"explicit":["explicit.stat_3994193163"],"fractured":["fractured.stat_3994193163"]}}} +{"ref":"Added Small Passive Skills also grant: +# to Strength","better":1,"matchers":[{"string":"附加的小天賦給予:# 力量"}],"trade":{"ids":{"explicit":["explicit.stat_3258414199"],"fractured":["fractured.stat_3258414199"]}}} +{"ref":"Added Small Passive Skills also grant: +#% to all Elemental Resistances","better":1,"matchers":[{"string":"附加的小天賦給予:#% 全部元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_2669029667"],"fractured":["fractured.stat_2669029667"]}}} +{"ref":"Added Small Passive Skills also grant: +#% to Chaos Resistance","better":1,"matchers":[{"string":"附加的小天賦給予:#% 混沌抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1811604576"],"fractured":["fractured.stat_1811604576"]}}} +{"ref":"Added Small Passive Skills also grant: +#% to Cold Resistance","better":1,"matchers":[{"string":"附加的小天賦給予:#% 冰冷抗性"}],"trade":{"ids":{"explicit":["explicit.stat_2709692542"],"fractured":["fractured.stat_2709692542"]}}} +{"ref":"Added Small Passive Skills also grant: +#% to Critical Strike Multiplier","better":1,"matchers":[{"string":"附加的小型天賦給予:#% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_1926135629"],"fractured":["fractured.stat_1926135629"]}}} +{"ref":"Added Small Passive Skills also grant: +#% to Fire Resistance","better":1,"matchers":[{"string":"附加的小天賦給予:#% 火焰抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1790411851"],"fractured":["fractured.stat_1790411851"]}}} +{"ref":"Added Small Passive Skills also grant: +#% to Lightning Resistance","better":1,"matchers":[{"string":"附加的小天賦給予:#% 閃電抗性"}],"trade":{"ids":{"explicit":["explicit.stat_2250780084"],"fractured":["fractured.stat_2250780084"]}}} +{"ref":"Added Small Passive Skills also grant: Channelling Skills have #% increased Attack and Cast Speed","better":1,"matchers":[{"string":"附加的小型天賦給予:引導施放技能增加 #% 攻擊和施放速度"}],"trade":{"ids":{"explicit":["explicit.stat_3799759054"]}}} +{"ref":"Added Small Passive Skills also grant: Minions have #% increased Attack and Cast Speed","better":1,"matchers":[{"string":"附加的小天賦給予:召喚物增加 #% 攻擊和施放速度"}],"trade":{"ids":{"explicit":["explicit.stat_2310019673"],"fractured":["fractured.stat_2310019673"]}}} +{"ref":"Added Small Passive Skills also grant: Minions have #% increased Attack and Cast Speed while you are affected by a Herald","better":1,"matchers":[{"string":"附加的小天賦給予:你被捷光環影響時,召喚物增加 #% 攻擊和施放速度"}],"trade":{"ids":{"explicit":["explicit.stat_1948127742"],"fractured":["fractured.stat_1948127742"]}}} +{"ref":"Added Small Passive Skills also grant: Minions Regenerate #% of Life per Second","dp":true,"better":1,"matchers":[{"string":"附加的小天賦給予:召喚物每秒回復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_542238572"]}}} +{"ref":"Added Small Passive Skills also grant: Regenerate #% of Life per Second","dp":true,"better":1,"matchers":[{"string":"附加的小天賦給予:每秒回復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_3721672021"],"fractured":["fractured.stat_3721672021"]}}} +{"ref":"Added Small Passive Skills grant Nothing","better":1,"matchers":[{"string":"附加的小天賦沒有效果"}],"trade":{"ids":{"explicit":["explicit.stat_2557943734"]}}} +{"ref":"Added Small Passive Skills grant: #","better":0,"matchers":[{"string":"附加的小型天賦給予:斧攻擊增加 12% 擊中和異常狀態傷害\n附加的小型天賦給予:劍攻擊增加 12% 擊中和異常狀態傷害","value":1},{"string":"附加的小型天賦給予:增加 10% 法術傷害","value":10},{"string":"附加的小型天賦給予:增加 10% 元素傷害","value":11},{"string":"附加的小型天賦給予:增加 12% 物理傷害","value":12},{"string":"附加的小型天賦給予:增加 12% 火焰傷害","value":13},{"string":"附加的小型天賦給予:增加 12% 閃電傷害","value":14},{"string":"附加的小型天賦給予:增加 12% 冰冷傷害","value":15},{"string":"附加的小型天賦給予:增加 12% 混沌傷害","value":16},{"string":"附加的小型天賦給予:召喚物增加 10% 傷害","value":17},{"string":"附加的小型天賦給予:增加 12% 燃燒傷害","value":18},{"string":"附加的小型天賦給予:增加 12% 混沌持續傷害","value":19},{"string":"附加的小型天賦給予:長杖攻擊增加 12% 擊中和異常狀態傷害\n附加的小型天賦給予:錘或權杖攻擊增加 12% 擊中和異常狀態傷害","value":2},{"string":"附加的小型天賦給予:增加 12% 物理持續傷害","value":20},{"string":"附加的小型天賦給予:增加 12% 持續性冰冷傷害","value":21},{"string":"附加的小型天賦給予:增加 10% 持續傷害","value":22},{"string":"附加的小型天賦給予:增加 10% 非傷害型異常狀態的效果","value":23},{"string":"附加的小型天賦給予:增加 3% 你技能的非詛咒光環效果","value":24},{"string":"附加的小型天賦給予:被捷光環影響時,增加 10% 傷害","value":26},{"string":"附加的小型天賦給予:你被捷光環影響時,召喚物增加 10% 傷害","value":27},{"string":"附加的小型天賦給予:竭盡攻擊增加 20% 傷害","value":28},{"string":"附加的小型天賦給予:增加 15% 暴擊率","value":29},{"string":"附加的小型天賦給予:爪攻擊增加 12% 擊中和異常狀態傷害\n附加的小型天賦給予:匕首攻擊增加 12% 擊中和異常狀態傷害","value":3},{"string":"附加的小型天賦給予:召喚物增加 12% 最大生命","value":30},{"string":"附加的小型天賦給予:增加 10% 範圍傷害","value":31},{"string":"附加的小型天賦給予:增加 10% 投射物傷害","value":32},{"string":"附加的小型天賦給予:增加 12% 陷阱傷害\n附加的小型天賦給予:增加 12% 地雷傷害","value":33},{"string":"附加的小型天賦給予:增加 12% 圖騰傷害","value":34},{"string":"附加的小型天賦給予:增加 12% 烙印傷害","value":35},{"string":"附加的小型天賦給予:引導施放技能增加 12% 傷害","value":36},{"string":"附加的小型天賦給予:增加 6% 藥劑效果持續時間","value":37},{"string":"附加的小型天賦給予:增加 10% 來自藥劑的生命恢復\n附加的小型天賦給予:增加 10% 來自藥劑的魔力恢復","value":38},{"string":"附加的小型天賦給予:增加 4% 最大生命","value":39},{"string":"附加的小型天賦給予:持弓類武器時增加 12% 傷害\n附加的小型天賦給予:增加 12% 弓技能持續傷害","value":4},{"string":"附加的小型天賦給予:增加 6% 最大能量護盾","value":40},{"string":"附加的小型天賦給予:增加 6% 最大魔力","value":41},{"string":"附加的小型天賦給予:增加 15% 護甲","value":42},{"string":"附加的小型天賦給予:增加 15% 閃避值","value":43},{"string":"附加的小型天賦給予:+2% 攻擊傷害格擋率","value":44},{"string":"附加的小型天賦給予:2% 法術傷害格擋率","value":45},{"string":"附加的小型天賦給予:+15% 火焰抗性","value":46},{"string":"附加的小型天賦給予:+15% 冰冷抗性","value":47},{"string":"附加的小型天賦給予:+15% 閃電抗性","value":48},{"string":"附加的小型天賦給予:+12% 混沌抗性","value":49},{"string":"附加的小型天賦給予:法杖攻擊增加 12% 擊中和異常狀態傷害","value":5},{"string":"附加的小型天賦給予:+4% 壓抑法術傷害率","value":50},{"string":"附加的小型天賦給予:+10 力量","value":51},{"string":"附加的小型天賦給予:+10 敏捷","value":52},{"string":"附加的小型天賦給予:+10 智慧","value":53},{"string":"附加的小型天賦給予:增加 6% 技能的魔力保留效用","value":54},{"string":"附加的小型天賦給予:增加 2% 你所施放詛咒的效果","value":55},{"string":"附加的小型天賦給予:持雙手武器時增加 12% 傷害","value":6},{"string":"附加的小型天賦給予:雙持時增加 12% 攻擊傷害","value":7},{"string":"附加的小型天賦給予:持盾時增加 12% 攻擊傷害","value":8},{"string":"附加的小型天賦給予:增加 10% 攻擊傷害","value":9}],"trade":{"ids":{"enchant":["enchant.stat_3948993189"]},"option":true}} +{"ref":"Added Small Passive Skills have #% increased Effect","better":1,"matchers":[{"string":"附加的小天賦增加 #% 效果"}],"trade":{"ids":{"explicit":["explicit.stat_2618549697"],"fractured":["fractured.stat_2618549697"]}}} +{"ref":"Adds # Jewel Socket Passive Skills","better":1,"matchers":[{"string":"附加 # 個珠寶插槽天賦"},{"string":"附加 1 個珠寶插槽天賦","value":1}],"trade":{"ids":{"explicit":["explicit.stat_247746531"]}}} +{"ref":"Adds # minimum Cold Damage to Spells per Power Charge","better":1,"matchers":[{"string":"每顆暴擊球為法術附加 # 最小冰冷傷害"},{"string":"每顆暴擊球為法術附加 # 至 # 冰冷傷害"},{"string":"每顆暴擊球為法術附加 # 最大冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3408048164"],"fractured":["fractured.stat_3408048164"]}}} +{"ref":"Adds # Passive Skills","better":-1,"matchers":[{"string":"附加 # 個天賦"},{"string":"附加 1 個天賦","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3086156145"],"enchant":["enchant.stat_3086156145"]}}} +{"ref":"Adds # Small Passive Skills which grant nothing","better":-1,"matchers":[{"string":"# 個附加的小天賦沒有效果"},{"string":"1 個附加的小天賦沒有效果","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1085446536"]}}} +{"ref":"Adds # to # Chaos Damage","better":1,"matchers":[{"string":"附加 # 至 # 混沌傷害"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_chaos_damage"],"explicit":["explicit.stat_2223678961","explicit.stat_3531280422"],"implicit":["implicit.stat_2223678961","implicit.stat_3531280422"],"fractured":["fractured.stat_2223678961"],"enchant":["enchant.stat_2223678961"],"scourge":["scourge.stat_2223678961"]}}} +{"ref":"Adds # to # Chaos Damage for each Curse on the Enemy","better":1,"matchers":[{"string":"敵人身上每個詛咒附加 # 至 # 混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_4294344579"]}}} +{"ref":"Adds # to # Chaos Damage for each Spider's Web on the Enemy","better":1,"matchers":[{"string":"敵人身上每個蛛網附加 # 至 # 混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_982177653"]}}} +{"ref":"Adds # to # Chaos Damage if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"若你近期造成暴擊,附加 # 至 # 混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2523334466"],"fractured":["fractured.stat_2523334466"],"crafted":["crafted.stat_2523334466"]}}} +{"ref":"Adds # to # Chaos Damage if you've taken a Critical Strike Recently","better":1,"matchers":[{"string":"近期內你若有受到暴擊,短時間内附加 # 至 # 混沌傷害"}],"trade":{"ids":{"enchant":["enchant.stat_391609701"]}}} +{"ref":"Adds # to # Chaos Damage in Off Hand","better":1,"matchers":[{"string":"副手附加 # 至 # 混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3758293500"]}}} +{"ref":"Adds # to # Chaos Damage to Attacks","better":1,"matchers":[{"string":"攻擊附加 # 至 # 混沌傷害"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_chaos_damage_to_attacks"],"explicit":["explicit.stat_674553446"],"implicit":["implicit.stat_674553446"],"fractured":["fractured.stat_674553446"],"crafted":["crafted.stat_674553446"]}}} +{"ref":"Adds # to # Chaos Damage to Attacks per 80 Strength","better":1,"matchers":[{"string":"每 80 點力量使攻擊附加 # 至 # 混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_117885424"]}}} +{"ref":"Adds # to # Chaos Damage to Attacks while you have a Bestial Minion","better":1,"matchers":[{"string":"你有凶猛的召喚物時,附加 # 至 # 攻擊混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2152491486"]}}} +{"ref":"Adds # to # Chaos Damage to Spells","better":1,"matchers":[{"string":"法術附加 # 至 # 混沌傷害"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_chaos_damage_to_spells"],"explicit":["explicit.stat_2300399854"],"implicit":["implicit.stat_2300399854"],"fractured":["fractured.stat_2300399854"]}}} +{"ref":"Adds # to # Chaos Damage to Spells and Attacks during any Flask Effect","better":1,"matchers":[{"string":"在任何藥劑效果持續時間內,法術和攻擊附加 # 至 # 混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3519268108"]}}} +{"ref":"Adds # to # Cold Damage","better":1,"matchers":[{"string":"附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_cold_damage"],"explicit":["explicit.stat_1037193709","explicit.stat_2387423236"],"implicit":["implicit.stat_1037193709","implicit.stat_2387423236"],"fractured":["fractured.stat_1037193709","fractured.stat_2387423236"],"enchant":["enchant.stat_1037193709"],"scourge":["scourge.stat_1037193709"],"crafted":["crafted.stat_1037193709","crafted.stat_2387423236"]}}} +{"ref":"Adds # to # Cold Damage against Chilled Enemies","better":1,"matchers":[{"string":"對冰緩敵人附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3734640451"]}}} +{"ref":"Adds # to # Cold Damage against Chilled or Frozen Enemies","better":1,"matchers":[{"string":"對冰緩或冰凍的敵人附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2233361223"],"fractured":["fractured.stat_2233361223"]}}} +{"ref":"Adds # to # Cold Damage if you've been Hit Recently","better":1,"matchers":[{"string":"近期內你若有被擊中則附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"enchant":["enchant.stat_884399432"]}}} +{"ref":"Adds # to # Cold Damage if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"若你近期有造成暴擊,附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3370223014"],"fractured":["fractured.stat_3370223014"]}}} +{"ref":"Adds # to # Cold Damage in Off Hand","better":1,"matchers":[{"string":"副手附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2109066258"]}}} +{"ref":"Adds # to # Cold Damage to Attacks","better":1,"matchers":[{"string":"攻擊附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_cold_damage_to_attacks"],"explicit":["explicit.stat_4067062424"],"implicit":["implicit.stat_4067062424"],"fractured":["fractured.stat_4067062424"],"crafted":["crafted.stat_4067062424"]}}} +{"ref":"Adds # to # Cold Damage to Attacks per 10 Dexterity","better":1,"matchers":[{"string":"每 10 點敏捷攻擊附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_769783486"],"fractured":["fractured.stat_769783486"]}}} +{"ref":"Adds # to # Cold Damage to Attacks with this Weapon per 10 Dexterity","better":1,"matchers":[{"string":"每 10 點敏捷,使用此武器攻擊附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_149574107"],"implicit":["implicit.stat_149574107"]}}} +{"ref":"Adds # to # Cold Damage to Retaliation Skills","better":1,"matchers":[{"string":"復仇技能附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1109700751"]}}} +{"ref":"Adds # to # Cold Damage to Spells","better":1,"matchers":[{"string":"法術附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_cold_damage_to_spells"],"explicit":["explicit.stat_2469416729"],"implicit":["implicit.stat_2469416729"],"fractured":["fractured.stat_2469416729"],"scourge":["scourge.stat_2469416729"],"crafted":["crafted.stat_2469416729"]}}} +{"ref":"Adds # to # Cold Damage to Spells and Attacks","better":1,"matchers":[{"string":"攻擊和法術附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1662717006"],"implicit":["implicit.stat_1662717006"]}}} +{"ref":"Adds # to # Cold Damage to Spells while no Life is Reserved","better":1,"matchers":[{"string":"當沒有生命保留時法術附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_897996059"]}}} +{"ref":"Adds # to # Cold Damage while affected by Hatred","better":1,"matchers":[{"string":"被憎恨影響時附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2643562209"]}}} +{"ref":"Adds # to # Cold Damage while you have Avian's Might","better":1,"matchers":[{"string":"當你有飛羽意志附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3485231932"]}}} +{"ref":"Adds # to # Damage","better":1,"matchers":[{"string":"附加 # 至 # 傷害 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_damage"]}}} +{"ref":"Adds # to # Damage to Attacks","better":1,"matchers":[{"string":"攻擊附加 # 至 # 傷害 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_damage_to_attacks"]}}} +{"ref":"Adds # to # Damage to Spells","better":1,"matchers":[{"string":"法術附加 # 至 # 傷害 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_damage_to_spells"]}}} +{"ref":"Adds # to # Elemental Damage","better":1,"matchers":[{"string":"附加 # 至 # 元素傷害 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_elemental_damage"]}}} +{"ref":"Adds # to # Elemental Damage to Attacks","better":1,"matchers":[{"string":"攻擊附加 # 至 # 元素傷害 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_elemental_damage_to_attacks"]}}} +{"ref":"Adds # to # Elemental Damage to Spells","better":1,"matchers":[{"string":"法術附加 # 至 # 元素傷害 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_elemental_damage_to_spells"]}}} +{"ref":"Adds # to # Fire Attack Damage per Buff on you","better":1,"matchers":[{"string":"你身上的每個增益效果為你的攻擊附加 # 至 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_761505024"]}}} +{"ref":"Adds # to # Fire Damage","better":1,"matchers":[{"string":"附加 # 至 # 火焰傷害"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_fire_damage"],"explicit":["explicit.stat_321077055","explicit.stat_709508406"],"implicit":["implicit.stat_321077055","implicit.stat_709508406"],"fractured":["fractured.stat_321077055","fractured.stat_709508406"],"enchant":["enchant.stat_709508406"],"scourge":["scourge.stat_709508406"],"crafted":["crafted.stat_321077055","crafted.stat_709508406"]}}} +{"ref":"Adds # to # Fire Damage against Ignited Enemies","better":1,"matchers":[{"string":"對點燃的敵人附加 # 至 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_794830148"],"fractured":["fractured.stat_794830148"]}}} +{"ref":"Adds # to # Fire Damage if you've Blocked Recently","better":1,"matchers":[{"string":"若你近期有格擋,短時間內附加 # 至 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3623716321"],"fractured":["fractured.stat_3623716321"]}}} +{"ref":"Adds # to # Fire Damage if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"若你近期有造成暴擊,附加 # 至 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3144358296"],"fractured":["fractured.stat_3144358296"]}}} +{"ref":"Adds # to # Fire Damage if you've Killed Recently","better":1,"matchers":[{"string":"近期內你若有擊殺,短時間內附加 # 至 # 火焰傷害"}],"trade":{"ids":{"enchant":["enchant.stat_3077703716"]}}} +{"ref":"Adds # to # Fire Damage in Main Hand","better":1,"matchers":[{"string":"主手附加 # 至 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_169657426"]}}} +{"ref":"Adds # to # Fire Damage to Attacks","better":1,"matchers":[{"string":"攻擊附加 # 至 # 火焰傷害"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_fire_damage_to_attacks"],"explicit":["explicit.stat_1573130764"],"implicit":["implicit.stat_1573130764"],"fractured":["fractured.stat_1573130764"],"crafted":["crafted.stat_1573130764"]}}} +{"ref":"Adds # to # Fire Damage to Attacks against Ignited Enemies","better":1,"matchers":[{"string":"對點燃敵人攻擊時附加 # 至 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_627339348"]}}} +{"ref":"Adds # to # Fire Damage to Attacks per 10 Strength","better":1,"matchers":[{"string":"每 10 點力量攻擊附加 # 至 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_68673913"],"fractured":["fractured.stat_68673913"]}}} +{"ref":"Adds # to # Fire Damage to Attacks with this Weapon per 10 Strength","better":1,"matchers":[{"string":"使用此武器攻擊,每 10 點力量附加 # 至 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1060540099"],"implicit":["implicit.stat_1060540099"],"fractured":["fractured.stat_1060540099"]}}} +{"ref":"Adds # to # Fire Damage to Hits with this Weapon against Blinded Enemies","better":1,"matchers":[{"string":"用此武器擊中被致盲的敵人附加 # 至 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3977907993"]}}} +{"ref":"Adds # to # Fire Damage to Spells","better":1,"matchers":[{"string":"法術附加 # 至 # 火焰傷害"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_fire_damage_to_spells"],"explicit":["explicit.stat_1133016593"],"implicit":["implicit.stat_1133016593"],"fractured":["fractured.stat_1133016593"],"scourge":["scourge.stat_1133016593"],"crafted":["crafted.stat_1133016593"]}}} +{"ref":"Adds # to # Fire Damage to Spells and Attacks","better":1,"matchers":[{"string":"攻擊和法術附加 # 至 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3964634628"],"implicit":["implicit.stat_3964634628"]}}} +{"ref":"Adds # to # Fire Damage to Spells while no Life is Reserved","better":1,"matchers":[{"string":"當沒有生命保留時法術附加 # 至 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_833719670"]}}} +{"ref":"Adds # to # Fire Spell Damage per Buff on you","better":1,"matchers":[{"string":"你身上的每個增益效果為你的法術附加 # 至 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3434279150"]}}} +{"ref":"Adds # to # Lightning Damage","better":1,"matchers":[{"string":"附加 # 至 # 閃電傷害"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_lightning_damage"],"explicit":["explicit.stat_1334060246","explicit.stat_3336890334"],"implicit":["implicit.stat_1334060246","implicit.stat_3336890334"],"fractured":["fractured.stat_1334060246","fractured.stat_3336890334"],"enchant":["enchant.stat_3336890334"],"scourge":["scourge.stat_3336890334"],"crafted":["crafted.stat_1334060246","crafted.stat_3336890334"]}}} +{"ref":"Adds # to # Lightning Damage against Shocked Enemies","better":1,"matchers":[{"string":"對感電的敵人附加 # 至 # 閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_90012347"],"fractured":["fractured.stat_90012347"]}}} +{"ref":"Adds # to # Lightning Damage for each Shocked Enemy you've Killed Recently","better":1,"matchers":[{"string":"近期內每擊殺一個感電怪物獲得 # 至 # 附加閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_4222857095"],"fractured":["fractured.stat_4222857095"]}}} +{"ref":"Adds # to # Lightning Damage if you haven't Killed Recently","better":1,"matchers":[{"string":"近期內你若沒有擊殺則附加 # 至 # 閃電傷害"}],"trade":{"ids":{"enchant":["enchant.stat_1293597434"]}}} +{"ref":"Adds # to # Lightning Damage if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"若你近期有造成暴擊,附加 # 至 # 閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_935623115"],"fractured":["fractured.stat_935623115"]}}} +{"ref":"Adds # to # Lightning Damage to Attacks","better":1,"matchers":[{"string":"攻擊附加 # 至 # 閃電傷害"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_lightning_damage_to_attacks"],"explicit":["explicit.stat_1754445556"],"implicit":["implicit.stat_1754445556"],"fractured":["fractured.stat_1754445556"],"crafted":["crafted.stat_1754445556"]}}} +{"ref":"Adds # to # Lightning Damage to Attacks during Effect","better":1,"matchers":[{"string":"效果持續時間,攻擊附加 # 至 # 閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_4292531291"]}}} +{"ref":"Adds # to # Lightning Damage to Attacks per 10 Intelligence","better":1,"matchers":[{"string":"每 10 點智慧攻擊附加 # 至 # 閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3168149399"],"fractured":["fractured.stat_3168149399"]}}} +{"ref":"Adds # to # Lightning Damage to Attacks with this Weapon per 10 Dexterity","better":1,"matchers":[{"string":"使用此武器攻擊,每 10 點敏捷附加 # 至 # 閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_817611267"]}}} +{"ref":"Adds # to # Lightning Damage to Attacks with this Weapon per 10 Intelligence","better":1,"matchers":[{"string":"使用此武器攻擊,每 10 點智慧附加 # 至 # 閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3390848861"],"implicit":["implicit.stat_3390848861"],"fractured":["fractured.stat_3390848861"]}}} +{"ref":"Adds # to # Lightning Damage to Hits against Ignited Enemies","better":1,"matchers":[{"string":"對點燃的敵人攻擊時附加 # 至 # 閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2870108850"]}}} +{"ref":"Adds # to # Lightning Damage to Spells","better":1,"matchers":[{"string":"法術附加 # 至 # 閃電傷害"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_lightning_damage_to_spells"],"explicit":["explicit.stat_2831165374"],"implicit":["implicit.stat_2831165374"],"fractured":["fractured.stat_2831165374"],"scourge":["scourge.stat_2831165374"],"crafted":["crafted.stat_2831165374"]}}} +{"ref":"Adds # to # Lightning Damage to Spells and Attacks","better":1,"matchers":[{"string":"攻擊和法術附加 # 至 # 閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2885144362"],"implicit":["implicit.stat_2885144362"]}}} +{"ref":"Adds # to # Lightning Damage to Spells during Effect","better":1,"matchers":[{"string":"效果持續時間,法術附加 # 至 # 閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_4108305628"]}}} +{"ref":"Adds # to # Lightning Damage to Spells per Power Charge","better":1,"matchers":[{"string":"每顆暴擊球使法術附加 # 至 # 閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_4085417083"]}}} +{"ref":"Adds # to # Lightning Damage to Spells while no Life is Reserved","better":1,"matchers":[{"string":"當沒有生命保留時法術附加 # 至 # 閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_985999215"]}}} +{"ref":"Adds # to # Lightning Damage to Spells while Unarmed","better":1,"matchers":[{"string":"空手時法術附加 # 至 # 閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3597806437"]}}} +{"ref":"Adds # to # Lightning Damage to Unarmed Melee Hits","better":1,"matchers":[{"string":"附加 # 至 # 閃電傷害至空手近戰擊中"}],"trade":{"ids":{"explicit":["explicit.stat_3835522656"]}}} +{"ref":"Adds # to # Lightning Damage while you have Avian's Might","better":1,"matchers":[{"string":"當你有飛羽意志附加 # 至 # 閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_855634301"]}}} +{"ref":"Adds # to # Physical Damage","better":1,"matchers":[{"string":"附加 # 至 # 物理傷害"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_physical_damage"],"explicit":["explicit.stat_1940865751","explicit.stat_960081730"],"implicit":["implicit.stat_1940865751"],"fractured":["fractured.stat_1940865751"],"scourge":["scourge.stat_1940865751"],"crafted":["crafted.stat_1940865751"]}}} +{"ref":"Adds # to # Physical Damage against Bleeding Enemies","better":1,"matchers":[{"string":"對流血的敵人附加 # 至 # 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1244003614"]}}} +{"ref":"Adds # to # Physical Damage against Poisoned Enemies","better":1,"matchers":[{"string":"對中毒的敵人附加 # 至 # 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_424026624"]}}} +{"ref":"Adds # to # Physical Damage for each Impale on Enemy","better":1,"matchers":[{"string":"敵人身上每個穿刺附加 # 至 # 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1455766505"]}}} +{"ref":"Adds # to # Physical Damage if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"若你近期有造成暴擊,附加 # 至 # 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2723101291"]}}} +{"ref":"Adds # to # Physical Damage per Endurance Charge","better":1,"matchers":[{"string":"每顆耐力球附加 # 至 # 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_173438493"]}}} +{"ref":"Adds # to # Physical Damage to Attacks","better":1,"matchers":[{"string":"攻擊附加 # 至 # 物理傷害"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_physical_damage_to_attacks"],"explicit":["explicit.stat_3032590688"],"implicit":["implicit.stat_3032590688"],"fractured":["fractured.stat_3032590688"],"crafted":["crafted.stat_3032590688"]}}} +{"ref":"Adds # to # Physical Damage to Attacks against Frozen Enemies","better":1,"matchers":[{"string":"對冰凍敵人攻擊時附加 # 至 # 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3856468419"]}}} +{"ref":"Adds # to # Physical Damage to Attacks and Spells per Siphoning Charge","better":1,"matchers":[{"string":"每顆虹吸能量球使攻擊和法術附加 # 至 # 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3368671817"]}}} +{"ref":"Adds # to # Physical Damage to Attacks per 25 Dexterity","better":1,"matchers":[{"string":"每 25 點敏捷為攻擊附加 # 至 # 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2066426995"]}}} +{"ref":"Adds # to # Physical Damage to Attacks per 25 Strength","better":1,"matchers":[{"string":"每 25 點力量附加 # 至 # 物理傷害至攻擊"}],"trade":{"ids":{"explicit":["explicit.stat_787185456"]}}} +{"ref":"Adds # to # Physical Damage to Attacks per Level","better":1,"matchers":[{"string":"每個等級為你的攻擊附加 # 至 # 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3821472155"]}}} +{"ref":"Adds # to # Physical Damage to Attacks while you have a Bestial Minion","better":1,"matchers":[{"string":"你有凶猛的召喚物時,附加 # 至 # 攻擊物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_242822230"]}}} +{"ref":"Adds # to # Physical Damage to Attacks with this Weapon per 3 Player Levels","better":1,"matchers":[{"string":"使用此武器攻擊玩家每 3 等級附加 # 至 # 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1454603936"]}}} +{"ref":"Adds # to # Physical Damage to Spells","better":1,"matchers":[{"string":"法術附加 # 至 # 物理傷害"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_physical_damage_to_spells"],"explicit":["explicit.stat_2435536961"],"implicit":["implicit.stat_2435536961"],"fractured":["fractured.stat_2435536961"],"scourge":["scourge.stat_2435536961"]}}} +{"ref":"Adds 1 maximum Lightning Damage to Attacks per # Dexterity Allocated in Radius","better":1,"matchers":[{"string":"範圍內配置每 # 敏捷,攻擊附加 1 最大閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_778050954"]}}} +{"ref":"Adds 1 to Maximum Life per # Intelligence Allocated in Radius","better":1,"matchers":[{"string":"範圍內每配置 # 智慧增加 1 最大生命"}],"trade":{"ids":{"explicit":["explicit.stat_2865989731"]}}} +{"ref":"Adds Disciple of Kitava","better":1,"matchers":[{"string":"附加奇塔弗之律"}],"trade":{"ids":{"explicit":["explicit.stat_3860869243"]}}} +{"ref":"Adds Hollow Palm Technique","better":1,"matchers":[{"string":"附加空掌之術"}],"trade":{"ids":{"explicit":["explicit.stat_1376530950"]}}} +{"ref":"Adds Kineticism","better":1,"matchers":[{"string":"附加動力學"}],"trade":{"ids":{"explicit":["explicit.stat_1798719926"]}}} +{"ref":"Adds Knockback to Melee Attacks during Effect","better":1,"matchers":[{"string":"效果持續時間,近戰攻擊附加擊退敵人"}],"trade":{"ids":{"explicit":["explicit.stat_251342217"]}}} +{"ref":"Adds Lone Messenger","better":1,"matchers":[{"string":"附加孤獨信使"}],"trade":{"ids":{"explicit":["explicit.stat_1505850286"]}}} +{"ref":"Adds Nature's Patience","better":1,"matchers":[{"string":"附加自然之耐"}],"trade":{"ids":{"explicit":["explicit.stat_1360925132"]}}} +{"ref":"Adds Secrets of Suffering","better":1,"matchers":[{"string":"附加磨難秘辛"}],"trade":{"ids":{"explicit":["explicit.stat_56720831"]}}} +{"ref":"Adds Veteran's Awareness","better":1,"matchers":[{"string":"附加老鳥意識"}],"trade":{"ids":{"explicit":["explicit.stat_1379205566"]}}} +{"ref":"Agony Crawler deals #% increased Damage","better":1,"matchers":[{"string":"苦痛毒蛛蠍增加 #% 傷害"},{"string":"苦痛毒蛛蠍減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_786460697"]}}} +{"ref":"Alert Level increases by #% per second","dp":true,"better":1,"fromHeistAreaMods":true,"matchers":[{"string":"警戒等級每秒增加 #%"},{"string":"警戒等級每秒減少 #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3138486617"],"fractured":["fractured.stat_3138486617"]}}} +{"ref":"All Attack Damage Chills when you Stun","better":1,"matchers":[{"string":"擊暈時所有攻擊傷害造成冰緩"}],"trade":{"ids":{"explicit":["explicit.stat_2437193018"]}}} +{"ref":"All Damage from Hits with This Weapon can Poison","better":1,"matchers":[{"string":"使用此武器的全部擊中傷害會造成中毒"}],"trade":{"ids":{"implicit":["implicit.stat_264042990"]}}} +{"ref":"All Damage from Monsters' Hits can Poison","better":1,"fromUberAreaMods":true,"matchers":[{"string":"來自怪物擊中的所有傷害都可造成中毒"}],"trade":{"ids":{"explicit":["explicit.stat_3555807120"],"fractured":["fractured.stat_3555807120"]}}} +{"ref":"All Damage inflicts Poison against Enemies affected by at least # Grasping Vine","better":1,"matchers":[{"string":"對身上至少有 # 層緩速藤蔓的敵人,造成的全部傷害造成中毒"}],"trade":{"ids":{"explicit":["explicit.stat_3190526553"]}}} +{"ref":"All Damage inflicts Poison while affected by Glorious Madness","better":1,"matchers":[{"string":"被榮耀瘋癲影響時,所有傷害造成中毒"}],"trade":{"ids":{"explicit":["explicit.stat_3359218839"]}}} +{"ref":"All Damage Taken from Hits can Chill you","better":1,"matchers":[{"string":"來自擊中的全部傷害可以冰緩你"}],"trade":{"ids":{"explicit":["explicit.stat_244239777"]}}} +{"ref":"All Damage Taken from Hits can Ignite you","better":1,"matchers":[{"string":"承受來自擊中的全部傷害可以點燃你"}],"trade":{"ids":{"explicit":["explicit.stat_1405089557"]}}} +{"ref":"All Damage with Hits can Chill","better":1,"matchers":[{"string":"擊中的所有傷害都可以冰緩"}],"trade":{"ids":{"explicit":["explicit.stat_3833160777"]}}} +{"ref":"All Damage with Hits can Freeze","better":1,"matchers":[{"string":"全部傷害可以冰凍"},{"string":"所有傷害可以造成冰凍"},{"string":"擊中的所有傷害都可以冰凍"}],"trade":{"ids":{"explicit":["explicit.stat_4052117756"]}}} +{"ref":"All Damage with Hits can Ignite","better":1,"matchers":[{"string":"全部傷害可以點燃"},{"string":"所有傷害可以造成點燃"},{"string":"擊中的所有傷害都可以點燃"}],"trade":{"ids":{"explicit":["explicit.stat_1369840970"]}}} +{"ref":"All Elemental Damage Converted to Chaos Damage","better":1,"matchers":[{"string":"全部元素傷害轉化至混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2423544033"]}}} +{"ref":"All Monster Damage can Ignite, Freeze and Shock","better":1,"fromUberAreaMods":true,"matchers":[{"string":"全部怪物傷害可以點燃、冰凍和感電"}],"trade":{"ids":{"explicit":["explicit.stat_2919181457"],"fractured":["fractured.stat_2919181457"]}}} +{"ref":"All Monster Damage from Hits always Ignites","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"怪物傷害必定造成點燃"}],"trade":{"ids":{"explicit":["explicit.stat_816367946"],"fractured":["fractured.stat_816367946"]}}} +{"ref":"All Sockets are Blue","better":1,"matchers":[{"string":"全部插槽為藍色"}],"trade":{"ids":{"enchant":["enchant.stat_2803653753"]}}} +{"ref":"All Sockets are Green","better":1,"matchers":[{"string":"全部插槽為綠色"}],"trade":{"ids":{"enchant":["enchant.stat_2849380136"]}}} +{"ref":"All Sockets are Red","better":1,"matchers":[{"string":"全部插槽為紅色"}],"trade":{"ids":{"enchant":["enchant.stat_1918718830"]}}} +{"ref":"All Sockets are White","better":1,"matchers":[{"string":"所有插槽都是白色"}],"trade":{"ids":{"explicit":["explicit.stat_211836731"]}}} +{"ref":"All Sockets Linked","better":1,"matchers":[{"string":"所有插槽連線"}],"trade":{"ids":{"enchant":["enchant.stat_2740018301"]}}} +{"ref":"All Towers in range of your Empowering Towers have #% chance to deal Double Damage","better":1,"anointments":[{"roll":50,"oils":"13,13"}],"matchers":[{"string":"在你賦予塔範圍內的所有防守塔,有 #% 機率造成 2 倍傷害"},{"string":"在你賦予塔範圍內的所有防守塔,造成 2 倍傷害","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1959522666"]}}} +{"ref":"Allies' Aura Buffs do not affect you","better":1,"matchers":[{"string":"不能獲得友方光環效果"}],"trade":{"ids":{"explicit":["explicit.stat_1489905076"]}}} +{"ref":"Allocated Small Passive Skills in Radius grant nothing","better":1,"matchers":[{"string":"配置範圍內的小天賦不會獲得效果"}],"trade":{"ids":{"explicit":["explicit.stat_325204898"]}}} +{"ref":"Allocates #","better":0,"matchers":[{"string":"配置 處決者","value":10016,"oils":"3,4,6"},{"string":"配置 意志之力","value":1006,"oils":"2,2,11"},{"string":"配置 完美浪子","value":10115,"oils":"1,6,6"},{"string":"配置 寬容","value":10511,"oils":"9,9,11"},{"string":"配置 荊棘壁壘","value":10542,"oils":"1,2,5"},{"string":"配置 幻夢者","value":10835,"oils":"2,5,6"},{"string":"配置 奧術師之統御","value":11420,"oils":"1,9,10"},{"string":"配置 閃電之息","value":11645,"oils":"6,8,13"},{"string":"配置 耐力","value":11730,"oils":"1,10,13"},{"string":"配置 吸血主義","value":11784,"oils":"3,5,8"},{"string":"配置 聖油鮮肉","value":11820,"oils":"7,13,13"},{"string":"配置 火焰之息","value":11924,"oils":"4,6,13"},{"string":"配置 殘靈刀刃","value":12033,"oils":"3,4,7"},{"string":"配置 影響","value":12143,"oils":"4,5,13"},{"string":"配置 戰士之路","value":12702,"oils":"3,3,3"},{"string":"配置 俊敏","value":12795,"oils":"4,4,11"},{"string":"配置 狂戰之魂","value":12809,"oils":"1,2,11"},{"string":"配置 聖之審判","value":13164,"oils":"2,5,10"},{"string":"配置 魔像血統 ","value":1325,"oils":"5,13,13"},{"string":"配置 多重射擊","value":13375,"oils":"7,10,12"},{"string":"配置 壁壘","value":1340,"oils":"3,4,10"},{"string":"配置 知識屏障","value":1365,"oils":"0,11,12"},{"string":"配置 反抗立場","value":13703,"oils":"4,10,13"},{"string":"配置 保持憤怒","value":13739,"oils":"0,6,12"},{"string":"配置 精華抽取","value":1382,"oils":"4,4,4"},{"string":"配置 堅貞不渝","value":13922,"oils":"2,13,13"},{"string":"配置 戰鬥亢奮","value":13935,"oils":"7,12,13"},{"string":"配置 影刃","value":1405,"oils":"1,6,9"},{"string":"配置 木頭、石頭和法術","value":14079,"oils":"0,7,12"},{"string":"配置 適性之鋼","value":14587,"oils":"0,10,10"},{"string":"配置 屠戮","value":14606,"oils":"4,8,9"},{"string":"配置 聖之雷霆","value":14665,"oils":"3,3,11"},{"string":"配置 狂歡","value":14813,"oils":"3,8,10"},{"string":"配置 救贖","value":15046,"oils":"2,8,9"},{"string":"配置 卓越","value":15085,"oils":"3,6,10"},{"string":"配置 殘酷反駁","value":15226,"oils":"1,1,2"},{"string":"配置 看守塔","value":15290,"oils":"7,12,12"},{"string":"配置 解放行動","value":15344,"oils":"1,2,8"},{"string":"配置 飛掠符文","value":15400,"oils":"11,12,12"},{"string":"配置 偏斜","value":15437,"oils":"3,7,12"},{"string":"配置 鷹爪功","value":15614,"oils":"8,10,11"},{"string":"配置 致命之刃","value":1568,"oils":"3,11,11"},{"string":"配置 法術範圍增幅","value":15711,"oils":"1,4,11"},{"string":"配置 自然合一","value":15842,"oils":"4,9,10"},{"string":"配置 虛空盛宴","value":15852,"oils":"3,12,13"},{"string":"配置 毒化之擊","value":16236,"oils":"1,3,9"},{"string":"配置 聚靈之杖","value":16243,"oils":"2,4,4"},{"string":"配置 寧靜","value":16246,"oils":"0,12,13"},{"string":"配置 碎顱","value":16703,"oils":"1,10,11"},{"string":"配置 閃現冰凍","value":17171,"oils":"4,6,9"},{"string":"配置 悄無聲息","value":17608,"oils":"3,4,8"},{"string":"配置 神幻壁壘","value":18174,"oils":"5,5,5"},{"string":"配置 貓族迅捷","value":18357,"oils":"1,1,5"},{"string":"配置 權貴攻擊","value":18703,"oils":"8,8,10"},{"string":"配置 完美主義者","value":18707,"oils":"4,5,12"},{"string":"配置 血書","value":18769,"oils":"2,8,13"},{"string":"配置 融合","value":18865,"oils":"2,8,11"},{"string":"配置 強化之膚","value":19069,"oils":"8,12,12"},{"string":"配置 正義軍團","value":19103,"oils":"4,10,10"},{"string":"配置 哨兵","value":19144,"oils":"4,5,6"},{"string":"配置 獵人之路","value":19506,"oils":"1,4,4"},{"string":"配置 珍重打擊","value":19730,"oils":"1,7,10"},{"string":"配置 震爆之力","value":19794,"oils":"5,7,12"},{"string":"配置 藥草學","value":19858,"oils":"5,11,12"},{"string":"配置 亡靈諧曲","value":19897,"oils":"1,9,12"},{"string":"配置 荊刺之誠","value":203,"oils":"0,10,12"},{"string":"配置 聚能之界","value":20528,"oils":"4,12,12"},{"string":"配置 絕不饒恕","value":20605,"oils":"0,10,13"},{"string":"配置 庇護聖所","value":20832,"oils":"3,5,5"},{"string":"配置 邊緣政策","value":20835,"oils":"1,3,11"},{"string":"配置 穿射箭矢","value":21228,"oils":"10,11,12"},{"string":"配置 煉獄炸彈","value":21297,"oils":"4,4,12"},{"string":"配置 快速回復","value":21330,"oils":"5,5,13"},{"string":"配置 魔符匠","value":21389,"oils":"6,9,12"},{"string":"配置 戰鬥精力","value":21413,"oils":"1,4,10"},{"string":"配置 迅影秘術","value":21435,"oils":"1,1,6"},{"string":"配置 霜雪之息","value":21460,"oils":"5,12,12"},{"string":"配置 毀滅裝置","value":21602,"oils":"2,3,12"},{"string":"配置 祕法學","value":21634,"oils":"3,12,12"},{"string":"配置 殘忍準備","value":21958,"oils":"5,10,12"},{"string":"配置 腐蝕之衛","value":21973,"oils":"2,4,5"},{"string":"配置 振奮之焰","value":22133,"oils":"1,5,7"},{"string":"配置 鷹眼","value":2225,"oils":"1,1,11"},{"string":"配置 吸血","value":22356,"oils":"8,10,12"},{"string":"配置 滅世之語","value":22535,"oils":"13,13,13"},{"string":"配置 蛇影戰陣","value":22702,"oils":"6,10,11"},{"string":"配置 野性強化","value":22706,"oils":"6,6,11"},{"string":"配置 自然調劑","value":2275,"oils":"5,5,7"},{"string":"配置 鬥杖者之力","value":22972,"oils":"5,5,9"},{"string":"配置 屠殺 ","value":23038,"oils":"6,6,6"},{"string":"配置 野性之心","value":23066,"oils":"9,10,13"},{"string":"配置 無形之靈","value":23549,"oils":"0,12,12"},{"string":"配置 精髓灌注","value":23690,"oils":"1,3,4"},{"string":"配置 冷酷計算","value":24050,"oils":"9,9,9"},{"string":"配置 本能","value":24067,"oils":"2,2,6"},{"string":"配置 死裡逃生","value":24133,"oils":"6,9,13"},{"string":"配置 蓄電","value":24256,"oils":"1,2,6"},{"string":"配置 暴烈衝擊","value":24324,"oils":"4,6,11"},{"string":"配置 細選精準","value":24358,"oils":"0,9,13"},{"string":"配置 沉靜思維","value":24362,"oils":"1,4,8"},{"string":"配置 戰士之血","value":24383,"oils":"5,5,10"},{"string":"配置 戰鬥冥想","value":24716,"oils":"2,3,3"},{"string":"配置 碎胸者","value":24721,"oils":"5,10,10"},{"string":"配置 魚叉手","value":24858,"oils":"5,7,9"},{"string":"配置 血液抽取","value":25058,"oils":"6,11,12"},{"string":"配置 原始精神","value":25178,"oils":"2,6,10"},{"string":"配置 刀劍宗師","value":25367,"oils":"1,2,12"},{"string":"配置 頑固軍隊","value":25409,"oils":"8,9,12"},{"string":"配置 灌注","value":25411,"oils":"9,12,12"},{"string":"配置 送葬者","value":25439,"oils":"7,7,10"},{"string":"配置 修行之刃","value":25456,"oils":"6,9,10"},{"string":"配置 縱火","value":2550,"oils":"4,4,6"},{"string":"配置 努力不懈","value":25738,"oils":"2,7,9"},{"string":"配置 尖酸刻薄","value":25970,"oils":"1,10,10"},{"string":"配置 浪人教誨","value":25989,"oils":"10,13,13"},{"string":"配置 預備反應","value":2599,"oils":"1,2,2"},{"string":"配置 殘疤","value":26023,"oils":"5,10,13"},{"string":"配置 斧刃宗師","value":26096,"oils":"4,5,9"},{"string":"配置 出血","value":26294,"oils":"6,6,12"},{"string":"配置 充能之擊","value":26557,"oils":"5,8,9"},{"string":"配置 勝者","value":26564,"oils":"4,7,12"},{"string":"配置 腐化","value":26620,"oils":"9,10,10"},{"string":"配置 完美配方","value":26763,"oils":"7,7,8"},{"string":"配置 聖潔之力","value":26866,"oils":"6,6,10"},{"string":"配置 前瞻性","value":26960,"oils":"5,7,10"},{"string":"配置 部落之怒","value":27119,"oils":"11,12,13"},{"string":"配置 靈思聖殿","value":27137,"oils":"6,6,13"},{"string":"配置 疾步","value":2715,"oils":"3,3,4"},{"string":"配置 秘能意志","value":27163,"oils":"3,3,12"},{"string":"配置 過度準備","value":27190,"oils":"3,3,6"},{"string":"配置 心與靈","value":27203,"oils":"2,9,13"},{"string":"配置 武術經驗","value":27301,"oils":"1,4,6"},{"string":"配置 亡靈之約","value":27308,"oils":"6,10,10"},{"string":"配置 戰爭之靈","value":27422,"oils":"1,8,13"},{"string":"配置 亡靈之主","value":27611,"oils":"4,9,12"},{"string":"配置 崇拜凋落之心","value":27781,"oils":"0,0,0"},{"string":"配置 嗜血者","value":27788,"oils":"11,11,12"},{"string":"配置 宛如雷鳴","value":27806,"oils":"1,1,7"},{"string":"配置 沉靜智慧","value":27929,"oils":"2,5,5"},{"string":"配置 賦予之絆","value":28034,"oils":"1,7,7"},{"string":"配置 活力之湧","value":28449,"oils":"3,7,8"},{"string":"配置 生靈收割者","value":28503,"oils":"2,4,12"},{"string":"配置 刺殺","value":28754,"oils":"10,11,13"},{"string":"配置 冷酷無情","value":28878,"oils":"2,4,7"},{"string":"配置 神聖之火","value":29049,"oils":"3,5,12"},{"string":"配置 貪婪之徒","value":29381,"oils":"4,12,13"},{"string":"配置 劍舞","value":29522,"oils":"7,9,9"},{"string":"配置 冰霜季節","value":2959,"oils":"7,10,13"},{"string":"配置 爆裂魔符","value":29861,"oils":"3,6,6"},{"string":"配置 自衛術","value":30160,"oils":"2,2,4"},{"string":"配置 雷靈之道","value":30225,"oils":"2,2,10"},{"string":"配置 爽朗","value":30302,"oils":"4,11,12"},{"string":"配置 熔岩之力","value":30439,"oils":"1,1,13"},{"string":"配置 真實之擊","value":30471,"oils":"5,9,10"},{"string":"配置 聖情","value":30693,"oils":"4,5,7"},{"string":"配置 獵人專家","value":30974,"oils":"7,10,10"},{"string":"配置 堅固","value":31033,"oils":"1,4,5"},{"string":"配置 自然權威","value":31257,"oils":"2,12,13"},{"string":"配置 致命之毒","value":31359,"oils":"1,8,12"},{"string":"配置 創傷大師","value":31473,"oils":"1,5,8"},{"string":"配置 山貓之靈","value":31508,"oils":"8,8,9"},{"string":"配置 相鄰憎恨","value":31513,"oils":"7,9,11"},{"string":"配置 謹慎資源保護者","value":31585,"oils":"7,10,11"},{"string":"配置 荒野的傳承","value":3195,"oils":"0,9,10"},{"string":"配置 巨大影響","value":32059,"oils":"3,4,11"},{"string":"配置 竊魂者","value":32176,"oils":"2,9,11"},{"string":"配置 毒蛇之觸","value":32227,"oils":"2,10,11"},{"string":"配置 風暴織者","value":32455,"oils":"2,9,10"},{"string":"配置 標記獵物","value":32681,"oils":"2,7,10"},{"string":"配置 鋼鐵之壁","value":32738,"oils":"4,7,11"},{"string":"配置 西奧妮的野心","value":32853,"oils":"0,6,10"},{"string":"配置 主權","value":32932,"oils":"12,12,12"},{"string":"配置 剃刃","value":33082,"oils":"4,5,8"},{"string":"配置 飛毛腿","value":3309,"oils":"2,3,11"},{"string":"配置 戰神","value":33287,"oils":"3,5,11"},{"string":"配置 聖御","value":33435,"oils":"6,6,9"},{"string":"配置 海獵鷹","value":33545,"oils":"6,9,9"},{"string":"配置 強勢刺穿","value":33582,"oils":"4,6,8"},{"string":"配置 起源","value":33718,"oils":"5,9,13"},{"string":"配置 空洞雕像","value":33722,"oils":"0,9,12"},{"string":"配置 雙刃之舞","value":33725,"oils":"5,8,12"},{"string":"配置 破壞設置","value":33777,"oils":"5,5,12"},{"string":"配置 刀刃意志","value":33903,"oils":"2,4,10"},{"string":"配置 決戰宗師","value":34009,"oils":"2,11,12"},{"string":"配置 強化聚能","value":34173,"oils":"9,10,12"},{"string":"配置 劍術精通","value":34284,"oils":"3,7,11"},{"string":"配置 魔像指揮官","value":34506,"oils":"6,12,13"},{"string":"配置 先見之明","value":3452,"oils":"4,11,13"},{"string":"配置 惡之意","value":34591,"oils":"7,7,12"},{"string":"配置 火靈之道","value":34661,"oils":"8,9,10"},{"string":"配置 破壞者","value":34666,"oils":"2,4,11"},{"string":"配置 縝密狂怒","value":34973,"oils":"3,10,13"},{"string":"配置 膠體混合物","value":34978,"oils":"1,1,4"},{"string":"配置 不諧匠師","value":35233,"oils":"3,5,6"},{"string":"配置 動能影響","value":35436,"oils":"3,6,8"},{"string":"配置 強壯手臂","value":35663,"oils":"1,6,11"},{"string":"配置 恐怖之力","value":35685,"oils":"5,6,9"},{"string":"配置 詭計","value":35894,"oils":"4,4,10"},{"string":"配置 鋼之信仰","value":35958,"oils":"2,10,13"},{"string":"配置 太古之力","value":36281,"oils":"6,8,12"},{"string":"配置 剝皮刃","value":36490,"oils":"1,8,9"},{"string":"配置 狩獵之徵","value":36687,"oils":"1,11,11"},{"string":"配置 燃燒殘暴","value":36736,"oils":"5,7,8"},{"string":"配置 鋼木之姿","value":36859,"oils":"5,5,6"},{"string":"配置 獻祭","value":36915,"oils":"5,6,8"},{"string":"配置 奉獻","value":36949,"oils":"9,9,12"},{"string":"配置 賢者之路","value":37078,"oils":"2,3,4"},{"string":"配置 充沛精力","value":37326,"oils":"10,10,12"},{"string":"配置 注入肉體","value":37403,"oils":"3,7,10"},{"string":"配置 熟以致用","value":37425,"oils":"2,2,2"},{"string":"配置 直覺","value":37504,"oils":"3,8,8"},{"string":"配置 信心堡壘","value":37512,"oils":"0,9,9"},{"string":"配置 肢解","value":37647,"oils":"8,11,13"},{"string":"配置 預示","value":38246,"oils":"3,7,13"},{"string":"配置 正義審判","value":38516,"oils":"2,2,5"},{"string":"配置 戰士之道","value":38706,"oils":"0,10,11"},{"string":"配置 灼熱","value":38849,"oils":"3,6,12"},{"string":"配置 巨靈","value":38922,"oils":"2,3,13"},{"string":"配置 活力虛空","value":39530,"oils":"1,12,13"},{"string":"配置 偽痛","value":39657,"oils":"1,8,8"},{"string":"配置 黯黑藝術","value":39743,"oils":"5,8,11"},{"string":"配置 平衡反擊","value":39761,"oils":"1,3,12"},{"string":"配置 殘酷串燒","value":39904,"oils":"6,13,13"},{"string":"配置 玷汙之利","value":39986,"oils":"9,10,11"},{"string":"配置 敬畏與恐懼","value":40619,"oils":"7,7,11"},{"string":"配置 破骨","value":40645,"oils":"4,6,6"},{"string":"配置 魔晶之膚","value":40743,"oils":"2,10,12"},{"string":"配置 堅持不懈","value":40849,"oils":"0,7,9"},{"string":"配置 致命鋒芒","value":41119,"oils":"2,8,12"},{"string":"配置 野戰醫學","value":41137,"oils":"7,9,10"},{"string":"配置 鋸齒重創","value":41169,"oils":"0,7,13"},{"string":"配置 粉碎回應","value":41305,"oils":"1,2,3"},{"string":"配置 致命愛好","value":41307,"oils":"0,7,10"},{"string":"配置 自然療法","value":41420,"oils":"7,11,12"},{"string":"配置 嚴峻訓練","value":41472,"oils":"10,12,12"},{"string":"配置 智慧之力","value":41476,"oils":"5,5,8"},{"string":"配置 死亡印記","value":41595,"oils":"2,7,12"},{"string":"配置 精神救助","value":4177,"oils":"12,12,13"},{"string":"配置 寒冬之擁","value":41870,"oils":"1,7,9"},{"string":"配置 足智多謀","value":41989,"oils":"4,11,11"},{"string":"配置 堅鋼之靈","value":42009,"oils":"1,13,13"},{"string":"配置 生物學","value":42041,"oils":"4,10,12"},{"string":"配置 機會之窗","value":4207,"oils":"7,11,11"},{"string":"配置 狂熱","value":42443,"oils":"6,12,12"},{"string":"配置 雪鍛","value":42649,"oils":"3,5,13"},{"string":"配置 元素專注","value":42686,"oils":"2,3,6"},{"string":"配置 強弩","value":42720,"oils":"2,4,8"},{"string":"配置 秘能之心","value":42795,"oils":"4,9,9"},{"string":"配置 汲靈術","value":42804,"oils":"4,5,5"},{"string":"配置 杖影屏障","value":42917,"oils":"3,5,9"},{"string":"配置 寒冬之靈","value":43385,"oils":"2,5,12"},{"string":"配置 希望信標","value":4354,"oils":"0,8,9"},{"string":"配置 精神號令","value":43689,"oils":"2,2,13"},{"string":"配置 高能炸彈","value":44102,"oils":"2,5,8"},{"string":"配置 反射","value":44103,"oils":"6,10,13"},{"string":"配置 宛如神山","value":44191,"oils":"10,10,11"},{"string":"配置 龜甲盾","value":44207,"oils":"1,2,10"},{"string":"配置 聖之狂怒","value":44347,"oils":"3,3,10"},{"string":"配置 薩滿領地","value":44562,"oils":"1,6,12"},{"string":"配置 強大聯繫","value":44788,"oils":"2,2,8"},{"string":"配置 自然之力","value":4481,"oils":"4,6,12"},{"string":"配置 玄幻之意","value":44824,"oils":"5,6,11"},{"string":"配置 冰靈之道","value":44955,"oils":"4,8,11"},{"string":"配置 浪費","value":44988,"oils":"2,12,12"},{"string":"配置 驚險殺手","value":45067,"oils":"3,3,5"},{"string":"配置 甕中之鱉","value":45283,"oils":"3,3,7"},{"string":"配置 三相之力","value":45317,"oils":"2,9,9"},{"string":"配置 花式射擊","value":45329,"oils":"3,8,13"},{"string":"配置 連續爆破","value":45608,"oils":"1,1,9"},{"string":"配置 信仰試煉","value":45657,"oils":"2,7,7"},{"string":"配置 老兵","value":45803,"oils":"5,7,13"},{"string":"配置 召喚屏障","value":45945,"oils":"4,7,10"},{"string":"配置 毒蛇之牙","value":46408,"oils":"1,5,6"},{"string":"配置 強大之繫","value":46471,"oils":"7,7,7"},{"string":"配置 秘能爆發","value":46842,"oils":"6,10,12"},{"string":"配置 秘能聖所","value":46904,"oils":"1,12,12"},{"string":"配置 怠工者","value":46965,"oils":"1,5,5"},{"string":"配置 劍刃大師","value":47065,"oils":"6,11,13"},{"string":"配置 割喉者","value":47306,"oils":"3,8,11"},{"string":"配置 超載","value":47471,"oils":"1,11,12"},{"string":"配置 潛意識","value":47484,"oils":"3,4,5"},{"string":"配置 遠視","value":47743,"oils":"4,4,9"},{"string":"配置 洞見觀瞻","value":48298,"oils":"4,4,13"},{"string":"配置 活力之源","value":4833,"oils":"9,11,11"},{"string":"配置 英勇","value":48438,"oils":"8,11,11"},{"string":"配置 避難所","value":4854,"oils":"7,8,12"},{"string":"配置 黑暗之心","value":48556,"oils":"0,8,8"},{"string":"配置 激情","value":48614,"oils":"3,10,12"},{"string":"配置 虛影屏障","value":48698,"oils":"9,12,13"},{"string":"配置 鬥士藝術","value":48807,"oils":"2,11,13"},{"string":"配置 致命箭矢","value":48823,"oils":"2,4,9"},{"string":"配置 無差別報復","value":4918,"oils":"1,1,1"},{"string":"配置 制裁","value":49254,"oils":"1,9,11"},{"string":"配置 崩雷","value":49318,"oils":"1,5,11"},{"string":"配置 受雇殺手","value":49379,"oils":"8,8,11"},{"string":"配置 劈砍","value":4940,"oils":"2,3,10"},{"string":"配置 深呼吸","value":49445,"oils":"5,7,11"},{"string":"配置 強弩之弦","value":49459,"oils":"4,8,12"},{"string":"配置 反抗","value":49538,"oils":"3,5,10"},{"string":"配置 心眼","value":49621,"oils":"1,8,10"},{"string":"配置 燒灼","value":49645,"oils":"2,2,7"},{"string":"配置 極度權勢","value":49772,"oils":"3,6,9"},{"string":"配置 勇氣","value":49969,"oils":"6,8,8"},{"string":"配置 沉寂之心","value":50029,"oils":"4,13,13"},{"string":"配置 彈道學","value":50338,"oils":"6,8,11"},{"string":"配置 補藥","value":50690,"oils":"2,3,7"},{"string":"配置 老兵的暴怒","value":50842,"oils":"8,13,13"},{"string":"配置 告誡者","value":50858,"oils":"2,6,11"},{"string":"配置 秘能容器","value":51108,"oils":"8,10,13"},{"string":"配置 亂世","value":51212,"oils":"2,3,9"},{"string":"配置 碎脊者","value":5126,"oils":"4,8,8"},{"string":"配置 混合彈藥","value":51360,"oils":"0,9,11"},{"string":"配置 德魯伊的儀式","value":51440,"oils":"1,9,13"},{"string":"配置 沉重之擊","value":51559,"oils":"6,6,8"},{"string":"配置 最後儀式","value":51748,"oils":"2,10,10"},{"string":"配置 飛矢宗師","value":51881,"oils":"2,9,12"},{"string":"配置 能量爆發","value":52030,"oils":"1,3,3"},{"string":"配置 異變","value":52031,"oils":"8,10,10"},{"string":"配置 開墾之敵","value":52090,"oils":"3,10,11"},{"string":"配置 靈魂吸收","value":52157,"oils":"3,3,8"},{"string":"配置 夜之狩獵","value":52230,"oils":"2,3,5"},{"string":"配置 不屈不撓","value":52282,"oils":"0,13,13"},{"string":"配置 生命循環","value":52789,"oils":"1,7,8"},{"string":"配置 戰鬥鼓舞","value":5289,"oils":"2,4,6"},{"string":"配置 迴轉死神","value":529,"oils":"1,3,6"},{"string":"配置 萎縮","value":53013,"oils":"1,2,13"},{"string":"配置 卓越的表現","value":53042,"oils":"1,3,10"},{"string":"配置 死亡通緝","value":53114,"oils":"10,12,13"},{"string":"配置 野蠻","value":53118,"oils":"11,11,13"},{"string":"配置 橫掃千軍","value":53493,"oils":"1,1,10"},{"string":"配置 秘能擴張","value":53573,"oils":"9,9,13"},{"string":"配置 褻瀆之身","value":53652,"oils":"2,7,13"},{"string":"配置 薩滿之怒","value":53757,"oils":"2,3,8"},{"string":"配置 淨化思想","value":53759,"oils":"0,6,13"},{"string":"配置 萃取精華","value":53802,"oils":"9,9,10"},{"string":"配置 嫻熟","value":54142,"oils":"5,6,10"},{"string":"配置 劍刃屏障","value":54268,"oils":"1,8,11"},{"string":"配置 岩漿之擊","value":5430,"oils":"3,10,10"},{"string":"配置 監視","value":544,"oils":"2,7,11"},{"string":"配置 無可避免","value":54629,"oils":"9,11,12"},{"string":"配置 神聖啟蒙","value":54694,"oils":"8,9,9"},{"string":"配置 力量成形","value":54713,"oils":"1,7,12"},{"string":"配置 魔力之流","value":54776,"oils":"1,11,13"},{"string":"配置 鵲爪","value":54791,"oils":"2,6,6"},{"string":"配置 正義怒火","value":55002,"oils":"4,7,7"},{"string":"配置 極度聰穎","value":55114,"oils":"3,8,9"},{"string":"配置 沉澱灰燼","value":55194,"oils":"1,7,13"},{"string":"配置 聰明的建設","value":55380,"oils":"2,6,9"},{"string":"配置 構成","value":55485,"oils":"5,8,13"},{"string":"配置 黑暗之力","value":5574,"oils":"0,11,11"},{"string":"配置 鐵匠之擊","value":55772,"oils":"4,10,11"},{"string":"配置 河流之子","value":56094,"oils":"5,11,11"},{"string":"配置 蓄意殘虐","value":56146,"oils":"0,8,12"},{"string":"配置 硬疤","value":56207,"oils":"0,6,9"},{"string":"配置 十字軍","value":5624,"oils":"0,11,13"},{"string":"配置 恆久風暴","value":56274,"oils":"0,8,11"},{"string":"配置 夜襲","value":56276,"oils":"2,5,13"},{"string":"配置 戰鬥節奏","value":56330,"oils":"2,2,3"},{"string":"配置 食人儀式","value":56359,"oils":"5,6,6"},{"string":"配置 獵鷹之爪","value":56648,"oils":"3,3,13"},{"string":"配置 雷霆之心","value":56716,"oils":"2,6,13"},{"string":"配置 閃耀之擊","value":570,"oils":"5,5,11"},{"string":"配置 復仇浪湧","value":57006,"oils":"0,7,11"},{"string":"配置 刺骨寒冰","value":57199,"oils":"2,2,12"},{"string":"配置 巧刃","value":57839,"oils":"2,6,12"},{"string":"配置 鋼鐵命令","value":57900,"oils":"3,9,11"},{"string":"配置 毒蛇法術回音","value":58032,"oils":"7,8,11"},{"string":"配置 高壓伏特","value":58168,"oils":"3,7,7"},{"string":"配置 凜冽之指","value":58198,"oils":"8,9,13"},{"string":"配置 肉體之純潔","value":58218,"oils":"1,10,12"},{"string":"配置 和諧之體","value":5823,"oils":"3,9,10"},{"string":"配置 著名事蹟","value":58382,"oils":"7,11,13"},{"string":"配置 為戰而生","value":58449,"oils":"8,8,13"},{"string":"配置 開腸剖肚","value":58831,"oils":"4,8,13"},{"string":"配置 群體領袖","value":58851,"oils":"9,13,13"},{"string":"配置 屠宰者之使徒","value":58921,"oils":"3,4,13"},{"string":"配置 殘暴之刃","value":59151,"oils":"2,4,13"},{"string":"配置 進階","value":59423,"oils":"4,4,7"},{"string":"配置 快速彈藥","value":59556,"oils":"1,6,8"},{"string":"配置 不穩定彈藥","value":59605,"oils":"5,8,8"},{"string":"配置 三流手段","value":59766,"oils":"3,11,13"},{"string":"配置 壕溝戰","value":59866,"oils":"2,6,8"},{"string":"配置 謹慎反擊","value":59976,"oils":"1,1,3"},{"string":"配置 雙重懼刃","value":6,"oils":"1,6,10"},{"string":"配置 破空彈","value":60002,"oils":"4,4,5"},{"string":"配置 稜彩之膚","value":60031,"oils":"12,13,13"},{"string":"配置 火焰之心","value":60501,"oils":"5,6,13"},{"string":"配置 聚能之錘","value":60619,"oils":"1,2,9"},{"string":"配置 戲法","value":60737,"oils":"4,5,11"},{"string":"配置 啟發之絆","value":60781,"oils":"3,5,7"},{"string":"配置 野性渴望","value":61039,"oils":"3,13,13"},{"string":"配置 團結象徵","value":61190,"oils":"1,6,13"},{"string":"配置 戰士之心","value":61198,"oils":"8,12,13"},{"string":"配置 增幅","value":61308,"oils":"3,6,11"},{"string":"配置 爆炸元素","value":61689,"oils":"3,9,12"},{"string":"配置 滅世之靈","value":61981,"oils":"3,6,13"},{"string":"配置 亡靈之誓","value":61982,"oils":"2,8,8"},{"string":"配置 血味","value":62094,"oils":"3,8,12"},{"string":"配置 爆炸浪潮","value":6233,"oils":"1,4,9"},{"string":"配置 精準","value":6237,"oils":"2,2,9"},{"string":"配置 精純之潮","value":62577,"oils":"5,12,13"},{"string":"配置 神幻天賦","value":62596,"oils":"0,6,11"},{"string":"配置 死亡邊緣","value":62802,"oils":"4,7,8"},{"string":"配置 冰牢","value":62849,"oils":"4,7,9"},{"string":"配置 無血之體","value":6289,"oils":"3,9,13"},{"string":"配置 掌旗手","value":63033,"oils":"7,8,9"},{"string":"配置 鐵木","value":63150,"oils":"1,3,5"},{"string":"配置 風暴衝擊","value":63207,"oils":"3,4,12"},{"string":"配置 根深蒂固","value":63251,"oils":"10,10,13"},{"string":"配置 汲血者","value":63422,"oils":"5,11,13"},{"string":"配置 營養過剩","value":63453,"oils":"5,7,7"},{"string":"配置 圖騰專精","value":63635,"oils":"3,4,9"},{"string":"配置 衛士之毅","value":63727,"oils":"5,6,12"},{"string":"配置 極度迅速","value":63921,"oils":"2,5,9"},{"string":"配置 熱情圖騰","value":63933,"oils":"4,4,8"},{"string":"配置 綾彩交織","value":63944,"oils":"2,11,11"},{"string":"配置 聖杯","value":63976,"oils":"1,9,9"},{"string":"配置 戰士訓練","value":64077,"oils":"1,5,9"},{"string":"配置 巨石祝福","value":64217,"oils":"0,8,13"},{"string":"配置 咆哮挑戰","value":64226,"oils":"1,2,4"},{"string":"配置 烙印正義","value":64355,"oils":"7,8,10"},{"string":"配置 麻痺創傷","value":64395,"oils":"5,9,12"},{"string":"配置 不屈之徒","value":64882,"oils":"8,9,11"},{"string":"配置 靈魂虛空","value":65053,"oils":"5,8,10"},{"string":"配置 舞劍者","value":65093,"oils":"3,3,9"},{"string":"配置 領導精神","value":65097,"oils":"8,11,12"},{"string":"配置 堡壘破壞者","value":65107,"oils":"2,5,7"},{"string":"配置 冷酷","value":65108,"oils":"11,11,11"},{"string":"配置 橡木之心","value":65210,"oils":"4,9,13"},{"string":"配置 鷹靈祝福","value":65224,"oils":"3,4,4"},{"string":"配置 謎樣之域","value":65273,"oils":"4,5,10"},{"string":"配置 珍鑽肌膚","value":65308,"oils":"2,5,11"},{"string":"配置 刺心者","value":65502,"oils":"5,9,9"},{"string":"配置 電能之擊","value":6615,"oils":"1,1,12"},{"string":"配置 秘能守護","value":6770,"oils":"1,5,10"},{"string":"配置 野蠻穿刺","value":6783,"oils":"1,2,7"},{"string":"配置 魅力","value":6799,"oils":"11,13,13"},{"string":"配置 庇護","value":6967,"oils":"4,6,10"},{"string":"配置 分裂射擊","value":7069,"oils":"1,7,11"},{"string":"配置 舞刃宗師","value":7085,"oils":"1,3,8"},{"string":"配置 工兵大師","value":7136,"oils":"5,10,11"},{"string":"配置 迅速猛毒","value":7263,"oils":"1,3,13"},{"string":"配置 勁敵收割","value":7440,"oils":"1,3,7"},{"string":"配置 神速暴裂","value":7555,"oils":"10,11,11"},{"string":"配置 持久合作","value":7688,"oils":"1,4,13"},{"string":"配置 謎樣防禦","value":7918,"oils":"8,8,8"},{"string":"配置 聰穎盜賊","value":8001,"oils":"1,4,7"},{"string":"配置 化虛為實","value":8135,"oils":"1,1,8"},{"string":"配置 長射","value":8458,"oils":"5,9,11"},{"string":"配置 進擊的壁壘","value":861,"oils":"4,8,10"},{"string":"配置 冰雪之心","value":8833,"oils":"9,11,13"},{"string":"配置 背刺","value":8920,"oils":"1,5,12"},{"string":"配置 悲慘折磨","value":9015,"oils":"6,9,11"},{"string":"配置 零秒出手","value":9055,"oils":"6,11,11"},{"string":"配置 無情串燒","value":9194,"oils":"8,8,12"},{"string":"配置 禁忌紀律","value":9261,"oils":"10,10,10"},{"string":"配置 精神迅捷","value":9432,"oils":"2,8,10"},{"string":"配置 獵人之局","value":9535,"oils":"1,4,12"},{"string":"配置 嗜光者","value":9567,"oils":"6,8,9"},{"string":"配置 巧語","value":9788,"oils":"3,9,9"},{"string":"配置 成長與衰變","value":9864,"oils":"1,5,13"}],"trade":{"ids":{"enchant":["enchant.stat_2954116742"]},"option":true}} +{"ref":"Allocates # if you have the matching modifier on Forbidden Flame","better":1,"matchers":[{"string":"若禁忌烈焰上有符合的詞綴,配置 死靈師","value":10099},{"string":"若禁忌烈焰上有符合的詞綴,配置 殘暴熱情","value":10143},{"string":"若禁忌烈焰上有符合的詞綴,配置 信念之訴","value":1105},{"string":"若禁忌烈焰上有符合的詞綴,配置 啟發","value":11412},{"string":"若禁忌烈焰上有符合的詞綴,配置 瘟疫帶原者","value":11490},{"string":"若禁忌烈焰上有符合的詞綴,配置 學習季節","value":11597},{"string":"若禁忌烈焰上有符合的詞綴,配置 秘術家","value":12597},{"string":"若禁忌烈焰上有符合的詞綴,配置 鐵金剛","value":13374},{"string":"若禁忌烈焰上有符合的詞綴,配置 狂熱儀","value":13851},{"string":"若禁忌烈焰上有符合的詞綴,配置 爆破專家","value":14103},{"string":"若禁忌烈焰上有符合的詞綴,配置 骸骨屏障","value":14603},{"string":"若禁忌烈焰上有符合的詞綴,配置 聖騎士昇華職業","value":15435},{"string":"若禁忌烈焰上有符合的詞綴,配置 鋸齒技法","value":15616},{"string":"若禁忌烈焰上有符合的詞綴,配置 神采之形","value":16306},{"string":"若禁忌烈焰上有符合的詞綴,配置 凜冬誓言","value":16848},{"string":"若禁忌烈焰上有符合的詞綴,配置 縱火狂","value":16940},{"string":"若禁忌烈焰上有符合的詞綴,配置 毒物大師","value":1697},{"string":"若禁忌烈焰上有符合的詞綴,配置 死之狂怒.悉妮蔻拉","value":1731},{"string":"若禁忌烈焰上有符合的詞綴,配置 鎮壓","value":17315},{"string":"若禁忌烈焰上有符合的詞綴,配置 永不動搖","value":1734},{"string":"若禁忌烈焰上有符合的詞綴,配置 不懈","value":17988},{"string":"若禁忌烈焰上有符合的詞綴,配置 自然之怒","value":18054},{"string":"若禁忌烈焰上有符合的詞綴,配置 投機","value":19083},{"string":"若禁忌烈焰上有符合的詞綴,配置 釋放潛能","value":19355},{"string":"若禁忌烈焰上有符合的詞綴,配置 美德儀","value":19417},{"string":"若禁忌烈焰上有符合的詞綴,配置 淬毒打擊","value":1945},{"string":"若禁忌烈焰上有符合的詞綴,配置 毒物走私","value":19598},{"string":"若禁忌烈焰上有符合的詞綴,配置 堅定聖戰","value":19641},{"string":"若禁忌烈焰上有符合的詞綴,配置 伏擊與刺殺","value":21264},{"string":"若禁忌烈焰上有符合的詞綴,配置 極致準心","value":21455},{"string":"若禁忌烈焰上有符合的詞綴,配置 風之守衛","value":23169},{"string":"若禁忌烈焰上有符合的詞綴,配置 先行","value":23225},{"string":"若禁忌烈焰上有符合的詞綴,配置 屍骨盟約","value":23572},{"string":"若禁忌烈焰上有符合的詞綴,配置 屠戮之慾","value":24528},{"string":"若禁忌烈焰上有符合的詞綴,配置 野蠻人之道","value":24755},{"string":"若禁忌烈焰上有符合的詞綴,配置 決鬥者昇華職業","value":24798},{"string":"若禁忌烈焰上有符合的詞綴,配置 集風","value":24848},{"string":"若禁忌烈焰上有符合的詞綴,配置 凋零光環","value":25309},{"string":"若禁忌烈焰上有符合的詞綴,配置 力量定罪","value":25651},{"string":"若禁忌烈焰上有符合的詞綴,配置 元能者","value":258},{"string":"若禁忌烈焰上有符合的詞綴,配置 技能不止","value":2598},{"string":"若禁忌烈焰上有符合的詞綴,配置 無限彈藥","value":26067},{"string":"若禁忌烈焰上有符合的詞綴,配置 風暴雕塑者","value":27038},{"string":"若禁忌烈焰上有符合的詞綴,配置 虛無之塔","value":27096},{"string":"若禁忌烈焰上有符合的詞綴,配置 九命","value":27602},{"string":"若禁忌烈焰上有符合的詞綴,配置 嗜戰如命","value":27604},{"string":"若禁忌烈焰上有符合的詞綴,配置 免費暴力","value":27864},{"string":"若禁忌烈焰上有符合的詞綴,配置 完美犯罪","value":28535},{"string":"若禁忌烈焰上有符合的詞綴,配置 侵佔部隊","value":2872},{"string":"若禁忌烈焰上有符合的詞綴,配置 霧行者","value":28782},{"string":"若禁忌烈焰上有符合的詞綴,配置 心靈永止","value":28884},{"string":"若禁忌烈焰上有符合的詞綴,配置 [UNUSED] Slamako, Slam's Slam","value":28986},{"string":"若禁忌烈焰上有符合的詞綴,配置 意識聖殿","value":29026},{"string":"若禁忌烈焰上有符合的詞綴,配置 閃電戰","value":29630},{"string":"若禁忌烈焰上有符合的詞綴,配置 經驗豐富的藥草師","value":29662},{"string":"若禁忌烈焰上有符合的詞綴,配置 逃脫大師","value":29825},{"string":"若禁忌烈焰上有符合的詞綴,配置 不潔權威","value":31344},{"string":"若禁忌烈焰上有符合的詞綴,配置 新春誓言","value":31364},{"string":"若禁忌烈焰上有符合的詞綴,配置 烈日怒吼.西奧妮","value":31667},{"string":"若禁忌烈焰上有符合的詞綴,配置 堅忍","value":31700},{"string":"若禁忌烈焰上有符合的詞綴,配置 獵頭者","value":3184},{"string":"若禁忌烈焰上有符合的詞綴,配置 風暴之擁.瓦拉庫","value":32249},{"string":"若禁忌烈焰上有符合的詞綴,配置 戰爭使者","value":32251},{"string":"若禁忌烈焰上有符合的詞綴,配置 廉簡之途","value":32816},{"string":"若禁忌烈焰上有符合的詞綴,配置 敏捷殺手","value":32947},{"string":"若禁忌烈焰上有符合的詞綴,配置 炎夏誓言","value":33645},{"string":"若禁忌烈焰上有符合的詞綴,配置 不敗英雄","value":33940},{"string":"若禁忌烈焰上有符合的詞綴,配置 昇華儀式","value":34434},{"string":"若禁忌烈焰上有符合的詞綴,配置 無盡飢餓","value":34484},{"string":"若禁忌烈焰上有符合的詞綴,配置 銳眼","value":34567},{"string":"若禁忌烈焰上有符合的詞綴,配置 衛士","value":34774},{"string":"若禁忌烈焰上有符合的詞綴,配置 吞噬精華","value":3554},{"string":"若禁忌烈焰上有符合的詞綴,配置 征服者","value":35750},{"string":"若禁忌烈焰上有符合的詞綴,配置 黑暗統御者","value":36017},{"string":"若禁忌烈焰上有符合的詞綴,配置 老練獵人","value":36958},{"string":"若禁忌烈焰上有符合的詞綴,配置 穢言亡語","value":37127},{"string":"若禁忌烈焰上有符合的詞綴,配置 殘劣壁壘","value":37492},{"string":"若禁忌烈焰上有符合的詞綴,配置 衝擊","value":38180},{"string":"若禁忌烈焰上有符合的詞綴,配置 連鎖反應","value":38918},{"string":"若禁忌烈焰上有符合的詞綴,配置 純淨殘暴","value":38999},{"string":"若禁忌烈焰上有符合的詞綴,配置 冠軍","value":39598},{"string":"若禁忌烈焰上有符合的詞綴,配置 希望壁壘","value":39728},{"string":"若禁忌烈焰上有符合的詞綴,配置 聖所","value":39790},{"string":"若禁忌烈焰上有符合的詞綴,配置 爆破天才","value":39834},{"string":"若禁忌烈焰上有符合的詞綴,配置 懺悔之卜","value":40059},{"string":"若禁忌烈焰上有符合的詞綴,配置 耐久瀰漫","value":40104},{"string":"若禁忌烈焰上有符合的詞綴,配置 秘能庇護","value":40510},{"string":"若禁忌烈焰上有符合的詞綴,配置 寒冬雕塑者","value":40810},{"string":"若禁忌烈焰上有符合的詞綴,配置 大自然的報仇","value":40813},{"string":"若禁忌烈焰上有符合的詞綴,配置 破法","value":41891},{"string":"若禁忌烈焰上有符合的詞綴,配置 暴徒","value":4194},{"string":"若禁忌烈焰上有符合的詞綴,配置 聖宗","value":42144},{"string":"若禁忌烈焰上有符合的詞綴,配置 信念之輝","value":42264},{"string":"若禁忌烈焰上有符合的詞綴,配置 不穩定化身","value":4242},{"string":"若禁忌烈焰上有符合的詞綴,配置 致命繁榮","value":42469},{"string":"若禁忌烈焰上有符合的詞綴,配置 刺客","value":43122},{"string":"若禁忌烈焰上有符合的詞綴,配置 處刑者","value":43195},{"string":"若禁忌烈焰上有符合的詞綴,配置 判官","value":43962},{"string":"若禁忌烈焰上有符合的詞綴,配置 不可置疑","value":44297},{"string":"若禁忌烈焰上有符合的詞綴,配置 貪慾","value":44482},{"string":"若禁忌烈焰上有符合的詞綴,配置 光明聖戰","value":4494},{"string":"若禁忌烈焰上有符合的詞綴,配置 狙擊","value":45313},{"string":"若禁忌烈焰上有符合的詞綴,配置 寒凜喚醒","value":47630},{"string":"若禁忌烈焰上有符合的詞綴,配置 炸彈專家","value":47778},{"string":"若禁忌烈焰上有符合的詞綴,配置 命運審判","value":48214},{"string":"若禁忌烈焰上有符合的詞綴,配置 致命專注","value":48239},{"string":"若禁忌烈焰上有符合的詞綴,配置 淨化之水.塔薩里奧","value":48480},{"string":"若禁忌烈焰上有符合的詞綴,配置 母親的教誨","value":4849},{"string":"若禁忌烈焰上有符合的詞綴,配置 奉獻女魔","value":48719},{"string":"若禁忌烈焰上有符合的詞綴,配置 飲魂者","value":48999},{"string":"若禁忌烈焰上有符合的詞綴,配置 元素壁壘","value":4917},{"string":"若禁忌烈焰上有符合的詞綴,配置 遊俠昇華職業","value":49532},{"string":"若禁忌烈焰上有符合的詞綴,配置 森林之力.塔赫亞","value":5029},{"string":"若禁忌烈焰上有符合的詞綴,配置 神聖禱言","value":50356},{"string":"若禁忌烈焰上有符合的詞綴,配置 火徒.拿瑪乎","value":50692},{"string":"若禁忌烈焰上有符合的詞綴,配置 生在影中","value":5087},{"string":"若禁忌烈焰上有符合的詞綴,配置 大自然的腎上腺素","value":51101},{"string":"若禁忌烈焰上有符合的詞綴,配置 悲傷織者","value":51391},{"string":"若禁忌烈焰上有符合的詞綴,配置 規律化","value":51462},{"string":"若禁忌烈焰上有符合的詞綴,配置 標記之印","value":51492},{"string":"若禁忌烈焰上有符合的詞綴,配置 女巫昇華職業","value":51782},{"string":"若禁忌烈焰上有符合的詞綴,配置 不撓決心","value":52435},{"string":"若禁忌烈焰上有符合的詞綴,配置 武器大師","value":52575},{"string":"若禁忌烈焰上有符合的詞綴,配置 戰爭使者.圖克哈瑪","value":53095},{"string":"若禁忌烈焰上有符合的詞綴,配置 火焰雕塑者","value":53123},{"string":"若禁忌烈焰上有符合的詞綴,配置 堅不可破","value":53816},{"string":"若禁忌烈焰上有符合的詞綴,配置 正義之庭","value":53884},{"string":"若禁忌烈焰上有符合的詞綴,配置 暗影刺客之道","value":53992},{"string":"若禁忌烈焰上有符合的詞綴,配置 無意識侵略","value":54159},{"string":"若禁忌烈焰上有符合的詞綴,配置 焦點","value":5443},{"string":"若禁忌烈焰上有符合的詞綴,配置 聖騎士之道","value":54877},{"string":"若禁忌烈焰上有符合的詞綴,配置 惡毒牢房","value":5502},{"string":"若禁忌烈焰上有符合的詞綴,配置 緊急時刻","value":55146},{"string":"若禁忌烈焰上有符合的詞綴,配置 獸性化身","value":55509},{"string":"若禁忌烈焰上有符合的詞綴,配置 博學","value":55867},{"string":"若禁忌烈焰上有符合的詞綴,配置 先祖諸王","value":56461},{"string":"若禁忌烈焰上有符合的詞綴,配置 女巫之道","value":56722},{"string":"若禁忌烈焰上有符合的詞綴,配置 殺無赦","value":56789},{"string":"若禁忌烈焰上有符合的詞綴,配置 可敬的對手","value":56967},{"string":"若禁忌烈焰上有符合的詞綴,配置 酋長","value":57052},{"string":"若禁忌烈焰上有符合的詞綴,配置 毀滅之心","value":57197},{"string":"若禁忌烈焰上有符合的詞綴,配置 虛空馭者","value":57331},{"string":"若禁忌烈焰上有符合的詞綴,配置 毀滅儀式","value":57560},{"string":"若禁忌烈焰上有符合的詞綴,配置 灼熱淨化","value":57568},{"string":"若禁忌烈焰上有符合的詞綴,配置 勢不可擋","value":5819},{"string":"若禁忌烈焰上有符合的詞綴,配置 破壞者","value":58827},{"string":"若禁忌烈焰上有符合的詞綴,配置 血肉之章","value":59920},{"string":"若禁忌烈焰上有符合的詞綴,配置 精釀大師","value":6038},{"string":"若禁忌烈焰上有符合的詞綴,配置 無上奉獻","value":60462},{"string":"若禁忌烈焰上有符合的詞綴,配置 勇士","value":61072},{"string":"若禁忌烈焰上有符合的詞綴,配置 混沌天才","value":61259},{"string":"若禁忌烈焰上有符合的詞綴,配置 烈陽之光.雷默科","value":61355},{"string":"若禁忌烈焰上有符合的詞綴,配置 和諧之源","value":61372},{"string":"若禁忌烈焰上有符合的詞綴,配置 野蠻人昇華職業","value":61437},{"string":"若禁忌烈焰上有符合的詞綴,配置 彈射","value":61627},{"string":"若禁忌烈焰上有符合的詞綴,配置 煉金術大師","value":61805},{"string":"若禁忌烈焰上有符合的詞綴,配置 禁忌力量","value":62504},{"string":"若禁忌烈焰上有符合的詞綴,配置 屹立不搖","value":62595},{"string":"若禁忌烈焰上有符合的詞綴,配置 神話災難","value":62817},{"string":"若禁忌烈焰上有符合的詞綴,配置 手術大師","value":63293},{"string":"若禁忌烈焰上有符合的詞綴,配置 決鬥者之道","value":63357},{"string":"若禁忌烈焰上有符合的詞綴,配置 精準復仇","value":63490},{"string":"若禁忌烈焰上有符合的詞綴,配置 毀滅光砲塔","value":64588},{"string":"若禁忌烈焰上有符合的詞綴,配置 不動信念","value":64768},{"string":"若禁忌烈焰上有符合的詞綴,配置 超自然之力","value":65153},{"string":"若禁忌烈焰上有符合的詞綴,配置 自然的恩賜","value":65296},{"string":"若禁忌烈焰上有符合的詞綴,配置 詐欺師","value":6778},{"string":"若禁忌烈焰上有符合的詞綴,配置 消耗戰","value":758},{"string":"若禁忌烈焰上有符合的詞綴,配置 遊俠之道","value":7618},{"string":"若禁忌烈焰上有符合的詞綴,配置 暗影刺客昇華職業","value":772},{"string":"若禁忌烈焰上有符合的詞綴,配置 元素使","value":8281},{"string":"若禁忌烈焰上有符合的詞綴,配置 堅定的倖存者","value":8419},{"string":"若禁忌烈焰上有符合的詞綴,配置 神聖指引","value":922},{"string":"若禁忌烈焰上有符合的詞綴,配置 抵禦苦痛","value":9271},{"string":"若禁忌烈焰上有符合的詞綴,配置 追獵者","value":9327}],"trade":{"ids":{"explicit":["explicit.stat_2460506030"]},"option":true}} +{"ref":"Allocates # if you have the matching modifier on Forbidden Flesh","better":1,"matchers":[{"string":"若禁忌血肉上有符合的詞綴,配置 死靈師","value":10099},{"string":"若禁忌血肉上有符合的詞綴,配置 殘暴熱情","value":10143},{"string":"若禁忌血肉上有符合的詞綴,配置 信念之訴","value":1105},{"string":"若禁忌血肉上有符合的詞綴,配置 啟發","value":11412},{"string":"若禁忌血肉上有符合的詞綴,配置 瘟疫帶原者","value":11490},{"string":"若禁忌血肉上有符合的詞綴,配置 學習季節","value":11597},{"string":"若禁忌血肉上有符合的詞綴,配置 秘術家","value":12597},{"string":"若禁忌血肉上有符合的詞綴,配置 鐵金剛","value":13374},{"string":"若禁忌血肉上有符合的詞綴,配置 狂熱儀","value":13851},{"string":"若禁忌血肉上有符合的詞綴,配置 爆破專家","value":14103},{"string":"若禁忌血肉上有符合的詞綴,配置 骸骨屏障","value":14603},{"string":"若禁忌血肉上有符合的詞綴,配置 聖騎士昇華職業","value":15435},{"string":"若禁忌血肉上有符合的詞綴,配置 鋸齒技法","value":15616},{"string":"若禁忌血肉上有符合的詞綴,配置 神采之形","value":16306},{"string":"若禁忌血肉上有符合的詞綴,配置 凜冬誓言","value":16848},{"string":"若禁忌血肉上有符合的詞綴,配置 縱火狂","value":16940},{"string":"若禁忌血肉上有符合的詞綴,配置 毒物大師","value":1697},{"string":"若禁忌血肉上有符合的詞綴,配置 死之狂怒.悉妮蔻拉","value":1731},{"string":"若禁忌血肉上有符合的詞綴,配置 鎮壓","value":17315},{"string":"若禁忌血肉上有符合的詞綴,配置 永不動搖","value":1734},{"string":"若禁忌血肉上有符合的詞綴,配置 不懈","value":17988},{"string":"若禁忌血肉上有符合的詞綴,配置 自然之怒","value":18054},{"string":"若禁忌血肉上有符合的詞綴,配置 投機","value":19083},{"string":"若禁忌血肉上有符合的詞綴,配置 釋放潛能","value":19355},{"string":"若禁忌血肉上有符合的詞綴,配置 美德儀","value":19417},{"string":"若禁忌血肉上有符合的詞綴,配置 淬毒打擊","value":1945},{"string":"若禁忌血肉上有符合的詞綴,配置 毒物走私","value":19598},{"string":"若禁忌血肉上有符合的詞綴,配置 堅定聖戰","value":19641},{"string":"若禁忌血肉上有符合的詞綴,配置 伏擊與刺殺","value":21264},{"string":"若禁忌血肉上有符合的詞綴,配置 極致準心","value":21455},{"string":"若禁忌血肉上有符合的詞綴,配置 風之守衛","value":23169},{"string":"若禁忌血肉上有符合的詞綴,配置 先行","value":23225},{"string":"若禁忌血肉上有符合的詞綴,配置 屍骨盟約","value":23572},{"string":"若禁忌血肉上有符合的詞綴,配置 屠戮之慾","value":24528},{"string":"若禁忌血肉上有符合的詞綴,配置 野蠻人之道","value":24755},{"string":"若禁忌血肉上有符合的詞綴,配置 決鬥者昇華職業","value":24798},{"string":"若禁忌血肉上有符合的詞綴,配置 集風","value":24848},{"string":"若禁忌血肉上有符合的詞綴,配置 凋零光環","value":25309},{"string":"若禁忌血肉上有符合的詞綴,配置 力量定罪","value":25651},{"string":"若禁忌血肉上有符合的詞綴,配置 元能者","value":258},{"string":"若禁忌血肉上有符合的詞綴,配置 技能不止","value":2598},{"string":"若禁忌血肉上有符合的詞綴,配置 無限彈藥","value":26067},{"string":"若禁忌血肉上有符合的詞綴,配置 風暴雕塑者","value":27038},{"string":"若禁忌血肉上有符合的詞綴,配置 虛無之塔","value":27096},{"string":"若禁忌血肉上有符合的詞綴,配置 九命","value":27602},{"string":"若禁忌血肉上有符合的詞綴,配置 嗜戰如命","value":27604},{"string":"若禁忌血肉上有符合的詞綴,配置 免費暴力","value":27864},{"string":"若禁忌血肉上有符合的詞綴,配置 完美犯罪","value":28535},{"string":"若禁忌血肉上有符合的詞綴,配置 侵佔部隊","value":2872},{"string":"若禁忌血肉上有符合的詞綴,配置 霧行者","value":28782},{"string":"若禁忌血肉上有符合的詞綴,配置 心靈永止","value":28884},{"string":"若禁忌血肉上有符合的詞綴,配置 [UNUSED] Slamako, Slam's Slam","value":28986},{"string":"若禁忌血肉上有符合的詞綴,配置 意識聖殿","value":29026},{"string":"若禁忌血肉上有符合的詞綴,配置 閃電戰","value":29630},{"string":"若禁忌血肉上有符合的詞綴,配置 經驗豐富的藥草師","value":29662},{"string":"若禁忌血肉上有符合的詞綴,配置 逃脫大師","value":29825},{"string":"若禁忌血肉上有符合的詞綴,配置 不潔權威","value":31344},{"string":"若禁忌血肉上有符合的詞綴,配置 新春誓言","value":31364},{"string":"若禁忌血肉上有符合的詞綴,配置 烈日怒吼.西奧妮","value":31667},{"string":"若禁忌血肉上有符合的詞綴,配置 堅忍","value":31700},{"string":"若禁忌血肉上有符合的詞綴,配置 獵頭者","value":3184},{"string":"若禁忌血肉上有符合的詞綴,配置 風暴之擁.瓦拉庫","value":32249},{"string":"若禁忌血肉上有符合的詞綴,配置 戰爭使者","value":32251},{"string":"若禁忌血肉上有符合的詞綴,配置 廉簡之途","value":32816},{"string":"若禁忌血肉上有符合的詞綴,配置 敏捷殺手","value":32947},{"string":"若禁忌血肉上有符合的詞綴,配置 炎夏誓言","value":33645},{"string":"若禁忌血肉上有符合的詞綴,配置 不敗英雄","value":33940},{"string":"若禁忌血肉上有符合的詞綴,配置 昇華儀式","value":34434},{"string":"若禁忌血肉上有符合的詞綴,配置 無盡飢餓","value":34484},{"string":"若禁忌血肉上有符合的詞綴,配置 銳眼","value":34567},{"string":"若禁忌血肉上有符合的詞綴,配置 衛士","value":34774},{"string":"若禁忌血肉上有符合的詞綴,配置 吞噬精華","value":3554},{"string":"若禁忌血肉上有符合的詞綴,配置 征服者","value":35750},{"string":"若禁忌血肉上有符合的詞綴,配置 黑暗統御者","value":36017},{"string":"若禁忌血肉上有符合的詞綴,配置 老練獵人","value":36958},{"string":"若禁忌血肉上有符合的詞綴,配置 穢言亡語","value":37127},{"string":"若禁忌血肉上有符合的詞綴,配置 殘劣壁壘","value":37492},{"string":"若禁忌血肉上有符合的詞綴,配置 衝擊","value":38180},{"string":"若禁忌血肉上有符合的詞綴,配置 連鎖反應","value":38918},{"string":"若禁忌血肉上有符合的詞綴,配置 純淨殘暴","value":38999},{"string":"若禁忌血肉上有符合的詞綴,配置 冠軍","value":39598},{"string":"若禁忌血肉上有符合的詞綴,配置 希望壁壘","value":39728},{"string":"若禁忌血肉上有符合的詞綴,配置 聖所","value":39790},{"string":"若禁忌血肉上有符合的詞綴,配置 爆破天才","value":39834},{"string":"若禁忌血肉上有符合的詞綴,配置 懺悔之卜","value":40059},{"string":"若禁忌血肉上有符合的詞綴,配置 耐久瀰漫","value":40104},{"string":"若禁忌血肉上有符合的詞綴,配置 秘能庇護","value":40510},{"string":"若禁忌血肉上有符合的詞綴,配置 寒冬雕塑者","value":40810},{"string":"若禁忌血肉上有符合的詞綴,配置 大自然的報仇","value":40813},{"string":"若禁忌血肉上有符合的詞綴,配置 破法","value":41891},{"string":"若禁忌血肉上有符合的詞綴,配置 暴徒","value":4194},{"string":"若禁忌血肉上有符合的詞綴,配置 聖宗","value":42144},{"string":"若禁忌血肉上有符合的詞綴,配置 信念之輝","value":42264},{"string":"若禁忌血肉上有符合的詞綴,配置 不穩定化身","value":4242},{"string":"若禁忌血肉上有符合的詞綴,配置 致命繁榮","value":42469},{"string":"若禁忌血肉上有符合的詞綴,配置 刺客","value":43122},{"string":"若禁忌血肉上有符合的詞綴,配置 處刑者","value":43195},{"string":"若禁忌血肉上有符合的詞綴,配置 判官","value":43962},{"string":"若禁忌血肉上有符合的詞綴,配置 不可置疑","value":44297},{"string":"若禁忌血肉上有符合的詞綴,配置 貪慾","value":44482},{"string":"若禁忌血肉上有符合的詞綴,配置 光明聖戰","value":4494},{"string":"若禁忌血肉上有符合的詞綴,配置 狙擊","value":45313},{"string":"若禁忌血肉上有符合的詞綴,配置 寒凜喚醒","value":47630},{"string":"若禁忌血肉上有符合的詞綴,配置 炸彈專家","value":47778},{"string":"若禁忌血肉上有符合的詞綴,配置 命運審判","value":48214},{"string":"若禁忌血肉上有符合的詞綴,配置 致命專注","value":48239},{"string":"若禁忌血肉上有符合的詞綴,配置 淨化之水.塔薩里奧","value":48480},{"string":"若禁忌血肉上有符合的詞綴,配置 母親的教誨","value":4849},{"string":"若禁忌血肉上有符合的詞綴,配置 奉獻女魔","value":48719},{"string":"若禁忌血肉上有符合的詞綴,配置 飲魂者","value":48999},{"string":"若禁忌血肉上有符合的詞綴,配置 元素壁壘","value":4917},{"string":"若禁忌血肉上有符合的詞綴,配置 遊俠昇華職業","value":49532},{"string":"若禁忌血肉上有符合的詞綴,配置 森林之力.塔赫亞","value":5029},{"string":"若禁忌血肉上有符合的詞綴,配置 神聖禱言","value":50356},{"string":"若禁忌血肉上有符合的詞綴,配置 火徒.拿瑪乎","value":50692},{"string":"若禁忌血肉上有符合的詞綴,配置 生在影中","value":5087},{"string":"若禁忌血肉上有符合的詞綴,配置 大自然的腎上腺素","value":51101},{"string":"若禁忌血肉上有符合的詞綴,配置 悲傷織者","value":51391},{"string":"若禁忌血肉上有符合的詞綴,配置 規律化","value":51462},{"string":"若禁忌血肉上有符合的詞綴,配置 標記之印","value":51492},{"string":"若禁忌血肉上有符合的詞綴,配置 女巫昇華職業","value":51782},{"string":"若禁忌血肉上有符合的詞綴,配置 不撓決心","value":52435},{"string":"若禁忌血肉上有符合的詞綴,配置 武器大師","value":52575},{"string":"若禁忌血肉上有符合的詞綴,配置 戰爭使者.圖克哈瑪","value":53095},{"string":"若禁忌血肉上有符合的詞綴,配置 火焰雕塑者","value":53123},{"string":"若禁忌血肉上有符合的詞綴,配置 堅不可破","value":53816},{"string":"若禁忌血肉上有符合的詞綴,配置 正義之庭","value":53884},{"string":"若禁忌血肉上有符合的詞綴,配置 暗影刺客之道","value":53992},{"string":"若禁忌血肉上有符合的詞綴,配置 無意識侵略","value":54159},{"string":"若禁忌血肉上有符合的詞綴,配置 焦點","value":5443},{"string":"若禁忌血肉上有符合的詞綴,配置 聖騎士之道","value":54877},{"string":"若禁忌血肉上有符合的詞綴,配置 惡毒牢房","value":5502},{"string":"若禁忌血肉上有符合的詞綴,配置 緊急時刻","value":55146},{"string":"若禁忌血肉上有符合的詞綴,配置 獸性化身","value":55509},{"string":"若禁忌血肉上有符合的詞綴,配置 博學","value":55867},{"string":"若禁忌血肉上有符合的詞綴,配置 先祖諸王","value":56461},{"string":"若禁忌血肉上有符合的詞綴,配置 女巫之道","value":56722},{"string":"若禁忌血肉上有符合的詞綴,配置 殺無赦","value":56789},{"string":"若禁忌血肉上有符合的詞綴,配置 可敬的對手","value":56967},{"string":"若禁忌血肉上有符合的詞綴,配置 酋長","value":57052},{"string":"若禁忌血肉上有符合的詞綴,配置 毀滅之心","value":57197},{"string":"若禁忌血肉上有符合的詞綴,配置 虛空馭者","value":57331},{"string":"若禁忌血肉上有符合的詞綴,配置 毀滅儀式","value":57560},{"string":"若禁忌血肉上有符合的詞綴,配置 灼熱淨化","value":57568},{"string":"若禁忌血肉上有符合的詞綴,配置 勢不可擋","value":5819},{"string":"若禁忌血肉上有符合的詞綴,配置 破壞者","value":58827},{"string":"若禁忌血肉上有符合的詞綴,配置 血肉之章","value":59920},{"string":"若禁忌血肉上有符合的詞綴,配置 精釀大師","value":6038},{"string":"若禁忌血肉上有符合的詞綴,配置 無上奉獻","value":60462},{"string":"若禁忌血肉上有符合的詞綴,配置 勇士","value":61072},{"string":"若禁忌血肉上有符合的詞綴,配置 混沌天才","value":61259},{"string":"若禁忌血肉上有符合的詞綴,配置 烈陽之光.雷默科","value":61355},{"string":"若禁忌血肉上有符合的詞綴,配置 和諧之源","value":61372},{"string":"若禁忌血肉上有符合的詞綴,配置 野蠻人昇華職業","value":61437},{"string":"若禁忌血肉上有符合的詞綴,配置 彈射","value":61627},{"string":"若禁忌血肉上有符合的詞綴,配置 煉金術大師","value":61805},{"string":"若禁忌血肉上有符合的詞綴,配置 禁忌力量","value":62504},{"string":"若禁忌血肉上有符合的詞綴,配置 屹立不搖","value":62595},{"string":"若禁忌血肉上有符合的詞綴,配置 神話災難","value":62817},{"string":"若禁忌血肉上有符合的詞綴,配置 手術大師","value":63293},{"string":"若禁忌血肉上有符合的詞綴,配置 決鬥者之道","value":63357},{"string":"若禁忌血肉上有符合的詞綴,配置 精準復仇","value":63490},{"string":"若禁忌血肉上有符合的詞綴,配置 毀滅光砲塔","value":64588},{"string":"若禁忌血肉上有符合的詞綴,配置 不動信念","value":64768},{"string":"若禁忌血肉上有符合的詞綴,配置 超自然之力","value":65153},{"string":"若禁忌血肉上有符合的詞綴,配置 自然的恩賜","value":65296},{"string":"若禁忌血肉上有符合的詞綴,配置 詐欺師","value":6778},{"string":"若禁忌血肉上有符合的詞綴,配置 消耗戰","value":758},{"string":"若禁忌血肉上有符合的詞綴,配置 遊俠之道","value":7618},{"string":"若禁忌血肉上有符合的詞綴,配置 暗影刺客昇華職業","value":772},{"string":"若禁忌血肉上有符合的詞綴,配置 元素使","value":8281},{"string":"若禁忌血肉上有符合的詞綴,配置 堅定的倖存者","value":8419},{"string":"若禁忌血肉上有符合的詞綴,配置 神聖指引","value":922},{"string":"若禁忌血肉上有符合的詞綴,配置 抵禦苦痛","value":9271},{"string":"若禁忌血肉上有符合的詞綴,配置 追獵者","value":9327}],"trade":{"ids":{"explicit":["explicit.stat_1190333629"]},"option":true}} +{"ref":"Always inflict Brittle while affected by Hatred","better":1,"matchers":[{"string":"被憎恨影響時,必定造成易碎"}],"trade":{"ids":{"explicit":["explicit.stat_13285831"]}}} +{"ref":"Always Sap while affected by Wrath","better":1,"matchers":[{"string":"被雷霆影響時,必定造成殘喘"}],"trade":{"ids":{"explicit":["explicit.stat_2499038519"]}}} +{"ref":"Always Scorch while affected by Anger","better":1,"matchers":[{"string":"被憤怒影響時,必定造成焦灼"}],"trade":{"ids":{"explicit":["explicit.stat_1585991257"]}}} +{"ref":"An additional Curse can be applied to you","better":1,"matchers":[{"string":"你可以受到 # 個額外的詛咒"},{"string":"你可以受到 1 個額外的詛咒","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3112863846"]}}} +{"ref":"An additional Room is revealed on the Sanctum Map","better":1,"matchers":[{"string":"額外揭露聖域地圖上 # 個房間"},{"string":"額外揭露聖域地圖上 1 個房間","value":1}],"trade":{"ids":{"explicit":["sanctum.stat_386901949"]}}} +{"ref":"An Enemy Writhing Worms escape the Flask when used\nWrithing Worms are destroyed when Hit","better":1,"matchers":[{"string":"使用藥劑時產生 # 隻敵隊的蠕蟲\n蠕蟲被擊中時被摧毀"},{"string":"使用藥劑時產生 1 隻敵隊的蠕蟲\n蠕蟲被擊中時被摧毀","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2434293916"]}}} +{"ref":"Ancestral Bond","better":1,"matchers":[{"string":"先祖魂約"}],"trade":{"ids":{"explicit":["explicit.stat_2648570028"],"fractured":["fractured.stat_2648570028"],"scourge":["scourge.stat_2648570028"]}}} +{"ref":"Ancestral Cry has a minimum of # Power","better":1,"matchers":[{"string":"先祖戰吼有最小 # 強度"}],"trade":{"ids":{"enchant":["enchant.stat_988554168"]}}} +{"ref":"Ancestral Protector Totem deals #% increased Damage","better":1,"matchers":[{"string":"增加 #% 先祖衛士圖騰造成的傷害"},{"string":"減少 #% 先祖衛士圖騰造成的傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2596239449"]}}} +{"ref":"Ancestral Protector Totem grants #% increased Attack Speed while Active","better":1,"matchers":[{"string":"先祖衛士圖騰作用時給增加你 #% 攻擊速度"},{"string":"先祖衛士圖騰作用時給減少你 #% 攻擊速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1303996723"]}}} +{"ref":"Ancestral Warchief Totem grants #% increased Melee Damage while Active","better":1,"matchers":[{"string":"先祖戰士長圖騰作用時增加你 #% 近戰傷害"},{"string":"先祖戰士長圖騰作用時減少你 #% 近戰傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3543257184"]}}} +{"ref":"and nearby Allies Regenerate 200 Life per second","better":1,"matchers":[{"string":"擊殺中毒的敵人時,附近友方每秒回復 200 生命"}],"trade":{"ids":{"explicit":["explicit.stat_1168603868"]}}} +{"ref":"Anger has #% increased Aura Effect","better":1,"matchers":[{"string":"憤怒增加 #% 光環效果"},{"string":"憤怒減少 #% 光環效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1592278124"],"implicit":["implicit.stat_1592278124"]}}} +{"ref":"Anger has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"憤怒增加 #% 魔力保留效用"},{"string":"憤怒減少 #% 魔力保留效用","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2549369799","explicit.stat_2963485753"],"enchant":["enchant.stat_2549369799","enchant.stat_2963485753"]}}} +{"ref":"Anger has no Reservation","better":1,"matchers":[{"string":"憤怒無保留"}],"trade":{"ids":{"explicit":["explicit.stat_2189891129"]}}} +{"ref":"Animated Guardian deals #% increased Damage per Animated Weapon","better":1,"matchers":[{"string":"每個幻化武器增加 #% 幻化守衛造成傷害"},{"string":"每個幻化武器減少 #% 幻化守衛造成傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_759294825"]}}} +{"ref":"Animated Guardians deal #% increased Damage","better":1,"matchers":[{"string":"增加 #% 幻化守衛造成的傷害"},{"string":"減少 #% 幻化守衛造成的傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4157143640"]}}} +{"ref":"Animated Minions' Melee Attacks deal #% less Splash Damage to surrounding targets","better":-1,"matchers":[{"string":"幻化召喚物的近戰攻擊,對附近敵人造成 #% 更多擴散傷害"},{"string":"幻化召喚物的近戰攻擊,對附近敵人造成 #% 更少擴散傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_478698670"]},"inverted":true}} +{"ref":"Animated Minions' Melee Attacks deal Splash Damage to surrounding targets","better":1,"matchers":[{"string":"幻化召喚物的近戰攻擊對目標附近造成擴散傷害"}],"trade":{"ids":{"explicit":["explicit.stat_91242932"]}}} +{"ref":"Animated Weapons deal #% increased Damage","better":1,"matchers":[{"string":"增加 #% 幻化武器的傷害"},{"string":"減少 #% 幻化武器的傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1819674879"]}}} +{"ref":"Arc Chains an additional time","better":1,"matchers":[{"string":"增加電弧額外 # 次連鎖"},{"string":"增加電弧額外 1 次連鎖","value":1}],"trade":{"ids":{"enchant":["enchant.stat_2461552986"]}}} +{"ref":"Arc deals #% increased Damage for each time it has Chained","better":1,"matchers":[{"string":"每次電弧連鎖時增加 #% 傷害"}],"trade":{"ids":{"enchant":["enchant.stat_3998182656"]}}} +{"ref":"Arc has +#% chance to Shock","better":1,"matchers":[{"string":"電弧有 #% 機率感電"},{"string":"電弧必定感電","value":100}],"trade":{"ids":{"enchant":["enchant.stat_195463427"]}}} +{"ref":"Arcane Cloak grants Life Regeneration equal to #% of Mana Spent per Second","better":1,"matchers":[{"string":"祕能披風獲得等同 #% 魔力消耗的每秒生命回復"}],"trade":{"ids":{"enchant":["enchant.stat_3606492882"]}}} +{"ref":"Arcane Cloak Spends an additional #% of current Mana","better":1,"matchers":[{"string":"祕能披風消耗額外 #% 現有魔力"}],"trade":{"ids":{"enchant":["enchant.stat_122106412"]}}} +{"ref":"Arcanist Brand has #% increased Cast Speed","better":1,"matchers":[{"string":"奧術烙印增加 #% 施放速度"}],"trade":{"ids":{"enchant":["enchant.stat_1147445274"]}}} +{"ref":"Arctic Armour has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"極地裝甲增加 #% 魔力保留效用"},{"string":"極地裝甲減少 #% 魔力保留效用","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2351239732","explicit.stat_2605040931"],"implicit":["implicit.stat_2351239732"],"fractured":["fractured.stat_2351239732","fractured.stat_2605040931"],"enchant":["enchant.stat_2351239732","enchant.stat_2605040931"]}}} +{"ref":"Arctic Armour has no Reservation","better":1,"matchers":[{"string":"極地裝甲沒有保留"}],"trade":{"ids":{"explicit":["explicit.stat_1483066460"]}}} +{"ref":"Area can contain Breaches","better":1,"matchers":[{"string":"此區域可能含有裂痕"}],"trade":{"ids":{"enchant":["enchant.stat_2180286756"]}}} +{"ref":"Area contains # additional Chest Marker","better":1,"fromAreaMods":true,"matchers":[{"string":"區域含有 # 個額外保險箱標記"}],"trade":{"ids":{"implicit":["implicit.stat_4160330571"]}}} +{"ref":"Area contains # additional pack of Corrupted Vaal Monsters","better":1,"fromAreaMods":true,"matchers":[{"string":"區域含有額外 # 群已汙染瓦爾怪物"}],"trade":{"ids":{"enchant":["enchant.stat_1867024035"]}}} +{"ref":"Area contains #% increased number of Monster Markers","better":1,"fromAreaMods":true,"matchers":[{"string":"區域增加 #% 怪物標記的數量"},{"string":"區域減少 #% 怪物標記的數量"}],"trade":{"ids":{"implicit":["implicit.stat_1915989164"]}}} +{"ref":"Area contains #% increased number of Remnants","better":1,"fromAreaMods":true,"matchers":[{"string":"區域增加 #% 遺跡數量"}],"trade":{"ids":{"implicit":["implicit.stat_2991413918"]}}} +{"ref":"Area contains #% increased number of Runic Monster Markers","better":1,"fromAreaMods":true,"matchers":[{"string":"區域增加 #% 魔符怪物標記的數量"},{"string":"區域減少 #% 魔符怪物標記的數量"}],"trade":{"ids":{"implicit":["implicit.stat_1640965354"],"enchant":["enchant.stat_1640965354"]}}} +{"ref":"Area contains a Blight Encounter","better":1,"matchers":[{"string":"區域含有 1 個凋落事件"}],"trade":{"ids":{"explicit":["explicit.stat_2459443694"],"enchant":["enchant.stat_2459443694"]}}} +{"ref":"Area contains an additional Abyss","better":1,"matchers":[{"string":"此區域含 # 個額外深淵"},{"string":"此區域含 1 個額外深淵","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1070816711"],"implicit":["implicit.stat_1070816711"],"enchant":["enchant.stat_1070816711"]}}} +{"ref":"Area contains an additional Breach","better":1,"matchers":[{"string":"區域包含額外 # 個裂痕"},{"string":"區域包含額外 1 個裂痕","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3224819794"],"implicit":["implicit.stat_3224819794"],"enchant":["enchant.stat_3224819794"]}}} +{"ref":"Area contains an additional guarded Exquisite Vaal Vessel","better":1,"fromAreaMods":true,"matchers":[{"string":"區域含有 # 個額外被守衛的精緻瓦爾容器"},{"string":"區域含有 1 個額外被守衛的精緻瓦爾容器","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1612402470"],"implicit":["implicit.stat_1612402470"]}}} +{"ref":"Area contains an additional Imprisoned Monster","better":1,"matchers":[{"string":"區域含有 # 個額外禁錮怪物"},{"string":"區域含有 1 個額外禁錮怪物","value":1}],"trade":{"ids":{"implicit":["implicit.stat_395808938"],"enchant":["enchant.stat_395808938"]}}} +{"ref":"Area contains an additional Legion Encounter","better":1,"matchers":[{"string":"區域內含 # 個額外戰亂事件"},{"string":"區域內含 1 個額外戰亂事件","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3897451709"],"implicit":["implicit.stat_3897451709"],"enchant":["enchant.stat_3897451709"]}}} +{"ref":"Area contains an additional Shrine","better":1,"matchers":[{"string":"地圖含有 # 個額外的神殿"},{"string":"地圖含有 1 個額外的神殿","value":1}],"trade":{"ids":{"implicit":["implicit.stat_1468737867"],"enchant":["enchant.stat_1468737867"]}}} +{"ref":"Area contains an additional Smuggler's Cache","better":1,"matchers":[{"string":"區域含有 # 個額外走私者的祕寶"},{"string":"區域含有 1 個額外走私者的祕寶","value":1}],"trade":{"ids":{"implicit":["implicit.stat_3307533469"]}}} +{"ref":"Area contains an additional Strongbox","better":1,"matchers":[{"string":"地圖含有 # 個額外的保險箱"},{"string":"地圖含有 1 個額外的保險箱","value":1}],"trade":{"ids":{"implicit":["implicit.stat_3240183538"],"enchant":["enchant.stat_3240183538"]}}} +{"ref":"Area contains an additional Underground Area","better":1,"fromAreaMods":true,"matchers":[{"string":"區域含有 # 個額外地下區域"},{"string":"區域含有 1 個額外地下區域","value":1}],"trade":{"ids":{"implicit":["implicit.stat_1160596338"]}}} +{"ref":"Area contains an Expedition Boss (#)","better":1,"matchers":[{"string":"區域含有墮落英雄.梅德偉","value":1},{"string":"區域含有最後生還.沃拉娜","value":2},{"string":"區域含有貪婪叛徒.烏特雷","value":3},{"string":"區域含有失落起源.奧爾羅斯","value":4}],"trade":{"ids":{"implicit":["implicit.stat_3159649981"]},"option":true}} +{"ref":"Area contains an Expedition Encounter","better":1,"matchers":[{"string":"區域含有 1 個探險事件"}],"trade":{"ids":{"explicit":["explicit.stat_3557750122"],"implicit":["implicit.stat_3557750122"]}}} +{"ref":"Area contains Drowning Orbs","better":1,"fromUberAreaMods":true,"matchers":[{"string":"區域內含有溺水石"}],"trade":{"ids":{"explicit":["explicit.stat_25225034"],"fractured":["fractured.stat_25225034"]}}} +{"ref":"Area contains many Totems","better":1,"fromAreaMods":true,"matchers":[{"string":"區域含有許多圖騰"}],"trade":{"ids":{"explicit":["explicit.stat_1000591322"],"fractured":["fractured.stat_1000591322"]}}} +{"ref":"Area contains Metamorph Monsters","better":1,"matchers":[{"string":"區域含有鍊魔怪物"}],"trade":{"ids":{"implicit":["implicit.stat_1994562755"],"enchant":["enchant.stat_1994562755"]}}} +{"ref":"Area contains Petrification Statues","better":1,"fromUberAreaMods":true,"matchers":[{"string":"區域內含有石化雕像"}],"trade":{"ids":{"explicit":["explicit.stat_3709982550"]}}} +{"ref":"Area contains Runes of the Searing Exarch","better":1,"fromUberAreaMods":true,"matchers":[{"string":"區域內含有灼烙總督符文"}],"trade":{"ids":{"explicit":["explicit.stat_2073168229"]}}} +{"ref":"Area contains The Sacred Grove","better":1,"matchers":[{"string":"區域含有聖殿密園"}],"trade":{"ids":{"implicit":["implicit.stat_1145451936"],"enchant":["enchant.stat_1145451936"]}}} +{"ref":"Area contains two Unique Bosses","better":1,"fromAreaMods":true,"matchers":[{"string":"地圖含有兩個傳奇頭目"}],"trade":{"ids":{"explicit":["explicit.stat_799271621"],"fractured":["fractured.stat_799271621"]}}} +{"ref":"Area contains Unstable Tentacle Fiends","better":1,"fromUberAreaMods":true,"matchers":[{"string":"區域內含有不穩定的惡魔觸手"}],"trade":{"ids":{"explicit":["explicit.stat_1943574423"],"fractured":["fractured.stat_1943574423"]}}} +{"ref":"Area has an additional random Scarab effect","better":1,"fromAreaMods":true,"matchers":[{"string":"區域有 # 個額外隨機聖甲蟲效果"},{"string":"區域有 1 個額外隨機聖甲蟲效果","value":1}],"trade":{"ids":{"implicit":["implicit.stat_754268389"]}}} +{"ref":"Area has increased monster variety","better":1,"fromAreaMods":true,"matchers":[{"string":"地圖裡的怪物種類被增加了"}],"trade":{"ids":{"explicit":["explicit.stat_3561450806"],"fractured":["fractured.stat_3561450806"]}}} +{"ref":"Area has patches of Awakeners' Desolation","better":1,"fromUberAreaMods":true,"matchers":[{"string":"區域含有數道喚醒者的荒蕪"}],"trade":{"ids":{"explicit":["explicit.stat_563277852"],"fractured":["fractured.stat_563277852"]}}} +{"ref":"Area has patches of Burning Ground","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"地圖含有燃燒地面"}],"trade":{"ids":{"explicit":["explicit.stat_133340941","explicit.stat_3665534869"],"fractured":["fractured.stat_133340941"]}}} +{"ref":"Area has patches of Chilled Ground","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"地圖含有冰緩地面"}],"trade":{"ids":{"explicit":["explicit.stat_349586058","explicit.stat_389725673"],"fractured":["fractured.stat_349586058"]}}} +{"ref":"Area has patches of Consecrated Ground","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"區域有數道奉獻地面"}],"trade":{"ids":{"explicit":["explicit.stat_1948962470"],"fractured":["fractured.stat_1948962470"]}}} +{"ref":"Area has patches of desecrated ground","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"地圖含有腐化地面"}],"trade":{"ids":{"explicit":["explicit.stat_3577222856"],"fractured":["fractured.stat_3577222856"]}}} +{"ref":"Area has patches of Shocked Ground which increase Damage taken by #%","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"區域內有數道增加 #% 承受傷害的感電地面"}],"trade":{"ids":{"explicit":["explicit.stat_3246076198"],"fractured":["fractured.stat_3246076198"]}}} +{"ref":"Area is affected by a Corrupting Tempest","better":1,"fromAreaMods":true,"matchers":[{"string":"區域被腐化風暴影響"}],"trade":{"ids":{"explicit":["explicit.stat_2836394633"]}}} +{"ref":"Area is affected by an additional random Unallocated Notable Atlas Passives","better":1,"fromAreaMods":true,"matchers":[{"string":"區域受到 # 個額外隨機未配置的輿圖核心天賦所影響"},{"string":"區域受到 1 個額外隨機未配置的輿圖核心天賦所影響","value":1}],"trade":{"ids":{"implicit":["implicit.stat_2834034653"]}}} +{"ref":"Area is haunted by # additional Tormented Spirit","better":1,"matchers":[{"string":"區域被 # 個額外罪魂糾纏"}],"trade":{"ids":{"explicit":["explicit.stat_358129101"],"implicit":["implicit.stat_358129101"]}}} +{"ref":"Area is infested with Fungal Growths\nMap's Item Quantity Modifiers also affect Blight Chest count at 25% value\nCan be Anointed up to 3 times","better":1,"matchers":[{"string":"區域被毒菌滋長蔓延\n地圖物品數量詞綴同時以 40% 的值影響凋落保險箱\n最多可以抹油 # 次"},{"string":"區域被毒菌滋長蔓延\n地圖物品數量詞綴同時以 20% 的值影響凋落保險箱\n最多可以抹油 3 次","value":1}],"trade":{"ids":{"implicit":["implicit.stat_299373046"]}}} +{"ref":"Area is influenced by #","better":1,"matchers":[{"string":"區域被塑界者控制","value":1},{"string":"區域被異界尊師控制","value":2}],"trade":{"ids":{"implicit":["implicit.stat_1792283443"]},"option":true}} +{"ref":"Area is inhabited by # additional Rogue Exile","better":1,"matchers":[{"string":"地圖含有額外 # 個盜賊流亡者"}],"trade":{"ids":{"explicit":["explicit.stat_3550168289"],"implicit":["implicit.stat_3550168289"],"fractured":["fractured.stat_3550168289"],"enchant":["enchant.stat_3550168289"]}}} +{"ref":"Area is inhabited by Abominations","better":1,"fromAreaMods":true,"matchers":[{"string":"區域含有大量被創造生物"}],"trade":{"ids":{"explicit":["explicit.stat_2961018200"],"fractured":["fractured.stat_2961018200"]}}} +{"ref":"Area is inhabited by an additional Invasion Boss","better":1,"matchers":[{"string":"地圖內含有 # 隻額外侵略聯盟的頭目"}],"trade":{"ids":{"explicit":["explicit.stat_279246355"],"implicit":["implicit.stat_279246355"],"enchant":["enchant.stat_279246355"]}}} +{"ref":"Area is inhabited by Animals","better":1,"fromAreaMods":true,"matchers":[{"string":"區域含有許多動物"}],"trade":{"ids":{"explicit":["explicit.stat_4198346809"],"fractured":["fractured.stat_4198346809"]}}} +{"ref":"Area is inhabited by Cultists of Kitava","better":1,"fromAreaMods":true,"matchers":[{"string":"區域內有許多奇塔弗的信徒"}],"trade":{"ids":{"explicit":["explicit.stat_4252630904"],"fractured":["fractured.stat_4252630904"]}}} +{"ref":"Area is inhabited by Demons","better":1,"fromAreaMods":true,"matchers":[{"string":"區域含有許多惡魔"}],"trade":{"ids":{"explicit":["explicit.stat_3916182167"],"fractured":["fractured.stat_3916182167"]}}} +{"ref":"Area is inhabited by Ghosts","better":1,"fromAreaMods":true,"matchers":[{"string":"區域內有許多鬼魂"}],"trade":{"ids":{"explicit":["explicit.stat_3516340048"],"fractured":["fractured.stat_3516340048"]}}} +{"ref":"Area is inhabited by Goatmen","better":1,"fromAreaMods":true,"matchers":[{"string":"區域含有許多羊男"}],"trade":{"ids":{"explicit":["explicit.stat_1813544255"],"fractured":["fractured.stat_1813544255"]}}} +{"ref":"Area is inhabited by Humanoids","better":1,"fromAreaMods":true,"matchers":[{"string":"區域含有許多人型生物"}],"trade":{"ids":{"explicit":["explicit.stat_2651141461"],"fractured":["fractured.stat_2651141461"]}}} +{"ref":"Area is inhabited by Lunaris fanatics","better":1,"fromAreaMods":true,"matchers":[{"string":"區域內有許多月影神信徒"}],"trade":{"ids":{"explicit":["explicit.stat_3134632618","explicit.stat_3408601861"],"fractured":["fractured.stat_3134632618"]}}} +{"ref":"Area is inhabited by ranged monsters","better":1,"fromAreaMods":true,"matchers":[{"string":"區域含有許多遠程怪物"}],"trade":{"ids":{"explicit":["explicit.stat_645841425"],"fractured":["fractured.stat_645841425"]}}} +{"ref":"Area is inhabited by Sea Witches and their Spawn","better":1,"fromAreaMods":true,"matchers":[{"string":"區域含有許多海巫和它的召喚物"}],"trade":{"ids":{"explicit":["explicit.stat_25085466"],"fractured":["fractured.stat_25085466"]}}} +{"ref":"Area is inhabited by Skeletons","better":1,"fromAreaMods":true,"matchers":[{"string":"區域含有許多骷髏"}],"trade":{"ids":{"explicit":["explicit.stat_45546355"],"fractured":["fractured.stat_45546355"]}}} +{"ref":"Area is inhabited by Solaris fanatics","better":1,"fromAreaMods":true,"matchers":[{"string":"區域內有許多日耀神信徒"}],"trade":{"ids":{"explicit":["explicit.stat_1934713036","explicit.stat_2457517302"],"fractured":["fractured.stat_2457517302"]}}} +{"ref":"Area is inhabited by the Vaal","better":1,"matchers":[{"string":"區域裡有許多瓦爾人"}],"trade":{"ids":{"explicit":["explicit.stat_2609768284"],"fractured":["fractured.stat_2609768284"]}}} +{"ref":"Area is inhabited by Undead","better":1,"fromAreaMods":true,"matchers":[{"string":"區域含有許多不死生物"}],"trade":{"ids":{"explicit":["explicit.stat_808491979"],"fractured":["fractured.stat_808491979"]}}} +{"ref":"Areas are Breached\nAreas contain additional Large Breach Hands\nBreach Bosses have a chance to drop a Breachstone","better":1,"matchers":[{"string":"區域為裂痕\n區域含有額外大型裂痕之手\n裂痕頭目有機率掉落 1 顆裂痕石"}],"trade":{"ids":{"explicit":["explicit.stat_1263962567"]}}} +{"ref":"Areas can contain Abysses","better":1,"matchers":[{"string":"此區域可能有深淵"}],"trade":{"ids":{"enchant":["enchant.stat_3564826949"]}}} +{"ref":"Areas contain a Mirror of Delirium","better":1,"matchers":[{"string":"此區域含有 1 個譫妄之鏡"}],"trade":{"ids":{"enchant":["enchant.stat_2398157267"]}}} +{"ref":"Areas contain additional Abysses\nAbysses have already fully opened\nAbysses contain monsters from Beyond this realm","better":1,"matchers":[{"string":"區域含有額外深淵\n深淵已全部開啟\n深淵含有此領域的超越怪物"}],"trade":{"ids":{"explicit":["explicit.stat_2789750513"]}}} +{"ref":"Areas contain additional Essences\nEssences contain Rogue Exiles","better":1,"matchers":[{"string":"區域含有額外精髓\n精髓含有盜賊流亡者"}],"trade":{"ids":{"explicit":["explicit.stat_4139137767"]}}} +{"ref":"Areas contain additional Harbinger Portals\nHarbinger Portals drop additional Currency Shards when destroyed","better":1,"matchers":[{"string":"區域含有額外神諭傳送門\n神諭傳送門被摧毀時掉落額外通貨"}],"trade":{"ids":{"explicit":["explicit.stat_495299940"]}}} +{"ref":"Areas contain additional Shrines\nArea contains Shrines guarded by Pantheon Monsters","better":1,"matchers":[{"string":"區域含有額外神殿\n區域含有被眾神殿怪物守衛的神殿"}],"trade":{"ids":{"explicit":["explicit.stat_4252342397"]}}} +{"ref":"Areas contain additional Strongboxes\nStrongboxes are found in Sequences\nStrongboxes in a Sequence open when the previous Strongbox in the Sequence has unlocked","better":1,"matchers":[{"string":"區域含有額外保險箱\n保險箱為連續出現\n當系列中的前個保險箱解鎖時,會接續解鎖"}],"trade":{"ids":{"explicit":["explicit.stat_645735818"]}}} +{"ref":"Areas contain additional Temporal Incursions\nTemporal Incursion Portals have their direction reversed","better":1,"matchers":[{"string":"區域含有額外穿越\n穿越傳送門的方向相反"}],"trade":{"ids":{"explicit":["explicit.stat_3582614035"]}}} +{"ref":"Areas contain Einhar\nAreas can contain capturable Harvest Beasts","better":1,"matchers":[{"string":"區域含有埃哈\n區域可以含有可捕捉的豐收野獸"}],"trade":{"ids":{"explicit":["explicit.stat_3751566939"]}}} +{"ref":"Areas contain many additional Breaches\nBreaches open and close faster","better":1,"matchers":[{"string":"區域含有許多額外裂痕\n裂痕開啟和關閉更快"}],"trade":{"ids":{"explicit":["explicit.stat_2518308945"]}}} +{"ref":"Areas contain Ritual Altars","better":1,"matchers":[{"string":"區域含有祭祀神壇"}],"trade":{"ids":{"explicit":["explicit.stat_1671749203"],"implicit":["implicit.stat_1671749203"],"enchant":["enchant.stat_1671749203"]}}} +{"ref":"Areas contain The Sacred Grove\nCrops are larger in size\nCrops contain higher tier seeds","better":1,"matchers":[{"string":"區域含有聖殿密園\n作物更大\n作物含有高階種子"}],"trade":{"ids":{"explicit":["explicit.stat_3422644692"]}}} +{"ref":"Armageddon Brand Damage Penetrates #% of Branded Enemy's Fire Resistance","better":1,"matchers":[{"string":"末日烙印傷害穿透被烙印敵人的 #% 火焰抗性"}],"trade":{"ids":{"enchant":["enchant.stat_1715805151"]}}} +{"ref":"Armageddon Brand deals #% increased Damage","better":1,"matchers":[{"string":"末日烙印增加 #% 傷害"},{"string":"末日烙印減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1699139870"]}}} +{"ref":"Armageddon Brand has #% increased Activation Frequency","better":1,"matchers":[{"string":"末日烙印增加 #% 發動頻率"},{"string":"末日烙印減少 #% 發動頻率","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2512194486"]}}} +{"ref":"Armour also applies to Chaos Damage taken from Hits","better":1,"matchers":[{"string":"護甲同時套用至承受擊中的混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_4186532642"]}}} +{"ref":"Armour also applies to Lightning Damage taken from Hits","better":1,"matchers":[{"string":"護甲同時承受來自擊中的閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2134207902"]}}} +{"ref":"Armour is increased by Overcapped Fire Resistance","better":1,"matchers":[{"string":"護甲被超過上限的火焰抗性增加"}],"trade":{"ids":{"explicit":["explicit.stat_2129352930"],"fractured":["fractured.stat_2129352930"]}}} +{"ref":"Arrow Dancing","better":1,"matchers":[{"string":"箭矢閃躍"}],"trade":{"ids":{"explicit":["explicit.stat_2606808909"],"scourge":["scourge.stat_2606808909"]}}} +{"ref":"Arrows Chain +# times","better":1,"matchers":[{"string":"箭矢連鎖 # 次"}],"trade":{"ids":{"implicit":["implicit.stat_1001077145"]}}} +{"ref":"Arrows deal # to # Added Fire Damage for each time they've Pierced","better":1,"matchers":[{"string":"箭矢每次穿透時,附加 # 至 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3726936056"]}}} +{"ref":"Arrows deal #% increased Damage with Hits and Ailments to Targets they Pierce","better":1,"matchers":[{"string":"箭矢對穿透的目標增加 #% 擊中和異常狀態傷害"},{"string":"箭矢對穿透的目標減少 #% 擊中和異常狀態傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1019891080"]}}} +{"ref":"Arrows fired from the first firing points always Pierce","better":1,"matchers":[{"string":"從初始發射位置發射的箭矢一定穿透"}],"trade":{"ids":{"explicit":["explicit.stat_2168987271"]}}} +{"ref":"Arrows fired from the fourth firing points Chain +# time","better":1,"matchers":[{"string":"從第 4 個發射點發射的箭矢 # 次連鎖"}],"trade":{"ids":{"explicit":["explicit.stat_226515115"]}}} +{"ref":"Arrows fired from the second firing points Fork","better":1,"matchers":[{"string":"從第 2 個發射點發射的箭矢會分裂"}],"trade":{"ids":{"explicit":["explicit.stat_3290081052"]}}} +{"ref":"Arrows fired from the third firing points Return to you","better":1,"matchers":[{"string":"從第 3 個發射點發射的箭矢會返回你"}],"trade":{"ids":{"explicit":["explicit.stat_301746072"]}}} +{"ref":"Arrows Fork","better":1,"matchers":[{"string":"箭矢分裂"}],"trade":{"ids":{"explicit":["explicit.stat_2421436896"]}}} +{"ref":"Arrows Pierce all Targets","better":1,"matchers":[{"string":"箭矢穿透所有目標"}],"trade":{"ids":{"explicit":["explicit.stat_1829238593"]}}} +{"ref":"Arrows Pierce all Targets after Chaining","better":1,"matchers":[{"string":"連鎖後的箭矢穿透所有目標"}],"trade":{"ids":{"explicit":["explicit.stat_1997151732"]}}} +{"ref":"Arrows Pierce all Targets after Forking","better":1,"matchers":[{"string":"箭矢分裂後穿透所有目標"}],"trade":{"ids":{"explicit":["explicit.stat_2138799639"]}}} +{"ref":"Arrows Pierce an additional Target","better":1,"matchers":[{"string":"箭矢穿透 # 個額外目標"},{"string":"箭矢穿透一個額外目標","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3423006863"],"implicit":["implicit.stat_3423006863"]}}} +{"ref":"Arrows that Pierce have +#% to Critical Strike Multiplier","better":1,"matchers":[{"string":"穿透的箭矢 #% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_1064778484"]}}} +{"ref":"Arrows that Pierce have 50% chance to inflict Bleeding","better":1,"matchers":[{"string":"穿透的箭矢有 50% 造成流血"}],"trade":{"ids":{"explicit":["explicit.stat_1812251528"]}}} +{"ref":"Artillery Ballista Damage Penetrates #% Fire Resistance","better":1,"matchers":[{"string":"火砲砲塔傷害穿透 #% 火焰抗性"}],"trade":{"ids":{"enchant":["enchant.stat_1734517294"]}}} +{"ref":"Artillery Ballista fires an additional Arrow","better":1,"matchers":[{"string":"火砲砲塔發射 # 支額外箭矢"},{"string":"火砲砲塔發射 1 支額外箭矢","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3283028259"]}}} +{"ref":"Artillery Ballista Projectiles fall in two perpendicular lines instead","better":1,"matchers":[{"string":"火砲砲塔投射物改為垂直降落的兩條線"}],"trade":{"ids":{"enchant":["enchant.stat_2056176052"]}}} +{"ref":"Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies","better":1,"matchers":[{"string":"飛羽祝福使附近友方也獲得飛羽意志和飛羽飄翔"}],"trade":{"ids":{"explicit":["explicit.stat_2544408546"]}}} +{"ref":"Aspect of the Cat has no Reservation","better":1,"matchers":[{"string":"傲貓祝福無保留"}],"trade":{"ids":{"explicit":["explicit.stat_3850409117"]}}} +{"ref":"Aspect of the Spider can inflict Spider's Web on Enemies an additional time","better":1,"matchers":[{"string":"毒蛛祝福可以對敵人額外造成 # 次蛛網"},{"string":"毒蛛祝福可以對敵人額外造成 1 次蛛網","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1509532587"]}}} +{"ref":"Aspect of the Spider inflicts Spider's Webs and Hinder every # Seconds instead","better":1,"matchers":[{"string":"毒蛛祝福現在每 # 秒造成蛛網和緩速"}],"trade":{"ids":{"explicit":["explicit.stat_3832130495"]}}} +{"ref":"Atlas Passives have #% reduced Effect on Area","better":-1,"fromAreaMods":true,"matchers":[{"string":"輿圖天賦對區域的效果增加 #%"},{"string":"輿圖天賦對區域的效果減少 #%","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3737068014"]},"inverted":true}} +{"ref":"Attack Critical Strikes ignore Enemy Monster Elemental Resistances","better":1,"matchers":[{"string":"攻擊暴擊無視敵人怪物元素抗性"}],"trade":{"ids":{"implicit":["implicit.stat_2170876738"]}}} +{"ref":"Attack Hits against Bleeding Enemies have #% chance to Blind","better":1,"matchers":[{"string":"攻擊擊中流血的敵人,有 #% 機率致盲"}],"trade":{"ids":{"explicit":["explicit.stat_4204320922"]}}} +{"ref":"Attack Hits against Blinded Enemies have #% chance to Maim","better":1,"matchers":[{"string":"攻擊擊中致盲的敵人,有 #% 機率癱瘓"}],"trade":{"ids":{"explicit":["explicit.stat_1291726336"]}}} +{"ref":"Attack Projectiles Return to you","better":1,"matchers":[{"string":"攻擊投射物返回你"}],"trade":{"ids":{"explicit":["explicit.stat_1658124062"],"crafted":["crafted.stat_1658124062"]}}} +{"ref":"Attack Skills gain #% of Physical Damage as Extra Fire Damage per Socketed Red Gem","better":1,"matchers":[{"string":"每個插槽中的紅色寶石使攻擊技能獲得 #% 物理傷害的額外火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1302700515"]}}} +{"ref":"Attack Skills have +# to maximum number of Summoned Totems","better":1,"matchers":[{"string":"攻擊技能 # 召喚圖騰的最大數量"}],"trade":{"ids":{"explicit":["explicit.stat_3266394681"]}}} +{"ref":"Attack Skills have Added Lightning Damage equal to #% of maximum Mana","better":1,"matchers":[{"string":"攻擊技能附加等於同 #% 最大魔力的閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2778228111"]}}} +{"ref":"Attacks always inflict Bleeding while you have Cat's Stealth","better":1,"matchers":[{"string":"你有傲貓隱身時攻擊造成流血"}],"trade":{"ids":{"explicit":["explicit.stat_2059771038"]}}} +{"ref":"Attacks Chain an additional time when in Main Hand","better":1,"matchers":[{"string":"裝備於主手時,攻擊額外連鎖 # 次"},{"string":"裝備於主手時,攻擊額外連鎖 1 次","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2466604008"]}}} +{"ref":"Attacks Cost Life instead of Mana","better":1,"matchers":[{"string":"攻擊消耗生命而非魔力"}],"trade":{"ids":{"explicit":["explicit.stat_3358745905"]}}} +{"ref":"Attacks Exerted by Ambush have +#% to Critical Strike Multiplier","better":1,"matchers":[{"string":"被伏擊竭盡的攻擊 #% 暴擊加成"}],"trade":{"ids":{"enchant":["enchant.stat_2343571547"]}}} +{"ref":"Attacks Exerted by Ancestral Cry deal #% increased Damage","better":1,"matchers":[{"string":"先祖戰吼竭盡的攻擊增加 #% 傷害"}],"trade":{"ids":{"implicit":["implicit.stat_2146663823"],"enchant":["enchant.stat_2146663823"]}}} +{"ref":"Attacks Exerted by Seismic Cry deal #% increased Damage","better":1,"matchers":[{"string":"被裂地戰吼竭盡的攻擊增加 #% 傷害"}],"trade":{"ids":{"implicit":["implicit.stat_3252913608"],"enchant":["enchant.stat_3252913608"]}}} +{"ref":"Attacks fire an additional Projectile","better":1,"matchers":[{"string":"攻擊發射 # 個額外投射物"},{"string":"攻擊發射 1 個額外投射物","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1195705739"]}}} +{"ref":"Attacks fire an additional Projectile when in Off Hand","better":1,"matchers":[{"string":"副手攻擊時發射 # 個額外投射物"},{"string":"副手攻擊時發射 1 個額外投射物","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2105048696"]}}} +{"ref":"Attacks have #% chance to cause Bleeding","better":1,"matchers":[{"string":"攻擊無法造成流血","value":-1},{"string":"攻擊有 #% 機率造成流血"},{"string":"攻擊造成流血","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1923879260"],"implicit":["implicit.stat_1923879260"],"fractured":["fractured.stat_1923879260"],"scourge":["scourge.stat_1923879260"]}}} +{"ref":"Attacks have #% chance to Maim on Hit","better":1,"matchers":[{"string":"攻擊擊中時有 #% 機率造成癱瘓"},{"string":"攻擊擊中時造成癱瘓","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1510714129"],"implicit":["implicit.stat_1510714129"],"fractured":["fractured.stat_1510714129"],"scourge":["scourge.stat_1510714129"]}}} +{"ref":"Attacks have #% chance to Poison while at maximum Frenzy Charges","better":1,"matchers":[{"string":"當獲得最大狂怒球時,攻擊有 #% 機率造成中毒"},{"string":"當獲得最大狂怒球時,攻擊造成中毒","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3654074125"]}}} +{"ref":"Attacks have +#% to Critical Strike Chance","dp":true,"better":1,"matchers":[{"string":"攻擊有 #% 機率造成暴擊"}],"trade":{"ids":{"explicit":["explicit.stat_2572042788"],"implicit":["implicit.stat_2572042788"],"fractured":["fractured.stat_2572042788"]}}} +{"ref":"Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies","better":1,"matchers":[{"string":"當攻擊擊中被詛咒的敵人時有 25% 機率造成流血"}],"trade":{"ids":{"explicit":["explicit.stat_2591028853"]}}} +{"ref":"Attacks inflict Unnerve on Critical Strike for 4 seconds","better":1,"matchers":[{"string":"暴擊時的攻擊可造成 4 秒膽怯"}],"trade":{"ids":{"explicit":["explicit.stat_3362271649"]}}} +{"ref":"Attacks that Fire Projectiles Consume up to # additional Steel Shard","better":1,"matchers":[{"string":"會發射投射物的攻擊消耗最多 # 個額外鋼鐵碎片"}],"trade":{"ids":{"explicit":["explicit.stat_591162856"]}}} +{"ref":"Attacks with Energy Blades Penetrate #% Lightning Resistance","better":1,"matchers":[{"string":"能量之刃攻擊穿透 #% 閃電抗性"}],"trade":{"ids":{"enchant":["enchant.stat_1501151168"]}}} +{"ref":"Attacks with this Weapon deal # to # added Chaos Damage against\nEnemies affected by at least 5 Poisons","better":1,"matchers":[{"string":"使用此武器攻擊至少有 5 層中毒的敵人,附加 # 至 # 混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3829706447"]}}} +{"ref":"Attacks with this Weapon deal # to # added Fire Damage to Bleeding Enemies","better":1,"matchers":[{"string":"使用此武器攻擊流血的敵人,附加 # 至 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2453554491"]}}} +{"ref":"Attacks with this Weapon deal # to # added Physical Damage to Ignited Enemies","better":1,"matchers":[{"string":"使用此武器攻擊被點燃的敵人附加 # 至 # 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2202639361"]}}} +{"ref":"Attacks with this Weapon deal Double Damage","better":1,"matchers":[{"string":"使用此武器攻擊造成 2 倍傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1506185293"]}}} +{"ref":"Attacks with this Weapon deal Double Damage to Chilled Enemies","better":1,"matchers":[{"string":"此武器進行的攻擊對冰緩的敵人造成 2 倍傷害"}],"trade":{"ids":{"explicit":["explicit.stat_625037258"]}}} +{"ref":"Attacks with this Weapon have #% chance to inflict Bleeding against Ignited Enemies","better":1,"matchers":[{"string":"使用此武器攻擊被點燃的敵人有 #% 機率造成流血"}],"trade":{"ids":{"explicit":["explicit.stat_3148418088"]}}} +{"ref":"Attacks with this Weapon have #% increased Elemental Damage","better":1,"matchers":[{"string":"這個武器攻擊會增加 #% 元素傷害"},{"string":"這個武器攻擊會減少 #% 元素傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_17526298"]}}} +{"ref":"Attacks with this Weapon have Added Maximum Lightning Damage equal to #% of Player's Maximum Energy Shield","better":1,"matchers":[{"string":"使用此武器攻擊附加等同 #% 玩家最大能量護盾的最大閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_973269941"]}}} +{"ref":"Attacks with this Weapon Maim on hit","better":1,"matchers":[{"string":"使用此武器攻擊擊中時造成癱瘓"}],"trade":{"ids":{"explicit":["explicit.stat_3418949024"]}}} +{"ref":"Attacks with this Weapon Penetrate #% Chaos Resistance","better":1,"matchers":[{"string":"使用此武器攻擊穿透 #% 混沌抗性"}],"trade":{"ids":{"explicit":["explicit.stat_3762412853"],"fractured":["fractured.stat_3762412853"],"crafted":["crafted.stat_3762412853"]}}} +{"ref":"Attacks with this Weapon Penetrate #% Cold Resistance","better":1,"matchers":[{"string":"使用此武器攻擊穿透 #% 冰冷抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1740229525"],"fractured":["fractured.stat_1740229525"]}}} +{"ref":"Attacks with this Weapon Penetrate #% Elemental Resistances","better":1,"matchers":[{"string":"此武器進行的攻擊穿透 #% 元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_4064396395"],"implicit":["implicit.stat_4064396395"],"fractured":["fractured.stat_4064396395"],"crafted":["crafted.stat_4064396395"]}}} +{"ref":"Attacks with this Weapon Penetrate #% Fire Resistance","better":1,"matchers":[{"string":"使用此武器攻擊穿透 #% 火焰抗性"}],"trade":{"ids":{"explicit":["explicit.stat_3398283493"],"fractured":["fractured.stat_3398283493"]}}} +{"ref":"Attacks with this Weapon Penetrate #% Lightning Resistance","better":1,"matchers":[{"string":"使用此武器攻擊穿透 #% 閃電抗性"}],"trade":{"ids":{"explicit":["explicit.stat_2387539034"],"fractured":["fractured.stat_2387539034"]}}} +{"ref":"Attribute Requirements can be satisfied by #% of Omniscience","better":1,"matchers":[{"string":"#% 的全知能滿足能力需求"}],"trade":{"ids":{"explicit":["explicit.stat_3024338155"]}}} +{"ref":"Aura Skills other than Anger are Disabled","better":1,"matchers":[{"string":"除了憤怒外的光環技能都失效"}],"trade":{"ids":{"explicit":["explicit.stat_2185337019"]}}} +{"ref":"Aura Skills other than Clarity are Disabled","better":1,"matchers":[{"string":"除了清晰外的光環技能都失效"}],"trade":{"ids":{"explicit":["explicit.stat_2010835448"]}}} +{"ref":"Aura Skills other than Determination are Disabled","better":1,"matchers":[{"string":"除了堅定外的光環技能都失效"}],"trade":{"ids":{"explicit":["explicit.stat_460973817"]}}} +{"ref":"Aura Skills other than Discipline are Disabled","better":1,"matchers":[{"string":"除了紀律外的光環技能都失效"}],"trade":{"ids":{"explicit":["explicit.stat_2204523353"]}}} +{"ref":"Aura Skills other than Grace are Disabled","better":1,"matchers":[{"string":"除了優雅外的光環技能都失效"}],"trade":{"ids":{"explicit":["explicit.stat_1747401945"]}}} +{"ref":"Aura Skills other than Haste are Disabled","better":1,"matchers":[{"string":"除了迅捷外的光環技能都失效"}],"trade":{"ids":{"explicit":["explicit.stat_3067441492"]}}} +{"ref":"Aura Skills other than Hatred are Disabled","better":1,"matchers":[{"string":"除了憎恨外的光環技能都失效"}],"trade":{"ids":{"explicit":["explicit.stat_3348211884"]}}} +{"ref":"Aura Skills other than Malevolence are Disabled","better":1,"matchers":[{"string":"除了惡意外的光環技能都失效"}],"trade":{"ids":{"explicit":["explicit.stat_3540033124"]}}} +{"ref":"Aura Skills other than Precision are Disabled","better":1,"matchers":[{"string":"除了精準外的光環技能都失效"}],"trade":{"ids":{"explicit":["explicit.stat_2800254163"]}}} +{"ref":"Aura Skills other than Pride are Disabled","better":1,"matchers":[{"string":"除了驕傲外的光環技能都失效"}],"trade":{"ids":{"explicit":["explicit.stat_3970941380"]}}} +{"ref":"Aura Skills other than Purity of Elements are Disabled","better":1,"matchers":[{"string":"除了元素淨化外的光環技能都失效"}],"trade":{"ids":{"explicit":["explicit.stat_2225434657"]}}} +{"ref":"Aura Skills other than Purity of Fire are Disabled","better":1,"matchers":[{"string":"除了火焰淨化外的光環技能都失效"}],"trade":{"ids":{"explicit":["explicit.stat_3192291777"]}}} +{"ref":"Aura Skills other than Purity of Ice are Disabled","better":1,"matchers":[{"string":"除了冰霜淨化外的光環技能都失效"}],"trade":{"ids":{"explicit":["explicit.stat_2517644375"]}}} +{"ref":"Aura Skills other than Purity of Lightning are Disabled","better":1,"matchers":[{"string":"除了閃電淨化外的光環技能都失效"}],"trade":{"ids":{"explicit":["explicit.stat_2523986538"]}}} +{"ref":"Aura Skills other than Vitality are Disabled","better":1,"matchers":[{"string":"除了活力外的光環技能都失效"}],"trade":{"ids":{"explicit":["explicit.stat_110034065"]}}} +{"ref":"Aura Skills other than Wrath are Disabled","better":1,"matchers":[{"string":"除了雷霆外的光環技能都失效"}],"trade":{"ids":{"explicit":["explicit.stat_3292388799"]}}} +{"ref":"Aura Skills other than Zealotry are Disabled","better":1,"matchers":[{"string":"除了狂熱外的光環技能都失效"}],"trade":{"ids":{"explicit":["explicit.stat_374559518"]}}} +{"ref":"Auras from your Skills grant #% increased Damage to you and Allies","better":1,"matchers":[{"string":"你的技能光環給予你和友方增加 #% 傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3729445224"]}}} +{"ref":"Auras from your Skills have #% increased Effect on you","better":1,"matchers":[{"string":"來自你技能的光環增加 #% 你身上的效果"},{"string":"來自你技能的光環減少 #% 你身上的效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_472812693"]}}} +{"ref":"Aureus Coins are converted to Experience upon defeating the Herald of the Scourge","better":1,"matchers":[{"string":"災魘先鋒後,奧瑞厄斯幣轉化至經驗"}],"trade":{"ids":{"explicit":["sanctum.stat_1307773596"]}}} +{"ref":"Aureus Coins are converted to Relics upon defeating the Herald of the Scourge","better":1,"matchers":[{"string":"災魘先鋒後,奧瑞厄斯幣轉化至聖物"}],"trade":{"ids":{"explicit":["sanctum.stat_315260783"]}}} +{"ref":"Aureus Coins are converted to Tainted Currency upon defeating the Herald of the Scourge","better":1,"matchers":[{"string":"擊敗災魘先鋒時,奧瑞厄斯幣轉化至玷汙通貨"}],"trade":{"ids":{"explicit":["sanctum.stat_1019656601"]}}} +{"ref":"Avatar of Fire","better":1,"matchers":[{"string":"火之化身"}],"trade":{"ids":{"explicit":["explicit.stat_346029096"],"fractured":["fractured.stat_346029096"],"scourge":["scourge.stat_346029096"]}}} +{"ref":"Ball Lightning fires an additional Projectile","better":1,"matchers":[{"string":"天雷之珠發射 # 個額外投射物"},{"string":"天雷之珠發射 1 個額外投射物","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3420683028"]}}} +{"ref":"Bane deals #% increased Damage","better":1,"matchers":[{"string":"災厄增加 #% 傷害"},{"string":"災厄減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2206071316"]}}} +{"ref":"Bane has #% increased Area of Effect","better":1,"matchers":[{"string":"災厄增加 #% 範圍效果"},{"string":"災厄減少 #% 範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4224588066"]}}} +{"ref":"Banner Skills have #% increased Aura Effect","better":1,"matchers":[{"string":"鬥旗技能增加 #% 光環效果"},{"string":"鬥旗技能減少 #% 光環效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2729804981"],"crafted":["crafted.stat_2729804981"]}}} +{"ref":"Banner Skills have no Reservation","better":1,"matchers":[{"string":"鬥旗技能沒有保留"}],"trade":{"ids":{"explicit":["explicit.stat_2384457007"]}}} +{"ref":"Barrage fires an additional Projectile","better":1,"matchers":[{"string":"彈幕發射 # 個額外投射物"},{"string":"彈幕發射 1 個額外投射物","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3009270704"]}}} +{"ref":"Base Spell Critical Strike Chance of Spells is equal to that of Main Hand Weapon","better":1,"matchers":[{"string":"法術的基礎法術暴擊率等同主手武器"}],"trade":{"ids":{"explicit":["explicit.stat_2560911401"]}}} +{"ref":"Bathed in the blood of # sacrificed in the name of Ahuana","better":0,"matchers":[{"string":"浸泡在以阿呼阿娜之名獻祭的 # 條生命中\n範圍內的天賦臣服於瓦爾","advanced":"浸泡在以阿呼阿娜之名獻祭的 # 條生命中(阿呼阿娜-賽巴昆)\n範圍內的天賦臣服於瓦爾"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_ahuana"]}}} +{"ref":"Bathed in the blood of # sacrificed in the name of Doryani","better":0,"matchers":[{"string":"浸泡在以多里亞尼之名獻祭的 # 條生命中\n範圍內的天賦臣服於瓦爾","advanced":"浸泡在以多里亞尼之名獻祭的 # 條生命中(阿呼阿娜-賽巴昆)\n範圍內的天賦臣服於瓦爾"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_doryani"]}}} +{"ref":"Bathed in the blood of # sacrificed in the name of Xibaqua","better":0,"matchers":[{"string":"浸泡在以賽巴昆之名獻祭的 # 條生命中\n範圍內的天賦臣服於瓦爾","advanced":"浸泡在以賽巴昆之名獻祭的 # 條生命中(阿呼阿娜-賽巴昆)\n範圍內的天賦臣服於瓦爾"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_xibaqua"]}}} +{"ref":"Battlemage","better":1,"matchers":[{"string":"戰法"}],"trade":{"ids":{"explicit":["explicit.stat_448903047"]}}} +{"ref":"Battlemage's Cry Exerts # additional Attack","better":1,"matchers":[{"string":"戰法戰吼竭盡 # 次額外攻擊"}],"trade":{"ids":{"enchant":["enchant.stat_931713173"]}}} +{"ref":"Bear Trap has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"捕熊陷阱增加 #% 冷卻時間恢復速度"},{"string":"捕熊陷阱減少 #% 冷卻時間恢復速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_918308703"]}}} +{"ref":"Berserk has #% increased Buff Effect","better":1,"matchers":[{"string":"狂戰增加 #% 增益效果"},{"string":"狂戰減少 #% 增益效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1663783758"]}}} +{"ref":"Berserk has #% reduced Rage loss per second","better":-1,"matchers":[{"string":"狂戰增加 #% 每秒盛怒損失"},{"string":"狂戰減少 #% 每秒盛怒損失","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1019790379"]},"inverted":true}} +{"ref":"Blade Blast deals #% increased Damage","better":1,"matchers":[{"string":"劍刃爆破增加 #% 傷害"},{"string":"劍刃爆破減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2276547155"]}}} +{"ref":"Blade Blast detonates other Lingering Blades within an #% increased Area","better":1,"matchers":[{"string":"劍刃爆破引爆增加 #% 範圍內的其它剩餘劍刃"},{"string":"劍刃爆破引爆減少 #% 範圍內的其它剩餘劍刃","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3309486263"]}}} +{"ref":"Blade Blast has #% increased Area of Effect","better":1,"matchers":[{"string":"劍刃爆破增加 #% 範圍效果"},{"string":"劍刃爆破減少 #% 範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3569393676"]}}} +{"ref":"Blade Trap rotates +# times","dp":true,"better":1,"matchers":[{"string":"刀鋒陷阱 # 次旋轉"}],"trade":{"ids":{"enchant":["enchant.stat_4195549152"]}}} +{"ref":"Blade Vortex has +#% to Critical Strike Multiplier for each blade","better":1,"matchers":[{"string":"每把飛刃 #% 飛刃風暴暴擊加成"}],"trade":{"ids":{"enchant":["enchant.stat_2583039202"]}}} +{"ref":"Bladestorm deals #% increased Damage","better":1,"matchers":[{"string":"旋天劍舞增加 #% 傷害"},{"string":"旋天劍舞減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_599289531"]}}} +{"ref":"Blast Rain deals #% increased Damage","better":1,"matchers":[{"string":"爆裂箭雨增加 #% 傷害"},{"string":"爆裂箭雨減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4014289250"]}}} +{"ref":"Blast Rain fires an additional Arrow","better":1,"matchers":[{"string":"爆裂箭雨發射 1 支額外箭矢"}],"trade":{"ids":{"enchant":["enchant.stat_3519675720"]}}} +{"ref":"Blast Rain has #% increased Area of Effect","better":1,"matchers":[{"string":"爆裂箭雨增加 #% 範圍效果"},{"string":"爆裂箭雨減少 #% 範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_574378310"]}}} +{"ref":"Blazing Salvo deals #% increased Damage","better":1,"matchers":[{"string":"熾熱魔炮增加 #% 傷害"},{"string":"熾熱魔炮減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4102281803"]}}} +{"ref":"Blazing Salvo fires an additional Projectile","better":1,"matchers":[{"string":"熾熱魔炮發射 # 個額外投射物"},{"string":"熾熱魔炮發射 1 個額外投射物","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3908539803"]}}} +{"ref":"Blazing Salvo Projectiles land in a #% increased Area","better":1,"matchers":[{"string":"熾熱魔炮投射物增加 #% 落下範圍"},{"string":"熾熱魔炮投射物減少 #% 落下範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1785831895"]}}} +{"ref":"Bleeding Enemies you Kill Explode, dealing #% of\ntheir Maximum Life as Physical Damage","better":1,"matchers":[{"string":"擊殺流血的敵人時產生爆炸,造成等同其 #% 最大生命的物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3133323410"]}}} +{"ref":"Bleeding Enemies you Kill with Hits Shatter","better":1,"matchers":[{"string":"你擊中擊殺流血的敵人會粉碎"}],"trade":{"ids":{"explicit":["explicit.stat_881917501"]}}} +{"ref":"Bleeding on you expires #% faster while Moving","better":1,"matchers":[{"string":"移動時,你身上的流血加速 #% 失效"},{"string":"移動時,你身上的流血減緩 #% 失效","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_391460978"]}}} +{"ref":"Bleeding you inflict deals Damage #% faster","better":1,"matchers":[{"string":"你造成的流血傷害加速 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3828375170"],"implicit":["implicit.stat_3828375170"],"fractured":["fractured.stat_3828375170"],"scourge":["scourge.stat_3828375170"]}}} +{"ref":"Bleeding you inflict deals Damage #% faster per Frenzy Charge","better":1,"matchers":[{"string":"每顆狂怒球使你造成的流血傷害加速 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1670470989"]}}} +{"ref":"Bleeding you inflict is Reflected to you","better":1,"matchers":[{"string":"你造成的流血會反射到你身上"}],"trade":{"ids":{"explicit":["explicit.stat_2658399404"]}}} +{"ref":"Blight has #% increased Hinder Duration","better":1,"matchers":[{"string":"萎滅增加 #% 緩速期間"},{"string":"萎滅減少 #% 緩速期間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4170725899"],"enchant":["enchant.stat_4170725899"]}}} +{"ref":"Blind Chilled Enemies on Hit","better":1,"matchers":[{"string":"擊中冰緩的敵人時有 #% 機率使其致盲"},{"string":"擊中冰緩的敵人時使其致盲","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3450276548"],"fractured":["fractured.stat_3450276548"]}}} +{"ref":"Blind does not affect your Light Radius","better":1,"matchers":[{"string":"致盲不影響你的光線範圍"}],"trade":{"ids":{"explicit":["explicit.stat_3013171896"]}}} +{"ref":"Blind you inflict is Reflected to you","better":1,"matchers":[{"string":"你造成的致盲反射回你"}],"trade":{"ids":{"explicit":["explicit.stat_2458598175"]}}} +{"ref":"Blink Arrow and Blink Arrow Clones have #% increased Attack Speed","better":1,"matchers":[{"string":"增加 #% 閃現射擊攻擊速度"},{"string":"減少 #% 閃現射擊攻擊速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1554597333"]}}} +{"ref":"Blink Arrow and Blink Arrow Clones have #% increased Damage","better":1,"matchers":[{"string":"增加閃現射擊和其召喚物 #% 傷害"},{"string":"減少閃現射擊和其召喚物 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1967878868"]}}} +{"ref":"Blink Arrow has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"閃現射擊增加 #% 冷卻時間恢復速度"},{"string":"閃現射擊減少 #% 冷卻時間恢復速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2983274404"]}}} +{"ref":"Blood and Sand has #% increased Buff Effect","better":1,"matchers":[{"string":"血腥殺戮增加 #% 增益效果"},{"string":"血腥殺戮減少 #% 增益效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2471636515"]}}} +{"ref":"Blood Magic","better":1,"matchers":[{"string":"祭血術"}],"trade":{"ids":{"explicit":["explicit.stat_2801937280"],"scourge":["scourge.stat_2801937280"]}}} +{"ref":"Blood Rage grants additional #% chance to gain a Frenzy Charge on Kill","better":1,"matchers":[{"string":"鮮血狂怒有額外 #% 機率擊殺時獲得狂怒球"}],"trade":{"ids":{"enchant":["enchant.stat_3152806535"]}}} +{"ref":"Blood Rage grants additional #% increased Attack Speed","better":1,"matchers":[{"string":"鮮血狂怒額外增加 #% 攻擊速度"},{"string":"鮮血狂怒額外減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3418033798"]}}} +{"ref":"Bone Offering grants an additional +#% Chance to Block Attack Damage","better":1,"matchers":[{"string":"骸骨奉獻給予額外 #% 攻擊傷害格擋率"}],"trade":{"ids":{"enchant":["enchant.stat_3233607638"]}}} +{"ref":"Bone Offering has #% increased Effect","better":1,"matchers":[{"string":"骸骨奉獻增加 #% 效果"},{"string":"骸骨奉獻減少 #% 效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1801289192"]}}} +{"ref":"Boneshatter has #% chance to grant +1 Trauma","better":1,"matchers":[{"string":"碎骨有 #% 機率 +1 創傷"}],"trade":{"ids":{"enchant":["enchant.stat_2870283358"]}}} +{"ref":"Bosses impact #% increased Resolve","better":1,"matchers":[{"string":"頭目影響增加 #% 決心"},{"string":"頭目影響減少 #% 決心","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_2207905451"]}}} +{"ref":"Bosses take #% increased Damage","better":1,"matchers":[{"string":"頭目增加承受 #% 傷害"},{"string":"頭目減少承受 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_3226329527"]}}} +{"ref":"Bow Attacks fire # additional Arrows","better":1,"matchers":[{"string":"弓攻擊發射 # 個額外箭矢"},{"string":"弓攻擊發射 1 個額外箭矢","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3885405204"],"implicit":["implicit.stat_3885405204"],"fractured":["fractured.stat_3885405204"],"scourge":["scourge.stat_3885405204"]}}} +{"ref":"Bow Attacks fire # additional Arrows if you haven't Cast Dash recently","better":1,"matchers":[{"string":"若你近期沒有施放幻步,弓攻擊發射 # 支額外箭矢"}],"trade":{"ids":{"explicit":["explicit.stat_2482927318"]}}} +{"ref":"Bow Attacks have Culling Strike","better":1,"matchers":[{"string":"弓攻擊有撲殺"}],"trade":{"ids":{"explicit":["explicit.stat_4217693429"]}}} +{"ref":"Bow Knockback at Close Range","better":1,"matchers":[{"string":"近距離時弓擊退敵人"}],"trade":{"ids":{"explicit":["explicit.stat_3261557635"]}}} +{"ref":"Brand Skills have #% increased Duration","better":1,"matchers":[{"string":"烙印技能增加 #% 持續時間"},{"string":"烙印技能減少 #% 持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3089482869"],"scourge":["scourge.stat_3089482869"]}}} +{"ref":"Buffs on Players expire #% faster","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"玩家身上的增益效果加速 #% 失效"},{"string":"玩家身上的增益效果減緩 #% 失效"}],"trade":{"ids":{"explicit":["explicit.stat_1217583941"],"fractured":["fractured.stat_1217583941"]}}} +{"ref":"Burning Arrow Always Ignites","better":1,"matchers":[{"string":"燃燒箭矢有 #% 機率點燃"},{"string":"燃燒箭矢必定點燃","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2226973351"]}}} +{"ref":"Burning Enemies you kill have a #% chance to Explode, dealing a tenth of their maximum Life as Fire Damage","better":1,"matchers":[{"string":"你擊殺燃燒的敵人有 #% 機率爆炸,造成十分之一它們最大生命的火焰傷害"}],"trade":{"ids":{"enchant":["enchant.stat_1617268696"]}}} +{"ref":"Burning Hoofprints","better":1,"matchers":[{"string":"燃燒蹄印"}],"trade":{"ids":{"explicit":["explicit.stat_3576153145"]}}} +{"ref":"Cages created by Your Glacial Cage Towers are #% larger","better":1,"anointments":[{"roll":20,"oils":"7,11"}],"matchers":[{"string":"你寒冰牢籠製造的牢籠比平常大 #%"}],"trade":{"ids":{"enchant":["enchant.stat_2449293016"]}}} +{"ref":"Call of Steel causes #% increased Reflected Damage","better":1,"matchers":[{"string":"鋼之呼喚使增加 #% 反射傷害"},{"string":"鋼之呼喚使減少 #% 反射傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2879593163"]}}} +{"ref":"Call of Steel deals Reflected Damage with #% increased Area of Effect","better":1,"matchers":[{"string":"鋼之呼喚造成的反射傷害增加 #% 範圍效果"},{"string":"鋼之呼喚造成的反射傷害減少 #% 範圍效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2067717830"]}}} +{"ref":"Call of Steel has #% increased Use Speed","better":1,"matchers":[{"string":"鋼之呼喚增加 #% 使用速度"},{"string":"鋼之呼喚減少 #% 使用速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_109671187"]}}} +{"ref":"Call to Arms","better":1,"matchers":[{"string":"武裝召喚"}],"trade":{"ids":{"explicit":["explicit.stat_3292262540"],"fractured":["fractured.stat_3292262540"],"scourge":["scourge.stat_3292262540"]}}} +{"ref":"Can be Enchanted by a Kalguuran Runesmith","better":1,"matchers":[{"string":"可以被卡爾葛魔符匠附魔"}],"trade":{"ids":{"explicit":["explicit.stat_4005027470"]}}} +{"ref":"Can be modified while Corrupted","better":1,"matchers":[{"string":"已汙染時仍可調整"}],"trade":{"ids":{"explicit":["explicit.stat_1161337167"]}}} +{"ref":"Can be Runesmithed as though it were all One Handed Melee Weapon Types","better":1,"matchers":[{"string":"Can be Runesmithed as though it were all One Handed Melee Weapon Types"}],"trade":{"ids":{"explicit":["explicit.stat_3221277412"]}}} +{"ref":"Can have # additional Crafted Modifier","better":1,"matchers":[{"string":"可以有 # 個額外工藝詞綴"}],"trade":{"ids":{"enchant":["enchant.stat_1963398329"]}}} +{"ref":"Can have # additional Enchantment Modifiers","better":1,"matchers":[{"string":"可以有 # 個額外附魔詞綴"},{"string":"可以有第二個附魔詞綴","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1135194732"]}}} +{"ref":"Can have # additional Runesmithing Enchantment","better":1,"matchers":[{"string":"可以有 # 個額外魔符鍛造附魔"}],"trade":{"ids":{"explicit":["explicit.stat_1045438865"]}}} +{"ref":"Can have a up to 1 Implicit Modifier while Item has this Modifier","better":1,"matchers":[{"string":"物品有此詞綴時可以有最多 # 個固定詞綴"},{"string":"物品有此詞綴時可以有最多 1 個固定詞綴","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1161341806"]}}} +{"ref":"Can have up to # additional Remote Mine placed at a time","better":1,"matchers":[{"string":"同時最多可以有 # 個額外已放置的遙控地雷"},{"string":"同時最多可以減少 # 個已放置的遙控地","negate":true},{"string":"同時最多可以減少 # 個已放置的遙控地雷","negate":true}],"trade":{"ids":{"scourge":["scourge.stat_60263468"]}}} +{"ref":"Can have up to # additional Trap placed at a time","better":1,"matchers":[{"string":"同時最多可以放置 # 個額外陷阱"},{"string":"減少 # 個同時可以放置的陷阱","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2224292784"],"implicit":["implicit.stat_2224292784"],"scourge":["scourge.stat_2224292784"]}}} +{"ref":"Can have up to 3 Crafted Modifiers","better":1,"matchers":[{"string":"可以最多有 3 個工藝詞綴"}],"trade":{"ids":{"explicit":["explicit.stat_1859333175"],"fractured":["fractured.stat_1859333175"],"crafted":["crafted.stat_1859333175"]}}} +{"ref":"Can roll Minion Modifiers","better":1,"matchers":[{"string":"可以骰出召喚物詞綴"}],"trade":{"ids":{"implicit":["implicit.stat_2994708956"]}}} +{"ref":"Can't use Chest armour","better":1,"matchers":[{"string":"不能使用胸甲"}],"trade":{"ids":{"explicit":["explicit.stat_4007482102"]}}} +{"ref":"Can't use Flask in Fifth Slot","better":1,"matchers":[{"string":"不能使用第 5 欄位的藥劑"}],"trade":{"ids":{"implicit":["implicit.stat_589489789"]}}} +{"ref":"Can't use other Rings","better":1,"matchers":[{"string":"不能使用其他戒指"}],"trade":{"ids":{"explicit":["explicit.stat_64726306"]}}} +{"ref":"Cannot be Blinded","better":1,"matchers":[{"string":"不會被致盲"}],"trade":{"ids":{"explicit":["explicit.stat_1436284579"],"implicit":["implicit.stat_1436284579"],"fractured":["fractured.stat_1436284579"]}}} +{"ref":"Cannot be Blinded while affected by Precision","better":1,"matchers":[{"string":"被精準影響時不能被致盲"}],"trade":{"ids":{"explicit":["explicit.stat_1653848515"]}}} +{"ref":"Cannot be Chilled","better":1,"matchers":[{"string":"不能被冰緩"}],"trade":{"ids":{"explicit":["explicit.stat_283649372"]}}} +{"ref":"Cannot be Chilled or Frozen while moving","better":1,"matchers":[{"string":"移動時不能被冰緩或冰凍"}],"trade":{"ids":{"explicit":["explicit.stat_628032624"]}}} +{"ref":"Cannot be Frozen","better":1,"matchers":[{"string":"不能被冰凍"}],"trade":{"ids":{"explicit":["explicit.stat_876831634"],"implicit":["implicit.stat_876831634"],"fractured":["fractured.stat_876831634"],"scourge":["scourge.stat_876831634"]}}} +{"ref":"Cannot be Frozen if Dexterity is higher than Intelligence","better":1,"matchers":[{"string":"若敏捷高於智慧則不會被冰凍"}],"trade":{"ids":{"explicit":["explicit.stat_3881126302"]}}} +{"ref":"Cannot be Ignited","better":1,"matchers":[{"string":"不能被點燃"}],"trade":{"ids":{"explicit":["explicit.stat_331731406"],"implicit":["implicit.stat_331731406"]}}} +{"ref":"Cannot be Ignited if Strength is higher than Dexterity","better":1,"matchers":[{"string":"若力量高於敏捷則不會被點燃"}],"trade":{"ids":{"explicit":["explicit.stat_676883595"]}}} +{"ref":"Cannot be Knocked Back","better":1,"matchers":[{"string":"不能被擊退"}],"trade":{"ids":{"explicit":["explicit.stat_4212255859"],"implicit":["implicit.stat_4212255859"],"fractured":["fractured.stat_4212255859"]}}} +{"ref":"Cannot be Poisoned while Bleeding","better":1,"matchers":[{"string":"流血時不會中毒"}],"trade":{"ids":{"explicit":["explicit.stat_2784102684"]}}} +{"ref":"Cannot be Shocked","better":1,"matchers":[{"string":"不能被感電"}],"trade":{"ids":{"explicit":["explicit.stat_491899612"],"implicit":["implicit.stat_491899612"]}}} +{"ref":"Cannot be Shocked if Intelligence is higher than Strength","better":1,"matchers":[{"string":"若智慧高於力量則不會被感電"}],"trade":{"ids":{"explicit":["explicit.stat_3024242403"]}}} +{"ref":"Cannot be Shocked or Ignited while moving","better":1,"matchers":[{"string":"移動時不能被感電或點燃"}],"trade":{"ids":{"explicit":["explicit.stat_3592330380"]}}} +{"ref":"Cannot be Stunned by Attacks if your other Ring is an Elder Item","better":1,"matchers":[{"string":"若另一個戒指為尊師之物則不能被攻擊暈眩"}],"trade":{"ids":{"explicit":["explicit.stat_2926399803"]}}} +{"ref":"Cannot be Stunned by Hits you Block","better":1,"matchers":[{"string":"你格擋的攻擊不能暈眩"}],"trade":{"ids":{"explicit":["explicit.stat_3058290552"]}}} +{"ref":"Cannot be Stunned by Spells if your other Ring is a Shaper Item","better":1,"matchers":[{"string":"若另一個戒指為塑者之物則不能被法術暈眩"}],"trade":{"ids":{"explicit":["explicit.stat_2312817839"]}}} +{"ref":"Cannot be Stunned by Suppressed Spell Damage","better":1,"matchers":[{"string":"不會被壓抑的法術傷害暈眩"}],"trade":{"ids":{"explicit":["explicit.stat_2916280114"]}}} +{"ref":"Cannot be Stunned if you have at least 10 Crab Barriers","better":1,"matchers":[{"string":"若你至少有 10 層蟹將重盾則不能被暈眩"}],"trade":{"ids":{"explicit":["explicit.stat_877233648"]}}} +{"ref":"Cannot be Stunned when on Low Life","better":1,"matchers":[{"string":"貧血時免疫暈眩"}],"trade":{"ids":{"explicit":["explicit.stat_1472543401"]}}} +{"ref":"Cannot be Stunned while Bleeding","better":1,"matchers":[{"string":"流血時不會被暈眩"}],"trade":{"ids":{"explicit":["explicit.stat_2638865425"]}}} +{"ref":"Cannot be Stunned while Fortified","better":1,"matchers":[{"string":"護體時不會被暈眩"}],"trade":{"ids":{"explicit":["explicit.stat_2983926876"]}}} +{"ref":"Cannot be Stunned while Leeching","better":1,"matchers":[{"string":"生命偷取時不能被暈眩"}],"trade":{"ids":{"explicit":["explicit.stat_1887508417"]}}} +{"ref":"Cannot be Stunned while you have at least 25 Rage","better":1,"matchers":[{"string":"當你至少有 25 層盛怒時不能被暈眩"}],"trade":{"ids":{"explicit":["explicit.stat_2971900104"]}}} +{"ref":"Cannot be used with Chaos Inoculation","better":1,"matchers":[{"string":"不能搭配異靈之體"}],"trade":{"ids":{"explicit":["explicit.stat_623651254"]}}} +{"ref":"Cannot be used with Forbidden Tomes below level #","better":1,"matchers":[{"string":"不能和等級低於 # 的禁忌之書一起使用"}],"trade":{"ids":{"explicit":["sanctum.stat_1512067281"]}}} +{"ref":"Cannot Block","better":1,"matchers":[{"string":"不能格擋"}],"trade":{"ids":{"explicit":["explicit.stat_4127720801"]}}} +{"ref":"Cannot Block Attack Damage","better":1,"matchers":[{"string":"不能格擋攻擊傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3162258068"],"scourge":["scourge.stat_3162258068"]}}} +{"ref":"Cannot Block Spell Damage","better":1,"matchers":[{"string":"不能格擋法術傷害"}],"trade":{"ids":{"explicit":["explicit.stat_4076910393"],"scourge":["scourge.stat_4076910393"]}}} +{"ref":"Cannot Block while you have no Energy Shield","better":1,"matchers":[{"string":"你沒有能量護盾時不能格擋"}],"trade":{"ids":{"explicit":["explicit.stat_3890287045"]}}} +{"ref":"Cannot deal Critical Strikes with Attacks","better":1,"matchers":[{"string":"攻擊不能造成暴擊"}],"trade":{"ids":{"explicit":["explicit.stat_3223376951"]}}} +{"ref":"Cannot deal non-Chaos Damage","better":1,"matchers":[{"string":"不能造成非混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3180152291"]}}} +{"ref":"Cannot Evade Enemy Attacks","better":1,"matchers":[{"string":"不能閃避"}],"trade":{"ids":{"explicit":["explicit.stat_474452755"],"scourge":["scourge.stat_474452755"]}}} +{"ref":"Cannot gain Charges","better":1,"matchers":[{"string":"不能獲得充能"}],"trade":{"ids":{"scourge":["scourge.stat_1500620123"]}}} +{"ref":"Cannot gain Energy Shield","better":1,"matchers":[{"string":"不能獲得能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_206243615"]}}} +{"ref":"Cannot gain Mana during effect","better":1,"matchers":[{"string":"效果期間不能獲得魔力"}],"trade":{"ids":{"explicit":["explicit.stat_2198697797"]}}} +{"ref":"Cannot gain Power Charges","better":1,"matchers":[{"string":"不能獲得暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_2503253050"]}}} +{"ref":"Cannot have Boons","better":1,"matchers":[{"string":"不會有恩惠"}],"trade":{"ids":{"explicit":["sanctum.stat_2283325632"]}}} +{"ref":"Cannot have Inspiration","better":1,"matchers":[{"string":"不會有啟發"}],"trade":{"ids":{"explicit":["sanctum.stat_3381591146"]}}} +{"ref":"Cannot Ignite, Chill, Freeze or Shock","better":1,"matchers":[{"string":"不能點燃、冰緩、冰凍或感電"}],"trade":{"ids":{"explicit":["explicit.stat_3281123655"]}}} +{"ref":"Cannot inflict Curses","better":1,"matchers":[{"string":"不能造成詛咒"}],"trade":{"ids":{"scourge":["scourge.stat_1925222248"]}}} +{"ref":"Cannot inflict Elemental Ailments","better":1,"matchers":[{"string":"不能造成元素異常狀態"}],"trade":{"ids":{"scourge":["scourge.stat_3913992084"]}}} +{"ref":"Cannot inflict Freeze or Chill","better":1,"matchers":[{"string":"不能造成冰凍或冰緩"}],"trade":{"ids":{"explicit":["explicit.stat_612223930"]}}} +{"ref":"Cannot inflict Ignite","better":1,"matchers":[{"string":"不能造成點燃"}],"trade":{"ids":{"explicit":["explicit.stat_4198497576"]}}} +{"ref":"Cannot inflict Shock","better":1,"matchers":[{"string":"不能造成感電"}],"trade":{"ids":{"explicit":["explicit.stat_990377349"]}}} +{"ref":"Cannot Knock Enemies Back","better":1,"matchers":[{"string":"不能擊退敵人"}],"trade":{"ids":{"explicit":["explicit.stat_2095084973"]}}} +{"ref":"Cannot Leech","better":1,"matchers":[{"string":"不能偷取"}],"trade":{"ids":{"explicit":["explicit.stat_1336164384"]}}} +{"ref":"Cannot Leech Energy Shield","better":1,"matchers":[{"string":"不能偷取能量護盾"}],"trade":{"ids":{"scourge":["scourge.stat_700952022"]}}} +{"ref":"Cannot Leech Life","better":1,"matchers":[{"string":"不能偷取生命"}],"trade":{"ids":{"explicit":["explicit.stat_3769854701"],"scourge":["scourge.stat_3769854701"]}}} +{"ref":"Cannot Leech Life from Critical Strikes","better":1,"matchers":[{"string":"暴擊不能吸血"}],"trade":{"ids":{"explicit":["explicit.stat_3243534964"]}}} +{"ref":"Cannot Leech Mana","better":1,"matchers":[{"string":"不能偷取魔力"}],"trade":{"ids":{"explicit":["explicit.stat_1759630226"],"scourge":["scourge.stat_1759630226"]}}} +{"ref":"Cannot Leech or Regenerate Mana","better":1,"matchers":[{"string":"不能偷取或自然回復魔力"}],"trade":{"ids":{"explicit":["explicit.stat_2918242917"]}}} +{"ref":"Cannot Leech when on Low Life","better":1,"matchers":[{"string":"貧血時不能偷取"}],"trade":{"ids":{"explicit":["explicit.stat_3279535558"]}}} +{"ref":"Cannot lose Crab Barriers if you have lost Crab Barriers Recently","better":1,"matchers":[{"string":"若你近期有失去蟹將重盾則不能再失去蟹將重盾"}],"trade":{"ids":{"explicit":["explicit.stat_241251790"]}}} +{"ref":"Cannot recover Resolve","better":1,"matchers":[{"string":"不會恢復決心"}],"trade":{"ids":{"explicit":["sanctum.stat_624917333"]}}} +{"ref":"Cannot roll Attack Modifiers","better":1,"matchers":[{"string":"不能骰出攻擊詞綴"}],"trade":{"ids":{"explicit":["explicit.stat_4122424929"],"fractured":["fractured.stat_4122424929"],"crafted":["crafted.stat_4122424929"]}}} +{"ref":"Cannot roll Caster Modifiers","better":1,"matchers":[{"string":"不能骰出法術詞綴"}],"trade":{"ids":{"explicit":["explicit.stat_1149326139"],"fractured":["fractured.stat_1149326139"],"crafted":["crafted.stat_1149326139"]}}} +{"ref":"Cannot take Reflected Elemental Damage","better":1,"matchers":[{"string":"不會承受反射的元素傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1827932821"]}}} +{"ref":"Cannot take Reflected Physical Damage","better":1,"matchers":[{"string":"不會承受反射的物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_249805317"]}}} +{"ref":"Carved to glorify # new faithful converted by High Templar Avarius","better":0,"matchers":[{"string":"為了禮讚 # 名受到聖宗伊爾莉斯感化的信眾所雕刻\n範圍內的天賦臣服於聖宗","advanced":"為了禮讚 # 名受到聖宗伊爾莉斯感化的信眾所雕刻(伊爾莉斯-瑪薩里歐斯)\n範圍內的天賦臣服於聖宗"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_avarius"]}}} +{"ref":"Carved to glorify # new faithful converted by High Templar Dominus","better":0,"matchers":[{"string":"為了禮讚 # 名受到神主感化的信眾所雕刻\n範圍內的天賦臣服於聖宗","advanced":"為了禮讚 # 名受到神主感化的信眾所雕刻(伊爾莉斯-瑪薩里歐斯)\n範圍內的天賦臣服於聖宗"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_dominus"]}}} +{"ref":"Carved to glorify # new faithful converted by High Templar Maxarius","better":0,"matchers":[{"string":"為了禮讚 # 名受到聖宗瑪薩里歐斯感化的信眾所雕刻\n範圍內的天賦臣服於聖宗","advanced":"為了禮讚 # 名受到聖宗瑪薩里歐斯感化的信眾所雕刻(伊爾莉斯-瑪薩里歐斯)\n範圍內的天賦臣服於聖宗"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_maxarius"]}}} +{"ref":"Cast Level # Fire Burst on Hit","better":1,"matchers":[{"string":"擊中時施放等級 # 的火焰爆破"}],"trade":{"ids":{"enchant":["enchant.stat_1606553462"]}}} +{"ref":"Cast Level 20 Fire Burst on Hit","better":1,"matchers":[{"string":"擊中時施放等級 20 的火焰爆破"}],"trade":{"ids":{"explicit":["explicit.stat_1621470436"],"fractured":["fractured.stat_1621470436"]}}} +{"ref":"Catarina's Veiled","better":0,"matchers":[{"string":"卡塔莉娜的隱匿"}],"trade":{"ids":{"veiled":["veiled.mod_63772"]}}} +{"ref":"Caustic Arrow has #% chance to inflict Withered on Hit for # second base Duration","better":1,"matchers":[{"string":"腐蝕箭矢擊中時有 #% 機率造成凋零,有 # 秒基礎持續時間"},{"string":"腐蝕箭矢擊中時造成凋零,有 # 秒基礎持續時間"}],"trade":{"ids":{"enchant":["enchant.stat_1993913925"]}}} +{"ref":"Celestial Footprints","better":1,"matchers":[{"string":"絢麗眾星"}],"trade":{"ids":{"explicit":["explicit.stat_50381303"]}}} +{"ref":"Chain Hook deals #% increased Damage","better":1,"matchers":[{"string":"奪魂勾索增加 #% 傷害"},{"string":"奪魂勾索減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_289027663"]}}} +{"ref":"Chain Hook grants 1 Rage if it Hits Enemies","better":1,"matchers":[{"string":"若奪魂勾索擊中敵人,獲得 1 層盛怒"}],"trade":{"ids":{"enchant":["enchant.stat_2588242810"]}}} +{"ref":"Chain Hook has +# metre to radius per 12 Rage","better":1,"matchers":[{"string":"奪魂勾索每 12 層盛怒 # 米範圍"}],"trade":{"ids":{"enchant":["enchant.stat_3269147016"]}}} +{"ref":"Chance to Block is Unlucky","better":1,"matchers":[{"string":"格擋率很不幸","value":-1},{"string":"格擋率很幸運","value":1}],"trade":{"ids":{"explicit":["explicit.stat_984774803"]}}} +{"ref":"Chance to Block Spell Damage is Unlucky","better":1,"matchers":[{"string":"法術傷害格擋率很不幸","value":-1},{"string":"法術傷害格擋率很幸運","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3551025193"]}}} +{"ref":"Channelling Skills deal #% increased Damage","better":1,"matchers":[{"string":"引導施放技能增加 #% 傷害"},{"string":"引導施放技能減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2733285506"]}}} +{"ref":"Channelling Skills deal #% increased Damage per 10 Devotion","better":1,"matchers":[{"string":"每 10 個奉獻,引導施放技能增加 #% 傷害"},{"string":"每 10 個奉獻,引導施放技能減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_970844066"]}}} +{"ref":"Channelling Skills have +# to Total Mana Cost","better":1,"matchers":[{"string":"# 引導施放技能的總魔力消耗"}],"trade":{"ids":{"explicit":["explicit.stat_2421446548"],"fractured":["fractured.stat_2421446548"],"crafted":["crafted.stat_2421446548"]}}} +{"ref":"Chaos Damage can Ignite, Chill and Shock","better":1,"matchers":[{"string":"混沌傷害可以點燃、冰緩和感電"}],"trade":{"ids":{"explicit":["explicit.stat_3470457445"]}}} +{"ref":"Chaos Damage taken does not bypass Energy Shield","better":1,"matchers":[{"string":"承受的混沌傷害不會無視能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_1119465199"]}}} +{"ref":"Chaos Damage taken does not bypass Energy Shield during effect","better":1,"matchers":[{"string":"效果持續時間,承受的混沌傷害不會無視能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_2229840047"]}}} +{"ref":"Chaos Damage taken does not bypass Energy Shield while not on Low Life","better":1,"matchers":[{"string":"非貧血時,承受的混沌傷害不會無視能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_887556907"],"fractured":["fractured.stat_887556907"]}}} +{"ref":"Chaos Damage taken does not bypass Minions' Energy Shield","better":1,"matchers":[{"string":"承受的混沌傷害不會無視召喚物的能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_3008104268"]}}} +{"ref":"Chaos Golems deal #% increased Damage","better":1,"matchers":[{"string":"增加 #% 混沌魔像的傷害"},{"string":"減少 #% 混沌魔像的傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2505115650"]}}} +{"ref":"Chaos Resistance is Zero","better":1,"matchers":[{"string":"混沌抗性為 0"}],"trade":{"ids":{"explicit":["explicit.stat_2439129490"],"fractured":["fractured.stat_2439129490"]}}} +{"ref":"Chaos Skills have #% chance to Ignite","better":1,"matchers":[{"string":"混沌技能有 #% 機率點燃"}],"trade":{"ids":{"explicit":["explicit.stat_3573128085"]}}} +{"ref":"Chaos Skills have #% increased Skill Effect Duration","better":1,"matchers":[{"string":"增加 #% 混沌技能效果持續時間"},{"string":"減少 #% 混沌技能效果持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_289885185"],"fractured":["fractured.stat_289885185"],"crafted":["crafted.stat_289885185"]}}} +{"ref":"Charged Dash has #% more Movement Speed","better":1,"matchers":[{"string":"雷霆衝鋒有 #% 更多移動速度"},{"string":"雷霆衝鋒有 #% 更少移動速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_797408710"]}}} +{"ref":"Charged Dash has +# metre to radius of each Wave's last damage Area","better":1,"matchers":[{"string":"雷霆衝鋒每波的最後傷害範圍 # 米範圍"}],"trade":{"ids":{"enchant":["enchant.stat_2898302567"]}}} +{"ref":"Chests have #% chance to drop Double Aureus Coins","better":1,"matchers":[{"string":"保險箱有 #% 機率掉落 2 倍奧瑞厄斯幣"}],"trade":{"ids":{"explicit":["sanctum.stat_3926246735"]}}} +{"ref":"Chill Effect and Freeze Duration on you are based on #% of Energy Shield","better":1,"matchers":[{"string":"冰緩和冰凍持續時間根據你 #% 的能量護盾計算"}],"trade":{"ids":{"explicit":["explicit.stat_1194648995"]}}} +{"ref":"Chill Enemies as though dealing #% more Damage","better":1,"matchers":[{"string":"冰緩敵人有如造成 #% 更多傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2223307291"]}}} +{"ref":"Chill Enemies for # second on Hit with this Weapon when in Off Hand","better":1,"matchers":[{"string":"若此武器裝備在副手,此武器擊中敵人時造成冰緩 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_1488891279"]}}} +{"ref":"Chill Enemy for # second when Hit, reducing their Action Speed by 30%","better":1,"matchers":[{"string":"被擊中時冰緩敵人 # 秒,減少 30% 他們的行動速度"}],"trade":{"ids":{"explicit":["explicit.stat_2459809121"],"fractured":["fractured.stat_2459809121"],"scourge":["scourge.stat_2459809121"]}}} +{"ref":"Chill Nearby Enemies when you Block","better":1,"matchers":[{"string":"當你格擋時冰緩附近敵人"}],"trade":{"ids":{"explicit":["explicit.stat_583277599"],"fractured":["fractured.stat_583277599"]}}} +{"ref":"Chill nearby Enemies when you Focus, causing 30% reduced Action Speed","better":1,"matchers":[{"string":"當你專注時冰緩附近敵人,減少 30% 行動速度"}],"trade":{"ids":{"explicit":["explicit.stat_2384145996"]}}} +{"ref":"Chills from Ice Nova Hits always reduce Action Speed by at least #%","better":1,"matchers":[{"string":"冰霜新星造成的冰緩總是減少至少 #% 行動速度"}],"trade":{"ids":{"enchant":["enchant.stat_644285691"]}}} +{"ref":"Chills from your Hits always reduce Action Speed by at least #%","better":1,"matchers":[{"string":"你擊中造成的冰緩總是至少減少 #% 行動速度"}],"trade":{"ids":{"explicit":["explicit.stat_2774670797"]}}} +{"ref":"Clarity has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"清晰增加 #% 魔力保留效用"},{"string":"清晰減少 #% 魔力保留效用","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2668611054","enchant.stat_453778214"]}}} +{"ref":"Clarity has no Reservation","better":1,"matchers":[{"string":"清晰無保留"}],"trade":{"ids":{"explicit":["explicit.stat_2250543633"]}}} +{"ref":"Cobra Lash Chains an additional time","better":1,"matchers":[{"string":"毒蛇鞭笞連鎖額外 # 次"},{"string":"毒蛇鞭笞連鎖額外 1 次","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1471796012"]}}} +{"ref":"Cobra Lash deals #% increased Damage","better":1,"matchers":[{"string":"毒蛇鞭笞增加 #% 傷害"},{"string":"毒蛇鞭笞減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2224580362"]}}} +{"ref":"Cobra Lash has #% increased Projectile Speed","better":1,"matchers":[{"string":"毒蛇鞭笞增加 #% 投射物速度"},{"string":"毒蛇鞭笞減少 #% 投射物速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_732631533"]}}} +{"ref":"Cold Exposure on Hit if you've cast Frostbite in the past 10 seconds","better":1,"matchers":[{"string":"若你過去 10 秒施放過凍傷,擊中時造成冰冷曝曬"}],"trade":{"ids":{"explicit":["explicit.stat_1168138239"]}}} +{"ref":"Cold Exposure you inflict applies an extra +#% to Cold Resistance","better":-1,"matchers":[{"string":"你造成的冰冷曝曬套用額外 #% 冰冷抗性"}],"trade":{"ids":{"explicit":["explicit.stat_600221736"]}}} +{"ref":"Cold Resistance cannot be Penetrated","better":1,"matchers":[{"string":"冰冷抗性無法被穿透"}],"trade":{"ids":{"explicit":["explicit.stat_1864616755"],"fractured":["fractured.stat_1864616755"]}}} +{"ref":"Cold Resistance is #%","better":1,"matchers":[{"string":"冰冷抗性為 #%"}],"trade":{"ids":{"explicit":["explicit.stat_496075050"]}}} +{"ref":"Cold Skills have #% chance to Poison on Hit","better":1,"matchers":[{"string":"冰冷技能擊中時有 #% 造成中毒"}],"trade":{"ids":{"explicit":["explicit.stat_2373079502"]}}} +{"ref":"Cold Snap has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"霜暴增加 #% 冷卻時間恢復速度"},{"string":"霜暴減少 #% 冷卻時間恢復速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2289367813"]}}} +{"ref":"Combust has #% increased Area of Effect","better":1,"matchers":[{"string":"戰燃增加 #% 範圍效果"}],"trade":{"ids":{"enchant":["enchant.stat_4225882962"]}}} +{"ref":"Commanded leadership over # warriors under Akoya","better":0,"matchers":[{"string":"艾古亞指揮領導超過 # 戰士\n範圍內的天賦臣服於卡魯","advanced":"艾古亞指揮領導超過 # 戰士(艾古亞-萊基亞塔)\n範圍內的天賦臣服於卡魯"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_akoya"]}}} +{"ref":"Commanded leadership over # warriors under Kaom","better":0,"matchers":[{"string":"岡姆指揮領導超過 # 戰士\n範圍內的天賦臣服於卡魯","advanced":"岡姆指揮領導超過 # 戰士(艾古亞-萊基亞塔)\n範圍內的天賦臣服於卡魯"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_kaom"]}}} +{"ref":"Commanded leadership over # warriors under Rakiata","better":0,"matchers":[{"string":"萊基亞塔指揮領導超過 # 戰士\n範圍內的天賦臣服於卡魯","advanced":"萊基亞塔指揮領導超過 # 戰士(艾古亞-萊基亞塔)\n範圍內的天賦臣服於卡魯"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_rakiata"]}}} +{"ref":"Commissioned # coins to commemorate Cadiro","better":0,"matchers":[{"string":"授銜 # 個硬幣以紀念卡迪羅\n範圍內的天賦臣服於不朽帝國","advanced":"授銜 # 個硬幣以紀念卡迪羅(卡迪羅-維多里奧)\n範圍內的天賦臣服於不朽帝國"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_cadiro"]}}} +{"ref":"Commissioned # coins to commemorate Caspiro","better":0,"matchers":[{"string":"授銜 # 個硬幣以紀念卡斯皮羅\n範圍內的天賦臣服於不朽帝國","advanced":"授銜 # 個硬幣以紀念卡斯皮羅(卡迪羅-維多里奧)\n範圍內的天賦臣服於不朽帝國"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_caspiro"]}}} +{"ref":"Commissioned # coins to commemorate Victario","better":0,"matchers":[{"string":"授銜 # 個硬幣以紀念維多里奧\n範圍內的天賦臣服於不朽帝國","advanced":"授銜 # 個硬幣以紀念維多里奧(卡迪羅-維多里奧)\n範圍內的天賦臣服於不朽帝國"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_victario"]}}} +{"ref":"Completing a Heist generates an additional Reveal","better":1,"matchers":[{"string":"完成劫盜時產生 # 個額外揭露"},{"string":"完成劫盜時產生 1 個額外揭露","value":1}],"trade":{"ids":{"enchant":["enchant.stat_2309146693"]}}} +{"ref":"Conductivity has no Reservation if Cast as an Aura","better":1,"matchers":[{"string":"若導電以光環施放則沒有保留"}],"trade":{"ids":{"explicit":["explicit.stat_1233358566"]}}} +{"ref":"Conduit","better":1,"matchers":[{"string":"能量連結"}],"trade":{"ids":{"explicit":["explicit.stat_1994392904"],"scourge":["scourge.stat_1994392904"]}}} +{"ref":"Consecrated Ground created by this Flask has Tripled Radius","better":1,"matchers":[{"string":"增加 #% 此藥劑製造奉獻地面的範圍"},{"string":"此藥劑製造的奉獻地面有 2 倍的範圍","value":100},{"string":"此藥劑製造的奉獻地面有 3 倍的範圍","value":200}],"trade":{"ids":{"explicit":["explicit.stat_806698863"]}}} +{"ref":"Consecrated Ground created during Effect applies #% increased Damage taken to Enemies","better":1,"matchers":[{"string":"效果持續時間內製造的奉獻地面,增加 #% 敵人承受傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1866211373"]}}} +{"ref":"Consecrated Ground from Holy Flame Totem applies #% increased Damage taken to Enemies","better":1,"matchers":[{"string":"神聖火舌圖騰製造的奉獻地面,增加 #% 敵人承受傷害"},{"string":"神聖火舌圖騰製造的奉獻地面,減少 #% 敵人承受傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2807947"]}}} +{"ref":"Consecrated Ground from Purifying Flame applies #% increased Damage taken to Enemies","better":1,"matchers":[{"string":"淨化烈焰的奉獻地面增加 #% 敵人承受傷害"},{"string":"淨化烈焰的奉獻地面減少 #% 敵人承受傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3100629498"]}}} +{"ref":"Consecrated Ground you create applies #% increased Damage taken to Enemies","better":1,"matchers":[{"string":"你製造的奉獻地面使敵人增加 #% 承受傷害"},{"string":"你製造的奉獻地面使敵人減少 #% 承受傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2474564741"]}}} +{"ref":"Consecrated Ground you create while affected by Zealotry causes enemies to take #% increased Damage","better":1,"matchers":[{"string":"被狂熱影響時你製造的奉獻地面,使敵人增加 #% 承受傷害"},{"string":"被狂熱影響時你製造的奉獻地面,使敵人減少 #% 承受傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2434030180"]}}} +{"ref":"Consecrated Path deals #% increased Damage","better":1,"matchers":[{"string":"奉獻之路增加 #% 傷害"},{"string":"奉獻之路減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4047323043"]}}} +{"ref":"Consecrated Path has #% increased Area of Effect","better":1,"matchers":[{"string":"奉獻之路增加 #% 範圍效果"},{"string":"奉獻之路減少 #% 範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3285061858"]}}} +{"ref":"Consecrated Path has #% increased teleport range","better":1,"matchers":[{"string":"奉獻之路增加 #% 傳送距離"}],"trade":{"ids":{"enchant":["enchant.stat_2048678824"]}}} +{"ref":"Consumes 1 Frenzy Charge on use","better":1,"matchers":[{"string":"使用時消耗 # 個狂怒球"},{"string":"使用時消耗 1 個狂怒球","value":1},{"string":"使用時消耗所有狂怒球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_570159344"]}}} +{"ref":"Consumes a Void Charge to Trigger Level # Void Shot when you fire Arrows with a Non-Triggered Skill","better":1,"matchers":[{"string":"當你發射非觸發型技能的箭矢,消耗 1 顆虛空能量球,觸發等級 # 的虛無疾射"}],"trade":{"ids":{"explicit":["explicit.stat_3262369040"]}}} +{"ref":"Consumes Maximum Charges to use","better":1,"matchers":[{"string":"使用時消耗最大充能"}],"trade":{"ids":{"explicit":["explicit.stat_3426614534"]}}} +{"ref":"Contains additional waves of Undead Monsters","better":1,"matchers":[{"string":"含有額外幾波不死怪物"}],"trade":{"ids":{"explicit":["explicit.stat_1968038301"]}}} +{"ref":"Contains waves of Monsters","better":1,"matchers":[{"string":"含有幾波怪物"}],"trade":{"ids":{"explicit":["explicit.stat_1787444936"]}}} +{"ref":"Conversion Trap #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"迷魅陷阱增加 #% 冷卻時間恢復速度"},{"string":"迷魅陷阱減少 #% 冷卻時間恢復速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2143519574"]}}} +{"ref":"Converted Enemies have #% increased Damage","better":1,"matchers":[{"string":"增加被你迷魅的敵人 #% 傷害"},{"string":"減少被你迷魅的敵人 #% 復害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_131320052"]}}} +{"ref":"Convocation has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"號召增加 #% 冷卻時間恢復速度"},{"string":"號召減少 #% 冷卻時間恢復速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2680060124"]}}} +{"ref":"Corpses you Spawn have #% increased Maximum Life","better":1,"matchers":[{"string":"你產生的屍體增加 #% 最大生命"},{"string":"你產生的屍體減少 #% 最大生命","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_586568910"]}}} +{"ref":"Corrupted Blood cannot be inflicted on you","better":1,"matchers":[{"string":"腐化之血對你沒有影響"}],"trade":{"ids":{"explicit":["explicit.stat_1658498488"],"implicit":["implicit.stat_1658498488"],"fractured":["fractured.stat_1658498488"]}}} +{"ref":"Corrupted Blood cannot be inflicted on you if you have at least 5 Corrupted Blood Debuffs on you","better":1,"matchers":[{"string":"若你身上至少有 5 層腐化之血減益效果,則不能對你造成腐化之血"}],"trade":{"ids":{"scourge":["scourge.stat_736820284"]}}} +{"ref":"Corrupted Soul","better":1,"matchers":[{"string":"腐化之魂"}],"trade":{"ids":{"explicit":["explicit.stat_1911037487"]}}} +{"ref":"Corrupting Fever deals #% increased Damage","better":1,"matchers":[{"string":"腐化潮增加 #% 傷害"},{"string":"腐化潮減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4010544321"]}}} +{"ref":"Corrupting Fever has +#% chance to inflict an additional Corrupted Blood Debuff","better":1,"matchers":[{"string":"腐化潮 #% 機率造成 1 個額外腐化之血減益效果"}],"trade":{"ids":{"enchant":["enchant.stat_3513613206"]}}} +{"ref":"Count as having maximum number of Endurance Charges\nCount as having maximum number of Frenzy Charges\nCount as having maximum number of Power Charges","better":1,"matchers":[{"string":"視為有最大數量的耐力球\n視為有最大數量的狂怒球\n視為有最大數量的暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_3584443917"]}}} +{"ref":"Counts as all One Handed Melee Weapon Types","better":1,"matchers":[{"string":"可視為所有類型的單手近戰武器"}],"trade":{"ids":{"explicit":["explicit.stat_1524882321"]}}} +{"ref":"Counts as Dual Wielding","better":1,"matchers":[{"string":"視同雙持武器"}],"trade":{"ids":{"explicit":["explicit.stat_2797075304"]}}} +{"ref":"Cover Full Life Enemies in Ash for # seconds on Melee Weapon Hit","better":1,"matchers":[{"string":"近戰武器擊中滿血敵人時,使他們餘燼纏身 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_2428064388"]}}} +{"ref":"Crackling Lance deals #% increased Damage","better":1,"matchers":[{"string":"碎雷電閃增加 #% 傷害"},{"string":"碎雷電閃減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_435519320"]}}} +{"ref":"Crackling Lance has #% increased branching angle","better":1,"matchers":[{"string":"碎雷電閃增加 #% 分歧角度"},{"string":"碎雷電閃減少 #% 分歧角度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2896346908"]}}} +{"ref":"Crackling Lance has #% increased Cast Speed","better":1,"matchers":[{"string":"碎雷電閃增加 #% 施放速度"},{"string":"碎雷電閃減少 #% 施放速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_617228927"]}}} +{"ref":"Create a Blighted Spore when your Skills or Minions Kill a Rare Monster","better":1,"matchers":[{"string":"當你的技能或召喚物擊殺稀有怪物時,製造 1 個凋落毒孢"}],"trade":{"ids":{"explicit":["explicit.stat_2485187927"]}}} +{"ref":"Create Profane Ground instead of Consecrated Ground","better":1,"matchers":[{"string":"製造褻瀆地面,而不是奉獻地面"}],"trade":{"ids":{"explicit":["explicit.stat_1243613350"]}}} +{"ref":"Creates a Smoke Cloud on Rampage","better":1,"matchers":[{"string":"暴怒狀態時創造一團煙霧"}],"trade":{"ids":{"explicit":["explicit.stat_3321583955"]}}} +{"ref":"Creates a Smoke Cloud on Use","better":1,"matchers":[{"string":"使用時製造一團煙霧"}],"trade":{"ids":{"implicit":["implicit.stat_538730182"]}}} +{"ref":"Creates Chilled Ground on Use","better":1,"matchers":[{"string":"使用時製造冰緩地面"}],"trade":{"ids":{"implicit":["implicit.stat_3311869501"]}}} +{"ref":"Creates Consecrated Ground on Critical Strike","better":1,"matchers":[{"string":"#% 機率暴擊時產生奉獻地面"},{"string":"暴擊時產生奉獻地面","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3195625581"]}}} +{"ref":"Creates Consecrated Ground on Use","better":1,"matchers":[{"string":"使用時製造奉獻地面"}],"trade":{"ids":{"implicit":["implicit.stat_2146730404"]}}} +{"ref":"Creeping Frost's Chilling Area has #% increased Movement Speed","better":1,"matchers":[{"string":"寒霜滲透的冰緩地區增加 #% 移動速度"},{"string":"寒霜滲透的冰緩地區減少 #% 移動速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2781179464"]}}} +{"ref":"Cremation can have up to # additional Geyser at a time","better":1,"matchers":[{"string":"熔炎送葬同時最多可以有 # 個熔炎泉"}],"trade":{"ids":{"enchant":["enchant.stat_3503624267"]}}} +{"ref":"Crimson Dance","better":1,"matchers":[{"string":"緋紅舞蹈"}],"trade":{"ids":{"explicit":["explicit.stat_300702212"],"fractured":["fractured.stat_300702212"],"scourge":["scourge.stat_300702212"]}}} +{"ref":"Critical Strike Chance is #% for Hits with this Weapon","better":1,"matchers":[{"string":"使用此武器擊中的暴擊率為 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1672183492"]}}} +{"ref":"Critical Strike Chance is increased by Overcapped Lightning Resistance","better":1,"matchers":[{"string":"超過上限的閃電抗性增加為暴擊率"}],"trade":{"ids":{"explicit":["explicit.stat_2478752719"],"fractured":["fractured.stat_2478752719"]}}} +{"ref":"Critical Strikes deal no Damage","better":1,"matchers":[{"string":"暴擊不能造成傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3245481061"]}}} +{"ref":"Critical Strikes do not inherently Freeze","better":1,"matchers":[{"string":"暴擊不會造成冰凍"}],"trade":{"ids":{"explicit":["explicit.stat_3979476531"]}}} +{"ref":"Critical Strikes do not inherently inflict non-Damaging Ailments","better":1,"matchers":[{"string":"暴擊不會造成非傷害型的異常狀態"}],"trade":{"ids":{"explicit":["explicit.stat_249545292"]}}} +{"ref":"Critical Strikes have #% chance to Blind Enemies while you have Cat's Stealth","better":1,"matchers":[{"string":"當你有傲貓隱身時,暴擊有 #% 機率致盲敵人"}],"trade":{"ids":{"explicit":["explicit.stat_843854434"]}}} +{"ref":"Critical Strikes have #% chance to inflict Malignant Madness if The Eater of Worlds is dominant","better":1,"matchers":[{"string":"若吞噬天地支配,暴擊有 #% 機率造成惡之狂亂"},{"string":"若吞噬天地支配,暴擊造成惡之狂亂","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1109900829"]}}} +{"ref":"Critical Strikes have Culling Strike","better":1,"matchers":[{"string":"你的暴擊擁有撲殺能力"}],"trade":{"ids":{"explicit":["explicit.stat_2996445420"]}}} +{"ref":"Critical Strikes Penetrate #% of Enemy Elemental Resistances while affected by Zealotry","better":1,"matchers":[{"string":"被狂熱影響時,暴擊穿透敵人 #% 元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_2091518682"]}}} +{"ref":"Critical Strikes with Spells have #% chance to inflict Impale","better":1,"matchers":[{"string":"法術暴擊有 #% 機率造成穿刺"},{"string":"法術暴擊造成穿刺","value":99}],"trade":{"ids":{"explicit":["explicit.stat_4084476257"]}}} +{"ref":"Culling Strike","better":1,"matchers":[{"string":"撲殺"}],"trade":{"ids":{"explicit":["explicit.stat_2524254339"],"implicit":["implicit.stat_2524254339"],"fractured":["fractured.stat_2524254339"],"enchant":["enchant.stat_2524254339"],"scourge":["scourge.stat_2524254339"]}}} +{"ref":"Culling Strike against Burning Enemies","better":1,"matchers":[{"string":"撲殺燃燒中的敵人"}],"trade":{"ids":{"explicit":["explicit.stat_1777334641"]}}} +{"ref":"Culling Strike against Enemies Cursed with Poacher's Mark","better":1,"matchers":[{"string":"撲殺被盜獵者印記詛咒的敵人"}],"trade":{"ids":{"explicit":["explicit.stat_2114080270"]}}} +{"ref":"Culling Strike against Frozen Enemies","better":1,"matchers":[{"string":"對冰凍的敵人撲殺"}],"trade":{"ids":{"explicit":["explicit.stat_2664667514"]}}} +{"ref":"Culling Strike during Effect","better":1,"matchers":[{"string":"效果持續時間撲殺"}],"trade":{"ids":{"explicit":["explicit.stat_2175889777"]}}} +{"ref":"Curse Auras from Socketed Skills also affect you","better":1,"matchers":[{"string":"來自插槽中技能的詛咒光環也會影響你"}],"trade":{"ids":{"explicit":["explicit.stat_2965611853"]}}} +{"ref":"Curse Enemies with Conductivity on Hit","better":1,"matchers":[{"string":"擊中時使敵人受到導電詛咒"},{"string":"擊中時有 #% 機率使敵人受到導電詛咒"}],"trade":{"ids":{"explicit":["explicit.stat_710372469"],"implicit":["implicit.stat_710372469"],"fractured":["fractured.stat_710372469"],"scourge":["scourge.stat_670088789"]}}} +{"ref":"Curse Enemies with Despair on Hit","better":1,"matchers":[{"string":"擊中時使敵人受到絕望詛咒"},{"string":"擊中時有 #% 機率使敵人受到絕望詛咒"}],"trade":{"ids":{"explicit":["explicit.stat_2764915899"],"implicit":["implicit.stat_2764915899"],"fractured":["fractured.stat_2764915899"],"scourge":["scourge.stat_1764973832"]}}} +{"ref":"Curse Enemies with Elemental Weakness on Hit","better":1,"matchers":[{"string":"擊中時使敵人受到元素要害詛咒"},{"string":"擊中時有 #% 機率使敵人受到元素要害詛咒"}],"trade":{"ids":{"explicit":["explicit.stat_2028847114"],"implicit":["implicit.stat_2028847114"],"fractured":["fractured.stat_2028847114"],"scourge":["scourge.stat_636057969"]}}} +{"ref":"Curse Enemies with Elemental Weakness when you Block their Spell Damage, ignoring Curse Limit","better":1,"matchers":[{"string":"當你格擋敵人的法術傷害時,使敵人被元素要害詛咒,無視詛咒上限"}],"trade":{"ids":{"explicit":["explicit.stat_2048643052"]}}} +{"ref":"Curse Enemies with Enfeeble on Hit","better":1,"matchers":[{"string":"擊中時使敵人受到衰弱詛咒"},{"string":"擊中時有 #% 機率使敵人受到衰弱詛咒"}],"trade":{"ids":{"implicit":["implicit.stat_1625819882"],"scourge":["scourge.stat_1516661546"]}}} +{"ref":"Curse Enemies with Flammability on Block","better":1,"matchers":[{"string":"格擋時使敵人被易燃詛咒"}],"trade":{"ids":{"explicit":["explicit.stat_2776399916"]}}} +{"ref":"Curse Enemies with Flammability on Hit","better":1,"matchers":[{"string":"擊中時使敵人受到易燃詛咒"}],"trade":{"ids":{"explicit":["explicit.stat_338121249","explicit.stat_654274615"],"implicit":["implicit.stat_338121249"],"fractured":["fractured.stat_338121249"],"scourge":["scourge.stat_654274615"]}}} +{"ref":"Curse Enemies with Frostbite on Hit","better":1,"matchers":[{"string":"擊中時使敵人受到凍傷詛咒"},{"string":"擊中時有 #% 機率使敵人受到凍傷詛咒"}],"trade":{"ids":{"explicit":["explicit.stat_426847518"],"implicit":["implicit.stat_426847518"],"fractured":["fractured.stat_426847518"],"scourge":["scourge.stat_1016707110"]}}} +{"ref":"Curse Enemies with Punishment when you Block their Melee Damage, ignoring Curse Limit","better":1,"matchers":[{"string":"當你格擋敵人的近戰傷害時,使敵人被懲戒詛咒,無視詛咒上限"}],"trade":{"ids":{"explicit":["explicit.stat_2922377850"]}}} +{"ref":"Curse Enemies with Temporal Chains on Hit","better":1,"matchers":[{"string":"擊中時使敵人受到時空鎖鏈詛咒"}],"trade":{"ids":{"explicit":["explicit.stat_3433724931","explicit.stat_4139135963"],"implicit":["implicit.stat_3433724931"],"scourge":["scourge.stat_4139135963"]}}} +{"ref":"Curse Enemies with Temporal Chains when you Block their Projectile Attack Damage, ignoring Curse Limit","better":1,"matchers":[{"string":"當你格擋敵人的投射物攻擊傷害時,使敵人被時空鎖鏈詛咒,無視詛咒上限"}],"trade":{"ids":{"explicit":["explicit.stat_541329769"]}}} +{"ref":"Curse Enemies with Vulnerability on Block","better":1,"matchers":[{"string":"格擋時使敵人被脆弱詛咒"}],"trade":{"ids":{"explicit":["explicit.stat_3477714116"]}}} +{"ref":"Curse Enemies with Vulnerability on Hit","better":1,"matchers":[{"string":"擊中時使敵人受到脆弱詛咒"},{"string":"擊中時有 #% 機率使敵人受到脆弱詛咒"},{"string":"擊中時有 #% 機率使未被詛咒的敵人受到脆弱詛咒"}],"trade":{"ids":{"explicit":["explicit.stat_2213584313","explicit.stat_3967845372"],"implicit":["implicit.stat_3967845372"],"fractured":["fractured.stat_2213584313","fractured.stat_3967845372"],"scourge":["scourge.stat_1826297223"]}}} +{"ref":"Curse Non-Cursed Enemies with Enfeeble on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率使未被詛咒的敵人受到衰弱詛咒"},{"string":"擊中時使未被詛咒的敵人受到衰弱詛咒","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3804297142"]}}} +{"ref":"Curse Skills have #% increased Cast Speed","better":1,"matchers":[{"string":"詛咒技能增加 #% 施放速度"},{"string":"詛咒技能減少 #% 施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2378065031"]}}} +{"ref":"Curse Skills have #% increased Skill Effect Duration","better":1,"matchers":[{"string":"詛咒技能增加 #% 技能效果持續時間"},{"string":"詛咒技能減少 #% 技能效果持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1435748744"],"implicit":["implicit.stat_1435748744"],"fractured":["fractured.stat_1435748744"],"crafted":["crafted.stat_1435748744"]}}} +{"ref":"Cursed Enemies cannot inflict Elemental Ailments on You","better":1,"matchers":[{"string":"被詛咒的敵人不能對你造成元素異常狀態"}],"trade":{"ids":{"explicit":["explicit.stat_2643613764"]}}} +{"ref":"Cursed Enemies you or your Minions Kill have a #% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage","better":1,"matchers":[{"string":"你或你的召喚物擊殺受詛咒的敵人有 #% 機率爆炸,並造成他們 1/4 最大生命的混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1763939859"]}}} +{"ref":"Damage cannot be Reflected","better":1,"matchers":[{"string":"傷害不能被反射"}],"trade":{"ids":{"explicit":["explicit.stat_2670993553"]}}} +{"ref":"Damage from your Critical Strikes cannot be Reflected","better":1,"matchers":[{"string":"你的暴擊傷害不能被反射"}],"trade":{"ids":{"explicit":["explicit.stat_1857928882"]}}} +{"ref":"Damage of Enemies Hitting you is Unlucky while you are Cursed with Vulnerability","better":1,"matchers":[{"string":"當你被脆弱詛咒時,來自敵人的傷害很不幸","value":-1},{"string":"當你被脆弱詛咒時,來自敵人的傷害很幸運","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2758554648"]}}} +{"ref":"Damage of Enemies Hitting you is Unlucky while you are on Full Life","better":1,"matchers":[{"string":"當你滿血時,來自敵人擊中你的傷害很不幸","value":-1},{"string":"當你滿血時,來自敵人擊中你的傷害很幸運","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3629143471"]}}} +{"ref":"Damage of Enemies Hitting you is Unlucky while you are on Low Life","better":1,"matchers":[{"string":"當你貧血時,敵人造成的傷害很不幸","value":-1},{"string":"當你貧血時,敵人造成的傷害很幸運","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3753748365"]}}} +{"ref":"Damage of Enemies Hitting you is Unlucky while you have a Magic Ring Equipped","better":1,"matchers":[{"string":"你有裝備 1 個魔法戒指時,敵人擊中你的傷害很不幸","value":-1},{"string":"你有裝備 1 個魔法戒指時,敵人擊中你的傷害很幸運","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2510276385"]}}} +{"ref":"Damage Penetrates #% Chaos Resistance","better":1,"matchers":[{"string":"傷害穿透 #% 混沌抗性"},{"string":"你的擊中將混沌抗性視為比實際值高 #%","negate":true}],"trade":{"ids":{"scourge":["scourge.stat_4264312960"]}}} +{"ref":"Damage Penetrates #% Cold Resistance","better":1,"matchers":[{"string":"傷害穿透 #% 冰冷抗性"},{"string":"你的擊中將冰冷抗性視為比實際值高 #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3417711605"],"implicit":["implicit.stat_3417711605"],"fractured":["fractured.stat_3417711605"],"scourge":["scourge.stat_3417711605"]}}} +{"ref":"Damage Penetrates #% Cold Resistance against Chilled Enemies","better":1,"matchers":[{"string":"傷害穿透冰緩敵人 #% 的冰冷抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1477032229"]}}} +{"ref":"Damage Penetrates #% Cold Resistance while affected by Hatred","better":1,"matchers":[{"string":"被憎恨影響時,傷害穿透 #% 冰冷抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1222888897"]}}} +{"ref":"Damage Penetrates #% Elemental Resistances","better":1,"matchers":[{"string":"傷害穿透 #% 元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_2101383955"],"implicit":["implicit.stat_2101383955"],"fractured":["fractured.stat_2101383955"]}}} +{"ref":"Damage Penetrates #% Elemental Resistances during any Flask Effect","better":1,"matchers":[{"string":"任何藥劑效果持續時間內,傷害穿透 #% 元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_3392890360"],"fractured":["fractured.stat_3392890360"]}}} +{"ref":"Damage Penetrates #% Elemental Resistances if you haven't Killed Recently","better":1,"matchers":[{"string":"若你近期沒有擊殺,傷害穿透 #% 元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_455556407"],"fractured":["fractured.stat_455556407"]}}} +{"ref":"Damage Penetrates #% Elemental Resistances while you are Chilled","better":1,"matchers":[{"string":"你被冰緩時,傷害穿透 #% 元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1089858120"]}}} +{"ref":"Damage Penetrates #% Fire Resistance","better":1,"matchers":[{"string":"傷害穿透 #% 火焰抗性"},{"string":"你的擊中將火焰抗性視為比實際值高 #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2653955271"],"implicit":["implicit.stat_2653955271"],"fractured":["fractured.stat_2653955271"],"scourge":["scourge.stat_2653955271"]}}} +{"ref":"Damage Penetrates #% Fire Resistance against Blinded Enemies","better":1,"matchers":[{"string":"對致盲的敵人傷害穿透 #% 火焰抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1748657990"]}}} +{"ref":"Damage Penetrates #% Fire Resistance while affected by Anger","better":1,"matchers":[{"string":"被憤怒影響時,傷害穿透 #% 火焰抗性"}],"trade":{"ids":{"explicit":["explicit.stat_3111519953"]}}} +{"ref":"Damage Penetrates #% Lightning Resistance","better":1,"matchers":[{"string":"傷害穿透 #% 閃電抗性"},{"string":"你的擊中將閃電抗性視為比實際值高 #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_818778753"],"implicit":["implicit.stat_818778753"],"fractured":["fractured.stat_818778753"],"scourge":["scourge.stat_818778753"]}}} +{"ref":"Damage Penetrates #% Lightning Resistance during Effect","better":1,"matchers":[{"string":"效果持續時間,閃電傷害穿透 #% 閃電抗性"}],"trade":{"ids":{"explicit":["explicit.stat_4164990693"]}}} +{"ref":"Damage Penetrates #% Lightning Resistance while affected by Wrath","better":1,"matchers":[{"string":"被雷霆影響時,傷害穿透 #% 閃電抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1077131949"]}}} +{"ref":"Damage Penetrates #% of Enemy Elemental Resistances","better":1,"matchers":[{"string":"傷害穿透敵人 #% 的元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_697807915"],"scourge":["scourge.stat_697807915"]}}} +{"ref":"Damage Penetrates #% of Enemy Elemental Resistances if you haven't Killed Recently","better":1,"matchers":[{"string":"近期內你若沒有擊殺,傷害穿透 #% 敵人元素抗性"}],"trade":{"ids":{"enchant":["enchant.stat_281254371"]}}} +{"ref":"Damage Penetrates #% of Fire Resistance if you have Blocked Recently","better":1,"matchers":[{"string":"近期若你有格擋則獲得 #% 火焰穿透"}],"trade":{"ids":{"explicit":["explicit.stat_2341811700"]}}} +{"ref":"Damage taken from Blocked Hits cannot bypass Energy Shield\nDamage taken from Unblocked hits always bypasses Energy Shield","better":1,"matchers":[{"string":"承受來自格擋的擊中傷害不會無視能量護盾\n承受來自未格擋的擊中傷害必定無視能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_2331104018"]}}} +{"ref":"Damage with Hits from Socketed Vaal Skills is Lucky","better":1,"matchers":[{"string":"來自插槽中的瓦爾技能的擊中傷害很不幸","value":-1},{"string":"來自插槽中的瓦爾技能的擊中傷害很幸運","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1274200851"]}}} +{"ref":"Damage with Hits is Lucky","better":1,"matchers":[{"string":"擊中的傷害很不幸","value":-1},{"string":"擊中的傷害很幸運","value":1}],"trade":{"ids":{"scourge":["scourge.stat_827991492"]}}} +{"ref":"Damage with Weapons Penetrates #% Cold Resistance","better":1,"matchers":[{"string":"武器造成的傷害穿透 #% 冰冷抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1211769158"],"implicit":["implicit.stat_1211769158"]}}} +{"ref":"Damage with Weapons Penetrates #% Elemental Resistances","better":1,"matchers":[{"string":"武器造成的傷害穿透 #% 元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1736172673"]}}} +{"ref":"Damage with Weapons Penetrates #% Fire Resistance","better":1,"matchers":[{"string":"武器造成的傷害穿透 #% 火焰抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1123291426"],"implicit":["implicit.stat_1123291426"]}}} +{"ref":"Damage with Weapons Penetrates #% Lightning Resistance","better":1,"matchers":[{"string":"武器造成的傷害穿透 #% 閃電抗性"}],"trade":{"ids":{"explicit":["explicit.stat_3301510262"],"implicit":["implicit.stat_3301510262"]}}} +{"ref":"Damaging Ailments deal damage #% faster","better":1,"matchers":[{"string":"傷害型異常狀態造成傷害加速 #%"}],"trade":{"ids":{"explicit":["explicit.stat_538241406"],"fractured":["fractured.stat_538241406"]}}} +{"ref":"Damaging Ailments you inflict deal Damage #% faster while affected by Malevolence","better":1,"matchers":[{"string":"被惡意影響時,你造成的傷害型異常狀態所造成的傷害加速 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3468843137"]}}} +{"ref":"Dash has +# Cooldown Use","better":1,"matchers":[{"string":"幻步 # 冷卻使用次數"}],"trade":{"ids":{"enchant":["enchant.stat_4172171622"]}}} +{"ref":"Dash travels #% increased distance","better":1,"matchers":[{"string":"幻步增加 #% 移動距離"},{"string":"幻步減少 #% 移動距離","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4147746721"]}}} +{"ref":"Deal #% of your maximum Life as Fire Damage to nearby Enemies when Hit","better":1,"matchers":[{"string":"被擊中時對附近敵人造成等同你 #% 最大生命的火焰傷害"}],"trade":{"ids":{"scourge":["scourge.stat_3643913768"]}}} +{"ref":"Deal no Chaos Damage","better":1,"matchers":[{"string":"不能造成混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1896269067"],"scourge":["scourge.stat_1896269067"]}}} +{"ref":"Deal no Cold Damage","better":1,"matchers":[{"string":"不會造成冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_743677006"],"scourge":["scourge.stat_743677006"]}}} +{"ref":"Deal no Damage when not on Low Life","better":1,"matchers":[{"string":"非貧血時,不會造成傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3716472556"]}}} +{"ref":"Deal no Elemental Damage","better":1,"matchers":[{"string":"不能造成元素傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2998305364"]}}} +{"ref":"Deal no Fire Damage","better":1,"matchers":[{"string":"不能造成火焰傷害"}],"trade":{"ids":{"scourge":["scourge.stat_3763013280"]}}} +{"ref":"Deal no Lightning Damage","better":1,"matchers":[{"string":"不能造成閃電傷害"}],"trade":{"ids":{"scourge":["scourge.stat_3520498509"]}}} +{"ref":"Deal no Non-Elemental Damage","better":1,"matchers":[{"string":"不能造成非元素傷害"}],"trade":{"ids":{"explicit":["explicit.stat_4031851097"]}}} +{"ref":"Deal no Non-Lightning Damage","better":1,"matchers":[{"string":"不會造成非閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2075742842"]}}} +{"ref":"Deal no Non-Physical Damage","better":1,"matchers":[{"string":"不會造成非物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_282353000"]}}} +{"ref":"Deal no Physical Damage","better":1,"matchers":[{"string":"不會造成物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3900877792"],"fractured":["fractured.stat_3900877792"],"scourge":["scourge.stat_3900877792"]}}} +{"ref":"Deal no Physical or Elemental Damage","better":1,"matchers":[{"string":"不能造成物理或元素傷害"}],"trade":{"ids":{"explicit":["explicit.stat_4157542794"]}}} +{"ref":"Deal Triple Damage with Elemental Skills","better":1,"matchers":[{"string":"造成 3 倍元素技能傷害"}],"trade":{"ids":{"explicit":["explicit.stat_115695112"]}}} +{"ref":"Deals # Chaos Damage per second to nearby Enemies","better":1,"matchers":[{"string":"每秒對附近敵人造成 # 混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2280313599"]}}} +{"ref":"Debilitate Enemies for # Seconds when you Suppress their Spell Damage","better":1,"matchers":[{"string":"當你壓抑敵人的法術傷害時,虛弱它們 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_3019649166"]}}} +{"ref":"Debilitate nearby Enemies for # Seconds when Effect ends","better":1,"matchers":[{"string":"當效果結束時虛弱附近敵人 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_545593248"]}}} +{"ref":"Debuffs on Monsters expire #% faster","better":1,"fromUberAreaMods":true,"matchers":[{"string":"怪物身上的減益效果消逝加速 #%"},{"string":"怪物身上的減益效果消逝減緩 #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1200027417"]}}} +{"ref":"Debuffs on you expire #% faster","better":1,"matchers":[{"string":"加速減益效果失效 #%"},{"string":"減緩減益效果失效 #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1238227257"]}}} +{"ref":"Debuffs on you expire #% faster while affected by Haste","better":-1,"matchers":[{"string":"被迅捷影響時,你身上的減益效果消逝速度減慢 #%"},{"string":"被迅捷影響時,你身上的減益效果消逝速度提高 #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_207635700"]},"inverted":true}} +{"ref":"Defences are Zero","better":1,"matchers":[{"string":"防禦為 0"}],"trade":{"ids":{"explicit":["explicit.stat_4271994824"]}}} +{"ref":"Defiance Banner has #% increased Aura Effect","better":1,"matchers":[{"string":"反抗之旗增加 #% 光環效果"},{"string":"反抗之旗減少 #% 光環效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1105773670"]}}} +{"ref":"Denoted service of # dekhara in the akhara of Asenath","better":0,"matchers":[{"string":"# 位部屬宣誓服從於安賽娜絲的血脈\n範圍內的天賦臣服於馬拉克斯","advanced":"# 位部屬宣誓服從於安賽娜絲的血脈(安賽娜絲-納西瑪)\n範圍內的天賦臣服於馬拉克斯"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_asenath"]}}} +{"ref":"Denoted service of # dekhara in the akhara of Balbala","better":0,"matchers":[{"string":"# 位部屬宣誓服從於貝爾巴拉的血脈\n範圍內的天賦臣服於馬拉克斯","advanced":"# 位部屬宣誓服從於貝爾巴拉的血脈(安賽娜絲-納西瑪)\n範圍內的天賦臣服於馬拉克斯"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_balbala"]}}} +{"ref":"Denoted service of # dekhara in the akhara of Nasima","better":0,"matchers":[{"string":"# 位部屬宣誓服從於納西瑪的血脈\n範圍內的天賦臣服於馬拉克斯","advanced":"# 位部屬宣誓服從於納西瑪的血脈(安賽娜絲-納西瑪)\n範圍內的天賦臣服於馬拉克斯"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_nasima"]}}} +{"ref":"Desecrate Spawns an additional corpse","better":1,"matchers":[{"string":"褻瀆產生 # 個額外屍體"},{"string":"褻瀆產生 1 個額外屍體","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3655654928"]}}} +{"ref":"Despair has no Reservation if Cast as an Aura","better":1,"matchers":[{"string":"若絕望以光環施放沒有保留"}],"trade":{"ids":{"explicit":["explicit.stat_450601566"]}}} +{"ref":"Determination has #% increased Aura Effect","better":1,"matchers":[{"string":"堅定增加 #% 光環效果"},{"string":"堅定減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3653400807"]}}} +{"ref":"Determination has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"堅定增加 #% 魔力保留效用"},{"string":"堅定減少 #% 魔力保留效用","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2721871046","explicit.stat_325889252"],"implicit":["implicit.stat_2721871046","implicit.stat_325889252"],"enchant":["enchant.stat_2721871046","enchant.stat_325889252"]}}} +{"ref":"Determination has no Reservation","better":1,"matchers":[{"string":"堅定無保留"}],"trade":{"ids":{"explicit":["explicit.stat_1358697130"]}}} +{"ref":"Detonate Dead has a #% chance to detonate an additional corpse","better":1,"matchers":[{"string":"屍體爆破有 #% 機率爆炸 1 個額外屍體"}],"trade":{"ids":{"enchant":["enchant.stat_1539846779"]}}} +{"ref":"Devouring Totem has #% Chance to Consume an additional corpse","better":1,"matchers":[{"string":"吞噬圖騰有 #% 機率消耗 1 個額外屍體"}],"trade":{"ids":{"enchant":["enchant.stat_4189505564"]}}} +{"ref":"Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus","better":1,"matchers":[{"string":"範圍內來自天賦的敏捷和智慧轉為力量近戰傷害加成"}],"trade":{"ids":{"explicit":["explicit.stat_842363566"]}}} +{"ref":"Dexterity from Passives in Radius is Transformed to Intelligence","better":1,"matchers":[{"string":"將範圍內天賦所賦予的敏捷轉換成智慧"}],"trade":{"ids":{"explicit":["explicit.stat_2075199521"]}}} +{"ref":"Dexterity from Passives in Radius is Transformed to Strength","better":1,"matchers":[{"string":"將範圍內天賦所賦予的敏捷轉換成力量"}],"trade":{"ids":{"explicit":["explicit.stat_4097174922"]}}} +{"ref":"Discipline has #% increased Aura Effect","better":1,"matchers":[{"string":"紀律增加 #% 光環效果"},{"string":"紀律減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_788317702"]}}} +{"ref":"Discipline has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"紀律增加 #% 魔力保留效用"},{"string":"紀律減少 #% 魔力保留效用","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1692887998","explicit.stat_2081344089"],"implicit":["implicit.stat_1692887998","implicit.stat_2081344089"],"enchant":["enchant.stat_1692887998","enchant.stat_2081344089"]}}} +{"ref":"Discipline has no Reservation","better":1,"matchers":[{"string":"紀律無保留"}],"trade":{"ids":{"explicit":["explicit.stat_3708588508"]}}} +{"ref":"Divine Flesh","better":1,"matchers":[{"string":"神聖血肉"}],"trade":{"ids":{"explicit":["explicit.stat_2321346567"]}}} +{"ref":"Divine Ire Damages an additional nearby Enemy when gaining Stages","better":1,"matchers":[{"string":"當獲得疊層時,盛怒攻擊 # 個附近額外敵人"},{"string":"當獲得疊層時,盛怒攻擊 1 個附近額外敵人","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1477213724"]}}} +{"ref":"Divine Ire deals #% increased Damage","better":1,"matchers":[{"string":"聖怒增加 #% 傷害"},{"string":"聖怒減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2584129062"]}}} +{"ref":"Divine Ire's beam has #% increased width","better":1,"matchers":[{"string":"聖怒的光束增加 #% 寬度"},{"string":"聖怒的光束減少 #% 寬度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2212298325"]}}} +{"ref":"Divine Shield","better":1,"matchers":[{"string":"聖盾"}],"trade":{"ids":{"explicit":["explicit.stat_2048995720"],"scourge":["scourge.stat_2048995720"]}}} +{"ref":"Does not inflict Mana Burn over time","better":1,"matchers":[{"string":"不會持續造成魔力灼燒"}],"trade":{"ids":{"explicit":["explicit.stat_1686969928"]}}} +{"ref":"Dominating Blow can summon an additional Magic Sentinel of Dominance","better":1,"matchers":[{"string":"霸氣之擊可以召喚 # 個額外魔法統御哨兵"},{"string":"霸氣之擊可以召喚 1 個額外魔法統御哨兵","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1095160683"]}}} +{"ref":"Dominating Blow can summon an additional Rare Sentinel of Dominance","better":1,"matchers":[{"string":"霸氣之擊可以召喚 # 個額外稀有統御哨兵"},{"string":"霸氣之擊可以召喚 1 個額外稀有統御哨兵","value":1}],"trade":{"ids":{"enchant":["enchant.stat_2337005967"]}}} +{"ref":"Double Strike has a #% chance to deal Double Damage to Bleeding Enemies","better":1,"matchers":[{"string":"雙重打擊對流血的敵人有 #% 機率造成 2 倍傷害"}],"trade":{"ids":{"enchant":["enchant.stat_3125201823"]}}} +{"ref":"Dread Banner has #% increased Aura Effect","better":1,"matchers":[{"string":"恐懼之旗增加 #% 光環效果"},{"string":"恐懼之旗減少 #% 光環效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_287319069"]}}} +{"ref":"Drops Brittle Ground while moving, lasting # seconds","better":1,"matchers":[{"string":"移動時留下易碎地面,持續 # 秒"}],"trade":{"ids":{"implicit":["implicit.stat_984148407"]}}} +{"ref":"Drops Burning Ground while moving, dealing # Fire Damage per second for # second","better":1,"matchers":[{"string":"移動時留下燃燒地面,每秒造成 # 火焰傷害,持續 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_3595254837"],"fractured":["fractured.stat_3595254837"]}}} +{"ref":"Drops Sapped Ground while moving, lasting # seconds","better":1,"matchers":[{"string":"移動時留下殘喘地面,持續 # 秒"}],"trade":{"ids":{"implicit":["implicit.stat_1997664024"]}}} +{"ref":"Drops Scorched Ground while moving, lasting # seconds","better":1,"matchers":[{"string":"移動時掉落焦灼地面,持續 # 秒"},{"string":"移動時留下焦灼地面,持續 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_1558131185"],"implicit":["implicit.stat_396238230"]}}} +{"ref":"Drops Shocked Ground while moving, lasting # seconds","better":1,"matchers":[{"string":"移動時留下感電地面,持續 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_3002060175"]}}} +{"ref":"Duplicates up to # random Offer Reward upon defeating the Herald of the Scourge","better":1,"matchers":[{"string":"擊敗災魘先鋒時,複製最多 # 隨機獎勵"}],"trade":{"ids":{"explicit":["sanctum.stat_502549687"]}}} +{"ref":"During Effect, #% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest","better":-1,"matchers":[{"string":"效果持續時間,你絕對抗性最低的元素,你承受到該元素的傷害增加 #%"},{"string":"效果持續時間,你絕對抗性最低的元素,你承受到該元素的傷害減少 #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1869678332"]},"inverted":true}} +{"ref":"During Effect, Damage Penetrates #% Resistance of each Element for which your Uncapped Elemental Resistance is highest","better":1,"matchers":[{"string":"效果持續時間,你絕對抗性最高的元素,你所造成該元素的傷害穿透 #% 該抗性"}],"trade":{"ids":{"explicit":["explicit.stat_2444301311"]}}} +{"ref":"Each Rage also grants +#% to Damage over Time Multiplier for Bleeding while wielding an Axe","better":1,"matchers":[{"string":"持斧時每層盛怒也會給予流血 #% 持續傷害加成"}],"trade":{"ids":{"explicit":["explicit.stat_769468514"]}}} +{"ref":"Each Summoned Phantasm grants you Phantasmal Might","better":1,"matchers":[{"string":"每個召喚的幻影給予你幻影之力"}],"trade":{"ids":{"explicit":["explicit.stat_943553365"]}}} +{"ref":"Earthquake deals #% increased Damage per 0.1 seconds Duration","better":1,"matchers":[{"string":"每 0.1 秒持續時間使震地增加 #% 傷害"},{"string":"每 0.1 秒持續時間使震地減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2068943099"]}}} +{"ref":"Earthshatter deals #% increased Damage","better":1,"matchers":[{"string":"碎地重擊增加 #% 傷害"},{"string":"碎地重擊減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_335520087"]}}} +{"ref":"Earthshatter has #% increased Area of Effect","better":1,"matchers":[{"string":"碎地重擊增加 #% 範圍效果"},{"string":"碎地重擊減少 #% 範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3469056056"]}}} +{"ref":"Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every second","better":1,"matchers":[{"string":"當你擊中稀有或傳奇敵人時吞噬 1 個靈魂,每 # 秒不超過 1 次"},{"string":"當你擊中稀有或傳奇敵人時吞噬 1 個靈魂,每秒不超過 1 次","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2103621252"]}}} +{"ref":"Effect is not removed when Unreserved Mana is Filled\nEffect does not Queue","better":1,"matchers":[{"string":"當未保留魔力滿時,效果不會被移除\n效果不會列隊"}],"trade":{"ids":{"explicit":["explicit.stat_3969608626"],"fractured":["fractured.stat_3969608626"]}}} +{"ref":"Effect is removed when Ward Breaks","better":1,"matchers":[{"string":"當保護破損時,效果被移除"}],"trade":{"ids":{"explicit":["explicit.stat_3617672145"]}}} +{"ref":"Effects of Consecrated Ground you create Linger for 1 second","better":1,"matchers":[{"string":"你製造的奉獻地面效果多留存 # 秒"},{"string":"你製造的奉獻地面效果多留存 1 秒","value":1}],"trade":{"ids":{"explicit":["explicit.stat_4113372195"]}}} +{"ref":"Effects of Consecrated Ground you create while affected by Zealotry Linger for # seconds","better":1,"matchers":[{"string":"被狂熱影響時,你製造的奉獻地面效果持續 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_2163419452"]}}} +{"ref":"Effects of Profane Ground you create Linger for 1 second","better":1,"matchers":[{"string":"你製造褻瀆地面的效果停留 # 秒"},{"string":"你製造褻瀆地面的效果停留 1 秒","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3636871122"]}}} +{"ref":"Eldritch Battery","better":1,"matchers":[{"string":"異能魔力"}],"trade":{"ids":{"explicit":["explicit.stat_2262736444"],"scourge":["scourge.stat_2262736444"]}}} +{"ref":"Eldritch Battery during Effect","better":1,"matchers":[{"string":"效果持續時間,獲得異能魔力"}],"trade":{"ids":{"explicit":["explicit.stat_1544417021"]}}} +{"ref":"Elemental Ailments inflicted on Enemies Exposed by you have #% increased Duration","better":1,"matchers":[{"string":"敵人被你曝曬造成的元素異常狀態,增加 #% 持續時間"},{"string":"敵人被你曝曬造成的元素異常狀態,減少 #% 持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_261996832"]}}} +{"ref":"Elemental Ailments you inflict are Reflected to you","better":1,"matchers":[{"string":"你造成的元素異常狀態反射至你"}],"trade":{"ids":{"explicit":["explicit.stat_1370804479"]}}} +{"ref":"Elemental Damage with Hits is Lucky while you are Shocked","better":1,"matchers":[{"string":"你被感電時,擊中的元素傷害很幸運"}],"trade":{"ids":{"explicit":["explicit.stat_888026555"]}}} +{"ref":"Elemental Damage you Deal with Hits is Resisted by lowest Elemental Resistance instead","better":1,"matchers":[{"string":"你擊中所造成的元素傷害改為最低元素抗性抵抗"}],"trade":{"ids":{"explicit":["explicit.stat_1740349133"]}}} +{"ref":"Elemental Equilibrium","better":1,"matchers":[{"string":"元素之相"}],"trade":{"ids":{"explicit":["explicit.stat_1263158408"],"implicit":["implicit.stat_1263158408"],"scourge":["scourge.stat_1263158408"]}}} +{"ref":"Elemental Hit Always Freezes, Shocks and Ignites","better":1,"matchers":[{"string":"元素打擊擊中時有 #% 機率造成冰凍、感電、點燃"},{"string":"元素打擊擊中必定造成冰凍、感電、點燃","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3205997967"]}}} +{"ref":"Elemental Hit deals #% increased Damage","better":1,"matchers":[{"string":"增加 #% 元素打擊傷害"},{"string":"減少 #% 元素打擊傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4109038270"],"enchant":["enchant.stat_4109038270"]}}} +{"ref":"Elemental Overload","better":1,"matchers":[{"string":"元素超載"}],"trade":{"ids":{"explicit":["explicit.stat_3574189159"],"implicit":["implicit.stat_3574189159"],"fractured":["fractured.stat_3574189159"],"scourge":["scourge.stat_3574189159"]}}} +{"ref":"Elemental Resistances are capped by your highest Maximum Elemental Resistance instead","better":1,"matchers":[{"string":"元素抗性上限改為你最高的元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_3082079953"]}}} +{"ref":"Elemental Resistances are Zero","better":1,"matchers":[{"string":"零元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_85576425"]}}} +{"ref":"Elemental Weakness has no Reservation if Cast as an Aura","better":1,"matchers":[{"string":"元素要害若以光環施放沒有保留"}],"trade":{"ids":{"explicit":["explicit.stat_3416664215"]}}} +{"ref":"Elreon's Veiled","better":0,"matchers":[{"string":"艾爾雷恩的隱匿"}],"trade":{"ids":{"veiled":["veiled.mod_5769"]}}} +{"ref":"Enduring Cry grants # additional Endurance Charge to you and Allied Players","better":1,"matchers":[{"string":"堅決戰吼給予你和友方玩家 # 顆額外耐力球"}],"trade":{"ids":{"enchant":["enchant.stat_2977067558"]}}} +{"ref":"Enduring Cry has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"堅決戰吼增加 #% 冷卻時間恢復速度"},{"string":"堅決戰吼減少 #% 冷卻時間恢復速度","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3617955571"],"enchant":["enchant.stat_3617955571"]}}} +{"ref":"Enemies affected by Bear Trap take #% increased Damage from Trap or Mine Hits","better":1,"matchers":[{"string":"被捕熊陷阱影響的敵人,增加承受 #% 來自陷阱或地雷擊中的傷害"},{"string":"被捕熊陷阱影響的敵人,減少承受 #% 來自陷阱或地雷擊中的傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1678345858"]}}} +{"ref":"Enemies affected by your Spider's Webs deal #% reduced Damage","better":-1,"matchers":[{"string":"被你蛛網纏繞的敵人增加 #% 傷害"},{"string":"被你蛛網纏繞的敵人減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3231424461"]},"inverted":true}} +{"ref":"Enemies affected by your Spider's Webs have +#% to All Resistances","better":1,"matchers":[{"string":"被你蛛網纏繞的敵人 #% 全部抗性"}],"trade":{"ids":{"explicit":["explicit.stat_785655723"]}}} +{"ref":"Enemies Blinded by you have #% increased Critical Strike Chance","better":1,"matchers":[{"string":"被你致盲的敵人增加 #% 暴擊率"},{"string":"被你致盲的敵人減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4216282855"],"fractured":["fractured.stat_4216282855"],"enchant":["enchant.stat_4216282855"]}}} +{"ref":"Enemies Blinded by you have Malediction","better":1,"matchers":[{"string":"被你致盲的敵人有惡語術"}],"trade":{"ids":{"explicit":["explicit.stat_2621660713"]}}} +{"ref":"Enemies Cannot Leech Life From you","better":1,"matchers":[{"string":"敵人不能偷取你的生命"}],"trade":{"ids":{"explicit":["explicit.stat_4293455942"],"implicit":["implicit.stat_4293455942"]}}} +{"ref":"Enemies Cannot Leech Mana From you","better":1,"matchers":[{"string":"敵人不能偷取你的魔力"}],"trade":{"ids":{"explicit":["explicit.stat_4293245253"]}}} +{"ref":"Enemies Chilled by your Hits can be Shattered as though Frozen","better":1,"matchers":[{"string":"被你擊中而冰緩的敵人,可以像冰凍那樣被粉碎"}],"trade":{"ids":{"explicit":["explicit.stat_3119292058"]}}} +{"ref":"Enemies Chilled by your Hits have Damage taken increased by Chill Effect","better":1,"matchers":[{"string":"被你擊中而冰緩的敵人增加承受冰緩效果的傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1816894864"]}}} +{"ref":"Enemies Chilled by your Hits lessen their Damage dealt by half of Chill Effect","better":1,"matchers":[{"string":"被你擊中而冰緩的敵人所造成的傷害減少,傷害減少效果為冰緩效果的一半。"}],"trade":{"ids":{"explicit":["explicit.stat_3594661200"]}}} +{"ref":"Enemies Cursed by you are Hindered if 25% of Curse Duration expired","better":1,"matchers":[{"string":"若詛咒持續時間過去 25%,\n你詛咒的敵人被阻礙減少 #% 移動速度"},{"string":"若詛咒持續時間過去 25%,你詛咒的敵人被阻礙","value":30}],"trade":{"ids":{"explicit":["explicit.stat_313419608"]}}} +{"ref":"Enemies Cursed by you take #% increased Damage if 75% of Curse Duration expired","better":1,"matchers":[{"string":"若詛咒持續時間過去 75%,被你詛咒的敵人增加 #% 承受傷害"},{"string":"若詛咒持續時間過去 75%,被你詛咒的敵人減少 #% 承受傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2057136736"]}}} +{"ref":"Enemies display their Monster Category","better":1,"matchers":[{"string":"敵人顯示他們的怪物種類"}],"trade":{"ids":{"explicit":["explicit.stat_4164361381"]}}} +{"ref":"Enemies Drenched by Hydrosphere have Cold and Lightning Exposure, applying +#% to Resistances","better":1,"matchers":[{"string":"被水弒界溼透的敵人有冰冷和閃電曝曬,#% 抗性"}],"trade":{"ids":{"enchant":["enchant.stat_3831546273"]}}} +{"ref":"Enemies Frozen by you take 20% increased Damage","better":1,"matchers":[{"string":"被你冰凍的敵人額外承受 20% 傷害"}],"trade":{"ids":{"explicit":["explicit.stat_849085925"]}}} +{"ref":"Enemies have #% reduced Evasion if you have Hit them Recently","better":-1,"matchers":[{"string":"若你近期有擊中敵人,增加他們 #% 閃避值"},{"string":"若你近期有擊中敵人,減少他們 #% 閃避值","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1773891268"],"fractured":["fractured.stat_1773891268"]},"inverted":true}} +{"ref":"Enemies Hindered by you have #% increased Life Regeneration rate","better":1,"matchers":[{"string":"被你阻礙的敵人增加 #% 生命回復率"},{"string":"被你阻礙的敵人減少 #% 生命回復率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3709502856"],"fractured":["fractured.stat_3709502856"],"enchant":["enchant.stat_3709502856"]}}} +{"ref":"Enemies Ignited by you during Effect take #% increased Damage","better":1,"matchers":[{"string":"在你效果持續時間被點燃的敵人,增加承受 #% 傷害"},{"string":"在你效果持續時間被點燃的敵人,減少承受 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3477833022"]}}} +{"ref":"Enemies Ignited by you have #% of Physical Damage they deal converted to Fire","better":1,"matchers":[{"string":"被你點燃的敵人所造成 #% 物理傷害轉化至火焰"}],"trade":{"ids":{"explicit":["explicit.stat_1272032962"]}}} +{"ref":"Enemies Ignited by you take Chaos Damage instead of Fire Damage from Ignite","better":1,"matchers":[{"string":"被你點燃的敵人承受來自點燃的傷害為混沌,而不是火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2714810050"]}}} +{"ref":"Enemies in Void Sphere's range take up to #% increased Damage, based on distance from the Void Sphere","better":1,"matchers":[{"string":"在虛無玉範圍內的敵人,根據和虛無玉的距離最多增加承受 #% 傷害"},{"string":"在虛無玉範圍內的敵人,根據和虛無玉的距離最多減少承受 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4271709087"]}}} +{"ref":"Enemies in your Chilling Areas take #% increased Lightning Damage","better":1,"matchers":[{"string":"在你冰緩地區的敵人增加承受 #% 閃電傷害"},{"string":"在你冰緩地區的敵人減少承受 #% 閃電傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3923274300"]}}} +{"ref":"Enemies in your Link Beams cannot apply Elemental Ailments","better":1,"matchers":[{"string":"在你連結射線內的敵人不能套用元素異常狀態"}],"trade":{"ids":{"explicit":["explicit.stat_2556900184"]}}} +{"ref":"Enemies inflict Elemental Ailments on you instead of nearby Allies","better":1,"matchers":[{"string":"敵人對你造成元素異常狀態,而不是附近友方"}],"trade":{"ids":{"explicit":["explicit.stat_979288792"]}}} +{"ref":"Enemies inside Glacial Cage take #% increased Damage","better":1,"anointments":[{"roll":10,"oils":"1,11"}],"matchers":[{"string":"在寒冰牢籠中的敵人增加 #% 承受傷害"},{"string":"在寒冰牢籠中的敵人減少 #% 承受傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3384161880"]}}} +{"ref":"Enemies Intimidated by you have #% increased duration of stuns against them","better":1,"matchers":[{"string":"被你威嚇的敵人,增加 #% 對他們的暈眩持續時間"},{"string":"被你威嚇的敵人,減少 #% 對他們的暈眩持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1919892065"],"fractured":["fractured.stat_1919892065"],"enchant":["enchant.stat_1919892065"]}}} +{"ref":"Enemies Killed by your Hits are destroyed","better":1,"matchers":[{"string":"被你擊中擊殺的敵人被摧毀"}],"trade":{"ids":{"explicit":["explicit.stat_2970902024"]}}} +{"ref":"Enemies Killed by your Hits are destroyed while Insane","better":1,"matchers":[{"string":"瘋狂時被你的擊中擊殺的敵人會被摧毀"}],"trade":{"ids":{"explicit":["explicit.stat_3797538318"]}}} +{"ref":"Enemies Killed by Zombies' Hits Explode, dealing #% of their Life as Fire Damage","better":1,"matchers":[{"string":"被殭屍擊殺的敵人會爆炸,造成 #% 它們生命的火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2857427872"]}}} +{"ref":"Enemies Killed with Attack or Spell Hits Explode, dealing #% of their Life as Fire Damage","better":1,"matchers":[{"string":"被攻擊或法術擊中擊殺的敵人會爆炸,造成 #% 它們生命的火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3457687358"]}}} +{"ref":"Enemies Maimed by you take #% increased Damage Over Time","better":1,"matchers":[{"string":"被你癱瘓的敵人增加 #% 承受持續傷害"},{"string":"被你癱瘓的敵人減少 #% 承受持續傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2745149002"],"fractured":["fractured.stat_2745149002"],"enchant":["enchant.stat_2745149002"]}}} +{"ref":"Enemies near corpses affected by your Curses are Blinded\nEnemies Killed near corpses affected by your Curses explode, dealing\n#% of their Life as Physical Damage","better":1,"matchers":[{"string":"敵人靠近被你詛咒的屍體時被致盲\n敵人靠近被你詛咒的屍體被擊殺時爆炸,\n造成 #% 他們生命的物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1509756274"]}}} +{"ref":"Enemies on Fungal Ground you Kill have #% chance to Explode, dealing 5% of their Life as Chaos Damage","better":1,"matchers":[{"string":"你擊殺毒菌地面上的敵人時有 #% 機率爆炸,造成他們生命 5% 的混沌傷害"},{"string":"你擊殺毒菌地面上的敵人時爆炸,造成他們生命 5% 的混沌傷害","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3550460467"]}}} +{"ref":"Enemies Petrified by Your Stone Gaze Towers take #% increased Damage","better":1,"anointments":[{"roll":10,"oils":"7,9"}],"matchers":[{"string":"被你石化凝視塔石化的敵人,增加 #% 承受傷害"}],"trade":{"ids":{"enchant":["enchant.stat_3169825208"]}}} +{"ref":"Enemies Shocked by you have #% of Physical Damage they deal converted to Lightning","better":1,"matchers":[{"string":"被你感電的敵人所造成 #% 物理傷害轉化至閃電"}],"trade":{"ids":{"explicit":["explicit.stat_1070888079"]}}} +{"ref":"Enemies take #% increased Damage for each type of Ailment you have inflicted on them","better":1,"matchers":[{"string":"對敵人造成的異常狀況,每種可以增加 #% 承受傷害"},{"string":"對敵人造成的異常狀況,每種可以減少 #% 承受傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1217730254"]}}} +{"ref":"Enemies take #% increased Elemental Damage from your Hits for\neach Withered you have inflicted on them","better":1,"matchers":[{"string":"根據你套用在敵人身上的每層凋零,\n使敵人增加承受 #% 來自你的元素傷害"},{"string":"根據你套用在敵人身上的每層凋零,\n使敵人減少承受 #% 來自你的元素傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3507915723"]}}} +{"ref":"Enemies Taunted by you deal #% more Area Damage","better":1,"matchers":[{"string":"被你嘲諷的敵人造成 #% 更多範圍傷害"},{"string":"被你嘲諷的敵人造成 #% 更少範圍傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1684204928"]}}} +{"ref":"Enemies Taunted by you take #% increased Damage","better":1,"matchers":[{"string":"受到你嘲諷的敵人增加 #% 承受的傷害"},{"string":"受到你嘲諷的敵人減少 #% 承受的傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1282219780"]}}} +{"ref":"Enemies Taunted by your Warcries have #% chance to Explode on death, dealing 8% of their maximum Life as Chaos Damage","better":1,"matchers":[{"string":"被你的戰吼嘲諷的敵人死亡時有 #% 機率爆炸,造成他們最大生命 8% 的混沌傷害"},{"string":"被你的戰吼嘲諷的敵人死亡時爆炸,造成他們最大生命 8% 的混沌傷害","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2937093415"]}}} +{"ref":"Enemies Withered by you have +#% to all Resistances","better":1,"matchers":[{"string":"被你凋零的敵人 #% 全部抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1032614900"],"fractured":["fractured.stat_1032614900"],"enchant":["enchant.stat_1032614900"]}}} +{"ref":"Enemies you Attack Reflect # Physical Damage to you","better":1,"matchers":[{"string":"你攻擊的敵人對你反射 # 物理傷害"},{"string":"你攻擊的敵人對你反射 # 至 # 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2006370586"]}}} +{"ref":"Enemies you inflict Bleeding on grant #% increased Flask Charges","better":1,"matchers":[{"string":"對你造成流血的敵人增加 #% 藥劑充能"},{"string":"對你造成流血的敵人減少 #% 藥劑充能","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2671550669"]}}} +{"ref":"Enemies you kill are Shocked","better":1,"matchers":[{"string":"你擊殺的敵人被感電"}],"trade":{"ids":{"explicit":["explicit.stat_209387074"]}}} +{"ref":"Enemies you Kill during Effect have a #% chance to Explode, dealing a tenth of their maximum Life as Damage of a Random Element","better":1,"matchers":[{"string":"效果持續時間你擊殺的敵人有 #% 機率爆炸,造成他們最大生命十分之一的 1 種隨機元素傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2165415361"]}}} +{"ref":"Enemies you Kill Explode, dealing #% of their Life as Physical Damage","better":1,"matchers":[{"string":"被你擊殺的敵人會爆炸,造成 #% 它們生命的物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1220361974"],"implicit":["implicit.stat_1220361974"]}}} +{"ref":"Enemies you Kill have a #% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage","better":1,"matchers":[{"string":"你擊殺的敵人有 #% 機率爆炸,造成等同四分之一其最大生命的混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1776945532"]}}} +{"ref":"Enemies you Kill have a #% chance to Explode, dealing a tenth of their maximum Life as Physical Damage","better":1,"matchers":[{"string":"你擊殺的敵人有 #% 機率爆炸,造成他們最大生命十分之一的物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3295179224"],"implicit":["implicit.stat_3295179224"],"scourge":["scourge.stat_3295179224"]}}} +{"ref":"Enemies you Kill that are affected by Elemental Ailments\ngrant #% increased Flask Charges","better":1,"matchers":[{"string":"擊殺受元素異常狀態影響的敵人\n增加 #% 藥劑充能"},{"string":"擊殺受元素異常狀態影響的敵人\n減少 #% 藥劑充能","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_589437732"]}}} +{"ref":"Enemies you Kill while affected by Glorious Madness have a #% chance to Explode, dealing a quarter of their Life as Chaos Damage","better":1,"matchers":[{"string":"被榮耀瘋癲影響時,你擊殺的敵人有 #% 機率爆炸,造成它們生命四分之一的混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2780297117"]}}} +{"ref":"Enemies you Kill while using Pride have #% chance to Explode, dealing a tenth of their maximum Life as Physical Damage","better":1,"matchers":[{"string":"你使用驕傲擊殺敵人時,敵人有 #% 機率爆炸並造成 10% 他們最大生命的物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1961516633"]}}} +{"ref":"Enemies you or your Totems Kill have #% chance to Explode, dealing 500% of their maximum Life as Fire Damage","better":1,"matchers":[{"string":"你或你圖騰擊殺的敵人有 #% 機率爆炸,造成 500% 它們最大生命的火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_215242678"]}}} +{"ref":"Enemies you Shock have #% reduced Cast Speed","better":-1,"matchers":[{"string":"被你感電的敵人增加 #% 施放速度"},{"string":"被你感電的敵人减少 #% 施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4107150355"]},"inverted":true}} +{"ref":"Enemies you Shock have #% reduced Movement Speed","better":-1,"matchers":[{"string":"被你感電的敵人增加 #% 移動速度"},{"string":"被你感電的敵人减少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3134790305"]},"inverted":true}} +{"ref":"Enemies you've Hit Recently have #% reduced Life Regeneration rate","better":-1,"matchers":[{"string":"近期你擊中的敵人增加 #% 生命回復率"},{"string":"近期你擊中的敵人減少 #% 生命回復率","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3903907406"]},"inverted":true}} +{"ref":"Enemy Hits inflict Temporal Chains on you","better":1,"matchers":[{"string":"敵人的擊中對你造成時空鎖鏈"}],"trade":{"ids":{"explicit":["explicit.stat_1955994922"]}}} +{"ref":"Enemy Projectiles Pierce you","better":1,"matchers":[{"string":"敵人的投射物穿透你"}],"trade":{"ids":{"explicit":["explicit.stat_1457679290"]}}} +{"ref":"Energy Blades have #% increased Attack Speed","better":1,"matchers":[{"string":"能量之刃增加 #% 攻擊速度"},{"string":"能量之刃減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1217516474"]}}} +{"ref":"Energy Shield Leech Effects from Attacks are not removed at Full Energy Shield","better":1,"matchers":[{"string":"滿能量護盾時,來自攻擊的能量護盾偷取效果不會移除"}],"trade":{"ids":{"explicit":["explicit.stat_1004885987"]}}} +{"ref":"Enfeeble has no Reservation if Cast as an Aura","better":1,"matchers":[{"string":"衰弱若以光環施放沒有保留"}],"trade":{"ids":{"explicit":["explicit.stat_56919069"]}}} +{"ref":"Ensnaring Arrow has #% increased Area of Effect","better":1,"matchers":[{"string":"誘捕箭矢增加 #% 範圍效果"},{"string":"誘捕箭矢減少 #% 範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2791271819"]}}} +{"ref":"Ensnaring Arrow has #% increased Debuff Effect","better":1,"matchers":[{"string":"誘捕箭矢增加 #% 減益效果"},{"string":"誘捕箭矢減少 #% 減益效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1405738574"]}}} +{"ref":"Envy has no Reservation","better":1,"matchers":[{"string":"忌妒無保留"}],"trade":{"ids":{"explicit":["explicit.stat_2503479316"]}}} +{"ref":"Eternal Youth","better":1,"matchers":[{"string":"青春永駐"}],"trade":{"ids":{"explicit":["explicit.stat_1308467455"],"scourge":["scourge.stat_1308467455"]}}} +{"ref":"Ethereal Knives fires Projectiles in a circle","better":1,"matchers":[{"string":"虛空匕首以圓形型式發射投射物"}],"trade":{"ids":{"enchant":["enchant.stat_3491968196"]}}} +{"ref":"Evasion Rating is increased by Overcapped Cold Resistance","better":1,"matchers":[{"string":"超過上限的冰冷抗性增加為閃避值"}],"trade":{"ids":{"explicit":["explicit.stat_2358015838"],"fractured":["fractured.stat_2358015838"]}}} +{"ref":"Everlasting Sacrifice","better":1,"matchers":[{"string":"永恆奉獻"}],"trade":{"ids":{"explicit":["explicit.stat_145598447"]}}} +{"ref":"Every 10 seconds:\nGain 2% of Life per Enemy Hit with Attacks for 5 seconds\nGain 5% of Life per Enemy Killed for 5 seconds","better":1,"matchers":[{"string":"每 10 秒:\n每下使用攻擊擊中敵人獲得 2% 生命,持續 5 秒\n每個擊殺的敵人獲得 5% 生命,持續 5 秒"}],"trade":{"ids":{"explicit":["explicit.stat_3938394827"]}}} +{"ref":"Every 16 seconds you gain Elemental Overload for 8 seconds","better":1,"matchers":[{"string":"每 16 秒獲得 8 秒的元素超載"}],"trade":{"ids":{"explicit":["explicit.stat_708913352"]}}} +{"ref":"Every 16 seconds you gain Iron Reflexes for 8 seconds","better":1,"matchers":[{"string":"每 16 秒獲得 8 秒的霸體"}],"trade":{"ids":{"explicit":["explicit.stat_2200114771"]}}} +{"ref":"Every 4 seconds, Regenerate #% of Life over one second","better":1,"matchers":[{"string":"每 4 秒在 1 秒內回復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_1242155304"]}}} +{"ref":"Every 4 seconds, remove Curses and Elemental Ailments from you","better":1,"matchers":[{"string":"每 4 秒,移除你身上的詛咒和元素異常狀態"}],"trade":{"ids":{"explicit":["explicit.stat_2189230542"]}}} +{"ref":"Every 5 seconds, gain one of the following for 5 seconds:\nYour Hits are always Critical Strikes\nHits against you are always Critical Strikes\nAttacks cannot Hit you\nAttacks against you always Hit\nYour Damage with Hits is Lucky\nDamage of Hits against you is Lucky","better":1,"matchers":[{"string":"每 5 秒,獲得 1 個下列效果 5 秒:\n你的擊中必定暴擊\n對你的擊中必定暴擊\n攻擊不能擊中你\n對你的攻擊必定擊中\n你的擊中傷害很幸運\n對你的擊中傷害很幸運"}],"trade":{"ids":{"explicit":["explicit.stat_2501671832"]}}} +{"ref":"Every 8 seconds, gain Avatar of Fire for 4 seconds","better":1,"matchers":[{"string":"每 8 秒獲得 4 秒的火之化身"}],"trade":{"ids":{"explicit":["explicit.stat_3345955207"]}}} +{"ref":"Every Rage also grants #% of Physical Damage as Extra Fire Damage","better":1,"matchers":[{"string":"每層盛怒也會賦予 #% 物理傷害的額外火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1431402553"]}}} +{"ref":"Excavated Chests have a #% chance to contain twice as many Items","better":1,"fromAreaMods":true,"matchers":[{"string":"發掘的保險箱有 #% 機率含有 2 倍的物品"}],"trade":{"ids":{"implicit":["implicit.stat_3239978999"]}}} +{"ref":"Exerted Attacks deal #% increased Damage","better":1,"matchers":[{"string":"竭盡攻擊增加 #% 傷害"},{"string":"竭盡攻擊減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1569101201"],"implicit":["implicit.stat_1569101201"]}}} +{"ref":"Exerted Attacks Knock Enemies Back on Hit","better":1,"matchers":[{"string":"竭盡攻擊擊中時有 #% 機率擊退敵人"},{"string":"竭盡攻擊擊中時擊退敵人","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1634061592"]}}} +{"ref":"Explosive Arrow deals #% increased Damage","better":1,"matchers":[{"string":"爆炸箭矢增加 #% 傷害"},{"string":"爆炸箭矢減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3628984170"]}}} +{"ref":"Explosive Arrow has #% increased Area of Effect","better":1,"matchers":[{"string":"爆炸箭矢增加 #% 範圍效果"},{"string":"爆炸箭矢減少 #% 範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1041365824"]}}} +{"ref":"Explosive Arrow has #% increased Attack Speed","better":1,"matchers":[{"string":"爆炸箭矢增加 #% 攻擊速度"},{"string":"爆炸箭矢減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3949159285"]}}} +{"ref":"Explosive Arrow has #% increased Duration","better":1,"matchers":[{"string":"爆炸箭矢增加 #% 持續時間"},{"string":"爆炸箭矢減少 #% 持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3590425794"]}}} +{"ref":"Explosive Concoction uses #% increased Flask Charges","better":1,"matchers":[{"string":"爆裂物增加 #% 藥劑充能使用"},{"string":"爆裂物減少 #% 藥劑充能使用s","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1907051864"]}}} +{"ref":"Explosive Trap causes an additional smaller explosion","better":1,"matchers":[{"string":"爆裂陷阱造成 # 次額外小爆炸"},{"string":"爆裂陷阱造成 1 次額外小爆炸","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3078026860"]}}} +{"ref":"Explosive Trap deals #% increased Damage","better":1,"matchers":[{"string":"爆裂陷阱增加 #% 傷害"},{"string":"爆裂陷阱減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4207255685"]}}} +{"ref":"Explosive Trap has #% increased Area of Effect","better":1,"matchers":[{"string":"爆裂陷阱增加 #% 範圍效果"},{"string":"爆裂陷阱減少 #% 範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1694915226"]}}} +{"ref":"Exposure you inflict applies an extra +#% to the affected Resistance","better":-1,"matchers":[{"string":"你造成的曝曬額外 #% 至影響的抗性"}],"trade":{"ids":{"explicit":["explicit.stat_3306713700"]}}} +{"ref":"Exsanguinate deals #% increased Damage","better":1,"matchers":[{"string":"抽血增加 #% 傷害"},{"string":"抽血減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2259734653"]}}} +{"ref":"Exsanguinate has a #% chance to Chain an additional time","better":1,"matchers":[{"string":"抽血有 #% 機率連鎖額外1 次"}],"trade":{"ids":{"enchant":["enchant.stat_2304517189"]}}} +{"ref":"Extra gore","better":1,"matchers":[{"string":"更多鮮血"}],"trade":{"ids":{"explicit":["explicit.stat_3403461239"]}}} +{"ref":"Eye of Winter fires Shard projectiles with #% increased Frequency during flight","better":1,"matchers":[{"string":"凜冬之眼飛行期間增加 #% 頻率發射碎片投射物"},{"string":"凜冬之眼飛行期間減少 #% 頻率發射碎片投射物","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_173612563"]}}} +{"ref":"Far Shot","better":1,"matchers":[{"string":"狙擊"}],"trade":{"ids":{"explicit":["explicit.stat_2483362276"]}}} +{"ref":"Fire Resistance cannot be Penetrated","better":1,"matchers":[{"string":"火焰抗性無法被穿透"}],"trade":{"ids":{"explicit":["explicit.stat_1138860262"],"fractured":["fractured.stat_1138860262"]}}} +{"ref":"Fire Resistance is #%","better":1,"matchers":[{"string":"火焰抗性為 #%"}],"trade":{"ids":{"explicit":["explicit.stat_763311546"]}}} +{"ref":"Fire Skills have #% chance to Poison on Hit","better":1,"matchers":[{"string":"火焰技能擊中時有 #% 機率造成中毒"}],"trade":{"ids":{"explicit":["explicit.stat_2424717327"]}}} +{"ref":"Fireball Always Ignites","better":1,"matchers":[{"string":"火球有 #% 機率點燃"},{"string":"火球必定點燃","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2098790581"]}}} +{"ref":"Fish Rot upon being Caught","better":1,"matchers":[{"string":"釣到魚腐爛"}],"trade":{"ids":{"scourge":["scourge.stat_261024552"]}}} +{"ref":"Flame Dash has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"烈焰衝刺增加 #% 冷卻時間恢復速度"},{"string":"烈焰衝刺減少 #% 冷卻時間恢復速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1440798870"]}}} +{"ref":"Flame Golems have #% increased Damage","better":1,"matchers":[{"string":"增加 #% 烈焰魔像的傷害"},{"string":"減少 #% 烈焰魔像的傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1575282859"]}}} +{"ref":"Flame Wall deals #% increased Damage","better":1,"matchers":[{"string":"烈焰之牆增加 #% 傷害"},{"string":"烈焰之牆減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2189364976"]}}} +{"ref":"Flame Wall grants # to # Added Fire Damage to Projectiles","better":1,"matchers":[{"string":"烈焰之牆使投射物附加 # 至 # 火焰傷害"}],"trade":{"ids":{"enchant":["enchant.stat_3881327877"]}}} +{"ref":"Flamethrower Trap deals #% increased Damage","better":1,"matchers":[{"string":"噴火陷阱增加 #% 傷害"},{"string":"噴火陷阱減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4162139595"]}}} +{"ref":"Flamethrower Trap has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"噴火陷阱增加 #% 冷卻時間恢復速度"},{"string":"噴火陷阱減少 #% 冷卻時間恢復速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2962501808"]}}} +{"ref":"Flamethrower Trap has #% increased Skill Effect Duration","better":1,"matchers":[{"string":"噴火陷阱增加 #% 技能效果持續時間"},{"string":"噴火陷阱減少 #% 技能效果持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_525771896"]}}} +{"ref":"Flamethrower Trap has an additional Flame","better":1,"matchers":[{"string":"噴火陷阱有 # 道額外火焰"},{"string":"噴火陷阱有 1 道額外火焰","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1452255482"]}}} +{"ref":"Flammability has no Reservation if Cast as an Aura","better":1,"matchers":[{"string":"若易燃以光環施放沒有保留"}],"trade":{"ids":{"explicit":["explicit.stat_1195140808"]}}} +{"ref":"Flasks applied to you have #% increased Effect","better":1,"matchers":[{"string":"作用於你的藥劑增加 #% 效果"},{"string":"作用於你的藥劑減少 #% 效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_114734841"],"implicit":["implicit.stat_114734841"],"fractured":["fractured.stat_114734841"],"crafted":["crafted.stat_114734841"]}}} +{"ref":"Flasks applied to you have #% increased Effect per Level","better":1,"matchers":[{"string":"作用於你的藥劑每等級增加 #% 效果"},{"string":"作用於你的藥劑每等級減少 #% 效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3867344930"]}}} +{"ref":"Flasks do not apply to you","better":1,"matchers":[{"string":"不會獲得藥劑的效果"}],"trade":{"ids":{"explicit":["explicit.stat_3003321700"],"fractured":["fractured.stat_3003321700"]}}} +{"ref":"Flasks gain # Charge per second if you've Hit a Unique Enemy Recently","better":1,"matchers":[{"string":"若你近期有擊中傳奇敵人,每秒藥劑獲得 # 充能"}],"trade":{"ids":{"explicit":["explicit.stat_3599443205"]}}} +{"ref":"Flasks gain # Charges every 3 seconds","better":1,"matchers":[{"string":"藥劑每 3 秒獲得 # 個充能"},{"string":"藥劑每 3 秒獲得一個充能","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1193283913"],"implicit":["implicit.stat_1193283913"]}}} +{"ref":"Flasks gain # Charges every 3 seconds while they are inactive","better":1,"matchers":[{"string":"藥劑未啟用時,每 3 秒獲得 # 充能"}],"trade":{"ids":{"explicit":["explicit.stat_3168399315"]}}} +{"ref":"Flasks gain # Charges when you hit a Non-Unique Enemy, no more than once per second","better":1,"matchers":[{"string":"當你擊中非傳奇敵人,藥劑獲得 # 充能,每秒不超過 1 次"}],"trade":{"ids":{"explicit":["explicit.stat_196260576"]}}} +{"ref":"Flasks you Use apply to your Raised Zombies and Spectres","better":1,"matchers":[{"string":"你使用的藥劑套用至你的殭屍復甦和幽魂"}],"trade":{"ids":{"explicit":["explicit.stat_3127641775"]}}} +{"ref":"Flesh and Stone has #% increased Area of Effect","better":1,"matchers":[{"string":"血肉骸骨增加 #% 範圍效果"},{"string":"血肉骸骨減少 #% 範圍效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_789978501"]}}} +{"ref":"Flesh and Stone has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"血肉骸骨增加 #% 魔力保留效用"},{"string":"血肉骸骨減少 #% 魔力保留效用","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1740848995","enchant.stat_3563089138"]}}} +{"ref":"Flesh and Stone has no Reservation","better":1,"matchers":[{"string":"血肉骸骨沒有保留"}],"trade":{"ids":{"explicit":["explicit.stat_2060601355"]}}} +{"ref":"Flesh Offering grants an additional #% increased Attack Speed","better":1,"matchers":[{"string":"增加 #% 血肉奉獻提供的召喚物攻擊速度"},{"string":"減少 #% 血肉奉獻提供的召喚物攻擊速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_513715594"]}}} +{"ref":"Flesh Offering has #% increased Effect","better":1,"matchers":[{"string":"血肉奉獻增加 #% 效果"},{"string":"血肉奉獻減少 #% 效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3456379680"]}}} +{"ref":"Flicker Strike has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"閃現打擊增加 #% 冷卻時間恢復速度"},{"string":"閃現打擊減少 #% 冷卻時間恢復速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1398394628"]}}} +{"ref":"Focus has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"專注增加 #% 冷卻時間恢復速度"},{"string":"專注減少 #% 冷卻時間恢復速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3610263531"],"fractured":["fractured.stat_3610263531"],"crafted":["crafted.stat_3610263531"]}}} +{"ref":"For each nearby corpse, #% increased Movement Speed","better":1,"matchers":[{"string":"附近每個屍體,增加 #% 移動速度"}],"trade":{"ids":{"explicit":["explicit.stat_504462346"]}}} +{"ref":"For each nearby corpse, Regenerate # Life per second","dp":true,"better":1,"matchers":[{"string":"附近每個屍體,每秒回復 # 生命"}],"trade":{"ids":{"explicit":["explicit.stat_2500585555"]}}} +{"ref":"For each nearby corpse, Regenerate #% Life per second, up to 3%","dp":true,"better":1,"matchers":[{"string":"附近每個屍體,每秒回復 #% 生命,最多 3%"}],"trade":{"ids":{"explicit":["explicit.stat_3845048660"]}}} +{"ref":"Forbidden Rite fires an additional Projectile","better":1,"matchers":[{"string":"禁忌儀式發射 # 個額外投射物"},{"string":"禁忌儀式發射 1 個額外投射物","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3047407995"]}}} +{"ref":"Found Items have #% chance to drop Corrupted in Area","better":1,"fromAreaMods":true,"matchers":[{"string":"區域中掉落的物品有 #% 機率為已汙染"}],"trade":{"ids":{"explicit":["explicit.stat_728267040"],"fractured":["fractured.stat_728267040"],"enchant":["enchant.stat_728267040"]}}} +{"ref":"Found Magic Items drop Identified","better":1,"matchers":[{"string":"掉落的魔法物品已經被鑑定"}],"trade":{"ids":{"explicit":["explicit.stat_3020069394"]}}} +{"ref":"Freeze Chilled Enemies as though dealing #% more Damage","better":1,"matchers":[{"string":"冰凍被冰緩的敵人,有如造成 #% 更多傷害"},{"string":"冰凍被冰緩的敵人,有如造成 #% 更少傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4272678430"]}}} +{"ref":"Freeze Enemies as though dealing #% more Damage","better":1,"matchers":[{"string":"冰凍的敵人如同造成 #% 更多傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1302208736"]}}} +{"ref":"Freezes you inflict spread to other Enemies within # metre","better":1,"matchers":[{"string":"你造成的冰凍擴散至 # 米內的其它敵人"}],"trade":{"ids":{"explicit":["explicit.stat_3865389316"],"implicit":["implicit.stat_1623640288"]}}} +{"ref":"Frost Bomb has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"寒霜爆增加 #% 冷卻時間恢復速度"},{"string":"寒霜爆減少 #% 冷卻時間恢復速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3524326896"]}}} +{"ref":"Frost Bomb has #% increased Debuff Duration","better":1,"matchers":[{"string":"寒霜爆增加 #% 減益效果持續時間"},{"string":"寒霜爆減少 #% 減益效果持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2109176627"]}}} +{"ref":"Frost Shield has +# Cooldown Use","better":1,"matchers":[{"string":"寒霜護盾 # 冷卻使用次數"}],"trade":{"ids":{"enchant":["enchant.stat_915160899"]}}} +{"ref":"Frost Shield has +# to maximum Life per Stage","better":1,"matchers":[{"string":"寒霜護盾每層 # 最大生命"}],"trade":{"ids":{"enchant":["enchant.stat_2511493969"]}}} +{"ref":"Frost Wall has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"冰牆增加 #% 冷卻時間恢復速度"},{"string":"冰牆減少 #% 冷卻時間恢復速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2479762395"]}}} +{"ref":"Frostbite has no Reservation if Cast as an Aura","better":1,"matchers":[{"string":"若凍傷以光環施放沒有保留"}],"trade":{"ids":{"explicit":["explicit.stat_3062707366"]}}} +{"ref":"Frostblink has #% increased Duration","better":1,"matchers":[{"string":"霜漣之瞬增加 #% 持續時間"},{"string":"霜漣之瞬減少 #% 持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3941271999"]}}} +{"ref":"Frostblink has #% increased maximum travel distance","better":1,"matchers":[{"string":"霜漣之瞬增加 #% 最大移動距離"},{"string":"霜漣之瞬減少 #% 最大移動距離","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3070497632"]}}} +{"ref":"Frostblink has #% reduced Cooldown Recovery Rate","better":-1,"matchers":[{"string":"霜漣之瞬增加 #% 冷卻時間恢復速度"},{"string":"霜漣之瞬減少 #% 冷卻時間恢復速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_815588902"]},"inverted":true}} +{"ref":"Frostbolt has +#% chance to Freeze","better":1,"matchers":[{"string":"寒冰彈冰凍機率 #%"},{"string":"寒冰彈必定冰凍","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2774873427"]}}} +{"ref":"Frozen Legion has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"戰亂.凍結增加 #% 冷卻時間恢復速度"},{"string":"戰亂.凍結減少 #% 冷卻時間恢復速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3809563078"]}}} +{"ref":"Frozen Legion has +# Cooldown Use","better":1,"matchers":[{"string":"戰亂.凍結 # 冷卻使用次數"}],"trade":{"ids":{"enchant":["enchant.stat_2876793597"]}}} +{"ref":"Frozen Sweep deals #% increased Damage","better":1,"matchers":[{"string":"橫掃.凍結增加 #% 傷害"},{"string":"橫掃.凍結減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1048825825"]}}} +{"ref":"Gain # Armour per Grand Spectrum","better":1,"matchers":[{"string":"每 1 個巨光譜增加 # 護甲"}],"trade":{"ids":{"explicit":["explicit.stat_1166487805"]}}} +{"ref":"Gain # Aureus Coins at the start of the Sanctum","better":1,"matchers":[{"string":"聖域開始時,獲得 # 奧瑞厄斯幣"}],"trade":{"ids":{"explicit":["sanctum.stat_2393318075"]}}} +{"ref":"Gain # Aureus Coins when you complete a Room","better":1,"matchers":[{"string":"當你完成房間時,獲得 # 奧瑞厄斯幣"}],"trade":{"ids":{"explicit":["sanctum.stat_4057192895"]}}} +{"ref":"Gain # Charge when you are Hit by an Enemy","better":1,"matchers":[{"string":"當你被敵人擊中時獲得 # 充能"}],"trade":{"ids":{"explicit":["explicit.stat_1582728645"],"fractured":["fractured.stat_1582728645"]}}} +{"ref":"Gain # Endurance Charge every second if you've been Hit Recently","better":1,"matchers":[{"string":"若你近期被擊中,每秒獲得 # 顆耐力球"}],"trade":{"ids":{"explicit":["explicit.stat_2894476716"],"implicit":["implicit.stat_2894476716"]}}} +{"ref":"Gain # Endurance Charge on use","better":1,"matchers":[{"string":"使用時獲得 # 顆耐力球"}],"trade":{"ids":{"explicit":["explicit.stat_3986030307"]}}} +{"ref":"Gain # Energy Shield for each Enemy you Hit which is affected by a Spider's Web","better":1,"matchers":[{"string":"你每次擊中被蛛網纏繞的敵人獲得 # 能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_549215295"]}}} +{"ref":"Gain # Energy Shield on Kill per Level","better":1,"matchers":[{"string":"每等級每次擊殺獲得 # 能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_294153754"]}}} +{"ref":"Gain # Energy Shield per Enemy Hit while affected by Discipline","better":1,"matchers":[{"string":"被紀律影響時,每擊中一個敵人獲得 # 能量護盾"},{"string":"被紀律影響時,每擊中一個敵人失去 # 能量護盾","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3765507527"]}}} +{"ref":"Gain # Energy Shield per Enemy Hit with Attacks","better":1,"matchers":[{"string":"每用攻擊擊中一個敵人,獲得 # 能量護盾"},{"string":"每用攻擊擊中一個敵人,失去 # 能量護盾","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_211381198"],"implicit":["implicit.stat_211381198"],"fractured":["fractured.stat_211381198"]}}} +{"ref":"Gain # Energy Shield per Enemy Killed","better":1,"matchers":[{"string":"每個被擊殺的敵人,失去 # 能量護盾"},{"string":"每個被擊殺的敵人,獲得 # 能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_2528955616"]}}} +{"ref":"Gain # Energy Shield when you Block","better":1,"matchers":[{"string":"當你格擋時獲得 # 能量護盾"},{"string":"當你格擋時失去 # 能量護盾","negate":true}],"trade":{"ids":{"scourge":["scourge.stat_450695450"]}}} +{"ref":"Gain # Fragile Regrowth each second","better":1,"matchers":[{"string":"每秒獲得 # 脆弱生長"},{"string":"每秒失去 # 脆弱生長","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3841984913"]}}} +{"ref":"Gain # Frenzy Charge on use","better":1,"matchers":[{"string":"使用時獲得 # 顆狂怒球"}],"trade":{"ids":{"explicit":["explicit.stat_3230795453"]}}} +{"ref":"Gain # Inspiration at the start of each Floor","better":1,"matchers":[{"string":"每層樓開始時獲得 # 啟發"}],"trade":{"ids":{"explicit":["sanctum.stat_2942028778"]}}} +{"ref":"Gain # Inspiration at the start of the Sanctum","better":1,"matchers":[{"string":"聖域開始時,獲得 # 啟發"}],"trade":{"ids":{"explicit":["sanctum.stat_3102760194"]}}} +{"ref":"Gain # Inspiration when you receive an Affliction","better":1,"matchers":[{"string":"當你受到異常狀態時,獲得 # 啟發"}],"trade":{"ids":{"explicit":["sanctum.stat_1518851624"]}}} +{"ref":"Gain # Life for each Ignited Enemy hit with Attacks","better":1,"matchers":[{"string":"每用攻擊擊中一個被點燃的敵人,獲得 # 生命"},{"string":"每用攻擊擊中一個被點燃的敵人,失去 # 生命","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_120895749"],"fractured":["fractured.stat_120895749"]}}} +{"ref":"Gain # Life on Culling Strike","better":1,"matchers":[{"string":"撲殺時獲得 # 生命"}],"trade":{"ids":{"explicit":["explicit.stat_2381677442"]}}} +{"ref":"Gain # Life on Kill per Level","better":1,"matchers":[{"string":"每等級每次擊殺獲得 # 生命"}],"trade":{"ids":{"explicit":["explicit.stat_4228691877"]}}} +{"ref":"Gain # Life per Bleeding Enemy Hit","better":1,"matchers":[{"string":"每個擊中流血的敵人,失去 # 生命"},{"string":"每個擊中流血的敵人,獲得 # 生命"}],"trade":{"ids":{"explicit":["explicit.stat_3148570142"]}}} +{"ref":"Gain # Life per Blinded Enemy Hit with this Weapon","better":1,"matchers":[{"string":"每個使用此武器擊中被致盲的敵人,獲得 # 生命"},{"string":"每個使用此武器擊中被致盲的敵人,失去 # 生命","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1649099067"]}}} +{"ref":"Gain # Life per Cursed Enemy Hit with Attacks","better":1,"matchers":[{"string":"每個使用攻擊擊中被詛咒的敵人,獲得 # 生命"},{"string":"每個使用攻擊擊中被詛咒的敵人,失去 # 生命","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3072303874"]}}} +{"ref":"Gain # Life per Enemy Hit if you have used a Vaal Skill Recently","better":1,"matchers":[{"string":"若你近期有使用瓦爾技能,每擊中一個敵人獲得 # 生命"},{"string":"若你近期有使用瓦爾技能,每擊中一個敵人失去 # 生命","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3285021988"]}}} +{"ref":"Gain # Life per Enemy Hit while affected by Vitality","better":1,"matchers":[{"string":"被活力影響時,每擊中一個敵人獲得 # 生命"},{"string":"被活力影響時,每擊中一個敵人失去 # 生命","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4259701244"]}}} +{"ref":"Gain # Life per Enemy Hit with Attacks","better":1,"matchers":[{"string":"每用攻擊擊中一個敵人,獲得 # 生命"},{"string":"每用攻擊擊中一個敵人,失去 # 生命","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2797971005"],"implicit":["implicit.stat_2797971005"],"fractured":["fractured.stat_2797971005"],"scourge":["scourge.stat_2797971005"],"crafted":["crafted.stat_2797971005"]}}} +{"ref":"Gain # Life per Enemy Hit with Melee Weapons","better":1,"matchers":[{"string":"每用近戰武器擊中一個敵人,獲得 # 生命"}],"trade":{"ids":{"explicit":["explicit.stat_3497810785"]}}} +{"ref":"Gain # Life per Enemy Hit with Spells","better":1,"matchers":[{"string":"每用法術擊中一個敵人,獲得 # 生命"},{"string":"每用法術擊中一個敵人,失去 # 生命","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2018035324"],"fractured":["fractured.stat_2018035324"]}}} +{"ref":"Gain # Life per Enemy Killed","better":1,"matchers":[{"string":"每個被擊殺的敵人,獲得 # 生命"},{"string":"每個被擊殺的敵人,失去 # 生命","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3695891184"],"implicit":["implicit.stat_3695891184"],"fractured":["fractured.stat_3695891184"]}}} +{"ref":"Gain # Life per Enemy Killed with Melee Weapons","better":1,"matchers":[{"string":"每用近戰武器殺死一個敵人,獲得 # 生命"}],"trade":{"ids":{"explicit":["explicit.stat_2507321875"]}}} +{"ref":"Gain # Life per Ignited Enemy Killed","better":1,"matchers":[{"string":"每個被擊殺的點被燃敵人,獲得 # 生命"},{"string":"每個被擊殺的點被燃敵人,失去 # 生命","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_893903361"]}}} +{"ref":"Gain # Life when you lose an Endurance Charge","better":1,"matchers":[{"string":"當你失去 1 顆耐力球時回復 # 生命"}],"trade":{"ids":{"explicit":["explicit.stat_3915702459"]}}} +{"ref":"Gain # Life when you Stun an Enemy","better":1,"matchers":[{"string":"暈眩敵人時獲得 # 生命"}],"trade":{"ids":{"explicit":["explicit.stat_2968301430"]}}} +{"ref":"Gain # Mana on Culling Strike","better":1,"matchers":[{"string":"撲殺時獲得 # 魔力"}],"trade":{"ids":{"explicit":["explicit.stat_2845511711"]}}} +{"ref":"Gain # Mana on Kill per Level","better":1,"matchers":[{"string":"每等級每次擊殺獲得 # 魔力"}],"trade":{"ids":{"explicit":["explicit.stat_1064067689"]}}} +{"ref":"Gain # Mana per Cursed Enemy Hit with Attacks","better":1,"matchers":[{"string":"每個使用攻擊擊中被詛咒的敵人,獲得 # 魔力"},{"string":"每個使用攻擊擊中被詛咒的敵人,失去 # 魔力","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2087996552"]}}} +{"ref":"Gain # Mana per Enemy Hit with Attacks","better":1,"matchers":[{"string":"每用攻擊擊中一個敵人,獲得 # 魔力"},{"string":"每用攻擊擊中一個敵人,失去 # 魔力","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_820939409"],"implicit":["implicit.stat_820939409"],"fractured":["fractured.stat_820939409"],"scourge":["scourge.stat_820939409"]}}} +{"ref":"Gain # Mana per Enemy Hit with Melee Weapons","better":1,"matchers":[{"string":"每用近戰武器擊中一個敵人,獲得 # 魔力"}],"trade":{"ids":{"explicit":["explicit.stat_766380077"]}}} +{"ref":"Gain # Mana per Enemy Hit with Spells","better":1,"matchers":[{"string":"每用法術擊中一個敵人,獲得 # 魔力"},{"string":"每用法術擊中一個敵人,失去 # 魔力","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2474196346"],"fractured":["fractured.stat_2474196346"]}}} +{"ref":"Gain # Mana per Enemy Killed","better":1,"matchers":[{"string":"每個被擊殺的敵人,獲得 # 魔力"},{"string":"每個被擊殺的敵人,失去 # 魔力","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1368271171"],"implicit":["implicit.stat_1368271171"],"fractured":["fractured.stat_1368271171"]}}} +{"ref":"Gain # Mana per Enemy Killed with Melee Weapons","better":1,"matchers":[{"string":"每用近戰武器殺死一個敵人,獲得 # 魔力"},{"string":"每用近戰武器殺死一個敵人,失去 # 魔力","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2230910022"]}}} +{"ref":"Gain # Mana per Grand Spectrum","better":1,"matchers":[{"string":"每 1 個巨光譜增加 # 魔力"}],"trade":{"ids":{"explicit":["explicit.stat_2592799343"]}}} +{"ref":"Gain # Mana per Taunted Enemy Hit","better":1,"matchers":[{"string":"每個擊中被嘲諷的敵人,獲得 # 魔力"},{"string":"每個擊中被嘲諷的敵人,失去 # 魔力","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1834588299"]}}} +{"ref":"Gain # Maximum Resolve when you kill a Boss","better":1,"matchers":[{"string":"當你擊殺頭目時,獲得 # 最大決心"}],"trade":{"ids":{"explicit":["sanctum.stat_3817232752"]}}} +{"ref":"Gain # Maximum Resolve when you use a Fountain","better":1,"matchers":[{"string":"當你使用噴泉時,獲得 # 最大決心"}],"trade":{"ids":{"explicit":["sanctum.stat_3722564733"]}}} +{"ref":"Gain # Power Charge on use","better":1,"matchers":[{"string":"使用時獲得 # 顆暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_2697049014"]}}} +{"ref":"Gain # Power Charges when you Warcry","better":1,"matchers":[{"string":"當你使用戰吼時,獲得 # 顆暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_4118945608"]}}} +{"ref":"Gain # Rage after Spending a total of 200 Mana","better":1,"matchers":[{"string":"消耗總 200 魔力後獲得 # 層盛怒"}],"trade":{"ids":{"explicit":["explicit.stat_3199910734"]}}} +{"ref":"Gain # Rage on Attack Hit","better":1,"matchers":[{"string":"攻擊擊中時獲得 # 層盛怒"}],"trade":{"ids":{"implicit":["implicit.stat_2676601655"]}}} +{"ref":"Gain # Rage on Melee Hit","better":1,"matchers":[{"string":"近戰擊中時獲得 # 層盛怒"}],"trade":{"ids":{"explicit":["explicit.stat_2709367754"],"implicit":["implicit.stat_2709367754"]}}} +{"ref":"Gain # Rage on Melee Weapon Hit","better":1,"matchers":[{"string":"近戰武器擊中時獲得 # 層盛怒"}],"trade":{"ids":{"implicit":["implicit.stat_2012294704"]}}} +{"ref":"Gain # Resolve when you kill a Boss","better":1,"matchers":[{"string":"當你擊殺頭目時,獲得 # 決心"}],"trade":{"ids":{"explicit":["sanctum.stat_889527415"]}}} +{"ref":"Gain # Resolve when you use a Fountain","better":1,"matchers":[{"string":"當你使用噴泉時,獲得 # 決心"}],"trade":{"ids":{"explicit":["sanctum.stat_2607697594"]}}} +{"ref":"Gain #% increased Area of Effect for 2 seconds after Spending a total of 800 Mana","better":1,"matchers":[{"string":"消耗總計 800 魔力後,增加 #% 範圍效果 2 秒"}],"trade":{"ids":{"explicit":["explicit.stat_3591816140"]}}} +{"ref":"Gain #% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy","better":1,"matchers":[{"string":"當你擊殺稀有或傳奇敵人時,增加 #% 攻擊速度,持續 20 秒"}],"trade":{"ids":{"explicit":["explicit.stat_3243270997"]}}} +{"ref":"Gain #% of Cold Damage as Extra Chaos Damage","better":1,"matchers":[{"string":"附加 #% 冰冷傷害的混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2915373966"],"implicit":["implicit.stat_2915373966"],"fractured":["fractured.stat_2915373966"],"crafted":["crafted.stat_2915373966"]}}} +{"ref":"Gain #% of Cold Damage as Extra Chaos Damage per Frenzy Charge","better":1,"matchers":[{"string":"每顆狂怒球獲得 #% 冰冷傷害的額外混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3916799917"]}}} +{"ref":"Gain #% of Cold Damage as Extra Fire Damage against Frozen Enemies","better":1,"matchers":[{"string":"對被冰凍的敵人獲得 #% 冰冷傷害的額外火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1383929411"]}}} +{"ref":"Gain #% of Cold Damage as Extra Fire Damage per 1% Chill Effect on Enemy","better":1,"matchers":[{"string":"根據敵人身上每 1% 冰緩效果,獲得 #% 冰冷傷害的額外火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3086896309"]}}} +{"ref":"Gain #% of Elemental Damage as Extra Chaos Damage","better":1,"matchers":[{"string":"獲得等同 #% 元素傷害的額外混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3495544060"],"fractured":["fractured.stat_3495544060"]}}} +{"ref":"Gain #% of Elemental Damage as Extra Chaos Damage during effect","better":1,"matchers":[{"string":"藥劑效果期間獲得等同 #% 元素傷害視為混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3562241510"]}}} +{"ref":"Gain #% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped","better":1,"matchers":[{"string":"每件裝備的的塑者之物獲得 #% 元素傷害的額外混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_33348259"]}}} +{"ref":"Gain #% of Fire Damage as Extra Chaos Damage","better":1,"matchers":[{"string":"附加 #% 火焰傷害的混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1599775597"],"implicit":["implicit.stat_1599775597"],"fractured":["fractured.stat_1599775597"],"crafted":["crafted.stat_1599775597"]}}} +{"ref":"Gain #% of Fire Damage as Extra Chaos Damage per Endurance Charge","better":1,"matchers":[{"string":"每顆耐力球獲得 #% 火焰傷害的額外混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1109745356"]}}} +{"ref":"Gain #% of Lightning Damage as Extra Chaos Damage","better":1,"matchers":[{"string":"附加 #% 閃電傷害的混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2402136583"],"implicit":["implicit.stat_2402136583"],"fractured":["fractured.stat_2402136583"],"crafted":["crafted.stat_2402136583"]}}} +{"ref":"Gain #% of Lightning Damage as Extra Chaos Damage per Power Charge","better":1,"matchers":[{"string":"每顆暴擊球獲得 #% 閃電傷害的額外混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3115319277"]}}} +{"ref":"Gain #% of Lightning Damage as Extra Cold Damage per 2% Shock Effect on Enemy","better":1,"matchers":[{"string":"敵人身上每 2% 感電效果,獲得 #% 閃電傷害的額外冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_13172430"]}}} +{"ref":"Gain #% of Maximum Life as Extra Maximum Energy Shield","better":1,"matchers":[{"string":"獲得等同 #% 最大生命值的額外能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_67280387"],"implicit":["implicit.stat_67280387"],"fractured":["fractured.stat_67280387"],"crafted":["crafted.stat_67280387"]}}} +{"ref":"Gain #% of Maximum Mana as Extra Maximum Energy Shield","better":1,"matchers":[{"string":"獲得等同 #% 魔力的額外能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_2663376056"],"scourge":["scourge.stat_2663376056"]}}} +{"ref":"Gain #% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity","better":1,"matchers":[{"string":"被清晰的影響時,獲得等同 #% 最大魔力的額外最大能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_2831391506"]}}} +{"ref":"Gain #% of Missing Unreserved Life before being Hit by an Enemy","better":1,"matchers":[{"string":"被敵人擊中前,獲得 #% 遺失未保留的生命"}],"trade":{"ids":{"explicit":["explicit.stat_1383676476"]}}} +{"ref":"Gain #% of Non-Chaos Damage as extra Chaos Damage","better":1,"matchers":[{"string":"獲得等同 #% 非混沌傷害的額外混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2063695047"],"fractured":["fractured.stat_2063695047"],"crafted":["crafted.stat_2063695047"]}}} +{"ref":"Gain #% of Non-Chaos Damage as extra Chaos Damage per Siphoning Charge","better":1,"matchers":[{"string":"每顆虹吸能量球獲得 #% 非混沌傷害的額外混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3296019532"]}}} +{"ref":"Gain #% of Physical Attack Damage as Extra Fire Damage","better":1,"matchers":[{"string":"獲得 #% 物理攻擊傷害的額外火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_273476097"]}}} +{"ref":"Gain #% of Physical Attack Damage as Extra Lightning Damage","better":1,"matchers":[{"string":"獲得 #% 物理攻擊傷害的額外閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1096897481"]}}} +{"ref":"Gain #% of Physical Damage as a Random Element if you've cast Elemental Weakness in the past 10 seconds","better":1,"matchers":[{"string":"若你過去 10 秒有施放過元素要害,#% 物理傷害視為 1 個隨機元素"}],"trade":{"ids":{"explicit":["explicit.stat_4281949537"]}}} +{"ref":"Gain #% of Physical Damage as Extra Chaos Damage","better":1,"matchers":[{"string":"獲得 #% 物理傷害的混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3319896421"],"implicit":["implicit.stat_3319896421"],"fractured":["fractured.stat_3319896421"],"crafted":["crafted.stat_3319896421"]}}} +{"ref":"Gain #% of Physical Damage as Extra Chaos Damage during effect","better":1,"matchers":[{"string":"藥劑效果期間獲得等同 #% 物理傷害視為混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2818167778"]}}} +{"ref":"Gain #% of Physical Damage as Extra Chaos Damage per Elder Item Equipped","better":1,"matchers":[{"string":"每件裝備的尊師之物,獲得 #% 物理傷害的額外混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1423002070"]}}} +{"ref":"Gain #% of Physical Damage as Extra Chaos Damage while at maximum Power Charges","better":1,"matchers":[{"string":"當獲得最大暴擊球時,獲得 #% 物理攻擊的額外混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3492297134"]}}} +{"ref":"Gain #% of Physical Damage as Extra Cold Damage","better":1,"matchers":[{"string":"獲得 #% 物理傷害的冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_979246511"],"implicit":["implicit.stat_979246511"],"fractured":["fractured.stat_979246511"]}}} +{"ref":"Gain #% of Physical Damage as Extra Cold Damage during effect","better":1,"matchers":[{"string":"效果持續時間,獲得等同 #% 物理傷害的冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2661163721"]}}} +{"ref":"Gain #% of Physical Damage as Extra Damage of a random Element","better":1,"matchers":[{"string":"獲得等同 #% 物理傷害的一個隨機元素傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3753703249"],"implicit":["implicit.stat_3753703249"]}}} +{"ref":"Gain #% of Physical Damage as Extra Damage of a random Element while you are Ignited","better":1,"matchers":[{"string":"你被點燃時,獲得 #% 物理傷害的 1 個額外隨機元素傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3595519743"]}}} +{"ref":"Gain #% of Physical Damage as Extra Damage of each Element per Spirit Charge","better":1,"matchers":[{"string":"每顆靈體能量球獲得 #% 物理傷害的每種元素額外傷害"}],"trade":{"ids":{"explicit":["explicit.stat_4288824781"]}}} +{"ref":"Gain #% of Physical Damage as Extra Fire Damage","better":1,"matchers":[{"string":"獲得 #% 物理傷害的火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_369494213"],"implicit":["implicit.stat_369494213"],"fractured":["fractured.stat_369494213"]}}} +{"ref":"Gain #% of Physical Damage as Extra Fire Damage if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"若你近期有造成暴擊,獲得 #% 物理傷害的額外火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2810434465"],"fractured":["fractured.stat_2810434465"]}}} +{"ref":"Gain #% of Physical Damage as Extra Fire Damage while affected by Anger","better":1,"matchers":[{"string":"被憤怒影響時,獲得 #% 物理傷害的額外火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_4245204226"]}}} +{"ref":"Gain #% of Physical Damage as Extra Lightning Damage","better":1,"matchers":[{"string":"獲得 #% 物理傷害的閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_219391121"],"implicit":["implicit.stat_219391121"],"fractured":["fractured.stat_219391121"]}}} +{"ref":"Gain #% of Physical Damage as Extra Lightning Damage while affected by Wrath","better":1,"matchers":[{"string":"被雷霆影響時,獲得 #% 物理傷害的額外閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2255914633"]}}} +{"ref":"Gain #% of Sword Physical Damage as Extra Fire Damage","better":1,"matchers":[{"string":"獲得等同 #% 劍物理傷害的額外火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_754005431"]}}} +{"ref":"Gain #% of Weapon Physical Damage as Extra Damage of a random Element","better":1,"matchers":[{"string":"獲得 #% 武器物理傷害的額外一種元素傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1038949719"]}}} +{"ref":"Gain #% of Weapon Physical Damage as Extra Damage of each Element","better":1,"matchers":[{"string":"獲得 #% 武器物理傷害的額外每種元素傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3913265126"]}}} +{"ref":"Gain +# Life when you Taunt an Enemy","better":1,"matchers":[{"string":"嘲諷每個敵人回復 # 生命"}],"trade":{"ids":{"explicit":["explicit.stat_3726536628"]}}} +{"ref":"Gain +#% to Critical Strike Chance for 2 seconds after Spending a total of 800 Mana","dp":true,"better":1,"matchers":[{"string":"當你總共消耗 800 點魔力時,獲得 2 秒 #% 暴擊率"}],"trade":{"ids":{"explicit":["explicit.stat_2864779809"]}}} +{"ref":"Gain 1 Endurance Charge per Second during Effect","better":1,"matchers":[{"string":"效果持續時間,每秒獲得 1 顆耐力球"}],"trade":{"ids":{"explicit":["explicit.stat_3916499001"]}}} +{"ref":"Gain 1 Rage on Critical Strike with Attacks","better":1,"matchers":[{"string":"攻擊暴擊時獲得 1 層盛怒"}],"trade":{"ids":{"explicit":["explicit.stat_1043982313"]}}} +{"ref":"Gain a Flask Charge when you deal a Critical Strike while affected by Precision","better":1,"matchers":[{"string":"被精準影響時,你造成暴擊獲得 1 藥劑充能"}],"trade":{"ids":{"explicit":["explicit.stat_3772841281"]}}} +{"ref":"Gain a Frenzy Charge after Spending a total of 200 Mana","better":1,"matchers":[{"string":"消耗總 200 魔力後獲得 # 顆狂怒球"},{"string":"消耗總 200 魔力後獲得 1 顆狂怒球","value":1}],"trade":{"ids":{"implicit":["implicit.stat_3868549606"]}}} +{"ref":"Gain a Frenzy Charge each second","better":1,"matchers":[{"string":"每秒失去 1 顆狂怒球","value":-1},{"string":"每秒獲得 # 顆狂怒球"},{"string":"每秒獲得 1 顆狂怒球","value":1},{"string":"每秒失去 # 顆狂怒球","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_651232125"]}}} +{"ref":"Gain a Frenzy Charge every # seconds","better":1,"matchers":[{"string":"每 # 秒獲得 1 顆狂怒球"}],"trade":{"ids":{"implicit":["implicit.stat_3906868545"]}}} +{"ref":"Gain a Frenzy Charge if an Attack Ignites an Enemy","better":1,"matchers":[{"string":"當攻擊使怪物點燃時,獲得 1 個狂怒球"}],"trade":{"ids":{"explicit":["explicit.stat_3598983877"]}}} +{"ref":"Gain a Frenzy Charge on every 50th Rampage Kill","better":1,"matchers":[{"string":"每 50 層暴怒擊殺獲得 1 顆狂怒球"}],"trade":{"ids":{"explicit":["explicit.stat_637690626"]}}} +{"ref":"Gain a Frenzy Charge on Hit while Bleeding","better":1,"matchers":[{"string":"流血狀態下擊中敵人獲得 1 顆狂怒球"}],"trade":{"ids":{"explicit":["explicit.stat_2977774856"]}}} +{"ref":"Gain a Frenzy Charge on reaching Maximum Power Charges","better":1,"matchers":[{"string":"達到最大暴擊球數量時獲得 1 顆狂怒球"}],"trade":{"ids":{"explicit":["explicit.stat_2732344760"]}}} +{"ref":"Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary","better":1,"matchers":[{"string":"當你站立時,每秒獲得 1 顆狂怒球、耐力球或暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_1438403666"]}}} +{"ref":"Gain a Power Charge after Spending a total of 200 Mana","better":1,"matchers":[{"string":"總消耗 200 點魔力時獲得 1 顆暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_3269060224"],"fractured":["fractured.stat_3269060224"]}}} +{"ref":"Gain a Power Charge each second","better":1,"matchers":[{"string":"每秒失去 1 顆暴擊球","value":-1},{"string":"每秒獲得 # 顆暴擊球"},{"string":"每秒獲得 1 顆暴擊球","value":1},{"string":"每秒失去 # 顆暴擊球","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_521054609"]}}} +{"ref":"Gain a Power Charge every # seconds","better":1,"matchers":[{"string":"每 # 秒獲得 1 顆暴擊球"}],"trade":{"ids":{"implicit":["implicit.stat_3533655459"]}}} +{"ref":"Gain a Power Charge every Second if you haven't lost Power Charges Recently","better":1,"matchers":[{"string":"若你近期沒有失去暴擊球,獲得 1 顆暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_1099200124"]}}} +{"ref":"Gain a Power Charge for each Enemy you hit with a Critical Strike","better":1,"matchers":[{"string":"擊中並造成暴擊時,每個敵人給予你 1 顆暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_1556625719"]}}} +{"ref":"Gain a Power Charge on Non-Critical Strike","better":1,"matchers":[{"string":"非暴擊時獲得 1 顆暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_1592029809"]}}} +{"ref":"Gain a Power Charge when you Hit a Frozen Enemy","better":1,"matchers":[{"string":"當你擊中冰凍的敵人時,有 #% 機率獲得 1 顆暴擊球"},{"string":"當你擊中冰凍的敵人時,獲得 1 顆暴擊球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3973790753"]}}} +{"ref":"Gain a Spirit Charge every second","better":1,"matchers":[{"string":"每 # 秒獲得 1 顆靈體能量球"},{"string":"每秒獲得 1 顆靈體能量球","value":1}],"trade":{"ids":{"explicit":["explicit.stat_328131617"]}}} +{"ref":"Gain a Void Charge every # seconds","better":1,"matchers":[{"string":"每 # 秒獲得 1 顆虛空能量球"},{"string":"每秒獲得 1 顆虛空能量球","value":1}],"trade":{"ids":{"explicit":["explicit.stat_34273389"]}}} +{"ref":"Gain Absorption Charges instead of Power Charges","better":1,"matchers":[{"string":"獲得吸收球而不暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_1379726309"]}}} +{"ref":"Gain Accuracy Rating equal to your Strength","better":1,"matchers":[{"string":"獲得等同你力量點的命中值"}],"trade":{"ids":{"explicit":["explicit.stat_1575519214"],"fractured":["fractured.stat_1575519214"]}}} +{"ref":"Gain Added Chaos Damage equal to #% of Ward","better":1,"matchers":[{"string":"獲得等同 #% 保護的附加混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3535421504"]}}} +{"ref":"Gain additional Elemental Damage Reduction equal to half your Chaos Resistance","better":1,"matchers":[{"string":"獲得等同你混沌抗性一半的額外元素傷害減免"}],"trade":{"ids":{"explicit":["explicit.stat_3990082744"]}}} +{"ref":"Gain Adrenaline for # second on Kill","better":1,"matchers":[{"string":"擊殺時獲得腎上腺素 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_4145689649"]}}} +{"ref":"Gain Adrenaline for # second when Ward Breaks","better":1,"matchers":[{"string":"當保護破損時,獲得腎上腺素 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_4231915769"]}}} +{"ref":"Gain Adrenaline for # seconds when you reach Low Life","better":1,"matchers":[{"string":"當你到達貧血時,獲得腎上腺素 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_4205704547"]}}} +{"ref":"Gain Adrenaline when you become Flame-Touched","better":1,"matchers":[{"string":"當你變成烈焰之觸時,獲得腎上腺素"}],"trade":{"ids":{"explicit":["explicit.stat_349619704"]}}} +{"ref":"Gain Affliction Charges instead of Frenzy Charges","better":1,"matchers":[{"string":"獲得苦痛球而不是狂怒球"}],"trade":{"ids":{"explicit":["explicit.stat_1602173343"]}}} +{"ref":"Gain an Endurance Charge each second","better":1,"matchers":[{"string":"每秒失去 1 顆耐力球","value":-1},{"string":"每秒獲得 # 顆耐力球"},{"string":"每秒獲得 1 顆耐力球","value":1},{"string":"每秒失去 # 顆耐力球","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3778599971"]}}} +{"ref":"Gain an Endurance Charge every # seconds","better":1,"matchers":[{"string":"每 # 秒獲得 1 顆耐力球"}],"trade":{"ids":{"implicit":["implicit.stat_2555092341"]}}} +{"ref":"Gain an Endurance Charge every 4 seconds while Stationary","better":1,"matchers":[{"string":"站立時,每 4 秒獲得 # 顆耐力球"},{"string":"站立時,每 4 秒獲得 1 顆耐力球","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2156210979"],"fractured":["fractured.stat_2156210979"]}}} +{"ref":"Gain an Endurance Charge if an Attack Freezes an Enemy","better":1,"matchers":[{"string":"若攻擊冰凍敵人,獲得 1 顆耐力球"}],"trade":{"ids":{"explicit":["explicit.stat_407576170"]}}} +{"ref":"Gain an Endurance Charge when you lose a Power Charge","better":1,"matchers":[{"string":"當你失去 1 顆暴擊球時獲得 1 顆耐力球"}],"trade":{"ids":{"explicit":["explicit.stat_1791875585"]}}} +{"ref":"Gain an Endurance Charge when you take a Critical Strike","better":1,"matchers":[{"string":"受到暴擊時獲得 1 顆耐力球"}],"trade":{"ids":{"explicit":["explicit.stat_2609824731"]}}} +{"ref":"Gain an Endurance Charge, Frenzy Charge, and Power Charge when you use a Vaal Skill","better":1,"matchers":[{"string":"當你使用瓦爾技能時獲得 1 顆耐力球、狂怒球和暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_1258100102"]}}} +{"ref":"Gain an Endurance, Frenzy or Power Charge every 6 seconds","better":1,"matchers":[{"string":"每 6 秒獲得 # 顆耐力、狂怒或暴擊球"},{"string":"每 6 秒獲得 1 顆耐力、狂怒或暴擊球","value":1}],"trade":{"ids":{"implicit":["implicit.stat_4282426229"]}}} +{"ref":"Gain an Endurance, Frenzy or Power charge when you Block","better":1,"matchers":[{"string":"當你格擋時,獲得 1 顆耐力球、狂怒球或暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_2199099676"],"fractured":["fractured.stat_2199099676"]}}} +{"ref":"Gain Arcane Surge after Spending a total of # Mana","better":1,"matchers":[{"string":"消耗總 # 魔力後,獲得秘能波動"}],"trade":{"ids":{"explicit":["explicit.stat_913614572"],"fractured":["fractured.stat_913614572"]}}} +{"ref":"Gain Arcane Surge for 4 seconds when you create Consecrated Ground while affected by Zealotry","better":1,"matchers":[{"string":"被狂熱影響時,你製造奉獻地面會獲得 4 秒秘能波動"}],"trade":{"ids":{"explicit":["explicit.stat_1919069577"]}}} +{"ref":"Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell","better":1,"matchers":[{"string":"當你或你的圖騰使用法術擊中敵人時獲得秘能波動"}],"trade":{"ids":{"explicit":["explicit.stat_4286031492"]}}} +{"ref":"Gain Brutal Charges instead of Endurance Charges","better":1,"matchers":[{"string":"獲得殘暴球而不是耐力球"}],"trade":{"ids":{"explicit":["explicit.stat_2306836071"]}}} +{"ref":"Gain Elusive on reaching Low Life","better":1,"matchers":[{"string":"到達貧血時獲得靈巧"}],"trade":{"ids":{"explicit":["explicit.stat_2868692131"]}}} +{"ref":"Gain Her Embrace for # seconds when you Ignite an Enemy","better":1,"matchers":[{"string":"當你點燃敵人時,獲得 # 秒女神的擁抱"}],"trade":{"ids":{"explicit":["explicit.stat_608963131"]}}} +{"ref":"Gain Immunity to Physical Damage for # second on Rampage","better":1,"matchers":[{"string":"暴怒狀態時免疫物理傷害 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_3100457893"]}}} +{"ref":"Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy","better":1,"matchers":[{"string":"當你擊殺稀有或傳奇敵人時,獲得衰退之像 10 秒"}],"trade":{"ids":{"explicit":["explicit.stat_3442107889"]}}} +{"ref":"Gain Maximum Life instead of Maximum Energy Shield from Equipped Armour Items","better":1,"matchers":[{"string":"來自裝備中的護甲物品獲得最大生命,而不是最大能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_3734229311"]}}} +{"ref":"Gain Onslaught for # second per Frenzy Charge consumed on use","better":1,"matchers":[{"string":"消耗每顆狂怒球獲得 # 秒猛攻效果"}],"trade":{"ids":{"explicit":["explicit.stat_661376813"]}}} +{"ref":"Gain Onslaught for # seconds when you Cast Socketed Golem Skill","better":1,"matchers":[{"string":"施放插槽中魔像技能後獲得 # 秒猛攻"}],"trade":{"ids":{"explicit":["explicit.stat_1693676706"]}}} +{"ref":"Gain Onslaught for # seconds when you Warcry","better":1,"matchers":[{"string":"當你使用戰吼時獲得猛攻 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_3049436415"]}}} +{"ref":"Gain Rampage while at Maximum Endurance Charges","better":1,"matchers":[{"string":"耐力球達到上限時獲得暴怒"}],"trade":{"ids":{"explicit":["explicit.stat_1643796079"]}}} +{"ref":"Gain Sacrificial Zeal when you use a Skill, dealing you #% of the Skill's Mana Cost as Physical Damage per Second","better":1,"matchers":[{"string":"當你使用技能時獲得犧牲狂熱,每秒造成 #% 你技能魔力消耗的物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2287328323"]}}} +{"ref":"Gain Shaper's Presence for 10 seconds when you kill a Rare or Unique Enemy","better":1,"matchers":[{"string":"當你擊殺稀有或傳奇敵人時,獲得 10 秒塑者光環"}],"trade":{"ids":{"explicit":["explicit.stat_1091613629"]}}} +{"ref":"Gain Soul Eater during any Flask Effect","better":1,"matchers":[{"string":"在任何藥劑效果持續時間內獲得噬魂者"}],"trade":{"ids":{"explicit":["explicit.stat_3968454273"]}}} +{"ref":"Gain Soul Eater for # seconds when you use a Vaal Skill","better":1,"matchers":[{"string":"當你使用瓦爾技能時獲得噬魂者 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_161058250"]}}} +{"ref":"Gain Unholy Might for # second on Rampage","better":1,"matchers":[{"string":"暴怒狀態時獲得不潔之力 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_757315075"]}}} +{"ref":"Gain Unholy Might for 4 seconds on Critical Strike","better":1,"matchers":[{"string":"暴擊時獲得不潔之力 4 秒"}],"trade":{"ids":{"explicit":["explicit.stat_2959020308"]}}} +{"ref":"Gain up to maximum Endurance Charges when you take a Critical Strike","better":1,"matchers":[{"string":"當你承受暴擊時,有 #% 機率最多獲得 1 顆耐力球"},{"string":"當你承受暴擊時,最多獲得 1 顆耐力球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4080206249"]}}} +{"ref":"Gain up to maximum Fragile Regrowth when Hit","better":1,"matchers":[{"string":"被擊中時獲得最大脆弱生長"}],"trade":{"ids":{"explicit":["explicit.stat_2796308895"]}}} +{"ref":"Gain up to maximum Power Charges when you use a Vaal Skill","better":1,"matchers":[{"string":"當你使用瓦爾技能時,獲得最多上限的暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_3558528738"]}}} +{"ref":"Gain up to your maximum number of Frenzy and Endurance Charges when you gain Cat's Agility","better":1,"matchers":[{"string":"當你獲得傲貓姣捷時,獲得你最大數量的狂怒和耐力球"}],"trade":{"ids":{"explicit":["explicit.stat_523966073"]}}} +{"ref":"Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth","better":1,"matchers":[{"string":"當你獲得傲貓隱身時獲得你最大上限數量的狂怒球和暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_2446580062"]}}} +{"ref":"Gain Vaal Souls equal to Charges Consumed when used","better":1,"matchers":[{"string":"使用時獲得等同消耗充能的瓦爾靈魂"}],"trade":{"ids":{"explicit":["explicit.stat_1655460656"]}}} +{"ref":"Gain Ward instead of #% of Armour and Evasion Rating from Equipped Body Armour","better":1,"matchers":[{"string":"獲得保護,而非 #% 胸甲的護甲和閃避值"}],"trade":{"ids":{"explicit":["explicit.stat_767698281"]}}} +{"ref":"Gains no Charges during Effect","better":1,"matchers":[{"string":"效果持續時間,不會獲得充能"}],"trade":{"ids":{"enchant":["enchant.stat_4123533923"]}}} +{"ref":"Gains no Charges during Effect of any Overflowing Chalice Flask","better":1,"matchers":[{"string":"在任何滿溢聖杯藥劑效果期間不能獲得藥劑充能"}],"trade":{"ids":{"explicit":["explicit.stat_3741956733"]}}} +{"ref":"Gains no Charges during Effect of any Soul Ripper Flask","better":1,"matchers":[{"string":"在任何碎魂者藥劑效果期間不會獲得充能"}],"trade":{"ids":{"explicit":["explicit.stat_2748763342"]}}} +{"ref":"Galvanic Arrow has #% increased Projectile Speed","better":1,"matchers":[{"string":"電流箭矢增加 #% 投射物速度"},{"string":"電流箭矢減少 #% 投射物速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1698558866"]}}} +{"ref":"Galvanic Field Chains an additional time","better":1,"matchers":[{"string":"電光領域連鎖額外 # 次"},{"string":"電光領域連鎖額外 1 次","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3893203185"]}}} +{"ref":"Galvanic Field deals #% increased Damage","better":1,"matchers":[{"string":"電光領域增加 #% 傷害"},{"string":"電光領域減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3821213705"]}}} +{"ref":"Galvanic Field has #% increased Cast Speed","better":1,"matchers":[{"string":"電光領域增加 #% 施放速度"}],"trade":{"ids":{"enchant":["enchant.stat_2364563825"]}}} +{"ref":"Gems can be Socketed in this Item ignoring Socket Colour","better":1,"matchers":[{"string":"寶石鑲嵌於此物品時可忽略插槽顏色"}],"trade":{"ids":{"explicit":["explicit.stat_899329924"],"fractured":["fractured.stat_899329924"]}}} +{"ref":"Gems Socketed in Blue Sockets gain #% increased Experience","better":1,"matchers":[{"string":"寶石鑲嵌於藍色插槽時增加 #% 經驗獲得"}],"trade":{"ids":{"explicit":["explicit.stat_2236460050"]}}} +{"ref":"Gems Socketed in Green Sockets have +#% to Quality","better":1,"matchers":[{"string":"寶石鑲嵌於綠色插槽時 #% 品質"}],"trade":{"ids":{"explicit":["explicit.stat_3799930101"]}}} +{"ref":"Gems Socketed in Red Sockets have +# to Level","better":1,"matchers":[{"string":"寶石鑲嵌於紅色插槽 # 等級"}],"trade":{"ids":{"explicit":["explicit.stat_2886998024"]}}} +{"ref":"General's Cry has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"將軍戰吼增加 #% 冷卻時間恢復速度"}],"trade":{"ids":{"implicit":["implicit.stat_3637727672"],"enchant":["enchant.stat_3637727672"]}}} +{"ref":"General's Cry has +# to maximum number of Mirage Warriors","better":1,"matchers":[{"string":"將軍戰吼 # 幻影戰士最大數量"}],"trade":{"ids":{"enchant":["enchant.stat_2889995769"]}}} +{"ref":"Ghost Dance","better":1,"matchers":[{"string":"鬼舞"}],"trade":{"ids":{"explicit":["explicit.stat_3590128077"],"fractured":["fractured.stat_3590128077"],"scourge":["scourge.stat_3590128077"]}}} +{"ref":"Ghost Reaver","better":1,"matchers":[{"string":"靈能護體"}],"trade":{"ids":{"explicit":["explicit.stat_4272248216"],"fractured":["fractured.stat_4272248216"],"scourge":["scourge.stat_4272248216"]}}} +{"ref":"Glacial Cascade gains #% of Physical Damage as Extra Cold Damage","better":1,"matchers":[{"string":"冰川之刺獲得 #% 物理傷害的額外冰冷傷害"}],"trade":{"ids":{"enchant":["enchant.stat_3492427828"]}}} +{"ref":"Glacial Hammer has +#% chance to Freeze","better":1,"matchers":[{"string":"冰霜之錘有 #% 機率冰凍"},{"string":"冰霜之錘必定冰凍","value":100}],"trade":{"ids":{"enchant":["enchant.stat_288248772"]}}} +{"ref":"Glancing Blows","better":1,"matchers":[{"string":"側身之擊"}],"trade":{"ids":{"explicit":["explicit.stat_4266776872"],"scourge":["scourge.stat_4266776872"]}}} +{"ref":"Glows while in an Area containing a Unique Fish","better":1,"matchers":[{"string":"在有傳奇魚出沒的區域會發出光芒"}],"trade":{"ids":{"explicit":["explicit.stat_931560398"]}}} +{"ref":"Golem Skills have #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"魔像技能增加 #% 冷卻恢復速度"},{"string":"魔像技能減少 #% 冷卻恢復速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_729180395"]}}} +{"ref":"Golems Deal #% less Damage","better":-1,"matchers":[{"string":"魔像造成 #% 更多傷害"},{"string":"魔像造成 #% 更少傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2861397339"]},"inverted":true}} +{"ref":"Golems have # to # Added Attack Physical Damage","better":1,"matchers":[{"string":"魔像附加 # 至 # 攻擊物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1417394145"]}}} +{"ref":"Golems have #% increased Attack and Cast Speed","better":1,"matchers":[{"string":"魔像增加 #% 攻擊和施放速度"},{"string":"魔像減少 #% 攻擊和施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_56225773"]}}} +{"ref":"Golems have #% increased Maximum Life","better":1,"matchers":[{"string":"增加魔像 #% 最大生命"},{"string":"減少魔像 #% 最大生命","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1750735210"]}}} +{"ref":"Golems have #% increased Movement Speed","better":1,"matchers":[{"string":"魔像增加 #%移動速度"},{"string":"魔像減少 #%移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_186383409"]}}} +{"ref":"Golems have #% less Life","better":-1,"matchers":[{"string":"魔像有 #% 更多生命"},{"string":"魔像有 #% 更少生命","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3730242558"]},"inverted":true}} +{"ref":"Golems have +# to Armour","better":1,"matchers":[{"string":"魔像有 # 護甲值"}],"trade":{"ids":{"explicit":["explicit.stat_1020786773"]}}} +{"ref":"Golems Summoned in the past 8 seconds deal #% increased Damage","better":1,"matchers":[{"string":"魔像在召喚後的 8 秒內傷害增加 #%"},{"string":"魔像在召喚後的 8 秒內傷害減少 #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2869193493"]}}} +{"ref":"Gore Footprints","better":1,"matchers":[{"string":"瘀血爪印"}],"trade":{"ids":{"explicit":["explicit.stat_2319448214"]}}} +{"ref":"Grace has #% increased Aura Effect","better":1,"matchers":[{"string":"優雅增加 #% 光環效果"},{"string":"優雅減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_397427740"]}}} +{"ref":"Grace has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"優雅增加 #% 魔力保留效用"},{"string":"優雅減少 #% 魔力保留效用","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1803598623","explicit.stat_900639351"],"implicit":["implicit.stat_1803598623","implicit.stat_900639351"],"enchant":["enchant.stat_1803598623","enchant.stat_900639351"]}}} +{"ref":"Grace has no Reservation","better":1,"matchers":[{"string":"優雅無保留"}],"trade":{"ids":{"explicit":["explicit.stat_2930404958"]}}} +{"ref":"Grant a Frenzy Charge to nearby Allies on Kill","better":1,"matchers":[{"string":"擊殺時有 #% 機率給予附近友方 1 顆狂怒球"},{"string":"擊殺時給予附近友方 1 顆狂怒球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1243641369"]}}} +{"ref":"Grant an Endurance Charge to nearby Allies on Hit","better":1,"matchers":[{"string":"擊中時有 #% 機率給予附近友方 1 顆耐力球"},{"string":"擊中時給予附近友方 1 顆耐力球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3174788165"]}}} +{"ref":"Grants # Life and Mana per Enemy Hit","better":1,"matchers":[{"string":"每擊中一個敵人,獲得 # 生命和魔力"},{"string":"每擊中一個敵人,移除你 # 生命和魔力","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1420170973"]}}} +{"ref":"Grants # Life per Enemy Hit","better":1,"matchers":[{"string":"每擊中一個敵人,獲得 # 生命"},{"string":"每擊中一個敵人,移除你 # 生命","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_821021828"],"implicit":["implicit.stat_821021828"],"fractured":["fractured.stat_821021828"]}}} +{"ref":"Grants # Mana per Enemy Hit","better":1,"matchers":[{"string":"每擊中一個敵人,獲得 # 魔力"},{"string":"每擊中一個敵人,移除你 # 魔力","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_640052854"],"implicit":["implicit.stat_640052854"]}}} +{"ref":"Grants #% increased Accuracy per 2% Quality","better":1,"matchers":[{"string":"每 2% 品質增加 #% 命中"}],"trade":{"ids":{"enchant":["enchant.stat_2421363283"]}}} +{"ref":"Grants #% increased Area of Effect per 4% Quality","better":1,"matchers":[{"string":"每 4% 品質增加 #% 範圍效果"}],"trade":{"ids":{"enchant":["enchant.stat_334333797"]}}} +{"ref":"Grants #% increased Elemental Damage per 2% Quality","better":1,"matchers":[{"string":"每 2% 品質增加 #% 元素傷害"}],"trade":{"ids":{"enchant":["enchant.stat_1482025771"]}}} +{"ref":"Grants #% of Life Recovery to Minions","better":1,"matchers":[{"string":"得到 #% 召喚物生命恢復"}],"trade":{"ids":{"explicit":["explicit.stat_2416869319"],"fractured":["fractured.stat_2416869319"]}}} +{"ref":"Grants +# to Dexterity per 2% Quality","better":1,"matchers":[{"string":"每 2% 品質 # 敏捷"}],"trade":{"ids":{"enchant":["enchant.stat_452753731"]}}} +{"ref":"Grants +# to Intelligence per 2% Quality","better":1,"matchers":[{"string":"每 2% 品質 # 智慧"}],"trade":{"ids":{"enchant":["enchant.stat_2748574832"]}}} +{"ref":"Grants +# to Maximum Life per 2% Quality","better":1,"matchers":[{"string":"每 2% 品質 # 最大生命"}],"trade":{"ids":{"enchant":["enchant.stat_2711867632"]}}} +{"ref":"Grants +# to Maximum Mana per 2% Quality","better":1,"matchers":[{"string":"每 2% 品質 # 最大魔力"}],"trade":{"ids":{"enchant":["enchant.stat_3764009282"]}}} +{"ref":"Grants +# to Strength per 2% Quality","better":1,"matchers":[{"string":"每 2% 品質 # 力量"}],"trade":{"ids":{"enchant":["enchant.stat_1519019245"]}}} +{"ref":"Grants +#% to Cold Resistance per 2% Quality","better":1,"matchers":[{"string":"每 2% 品質 #% 冰冷抗性"}],"trade":{"ids":{"enchant":["enchant.stat_1665106429"]}}} +{"ref":"Grants +#% to Fire Resistance per 2% Quality","better":1,"matchers":[{"string":"每 2% 品質 #% 火焰抗性"}],"trade":{"ids":{"enchant":["enchant.stat_2787227226"]}}} +{"ref":"Grants +#% to Lightning Resistance per 2% Quality","better":1,"matchers":[{"string":"每 2% 品質 #% 閃電抗性"}],"trade":{"ids":{"enchant":["enchant.stat_2702369635"]}}} +{"ref":"Grants all bonuses of Unallocated Small Passive Skills in Radius","better":1,"matchers":[{"string":"獲得範圍內所有未配置的小天賦效果"}],"trade":{"ids":{"explicit":["explicit.stat_737702863"]}}} +{"ref":"Grants Armour equal to #% of your Reserved Mana to you and nearby Allies","better":1,"matchers":[{"string":"你和附近友方獲得等同你保留魔力 #% 的護甲"}],"trade":{"ids":{"explicit":["explicit.stat_681709908"]}}} +{"ref":"Grants Call of Steel","better":1,"matchers":[{"string":"獲得鋼之呼喚"}],"trade":{"ids":{"explicit":["explicit.stat_3637628300"]}}} +{"ref":"Grants Immunity to Bleeding for # seconds if used while Bleeding\nGrants Immunity to Corrupted Blood for # seconds if used while affected by Corrupted Blood","better":1,"matchers":[{"string":"若使用時流血,獲得免疫流血 # 秒\n若使用時被腐化之血影響,獲得免疫腐化之血 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_182714578"],"fractured":["fractured.stat_182714578"]}}} +{"ref":"Grants Immunity to Chill for # seconds if used while Chilled\nGrants Immunity to Freeze for # seconds if used while Frozen","better":1,"matchers":[{"string":"若使用時被冰緩,獲得免疫冰緩 # 秒\n若使用時被冰凍,獲得免疫冰凍 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_3869628136"],"fractured":["fractured.stat_3869628136"]}}} +{"ref":"Grants Immunity to Chill for 4 seconds if used while Chilled\nGrants Immunity to Freeze for 4 seconds if used while Frozen","better":1,"matchers":[{"string":"若使用時被冰緩,獲得免疫冰緩 4 秒\n若使用時被冰凍,獲得免疫冰凍 4 秒"}],"trade":{"ids":{"explicit":["explicit.stat_3570046771"]}}} +{"ref":"Grants Immunity to Hinder for # seconds if used while Hindered","better":1,"matchers":[{"string":"若使用時被阻礙,獲得免疫阻礙 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_4003593289"],"fractured":["fractured.stat_4003593289"]}}} +{"ref":"Grants Immunity to Ignite for # seconds if used while Ignited\nRemoves all Burning when used","better":1,"matchers":[{"string":"若使用時被點燃,獲得免疫點燃 # 秒\n使用時移除全部燃燒"}],"trade":{"ids":{"explicit":["explicit.stat_2361218755"],"fractured":["fractured.stat_2361218755"]}}} +{"ref":"Grants Immunity to Ignite for 4 seconds if used while Ignited\nRemoves all Burning when used","better":1,"matchers":[{"string":"若使用時被點燃,獲得免疫點燃 4 秒\n使用時移除全部燃燒"}],"trade":{"ids":{"explicit":["explicit.stat_2695527599"]}}} +{"ref":"Grants Immunity to Maim for # seconds if used while Maimed","better":1,"matchers":[{"string":"若使用時被癱瘓,獲得免疫癱瘓 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_4232582040"],"fractured":["fractured.stat_4232582040"]}}} +{"ref":"Grants Immunity to Poison for # seconds if used while Poisoned","better":1,"matchers":[{"string":"若使用時中毒,獲得免疫中毒 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_542375676"],"fractured":["fractured.stat_542375676"]}}} +{"ref":"Grants Immunity to Shock for # seconds if used while Shocked","better":1,"matchers":[{"string":"若使用時被感電,獲得免疫感電 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_3854439683"],"fractured":["fractured.stat_3854439683"]}}} +{"ref":"Grants Last Breath when you Use a Skill during Effect, for #% of Mana Cost","better":1,"matchers":[{"string":"效果持續時間,使用技能消耗 #% 魔力,獲得瀕死之息"}],"trade":{"ids":{"explicit":["explicit.stat_3686711832"]}}} +{"ref":"Grants level # Affliction","better":1,"matchers":[{"string":"獲得等級 # 的禁咒"}],"trade":{"ids":{"explicit":["explicit.stat_3486646279"]}}} +{"ref":"Grants Level # Anger Skill","better":1,"matchers":[{"string":"獲得等級 # 的憤怒技能"}],"trade":{"ids":{"explicit":["explicit.stat_449494711","explicit.stat_484879947"],"implicit":["implicit.stat_484879947"],"fractured":["fractured.stat_484879947"]}}} +{"ref":"Grants Level # Approaching Flames Skill","better":1,"matchers":[{"string":"獲得等級 # 的無極赤炎技能"}],"trade":{"ids":{"explicit":["explicit.stat_1943415243"]}}} +{"ref":"Grants Level # Aspect of the Avian Skill","better":1,"matchers":[{"string":"獲得等級 # 的飛羽祝福技能"}],"trade":{"ids":{"explicit":["explicit.stat_3914740665"],"fractured":["fractured.stat_3914740665"]}}} +{"ref":"Grants Level # Aspect of the Cat Skill","better":1,"matchers":[{"string":"獲得等級 # 的傲貓祝福技能"}],"trade":{"ids":{"explicit":["explicit.stat_1265282021"],"fractured":["fractured.stat_1265282021"]}}} +{"ref":"Grants Level # Aspect of the Crab Skill","better":1,"matchers":[{"string":"獲得等級 # 的蟹將祝福技能"}],"trade":{"ids":{"explicit":["explicit.stat_4102318278"],"fractured":["fractured.stat_4102318278"]}}} +{"ref":"Grants Level # Aspect of the Spider Skill","better":1,"matchers":[{"string":"獲得等級 # 的毒蛛祝福技能"}],"trade":{"ids":{"explicit":["explicit.stat_956546305"],"fractured":["fractured.stat_956546305"]}}} +{"ref":"Grants Level # Battlemage's Cry Skill","better":1,"matchers":[{"string":"獲得等級 # 的戰法戰吼技能"}],"trade":{"ids":{"explicit":["explicit.stat_2356594418"]}}} +{"ref":"Grants Level # Bear Trap Skill","better":1,"matchers":[{"string":"獲得等級 # 的捕熊陷阱技能"}],"trade":{"ids":{"explicit":["explicit.stat_3541114083"]}}} +{"ref":"Grants Level # Blight Skill","better":1,"matchers":[{"string":"獲得等級 # 的萎滅技能"}],"trade":{"ids":{"explicit":["explicit.stat_1198418726"]}}} +{"ref":"Grants Level # Blood Offering Skill","better":1,"matchers":[{"string":"獲得等級 # 的鮮血奉獻技能"}],"trade":{"ids":{"explicit":["explicit.stat_3985468650"]}}} +{"ref":"Grants Level # Blood Sacrament Skill","better":1,"matchers":[{"string":"獲得等級 # 的血祭聖禮技能"}],"trade":{"ids":{"explicit":["explicit.stat_738386056"]}}} +{"ref":"Grants Level # Brandsurge Skill","better":1,"matchers":[{"string":"獲得等級 # 的烙印波動技能"}],"trade":{"ids":{"explicit":["explicit.stat_2859437049"]}}} +{"ref":"Grants Level # Clarity Skill","better":1,"matchers":[{"string":"獲得等級 # 的清晰技能"}],"trade":{"ids":{"explicit":["explicit.stat_3511815065"],"implicit":["implicit.stat_3511815065"]}}} +{"ref":"Grants Level # Conductivity Skill","better":1,"matchers":[{"string":"獲得等級 # 的導電技能"}],"trade":{"ids":{"implicit":["implicit.stat_461472247"]}}} +{"ref":"Grants Level # Convocation Skill","better":1,"matchers":[{"string":"獲得等級 # 的號召技能"}],"trade":{"ids":{"explicit":["explicit.stat_1786401772"],"fractured":["fractured.stat_1786401772"]}}} +{"ref":"Grants Level # Crushing Fist Skill","better":1,"matchers":[{"string":"獲得等級 # 的粉碎之拳技能"}],"trade":{"ids":{"explicit":["explicit.stat_2434330144"]}}} +{"ref":"Grants Level # Dash Skill","better":1,"matchers":[{"string":"獲得等級 # 的幻步技能"}],"trade":{"ids":{"explicit":["explicit.stat_3883691934"]}}} +{"ref":"Grants Level # Death Wish Skill","better":1,"matchers":[{"string":"獲得等級 # 的咒死技能"}],"trade":{"ids":{"explicit":["explicit.stat_1965393792"]}}} +{"ref":"Grants Level # Decoy Totem Skill","better":1,"matchers":[{"string":"獲得等級 # 誘餌圖騰技能"}],"trade":{"ids":{"explicit":["explicit.stat_3566242751"],"fractured":["fractured.stat_3566242751"]}}} +{"ref":"Grants Level # Despair Curse Aura during Effect","better":1,"matchers":[{"string":"效果持續時間,獲得等級 # 的絕望詛咒光環"}],"trade":{"ids":{"explicit":["explicit.stat_1604995720"]}}} +{"ref":"Grants Level # Despair Skill","better":1,"matchers":[{"string":"獲得等級 # 的絕望技能"}],"trade":{"ids":{"implicit":["implicit.stat_2044547677"]}}} +{"ref":"Grants Level # Determination Skill","better":1,"matchers":[{"string":"獲得等級 # 的堅定技能"}],"trade":{"ids":{"explicit":["explicit.stat_3231614028","explicit.stat_4265392510"],"implicit":["implicit.stat_4265392510"],"fractured":["fractured.stat_3231614028"]}}} +{"ref":"Grants Level # Discipline Skill","better":1,"matchers":[{"string":"獲得等級 # 的紀律技能"}],"trade":{"ids":{"explicit":["explicit.stat_2341269061","explicit.stat_2578176147"],"implicit":["implicit.stat_2341269061"],"fractured":["fractured.stat_2578176147"]}}} +{"ref":"Grants Level # Doryani's Touch Skill","better":1,"matchers":[{"string":"獲得技能等級 # 的多里亞尼之觸"}],"trade":{"ids":{"explicit":["explicit.stat_2498303876"]}}} +{"ref":"Grants Level # Embrace Madness Skill","better":1,"matchers":[{"string":"獲得等級 # 的擁抱瘋魔技能"}],"trade":{"ids":{"explicit":["explicit.stat_1749783861"]}}} +{"ref":"Grants Level # Enduring Cry Skill","better":1,"matchers":[{"string":"獲得等級 # 堅決戰吼技能"}],"trade":{"ids":{"explicit":["explicit.stat_1031644844"],"fractured":["fractured.stat_1031644844"]}}} +{"ref":"Grants Level # Envy Skill","better":1,"matchers":[{"string":"獲得等級 # 的忌妒技能"}],"trade":{"ids":{"explicit":["explicit.stat_52953650"],"fractured":["fractured.stat_52953650"],"enchant":["enchant.stat_52953650"]}}} +{"ref":"Grants Level # Flammability Skill","better":1,"matchers":[{"string":"獲得等級 # 的易燃技能"}],"trade":{"ids":{"implicit":["implicit.stat_2209668839"]}}} +{"ref":"Grants Level # Frostbite Skill","better":1,"matchers":[{"string":"獲得等級 # 的凍傷技能"}],"trade":{"ids":{"explicit":["explicit.stat_1169502663"],"implicit":["implicit.stat_1169502663"]}}} +{"ref":"Grants Level # Frostblink Skill","better":1,"matchers":[{"string":"獲得等級 # 的霜漣之瞬技能"}],"trade":{"ids":{"explicit":["explicit.stat_2911866787"]}}} +{"ref":"Grants Level # Gluttony of Elements Skill","better":1,"matchers":[{"string":"獲得等級 # 的元素之癒技能"}],"trade":{"ids":{"explicit":["explicit.stat_3321235265"]}}} +{"ref":"Grants Level # Grace Skill","better":1,"matchers":[{"string":"獲得等級 # 的優雅技能"}],"trade":{"ids":{"explicit":["explicit.stat_2867050084","explicit.stat_3914774028"],"implicit":["implicit.stat_2867050084"],"fractured":["fractured.stat_3914774028"]}}} +{"ref":"Grants Level # Haste Skill","better":1,"matchers":[{"string":"獲得等級 # 的迅捷技能"}],"trade":{"ids":{"explicit":["explicit.stat_1188846263","explicit.stat_2923442950"],"implicit":["implicit.stat_1188846263"],"fractured":["fractured.stat_2923442950"]}}} +{"ref":"Grants Level # Hatred Skill","better":1,"matchers":[{"string":"獲得等級 # 的憎恨技能"}],"trade":{"ids":{"explicit":["explicit.stat_178394804","explicit.stat_2429546158"],"implicit":["implicit.stat_2429546158"],"fractured":["fractured.stat_2429546158"]}}} +{"ref":"Grants Level # Herald of Agony Skill","better":1,"matchers":[{"string":"獲得等級 # 的苦痛之捷技能"}],"trade":{"ids":{"scourge":["scourge.stat_1504952168"]}}} +{"ref":"Grants Level # Herald of Ash Skill","better":1,"matchers":[{"string":"獲得等級 # 灰燼之捷技能"}],"trade":{"ids":{"explicit":["explicit.stat_3880462354"],"fractured":["fractured.stat_3880462354"],"scourge":["scourge.stat_3880462354"]}}} +{"ref":"Grants Level # Herald of Ice Skill","better":1,"matchers":[{"string":"獲得等級 # 冰霜之捷技能"}],"trade":{"ids":{"explicit":["explicit.stat_3846248551"],"scourge":["scourge.stat_3846248551"]}}} +{"ref":"Grants Level # Herald of Purity Skill","better":1,"matchers":[{"string":"獲得等級 # 的純淨之捷技能"}],"trade":{"ids":{"scourge":["scourge.stat_738207023"]}}} +{"ref":"Grants Level # Herald of Thunder Skill","better":1,"matchers":[{"string":"獲得等級 # 閃電之捷技能"}],"trade":{"ids":{"explicit":["explicit.stat_1665492921"],"fractured":["fractured.stat_1665492921"],"scourge":["scourge.stat_1665492921"]}}} +{"ref":"Grants Level # Icestorm Skill","better":1,"matchers":[{"string":"獲得等級 # 的冰風暴技能"}],"trade":{"ids":{"explicit":["explicit.stat_2103009393"]}}} +{"ref":"Grants Level # Illusory Warp Skill","better":1,"matchers":[{"string":"獲得等級 # 的幻影傳送技能"}],"trade":{"ids":{"explicit":["explicit.stat_3279574030"]}}} +{"ref":"Grants Level # Intimidating Cry Skill","better":1,"matchers":[{"string":"獲得等級 # 的威嚇戰吼技能"},{"string":"獲得等級 # 的恫嚇戰吼技能"}],"trade":{"ids":{"explicit":["explicit.stat_1271338211"],"fractured":["fractured.stat_1271338211"]}}} +{"ref":"Grants Level # Lightning Warp Skill","better":1,"matchers":[{"string":"獲得等級 # 的閃電傳送技能"}],"trade":{"ids":{"explicit":["explicit.stat_243713911"]}}} +{"ref":"Grants Level # Malevolence Skill","better":1,"matchers":[{"string":"獲得等級 # 的惡意技能"}],"trade":{"ids":{"explicit":["explicit.stat_3086585712"],"implicit":["implicit.stat_2148556029"],"fractured":["fractured.stat_3086585712"]}}} +{"ref":"Grants level # Pacify","better":1,"matchers":[{"string":"獲得等級 # 的平靜"}],"trade":{"ids":{"explicit":["explicit.stat_913306901"]}}} +{"ref":"Grants level # Penance Mark","better":1,"matchers":[{"string":"獲得等級 # 的苦行印記"}],"trade":{"ids":{"explicit":["explicit.stat_88120117"]}}} +{"ref":"Grants Level # Petrification Statue Skill","better":1,"matchers":[{"string":"獲得等級 # 的石化雕像技能"}],"trade":{"ids":{"explicit":["explicit.stat_1904419785"]}}} +{"ref":"Grants Level # Precision Skill","better":1,"matchers":[{"string":"獲得等級 # 的精準技能"}],"trade":{"ids":{"explicit":["explicit.stat_2721815210"]}}} +{"ref":"Grants Level # Pride Skill","better":1,"matchers":[{"string":"獲得等級 # 的驕傲技能"}],"trade":{"ids":{"explicit":["explicit.stat_3612470379"],"implicit":["implicit.stat_4184565463"],"fractured":["fractured.stat_3612470379"]}}} +{"ref":"Grants Level # Purity of Elements Skill","better":1,"matchers":[{"string":"獲得等級 # 的元素淨化技能"}],"trade":{"ids":{"explicit":["explicit.stat_105466375"],"implicit":["implicit.stat_105466375"]}}} +{"ref":"Grants Level # Purity of Fire Skill","better":1,"matchers":[{"string":"獲得等級 # 的火焰淨化技能"}],"trade":{"ids":{"explicit":["explicit.stat_3716281760","explicit.stat_3970432307"],"implicit":["implicit.stat_3970432307"],"fractured":["fractured.stat_3716281760"]}}} +{"ref":"Grants Level # Purity of Ice Skill","better":1,"matchers":[{"string":"獲得等級 # 的冰冷淨化技能"},{"string":"獲得等級 # 的冰霜淨化技能"}],"trade":{"ids":{"explicit":["explicit.stat_151975117","explicit.stat_4193390599"],"implicit":["implicit.stat_4193390599"],"fractured":["fractured.stat_151975117"]}}} +{"ref":"Grants Level # Purity of Lightning Skill","better":1,"matchers":[{"string":"獲得等級 # 的閃電淨化技能"}],"trade":{"ids":{"explicit":["explicit.stat_1141249906","explicit.stat_3822878124"],"implicit":["implicit.stat_3822878124"]}}} +{"ref":"Grants Level # Queen's Demand Skill","better":1,"matchers":[{"string":"獲得等級 # 的女王之慾技能"}],"trade":{"ids":{"explicit":["explicit.stat_509572644"]}}} +{"ref":"Grants Level # Rallying Cry Skill","better":1,"matchers":[{"string":"獲得等級 # 激勵戰吼技能"}],"trade":{"ids":{"explicit":["explicit.stat_2007746338"],"fractured":["fractured.stat_2007746338"]}}} +{"ref":"Grants Level # Ravenous Skill","better":1,"matchers":[{"string":"獲得等級 # 的貪婪技能"}],"trade":{"ids":{"explicit":["explicit.stat_636370122"]}}} +{"ref":"Grants Level # Scorching Ray Skill","better":1,"matchers":[{"string":"獲得等級 # 的熾灼奔流技能"}],"trade":{"ids":{"explicit":["explicit.stat_1540840"]}}} +{"ref":"Grants Level # Smite Skill","better":1,"matchers":[{"string":"獲得等級 # 的雷鳴重擊技能"}],"trade":{"ids":{"explicit":["explicit.stat_979973117"]}}} +{"ref":"Grants Level # Snipe Skill","better":1,"matchers":[{"string":"獲得等級 # 的狙擊技能"}],"trade":{"ids":{"explicit":["explicit.stat_2343098806"]}}} +{"ref":"Grants Level # Sniper's Mark Skill","better":1,"matchers":[{"string":"獲得等級 # 的狙擊者印記技能"}],"trade":{"ids":{"implicit":["implicit.stat_3536689603"],"scourge":["scourge.stat_3536689603"]}}} +{"ref":"Grants Level # Summon Doedre's Effigy Skill\nSocketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned\nHexes from Socketed Skills can apply 5 additional Curses","better":1,"matchers":[{"string":"獲得等級 # 的召喚德瑞肖像技能\n被召喚時插槽中的咒術詛咒技能被德瑞肖像觸發\n來自插槽技能的咒術可以套用額外 5 詛咒"}],"trade":{"ids":{"explicit":["explicit.stat_1517357911"]}}} +{"ref":"Grants Level # Summon Stone Golem Skill","better":1,"matchers":[{"string":"獲得等級 # 的召喚巨石魔像技能"}],"trade":{"ids":{"explicit":["explicit.stat_3056188914"]}}} +{"ref":"Grants Level # Thirst for Blood Skill","better":1,"matchers":[{"string":"獲得等級 # 的嗜血技能"}],"trade":{"ids":{"explicit":["explicit.stat_1209807941"]}}} +{"ref":"Grants Level # Unhinge Skill","better":1,"matchers":[{"string":"獲得等級 # 的錯亂技能"}],"trade":{"ids":{"explicit":["explicit.stat_3239991868"]}}} +{"ref":"Grants Level # Vaal Impurity of Fire Skill","better":1,"matchers":[{"string":"獲得等級 # 的瓦爾.不淨之火技能"}],"trade":{"ids":{"explicit":["explicit.stat_2700934265"]}}} +{"ref":"Grants Level # Vaal Impurity of Ice Skill","better":1,"matchers":[{"string":"獲得等級 # 的瓦爾.不淨之冰技能"}],"trade":{"ids":{"explicit":["explicit.stat_1300125165"]}}} +{"ref":"Grants Level # Vaal Impurity of Lightning Skill","better":1,"matchers":[{"string":"獲得等級 # 的瓦爾.不淨之雷技能"}],"trade":{"ids":{"explicit":["explicit.stat_2959369472"]}}} +{"ref":"Grants Level # Vengeance Skill","better":1,"matchers":[{"string":"獲得等級 # 的復仇技能"}],"trade":{"ids":{"explicit":["explicit.stat_4122367945"]}}} +{"ref":"Grants Level # Vitality Skill","better":1,"matchers":[{"string":"獲得等級 # 的活力技能"}],"trade":{"ids":{"explicit":["explicit.stat_2410613176"],"implicit":["implicit.stat_2410613176"]}}} +{"ref":"Grants Level # Vulnerability Curse Aura during Effect","better":1,"matchers":[{"string":"效果持續時間,獲得等級 # 的脆弱詛咒光環"}],"trade":{"ids":{"explicit":["explicit.stat_1660373569"]}}} +{"ref":"Grants Level # Wintertide Brand Skill","better":1,"matchers":[{"string":"獲得等級 # 的冬潮烙印技能"}],"trade":{"ids":{"explicit":["explicit.stat_1826753218"]}}} +{"ref":"Grants Level # Wrath Skill","better":1,"matchers":[{"string":"獲得等級 # 的雷霆技能"}],"trade":{"ids":{"explicit":["explicit.stat_1568319697","explicit.stat_2265307453"],"implicit":["implicit.stat_2265307453"],"fractured":["fractured.stat_1568319697"]}}} +{"ref":"Grants Level # Zealotry Skill","better":1,"matchers":[{"string":"獲得等級 # 的狂熱技能"}],"trade":{"ids":{"explicit":["explicit.stat_3734675602"],"implicit":["implicit.stat_3224664127"]}}} +{"ref":"Grants Level 20 Summon Bestial # Skill","better":1,"matchers":[{"string":"獲得等級 20 的召喚兇猛恐喙鳥技能","value":1},{"string":"獲得等級 20 的召喚兇猛之爪技能","value":2},{"string":"獲得等級 20 的召喚兇猛蟒蛇技能","value":3}],"trade":{"ids":{"explicit":["explicit.stat_2878779644"]},"option":true}} +{"ref":"Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence","better":1,"matchers":[{"string":"每 6 秒依序獲得瑪拉凱之耐力、瑪拉凱之狂怒和瑪拉凱之暴擊"}],"trade":{"ids":{"explicit":["explicit.stat_2918150296"]}}} +{"ref":"Grants Perfect Agony during effect","better":1,"matchers":[{"string":"效果持續時間,獲得絕對受難"}],"trade":{"ids":{"explicit":["explicit.stat_3741365813"]}}} +{"ref":"Grants Summon Harbinger Skill","better":1,"matchers":[{"string":"獲得召喚奧術神諭技能","value":1},{"string":"獲得召喚高階象限神諭技能","value":10},{"string":"獲得召喚高階風暴神諭技能","value":11},{"string":"獲得召喚高階暴虐神諭技能","value":12},{"string":"獲得召喚時空神諭技能","value":2},{"string":"獲得召喚專注神諭技能","value":3},{"string":"獲得召喚象限神諭技能","value":4},{"string":"獲得召喚風暴神諭技能","value":5},{"string":"獲得召喚暴虐神諭技能","value":6},{"string":"獲得召喚高階奧術神諭技能","value":7},{"string":"獲得召喚高階時空神諭技能","value":8},{"string":"獲得召喚高階專注神諭技能","value":9}],"trade":{"ids":{"explicit":["explicit.stat_3872739249"]},"option":true}} +{"ref":"Gravicius' Veiled","better":0,"matchers":[{"string":"格拉維奇的隱匿"}],"trade":{"ids":{"veiled":["veiled.mod_38872"]}}} +{"ref":"Ground Slam has a #% increased angle","better":1,"matchers":[{"string":"裂地之擊增加 #% 角度"},{"string":"裂地之擊減少 #% 角度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_648647905"]}}} +{"ref":"Guard Skills have #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"守護技能增加 #% 冷卻時間恢復速度"},{"string":"守護技能減少 #% 冷卻時間恢復速度","negate":true}],"trade":{"ids":{"scourge":["scourge.stat_3150300096"]}}} +{"ref":"Guards deal #% increased Damage","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"守衛增加 #% 傷害"},{"string":"守衛減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2569717992"],"fractured":["fractured.stat_2569717992"]}}} +{"ref":"Guards impact #% increased Resolve","better":1,"matchers":[{"string":"守衛影響增加 #% 決心"},{"string":"守衛影響減少 #% 決心","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_199414195"]}}} +{"ref":"Guards take #% increased Damage","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"守衛增加 #% 承受傷害"},{"string":"守衛增加承受 #% 傷害"},{"string":"守衛減少 #% 承受傷害","negate":true},{"string":"守衛減少承受 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_873692616","sanctum.stat_408585189"],"fractured":["fractured.stat_873692616"]}}} +{"ref":"Guff's Veiled","better":0,"matchers":[{"string":"哥夫的隱匿"}],"trade":{"ids":{"veiled":["veiled.mod_6779"]}}} +{"ref":"Haku's Veiled","better":0,"matchers":[{"string":"哈庫的隱匿"}],"trade":{"ids":{"veiled":["veiled.mod_39023"]}}} +{"ref":"Half of your Strength is added to your Minions","better":1,"matchers":[{"string":"你一半的力量被加到你的召喚物上"}],"trade":{"ids":{"explicit":["explicit.stat_2195137717"]}}} +{"ref":"Has # Abyssal Sockets","better":1,"matchers":[{"string":"有 # 個深淵插槽"},{"string":"有 1 個深淵插槽","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3527617737"],"implicit":["implicit.stat_3527617737"],"fractured":["fractured.stat_3527617737"]}}} +{"ref":"Has # Influences","better":1,"matchers":[{"string":"有 # 勢力 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_has_influence_count"]}}} +{"ref":"Has # White Sockets","better":1,"matchers":[{"string":"有 # 個白色插槽"},{"string":"有 1 個白色插槽","value":1}],"trade":{"ids":{"enchant":["enchant.stat_931294424"]}}} +{"ref":"Has 1 Socket","better":1,"matchers":[{"string":"有 # 個插槽"},{"string":"有 1 個插槽","value":1}],"trade":{"ids":{"explicit":["explicit.stat_4077843608"],"implicit":["implicit.stat_4077843608"]}}} +{"ref":"Has a Crucible Passive Skill Tree\nCrucible Passive Skill Tree is removed if this Modifier is removed","better":1,"matchers":[{"string":"有 1 顆熔火天賦樹\n若此詞綴被移除,熔火天賦樹也會被移除"}],"trade":{"ids":{"explicit":["explicit.stat_1827605890"]}}} +{"ref":"Has a Crucible Passive Skill Tree with only Support Passive Skills\nCrucible Passive Skill Tree is removed if this Modifier is removed","better":1,"matchers":[{"string":"有 1 顆只有輔助天賦的熔火天賦樹\n若此詞綴被移除,熔火天賦樹也會被移除"}],"trade":{"ids":{"explicit":["explicit.stat_3031897787"]}}} +{"ref":"Has a Two Handed Sword Crucible Passive Skill Tree\nCrucible Passive Skill Tree is removed if this Modifier is removed","better":1,"matchers":[{"string":"有 1 顆雙手劍的熔火天賦樹\n若此詞綴被移除,熔火天賦樹也會被移除"}],"trade":{"ids":{"explicit":["explicit.stat_2141582975"]}}} +{"ref":"Has an additional Implicit Mod","better":1,"matchers":[{"string":"有 1 個額外固定詞綴"}],"trade":{"ids":{"explicit":["explicit.stat_2489070122"]}}} +{"ref":"Has Crusader Influence","better":1,"matchers":[{"string":"有聖戰軍王勢力 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_has_crusader_influence"]}}} +{"ref":"Has Elder Influence","better":1,"matchers":[{"string":"有尊師勢力 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_has_elder_influence"]}}} +{"ref":"Has Elder, Shaper and all Conqueror Influences","better":1,"matchers":[{"string":"有異界尊師、塑界者和全部征服者勢力"}],"trade":{"ids":{"implicit":["implicit.stat_1795443614"]}}} +{"ref":"Has Hunter Influence","better":1,"matchers":[{"string":"有狩獵者勢力 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_has_hunter_influence"]}}} +{"ref":"Has Logbook Area: Battleground Graves","better":1,"matchers":[{"string":"有日誌區域:烽火墳墓 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_battleground_graves"]}}} +{"ref":"Has Logbook Area: Bluffs","better":1,"matchers":[{"string":"有日誌區域:陡岸峭壁 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_bluffs"]}}} +{"ref":"Has Logbook Area: Cemetery","better":1,"matchers":[{"string":"有日誌區域:公墓 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_cemetery"]}}} +{"ref":"Has Logbook Area: Desert Ruins","better":1,"matchers":[{"string":"有日誌區域:沙漠廢墟 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_desert_ruins"]}}} +{"ref":"Has Logbook Area: Dried Riverbed","better":1,"matchers":[{"string":"有日誌區域:乾枯河床 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_dried_riverbed"]}}} +{"ref":"Has Logbook Area: Forest Ruins","better":1,"matchers":[{"string":"有日誌區域:森林遺跡 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_forest_ruins"]}}} +{"ref":"Has Logbook Area: Karui Wargraves","better":1,"matchers":[{"string":"有日誌區域:卡魯戰爭墓地 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_karui_wargraves"]}}} +{"ref":"Has Logbook Area: Mountainside","better":1,"matchers":[{"string":"有日誌區域:迷黯山腰 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_mountainside"]}}} +{"ref":"Has Logbook Area: Rotting Temple","better":1,"matchers":[{"string":"有日誌區域:腐朽神殿 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_rotting_temple"]}}} +{"ref":"Has Logbook Area: Sarn Slums","better":1,"matchers":[{"string":"有日誌區域:薩恩貧民窟 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_sarn_slums"]}}} +{"ref":"Has Logbook Area: Scrublands","better":1,"matchers":[{"string":"有日誌區域:灌木叢 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_scrublands"]}}} +{"ref":"Has Logbook Area: Shipwreck Reef","better":1,"matchers":[{"string":"有日誌區域:沉船岩礁 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_shipwreck_reef"]}}} +{"ref":"Has Logbook Area: Utzaal Outskirts","better":1,"matchers":[{"string":"有日誌區域:奧札爾郊野 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_utzaal_outskirts"]}}} +{"ref":"Has Logbook Area: Vaal Temple","better":1,"matchers":[{"string":"有日誌區域:瓦爾神殿 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_vaal_temple"]}}} +{"ref":"Has Logbook Area: Volcanic Island","better":1,"matchers":[{"string":"有日誌區域:火山島 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_volcano"]}}} +{"ref":"Has Logbook Faction: Black Scythe Mercenaries","better":0,"matchers":[{"string":"黑鐮傭兵"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_faction_mercenaries"]}}} +{"ref":"Has Logbook Faction: Druids of the Broken Circle","better":0,"matchers":[{"string":"破碎環之德魯伊"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_faction_druids"]}}} +{"ref":"Has Logbook Faction: Knights of the Sun","better":0,"matchers":[{"string":"豔陽騎士"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_faction_knights"]}}} +{"ref":"Has Logbook Faction: Order of the Chalice","better":0,"matchers":[{"string":"聖杯之序"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_faction_order"]}}} +{"ref":"Has no Attribute Requirements","better":1,"matchers":[{"string":"無能力限制"}],"trade":{"ids":{"explicit":["explicit.stat_2739148464"],"fractured":["fractured.stat_2739148464"]}}} +{"ref":"Has no Blue Sockets","better":1,"matchers":[{"string":"沒有藍色插槽"}],"trade":{"ids":{"enchant":["enchant.stat_3837805260"]}}} +{"ref":"Has no Energy Shield","better":1,"matchers":[{"string":"沒有能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_3109875952"]}}} +{"ref":"Has no Green Sockets","better":1,"matchers":[{"string":"沒有綠色插槽"}],"trade":{"ids":{"enchant":["enchant.stat_1615727675"]}}} +{"ref":"Has no Red Sockets","better":1,"matchers":[{"string":"沒有紅色插槽"}],"trade":{"ids":{"enchant":["enchant.stat_320043039"]}}} +{"ref":"Has no Sockets","better":1,"matchers":[{"string":"沒有插槽"}],"trade":{"ids":{"explicit":["explicit.stat_1493091477"]}}} +{"ref":"Has Redeemer Influence","better":1,"matchers":[{"string":"有救贖者勢力 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_has_redeemer_influence"]}}} +{"ref":"Has Room: Antechamber","better":0,"matchers":[{"string":"神殿前院"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_antechamber"]},"option":true}} +{"ref":"Has Room: Apex of Ascension (Tier 3)","better":0,"matchers":[{"string":"祭祀之巔 (階級 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_sacrifice_room_3"]},"option":true}} +{"ref":"Has Room: Apex of Atzoatl","better":0,"matchers":[{"string":"阿茲瓦特之巔"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_apex"]},"option":true}} +{"ref":"Has Room: Arena of Valour (Tier 2)","better":0,"matchers":[{"string":"傳說對決 (階級 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_weapon_room_2"]},"option":true}} +{"ref":"Has Room: Armourer's Workshop (Tier 1)","better":0,"matchers":[{"string":"裝甲磨坊 (階級 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_armour_room_1"]},"option":true}} +{"ref":"Has Room: Armoury (Tier 2)","better":0,"matchers":[{"string":"軍械庫 (階級 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_armour_room_2"]},"option":true}} +{"ref":"Has Room: Atlas of Worlds (Tier 3)","better":0,"matchers":[{"string":"異界輿圖 (階級 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_cartography_room_3"]},"option":true}} +{"ref":"Has Room: Automaton Lab (Tier 2)","better":0,"matchers":[{"string":"自運研究所 (階級 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_boss_minions_2"]},"option":true}} +{"ref":"Has Room: Banquet Hall","better":0,"matchers":[{"string":"神殿宴會場"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_banquet_hall"]},"option":true}} +{"ref":"Has Room: Barracks (Tier 2)","better":0,"matchers":[{"string":"軍隊憩所 (階級 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_breeding_room_2"]},"option":true}} +{"ref":"Has Room: Breach Containment Chamber (Tier 2)","better":0,"matchers":[{"string":"裂痕異域室 (階級 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_breach_room_2"]},"option":true}} +{"ref":"Has Room: Catalyst of Corruption (Tier 2)","better":0,"matchers":[{"string":"腐敗孳生室 (階級 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_corruption_room_2"]},"option":true}} +{"ref":"Has Room: Cellar","better":0,"matchers":[{"string":"神殿地窖"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_cellar"]},"option":true}} +{"ref":"Has Room: Chamber of Iron (Tier 3)","better":0,"matchers":[{"string":"鋼鍛之室 (階級 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_armour_room_3"]},"option":true}} +{"ref":"Has Room: Chasm","better":0,"matchers":[{"string":"神殿裂口"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_chasm_room"]},"option":true}} +{"ref":"Has Room: Cloister","better":0,"matchers":[{"string":"神殿廟"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_cloister"]},"option":true}} +{"ref":"Has Room: Conduit of Lightning (Tier 3)","better":0,"matchers":[{"string":"雷霆導管 (階級 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_boss_lightning_3"]},"option":true}} +{"ref":"Has Room: Corruption Chamber (Tier 1)","better":0,"matchers":[{"string":"腐敗之室 (階級 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_corruption_room_1"]},"option":true}} +{"ref":"Has Room: Court of Sealed Death (Tier 3)","better":0,"matchers":[{"string":"封亡院庭 (階級 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_strongbox_3"]},"option":true}} +{"ref":"Has Room: Crucible of Flame (Tier 3)","better":0,"matchers":[{"string":"烈焰熔爐 (階級 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_boss_fire_3"]},"option":true}} +{"ref":"Has Room: Cultivar Chamber (Tier 2)","better":0,"matchers":[{"string":"培育秘室 (階級 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_poison_room_2"]},"option":true}} +{"ref":"Has Room: Defense Research Lab (Tier 3)","better":0,"matchers":[{"string":"禦防研究所 (階級 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_trap_room_3"]},"option":true}} +{"ref":"Has Room: Demolition Lab (Tier 2)","better":0,"matchers":[{"string":"拆除庫 (階級 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_explosives_room_2"]},"option":true}} +{"ref":"Has Room: Department of Thaumaturgy (Tier 2)","better":0,"matchers":[{"string":"魔法部 (階級 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_gem_room_2"]},"option":true}} +{"ref":"Has Room: Doryani's Institute (Tier 3)","better":0,"matchers":[{"string":"多里亞尼之院 (階級 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_gem_room_3"]},"option":true}} +{"ref":"Has Room: Engineering Department (Tier 2)","better":0,"matchers":[{"string":"工程部 (階級 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_workshop_2"]},"option":true}} +{"ref":"Has Room: Explosives Room (Tier 1)","better":0,"matchers":[{"string":"彈藥庫 (階級 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_explosives_room_1"]},"option":true}} +{"ref":"Has Room: Factory (Tier 3)","better":0,"matchers":[{"string":"瓦爾工廠 (階級 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_workshop_3"]},"option":true}} +{"ref":"Has Room: Flame Workshop (Tier 1)","better":0,"matchers":[{"string":"獄炎磨坊 (階級 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_boss_fire_1"]},"option":true}} +{"ref":"Has Room: Gemcutter's Workshop (Tier 1)","better":0,"matchers":[{"string":"刻石磨坊 (階級 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_gem_room_1"]},"option":true}} +{"ref":"Has Room: Glittering Halls (Tier 3)","better":0,"matchers":[{"string":"閃耀聖殿 (階級 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_trinket_room_3"]},"option":true}} +{"ref":"Has Room: Guardhouse (Tier 1)","better":0,"matchers":[{"string":"衛兵房 (階級 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_breeding_room_1"]},"option":true}} +{"ref":"Has Room: Hall of Champions (Tier 3)","better":0,"matchers":[{"string":"冠軍聖殿 (階級 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_weapon_room_3"]},"option":true}} +{"ref":"Has Room: Hall of Heroes (Tier 2)","better":0,"matchers":[{"string":"英雄之殿 (階級 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_legion_2"]},"option":true}} +{"ref":"Has Room: Hall of Legends (Tier 3)","better":0,"matchers":[{"string":"神話之殿 (階級 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_legion_3"]},"option":true}} +{"ref":"Has Room: Hall of Locks (Tier 2)","better":0,"matchers":[{"string":"千鎖殿堂 (階級 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_strongbox_2"]},"option":true}} +{"ref":"Has Room: Hall of Lords (Tier 2)","better":0,"matchers":[{"string":"權貴殿堂 (階級 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_queens_chambers_2"]},"option":true}} +{"ref":"Has Room: Hall of Mettle (Tier 1)","better":0,"matchers":[{"string":"勇氣之殿 (階級 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_legion_1"]},"option":true}} +{"ref":"Has Room: Hall of Offerings (Tier 2)","better":0,"matchers":[{"string":"獻祭殿堂 (階級 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_sacrifice_room_2"]},"option":true}} +{"ref":"Has Room: Hall of War (Tier 3)","better":0,"matchers":[{"string":"戰爭聖殿 (階級 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_breeding_room_3"]},"option":true}} +{"ref":"Has Room: Halls","better":0,"matchers":[{"string":"神殿殿堂"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_halls"]},"option":true}} +{"ref":"Has Room: Hatchery (Tier 1)","better":0,"matchers":[{"string":"孵化室 (階級 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_boss_minions_1"]},"option":true}} +{"ref":"Has Room: House of the Others (Tier 3)","better":0,"matchers":[{"string":"異者居所 (階級 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_breach_room_3"]},"option":true}} +{"ref":"Has Room: Hurricane Engine (Tier 2)","better":0,"matchers":[{"string":"颶風引擎室 (階級 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_storm_room_2"]},"option":true}} +{"ref":"Has Room: Hybridisation Chamber (Tier 3)","better":0,"matchers":[{"string":"異種之域 (階級 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_boss_minions_3"]},"option":true}} +{"ref":"Has Room: Jeweller's Workshop (Tier 1)","better":0,"matchers":[{"string":"寶匠磨坊 (階級 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_trinket_room_1"]},"option":true}} +{"ref":"Has Room: Jewellery Forge (Tier 2)","better":0,"matchers":[{"string":"珠寶冶煉室 (階級 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_trinket_room_2"]},"option":true}} +{"ref":"Has Room: Lightning Workshop (Tier 1)","better":0,"matchers":[{"string":"風雷磨坊 (階級 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_boss_lightning_1"]},"option":true}} +{"ref":"Has Room: Locus of Corruption (Tier 3)","better":0,"matchers":[{"string":"腐敗之地 (階級 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_corruption_room_3"]},"option":true}} +{"ref":"Has Room: Museum of Artefacts (Tier 3)","better":0,"matchers":[{"string":"文物展館 (階級 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_chests_3"]},"option":true}} +{"ref":"Has Room: Office of Cartography (Tier 2)","better":0,"matchers":[{"string":"製圖研製室 (階級 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_cartography_room_2"]},"option":true}} +{"ref":"Has Room: Omnitect Forge (Tier 2)","better":0,"matchers":[{"string":"全能冶煉室 (階級 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_boss_fire_2"]},"option":true}} +{"ref":"Has Room: Omnitect Reactor Plant (Tier 2)","better":0,"matchers":[{"string":"全能反應廠 (階級 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_boss_lightning_2"]},"option":true}} +{"ref":"Has Room: Passageways","better":0,"matchers":[{"string":"神殿通道"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_passageways"]},"option":true}} +{"ref":"Has Room: Pits","better":0,"matchers":[{"string":"神殿舊窖"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_the_pits"]},"option":true}} +{"ref":"Has Room: Poison Garden (Tier 1)","better":0,"matchers":[{"string":"監獄花園 (階級 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_poison_room_1"]},"option":true}} +{"ref":"Has Room: Pools of Restoration (Tier 1)","better":0,"matchers":[{"string":"治癒之泉 (階級 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_healing_room_1"]},"option":true}} +{"ref":"Has Room: Royal Meeting Room (Tier 1)","better":0,"matchers":[{"string":"王室宴客室 (階級 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_queens_chambers_1"]},"option":true}} +{"ref":"Has Room: Sacrificial Chamber (Tier 1)","better":0,"matchers":[{"string":"獻祭之室 (階級 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_sacrifice_room_1"]},"option":true}} +{"ref":"Has Room: Sadist's Den (Tier 3)","better":0,"matchers":[{"string":"虐狂之巢 (階級 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_torment_3"]},"option":true}} +{"ref":"Has Room: Sanctum of Immortality (Tier 3)","better":0,"matchers":[{"string":"不朽聖殿 (階級 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_healing_room_3"]},"option":true}} +{"ref":"Has Room: Sanctum of Unity (Tier 2)","better":0,"matchers":[{"string":"統領聖殿 (階級 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_empowering_room_2"]},"option":true}} +{"ref":"Has Room: Sanctum of Vitality (Tier 2)","better":0,"matchers":[{"string":"活力聖殿 (階級 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_healing_room_2"]},"option":true}} +{"ref":"Has Room: Shrine of Empowerment (Tier 1)","better":0,"matchers":[{"string":"恩賜神殿 (階級 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_empowering_room_1"]},"option":true}} +{"ref":"Has Room: Shrine of Unmaking (Tier 3)","better":0,"matchers":[{"string":"毀滅神殿 (階級 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_explosives_room_3"]},"option":true}} +{"ref":"Has Room: Sparring Room (Tier 1)","better":0,"matchers":[{"string":"格鬥場 (階級 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_weapon_room_1"]},"option":true}} +{"ref":"Has Room: Splinter Research Lab (Tier 1)","better":0,"matchers":[{"string":"裂界研究所 (階級 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_breach_room_1"]},"option":true}} +{"ref":"Has Room: Storage Room (Tier 1)","better":0,"matchers":[{"string":"儲物室 (階級 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_chests_1"]},"option":true}} +{"ref":"Has Room: Storm of Corruption (Tier 3)","better":0,"matchers":[{"string":"腐敗風暴 (階級 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_storm_room_3"]},"option":true}} +{"ref":"Has Room: Strongbox Chamber (Tier 1)","better":0,"matchers":[{"string":"寶箱之殿 (階級 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_strongbox_1"]},"option":true}} +{"ref":"Has Room: Surveyor's Study (Tier 1)","better":0,"matchers":[{"string":"研究書房 (階級 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_cartography_room_1"]},"option":true}} +{"ref":"Has Room: Tempest Generator (Tier 1)","better":0,"matchers":[{"string":"暴雷發電室 (階級 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_storm_room_1"]},"option":true}} +{"ref":"Has Room: Temple Defense Workshop (Tier 2)","better":0,"matchers":[{"string":"神殿禦防室 (階級 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_trap_room_2"]},"option":true}} +{"ref":"Has Room: Temple Nexus (Tier 3)","better":0,"matchers":[{"string":"死神靈殿 (階級 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_empowering_room_3"]},"option":true}} +{"ref":"Has Room: Throne of Atziri (Tier 3)","better":0,"matchers":[{"string":"阿茲里宴殿 (階級 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_queens_chambers_3"]},"option":true}} +{"ref":"Has Room: Tombs","better":0,"matchers":[{"string":"神殿陵寢"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_tombs"]},"option":true}} +{"ref":"Has Room: Torment Cells (Tier 1)","better":0,"matchers":[{"string":"磨難牢房 (階級 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_torment_1"]},"option":true}} +{"ref":"Has Room: Torture Cages (Tier 2)","better":0,"matchers":[{"string":"拷刑大牢 (階級 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_torment_2"]},"option":true}} +{"ref":"Has Room: Toxic Grove (Tier 3)","better":0,"matchers":[{"string":"劇毒果園 (階級 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_poison_room_3"]},"option":true}} +{"ref":"Has Room: Trap Workshop (Tier 1)","better":0,"matchers":[{"string":"陷阱磨坊 (階級 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_trap_room_1"]},"option":true}} +{"ref":"Has Room: Treasury (Tier 2)","better":0,"matchers":[{"string":"祕寶庫 (階級 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_currency_vault_2"]},"option":true}} +{"ref":"Has Room: Tunnels","better":0,"matchers":[{"string":"神殿地道"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_tunnels"]},"option":true}} +{"ref":"Has Room: Vault (Tier 1)","better":0,"matchers":[{"string":"藏寶庫 (階級 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_currency_vault_1"]},"option":true}} +{"ref":"Has Room: Warehouses (Tier 2)","better":0,"matchers":[{"string":"倉庫間 (階級 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_chests_2"]},"option":true}} +{"ref":"Has Room: Wealth of the Vaal (Tier 3)","better":0,"matchers":[{"string":"瓦爾聚寶庫 (階級 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_currency_vault_3"]},"option":true}} +{"ref":"Has Room: Workshop (Tier 1)","better":0,"matchers":[{"string":"工作坊 (階級 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_workshop_1"]},"option":true}} +{"ref":"Has Shaper Influence","better":1,"matchers":[{"string":"有塑者勢力 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_has_shaper_influence"]}}} +{"ref":"Has Warlord Influence","better":1,"matchers":[{"string":"有總督軍勢力 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_has_warlord_influence"]}}} +{"ref":"Haste has #% increased Aura Effect","better":1,"matchers":[{"string":"迅捷增加 #% 光環效果"},{"string":"迅捷減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1240056437"]}}} +{"ref":"Haste has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"迅捷增加 #% 魔力保留效用"},{"string":"迅捷減少 #% 魔力保留效用","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_804667127","enchant.stat_939320550"]}}} +{"ref":"Haste has no Reservation","better":1,"matchers":[{"string":"迅捷無保留"}],"trade":{"ids":{"explicit":["explicit.stat_751322171"]}}} +{"ref":"Hatred has #% increased Aura Effect","better":1,"matchers":[{"string":"憎恨增加 #% 光環效果"},{"string":"憎恨減少 #% 光環效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3742945352"],"implicit":["implicit.stat_3742945352"],"fractured":["fractured.stat_3742945352"]}}} +{"ref":"Hatred has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"憎恨增加 #% 魔力保留效用"},{"string":"憎恨減少 #% 魔力保留效用","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1920370417","explicit.stat_2156140483"],"enchant":["enchant.stat_1920370417","enchant.stat_2156140483"]}}} +{"ref":"Hatred has no Reservation","better":1,"matchers":[{"string":"憎恨無保留"}],"trade":{"ids":{"explicit":["explicit.stat_1391583476"]}}} +{"ref":"Having a placed Banner does not prevent you gaining Valour","better":1,"matchers":[{"string":"在已放置鬥旗的情況下,不會使你無法獲得勇氣"}],"trade":{"ids":{"explicit":["explicit.stat_4068494864"]}}} +{"ref":"Heavy Strike has a #% chance to deal Double Damage","better":1,"matchers":[{"string":"沉重之擊有 #% 機率造成 2 倍傷害"}],"trade":{"ids":{"enchant":["enchant.stat_3760588941"]}}} +{"ref":"Heist Chests have #% chance to contain nothing","better":1,"matchers":[{"string":"劫盜保險箱有 #% 機率什麼都沒有"}],"trade":{"ids":{"enchant":["enchant.stat_3038236553"]}}} +{"ref":"Heist Chests have a #% chance to contain more valuable Uniques","better":1,"matchers":[{"string":"劫盜保險箱有 #% 機率內含更多有價值的傳奇"},{"string":"劫盜保險箱內含更多有價值的傳奇","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3288016752"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Basic Currency","better":1,"matchers":[{"string":"劫盜保險箱有 #% 機率複製內含的基礎通貨"},{"string":"劫盜保險箱複製內含的基礎通貨","value":100}],"trade":{"ids":{"explicit":["explicit.stat_14664297"],"fractured":["fractured.stat_14664297"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Breach Splinters","better":1,"matchers":[{"string":"劫盜保險箱有 #% 機率複製內含的裂痕裂片"},{"string":"劫盜保險箱複製內含的裂痕裂片","value":100}],"trade":{"ids":{"explicit":["explicit.stat_668504404"],"fractured":["fractured.stat_668504404"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Catalysts","better":1,"matchers":[{"string":"劫盜保險箱有 #% 機率複製內含的催化劑"},{"string":"劫盜保險箱複製內含的催化劑","value":100}],"trade":{"ids":{"explicit":["explicit.stat_746798754"],"fractured":["fractured.stat_746798754"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Delirium Orbs and Splinters","better":1,"matchers":[{"string":"劫盜保險箱有 #% 機率複製內含的譫妄玉和裂片"},{"string":"劫盜保險箱複製內含的譫妄玉和裂片","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1870262721"],"fractured":["fractured.stat_1870262721"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Divination Cards","better":1,"matchers":[{"string":"劫盜保險箱有 #% 機率複製內含的命運卡"},{"string":"劫盜保險箱複製內含的命運卡","value":100}],"trade":{"ids":{"explicit":["explicit.stat_63302094"],"fractured":["fractured.stat_63302094"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Essences","better":1,"matchers":[{"string":"劫盜保險箱有 #% 機率複製內含的精髓"},{"string":"劫盜保險箱複製內含的精髓","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2175178647"],"fractured":["fractured.stat_2175178647"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Jewels","better":1,"matchers":[{"string":"劫盜保險箱有 #% 機率複製內含的珠寶"},{"string":"劫盜保險箱複製內含的珠寶","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2462090973"],"fractured":["fractured.stat_2462090973"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Legion Splinters","better":1,"matchers":[{"string":"劫盜保險箱有 #% 機率複製內含的戰亂裂片"},{"string":"劫盜保險箱複製內含的戰亂裂片","value":100}],"trade":{"ids":{"explicit":["explicit.stat_145701647"],"fractured":["fractured.stat_145701647"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Map Fragments","better":1,"matchers":[{"string":"劫盜保險箱有 #% 機率複製內含的地圖碎片"},{"string":"劫盜保險箱複製內含的地圖碎片","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3967122169"],"fractured":["fractured.stat_3967122169"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Maps","better":1,"matchers":[{"string":"劫盜保險箱有 #% 機率複製內含的地圖"},{"string":"劫盜保險箱複製內含的地圖","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2885763444"],"fractured":["fractured.stat_2885763444"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Oils","better":1,"matchers":[{"string":"劫盜保險箱有 #% 機率複製內含的油瓶"},{"string":"劫盜保險箱複製內含的油瓶","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2233905349"],"fractured":["fractured.stat_2233905349"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Scarabs","better":1,"matchers":[{"string":"劫盜保險箱有 #% 機率複製內含的聖甲蟲"},{"string":"劫盜保險箱複製內含的聖甲蟲","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4216809421"],"fractured":["fractured.stat_4216809421"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate their contents","better":1,"matchers":[{"string":"劫盜保險箱有 #% 機率複製內含物"},{"string":"劫盜保險箱複製內含物","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2747693610"]}}} +{"ref":"Herald of Agony has #% increased Buff Effect","better":1,"matchers":[{"string":"苦痛之捷增加 #% 增益效果"},{"string":"苦痛之捷減少 #% 增益效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2572910724"],"implicit":["implicit.stat_2572910724"]}}} +{"ref":"Herald of Agony has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"苦痛之捷增加 #% 魔力保留效用"},{"string":"苦痛之捷減少 #% 魔力保留效用","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1133703802","explicit.stat_1284151528"],"enchant":["enchant.stat_1133703802","enchant.stat_1284151528"]}}} +{"ref":"Herald of Ash has #% increased Buff Effect","better":1,"matchers":[{"string":"灰燼之捷增加 #% 增益效果"},{"string":"灰燼之捷減少 #% 增益效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2154349925"],"implicit":["implicit.stat_2154349925"]}}} +{"ref":"Herald of Ash has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"灰燼之捷增加 #% 魔力保留效用"},{"string":"灰燼之捷減少 #% 魔力保留效用","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2500442851","explicit.stat_3819451758"],"enchant":["enchant.stat_2500442851","enchant.stat_3819451758"]}}} +{"ref":"Herald of Ice has #% increased Buff Effect","better":1,"matchers":[{"string":"冰霜之捷增加 #% 增益效果"},{"string":"冰霜之捷減少 #% 增益效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1862926389"],"implicit":["implicit.stat_1862926389"]}}} +{"ref":"Herald of Ice has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"冰霜之捷增加 #% 魔力保留效用"},{"string":"冰霜之捷減少 #% 魔力保留效用","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3059700363","explicit.stat_3395872960"],"enchant":["enchant.stat_3059700363","enchant.stat_3395872960"]}}} +{"ref":"Herald of Purity has #% increased Buff Effect","better":1,"matchers":[{"string":"純淨之捷增加 #% 增益效果"},{"string":"純淨之捷減少 #% 增益效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2126027382"],"implicit":["implicit.stat_2126027382"]}}} +{"ref":"Herald of Purity has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"純淨之捷增加 #% 魔力保留效用"},{"string":"純淨之捷減少 #% 魔力保留效用","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1542765265","explicit.stat_2189040439"],"enchant":["enchant.stat_1542765265","enchant.stat_2189040439"]}}} +{"ref":"Herald of Thunder also creates a storm when you Shock an Enemy","better":1,"matchers":[{"string":"當你感電敵人時,閃電之捷也會製造 1 個風暴"}],"trade":{"ids":{"explicit":["explicit.stat_1964607303"]}}} +{"ref":"Herald of Thunder has #% increased Buff Effect","better":1,"matchers":[{"string":"閃電之捷增加 #% 增益效果"},{"string":"閃電之捷減少 #% 增益效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3814686091"],"implicit":["implicit.stat_3814686091"]}}} +{"ref":"Herald of Thunder has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"閃電之捷增加 #% 魔力保留效用"},{"string":"閃電之捷減少 #% 魔力保留效用","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3817220109","explicit.stat_3959101898"],"enchant":["enchant.stat_3817220109","enchant.stat_3959101898"]}}} +{"ref":"Herald of Thunder's Storms Hit Enemies with #% increased Frequency","better":1,"matchers":[{"string":"閃電之捷的風暴增加 #% 擊中敵人的頻率"},{"string":"閃電之捷的風暴減少 #% 擊中敵人的頻率"}],"trade":{"ids":{"explicit":["explicit.stat_28299254"]}}} +{"ref":"Hex Master","better":1,"matchers":[{"string":"咒術大師"}],"trade":{"ids":{"explicit":["explicit.stat_3849554033"]}}} +{"ref":"Hex Reflection","better":1,"matchers":[{"string":"咒術反射"}],"trade":{"ids":{"explicit":["explicit.stat_1731672673"]}}} +{"ref":"Hexblast deals #% increased Damage","better":1,"matchers":[{"string":"咒術枯萎增加 #% 傷害"},{"string":"咒術枯萎減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2318562335"]}}} +{"ref":"Hexblast has #% increased Area of Effect","better":1,"matchers":[{"string":"咒術枯萎增加 #% 範圍效果"},{"string":"咒術枯萎減少 #% 範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1811698551"]}}} +{"ref":"Hexblast has +#% chance to remove a Hex","better":-1,"matchers":[{"string":"咒術枯萎有 #% 機率移除 1 個咒術","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_120598364"]},"inverted":true}} +{"ref":"Hexes applied by Socketed Curse Skills are Reflected back to you","better":1,"matchers":[{"string":"插槽中詛咒技能所造成的咒術被反射至你身上"}],"trade":{"ids":{"explicit":["explicit.stat_32859524"]}}} +{"ref":"Hexes Transfer to all Enemies within 3 metres when Hexed Enemy dies","better":1,"matchers":[{"string":"當被咒術的敵人死亡時,咒術轉移至 3 米內的全部敵人"}],"trade":{"ids":{"explicit":["explicit.stat_986616727"]}}} +{"ref":"Hinders nearby Enemies with #% reduced Movement Speed if used while not on Full Life","better":1,"matchers":[{"string":"若使用時不是滿血,阻礙附近敵人減少 #% 移動速度"}],"trade":{"ids":{"explicit":["explicit.stat_1462364052"],"fractured":["fractured.stat_1462364052"]}}} +{"ref":"Hinders nearby Enemies with #% reduced Movement Speed if used while not on Full Mana","better":1,"matchers":[{"string":"若使用時不是滿魔,阻礙附近敵人減少 #% 移動速度"}],"trade":{"ids":{"explicit":["explicit.stat_2313899959"],"fractured":["fractured.stat_2313899959"]}}} +{"ref":"Historic","better":1,"matchers":[{"string":"威宏史觀"}],"trade":{"ids":{"explicit":["explicit.stat_3787436548"]}}} +{"ref":"Hits against Enemies Unnerved by you have #% increased Spell Critical Strike Chance","better":1,"matchers":[{"string":"對被你膽怯敵人的擊中,增加 #% 法術暴擊率"},{"string":"對被你膽怯敵人的擊中,減少 #% 法術暴擊率","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2090693207"]}}} +{"ref":"Hits against Nearby Enemies have #% increased Critical Strike Chance","better":1,"matchers":[{"string":"對附近敵人的擊中增加 #% 暴擊率"},{"string":"對附近敵人的擊中減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3896241826"]}}} +{"ref":"Hits at Close Range with Shattering Steel Fortify","better":1,"matchers":[{"string":"使用鋼之碎擊近距離擊中護體"}],"trade":{"ids":{"enchant":["enchant.stat_611022108"]}}} +{"ref":"Hits from Socketed Vaal Skills ignore Enemy Monster Resistances","better":1,"matchers":[{"string":"來自插槽中的瓦爾技能擊中無視敵人怪物抗性"}],"trade":{"ids":{"explicit":["explicit.stat_2540508981"]}}} +{"ref":"Hits from Socketed Vaal Skills ignore Enemy Physical Damage Reduction","better":1,"matchers":[{"string":"來自插槽中的瓦爾技能擊中無視敵人怪物物理傷害減免"}],"trade":{"ids":{"explicit":["explicit.stat_1388374928"]}}} +{"ref":"Hits have #% chance to deal 50% more Area Damage","better":1,"matchers":[{"string":"擊中有 #% 機率造成 50% 更多範圍傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2289189129"]}}} +{"ref":"Hits have #% chance to ignore Enemy Physical Damage Reduction","better":1,"matchers":[{"string":"擊中有 #% 機率無視敵人的物理傷害減免"},{"string":"擊中無視敵人的物理傷害減免","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2839577586"],"implicit":["implicit.stat_2839577586"]}}} +{"ref":"Hits have #% chance to ignore Enemy Physical Damage Reduction while you have Sacrificial Zeal","better":1,"matchers":[{"string":"當你有犧牲狂熱時,擊中有 #% 機率無視敵人的物理傷害減免"},{"string":"當你有犧牲狂熱時,擊中無視敵人的物理傷害減免","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4243208518"]}}} +{"ref":"Hits have #% increased Critical Strike Chance against you","better":1,"matchers":[{"string":"對你的擊中增加 #% 暴擊率"},{"string":"對你的擊中減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_165218607","explicit.stat_4270096386"],"implicit":["implicit.stat_165218607"]}}} +{"ref":"Hits have +#% additional Critical Strike Chance against you","dp":true,"better":1,"matchers":[{"string":"對你的擊中有 #% 額外暴擊率"}],"trade":{"ids":{"scourge":["scourge.stat_4152537231"]}}} +{"ref":"Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Elder Items","better":1,"matchers":[{"string":"若全部裝備為尊師之物,擊中無視敵人怪物混沌抗性"}],"trade":{"ids":{"explicit":["explicit.stat_89314980"]}}} +{"ref":"Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items","better":1,"matchers":[{"string":"若全部裝備的物品為塑者之物,擊中無視怪物敵人的混沌抗性"}],"trade":{"ids":{"explicit":["explicit.stat_4234677275"]}}} +{"ref":"Hits ignore Enemy Monster Fire Resistance while you are Ignited","better":1,"matchers":[{"string":"當你被點燃時,攻擊無視怪物敵人的火焰抗性"}],"trade":{"ids":{"explicit":["explicit.stat_4040152475"]}}} +{"ref":"Hits ignore Enemy Physical Damage Reduction if you've Blocked in the past 20 seconds","better":1,"matchers":[{"string":"若你過去 20 秒有格擋,擊中無視敵人怪物物理傷害減免"}],"trade":{"ids":{"explicit":["explicit.stat_3035931505"]}}} +{"ref":"Hits with Melee Movement Skills have #% chance to Fortify","better":1,"matchers":[{"string":"此用位移技能擊中有 #% 機率護體"}],"trade":{"ids":{"explicit":["explicit.stat_59547568"]}}} +{"ref":"Hits with this Weapon always Ignite, Freeze, and Shock","better":1,"matchers":[{"string":"使用此武器擊中總是造成點燃、冰凍和感電"}],"trade":{"ids":{"explicit":["explicit.stat_2451774989"]}}} +{"ref":"Hits with this Weapon deal #% increased Damage to Frozen Enemies","better":1,"matchers":[{"string":"使用此武器攻擊被冰凍的敵人增加 #% 傷害"},{"string":"使用此武器攻擊被冰凍的敵人減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_196313911"]}}} +{"ref":"Hits with this Weapon deal #% increased Damage to Ignited Enemies","better":1,"matchers":[{"string":"使用此武器攻擊被點燃的敵人增加 #% 傷害"},{"string":"使用此武器攻擊被點燃的敵人減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3095345438"]}}} +{"ref":"Hits with this Weapon deal #% increased Damage to Shocked Enemies","better":1,"matchers":[{"string":"使用此武器攻擊被感電的敵人增加 #% 傷害"},{"string":"使用此武器攻擊被感電的敵人減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1470894892"]}}} +{"ref":"Hits with this Weapon Freeze Enemies as though dealing #% more Damage","better":1,"matchers":[{"string":"此武器擊中冰凍敵人,有如造成 #% 更多傷害"},{"string":"此武器擊中冰凍敵人,有如造成 #% 更少傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2071306253"]}}} +{"ref":"Hits with this Weapon gain #% of Physical Damage as Extra Cold or Lightning Damage","better":1,"matchers":[{"string":"使用此武器擊中時,獲得 #% 物理傷害的額外冰冷或閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1023968711"]}}} +{"ref":"Hits with this Weapon have #% chance to ignore Enemy Physical Damage Reduction","better":1,"matchers":[{"string":"此武器擊中時有 #% 機率無視敵人的物理傷害減免"},{"string":"此武器擊中時無視敵人的物理傷害減免","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1907260000"],"implicit":["implicit.stat_1907260000"]}}} +{"ref":"Hits with this Weapon have +#% to Critical Strike Multiplier per Enemy Power","better":1,"matchers":[{"string":"使用此武器擊中,每敵人強度 #% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_1872107885"]}}} +{"ref":"Hits with this Weapon have Culling Strike against Bleeding Enemies","better":1,"matchers":[{"string":"使用此武器擊中流血的敵人時有撲殺效果"}],"trade":{"ids":{"explicit":["explicit.stat_2558253923"]}}} +{"ref":"Hits with this Weapon Shock Enemies as though dealing #% more Damage","better":1,"matchers":[{"string":"此武器擊中感電敵人,有如造成 #% 更多傷害"},{"string":"此武器擊中感電敵人,有如造成 #% 更少傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1386792919"]}}} +{"ref":"Hollow Palm Technique","better":1,"matchers":[{"string":"空掌之術"}],"trade":{"ids":{"explicit":["explicit.stat_3959337123"]}}} +{"ref":"Holy Flame Totem deals #% increased Damage","better":1,"matchers":[{"string":"神聖火舌圖騰增加 #% 傷害"},{"string":"神聖火舌圖騰減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2801853811"]}}} +{"ref":"Holy Flame Totem fires an additional Projectile","better":1,"matchers":[{"string":"神聖火舌圖騰發射 # 個額外投射物s"},{"string":"神聖火舌圖騰發射 1 個額外投射物","value":1}],"trade":{"ids":{"enchant":["enchant.stat_775200811"]}}} +{"ref":"Holy Flame Totem has #% increased Projectile Speed","better":1,"matchers":[{"string":"神聖火舌圖騰增加 #% 投射物速度"},{"string":"神聖火舌圖騰減少 #% 投射物速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4082863126"]}}} +{"ref":"Hydrosphere deals #% increased Damage","better":1,"matchers":[{"string":"水弒界增加 #% 傷害"},{"string":"水弒界減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1040582501"]}}} +{"ref":"Ice Golems deal #% increased Damage","better":1,"matchers":[{"string":"增加 #% 寒冰魔像的傷害"},{"string":"減少 #% 寒冰魔像的傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3816405721"]}}} +{"ref":"Ice Nova Always Freezes","better":1,"matchers":[{"string":"冰霜新星有 #% 機率冰凍"},{"string":"冰霜新星必定冰凍","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3269321994"]}}} +{"ref":"Ice Shot has #% increased Area of Effect angle","better":1,"matchers":[{"string":"冰霜射擊增加 #% 範圍效果角度"},{"string":"冰霜射擊減少 #% 範圍效果角度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3781924200"]}}} +{"ref":"Ice Spear fires an additional Projectile","better":1,"matchers":[{"string":"冰矛發射 # 個額外投射物"},{"string":"冰矛發射 1 個額外投射物","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3801130154"]}}} +{"ref":"Ice Spear travels #% reduced distance before changing forms","better":-1,"matchers":[{"string":"冰矛在改變型態前增加 #% 飛行距離"},{"string":"冰矛在改變型態前減少 #% 飛行距離","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3295914630"]},"inverted":true}} +{"ref":"Ice Trap Damage Penetrates #% Cold Resistance","better":1,"matchers":[{"string":"冰凍陷阱傷害穿透 #% 冰冷抗性"}],"trade":{"ids":{"enchant":["enchant.stat_3698446010"]}}} +{"ref":"Icicle Mine deals #% increased Damage","better":1,"matchers":[{"string":"冰雹地雷增加 #% 傷害"},{"string":"冰雹地雷減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2363866815"]}}} +{"ref":"Icicle Mine has #% increased Throwing Speed","better":1,"matchers":[{"string":"冰雹地雷增加 #% 投擲速度"},{"string":"冰雹地雷減少 #% 投擲速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3162144587"]}}} +{"ref":"Icicle Mine has +#% to Critical Strike Multiplier","better":1,"matchers":[{"string":"冰雹地雷 #% 暴擊加成"}],"trade":{"ids":{"enchant":["enchant.stat_1555251"]}}} +{"ref":"If you Consumed a corpse Recently, you and nearby Allies Regenerate #% of Life per second","better":1,"matchers":[{"string":"若你近期有消耗屍體,你和附近友方每秒回復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_4089969970"]}}} +{"ref":"If you have Blocked Recently, you and nearby Allies Regenerate #% of Life per second","better":1,"matchers":[{"string":"若你近期有格擋,你和附近友方每秒回復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_176085824"]}}} +{"ref":"If you've Attacked Recently, you and nearby Allies have +#% Chance to Block Attack Damage","better":1,"matchers":[{"string":"若你近期有攻擊,你和\n附近友方 #% 攻擊傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_1453771408"]}}} +{"ref":"If you've Cast a Spell Recently, you and nearby Allies have +#% Chance to Block Spell Damage","better":1,"matchers":[{"string":"若你近期有施放法術,你和\n附近友方 #% 法術傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_1952992278"]}}} +{"ref":"If you've Warcried Recently, you and nearby allies have #% increased Attack, Cast and Movement Speed","better":1,"matchers":[{"string":"若你近期有戰吼,你和附近友方增加 #% 攻擊、施放和移動速度"}],"trade":{"ids":{"explicit":["explicit.stat_1464115829"]}}} +{"ref":"Ignited Enemies Burn #% slower","better":1,"matchers":[{"string":"被點燃敵人減緩燃燒 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1619549198"]}}} +{"ref":"Ignited Enemies Killed by your Hits are destroyed","better":1,"matchers":[{"string":"你擊中擊殺的被點燃敵人被摧毀"}],"trade":{"ids":{"explicit":["explicit.stat_3173052379"]}}} +{"ref":"Ignites inflicted with this Weapon deal #% more Damage","better":1,"matchers":[{"string":"此武器造成的點燃造成 #% 更多傷害"},{"string":"此武器造成的點燃造成 #% 更少傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3165905801"]}}} +{"ref":"Ignites you inflict deal Damage #% faster","better":1,"matchers":[{"string":"你造成的點燃傷害加速 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2443492284"],"implicit":["implicit.stat_2443492284"],"fractured":["fractured.stat_2443492284"],"scourge":["scourge.stat_2443492284"]}}} +{"ref":"Ignites you inflict spread to other Enemies within # metre","better":1,"matchers":[{"string":"你造成的點燃擴散至 # 米內的其它敵人"}],"trade":{"ids":{"explicit":["explicit.stat_2011785027"],"implicit":["implicit.stat_2011785027"]}}} +{"ref":"Ignites you inflict with Attacks deal Damage #% faster","better":1,"matchers":[{"string":"你攻擊造成的點燃傷害加速 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1420236871"]}}} +{"ref":"Ignore all Movement Penalties from Armour","better":1,"matchers":[{"string":"無視穿著護甲所帶來的減少移動速度效果"}],"trade":{"ids":{"explicit":["explicit.stat_1311723478"]}}} +{"ref":"Imbalanced Guard","better":1,"matchers":[{"string":"不平衡守衛"}],"trade":{"ids":{"explicit":["explicit.stat_3868073741"],"scourge":["scourge.stat_3868073741"]}}} +{"ref":"Immune to Burning Ground, Shocked Ground and Chilled Ground","better":1,"matchers":[{"string":"免疫燃燒、感電、冰緩地面"}],"trade":{"ids":{"explicit":["explicit.stat_3705740723"]}}} +{"ref":"Immune to Chill","better":1,"matchers":[{"string":"免疫冰緩"}],"trade":{"ids":{"explicit":["explicit.stat_3510243006"]}}} +{"ref":"Immune to Curses if Corrupted","better":1,"matchers":[{"string":"若已汙染免疫詛咒"}],"trade":{"ids":{"implicit":["implicit.stat_1954526925"]}}} +{"ref":"Immune to Curses if you've cast Despair in the past 10 seconds","better":1,"matchers":[{"string":"若你過去 10 秒有施放過絕望,免疫詛咒"}],"trade":{"ids":{"explicit":["explicit.stat_2773026887"]}}} +{"ref":"Immune to Curses while you have at least # Rage","better":1,"matchers":[{"string":"當你至少有 # 層盛怒時,免疫詛咒"}],"trade":{"ids":{"explicit":["explicit.stat_534844170"]}}} +{"ref":"Immune to Elemental Ailments while affected by Glorious Madness","better":1,"matchers":[{"string":"被榮耀瘋癲影響時,免疫元素異常狀態"}],"trade":{"ids":{"explicit":["explicit.stat_1065479853"]}}} +{"ref":"Immune to Exposure if you've cast Elemental Weakness in the past 10 seconds","better":1,"matchers":[{"string":"若你過去 10 秒施放過元素要害,免疫曝曬"}],"trade":{"ids":{"explicit":["explicit.stat_2921954092"]}}} +{"ref":"Immune to Freeze and Chill while Ignited","better":1,"matchers":[{"string":"被點燃時免疫冰凍和冰緩"}],"trade":{"ids":{"explicit":["explicit.stat_1512695141"]}}} +{"ref":"Immune to Freeze while affected by Purity of Ice","better":1,"matchers":[{"string":"被冰霜淨化影響時免疫冰凍"}],"trade":{"ids":{"explicit":["explicit.stat_2720072724"]}}} +{"ref":"Immune to Ignite while affected by Purity of Fire","better":1,"matchers":[{"string":"被火焰淨化影響時免疫點燃"}],"trade":{"ids":{"explicit":["explicit.stat_371612541"]}}} +{"ref":"Immune to Reflected Damage if you've cast Punishment in the past 10 seconds","better":1,"matchers":[{"string":"若你過去 10 秒施放過懲戒,免疫反射傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2713909980"]}}} +{"ref":"Immune to Shock while affected by Purity of Lightning","better":1,"matchers":[{"string":"被閃電淨化影響時免疫感電"}],"trade":{"ids":{"explicit":["explicit.stat_281949611"]}}} +{"ref":"Immunity to Bleeding and Corrupted Blood during Effect","better":1,"matchers":[{"string":"效果持續時間,免疫流血和腐化之血"}],"trade":{"ids":{"explicit":["explicit.stat_3965637181"],"fractured":["fractured.stat_3965637181"]}}} +{"ref":"Immunity to Freeze and Chill during Effect","better":1,"matchers":[{"string":"效果持續時間,免疫冰緩和冰凍"}],"trade":{"ids":{"explicit":["explicit.stat_3838369929"],"fractured":["fractured.stat_3838369929"]}}} +{"ref":"Immunity to Freeze, Chill, Curses and Stuns during Effect","better":1,"matchers":[{"string":"效果持續時間,免疫冰凍,冰緩,詛咒和擊暈"}],"trade":{"ids":{"explicit":["explicit.stat_803730540"]}}} +{"ref":"Immunity to Ignite during Effect\nRemoves Burning on use","better":1,"matchers":[{"string":"效果持續時間免疫點燃\n使用時移除燃燒狀態"}],"trade":{"ids":{"explicit":["explicit.stat_658443507"],"fractured":["fractured.stat_658443507"]}}} +{"ref":"Immunity to Poison during Effect","better":1,"matchers":[{"string":"效果持續時間,免疫中毒"}],"trade":{"ids":{"explicit":["explicit.stat_1349296959"],"fractured":["fractured.stat_1349296959"]}}} +{"ref":"Immunity to Shock during Effect","better":1,"matchers":[{"string":"效果持續時間,免疫感電"}],"trade":{"ids":{"explicit":["explicit.stat_589991690"],"fractured":["fractured.stat_589991690"]}}} +{"ref":"Impale Damage dealt to Enemies Impaled by you Overwhelms #% Physical Damage Reduction","better":1,"matchers":[{"string":"對被你穿刺敵人所造成的穿刺傷害鎮壓 #% 物理傷害減免"}],"trade":{"ids":{"explicit":["explicit.stat_3609854472"]}}} +{"ref":"Impales you inflict last # additional Hits while using Pride","better":1,"matchers":[{"string":"使用驕傲時,你造成的穿刺額外延長 # 次擊中"}],"trade":{"ids":{"explicit":["explicit.stat_1011863394"]}}} +{"ref":"Impales you inflict last 1 additional Hit","better":1,"matchers":[{"string":"你造成的穿刺持續額外 # 次擊中"},{"string":"你造成的穿刺持續額外 1 次擊中","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3425951133"]}}} +{"ref":"Implicit Modifier magnitudes are doubled","better":1,"matchers":[{"string":"固定詞綴大小變為兩倍"}],"trade":{"ids":{"explicit":["explicit.stat_4249200326"]}}} +{"ref":"Implicit Modifier magnitudes are tripled","better":1,"matchers":[{"string":"固定詞綴大小變為三倍"}],"trade":{"ids":{"explicit":["explicit.stat_3910859570"]}}} +{"ref":"Implicit Modifiers Cannot Be Changed","better":1,"matchers":[{"string":"固定詞綴不能被改變"}],"trade":{"ids":{"implicit":["implicit.stat_532463031"]}}} +{"ref":"Incinerate has #% increased Area of Effect","better":1,"matchers":[{"string":"燒毀增加 #% 範圍效果"},{"string":"燒毀減少 #% 範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2562208244"]}}} +{"ref":"Incinerate has +# to maximum stages","better":1,"matchers":[{"string":"燒毀最多有 # 階段"}],"trade":{"ids":{"enchant":["enchant.stat_3867484047"]}}} +{"ref":"Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed","better":1,"matchers":[{"string":"增加和減少施放速度同時影響陷阱投擲速度"}],"trade":{"ids":{"explicit":["explicit.stat_3520223758"]}}} +{"ref":"Increases and Reductions to Cast Speed apply to Attack Speed","better":1,"matchers":[{"string":"增加和減少施放速度以他們值的 #% 套用至攻擊速度"},{"string":"增加和減少施放速度套用至攻擊速度","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4126447694"]}}} +{"ref":"Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage","better":1,"matchers":[{"string":"範圍內冰冷傷害的增減轉換成物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3772485866"]}}} +{"ref":"Increases and Reductions to Damage with Vaal Skills also apply to Non-Vaal Skills","better":1,"matchers":[{"string":"增加或減少瓦爾技能的傷害同時影響非瓦爾技能"}],"trade":{"ids":{"implicit":["implicit.stat_3871212304"]}}} +{"ref":"Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value","better":1,"matchers":[{"string":"範圍內能量護盾的增減轉換成 200% 的護甲"}],"trade":{"ids":{"explicit":["explicit.stat_2605119037"]}}} +{"ref":"Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield","better":1,"matchers":[{"string":"範圍內生命的增減轉換成能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_3194864913"]}}} +{"ref":"Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value","better":1,"matchers":[{"string":"範圍內增減的生命轉換成 200% 魔力"}],"trade":{"ids":{"explicit":["explicit.stat_2479374428"]}}} +{"ref":"Increases and Reductions to Light Radius also apply to Accuracy","better":1,"matchers":[{"string":"增加和減少照亮範圍同時套用至命中"}],"trade":{"ids":{"explicit":["explicit.stat_411986876"]}}} +{"ref":"Increases and Reductions to Light Radius also apply to Area of Effect at #% of their value","better":1,"matchers":[{"string":"增加和減少照亮範圍以 #% 它們的值套用至範圍效果"}],"trade":{"ids":{"explicit":["explicit.stat_1138742368"]}}} +{"ref":"Increases and Reductions to Light Radius also apply to Damage","better":1,"matchers":[{"string":"增加和減少照亮範圍同時套用至傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3519807287"]}}} +{"ref":"Increases and Reductions to Maximum Energy Shield instead apply to Ward","better":1,"matchers":[{"string":"增加和減少最大能量護盾改為套用至保護"}],"trade":{"ids":{"explicit":["explicit.stat_4100175081"]}}} +{"ref":"Increases and Reductions to Minion Damage also affect you at 150% of their value","better":1,"matchers":[{"string":"增加和減少召喚物傷害同時以他們數值的 150% 影響你"}],"trade":{"ids":{"explicit":["explicit.stat_1433144735"]}}} +{"ref":"Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage","better":1,"matchers":[{"string":"範圍內其他傷害類型的增減轉換成火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3446950357"]}}} +{"ref":"Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage","better":1,"matchers":[{"string":"範圍內物理傷害的增減轉換成冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_738100799"]}}} +{"ref":"Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value","better":1,"matchers":[{"string":"增加和減少法術傷害同時以 150% 它們的數值套用至攻擊"}],"trade":{"ids":{"explicit":["explicit.stat_185598681"]}}} +{"ref":"Infernal Blow Debuff deals an additional #% of Damage per Charge","better":1,"matchers":[{"string":"煉獄之擊減益效果造成每個充能 1 次額外 #% 的傷害"}],"trade":{"ids":{"enchant":["enchant.stat_105839441"]}}} +{"ref":"Infernal Cry has #% increased Area of Effect","better":1,"matchers":[{"string":"煉獄戰吼增加 #% 範圍效果"}],"trade":{"ids":{"implicit":["implicit.stat_631097842"]}}} +{"ref":"Infernal Cry has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"煉獄戰吼增加 #% 冷卻時間恢復速度"}],"trade":{"ids":{"enchant":["enchant.stat_2702698464"]}}} +{"ref":"Inflict Cold Exposure on Hit, applying #% to Cold Resistance","better":-1,"matchers":[{"string":"擊中時造成冰冷曝曬,#% 冰冷抗性"}],"trade":{"ids":{"implicit":["implicit.stat_3005701891"]}}} +{"ref":"Inflict Decay on Enemies you Curse with Hex Skills, dealing # Chaos Damage per Second for 8 Seconds","better":1,"matchers":[{"string":"你使用咒術或印記技能詛咒敵人,對敵人造成腐敗,每秒造成 # 混沌傷害持續 8 秒"}],"trade":{"ids":{"explicit":["explicit.stat_773846741"]}}} +{"ref":"Inflict Fire Exposure on Hit if you've cast Flammability in the past 10 seconds","better":1,"matchers":[{"string":"若你過去 10 秒施放過易燃,擊中時造成火焰曝曬"}],"trade":{"ids":{"explicit":["explicit.stat_3259812992"]}}} +{"ref":"Inflict Fire Exposure on Hit, applying #% to Fire Resistance","better":-1,"matchers":[{"string":"擊中時造成火焰曝曬,#% 火焰抗性"}],"trade":{"ids":{"implicit":["implicit.stat_1309840354"]}}} +{"ref":"Inflict Fire, Cold and Lightning Exposure on nearby Enemies when used","better":1,"matchers":[{"string":"使用時造成附近敵人火焰、冰冷和閃電曝曬"}],"trade":{"ids":{"explicit":["explicit.stat_3933226405"]}}} +{"ref":"Inflict Lightning Exposure on Hit if you've cast Conductivity in the past 10 seconds","better":1,"matchers":[{"string":"若你過去 10 秒施放過導電,擊中時造成閃電曝曬"}],"trade":{"ids":{"explicit":["explicit.stat_3339663313"]}}} +{"ref":"Inflict Lightning Exposure on Hit, applying #% to Lightning Resistance","better":-1,"matchers":[{"string":"擊中時造成閃電曝曬,#% 閃電抗性"}],"trade":{"ids":{"implicit":["implicit.stat_981753179"]}}} +{"ref":"Inflict non-Damaging Ailments as though dealing #% more Damage","better":1,"matchers":[{"string":"造成非傷害型異常狀態有如造成 #% 更多傷害"},{"string":"造成非傷害型異常狀態有如造成 #% 更少傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1345113611"]}}} +{"ref":"Inflict Withered for 2 seconds on Hit if you've cast Despair in the past 10 seconds","better":1,"matchers":[{"string":"若你過去 10 秒施放過絕望,擊中時造成凋零 2 秒"}],"trade":{"ids":{"explicit":["explicit.stat_1904031052"]}}} +{"ref":"Inflicts a random Hex on you when your Totems die","better":1,"matchers":[{"string":"當你圖騰死亡時,對你造成 1 個隨機咒術"}],"trade":{"ids":{"explicit":["explicit.stat_2918129907"]}}} +{"ref":"Inflicts Mana Burn on you when you Hit an Enemy with a Melee Weapon","better":1,"matchers":[{"string":"使用近戰武器擊中敵人時,對你造成 # 層魔力灼燒"},{"string":"使用近戰武器擊中敵人時,對你造成魔力灼燒","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1330482101"]}}} +{"ref":"Inner Conviction","better":1,"matchers":[{"string":"內觀信念"}],"trade":{"ids":{"explicit":["explicit.stat_354080151"]}}} +{"ref":"Instant Recovery when on Low Life","better":1,"matchers":[{"string":"貧血時立即恢復"}],"trade":{"ids":{"explicit":["explicit.stat_3812107348"],"fractured":["fractured.stat_3812107348"]}}} +{"ref":"Insufficient Mana doesn't prevent your Melee Attacks","better":1,"matchers":[{"string":"魔力不足仍然可以使用近戰攻擊"}],"trade":{"ids":{"explicit":["explicit.stat_1852317988"]}}} +{"ref":"Intelligence from Passives in Radius is Transformed to Dexterity","better":1,"matchers":[{"string":"將範圍內天賦所賦予的智慧轉換成敏捷"}],"trade":{"ids":{"explicit":["explicit.stat_1608425196"]}}} +{"ref":"Intelligence from Passives in Radius is Transformed to Strength","better":1,"matchers":[{"string":"將範圍內天賦所賦予的智慧轉換成力量"}],"trade":{"ids":{"explicit":["explicit.stat_1285587221"]}}} +{"ref":"Intelligence provides no inherent bonus to Maximum Mana","better":1,"matchers":[{"string":"智慧不提供最大魔力的加成"}],"trade":{"ids":{"explicit":["explicit.stat_2546599258"]}}} +{"ref":"Intimidate Enemies on Hit if you've cast Punishment in the past 10 seconds","better":1,"matchers":[{"string":"若你過去 10 秒施放過懲戒,擊中時威嚇敵人"}],"trade":{"ids":{"explicit":["explicit.stat_91505809"]}}} +{"ref":"Intimidating Cry has #% increased Area of Effect","better":1,"matchers":[{"string":"威嚇戰吼增加 #% 範圍效果"}],"trade":{"ids":{"enchant":["enchant.stat_1088946611"]}}} +{"ref":"Intimidating Cry has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"威嚇戰吼增加 #% 冷卻時間恢復速度"}],"trade":{"ids":{"implicit":["implicit.stat_1134560807"],"enchant":["enchant.stat_1134560807"]}}} +{"ref":"Iron Grip","better":1,"matchers":[{"string":"堅鐵之力"}],"trade":{"ids":{"explicit":["explicit.stat_573347393"],"fractured":["fractured.stat_573347393"],"scourge":["scourge.stat_573347393"]}}} +{"ref":"Iron Reflexes","better":1,"matchers":[{"string":"霸體"}],"trade":{"ids":{"explicit":["explicit.stat_326965591"],"scourge":["scourge.stat_326965591"]}}} +{"ref":"Iron Reflexes while stationary","better":1,"matchers":[{"string":"站立時獲得霸體"}],"trade":{"ids":{"explicit":["explicit.stat_187998220"]}}} +{"ref":"Iron Will","better":1,"matchers":[{"string":"鋼鐵意志"}],"trade":{"ids":{"explicit":["explicit.stat_4092697134"],"fractured":["fractured.stat_4092697134"],"scourge":["scourge.stat_4092697134"]}}} +{"ref":"It That Fled's Veiled","better":0,"matchers":[{"string":"竄逃之彼的隱匿"}],"trade":{"ids":{"veiled":["veiled.mod_55787"]}}} +{"ref":"Item drops on Death if Equipped by an Animated Guardian","better":1,"matchers":[{"string":"幻化守衛裝備之物品將在幻化守衛死亡時掉落"}],"trade":{"ids":{"explicit":["explicit.stat_3909846940"],"implicit":["implicit.stat_3909846940"],"fractured":["fractured.stat_3909846940"],"crafted":["crafted.stat_3909846940"]}}} +{"ref":"Item sells for much more to vendors","better":1,"matchers":[{"string":"物品販售給商人更有價值"}],"trade":{"ids":{"implicit":["implicit.stat_3513534186"]}}} +{"ref":"Items and Gems have #% increased Attribute Requirements","better":1,"matchers":[{"string":"裝備和寶石增加 #% 能力值需求"},{"string":"裝備和寶石減少 #% 能力值需求","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_752930724"]}}} +{"ref":"Karui Stone Hook","better":1,"matchers":[{"string":"卡魯石魚鉤","value":1},{"string":"艾澤麥殼魚鉤","value":2},{"string":"瓦爾魂魚鉤","value":3},{"string":"永恆鐵魚鉤","value":4}],"trade":{"ids":{"explicit":["explicit.stat_2054162825"],"fractured":["fractured.stat_2054162825"]}}} +{"ref":"Kill Enemies that have 15% or lower Life on Hit if The Searing Exarch is dominant","better":1,"matchers":[{"string":"若灼烙總督支配,擊中撲殺生命低於 15% 的敵人"}],"trade":{"ids":{"explicit":["explicit.stat_3768948090"]}}} +{"ref":"Kills grant an additional Vaal Soul if you have Rampaged Recently","better":1,"matchers":[{"string":"若你近期有暴怒,擊殺獲得 1 個額外瓦爾靈魂"}],"trade":{"ids":{"explicit":["explicit.stat_3271016161"]}}} +{"ref":"Kinetic Blast has a #% chance for an additional explosion","better":1,"matchers":[{"string":"力量爆破有 #% 機率增加一次爆破"},{"string":"力量爆破增加一次爆破","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3105097589"]}}} +{"ref":"Kinetic Bolt changes direction # additional time","better":1,"matchers":[{"string":"力量穿引額外改變方向 # 次"}],"trade":{"ids":{"enchant":["enchant.stat_1460506005"]}}} +{"ref":"Kinetic Bolt has #% increased Attack Speed","better":1,"matchers":[{"string":"力量穿引增加 #% 攻擊速度"},{"string":"力量穿引減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2244239056"]}}} +{"ref":"Kinetic Bolt has #% increased Projectile Speed","better":1,"matchers":[{"string":"力量穿引增加 #% 投射物速度"},{"string":"力量穿引減少 #% 投射物速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2482018205"]}}} +{"ref":"Knockback direction is reversed","better":1,"matchers":[{"string":"擊退方向顛倒"}],"trade":{"ids":{"explicit":["explicit.stat_281201999"]}}} +{"ref":"Knocks Back Enemies in an Area when you use a Flask","better":1,"matchers":[{"string":"使用藥劑時將區域內敵人擊退"}],"trade":{"ids":{"explicit":["explicit.stat_3591397930"]}}} +{"ref":"Korell's Veiled","better":0,"matchers":[{"string":"庫歐的隱匿"}],"trade":{"ids":{"veiled":["veiled.mod_44855"]}}} +{"ref":"Lacerate deals # to # added Physical Damage against Bleeding Enemies","better":1,"matchers":[{"string":"破空斬對流血的敵人附加 # 至 # 物理傷害"}],"trade":{"ids":{"enchant":["enchant.stat_732320584"]}}} +{"ref":"Lancing Steel deals #% increased Damage","better":1,"matchers":[{"string":"鋼之突刺增加 #% 傷害"},{"string":"鋼之突刺減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2159486200"]}}} +{"ref":"Lancing Steel fires an additional Projectile","better":1,"matchers":[{"string":"鋼之突刺發射 # 個額外投射物"},{"string":"鋼之突刺發射 1 個額外投射物","value":1}],"trade":{"ids":{"enchant":["enchant.stat_4081185348"]}}} +{"ref":"Lancing Steel has #% chance to count as consuming Steel Shards without Consuming them","better":1,"matchers":[{"string":"鋼之突刺有 #% 機率在沒有消耗鋼鐵碎片下視為有消耗"}],"trade":{"ids":{"enchant":["enchant.stat_2891251105"]}}} +{"ref":"Leech Energy Shield instead of Life","better":1,"matchers":[{"string":"偷取能量護盾而不是生命"}],"trade":{"ids":{"explicit":["explicit.stat_3346092312"]}}} +{"ref":"Left ring slot: #% increased Duration of Ailments on You","better":1,"matchers":[{"string":"左戒指欄位:增加 #% 你身上異常狀態持續時間"},{"string":"左戒指欄位:減少 #% 你身上異常狀態持續時間","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_221309863"]}}} +{"ref":"Left ring slot: #% increased Effect of Curses on you","better":1,"matchers":[{"string":"左戒指欄位:增加 #% 你身上的詛咒效果"},{"string":"左戒指欄位:減少 #% 你身上的詛咒效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_496053892"]}}} +{"ref":"Left ring slot: #% increased Mana Regeneration Rate","better":1,"matchers":[{"string":"左戒指欄位:增加 #% 魔力回復率"}],"trade":{"ids":{"explicit":["explicit.stat_195090426"]}}} +{"ref":"Left ring slot: #% increased Skill Effect Duration","better":1,"matchers":[{"string":"左戒指欄位:增加 #% 技能效果持續時間"},{"string":"左戒指欄位:減少 #% 技能效果持續時間","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3320868777"]}}} +{"ref":"Left ring slot: #% of Cold Damage from Hits taken as Fire Damage","better":1,"matchers":[{"string":"左戒指欄位:承受來自擊中的 #% 冰冷傷害視為火焰傷害"}],"trade":{"ids":{"implicit":["implicit.stat_1323927995"]}}} +{"ref":"Left ring slot: #% of Fire Damage from Hits taken as Lightning Damage","better":1,"matchers":[{"string":"左戒指欄位:承受來自擊中的 #% 火焰傷害視為閃電傷害"}],"trade":{"ids":{"implicit":["implicit.stat_17730902"]}}} +{"ref":"Left ring slot: #% of Lightning Damage from Hits taken as Cold Damage","better":1,"matchers":[{"string":"左戒指欄位:承受來自擊中的 #% 閃電傷害視為冰冷傷害"}],"trade":{"ids":{"implicit":["implicit.stat_450178102"]}}} +{"ref":"Left ring slot: +# to maximum Energy Shield","better":1,"matchers":[{"string":"左戒指欄位:# 最大能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_1497601437"]}}} +{"ref":"Left Ring slot: Cover Enemies in Ash for # seconds when you Ignite them","better":1,"matchers":[{"string":"左戒指欄位:當你點燃敵人時,餘燼纏身他們 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_2533512212"]}}} +{"ref":"Left ring slot: Minions take #% increased Damage","better":1,"matchers":[{"string":"左戒指欄位:召喚物增加承受 #% 傷害"},{"string":"左戒指欄位:召喚物減少承受 #% 傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1916904011"]}}} +{"ref":"Left ring slot: Projectiles from Spells cannot Chain","better":1,"matchers":[{"string":"左戒指欄位:法術的投射物不能連鎖"}],"trade":{"ids":{"explicit":["explicit.stat_3647242059"]}}} +{"ref":"Left ring slot: Projectiles from Spells Fork","better":1,"matchers":[{"string":"左戒指欄位:法術的投射物會分裂"}],"trade":{"ids":{"explicit":["explicit.stat_2437476305"]}}} +{"ref":"Left ring slot: Regenerate # Mana per Second","better":1,"matchers":[{"string":"左戒指欄位:每秒回復 # 魔力"}],"trade":{"ids":{"explicit":["explicit.stat_3241234878"]}}} +{"ref":"Left ring slot: You and your Minions take #% reduced Reflected Elemental Damage","better":-1,"matchers":[{"string":"左戒指欄位:你和你的召喚物增加承受 #% 反射元素傷害"},{"string":"左戒指欄位:你和你的召喚物減少承受 #% 反射元素傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2422197812"]},"inverted":true}} +{"ref":"Left ring slot: You cannot Recharge or Regenerate Energy Shield","better":1,"matchers":[{"string":"左戒指欄位:你不能充能和每秒回復能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_4263540840"]}}} +{"ref":"Left Ring Slot: Your Chilling Skitterbot's Aura applies Socketed Hex Curse instead","better":1,"matchers":[{"string":"左戒指欄位:你冰緩探測機獸的光環改施放插槽中的咒術詛咒"}],"trade":{"ids":{"explicit":["explicit.stat_625885138"]}}} +{"ref":"Leftmost # Magic Utility Flask constantly applies its Flask Effect to you","better":1,"matchers":[{"string":"最左邊 # 的魔法功能藥劑持續套用它的藥劑效果至你身上"}],"trade":{"ids":{"explicit":["explicit.stat_2388347909"]}}} +{"ref":"Leo's Veiled","better":0,"matchers":[{"string":"里歐的隱匿"}],"trade":{"ids":{"veiled":["veiled.mod_3258"]}}} +{"ref":"Lethe Shade","better":1,"matchers":[{"string":"忘卻陰影"}],"trade":{"ids":{"explicit":["explicit.stat_1678358883"],"scourge":["scourge.stat_1678358883"]}}} +{"ref":"Life and Mana Leech are instant during effect","better":1,"matchers":[{"string":"效果持續時間內立即獲得生命和魔力偷取"}],"trade":{"ids":{"explicit":["explicit.stat_1102362593"]}}} +{"ref":"Life and Mana Leech from Critical Strikes are instant","better":1,"matchers":[{"string":"立即獲得暴擊的生命和魔力偷取"}],"trade":{"ids":{"explicit":["explicit.stat_3389184522"]}}} +{"ref":"Life Flasks gain # Charge every 3 seconds","better":1,"matchers":[{"string":"生命藥劑每 3 秒獲得 # 充能"}],"trade":{"ids":{"explicit":["explicit.stat_2592686757"],"scourge":["scourge.stat_2592686757"]}}} +{"ref":"Life Flasks used while on Low Life apply Recovery Instantly","better":1,"matchers":[{"string":"貧血時使用生命藥劑,恢復為立即"}],"trade":{"ids":{"explicit":["explicit.stat_1200347828"]}}} +{"ref":"Life Leech effects are not removed when Unreserved Life is Filled","better":1,"matchers":[{"string":"當未保留生命滿時,生命偷取效果不會被移除"}],"trade":{"ids":{"explicit":["explicit.stat_2108380422"]}}} +{"ref":"Life Leech from Exerted Attacks is instant","better":1,"matchers":[{"string":"竭盡攻擊的偷取為立即"}],"trade":{"ids":{"explicit":["explicit.stat_272906215"]}}} +{"ref":"Life Leech from Hits with this Weapon is instant","better":1,"matchers":[{"string":"立即獲得此武器擊中的生命偷取"}],"trade":{"ids":{"explicit":["explicit.stat_1765389199"]}}} +{"ref":"Life Recovery from Flasks also applies to Energy Shield during Effect","better":1,"matchers":[{"string":"效果持續時間,透過藥劑恢復生命同時套用在能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_74462130"]}}} +{"ref":"Life Recovery from Regeneration is not applied","better":1,"matchers":[{"string":"不會套用至來自恢復的生命恢復"}],"trade":{"ids":{"explicit":["explicit.stat_3947672598"]}}} +{"ref":"Life that would be lost by taking Damage is instead Reserved\nuntil you take no Damage to Life for # second","better":1,"matchers":[{"string":"將承受傷害損失的生命改為保留,\n直到你 # 秒內沒受到傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1777740627"]}}} +{"ref":"Light Radius is based on Energy Shield instead of Life","better":1,"matchers":[{"string":"基於能量護盾的照亮範圍"}],"trade":{"ids":{"explicit":["explicit.stat_3836017971"],"fractured":["fractured.stat_3836017971"],"crafted":["crafted.stat_3836017971"]}}} +{"ref":"Lightning Arrow hits # additional Enemy","better":1,"matchers":[{"string":"閃電箭矢擊中 # 個額外敵人"}],"trade":{"ids":{"enchant":["enchant.stat_1901955093"]}}} +{"ref":"Lightning Conduit deals #% increased Damage","better":1,"matchers":[{"string":"導雷增加 #% 傷害"},{"string":"導雷減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2511245659"]}}} +{"ref":"Lightning Conduit has #% increased Area of Effect","better":1,"matchers":[{"string":"導雷增加 #% 範圍效果"},{"string":"導雷減少 #% 範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2252888886"]}}} +{"ref":"Lightning Conduit has #% increased Cast Speed","better":1,"matchers":[{"string":"導雷增加 #% 施放速度"}],"trade":{"ids":{"enchant":["enchant.stat_2437571727"]}}} +{"ref":"Lightning Damage of Enemies Hitting you is Lucky","better":1,"matchers":[{"string":"來自敵人擊中你的閃電傷害很幸運"}],"trade":{"ids":{"explicit":["explicit.stat_4224965099"]}}} +{"ref":"Lightning Damage with Non-Critical Strikes is Lucky","better":1,"matchers":[{"string":"非暴擊的閃電傷害很幸運"}],"trade":{"ids":{"explicit":["explicit.stat_1430928642"]}}} +{"ref":"Lightning Golems deal #% increased Damage","better":1,"matchers":[{"string":"增加 #% 雷電魔像的傷害"},{"string":"減少 #% 雷電魔像的傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3280107027"]}}} +{"ref":"Lightning Resistance cannot be Penetrated","better":1,"matchers":[{"string":"閃電抗性無法被穿透"}],"trade":{"ids":{"explicit":["explicit.stat_3515979920"],"fractured":["fractured.stat_3515979920"]}}} +{"ref":"Lightning Resistance does not affect Lightning Damage taken","better":1,"matchers":[{"string":"閃電抗性不影響承受閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3999959974"]}}} +{"ref":"Lightning Resistance is #%","better":1,"matchers":[{"string":"閃電抗性為 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1942151132"]}}} +{"ref":"Lightning Skills have #% chance to Poison on Hit","better":1,"matchers":[{"string":"閃電技能擊中有 #% 機率造成中毒"}],"trade":{"ids":{"explicit":["explicit.stat_949718413"]}}} +{"ref":"Lightning Spire Trap deals #% increased Damage","better":1,"matchers":[{"string":"鋒雷陷阱增加 #% 傷害"},{"string":"鋒雷陷阱減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_982975385"]}}} +{"ref":"Lightning Spire Trap has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"鋒雷陷阱增加 #% 冷卻時間恢復速度"},{"string":"鋒雷陷阱減少 #% 冷卻時間恢復速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1570047087"]}}} +{"ref":"Lightning Spire Trap has #% increased Skill Effect Duration","better":1,"matchers":[{"string":"鋒雷陷阱增加 #% 技能效果持續時間"},{"string":"鋒雷陷阱減少 #% 技能效果持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2207890291"]}}} +{"ref":"Lightning Spire Trap strikes an additional area","better":1,"matchers":[{"string":"鋒雷陷阱落雷至 # 個額外區域"},{"string":"鋒雷陷阱落雷至 1 個額外區域","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1104507216"]}}} +{"ref":"Lightning Strike fires an additional Projectile","better":1,"matchers":[{"string":"閃電打擊發射 # 個額外投射物"},{"string":"閃電打擊發射 1 個額外投射物","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1213035889"]}}} +{"ref":"Lightning Strike pierces an additional Target","better":1,"matchers":[{"string":"閃電打擊穿透 # 個額外目標"},{"string":"閃電打擊穿透一個額外目標","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3134777190"]}}} +{"ref":"Lightning Trap Damage Penetrates #% Lightning Resistance","better":1,"matchers":[{"string":"閃電陷阱傷害穿透 #% 閃電抗性"}],"trade":{"ids":{"enchant":["enchant.stat_1557531966"]}}} +{"ref":"Lightning Trap pierces an additional Target","better":1,"matchers":[{"string":"閃電陷阱穿透 # 個額外目標"},{"string":"閃電陷阱穿透一個額外目標","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3764410821"]}}} +{"ref":"Link Skills have #% increased Cast Speed","better":1,"matchers":[{"string":"連結技能增加 #% 施放速度"},{"string":"連結技能減少 #% 施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2597985144"]}}} +{"ref":"Link Skills have #% increased Skill Effect Duration","better":1,"matchers":[{"string":"連結技能增加 #% 技能效果持續時間"},{"string":"連結技能減少 #% 技能效果持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1214762172"]}}} +{"ref":"Linked Targets always count as in range of Non-Curse Auras from your Skills\nNon-Curse Auras from your Skills only apply to you and Linked Targets","better":1,"matchers":[{"string":"連結目標必定被視為處於你技能的非詛咒光環範圍內\n你技能的非詛咒光環只會施加在你和連結目標身上"}],"trade":{"ids":{"explicit":["explicit.stat_3678739763"]}}} +{"ref":"Linked Targets Cannot Die for # seconds after you Die","better":1,"matchers":[{"string":"你死亡後,連結的目標 # 秒內不會死"}],"trade":{"ids":{"explicit":["explicit.stat_3251211004"]}}} +{"ref":"Lockdown occurs immediately when Alert Level is full","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"達到警戒等級上限時,立刻封鎖"}],"trade":{"ids":{"explicit":["explicit.stat_1239251576"],"fractured":["fractured.stat_1239251576"]}}} +{"ref":"Lose # Life per second","better":-1,"matchers":[{"string":"每秒失去 # 生命"}],"trade":{"ids":{"explicit":["explicit.stat_771127912"],"fractured":["fractured.stat_771127912"],"crafted":["crafted.stat_771127912"]}}} +{"ref":"Lose # Mana per Second","better":-1,"matchers":[{"string":"每秒失去 # 魔力"}],"trade":{"ids":{"explicit":["explicit.stat_2589042711","explicit.stat_838272676"],"scourge":["scourge.stat_2589042711"],"crafted":["crafted.stat_838272676"]}}} +{"ref":"Lose # Mana when you use a Skill","better":-1,"matchers":[{"string":"當你使用技能時失去 # 魔力"}],"trade":{"ids":{"explicit":["explicit.stat_2924302129"]}}} +{"ref":"Lose #% of Energy Shield when you deal a Critical Strike","better":-1,"matchers":[{"string":"當你造成暴擊時失去 #% 能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_1229725509"]}}} +{"ref":"Lose #% of Life per second if you have been Hit Recently","better":-1,"matchers":[{"string":"若你近期被擊中,每秒失去 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_2325592140"]}}} +{"ref":"Lose #% of Life when you deal a Critical Strike","better":-1,"matchers":[{"string":"當你造成暴擊時失去 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_1862591837"]}}} +{"ref":"Lose #% of Mana per Second","better":-1,"matchers":[{"string":"每秒失去 #% 魔力"}],"trade":{"ids":{"explicit":["explicit.stat_2936435999"]}}} +{"ref":"Lose #% of Mana when you use an Attack Skill","better":-1,"matchers":[{"string":"當你使用攻擊技能時,失去 #% 魔力"}],"trade":{"ids":{"explicit":["explicit.stat_113147867"]}}} +{"ref":"Lose a Power Charge each second if you have not Detonated Mines Recently","better":1,"matchers":[{"string":"若你近期沒有引爆地雷,每秒失去 1 顆暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_3530865840"]}}} +{"ref":"Lose Adrenaline when you cease to be Flame-Touched","better":1,"matchers":[{"string":"當你停止被烈焰之觸時,失去腎上腺素"}],"trade":{"ids":{"explicit":["explicit.stat_138579627"]}}} +{"ref":"Lose all Eaten Souls when you use a Flask","better":1,"matchers":[{"string":"當你使用藥劑時,失去全部吞噬靈魂"}],"trade":{"ids":{"explicit":["explicit.stat_3577316952"]}}} +{"ref":"Lose all Endurance Charges when Rampage ends","better":1,"matchers":[{"string":"暴怒狀態結束時失去所有耐力球"}],"trade":{"ids":{"explicit":["explicit.stat_2881426199"]}}} +{"ref":"Lose all Fragile Regrowth when Hit","better":1,"matchers":[{"string":"被擊中時失去所有脆弱再生"}],"trade":{"ids":{"explicit":["explicit.stat_1306791873"]}}} +{"ref":"Lose all Frenzy Charges on reaching Maximum Frenzy Charges to make the next Bow Attack you perform fire that many additional Arrows","better":1,"matchers":[{"string":"到達最大狂怒球時失去全部狂怒球,使你下個弓的弓擊發射許多額外箭矢"}],"trade":{"ids":{"explicit":["explicit.stat_2522975315"]}}} +{"ref":"Lose all Power Charges on Critical Strike","better":1,"matchers":[{"string":"暴擊時失去所有暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_2735889191"]}}} +{"ref":"Lose all Power Charges on reaching Maximum Power Charges","better":1,"matchers":[{"string":"達到暴擊球最大數量時,失去所有的暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_2135899247"]}}} +{"ref":"Lose all Power Charges when you Block","better":1,"matchers":[{"string":"當你格擋時失去所有暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_3898799092"]}}} +{"ref":"Lose no Experience when you die because a Linked target died","better":1,"matchers":[{"string":"當你因為連結目標死亡而死時,不會失去經驗"}],"trade":{"ids":{"explicit":["explicit.stat_738821856"]}}} +{"ref":"Loses all Charges when you enter a new area","better":1,"matchers":[{"string":"當你進入新區域時失去所有充能"}],"trade":{"ids":{"explicit":["explicit.stat_776020689"]}}} +{"ref":"Magebane","better":1,"matchers":[{"string":"咒術災厄"}],"trade":{"ids":{"explicit":["explicit.stat_4180925106"],"fractured":["fractured.stat_4180925106"],"scourge":["scourge.stat_4180925106"]}}} +{"ref":"Magic Monsters take #% increased Damage","better":1,"matchers":[{"string":"魔法怪物增加 #% 承受傷害"},{"string":"魔法怪物減少 #% 承受傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3056215807"]}}} +{"ref":"Magic Utility Flask Effects cannot be removed","better":1,"matchers":[{"string":"魔法功能藥劑效果不能被移除"}],"trade":{"ids":{"explicit":["explicit.stat_344389721"]}}} +{"ref":"Magic Utility Flasks applied to you have #% increased Effect","better":1,"matchers":[{"string":"套用至你的魔法功能藥劑增加 #% 效果"},{"string":"套用至你的魔法功能藥劑減少 #% 效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2564857472"],"fractured":["fractured.stat_2564857472"]}}} +{"ref":"Magic Utility Flasks cannot be Used","better":1,"matchers":[{"string":"魔法功能藥劑不能使用"}],"trade":{"ids":{"explicit":["explicit.stat_3986704288"]}}} +{"ref":"Malevolence has #% increased Aura Effect","better":1,"matchers":[{"string":"惡意增加 #% 光環效果"},{"string":"惡意減少 #% 光環效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4175197580"],"implicit":["implicit.stat_4175197580"]}}} +{"ref":"Malevolence has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"惡意增加 #% 魔力保留效用"},{"string":"惡意減少 #% 魔力保留效用","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3266567165","explicit.stat_3383226338"],"enchant":["enchant.stat_3266567165","enchant.stat_3383226338"]}}} +{"ref":"Malevolence has no Reservation","better":1,"matchers":[{"string":"惡意無保留"}],"trade":{"ids":{"explicit":["explicit.stat_585622486"]}}} +{"ref":"Mana Flasks gain # Charge every 3 seconds","better":1,"matchers":[{"string":"魔力藥劑每 3 秒獲得 # 充能"}],"trade":{"ids":{"explicit":["explicit.stat_1193925814"],"scourge":["scourge.stat_1193925814"]}}} +{"ref":"Mana Flasks used while on Low Mana apply Recovery Instantly","better":1,"matchers":[{"string":"貧魔時使用魔力藥劑,恢復為立即"}],"trade":{"ids":{"explicit":["explicit.stat_1839832419"]}}} +{"ref":"Mana Recovery occurs instantly at the end of Effect","better":1,"matchers":[{"string":"效果結束時,立即觸發魔力恢復"}],"trade":{"ids":{"explicit":["explicit.stat_4204954479"],"fractured":["fractured.stat_4204954479"]}}} +{"ref":"Mana Reservation of Herald Skills is always 45%","better":1,"matchers":[{"string":"捷光環技能魔力保留維持 45%"}],"trade":{"ids":{"explicit":["explicit.stat_262773569"]}}} +{"ref":"Manabond Penetrates #% Lightning Resistance while on Low Mana","better":1,"matchers":[{"string":"貧魔時魔能束縛穿透 #% 閃電抗性"}],"trade":{"ids":{"enchant":["enchant.stat_2052200782"]}}} +{"ref":"Manifested Dancing Dervishes die when Rampage ends","better":1,"matchers":[{"string":"幻化狂舞德爾維希在暴怒結束時死亡"}],"trade":{"ids":{"explicit":["explicit.stat_1414945937"]}}} +{"ref":"Manifested Dancing Dervishes disables both weapon slots","better":1,"matchers":[{"string":"幻化時無法使用"}],"trade":{"ids":{"explicit":["explicit.stat_398335579"]}}} +{"ref":"Map Boss is accompanied by a Synthesis Boss","better":1,"fromUberAreaMods":true,"matchers":[{"string":"地圖頭目伴隨著 1 個追憶頭目"}],"trade":{"ids":{"explicit":["explicit.stat_4150353141"]}}} +{"ref":"Map Boss is surrounded by Tormented Spirits","better":1,"matchers":[{"string":"地圖頭目被罪魂包圍"}],"trade":{"ids":{"enchant":["enchant.stat_3750528071"]}}} +{"ref":"Map contains #'s Citadel","better":1,"matchers":[{"string":"地圖含有巴倫的壁壘\n物品數量以 20% 它的值增加巴倫掉落獎勵的總量","value":1},{"string":"地圖含有維羅提尼亞的壁壘\n物品數量以 20% 它的值增加維羅提尼亞掉落獎勵的總量","value":2},{"string":"地圖含有奧赫茲明的壁壘\n物品數量以 20% 它的值增加奧赫茲明掉落獎勵的總量","value":3},{"string":"地圖含有圖拉克斯的壁壘\n物品數量以 20% 它的值增加圖拉克斯掉落獎勵的總量","value":4}],"trade":{"ids":{"implicit":["implicit.stat_2563183002"]},"option":true}} +{"ref":"Map Crafting options for this Map have no cost","better":1,"fromAreaMods":true,"matchers":[{"string":"此地圖的地圖工藝選項無消耗"}],"trade":{"ids":{"implicit":["implicit.stat_4149961555"]}}} +{"ref":"Map has # additional random Modifier","better":1,"matchers":[{"string":"地圖有 # 個額外詞綴"}],"trade":{"ids":{"explicit":["explicit.stat_4003278965"]}}} +{"ref":"Map has # additional Synthesis Global Modifier","better":1,"matchers":[{"string":"地圖有 # 個額外追憶全域詞綴"}],"trade":{"ids":{"explicit":["explicit.stat_2132807290"]}}} +{"ref":"Map has an additional random Modifier from Kirac's Crafting Bench","better":1,"matchers":[{"string":"地圖有 1 個額外來自基拉克工藝台的隨機詞綴"}],"trade":{"ids":{"enchant":["enchant.stat_1389457945"]}}} +{"ref":"Map is occupied by #","better":1,"matchers":[{"string":"地圖被異界.奴役佔據","value":1},{"string":"地圖被異界.根除佔據","value":2},{"string":"地圖被異界.干擾佔據","value":3},{"string":"地圖被異界.淨化佔據","value":4}],"trade":{"ids":{"implicit":["implicit.stat_3624393862"]},"option":true}} +{"ref":"Mark Skills have #% increased Cast Speed","better":1,"matchers":[{"string":"印記技能增加 #% 施放速度"},{"string":"印記技能減少 #% 施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4189061307"]}}} +{"ref":"Maven releases all Bosses at once","better":1,"fromAreaMods":true,"matchers":[{"string":"釋界一次釋放全部頭目"}],"trade":{"ids":{"explicit":["explicit.stat_3606985138"]}}} +{"ref":"Maximum # Fragile Regrowth","better":1,"matchers":[{"string":"最多 # 層脆弱再生"}],"trade":{"ids":{"explicit":["explicit.stat_1173537953"]}}} +{"ref":"Maximum Absorption Charges is equal to Maximum Power Charges","better":1,"matchers":[{"string":"最大吸收球等於最大暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_2494027711"]}}} +{"ref":"Maximum Affliction Charges is equal to Maximum Frenzy Charges","better":1,"matchers":[{"string":"最大苦痛球等於最大狂怒球"}],"trade":{"ids":{"explicit":["explicit.stat_2817027713"]}}} +{"ref":"Maximum Brutal Charges is equal to Maximum Endurance Charges","better":1,"matchers":[{"string":"最大殘暴球等於最大耐力球"}],"trade":{"ids":{"explicit":["explicit.stat_3710150470"]}}} +{"ref":"Maximum Critical Strike Chance is 50%","better":1,"matchers":[{"string":"最大暴擊率為 50%"}],"trade":{"ids":{"explicit":["explicit.stat_1463929958"]}}} +{"ref":"Maximum Endurance, Frenzy and Power Charges is 0","better":1,"matchers":[{"string":"最大耐力、狂怒和暴擊球為 0"}],"trade":{"ids":{"explicit":["explicit.stat_2957871460"]}}} +{"ref":"Maximum Quality is #%","better":1,"matchers":[{"string":"最大品質為 #%"}],"trade":{"ids":{"explicit":["explicit.stat_275498888"]}}} +{"ref":"Maximum Resolve is 1","better":1,"matchers":[{"string":"最大決心為 1"}],"trade":{"ids":{"explicit":["sanctum.stat_1471840332"]}}} +{"ref":"Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers","better":1,"matchers":[{"string":"範圍內近戰和近戰武器加成轉換成弓類武器加成"}],"trade":{"ids":{"explicit":["explicit.stat_854030602"]}}} +{"ref":"Melee Attacks have #% chance to cause Bleeding","better":1,"matchers":[{"string":"近戰攻擊有 #% 機率造成流血效果"},{"string":"近戰攻擊造成流血效果","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1285056331"]}}} +{"ref":"Melee Attacks have #% chance to Poison on Hit","better":1,"matchers":[{"string":"近戰攻擊命中時 #% 機率造成中毒"},{"string":"近戰攻擊命中造成中毒","value":100}],"trade":{"ids":{"explicit":["explicit.stat_33065250"]}}} +{"ref":"Melee Attacks Knock Enemies Back on Hit","better":1,"matchers":[{"string":"近戰攻擊擊中敵人時造成擊退"}],"trade":{"ids":{"explicit":["explicit.stat_3962823719"],"fractured":["fractured.stat_3962823719"]}}} +{"ref":"Melee Hits count as Rampage Kills\nRampage","better":1,"matchers":[{"string":"近戰擊中是為暴怒擊殺\n暴怒"}],"trade":{"ids":{"explicit":["explicit.stat_2889807051"]}}} +{"ref":"Melee Hits Fortify","better":1,"matchers":[{"string":"近戰擊中有 #% 機率護體"},{"string":"近戰擊中護體","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1166417447"],"implicit":["implicit.stat_1166417447"]}}} +{"ref":"Melee Hits from Strike Skills Fortify","better":1,"matchers":[{"string":"來自打擊技能的近戰擊中護體"}],"trade":{"ids":{"explicit":["explicit.stat_3049891689"]}}} +{"ref":"Melee Hits which Stun have #% chance to Fortify","better":1,"matchers":[{"string":"近戰擊中造成暈眩有 #% 機率護體"},{"string":"近戰擊中造成暈眩護體","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3206381437"],"fractured":["fractured.stat_3206381437"]}}} +{"ref":"Melee Hits with Strike Skills always Knockback","better":1,"matchers":[{"string":"使用打擊技能近戰擊中必定擊退"}],"trade":{"ids":{"explicit":["explicit.stat_1737583880"]}}} +{"ref":"Melee Strike Skills deal Splash Damage to surrounding targets","better":1,"matchers":[{"string":"近戰打擊技能對目標附近造成擴散傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3675300253"]}}} +{"ref":"Melee Weapon Attacks have Culling Strike","better":1,"matchers":[{"string":"近戰武器攻擊有撲殺效果"}],"trade":{"ids":{"explicit":["explicit.stat_802532569"]}}} +{"ref":"Melee Weapon Damage Penetrates #% Elemental Resistances","better":1,"matchers":[{"string":"近戰武器傷害穿透 #% 元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_2499808413"]}}} +{"ref":"Melee Weapon Damage Penetrates #% Elemental Resistances per Mana Burn","better":1,"matchers":[{"string":"每層魔力灼燒使近戰武器傷害穿透 #% 元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_3685214225"]}}} +{"ref":"Melee Weapon Hits have #% chance to ignore Enemy Physical Damage Reduction","better":1,"matchers":[{"string":"近戰武器擊中有 #% 機率無視敵人的物理傷害減免"},{"string":"近戰武器擊中無視敵人的物理傷害減免","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1676663186"]}}} +{"ref":"Melee Weapon Hits Inflict # Withered Debuffs for 2 seconds","better":1,"matchers":[{"string":"近戰武器擊中造成 # 層凋零減益效果,持續 2 秒"}],"trade":{"ids":{"explicit":["explicit.stat_1103333624"]}}} +{"ref":"Mercury Footprints","better":1,"matchers":[{"string":"水銀爪印"}],"trade":{"ids":{"explicit":["explicit.stat_3970396418"]}}} +{"ref":"Mind Over Matter","better":1,"matchers":[{"string":"心靈昇華"}],"trade":{"ids":{"explicit":["explicit.stat_373964381"],"scourge":["scourge.stat_373964381"]}}} +{"ref":"Mines can be Detonated an additional time","better":1,"matchers":[{"string":"地雷可以被處發額外 # 次"},{"string":"地雷可以被觸發額外 1 次","value":1}],"trade":{"ids":{"explicit":["explicit.stat_325437053"]}}} +{"ref":"Mines have #% increased Detonation Speed","better":1,"matchers":[{"string":"地雷增加 #% 引爆速度"},{"string":"地雷減少 #% 引爆速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3085465082"],"fractured":["fractured.stat_3085465082"]}}} +{"ref":"Minion Instability","better":1,"matchers":[{"string":"復仇之靈"}],"trade":{"ids":{"explicit":["explicit.stat_433293234"],"scourge":["scourge.stat_433293234"]}}} +{"ref":"Minion Life is increased by their Overcapped Fire Resistance","better":1,"matchers":[{"string":"召喚物的生命被它們超過上限的火焰抗性增加"}],"trade":{"ids":{"explicit":["explicit.stat_1586164348"]}}} +{"ref":"Minions are Aggressive","better":1,"matchers":[{"string":"召喚物有侵略性"}],"trade":{"ids":{"explicit":["explicit.stat_128585622"],"fractured":["fractured.stat_128585622"]}}} +{"ref":"Minions can hear the whispers for # seconds after they deal a Critical Strike","better":1,"matchers":[{"string":"召喚物造成暴擊後,可以聽到低語 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_2735021664"]}}} +{"ref":"Minions cannot be Blinded","better":1,"matchers":[{"string":"召喚物不會被致盲"}],"trade":{"ids":{"explicit":["explicit.stat_2684385509"]}}} +{"ref":"Minions convert #% of Physical Damage to Chaos Damage per White Socket","better":1,"matchers":[{"string":"每個白色插槽使召喚物轉化 #% 物理傷害為混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_199362230"]}}} +{"ref":"Minions convert #% of Physical Damage to Cold Damage","better":1,"matchers":[{"string":"召喚物轉化 #% 物理傷害為冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_264042266"]}}} +{"ref":"Minions convert #% of Physical Damage to Cold Damage per Green Socket","better":1,"matchers":[{"string":"每個綠色插槽使召喚物轉化 #% 物理傷害為冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_306443498"]}}} +{"ref":"Minions convert #% of Physical Damage to Fire Damage per Red Socket","better":1,"matchers":[{"string":"每個紅色插槽使召喚物轉化 #% 物理傷害為火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2139569643"]}}} +{"ref":"Minions convert #% of Physical Damage to Lightning Damage per Blue Socket","better":1,"matchers":[{"string":"每個藍色插槽使召喚物轉化 #% 物理傷害為閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3366426512"]}}} +{"ref":"Minions Convert #% of their Maximum Life to Maximum Energy\nShield per 1% Chaos Resistance they have","better":1,"matchers":[{"string":"召喚物每 1% 混沌抗性,\n將他們 #% 的最大生命轉化為最大能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_433536969"]}}} +{"ref":"Minions count as having the same number of\nEndurance, Frenzy and Power Charges as you","better":1,"matchers":[{"string":"召喚物視為擁有與你相同的\n耐力球、狂怒球和暴擊球數量"}],"trade":{"ids":{"explicit":["explicit.stat_2797097751"]}}} +{"ref":"Minions deal # to # additional Attack Physical Damage","better":1,"matchers":[{"string":"召喚物附加 # 至 # 攻擊物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_797833282"]}}} +{"ref":"Minions deal # to # additional Chaos Damage","better":1,"matchers":[{"string":"召喚物造成額外 # 至 # 混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2889601781"],"fractured":["fractured.stat_2889601781"]}}} +{"ref":"Minions deal # to # additional Cold Damage","better":1,"matchers":[{"string":"召喚物造成額外 # 至 # 冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3152982863"],"fractured":["fractured.stat_3152982863"]}}} +{"ref":"Minions deal # to # additional Fire Damage","better":1,"matchers":[{"string":"召喚物造成額外 # 至 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3351784991"],"fractured":["fractured.stat_3351784991"]}}} +{"ref":"Minions deal # to # additional Lightning Damage","better":1,"matchers":[{"string":"召喚物造成額外 # 至 # 閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2930653471"],"fractured":["fractured.stat_2930653471"]}}} +{"ref":"Minions deal # to # additional Physical Damage","better":1,"matchers":[{"string":"召喚物造成額外 # 至 # 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1172029298"],"fractured":["fractured.stat_1172029298"]}}} +{"ref":"Minions deal #% increased Damage","better":1,"matchers":[{"string":"召喚物增加 #% 傷害"},{"string":"召喚物減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1589917703"],"implicit":["implicit.stat_1589917703"],"fractured":["fractured.stat_1589917703"],"enchant":["enchant.stat_1589917703"],"scourge":["scourge.stat_1589917703"],"crafted":["crafted.stat_1589917703"]}}} +{"ref":"Minions deal #% increased Damage if you've Hit Recently","better":1,"matchers":[{"string":"若你近期有擊中,召喚物增加 #% 傷害"},{"string":"若你近期有擊中,召喚物減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2337295272"]}}} +{"ref":"Minions deal #% increased Damage if you've used a Minion Skill Recently","better":1,"matchers":[{"string":"若你近期有使用召喚物技能,召喚物增加 #% 傷害"},{"string":"若你近期有使用召喚物技能,召喚物減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_412745376"],"fractured":["fractured.stat_412745376"]}}} +{"ref":"Minions deal #% increased Damage per 5 Dexterity","better":1,"matchers":[{"string":"每 10 點敏捷增加 #% 召喚物所造成的傷害"},{"string":"每 10 點敏捷減少 #% 召喚物所造成的傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4187741589"]}}} +{"ref":"Minions deal #% increased Damage with Hits and Ailments against Abyssal Monsters","better":1,"matchers":[{"string":"召喚物對深淵怪物增加 #% 擊中和異常狀態傷害"},{"string":"召喚物對深淵怪物減少 #% 擊中和異常狀態傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1086057912"],"fractured":["fractured.stat_1086057912"]}}} +{"ref":"Minions deal no Non-Cold Damage","better":1,"matchers":[{"string":"召喚物不會造成非冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_935592011"]}}} +{"ref":"Minions gain #% of Elemental Damage as Extra Chaos Damage","better":1,"matchers":[{"string":"召喚物獲得 #% 元素傷害的額外混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_247168950"]}}} +{"ref":"Minions gain #% of Physical Damage as Extra Cold Damage","better":1,"matchers":[{"string":"召喚物獲得等同 #% 物理傷害的額外冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1236638414"]}}} +{"ref":"Minions gain #% of Physical Damage as Extra Fire Damage","better":1,"matchers":[{"string":"召喚物獲得 #% 物理傷害的額外火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3217428772"]}}} +{"ref":"Minions gain Added Physical Damage equal to #% of Maximum Energy Shield on your Equipped Helmet","better":1,"matchers":[{"string":"召喚物獲得等同你裝備頭盔上 #% 最大能量護盾的附加物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2268802111"]}}} +{"ref":"Minions gain Unholy Might for # seconds on Kill","better":1,"matchers":[{"string":"殺敵時召喚物獲得不潔之力持續 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_3835570161"]}}} +{"ref":"Minions have #% additional Physical Damage Reduction","better":1,"matchers":[{"string":"召喚物有 #% 額外物理傷害減免"}],"trade":{"ids":{"explicit":["explicit.stat_3119612865"],"fractured":["fractured.stat_3119612865"]}}} +{"ref":"Minions have #% chance to Blind Enemies on hit","better":1,"matchers":[{"string":"召喚物擊中敵人時有 #% 機率造成致盲"}],"trade":{"ids":{"explicit":["explicit.stat_2939409392"]}}} +{"ref":"Minions have #% chance to Blind on Hit with Attacks","better":1,"matchers":[{"string":"攻擊擊中時召喚物有 #% 機率造成致盲"},{"string":"攻擊擊中時召喚物造成致盲","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2431643207"],"fractured":["fractured.stat_2431643207"]}}} +{"ref":"Minions have #% chance to cause Bleeding with Attacks","better":1,"matchers":[{"string":"召喚物的攻擊有 #% 機率造成流血"},{"string":"召喚物的攻擊造成流血","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3998967779"],"fractured":["fractured.stat_3998967779"]}}} +{"ref":"Minions have #% chance to deal Double Damage","better":1,"matchers":[{"string":"召喚物有 #% 機率造成 2 倍傷害"}],"trade":{"ids":{"explicit":["explicit.stat_755922799"],"fractured":["fractured.stat_755922799"]}}} +{"ref":"Minions have #% chance to Freeze, Shock and Ignite","better":1,"matchers":[{"string":"召喚物有 #% 機率造成冰凍、感電和點燃"},{"string":"召喚物必定造成冰凍、感電和點燃","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1994549323"]}}} +{"ref":"Minions have #% chance to gain Unholy Might for 4 seconds on Kill","better":1,"matchers":[{"string":"召喚物擊殺時有 #% 機率獲得不潔之力 4 秒"},{"string":"召喚物擊殺時獲得不潔之力 4 秒","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3131367308"]}}} +{"ref":"Minions have #% chance to Hinder Enemies on Hit with Spells","better":1,"matchers":[{"string":"召喚物使用法術擊中時有 #% 機率阻礙敵人"},{"string":"召喚物使用法術擊中時阻礙敵人","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2323739383"],"fractured":["fractured.stat_2323739383"]}}} +{"ref":"Minions have #% chance to Ignite","better":1,"matchers":[{"string":"召喚物有 #% 機率造成點燃"}],"trade":{"ids":{"explicit":["explicit.stat_3945908658"],"fractured":["fractured.stat_3945908658"]}}} +{"ref":"Minions have #% chance to inflict Withered on Hit","better":1,"matchers":[{"string":"召喚物擊中時有 #% 機率造成凋零"}],"trade":{"ids":{"explicit":["explicit.stat_1387367793"]}}} +{"ref":"Minions have #% chance to Maim Enemies on Hit with Attacks","better":1,"matchers":[{"string":"召喚物使用攻擊擊中時,有 #% 機率癱瘓敵人"},{"string":"召喚物使用攻擊擊中時,癱瘓敵人","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2138548436"]}}} +{"ref":"Minions have #% chance to Poison Enemies on Hit","better":1,"matchers":[{"string":"召喚物擊中時有 #% 機率使敵人中毒"},{"string":"召喚物擊中時使敵人中毒","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1974445926"],"fractured":["fractured.stat_1974445926"]}}} +{"ref":"Minions have #% chance to Taunt on Hit with Attacks","better":1,"matchers":[{"string":"攻擊擊中時召喚物有 #% 機率造成嘲諷"},{"string":"攻擊擊中時召喚物造成嘲諷","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2911442053"],"fractured":["fractured.stat_2911442053"],"scourge":["scourge.stat_2911442053"]}}} +{"ref":"Minions have #% faster start of Energy Shield Recharge","better":1,"matchers":[{"string":"召喚物比平常快 #% 回復能量護盾"},{"string":"召喚物比平常慢 #% 回復能量護盾","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2834476618"]}}} +{"ref":"Minions have #% increased Area of Effect","better":1,"matchers":[{"string":"召喚物增加 #% 範圍效果"},{"string":"召喚物減少 #% 範圍效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3811191316"],"fractured":["fractured.stat_3811191316"]}}} +{"ref":"Minions have #% increased Attack and Cast Speed","better":1,"matchers":[{"string":"召喚物增加 #% 攻擊和施放速度"},{"string":"召喚物減少 #% 攻擊和施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3091578504"],"fractured":["fractured.stat_3091578504"]}}} +{"ref":"Minions have #% increased Attack Speed","better":1,"matchers":[{"string":"召喚物增加 #% 攻擊速度"},{"string":"召喚物減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3375935924"],"implicit":["implicit.stat_3375935924"],"fractured":["fractured.stat_3375935924"],"scourge":["scourge.stat_3375935924"],"crafted":["crafted.stat_3375935924"]}}} +{"ref":"Minions have #% increased Cast Speed","better":1,"matchers":[{"string":"召喚物增加 #% 施放速度"},{"string":"召喚物減少 #% 施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4000101551"],"implicit":["implicit.stat_4000101551"],"fractured":["fractured.stat_4000101551"],"scourge":["scourge.stat_4000101551"],"crafted":["crafted.stat_4000101551"]}}} +{"ref":"Minions have #% increased Critical Strike Chance","better":1,"matchers":[{"string":"召喚物增加 #% 暴擊率"},{"string":"召喚物減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_491450213"],"fractured":["fractured.stat_491450213"]}}} +{"ref":"Minions have #% increased Critical Strike Chance per Maximum Power Charge you have","better":1,"matchers":[{"string":"召喚物根據你身上每顆最大暴擊球,增加 #% 暴擊率"},{"string":"召喚物根據你身上每顆最大暴擊球,減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_446070669"]}}} +{"ref":"Minions have #% increased Flask Effect Duration","better":1,"matchers":[{"string":"召喚物增加 #% 藥劑效果持續時間"},{"string":"召喚物減少 #% 藥劑效果持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1932583315"]}}} +{"ref":"Minions have #% increased maximum Life","better":1,"matchers":[{"string":"召喚物增加 #% 最大生命"},{"string":"召喚物減少 #% 最大生命","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_770672621"],"implicit":["implicit.stat_770672621"],"fractured":["fractured.stat_770672621"],"enchant":["enchant.stat_770672621"],"scourge":["scourge.stat_770672621"],"crafted":["crafted.stat_770672621"]}}} +{"ref":"Minions have #% increased Movement Speed","better":1,"matchers":[{"string":"召喚物增加 #% 移動速度"},{"string":"召喚物減少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_174664100"],"implicit":["implicit.stat_174664100"],"fractured":["fractured.stat_174664100"],"crafted":["crafted.stat_174664100"]}}} +{"ref":"Minions have #% reduced Flask Charges used","better":-1,"matchers":[{"string":"召喚物增加 #% 使用藥劑充能"},{"string":"召喚物減少 #% 使用藥劑充能","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_180240697"]},"inverted":true}} +{"ref":"Minions have +# to Accuracy Rating","better":1,"matchers":[{"string":"召喚物 # 命中值"}],"trade":{"ids":{"explicit":["explicit.stat_1661151735"],"fractured":["fractured.stat_1661151735"]}}} +{"ref":"Minions have +# to Accuracy Rating per 10 Devotion","better":1,"matchers":[{"string":"每 10 個奉獻召喚物 # 命中值"}],"trade":{"ids":{"explicit":["explicit.stat_2830135449"]}}} +{"ref":"Minions have +# to Armour","better":1,"matchers":[{"string":"召喚物有 # 點護甲"}],"trade":{"ids":{"explicit":["explicit.stat_2048970144"]}}} +{"ref":"Minions have +#% Chance to Block Attack Damage","better":1,"matchers":[{"string":"召喚物有 #% 攻擊傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_3374054207"],"fractured":["fractured.stat_3374054207"],"scourge":["scourge.stat_3374054207"]}}} +{"ref":"Minions have +#% Chance to Block Spell Damage","better":1,"matchers":[{"string":"召喚物有 #% 格擋法術傷害機率"}],"trade":{"ids":{"explicit":["explicit.stat_2762046953"],"scourge":["scourge.stat_2762046953"]}}} +{"ref":"Minions have +#% chance to Suppress Spell Damage","better":1,"matchers":[{"string":"召喚物有 #% 壓抑法術傷害率"}],"trade":{"ids":{"explicit":["explicit.stat_3195300715"]}}} +{"ref":"Minions have +#% to all Elemental Resistances","better":1,"matchers":[{"string":"召喚物有 #% 全部元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1423639565"],"implicit":["implicit.stat_1423639565"],"fractured":["fractured.stat_1423639565"],"scourge":["scourge.stat_1423639565"],"crafted":["crafted.stat_1423639565"]}}} +{"ref":"Minions have +#% to all maximum Elemental Resistances","better":1,"matchers":[{"string":"召喚物 #% 全部最大元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_10224385"],"fractured":["fractured.stat_10224385"]}}} +{"ref":"Minions have +#% to Chaos Resistance","better":1,"matchers":[{"string":"召喚物有 #% 混沌抗性"}],"trade":{"ids":{"explicit":["explicit.stat_3837707023"],"fractured":["fractured.stat_3837707023"],"scourge":["scourge.stat_3837707023"]}}} +{"ref":"Minions have +#% to Cold Resistance","better":1,"matchers":[{"string":"召喚物有 #% 冰冷抗性"}],"trade":{"ids":{"explicit":["explicit.stat_2200407711"]}}} +{"ref":"Minions have +#% to Critical Strike Multiplier","better":1,"matchers":[{"string":"召喚物 #% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_1854213750"],"fractured":["fractured.stat_1854213750"]}}} +{"ref":"Minions have +#% to Critical Strike Multiplier per Grand Spectrum","better":1,"matchers":[{"string":"每顆巨光譜使召喚物 #% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_482240997"]}}} +{"ref":"Minions have +#% to Critical Strike Multiplier per Withered Debuff on Enemy","better":1,"matchers":[{"string":"敵人身上每層凋零,使召喚物 #% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_1494965559"]}}} +{"ref":"Minions have +#% to Damage over Time Multiplier per\nGhastly Eye Jewel affecting you, up to a maximum of +30%","better":1,"matchers":[{"string":"每顆影響你的極懼之眼珠寶,使召喚物 #% 持續傷害加成,最多 +30%"}],"trade":{"ids":{"explicit":["explicit.stat_613055432"]}}} +{"ref":"Minions have +#% to Fire Resistance","better":1,"matchers":[{"string":"召喚物 #% 火焰抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1889350679"]}}} +{"ref":"Minions have the same maximum number of Endurance, Frenzy and Power Charges as you","better":1,"matchers":[{"string":"召喚物擁有與你相同的耐力球、狂怒球和暴擊球最大數量"}],"trade":{"ids":{"explicit":["explicit.stat_3879726065"]}}} +{"ref":"Minions Leech #% of Damage as Life","dp":true,"better":1,"matchers":[{"string":"召喚物偷取 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_2770782267"],"fractured":["fractured.stat_2770782267"],"scourge":["scourge.stat_2770782267"]}}} +{"ref":"Minions Leech #% of Damage as Life against Poisoned Enemies","dp":true,"better":1,"matchers":[{"string":"召喚物對中毒敵人造成的 #% 傷害偷取生命"}],"trade":{"ids":{"explicit":["explicit.stat_548721233"]}}} +{"ref":"Minions Recover #% of Life on Killing a Poisoned Enemy","better":1,"matchers":[{"string":"擊殺中毒敵人時,召喚物恢復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_2602664175"]}}} +{"ref":"Minions Recover #% of their Life when they Block","better":1,"matchers":[{"string":"當召喚物格擋時,他們恢復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_676967140"]}}} +{"ref":"Minions Recover #% of their Life when you Focus","better":1,"matchers":[{"string":"當你專注時,召喚物恢復 #% 它的的生命"}],"trade":{"ids":{"explicit":["explicit.stat_3500359417"],"fractured":["fractured.stat_3500359417"],"crafted":["crafted.stat_3500359417"]}}} +{"ref":"Minions Regenerate # Life per second","better":1,"matchers":[{"string":"召喚物每秒回復 # 生命"}],"trade":{"ids":{"explicit":["explicit.stat_3062329212"],"fractured":["fractured.stat_3062329212"]}}} +{"ref":"Minions Regenerate #% of Life per second","better":1,"matchers":[{"string":"召喚物每秒回復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_2479683456"],"implicit":["implicit.stat_2479683456"],"fractured":["fractured.stat_2479683456"],"scourge":["scourge.stat_2479683456"]}}} +{"ref":"Minions summoned by Your Scout Towers have #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"3,3"}],"matchers":[{"string":"你哨兵塔召喚的召喚物增加 #% 傷害"},{"string":"你哨兵塔召喚的召喚物減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3473724367"]}}} +{"ref":"Minions summoned by Your Scout Towers have #% increased Life","better":1,"matchers":[{"string":"你哨兵塔召喚的召喚物增加 #% 生命"},{"string":"你哨兵塔召喚的召喚物減少 #% 生命","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1282857477"]}}} +{"ref":"Minions summoned by Your Scout Towers have #% increased Movement Speed","better":1,"anointments":[{"roll":25,"oils":"6,11"}],"matchers":[{"string":"你哨兵塔召喚的召喚物增加 #% 移動速度"},{"string":"你哨兵塔召喚的召喚物減少 #% 移動速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_971955285"]}}} +{"ref":"Minions summoned by Your Scout Towers inflict Malediction on Hit","better":1,"anointments":[{"roll":1,"oils":"7,10"}],"matchers":[{"string":"你哨兵塔召喚的召喚物擊中時造成惡語術"}],"trade":{"ids":{"enchant":["enchant.stat_42482990"]}}} +{"ref":"Minions summoned by Your Sentinel Towers have #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"1,5"}],"matchers":[{"string":"你衛士塔召喚的召喚物增加 #% 傷害"},{"string":"你衛士塔召喚的召喚物減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2013536039"]}}} +{"ref":"Minions summoned by Your Sentinel Towers have #% increased Life","better":1,"anointments":[{"roll":50,"oils":"10,11"}],"matchers":[{"string":"你衛士塔召喚的召喚物增加 #% 生命"},{"string":"你衛士塔召喚的召喚物減少 #% 生命","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3640837971"]}}} +{"ref":"Minions summoned by Your Sentinel Towers have #% increased Movement Speed","better":1,"anointments":[{"roll":25,"oils":"8,11"}],"matchers":[{"string":"你衛士塔召喚的召喚物增加 #% 移動速度"},{"string":"你衛士塔召喚的召喚物減少 #% 移動速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1971866993"]}}} +{"ref":"Minions summoned by Your Sentinel Towers Leech #% of Damage as Life","dp":true,"better":1,"anointments":[{"roll":2,"oils":"7,7"}],"matchers":[{"string":"你衛士塔召喚的召喚物 #% 傷害偷取生命"}],"trade":{"ids":{"enchant":["enchant.stat_4148328809"]}}} +{"ref":"Minions summoned by Your Summoning Towers have #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"2,4"}],"matchers":[{"string":"你召喚塔召喚的召喚物增加 #% 傷害"},{"string":"你召喚塔召喚的召喚物減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_850390248"]}}} +{"ref":"Minions summoned by Your Summoning Towers have #% increased Life","better":1,"anointments":[{"roll":50,"oils":"5,12"}],"matchers":[{"string":"你召喚塔召喚的召喚物增加 #% 生命"},{"string":"你召喚塔召喚的召喚物減少 #% 生命","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3651039490"]}}} +{"ref":"Minions summoned by Your Summoning Towers have #% increased Movement Speed","better":1,"anointments":[{"roll":25,"oils":"5,11"}],"matchers":[{"string":"你召喚塔召喚的召喚物增加 #% 移動速度"},{"string":"你召喚塔召喚的召喚物減少 #% 移動速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1378482149"]}}} +{"ref":"Minions take #% reduced Reflected Damage","better":-1,"matchers":[{"string":"召喚物增加承受 #% 反射傷害"},{"string":"召喚物減少承受 #% 反射傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3056045252"]},"inverted":true}} +{"ref":"Minions' Base Attack Critical Strike Chance is equal to the Critical\nStrike Chance of your Main Hand Weapon","better":1,"matchers":[{"string":"召喚物的基礎攻擊暴擊率\n等同你主手武器的暴擊率"}],"trade":{"ids":{"explicit":["explicit.stat_3700085184"]}}} +{"ref":"Minions' Hits can only Kill Ignited Enemies","better":1,"matchers":[{"string":"召喚物擊中只能擊殺點燃敵人"}],"trade":{"ids":{"explicit":["explicit.stat_1736403946"]}}} +{"ref":"Mirror Arrow and Mirror Arrow Clones deal #% increased Damage","better":1,"matchers":[{"string":"增加魅影射擊和其召喚物 #% 傷害"},{"string":"減少魅影射擊和其召喚物 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4136186767"]}}} +{"ref":"Mirror Arrow and Mirror Arrow Clones have #% increased Attack Speed","better":1,"matchers":[{"string":"增加魅影射擊和魅影射擊召喚物 #% 攻擊速度"},{"string":"減少魅影射擊和魅影射擊召喚物 #% 攻擊速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3653459847"]}}} +{"ref":"Mirror Arrow has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"魅影射擊增加 #% 冷卻時間恢復速度"},{"string":"魅影射擊減少 #% 冷卻時間恢復速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1781106044"]}}} +{"ref":"Mirrored Tablet has # Islands","better":1,"matchers":[{"string":"鏡像碑牌有 # 島嶼 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_lake_number_of_islands"]}}} +{"ref":"Modifiers to Attributes instead apply to Omniscience","better":1,"matchers":[{"string":"能力詞綴改為套用至全知"}],"trade":{"ids":{"explicit":["explicit.stat_1411347992"]}}} +{"ref":"Modifiers to Chance to Avoid being Shocked apply to all Elemental Ailments","better":1,"matchers":[{"string":"避免被感電機率的詞綴套用至全部元素異常狀態"}],"trade":{"ids":{"explicit":["explicit.stat_2543019543"]}}} +{"ref":"Modifiers to Chance to Suppress Spell Damage also apply to Chance to Avoid Elemental Ailments at #% of their Value","better":1,"matchers":[{"string":"壓抑法術傷害率詞綴同時以 #% 它們的值套用至避免元素異常狀態率"}],"trade":{"ids":{"explicit":["explicit.stat_2401345409"]}}} +{"ref":"Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed with Melee Skills","better":1,"matchers":[{"string":"爪攻擊速度詞綴同時套用至使用近戰技能的空手攻擊速度"}],"trade":{"ids":{"explicit":["explicit.stat_2988055461"]}}} +{"ref":"Modifiers to Claw Critical Strike Chance also apply to Unarmed Critical Strike Chance with Melee Skills","better":1,"matchers":[{"string":"爪暴擊率詞綴同時套用至使用近戰技能的空手暴擊率"}],"trade":{"ids":{"explicit":["explicit.stat_531932482"]}}} +{"ref":"Modifiers to Claw Damage also apply to Unarmed Attack Damage with Melee Skills","better":1,"matchers":[{"string":"爪傷害詞綴同時套用至使用近戰技能的空手攻擊傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2865232420"]}}} +{"ref":"Modifiers to Ignite Duration on you apply to all Elemental Ailments","better":1,"matchers":[{"string":"你身上點燃持續時間詞綴套用至全部元素異常狀態"}],"trade":{"ids":{"explicit":["explicit.stat_2845551354"]}}} +{"ref":"Modifiers to Item Quantity will affect the number of encounter rewards dropped by #% of their value","better":1,"matchers":[{"string":"物品數量詞綴以它們 #% 的值,影響事件的總獎勵數量"},{"string":"物品數量詞綴影響事件的總獎勵數量","value":100}],"trade":{"ids":{"implicit":["implicit.stat_1522386771"]}}} +{"ref":"Modifiers to Minimum Endurance Charges instead apply to Minimum Brutal Charges","better":1,"matchers":[{"string":"最小耐力球詞綴改為套用為最小殘暴球"}],"trade":{"ids":{"explicit":["explicit.stat_2966482502"]}}} +{"ref":"Modifiers to Minimum Frenzy Charges instead apply to Minimum Affliction Charges","better":1,"matchers":[{"string":"最小狂怒球詞綴改為套用最小苦痛球"}],"trade":{"ids":{"explicit":["explicit.stat_1424305790"]}}} +{"ref":"Modifiers to Minimum Power Charges instead apply to Minimum Absorption Charges","better":1,"matchers":[{"string":"最小暴擊球詞綴改為套用最小吸收球"}],"trade":{"ids":{"explicit":["explicit.stat_1752582590"]}}} +{"ref":"Modifiers to number of Projectiles instead apply\nto the number of targets Projectiles Split towards","better":1,"matchers":[{"string":"投射物數量的詞綴取代套用為投射物對目標裂化數量"}],"trade":{"ids":{"explicit":["explicit.stat_2057712935"]}}} +{"ref":"Molten Shell has #% increased Skill Effect Duration","better":1,"matchers":[{"string":"熔岩護盾增加 #% 技能效果持續時間"},{"string":"熔岩護盾減少 #% 技能效果持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4255043252"]}}} +{"ref":"Molten Strike fires an additional Projectile","better":1,"matchers":[{"string":"熔岩之擊有 # 個額外投射物"},{"string":"熔岩之擊有 1 個額外投射物","value":1}],"trade":{"ids":{"enchant":["enchant.stat_995860222"]}}} +{"ref":"Monster Damage Penetrates #% Elemental Resistances","better":1,"fromUberAreaMods":true,"matchers":[{"string":"怪物傷害穿透 #% 元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1898978455"],"fractured":["fractured.stat_1898978455"]}}} +{"ref":"Monsters are Hexproof","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"怪物不能受到詛咒"}],"trade":{"ids":{"explicit":["explicit.stat_4154059009"],"fractured":["fractured.stat_4154059009"]}}} +{"ref":"Monsters are Unaffected by Curses","better":1,"fromAreaMods":true,"matchers":[{"string":"怪物不被詛咒影響"}],"trade":{"ids":{"explicit":["explicit.stat_1472832594"]}}} +{"ref":"Monsters cannot be Leeched from","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"怪物無法被偷取"}],"trade":{"ids":{"explicit":["explicit.stat_1140978125"],"fractured":["fractured.stat_1140978125"]}}} +{"ref":"Monsters cannot be Stunned","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"怪物不會被暈眩"}],"trade":{"ids":{"explicit":["explicit.stat_1041951480"],"fractured":["fractured.stat_1041951480"]}}} +{"ref":"Monsters cannot be Taunted","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"怪物不能被嘲諷"}],"trade":{"ids":{"explicit":["explicit.stat_1106651798"],"fractured":["fractured.stat_1106651798"]}}} +{"ref":"Monsters deal #% extra Physical Damage as Cold","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"怪物造成 #% 額外物理傷害視為冰冷"}],"trade":{"ids":{"explicit":["explicit.stat_3448216135"],"fractured":["fractured.stat_3448216135"]}}} +{"ref":"Monsters deal #% extra Physical Damage as Fire","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"怪物造成 #% 額外物理傷害視為火焰"}],"trade":{"ids":{"explicit":["explicit.stat_1497673356"],"fractured":["fractured.stat_1497673356"]}}} +{"ref":"Monsters deal #% extra Physical Damage as Lightning","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"怪物造成 #% 額外物理傷害視為閃電"}],"trade":{"ids":{"explicit":["explicit.stat_3416853625"],"fractured":["fractured.stat_3416853625"]}}} +{"ref":"Monsters fire # additional Projectiles","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"怪物發射 # 額外投射物"},{"string":"玩家發射 # 額外投射物"},{"string":"玩家與怪物發射 # 額外投射物"}],"trade":{"ids":{"explicit":["explicit.stat_1309819744"],"fractured":["fractured.stat_1309819744"]}}} +{"ref":"Monsters gain #% of Maximum Life as Extra Maximum Energy Shield","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"怪物獲得 #% 最大生命的額外最大能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_2887760183"],"fractured":["fractured.stat_2887760183"]}}} +{"ref":"Monsters gain #% of their Physical Damage as Extra Chaos Damage","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"怪物獲得等同它們 #% 物理傷害的額外混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1840747977"],"fractured":["fractured.stat_1840747977"]}}} +{"ref":"Monsters gain #% of their Physical Damage as Extra Damage of a random Element","better":1,"fromUberAreaMods":true,"matchers":[{"string":"怪物獲得 #% 物理傷害的額外 1 個隨機元素傷害"}],"trade":{"ids":{"explicit":["explicit.stat_4062840317"],"fractured":["fractured.stat_4062840317"]}}} +{"ref":"Monsters have #% chance to Avoid Ailments","better":1,"fromAreaMods":true,"matchers":[{"string":"怪物有 #% 機率避免異常狀態"}],"trade":{"ids":{"explicit":["explicit.stat_376585490"]}}} +{"ref":"Monsters have #% chance to Avoid Elemental Ailments","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"怪物有 #% 機率避免元素異常狀態"}],"trade":{"ids":{"explicit":["explicit.stat_322206271"],"fractured":["fractured.stat_322206271"]}}} +{"ref":"Monsters have #% chance to Blind on Hit","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"怪物擊中時有 #% 機率致盲"},{"string":"怪物擊中時致盲","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1629869774"],"fractured":["fractured.stat_1629869774"]}}} +{"ref":"Monsters have #% chance to drop Double Aureus Coins","better":1,"matchers":[{"string":"怪物有 #% 機率掉落 2 倍奧瑞厄斯幣"}],"trade":{"ids":{"explicit":["sanctum.stat_231205265"]}}} +{"ref":"Monsters have #% chance to Duplicate dropped Rogue's Marker","better":1,"matchers":[{"string":"怪物有 #% 機率複製掉落的盜賊之印"},{"string":"怪物複製掉落的盜賊之印","value":100}],"trade":{"ids":{"explicit":["explicit.stat_823106560"]}}} +{"ref":"Monsters have #% chance to gain a Frenzy Charge on Hit","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"怪物擊中時有 #% 機率獲得 1 顆狂怒球"},{"string":"怪物擊中時獲得 1 顆狂怒球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1742567045"],"fractured":["fractured.stat_1742567045"]}}} +{"ref":"Monsters have #% chance to gain a Power Charge on Hit","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"怪物擊中時有 #% 機率獲得 1 顆暴擊球"},{"string":"怪物擊中時獲得 1 顆暴擊球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_406353061"],"fractured":["fractured.stat_406353061"]}}} +{"ref":"Monsters have #% chance to gain an Endurance Charge on Hit","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"怪物擊中時有 #% 機率獲得 1 顆耐力球"},{"string":"怪物擊中時獲得 1 顆耐力球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_687813731"],"fractured":["fractured.stat_687813731"]}}} +{"ref":"Monsters have #% chance to Hinder on Hit with Spells","better":1,"fromAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"怪物法術擊中時有 #% 機率造成阻礙"},{"string":"怪物法術擊中時造成阻礙","value":100}],"trade":{"ids":{"explicit":["explicit.stat_962720646"],"fractured":["fractured.stat_962720646"]}}} +{"ref":"Monsters have #% chance to inflict Withered for 2 seconds on Hit","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"怪物擊中時有 #% 機率造成凋零 2 秒"},{"string":"怪物擊中時造成凋零 2 秒","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3044826007"],"fractured":["fractured.stat_3044826007"]}}} +{"ref":"Monsters have #% chance to Maim on Hit with Attacks","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"怪物攻擊擊中時有 #% 機率造成癱瘓"},{"string":"怪物攻擊擊中時造成癱瘓","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4164174520"],"fractured":["fractured.stat_4164174520"]}}} +{"ref":"Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"怪物擊中時有 #% 機率偷取暴擊、狂怒和耐力球"},{"string":"怪物擊中時偷取暴擊、狂怒和耐力球","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3222482040"],"fractured":["fractured.stat_3222482040"]}}} +{"ref":"Monsters have #% increased Accuracy Rating","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"怪物增加 #% 命中值"},{"string":"怪物減少 #% 命中值","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1588049749"],"fractured":["fractured.stat_1588049749"]}}} +{"ref":"Monsters have #% increased Area of Effect","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"增加怪物 #% 範圍效果"},{"string":"減少怪物 #% 範圍效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1708461270"],"fractured":["fractured.stat_1708461270"]}}} +{"ref":"Monsters have #% increased Critical Strike Chance","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"怪物增加 #% 暴擊率"},{"string":"怪物減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2753083623"],"fractured":["fractured.stat_2753083623"]}}} +{"ref":"Monsters have #% increased Poison Duration","better":1,"fromUberAreaMods":true,"matchers":[{"string":"怪物增加 #% 中毒持續時間"},{"string":"怪物減少 #% 中毒持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_134839587"],"fractured":["fractured.stat_134839587"]}}} +{"ref":"Monsters have +# to Maximum Endurance Charges","better":1,"fromUberAreaMods":true,"matchers":[{"string":"怪物耐力球上限 #"}],"trade":{"ids":{"explicit":["explicit.stat_4067268731"],"fractured":["fractured.stat_4067268731"]}}} +{"ref":"Monsters have +# to Maximum Frenzy Charges","better":1,"fromUberAreaMods":true,"matchers":[{"string":"怪物狂怒球上限 #"}],"trade":{"ids":{"explicit":["explicit.stat_3900284865"],"fractured":["fractured.stat_3900284865"]}}} +{"ref":"Monsters have +# to Maximum Power Charges","better":1,"fromUberAreaMods":true,"matchers":[{"string":"怪物暴擊球上限 #"}],"trade":{"ids":{"explicit":["explicit.stat_1103106414"],"fractured":["fractured.stat_1103106414"]}}} +{"ref":"Monsters have +#% Chance to Block Attack Damage","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"matchers":[{"string":"怪物 #% 攻擊傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_881836292"],"fractured":["fractured.stat_881836292"]}}} +{"ref":"Monsters have +#% Chance to Block Spell Damage","better":1,"fromAreaMods":true,"matchers":[{"string":"怪物 #% 法術傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_395617565"]}}} +{"ref":"Monsters have +#% chance to Suppress Spell Damage","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"怪物 #% 壓抑法術傷害率"}],"trade":{"ids":{"explicit":["explicit.stat_2138205941"],"fractured":["fractured.stat_2138205941"]}}} +{"ref":"Monsters have a #% chance to avoid Poison, Impale, and Bleeding","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"怪物有 #% 機率避免中毒、穿刺和流血"}],"trade":{"ids":{"explicit":["explicit.stat_144665660"],"fractured":["fractured.stat_144665660"]}}} +{"ref":"Monsters have a #% chance to gain an Endurance Charge when hit","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Monsters have a #% chance to gain an Endurance Charge when hit"},{"string":"Monsters gain an Endurance Charge when hit","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3707756896"],"fractured":["fractured.stat_3707756896"]}}} +{"ref":"Monsters have a #% chance to Ignite, Freeze and Shock on Hit","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"擊中時,怪物有 #% 機率點燃、冰凍和感電"},{"string":"擊中時,怪物點燃、冰凍和感電","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2553656203"],"fractured":["fractured.stat_2553656203"]}}} +{"ref":"Monsters impact #% increased Resolve","better":1,"matchers":[{"string":"怪物影響增加 #% 決心"},{"string":"怪物影響減少 #% 決心","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_3554249693"]}}} +{"ref":"Monsters inflict # Grasping Vine on Hit","better":1,"fromUberAreaMods":true,"matchers":[{"string":"怪物擊中時造成 # 層緩速藤蔓"}],"trade":{"ids":{"explicit":["explicit.stat_1751584857"],"fractured":["fractured.stat_1751584857"]}}} +{"ref":"Monsters Poison on Hit","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"被怪物擊中時中毒"}],"trade":{"ids":{"explicit":["explicit.stat_3350803563","explicit.stat_394639761"],"fractured":["fractured.stat_3350803563"]}}} +{"ref":"Monsters prevent +#% of Suppressed Spell Damage","better":1,"fromAreaMods":true,"matchers":[{"string":"怪物 #% 防止壓抑法術傷害的總量"},{"string":"怪物防止 #% 壓抑法術傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1260060682"]}}} +{"ref":"Monsters reflect #% of Elemental Damage","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"怪物反射 #% 元素傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2764017512"],"fractured":["fractured.stat_2764017512"]}}} +{"ref":"Monsters reflect #% of Physical Damage","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"怪物反射 #% 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3464419871"],"fractured":["fractured.stat_3464419871"]}}} +{"ref":"Monsters Reflect Hexes","better":1,"fromAreaMods":true,"matchers":[{"string":"怪物反射咒術"}],"trade":{"ids":{"explicit":["explicit.stat_1341845920"]}}} +{"ref":"Monsters take #% increased Damage","better":1,"matchers":[{"string":"怪物增加承受 #% 傷害"},{"string":"怪物減少承受 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3007862517","sanctum.stat_2549512259"]}}} +{"ref":"Monsters take #% reduced Extra Damage from Critical Strikes","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"減少 #% 怪物承受的暴擊傷害"},{"string":"增加 #% 怪物承受的暴擊傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_337935900"],"fractured":["fractured.stat_337935900"]}}} +{"ref":"Monsters' Action Speed cannot be modified to below Base Value","better":1,"fromUberAreaMods":true,"matchers":[{"string":"怪物的行動速度不能被調整至低於基礎值"}],"trade":{"ids":{"explicit":["explicit.stat_2758454849"],"fractured":["fractured.stat_2758454849"]}}} +{"ref":"Monsters' Action Speed cannot be modified to below Base Value\nMonsters' Movement Speed cannot be modified to below Base Value","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"怪物的行動速度不能被調整至低於基礎值\n怪物的移動速度不能被調整至低於基礎值"}],"trade":{"ids":{"explicit":["explicit.stat_798009319"],"fractured":["fractured.stat_798009319"]}}} +{"ref":"Monsters' Attacks have #% chance to Impale on Hit","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"怪物的攻擊擊中時有 #% 機率造成穿刺"},{"string":"怪物的攻擊擊中時造成穿刺","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1541224187"],"fractured":["fractured.stat_1541224187"]}}} +{"ref":"Monsters' Movement Speed cannot be modified to below Base Value","better":1,"fromUberAreaMods":true,"matchers":[{"string":"怪物的移動速度不能被調整至低於基礎值"}],"trade":{"ids":{"explicit":["explicit.stat_777421120"],"fractured":["fractured.stat_777421120"]}}} +{"ref":"Monsters' Projectiles have #% chance to be able to Chain when colliding with Terrain","better":1,"fromUberAreaMods":true,"matchers":[{"string":"當怪物的投射物撞擊地面時,有 #% 機率會連鎖"},{"string":"當怪物的投射物撞擊地面時連鎖","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2753403220"]}}} +{"ref":"Monsters' skills Chain # additional times","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"怪物的技能附加 # 次連鎖"}],"trade":{"ids":{"explicit":["explicit.stat_3183973644"],"fractured":["fractured.stat_3183973644"]}}} +{"ref":"More Currency: #%","better":1,"matchers":[{"string":"更多通貨:#% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_more_currency_drops"]}}} +{"ref":"More Divination Cards: #%","better":1,"matchers":[{"string":"額外命運卡:#% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_more_card_drops"]}}} +{"ref":"More Maps: #%","better":1,"matchers":[{"string":"更多地圖:#% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_more_map_drops"]}}} +{"ref":"More Scarabs: #%","better":1,"matchers":[{"string":"更多聖甲蟲:#% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_more_scarab_drops"]}}} +{"ref":"Movement Speed cannot be modified to below Base Value","better":1,"matchers":[{"string":"你的移動速度加成不會讓你降至基礎速度以下"}],"trade":{"ids":{"explicit":["explicit.stat_3875592188"],"fractured":["fractured.stat_3875592188"]}}} +{"ref":"Moving while Bleeding doesn't cause you to take extra Damage","better":1,"matchers":[{"string":"流血狀態下移動不再承受額外的傷害"}],"trade":{"ids":{"explicit":["explicit.stat_935326447"],"fractured":["fractured.stat_935326447"],"crafted":["crafted.stat_935326447"]}}} +{"ref":"Nearby allies gain #% increased Damage","better":1,"matchers":[{"string":"附近友方獲得增加 #% 傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3175679225"]}}} +{"ref":"Nearby Allies gain #% increased Mana Regeneration Rate","better":1,"matchers":[{"string":"附近的友軍獲得 #% 魔力回復"}],"trade":{"ids":{"explicit":["explicit.stat_778848857"]}}} +{"ref":"Nearby Allies gain #% of Life Regenerated per second","better":1,"matchers":[{"string":"附近友方獲得每秒回復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_3462673103"]}}} +{"ref":"Nearby Allies have #% Chance to Block Attack Damage per 100 Strength you have","better":1,"matchers":[{"string":"每 100 點你的力量,使附近友方有 #% 攻擊傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_3941641418"]}}} +{"ref":"Nearby Allies have #% increased Cast Speed per 100 Intelligence you have","better":1,"matchers":[{"string":"附近友方根據你每 100 點智會增加 #% 施放速度"},{"string":"附近友方根據你每 100 點智會減少 #% 施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2373999301"]}}} +{"ref":"Nearby Allies have #% increased Defences per 100 Strength you have","better":1,"matchers":[{"string":"附近友方根據你每 100 點力量增加 #% 防禦"},{"string":"附近友方根據你每 100 點力量減少 #% 防禦","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3767939384"]}}} +{"ref":"Nearby Allies have #% increased Item Rarity","better":1,"matchers":[{"string":"附近友方增加 #% 物品稀有度"},{"string":"附近友方減少 #% 物品稀有度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1722463112"]}}} +{"ref":"Nearby Allies have +# Fortification","better":1,"matchers":[{"string":"附近友方有 # 護體"}],"trade":{"ids":{"explicit":["explicit.stat_244825991"]}}} +{"ref":"Nearby Allies have +#% to Critical Strike Multiplier","better":1,"matchers":[{"string":"附近友方 #% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_3152714748"]}}} +{"ref":"Nearby Allies have +#% to Critical Strike Multiplier per 100 Dexterity you have","better":1,"matchers":[{"string":"附近友方根據你每 100 點敏捷 #% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_1438488526"]}}} +{"ref":"Nearby Allies have Culling Strike","better":1,"matchers":[{"string":"附近友方獲得撲殺"}],"trade":{"ids":{"explicit":["explicit.stat_1560540713"]}}} +{"ref":"Nearby allies Recover #% of your Maximum Life when you Die","dp":true,"better":1,"matchers":[{"string":"附近友方在你死亡時會恢復等同你最大生命 #% 的生命"}],"trade":{"ids":{"explicit":["explicit.stat_3484267929"]}}} +{"ref":"Nearby Allies' Action Speed cannot be modified to below Base Value","better":1,"matchers":[{"string":"附近友方的行動速度不能被調整至基礎值以下"}],"trade":{"ids":{"explicit":["explicit.stat_1356468153"]}}} +{"ref":"Nearby Allies' Damage with Hits is Lucky","better":1,"matchers":[{"string":"附近友方的擊中傷害很幸運"}],"trade":{"ids":{"explicit":["explicit.stat_655871604"]}}} +{"ref":"Nearby corpses Explode when you Warcry, dealing #% of their Life as Physical Damage","better":1,"matchers":[{"string":"當你戰吼時附近屍體爆炸,造成 #% 它們生命的物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_293071889"]}}} +{"ref":"Nearby Enemies are Blinded","better":1,"matchers":[{"string":"附近敵人被致盲"}],"trade":{"ids":{"explicit":["explicit.stat_2826979740"],"implicit":["implicit.stat_2826979740"]}}} +{"ref":"Nearby Enemies are Blinded while Physical Aegis is not depleted","better":1,"matchers":[{"string":"物理聖盾未耗盡時,附近敵人被致盲"}],"trade":{"ids":{"explicit":["explicit.stat_2504709365"]}}} +{"ref":"Nearby Enemies are Chilled","better":1,"matchers":[{"string":"附近敵人被冰緩"}],"trade":{"ids":{"explicit":["explicit.stat_2159555743","explicit.stat_2480873346"]}}} +{"ref":"Nearby Enemies are Covered in Ash","better":1,"matchers":[{"string":"附近的敵人餘燼纏身"}],"trade":{"ids":{"explicit":["explicit.stat_746994389"]}}} +{"ref":"Nearby Enemies are Crushed","better":1,"matchers":[{"string":"附近敵人被壓碎"}],"trade":{"ids":{"implicit":["implicit.stat_3608782127"]}}} +{"ref":"Nearby Enemies are Crushed while you have at least # Rage","better":1,"matchers":[{"string":"當你只少有 # 層盛怒時,附近敵人被壓碎"}],"trade":{"ids":{"explicit":["explicit.stat_3069588220"]}}} +{"ref":"Nearby Enemies are Hindered, with #% reduced Movement Speed","better":-1,"matchers":[{"string":"附近敵人被緩速,增加 #% 移動速度"},{"string":"附近敵人被緩速,減少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_607839150"]},"inverted":true}} +{"ref":"Nearby Enemies are Intimidated","better":1,"matchers":[{"string":"附近敵人受到威嚇"}],"trade":{"ids":{"explicit":["explicit.stat_2899095498"]}}} +{"ref":"Nearby Enemies are Scorched","better":1,"matchers":[{"string":"附近敵人被焦灼"}],"trade":{"ids":{"explicit":["explicit.stat_3733114005"]}}} +{"ref":"Nearby Enemies cannot deal Critical Strikes","better":1,"matchers":[{"string":"附近敵人不能造成暴擊"}],"trade":{"ids":{"explicit":["explicit.stat_1177959871"]}}} +{"ref":"Nearby Enemies cannot gain Power, Frenzy or Endurance Charges","better":1,"matchers":[{"string":"附近敵人不能獲得暴擊、狂怒或耐力球"}],"trade":{"ids":{"explicit":["explicit.stat_4031527864"]}}} +{"ref":"Nearby Enemies Convert #% of their Physical Damage to Fire","better":1,"matchers":[{"string":"附近敵人轉化 #% 它們的物理傷害至火焰"}],"trade":{"ids":{"explicit":["explicit.stat_3729324251"]}}} +{"ref":"Nearby Enemies grant #% increased Flask Charges","better":1,"matchers":[{"string":"附近敵人給予增加 #% 藥劑充能"},{"string":"附近敵人給予減少 #% 藥劑充能","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3547189490"]}}} +{"ref":"Nearby Enemies have #% increased Effect of Curses on them","better":1,"matchers":[{"string":"附近敵人增加 #% 被詛咒的效果"}],"trade":{"ids":{"explicit":["explicit.stat_443525707"]}}} +{"ref":"Nearby Enemies have #% increased Fire and Cold Resistances","better":1,"matchers":[{"string":"附近敵人增加 #% 火焰和冰冷抗性最終效用"},{"string":"附近敵人減少 #% 火焰和冰冷抗性最終效用","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4273356746"]}}} +{"ref":"Nearby Enemies have #% reduced Stun and Block Recovery","better":-1,"matchers":[{"string":"附近敵人增加 #% 暈眩和格擋恢復"},{"string":"附近敵人減少 #% 暈眩和格擋恢復","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3169825297"]},"inverted":true}} +{"ref":"Nearby Enemies have #% to all Resistances","better":-1,"matchers":[{"string":"附近敵人有 #% 全部抗性"}],"trade":{"ids":{"explicit":["explicit.stat_668145148"]}}} +{"ref":"Nearby Enemies have +#% to Chaos Resistance","better":-1,"matchers":[{"string":"附近敵人 #% 混沌抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1902595112"],"fractured":["fractured.stat_1902595112"],"scourge":["scourge.stat_1902595112"]}}} +{"ref":"Nearby Enemies have +#% to Cold Resistance","better":-1,"matchers":[{"string":"附近敵人 #% 冰冷抗性"}],"trade":{"ids":{"explicit":["explicit.stat_2674336304"],"fractured":["fractured.stat_2674336304"],"scourge":["scourge.stat_2674336304"]}}} +{"ref":"Nearby Enemies have +#% to Fire Resistance","better":-1,"matchers":[{"string":"附近敵人 #% 火焰抗性"}],"trade":{"ids":{"explicit":["explicit.stat_3914021960"],"fractured":["fractured.stat_3914021960"],"scourge":["scourge.stat_3914021960"]}}} +{"ref":"Nearby Enemies have +#% to Lightning Resistance","better":-1,"matchers":[{"string":"附近敵人 #% 閃電抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1849749435"],"fractured":["fractured.stat_1849749435"],"scourge":["scourge.stat_1849749435"]}}} +{"ref":"Nearby Enemies have Lightning Resistance equal to yours","better":1,"matchers":[{"string":"附近敵人的閃電抗性等於你的閃電抗性"}],"trade":{"ids":{"explicit":["explicit.stat_3549734978"]}}} +{"ref":"Nearby Enemies have Malediction","better":1,"matchers":[{"string":"附近敵人有惡語術"}],"trade":{"ids":{"implicit":["implicit.stat_2774148053"]}}} +{"ref":"Nearby Enemies Killed by anyone count as being Killed by you instead","better":1,"matchers":[{"string":"附近被任何人擊殺的敵人視為被你擊殺"}],"trade":{"ids":{"explicit":["explicit.stat_2307982579"]}}} +{"ref":"Nearby Enemies take #% increased Elemental Damage","better":1,"matchers":[{"string":"附近敵人增加承受 #% 元素傷害"}],"trade":{"ids":{"explicit":["explicit.stat_639595152"],"fractured":["fractured.stat_639595152"]}}} +{"ref":"Nearby Enemies take #% increased Physical Damage","better":1,"matchers":[{"string":"附近敵人增加承受 #% 物理傷害"},{"string":"附近敵人減少承受 #% 物理傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_415837237"],"fractured":["fractured.stat_415837237"],"scourge":["scourge.stat_415837237"]}}} +{"ref":"Nearby Enemies' Chaos Resistance is 0","better":1,"matchers":[{"string":"附近敵人的混沌抗性為 0"}],"trade":{"ids":{"explicit":["explicit.stat_663080464"]}}} +{"ref":"Nearby Enemy Monsters have at least #% of Life Reserved","better":1,"matchers":[{"string":"附近敵人怪物至少保留 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_1063263585"]}}} +{"ref":"Nearby stationary Enemies gain a Grasping Vine every second","better":1,"matchers":[{"string":"附近站立的敵人每 # 秒獲得 1 層緩速藤蔓"},{"string":"附近站立的敵人每秒獲得 1 層緩速藤蔓","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3469279727"]}}} +{"ref":"Necrotic Footprints","better":1,"matchers":[{"string":"死靈足跡"}],"trade":{"ids":{"explicit":["explicit.stat_214242256"]}}} +{"ref":"Never deal Critical Strikes","better":1,"matchers":[{"string":"不會暴擊"}],"trade":{"ids":{"explicit":["explicit.stat_3638599682"],"scourge":["scourge.stat_3638599682"]}}} +{"ref":"No Chance to Block","better":1,"matchers":[{"string":"沒有格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_1023752508"]}}} +{"ref":"No Resolve Mitigation, chance to Avoid Resolve loss or Resolve Aegis","better":1,"matchers":[{"string":"沒有決心輕減、避免失去決心機率或決心護盾"}],"trade":{"ids":{"explicit":["sanctum.stat_1278905604"]}}} +{"ref":"No Travel Cost","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"沒有旅費"}],"trade":{"ids":{"explicit":["explicit.stat_2946222246"],"fractured":["fractured.stat_2946222246"]}}} +{"ref":"Non-Aura Curses you inflict are not removed from Dying Enemies","better":1,"matchers":[{"string":"你造成的非光環詛咒不會從垂死的敵人移除"}],"trade":{"ids":{"explicit":["explicit.stat_847744351"]}}} +{"ref":"Non-Aura Hexes expire upon reaching #% of base Effect","better":1,"matchers":[{"string":"非光環咒術在到達 #% 基礎效果時失效"}],"trade":{"ids":{"explicit":["explicit.stat_2417456003"]}}} +{"ref":"Non-Aura Hexes gain 20% increased Effect per second","better":1,"matchers":[{"string":"每秒非光環咒術增加 20% 效果"}],"trade":{"ids":{"explicit":["explicit.stat_3266609002"]}}} +{"ref":"Non-Aura Vaal Skills require #% reduced Souls Per Use","better":-1,"matchers":[{"string":"非光環瓦爾技能每次使用增加 #% 靈魂需求"},{"string":"非光環瓦爾技能每次使用減少 #% 靈魂需求","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3533432197"],"fractured":["fractured.stat_3533432197"]},"inverted":true}} +{"ref":"Non-Aura Vaal Skills require #% reduced Souls Per Use during Effect","better":-1,"matchers":[{"string":"非光環瓦爾技能效果持續時間每次使用增加 #% 需要靈魂"},{"string":"非光環瓦爾技能效果持續時間每次使用減少 #% 需要靈魂","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1274125114"]},"inverted":true}} +{"ref":"Non-Channelling Skills Cost +# Mana","better":1,"matchers":[{"string":"非引導施放技能消耗 # 魔力"}],"trade":{"ids":{"explicit":["explicit.stat_407482587"],"crafted":["crafted.stat_407482587"]}}} +{"ref":"Non-Channelling Skills have +# to Total Mana Cost","better":1,"matchers":[{"string":"非引導施放技能 # 總魔力消耗"}],"trade":{"ids":{"explicit":["explicit.stat_677564538"],"fractured":["fractured.stat_677564538"],"crafted":["crafted.stat_677564538"]}}} +{"ref":"Non-Channelling Skills have +# to Total Mana Cost while affected by Clarity","better":1,"matchers":[{"string":"被清晰影響時,非引導施放技能 # 總魔力消耗"}],"trade":{"ids":{"explicit":["explicit.stat_1853636813"]}}} +{"ref":"Non-Chilled Enemies you inflict Bleeding on are Chilled","better":1,"matchers":[{"string":"你造成流血的非冰緩敵人被冰緩"}],"trade":{"ids":{"explicit":["explicit.stat_398940995"]}}} +{"ref":"Non-Chilled Enemies you Poison are Chilled","better":1,"matchers":[{"string":"你造成中毒的非冰緩敵人被冰緩"}],"trade":{"ids":{"explicit":["explicit.stat_3998191356"]}}} +{"ref":"Non-critical strikes deal #% more Damage","better":1,"matchers":[{"string":"非暴擊造成 #% 更多傷害"},{"string":"非暴擊造成 #% 更少傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1711683262"]}}} +{"ref":"Non-Critical Strikes deal no Damage","better":1,"matchers":[{"string":"非暴擊不能造成傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2511969244"]}}} +{"ref":"Non-Damaging Ailments have #% increased Effect on you while you have Arcane Surge","better":1,"matchers":[{"string":"當你有秘能波動時,增加 #% 你身上非傷害型異常狀態的效果"},{"string":"當你有秘能波動時,減少 #% 你身上非傷害型異常狀態的效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3014823981"]}}} +{"ref":"Non-Exerted Attacks deal no Damage","better":1,"matchers":[{"string":"非竭盡攻擊不會造成傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3303984198"]}}} +{"ref":"Non-instant Mana Recovery from Flasks is also Recovered as Life","better":1,"matchers":[{"string":"非立即透過藥劑恢復魔力也會恢復生命"}],"trade":{"ids":{"explicit":["explicit.stat_2262007777"]}}} +{"ref":"Non-Unique Utility Flasks you Use apply to Linked Targets","better":1,"matchers":[{"string":"你使用的非傳奇功能藥劑,套用至連結的目標"}],"trade":{"ids":{"explicit":["explicit.stat_865273657"]}}} +{"ref":"Non-Vaal Strike Skills target # additional nearby Enemy","better":1,"matchers":[{"string":"非瓦爾打擊技能瞄準 # 額外附近敵人"}],"trade":{"ids":{"explicit":["explicit.stat_1661253443"],"implicit":["implicit.stat_1661253443"]}}} +{"ref":"Notable Passive Skills in Radius are Transformed to\ninstead grant: #% increased Mana Cost of Skills and #% increased Spell Damage","better":1,"matchers":[{"string":"Notable Passive Skills in Radius are Transformed to\ninstead grant: #% increased Mana Cost of Skills and #% increased Spell Damage"}],"trade":{"ids":{"explicit":["explicit.stat_3430460307"]}}} +{"ref":"Notable Passive Skills in Radius are Transformed to\ninstead grant: Minions have #% increased Movement Speed","better":1,"matchers":[{"string":"範圍內的強力天賦轉化為\n給予:召喚物增加 #% 移動速度"},{"string":"範圍內的強力天賦轉化為\n給予:召喚物減少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3362879252"]}}} +{"ref":"Notable Passive Skills in Radius are Transformed to\ninstead grant: Minions take #% increased Damage","better":1,"matchers":[{"string":"範圍內的強力天賦轉化為\n給予:召喚物增加 #% 承受傷害"},{"string":"範圍內的強力天賦轉化為\n給予:召喚物減少 #% 承受傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3659983276"]}}} +{"ref":"Notable Passive Skills in Radius grant nothing","better":1,"matchers":[{"string":"範圍內的強力天賦沒有效果"}],"trade":{"ids":{"explicit":["explicit.stat_2627243269"]}}} +{"ref":"Nova Spells deal 30% less Damage to Players with Hits and Ailments\nNova Spells Cast at the targeted location instead of around you","better":1,"matchers":[{"string":"新星法術對玩家造成 30% 更少擊中和異常狀態傷害\n新星法術於目標為至施放,而不是你附近"}],"trade":{"ids":{"explicit":["explicit.stat_728246008"]}}} +{"ref":"Nova Spells have #% more Area of Effect","better":1,"matchers":[{"string":"新星法術有 #% 更多範圍效果"},{"string":"新星法術有 #% 更少範圍效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_200113086"]}}} +{"ref":"of Aisling's Veil","better":0,"matchers":[{"string":"愛斯林隱匿之"}],"trade":{"ids":{"veiled":["veiled.mod_48007"]}}} +{"ref":"of Cameria's Veil","better":0,"matchers":[{"string":"卡麥歷亞隱匿之"}],"trade":{"ids":{"veiled":["veiled.mod_65163"]}}} +{"ref":"of Hillock's Veil","better":0,"matchers":[{"string":"西拉克隱匿之"}],"trade":{"ids":{"veiled":["veiled.mod_3975"]}}} +{"ref":"of Janus' Veil","better":0,"matchers":[{"string":"傑納斯隱匿之"}],"trade":{"ids":{"veiled":["veiled.mod_11536"]}}} +{"ref":"of Jorgin's Veil","better":0,"matchers":[{"string":"喬恩隱匿之"}],"trade":{"ids":{"veiled":["veiled.mod_62955"]}}} +{"ref":"of Riker's Veil","better":0,"matchers":[{"string":"萊可隱匿之"}],"trade":{"ids":{"veiled":["veiled.mod_48408"]}}} +{"ref":"of the Veil","better":0,"matchers":[{"string":"隱匿之"}],"trade":{"ids":{"veiled":["veiled.mod_63099"]}}} +{"ref":"Offering Skills have #% increased Duration","better":1,"matchers":[{"string":"奉獻技能增加 #% 持續時間"},{"string":"奉獻技能減少 #% 持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2957407601"]}}} +{"ref":"On Killing a Poisoned Enemy, nearby Enemies are Poisoned","better":1,"matchers":[{"string":"擊殺中毒的敵人可使附近敵人中毒"}],"trade":{"ids":{"explicit":["explicit.stat_456916387"]}}} +{"ref":"Only affects Passives in # Ring","better":1,"matchers":[{"string":"只會影響小範圍內的天賦","advanced":"只會影響小範圍內的天賦(小範圍-非常大範圍)","value":1},{"string":"只會影響中範圍內的天賦","advanced":"只會影響中範圍內的天賦(小範圍-非常大範圍)","value":2},{"string":"只會影響大範圍內的天賦","advanced":"只會影響大範圍內的天賦(小範圍-非常大範圍)","value":3},{"string":"只會影響非常大範圍內的天賦","advanced":"只會影響非常大範圍內的天賦(小範圍-非常大範圍)","value":4},{"string":"只會影響極大範圍內的天賦","advanced":"只會影響極大範圍內的天賦","value":5}],"trade":{"ids":{"explicit":["explicit.stat_3642528642"]},"option":true}} +{"ref":"Onslaught","better":1,"matchers":[{"string":"猛攻"}],"trade":{"ids":{"explicit":["explicit.stat_1520059289"],"implicit":["implicit.stat_1520059289"]}}} +{"ref":"Orb of Storms deals #% increased Damage","better":1,"matchers":[{"string":"風暴漩渦增加 #% 傷害"},{"string":"風暴漩渦減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4084540709"]}}} +{"ref":"Orb of Storms has #% increased Cast Speed","better":1,"matchers":[{"string":"增加 #% 風暴漩渦施放速度"}],"trade":{"ids":{"enchant":["enchant.stat_2778301298"]}}} +{"ref":"Pain Attunement","better":1,"matchers":[{"string":"苦痛靈曲"}],"trade":{"ids":{"explicit":["explicit.stat_98977150"],"scourge":["scourge.stat_98977150"]}}} +{"ref":"Passive Skills in Radius also grant #% increased Armour","better":1,"matchers":[{"string":"範圍內的天賦同時增加 #% 護甲"},{"string":"範圍內的天賦同時減少 #% 護甲","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1647724040"]}}} +{"ref":"Passive Skills in Radius also grant #% increased Chaos Damage","better":1,"matchers":[{"string":"範圍內的天賦同時增加 #% 混沌傷害"},{"string":"範圍內的天賦同時減少 #% 混沌傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1313763128"]}}} +{"ref":"Passive Skills in Radius also grant #% increased Cold Damage","better":1,"matchers":[{"string":"範圍內的天賦同時增加 #% 冰冷傷害"},{"string":"範圍內的天賦同時減少 #% 冰冷傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2999571636"]}}} +{"ref":"Passive Skills in Radius also grant #% increased Energy Shield","better":1,"matchers":[{"string":"範圍內的天賦同時增加 #% 能量護盾"},{"string":"範圍內的天賦同時減少 #% 能量護盾","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4215928287"]}}} +{"ref":"Passive Skills in Radius also grant #% increased Evasion Rating","better":1,"matchers":[{"string":"範圍內的天賦同時增加 #% 閃避值"},{"string":"範圍內的天賦同時減少 #% 閃避值","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3761482453"]}}} +{"ref":"Passive Skills in Radius also grant #% increased Fire Damage","better":1,"matchers":[{"string":"範圍內的天賦同時增加 #% 火焰傷害"},{"string":"範圍內的天賦同時減少 #% 火焰傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_719810173"]}}} +{"ref":"Passive Skills in Radius also grant #% increased Global Critical Strike Chance","better":1,"matchers":[{"string":"範圍內的天賦同時增加 #% 全域暴擊機率"},{"string":"範圍內的天賦同時減少 #% 全域暴擊機率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3901726941"]}}} +{"ref":"Passive Skills in Radius also grant #% increased Lightning Damage","better":1,"matchers":[{"string":"範圍內的天賦同時增加 #% 閃電傷害"},{"string":"範圍內的天賦同時減少 #% 閃電傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3556460433"]}}} +{"ref":"Passive Skills in Radius also grant #% increased Physical Damage","better":1,"matchers":[{"string":"範圍內的天賦同時增加 #% 物理傷害"},{"string":"範圍內的天賦同時減少 #% 物理傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3252387974"]}}} +{"ref":"Passive Skills in Radius also grant +# to all Attributes","better":1,"matchers":[{"string":"範圍內的天賦同時給予 # 全能力"}],"trade":{"ids":{"explicit":["explicit.stat_3587101704"]}}} +{"ref":"Passive Skills in Radius also grant +# to maximum Life","better":1,"matchers":[{"string":"範圍內的天賦同時給予 # 最大生命"}],"trade":{"ids":{"explicit":["explicit.stat_1223932609"]}}} +{"ref":"Passive Skills in Radius also grant +# to maximum Mana","better":1,"matchers":[{"string":"範圍內的天賦同時給予 # 最大魔力"}],"trade":{"ids":{"explicit":["explicit.stat_3382199855"]}}} +{"ref":"Passive Skills in Radius also grant +#% to Chaos Resistance","better":1,"matchers":[{"string":"範圍內的天賦同時給予 #% 混沌抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1812306107"]}}} +{"ref":"Passive Skills in Radius also grant: #% increased Unarmed Attack Speed with Melee Skills","better":1,"matchers":[{"string":"範圍內天賦同時給予:近戰技能增加 #% 空手攻擊速度"},{"string":"範圍內天賦同時給予:近戰技能減少 #% 空手攻擊速度"}],"trade":{"ids":{"explicit":["explicit.stat_3087912144"]}}} +{"ref":"Passive Skills in Radius also grant: Traps and Mines deal # to # added Physical Damage","better":1,"matchers":[{"string":"範圍內天賦同時給予:陷阱和地雷附加 # 至 # 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_576760472"]}}} +{"ref":"Passives granting Cold Resistance or all Elemental Resistances in Radius\nalso grant an equal chance to gain a Frenzy Charge on Kill","better":1,"matchers":[{"string":"範圍內的冰冷抗性或全元素抗性\n同時提供等同其數值的擊殺時獲得 1 顆狂怒球機率"}],"trade":{"ids":{"explicit":["explicit.stat_509677462"]}}} +{"ref":"Passives granting Cold Resistance or all Elemental Resistances in Radius\nalso grant Chance to Suppress Spell Damage at #% of its value","better":1,"matchers":[{"string":"範圍內給予冰冷抗性或全部抗性的天賦,\n同時以 #% 它們的值給予壓抑法術傷害率"}],"trade":{"ids":{"explicit":["explicit.stat_1409669176"]}}} +{"ref":"Passives granting Fire Resistance or all Elemental Resistances in Radius\nalso grant an equal chance to gain an Endurance Charge on Kill","better":1,"matchers":[{"string":"範圍內的火焰抗性或全元素抗性\n同時提供等同其數值的擊殺時獲得 1 顆耐力球機率"}],"trade":{"ids":{"explicit":["explicit.stat_1645524575"]}}} +{"ref":"Passives granting Fire Resistance or all Elemental Resistances in Radius\nalso grant Chance to Block Attack Damage at #% of its value","better":1,"matchers":[{"string":"範圍內天賦獲得火焰抗性或全部元素抗性\n同時會獲得 #% 等同其數值的攻擊傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_3931143552"]}}} +{"ref":"Passives granting Lightning Resistance or all Elemental Resistances in Radius\nalso grant an equal chance to gain a Power Charge on Kill","better":1,"matchers":[{"string":"範圍內的閃電抗性或全元素抗性\n同時提供等同其數值的擊殺時獲得 1 顆暴擊球機率"}],"trade":{"ids":{"explicit":["explicit.stat_926444104"]}}} +{"ref":"Passives granting Lightning Resistance or all Elemental Resistances in Radius\nalso grant Chance to Block Spell Damage at #% of its value","better":1,"matchers":[{"string":"範圍內天賦獲得閃電抗性或全部元素抗性\n同時會獲得 #% 等同其數值的法術傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_1224928411"]}}} +{"ref":"Passives in Radius can be Allocated without being connected to your tree","better":1,"matchers":[{"string":"天賦樹中在範圍內未連結的技能仍然可以配置"}],"trade":{"ids":{"explicit":["explicit.stat_4077035099"]}}} +{"ref":"Passives in Radius of # can be Allocated\nwithout being connected to your tree","better":0,"matchers":[{"string":"範圍 霸體 內的天賦可以在沒有連結你的天賦樹下被配置","value":10661},{"string":"範圍 瓦爾冥約 內的天賦可以在沒有連結你的天賦樹下被配置","value":10808},{"string":"範圍 風魔舞者 內的天賦可以在沒有連結你的天賦樹下被配置","value":11239},{"string":"範圍 異靈之體 內的天賦可以在沒有連結你的天賦樹下被配置","value":11455},{"string":"範圍 堅鐵之力 內的天賦可以在沒有連結你的天賦樹下被配置","value":12926},{"string":"範圍 浸血之刃 內的天賦可以在沒有連結你的天賦樹下被配置","value":13019},{"string":"範圍 移靈換影 內的天賦可以在沒有連結你的天賦樹下被配置","value":14914},{"string":"範圍 緋紅舞蹈 內的天賦可以在沒有連結你的天賦樹下被配置","value":17818},{"string":"範圍 復仇之靈 內的天賦可以在沒有連結你的天賦樹下被配置","value":18663},{"string":"範圍 不可知論 內的天賦可以在沒有連結你的天賦樹下被配置","value":19732},{"string":"範圍 復仇兵工廠 內的天賦可以在沒有連結你的天賦樹下被配置","value":21210},{"string":"範圍 青春永駐 內的天賦可以在沒有連結你的天賦樹下被配置","value":21650},{"string":"範圍 元素超載 內的天賦可以在沒有連結你的天賦樹下被配置","value":22088},{"string":"範圍 武裝召喚 內的天賦可以在沒有連結你的天賦樹下被配置","value":23090},{"string":"範圍 絕對受難 內的天賦可以在沒有連結你的天賦樹下被配置","value":23407},{"string":"範圍 能量連結 內的天賦可以在沒有連結你的天賦樹下被配置","value":23540},{"string":"範圍 惡毒牢房 內的天賦可以在沒有連結你的天賦樹下被配置","value":23950},{"string":"範圍 靈能護體 內的天賦可以在沒有連結你的天賦樹下被配置","value":24426},{"string":"範圍 不平衡守衛 內的天賦可以在沒有連結你的天賦樹下被配置","value":24720},{"string":"範圍 瓦爾.支配 內的天賦可以在沒有連結你的天賦樹下被配置","value":27637},{"string":"範圍 崇拜凋落之心 內的天賦可以在沒有連結你的天賦樹下被配置","value":27781},{"string":"範圍 苦痛靈曲 內的天賦可以在沒有連結你的天賦樹下被配置","value":31703},{"string":"範圍 堅毅之心 內的天賦可以在沒有連結你的天賦樹下被配置","value":31961},{"string":"範圍 心靈昇華 內的天賦可以在沒有連結你的天賦樹下被配置","value":34098},{"string":"範圍 鬼舞 內的天賦可以在沒有連結你的天賦樹下被配置","value":35255},{"string":"範圍 元素之相 內的天賦可以在沒有連結你的天賦樹下被配置","value":39085},{"string":"範圍 側身之擊 內的天賦可以在沒有連結你的天賦樹下被配置","value":39713},{"string":"範圍 烈士意志 內的天賦可以在沒有連結你的天賦樹下被配置","value":40907},{"string":"範圍 先祖魂約 內的天賦可以在沒有連結你的天賦樹下被配置","value":41970},{"string":"範圍 零點射擊 內的天賦可以在沒有連結你的天賦樹下被配置","value":42178},{"string":"範圍 束縛印 內的天賦可以在沒有連結你的天賦樹下被配置","value":42343},{"string":"範圍 咒術大師 內的天賦可以在沒有連結你的天賦樹下被配置","value":43988},{"string":"範圍 火之化身 內的天賦可以在沒有連結你的天賦樹下被配置","value":44941},{"string":"範圍 靈能神盾 內的天賦可以在沒有連結你的天賦樹下被配置","value":45175},{"string":"範圍 至高.自我 內的天賦可以在沒有連結你的天賦樹下被配置","value":49639},{"string":"範圍 鋼鐵意志 內的天賦可以在沒有連結你的天賦樹下被配置","value":50288},{"string":"範圍 多重戰 內的天賦可以在沒有連結你的天賦樹下被配置","value":50679},{"string":"範圍 移形換影 內的天賦可以在沒有連結你的天賦樹下被配置","value":54307},{"string":"範圍 箭矢閃躍 內的天賦可以在沒有連結你的天賦樹下被配置","value":54922},{"string":"範圍 異能魔力 內的天賦可以在沒有連結你的天賦樹下被配置","value":56075},{"string":"範圍 咒術災厄 內的天賦可以在沒有連結你的天賦樹下被配置","value":56116},{"string":"範圍 穿刺者 內的天賦可以在沒有連結你的天賦樹下被配置","value":57257},{"string":"範圍 祭血術 內的天賦可以在沒有連結你的天賦樹下被配置","value":57279},{"string":"範圍 聖盾 內的天賦可以在沒有連結你的天賦樹下被配置","value":58556},{"string":"範圍 唯我論 內的天賦可以在沒有連結你的天賦樹下被配置","value":60247},{"string":"範圍 瓦爾.屠戮 內的天賦可以在沒有連結你的天賦樹下被配置","value":61516},{"string":"範圍 忘卻陰影 內的天賦可以在沒有連結你的天賦樹下被配置","value":62791},{"string":"範圍 狂熱誓言 內的天賦可以在沒有連結你的天賦樹下被配置","value":63425},{"string":"範圍 精準科技 內的天賦可以在沒有連結你的天賦樹下被配置","value":63620},{"string":"範圍 凡塵萬念 內的天賦可以在沒有連結你的天賦樹下被配置","value":9403}],"trade":{"ids":{"explicit":["explicit.stat_2422708892"]},"option":true}} +{"ref":"Patrol Packs have #% increased chance to be replaced by an Elite Patrol Pack","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"巡守群增加 #% 機率被菁英巡守群取代"},{"string":"巡守群減少 #% 機率被菁英巡守群取代","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1982436039"],"fractured":["fractured.stat_1982436039"]}}} +{"ref":"Patrol Packs take #% increased damage","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"巡守群增加承受 #% 傷害"},{"string":"巡守群減少承受 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3702411606"],"fractured":["fractured.stat_3702411606"]}}} +{"ref":"Patrolling Monsters deal #% increased Damage","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"巡守怪物增加 #% 傷害"},{"string":"巡守怪物減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3144910208"],"fractured":["fractured.stat_3144910208"]}}} +{"ref":"Penance Brand deals #% increased Damage","better":1,"matchers":[{"string":"贖罪烙印增加 #% 傷害"},{"string":"贖罪烙印減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_610562666"]}}} +{"ref":"Penance Brand has #% increased Area of Effect","better":1,"matchers":[{"string":"贖罪烙印增加 #% 範圍效果"},{"string":"贖罪烙印減少 #% 範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1486948114"]}}} +{"ref":"Penance Brand has #% increased Cast Speed","better":1,"matchers":[{"string":"贖罪烙印增加 #% 施放速度"},{"string":"贖罪烙印減少 #% 施放速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_709541481"]}}} +{"ref":"Penetrate #% Elemental Resistances per 15 Omniscience","better":1,"matchers":[{"string":"每 15 全知穿透 #% 元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_2757041809"]}}} +{"ref":"Penetrate #% Elemental Resistances per Abyss Jewel affecting you","better":1,"matchers":[{"string":"每顆影響你的深淵珠寶穿透 #% 元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_4250752669"]}}} +{"ref":"Perfect Agony","better":1,"matchers":[{"string":"絕對受難"}],"trade":{"ids":{"explicit":["explicit.stat_3884934810"],"scourge":["scourge.stat_3884934810"]}}} +{"ref":"Perforate deals #% increased Damage","better":1,"matchers":[{"string":"裂地刺穿增加 #% 傷害"},{"string":"裂地刺穿減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2731606134"]}}} +{"ref":"Perforate has #% increased Area of Effect","better":1,"matchers":[{"string":"裂地刺穿增加 #% 範圍效果"},{"string":"裂地刺穿減少 #% 範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3536566359"]}}} +{"ref":"Performing Brute Force during Lockdown doesn't take additional time","better":1,"matchers":[{"string":"在封鎖期間使用蠻力不花費額外時間"}],"trade":{"ids":{"explicit":["explicit.stat_2485799092"]}}} +{"ref":"Performing Counter-Thaumaturgy during Lockdown doesn't take additional time","better":1,"matchers":[{"string":"在封鎖期間使用解咒師不花費額外時間"}],"trade":{"ids":{"explicit":["explicit.stat_3969573213"]}}} +{"ref":"Performing Demolition during Lockdown doesn't take additional time","better":1,"matchers":[{"string":"在封鎖期間使用拆除不花費額外時間"}],"trade":{"ids":{"explicit":["explicit.stat_450155423"]}}} +{"ref":"Performing Engineering during Lockdown doesn't take additional time","better":1,"matchers":[{"string":"在封鎖期間使用工程不花費額外時間"}],"trade":{"ids":{"explicit":["explicit.stat_1124657098"]}}} +{"ref":"Performing Lockpicking during Lockdown doesn't take additional time","better":1,"matchers":[{"string":"在封鎖期間使用開鎖不花費額外時間"}],"trade":{"ids":{"explicit":["explicit.stat_3144025395"]}}} +{"ref":"Permanently Intimidate Enemies on Block","better":1,"matchers":[{"string":"格擋後對敵人造成威嚇"}],"trade":{"ids":{"explicit":["explicit.stat_2930706364"],"fractured":["fractured.stat_2930706364"]}}} +{"ref":"Pestilent Strike deals #% increased Damage","better":1,"matchers":[{"string":"瘟疫打擊增加 #% 傷害"},{"string":"瘟疫打擊減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_856157011"]}}} +{"ref":"Pestilent Strike has #% increased Area of Effect","better":1,"matchers":[{"string":"瘟疫打擊增加 #% 範圍效果"},{"string":"瘟疫打擊減少 #% 範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3787328468"]}}} +{"ref":"Pestilent Strike has #% increased Duration","better":1,"matchers":[{"string":"瘟疫打擊增加 #% 持續時間"},{"string":"瘟疫打擊減少 #% 持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_64670441"]}}} +{"ref":"Petrified Blood has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"石化之血增加 #% 魔力保留效用"},{"string":"石化之血減少 #% 魔力保留效用","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1779904215","enchant.stat_1829483269"]}}} +{"ref":"Petrified during Effect","better":1,"matchers":[{"string":"效果持續時間被石化"}],"trade":{"ids":{"explicit":["explicit.stat_1935500672"]}}} +{"ref":"Physical Damage taken bypasses Energy Shield","better":1,"matchers":[{"string":"#% 承受物理傷害無視能量護盾"},{"string":"承受物理傷害無視能量護盾","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2649513539"]}}} +{"ref":"Plague Bearer Buff grants +#% to Poison Damage over Time Multiplier while Infecting","better":1,"matchers":[{"string":"當感染時,病疫之難增益效果 #% 中毒持續傷害加成"}],"trade":{"ids":{"enchant":["enchant.stat_1967208066"]}}} +{"ref":"Plague Bearer deals Damage based on an additional #% of Plague Value","better":1,"matchers":[{"string":"病疫之難根據額外 #% 瘟疫值造成傷害"}],"trade":{"ids":{"enchant":["enchant.stat_2093796647"]}}} +{"ref":"Player Skills which Throw Mines throw up to # fewer Mines","better":1,"fromUberAreaMods":true,"matchers":[{"string":"玩家投擲地雷的技能可以投擲的數量減少 1 顆地雷","value":-1},{"string":"玩家技能投擲 # 個額外的地雷"},{"string":"玩家投擲地雷的技能可以投擲的數量減少最多 # 顆地雷"},{"string":"玩家技能投擲 1 個額外的地雷","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3633247582"],"fractured":["fractured.stat_3633247582"]}}} +{"ref":"Player Skills which Throw Traps throw up to # fewer Traps","better":1,"fromUberAreaMods":true,"matchers":[{"string":"玩家投擲陷阱的技能可以投擲的數量減少最多 1 個陷阱","value":-1},{"string":"玩家投擲陷阱的技能可以投擲的數量減少最多 # 個陷阱"},{"string":"玩家投擲陷阱的技能額外投擲 # 個陷阱"},{"string":"玩家投擲陷阱的技能額外投擲 1 個陷阱","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3693062339"],"fractured":["fractured.stat_3693062339"]}}} +{"ref":"Players and their Minions deal no damage for 4 out of every 10 seconds","better":1,"fromUberAreaMods":true,"matchers":[{"string":"每 10 秒玩家和其召喚物有 4 秒不會造成傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2408625104"],"fractured":["fractured.stat_2408625104"]}}} +{"ref":"Players and their Minions have #% increased Mana Regeneration Rate","better":1,"matchers":[{"string":"玩家和他們的召喚物增加 #% 魔力回復率"},{"string":"玩家和他們的召喚物減少 #% 魔力回復率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2513410880"]}}} +{"ref":"Players and their Minions Regenerate #% of Life per second","dp":true,"better":1,"matchers":[{"string":"玩家和他們的召喚物每秒回復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_430044247"],"fractured":["fractured.stat_430044247"]}}} +{"ref":"Players are assaulted by Bloodstained Sawblades","better":1,"fromUberAreaMods":true,"matchers":[{"string":"玩家受到血漬鋸刃攻擊"}],"trade":{"ids":{"explicit":["explicit.stat_3052102815"],"fractured":["fractured.stat_3052102815"]}}} +{"ref":"Players are Cursed with Elemental Weakness","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"玩家被元素要害詛咒"}],"trade":{"ids":{"explicit":["explicit.stat_558910024"],"fractured":["fractured.stat_558910024"]}}} +{"ref":"Players are Cursed with Enfeeble","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"玩家被衰弱詛咒"}],"trade":{"ids":{"explicit":["explicit.stat_4103440490"],"fractured":["fractured.stat_4103440490"]}}} +{"ref":"Players are Cursed with Temporal Chains","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"玩家被時空鎖鏈詛咒"}],"trade":{"ids":{"explicit":["explicit.stat_2326202293"],"fractured":["fractured.stat_2326202293"]}}} +{"ref":"Players are Cursed with Vulnerability","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"玩家被脆弱詛咒"}],"trade":{"ids":{"explicit":["explicit.stat_1366534040"],"fractured":["fractured.stat_1366534040"]}}} +{"ref":"Players are Marked for Death for # seconds\nafter killing a Rare or Unique monster","better":1,"fromUberAreaMods":true,"matchers":[{"string":"擊殺 1 隻稀有或傳奇怪物後\n玩家受到死亡印記,持續 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_436406826"],"fractured":["fractured.stat_436406826"]}}} +{"ref":"Players cannot Block","better":1,"fromUberAreaMods":true,"matchers":[{"string":"玩家不能格擋"}],"trade":{"ids":{"explicit":["explicit.stat_419810844"]}}} +{"ref":"Players cannot Block Attack Damage","better":1,"fromAreaMods":true,"matchers":[{"string":"玩家不能格擋攻擊傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2736953535"]}}} +{"ref":"Players cannot Block Spell Damage","better":1,"fromAreaMods":true,"matchers":[{"string":"玩家不能格擋法術傷害"}],"trade":{"ids":{"explicit":["explicit.stat_4261179672"]}}} +{"ref":"Players cannot gain Endurance Charges","better":1,"fromUberAreaMods":true,"matchers":[{"string":"玩家不能獲得耐力球"}],"trade":{"ids":{"explicit":["explicit.stat_3532144131"],"fractured":["fractured.stat_3532144131"]}}} +{"ref":"Players cannot gain Flask Charges","better":1,"fromAreaMods":true,"matchers":[{"string":"玩家不能獲得藥劑充能"}],"trade":{"ids":{"explicit":["explicit.stat_36406748"]}}} +{"ref":"Players cannot gain Frenzy Charges","better":1,"fromUberAreaMods":true,"matchers":[{"string":"玩家不能獲得狂怒球"}],"trade":{"ids":{"explicit":["explicit.stat_620879593"],"fractured":["fractured.stat_620879593"]}}} +{"ref":"Players cannot gain Power Charges","better":1,"fromUberAreaMods":true,"matchers":[{"string":"玩家不能獲得暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_1282233725"],"fractured":["fractured.stat_1282233725"]}}} +{"ref":"Players cannot inflict Exposure","better":1,"fromAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"玩家不能造成曝曬"}],"trade":{"ids":{"explicit":["explicit.stat_1026390635"],"fractured":["fractured.stat_1026390635"]}}} +{"ref":"Players cannot Recharge Energy Shield","better":1,"fromUberAreaMods":true,"matchers":[{"string":"玩家不能充能能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_1888489569"],"fractured":["fractured.stat_1888489569"]}}} +{"ref":"Players cannot Regenerate Life, Mana or Energy Shield","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"玩家不能回復生命、魔力和能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_1910157106"],"fractured":["fractured.stat_1910157106"]}}} +{"ref":"Players cannot Suppress Spell Damage","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"matchers":[{"string":"玩家不能壓抑法術傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3203905334"]}}} +{"ref":"Players gain #% increased Flask Charges per 25% Alert Level","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"每 25% 警戒等級,玩家增加 #% 藥劑充能"},{"string":"每 25% 警戒等級,玩家減少 #% 藥劑充能","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_816079058"],"fractured":["fractured.stat_816079058"]}}} +{"ref":"Players gain #% reduced Flask Charges","better":-1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"玩家獲得的藥劑充能增加 #%"},{"string":"玩家獲得的藥劑充能減少 #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2549889921"],"fractured":["fractured.stat_2549889921"]},"inverted":true}} +{"ref":"Players have #% chance to be targeted by a Meteor when they use a Flask","better":1,"fromUberAreaMods":true,"matchers":[{"string":"玩家使用藥劑時有 #% 機率被隕石瞄準"},{"string":"玩家使用藥劑時被隕石瞄準","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4102870672"]}}} +{"ref":"Players have #% increased Action Speed for each time they've used a Skill Recently","better":1,"fromUberAreaMods":true,"matchers":[{"string":"近期玩家每次使用 1 個技能,增加 #% 行動速度"},{"string":"近期玩家每次使用 1 個技能,減少 #% 行動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3479892158"]}}} +{"ref":"Players have #% increased effect of Non-Curse Auras from Skills","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"玩家增加 #% 來自技能的非詛咒光環效果"},{"string":"玩家減少 #% 來自技能的非詛咒光環效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2450628570"],"fractured":["fractured.stat_2450628570"]}}} +{"ref":"Players have #% less Area of Effect","better":-1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"玩家有 #% 更多的範圍效果"},{"string":"玩家有 #% 更少的範圍效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2312028586"],"fractured":["fractured.stat_2312028586"]},"inverted":true}} +{"ref":"Players have #% less Armour","better":-1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"玩家有 #% 更多護甲"},{"string":"玩家有 #% 更少護甲","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_272758639"],"fractured":["fractured.stat_272758639"]},"inverted":true}} +{"ref":"Players have #% less Recovery Rate of Life and Energy Shield","better":-1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"玩家有 #% 更多生命和能量護盾恢復率"},{"string":"玩家有 #% 更少生命和能量護盾恢復率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4181072906"],"fractured":["fractured.stat_4181072906"]},"inverted":true}} +{"ref":"Players have #% more Accuracy Rating","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"玩家有 #% 更多命中值"},{"string":"玩家有 #% 更少命中值","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3667574329"],"fractured":["fractured.stat_3667574329"]}}} +{"ref":"Players have #% more Armour per 25% Alert Level","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"每 25% 警戒,等級玩家有 #% 更多護甲"},{"string":"每 25% 警戒,等級玩家有 #% 更少護甲","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2787931289"],"fractured":["fractured.stat_2787931289"]}}} +{"ref":"Players have #% more Cooldown Recovery Rate","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"玩家有 #% 更多冷卻時間恢復速度"},{"string":"玩家有 #% 更少冷卻時間恢復速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_941368244"],"fractured":["fractured.stat_941368244"]}}} +{"ref":"Players have #% more Defences","better":1,"fromUberAreaMods":true,"matchers":[{"string":"玩家的防禦增加 #%"},{"string":"玩家的防禦減少 #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_943960754"]}}} +{"ref":"Players have #% more Energy Shield Recovery Rate per 25% Alert Level","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"每 25% 警戒等級,玩家有 #% 更多能量護盾恢復率"},{"string":"每 25% 警戒等級,玩家有 #% 更少能量護盾恢復率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_751773204"],"fractured":["fractured.stat_751773204"]}}} +{"ref":"Players have #% more Evasion per 25% Alert Level","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"每 25% 警戒等級,玩家有 #% 更多閃避"},{"string":"每 25% 警戒等級,玩家有 #% 更少閃避","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1238382441"],"fractured":["fractured.stat_1238382441"]}}} +{"ref":"Players have #% more Life Recovery Rate per 25% Alert Level","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"每 25% 警戒等級,玩家有 #% 更多生命恢復率"},{"string":"每 25% 警戒等級,玩家有 #% 更少生命恢復率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1466172118"],"fractured":["fractured.stat_1466172118"]}}} +{"ref":"Players have #% more Mana Recovery Rate per 25% Alert Level","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"每 25% 警戒等級,玩家有 #% 更多魔力恢復率"},{"string":"每 25% 警戒等級,玩家有 #% 更少魔力恢復率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_953449033"],"fractured":["fractured.stat_953449033"]}}} +{"ref":"Players have #% reduced Chance to Block","better":-1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"玩家增加 #% 格擋率"},{"string":"玩家減少 #% 格擋率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3729221884"],"fractured":["fractured.stat_3729221884"]},"inverted":true}} +{"ref":"Players have #% to all maximum Resistances","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"玩家 #% 全部最大抗性"}],"trade":{"ids":{"explicit":["explicit.stat_3376488707"],"fractured":["fractured.stat_3376488707"]}}} +{"ref":"Players have +# to maximum number of Summoned Totems","better":1,"fromUberAreaMods":true,"matchers":[{"string":"玩家有最多 # 個召喚圖騰"}],"trade":{"ids":{"explicit":["explicit.stat_2912613786"],"fractured":["fractured.stat_2912613786"]}}} +{"ref":"Players in Area take #% increased Damage per nearby Ally","better":1,"fromUberAreaMods":true,"matchers":[{"string":"根據每個附近的盟友,區域內玩家承受傷害增加 #%"}],"trade":{"ids":{"explicit":["explicit.stat_4045850340"]}}} +{"ref":"Players in Areas take on the form of Harbingers\nItems found in Areas are replaced by stacks of Currency Shards","better":1,"matchers":[{"string":"區域中玩家化身為神諭\n區域中掉落的物品被通貨碎片取代"}],"trade":{"ids":{"explicit":["explicit.stat_2467500499"]}}} +{"ref":"Players Prevent +#% of Suppressed Spell Damage","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"玩家 #% 防止壓抑法術傷害的總量"},{"string":"玩家阻止 #% 壓抑法術傷害"}],"trade":{"ids":{"explicit":["explicit.stat_286947568"],"fractured":["fractured.stat_286947568"]}}} +{"ref":"Players take #% reduced Damage from Monsters from Beyond","better":-1,"matchers":[{"string":"區域中玩家受到超越怪物的傷害增加 #%"},{"string":"區域中玩家受到超越怪物的傷害減少 #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3045897926"]},"inverted":true}} +{"ref":"Players' Minions have #% more Attack Speed","better":1,"fromUberAreaMods":true,"matchers":[{"string":"玩家的召喚物增加 #% 攻擊速度"},{"string":"玩家的召喚物減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1308016791"],"fractured":["fractured.stat_1308016791"]}}} +{"ref":"Players' Minions have #% more Cast Speed","better":1,"fromUberAreaMods":true,"matchers":[{"string":"玩家的召喚物增加 #% 施放速度"},{"string":"玩家的召喚物減少 #% 施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1237051929"],"fractured":["fractured.stat_1237051929"]}}} +{"ref":"Players' Minions have #% more Movement Speed","better":1,"fromUberAreaMods":true,"matchers":[{"string":"玩家的召喚物增加 #% 移動速度"},{"string":"玩家的召喚物減少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3991644188"],"fractured":["fractured.stat_3991644188"]}}} +{"ref":"Players' Vaal Skills do not apply Soul Gain Prevention","better":1,"fromAreaMods":true,"matchers":[{"string":"玩家的瓦爾技能不套用停止獲得靈魂"}],"trade":{"ids":{"implicit":["implicit.stat_977063976"],"enchant":["enchant.stat_977063976"]}}} +{"ref":"Point Blank","better":1,"matchers":[{"string":"零點射擊"}],"trade":{"ids":{"explicit":["explicit.stat_2896346114"],"implicit":["implicit.stat_2896346114"],"fractured":["fractured.stat_2896346114"],"scourge":["scourge.stat_2896346114"]}}} +{"ref":"Poison Cursed Enemies on hit","better":1,"matchers":[{"string":"擊中被詛咒的敵人時造成中毒"}],"trade":{"ids":{"explicit":["explicit.stat_4266201818"]}}} +{"ref":"Poison you inflict is Reflected to you if you have fewer than 100 Poisons on you","better":1,"matchers":[{"string":"若你身上少於 100 層中毒,你造成的中毒反射至你"}],"trade":{"ids":{"explicit":["explicit.stat_2374357674"]}}} +{"ref":"Poison you inflict with Travel Skills is Reflected to you if you\nhave fewer than 5 Poisons on you","better":1,"matchers":[{"string":"若你身上中毒少於 5 層,\n你快行技能造成的中毒反射至你"}],"trade":{"ids":{"explicit":["explicit.stat_130616495"]}}} +{"ref":"Poisoned Enemies you Kill with Hits Shatter","better":1,"matchers":[{"string":"你擊中擊殺中毒的敵人會粉碎"}],"trade":{"ids":{"explicit":["explicit.stat_3350228283"]}}} +{"ref":"Poisonous Concoction uses #% increased Flask Charges","better":1,"matchers":[{"string":"毒藥增加 #% 藥劑充能使用"},{"string":"毒藥減少 #% 藥劑充能使用","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1474722052"]}}} +{"ref":"Poisonous Hit","better":1,"matchers":[{"string":"攻擊擊中時使敵人中毒"}],"trade":{"ids":{"explicit":["explicit.stat_4075957192"]}}} +{"ref":"Poisons on you expire #% slower","better":-1,"matchers":[{"string":"你身上的中毒消逝速度提高 #%"},{"string":"你身上的中毒消逝速度減慢 #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2443132097"]},"inverted":true}} +{"ref":"Poisons you inflict deal Damage #% faster","better":1,"matchers":[{"string":"你造成的中毒傷害加速 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2907156609"],"implicit":["implicit.stat_2907156609"],"fractured":["fractured.stat_2907156609"],"scourge":["scourge.stat_2907156609"]}}} +{"ref":"Power Siphon fires at up to # additional target","better":1,"matchers":[{"string":"對最多 # 個額外目標發射力量抽取"}],"trade":{"ids":{"enchant":["enchant.stat_1177831984"]}}} +{"ref":"Precise Technique","better":1,"matchers":[{"string":"精準科技"}],"trade":{"ids":{"explicit":["explicit.stat_4096273663"]}}} +{"ref":"Precision has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"精準增加 #% 魔力保留效用"},{"string":"精準減少 #% 魔力保留效用","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3859865977"],"enchant":["enchant.stat_3859865977","enchant.stat_658622139"]}}} +{"ref":"Precision has 100% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"精準增加 100% 魔力保留效用"}],"trade":{"ids":{"explicit":["explicit.stat_1291925008"]}}} +{"ref":"Prefixes Cannot Be Changed","better":1,"matchers":[{"string":"前綴不能被變更"}],"trade":{"ids":{"explicit":["explicit.stat_2879723104"],"fractured":["fractured.stat_2879723104"],"crafted":["crafted.stat_2879723104"]}}} +{"ref":"Prevent +#% of Suppressed Spell Damage","better":1,"matchers":[{"string":"#% 防止壓抑法術傷害的總量"},{"string":"阻止 #% 的壓抑法術傷害"}],"trade":{"ids":{"explicit":["explicit.stat_4116705863"],"implicit":["implicit.stat_4116705863"],"fractured":["fractured.stat_4116705863"]}}} +{"ref":"Prevent +#% of Suppressed Spell Damage while on Full Energy Shield","better":1,"matchers":[{"string":"滿能量護盾時,#% 防止壓抑法術傷害的總量"},{"string":"滿能量護盾時,防止 #% 壓抑法術傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1493325653"]}}} +{"ref":"Pride has #% increased Aura Effect","better":1,"matchers":[{"string":"驕傲增加 #% 光環效果"},{"string":"驕傲減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4247488219"]}}} +{"ref":"Pride has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"驕傲增加 #% 魔力保留效用"},{"string":"驕傲減少 #% 魔力保留效用","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3484910620","explicit.stat_3993865658"],"enchant":["enchant.stat_3484910620","enchant.stat_3993865658"]}}} +{"ref":"Pride has no Reservation","better":1,"matchers":[{"string":"驕傲無保留"}],"trade":{"ids":{"explicit":["explicit.stat_3554614456"]}}} +{"ref":"Primordial","better":1,"matchers":[{"string":"先祖"}],"trade":{"ids":{"explicit":["explicit.stat_1089165168"]}}} +{"ref":"Projectile Attack Skills have #% increased Critical Strike Chance","better":1,"matchers":[{"string":"投射物攻擊技能增加 #% 暴擊率"},{"string":"投射物攻擊技能減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4095169720"]}}} +{"ref":"Projectile Barrages have no spread","better":1,"matchers":[{"string":"投射彈幕不會擴散"}],"trade":{"ids":{"explicit":["explicit.stat_3953699641"]}}} +{"ref":"Projectiles are fired in random directions","better":1,"matchers":[{"string":"投射物以隨機方向發射"}],"trade":{"ids":{"explicit":["explicit.stat_4159765624"]}}} +{"ref":"Projectiles cannot collide with Enemies in Close Range","better":1,"matchers":[{"string":"投射物在近距離時不能碰撞敵人"}],"trade":{"ids":{"explicit":["explicit.stat_2826633504"]}}} +{"ref":"Projectiles Chain +# times while you have Phasing","better":1,"matchers":[{"string":"你有迷蹤時,投射物連鎖 # 次"}],"trade":{"ids":{"explicit":["explicit.stat_383509486"]}}} +{"ref":"Projectiles deal #% increased Damage with Hits and Ailments for each Enemy Pierced","better":1,"matchers":[{"string":"投射物根據每次穿透敵人,增加 #% 擊中和異常狀態傷害"}],"trade":{"ids":{"explicit":["explicit.stat_883169830"],"implicit":["implicit.stat_883169830"],"fractured":["fractured.stat_883169830"]}}} +{"ref":"Projectiles deal #% increased Damage with Hits and Ailments for each time they have Chained","better":1,"matchers":[{"string":"投射物根據每次連鎖,增加 #% 擊中和異常狀態傷害"}],"trade":{"ids":{"implicit":["implicit.stat_1923210508"]}}} +{"ref":"Projectiles from Attacks can Fork # additional time","better":1,"matchers":[{"string":"來自攻擊的投射物可以額外分裂 # 次"}],"trade":{"ids":{"explicit":["explicit.stat_1643324992"]}}} +{"ref":"Projectiles from Attacks Fork","better":1,"matchers":[{"string":"來自攻擊的投射物會分裂"}],"trade":{"ids":{"explicit":["explicit.stat_396113830"]}}} +{"ref":"Projectiles from Attacks have #% chance to inflict Bleeding on Hit while\nyou have a Bestial Minion","better":1,"matchers":[{"string":"當你有凶猛的召喚物時,投射物攻擊有 #% 機率造成流血"}],"trade":{"ids":{"explicit":["explicit.stat_4058504226"]}}} +{"ref":"Projectiles from Attacks have #% chance to Maim on Hit while\nyou have a Bestial Minion","better":1,"matchers":[{"string":"當你有凶猛的召喚物時,投射物攻擊有 #% 機率擊中時癱瘓"}],"trade":{"ids":{"explicit":["explicit.stat_1753916791"]}}} +{"ref":"Projectiles from Attacks have #% chance to Poison on Hit while\nyou have a Bestial Minion","better":1,"matchers":[{"string":"當你有凶猛的召喚物時,投射物攻擊有 #% 機率中毒"}],"trade":{"ids":{"explicit":["explicit.stat_1114411822"]}}} +{"ref":"Projectiles from Socketed Gems Fork","better":1,"matchers":[{"string":"插槽中寶石的投射物會分裂"}],"trade":{"ids":{"explicit":["explicit.stat_1519665289"]}}} +{"ref":"Projectiles from Spells cannot Pierce","better":1,"matchers":[{"string":"法術的投射物不能穿透"}],"trade":{"ids":{"explicit":["explicit.stat_3826125995"]}}} +{"ref":"Projectiles gain #% of Non-Chaos Damage as extra Chaos Damage per Chain","better":1,"matchers":[{"string":"每個連鎖投射物獲得 #% 非混沌傷害的額外混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1924041432"]}}} +{"ref":"Projectiles gain Damage as they travel farther, dealing up\nto #% increased Damage with Hits to targets","better":1,"matchers":[{"string":"投射物傷害隨著飛行距離而提升,\n擊中目標時最多增加 #% 傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2083727359"]}}} +{"ref":"Projectiles have #% chance to be able to Chain when colliding with terrain","better":1,"matchers":[{"string":"當投射物撞擊地面時,有 #% 機率會連鎖"},{"string":"當投射物撞擊地面時連鎖","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2140446632"]}}} +{"ref":"Projectiles have #% chance to be able to Chain when colliding with terrain per\nSearching Eye Jewel affecting you, up to a maximum of 20%","better":1,"matchers":[{"string":"每顆影響你的勘查之眼珠寶,投射物撞擊地形時有 #% 機率連鎖,最多 20%"}],"trade":{"ids":{"explicit":["explicit.stat_1485085047"]}}} +{"ref":"Projectiles Pierce # additional Targets","better":1,"matchers":[{"string":"投射物穿透 # 個額外目標"},{"string":"投射物穿透一個額外目標","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2067062068"],"implicit":["implicit.stat_2067062068","implicit.stat_2902845638"],"fractured":["fractured.stat_2067062068"],"scourge":["scourge.stat_2067062068"],"crafted":["crafted.stat_2067062068"]}}} +{"ref":"Projectiles Pierce all Burning Enemies","better":1,"matchers":[{"string":"投射物穿透全部燃燒的敵人"}],"trade":{"ids":{"explicit":["explicit.stat_2214228141"]}}} +{"ref":"Projectiles Pierce all Targets while you have Phasing","better":1,"matchers":[{"string":"你在迷蹤效果時投射物穿透所有目標"}],"trade":{"ids":{"explicit":["explicit.stat_2636403786"]}}} +{"ref":"Projectiles Pierce an additional Target while you have Phasing","better":1,"matchers":[{"string":"你在迷蹤效果時,投射物穿透 # 個額外目標"},{"string":"你在迷狀態時,投射物穿透一個額外目標","value":1}],"trade":{"ids":{"explicit":["explicit.stat_97250660"]}}} +{"ref":"Projectiles Split towards +# targets","better":1,"matchers":[{"string":"投射物對 # 個目標裂化"}],"trade":{"ids":{"scourge":["scourge.stat_3464380325"]}}} +{"ref":"Projectiles that have Chained gain #% of Non-Chaos Damage as extra Chaos Damage","better":1,"matchers":[{"string":"有連鎖的投射物獲得 #% 非混沌傷害的額外混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1698276268"]}}} +{"ref":"Properties are doubled while in a Breach","better":1,"matchers":[{"string":"裂痕中此道具屬性有雙倍效果"}],"trade":{"ids":{"implicit":["implicit.stat_202275580"]}}} +{"ref":"Punishment has no Reservation if Cast as an Aura","better":1,"matchers":[{"string":"若懲戒以光環施放沒有保留"}],"trade":{"ids":{"explicit":["explicit.stat_2097195894"]}}} +{"ref":"Purifying Flame deals #% increased Damage","better":1,"matchers":[{"string":"淨化烈焰增加 #% 傷害"},{"string":"淨化烈焰減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_944311193"]}}} +{"ref":"Purifying Flame has #% increased Area of Effect if targeting Consecrated Ground","better":1,"matchers":[{"string":"淨化烈焰若瞄準奉獻地面,增加 #% 範圍效果"},{"string":"淨化烈焰若瞄準奉獻地面,減少 #% 範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1954529734"]}}} +{"ref":"Purity of Elements has #% increased Aura Effect","better":1,"matchers":[{"string":"元素淨化增加 #% 光環效果"},{"string":"元素淨化減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3541970927"]}}} +{"ref":"Purity of Elements has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"元素淨化增加 #% 魔力保留效用"},{"string":"元素淨化減少 #% 魔力保留效用","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3303293173","enchant.stat_491551762"]}}} +{"ref":"Purity of Elements has no Reservation","better":1,"matchers":[{"string":"元素淨化無保留"}],"trade":{"ids":{"explicit":["explicit.stat_1826480903"]}}} +{"ref":"Purity of Fire has #% increased Aura Effect","better":1,"matchers":[{"string":"火焰淨化增加 #% 光環效果"},{"string":"火焰淨化減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2539726203"]}}} +{"ref":"Purity of Fire has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"火焰淨化增加 #% 魔力保留效用"},{"string":"火焰淨化減少 #% 魔力保留效用","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1135152940","explicit.stat_3003688066"],"implicit":["implicit.stat_1135152940","implicit.stat_3003688066"],"enchant":["enchant.stat_1135152940","enchant.stat_3003688066"]}}} +{"ref":"Purity of Fire has no Reservation","better":1,"matchers":[{"string":"火焰淨化無保留"}],"trade":{"ids":{"explicit":["explicit.stat_2278589942"]}}} +{"ref":"Purity of Ice has #% increased Aura Effect","better":1,"matchers":[{"string":"冰霜淨化增加 #% 光環效果"},{"string":"冰霜淨化減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1944316218"]}}} +{"ref":"Purity of Ice has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"冰霜淨化增加 #% 魔力保留效用"},{"string":"冰霜淨化減少 #% 魔力保留效用","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_139925400","explicit.stat_2665518524"],"implicit":["implicit.stat_139925400","implicit.stat_2665518524"],"enchant":["enchant.stat_139925400","enchant.stat_2665518524"]}}} +{"ref":"Purity of Ice has no Reservation","better":1,"matchers":[{"string":"冰霜淨化無保留"}],"trade":{"ids":{"explicit":["explicit.stat_1622979279"]}}} +{"ref":"Purity of Lightning has #% increased Aura Effect","better":1,"matchers":[{"string":"閃電淨化增加 #% 光環效果"},{"string":"閃電淨化減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_45589825"]}}} +{"ref":"Purity of Lightning has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"閃電淨化增加 #% 魔力保留效用"},{"string":"閃電淨化減少 #% 魔力保留效用","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1450978702","explicit.stat_3411256933"],"implicit":["implicit.stat_1450978702","implicit.stat_3411256933"],"enchant":["enchant.stat_1450978702","enchant.stat_3411256933"]}}} +{"ref":"Purity of Lightning has no Reservation","better":1,"matchers":[{"string":"閃電淨化無保留"}],"trade":{"ids":{"explicit":["explicit.stat_2308225900"]}}} +{"ref":"Pyroclast Mine deals #% increased Damage","better":1,"matchers":[{"string":"炎爆新星地雷增加 #% 傷害"},{"string":"炎爆新星地雷減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4048820315"]}}} +{"ref":"Pyroclast Mine fires an additional Projectile","better":1,"matchers":[{"string":"炎爆新星地雷發射 # 個額外投射物"},{"string":"炎爆新星地雷發射 1 個額外投射物","value":1}],"trade":{"ids":{"enchant":["enchant.stat_841281094"]}}} +{"ref":"Pyroclast Mine has #% increased Throwing Speed","better":1,"matchers":[{"string":"炎爆新星地雷增加 #% 投擲速度"},{"string":"炎爆新星地雷減少 #% 投擲速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2005440071","enchant.stat_2432759583"]}}} +{"ref":"Quality (Attack Modifiers): #%","better":1,"matchers":[{"string":"品質(攻擊詞綴):#% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_jewellery_attack_quality"]}}} +{"ref":"Quality (Attribute Modifiers): #%","better":1,"matchers":[{"string":"品質(能力值詞綴):#% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_jewellery_attribute_quality"]}}} +{"ref":"Quality (Caster Modifiers): #%","better":1,"matchers":[{"string":"品質(法術詞綴):#% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_jewellery_caster_quality"]}}} +{"ref":"Quality (Critical Modifiers): #%","better":1,"matchers":[{"string":"品質(暴擊詞綴):#% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_jewellery_critical_quality"]}}} +{"ref":"Quality (Currency): #%","better":1,"matchers":[{"string":"品質(通貨):#% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_quality_currency"]}}} +{"ref":"Quality (Defence Modifiers): #%","better":1,"matchers":[{"string":"品質(防禦詞綴):#% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_jewellery_defense_quality"]}}} +{"ref":"Quality (Divination Cards): #%","better":1,"matchers":[{"string":"品質(命運卡):#% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_quality_cards"]}}} +{"ref":"Quality (Elemental Damage Modifiers): #%","better":1,"matchers":[{"string":"品質(元素傷害詞綴):#% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_jewellery_elemental_quality"]}}} +{"ref":"Quality (Life and Mana Modifiers): #%","better":1,"matchers":[{"string":"品質(生命和魔力詞綴):#% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_jewellery_resource_quality"]}}} +{"ref":"Quality (Pack Size): #%","better":1,"matchers":[{"string":"品質(怪物群大小):#% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_quality_pack_size"]}}} +{"ref":"Quality (Physical and Chaos Damage Modifiers): #%","better":1,"matchers":[{"string":"品質(物理和混沌傷害詞綴):#% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_jewellery_physical_chaos_quality"]}}} +{"ref":"Quality (Rarity): #%","better":1,"matchers":[{"string":"品質(稀有度):#% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_quality_rarity"]}}} +{"ref":"Quality (Resistance Modifiers): #%","better":1,"matchers":[{"string":"品質(抗性詞綴):#% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_jewellery_resistance_quality"]}}} +{"ref":"Quality (Scarabs): #%","better":1,"matchers":[{"string":"品質(聖甲蟲):#% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_quality_scarabs"]}}} +{"ref":"Quality (Speed Modifiers): #%","better":1,"matchers":[{"string":"品質(速度詞綴):#% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_jewellery_speed_quality"]}}} +{"ref":"Quality applies to Pack Size instead of Item Quantity","better":1,"fromAreaMods":true,"matchers":[{"string":"品質套用在怪物群大小,而不是物品數量"}],"trade":{"ids":{"implicit":["implicit.stat_3036505016"]}}} +{"ref":"Quality does not increase Defences","better":1,"matchers":[{"string":"品質不會增加防禦"}],"trade":{"ids":{"enchant":["enchant.stat_2677401098"]}}} +{"ref":"Quality does not increase Physical Damage","better":1,"matchers":[{"string":"品質不會增加物理傷害"}],"trade":{"ids":{"enchant":["enchant.stat_2052525717"]}}} +{"ref":"Queen's Demand can Trigger Level # Flames of Judgement","better":1,"matchers":[{"string":"女王之慾可以觸發等級 # 的審判烈焰"}],"trade":{"ids":{"explicit":["explicit.stat_2766423342"]}}} +{"ref":"Queen's Demand can Trigger Level # Storm of Judgement","better":1,"matchers":[{"string":"女王之慾可以觸發等級 # 的審判風暴"}],"trade":{"ids":{"explicit":["explicit.stat_758006884"]}}} +{"ref":"Quicksilver Flasks you Use also apply to nearby Allies","better":1,"matchers":[{"string":"你使用的水銀藥劑同時套用至附近友方"}],"trade":{"ids":{"explicit":["explicit.stat_699756626"]}}} +{"ref":"Rage grants Spell Damage instead of Attack Damage","better":1,"matchers":[{"string":"盛怒賦予法術傷害,而非攻擊傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2933909365"]}}} +{"ref":"Rage Vortex Sacrifices +#% of Rage","better":1,"matchers":[{"string":"盛怒漩渦獻祭 #% 盛怒"}],"trade":{"ids":{"enchant":["enchant.stat_1957790343"]}}} +{"ref":"Rain of Arrows has #% chance to fire an additional sequence of arrows","better":1,"matchers":[{"string":"箭雨有 #% 機率發射 1 次額外連續箭矢"}],"trade":{"ids":{"enchant":["enchant.stat_3505939359"]}}} +{"ref":"Raise Zombie does not require a corpse","better":1,"matchers":[{"string":"殭屍復甦不需要屍體"}],"trade":{"ids":{"explicit":["explicit.stat_16924183"]}}} +{"ref":"Raised Zombies Cover Enemies in Ash on Hit","better":1,"matchers":[{"string":"殭屍復甦擊中時,有 #% 機率使敵人餘燼纏身"},{"string":"殭屍復甦擊中時使敵人餘燼纏身","value":100}],"trade":{"ids":{"explicit":["explicit.stat_613525808"]}}} +{"ref":"Raised Zombies deal #% increased Damage","better":1,"matchers":[{"string":"增加 #% 殭屍造成的傷害"},{"string":"減少 #% 殭屍造成的傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2228518621"],"enchant":["enchant.stat_2228518621"]}}} +{"ref":"Raised Zombies deal #% more Physical Damage","better":1,"matchers":[{"string":"殭屍造成 #% 更多物理傷害"},{"string":"殭屍造成 #% 更少物理傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_568070507"]}}} +{"ref":"Raised Zombies have #% increased Attack Speed","better":1,"matchers":[{"string":"殭屍增加 #% 攻擊速度"},{"string":"殭屍減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2499559911"]}}} +{"ref":"Raised Zombies have #% increased maximum Life","better":1,"matchers":[{"string":"殭屍增加 #% 最大生命"},{"string":"殭屍減少 #% 最大生命","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_927817294"]}}} +{"ref":"Raised Zombies have +# to maximum Life","better":1,"matchers":[{"string":"殭屍復甦 # 最大生命"}],"trade":{"ids":{"explicit":["explicit.stat_4116579804"]}}} +{"ref":"Raised Zombies have +#% to all Resistances","better":1,"matchers":[{"string":"殭屍復甦 #% 全部抗性"}],"trade":{"ids":{"explicit":["explicit.stat_3150000576"]}}} +{"ref":"Raised Zombies have +#% to Elemental Resistances","better":1,"matchers":[{"string":"殭屍復甦 #% 元素抗性"}],"trade":{"ids":{"enchant":["enchant.stat_2871777604"]}}} +{"ref":"Raised Zombies have Avatar of Fire","better":1,"matchers":[{"string":"殭屍復甦有火之化身"}],"trade":{"ids":{"explicit":["explicit.stat_1474437010"]}}} +{"ref":"Raised Zombies take #% of their Maximum Life per second as Fire Damage","better":1,"matchers":[{"string":"殭屍復甦每秒承受 #% 他們最大生命的火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3733496041"]}}} +{"ref":"Rallying Cry Exerts # additional Attack","better":1,"matchers":[{"string":"激勵戰吼竭盡 # 次額外攻擊"}],"trade":{"ids":{"enchant":["enchant.stat_2080441723"]}}} +{"ref":"Rampage","better":1,"matchers":[{"string":"暴怒"}],"trade":{"ids":{"explicit":["explicit.stat_2397408229"]}}} +{"ref":"Rare and Unique Monsters found in Areas are Possessed and their Minions are Touched","better":1,"matchers":[{"string":"區域中的稀有和傳奇怪物被附身,且它們的召喚物被觸碰"}],"trade":{"ids":{"explicit":["explicit.stat_2168365746"]}}} +{"ref":"Rare and Unique Monsters remove #% of Life, Mana and Energy Shield from Players or their Minions on Hit","better":1,"fromUberAreaMods":true,"matchers":[{"string":"稀有與傳奇怪物被擊中時,玩家和召喚物的生命、魔力和能量護盾減少 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3270788481"],"fractured":["fractured.stat_3270788481"]}}} +{"ref":"Rare Monsters each have # additional Modifier","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"matchers":[{"string":"每個稀有怪物有 # 個額外詞綴"}],"trade":{"ids":{"explicit":["explicit.stat_2550456553"],"fractured":["fractured.stat_2550456553"]}}} +{"ref":"Rare Monsters have #% chance to have a Volatile Core","better":1,"fromUberAreaMods":true,"matchers":[{"string":"稀有怪物有 #% 機率擁有核息"},{"string":"稀有怪物擁有核息","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1706239920"],"fractured":["fractured.stat_1706239920"]}}} +{"ref":"Rare monsters in area are Shaper-Touched","better":1,"fromUberAreaMods":true,"matchers":[{"string":"區域內的稀有怪物為塑界者之觸"}],"trade":{"ids":{"explicit":["explicit.stat_2931889194"],"fractured":["fractured.stat_2931889194"]}}} +{"ref":"Reap deals #% increased Damage","better":1,"matchers":[{"string":"收割增加 #% 傷害"},{"string":"收割減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1545524769"]}}} +{"ref":"Recharges # Charge when you Consume an Ignited corpse","better":1,"matchers":[{"string":"當你消耗 1 個被點燃的屍體時補充 # 充能"}],"trade":{"ids":{"explicit":["explicit.stat_2557247391"]}}} +{"ref":"Reckoning has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"清算增加 #% 冷卻時間恢復速度"},{"string":"清算減少 #% 冷卻時間恢復速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_804983774"]}}} +{"ref":"Recoup #% of Damage Taken by your Totems as Life","better":1,"matchers":[{"string":"補償 #% 你圖騰承受的傷害為生命"}],"trade":{"ids":{"explicit":["explicit.stat_825316273"]}}} +{"ref":"Recover # Energy Shield when your Trap is triggered by an Enemy","better":1,"matchers":[{"string":"你的陷阱被敵人觸發時恢復 # 能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_1073384532"]}}} +{"ref":"Recover # Life when you Block","better":1,"matchers":[{"string":"格擋時恢復 # 生命"}],"trade":{"ids":{"explicit":["explicit.stat_1678831767"]}}} +{"ref":"Recover # Life when you Ignite an Enemy","better":1,"matchers":[{"string":"點燃一個敵人恢復 # 生命"}],"trade":{"ids":{"explicit":["explicit.stat_4045269075"]}}} +{"ref":"Recover # Life when you Suppress Spell Damage","better":1,"matchers":[{"string":"當你壓抑法術傷害時,恢復 # 生命"}],"trade":{"ids":{"explicit":["explicit.stat_1807705940"]}}} +{"ref":"Recover # Life when your Trap is triggered by an Enemy","better":1,"matchers":[{"string":"你的陷阱被敵人觸發時恢復 # 生命"}],"trade":{"ids":{"explicit":["explicit.stat_3952196842"]}}} +{"ref":"Recover # Resolve when you complete a Room","better":1,"matchers":[{"string":"當你完成房間時,獲得 # 決心"}],"trade":{"ids":{"explicit":["sanctum.stat_3002663227"]}}} +{"ref":"Recover #% of Energy Shield on Kill","better":1,"matchers":[{"string":"擊殺時恢復 #% 能量護盾"},{"string":"擊殺時失去 #% 能量護盾","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1699499433","explicit.stat_2406605753"],"fractured":["fractured.stat_2406605753"],"scourge":["scourge.stat_2406605753"]}}} +{"ref":"Recover #% of Energy Shield when you Block","better":1,"matchers":[{"string":"當你格擋時,恢復 #% 能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_1606263610"],"fractured":["fractured.stat_1606263610"]}}} +{"ref":"Recover #% of Energy Shield when you Kill an Enemy during Effect","better":1,"matchers":[{"string":"效果持續時間,當你擊殺 1 個敵人時恢復 #% 能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_2347201221"]}}} +{"ref":"Recover #% of Energy Shield when you lose a Spirit Charge","better":1,"matchers":[{"string":"當你失去 1 顆靈體能量球時,恢復 #% 能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_1996775727"]}}} +{"ref":"Recover #% of Life at the end of the Effect","better":1,"matchers":[{"string":"效果結束時恢復 #% 生命"},{"string":"效果結束時恢復所有生命","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4078194486"]}}} +{"ref":"Recover #% of Life on Kill","better":1,"matchers":[{"string":"擊殺時恢復 #% 生命"},{"string":"擊殺時失去 #% 生命","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2023107756","explicit.stat_751813227"],"implicit":["implicit.stat_2023107756"],"fractured":["fractured.stat_2023107756"],"scourge":["scourge.stat_2023107756"]}}} +{"ref":"Recover #% of Life on Rampage","better":1,"matchers":[{"string":"暴怒時恢復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_2737492258"]}}} +{"ref":"Recover #% of Life on use","better":1,"matchers":[{"string":"使用時恢復 #% 生命"},{"string":"使用時恢復所有生命","value":101}],"trade":{"ids":{"explicit":["explicit.stat_2629106530"]}}} +{"ref":"Recover #% of Life per Endurance Charge on use\nLose all Endurance Charges on use","better":1,"matchers":[{"string":"使用時每顆耐力球恢復 #% 生命\n使用時失去所有耐力球"}],"trade":{"ids":{"explicit":["explicit.stat_521653232"]}}} +{"ref":"Recover #% of Life when you Block","better":1,"matchers":[{"string":"當你格擋時,恢復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_2442647190"],"implicit":["implicit.stat_2442647190"],"fractured":["fractured.stat_2442647190"]}}} +{"ref":"Recover #% of Life when you Ignite an Enemy","better":1,"matchers":[{"string":"當你點燃敵人時,恢復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_3112776239"]}}} +{"ref":"Recover #% of Life when you Kill an Enemy during Effect","better":1,"matchers":[{"string":"效果持續時間,當你擊殺 1 個敵人時恢復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_1217476473"]}}} +{"ref":"Recover #% of Life when you Kill an Enemy while you have Rage","better":1,"matchers":[{"string":"你有盛怒時擊殺敵人,恢復 #% 生命"}],"trade":{"ids":{"enchant":["enchant.stat_3305072079"]}}} +{"ref":"Recover #% of Life when you lose a Spirit Charge","better":1,"matchers":[{"string":"當你失去 1 顆靈體能量球時,恢復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_305634887"]}}} +{"ref":"Recover #% of Life when you use a Flask","better":1,"matchers":[{"string":"當你使用藥劑時恢復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_3184268466"]}}} +{"ref":"Recover #% of Life when you use a Mana Flask","better":1,"matchers":[{"string":"當你使用魔力藥劑時,恢復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_1926816773"]}}} +{"ref":"Recover #% of Mana and Energy Shield when you Focus","better":1,"matchers":[{"string":"當你專注時,恢復 #% 魔力和能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_2992263716"],"fractured":["fractured.stat_2992263716"],"crafted":["crafted.stat_2992263716"]}}} +{"ref":"Recover #% of Mana on Kill","better":1,"matchers":[{"string":"擊殺時恢復 #% 魔力"},{"string":"擊殺時失去 #% 魔力","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1030153674","explicit.stat_1604736568"],"implicit":["implicit.stat_1030153674"],"fractured":["fractured.stat_1030153674"],"scourge":["scourge.stat_1030153674"]}}} +{"ref":"Recover #% of Mana when you Kill an Enemy during Effect","better":1,"matchers":[{"string":"效果持續時間,當你擊殺 1 個敵人時恢復 #% 魔力"}],"trade":{"ids":{"explicit":["explicit.stat_3247931236"]}}} +{"ref":"Recover #% of Mana when you Shock an Enemy","better":1,"matchers":[{"string":"當你感電敵人時,失去 #% 魔力"},{"string":"當你感電敵人時,恢復 #% 魔力"}],"trade":{"ids":{"explicit":["explicit.stat_2524029637"]}}} +{"ref":"Recover #% of your maximum Mana when you Block","better":1,"matchers":[{"string":"格擋恢復 #% 最大魔力"}],"trade":{"ids":{"explicit":["explicit.stat_3041288981"],"implicit":["implicit.stat_3041288981"],"fractured":["fractured.stat_3041288981"]}}} +{"ref":"Recover an additional #% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life","better":1,"matchers":[{"string":"若使用時非滿血,在 10 秒內恢復額外 #% 藥劑的生命恢復總量"}],"trade":{"ids":{"explicit":["explicit.stat_307410279"],"fractured":["fractured.stat_307410279"]}}} +{"ref":"Recover Energy Shield equal to #% of Armour when you Block","better":1,"matchers":[{"string":"當你格擋時,恢復等同 #% 護甲的能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_3681057026"]}}} +{"ref":"Reflect Shocks applied to you to all Nearby Enemies","better":1,"matchers":[{"string":"反射感電狀態將同時對附近敵人產生效果"}],"trade":{"ids":{"explicit":["explicit.stat_615884286"]}}} +{"ref":"Reflection of Abyss (Difficulty #)","better":1,"matchers":[{"string":"深淵映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_38892"]}}} +{"ref":"Reflection of Ambush (Difficulty #)","better":1,"matchers":[{"string":"伏擊映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_48307"]}}} +{"ref":"Reflection of Angling (Difficulty #)","better":1,"matchers":[{"string":"釣魚映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_40794"]}}} +{"ref":"Reflection of Azurite (Difficulty #)","better":1,"matchers":[{"string":"碧藍映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_40031"]}}} +{"ref":"Reflection of Bestiary (Difficulty #)","better":1,"matchers":[{"string":"獸獵映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_55569"]}}} +{"ref":"Reflection of Breach (Difficulty #)","better":1,"matchers":[{"string":"裂痕映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_62572"]}}} +{"ref":"Reflection of Brutality (Difficulty #)","better":1,"matchers":[{"string":"殘暴映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_29096"]}}} +{"ref":"Reflection of Camaraderie (Difficulty #)","better":1,"matchers":[{"string":"友誼映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_35395"]}}} +{"ref":"Reflection of Catalysis (Difficulty #)","better":1,"matchers":[{"string":"催化映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_57850"]}}} +{"ref":"Reflection of Chaos (Difficulty #)","better":1,"matchers":[{"string":"混沌映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_50834"]}}} +{"ref":"Reflection of Conflict (Difficulty #)","better":1,"matchers":[{"string":"衝突映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_1931"]}}} +{"ref":"Reflection of Darkness (Difficulty #)","better":1,"matchers":[{"string":"黑暗映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_34457"]}}} +{"ref":"Reflection of Delirium (Difficulty #)","better":1,"matchers":[{"string":"譫妄映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_22138"]}}} +{"ref":"Reflection of Delve (Difficulty #)","better":1,"matchers":[{"string":"掘獄映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_18737"]}}} +{"ref":"Reflection of Demonfire (Difficulty #)","better":1,"matchers":[{"string":"業火映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_28500"]}}} +{"ref":"Reflection of Domination (Difficulty #)","better":1,"matchers":[{"string":"支配映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_63412"]}}} +{"ref":"Reflection of Entrapment (Difficulty #)","better":1,"matchers":[{"string":"誘捕映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_44399"]}}} +{"ref":"Reflection of Essence (Difficulty #)","better":1,"matchers":[{"string":"精髓映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_49862"]}}} +{"ref":"Reflection of Experimentation (Difficulty #)","better":1,"matchers":[{"string":"實驗映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_55676"]}}} +{"ref":"Reflection of Flame (Difficulty #)","better":1,"matchers":[{"string":"烈焰映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_42468"]}}} +{"ref":"Reflection of Fractured Dimensions (Difficulty #)","better":1,"matchers":[{"string":"破裂次元映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_49488"]}}} +{"ref":"Reflection of Frost (Difficulty #)","better":1,"matchers":[{"string":"寒霜映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_38110"]}}} +{"ref":"Reflection of Guilt (Difficulty #)","better":1,"matchers":[{"string":"責難映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_25480"]}}} +{"ref":"Reflection of Imprisonment (Difficulty #)","better":1,"matchers":[{"string":"監禁映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_10363"]}}} +{"ref":"Reflection of Kalandra (Difficulty #)","better":1,"matchers":[{"string":"卡蘭德映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_36591"]}}} +{"ref":"Reflection of Legion (Difficulty #)","better":1,"matchers":[{"string":"戰亂映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_403"]}}} +{"ref":"Reflection of Metamorph (Difficulty #)","better":1,"matchers":[{"string":"鍊魔映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_3699"]}}} +{"ref":"Reflection of Occultism (Difficulty #)","better":1,"matchers":[{"string":"神秘映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_24451"]}}} +{"ref":"Reflection of Paradise (Difficulty #)","better":1,"matchers":[{"string":"天堂映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_50846"]}}} +{"ref":"Reflection of Perverted Faith (Difficulty #)","better":1,"matchers":[{"string":"怪其信仰映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_27678"]}}} +{"ref":"Reflection of Phaaryl (Difficulty #)","better":1,"matchers":[{"string":"法瑞爾映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_7674"]}}} +{"ref":"Reflection of Possession (Difficulty #)","better":1,"matchers":[{"string":"附身映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_25049"]}}} +{"ref":"Reflection of Power (Difficulty #)","better":1,"matchers":[{"string":"權力映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_35950"]}}} +{"ref":"Reflection of Scourge (Difficulty #)","better":1,"matchers":[{"string":"災魘映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_62360"]}}} +{"ref":"Reflection of Stasis (Difficulty #)","better":1,"matchers":[{"string":"靜止映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_32968"]}}} +{"ref":"Reflection of Sulphite (Difficulty #)","better":1,"matchers":[{"string":"硫酸映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_45086"]}}} +{"ref":"Reflection of the Black Scythe (Difficulty #)","better":1,"matchers":[{"string":"黑暗血鐮映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_9662"]}}} +{"ref":"Reflection of the Breachlord (Difficulty #)","better":1,"matchers":[{"string":"裂痕君主映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_62935"]}}} +{"ref":"Reflection of the Broken Circle (Difficulty #)","better":1,"matchers":[{"string":"破碎環映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_43128"]}}} +{"ref":"Reflection of the Chalice (Difficulty #)","better":1,"matchers":[{"string":"聖杯映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_64561"]}}} +{"ref":"Reflection of the Chasm (Difficulty #)","better":1,"matchers":[{"string":"裂口映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_57101"]}}} +{"ref":"Reflection of the Dream (Difficulty #)","better":1,"matchers":[{"string":"夢想映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_27117"]}}} +{"ref":"Reflection of the Harbingers (Difficulty #)","better":1,"matchers":[{"string":"神諭映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_37203"]}}} +{"ref":"Reflection of the Hunter (Difficulty #)","better":1,"matchers":[{"string":"獵人映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_18816"]}}} +{"ref":"Reflection of the Monolith (Difficulty #)","better":1,"matchers":[{"string":"石陣映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_34796"]}}} +{"ref":"Reflection of the Nightmare (Difficulty #)","better":1,"matchers":[{"string":"噩夢映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_24232"]}}} +{"ref":"Reflection of the Storm (Difficulty #)","better":1,"matchers":[{"string":"風暴映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_2745"]}}} +{"ref":"Reflection of the Sun (Difficulty #)","better":1,"matchers":[{"string":"豔陽映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_60034"]}}} +{"ref":"Reflection of the Trove (Difficulty #)","better":1,"matchers":[{"string":"寶庫映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_46772"]}}} +{"ref":"Reflection of the Wilderness (Difficulty #)","better":1,"matchers":[{"string":"荒野映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_29224"]}}} +{"ref":"Reflection of Thralldom (Difficulty #)","better":1,"matchers":[{"string":"奴役映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_26813"]}}} +{"ref":"Reflection of Torment (Difficulty #)","better":1,"matchers":[{"string":"磨難映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_53950"]}}} +{"ref":"Reflection of Tyranny (Difficulty #)","better":1,"matchers":[{"string":"暴政映像 (難度 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_60981"]}}} +{"ref":"Reflects # Chaos Damage to Melee Attackers","better":1,"matchers":[{"string":"反射 # 混沌傷害給近戰攻擊者"}],"trade":{"ids":{"explicit":["explicit.stat_189451991"]}}} +{"ref":"Reflects # Cold Damage to Melee Attackers","better":1,"matchers":[{"string":"反射 # 冰冷傷害給近戰攻擊者"}],"trade":{"ids":{"explicit":["explicit.stat_4235886357"]}}} +{"ref":"Reflects # Fire Damage to Attackers on Block","better":1,"matchers":[{"string":"格擋時反射 # 火焰傷害至攻擊者"}],"trade":{"ids":{"explicit":["explicit.stat_3815724042"]}}} +{"ref":"Reflects # Fire Damage to Melee Attackers","better":1,"matchers":[{"string":"反射 # 火焰傷害給近戰攻擊者"}],"trade":{"ids":{"explicit":["explicit.stat_1757945818"]}}} +{"ref":"Reflects # Lightning Damage to Attackers on Block","better":1,"matchers":[{"string":"格擋時反射 # 至 # 閃電傷害"},{"string":"格擋時反射 # 閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1810011556"]}}} +{"ref":"Reflects # Lightning Damage to Melee Attackers","better":1,"matchers":[{"string":"反射 # 閃電傷害給近戰攻擊者"}],"trade":{"ids":{"explicit":["explicit.stat_3868184702"]}}} +{"ref":"Reflects # Physical Damage to Melee Attackers","better":1,"matchers":[{"string":"反射 # 物理傷害給近戰攻擊者"}],"trade":{"ids":{"explicit":["explicit.stat_3767873853"],"implicit":["implicit.stat_3767873853"],"fractured":["fractured.stat_3767873853"],"scourge":["scourge.stat_3767873853"],"crafted":["crafted.stat_3767873853"]}}} +{"ref":"Reflects # to # Lightning Damage to Melee Attackers","better":1,"matchers":[{"string":"反射 # 至 # 閃電傷害給近戰攻擊者"}],"trade":{"ids":{"explicit":["explicit.stat_1243237244"]}}} +{"ref":"Reflects # to # Physical Damage to Attackers on Block","better":1,"matchers":[{"string":"格擋時反射 # 物理傷害"},{"string":"格擋時反射 # 至 # 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1445684883"],"crafted":["crafted.stat_1445684883"]}}} +{"ref":"Reflects # to # Physical Damage to Melee Attackers","better":1,"matchers":[{"string":"反射 # 至 # 物理傷害給近戰攻擊者"}],"trade":{"ids":{"explicit":["explicit.stat_2970307386"]}}} +{"ref":"Reflects your other Ring","better":1,"matchers":[{"string":"映像你的其他戒指"}],"trade":{"ids":{"explicit":["explicit.stat_746505085"]}}} +{"ref":"Regenerate # Energy Shield per second","better":1,"matchers":[{"string":"每秒回復 # 能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_1330109706","explicit.stat_2561836520"],"fractured":["fractured.stat_2561836520"]}}} +{"ref":"Regenerate # Energy Shield per second if all Equipped items are Corrupted","better":1,"matchers":[{"string":"所有裝備的物品皆為已汙染時每秒回復 # 能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_4156715241"]}}} +{"ref":"Regenerate # Energy Shield per Second per Poison on you, up to 400 per second","better":1,"matchers":[{"string":"你身上每層中毒,每秒回復 # 能量護盾,最多每秒回復 400"}],"trade":{"ids":{"explicit":["explicit.stat_948687156"]}}} +{"ref":"Regenerate # Energy Shield per second while a Rare or Unique Enemy is Nearby","better":1,"matchers":[{"string":"當附近有稀有或傳奇敵人時,每秒回復 # 能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_2238019079"],"fractured":["fractured.stat_2238019079"],"crafted":["crafted.stat_2238019079"]}}} +{"ref":"Regenerate # Life over 1 second when you Cast a Spell","better":1,"matchers":[{"string":"你施放法術後在 1 秒內回復 # 生命"}],"trade":{"ids":{"explicit":["explicit.stat_1955882986"]}}} +{"ref":"Regenerate # Life per second","better":1,"matchers":[{"string":"# 每秒生命回復"}],"trade":{"ids":{"explicit":["explicit.stat_3325883026"],"implicit":["implicit.stat_3325883026"],"fractured":["fractured.stat_3325883026"],"scourge":["scourge.stat_3325883026"],"crafted":["crafted.stat_3325883026"]}}} +{"ref":"Regenerate # Life per second for each Uncorrupted Item Equipped","better":1,"matchers":[{"string":"每件裝備的未汙染物品,每秒回復 # 生命"}],"trade":{"ids":{"explicit":["explicit.stat_405941409"]}}} +{"ref":"Regenerate # Life per second if no Equipped Items are Corrupted","better":1,"matchers":[{"string":"所有裝備的物品無已汙染時每秒回復 # 生命"}],"trade":{"ids":{"explicit":["explicit.stat_2497198283"]}}} +{"ref":"Regenerate # Life per second if you have at least 1000 Maximum Energy Shield","better":1,"matchers":[{"string":"若你至少有 1000 最大能量護盾,每秒回復 # 生命"}],"trade":{"ids":{"explicit":["explicit.stat_1704843611"]}}} +{"ref":"Regenerate # Life per second if you have at least 1500 Maximum Energy Shield","better":1,"matchers":[{"string":"若你至少有 1500 最大能量護盾,每秒回復 # 生命"}],"trade":{"ids":{"explicit":["explicit.stat_3227159962"]}}} +{"ref":"Regenerate # Life per second if you have at least 500 Maximum Energy Shield","better":1,"matchers":[{"string":"若你至少有 500 最大能量護盾,每秒回復 # 生命"}],"trade":{"ids":{"explicit":["explicit.stat_1103902353"]}}} +{"ref":"Regenerate # Life per second per Endurance Charge","better":1,"matchers":[{"string":"每個耐力球增加 # 每秒生命回復"}],"trade":{"ids":{"explicit":["explicit.stat_1898967950"]}}} +{"ref":"Regenerate # Life per second per Level","better":1,"matchers":[{"string":"每等級每秒回復 # 生命"}],"trade":{"ids":{"explicit":["explicit.stat_1384864963"]}}} +{"ref":"Regenerate # Life per Second while affected by Vitality","better":1,"matchers":[{"string":"被活力影響時,每秒回復 # 生命"}],"trade":{"ids":{"explicit":["explicit.stat_3489570622"]}}} +{"ref":"Regenerate # Life per second while Ignited","better":1,"matchers":[{"string":"被點燃時,每秒回復 # 生命"}],"trade":{"ids":{"explicit":["explicit.stat_952897668"]}}} +{"ref":"Regenerate # Life per Second while in Blood Stance","better":1,"matchers":[{"string":"血腥姿態時,每秒回復 # 生命"}],"trade":{"ids":{"explicit":["explicit.stat_550848224"]}}} +{"ref":"Regenerate # Life per second while moving","better":1,"matchers":[{"string":"移動時每秒回復 # 生命"}],"trade":{"ids":{"explicit":["explicit.stat_2841027131"],"implicit":["implicit.stat_2841027131"]}}} +{"ref":"Regenerate # Life per Second while on Low Life","better":1,"matchers":[{"string":"貧血時,每秒回復 # 生命"}],"trade":{"ids":{"explicit":["explicit.stat_2161482953"]}}} +{"ref":"Regenerate # Life per Second while you have Avian's Flight","better":1,"matchers":[{"string":"當你有飛羽飄翔時,每秒回復 # 生命"}],"trade":{"ids":{"explicit":["explicit.stat_2589482056"]}}} +{"ref":"Regenerate # Mana per second","better":1,"matchers":[{"string":"每秒 # 基本魔力回復"}],"trade":{"ids":{"explicit":["explicit.stat_4291461939"],"implicit":["implicit.stat_4291461939"],"fractured":["fractured.stat_4291461939"],"scourge":["scourge.stat_4291461939"],"crafted":["crafted.stat_4291461939"]}}} +{"ref":"Regenerate # Mana per second if all Equipped Items are Corrupted","better":1,"matchers":[{"string":"所有裝備的物品皆為已汙染時每秒回復 # 魔力"}],"trade":{"ids":{"explicit":["explicit.stat_2760138143"]}}} +{"ref":"Regenerate # Mana per Second per 10 Devotion","better":1,"matchers":[{"string":"每 10 個奉獻每秒 # 魔力回復"}],"trade":{"ids":{"explicit":["explicit.stat_2042813020"]}}} +{"ref":"Regenerate # Mana per Second per Power Charge","better":1,"matchers":[{"string":"每顆暴擊球每秒回復 # 魔力"}],"trade":{"ids":{"explicit":["explicit.stat_4084763463"]}}} +{"ref":"Regenerate # Mana per Second while Dual Wielding","better":1,"matchers":[{"string":"雙持武器時,每秒回復 # 魔力"}],"trade":{"ids":{"implicit":["implicit.stat_1361343333"]}}} +{"ref":"Regenerate # Mana per Second while holding a Shield","better":1,"matchers":[{"string":"持盾時,每秒回復 # 魔力"}],"trade":{"ids":{"implicit":["implicit.stat_3762868276"]}}} +{"ref":"Regenerate # Mana per second while wielding a Staff","better":1,"matchers":[{"string":"持長杖時,每秒回復 # 魔力"}],"trade":{"ids":{"implicit":["implicit.stat_1388668644"]}}} +{"ref":"Regenerate # Mana per Second while you have Avian's Flight","better":1,"matchers":[{"string":"當你有飛羽飄翔每秒回復 # 魔力"}],"trade":{"ids":{"explicit":["explicit.stat_1495376076"]}}} +{"ref":"Regenerate #% Life over one second when hit while affected by Vitality","better":1,"matchers":[{"string":"被活力影響時,被擊中時 1 秒內回復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_1366273824"]}}} +{"ref":"Regenerate #% Life over one second when Hit while Sane","better":1,"matchers":[{"string":"理智時被擊中在 1 秒內回復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_2504632495"]}}} +{"ref":"Regenerate #% of Energy Shield over 2 seconds when you Consume a corpse","better":1,"matchers":[{"string":"當你消耗屍體時,2 秒內回復 #% 能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_2900084972"]}}} +{"ref":"Regenerate #% of Energy Shield per second","better":1,"matchers":[{"string":"每秒回復 #% 能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_3594640492"],"implicit":["implicit.stat_3594640492"],"fractured":["fractured.stat_3594640492"]}}} +{"ref":"Regenerate #% of Energy Shield per Second for\nevery 10 Intelligence on Allocated Passives in Radius","better":1,"matchers":[{"string":"範圍內每 10 點配置智慧每秒回復 #% 能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_615595418"]}}} +{"ref":"Regenerate #% of Energy Shield per second if you've dealt a Critical Strike with this weapon Recently","better":1,"matchers":[{"string":"若你近期使用此武器造成暴擊,每秒回復 #% 能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_298613712"]}}} +{"ref":"Regenerate #% of Energy Shield per second if you've Hit an Enemy Recently","better":1,"matchers":[{"string":"若你近期有擊中敵人,每秒回復 #% 能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_588560583"]}}} +{"ref":"Regenerate #% of Energy Shield per Second while affected by Discipline","dp":true,"better":1,"matchers":[{"string":"被紀律影響時,每秒回復 #% 最大能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_991194404"],"implicit":["implicit.stat_991194404"]}}} +{"ref":"Regenerate #% of Energy Shield per second while on Low Life","better":1,"matchers":[{"string":"貧血時每秒回復 #% 能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_115109959"]}}} +{"ref":"Regenerate #% of Energy Shield per second while Shocked","better":1,"matchers":[{"string":"當你感電時每秒回復 #% 能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_1700808530"]}}} +{"ref":"Regenerate #% of Life per second","dp":true,"better":1,"matchers":[{"string":"每秒回復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_836936635"],"implicit":["implicit.stat_836936635"],"fractured":["fractured.stat_836936635"],"enchant":["enchant.stat_836936635"],"crafted":["crafted.stat_836936635"]}}} +{"ref":"Regenerate #% of Life per second during Effect","better":1,"matchers":[{"string":"效果持續時間,每秒回復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_871270154"],"crafted":["crafted.stat_871270154"]}}} +{"ref":"Regenerate #% of Life per second for each different Ailment affecting you","better":1,"matchers":[{"string":"每個不同影響你的異常狀態,每秒回復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_3491639130"]}}} +{"ref":"Regenerate #% of Life per second for each Raised Zombie","dp":true,"better":1,"matchers":[{"string":"每隻殭屍復甦每秒回復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_2841618445"]}}} +{"ref":"Regenerate #% of Life per second if you have been Hit Recently","better":1,"matchers":[{"string":"若你近期被擊中,每秒回復 #% 生命"},{"string":"若你近期被擊中每秒回復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_2201614328"],"enchant":["enchant.stat_1122635070"]}}} +{"ref":"Regenerate #% of Life per second on Chilled Ground","better":1,"matchers":[{"string":"在冰緩地面上每秒回復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_710105516"]}}} +{"ref":"Regenerate #% of Life per second per 500 Maximum Energy Shield","better":1,"matchers":[{"string":"每 500 能量護盾每秒回復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_1960833438"]}}} +{"ref":"Regenerate #% of Life per second per Endurance Charge","better":1,"matchers":[{"string":"每顆耐力球每秒回復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_989800292"],"implicit":["implicit.stat_989800292"]}}} +{"ref":"Regenerate #% of Life per second per Frenzy Charge","better":1,"matchers":[{"string":"每個狂怒球每秒回復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_2828673491"]}}} +{"ref":"Regenerate #% of Life per second per Power Charge","better":1,"matchers":[{"string":"每顆暴擊球每秒回復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_3961213398"]}}} +{"ref":"Regenerate #% of Life per second while affected by Vitality","dp":true,"better":1,"matchers":[{"string":"被活力影響時,每秒回復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_1165583295"]}}} +{"ref":"Regenerate #% of Life per second while Frozen","better":1,"matchers":[{"string":"冰凍時每秒回復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_2656696317"]}}} +{"ref":"Regenerate #% of Life per second while moving","better":1,"matchers":[{"string":"移動時每秒回復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_908516597"],"fractured":["fractured.stat_908516597"]}}} +{"ref":"Regenerate #% of Life per second while on Low Life","better":1,"matchers":[{"string":"貧血時每秒回復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_3942946753"]}}} +{"ref":"Regenerate #% of Life per second with at least 400 Strength","better":1,"matchers":[{"string":"若你有至少 400 點力量,每秒回復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_1173027373"]}}} +{"ref":"Regenerate #% of Mana over 2 seconds when you Consume a corpse","better":1,"matchers":[{"string":"當你消耗屍體時,2 秒內回復 #% 魔力"}],"trade":{"ids":{"explicit":["explicit.stat_3721828090"]}}} +{"ref":"Regenerate #% of Mana per second","better":1,"matchers":[{"string":"#% 每秒魔力回復"}],"trade":{"ids":{"explicit":["explicit.stat_3188455409"],"implicit":["implicit.stat_3188455409"]}}} +{"ref":"Regenerate #% of Mana per second if you've Hit an Enemy Recently","better":1,"matchers":[{"string":"若你近期有擊中敵人,每秒回復 #% 的魔力"}],"trade":{"ids":{"explicit":["explicit.stat_2602865453"]}}} +{"ref":"Regenerate 1 Rage per second for every # Life Recovery per second from Regeneration\nDoes not delay Inherent Loss of Rage","better":1,"matchers":[{"string":"每 # 每秒生命恢復,就會每秒回復 1 盛怒\n無法延緩失去固有盛怒的速度"}],"trade":{"ids":{"explicit":["explicit.stat_4103111421"]}}} +{"ref":"Reinforcements have #% increased Attack Speed","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"支援增加 #% 攻擊速度"},{"string":"支援減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1339532482"],"fractured":["fractured.stat_1339532482"]}}} +{"ref":"Reinforcements have #% increased Cast Speed","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"支援增加 #% 施放速度"},{"string":"支援減少 #% 施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1843941387"],"fractured":["fractured.stat_1843941387"]}}} +{"ref":"Reinforcements have #% increased Movement Speed","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"支援增加 #% 移動速度"},{"string":"支援減少 #% 移動速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1342271987"],"fractured":["fractured.stat_1342271987"]}}} +{"ref":"Rejuvenation Totem also grants Mana Regeneration equal to #% of its Life Regeneration","better":1,"matchers":[{"string":"回春圖騰同時給予等同 #% 它生命回復的魔力回復"}],"trade":{"ids":{"enchant":["enchant.stat_1803063132"]}}} +{"ref":"Remnants have #% chance to have an additional Suffix Modifier","better":1,"fromAreaMods":true,"matchers":[{"string":"遺跡有 #% 機率有 1 個額外後綴"}],"trade":{"ids":{"implicit":["implicit.stat_1871805225"]}}} +{"ref":"Remove an Ailment when you use a Flask if all Equipped Items are Elder Items","better":1,"matchers":[{"string":"若裝備的物品皆為尊師之物,使用藥劑時移除 1 個異常狀態"}],"trade":{"ids":{"explicit":["explicit.stat_2917587077"]}}} +{"ref":"Remove Chill and Freeze when you use a Flask","better":1,"matchers":[{"string":"使用藥劑時移除冰緩和冰凍"}],"trade":{"ids":{"explicit":["explicit.stat_3296873305"],"implicit":["implicit.stat_3296873305"]}}} +{"ref":"Remove Ignite and Burning when you use a Flask","better":1,"matchers":[{"string":"使用藥劑時移除點燃和燃燒"}],"trade":{"ids":{"explicit":["explicit.stat_1162425204"],"implicit":["implicit.stat_1162425204"],"fractured":["fractured.stat_1162425204"]}}} +{"ref":"Remove Shock when you use a Flask","better":1,"matchers":[{"string":"使用藥劑時移除感電"}],"trade":{"ids":{"explicit":["explicit.stat_561861132"],"implicit":["implicit.stat_561861132"],"fractured":["fractured.stat_561861132"]}}} +{"ref":"Removes #% of Life Recovered from Mana when used","better":1,"matchers":[{"string":"使用時,會扣除生命恢復值 #% 的魔力"}],"trade":{"ids":{"explicit":["explicit.stat_648019518"],"fractured":["fractured.stat_648019518"]}}} +{"ref":"Removes #% of Mana Recovered from Life when used","better":1,"matchers":[{"string":"使用時,會扣除魔力恢復值 #% 的生命"}],"trade":{"ids":{"explicit":["explicit.stat_959641748"],"fractured":["fractured.stat_959641748"]}}} +{"ref":"Removes #% of your maximum Energy Shield on use","better":1,"matchers":[{"string":"使用時扣除最大能量護盾的 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2917449574"]}}} +{"ref":"Removes all but one Life on use\nRemoved life is Regenerated as Energy Shield over # seconds","better":1,"matchers":[{"string":"Removes all but one Life on use\nRemoved life is Regenerated as Energy Shield over # seconds"}],"trade":{"ids":{"explicit":["explicit.stat_4120779321"]}}} +{"ref":"Removes all Energy Shield","better":1,"matchers":[{"string":"移除所有能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_1482608021"]}}} +{"ref":"Removes Bleeding when you use a Flask","better":1,"matchers":[{"string":"使用藥劑時移除流血狀態"}],"trade":{"ids":{"explicit":["explicit.stat_2202201823"]}}} +{"ref":"Removes Bleeding when you use a Warcry","better":1,"matchers":[{"string":"當你使用戰吼時移除流血"}],"trade":{"ids":{"explicit":["explicit.stat_3936926420"]}}} +{"ref":"Removes Curses on use","better":1,"matchers":[{"string":"使用時移除詛咒"}],"trade":{"ids":{"explicit":["explicit.stat_3895393544"],"fractured":["fractured.stat_3895393544"]}}} +{"ref":"Removes Elemental Ailments on Rampage","better":1,"matchers":[{"string":"暴怒時解除元素異常狀態"}],"trade":{"ids":{"explicit":["explicit.stat_627889781"]}}} +{"ref":"Reserves #% of Life","better":1,"matchers":[{"string":"保留 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_2492660287"]}}} +{"ref":"Resolute Technique","better":1,"matchers":[{"string":"堅毅之心"}],"trade":{"ids":{"explicit":["explicit.stat_3943945975"],"implicit":["implicit.stat_3943945975"],"scourge":["scourge.stat_3943945975"]}}} +{"ref":"Resolve Aegis Recovers #% faster while not losing Resolve","better":1,"matchers":[{"string":"沒有失去決心時,決心護盾加速 #% 恢復"},{"string":"沒有失去決心時,決心護盾減緩 #% 恢復","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_3889616543"]}}} +{"ref":"Resolve Mitigation from Enemy Hits is based on +#% of Armour","better":1,"matchers":[{"string":"敵人擊中會根據 #% 護甲使決心輕減"}],"trade":{"ids":{"explicit":["sanctum.stat_3621177126"]}}} +{"ref":"Restores Ward on use","better":1,"matchers":[{"string":"使用時回復保護"}],"trade":{"ids":{"implicit":["implicit.stat_2451856207"]}}} +{"ref":"Reused at the end of this Flask's effect","better":1,"matchers":[{"string":"藥劑效果結束時再次使用"}],"trade":{"ids":{"enchant":["enchant.stat_1932727102"]}}} +{"ref":"Reward Room Monsters deal #% increased Damage","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"獎勵房怪物增加 #% 傷害"},{"string":"獎勵房怪物減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1390113017"],"fractured":["fractured.stat_1390113017"]}}} +{"ref":"Reward Room Monsters take #% increased Damage","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"獎勵房怪物增加承受 #% 傷害"},{"string":"獎勵房怪物減少承受 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_839556554"],"fractured":["fractured.stat_839556554"]}}} +{"ref":"Reward Rooms have #% increased Monsters","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"獎勵房增加 #% 怪物"},{"string":"獎勵房減少 #% 怪物","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4056408881"],"fractured":["fractured.stat_4056408881"]}}} +{"ref":"Rhoa Feather Lure","better":1,"matchers":[{"string":"恐喙鳥羽毛魚餌","value":1},{"string":"海妖蟲魚餌","value":2},{"string":"圖騰木魚餌","value":3},{"string":"奇術魚餌","value":4}],"trade":{"ids":{"explicit":["explicit.stat_3360430812"],"fractured":["fractured.stat_3360430812"]}}} +{"ref":"Right ring slot: #% increased Duration of Ailments on You","better":1,"matchers":[{"string":"右戒指欄位:增加 #% 你身上異常狀態持續時間"},{"string":"右戒指欄位:減少 #% 你身上異常狀態持續時間","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2457848738"]}}} +{"ref":"Right ring slot: #% increased Effect of Curses on you","better":1,"matchers":[{"string":"右戒指欄位:增加 #% 你身上的詛咒效果"},{"string":"右戒指欄位:減少 #% 你身上的詛咒效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4279053153"]}}} +{"ref":"Right ring slot: #% increased Skill Effect Duration","better":1,"matchers":[{"string":"右戒指欄位:增加 #% 技能效果持續時間"},{"string":"右戒指欄位:減少 #% 技能效果持續時間","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2239667237"]}}} +{"ref":"Right ring slot: #% of Cold Damage from Hits taken as Lightning Damage","better":1,"matchers":[{"string":"右戒指欄位:承受來自擊中的 #% 冰冷傷害視為閃電傷害"}],"trade":{"ids":{"implicit":["implicit.stat_744858137"]}}} +{"ref":"Right ring slot: #% of Fire Damage from Hits taken as Cold Damage","better":1,"matchers":[{"string":"右戒指欄位:承受來自擊中的 #% 火焰傷害視為冰冷傷害"}],"trade":{"ids":{"implicit":["implicit.stat_2478238773"]}}} +{"ref":"Right ring slot: #% of Lightning Damage from Hits taken as Fire Damage","better":1,"matchers":[{"string":"右戒指欄位:承受來自擊中的 #% 閃電傷害視為火焰傷害"}],"trade":{"ids":{"implicit":["implicit.stat_1905512385"]}}} +{"ref":"Right ring slot: +# to maximum Mana","better":1,"matchers":[{"string":"右戒指欄位:# 最大魔力"}],"trade":{"ids":{"explicit":["explicit.stat_417509375"]}}} +{"ref":"Right Ring slot: Cover Enemies in Frost for # seconds when you Freeze them","better":1,"matchers":[{"string":"右戒指欄位:當你冰凍敵人時,霜寒纏身他們 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_3536082205"]}}} +{"ref":"Right ring slot: Minions take #% increased Damage","better":1,"matchers":[{"string":"右戒指欄位:召喚物增加承受 #% 傷害"},{"string":"右戒指欄位:召喚物減少承受 #% 傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1069618951"]}}} +{"ref":"Right ring slot: Projectiles from Spells cannot Fork","better":1,"matchers":[{"string":"右戒指欄位:法術的投射物不能分裂"}],"trade":{"ids":{"explicit":["explicit.stat_2933024469"]}}} +{"ref":"Right ring slot: Projectiles from Spells Chain +# times","better":1,"matchers":[{"string":"右戒指欄位:法術的投射物連鎖 # 次"}],"trade":{"ids":{"explicit":["explicit.stat_1555918911"]}}} +{"ref":"Right ring slot: Regenerate #% of Energy Shield per second","better":1,"matchers":[{"string":"右戒指欄位:每秒回復 #% 能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_3676958605"]}}} +{"ref":"Right ring slot: You and your Minions take #% reduced Reflected Physical Damage","better":-1,"matchers":[{"string":"右戒指欄位:你和你的召喚物增加承受 #% 反射物理傷害"},{"string":"右戒指欄位:你和你的召喚物減少承受 #% 反射物理傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1357244124"]},"inverted":true}} +{"ref":"Right ring slot: You cannot Regenerate Mana","better":1,"matchers":[{"string":"右戒指欄位:不能回復魔力"}],"trade":{"ids":{"explicit":["explicit.stat_783864527"]}}} +{"ref":"Right Ring Slot: Your Shocking Skitterbot's Aura applies Socketed Hex Curse instead","better":1,"matchers":[{"string":"右戒指欄位:你感電探測機獸的光環改施放插槽中的咒術詛咒"}],"trade":{"ids":{"explicit":["explicit.stat_1809329372"]}}} +{"ref":"Righteous Fire grants #% increased Spell Damage","better":1,"matchers":[{"string":"正義之火增加 #% 法術傷害"},{"string":"正義之火減少 #% 法術傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3316822388"]}}} +{"ref":"Rin's Veiled","better":0,"matchers":[{"string":"琳的隱匿"}],"trade":{"ids":{"veiled":["veiled.mod_6131"]}}} +{"ref":"Riposte has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"擊刃增加 #% 冷卻恢復速度"},{"string":"擊刃減少 #% 冷卻恢復速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2287986752"]}}} +{"ref":"Rogue Equipment cannot be found","better":1,"matchers":[{"string":"不會掉落到賊裝備"}],"trade":{"ids":{"enchant":["enchant.stat_1045213941"]}}} +{"ref":"Rogue Perks are doubled","better":1,"matchers":[{"string":"盜賊補貼有 #% 更多有效"},{"string":"盜賊補貼為 2 倍","value":100}],"trade":{"ids":{"enchant":["enchant.stat_898812928"]}}} +{"ref":"Rolling Magma Chains an additional time","better":1,"matchers":[{"string":"增加熔岩翻騰 # 次額外連鎖"},{"string":"增加熔岩翻騰 1 次額外連鎖","value":1}],"trade":{"ids":{"enchant":["enchant.stat_2589980605"]}}} +{"ref":"Rooms are unknown on the Sanctum Map","better":1,"matchers":[{"string":"聖域地圖上房間為未知"}],"trade":{"ids":{"explicit":["sanctum.stat_3237367570"]}}} +{"ref":"Rune Blast teleports you to the detonated Rune if you have not detonated Runes in the past 1.5 seconds","better":1,"matchers":[{"string":"若過去 1.5 秒你沒有引爆符文,符文爆破會將你傳送至爆破的符文"}],"trade":{"ids":{"enchant":["enchant.stat_242209782"]}}} +{"ref":"Runebinder","better":1,"matchers":[{"string":"束縛印"}],"trade":{"ids":{"explicit":["explicit.stat_4080245957"],"scourge":["scourge.stat_4080245957"]}}} +{"ref":"Sacrifice #% of Life to gain that much Energy Shield when you Cast a Spell","better":1,"matchers":[{"string":"當你施放法術時獻祭 #% 生命獲得等同其值的能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_613752285"]}}} +{"ref":"Sacrifice #% of your Life when you Use or Trigger a Spell Skill","better":1,"matchers":[{"string":"當你使用或觸發法術技能時,獻祭你 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_545408899"]}}} +{"ref":"Sand Bladestorms move with #% increased speed","better":1,"matchers":[{"string":"沙戮風暴增加 #% 移動速度"},{"string":"沙戮風暴減少 #% 移動速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1556508042"]}}} +{"ref":"Scorch Enemies in Close Range when you Block","better":1,"matchers":[{"string":"當你格擋時,焦灼近距離的敵人"}],"trade":{"ids":{"explicit":["explicit.stat_41178696"]}}} +{"ref":"Scourge Arrow creates +# Spore Pod","better":1,"matchers":[{"string":"天譴之箭製造 # 黴孢"}],"trade":{"ids":{"enchant":["enchant.stat_1044970549"]}}} +{"ref":"Scourge Arrow deals #% increased Damage","better":1,"matchers":[{"string":"天譴之箭增加 #% 傷害"},{"string":"天譴之箭減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_192534517"]}}} +{"ref":"Scourge Arrow has #% chance to Poison per Stage","better":1,"matchers":[{"string":"天譴之箭每層有 #% 機率造成中毒"}],"trade":{"ids":{"enchant":["enchant.stat_2257652056"]}}} +{"ref":"Secrets of Suffering","better":1,"matchers":[{"string":"磨難秘辛"}],"trade":{"ids":{"implicit":["implicit.stat_261342933"]}}} +{"ref":"Seismic Cry has a minimum of # Power","better":1,"matchers":[{"string":"裂地戰吼有最小 # 強度"}],"trade":{"ids":{"enchant":["enchant.stat_355086768"]}}} +{"ref":"Seismic Trap deals #% increased Damage","better":1,"matchers":[{"string":"地裂陷阱增加 #% 傷害"},{"string":"地裂陷阱減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1175282728"]}}} +{"ref":"Seismic Trap has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"地裂陷阱增加 #% 冷卻時間恢復速度"},{"string":"地裂陷阱減少 #% 冷卻時間恢復速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3618430531"]}}} +{"ref":"Seismic Trap has #% increased Skill Effect Duration","better":1,"matchers":[{"string":"地裂陷阱增加 #% 技能效果持續時間"},{"string":"地裂陷阱減少 #% 技能效果持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1615912303"]}}} +{"ref":"Seismic Trap releases an additional Wave","better":1,"matchers":[{"string":"地裂陷阱釋放 # 道額外衝擊波"},{"string":"地裂陷阱釋放 1 道額外衝擊波","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1389191919"]}}} +{"ref":"Sentinels of Purity deal #% increased Damage","better":1,"matchers":[{"string":"純淨護衛增加 #% 傷害"},{"string":"純淨護衛減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_650630047"]}}} +{"ref":"Share Endurance Charges with nearby party members","better":1,"matchers":[{"string":"與附近的隊友分享耐力球"}],"trade":{"ids":{"explicit":["explicit.stat_1881314095"]}}} +{"ref":"Shared Suffering","better":1,"matchers":[{"string":"苦難共磨"}],"trade":{"ids":{"explicit":["explicit.stat_956038713"]}}} +{"ref":"Shattering Steel deals #% increased Damage","better":1,"matchers":[{"string":"鋼之碎擊增加 #% 傷害"},{"string":"鋼之碎擊減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2313072099"]}}} +{"ref":"Shattering Steel has #% chance to not consume Steel Shards","better":1,"matchers":[{"string":"鋼之碎擊有 #% 機率不消耗鋼鐵碎片"}],"trade":{"ids":{"enchant":["enchant.stat_4072657110"]}}} +{"ref":"Shepherd of Souls","better":1,"matchers":[{"string":"靈魂牧者"}],"trade":{"ids":{"explicit":["explicit.stat_2038577923"]}}} +{"ref":"Shield Crush central wave has #% more Area of Effect","better":1,"matchers":[{"string":"重盾粉碎中心波有 #% 更多範圍效果"},{"string":"重盾粉碎中心波有 #% 更少範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_734712401"]}}} +{"ref":"Shock Enemies as though dealing #% more Damage","better":1,"matchers":[{"string":"感電的敵人如同造成 #% 更多傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2206792089","explicit.stat_451866048"]}}} +{"ref":"Shock nearby Enemies for # Seconds when you Focus","better":1,"matchers":[{"string":"當你專注時,感電附近敵人 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_3031766858"],"fractured":["fractured.stat_3031766858"],"crafted":["crafted.stat_3031766858"]}}} +{"ref":"Shock Nova ring deals #% increased Damage","better":1,"matchers":[{"string":"增加閃電新星 #% 電圈傷害"},{"string":"減少閃電新星 #% 電圈傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3652051346"]}}} +{"ref":"Shock Reflection","better":1,"matchers":[{"string":"反射感電狀態"}],"trade":{"ids":{"explicit":["explicit.stat_3291999509"],"fractured":["fractured.stat_3291999509"]}}} +{"ref":"Shocked Enemies you Kill Explode, dealing #% of\ntheir Life as Lightning Damage which cannot Shock","better":1,"matchers":[{"string":"你擊殺感電的敵人爆炸造成等同 #% 敵人最大生命的閃電傷害\n爆炸不能造成感電"}],"trade":{"ids":{"explicit":["explicit.stat_2706994884"]}}} +{"ref":"Shocks from your Hits always increase Damage taken by at least #%","better":1,"matchers":[{"string":"你造成的感電一定會增加至少 #% 的承受傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1712740586"]}}} +{"ref":"Shocks nearby Enemies during Effect, causing 10% increased Damage taken","better":1,"matchers":[{"string":"效果持續時間感電附近敵人,增加他們 10% 承受傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3446170049"]}}} +{"ref":"Shocks you cause are reflected back to you","better":1,"matchers":[{"string":"感電反射回自己"}],"trade":{"ids":{"explicit":["explicit.stat_807955413"]}}} +{"ref":"Shocks you inflict during Effect spread to other Enemies within # metre","better":1,"matchers":[{"string":"效果持續時間,你造成的感電擴散至 # 米內的其它敵人"}],"trade":{"ids":{"explicit":["explicit.stat_911839512"]}}} +{"ref":"Shocks you inflict spread to other Enemies within # metre","better":1,"matchers":[{"string":"你造成的感電擴散至 # 米內的其它敵人"}],"trade":{"ids":{"explicit":["explicit.stat_424549222"],"implicit":["implicit.stat_424549222"]}}} +{"ref":"Shocks you inflict spread to other Enemies within 1.5 metres","better":1,"matchers":[{"string":"你造成的感電擴散至 1.5 米內的其它敵人"}],"trade":{"ids":{"explicit":["explicit.stat_1640259660"]}}} +{"ref":"Shocks you when you reach Maximum Power Charges","better":1,"matchers":[{"string":"當獲得最大暴擊球數量時你被感電"}],"trade":{"ids":{"explicit":["explicit.stat_4256314560"]}}} +{"ref":"Shrapnel Ballista fires an additional Arrow","better":1,"matchers":[{"string":"彈片砲塔發射 # 支額外箭矢"},{"string":"彈片砲塔發射 1 支額外箭矢","value":1}],"trade":{"ids":{"enchant":["enchant.stat_959534996"]}}} +{"ref":"Shrapnel Ballista has #% increased Projectile Speed","better":1,"matchers":[{"string":"彈片砲塔增加 #% 投射物速度"},{"string":"彈片砲塔減少 #% 投射物速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1213017413"]}}} +{"ref":"Shrapnel Ballista has +# to maximum number of Summoned Totems per 200 Strength","better":1,"matchers":[{"string":"每 200 點力量使彈片砲塔 # 召喚圖騰的最大數量"}],"trade":{"ids":{"explicit":["explicit.stat_1124661381"]}}} +{"ref":"Shrapnel Ballista Pierces an additional Target","better":1,"matchers":[{"string":"彈片砲塔穿透 # 個額外目標"},{"string":"彈片砲塔穿透 1 個額外目標","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1494168614"]}}} +{"ref":"Siege Ballista deals #% increased Damage","better":1,"matchers":[{"string":"攻城砲塔增加 #% 傷害"},{"string":"攻城砲塔減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_840189382"]}}} +{"ref":"Siege Ballista has #% increased Attack Speed","better":1,"matchers":[{"string":"攻城砲塔增加 #% 攻擊速度"},{"string":"攻城砲塔減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_444858149"]}}} +{"ref":"Siege Ballista has #% increased Totem Placement Speed","better":1,"matchers":[{"string":"攻城砲塔增加 #% 圖騰放置速度"},{"string":"攻城砲塔減少 #% 圖騰放置速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2896357741"]}}} +{"ref":"Siege Ballista has +# to maximum number of Summoned Totems per 200 Dexterity","better":1,"matchers":[{"string":"攻城炮台每 200 點敏捷 # 召喚圖騰的最大數量"}],"trade":{"ids":{"explicit":["explicit.stat_2125178364"]}}} +{"ref":"Sigil of Power requires #% increased Mana Spent to gain a Stage","better":1,"matchers":[{"string":"咒符之力增加 #% 獲得層數所需消耗的魔力"},{"string":"咒符之力減少 #% 獲得層數所需消耗的魔力","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1582465837"]}}} +{"ref":"Sigil of Power's Buff also grants #% increased Critical Strike Chance per Stage","better":1,"matchers":[{"string":"咒符之力的增益效果,每層增加 #% 暴擊率"},{"string":"咒符之力的增益效果,每層減少 #% 暴擊率","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_479197076"]}}} +{"ref":"Siphoning Trap deals #% increased Damage","better":1,"matchers":[{"string":"虹吸陷阱增加 #% 傷害"},{"string":"虹吸陷阱減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3686368306"]}}} +{"ref":"Siphoning Trap has #% increased Chill Effect","better":1,"matchers":[{"string":"虹吸陷阱增加 #% 冰緩效果"},{"string":"虹吸陷阱減少 #% 冰緩效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2530563277"]}}} +{"ref":"Siphoning Trap has #% increased Skill Effect Duration","better":1,"matchers":[{"string":"虹吸陷阱增加 #% 技能效果持續時間"},{"string":"虹吸陷阱減少 #% 技能效果持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4166695945"]}}} +{"ref":"Siphoning Trap's beam to you grants #% reduced Damage taken for each other beam","better":-1,"matchers":[{"string":"虹吸陷阱的其他每個射線對你增加承受 #% 傷害"},{"string":"虹吸陷阱的其他每個射線對你減少承受 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2673745094"]},"inverted":true}} +{"ref":"Skeletons deal #% increased Damage","better":1,"matchers":[{"string":"增加 #% 骷髏造成的傷害"},{"string":"減少 #% 骷髏造成的傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3059357595"],"enchant":["enchant.stat_3059357595"]}}} +{"ref":"Skeletons gain Added Chaos Damage equal to #% of Maximum Energy Shield on your Equipped Shield","better":1,"matchers":[{"string":"骷髏附加等同 #% 你裝備中的盾牌最大能量護盾的混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1475598909"]}}} +{"ref":"Skills Chain +# times","better":1,"matchers":[{"string":"技能連鎖 #"}],"trade":{"ids":{"explicit":["explicit.stat_1787073323"],"implicit":["implicit.stat_1787073323"],"scourge":["scourge.stat_1787073323"]}}} +{"ref":"Skills Chain an additional time while at maximum Frenzy Charges","better":1,"matchers":[{"string":"最大狂怒球時技能額外連鎖 # 次"},{"string":"最大狂怒球時技能額外連鎖 1 次","value":1}],"trade":{"ids":{"explicit":["explicit.stat_285624304"]}}} +{"ref":"Skills Cost no Mana during Effect","better":1,"matchers":[{"string":"效果持續時間,你的技能不消耗魔力"}],"trade":{"ids":{"explicit":["explicit.stat_1669220541"]}}} +{"ref":"Skills deal #% more Damage for each Warcry Exerting them","better":1,"matchers":[{"string":"每個戰吼竭盡技能,造成 #% 更多傷害"},{"string":"每個戰吼竭盡技能,造成 #% 更少傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2023285759"]}}} +{"ref":"Skills Fire # additional Projectile for 4 seconds after\nyou consume a total of 12 Steel Shards","better":1,"matchers":[{"string":"你消耗總 12 個鋼鐵碎片後,\n技能發射 # 個額外投射物持續 4 秒"}],"trade":{"ids":{"explicit":["explicit.stat_2511521167"]}}} +{"ref":"Skills fire an additional Projectile","better":1,"matchers":[{"string":"技能發射 # 個額外投射物"},{"string":"技能發射 1 個額外投射物","value":1}],"trade":{"ids":{"explicit":["explicit.stat_74338099"],"implicit":["implicit.stat_74338099"]}}} +{"ref":"Skills fire an additional Projectile during Effect","better":1,"matchers":[{"string":"效果持續時間,技能發射 # 個額外投射物"},{"string":"效果持續時間,技能發射 1 個額外投射物","value":1}],"trade":{"ids":{"explicit":["explicit.stat_323705912"]}}} +{"ref":"Skills fire an additional Projectile if you've been Hit Recently","better":1,"matchers":[{"string":"若你近期有被擊中,技能發射 # 個額外投射物"},{"string":"若你近期有被擊中,技能發射 1 個額外投射物","value":1}],"trade":{"ids":{"explicit":["explicit.stat_988207959"]}}} +{"ref":"Skills fire an additional Projectile if you've used a Movement Skill Recently","better":1,"matchers":[{"string":"若你近期有使用位移技能,技能發射 # 個額外投射物"},{"string":"若你近期有使用位移技能,技能發射 1 個額外投射物","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2809802678"]}}} +{"ref":"Skills gain a Base Energy Shield Cost equal to #% of Base Mana Cost","better":1,"matchers":[{"string":"技能獲得等同 #% 基礎魔力消耗的基礎能量護盾消耗"}],"trade":{"ids":{"explicit":["explicit.stat_4013794060"]}}} +{"ref":"Skills gain a Base Life Cost equal to #% of Base Mana Cost","better":1,"matchers":[{"string":"技能獲得等同 #% 基礎魔力消耗的基礎生命消耗"}],"trade":{"ids":{"explicit":["explicit.stat_3605834869"]}}} +{"ref":"Skills Supported by Spellslinger have #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"被法術回音輔助的技能增加 #% 冷卻時間恢復速度"},{"string":"被法術回音輔助的技能減少 #% 冷卻時間恢復速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_465162370"]}}} +{"ref":"Skills Supported by Unleash have #% increased Seal gain frequency","better":1,"matchers":[{"string":"被釋放輔助的技能增加 #% 封印獲得頻率"},{"string":"被釋放輔助的技能減少 #% 封印獲得頻率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1504513372"]}}} +{"ref":"Skills supported by Unleash have +# to maximum number of Seals","better":1,"matchers":[{"string":"被釋放輔助的技能 # 封印最大數量"}],"trade":{"ids":{"explicit":["explicit.stat_1264919148"],"fractured":["fractured.stat_1264919148"]}}} +{"ref":"Skills that would Summon a Totem have #% chance to Summon two Totems instead","better":1,"matchers":[{"string":"召喚圖騰的技能有 #% 機率召喚 2 個圖騰"}],"trade":{"ids":{"explicit":["explicit.stat_1870732546"]}}} +{"ref":"Skills used by Mines have #% increased Area of Effect","better":1,"matchers":[{"string":"被地雷使用的技能增加 #% 範圍效果"},{"string":"被地雷使用的技能減少 #% 範圍效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2228913626"],"fractured":["fractured.stat_2228913626"]}}} +{"ref":"Skills used by Traps have #% increased Area of Effect","better":1,"matchers":[{"string":"被陷阱使用的技能增加 #% 範圍效果"},{"string":"被陷阱使用的技能減少 #% 範圍效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4050593908"],"fractured":["fractured.stat_4050593908"]}}} +{"ref":"Skills which Exert an Attack have #% chance to not count that Attack","better":1,"matchers":[{"string":"竭盡攻擊的技能有 #% 機率不會視為該攻擊"}],"trade":{"ids":{"explicit":["explicit.stat_2538411280"]}}} +{"ref":"Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Dexterity","better":1,"matchers":[{"string":"若你至少有 800 點敏捷,放置地雷技能最多放置 # 個額外地雷"},{"string":"若你至少有 800 點敏捷,放置地雷技能最多放置 1 個額外地雷","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1917661185"]}}} +{"ref":"Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Intelligence","better":1,"matchers":[{"string":"若你至少有 800 點智慧,放置地雷技能最多放置 # 個額外地雷"},{"string":"若你至少有 800 點智慧,放置地雷技能最多放置 1 個額外地雷","value":1}],"trade":{"ids":{"explicit":["explicit.stat_5955083"]}}} +{"ref":"Skills which throw Traps Cost Life instead of Mana","better":1,"matchers":[{"string":"投擲陷阱的技能消耗生命而非魔力"}],"trade":{"ids":{"explicit":["explicit.stat_2420786978"]}}} +{"ref":"Skills which Throw Traps throw up to 1 additional Trap","better":1,"matchers":[{"string":"投擲陷阱的技能額外投擲 # 個陷阱"},{"string":"投擲陷阱的技能額外投擲 1 個陷阱","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1220800126"]}}} +{"ref":"Slaying Enemies close together can attract monsters from Beyond this realm","better":1,"fromAreaMods":true,"matchers":[{"string":"擊殺敵人將會吸引更強大的怪物登場"}],"trade":{"ids":{"explicit":["explicit.stat_1837040413"],"implicit":["implicit.stat_1837040413"],"fractured":["fractured.stat_1837040413"],"enchant":["enchant.stat_1837040413"]}}} +{"ref":"Slaying Enemies has a #% increased chance to spawn a Beyond Portal","better":1,"fromAreaMods":true,"matchers":[{"string":"擊殺敵人增加 #% 機率產生超越傳送門"},{"string":"擊殺敵人減少 #% 機率產生超越傳送門","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3036422124"]}}} +{"ref":"Smite deals #% increased Damage","better":1,"matchers":[{"string":"雷鳴重擊增加 #% 傷害"},{"string":"雷鳴重擊減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3901016205"]}}} +{"ref":"Smite has #% increased Aura Effect","better":1,"matchers":[{"string":"雷鳴重擊增加 #% 光環效果"}],"trade":{"ids":{"enchant":["enchant.stat_2294732229"]}}} +{"ref":"Smite has a #% chance for lightning to strike another target","better":1,"matchers":[{"string":"雷鳴重擊有 #% 機率始閃電擊中其他目標"}],"trade":{"ids":{"enchant":["enchant.stat_3946561324"]}}} +{"ref":"Smoke Mine grants additional #% increased Movement Speed","better":1,"matchers":[{"string":"煙霧地雷額外增加 #% 移動速度"},{"string":"煙霧地雷額外減少 #% 移動速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3564777492"]}}} +{"ref":"Smuggler's Caches have #% chance to Duplicate contained Rogue's Markers","better":1,"matchers":[{"string":"走私者的祕寶有 #% 機率複製內含的盜賊之印"},{"string":"走私者的祕寶複製內含的盜賊之印","value":100}],"trade":{"ids":{"explicit":["explicit.stat_833254006"]}}} +{"ref":"Sniper's Mark has #% increased Curse Effect","better":1,"matchers":[{"string":"狙擊者印記增加 #% 詛咒效果"},{"string":"狙擊者印記減少 #% 詛咒效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2789561878"]}}} +{"ref":"Socketed Attacks have +# to Total Mana Cost","better":-1,"matchers":[{"string":"插槽中的攻擊 # 總魔力消耗"}],"trade":{"ids":{"explicit":["explicit.stat_2264586521"],"fractured":["fractured.stat_2264586521"]}}} +{"ref":"Socketed Attacks have +#% to Critical Strike Chance","dp":true,"better":1,"matchers":[{"string":"插槽中的攻擊 #% 暴擊率"}],"trade":{"ids":{"explicit":["explicit.stat_2867348718"],"fractured":["fractured.stat_2867348718"]}}} +{"ref":"Socketed Attacks have +#% to Critical Strike Multiplier","better":1,"matchers":[{"string":"插槽中的攻擊 #% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_356456977"],"fractured":["fractured.stat_356456977"]}}} +{"ref":"Socketed Curse Gems have #% increased Reservation Efficiency","better":-1,"matchers":[{"string":"插槽中詛咒寶石減少 #% 保留效用"},{"string":"插槽中詛咒寶石增加 #% 保留效用","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1471600638"]},"inverted":true}} +{"ref":"Socketed Gems are Supported by Level # Added Chaos Damage","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的附加混沌傷害輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_128","explicit.stat_411460446"],"scourge":["scourge.stat_411460446"]}}} +{"ref":"Socketed Gems are Supported by Level # Added Cold Damage","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的附加冰冷傷害輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_127","explicit.stat_4020144606"],"scourge":["scourge.stat_4020144606"]}}} +{"ref":"Socketed Gems are Supported by Level # Added Fire Damage","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的附加火焰傷害輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_126","explicit.stat_2572192375"],"implicit":["implicit.stat_2572192375"],"fractured":["fractured.stat_2572192375"]}}} +{"ref":"Socketed Gems are Supported by Level # Added Lightning Damage","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的附加閃電傷害輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_125","explicit.stat_1647529598"],"scourge":["scourge.stat_1647529598"]}}} +{"ref":"Socketed Gems are supported by Level # Additional Accuracy","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的額外命中輔助"}],"trade":{"ids":{"explicit":["explicit.stat_1567462963"],"implicit":["implicit.stat_1567462963"],"fractured":["fractured.stat_1567462963"]}}} +{"ref":"Socketed Gems are Supported by Level # Advanced Traps","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的陷阱冷卻輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_6","explicit.stat_3839163699"],"fractured":["fractured.stat_3839163699"]}}} +{"ref":"Socketed Gems are Supported by Level # Ancestral Call","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的先祖怒嚎輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_14","explicit.stat_696805682"],"fractured":["fractured.stat_696805682"]}}} +{"ref":"Socketed Gems are Supported by Level # Arcane Surge","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的秘能波動輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_123","explicit.stat_2287264161"]}}} +{"ref":"Socketed Gems are Supported by Level # Archmage","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的魔幻輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_122","explicit.stat_3652278215"]}}} +{"ref":"Socketed Gems are Supported by Level # Arrogance","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的傲慢輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_116","explicit.stat_3922006600"],"implicit":["implicit.stat_3922006600"],"crafted":["crafted.stat_3922006600"]}}} +{"ref":"Socketed Gems are Supported by Level # Arrow Nova","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的箭矢新星輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_121","explicit.stat_1331336999"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Added Cold Damage","better":1,"matchers":[{"string":"此物品插槽中寶石被等級 # 覺醒.附加冰冷傷害輔助"}],"trade":{"ids":{"explicit":["explicit.stat_2509486489"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Added Fire Damage","better":1,"matchers":[{"string":"此物品插槽中寶石被等級 # 覺醒.附加火焰傷害輔助"}],"trade":{"ids":{"explicit":["explicit.stat_339131601"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Brutality","better":1,"matchers":[{"string":"此物品插槽中寶石被等級 # 覺醒.殘暴輔助"}],"trade":{"ids":{"explicit":["explicit.stat_3610200044"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Burning Damage","better":1,"matchers":[{"string":"此物品插槽中寶石被等級 # 覺醒.燃燒傷害輔助"}],"trade":{"ids":{"explicit":["explicit.stat_493707013"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Cold Penetration","better":1,"matchers":[{"string":"此物品插槽中寶石被等級 # 覺醒.冰冷穿透輔助"}],"trade":{"ids":{"explicit":["explicit.stat_1889095429"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Controlled Destruction","better":1,"matchers":[{"string":"此物品插槽中寶石被等級 # 覺醒.精準破壞輔助"}],"trade":{"ids":{"explicit":["explicit.stat_271119551"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Elemental Damage With Attacks","better":1,"matchers":[{"string":"此物品插槽中寶石被等級 # 覺醒.元素攻擊傷害輔助"}],"trade":{"ids":{"explicit":["explicit.stat_1786672841"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Elemental Focus","better":1,"matchers":[{"string":"此物品插槽中寶石被等級 # 覺醒.元素集中輔助"}],"trade":{"ids":{"explicit":["explicit.stat_2111661233"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Empower","better":1,"matchers":[{"string":"此物品插槽中寶石被等級 # 覺醒.賦予輔助"}],"trade":{"ids":{"explicit":["explicit.stat_3739157305"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Greater Multiple Projectiles","better":1,"matchers":[{"string":"此物品插槽中寶石被等級 # 覺醒.高階多重投射物輔助"}],"trade":{"ids":{"explicit":["explicit.stat_1980028507"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Increased Area Of Effect","better":1,"matchers":[{"string":"此物品插槽中寶石被等級 # 覺醒.增大範圍輔助"}],"trade":{"ids":{"explicit":["explicit.stat_2333301609"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Lightning Penetration","better":1,"matchers":[{"string":"此物品插槽中寶石被等級 # 覺醒.閃電穿透輔助"}],"trade":{"ids":{"explicit":["explicit.stat_1544223714"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Melee Physical Damage","better":1,"matchers":[{"string":"此物品插槽中寶石被等級 # 覺醒.近戰物理傷害輔助"}],"trade":{"ids":{"explicit":["explicit.stat_2173069393"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Melee Splash","better":1,"matchers":[{"string":"此物品插槽中寶石被等級 # 覺醒.近戰傷害擴散輔助"}],"trade":{"ids":{"explicit":["explicit.stat_2253550081"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Minion Damage","better":1,"matchers":[{"string":"此物品插槽中寶石被等級 # 覺醒.召喚物傷害輔助"}],"trade":{"ids":{"explicit":["explicit.stat_2100048639"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Multistrike","better":1,"matchers":[{"string":"此物品插槽中寶石被等級 # 覺醒.多重打擊輔助"}],"trade":{"ids":{"explicit":["explicit.stat_511417258"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Spell Echo","better":1,"matchers":[{"string":"此物品插槽中寶石被等級 # 覺醒.施放迴響輔助"}],"trade":{"ids":{"explicit":["explicit.stat_48859060"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Swift Affliction","better":1,"matchers":[{"string":"此物品插槽中寶石被等級 # 覺醒.極速苦痛輔助"}],"trade":{"ids":{"explicit":["explicit.stat_4089933397"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Unbound Ailments","better":1,"matchers":[{"string":"此物品插槽中寶石被等級 # 覺醒.無邊異能輔助"}],"trade":{"ids":{"explicit":["explicit.stat_2116002108"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Unleash","better":1,"matchers":[{"string":"此物品插槽中寶石被等級 # 覺醒.釋放輔助"}],"trade":{"ids":{"explicit":["explicit.stat_3428829446"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Vicious Projectiles","better":1,"matchers":[{"string":"此物品插槽中寶石被等級 # 覺醒.猛毒投射物輔助"}],"trade":{"ids":{"explicit":["explicit.stat_2647355055"]}}} +{"ref":"Socketed Gems are Supported by Level # Ballista Totem","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的砲塔圖騰輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_27","explicit.stat_3030692053"],"fractured":["fractured.stat_3030692053"]}}} +{"ref":"Socketed Gems are Supported by Level # Barrage","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的彈幕輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_120","explicit.stat_3827538724"]}}} +{"ref":"Socketed Gems are Supported by Level # Behead","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的斬首輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_140","explicit.stat_1019145105"]}}} +{"ref":"Socketed Gems are Supported by Level # Blasphemy","better":1,"matchers":[{"string":"此物品插槽中詛咒寶石由等級 # 詛咒光環輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_119","explicit.stat_539747809"]}}} +{"ref":"Socketed Gems are Supported by Level # Blastchain Mine","better":1,"matchers":[{"string":"此物品插槽中寶石受到等級 # 的連鎖爆破地雷輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_23","explicit.stat_1710508327"],"fractured":["fractured.stat_1710508327"]}}} +{"ref":"Socketed Gems are supported by Level # Blind","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的致盲輔助"}],"trade":{"ids":{"explicit":["explicit.stat_2223640518"],"implicit":["implicit.stat_2223640518"],"fractured":["fractured.stat_2223640518"]}}} +{"ref":"Socketed Gems are Supported by Level # Block Chance Reduction","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的減少格擋率輔助"}],"trade":{"ids":{"explicit":["explicit.stat_1966051190"]}}} +{"ref":"Socketed Gems are Supported by Level # Bloodlust","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的嗜血輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_117","explicit.stat_804508379"]}}} +{"ref":"Socketed Gems are Supported by Level # Bloodthirst","better":1,"matchers":[{"string":"插槽中的寶石被等級 # 的嗜血輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_135"]}}} +{"ref":"Socketed Gems are Supported by Level # Bonechill","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的寒冰刺骨輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_115","explicit.stat_1859244771"]}}} +{"ref":"Socketed Gems are Supported by Level # Brutality","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的殘虐輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_114","explicit.stat_715256302"],"fractured":["fractured.stat_715256302"]}}} +{"ref":"Socketed Gems are Supported by Level # Burning Damage","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的燃燒傷害輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_68","explicit.stat_2680613507"],"fractured":["fractured.stat_2680613507"]}}} +{"ref":"Socketed Gems are supported by Level # Cast On Critical Strike","better":1,"matchers":[{"string":"此物品上寶石受到等級 # 的暴擊時施放輔助"}],"trade":{"ids":{"explicit":["explicit.stat_2325632050"],"implicit":["implicit.stat_2325632050"],"fractured":["fractured.stat_2325632050"]}}} +{"ref":"Socketed Gems are supported by Level # Cast on Death","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的死亡時施放輔助"}],"trade":{"ids":{"explicit":["explicit.stat_3878987051"]}}} +{"ref":"Socketed Gems are Supported by Level # Cast On Melee Kill","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的近戰擊殺時施放輔助"}],"trade":{"ids":{"explicit":["explicit.stat_3312593243"]}}} +{"ref":"Socketed Gems are Supported by Level # Cast when Damage Taken","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的受傷時施放輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_112","explicit.stat_3036440332"],"fractured":["fractured.stat_3036440332"]}}} +{"ref":"Socketed Gems are supported by Level # Cast when Stunned","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的暈眩時施放輔助"}],"trade":{"ids":{"explicit":["explicit.stat_1079148723"],"implicit":["implicit.stat_1079148723"]}}} +{"ref":"Socketed Gems are Supported by Level # Cast While Channelling","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的引導時施放輔助"}],"trade":{"ids":{"explicit":["explicit.stat_1316646496"]}}} +{"ref":"Socketed Gems are Supported by Level # Chain","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的連鎖輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_107","explicit.stat_2643665787"]}}} +{"ref":"Socketed Gems are Supported by Level # Chance To Bleed","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的機率流血輔助"},{"string":"插槽中的寶石被等級 # 的機率流血輔助"}],"trade":{"ids":{"explicit":["explicit.stat_2178803872","explicit.stat_4197676934"],"fractured":["fractured.stat_4197676934"]}}} +{"ref":"Socketed Gems are supported by Level # Chance to Flee","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的機率逃跑輔助"}],"trade":{"ids":{"explicit":["explicit.stat_952060721"]}}} +{"ref":"Socketed Gems are Supported by Level # Chance to Poison","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的機率中毒輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_54","explicit.stat_228165595"],"fractured":["fractured.stat_228165595"]}}} +{"ref":"Socketed Gems are Supported by Level # Charged Mines","better":1,"matchers":[{"string":"插槽中物品被等級 # 的地雷充能輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_103"]}}} +{"ref":"Socketed Gems are Supported by Level # Charged Traps","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的陷阱充能輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_78","explicit.stat_479453859"]}}} +{"ref":"Socketed Gems are Supported by Level # Close Combat","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的近身戰輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_102","explicit.stat_694651314"]}}} +{"ref":"Socketed Gems are Supported by Level # Cluster Trap","better":1,"matchers":[{"string":"此物品上寶石受到等級 # 的散彈陷阱輔助"}],"trade":{"ids":{"explicit":["explicit.stat_2854183975"]}}} +{"ref":"Socketed Gems are Supported by Level # Cold Penetration","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的冰冷穿透輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_100","explicit.stat_1991958615"],"fractured":["fractured.stat_1991958615"]}}} +{"ref":"Socketed Gems are Supported by Level # Cold to Fire","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的寒冰轉烈焰輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_99","explicit.stat_550444281"]}}} +{"ref":"Socketed Gems are Supported by Level # Combustion","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的燃燒輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_105","explicit.stat_1828254451"]}}} +{"ref":"Socketed Gems are Supported by Level # Concentrated Effect","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的集中效應輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_98","explicit.stat_2388360415"],"fractured":["fractured.stat_2388360415"]}}} +{"ref":"Socketed Gems are Supported by Level # Controlled Blaze","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的精準熾炎輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_162"]}}} +{"ref":"Socketed Gems are Supported by Level # Controlled Destruction","better":1,"matchers":[{"string":"插槽中寶石被等級 # 精準破壞輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_97","explicit.stat_3718597497"],"fractured":["fractured.stat_3718597497"]}}} +{"ref":"Socketed Gems are Supported by Level # Corrupting Cry","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的腐化怒嚎輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_155"]}}} +{"ref":"Socketed Gems are Supported by Level # Critical Strike Affliction","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的暴擊苦痛輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_31","explicit.stat_2228279620"]}}} +{"ref":"Socketed Gems are Supported by Level # Cruelty","better":1,"matchers":[{"string":"插槽中的寶石被等級 # 的殘酷輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_136","explicit.stat_1679136"]}}} +{"ref":"Socketed Gems are Supported by Level # Culling Strike","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的撲殺輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_96","explicit.stat_1135493957"]}}} +{"ref":"Socketed Gems are Supported by Level # Cursed Ground","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的詛咒地面輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_145"]}}} +{"ref":"Socketed Gems are Supported by Level # Damage On Full Life","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的滿血傷害輔助"}],"trade":{"ids":{"explicit":["explicit.stat_2126431157"]}}} +{"ref":"Socketed Gems are Supported by Level # Deadly Ailments","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的致命異常輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_94","explicit.stat_103909236"]}}} +{"ref":"Socketed Gems are Supported by Level # Decay","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的腐化輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_92","explicit.stat_388696990"]}}} +{"ref":"Socketed Gems are Supported by Level # Devour","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的吞噬輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_152"]}}} +{"ref":"Socketed Gems are Supported by Level # Divine Blessing","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的神聖祝福輔助"}],"trade":{"ids":{"explicit":["explicit.stat_3274973940"]}}} +{"ref":"Socketed Gems are Supported by Level # Efficacy","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的效能輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_91","explicit.stat_3924539382"],"fractured":["fractured.stat_3924539382"]}}} +{"ref":"Socketed Gems are Supported by Level # Elemental Army Support","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的元素軍隊輔助"}],"trade":{"ids":{"explicit":["explicit.stat_514705332"]}}} +{"ref":"Socketed Gems are supported by Level # Elemental Damage with Attacks","better":1,"matchers":[{"string":"此物品上寶石受到等級 # 的元素傷害攻擊輔助"}],"trade":{"ids":{"explicit":["explicit.stat_2532625478"],"implicit":["implicit.stat_2532625478"],"fractured":["fractured.stat_2532625478"]}}} +{"ref":"Socketed Gems are Supported by Level # Elemental Focus","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的元素集中輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_90","explicit.stat_1169422227"]}}} +{"ref":"Socketed Gems are Supported by Level # Elemental Penetration","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的元素穿透輔助"}],"trade":{"ids":{"explicit":["explicit.stat_1994143317"]}}} +{"ref":"Socketed Gems are Supported by Level # Elemental Proliferation","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的元素擴散輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_89","explicit.stat_2929101122"],"implicit":["implicit.stat_2929101122"]}}} +{"ref":"Socketed Gems are Supported by Level # Empower","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的賦予輔助"}],"trade":{"ids":{"explicit":["explicit.stat_3581578643"],"fractured":["fractured.stat_3581578643"]}}} +{"ref":"Socketed Gems are Supported by Level # Endurance Charge on Melee Stun","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的近戰擊暈獲得耐力球輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_88","explicit.stat_3375208082"],"fractured":["fractured.stat_3375208082"]}}} +{"ref":"Socketed Gems are Supported by Level # Energy Leech","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的能量偷取輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_87","explicit.stat_799443127"]}}} +{"ref":"Socketed Gems are Supported by Level # Enhance","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的增幅輔助"}],"trade":{"ids":{"explicit":["explicit.stat_2556436882"],"fractured":["fractured.stat_2556436882"]}}} +{"ref":"Socketed Gems are Supported by Level # Enlighten","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的啟蒙輔助"}],"trade":{"ids":{"explicit":["explicit.stat_2065361612"],"fractured":["fractured.stat_2065361612"]}}} +{"ref":"Socketed Gems are Supported by Level # Eternal Blessing","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的永恆祝福輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_143"]}}} +{"ref":"Socketed Gems are Supported by Level # Expert Retaliation","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的專家復仇輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_164"]}}} +{"ref":"Socketed Gems are Supported by Level # Faster Attacks","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的快速攻擊輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_86","explicit.stat_928701213"],"fractured":["fractured.stat_928701213"]}}} +{"ref":"Socketed Gems are Supported by Level # Faster Casting","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的快速施放輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_85","explicit.stat_2169938251"],"implicit":["implicit.stat_2169938251"],"fractured":["fractured.stat_2169938251"]}}} +{"ref":"Socketed Gems are supported by Level # Faster Projectiles","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的快速投射輔助"}],"trade":{"ids":{"explicit":["explicit.stat_99089516"],"implicit":["implicit.stat_99089516"],"fractured":["fractured.stat_99089516"]}}} +{"ref":"Socketed Gems are Supported by Level # Feeding Frenzy","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的豢養狂熱輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_83","explicit.stat_2269282877"]}}} +{"ref":"Socketed Gems are Supported by Level # Fire Penetration","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的火焰穿透輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_82","explicit.stat_1979658770","explicit.stat_3265951306"],"fractured":["fractured.stat_1979658770"]}}} +{"ref":"Socketed Gems are Supported by Level # Fist of War","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的拳霸輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_129"]}}} +{"ref":"Socketed Gems are Supported by Level # Flamewood","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的烈焰之木輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_154"]}}} +{"ref":"Socketed Gems are Supported by Level # Focused Ballista","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的專注砲塔輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_138","explicit.stat_921536976"]}}} +{"ref":"Socketed Gems are supported by Level # Fork","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的分裂輔助"}],"trade":{"ids":{"explicit":["explicit.stat_2062753054"],"implicit":["implicit.stat_2062753054"]}}} +{"ref":"Socketed Gems are Supported by Level # Fortify","better":1,"matchers":[{"string":"此物品插槽中寶石受到等級 # 的護體輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_79","explicit.stat_107118693"],"implicit":["implicit.stat_107118693"],"fractured":["fractured.stat_107118693"]}}} +{"ref":"Socketed Gems are Supported by Level # Fresh Meat","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的鮮肉輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_153","explicit.stat_3713917371"]}}} +{"ref":"Socketed Gems are Supported by Level # Frigid Bond","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的酷寒之繫輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_159"]}}} +{"ref":"Socketed Gems are Supported by Level # Generosity","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的和善輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_77","explicit.stat_2593773031"]}}} +{"ref":"Socketed Gems are Supported by Level # Greater Multiple Projectiles","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的高階多重投射輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_1","explicit.stat_359450079"]}}} +{"ref":"Socketed Gems are Supported by Level # Greater Spell Echo","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的高階施放迴響輔助"}],"trade":{"ids":{"explicit":["explicit.stat_3388448323"]}}} +{"ref":"Socketed Gems are Supported by Level # Greater Volley","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的高階齊射輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_75","explicit.stat_2223565123"]}}} +{"ref":"Socketed Gems are Supported by Level # Guardian's Blessing","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的守護者祝福輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_157"]}}} +{"ref":"Socketed Gems are Supported by Level # Hex Bloom","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的咒術綻放輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_146"]}}} +{"ref":"Socketed Gems are Supported by Level # Hextouch","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的咒術降臨輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_95","explicit.stat_2697741965"]}}} +{"ref":"Socketed Gems are Supported by Level # High-Impact Mine","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的高能地雷輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_22"]}}} +{"ref":"Socketed Gems are Supported by Level # Hypothermia","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的急凍輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_74","explicit.stat_13669281"],"fractured":["fractured.stat_13669281"]}}} +{"ref":"Socketed Gems are Supported by Level # Ice Bite","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的霜咬輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_73","explicit.stat_1384629003"]}}} +{"ref":"Socketed Gems are Supported by Level # Ignite Proliferation","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的點燃擴散輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_72","explicit.stat_3593797653"]}}} +{"ref":"Socketed Gems are Supported by Level # Immolate","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的犧牲輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_71","explicit.stat_2420410470"],"fractured":["fractured.stat_2420410470"]}}} +{"ref":"Socketed Gems are Supported by Level # Impale","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的穿刺輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_70","explicit.stat_1900098804"]}}} +{"ref":"Socketed Gems are Supported by Level # Impending Doom","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的末日厄運輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_133"]}}} +{"ref":"Socketed Gems are Supported by Level # Increased Area of Effect","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的增大範圍輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_69","explicit.stat_3720936304"],"implicit":["implicit.stat_3720936304"],"fractured":["fractured.stat_3720936304"]}}} +{"ref":"Socketed Gems are supported by Level # Increased Critical Damage","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的增加暴擊傷害輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_67","explicit.stat_1108755349"],"implicit":["implicit.stat_1108755349"],"fractured":["fractured.stat_1108755349"]}}} +{"ref":"Socketed Gems are Supported by Level # Increased Critical Strikes","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的增加暴擊率輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_66","explicit.stat_2259700079"],"fractured":["fractured.stat_2259700079"]}}} +{"ref":"Socketed Gems are Supported by Level # Infernal Legion","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的煉獄軍團輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_61","explicit.stat_2201102274"]}}} +{"ref":"Socketed Gems are Supported by Level # Infused Channelling","better":1,"matchers":[{"string":"插槽中的寶石被等級 # 的注入引導輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_13","explicit.stat_4048257027"]}}} +{"ref":"Socketed Gems are Supported by Level # Innervate","better":1,"matchers":[{"string":"插槽中的寶石被等級 # 的亢奮輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_60","explicit.stat_1106668565"],"fractured":["fractured.stat_1106668565"]}}} +{"ref":"Socketed Gems are Supported by Level # Inspiration","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的啟發輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_24","explicit.stat_1866911844","explicit.stat_749770518"],"implicit":["implicit.stat_1866911844"],"fractured":["fractured.stat_1866911844"]}}} +{"ref":"Socketed Gems are Supported by Level # Intensify","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的強化輔助"},{"string":"插槽中的寶石被等級 # 的強化輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_16","explicit.stat_1876637240","explicit.stat_28821524"]}}} +{"ref":"Socketed Gems are Supported by Level # Iron Grip","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的鋼鐵之握輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_59","explicit.stat_251446805"]}}} +{"ref":"Socketed Gems are Supported by Level # Iron Will","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的鋼鐵意志輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_58","explicit.stat_906997920"]}}} +{"ref":"Socketed Gems are Supported by Level # Item Rarity","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的物品稀有度增幅輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_57","explicit.stat_3587013273"],"fractured":["fractured.stat_3587013273"]}}} +{"ref":"Socketed Gems are Supported by Level # Knockback","better":1,"matchers":[{"string":"此物品插槽中的寶石由等級 # 的擊退輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_56","explicit.stat_4066711249"]}}} +{"ref":"Socketed Gems are Supported by Level # Less Duration","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的持續時間縮短輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_25","explicit.stat_2487643588"],"fractured":["fractured.stat_2487643588"]}}} +{"ref":"Socketed Gems are Supported by Level # Lesser Multiple Projectiles","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的低階多重投射輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_55","explicit.stat_584144941"],"fractured":["fractured.stat_584144941"]}}} +{"ref":"Socketed Gems are Supported by Level # Life Gain On Hit","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的擊中生命回復輔助"}],"trade":{"ids":{"explicit":["explicit.stat_2032386732"],"implicit":["implicit.stat_2032386732"]}}} +{"ref":"Socketed Gems are supported by Level # Life Leech","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的生命偷取輔助"}],"trade":{"ids":{"explicit":["explicit.stat_891277550"],"implicit":["implicit.stat_891277550"],"fractured":["fractured.stat_891277550"]}}} +{"ref":"Socketed Gems are Supported by Level # Lifetap","better":1,"matchers":[{"string":"插槽中的寶石被等級 # 的活栓輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_137","explicit.stat_1079239905"],"implicit":["implicit.stat_1079239905"],"crafted":["crafted.stat_1079239905"]}}} +{"ref":"Socketed Gems are Supported by Level # Lightning Penetration","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的閃電穿透輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_51","explicit.stat_3354027870"],"fractured":["fractured.stat_3354027870"]}}} +{"ref":"Socketed Gems are Supported by Level # Locus Mine","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的定位地雷輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_160"]}}} +{"ref":"Socketed Gems are Supported by Level # Maim","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的癱瘓輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_50","explicit.stat_3826977109"],"fractured":["fractured.stat_3826977109"]}}} +{"ref":"Socketed Gems are Supported by Level # Mana Leech","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的魔力偷取輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_49","explicit.stat_2608615082"],"fractured":["fractured.stat_2608615082"]}}} +{"ref":"Socketed Gems are Supported by Level # Manaforged Arrows","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的魔造箭矢輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_147","explicit.stat_4022502578"]}}} +{"ref":"Socketed Gems are Supported by Level # Mark On Hit","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的擊中時標記輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_141"]}}} +{"ref":"Socketed Gems are Supported by Level # Meat Shield","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的肉盾輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_48","explicit.stat_858460086"]}}} +{"ref":"Socketed Gems are Supported by Level # Melee Physical Damage","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的近戰物理傷害輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_46","explicit.stat_2985291457"],"fractured":["fractured.stat_2985291457"]}}} +{"ref":"Socketed Gems are supported by Level # Melee Splash","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的近戰傷害擴散輔助"}],"trade":{"ids":{"explicit":["explicit.stat_1811422871"],"implicit":["implicit.stat_1811422871"],"fractured":["fractured.stat_1811422871"]}}} +{"ref":"Socketed Gems are Supported by Level # Minefield","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的地雷網輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_44"]}}} +{"ref":"Socketed Gems are Supported by Level # Minion Damage","better":1,"matchers":[{"string":"此物品上寶石受到等級 # 的召喚物傷害輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_64","explicit.stat_808939569"],"fractured":["fractured.stat_808939569"]}}} +{"ref":"Socketed Gems are Supported by Level # Minion Life","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的召喚物生命輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_63","explicit.stat_1337327984"],"fractured":["fractured.stat_1337327984"]}}} +{"ref":"Socketed Gems are Supported by Level # Minion Speed","better":1,"matchers":[{"string":"此物品上寶石受到等級 # 的召喚物速度輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_62","explicit.stat_995332031"]}}} +{"ref":"Socketed Gems are Supported by Level # Mirage Archer","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的幻影射手輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_43","explicit.stat_3239503729"]}}} +{"ref":"Socketed Gems are Supported by Level # Momentum","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的氣勢輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_37","explicit.stat_3237923082"],"implicit":["implicit.stat_3237923082"],"fractured":["fractured.stat_3237923082"]}}} +{"ref":"Socketed Gems are Supported by Level # More Duration","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的增加持續時間輔助"},{"string":"插槽中寶石被等級 # 的持續時間延長輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_65","explicit.stat_407317553"],"fractured":["fractured.stat_407317553"]}}} +{"ref":"Socketed Gems are Supported by Level # Multiple Totems","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的多重圖騰輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_40","explicit.stat_807186595"]}}} +{"ref":"Socketed Gems are Supported by Level # Multiple Traps","better":1,"matchers":[{"string":"此物品上寶石受到等級 # 的多重陷阱輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_39","explicit.stat_3016436615"]}}} +{"ref":"Socketed Gems are supported by Level # Multistrike","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的多重打擊輔助"}],"trade":{"ids":{"explicit":["explicit.stat_2501237765"],"implicit":["implicit.stat_2501237765"],"fractured":["fractured.stat_2501237765"]}}} +{"ref":"Socketed Gems are Supported by Level # Nightblade","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的夜刃輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_38"]}}} +{"ref":"Socketed Gems are Supported by Level # Overcharge","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的超負荷輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_144","explicit.stat_3462081007"]}}} +{"ref":"Socketed Gems are Supported by Level # Overexertion","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的竭盡全力輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_139"]}}} +{"ref":"Socketed Gems are Supported by Level # Physical To Lightning","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的物理轉閃電輔助"}],"trade":{"ids":{"explicit":["explicit.stat_3327487371"]}}} +{"ref":"Socketed Gems are supported by Level # Pierce","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的穿透輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_33","explicit.stat_2433615566","explicit.stat_254728692"]}}} +{"ref":"Socketed Gems are Supported by Level # Pinpoint","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的精確輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_132"]}}} +{"ref":"Socketed Gems are Supported by Level # Point Blank","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的零點射擊輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_32"]}}} +{"ref":"Socketed Gems are Supported by Level # Power Charge On Critical Strike","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的暴擊獲得暴擊球輔助"}],"trade":{"ids":{"explicit":["explicit.stat_4015918489"]}}} +{"ref":"Socketed Gems are Supported by Level # Predator","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的掠奪者輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_93","explicit.stat_4082662318"]}}} +{"ref":"Socketed Gems are Supported by Level # Prismatic Burst","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的三相爆發輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_148"]}}} +{"ref":"Socketed Gems are Supported by Level # Pulverise","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的磨鍊輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_29","explicit.stat_282757414"]}}} +{"ref":"Socketed Gems are Supported by Level # Rage","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的盛怒輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_28","explicit.stat_369650395"]}}} +{"ref":"Socketed Gems are Supported by Level # Returning Projectiles","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的返回投射物輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_149","explicit.stat_52197415"]}}} +{"ref":"Socketed Gems are Supported by Level # Rupture","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的殘破輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_142"]}}} +{"ref":"Socketed Gems are Supported by Level # Ruthless","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的殘暴輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_21","explicit.stat_3796013729"],"fractured":["fractured.stat_3796013729"]}}} +{"ref":"Socketed Gems are Supported by Level # Sacred Wisps","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的神聖妖精輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_163"]}}} +{"ref":"Socketed Gems are Supported by Level # Sacrifice","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的獻祭輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_158"]}}} +{"ref":"Socketed Gems are Supported by Level # Sadism","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的虐待輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_161","explicit.stat_794471597"]}}} +{"ref":"Socketed Gems are Supported by Level # Second Wind","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的恢復輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_20","explicit.stat_402499111"]}}} +{"ref":"Socketed Gems are Supported by Level # Shockwave","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的震波輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_19"]}}} +{"ref":"Socketed Gems are Supported by Level # Slower Projectiles","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的投射物減速輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_18","explicit.stat_1390285657"],"fractured":["fractured.stat_1390285657"]}}} +{"ref":"Socketed Gems are Supported by Level # Spell Cascade","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的秘能爆發輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_17","explicit.stat_503990161"],"fractured":["fractured.stat_503990161"]}}} +{"ref":"Socketed Gems are Supported by Level # Spell Echo","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的施放迴響輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_42","explicit.stat_438778966","explicit.stat_913919528"],"fractured":["fractured.stat_913919528"]}}} +{"ref":"Socketed Gems are Supported by Level # Spell Totem","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的法術圖騰輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_15","explicit.stat_2962840349"],"fractured":["fractured.stat_2962840349"]}}} +{"ref":"Socketed Gems are Supported by Level # Spellblade","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的魔劍輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_151"]}}} +{"ref":"Socketed Gems are supported by Level # Stun","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的暈眩輔助"}],"trade":{"ids":{"implicit":["implicit.stat_689720069"]}}} +{"ref":"Socketed Gems are Supported by Level # Summon Phantasm","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的擊殺召喚幻影輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_10","explicit.stat_3155072742"]}}} +{"ref":"Socketed Gems are Supported by Level # Swift Affliction","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的極速苦痛輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_26","explicit.stat_1636220212"]}}} +{"ref":"Socketed Gems are Supported by Level # Swift Assembly","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的迅速集合輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_9"]}}} +{"ref":"Socketed Gems are Supported by Level # Swiftbrand","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的迅速烙印輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_130"]}}} +{"ref":"Socketed Gems are Supported by Level # Trap","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的陷阱輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_8","explicit.stat_1122134690"],"fractured":["fractured.stat_1122134690"]}}} +{"ref":"Socketed Gems are Supported by Level # Trap And Mine Damage","better":1,"matchers":[{"string":"此物品上寶石受到等級 # 的陷阱及地雷傷害輔助"}],"trade":{"ids":{"explicit":["explicit.stat_3814066599"],"fractured":["fractured.stat_3814066599"]}}} +{"ref":"Socketed Gems are Supported by Level # Trauma","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的創傷輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_150"]}}} +{"ref":"Socketed Gems are Supported by Level # Trinity","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的三體輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_134","explicit.stat_3111091501"]}}} +{"ref":"Socketed Gems are Supported by Level # Unbound Ailments","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的無邊異能輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_5","explicit.stat_3699494172"]}}} +{"ref":"Socketed Gems are Supported by Level # Unleash","better":1,"matchers":[{"string":"插槽中的寶石被等級 # 的釋放輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_4","explicit.stat_3356013982"]}}} +{"ref":"Socketed Gems are Supported by Level # Urgent Orders","better":1,"matchers":[{"string":"插槽中的寶石被等級 # 的釋緊急詔令輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_131"]}}} +{"ref":"Socketed Gems are Supported by Level # Vicious Projectiles","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的猛毒投射物輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_35","explicit.stat_2513293614"]}}} +{"ref":"Socketed Gems are Supported by Level # Vile Toxins","better":1,"matchers":[{"string":"插槽中的寶石被等級 # 的罪惡毒素輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_3","explicit.stat_1002855537"]}}} +{"ref":"Socketed Gems are Supported by Level # Void Manipulation","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的虛空操縱輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_2","explicit.stat_1866583932"]}}} +{"ref":"Socketed Gems are Supported by Level # Volatility","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的波動輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_156","explicit.stat_4184135167"]}}} +{"ref":"Socketed Gems are Supported by Level # Volley","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的齊射輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_36","explicit.stat_2696557965"],"fractured":["fractured.stat_2696557965"]}}} +{"ref":"Socketed Gems are Supported by Level # Withering Touch","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的凋零之觸輔助"}],"trade":{"ids":{"explicit":["explicit.indexable_support_104","explicit.stat_3287477747"]}}} +{"ref":"Socketed Gems are Supported by Level 10 Intensify","better":1,"matchers":[{"string":"此物品插槽中寶石被等級 10 的強化輔助"}],"trade":{"ids":{"explicit":["explicit.stat_3561676020"]}}} +{"ref":"Socketed Gems Chain # additional times","better":1,"matchers":[{"string":"此物品插槽中寶石額外連鎖 # 次"}],"trade":{"ids":{"explicit":["explicit.stat_2788729902"]}}} +{"ref":"Socketed Gems Cost and Reserve Life instead of Mana","better":1,"matchers":[{"string":"插槽中寶石消耗和保留生命而非魔力"}],"trade":{"ids":{"explicit":["explicit.stat_1104246401"]}}} +{"ref":"Socketed Gems deal # to # Added Fire Damage","better":1,"matchers":[{"string":"插槽中的寶石造成 # 至 # 額外火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1289910726"],"fractured":["fractured.stat_1289910726"]}}} +{"ref":"Socketed Gems deal #% more Damage over Time","better":1,"matchers":[{"string":"此物品插槽中寶石造成 #% 更多持續傷害"},{"string":"此物品插槽中寶石造成 #% 更少持續傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3846088475"],"fractured":["fractured.stat_3846088475"]}}} +{"ref":"Socketed Gems deal #% more Damage while on Low Life","better":1,"matchers":[{"string":"貧血時,插槽中的寶石造成 #% 更多傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1235873320"],"fractured":["fractured.stat_1235873320"]}}} +{"ref":"Socketed Gems deal #% more Elemental Damage","better":1,"matchers":[{"string":"插槽中的寶石造成 #% 更多元素傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3835899275"],"fractured":["fractured.stat_3835899275"]}}} +{"ref":"Socketed Gems fire an additional Projectile","better":1,"matchers":[{"string":"此物品插槽中寶石射出 # 個額外投射物"},{"string":"此物品插槽中寶石射出 1 個額外投射物","value":1}],"trade":{"ids":{"explicit":["explicit.stat_4016885052"]}}} +{"ref":"Socketed Gems fire Projectiles in a circle","better":1,"matchers":[{"string":"插槽中寶石以圓形型式發射投射物"}],"trade":{"ids":{"explicit":["explicit.stat_967556848"]}}} +{"ref":"Socketed Gems gain #% of Physical Damage as extra Lightning Damage","better":1,"matchers":[{"string":"插槽中的寶石獲得等同物理傷害 #% 的額外閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1859937391"],"fractured":["fractured.stat_1859937391"]}}} +{"ref":"Socketed Gems have #% chance to cause Enemies to Flee on Hit","better":1,"matchers":[{"string":"此物品插槽中寶石有 #% 機率使敵人逃跑"}],"trade":{"ids":{"explicit":["explicit.stat_3418772"]}}} +{"ref":"Socketed Gems have #% chance to Ignite","better":1,"matchers":[{"string":"此物品插槽中寶石有 #% 機率造成點燃"},{"string":"此物品上的技能寶石必定造成點燃","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3984519770"]}}} +{"ref":"Socketed Gems have #% increased Reservation Efficiency","better":-1,"matchers":[{"string":"插槽中寶石減少 #% 保留效用"},{"string":"插槽中寶石增加 #% 保留效用","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3289633055"],"implicit":["implicit.stat_3289633055"],"fractured":["fractured.stat_3289633055"]},"inverted":true}} +{"ref":"Socketed Gems have #% more Attack and Cast Speed","better":1,"matchers":[{"string":"插槽中的寶石有 #% 更多攻擊與施放速度"}],"trade":{"ids":{"explicit":["explicit.stat_346351023"],"fractured":["fractured.stat_346351023"]}}} +{"ref":"Socketed Gems have #% reduced Mana Cost","better":1,"matchers":[{"string":"插槽中的寶石減少 #% 魔力消耗"},{"string":"插槽中的寶石增加 #% 魔力消耗","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2816901897"]}}} +{"ref":"Socketed Gems have +#% Critical Strike Chance","dp":true,"better":1,"matchers":[{"string":"此物品插槽中寶石有 #% 暴擊率"}],"trade":{"ids":{"explicit":["explicit.stat_1681904129"],"fractured":["fractured.stat_1681904129"]}}} +{"ref":"Socketed Gems have Elemental Equilibrium","better":1,"matchers":[{"string":"此物品插槽中寶石額外獲得元素之相"}],"trade":{"ids":{"explicit":["explicit.stat_2605850929"]}}} +{"ref":"Socketed Gems have no Reservation\nYour Blessing Skills are Disabled","better":1,"matchers":[{"string":"插槽中寶石沒有保留\n你的祝福技能失效"}],"trade":{"ids":{"explicit":["explicit.stat_2497009514"]}}} +{"ref":"Socketed Gems have Secrets of Suffering","better":1,"matchers":[{"string":"插槽中寶石有磨難秘辛"}],"trade":{"ids":{"explicit":["explicit.stat_4051493629"]}}} +{"ref":"Socketed Golem Skills gain #% of Maximum Life as Extra Maximum Energy Shield","better":1,"matchers":[{"string":"插槽中魔像技能獲得等同最大生命 #% 的額外能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_1199118714"]}}} +{"ref":"Socketed Golem Skills have #% chance to Taunt on Hit","better":1,"matchers":[{"string":"插槽中魔像技能擊中時有 #% 機率嘲諷"}],"trade":{"ids":{"explicit":["explicit.stat_178057093"]}}} +{"ref":"Socketed Golem Skills have #% increased Attack and Cast Speed","better":1,"matchers":[{"string":"插槽中魔像技能增加 #% 攻擊和施放速度"}],"trade":{"ids":{"explicit":["explicit.stat_706212417"]}}} +{"ref":"Socketed Golem Skills have Minions Regenerate #% of Life per second","better":1,"matchers":[{"string":"插槽中的魔像技能使召喚物每秒回復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_693460617"]}}} +{"ref":"Socketed Melee Gems have #% increased Area of Effect","better":1,"matchers":[{"string":"插槽中近戰寶石增加 #% 範圍"},{"string":"插槽中近戰寶石減少 #% 範圍","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2462976337"]}}} +{"ref":"Socketed Minion Gems are Supported by Level # Life Leech","better":1,"matchers":[{"string":"此物品插槽中召喚物寶石由等級 # 生命偷取輔助"}],"trade":{"ids":{"explicit":["explicit.stat_4006301249"]}}} +{"ref":"Socketed Movement Skills Cost no Mana","better":1,"matchers":[{"string":"插槽中位移技能不消耗魔力"}],"trade":{"ids":{"explicit":["explicit.stat_3263216405"],"fractured":["fractured.stat_3263216405"]}}} +{"ref":"Socketed Non-Channelling Bow Skills are Triggered by Snipe\nSocketed Triggered Bow Skills gain a 0.05 second Cooldown","better":1,"matchers":[{"string":"插槽中非引導施放的弓技能被狙擊觸發\n插槽中觸發型弓技能有 0.05 秒冷卻時間"}],"trade":{"ids":{"explicit":["explicit.stat_3282302743"]}}} +{"ref":"Socketed Projectile Spells deal #% more Damage with Hits","better":1,"matchers":[{"string":"插槽中的投射物法術造成 #% 更多擊中傷害"},{"string":"插槽中的投射物法術造成 #% 更少擊中傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2443457281"]}}} +{"ref":"Socketed Projectile Spells fire an additional Projectile","better":1,"matchers":[{"string":"插槽中的投射物法術發射 # 個額外投射物"},{"string":"插槽中的投射物法術發射 1 個額外投射物","value":1}],"trade":{"ids":{"explicit":["explicit.stat_973574623"]}}} +{"ref":"Socketed Projectile Spells fire Projectiles in a circle","better":1,"matchers":[{"string":"插槽中的投射物法術以圓形型式發射投射物"}],"trade":{"ids":{"explicit":["explicit.stat_3235941702"]}}} +{"ref":"Socketed Projectile Spells have #% more Skill Effect Duration","better":1,"matchers":[{"string":"插槽中的投射物法術有 #% 更多技能持續時間"},{"string":"插槽中的投射物法術有 #% 更少技能持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3104895675"]}}} +{"ref":"Socketed Projectile Spells have +# seconds to Cooldown","better":1,"matchers":[{"string":"插槽中的投射物法術 # 秒冷卻時間"}],"trade":{"ids":{"explicit":["explicit.stat_470459031"]}}} +{"ref":"Socketed Red Gems get #% Physical Damage as Extra Fire Damage","better":1,"matchers":[{"string":"增加此物品插槽中紅色技能寶石等同 #% 物理傷害的火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2629366488"]}}} +{"ref":"Socketed Skill Gems get a #% Cost & Reservation Multiplier","better":1,"matchers":[{"string":"插槽中的技能寶石有 #% 消耗和保留加成"}],"trade":{"ids":{"implicit":["implicit.stat_2865550257"]}}} +{"ref":"Socketed Skills apply Fire, Cold and Lightning Exposure on Hit","better":1,"matchers":[{"string":"插槽中技能擊中時套用火焰、冰冷和閃電曝曬"}],"trade":{"ids":{"implicit":["implicit.stat_2192875806"]}}} +{"ref":"Socketed Skills deal #% more Attack Damage","better":1,"matchers":[{"string":"插槽中的技能造成 #% 更多攻擊傷害"},{"string":"插槽中的技能造成 #% 更少攻擊傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1970781345"],"fractured":["fractured.stat_1970781345"]}}} +{"ref":"Socketed Skills deal #% more Spell Damage","better":1,"matchers":[{"string":"插槽中的技能造成 #% 更多法術傷害"},{"string":"插槽中的技能造成 #% 更少法術傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2964800094"],"fractured":["fractured.stat_2964800094"]}}} +{"ref":"Socketed Skills deal Double Damage","better":1,"matchers":[{"string":"插槽中寶石造成 2 倍傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2132884933"]}}} +{"ref":"Socketed Skills have #% increased Attack Speed","better":1,"matchers":[{"string":"插槽中的技能增加 #% 攻擊速度"},{"string":"插槽中的技能減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2881124988"]}}} +{"ref":"Socketed Skills have #% increased Cast Speed","better":1,"matchers":[{"string":"插槽中的技能增加 #% 施放速度"},{"string":"插槽中的技能減少 #% 施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3425934849"]}}} +{"ref":"Socketed Slam Gems are Supported by Level 25 Earthbreaker","better":1,"matchers":[{"string":"插槽中寶石被等級 # 的地破輔助"},{"string":"插槽中的重擊寶石被等級 25 的地破輔助","value":1}],"trade":{"ids":{"explicit":["explicit.stat_940684417"]}}} +{"ref":"Socketed Spells have #% reduced Mana Cost","better":-1,"matchers":[{"string":"插槽中的法術增加 #% 魔力消耗"},{"string":"插槽中的法術減少 #% 魔力消耗","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1688834903"]},"inverted":true}} +{"ref":"Socketed Spells have +#% to Critical Strike Chance","dp":true,"better":1,"matchers":[{"string":"插槽中的法術 #% 暴擊率"}],"trade":{"ids":{"explicit":["explicit.stat_135378852"],"fractured":["fractured.stat_135378852"]}}} +{"ref":"Socketed Spells have +#% to Critical Strike Multiplier","better":1,"matchers":[{"string":"插槽中的法術 #% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_2828710986"],"fractured":["fractured.stat_2828710986"]}}} +{"ref":"Socketed Support Gems can also Support Skills from Equipped Body Armour","better":1,"matchers":[{"string":"插槽中的輔助寶時同時輔助你胸甲的技能"}],"trade":{"ids":{"explicit":["explicit.stat_591645420"]}}} +{"ref":"Socketed Support Gems can also Support Skills from your Main Hand","better":1,"matchers":[{"string":"插槽中的輔助寶時同時輔助你主手的技能"}],"trade":{"ids":{"explicit":["explicit.stat_806627038"]}}} +{"ref":"Socketed Travel Skills deal #% more Damage","better":1,"matchers":[{"string":"插槽中快行技能造成 #% 更多傷害"},{"string":"插槽中快行技能造成 #% 更少傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1020412108"]}}} +{"ref":"Socketed Vaal Skills deal #% more Damage","better":1,"matchers":[{"string":"插槽中的瓦爾技能造成 #% 更多傷害"},{"string":"插槽中的瓦爾技能造成 #% 更少傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3106951888"]}}} +{"ref":"Socketed Vaal Skills grant Elusive when Used","better":1,"matchers":[{"string":"使用插槽中的瓦爾技能時獲得靈巧"}],"trade":{"ids":{"explicit":["explicit.stat_1831825995"]}}} +{"ref":"Socketed Vaal Skills have #% increased Area of Effect","better":1,"matchers":[{"string":"插槽中的瓦爾技能增加 #% 範圍效果"},{"string":"插槽中的瓦爾技能減少 #% 範圍效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2505291583"]}}} +{"ref":"Socketed Vaal Skills have #% increased Aura Effect","better":1,"matchers":[{"string":"插槽中的瓦爾技能增加 #% 光環效果"},{"string":"插槽中的瓦爾技能減少 #% 光環效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2932121832"]}}} +{"ref":"Socketed Vaal Skills have #% increased Projectile Speed","better":1,"matchers":[{"string":"插槽中的瓦爾技能增加 #% 投射物速度"},{"string":"插槽中的瓦爾技能減少 #% 投射物速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2237174578"]}}} +{"ref":"Socketed Vaal Skills have #% increased Skill Effect Duration","better":1,"matchers":[{"string":"插槽中的瓦爾技能增加 #% 技能效果持續時間"},{"string":"插槽中的瓦爾技能減少 #% 技能效果持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_476204410"]}}} +{"ref":"Socketed Vaal Skills have #% increased Soul Gain Prevention Duration","better":1,"matchers":[{"string":"插槽中的瓦爾技能增加 #% 停止獲得靈魂持續時間"},{"string":"插槽中的瓦爾技能減少 #% 停止獲得靈魂持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2599305231"]}}} +{"ref":"Socketed Vaal Skills have 20% chance to regain consumed Souls when used","better":1,"matchers":[{"string":"使用被輔助的瓦爾技能時,有 20% 機率回收消耗的靈魂"}],"trade":{"ids":{"explicit":["explicit.stat_207863952"]}}} +{"ref":"Socketed Vaal Skills require #% more Souls per Use","better":1,"matchers":[{"string":"每次使用插槽中的瓦爾技能需求 #% 更多靈魂"},{"string":"每次使用插槽中的瓦爾技能需求 #% 更少靈魂","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2198756560"]}}} +{"ref":"Socketed Warcry Skills have +# Cooldown Use","better":1,"matchers":[{"string":"插槽中的戰吼技能 # 冷卻使用次數"}],"trade":{"ids":{"explicit":["explicit.stat_3784504781"]}}} +{"ref":"Sockets cannot be modified","better":1,"matchers":[{"string":"插槽不能被改變"}],"trade":{"ids":{"explicit":["explicit.stat_3192592092"]}}} +{"ref":"Solipsism","better":1,"matchers":[{"string":"唯我論"}],"trade":{"ids":{"explicit":["explicit.stat_112130960"],"scourge":["scourge.stat_112130960"]}}} +{"ref":"Soulrend also Hinders Enemies when applying its Debuff, with #% reduced Movement Speed","better":-1,"matchers":[{"string":"當靈體撕裂套用減益效果時,同時阻礙敵人,增加 #% 移動速度"},{"string":"當靈體撕裂套用減益效果時,同時阻礙敵人,減少 #% 移動速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_303359279"]},"inverted":true}} +{"ref":"Soulrend deals #% increased Damage","better":1,"matchers":[{"string":"靈體撕裂增加 #% 傷害"},{"string":"靈體撕裂減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4117042530"]}}} +{"ref":"Soulrend fires an additional Projectile","better":1,"matchers":[{"string":"靈體撕裂有 # 個額外投射物"},{"string":"靈體撕裂有 1 個額外投射物","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3371533847"]}}} +{"ref":"Spark fires an additional Projectile","better":1,"matchers":[{"string":"電球發射 # 個額外投射物"},{"string":"電球發射 1 個額外投射物","value":1}],"trade":{"ids":{"enchant":["enchant.stat_186513618"]}}} +{"ref":"Spark fires Projectiles in a circle","better":1,"matchers":[{"string":"電球以圓形型式發射投射物"}],"trade":{"ids":{"enchant":["enchant.stat_3803013948"]}}} +{"ref":"Spectral Helix Projectile spirals through +# rotations","dp":true,"better":1,"matchers":[{"string":"靈體旋武投射物螺旋穿過 # 旋轉"}],"trade":{"ids":{"enchant":["enchant.stat_4175166318"]}}} +{"ref":"Spectral Shield Throw fires an additional Shard Projectile","better":1,"matchers":[{"string":"盾靈投擲發射 # 個額外碎片投射物"},{"string":"盾靈投擲發射 1 個額外碎片投射物","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3608981617"]}}} +{"ref":"Spectres have #% increased Attack and Cast Speed","better":1,"matchers":[{"string":"增加 #% 幽魂的攻擊和施放速度"},{"string":"減少 #% 幽魂的攻擊和施放速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4137556603"]}}} +{"ref":"Spectres have #% increased Critical Strike Chance","better":1,"matchers":[{"string":"幽魂增加 #% 暴擊率"}],"trade":{"ids":{"explicit":["explicit.stat_1862097882"]}}} +{"ref":"Spectres have #% increased Damage","better":1,"matchers":[{"string":"增加幽魂 #% 傷害"},{"string":"減少幽魂 #% 傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3645693773"],"enchant":["enchant.stat_3645693773"]}}} +{"ref":"Spectres have #% increased maximum Life","better":1,"matchers":[{"string":"幽魂增加 #% 最大生命"},{"string":"幽魂減少 #% 最大生命","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3035514623"]}}} +{"ref":"Spectres have a Base Duration of # seconds\nSpectres do not travel between Areas","better":1,"matchers":[{"string":"幽魂有基礎持續時間 # 秒\n幽魂不能在區域間穿梭"}],"trade":{"ids":{"explicit":["explicit.stat_1210937073"]}}} +{"ref":"Spell Hits have #% chance to Hinder you","better":1,"matchers":[{"string":"法術擊中有 #% 機率阻礙你"},{"string":"法術擊中阻礙你","value":100}],"trade":{"ids":{"scourge":["scourge.stat_1533511331"]}}} +{"ref":"Spell Skills always deal Critical Strikes on final Repeat","better":1,"matchers":[{"string":"法術技能在最終重複時一定造成暴擊"}],"trade":{"ids":{"explicit":["explicit.stat_3738009328"]}}} +{"ref":"Spell Skills cannot deal Critical Strikes except on final Repeat","better":1,"matchers":[{"string":"法術技能除了在最終重複外,不能造成暴擊"}],"trade":{"ids":{"explicit":["explicit.stat_2516869940"]}}} +{"ref":"Spell Skills deal no Damage","better":1,"matchers":[{"string":"法術技能不能造成傷害"}],"trade":{"ids":{"explicit":["explicit.stat_291644318"]}}} +{"ref":"Spells cause you to gain Energy Shield equal to their Upfront\nCost every fifth time you Pay it","better":1,"matchers":[{"string":"每 5 次你支付法術時,你會獲得等同它前期消耗的能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_1357409216"]}}} +{"ref":"Spells deal added Chaos Damage equal to #% of your maximum Life","better":1,"matchers":[{"string":"法術附加等同 #% 你最大生命的混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3175648755"]}}} +{"ref":"Spells fire an additional Projectile","better":1,"matchers":[{"string":"法術發射 # 個額外投射物"},{"string":"法術發射 1 個額外投射物","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1011373762"]}}} +{"ref":"Spells have #% increased Critical Strike Chance per Intensity","better":1,"matchers":[{"string":"每層強化使法術增加 #% 暴擊率"},{"string":"每層強化使法術減少 #% 暴擊率","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2923377613"]}}} +{"ref":"Spells have a #% chance to deal Double Damage","better":1,"matchers":[{"string":"法術有 #% 機率造成 2 倍傷害"},{"string":"法術造成 2 倍傷害","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2813626504"],"implicit":["implicit.stat_2813626504"],"fractured":["fractured.stat_2813626504"]}}} +{"ref":"Spells inflict Intimidate on Critical Strike for 4 seconds","better":1,"matchers":[{"string":"暴擊時的法術可造成威嚇,持續 4 秒"}],"trade":{"ids":{"explicit":["explicit.stat_181229988"]}}} +{"ref":"Spells Triggered by Arcanist Brand Unnerve enemies on Hit for 4 seconds","better":1,"matchers":[{"string":"被奧術烙印觸發的法術擊中敵人時,造成膽怯 4 秒"}],"trade":{"ids":{"enchant":["enchant.stat_1350243490"]}}} +{"ref":"Spells which have gained Intensity Recently gain 1 Intensity every # Seconds","dp":true,"better":1,"matchers":[{"string":"近期獲得強化的法術,每 # 秒獲得 1 強化"}],"trade":{"ids":{"explicit":["explicit.stat_2540626225"]}}} +{"ref":"Spells which have gained Intensity Recently lose 1 Intensity every # Seconds","dp":true,"better":1,"matchers":[{"string":"近期獲得強化的法術,每 # 秒失去 1 強化"}],"trade":{"ids":{"explicit":["explicit.stat_2122561670"]}}} +{"ref":"Spend Energy Shield before Mana for Costs of Socketed Skills","better":1,"matchers":[{"string":"插槽中技能的消耗先使用能量護盾再使用魔力"}],"trade":{"ids":{"implicit":["implicit.stat_563547620"]}}} +{"ref":"Spirit Offering grants +#% to Critical Strike Multiplier","better":1,"matchers":[{"string":"靈魂奉獻 #% 暴擊加成"}],"trade":{"ids":{"enchant":["enchant.stat_1793005352"]}}} +{"ref":"Spirit Offering has #% increased Effect","better":1,"matchers":[{"string":"靈魂奉獻增加 #% 效果"},{"string":"靈魂奉獻減少 #% 效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3544391750"]}}} +{"ref":"Split Arrow fires an additional Projectile","better":1,"matchers":[{"string":"分裂箭矢發射 # 個額外投射物"},{"string":"分裂箭矢發射 1 個額外投射物","value":1}],"trade":{"ids":{"enchant":["enchant.stat_2278715446"]}}} +{"ref":"Splitting Steel deals #% increased Damage","better":1,"matchers":[{"string":"鋼之裂化增加 #% 傷害"},{"string":"鋼之裂化減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_866725377"]}}} +{"ref":"Splitting Steel has #% chance to not consume Steel Shards","better":1,"matchers":[{"string":"鋼之裂化有 #% 機率不消耗鋼鐵碎片"}],"trade":{"ids":{"enchant":["enchant.stat_3367825241"]}}} +{"ref":"Splitting Steel has #% increased Area of Effect","better":1,"matchers":[{"string":"鋼之裂化增加 #% 範圍效果"},{"string":"鋼之裂化減少 #% 範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1977935782"]}}} +{"ref":"Spreads Tar when you Block","better":1,"matchers":[{"string":"當你格擋時噴灑焦油"}],"trade":{"ids":{"explicit":["explicit.stat_2894567787"]}}} +{"ref":"Spreads Tar when you take a Critical Strike","better":1,"matchers":[{"string":"當你受到暴擊時噴灑焦油"}],"trade":{"ids":{"explicit":["explicit.stat_927458676"]}}} +{"ref":"Static Strike has +# maximum Beam Targets","better":1,"matchers":[{"string":"充能打擊 # 最多光束目標"}],"trade":{"ids":{"enchant":["enchant.stat_2537202749"]}}} +{"ref":"Steelskin Buff can take #% increased amount of Damage","better":1,"matchers":[{"string":"鋼筋鐵骨增益效果增加 #% 可承受傷害總量"},{"string":"鋼筋鐵骨增益效果減少 #% 可承受傷害總量","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4102483123"]}}} +{"ref":"Steelskin grants #% additional Physical Damage Reduction","better":1,"matchers":[{"string":"鋼筋鐵骨獲得 #% 額外物理傷害減免"}],"trade":{"ids":{"enchant":["enchant.stat_680880155"]}}} +{"ref":"Stone Golems deal #% increased Damage","better":1,"matchers":[{"string":"增加 #% 巨石魔像的傷害"},{"string":"減少 #% 巨石魔像的傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1171483499"]}}} +{"ref":"Storm Brand Damage Penetrates #% of Branded Enemy's Lightning Resistance","better":1,"matchers":[{"string":"風暴烙印傷害穿透被烙印敵人的 #% 閃電抗性"}],"trade":{"ids":{"enchant":["enchant.stat_3318254108"]}}} +{"ref":"Storm Brand deals #% increased Damage","better":1,"matchers":[{"string":"風暴烙印增加 #% 傷害"},{"string":"風暴烙印減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_531461618"]}}} +{"ref":"Storm Brand has a #% chance to Chain an additional time","better":1,"matchers":[{"string":"風暴烙印有 #% 機率額外連鎖 1 次"}],"trade":{"ids":{"enchant":["enchant.stat_1510381560"]}}} +{"ref":"Storm Burst has a #% chance to create an additional Orb","better":1,"matchers":[{"string":"風爆有 #% 機率製造 1 個額外電球"}],"trade":{"ids":{"enchant":["enchant.stat_1898356067"]}}} +{"ref":"Storm Rain fires an additional Arrow","better":1,"matchers":[{"string":"暴風雷雨發射 # 支額外箭矢"},{"string":"暴風雷雨發射 1 支額外箭矢","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3548112418"]}}} +{"ref":"Storm Rain has #% increased Beam frequency","better":1,"matchers":[{"string":"風暴雷雨增加 #% 光束頻率"},{"string":"風暴雷雨減少 #% 光束頻率","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1799087078"]}}} +{"ref":"Stormbind deals #% increased Damage","better":1,"matchers":[{"string":"風暴術符增加 #% 傷害"},{"string":"風暴術符減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1235531589"]}}} +{"ref":"Stormbind has #% increased Area of Effect","better":1,"matchers":[{"string":"風暴術符增加 #% 範圍效果"},{"string":"風暴術符減少 #% 範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3823033989"]}}} +{"ref":"Stormblast Mine deals #% increased Damage","better":1,"matchers":[{"string":"風爆地雷增加 #% 傷害"},{"string":"風爆地雷減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_494231298"]}}} +{"ref":"Stormblast Mine has #% increased Aura Effect","better":1,"matchers":[{"string":"風爆地雷增加 #% 光環效果"},{"string":"風爆地雷減少 #% 光環效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2718657160"]}}} +{"ref":"Stormblast Mine has #% increased Throwing Speed","better":1,"matchers":[{"string":"風爆地雷增加 #% 投擲速度"},{"string":"風爆地雷減少 #% 投擲速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_321894708"]}}} +{"ref":"Strength from Passives in Radius is Transformed to Dexterity","better":1,"matchers":[{"string":"將範圍內天賦所賦予的力量轉換成敏捷"}],"trade":{"ids":{"explicit":["explicit.stat_2237528173"]}}} +{"ref":"Strength from Passives in Radius is Transformed to Intelligence","better":1,"matchers":[{"string":"將範圍內天賦所賦予的力量轉換成智慧"}],"trade":{"ids":{"explicit":["explicit.stat_3771273420"]}}} +{"ref":"Strength provides no bonus to Maximum Life","better":1,"matchers":[{"string":"力量不再提供最大生命加成"}],"trade":{"ids":{"explicit":["explicit.stat_2290031712"]}}} +{"ref":"Strength's Damage bonus also applies to Reeling Speed at 20% of its value","better":1,"matchers":[{"string":"力量的傷害加成同時以 20% 它的值套用至收線速度"}],"trade":{"ids":{"scourge":["scourge.stat_4039414411"]}}} +{"ref":"Strength's Damage Bonus instead grants 3% increased Melee\nPhysical Damage per 10 Strength","better":1,"matchers":[{"string":"力量的傷害加成改為每 10 點力量增加 3% 近戰物理攻擊"}],"trade":{"ids":{"explicit":["explicit.stat_1531241759"]}}} +{"ref":"Strike Skills also target the previous location they were Used","better":1,"matchers":[{"string":"打擊技能同時瞄準它們先前被使用的位置"}],"trade":{"ids":{"explicit":["explicit.stat_719626796"]}}} +{"ref":"Stun Threshold is based on #% of your Mana instead of Life","better":1,"matchers":[{"string":"你的暈眩門檻由生命改為以 #% 魔力作為基礎"}],"trade":{"ids":{"explicit":["explicit.stat_2280488002"]}}} +{"ref":"Stun Threshold is based on Energy Shield instead of Life","better":1,"matchers":[{"string":"你的暈眩門檻由生命改為以能量護盾作為基礎"}],"trade":{"ids":{"explicit":["explicit.stat_2562665460"]}}} +{"ref":"Suffixes Cannot Be Changed","better":1,"matchers":[{"string":"後綴不能被變更"}],"trade":{"ids":{"explicit":["explicit.stat_3464137628"],"fractured":["fractured.stat_3464137628"],"crafted":["crafted.stat_3464137628"]}}} +{"ref":"Summon an additional Skeleton with Summon Skeletons","better":1,"matchers":[{"string":"使用召喚骷髏召喚 # 個額外骷髏"},{"string":"使用召喚骷髏召喚 1 個額外骷髏","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1589090910"]}}} +{"ref":"Summon Raging Spirit has #% chance to summon an extra Minion","better":1,"matchers":[{"string":"召喚憤怒狂靈有 #% 機率召喚 1 個額外召喚物"}],"trade":{"ids":{"enchant":["enchant.stat_1381908541"]}}} +{"ref":"Summon Raging Spirit has #% increased Duration","better":1,"matchers":[{"string":"召喚憤怒狂靈增加 #% 持續時間"},{"string":"召喚憤怒狂靈減少 #% 持續時間","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_38715141"],"enchant":["enchant.stat_38715141"]}}} +{"ref":"Summon Skitterbots has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"召喚探測機獸增加 #% 魔力保留效用"},{"string":"召喚探測機獸減少 #% 魔力保留效用","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1695754537","enchant.stat_3818053347"]}}} +{"ref":"Summoned Agony Crawler fires # additional Projectile","better":1,"matchers":[{"string":"召喚的苦痛潛伏者發射 # 個額外投射物"}],"trade":{"ids":{"enchant":["enchant.stat_155429578"]}}} +{"ref":"Summoned Arbalists Convert #% of Physical Damage to Cold Damage","better":1,"matchers":[{"string":"召喚弩兵轉化 #% 物理傷害至冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1094808741"]}}} +{"ref":"Summoned Arbalists Convert #% of Physical Damage to Fire Damage","better":1,"matchers":[{"string":"召喚弩兵轉化 #% 物理傷害至火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2954406821"]}}} +{"ref":"Summoned Arbalists Convert #% of Physical Damage to Lightning Damage","better":1,"matchers":[{"string":"召喚弩兵轉化 #% 物理傷害至閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2934219859"]}}} +{"ref":"Summoned Arbalists fire # additional Projectiles","better":1,"matchers":[{"string":"召喚弩兵發射 # 額外投射物"}],"trade":{"ids":{"explicit":["explicit.stat_2087104263"]}}} +{"ref":"Summoned Arbalists gain #% of Physical Damage as Extra Cold Damage","better":1,"matchers":[{"string":"召喚弩兵獲得 #% 物理傷害的額外冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_655918588"]}}} +{"ref":"Summoned Arbalists gain #% of Physical Damage as Extra Fire Damage","better":1,"matchers":[{"string":"召喚弩兵獲得 #% 物理傷害的額外火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1477474340"]}}} +{"ref":"Summoned Arbalists gain #% of Physical Damage as Extra Lightning Damage","better":1,"matchers":[{"string":"召喚弩兵獲得 #% 物理傷害的額外閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2631827343"]}}} +{"ref":"Summoned Arbalists have #% chance to Crush on Hit","better":1,"matchers":[{"string":"召喚弩兵擊中時有 #% 機率粉碎"}],"trade":{"ids":{"explicit":["explicit.stat_1658936540"]}}} +{"ref":"Summoned Arbalists have #% chance to deal Double Damage","better":1,"matchers":[{"string":"召喚弩兵有 #% 機率造成 2 倍傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3057722139"]}}} +{"ref":"Summoned Arbalists have #% chance to Freeze","better":1,"matchers":[{"string":"召喚弩兵有 #% 機率造成冰凍"}],"trade":{"ids":{"explicit":["explicit.stat_2052458107"]}}} +{"ref":"Summoned Arbalists have #% chance to Freeze, Shock, and Ignite","better":1,"matchers":[{"string":"召喚弩兵有 #% 機率造成冰凍、感電和點燃"}],"trade":{"ids":{"explicit":["explicit.stat_357325557"]}}} +{"ref":"Summoned Arbalists have #% chance to Ignite","better":1,"matchers":[{"string":"召喚弩兵有 #% 機率造成點燃"}],"trade":{"ids":{"explicit":["explicit.stat_831284309"]}}} +{"ref":"Summoned Arbalists have #% chance to inflict Cold Exposure on Hit","better":1,"matchers":[{"string":"召喚弩兵擊中時有 #% 機率造成冰冷曝曬"}],"trade":{"ids":{"explicit":["explicit.stat_157070900"]}}} +{"ref":"Summoned Arbalists have #% chance to inflict Fire Exposure on Hit","better":1,"matchers":[{"string":"召喚弩兵擊中時有 #% 機率造成火焰曝曬"}],"trade":{"ids":{"explicit":["explicit.stat_3327243369"]}}} +{"ref":"Summoned Arbalists have #% chance to inflict Lightning Exposure on Hit","better":1,"matchers":[{"string":"召喚弩兵擊中時有 #% 機率造成閃電曝曬"}],"trade":{"ids":{"explicit":["explicit.stat_223656429"]}}} +{"ref":"Summoned Arbalists have #% chance to Intimidate for 4 seconds on Hit","better":1,"matchers":[{"string":"召喚弩兵擊中時有 #% 機率威嚇 4 秒"}],"trade":{"ids":{"explicit":["explicit.stat_3964074505"]}}} +{"ref":"Summoned Arbalists have #% chance to Maim for 4 seconds on Hit","better":1,"matchers":[{"string":"召喚弩兵擊中時有 #% 機率癱瘓 4 秒"}],"trade":{"ids":{"explicit":["explicit.stat_3652224635"]}}} +{"ref":"Summoned Arbalists have #% chance to Poison","better":1,"matchers":[{"string":"召喚弩兵有 #% 機率造成中毒"}],"trade":{"ids":{"explicit":["explicit.stat_2894626576"]}}} +{"ref":"Summoned Arbalists have #% chance to Shock","better":1,"matchers":[{"string":"召喚弩兵有 #% 機率造成感電"}],"trade":{"ids":{"explicit":["explicit.stat_2144847042"]}}} +{"ref":"Summoned Arbalists have #% chance to Unnerve for 4 seconds on Hit","better":1,"matchers":[{"string":"召喚弩兵擊中時有 #% 機率膽怯 4 秒"}],"trade":{"ids":{"explicit":["explicit.stat_3976916585"]}}} +{"ref":"Summoned Arbalists have #% increased Attack Speed","better":1,"matchers":[{"string":"召喚弩兵增加 #% 攻擊速度"},{"string":"召喚弩兵減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4054463312"]}}} +{"ref":"Summoned Arbalists' Attacks have #% chance to inflict Bleeding","better":1,"matchers":[{"string":"召喚弩兵的攻擊有 #% 機率造成流血"}],"trade":{"ids":{"explicit":["explicit.stat_1841503755"]}}} +{"ref":"Summoned Arbalists' Projectiles Chain +# times","better":1,"matchers":[{"string":"召喚弩兵的投射物可以連鎖 # 次"}],"trade":{"ids":{"explicit":["explicit.stat_3010688059"]}}} +{"ref":"Summoned Arbalists' Projectiles Fork","better":1,"matchers":[{"string":"召喚弩兵的投射物分裂"}],"trade":{"ids":{"explicit":["explicit.stat_2461270975"]}}} +{"ref":"Summoned Arbalists' Projectiles Pierce # additional Targets","better":1,"matchers":[{"string":"召喚弩兵的投射物穿透 # 額外目標"}],"trade":{"ids":{"explicit":["explicit.stat_3741465646"]}}} +{"ref":"Summoned Arbalists' Projectiles Split into #","better":1,"matchers":[{"string":"召喚弩兵的投射物分化至 #"}],"trade":{"ids":{"explicit":["explicit.stat_1857935842"]}}} +{"ref":"Summoned Carrion Golems deal #% increased Damage","better":1,"matchers":[{"string":"召喚食腐魔像增加 #% 傷害"},{"string":"召喚食腐魔像減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3593547682"]}}} +{"ref":"Summoned Carrion Golems have +#% to all Elemental Resistances","better":1,"matchers":[{"string":"召喚食腐魔像 #% 全部元素抗性"}],"trade":{"ids":{"enchant":["enchant.stat_59544006"]}}} +{"ref":"Summoned Golems are Aggressive","better":1,"matchers":[{"string":"召喚魔像有侵略性"}],"trade":{"ids":{"explicit":["explicit.stat_3630426972"]}}} +{"ref":"Summoned Golems have #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"召喚的魔像增加 #% 冷卻時間恢復速度"},{"string":"召喚的魔像減少 #% 冷卻時間恢復速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3246099900"]}}} +{"ref":"Summoned Golems Regenerate #% of their Life per second","better":1,"matchers":[{"string":"召喚魔像每秒回復 #% 他們的生命"}],"trade":{"ids":{"explicit":["explicit.stat_2235163762"]}}} +{"ref":"Summoned Holy Relics deal #% increased Damage","better":1,"matchers":[{"string":"召喚聖物增加 #% 傷害"},{"string":"召喚聖物減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1152784934"]}}} +{"ref":"Summoned Holy Relics have #% increased Area of Effect","better":1,"matchers":[{"string":"召喚聖物增加 #% 範圍效果"},{"string":"召喚聖物減少 #% 範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3026568825"]}}} +{"ref":"Summoned Holy Relics have #% increased Buff Effect","better":1,"matchers":[{"string":"召喚聖物增加 #% 增益效果"}],"trade":{"ids":{"enchant":["enchant.stat_3080391193"]}}} +{"ref":"Summoned Holy Relics have #% reduced Cooldown Recovery Rate","better":-1,"matchers":[{"string":"召喚的聖物增加 #% 冷卻時間恢復速度"},{"string":"召喚的聖物減少 #% 冷卻時間恢復速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1583498502"]},"inverted":true}} +{"ref":"Summoned Phantasms have #% chance to refresh their Duration when they Hit a Rare or Unique Enemy","better":1,"matchers":[{"string":"當召喚的幻影擊中稀有或傳奇敵人時,有 #% 機率刷新它們的持續時間"},{"string":"當召喚的幻影擊中稀有或傳奇敵人時,刷新它們的持續時間","value":100}],"trade":{"ids":{"explicit":["explicit.stat_7847395"],"fractured":["fractured.stat_7847395"]}}} +{"ref":"Summoned Raging Spirits deal #% increased Damage","better":1,"matchers":[{"string":"召喚憤怒狂靈增加 #% 傷害"},{"string":"召喚憤怒狂靈減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2085855914"],"enchant":["enchant.stat_2085855914"]}}} +{"ref":"Summoned Raging Spirits have #% chance to refresh their Duration when they Hit a Rare or Unique Enemy","better":1,"matchers":[{"string":"當召喚憤怒狂靈擊中稀有或傳奇敵人時,有 #% 機率刷新它們的持續時間"},{"string":"當召喚憤怒狂靈擊中稀有或傳奇敵人時,刷新它們的持續時間","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4070754804"],"fractured":["fractured.stat_4070754804"]}}} +{"ref":"Summoned Raging Spirits have #% increased maximum Life","better":1,"matchers":[{"string":"召喚憤怒狂靈增加 #% 最大生命"},{"string":"召喚憤怒狂靈減少 #% 最大生命","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3999870307"]}}} +{"ref":"Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy","better":1,"matchers":[{"string":"當召喚憤怒狂靈擊殺被點燃的敵人,會重新刷新他們的持續時間"}],"trade":{"ids":{"explicit":["explicit.stat_2761732967"]}}} +{"ref":"Summoned Raging Spirits take #% of their Maximum Life per second as Chaos Damage","better":1,"matchers":[{"string":"召喚憤怒狂靈每秒承受 #% 他們最大生命的混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1063920218"]}}} +{"ref":"Summoned Raging Spirits' Hits always Ignite","better":1,"matchers":[{"string":"召喚憤怒狂靈的擊中總是點燃"}],"trade":{"ids":{"explicit":["explicit.stat_3954637034"]}}} +{"ref":"Summoned Raging Spirits' Melee Strikes deal Fire-only Splash\nDamage to Surrounding Targets","better":1,"matchers":[{"string":"召喚憤怒狂靈的近戰打擊\n對附近敵人造成火焰限定擴散傷害"}],"trade":{"ids":{"explicit":["explicit.stat_221328679"]}}} +{"ref":"Summoned Reaper deals #% increased Damage","better":1,"matchers":[{"string":"召喚奪魂鐮增加 #% 傷害"},{"string":"召喚奪魂鐮減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2516903912"]}}} +{"ref":"Summoned Reaper has +#% to Physical Damage over Time Multiplier","better":1,"matchers":[{"string":"召喚奪魂鐮 #% 物理持續傷害加成"}],"trade":{"ids":{"enchant":["enchant.stat_1975621585"]}}} +{"ref":"Summoned Sentinels of Absolution have #% increased Area of Effect","better":1,"matchers":[{"string":"召喚的赦免哨兵增加 #% 範圍效果"},{"string":"召喚的赦免哨兵減少 #% 範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_771292654"]}}} +{"ref":"Summoned Skeleton Warriors and Soldiers deal Triple Damage with this\nWeapon if you've Hit with this Weapon Recently","better":1,"matchers":[{"string":"若你近期有使用此武器擊中,召喚的骷髏戰士和士兵使用此武器造成 3 倍傷害"}],"trade":{"ids":{"explicit":["explicit.stat_697059777"]}}} +{"ref":"Summoned Skeleton Warriors and Soldiers wield this Weapon while in your Main Hand","better":1,"matchers":[{"string":"你主手為此武器時,召喚骷髏戰士和士兵持此武器"}],"trade":{"ids":{"explicit":["explicit.stat_2646007123"]}}} +{"ref":"Summoned Skeleton Warriors are Permanent and Follow you\nSummon Skeletons cannot Summon more than 1 Skeleton Warrior","better":1,"matchers":[{"string":"召喚骷髏戰士為永久且會跟髓你\n召喚骷髏不能召喚超過 1 隻骷髏戰士"}],"trade":{"ids":{"explicit":["explicit.stat_1021552211"]}}} +{"ref":"Summoned Skeletons have a #% chance to Cover Enemies in Ash on Hit","better":1,"matchers":[{"string":"召喚骷髏擊中敵人時有 #% 機率使敵人餘燼纏身"},{"string":"召喚骷髏擊中敵人時使敵人餘燼纏身","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3074608753"]}}} +{"ref":"Summoned Skeletons have Avatar of Fire","better":1,"matchers":[{"string":"召喚有火之化身的骷髏"}],"trade":{"ids":{"explicit":["explicit.stat_1958210928"]}}} +{"ref":"Summoned Skeletons take #% of their Maximum Life per second as Fire Damage","better":1,"matchers":[{"string":"召喚骷髏每秒承受 #% 他們最大生命的火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2912438397"]}}} +{"ref":"Summoned Skitterbots have #% increased Area of Effect","better":1,"matchers":[{"string":"召喚探測機獸增加 #% 範圍效果"},{"string":"召喚探測機獸減少 #% 範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2844839137"]}}} +{"ref":"Sunder has #% increased Area of Effect","better":1,"matchers":[{"string":"大地震擊增加 #% 範圍效果"},{"string":"大地震擊減少 #% 範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3316767657"]}}} +{"ref":"Sunder has #% increased Damage","better":1,"matchers":[{"string":"大地震擊增加 #% 傷害"},{"string":"大地震擊減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4033078288"]}}} +{"ref":"Sunder has #% increased delay between Areas in the Wave","better":1,"matchers":[{"string":"大地震擊增加 #% 震波在區域間的延遲"},{"string":"大地震擊減少 #% 震波在區域間的延遲","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_40032620"]}}} +{"ref":"Supreme Decadence","better":1,"matchers":[{"string":"至高.頹廢"}],"trade":{"ids":{"explicit":["explicit.stat_3215997147"]}}} +{"ref":"Supreme Ego","better":1,"matchers":[{"string":"至高.自我"}],"trade":{"ids":{"explicit":["explicit.stat_1421267186"],"scourge":["scourge.stat_1421267186"]}}} +{"ref":"Survival","better":1,"matchers":[{"string":"存活"}],"trade":{"ids":{"explicit":["explicit.stat_2995661301"]}}} +{"ref":"Sweep has a #% chance to grant an Endurance Charge on Hit","better":1,"matchers":[{"string":"橫掃擊中時有 #% 機率獲得 1 顆耐力球"},{"string":"橫掃擊中時獲得 1 顆耐力球","value":100}],"trade":{"ids":{"enchant":["enchant.stat_609916976"]}}} +{"ref":"Take # Chaos Damage per Second during Effect","better":1,"matchers":[{"string":"效果持續時間,每秒承受 # 混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_308618188"]}}} +{"ref":"Take # Cold Damage on reaching Maximum Power Charges","better":1,"matchers":[{"string":"到達最大暴擊球時承受 # 冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3664778308"]}}} +{"ref":"Take # Fire Damage per Second while Flame-Touched","better":1,"matchers":[{"string":"烈焰之觸時,每秒承受 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3511992942"]}}} +{"ref":"Take # Fire Damage when you Ignite an Enemy","better":1,"matchers":[{"string":"當你點燃敵人時受到 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2518598473"]}}} +{"ref":"Take # Lightning Damage when Herald of Thunder Hits an Enemy","better":1,"matchers":[{"string":"當閃電之捷擊中敵人承受 # 閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2007062029"]}}} +{"ref":"Take # Physical Damage per Second per Siphoning Charge if you've used a Skill Recently","better":1,"matchers":[{"string":"若你近期有使用技能,每秒每顆虹吸能量球承受 # 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2440172920"]}}} +{"ref":"Take # Physical Damage when you use a Movement Skill","better":1,"matchers":[{"string":"當你使用位移技能時受到 # 物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2590715472"]}}} +{"ref":"Take no Burning Damage if you've stopped taking Burning Damage Recently","better":1,"matchers":[{"string":"若你近期停止承受燃燒傷害,不會承受燃燒傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2738190959"]}}} +{"ref":"Take no Extra Damage from Critical Strikes","better":1,"matchers":[{"string":"不會受到暴擊產成的額外暴擊傷害"}],"trade":{"ids":{"explicit":["explicit.stat_4294267596"]}}} +{"ref":"Take no Extra Damage from Critical Strikes if you have a Magic Ring in left slot","better":1,"matchers":[{"string":"若你左戒指欄位為魔法戒指,不會受到來自暴擊的額外傷害"}],"trade":{"ids":{"explicit":["explicit.stat_611839381"]}}} +{"ref":"Take no Extra Damage from Critical Strikes if you've cast Enfeeble in the past 10 seconds","better":1,"matchers":[{"string":"若你過去 10 秒有施放過衰弱,不會承受來自暴擊的額外傷害"}],"trade":{"ids":{"explicit":["explicit.stat_4077357269"]}}} +{"ref":"Taking Chaos Damage over Time heals you instead while Leeching Life","better":1,"matchers":[{"string":"偷取生命時,承受混沌持續傷害改為治癒你"}],"trade":{"ids":{"explicit":["explicit.stat_1971757986"]}}} +{"ref":"Taunts nearby Enemies on use","better":1,"matchers":[{"string":"使用時嘲諷附近敵人"}],"trade":{"ids":{"implicit":["implicit.stat_2005503156"]}}} +{"ref":"Tectonic Slam deals #% increased Damage","better":1,"matchers":[{"string":"破體之擊增加 #% 傷害"},{"string":"破體之擊減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3999206457"]}}} +{"ref":"Tectonic Slam has #% increased Area of Effect","better":1,"matchers":[{"string":"破體之擊增加 #% 範圍效果"},{"string":"破體之擊減少 #% 範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_340193547"]}}} +{"ref":"Tectonic Slam has +#% fissure branching chance","better":1,"matchers":[{"string":"破體之擊 #% 機率裂縫分支"}],"trade":{"ids":{"enchant":["enchant.stat_1522229796","enchant.stat_2462686988"]}}} +{"ref":"Tempest Shield chains an additional time","better":1,"matchers":[{"string":"暴風之盾額外連鎖 # 次"},{"string":"暴風之盾額外連鎖一次","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3096183736"]}}} +{"ref":"Tempest Shield has #% increased Buff Effect","better":1,"matchers":[{"string":"暴風之盾增加 #% 增益效果"},{"string":"暴風之盾減少 #% 增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2662416009"]}}} +{"ref":"Temporal Chains has #% reduced Effect on you","better":-1,"matchers":[{"string":"增加 #% 你所承受的時空鎖鏈效果"},{"string":"減少 #% 你所承受的時空鎖鏈效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1152934561"]},"inverted":true}} +{"ref":"Temporal Chains has no Reservation if Cast as an Aura","better":1,"matchers":[{"string":"若時空鎖鏈以光環施放沒有保留"}],"trade":{"ids":{"explicit":["explicit.stat_2100165275"]}}} +{"ref":"Temporal Rift has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"時空裂隙增加 #% 冷卻時間恢復率"}],"trade":{"ids":{"enchant":["enchant.stat_3614009195"]}}} +{"ref":"Temporal Rift has no Reservation","better":1,"matchers":[{"string":"時空裂隙沒有保留"}],"trade":{"ids":{"explicit":["explicit.stat_2139238642"]}}} +{"ref":"The Agnostic","better":1,"matchers":[{"string":"不可知論"}],"trade":{"ids":{"explicit":["explicit.stat_462691314"],"scourge":["scourge.stat_462691314"]}}} +{"ref":"The Effect of Chill on you is reversed","better":1,"matchers":[{"string":"冰緩效果對你是相反的"}],"trade":{"ids":{"explicit":["explicit.stat_2955966707"]}}} +{"ref":"The Herald of the Scourge deals #% more Damage","better":1,"matchers":[{"string":"災魘先鋒造成 #% 更多傷害"},{"string":"災魘先鋒造成 #% 更少傷害","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_2149490821"]}}} +{"ref":"The Herald of the Scourge drops an additional Forbidden Tome","better":1,"matchers":[{"string":"災魘先鋒掉落 # 個額外禁忌之書"},{"string":"災魘先鋒掉落 1 個額外禁忌之書","value":1}],"trade":{"ids":{"explicit":["sanctum.stat_3878191575"]}}} +{"ref":"The Herald of the Scourge drops Eternal Damnation","better":1,"matchers":[{"string":"災魘先鋒掉落永恆的詛咒"}],"trade":{"ids":{"explicit":["sanctum.stat_1059486105"]}}} +{"ref":"The Herald of the Scourge drops Sandstorm Visage","better":1,"matchers":[{"string":"災魘先鋒掉落沙瀑面紗"}],"trade":{"ids":{"explicit":["sanctum.stat_2995848279"]}}} +{"ref":"The Herald of the Scourge drops the Balance of Terror","better":1,"matchers":[{"string":"災魘先鋒掉落恐怖平衡"}],"trade":{"ids":{"explicit":["sanctum.stat_85125881"]}}} +{"ref":"The Herald of the Scourge drops the Original Sin","better":1,"matchers":[{"string":"災魘先鋒掉落原罪"}],"trade":{"ids":{"explicit":["sanctum.stat_1133899331"]}}} +{"ref":"The Herald of the Scourge drops the Winds of Fate","better":1,"matchers":[{"string":"災魘先鋒掉落命定之風"}],"trade":{"ids":{"explicit":["sanctum.stat_4204412707"]}}} +{"ref":"The Herald of the Scourge takes #% more Damage","better":1,"matchers":[{"string":"災魘先鋒承受 #% 更多傷害"},{"string":"災魘先鋒承受 #% 更少傷害","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_2226900052"]}}} +{"ref":"The Impaler","better":1,"matchers":[{"string":"穿刺者"}],"trade":{"ids":{"explicit":["explicit.stat_1441799693"],"fractured":["fractured.stat_1441799693"],"scourge":["scourge.stat_1441799693"]}}} +{"ref":"The Maven interferes with Players","better":1,"fromUberAreaMods":true,"matchers":[{"string":"釋界干擾玩家"}],"trade":{"ids":{"explicit":["explicit.stat_1594156261"]}}} +{"ref":"The Merchant has an additional Choice","better":1,"matchers":[{"string":"商人有 # 個額外選擇"},{"string":"商人有 1 個額外選擇","value":1}],"trade":{"ids":{"explicit":["sanctum.stat_290775436"]}}} +{"ref":"The Ring takes no Cut","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"邪戒不會抽成"}],"trade":{"ids":{"explicit":["explicit.stat_616993076"],"fractured":["fractured.stat_616993076"]}}} +{"ref":"The Ring's Cut increased by #%","better":1,"matchers":[{"string":"邪戒抽成增加 #%"},{"string":"邪戒抽成減少 #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_293465345"],"fractured":["fractured.stat_293465345"]}}} +{"ref":"This item is destroyed when applied to a Sanctum","better":1,"matchers":[{"string":"當套用至聖域時,此物品會被摧毀"}],"trade":{"ids":{"explicit":["sanctum.stat_3182333322"]}}} +{"ref":"This Jewel's Socket has #% increased effect per Allocated Passive Skill between\nit and your Class' starting location","better":1,"matchers":[{"string":"每個此珠寶插槽和你職業起始位置間\n已配置的天賦點,增加此珠寶插槽 #% 效果。"}],"trade":{"ids":{"explicit":["explicit.stat_372478711"]}}} +{"ref":"This Weapon's Critical Strike Chance is 100%","better":1,"matchers":[{"string":"此武器的暴擊率為 100%"}],"trade":{"ids":{"explicit":["explicit.stat_1963540179"]}}} +{"ref":"Tora's Veiled","better":0,"matchers":[{"string":"托菈的隱匿"}],"trade":{"ids":{"veiled":["veiled.mod_8541"]}}} +{"ref":"Tornado has #% increased Movement Speed","better":1,"matchers":[{"string":"龍捲風增加 #% 移動速度"},{"string":"龍捲風減少 #% 移動速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3713499406"]}}} +{"ref":"Total Recovery per second from Life Leech is Doubled","better":1,"matchers":[{"string":"來自生命偷取的總恢復為 2 倍"}],"trade":{"ids":{"explicit":["explicit.stat_1277035917"]}}} +{"ref":"Totems cannot be Stunned","better":1,"matchers":[{"string":"圖騰不能被擊暈"}],"trade":{"ids":{"explicit":["explicit.stat_335735137"]}}} +{"ref":"Totems fire # additional Projectile","better":1,"matchers":[{"string":"圖騰發射額外 # 投射物"}],"trade":{"ids":{"explicit":["explicit.stat_736847554"]}}} +{"ref":"Totems gain +#% to all Elemental Resistances","better":1,"matchers":[{"string":"圖騰 #% 全部元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1809006367"],"implicit":["implicit.stat_1809006367"],"fractured":["fractured.stat_1809006367"],"scourge":["scourge.stat_1809006367"]}}} +{"ref":"Totems have #% additional Physical Damage Reduction","better":1,"matchers":[{"string":"圖騰有 #% 額外物理傷害減免"}],"trade":{"ids":{"scourge":["scourge.stat_3616562963"]}}} +{"ref":"Totems Reflect #% of their maximum Life as Fire Damage to nearby Enemies when Hit","better":1,"matchers":[{"string":"圖騰被擊中時對附近敵人造成等同圖騰 #% 最大生命的火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1723061251"]}}} +{"ref":"Totems Taunt Enemies around them for # second when Summoned","better":1,"matchers":[{"string":"當圖騰被召喚時,嘲諷它們附近的敵人 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_2076876595"]}}} +{"ref":"Toxic Rain deals #% increased Damage","better":1,"matchers":[{"string":"腐蝕毒雨增加 #% 傷害"},{"string":"腐蝕毒雨減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_865511246"]}}} +{"ref":"Toxic Rain fires # additional Arrow","better":1,"matchers":[{"string":"腐蝕毒雨發射 # 個額外箭矢"}],"trade":{"ids":{"enchant":["enchant.stat_2140127102"]}}} +{"ref":"Toxic Rain gains #% of Physical Damage as Extra Chaos Damage","better":1,"matchers":[{"string":"腐蝕毒雨獲得 #% 物理傷害的額外混沌傷害"}],"trade":{"ids":{"enchant":["enchant.stat_1798919988"]}}} +{"ref":"Transfiguration of Body","better":1,"matchers":[{"string":"肉體扭曲"}],"trade":{"ids":{"explicit":["explicit.stat_881645355"]}}} +{"ref":"Transfiguration of Mind","better":1,"matchers":[{"string":"意志扭曲"}],"trade":{"ids":{"explicit":["explicit.stat_2571899044"]}}} +{"ref":"Transfiguration of Soul","better":1,"matchers":[{"string":"靈體扭曲"}],"trade":{"ids":{"explicit":["explicit.stat_3268519799"]}}} +{"ref":"Trap Skills have #% increased Skill Effect Duration","better":1,"matchers":[{"string":"陷阱技能增加 #% 技能效果持續時間"},{"string":"陷阱技能減少 #% 技能效果持續時間","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2546859843"]}}} +{"ref":"Traps and Mines deal # to # additional Physical Damage","better":1,"matchers":[{"string":"陷阱及地雷造成 # 至 # 額外物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3391324703"]}}} +{"ref":"Traps and Mines have a #% chance to Poison on Hit","better":1,"matchers":[{"string":"陷阱和地雷擊中時有 #% 機率使敵人中毒"},{"string":"陷阱和地雷擊中時使敵人中毒","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3192135716"]}}} +{"ref":"Traps cannot be triggered by Enemies","better":1,"matchers":[{"string":"陷阱不能被敵人觸發"}],"trade":{"ids":{"explicit":["explicit.stat_1861759600"]}}} +{"ref":"Traps from Skills are thrown randomly around targeted location","better":1,"matchers":[{"string":"來自技能的陷阱被隨機投擲到目標位置附近"}],"trade":{"ids":{"explicit":["explicit.stat_2727188901"]}}} +{"ref":"Traps from Socketed Skills create a Smoke Cloud when triggered","better":1,"matchers":[{"string":"當觸發插槽中的陷阱時,製造一團迷霧"}],"trade":{"ids":{"explicit":["explicit.stat_1263384098"]}}} +{"ref":"Travel Skills other than Dash are Disabled","better":1,"matchers":[{"string":"除了幻步的快行技能不能使用"}],"trade":{"ids":{"explicit":["explicit.stat_3066073024"]}}} +{"ref":"Treats Enemy Monster Elemental Resistance values as inverted","better":1,"matchers":[{"string":"對待敵人怪物元素抗性的值為顛倒"}],"trade":{"ids":{"explicit":["explicit.stat_2750800428"]}}} +{"ref":"Trigger a Socketed Cold Spell on Melee Critical Strike, with a 0.25 second Cooldown","better":1,"matchers":[{"string":"近戰暴擊時觸發 1 個插槽中的冰冷法術,有 0.25 秒冷卻時間"}],"trade":{"ids":{"explicit":["explicit.stat_2295303426"]}}} +{"ref":"Trigger a Socketed Elemental Spell on Block, with a # second Cooldown","dp":true,"better":1,"matchers":[{"string":"格擋時觸發 1 個插槽中的元素法術,冷卻時間為 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_3591112611"]}}} +{"ref":"Trigger a Socketed Lightning Spell on Hit, with a 0.25 second Cooldown\nSocketed Lightning Spells have no Cost if Triggered","better":1,"matchers":[{"string":"擊中時有 #% 機率觸發插槽中 1 個閃電法術,有 0.25 秒的冷卻時間\n觸發時,插槽中的閃電法術沒有消耗"},{"string":"擊中時觸發插槽中 1 個閃電法術,有 0.25 秒的冷卻時間\n觸發時,插槽中的閃電法術沒有消耗","value":100}],"trade":{"ids":{"explicit":["explicit.stat_654971543"]}}} +{"ref":"Trigger a Socketed Spell on Using a Skill, with a # second Cooldown\nSpells Triggered this way have 150% more Cost","better":1,"matchers":[{"string":"使用技能時觸發插槽中的 1 個法術,有 # 秒冷卻時間\n以此方式觸發的法術有 150% 更多消耗"}],"trade":{"ids":{"explicit":["explicit.stat_1582781759"],"fractured":["fractured.stat_1582781759"]}}} +{"ref":"Trigger Level # Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark","better":1,"matchers":[{"string":"當你擊中稀有或傳奇敵人且沒有印記時,觸發等級 # 的刺客印記"}],"trade":{"ids":{"explicit":["explicit.stat_3382957283","explicit.stat_3924520095"]}}} +{"ref":"Trigger Level # Bone Nova when you Hit a Bleeding Enemy","better":1,"matchers":[{"string":"當你擊中流血的敵人時,觸發等級 # 的刺骨新星"}],"trade":{"ids":{"explicit":["explicit.stat_2634885412"]}}} +{"ref":"Trigger Level # Bone Offering, Flesh Offering or Spirit Offering every 5 seconds\nOffering Skills Triggered this way also affect you","better":1,"matchers":[{"string":"每 5 秒觸發等級 # 的骸骨奉獻、血肉奉獻或靈魂奉獻\n以此方式觸發的奉獻技能同時影響你"}],"trade":{"ids":{"explicit":["explicit.stat_1663239249"]}}} +{"ref":"Trigger Level # Consecrate when you deal a Critical Strike","better":1,"matchers":[{"string":"當你暴擊時觸發等級 # 的奉獻"}],"trade":{"ids":{"explicit":["explicit.stat_899293871"]}}} +{"ref":"Trigger Level # Contaminate when you Kill an Enemy","better":1,"matchers":[{"string":"當你擊殺敵人時觸發等級 # 的污毒之域"}],"trade":{"ids":{"explicit":["explicit.stat_3159312340"]}}} +{"ref":"Trigger Level # Death Aura when Equipped","better":1,"matchers":[{"string":"裝備時觸發等級 # 死亡光環"}],"trade":{"ids":{"explicit":["explicit.stat_825352061"]}}} +{"ref":"Trigger Level # Elemental Warding on Melee Hit while Cursed","better":1,"matchers":[{"string":"被詛咒時,近戰擊中觸發等級 # 的元素守護"}],"trade":{"ids":{"explicit":["explicit.stat_810166817"]}}} +{"ref":"Trigger Level # Feast of Flesh every 5 seconds","better":1,"matchers":[{"string":"每 5 秒觸發等級 # 的血肉盛宴"}],"trade":{"ids":{"explicit":["explicit.stat_1024189516"]}}} +{"ref":"Trigger Level # Fiery Impact on Melee Hit with this Weapon","better":1,"matchers":[{"string":"使用此武器近戰擊中時,觸發等級 # 的熾熱衝擊"}],"trade":{"ids":{"implicit":["implicit.stat_1523888729"]}}} +{"ref":"Trigger Level # Flame Dash when you use a Socketed Skill","better":1,"matchers":[{"string":"當你使用插槽中的技能時,觸發等級 # 的烈焰衝刺"}],"trade":{"ids":{"implicit":["implicit.stat_1633778432"]}}} +{"ref":"Trigger Level # Fog of War when your Trap is triggered","better":1,"matchers":[{"string":"當你的陷阱被觸發時,施放等級 # 的戰爭迷霧"}],"trade":{"ids":{"explicit":["explicit.stat_208447205"]}}} +{"ref":"Trigger Level # Gore Shockwave on Melee Hit if you have at least 150 Strength","better":1,"matchers":[{"string":"若你至少有 150 點力量,近戰擊中時觸發等級 # 的濺血震波"}],"trade":{"ids":{"explicit":["explicit.stat_252427115"]}}} +{"ref":"Trigger Level # Icicle Burst when you Hit a Frozen Enemy","better":1,"matchers":[{"string":"當你擊中冰凍的敵人時,觸發等級 # 的冰柱爆裂"}],"trade":{"ids":{"explicit":["explicit.stat_1357672429"]}}} +{"ref":"Trigger Level # Intimidating Cry on Hit","better":1,"matchers":[{"string":"擊中時觸發等級 # 的威嚇戰吼"}],"trade":{"ids":{"explicit":["explicit.stat_1795756125"]}}} +{"ref":"Trigger Level # Intimidating Cry when you lose Cat's Stealth","better":1,"matchers":[{"string":"你失去傲貓隱身時觸發等級 # 的恫嚇戰吼"}],"trade":{"ids":{"explicit":["explicit.stat_3892608176"]}}} +{"ref":"Trigger Level # Lightning Bolt when you deal a Critical Strike","better":1,"matchers":[{"string":"當你暴擊時觸發等級 # 的雷擊"}],"trade":{"ids":{"explicit":["explicit.stat_3241494164"],"enchant":["enchant.stat_3241494164"]}}} +{"ref":"Trigger Level # Lightning Warp on Hit with this Weapon","better":1,"matchers":[{"string":"使用此武器擊中時觸發等級 # 的閃電傳送"}],"trade":{"ids":{"explicit":["explicit.stat_1527893390"]}}} +{"ref":"Trigger Level # Rain of Arrows when you Attack with a Bow","better":1,"matchers":[{"string":"當你使用弓攻擊時,觸發等級 # 的箭雨"}],"trade":{"ids":{"explicit":["explicit.stat_2935409762"]}}} +{"ref":"Trigger Level # Shield Shatter when you Block","better":1,"matchers":[{"string":"當你格擋時觸發等級 # 的盾牌碎裂"}],"trade":{"ids":{"explicit":["explicit.stat_401685616"]}}} +{"ref":"Trigger Level # Shock Ground on Hit","better":1,"matchers":[{"string":"擊中時觸發等級 # 的感電地面"}],"trade":{"ids":{"enchant":["enchant.stat_2845525306"]}}} +{"ref":"Trigger Level # Shock Ground when Hit","better":1,"matchers":[{"string":"被擊中時觸發等級 # 的感電地面"}],"trade":{"ids":{"explicit":["explicit.stat_2668070396"]}}} +{"ref":"Trigger Level # Spirit Burst when you Use a Skill while you have a Spirit Charge","better":1,"matchers":[{"string":"當你有靈體能量球使用技能時,觸發等級 # 的靈體爆破"}],"trade":{"ids":{"explicit":["explicit.stat_1992516007"]}}} +{"ref":"Trigger Level # Stalking Pustule on Kill","better":1,"matchers":[{"string":"擊殺時觸發等級 # 的潛行毒玉"}],"trade":{"ids":{"explicit":["explicit.stat_1662669872"]}}} +{"ref":"Trigger Level # Storm Cascade when you Attack","better":1,"matchers":[{"string":"當你攻擊時觸發等級 # 的風暴突襲"}],"trade":{"ids":{"explicit":["explicit.stat_818329660"]}}} +{"ref":"Trigger Level # Summon Phantasm Skill when you Consume a corpse","better":1,"matchers":[{"string":"當你消耗 1 個屍體時觸發等級 # 的召喚幻影技能"}],"trade":{"ids":{"explicit":["explicit.stat_3252082366"]}}} +{"ref":"Trigger Level # Summon Taunting Contraption when you use a Flask","better":1,"matchers":[{"string":"當你使用藥劑時,觸發等級 # 召喚嘲諷裝置"}],"trade":{"ids":{"implicit":["implicit.stat_1774370437"]}}} +{"ref":"Trigger Level # Tawhoa's Chosen when you Attack with\na Non-Vaal Slam or Strike Skill near an Enemy","better":1,"matchers":[{"string":"當你使用非瓦爾重擊或打擊技能的攻擊時,觸發等級 # 的塔赫亞的抉擇"}],"trade":{"ids":{"explicit":["explicit.stat_3131535174"]}}} +{"ref":"Trigger Level # Toxic Rain when you Attack with a Bow","better":1,"matchers":[{"string":"當你使用弓攻擊時,觸發等級 # 的腐蝕毒雨"}],"trade":{"ids":{"explicit":["explicit.stat_767464019"]}}} +{"ref":"Trigger Level # Unseen Strike every 0.5 seconds while Phasing","better":1,"matchers":[{"string":"迷蹤時,每 0.5 秒觸發等級 # 的隱匿突擊"}],"trade":{"ids":{"explicit":["explicit.stat_3165215973"]}}} +{"ref":"Trigger Level # Void Gaze when you use a Skill","better":1,"matchers":[{"string":"當你使用技能時觸發等級 # 的虛空凝視"}],"trade":{"ids":{"explicit":["explicit.stat_1869144397"]}}} +{"ref":"Trigger Level 10 Summon Spectral Wolf on Kill","better":1,"matchers":[{"string":"擊殺時觸發等級 10 的召喚幽狼"}],"trade":{"ids":{"explicit":["explicit.stat_1468606528"],"fractured":["fractured.stat_1468606528"],"crafted":["crafted.stat_1468606528"]}}} +{"ref":"Trigger Level 20 Shade Form when Hit","better":1,"matchers":[{"string":"被擊中時有 #% 機率觸發等級 20 的暗影姿態"},{"string":"被擊中時觸發等級 20 的暗影姿態","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2603798371"]}}} +{"ref":"Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight","better":1,"matchers":[{"string":"當你獲得飛羽意志或飛羽飄翔時,觸發等級 20 的旋風"}],"trade":{"ids":{"explicit":["explicit.stat_2554328719"]}}} +{"ref":"Trigger Socketed Minion Spells on Kill with this Weapon\nMinion Spells Triggered by this Item have a 0.25 second Cooldown with 5 Uses","better":1,"matchers":[{"string":"使用此武器擊殺時有 #% 機率觸發插槽中召喚物法術\n此物品觸發召喚物法術有 0.25 秒冷卻時間,有 5 使用次數"},{"string":"使用此武器擊殺時觸發插槽中召喚物法術\n此物品觸發召喚物法術有 0.25 秒冷卻時間,有 5 使用次數","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2816098341"]}}} +{"ref":"Triggered Spells deal #% increased Spell Damage","better":1,"matchers":[{"string":"被觸發的法術增加 #% 法術傷害"},{"string":"被觸發的法術減少 #% 法術傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3067892458"]}}} +{"ref":"Triggers Level # Abberath's Fury when Equipped","better":1,"matchers":[{"string":"裝備時施放等級 # 的艾貝拉斯之怒"}],"trade":{"ids":{"explicit":["explicit.stat_3250579936"]}}} +{"ref":"Triggers Level # Blinding Aura when Equipped","better":1,"matchers":[{"string":"裝備時觸發等級 # 的致盲光環"}],"trade":{"ids":{"explicit":["explicit.stat_125312907"]}}} +{"ref":"Triggers Level # Cold Aegis when Equipped","better":1,"matchers":[{"string":"當裝備時觸發等級 # 的冰冷聖盾"}],"trade":{"ids":{"explicit":["explicit.stat_3918947537"]}}} +{"ref":"Triggers Level # Corpse Walk when Equipped","better":1,"matchers":[{"string":"裝備時觸發等級 # 的行屍走肉"}],"trade":{"ids":{"explicit":["explicit.stat_779168081"]}}} +{"ref":"Triggers Level # Death Walk when Equipped","better":1,"matchers":[{"string":"裝備時觸發等級 # 的屍行"}],"trade":{"ids":{"explicit":["explicit.stat_651875072"]}}} +{"ref":"Triggers Level # Elemental Aegis when Equipped","better":1,"matchers":[{"string":"當裝備時觸發等級 # 的元素聖盾"}],"trade":{"ids":{"explicit":["explicit.stat_2602585351"]}}} +{"ref":"Triggers Level # Fire Aegis when Equipped","better":1,"matchers":[{"string":"當裝備時觸發等級 # 的火焰聖盾"}],"trade":{"ids":{"explicit":["explicit.stat_1128763150"]}}} +{"ref":"Triggers Level # Lightning Aegis when Equipped","better":1,"matchers":[{"string":"當裝備時觸發等級 # 的閃電聖盾"}],"trade":{"ids":{"explicit":["explicit.stat_850729424"]}}} +{"ref":"Triggers Level # Manifest Dancing Dervishes on Rampage","better":1,"matchers":[{"string":"暴怒時觸發等級 # 的幻化狂舞德爾維希"}],"trade":{"ids":{"explicit":["explicit.stat_4007938693"]}}} +{"ref":"Triggers Level # Physical Aegis when Equipped","better":1,"matchers":[{"string":"裝備時觸發等級 # 的物理聖盾"}],"trade":{"ids":{"explicit":["explicit.stat_1892084828"]}}} +{"ref":"Triggers Level # Reflection when Equipped","better":1,"matchers":[{"string":"裝備時觸發等級 # 的反射"}],"trade":{"ids":{"explicit":["explicit.stat_3451043685"]}}} +{"ref":"Triggers Level # Summon Arbalists when Equipped","better":1,"matchers":[{"string":"裝備時觸發等級 # 的召喚弩兵"}],"trade":{"ids":{"explicit":["explicit.stat_3664803307"]}}} +{"ref":"Triggers Level 20 Spectral Spirits when Equipped\n+# to maximum number of Spectral Spirits","better":1,"matchers":[{"string":"當裝備時,觸發等級 20 的幽魂之靈\n# 幽魂之靈最大數量"}],"trade":{"ids":{"explicit":["explicit.stat_470688636"],"fractured":["fractured.stat_470688636"]}}} +{"ref":"Unaffected by Bleeding while affected by Malevolence","better":1,"matchers":[{"string":"被惡意影響時,不被流血影響"}],"trade":{"ids":{"explicit":["explicit.stat_4104891138"]}}} +{"ref":"Unaffected by Blind","better":1,"matchers":[{"string":"不被致盲影響"}],"trade":{"ids":{"explicit":["explicit.stat_4193902224"]}}} +{"ref":"Unaffected by Burning Ground","better":1,"matchers":[{"string":"不被燃燒地面影響"}],"trade":{"ids":{"explicit":["explicit.stat_1643688236"],"implicit":["implicit.stat_1643688236"],"fractured":["fractured.stat_1643688236"]}}} +{"ref":"Unaffected by Burning Ground while affected by Purity of Fire","better":1,"matchers":[{"string":"被火焰淨化影響時,不被燃燒地面影響"}],"trade":{"ids":{"explicit":["explicit.stat_3308185931"]}}} +{"ref":"Unaffected by Chill","better":1,"matchers":[{"string":"不被冰緩影響"}],"trade":{"ids":{"explicit":["explicit.stat_937372143"]}}} +{"ref":"Unaffected by Chill while Leeching Mana","better":1,"matchers":[{"string":"偷取魔力時,不被冰緩影響"}],"trade":{"ids":{"explicit":["explicit.stat_4014328139"]}}} +{"ref":"Unaffected by Chilled Ground","better":1,"matchers":[{"string":"不被冰緩地面影響"}],"trade":{"ids":{"explicit":["explicit.stat_3653191834"],"implicit":["implicit.stat_3653191834"],"fractured":["fractured.stat_3653191834"]}}} +{"ref":"Unaffected by Chilled Ground while affected by Purity of Ice","better":1,"matchers":[{"string":"被冰霜淨化影響時,不被冰緩地面影響"}],"trade":{"ids":{"explicit":["explicit.stat_2647344903"]}}} +{"ref":"Unaffected by Conductivity while affected by Purity of Lightning","better":1,"matchers":[{"string":"被閃電淨化影響時,不被導電影響"}],"trade":{"ids":{"explicit":["explicit.stat_1567542124"]}}} +{"ref":"Unaffected by Curses","better":1,"matchers":[{"string":"不被詛咒影響"}],"trade":{"ids":{"explicit":["explicit.stat_3809896400"]}}} +{"ref":"Unaffected by Curses while affected by Zealotry","better":1,"matchers":[{"string":"被狂熱影響時,不被到詛咒影響"}],"trade":{"ids":{"explicit":["explicit.stat_3403419549"]}}} +{"ref":"Unaffected by Damaging Ailments","better":1,"matchers":[{"string":"不被傷害型異常狀態影響"}],"trade":{"ids":{"explicit":["explicit.stat_1575046591"]}}} +{"ref":"Unaffected by Desecrated Ground","better":1,"matchers":[{"string":"不被腐化地面影響"}],"trade":{"ids":{"explicit":["explicit.stat_4004298002"],"fractured":["fractured.stat_4004298002"]}}} +{"ref":"Unaffected by Elemental Weakness while affected by Purity of Elements","better":1,"matchers":[{"string":"被元素淨化影響時,不被元素要害影響"}],"trade":{"ids":{"explicit":["explicit.stat_3223142064"]}}} +{"ref":"Unaffected by Enfeeble while affected by Grace","better":1,"matchers":[{"string":"被優雅影響時,不被衰弱影響"}],"trade":{"ids":{"explicit":["explicit.stat_2365917222"]}}} +{"ref":"Unaffected by Flammability while affected by Purity of Fire","better":1,"matchers":[{"string":"被火焰淨化影響時,不被易燃影響"}],"trade":{"ids":{"explicit":["explicit.stat_1173690938"]}}} +{"ref":"Unaffected by Frostbite while affected by Purity of Ice","better":1,"matchers":[{"string":"被冰霜淨化影響時,不被凍傷影響"}],"trade":{"ids":{"explicit":["explicit.stat_4012281889"]}}} +{"ref":"Unaffected by Ignite","better":1,"matchers":[{"string":"不被點燃影響"}],"trade":{"ids":{"explicit":["explicit.stat_2635869389"]}}} +{"ref":"Unaffected by Ignite or Shock if Maximum Life and Maximum Mana are within 500","better":1,"matchers":[{"string":"若最大生命和最大魔力在 500 內,不被點燃或感電影響"}],"trade":{"ids":{"explicit":["explicit.stat_2716882575"]}}} +{"ref":"Unaffected by Poison","better":1,"matchers":[{"string":"不被中毒影響"}],"trade":{"ids":{"explicit":["explicit.stat_1953432004"]}}} +{"ref":"Unaffected by Poison while affected by Malevolence","better":1,"matchers":[{"string":"被惡意影響時,不被到中毒影響"}],"trade":{"ids":{"explicit":["explicit.stat_34059570"]}}} +{"ref":"Unaffected by Shock","better":1,"matchers":[{"string":"不被感電影響"}],"trade":{"ids":{"explicit":["explicit.stat_1473289174"]}}} +{"ref":"Unaffected by Shock while Leeching Energy Shield","better":1,"matchers":[{"string":"偷取能量護盾時,不被感電影響"}],"trade":{"ids":{"explicit":["explicit.stat_4102393882"]}}} +{"ref":"Unaffected by Shocked Ground","better":1,"matchers":[{"string":"不被感電地面影響"}],"trade":{"ids":{"explicit":["explicit.stat_2234049899"],"implicit":["implicit.stat_2234049899"],"fractured":["fractured.stat_2234049899"]}}} +{"ref":"Unaffected by Shocked Ground while affected by Purity of Lightning","better":1,"matchers":[{"string":"被閃電淨化影響時,不被感電地面影響"}],"trade":{"ids":{"explicit":["explicit.stat_2567659895"]}}} +{"ref":"Unaffected by Temporal Chains","better":1,"matchers":[{"string":"不被時空鎖鏈影響"}],"trade":{"ids":{"explicit":["explicit.stat_4212372504"]}}} +{"ref":"Unaffected by Temporal Chains while affected by Haste","better":1,"matchers":[{"string":"被迅捷影響時,不被時空鎖鏈影響"}],"trade":{"ids":{"explicit":["explicit.stat_2806391472"]}}} +{"ref":"Unaffected by Vulnerability while affected by Determination","better":1,"matchers":[{"string":"被堅定影響時,不被脆弱影響"}],"trade":{"ids":{"explicit":["explicit.stat_3207781478"]}}} +{"ref":"Unearth Spawns corpses with +# Level","better":1,"matchers":[{"string":"屍術矢產生 # 等級的屍體"}],"trade":{"ids":{"enchant":["enchant.stat_586167247"]}}} +{"ref":"Unholy Might","better":1,"matchers":[{"string":"不潔之力"}],"trade":{"ids":{"explicit":["explicit.stat_1646760085"]}}} +{"ref":"Unholy Might during Effect","better":1,"matchers":[{"string":"效果持續時間獲得不潔之力"}],"trade":{"ids":{"explicit":["explicit.stat_207573834"]}}} +{"ref":"Unique Boss deals #% increased Damage","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"matchers":[{"string":"傳奇頭目增加 #% 傷害"}],"trade":{"ids":{"explicit":["explicit.stat_124877078"],"fractured":["fractured.stat_124877078"],"enchant":["enchant.stat_124877078"]}}} +{"ref":"Unique Boss drops an additional Harbinger Scroll","better":1,"matchers":[{"string":"傳奇頭目掉落 1 個額外神諭卷軸"}],"trade":{"ids":{"explicit":["explicit.stat_1432093361"]}}} +{"ref":"Unique Boss has #% increased Area of Effect","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"matchers":[{"string":"傳奇頭目增加 #% 範圍技能"},{"string":"傳奇頭目減少 #% 範圍技能","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3040667106"],"fractured":["fractured.stat_3040667106"]}}} +{"ref":"Unique Boss has #% increased Attack and Cast Speed","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"matchers":[{"string":"傳奇頭目增加 #% 攻擊速度及施放速度"}],"trade":{"ids":{"explicit":["explicit.stat_2109106920"],"fractured":["fractured.stat_2109106920"]}}} +{"ref":"Unique Boss has #% increased Life","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"matchers":[{"string":"傳奇頭目增加 #% 生命"},{"string":"傳奇頭目減少 #% 生命","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1959158336"],"fractured":["fractured.stat_1959158336"],"enchant":["enchant.stat_1959158336"]}}} +{"ref":"Unique Bosses are Possessed","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"matchers":[{"string":"傳奇頭目被附身"}],"trade":{"ids":{"explicit":["explicit.stat_2588474575"],"fractured":["fractured.stat_2588474575"]}}} +{"ref":"Unique Monsters drop Corrupted Items","better":1,"fromAreaMods":true,"matchers":[{"string":"傳奇頭目掉落腐化物品"}],"trade":{"ids":{"implicit":["implicit.stat_804187877"],"enchant":["enchant.stat_804187877"]}}} +{"ref":"Unique Monsters have a random Shrine Buff","better":1,"fromUberAreaMods":true,"matchers":[{"string":"傳奇怪物有 # 個隨機神殿效果"},{"string":"傳奇怪物有 1 個隨機神殿效果","value":1}],"trade":{"ids":{"explicit":["explicit.stat_872972810"],"fractured":["fractured.stat_872972810"]}}} +{"ref":"Unwavering Stance","better":1,"matchers":[{"string":"烈士意志"}],"trade":{"ids":{"explicit":["explicit.stat_1683578560"],"implicit":["implicit.stat_1683578560"],"scourge":["scourge.stat_1683578560"]}}} +{"ref":"Used when an adjacent Flask is used","better":1,"matchers":[{"string":"當相鄰的藥劑被使用時使用"}],"trade":{"ids":{"enchant":["enchant.stat_2219523244"]}}} +{"ref":"Used when Charges reach full","better":1,"matchers":[{"string":"當充能滿時使用"}],"trade":{"ids":{"enchant":["enchant.stat_3287581721"]}}} +{"ref":"Used when you become Chilled","better":1,"matchers":[{"string":"當你被冰緩時使用"}],"trade":{"ids":{"enchant":["enchant.stat_3944779636"]}}} +{"ref":"Used when you become Frozen","better":1,"matchers":[{"string":"當你被冰凍時使用"}],"trade":{"ids":{"enchant":["enchant.stat_1691862754"]}}} +{"ref":"Used when you become Ignited","better":1,"matchers":[{"string":"當你被點燃時使用"}],"trade":{"ids":{"enchant":["enchant.stat_585126960"]}}} +{"ref":"Used when you become Poisoned","better":1,"matchers":[{"string":"當你被中毒時使用"}],"trade":{"ids":{"enchant":["enchant.stat_1412682799"]}}} +{"ref":"Used when you become Shocked","better":1,"matchers":[{"string":"當你被感電時使用"}],"trade":{"ids":{"enchant":["enchant.stat_3699444296"]}}} +{"ref":"Used when you Block","better":1,"matchers":[{"string":"當你格擋時使用"}],"trade":{"ids":{"enchant":["enchant.stat_3831658908"]}}} +{"ref":"Used when you Hit a Rare or Unique Enemy, if not already in effect","better":1,"matchers":[{"string":"若沒有效果時,當你擊中稀有或傳奇敵人時使用"}],"trade":{"ids":{"enchant":["enchant.stat_2247138020"]}}} +{"ref":"Used when you start Bleeding","better":1,"matchers":[{"string":"當你開始流血時使用"}],"trade":{"ids":{"enchant":["enchant.stat_3676540188"]}}} +{"ref":"Used when you take a Savage Hit","better":1,"matchers":[{"string":"當你承受殘暴之擊時使用"}],"trade":{"ids":{"enchant":["enchant.stat_1914436944"]}}} +{"ref":"Used when you Use a Guard Skill","better":1,"matchers":[{"string":"當你使用守衛技能時使用"}],"trade":{"ids":{"enchant":["enchant.stat_3884539386"]}}} +{"ref":"Used when you use a Life Flask","better":1,"matchers":[{"string":"當你使用生命藥劑時使用"}],"trade":{"ids":{"enchant":["enchant.stat_359574900"]}}} +{"ref":"Used when you Use a Travel Skill","better":1,"matchers":[{"string":"當你使用快行技能時使用"}],"trade":{"ids":{"enchant":["enchant.stat_1260843520"]}}} +{"ref":"Uses both hand slots","better":1,"matchers":[{"string":"占用所有武器欄位"}],"trade":{"ids":{"explicit":["explicit.stat_2846730569"]}}} +{"ref":"Vaal Attack Skills you Use yourself Cost Rage instead of requiring Souls","better":1,"matchers":[{"string":"你使用的瓦爾技能消耗盛怒而不是靈魂"}],"trade":{"ids":{"explicit":["explicit.stat_1103075489"]}}} +{"ref":"Vaal Pact","better":1,"matchers":[{"string":"瓦爾冥約"}],"trade":{"ids":{"explicit":["explicit.stat_2257118425"],"scourge":["scourge.stat_2257118425"]}}} +{"ref":"Vaal Skills deal #% more Damage during Effect","better":1,"matchers":[{"string":"瓦爾技能造成 #% 更多傷害持續效果"},{"string":"瓦爾技能造成 #% 更少傷害持續效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4147528862"]}}} +{"ref":"Vaal Skills have #% chance to regain consumed Souls when used","better":1,"matchers":[{"string":"使用瓦爾技能時有 #% 機率回收消耗的靈魂"}],"trade":{"ids":{"explicit":["explicit.stat_2833218772"]}}} +{"ref":"Vaal Skills used during effect do not apply Soul Gain Prevention","better":1,"matchers":[{"string":"瓦爾技能使用持續時間效果不會作用於停止獲得靈魂"}],"trade":{"ids":{"explicit":["explicit.stat_2344590267"]}}} +{"ref":"Vaal Skills used during effect have #% reduced Soul Gain Prevention Duration","better":-1,"matchers":[{"string":"Vaal Skills used during effect have #% increased Soul Gain Prevention Duration"},{"string":"Vaal Skills used during effect have #% reduced Soul Gain Prevention Duration","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_902947445"]},"inverted":true}} +{"ref":"Vagan's Veiled","better":0,"matchers":[{"string":"瓦甘的隱匿"}],"trade":{"ids":{"veiled":["veiled.mod_14269"]}}} +{"ref":"Veiled","better":0,"matchers":[{"string":"隱匿的"}],"trade":{"ids":{"veiled":["veiled.mod_65000"]}}} +{"ref":"Vengeance has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"復仇增加 #% 冷卻時間恢復速度"},{"string":"復仇增減少 #% 冷卻時間恢復速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1447427508"]}}} +{"ref":"Venom Gyre deals #% increased Damage","better":1,"matchers":[{"string":"猛毒迴旋增加 #% 傷害"},{"string":"猛毒迴旋減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1404787106"]}}} +{"ref":"Venom Gyre has a #% chance to inflict Withered for 2 seconds on Hit","better":1,"matchers":[{"string":"猛毒迴旋擊中時,有 #% 機率造成凋零 2 秒"},{"string":"猛毒迴旋擊中時,造成凋零 2 秒","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2157671820"]}}} +{"ref":"Venom Gyre has a #% chance to keep each caught Projectile fired with Whirling Blades","better":1,"matchers":[{"string":"猛毒迴旋有 #% 機率保留迴旋之刃發射的每個已接住投射物"}],"trade":{"ids":{"enchant":["enchant.stat_2563177940"]}}} +{"ref":"Versatile Combatant","better":1,"matchers":[{"string":"多重戰"}],"trade":{"ids":{"explicit":["explicit.stat_593845252"],"scourge":["scourge.stat_593845252"]}}} +{"ref":"Vigilant Strike has #% increased Fortification Duration","better":1,"matchers":[{"string":"戒備打擊增加 #% 護體持續時間"},{"string":"戒備打擊減少 #% 護體持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2275055843"]}}} +{"ref":"Vitality has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"活力增加 #% 魔力保留效用"},{"string":"活力減少 #% 魔力保留效用","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1233806203","implicit.stat_3972739758"],"enchant":["enchant.stat_1233806203","enchant.stat_3972739758"]}}} +{"ref":"Vitality has no Reservation","better":1,"matchers":[{"string":"活力無保留"}],"trade":{"ids":{"explicit":["explicit.stat_438083873"]}}} +{"ref":"Void Sphere has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"虛無玉增加 #% 冷卻時間恢復速度"}],"trade":{"ids":{"enchant":["enchant.stat_2690342765"]}}} +{"ref":"Void Sphere has #% increased Pulse Frequency","better":1,"matchers":[{"string":"虛無玉增加 #% 脈衝頻率"},{"string":"虛無玉減少 #% 脈衝頻率","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2523663201"]}}} +{"ref":"Volatile Dead Consumes up to # additional corpse","better":1,"matchers":[{"string":"致命之息最多消耗 # 個額外屍體"}],"trade":{"ids":{"enchant":["enchant.stat_3034788766"]}}} +{"ref":"Volcanic Fissure deals #% increased Damage","better":1,"matchers":[{"string":"炎火脈動增加 #% 傷害"},{"string":"炎火脈動減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1124690737"]}}} +{"ref":"Volcanic Fissure fires an additional Projectile","better":1,"matchers":[{"string":"炎火脈動發射 # 個額外投射物"},{"string":"炎火脈動發射 1 個額外投射物","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1460853241"]}}} +{"ref":"Volcanic Fissure travels #% faster","better":1,"matchers":[{"string":"炎火脈動蔓延加速 #%"},{"string":"炎火脈動蔓延減緩 #%","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_373677479"]}}} +{"ref":"Voltaxic Burst deals #% increased Damage per 0.1 seconds of Duration","better":1,"matchers":[{"string":"每 0.1 秒持續時間,魔痕爆發增加 #% 傷害"},{"string":"每 0.1 秒持續時間,魔痕爆發減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3472104870"]}}} +{"ref":"Vorici's Veiled","better":0,"matchers":[{"string":"瓦里西的隱匿"}],"trade":{"ids":{"veiled":["veiled.mod_47933"]}}} +{"ref":"Vortex has #% increased Area of Effect when Cast on Frostbolt","better":1,"matchers":[{"string":"當漩渦被寒冰彈施放時增加 #% 範圍效果"},{"string":"當漩渦被寒冰彈施放時減少 #% 範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2295263113"]}}} +{"ref":"Vortex has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"漩渦增加 #% 冷卻時間恢復速度"},{"string":"漩渦減少 #% 冷卻時間恢復速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2461424099"]}}} +{"ref":"Vulnerability has no Reservation if Cast as an Aura","better":1,"matchers":[{"string":"若脆弱以光環施放沒有保留"}],"trade":{"ids":{"explicit":["explicit.stat_531868030"]}}} +{"ref":"War Banner has #% increased Aura Effect","better":1,"matchers":[{"string":"戰爭之旗增加 #% 光環效果"},{"string":"戰爭之旗減少 #% 光環效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2592211591"]}}} +{"ref":"Warcries cannot Exert Travel Skills","better":1,"matchers":[{"string":"戰吼不能竭盡快行技能"}],"trade":{"ids":{"explicit":["explicit.stat_2174134106"],"fractured":["fractured.stat_2174134106"],"crafted":["crafted.stat_2174134106"]}}} +{"ref":"Warcries Exert # additional Attack","better":1,"matchers":[{"string":"戰吼竭盡 # 次額外攻擊"}],"trade":{"ids":{"implicit":["implicit.stat_1434716233"]}}} +{"ref":"Warcries grant # Rage per 5 Power if you have less than 25 Rage","better":1,"matchers":[{"string":"若你盛怒低於 25 層,每 5 強度戰吼獲得 # 層盛怒"}],"trade":{"ids":{"explicit":["explicit.stat_3608339129"]}}} +{"ref":"Warcries grant Arcane Surge to you and Allies, with #% increased effect per 5 power, up to 50%","better":1,"matchers":[{"string":"戰吼給予你和友方秘能波動,每 5 強度增加 #% 秘能波動效果,最多 50%"}],"trade":{"ids":{"explicit":["explicit.stat_3399924348"]}}} +{"ref":"Warcries Knock Back and Interrupt Enemies in a smaller Area","better":1,"matchers":[{"string":"戰吼小範圍擊退和干擾敵人"}],"trade":{"ids":{"explicit":["explicit.stat_519622288"]}}} +{"ref":"Warcry Skills have #% increased Area of Effect","better":1,"matchers":[{"string":"戰吼技能增加 #% 範圍效果"},{"string":"戰吼技能減少 #% 範圍效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2567751411"],"fractured":["fractured.stat_2567751411"]}}} +{"ref":"Warcry Skills have +# seconds to Cooldown","better":1,"matchers":[{"string":"戰吼技能 # 秒冷卻時間"}],"trade":{"ids":{"implicit":["implicit.stat_1504905117"]}}} +{"ref":"Warcry Skills' Cooldown Time is 4 seconds","better":1,"matchers":[{"string":"戰吼技能冷卻時間為 4 秒"}],"trade":{"ids":{"explicit":["explicit.stat_684268017"]}}} +{"ref":"Ward does not Break during Effect","better":1,"matchers":[{"string":"效果持續時間,保護不會破損"}],"trade":{"ids":{"explicit":["explicit.stat_80764074"]}}} +{"ref":"Wave of Conviction deals #% increased Damage","better":1,"matchers":[{"string":"信念浪湧增加 #% 傷害"},{"string":"信念浪湧減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_309198891"]}}} +{"ref":"Wave of Conviction has #% increased Duration","better":1,"matchers":[{"string":"信念浪湧增加 #% 持續時間"},{"string":"信念浪湧減少 #% 持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2412561418"]}}} +{"ref":"Wave of Conviction's Exposure applies an extra +#% to Elemental Resistance","better":1,"matchers":[{"string":"信念浪湧的爆炸套用額外 #% 元素抗性"}],"trade":{"ids":{"enchant":["enchant.stat_3139672534"]}}} +{"ref":"Weapons you Animate create an additional copy","better":1,"matchers":[{"string":"你幻化的武器將額外複製出 # 把"},{"string":"你幻化的武器將額外複製出 1 把","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1266553505"]}}} +{"ref":"When a fifth Impale is inflicted on a Player, Impales are removed to Reflect their Physical Damage multiplied by their remaining Hits to that Player and their Allies within 1.8 metres","better":1,"fromUberAreaMods":true,"matchers":[{"string":"當玩家被施加第 5 層穿刺時,移除穿刺並將物理傷害乘以其剩餘層數的傷害,反射給該玩家及其 1.8 公尺內的友方"}],"trade":{"ids":{"explicit":["explicit.stat_1353527704"],"fractured":["fractured.stat_1353527704"]}}} +{"ref":"When an Enemy Hit deals Elemental Damage to you, their Resistance to those Elements becomes zero for 4 seconds","better":1,"matchers":[{"string":"當敵人擊中對你造成元素傷害,它們該元素的抗性變成 0,持續 4 秒"}],"trade":{"ids":{"explicit":["explicit.stat_3714446071"]}}} +{"ref":"When Hit during effect, #% of Life loss from Damage taken occurs over 4 seconds instead","better":1,"matchers":[{"string":"當效果持續時間被擊中時,承受傷害失去的 #% 生命改為 4 秒內失去"}],"trade":{"ids":{"explicit":["explicit.stat_41860024"]}}} +{"ref":"When Hit, gain a random Movement Speed modifier from #% reduced to #% increased, until Hit again","better":-1,"matchers":[{"string":"被擊中時,獲得隨機移動速度詞綴,從減少 #% 至增加 #%,直到再次被擊中","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3281809492"]},"inverted":true}} +{"ref":"When used in the Synthesiser, the new item will have an additional Herald Modifier","better":1,"matchers":[{"string":"當在追憶喚器使用時,新物品會有 1 個額外捷光環詞綴"}],"trade":{"ids":{"explicit":["explicit.stat_3461563650"]}}} +{"ref":"When you Attack, take #% of Life as Physical Damage for\neach Warcry Exerting the Attack","better":1,"matchers":[{"string":"當你攻擊時,每個戰吼竭盡的攻擊\n使你承受 #% 生命的物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1615324731"]}}} +{"ref":"When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage\nequal to #% of Sacrificed Mana for 4 seconds","better":1,"matchers":[{"string":"當你施放法術,獻祭所有魔力以獲得等同 #% 獻祭魔力的\n附加最大閃電傷害,持續 4 秒"}],"trade":{"ids":{"explicit":["explicit.stat_820827484"]}}} +{"ref":"When you Kill a Magic Monster gain its Modifiers for 60 seconds","better":1,"matchers":[{"string":"當你擊殺魔法怪物時,有 #% 機率獲得它的詞綴 60 秒"},{"string":"當你擊殺魔法怪物時,獲得它的詞綴 60 秒","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3976991498"]}}} +{"ref":"When you Kill a Rare Monster, #% chance to gain one of its Modifiers for 10 seconds","better":1,"matchers":[{"string":"當你擊殺稀有怪物,有 #% 機率獲得它其中 1 個詞綴,持續 10 秒"}],"trade":{"ids":{"explicit":["explicit.stat_2736829661"]}}} +{"ref":"When you Kill a Rare monster, you gain its Modifiers for 60 seconds","better":1,"matchers":[{"string":"當你擊殺稀有怪物時,獲得它的詞綴 60 秒"}],"trade":{"ids":{"explicit":["explicit.stat_2913235441"]}}} +{"ref":"When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy","better":1,"matchers":[{"string":"當你擊殺一名感電敵人,對附近敵人造成相同的感電效果"}],"trade":{"ids":{"explicit":["explicit.stat_3462132936"]}}} +{"ref":"When you Kill an Enemy Cursed with a Non-Aura Hex, become Immune to\nCurses for remaining Hex Duration","better":1,"matchers":[{"string":"當你擊殺被非光環咒術詛咒的敵人時,咒術剩下的持續時間免疫詛咒"}],"trade":{"ids":{"explicit":["explicit.stat_1406092431"]}}} +{"ref":"When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy","better":1,"matchers":[{"string":"當你擊殺一名點燃敵人,對附近敵人造成相同的點燃效果"}],"trade":{"ids":{"explicit":["explicit.stat_2638352064"]}}} +{"ref":"When you leave your Banner's Area, recover #% of the Valour consumed for that Banner","better":1,"matchers":[{"string":"當你離開你的鬥旗光環時,恢復該鬥旗消耗的 #% 勇氣"}],"trade":{"ids":{"explicit":["explicit.stat_3906150898"]}}} +{"ref":"When you lose Temporal Chains you gain maximum Rage","better":1,"matchers":[{"string":"當你失去時空鎖鏈時獲得最大層盛怒"}],"trade":{"ids":{"explicit":["explicit.stat_2174796794"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Frozen","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 機率避免被冰凍"}],"trade":{"ids":{"implicit":["implicit.stat_2661498709"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Ignited","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 機率避免被點燃"}],"trade":{"ids":{"implicit":["implicit.stat_911929910"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Poisoned","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 機率避免被中毒"},{"string":"在巔峰頭目面前時,不會中毒","value":100},{"string":"在巔峰頭目面前時,不能被中毒","value":100}],"trade":{"ids":{"implicit":["implicit.stat_2714750784"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Shocked","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 機率避免被感電"}],"trade":{"ids":{"implicit":["implicit.stat_3823702653"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Stunned","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 機率避免被暈眩"},{"string":"在巔峰頭目面前時,不會被暈眩","value":100}],"trade":{"ids":{"implicit":["implicit.stat_990874979"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid Bleeding","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 機率避免流血"},{"string":"在巔峰頭目面前時,流血不會對你造成影響","value":100},{"string":"在巔峰頭目面前時,流血對你沒有影響","value":100}],"trade":{"ids":{"implicit":["implicit.stat_2610114836"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid Elemental Ailments","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 機率避免元素異常狀態"}],"trade":{"ids":{"implicit":["implicit.stat_4241033239"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% Chance to Block Attack Damage","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 攻擊傷害格擋率"}],"trade":{"ids":{"implicit":["implicit.stat_3326567914"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% Chance to Block Spell Damage","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 法術傷害格擋率"}],"trade":{"ids":{"implicit":["implicit.stat_2996280658"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Extinguish Enemies on Hit","better":1,"matchers":[{"string":"在巔峰頭目面前時,擊中有 #% 機率熄滅敵人"}],"trade":{"ids":{"implicit":["implicit.stat_3854721949"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Freeze","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 機率使用冰冷傷害擊中敵人造成冰凍效果"},{"string":"在巔峰頭目面前時,所有冰冷傷害擊中敵人造成冰凍效果","value":100},{"string":"在巔峰頭目面前時,擊中時必定冰凍敵人","value":100}],"trade":{"ids":{"implicit":["implicit.stat_4146719724"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Hinder Enemies on Hit with Spells","better":1,"matchers":[{"string":"在巔峰頭目面前時,法術擊中時有 #% 機率阻礙敵人"},{"string":"在巔峰頭目面前時,法術擊中時阻礙敵人","value":100}],"trade":{"ids":{"implicit":["implicit.stat_604515066"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Ignite","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 機率使用火焰傷害擊中敵人造成點燃效果"},{"string":"在巔峰頭目面前時,所有火焰傷害擊中敵人造成點燃效果","value":100}],"trade":{"ids":{"implicit":["implicit.stat_1030674088"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Impale Enemies on Hit with Attacks","better":1,"matchers":[{"string":"在巔峰頭目面前時,攻擊擊中時有 #% 機率穿刺敵人"},{"string":"在巔峰頭目面前時,攻擊擊中時穿刺敵人","value":100}],"trade":{"ids":{"implicit":["implicit.stat_2838459808"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Intimidate Enemies for 4 seconds on Hit","better":1,"matchers":[{"string":"在巔峰頭目面前時,擊中時有 #% 機率威嚇敵人 4 秒"},{"string":"在巔峰頭目面前時,擊中時威嚇敵人 4 秒","value":100}],"trade":{"ids":{"implicit":["implicit.stat_3004272949"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Poison on Hit","better":1,"matchers":[{"string":"在巔峰頭目面前時,擊中時 #% 機率使目標中毒"},{"string":"在巔峰頭目面前時,擊中時有 #% 機率使敵人中毒"},{"string":"在巔峰頭目面前時,擊中時使敵人中毒","value":100},{"string":"在巔峰頭目面前時,擊中時使目標中毒","value":100}],"trade":{"ids":{"implicit":["implicit.stat_532792006"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Shock","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 機率使用閃電傷害擊中敵人造成感電效果"},{"string":"在巔峰頭目面前時,所有閃電傷害擊中敵人造成感電效果","value":100}],"trade":{"ids":{"implicit":["implicit.stat_2459490852"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Unnerve Enemies for 4 seconds on Hit","better":1,"matchers":[{"string":"在巔峰頭目面前時,擊中時有 #% 機率使敵人膽怯 4 秒"},{"string":"在巔峰頭目面前時,擊中時使敵人膽怯 4 秒","value":100}],"trade":{"ids":{"implicit":["implicit.stat_4018420421"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Action Speed","better":1,"matchers":[{"string":"在巔峰頭目面前時,減少 #% 行動速度"},{"string":"在巔峰頭目面前時,增加 #% 行動速度","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2251857767"]},"inverted":true}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Arctic Armour Buff Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 極地裝甲增益效果"},{"string":"在巔峰頭目面前時,減少 #% 極地裝甲增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3744585764"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Area of Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 範圍效果"},{"string":"在巔峰頭目面前時,減少 #% 範圍效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_568930056"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Armour","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 護甲"},{"string":"在巔峰頭目面前時,減少 #% 護甲","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1371764251"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Armour from Equipped Helmet and Gloves","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 裝備的頭盔和手套的護甲"},{"string":"在巔峰頭目面前時,減少 #% 裝備的頭盔和手套的護甲","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3330140563"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Attack Damage","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 攻擊傷害"},{"string":"在巔峰頭目面前時,減少 #% 攻擊傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3133935886"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Attack Speed","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 攻擊速度"},{"string":"在巔峰頭目面前時,減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2446980928"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Battlemage's Cry Buff Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 戰法戰吼增益效果"},{"string":"在巔峰頭目面前時,減少 #% 戰法戰吼增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1455812442"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Blind Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 致盲效果"},{"string":"在巔峰頭目面前時,減少 #% 致盲效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4122616021"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Brand Attachment range","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 烙印附著距離"},{"string":"在巔峰頭目面前時,減少 #% 烙印附著距離","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2391109128"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Cast Speed","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 施放速度"},{"string":"在巔峰頭目面前時,減少 #% 施放速度","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4098747485"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Chaos Damage","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 混沌傷害"},{"string":"在巔峰頭目面前時,減少 #% 混沌傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2070979181"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Cold Damage","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 冰冷傷害"},{"string":"在巔峰頭目面前時,減少 #% 冰冷傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1576689223"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Conductivity Curse Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 導電的詛咒效果"},{"string":"在巔峰頭目面前時,減少 #% 導電的詛咒效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2095999895"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 冷卻恢復速度"},{"string":"在巔峰頭目面前時,減少 #% 冷卻恢復速度","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_668321613"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Cooldown Recovery Rate of Travel Skills","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 快行技能冷卻時間恢復速度"},{"string":"在巔峰頭目面前時,減少 #% 快行技能冷卻時間恢復速度","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_850668052"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Critical Strike Chance for Attacks","better":1,"matchers":[{"string":"在巔峰頭目面前時,攻擊增加 #% 暴擊率"},{"string":"在巔峰頭目面前時,攻擊減少 #% 暴擊率","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1840069423"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per 100 Dexterity","better":1,"matchers":[{"string":"在巔峰頭目面前時,每 100 點敏捷增加 #% 傷害"},{"string":"在巔峰頭目面前時,每 100 點敏捷減少 #% 傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1870591253"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per 100 Intelligence","better":1,"matchers":[{"string":"在巔峰頭目面前時,每 100 點智慧增加 #% 傷害"},{"string":"在巔峰頭目面前時,每 100 點智慧減少 #% 傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2532279515"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per 100 Strength","better":1,"matchers":[{"string":"在巔峰頭目面前時,每 100 點力量增加 #% 傷害"},{"string":"在巔峰頭目面前時,每 100 點力量減少 #% 傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3183308031"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per Endurance Charge","better":1,"matchers":[{"string":"在巔峰頭目面前時,每個耐力球增加 #% 傷害"},{"string":"在巔峰頭目面前時,每個耐力球減少 #% 傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_740797388"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per Frenzy Charge","better":1,"matchers":[{"string":"在巔峰頭目面前時,每顆狂怒球增加 #% 傷害"},{"string":"在巔峰頭目面前時,每顆狂怒球減少 #% 傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1855179125"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per Power Charge","better":1,"matchers":[{"string":"在巔峰頭目面前時,每顆暴擊球增加 #% 傷害"},{"string":"在巔峰頭目面前時,每顆暴擊球減少 #% 傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2809284200"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Despair Curse Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 絕望詛咒效果"},{"string":"在巔峰頭目面前時,減少 #% 絕望詛咒效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2775855429"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Duration of Ailments on Enemies","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 敵人身上異常狀態時間"},{"string":"在巔峰頭目面前時,減少 #% 敵人身上異常狀態時間","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_867827325"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Arcane Surge on you","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加你身上秘能波動 #% 效果"},{"string":"在巔峰頭目面前時,減少你身上秘能波動 #% 效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_664899091"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Buffs granted by your Golems","better":1,"matchers":[{"string":"在巔峰頭目面前時,魔像的增益效果增加 #%"},{"string":"在巔峰頭目面前時,魔像的增益效果減少 #%","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4128294206"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased effect of Non-Curse Auras from your Skills","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 你技能的非詛咒光環效果"},{"string":"在巔峰頭目面前時,減少 #% 你技能的非詛咒光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3788782813"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Non-Damaging Ailments","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 非傷害型異常狀態的效果"},{"string":"在巔峰頭目面前時,減少 #% 非傷害型異常狀態的效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1016769968"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Onslaught on you","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 你身上的猛攻效果"},{"string":"在巔峰頭目面前時,減少 #% 你身上的猛攻效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3209267362"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Carrion Golems","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 你食腐魔像提供的增益效果"},{"string":"在巔峰頭目面前時,減少 #% 你食腐魔像提供的增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1080711147"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Chaos Golems","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 混沌魔像賦予你的增益效果"},{"string":"在巔峰頭目面前時,減少 #% 混沌魔像賦予你的增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_510803146"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Flame Golems","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 烈焰魔像賦予你的增益效果"},{"string":"在巔峰頭目面前時,減少 #% 烈焰魔像賦予你的增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_783010498"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Ice Golems","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 寒冰魔像賦予你的增益效果"},{"string":"在巔峰頭目面前時,減少 #% 寒冰魔像賦予你的增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_168204696"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Lightning Golems","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 雷電魔像賦予你的增益效果"},{"string":"在巔峰頭目面前時,減少 #% 雷電魔像賦予你的增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2527345629"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Stone Golems","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 巨石魔像賦予你的增益效果"},{"string":"在巔峰頭目面前時,減少 #% 巨石魔像賦予你的增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_438468314"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of your Curses","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 你所施放詛咒的效果"},{"string":"在巔峰頭目面前時,減少 #% 你所施放詛咒的效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1350472585"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of your Marks","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 你印記的效果"},{"string":"在巔峰頭目面前時,減少 #% 你印記的效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1138753695"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Elemental Weakness Curse Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 元素要害的詛咒效果"},{"string":"在巔峰頭目面前時,減少 #% 元素要害的詛咒效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2029969019"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Elusive Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 靈巧效果"},{"string":"在巔峰頭目面前時,減少 #% 靈巧效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3173079195"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Energy Shield Recharge Rate","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 能量護盾充能率"},{"string":"在巔峰頭目面前時,減少 #% 能量護盾充能率","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_26006636"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Energy Shield Recovery rate","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 能量護盾恢復率"},{"string":"在巔峰頭目面前時,減少 #% 能量護盾恢復率","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_92591094"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Enfeeble Curse Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 衰弱的詛咒效果"},{"string":"在巔峰頭目面前時,減少 #% 衰弱的詛咒效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_38083709"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Evasion Rating","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 閃避值"},{"string":"在巔峰頭目面前時,減少 #% 閃避值","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2386062386"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Evasion Rating from Equipped Helmet and Boots","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 裝備的頭盔和鞋子的閃避值"},{"string":"在巔峰頭目面前時,減少 #% 裝備的頭盔和鞋子的閃避值","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2980409921"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Fire Damage","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 火焰傷害"},{"string":"在巔峰頭目面前時,減少 #% 火焰傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2782184338"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Flammability Curse Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 易燃的詛咒效果"},{"string":"在巔峰頭目面前時,減少 #% 易燃的詛咒效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_323292443"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Frostbite Curse Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 凍傷的詛咒效果"},{"string":"在巔峰頭目面前時,減少 #% 凍傷的詛咒效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2068042138"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Global Accuracy Rating","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 全域命中值"},{"string":"在巔峰頭目面前時,減少 #% 全域命中值","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2086047206"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Global Physical Damage","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 全域物理傷害"},{"string":"在巔峰頭目面前時,減少 #% 全域物理傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2545907302"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Life Recovery rate","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 生命恢復率"},{"string":"在巔峰頭目面前時,減少 #% 生命恢復率","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2761472996"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Life Regeneration rate","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 生命回復率"},{"string":"在巔峰頭目面前時,減少 #% 生命回復率","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_498250787"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Lightning Damage","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 閃電傷害"},{"string":"在巔峰頭目面前時,減少 #% 閃電傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1328859059"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Recovery rate","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 魔力恢復率"},{"string":"在巔峰頭目面前時,減少 #% 魔力恢復率","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4117139221"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Regeneration Rate","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 魔力回復率"},{"string":"在巔峰頭目面前時,減少 #% 魔力回復率","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4222133389"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Regeneration Rate per Power Charge","better":1,"matchers":[{"string":"在巔峰頭目面前時,每個暴擊球增加 #% 魔力回復率"},{"string":"在巔峰頭目面前時,每個暴擊球減少 #% 魔力回復率","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2425364074"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Reservation Efficiency of Skills","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 技能的魔力保留效用"},{"string":"在巔峰頭目面前時,減少 #% 技能的魔力保留效用","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4213793369"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased maximum Energy Shield","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 最大能量護盾"},{"string":"在巔峰頭目面前時,減少 #% 最大能量護盾","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1917716710"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Maximum Energy Shield from Equipped Gloves and Boots","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 裝備的手套和鞋子的最大能量護盾"},{"string":"在巔峰頭目面前時,減少 #% 裝備的手套和鞋子的最大能量護盾","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1388739249"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Mine Throwing Speed","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 地雷投擲速度"},{"string":"在巔峰頭目面前時,減少 #% 地雷投擲速度","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3827973062"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Movement Speed","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 移動速度"},{"string":"在巔峰頭目面前時,減少 #% 移動速度","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1702124724"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Punishment Curse Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 懲戒的詛咒效果"},{"string":"在巔峰頭目面前時,減少 #% 懲戒的詛咒效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_40584863"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Rallying Cry Buff Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 激勵戰吼增益效果"},{"string":"在巔峰頭目面前時,減少 #% 激勵戰吼增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2063107864"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Skill Effect Duration","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 技能效果持續時間"},{"string":"在巔峰頭目面前時,減少 #% 技能效果持續時間","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2828309116"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Spell Critical Strike Chance","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 法術暴擊率"},{"string":"在巔峰頭目面前時,減少 #% 法術暴擊率","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1412947753"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Spell Damage","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 法術傷害"},{"string":"在巔峰頭目面前時,減少 #% 法術傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_817495383"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Stun Threshold","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 暈眩門檻"},{"string":"在巔峰頭目面前時,減少 #% 暈眩門檻","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1513279759"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Temporal Chains Curse Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 時空鎖鏈的詛咒效果"},{"string":"在巔峰頭目面前時,減少 #% 時空鎖鏈的詛咒效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3695602451"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Totem Placement speed","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 圖騰放置速度"},{"string":"在巔峰頭目面前時,減少 #% 圖騰放置速度","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_100371300"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Trap Throwing Speed","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 陷阱投擲速度"},{"string":"在巔峰頭目面前時,減少 #% 陷阱投擲速度","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_547463927"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Vulnerability Curse Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 脆弱的詛咒效果"},{"string":"在巔峰頭目面前時,減少 #% 脆弱的詛咒效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1668340466"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Warcry Buff Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 戰吼的增益效果"},{"string":"在巔峰頭目面前時,減少 #% 戰吼的增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_794753348"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Warcry Speed","better":1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 戰吼施放速度"},{"string":"在巔峰頭目面前時,減少 #% 戰吼施放速度","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2117066923"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Chaos Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 混沌傷害偷取生命"}],"trade":{"ids":{"implicit":["implicit.stat_10259064"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Cold Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 冰冷傷害偷取生命"}],"trade":{"ids":{"implicit":["implicit.stat_339123312"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Cold Damage taken Recouped as Life","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 承受的冰冷傷害補償為生命"}],"trade":{"ids":{"implicit":["implicit.stat_2181576428"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Damage is taken from Mana before Life","better":1,"matchers":[{"string":"在巔峰頭目面前時,生命值所受的 #% 傷害由魔力扣除"}],"trade":{"ids":{"implicit":["implicit.stat_699673918"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Damage taken Recouped as Life","better":1,"matchers":[{"string":"在巔峰頭目面前時,承受 #% 傷害補償為生命"}],"trade":{"ids":{"implicit":["implicit.stat_2525287976"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Fire Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 火焰傷害偷取生命"}],"trade":{"ids":{"implicit":["implicit.stat_1954944666"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Fire Damage taken Recouped as Life","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 承受的火焰傷害補償為生命"}],"trade":{"ids":{"implicit":["implicit.stat_1613190388"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Lightning Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 閃電傷害偷取生命"}],"trade":{"ids":{"implicit":["implicit.stat_1896842319"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Lightning Damage taken Recouped as Life","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 承受的閃電傷害補償為生命"}],"trade":{"ids":{"implicit":["implicit.stat_3870554516"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Chaos Damage","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 物理傷害轉換為混沌傷害"}],"trade":{"ids":{"implicit":["implicit.stat_2204282073"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Cold Damage","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 物理傷害轉換為冰冷傷害"}],"trade":{"ids":{"implicit":["implicit.stat_3567752586"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Fire Damage","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 物理傷害轉換為火焰傷害"}],"trade":{"ids":{"implicit":["implicit.stat_3764409984"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Lightning Damage","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 物理傷害轉換為閃電傷害"}],"trade":{"ids":{"implicit":["implicit.stat_3718361973"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Chaos Damage","better":1,"matchers":[{"string":"在巔峰頭目面前時,承受 #% 的擊中物理傷害視為混沌傷害"}],"trade":{"ids":{"implicit":["implicit.stat_3904394775"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Cold Damage","better":1,"matchers":[{"string":"在巔峰頭目面前時,承受 #% 的擊中物理傷害視為冰冷傷害"}],"trade":{"ids":{"implicit":["implicit.stat_2466412811"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Fire Damage","better":1,"matchers":[{"string":"在巔峰頭目面前時,承受 #% 的擊中物理傷害視為火焰傷害"}],"trade":{"ids":{"implicit":["implicit.stat_3995172058"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Lightning Damage","better":1,"matchers":[{"string":"在巔峰頭目面前時,承受 #% 的擊中物理傷害視為閃電傷害"}],"trade":{"ids":{"implicit":["implicit.stat_3947691353"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 物理傷害偷取生命"}],"trade":{"ids":{"implicit":["implicit.stat_2500914030"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage taken Recouped as Life","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 承受的物理傷害補償為生命"}],"trade":{"ids":{"implicit":["implicit.stat_1300694383"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% reduced Effect of Shock on you","better":-1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 你身上的感電效果"},{"string":"在巔峰頭目面前時,減少 #% 你身上的感電效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_433740375"]},"inverted":true}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% reduced Enemy Stun Threshold","better":1,"matchers":[{"string":"在巔峰頭目面前時,減少 #% 敵人暈眩門檻"},{"string":"在巔峰頭目面前時,增加 #% 敵人暈眩門檻","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2169620689"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% reduced Freeze Duration on you","better":1,"matchers":[{"string":"在巔峰頭目面前時,減少 #% 你被冰凍的持續時間"},{"string":"在巔峰頭目面前時,增加 #% 你被冰凍的持續時間","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_928972227"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% reduced Ignite Duration on you","better":1,"matchers":[{"string":"在巔峰頭目面前時,減少 #% 你被點燃的持續時間"},{"string":"在巔峰頭目面前時,增加 #% 你被點燃的持續時間","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3042217102"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% reduced Mana Cost of Attacks","better":-1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 攻擊的魔力消耗"},{"string":"在巔峰頭目面前時,減少 #% 攻擊的魔力消","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3671920033"]},"inverted":true}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% reduced Reflected Damage taken","better":-1,"matchers":[{"string":"在巔峰頭目面前時,增加 #% 受到的反射傷害"},{"string":"在巔峰頭目面前時,減少 #% 受到的反射傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3178090061"]},"inverted":true}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +# to Accuracy Rating per Frenzy Charge","better":1,"matchers":[{"string":"在巔峰頭目面前時,每顆狂怒球 # 命中值"}],"trade":{"ids":{"implicit":["implicit.stat_490830332"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% chance to Suppress Spell Damage","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 壓抑法術傷害率"}],"trade":{"ids":{"implicit":["implicit.stat_2998245080"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to all Elemental Resistances","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 全部元素抗性"}],"trade":{"ids":{"implicit":["implicit.stat_2251516251"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to all maximum Resistances","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 最大全部抗性"}],"trade":{"ids":{"implicit":["implicit.stat_673499528"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to Chaos Damage over Time Multiplier","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 混沌持續傷害加成"}],"trade":{"ids":{"implicit":["implicit.stat_2163155983"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to Chaos Resistance","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 混沌抗性"}],"trade":{"ids":{"implicit":["implicit.stat_74135418"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to Cold Damage over Time Multiplier","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 冰冷持續傷害加成"}],"trade":{"ids":{"implicit":["implicit.stat_2619970520"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to Cold Resistance","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 冰冷抗性"}],"trade":{"ids":{"implicit":["implicit.stat_3864103630"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to Critical Strike Multiplier for Attack Damage","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 攻擊傷害的暴擊加成"}],"trade":{"ids":{"implicit":["implicit.stat_2825010848"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to Critical Strike Multiplier for Spell Damage","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 法術傷害的暴擊加成"}],"trade":{"ids":{"implicit":["implicit.stat_2955927568"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to Fire Damage over Time Multiplier","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 火焰持續傷害加成"}],"trade":{"ids":{"implicit":["implicit.stat_1870961528"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to Fire Resistance","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 火焰抗性"}],"trade":{"ids":{"implicit":["implicit.stat_1299790658"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to Lightning Resistance","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 閃電抗性"}],"trade":{"ids":{"implicit":["implicit.stat_3980173235"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to maximum Chaos Resistance","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 最大混沌抗性"}],"trade":{"ids":{"implicit":["implicit.stat_944522962"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to maximum Cold Resistance","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 最大冰冷抗性"}],"trade":{"ids":{"implicit":["implicit.stat_3415855998"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to maximum Fire Resistance","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 最大火焰抗性"}],"trade":{"ids":{"implicit":["implicit.stat_1133929401"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to maximum Lightning Resistance","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 最大閃電抗性"}],"trade":{"ids":{"implicit":["implicit.stat_4136085904"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to Physical Damage over Time Multiplier","better":1,"matchers":[{"string":"在巔峰頭目面前時,#% 物理持續傷害加成"}],"trade":{"ids":{"implicit":["implicit.stat_4084536353"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per # Dexterity","better":1,"matchers":[{"string":"在巔峰頭目面前時,每 # 點敏捷,承受 1% 更少傷害"}],"trade":{"ids":{"implicit":["implicit.stat_2216092051"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per # Intelligence","better":1,"matchers":[{"string":"在巔峰頭目面前時,每 # 點智慧,承受 1% 更少傷害"}],"trade":{"ids":{"implicit":["implicit.stat_3801851872"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per # Strength","better":1,"matchers":[{"string":"在巔峰頭目面前時,每 # 點力量,承受 1% 更少傷害"}],"trade":{"ids":{"implicit":["implicit.stat_125264229"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Adds # to # Chaos Damage to Attacks","better":1,"matchers":[{"string":"在巔峰頭目面前時,攻擊附加 # 至 # 混沌傷害"}],"trade":{"ids":{"implicit":["implicit.stat_3953801646"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Adds # to # Chaos Damage to Spells","better":1,"matchers":[{"string":"在巔峰頭目面前時,法術附加 # 至 # 混沌傷害"}],"trade":{"ids":{"implicit":["implicit.stat_3206883665"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Adds # to # Cold Damage to Attacks","better":1,"matchers":[{"string":"在巔峰頭目面前時,攻擊附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"implicit":["implicit.stat_1016130575"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Adds # to # Cold Damage to Spells","better":1,"matchers":[{"string":"在巔峰頭目面前時,法術附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"implicit":["implicit.stat_3349767748"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Adds # to # Fire Damage to Attacks","better":1,"matchers":[{"string":"在巔峰頭目面前時,攻擊附加 # 至 # 火焰傷害"}],"trade":{"ids":{"implicit":["implicit.stat_3972399670"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Adds # to # Fire Damage to Spells","better":1,"matchers":[{"string":"在巔峰頭目面前時,法術附加 # 至 # 火焰傷害"}],"trade":{"ids":{"implicit":["implicit.stat_3954869480"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Adds # to # Lightning Damage to Attacks","better":1,"matchers":[{"string":"在巔峰頭目面前時,攻擊附加 # 至 # 閃電傷害"}],"trade":{"ids":{"implicit":["implicit.stat_2925105924"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Adds # to # Lightning Damage to Spells","better":1,"matchers":[{"string":"在巔峰頭目面前時,法術附加 # 至 # 閃電傷害"}],"trade":{"ids":{"implicit":["implicit.stat_3874289"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Adds # to # Physical Damage to Attacks","better":1,"matchers":[{"string":"在巔峰頭目面前時,攻擊附加 # 至 # 物理傷害"}],"trade":{"ids":{"implicit":["implicit.stat_3477311591"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Adds # to # Physical Damage to Spells","better":1,"matchers":[{"string":"在巔峰頭目面前時,法術附加 # 至 # 物理傷害"}],"trade":{"ids":{"implicit":["implicit.stat_485268361"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Anger has #% increased Aura Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,憤怒增加 #% 光環效果"},{"string":"在巔峰頭目面前時,憤怒減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1167349834"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal #% increased Damage","better":1,"matchers":[{"string":"在巔峰頭目面前時,先祖戰吼竭盡的攻擊增加 #% 傷害"}],"trade":{"ids":{"implicit":["implicit.stat_1799586622"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal #% increased Damage","better":1,"matchers":[{"string":"在巔峰頭目面前時,被裂地戰吼竭盡的攻擊增加 #% 傷害"}],"trade":{"ids":{"implicit":["implicit.stat_1714653952"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Attacks have #% chance to cause Bleeding","better":1,"matchers":[{"string":"在巔峰頭目面前時,攻擊無法造成流血","value":-1},{"string":"在巔峰頭目面前時,攻擊有 #% 機率造成流血"},{"string":"在巔峰頭目面前時,攻擊造成流血","value":100}],"trade":{"ids":{"implicit":["implicit.stat_4014428128"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Attacks have #% chance to Maim on Hit","better":1,"matchers":[{"string":"在巔峰頭目面前時,攻擊擊中時有 #% 機率造成癱瘓"},{"string":"在巔峰頭目面前時,攻擊擊中時造成癱瘓","value":100}],"trade":{"ids":{"implicit":["implicit.stat_4065516297"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage #% faster","better":1,"matchers":[{"string":"在巔峰頭目面前時,你造成的流血傷害加速 #%"}],"trade":{"ids":{"implicit":["implicit.stat_4106235309"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Bone Offering has #% increased Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,骸骨奉獻增加 #% 效果"},{"string":"在巔峰頭目面前時,骸骨奉獻減少 #% 效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3774100463"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates #% Cold Resistance","better":1,"matchers":[{"string":"在巔峰頭目面前時,傷害穿透 #% 冰冷抗性"},{"string":"在巔峰頭目面前時,你的擊中將冰冷抗性視為比實際值高 #%","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_403285636"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates #% Fire Resistance","better":1,"matchers":[{"string":"在巔峰頭目面前時,傷害穿透 #% 火焰抗性"},{"string":"在巔峰頭目面前時,你的擊中將火焰抗性視為比實際值高 #%","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1175129684"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates #% Lightning Resistance","better":1,"matchers":[{"string":"在巔峰頭目面前時,傷害穿透 #% 閃電抗性"},{"string":"在巔峰頭目面前時,你的擊中將閃電抗性視為比實際值高 #%","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_550672859"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Determination has #% increased Aura Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,堅定增加 #% 光環效果"},{"string":"在巔峰頭目面前時,堅定減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1324460486"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Discipline has #% increased Aura Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,紀律增加 #% 光環效果"},{"string":"在巔峰頭目面前時,紀律減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2752131673"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting # seconds","better":1,"matchers":[{"string":"在巔峰頭目面前時,移動時留下易碎地面,持續 # 秒"}],"trade":{"ids":{"implicit":["implicit.stat_235328972"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting # seconds","better":1,"matchers":[{"string":"在巔峰頭目面前時,移動時留下殘喘地面,持續 # 秒"}],"trade":{"ids":{"implicit":["implicit.stat_1296291315"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting # seconds","better":1,"matchers":[{"string":"在巔峰頭目面前時,移動時掉落焦灼地面,持續 # 秒"},{"string":"在巔峰頭目面前時,移動時留下焦灼地面,持續 # 秒"}],"trade":{"ids":{"implicit":["implicit.stat_4054012096"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"在巔峰頭目面前時,堅決戰吼增加 #% 冷卻時間恢復速度"},{"string":"在巔峰頭目面前時,堅決戰吼減少 #% 冷卻時間恢復速度","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_906749304"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have #% reduced Life Regeneration rate","better":-1,"matchers":[{"string":"在巔峰頭目面前時,近期你擊中的敵人增加 #% 生命回復率"},{"string":"在巔峰頭目面前時,近期你擊中的敵人減少 #% 生命回復率","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3407071583"]},"inverted":true}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal #% increased Damage","better":1,"matchers":[{"string":"在巔峰頭目面前時,竭盡攻擊增加 #% 傷害"},{"string":"在巔峰頭目面前時,竭盡攻擊減少 #% 傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_376260015"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have #% increased Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,作用於你的藥劑增加 #% 效果"},{"string":"在巔峰頭目面前時,作用於你的藥劑減少 #% 效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4155771029"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Flasks gain # Charges every 3 seconds","better":1,"matchers":[{"string":"在巔峰頭目面前時,藥劑每 3 秒獲得 # 個充能"},{"string":"在巔峰頭目面前時,藥劑每 3 秒獲得一個充能","value":1}],"trade":{"ids":{"implicit":["implicit.stat_1519845279"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has #% increased Area of Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,血肉骸骨增加 #% 範圍效果"},{"string":"在巔峰頭目面前時,血肉骸骨減少 #% 範圍效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3393490212"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has #% increased Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,血肉奉獻增加 #% 效果"},{"string":"在巔峰頭目面前時,血肉奉獻減少 #% 效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_862077496"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within # metre","better":1,"matchers":[{"string":"在巔峰頭目面前時,你造成的冰凍擴散至 # 米內的其它敵人"}],"trade":{"ids":{"implicit":["implicit.stat_1436051850"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Chaos Damage","better":1,"matchers":[{"string":"在巔峰頭目面前時,獲得 #% 物理傷害的混沌傷害"}],"trade":{"ids":{"implicit":["implicit.stat_3490650294"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Cold Damage","better":1,"matchers":[{"string":"在巔峰頭目面前時,獲得 #% 物理傷害的冰冷傷害"}],"trade":{"ids":{"implicit":["implicit.stat_1425454108"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Fire Damage","better":1,"matchers":[{"string":"在巔峰頭目面前時,獲得 #% 物理傷害的火焰傷害"}],"trade":{"ids":{"implicit":["implicit.stat_1335630001"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Lightning Damage","better":1,"matchers":[{"string":"在巔峰頭目面前時,獲得 #% 物理傷害的閃電傷害"}],"trade":{"ids":{"implicit":["implicit.stat_632297605"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every # seconds","better":1,"matchers":[{"string":"在巔峰頭目面前時,每 # 秒獲得 1 顆狂怒球"}],"trade":{"ids":{"implicit":["implicit.stat_560848642"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every # seconds","better":1,"matchers":[{"string":"在巔峰頭目面前時,每 # 秒獲得 1 顆暴擊球"}],"trade":{"ids":{"implicit":["implicit.stat_2703923310"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every # seconds","better":1,"matchers":[{"string":"在巔峰頭目面前時,每 # 秒獲得 1 顆耐力球"}],"trade":{"ids":{"implicit":["implicit.stat_951862199"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, General's Cry has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"在巔峰頭目面前時,將軍戰吼增加 #% 冷卻時間恢復速度"}],"trade":{"ids":{"implicit":["implicit.stat_133006298"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Grace has #% increased Aura Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,優雅增加 #% 光環效果"},{"string":"在巔峰頭目面前時,優雅減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_81526858"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Haste has #% increased Aura Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,迅捷增加 #% 光環效果"},{"string":"在巔峰頭目面前時,迅捷減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1065477979"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Hatred has #% increased Aura Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,憎恨增加 #% 光環效果"},{"string":"在巔峰頭目面前時,憎恨減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1253537227"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has #% increased Buff Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,苦痛之捷增加 #% 增益效果"},{"string":"在巔峰頭目面前時,苦痛之捷減少 #% 增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3001066983"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has #% increased Buff Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,灰燼之捷增加 #% 增益效果"},{"string":"在巔峰頭目面前時,灰燼之捷減少 #% 增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3045509476"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has #% increased Buff Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,冰霜之捷增加 #% 增益效果"},{"string":"在巔峰頭目面前時,冰霜之捷減少 #% 增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1609260458"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has #% increased Buff Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,純淨之捷增加 #% 增益效果"},{"string":"在巔峰頭目面前時,純淨之捷減少 #% 增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3005679448"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has #% increased Buff Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,閃電之捷增加 #% 增益效果"},{"string":"在巔峰頭目面前時,閃電之捷減少 #% 增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1553385903"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage #% faster","better":1,"matchers":[{"string":"在巔峰頭目面前時,你造成的點燃傷害加速 #%"}],"trade":{"ids":{"implicit":["implicit.stat_1053495752"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within # metre","better":1,"matchers":[{"string":"在巔峰頭目面前時,你造成的點燃擴散至 # 米內的其它敵人"}],"trade":{"ids":{"implicit":["implicit.stat_3343791355"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has #% increased Area of Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,煉獄戰吼增加 #% 範圍效果"}],"trade":{"ids":{"implicit":["implicit.stat_1774377226"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying #% to Cold Resistance","better":-1,"matchers":[{"string":"在巔峰頭目面前時,擊中時造成冰冷曝曬,#% 冰冷抗性"}],"trade":{"ids":{"implicit":["implicit.stat_3658662726"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying #% to Fire Resistance","better":-1,"matchers":[{"string":"在巔峰頭目面前時,擊中時造成火焰曝曬,#% 火焰抗性"}],"trade":{"ids":{"implicit":["implicit.stat_1629531681"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying #% to Lightning Resistance","better":-1,"matchers":[{"string":"在巔峰頭目面前時,擊中時造成閃電曝曬,#% 閃電抗性"}],"trade":{"ids":{"implicit":["implicit.stat_1762412317"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"在巔峰頭目面前時,威嚇戰吼增加 #% 冷卻時間恢復速度"}],"trade":{"ids":{"implicit":["implicit.stat_3945581778"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Malevolence has #% increased Aura Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,惡意增加 #% 光環效果"},{"string":"在巔峰頭目面前時,惡意減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1033279468"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Melee Hits Fortify","better":1,"matchers":[{"string":"在巔峰頭目面前時,近戰擊中有 #% 機率護體"},{"string":"在巔峰頭目面前時,近戰擊中護體","value":100}],"trade":{"ids":{"implicit":["implicit.stat_298106626"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Minions deal #% increased Damage","better":1,"matchers":[{"string":"在巔峰頭目面前時,召喚物增加 #% 傷害"},{"string":"在巔峰頭目面前時,召喚物減少 #% 傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3141084961"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Minions have #% increased maximum Life","better":1,"matchers":[{"string":"在巔峰頭目面前時,召喚物增加 #% 最大生命"},{"string":"在巔峰頭目面前時,召喚物減少 #% 最大生命","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4057257145"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Minions have #% increased Movement Speed","better":1,"matchers":[{"string":"在巔峰頭目面前時,召喚物增加 #% 移動速度"},{"string":"在巔峰頭目面前時,召喚物減少 #% 移動速度","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2809900883"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Minions take #% reduced Reflected Damage","better":-1,"matchers":[{"string":"在巔峰頭目面前時,召喚物增加承受 #% 反射傷害"},{"string":"在巔峰頭目面前時,召喚物減少承受 #% 反射傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_505327219"]},"inverted":true}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target # additional nearby Enemy","better":1,"matchers":[{"string":"在巔峰頭目面前時,非瓦爾打擊技能瞄準 # 額外附近敵人"}],"trade":{"ids":{"implicit":["implicit.stat_1884100040"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage #% faster","better":1,"matchers":[{"string":"在巔峰頭目面前時,你造成的中毒傷害加速 #%"}],"trade":{"ids":{"implicit":["implicit.stat_995369618"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Pride has #% increased Aura Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,驕傲增加 #% 光環效果"},{"string":"在巔峰頭目面前時,驕傲減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2163876658"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce # additional Targets","better":1,"matchers":[{"string":"在巔峰頭目面前時,投射物穿透 # 個額外目標"},{"string":"在巔峰頭目面前時,投射物穿透一個額外目標","value":1}],"trade":{"ids":{"implicit":["implicit.stat_4045839821"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has #% increased Aura Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,元素淨化增加 #% 光環效果"},{"string":"在巔峰頭目面前時,元素淨化減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_221690080"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has #% increased Aura Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,火焰淨化增加 #% 光環效果"},{"string":"在巔峰頭目面前時,火焰淨化減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2034940983"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has #% increased Aura Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,冰霜淨化增加 #% 光環效果"},{"string":"在巔峰頭目面前時,冰霜淨化減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3786274521"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has #% increased Aura Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,閃電淨化增加 #% 光環效果"},{"string":"在巔峰頭目面前時,閃電淨化減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1445513967"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Regenerate #% of Life per second per Endurance Charge","better":1,"matchers":[{"string":"在巔峰頭目面前時,每顆耐力球每秒回復 #% 生命"}],"trade":{"ids":{"implicit":["implicit.stat_3225230656"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within # metre","better":1,"matchers":[{"string":"在巔峰頭目面前時,你造成的感電擴散至 # 米內的其它敵人"}],"trade":{"ids":{"implicit":["implicit.stat_2218095219"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has #% increased Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,靈魂奉獻增加 #% 效果"},{"string":"在巔峰頭目面前時,靈魂奉獻減少 #% 效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2399066987"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has #% increased Buff Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,暴風之盾增加 #% 增益效果"},{"string":"在巔峰頭目面前時,暴風之盾減少 #% 增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2601015548"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires #% faster","better":1,"matchers":[{"string":"在巔峰頭目面前時,你造成的凋零加速 #% 失效"},{"string":"在巔峰頭目面前時,你造成的凋零減緩 #% 失效","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3457821036"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Wrath has #% increased Aura Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,雷霆增加 #% 光環效果"},{"string":"在巔峰頭目面前時,雷霆減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1850144024"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Your Offerings have #% increased Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,你的奉獻增加 #% 效果"},{"string":"在巔峰頭目面前時,增加 #% 奉獻效果"},{"string":"在巔峰頭目面前時,你的奉獻減少 #% 效果","negate":true},{"string":"在巔峰頭目面前時,減少 #% 奉獻效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2526554500"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Zealotry has #% increased Aura Effect","better":1,"matchers":[{"string":"在巔峰頭目面前時,狂熱增加 #% 光環效果"},{"string":"在巔峰頭目面前時,狂熱減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2293353005"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Aggravate Bleeding on targets you Hit with Attacks","better":1,"matchers":[{"string":"在傳奇頭目面前時,攻擊擊中時有 #% 機率加劇目標身上的流血"}],"trade":{"ids":{"implicit":["implicit.stat_2543125349"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Avoid being Frozen","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 機率避免被冰凍"}],"trade":{"ids":{"implicit":["implicit.stat_3887072924"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Avoid being Ignited","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 機率避免被點燃"}],"trade":{"ids":{"implicit":["implicit.stat_2796083262"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Avoid being Poisoned","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 機率避免被中毒"},{"string":"在傳奇頭目面前時,不會中毒","value":100},{"string":"在傳奇頭目面前時,不能被中毒","value":100}],"trade":{"ids":{"implicit":["implicit.stat_3553907672"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Avoid being Shocked","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 機率避免被感電"}],"trade":{"ids":{"implicit":["implicit.stat_3401199213"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Avoid being Stunned","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 機率避免被暈眩"},{"string":"在傳奇頭目面前時,不會被暈眩","value":100}],"trade":{"ids":{"implicit":["implicit.stat_3322913142"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Avoid Bleeding","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 機率避免流血"},{"string":"在傳奇頭目面前時,流血不會對你造成影響","value":100},{"string":"在傳奇頭目面前時,流血對你沒有影響","value":100}],"trade":{"ids":{"implicit":["implicit.stat_2651293339"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Avoid Elemental Ailments","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 機率避免元素異常狀態"}],"trade":{"ids":{"implicit":["implicit.stat_3264420229"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% Chance to Block Attack Damage","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 攻擊傷害格擋率"}],"trade":{"ids":{"implicit":["implicit.stat_725501141"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% Chance to Block Spell Damage","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 法術傷害格擋率"}],"trade":{"ids":{"implicit":["implicit.stat_1358320252"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Extinguish Enemies on Hit","better":1,"matchers":[{"string":"在傳奇頭目面前時,擊中有 #% 機率熄滅敵人"}],"trade":{"ids":{"implicit":["implicit.stat_4163073767"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Freeze","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 機率使用冰冷傷害擊中敵人造成冰凍效果"},{"string":"在傳奇頭目面前時,所有冰冷傷害擊中敵人造成冰凍效果","value":100},{"string":"在傳奇頭目面前時,擊中時必定冰凍敵人","value":100}],"trade":{"ids":{"implicit":["implicit.stat_1096728982"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Hinder Enemies on Hit with Spells","better":1,"matchers":[{"string":"在傳奇頭目面前時,法術擊中時有 #% 機率阻礙敵人"},{"string":"在傳奇頭目面前時,法術擊中時阻礙敵人","value":100}],"trade":{"ids":{"implicit":["implicit.stat_3423886807"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Ignite","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 機率使用火焰傷害擊中敵人造成點燃效果"},{"string":"在傳奇頭目面前時,所有火焰傷害擊中敵人造成點燃效果","value":100}],"trade":{"ids":{"implicit":["implicit.stat_874990741"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Impale Enemies on Hit with Attacks","better":1,"matchers":[{"string":"在傳奇頭目面前時,攻擊擊中時有 #% 機率穿刺敵人"},{"string":"在傳奇頭目面前時,攻擊擊中時穿刺敵人","value":100}],"trade":{"ids":{"implicit":["implicit.stat_2391907787"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Intimidate Enemies for 4 seconds on Hit","better":1,"matchers":[{"string":"在傳奇頭目面前時,擊中時有 #% 機率威嚇敵人 4 秒"},{"string":"在傳奇頭目面前時,擊中時威嚇敵人 4 秒","value":100}],"trade":{"ids":{"implicit":["implicit.stat_144453866"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Poison on Hit","better":1,"matchers":[{"string":"在傳奇頭目面前時,擊中時 #% 機率使目標中毒"},{"string":"在傳奇頭目面前時,擊中時有 #% 機率使敵人中毒"},{"string":"在傳奇頭目面前時,擊中時使敵人中毒","value":100},{"string":"在傳奇頭目面前時,擊中時使目標中毒","value":100}],"trade":{"ids":{"implicit":["implicit.stat_2433754249"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Shock","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 機率使用閃電傷害擊中敵人造成感電效果"},{"string":"在傳奇頭目面前時,所有閃電傷害擊中敵人造成感電效果","value":100}],"trade":{"ids":{"implicit":["implicit.stat_2621869142"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Unnerve Enemies for 4 seconds on Hit","better":1,"matchers":[{"string":"在傳奇頭目面前時,擊中時有 #% 機率使敵人膽怯 4 秒"},{"string":"在傳奇頭目面前時,擊中時使敵人膽怯 4 秒","value":100}],"trade":{"ids":{"implicit":["implicit.stat_1708506642"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Action Speed","better":1,"matchers":[{"string":"在傳奇頭目面前時,減少 #% 行動速度"},{"string":"在傳奇頭目面前時,增加 #% 行動速度","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1829486532"]},"inverted":true}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Arctic Armour Buff Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 極地裝甲增益效果"},{"string":"在傳奇頭目面前時,減少 #% 極地裝甲增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4047779849"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Area of Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 範圍效果"},{"string":"在傳奇頭目面前時,減少 #% 範圍效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1847660463"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Armour","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 護甲"},{"string":"在傳奇頭目面前時,減少 #% 護甲","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1980216452"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Armour from Equipped Helmet and Gloves","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 裝備的頭盔和手套的護甲"},{"string":"在傳奇頭目面前時,減少 #% 裝備的頭盔和手套的護甲","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1586470077"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Attack Damage","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 攻擊傷害"},{"string":"在傳奇頭目面前時,減少 #% 攻擊傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4061200499"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Attack Speed","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 攻擊速度"},{"string":"在傳奇頭目面前時,減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3401410854"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Battlemage's Cry Buff Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 戰法戰吼增益效果"},{"string":"在傳奇頭目面前時,減少 #% 戰法戰吼增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3173180145"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Blind Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 致盲效果"},{"string":"在傳奇頭目面前時,減少 #% 致盲效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_886650454"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Brand Attachment range","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 烙印附著距離"},{"string":"在傳奇頭目面前時,減少 #% 烙印附著距離","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_636616197"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Cast Speed","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 施放速度"},{"string":"在傳奇頭目面前時,減少 #% 施放速度","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2016247664"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Chaos Damage","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 混沌傷害"},{"string":"在傳奇頭目面前時,減少 #% 混沌傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2875239648"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Cold Damage","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 冰冷傷害"},{"string":"在傳奇頭目面前時,減少 #% 冰冷傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2127607252"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Conductivity Curse Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 導電的詛咒效果"},{"string":"在傳奇頭目面前時,減少 #% 導電的詛咒效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3547319552"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 冷卻恢復速度"},{"string":"在傳奇頭目面前時,減少 #% 冷卻恢復速度","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2491353340"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Cooldown Recovery Rate of Travel Skills","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 快行技能冷卻時間恢復速度"},{"string":"在傳奇頭目面前時,減少 #% 快行技能冷卻時間恢復速度","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2986495340"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Critical Strike Chance for Attacks","better":1,"matchers":[{"string":"在傳奇頭目面前時,攻擊增加 #% 暴擊率"},{"string":"在傳奇頭目面前時,攻擊減少 #% 暴擊率","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3710240762"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Damage per 100 Dexterity","better":1,"matchers":[{"string":"在傳奇頭目面前時,每 100 點敏捷增加 #% 傷害"},{"string":"在傳奇頭目面前時,每 100 點敏捷減少 #% 傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_535580777"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Damage per 100 Intelligence","better":1,"matchers":[{"string":"在傳奇頭目面前時,每 100 點智慧增加 #% 傷害"},{"string":"在傳奇頭目面前時,每 100 點智慧減少 #% 傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1894390763"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Damage per 100 Strength","better":1,"matchers":[{"string":"在傳奇頭目面前時,每 100 點力量增加 #% 傷害"},{"string":"在傳奇頭目面前時,每 100 點力量減少 #% 傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4224921626"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Damage per Endurance Charge","better":1,"matchers":[{"string":"在傳奇頭目面前時,每個耐力球增加 #% 傷害"},{"string":"在傳奇頭目面前時,每個耐力球減少 #% 傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2193147166"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Damage per Frenzy Charge","better":1,"matchers":[{"string":"在傳奇頭目面前時,每顆狂怒球增加 #% 傷害"},{"string":"在傳奇頭目面前時,每顆狂怒球減少 #% 傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2415020123"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Damage per Power Charge","better":1,"matchers":[{"string":"在傳奇頭目面前時,每顆暴擊球增加 #% 傷害"},{"string":"在傳奇頭目面前時,每顆暴擊球減少 #% 傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1394771132"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Despair Curse Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 絕望詛咒效果"},{"string":"在傳奇頭目面前時,減少 #% 絕望詛咒效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2909684383"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Duration of Ailments on Enemies","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 敵人身上異常狀態時間"},{"string":"在傳奇頭目面前時,減少 #% 敵人身上異常狀態時間","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3341892633"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of Arcane Surge on you","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加你身上秘能波動 #% 效果"},{"string":"在傳奇頭目面前時,減少你身上秘能波動 #% 效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3163099942"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of Buffs granted by your Golems","better":1,"matchers":[{"string":"在傳奇頭目面前時,魔像的增益效果增加 #%"},{"string":"在傳奇頭目面前時,魔像的增益效果減少 #%","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2159248495"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased effect of Non-Curse Auras from your Skills","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 你技能的非詛咒光環效果"},{"string":"在傳奇頭目面前時,減少 #% 你技能的非詛咒光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2558323947"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of Non-Damaging Ailments","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 非傷害型異常狀態的效果"},{"string":"在傳奇頭目面前時,減少 #% 非傷害型異常狀態的效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2950684886"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of Onslaught on you","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 你身上的猛攻效果"},{"string":"在傳奇頭目面前時,減少 #% 你身上的猛攻效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_491577732"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Carrion Golems","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 你食腐魔像提供的增益效果"},{"string":"在傳奇頭目面前時,減少 #% 你食腐魔像提供的增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2917444195"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Chaos Golems","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 混沌魔像賦予你的增益效果"},{"string":"在傳奇頭目面前時,減少 #% 混沌魔像賦予你的增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1807607778"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Flame Golems","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 烈焰魔像賦予你的增益效果"},{"string":"在傳奇頭目面前時,減少 #% 烈焰魔像賦予你的增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3591219299"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Ice Golems","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 寒冰魔像賦予你的增益效果"},{"string":"在傳奇頭目面前時,減少 #% 寒冰魔像賦予你的增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3588695478"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Lightning Golems","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 雷電魔像賦予你的增益效果"},{"string":"在傳奇頭目面前時,減少 #% 雷電魔像賦予你的增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1747983672"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Stone Golems","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 巨石魔像賦予你的增益效果"},{"string":"在傳奇頭目面前時,減少 #% 巨石魔像賦予你的增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1722486495"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of your Curses","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 你所施放詛咒的效果"},{"string":"在傳奇頭目面前時,減少 #% 你所施放詛咒的效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2669364207"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of your Marks","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 你印記的效果"},{"string":"在傳奇頭目面前時,減少 #% 你印記的效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_505694848"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Elemental Weakness Curse Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 元素要害的詛咒效果"},{"string":"在傳奇頭目面前時,減少 #% 元素要害的詛咒效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_771845579"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Elusive Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 靈巧效果"},{"string":"在傳奇頭目面前時,減少 #% 靈巧效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2413932980"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Energy Shield Recharge Rate","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 能量護盾充能率"},{"string":"在傳奇頭目面前時,減少 #% 能量護盾充能率","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3806837783"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Energy Shield Recovery rate","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 能量護盾恢復率"},{"string":"在傳奇頭目面前時,減少 #% 能量護盾恢復率","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_587322642"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Enfeeble Curse Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 衰弱的詛咒效果"},{"string":"在傳奇頭目面前時,減少 #% 衰弱的詛咒效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_937462392"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Evasion Rating","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 閃避值"},{"string":"在傳奇頭目面前時,減少 #% 閃避值","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3394288644"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Evasion Rating from Equipped Helmet and Boots","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 裝備的頭盔和鞋子的閃避值"},{"string":"在傳奇頭目面前時,減少 #% 裝備的頭盔和鞋子的閃避值","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2408490382"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Fire Damage","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 火焰傷害"},{"string":"在傳奇頭目面前時,減少 #% 火焰傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1590336483"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Flammability Curse Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 易燃的詛咒效果"},{"string":"在傳奇頭目面前時,減少 #% 易燃的詛咒效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1394267723"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Frostbite Curse Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 凍傷的詛咒效果"},{"string":"在傳奇頭目面前時,減少 #% 凍傷的詛咒效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3199183447"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Global Accuracy Rating","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 全域命中值"},{"string":"在傳奇頭目面前時,減少 #% 全域命中值","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2423625781"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Global Physical Damage","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 全域物理傷害"},{"string":"在傳奇頭目面前時,減少 #% 全域物理傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_604852150"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Life Recovery rate","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 生命恢復率"},{"string":"在傳奇頭目面前時,減少 #% 生命恢復率","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1481249164"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Life Regeneration rate","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 生命回復率"},{"string":"在傳奇頭目面前時,減少 #% 生命回復率","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1916766878"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Lightning Damage","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 閃電傷害"},{"string":"在傳奇頭目面前時,減少 #% 閃電傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2668120423"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Mana Recovery rate","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 魔力恢復率"},{"string":"在傳奇頭目面前時,減少 #% 魔力恢復率","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1217759839"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Mana Regeneration Rate","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 魔力回復率"},{"string":"在傳奇頭目面前時,減少 #% 魔力回復率","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_760444887"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Mana Regeneration Rate per Power Charge","better":1,"matchers":[{"string":"在傳奇頭目面前時,每個暴擊球增加 #% 魔力回復率"},{"string":"在傳奇頭目面前時,每個暴擊球減少 #% 魔力回復率","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1918872160"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Mana Reservation Efficiency of Skills","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 技能的魔力保留效用"},{"string":"在傳奇頭目面前時,減少 #% 技能的魔力保留效用","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2358903592"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased maximum Energy Shield","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 最大能量護盾"},{"string":"在傳奇頭目面前時,減少 #% 最大能量護盾","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1114962813"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Maximum Energy Shield from Equipped Gloves and Boots","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 裝備的手套和鞋子的最大能量護盾"},{"string":"在傳奇頭目面前時,減少 #% 裝備的手套和鞋子的最大能量護盾","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4288334466"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Mine Throwing Speed","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 地雷投擲速度"},{"string":"在傳奇頭目面前時,減少 #% 地雷投擲速度","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1516326076"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Movement Speed","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 移動速度"},{"string":"在傳奇頭目面前時,減少 #% 移動速度","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3019083030"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Punishment Curse Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 懲戒的詛咒效果"},{"string":"在傳奇頭目面前時,減少 #% 懲戒的詛咒效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4171615823"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Rallying Cry Buff Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 激勵戰吼增益效果"},{"string":"在傳奇頭目面前時,減少 #% 激勵戰吼增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1381761351"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Skill Effect Duration","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 技能效果持續時間"},{"string":"在傳奇頭目面前時,減少 #% 技能效果持續時間","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_614709726"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Spell Critical Strike Chance","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 法術暴擊率"},{"string":"在傳奇頭目面前時,減少 #% 法術暴擊率","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4191234472"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Spell Damage","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 法術傷害"},{"string":"在傳奇頭目面前時,減少 #% 法術傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4136821316"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Stun Threshold","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 暈眩門檻"},{"string":"在傳奇頭目面前時,減少 #% 暈眩門檻","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_266654028"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Temporal Chains Curse Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 時空鎖鏈的詛咒效果"},{"string":"在傳奇頭目面前時,減少 #% 時空鎖鏈的詛咒效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_485385046"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Totem Placement speed","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 圖騰放置速度"},{"string":"在傳奇頭目面前時,減少 #% 圖騰放置速度","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2033289503"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Trap Throwing Speed","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 陷阱投擲速度"},{"string":"在傳奇頭目面前時,減少 #% 陷阱投擲速度","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2479119864"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Vulnerability Curse Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 脆弱的詛咒效果"},{"string":"在傳奇頭目面前時,減少 #% 脆弱的詛咒效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2638071469"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Warcry Buff Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 戰吼的增益效果"},{"string":"在傳奇頭目面前時,減少 #% 戰吼的增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3611265227"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Warcry Speed","better":1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 戰吼施放速度"},{"string":"在傳奇頭目面前時,減少 #% 戰吼施放速度","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2255001736"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Chaos Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 混沌傷害偷取生命"}],"trade":{"ids":{"implicit":["implicit.stat_1172401338"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Cold Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 冰冷傷害偷取生命"}],"trade":{"ids":{"implicit":["implicit.stat_3357881628"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Cold Damage taken Recouped as Life","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 承受的冰冷傷害補償為生命"}],"trade":{"ids":{"implicit":["implicit.stat_1739741837"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Damage is taken from Mana before Life","better":1,"matchers":[{"string":"在傳奇頭目面前時,生命值所受的 #% 傷害由魔力扣除"}],"trade":{"ids":{"implicit":["implicit.stat_1749598944"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Damage taken Recouped as Life","better":1,"matchers":[{"string":"在傳奇頭目面前時,承受 #% 傷害補償為生命"}],"trade":{"ids":{"implicit":["implicit.stat_2080582538"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Fire Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 火焰傷害偷取生命"}],"trade":{"ids":{"implicit":["implicit.stat_3430693940"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Fire Damage taken Recouped as Life","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 承受的火焰傷害補償為生命"}],"trade":{"ids":{"implicit":["implicit.stat_2143647966"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Lightning Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 閃電傷害偷取生命"}],"trade":{"ids":{"implicit":["implicit.stat_2824722288"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Lightning Damage taken Recouped as Life","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 承受的閃電傷害補償為生命"}],"trade":{"ids":{"implicit":["implicit.stat_1146717028"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Chaos Damage","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 物理傷害轉換為混沌傷害"}],"trade":{"ids":{"implicit":["implicit.stat_1623369100"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Cold Damage","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 物理傷害轉換為冰冷傷害"}],"trade":{"ids":{"implicit":["implicit.stat_1153825002"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Fire Damage","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 物理傷害轉換為火焰傷害"}],"trade":{"ids":{"implicit":["implicit.stat_380027104"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Lightning Damage","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 物理傷害轉換為閃電傷害"}],"trade":{"ids":{"implicit":["implicit.stat_1516273114"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Chaos Damage","better":1,"matchers":[{"string":"在傳奇頭目面前時,承受 #% 的擊中物理傷害視為混沌傷害"}],"trade":{"ids":{"implicit":["implicit.stat_2393004388"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Cold Damage","better":1,"matchers":[{"string":"在傳奇頭目面前時,承受 #% 的擊中物理傷害視為冰冷傷害"}],"trade":{"ids":{"implicit":["implicit.stat_848890513"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Fire Damage","better":1,"matchers":[{"string":"在傳奇頭目面前時,承受 #% 的擊中物理傷害視為火焰傷害"}],"trade":{"ids":{"implicit":["implicit.stat_1283684786"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Lightning Damage","better":1,"matchers":[{"string":"在傳奇頭目面前時,承受 #% 的擊中物理傷害視為閃電傷害"}],"trade":{"ids":{"implicit":["implicit.stat_196824923"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Physical Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 物理傷害偷取生命"}],"trade":{"ids":{"implicit":["implicit.stat_2443166200"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Physical Damage taken Recouped as Life","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 承受的物理傷害補償為生命"}],"trade":{"ids":{"implicit":["implicit.stat_3796902731"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% reduced Effect of Shock on you","better":-1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 你身上的感電效果"},{"string":"在傳奇頭目面前時,減少 #% 你身上的感電效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1343931641"]},"inverted":true}} +{"ref":"While a Unique Enemy is in your Presence, #% reduced Enemy Stun Threshold","better":1,"matchers":[{"string":"在傳奇頭目面前時,減少 #% 敵人暈眩門檻"},{"string":"在傳奇頭目面前時,增加 #% 敵人暈眩門檻","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_944211673"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% reduced Freeze Duration on you","better":1,"matchers":[{"string":"在傳奇頭目面前時,減少 #% 你被冰凍的持續時間"},{"string":"在傳奇頭目面前時,增加 #% 你被冰凍的持續時間","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3985862221"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% reduced Ignite Duration on you","better":1,"matchers":[{"string":"在傳奇頭目面前時,減少 #% 你被點燃的持續時間"},{"string":"在傳奇頭目面前時,增加 #% 你被點燃的持續時間","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2520245478"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% reduced Mana Cost of Attacks","better":-1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 攻擊的魔力消耗"},{"string":"在傳奇頭目面前時,減少 #% 攻擊的魔力消","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1116269888"]},"inverted":true}} +{"ref":"While a Unique Enemy is in your Presence, #% reduced Reflected Damage taken","better":-1,"matchers":[{"string":"在傳奇頭目面前時,增加 #% 受到的反射傷害"},{"string":"在傳奇頭目面前時,減少 #% 受到的反射傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1941017392"]},"inverted":true}} +{"ref":"While a Unique Enemy is in your Presence, +# to Accuracy Rating per Frenzy Charge","better":1,"matchers":[{"string":"在傳奇頭目面前時,每顆狂怒球 # 命中值"}],"trade":{"ids":{"implicit":["implicit.stat_475859964"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% chance to Suppress Spell Damage","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 壓抑法術傷害率"}],"trade":{"ids":{"implicit":["implicit.stat_3998961962"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to all Elemental Resistances","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 全部元素抗性"}],"trade":{"ids":{"implicit":["implicit.stat_2358153166"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to all maximum Resistances","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 最大全部抗性"}],"trade":{"ids":{"implicit":["implicit.stat_3062531896"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to Chaos Damage over Time Multiplier","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 混沌持續傷害加成"}],"trade":{"ids":{"implicit":["implicit.stat_2634574895"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to Chaos Resistance","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 混沌抗性"}],"trade":{"ids":{"implicit":["implicit.stat_744196525"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to Cold Damage over Time Multiplier","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 冰冷持續傷害加成"}],"trade":{"ids":{"implicit":["implicit.stat_621576159"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to Cold Resistance","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 冰冷抗性"}],"trade":{"ids":{"implicit":["implicit.stat_2240274773"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to Critical Strike Multiplier for Attack Damage","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 攻擊傷害的暴擊加成"}],"trade":{"ids":{"implicit":["implicit.stat_26879978"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to Critical Strike Multiplier for Spell Damage","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 法術傷害的暴擊加成"}],"trade":{"ids":{"implicit":["implicit.stat_865433929"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to Fire Damage over Time Multiplier","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 火焰持續傷害加成"}],"trade":{"ids":{"implicit":["implicit.stat_2112874376"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to Fire Resistance","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 火焰抗性"}],"trade":{"ids":{"implicit":["implicit.stat_3521653836"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to Lightning Resistance","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 閃電抗性"}],"trade":{"ids":{"implicit":["implicit.stat_3556129896"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to maximum Chaos Resistance","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 最大混沌抗性"}],"trade":{"ids":{"implicit":["implicit.stat_575726461"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to maximum Cold Resistance","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 最大冰冷抗性"}],"trade":{"ids":{"implicit":["implicit.stat_3444931985"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to maximum Fire Resistance","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 最大火焰抗性"}],"trade":{"ids":{"implicit":["implicit.stat_475684070"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to maximum Lightning Resistance","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 最大閃電抗性"}],"trade":{"ids":{"implicit":["implicit.stat_789714862"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to Physical Damage over Time Multiplier","better":1,"matchers":[{"string":"在傳奇頭目面前時,#% 物理持續傷害加成"}],"trade":{"ids":{"implicit":["implicit.stat_841219865"]}}} +{"ref":"While a Unique Enemy is in your Presence, 1% less Damage Taken per # Dexterity","better":1,"matchers":[{"string":"在傳奇頭目面前時,每 # 點敏捷,承受 1% 更少傷害"}],"trade":{"ids":{"implicit":["implicit.stat_1682072497"]}}} +{"ref":"While a Unique Enemy is in your Presence, 1% less Damage Taken per # Intelligence","better":1,"matchers":[{"string":"在傳奇頭目面前時,每 # 點智慧,承受 1% 更少傷害"}],"trade":{"ids":{"implicit":["implicit.stat_553122931"]}}} +{"ref":"While a Unique Enemy is in your Presence, 1% less Damage Taken per # Strength","better":1,"matchers":[{"string":"在傳奇頭目面前時,每 # 點力量,承受 1% 更少傷害"}],"trade":{"ids":{"implicit":["implicit.stat_3389591826"]}}} +{"ref":"While a Unique Enemy is in your Presence, Adds # to # Chaos Damage to Attacks","better":1,"matchers":[{"string":"在傳奇頭目面前時,攻擊附加 # 至 # 混沌傷害"}],"trade":{"ids":{"implicit":["implicit.stat_2444070126"]}}} +{"ref":"While a Unique Enemy is in your Presence, Adds # to # Chaos Damage to Spells","better":1,"matchers":[{"string":"在傳奇頭目面前時,法術附加 # 至 # 混沌傷害"}],"trade":{"ids":{"implicit":["implicit.stat_1554912650"]}}} +{"ref":"While a Unique Enemy is in your Presence, Adds # to # Cold Damage to Attacks","better":1,"matchers":[{"string":"在傳奇頭目面前時,攻擊附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"implicit":["implicit.stat_4057155645"]}}} +{"ref":"While a Unique Enemy is in your Presence, Adds # to # Cold Damage to Spells","better":1,"matchers":[{"string":"在傳奇頭目面前時,法術附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"implicit":["implicit.stat_1018817416"]}}} +{"ref":"While a Unique Enemy is in your Presence, Adds # to # Fire Damage to Attacks","better":1,"matchers":[{"string":"在傳奇頭目面前時,攻擊附加 # 至 # 火焰傷害"}],"trade":{"ids":{"implicit":["implicit.stat_2067485824"]}}} +{"ref":"While a Unique Enemy is in your Presence, Adds # to # Fire Damage to Spells","better":1,"matchers":[{"string":"在傳奇頭目面前時,法術附加 # 至 # 火焰傷害"}],"trade":{"ids":{"implicit":["implicit.stat_661603414"]}}} +{"ref":"While a Unique Enemy is in your Presence, Adds # to # Lightning Damage to Attacks","better":1,"matchers":[{"string":"在傳奇頭目面前時,攻擊附加 # 至 # 閃電傷害"}],"trade":{"ids":{"implicit":["implicit.stat_2111629859"]}}} +{"ref":"While a Unique Enemy is in your Presence, Adds # to # Lightning Damage to Spells","better":1,"matchers":[{"string":"在傳奇頭目面前時,法術附加 # 至 # 閃電傷害"}],"trade":{"ids":{"implicit":["implicit.stat_371531651"]}}} +{"ref":"While a Unique Enemy is in your Presence, Adds # to # Physical Damage to Attacks","better":1,"matchers":[{"string":"在傳奇頭目面前時,攻擊附加 # 至 # 物理傷害"}],"trade":{"ids":{"implicit":["implicit.stat_2521809744"]}}} +{"ref":"While a Unique Enemy is in your Presence, Adds # to # Physical Damage to Spells","better":1,"matchers":[{"string":"在傳奇頭目面前時,法術附加 # 至 # 物理傷害"}],"trade":{"ids":{"implicit":["implicit.stat_4272276606"]}}} +{"ref":"While a Unique Enemy is in your Presence, Anger has #% increased Aura Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,憤怒增加 #% 光環效果"},{"string":"在傳奇頭目面前時,憤怒減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_778803098"]}}} +{"ref":"While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal #% increased Damage","better":1,"matchers":[{"string":"在傳奇頭目面前時,先祖戰吼竭盡的攻擊增加 #% 傷害"}],"trade":{"ids":{"implicit":["implicit.stat_3598887112"]}}} +{"ref":"While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal #% increased Damage","better":1,"matchers":[{"string":"在傳奇頭目面前時,被裂地戰吼竭盡的攻擊增加 #% 傷害"}],"trade":{"ids":{"implicit":["implicit.stat_1505297139"]}}} +{"ref":"While a Unique Enemy is in your Presence, Attacks have #% chance to cause Bleeding","better":1,"matchers":[{"string":"在傳奇頭目面前時,攻擊無法造成流血","value":-1},{"string":"在傳奇頭目面前時,攻擊有 #% 機率造成流血"},{"string":"在傳奇頭目面前時,攻擊造成流血","value":100}],"trade":{"ids":{"implicit":["implicit.stat_64193828"]}}} +{"ref":"While a Unique Enemy is in your Presence, Attacks have #% chance to Maim on Hit","better":1,"matchers":[{"string":"在傳奇頭目面前時,攻擊擊中時有 #% 機率造成癱瘓"},{"string":"在傳奇頭目面前時,攻擊擊中時造成癱瘓","value":100}],"trade":{"ids":{"implicit":["implicit.stat_720015764"]}}} +{"ref":"While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage #% faster","better":1,"matchers":[{"string":"在傳奇頭目面前時,你造成的流血傷害加速 #%"}],"trade":{"ids":{"implicit":["implicit.stat_738837643"]}}} +{"ref":"While a Unique Enemy is in your Presence, Bone Offering has #% increased Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,骸骨奉獻增加 #% 效果"},{"string":"在傳奇頭目面前時,骸骨奉獻減少 #% 效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2290911895"]}}} +{"ref":"While a Unique Enemy is in your Presence, Damage Penetrates #% Cold Resistance","better":1,"matchers":[{"string":"在傳奇頭目面前時,傷害穿透 #% 冰冷抗性"},{"string":"在傳奇頭目面前時,你的擊中將冰冷抗性視為比實際值高 #%","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1477049675"]}}} +{"ref":"While a Unique Enemy is in your Presence, Damage Penetrates #% Fire Resistance","better":1,"matchers":[{"string":"在傳奇頭目面前時,傷害穿透 #% 火焰抗性"},{"string":"在傳奇頭目面前時,你的擊中將火焰抗性視為比實際值高 #%","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3425675761"]}}} +{"ref":"While a Unique Enemy is in your Presence, Damage Penetrates #% Lightning Resistance","better":1,"matchers":[{"string":"在傳奇頭目面前時,傷害穿透 #% 閃電抗性"},{"string":"在傳奇頭目面前時,你的擊中將閃電抗性視為比實際值高 #%","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1598254831"]}}} +{"ref":"While a Unique Enemy is in your Presence, Determination has #% increased Aura Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,堅定增加 #% 光環效果"},{"string":"在傳奇頭目面前時,堅定減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2366356855"]}}} +{"ref":"While a Unique Enemy is in your Presence, Discipline has #% increased Aura Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,紀律增加 #% 光環效果"},{"string":"在傳奇頭目面前時,紀律減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_334238649"]}}} +{"ref":"While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting # seconds","better":1,"matchers":[{"string":"在傳奇頭目面前時,移動時留下易碎地面,持續 # 秒"}],"trade":{"ids":{"implicit":["implicit.stat_1771822543"]}}} +{"ref":"While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting # seconds","better":1,"matchers":[{"string":"在傳奇頭目面前時,移動時留下殘喘地面,持續 # 秒"}],"trade":{"ids":{"implicit":["implicit.stat_2220831041"]}}} +{"ref":"While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting # seconds","better":1,"matchers":[{"string":"在傳奇頭目面前時,移動時掉落焦灼地面,持續 # 秒"},{"string":"在傳奇頭目面前時,移動時留下焦灼地面,持續 # 秒"}],"trade":{"ids":{"implicit":["implicit.stat_493814995"]}}} +{"ref":"While a Unique Enemy is in your Presence, Enduring Cry has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"在傳奇頭目面前時,堅決戰吼增加 #% 冷卻時間恢復速度"},{"string":"在傳奇頭目面前時,堅決戰吼減少 #% 冷卻時間恢復速度","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2792560229"]}}} +{"ref":"While a Unique Enemy is in your Presence, Enemies you've Hit Recently have #% reduced Life Regeneration rate","better":-1,"matchers":[{"string":"在傳奇頭目面前時,近期你擊中的敵人增加 #% 生命回復率"},{"string":"在傳奇頭目面前時,近期你擊中的敵人減少 #% 生命回復率","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2570471069"]},"inverted":true}} +{"ref":"While a Unique Enemy is in your Presence, Exerted Attacks deal #% increased Damage","better":1,"matchers":[{"string":"在傳奇頭目面前時,竭盡攻擊增加 #% 傷害"},{"string":"在傳奇頭目面前時,竭盡攻擊減少 #% 傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3291139981"]}}} +{"ref":"While a Unique Enemy is in your Presence, Flasks applied to you have #% increased Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,作用於你的藥劑增加 #% 效果"},{"string":"在傳奇頭目面前時,作用於你的藥劑減少 #% 效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3610955422"]}}} +{"ref":"While a Unique Enemy is in your Presence, Flasks gain # Charges every 3 seconds","better":1,"matchers":[{"string":"在傳奇頭目面前時,藥劑每 3 秒獲得 # 個充能"},{"string":"在傳奇頭目面前時,藥劑每 3 秒獲得一個充能","value":1}],"trade":{"ids":{"implicit":["implicit.stat_2150799098"]}}} +{"ref":"While a Unique Enemy is in your Presence, Flesh and Stone has #% increased Area of Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,血肉骸骨增加 #% 範圍效果"},{"string":"在傳奇頭目面前時,血肉骸骨減少 #% 範圍效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1472965536"]}}} +{"ref":"While a Unique Enemy is in your Presence, Flesh Offering has #% increased Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,血肉奉獻增加 #% 效果"},{"string":"在傳奇頭目面前時,血肉奉獻減少 #% 效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3599488608"]}}} +{"ref":"While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within # metre","better":1,"matchers":[{"string":"在傳奇頭目面前時,你造成的冰凍擴散至 # 米內的其它敵人"}],"trade":{"ids":{"implicit":["implicit.stat_2543269407"]}}} +{"ref":"While a Unique Enemy is in your Presence, Gain # Rage on Attack Hit","better":1,"matchers":[{"string":"在傳奇頭目面前時,攻擊擊中時獲得 # 層盛怒"}],"trade":{"ids":{"implicit":["implicit.stat_3134649750"]}}} +{"ref":"While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Chaos Damage","better":1,"matchers":[{"string":"在傳奇頭目面前時,獲得 #% 物理傷害的混沌傷害"}],"trade":{"ids":{"implicit":["implicit.stat_620552892"]}}} +{"ref":"While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Cold Damage","better":1,"matchers":[{"string":"在傳奇頭目面前時,獲得 #% 物理傷害的冰冷傷害"}],"trade":{"ids":{"implicit":["implicit.stat_3171354842"]}}} +{"ref":"While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Fire Damage","better":1,"matchers":[{"string":"在傳奇頭目面前時,獲得 #% 物理傷害的火焰傷害"}],"trade":{"ids":{"implicit":["implicit.stat_3549954477"]}}} +{"ref":"While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Lightning Damage","better":1,"matchers":[{"string":"在傳奇頭目面前時,獲得 #% 物理傷害的閃電傷害"}],"trade":{"ids":{"implicit":["implicit.stat_1918094957"]}}} +{"ref":"While a Unique Enemy is in your Presence, Gain a Frenzy Charge every # seconds","better":1,"matchers":[{"string":"在傳奇頭目面前時,每 # 秒獲得 1 顆狂怒球"}],"trade":{"ids":{"implicit":["implicit.stat_2847070982"]}}} +{"ref":"While a Unique Enemy is in your Presence, Gain a Power Charge every # seconds","better":1,"matchers":[{"string":"在傳奇頭目面前時,每 # 秒獲得 1 顆暴擊球"}],"trade":{"ids":{"implicit":["implicit.stat_46472075"]}}} +{"ref":"While a Unique Enemy is in your Presence, Gain an Endurance Charge every # seconds","better":1,"matchers":[{"string":"在傳奇頭目面前時,每 # 秒獲得 1 顆耐力球"}],"trade":{"ids":{"implicit":["implicit.stat_2441896589"]}}} +{"ref":"While a Unique Enemy is in your Presence, General's Cry has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"在傳奇頭目面前時,將軍戰吼增加 #% 冷卻時間恢復速度"}],"trade":{"ids":{"implicit":["implicit.stat_942266300"]}}} +{"ref":"While a Unique Enemy is in your Presence, Grace has #% increased Aura Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,優雅增加 #% 光環效果"},{"string":"在傳奇頭目面前時,優雅減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3303144948"]}}} +{"ref":"While a Unique Enemy is in your Presence, Haste has #% increased Aura Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,迅捷增加 #% 光環效果"},{"string":"在傳奇頭目面前時,迅捷減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1060820709"]}}} +{"ref":"While a Unique Enemy is in your Presence, Hatred has #% increased Aura Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,憎恨增加 #% 光環效果"},{"string":"在傳奇頭目面前時,憎恨減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4218330172"]}}} +{"ref":"While a Unique Enemy is in your Presence, Herald of Agony has #% increased Buff Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,苦痛之捷增加 #% 增益效果"},{"string":"在傳奇頭目面前時,苦痛之捷減少 #% 增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_503887731"]}}} +{"ref":"While a Unique Enemy is in your Presence, Herald of Ash has #% increased Buff Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,灰燼之捷增加 #% 增益效果"},{"string":"在傳奇頭目面前時,灰燼之捷減少 #% 增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_109112452"]}}} +{"ref":"While a Unique Enemy is in your Presence, Herald of Ice has #% increased Buff Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,冰霜之捷增加 #% 增益效果"},{"string":"在傳奇頭目面前時,冰霜之捷減少 #% 增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3593717239"]}}} +{"ref":"While a Unique Enemy is in your Presence, Herald of Purity has #% increased Buff Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,純淨之捷增加 #% 增益效果"},{"string":"在傳奇頭目面前時,純淨之捷減少 #% 增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4093169696"]}}} +{"ref":"While a Unique Enemy is in your Presence, Herald of Thunder has #% increased Buff Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,閃電之捷增加 #% 增益效果"},{"string":"在傳奇頭目面前時,閃電之捷減少 #% 增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_649027123"]}}} +{"ref":"While a Unique Enemy is in your Presence, Hits have #% chance to ignore Enemy Physical Damage Reduction","better":1,"matchers":[{"string":"在傳奇頭目面前時,擊中有 #% 機率無視敵人的物理傷害減免"},{"string":"在傳奇頭目面前時,擊中無視敵人的物理傷害減免","value":100}],"trade":{"ids":{"implicit":["implicit.stat_71573030"]}}} +{"ref":"While a Unique Enemy is in your Presence, Ignites you inflict deal Damage #% faster","better":1,"matchers":[{"string":"在傳奇頭目面前時,你造成的點燃傷害加速 #%"}],"trade":{"ids":{"implicit":["implicit.stat_2349328837"]}}} +{"ref":"While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within # metre","better":1,"matchers":[{"string":"在傳奇頭目面前時,你造成的點燃擴散至 # 米內的其它敵人"}],"trade":{"ids":{"implicit":["implicit.stat_1698847655"]}}} +{"ref":"While a Unique Enemy is in your Presence, Infernal Cry has #% increased Area of Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,煉獄戰吼增加 #% 範圍效果"}],"trade":{"ids":{"implicit":["implicit.stat_3199255605"]}}} +{"ref":"While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying #% to Cold Resistance","better":-1,"matchers":[{"string":"在傳奇頭目面前時,擊中時造成冰冷曝曬,#% 冰冷抗性"}],"trade":{"ids":{"implicit":["implicit.stat_1699220089"]}}} +{"ref":"While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying #% to Fire Resistance","better":-1,"matchers":[{"string":"在傳奇頭目面前時,擊中時造成火焰曝曬,#% 火焰抗性"}],"trade":{"ids":{"implicit":["implicit.stat_732411542"]}}} +{"ref":"While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying #% to Lightning Resistance","better":-1,"matchers":[{"string":"在傳奇頭目面前時,擊中時造成閃電曝曬,#% 閃電抗性"}],"trade":{"ids":{"implicit":["implicit.stat_2876365933"]}}} +{"ref":"While a Unique Enemy is in your Presence, Intimidating Cry has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"在傳奇頭目面前時,威嚇戰吼增加 #% 冷卻時間恢復速度"}],"trade":{"ids":{"implicit":["implicit.stat_3381588096"]}}} +{"ref":"While a Unique Enemy is in your Presence, Malevolence has #% increased Aura Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,惡意增加 #% 光環效果"},{"string":"在傳奇頭目面前時,惡意減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1327020319"]}}} +{"ref":"While a Unique Enemy is in your Presence, Melee Hits Fortify","better":1,"matchers":[{"string":"在傳奇頭目面前時,近戰擊中有 #% 機率護體"},{"string":"在傳奇頭目面前時,近戰擊中護體","value":100}],"trade":{"ids":{"implicit":["implicit.stat_993223747"]}}} +{"ref":"While a Unique Enemy is in your Presence, Minions deal #% increased Damage","better":1,"matchers":[{"string":"在傳奇頭目面前時,召喚物增加 #% 傷害"},{"string":"在傳奇頭目面前時,召喚物減少 #% 傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4189960647"]}}} +{"ref":"While a Unique Enemy is in your Presence, Minions have #% increased maximum Life","better":1,"matchers":[{"string":"在傳奇頭目面前時,召喚物增加 #% 最大生命"},{"string":"在傳奇頭目面前時,召喚物減少 #% 最大生命","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3044748809"]}}} +{"ref":"While a Unique Enemy is in your Presence, Minions have #% increased Movement Speed","better":1,"matchers":[{"string":"在傳奇頭目面前時,召喚物增加 #% 移動速度"},{"string":"在傳奇頭目面前時,召喚物減少 #% 移動速度","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_93625449"]}}} +{"ref":"While a Unique Enemy is in your Presence, Minions take #% reduced Reflected Damage","better":-1,"matchers":[{"string":"在傳奇頭目面前時,召喚物增加承受 #% 反射傷害"},{"string":"在傳奇頭目面前時,召喚物減少承受 #% 反射傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1499657170"]},"inverted":true}} +{"ref":"While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target # additional nearby Enemy","better":1,"matchers":[{"string":"在傳奇頭目面前時,非瓦爾打擊技能瞄準 # 額外附近敵人"}],"trade":{"ids":{"implicit":["implicit.stat_1524679549"]}}} +{"ref":"While a Unique Enemy is in your Presence, Poisons you inflict deal Damage #% faster","better":1,"matchers":[{"string":"在傳奇頭目面前時,你造成的中毒傷害加速 #%"}],"trade":{"ids":{"implicit":["implicit.stat_3828039449"]}}} +{"ref":"While a Unique Enemy is in your Presence, Pride has #% increased Aura Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,驕傲增加 #% 光環效果"},{"string":"在傳奇頭目面前時,驕傲減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4039774101"]}}} +{"ref":"While a Unique Enemy is in your Presence, Projectiles Pierce # additional Targets","better":1,"matchers":[{"string":"在傳奇頭目面前時,投射物穿透 # 個額外目標"},{"string":"在傳奇頭目面前時,投射物穿透一個額外目標","value":1}],"trade":{"ids":{"implicit":["implicit.stat_3924473787"]}}} +{"ref":"While a Unique Enemy is in your Presence, Purity of Elements has #% increased Aura Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,元素淨化增加 #% 光環效果"},{"string":"在傳奇頭目面前時,元素淨化減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_348693938"]}}} +{"ref":"While a Unique Enemy is in your Presence, Purity of Fire has #% increased Aura Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,火焰淨化增加 #% 光環效果"},{"string":"在傳奇頭目面前時,火焰淨化減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1926772156"]}}} +{"ref":"While a Unique Enemy is in your Presence, Purity of Ice has #% increased Aura Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,冰霜淨化增加 #% 光環效果"},{"string":"在傳奇頭目面前時,冰霜淨化減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3499126604"]}}} +{"ref":"While a Unique Enemy is in your Presence, Purity of Lightning has #% increased Aura Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,閃電淨化增加 #% 光環效果"},{"string":"在傳奇頭目面前時,閃電淨化減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_908556575"]}}} +{"ref":"While a Unique Enemy is in your Presence, Regenerate #% of Life per second per Endurance Charge","better":1,"matchers":[{"string":"在傳奇頭目面前時,每顆耐力球每秒回復 #% 生命"}],"trade":{"ids":{"implicit":["implicit.stat_1123587207"]}}} +{"ref":"While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within # metre","better":1,"matchers":[{"string":"在傳奇頭目面前時,你造成的感電擴散至 # 米內的其它敵人"}],"trade":{"ids":{"implicit":["implicit.stat_2868404935"]}}} +{"ref":"While a Unique Enemy is in your Presence, Spirit Offering has #% increased Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,靈魂奉獻增加 #% 效果"},{"string":"在傳奇頭目面前時,靈魂奉獻減少 #% 效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2814835155"]}}} +{"ref":"While a Unique Enemy is in your Presence, Tempest Shield has #% increased Buff Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,暴風之盾增加 #% 增益效果"},{"string":"在傳奇頭目面前時,暴風之盾減少 #% 增益效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_942478380"]}}} +{"ref":"While a Unique Enemy is in your Presence, Withered you Inflict expires #% faster","better":1,"matchers":[{"string":"在傳奇頭目面前時,你造成的凋零加速 #% 失效"},{"string":"在傳奇頭目面前時,你造成的凋零減緩 #% 失效","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3262721796"]}}} +{"ref":"While a Unique Enemy is in your Presence, Wrath has #% increased Aura Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,雷霆增加 #% 光環效果"},{"string":"在傳奇頭目面前時,雷霆減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_399528178"]}}} +{"ref":"While a Unique Enemy is in your Presence, Your Offerings have #% increased Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,你的奉獻增加 #% 效果"},{"string":"在傳奇頭目面前時,增加 #% 奉獻效果"},{"string":"在傳奇頭目面前時,你的奉獻減少 #% 效果","negate":true},{"string":"在傳奇頭目面前時,減少 #% 奉獻效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1132843482"]}}} +{"ref":"While a Unique Enemy is in your Presence, Zealotry has #% increased Aura Effect","better":1,"matchers":[{"string":"在傳奇頭目面前時,狂熱增加 #% 光環效果"},{"string":"在傳奇頭目面前時,狂熱減少 #% 光環效果","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3550578554"]}}} +{"ref":"While at maximum Frenzy Charges, Attacks Poison Enemies","better":1,"matchers":[{"string":"最大狂怒球時,攻擊造成敵人中毒"}],"trade":{"ids":{"explicit":["explicit.stat_413362507"]}}} +{"ref":"While in Her Embrace, take #% of your total Maximum Life and Energy Shield as Fire Damage per second per Level","better":1,"matchers":[{"string":"當有女神擁抱時,每等級每秒受到 #% 你的總最大生命和能量護盾的火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2442112158"]}}} +{"ref":"While Minions have Energy Shield, their Hits Ignore Monster Elemental Resistances","better":1,"matchers":[{"string":"召喚物有能量護盾時,他們的擊中無視怪物的元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_1360359242"]}}} +{"ref":"While there are at least five nearby Allies, you and nearby Allies have Onslaught","better":1,"matchers":[{"string":"當附近至少有 5 個友方,你和附近友方獲得猛攻"}],"trade":{"ids":{"explicit":["explicit.stat_3730497630"]}}} +{"ref":"Wicked Ward","better":1,"matchers":[{"string":"惡毒牢房"}],"trade":{"ids":{"explicit":["explicit.stat_1109343199"],"scourge":["scourge.stat_1109343199"]}}} +{"ref":"Wild Strike's Beam Chains an additional time","better":1,"matchers":[{"string":"野性打擊的光束連鎖額外 # 次"},{"string":"野性打擊的光束連鎖額外 1 次","value":1}],"trade":{"ids":{"enchant":["enchant.stat_2447447843"]}}} +{"ref":"Wind Dancer","better":1,"matchers":[{"string":"風魔舞者"}],"trade":{"ids":{"explicit":["explicit.stat_4170338365"],"scourge":["scourge.stat_4170338365"]}}} +{"ref":"Winter Orb deals #% increased Damage","better":1,"matchers":[{"string":"凜冬之球增加 #% 傷害"},{"string":"凜冬之球減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2200744772"]}}} +{"ref":"Winter Orb has #% increased Area of Effect per Stage","better":1,"matchers":[{"string":"凜冬之球每層增加 #% 範圍效果"},{"string":"凜冬之球每層減少 #% 範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1017161280"]}}} +{"ref":"Winter Orb has +# Maximum Stages","better":1,"matchers":[{"string":"凜冬之球 # 最大疊層"}],"trade":{"ids":{"enchant":["enchant.stat_3734339018"]}}} +{"ref":"Wintertide Brand deals #% increased Damage","better":1,"matchers":[{"string":"冬潮烙印增加 #% 傷害"},{"string":"冬潮烙印減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_770334536"]}}} +{"ref":"Wintertide Brand has #% increased Chill Effect","better":1,"matchers":[{"string":"冬潮烙印增加 #% 冰緩效果"},{"string":"冬潮烙印減少 #% 冰緩效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1831757355"],"enchant":["enchant.stat_1831757355"]}}} +{"ref":"Wintertide Brand has +# to maximum Stages","better":1,"matchers":[{"string":"冬潮烙印 # 最大疊層"}],"trade":{"ids":{"enchant":["enchant.stat_35081783"]}}} +{"ref":"With # Corrupted Items Equipped: 50% of Chaos Damage taken does not bypass Energy Shield, and 50% of Physical Damage taken bypasses Energy Shield","better":1,"matchers":[{"string":"裝備 # 個已汙染物品時:50% 承受的混沌傷害不會無視能量護盾,且 50% 承受的物理傷害無視能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_3225265684"]}}} +{"ref":"With # Corrupted Items Equipped: Life Leech recovers based on your Chaos Damage instead","better":1,"matchers":[{"string":"裝備 # 個已汙染物品時:生命偷取只以造成的混沌傷害計算"}],"trade":{"ids":{"explicit":["explicit.stat_4192058279"]}}} +{"ref":"With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain # of its Modifiers for 20 seconds","better":1,"matchers":[{"string":"範圍內配置 4 個核心天賦,當你擊殺稀有怪物時,你會獲得它其中 # 個詞綴 20 秒"}],"trade":{"ids":{"explicit":["explicit.stat_3807518091"]}}} +{"ref":"With 40 Intelligence in Radius, #% of Glacial Cascade Physical Damage\nConverted to Cold Damage","better":1,"matchers":[{"string":"若範圍內含 40 點智慧,#% 冰川之刺的物理傷害轉化為冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1478305007"]}}} +{"ref":"With 40 Intelligence in Radius, Glacial Cascade has an additional Burst","better":1,"matchers":[{"string":"若範圍內含 40 點智慧,冰川之刺可以額外爆炸 # 次"},{"string":"若範圍內含 40 點智慧,冰川之刺可以額外爆炸一次","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1367987042"]}}} +{"ref":"With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning","better":1,"matchers":[{"string":"若範圍內含總 40 智慧和敏捷,三相技能不能選擇閃電"}],"trade":{"ids":{"explicit":["explicit.stat_637033100"]}}} +{"ref":"With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage","better":1,"matchers":[{"string":"若範圍內含總 40 敏捷和力量,三相技能造成 50% 更少閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2053992416"]}}} +{"ref":"With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire","better":1,"matchers":[{"string":"若範圍內含總 40 智慧和敏捷,三相技能不能選擇火焰"}],"trade":{"ids":{"explicit":["explicit.stat_63111803"]}}} +{"ref":"With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage","better":1,"matchers":[{"string":"若範圍內含總 40 智慧和敏捷,三相技能造成 50% 更少火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1813069390"]}}} +{"ref":"With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold","better":1,"matchers":[{"string":"若範圍內含總 40 力量和智慧,三相技能不能選擇冰冷"}],"trade":{"ids":{"explicit":["explicit.stat_2864618930"]}}} +{"ref":"With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage","better":1,"matchers":[{"string":"若範圍內含總 40 力量和智慧,三相技能造成 50% 更少冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3286480398"]}}} +{"ref":"With a Ghastly Eye Jewel Socketed, Minions have +# to Accuracy Rating","better":1,"matchers":[{"string":"插槽中有 1 顆極懼之眼珠寶,召喚物 # 點命中"}],"trade":{"ids":{"explicit":["explicit.stat_2388362438"]}}} +{"ref":"With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells","better":1,"matchers":[{"string":"插槽中有 1 顆催眠之眼珠寶,法術擊中時獲得秘能波動"}],"trade":{"ids":{"explicit":["explicit.stat_3153744598"]}}} +{"ref":"With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks","better":1,"matchers":[{"string":"裝備殺戮之眼珠寶時,攻擊擊中時威嚇敵人 4 秒"}],"trade":{"ids":{"explicit":["explicit.stat_642457541"]}}} +{"ref":"With a Murderous Eye Jewel Socketed, Melee Attacks grant # Rage on Hit","better":1,"matchers":[{"string":"裝備殺戮之眼珠寶時,近戰攻擊擊中會獲得 # 層盛怒"}],"trade":{"ids":{"explicit":["explicit.stat_3892691596"]}}} +{"ref":"With a Murderous Eye Jewel Socketed, Melee Hits have #% chance to Fortify","better":1,"matchers":[{"string":"裝備殺戮之眼珠寶時,近戰擊中有 #% 機率護體"}],"trade":{"ids":{"explicit":["explicit.stat_186482813"]}}} +{"ref":"With a Searching Eye Jewel Socketed, Attacks have #% chance to grant Onslaught On Kill","better":1,"matchers":[{"string":"裝備勘查之眼珠寶時,攻擊擊殺時有 #% 機率獲得猛攻"}],"trade":{"ids":{"explicit":["explicit.stat_2863332749"]}}} +{"ref":"With a Searching Eye Jewel Socketed, Blind Enemies for 4 seconds on Hit with Attacks","better":1,"matchers":[{"string":"裝備勘查之眼珠寶時,攻擊擊中時致盲敵人 4 秒"}],"trade":{"ids":{"explicit":["explicit.stat_2044840211"]}}} +{"ref":"With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks","better":1,"matchers":[{"string":"裝備勘查之眼珠寶時,攻擊擊中時癱瘓敵人 4 秒"}],"trade":{"ids":{"explicit":["explicit.stat_2750004091"]}}} +{"ref":"With at least 1000 Strength, #% of Damage dealt by your Raised Zombies is Leeched to you as Life","dp":true,"better":1,"matchers":[{"string":"當力量超過 1000 時,召喚殭屍所造成傷害的 #% 為你偷取生命"}],"trade":{"ids":{"explicit":["explicit.stat_2802263253"]}}} +{"ref":"With at least 40 Dexterity in Radius, Animate Weapon can Animate up to # Ranged Weapons","better":1,"matchers":[{"string":"若範圍內含 40 點敏捷,幻化武器可以幻化最多 # 把遠程武器"}],"trade":{"ids":{"explicit":["explicit.stat_3585572043"]}}} +{"ref":"With at least 40 Dexterity in Radius, Barrage fires an additional projectile simultaneously on the first and final attacks","better":1,"matchers":[{"string":"若範圍內含 40 點敏捷,彈幕的第一次最後一次攻擊附加 # 個額外的投射物"},{"string":"若範圍內含 40 點敏捷,彈幕的第一次和最後一次攻擊附加一個額外的投射物","value":1}],"trade":{"ids":{"explicit":["explicit.stat_630867098"]}}} +{"ref":"With at least 40 Dexterity in Radius, Dual Strike deals Off-Hand Splash Damage\nto surrounding targets","better":1,"matchers":[{"string":"若範圍內含 40 敏捷,\n雙持打擊時副手武器對附近敵人造成擴散傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3603019813"]}}} +{"ref":"With at least 40 Dexterity in Radius, Dual Strike deals Splash Damage\nto surrounding targets while wielding a Mace","better":1,"matchers":[{"string":"若範圍內含 40 敏捷,\n持 1 把錘時雙持打擊對附近目標造成擴散傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2562474285"]}}} +{"ref":"With at least 40 Dexterity in Radius, Dual Strike has #% increased\nAccuracy Rating while wielding a Sword","better":1,"matchers":[{"string":"若範圍內含 40 敏捷,\n持 1 把劍時雙持打擊增加 #% 命中值"},{"string":"若範圍內含 40 敏捷,\n持 1 把劍時雙持打擊減少 #% 命中值","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2869420801"]}}} +{"ref":"With at least 40 Dexterity in Radius, Dual Strike has #% increased Attack\nSpeed while wielding a Claw","better":1,"matchers":[{"string":"若範圍內含 40 敏捷,\n持 1 把爪時雙持打擊增加 #% 攻擊速度"},{"string":"若範圍內含 40 敏捷,\n持 1 把爪時雙持打擊減少 #% 攻擊速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1795260970"]}}} +{"ref":"With at least 40 Dexterity in Radius, Dual Strike has +#% to Critical Strike\nMultiplier while wielding a Dagger","better":1,"matchers":[{"string":"若範圍內含 40 敏捷,\n持 1 把匕首時雙持打擊 #% 暴擊加成"}],"trade":{"ids":{"explicit":["explicit.stat_1503812817"]}}} +{"ref":"With at least 40 Dexterity in Radius, Dual Strike has a #% chance\nto deal Double Damage with the Main-Hand Weapon","better":1,"matchers":[{"string":"若範圍內含 40 敏捷,\n雙持打擊時主手武器有 #% 機率造成雙倍傷害"},{"string":"若範圍內含 40 敏捷,\n雙持打擊時主手武器造成雙倍傷害","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3765671129"]}}} +{"ref":"With at least 40 Dexterity in Radius, Dual Strike Hits Intimidate Enemies for\n4 seconds while wielding an Axe","better":1,"matchers":[{"string":"若範圍內含 40 敏捷,\n持 1 把斧時雙持打擊擊中威嚇敵人 4 秒"}],"trade":{"ids":{"explicit":["explicit.stat_100088509"]}}} +{"ref":"With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains #% increased Damage each time it Hits","better":1,"matchers":[{"string":"若範圍內含 40 點敏捷,靈體投擲每次擊中時增加 #% 傷害"}],"trade":{"ids":{"explicit":["explicit.stat_811386429"]}}} +{"ref":"With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a circle","better":1,"matchers":[{"string":"若範圍內含 40 點敏捷,虛空匕首以圓形型式發射投射物"}],"trade":{"ids":{"explicit":["explicit.stat_2511280084"]}}} +{"ref":"With at least 40 Dexterity in Radius, Frost Blades has #% increased Projectile Speed","better":1,"matchers":[{"string":"若範圍內含 40 敏捷,增加 #% 冰霜之刃的投射物速度"},{"string":"若範圍內含 40 敏捷,減少 #% 冰霜之刃的投射物速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2092708508"]}}} +{"ref":"With at least 40 Dexterity in Radius, Galvanic Arrow deals #% increased Area Damage","better":1,"matchers":[{"string":"若範圍內含 40 點敏捷,電流箭矢增加 #% 範圍傷害"},{"string":"若範圍內含 40 點敏捷,電流箭矢減少 #% 範圍傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1170556324"]}}} +{"ref":"With at least 40 Dexterity in Radius, Galvanic Arrow has #% increased Area of Effect","better":1,"matchers":[{"string":"若範圍內含 40 點敏捷,電流箭矢增加 #% 範圍效果"}],"trade":{"ids":{"explicit":["explicit.stat_3945934607"]}}} +{"ref":"With at least 40 Dexterity in Radius, Ice Shot has #% increased Area of Effect","better":1,"matchers":[{"string":"若範圍內含 40 點敏捷,冰霜射擊增加 #% 範圍"}],"trade":{"ids":{"explicit":["explicit.stat_3442130499"]}}} +{"ref":"With at least 40 Dexterity in Radius, Ice Shot Pierces an additional Target","better":1,"matchers":[{"string":"若範圍內含 40 點敏捷,冰霜射擊額外穿透 # 個目標"},{"string":"若範圍內含 40 點敏捷,冰霜射擊額外穿透一個目標","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3103494675"]}}} +{"ref":"With at least 40 Dexterity in Radius, Melee Damage\ndealt by Frost Blades Penetrates #% Cold Resistance","better":1,"matchers":[{"string":"若範圍內含 40 點敏捷,冰霜之刃造成\n的近戰傷害穿透 #% 冰冷抗性"}],"trade":{"ids":{"explicit":["explicit.stat_2412100590"]}}} +{"ref":"With at least 40 Dexterity in Radius, Viper Strike deals #% increased Damage with Hits and Poison for each Poison on the Enemy","better":1,"matchers":[{"string":"範圍內至少有 40 點敏捷時,毒蛇打擊根據敵人身上每個中毒增加 #% 擊中和中毒傷害"}],"trade":{"ids":{"explicit":["explicit.stat_695031402"]}}} +{"ref":"With at least 40 Dexterity in Radius, Viper Strike has a #% chance per Poison on Enemy to grant Unholy Might for 4 seconds on Hit","better":1,"matchers":[{"string":"若範圍內含 40 點敏捷,毒蛇打擊每次造成中毒時有 #% 機率獲得 4 秒不潔之力"},{"string":"若範圍內含 40 點敏捷,毒蛇打擊每次造成中毒時獲得 4 秒不潔之力","value":100}],"trade":{"ids":{"explicit":["explicit.stat_235847153"]}}} +{"ref":"With at least 40 Intelligence in Radius, #% increased Freezing Pulse Damage if\nyou've Shattered an Enemy Recently","better":1,"matchers":[{"string":"若範圍內含 40 點智慧,近期你若粉碎冰凍敵人,冰霜脈衝增加 #% 傷害"},{"string":"若範圍內含 40 點智慧,近期你若粉碎冰凍敵人,冰霜脈衝減少 #% 傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2074744008"]}}} +{"ref":"With at least 40 Intelligence in Radius, #% of Damage taken Recouped as Mana if you've Warcried Recently","better":1,"matchers":[{"string":"若範圍內至少有 40 點智慧,若你近期有使用戰吼,#% 承受的傷害補償為魔力"}],"trade":{"ids":{"explicit":["explicit.stat_303219716"]}}} +{"ref":"With at least 40 Intelligence in Radius, Blight has #% increased Cast Speed","better":1,"matchers":[{"string":"若範圍內含 40 點智慧時,凋落增加 #% 施放速度"},{"string":"若範圍內含 40 點智慧時,凋落減少 #% 施放速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_222829382"]}}} +{"ref":"With at least 40 Intelligence in Radius, Blight has #% increased Hinder Duration","better":1,"matchers":[{"string":"若範圍內含 40 點智慧時,萎滅增加 #% 緩速時間"}],"trade":{"ids":{"explicit":["explicit.stat_2181499453"]}}} +{"ref":"With at least 40 Intelligence in Radius, Blight inflicts Withered for # seconds","better":1,"matchers":[{"string":"若範圍內含 40 點智慧時,萎滅造成凋零 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_3881647885"]}}} +{"ref":"With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in its Area\nWith at least 40 Intelligence in Radius, Cold Snap's Cooldown can be bypassed by Power Charges instead of Frenzy Charges","better":1,"matchers":[{"string":"若範圍內含 40 點智慧,敵人死於霜暴範圍時獲得暴擊球,而不是狂怒球\n若範圍內含 40 點智慧,霜暴的冷卻時間可以使用暴擊球無視,而不是狂怒球"}],"trade":{"ids":{"explicit":["explicit.stat_2560038623"]}}} +{"ref":"With at least 40 Intelligence in Radius, Discharge Cooldown is # ms","better":1,"matchers":[{"string":"若範圍內含 40 點智慧,解放冷卻時間為 # 毫秒"}],"trade":{"ids":{"explicit":["explicit.stat_1213084913"]}}} +{"ref":"With at least 40 Intelligence in Radius, Discharge deals #% more Damage","better":1,"matchers":[{"string":"若範圍內含 40 點智慧,解放造成 #% 更多傷害"},{"string":"若範圍內含 40 點智慧,解放造成 #% 更少傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2818653316"]}}} +{"ref":"With at least 40 Intelligence in Radius, Discharge has #% more Area of Effect","better":1,"matchers":[{"string":"若範圍內含 40 點智慧,解放有 #% 更多範圍效果"},{"string":"若範圍內含 40 點智慧,解放有 #% 更少範圍效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2045330446"]}}} +{"ref":"With at least 40 Intelligence in Radius, Fireball cannot ignite","better":1,"matchers":[{"string":"若範圍內含 40 點智慧,火球不能點燃"}],"trade":{"ids":{"explicit":["explicit.stat_480975218"]}}} +{"ref":"With at least 40 Intelligence in Radius, Fireball has +#% chance to inflict scorch","better":1,"matchers":[{"string":"若範圍內含 40 點智慧,火球 #% 機率造成焦灼"}],"trade":{"ids":{"explicit":["explicit.stat_1482194094"]}}} +{"ref":"With at least 40 Intelligence in Radius, Fireball Projectiles gain Area as they travel farther, up to #% increased Area of Effect","better":1,"matchers":[{"string":"若範圍內含 40 智慧,火球投射物爆炸範圍將隨著飛行距離提升,最多增加 #% 範圍"},{"string":"若範圍內含 40 智慧,火球投射物爆炸範圍將隨著飛行距離減少,最多減少 #% 範圍","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_24977021"]}}} +{"ref":"With at least 40 Intelligence in Radius, Freezing Pulse fires an additional Projectile","better":1,"matchers":[{"string":"若範圍內含 40 點智慧,冰霜脈衝額外發射 # 顆投射物"},{"string":"若範圍內含 40 點智慧,冰霜脈衝額外發射 1 顆投射物","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2098320128"]}}} +{"ref":"With at least 40 Intelligence in Radius, Frostbolt fires an additional Projectile","better":1,"matchers":[{"string":"若範圍內含 40 點智慧,寒冰彈額外發射 # 枚投射物"},{"string":"若範圍內含 40 點智慧,寒冰彈額外發射 1 枚投射物","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3790108551"]}}} +{"ref":"With at least 40 Intelligence in Radius, Frostbolt Projectiles gain #% increased Projectile Speed per second","better":1,"matchers":[{"string":"若範圍內含 40 點智慧,\n寒冰彈每秒增加 #% 投射物速度"},{"string":"若範圍內含 40 點智慧,\n寒冰彈每秒減少 #% 投射物速度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2727977666"]}}} +{"ref":"With at least 40 Intelligence in Radius, Projectiles gain radius as they travel farther, up to a maximum of +# metre to radius","better":1,"matchers":[{"string":"若範圍內含 40 智慧,火球投射物爆炸範圍將隨著飛行距離提升,最多 # 米範圍"}],"trade":{"ids":{"explicit":["explicit.stat_1351893427"]}}} +{"ref":"With at least 40 Intelligence in Radius, Raised\nZombies' Slam Attack has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"若範圍內含 40 點智慧,\n復甦的殭屍重擊攻擊增加 #% 冷卻恢復速度"}],"trade":{"ids":{"explicit":["explicit.stat_1097026492"]}}} +{"ref":"With at least 40 Intelligence in Radius, Raised Spectres have a #% chance to gain Soul Eater for 20 seconds on Kill","better":1,"matchers":[{"string":"若範圍內含 40 點智慧,喚醒幽魂擊殺時有 #% 機率獲得噬魂者,持續 20 秒"}],"trade":{"ids":{"explicit":["explicit.stat_2390273715"]}}} +{"ref":"With at least 40 Intelligence in Radius, Raised Zombies' Slam\nAttack deals #% increased Damage","better":1,"matchers":[{"string":"若範圍內含 40 點智慧,\n復甦殭屍的重擊攻擊增加 #% 傷害"}],"trade":{"ids":{"explicit":["explicit.stat_781633505"]}}} +{"ref":"With at least 40 Intelligence in Radius, Rolling Magma\nhas #% increased Area of Effect per Chain","better":1,"matchers":[{"string":"若範圍內含 40 點智慧,\n熔岩翻騰每次連鎖增加 #% 範圍"},{"string":"若範圍內含 40 點智慧,\n熔岩翻騰每次連鎖減少 #% 範圍","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_160933750"]}}} +{"ref":"With at least 40 Intelligence in Radius, Rolling Magma deals #% more Damage","better":1,"matchers":[{"string":"若範圍內含 40 智慧,熔岩翻騰造成 #% 更多傷害"},{"string":"若範圍內含 40 智慧,熔岩翻騰造成 #% 更少傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3131110290"]}}} +{"ref":"With at least 40 Intelligence in Radius, Rolling Magma deals #% more Damage per Chain","better":1,"matchers":[{"string":"若範圍內含 40 智慧,每次連鎖熔岩翻騰造成 #% 更多傷害"},{"string":"若範圍內含 40 智慧,每次連鎖熔岩翻騰造成 #% 更少傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1141756390"]}}} +{"ref":"With at least 40 Intelligence in Radius, Rolling Magma fires an additional Projectile","better":1,"matchers":[{"string":"若範圍內含 40 點智慧,熔岩翻騰額外發射 # 枚投射物"},{"string":"若範圍內含 40 點智慧,熔岩翻騰額外發射 1 枚投射物","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2542542825"]}}} +{"ref":"With at least 40 Intelligence in Radius, Spark fires Projectiles in a circle","better":1,"matchers":[{"string":"若範圍內含 40 點智慧,電球以圓形型式發射投射物"}],"trade":{"ids":{"explicit":["explicit.stat_935386993"]}}} +{"ref":"With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to # Skeleton Mages","better":1,"matchers":[{"string":"若範圍內含 40 點智慧,召喚骷髏可以召喚最多 # 個骷髏法師"}],"trade":{"ids":{"explicit":["explicit.stat_3088991881"]}}} +{"ref":"With at least 40 Strength in Radius, #% increased\nRarity of Items dropped by Enemies Shattered by Glacial Hammer","better":1,"matchers":[{"string":"若範圍內含 40 點力量,被冰霜之錘擊碎的敵人增加 #% 物品稀有度"}],"trade":{"ids":{"explicit":["explicit.stat_1250317014"]}}} +{"ref":"With at least 40 Strength in Radius, #% of Glacial\nHammer Physical Damage Converted to Cold Damage","better":1,"matchers":[{"string":"若範圍內含 40 點力量,\n冰霜之錘 #% 的物理傷害轉換為冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3738331820"]}}} +{"ref":"With at least 40 Strength in Radius, Attacks Exerted by Infernal Cry deal #% more Damage with Ignite","better":1,"matchers":[{"string":"若範圍內至少有 40 點力量,煉獄戰吼竭盡的攻擊造成 #% 更多點燃傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2298311736"]}}} +{"ref":"With at least 40 Strength in Radius, Cleave has +0.1 metres to Radius per Nearby\nEnemy, up to a maximum of +1 metre","better":1,"matchers":[{"string":"若範圍內含 40 點力量,附近每個敵人\n使劈砍 +0.1 米範圍,最多 +1 米"}],"trade":{"ids":{"explicit":["explicit.stat_1539696482"]}}} +{"ref":"With at least 40 Strength in Radius, Combust is Disabled","better":1,"matchers":[{"string":"若範圍內至少有 40 點力量,戰燃失效"}],"trade":{"ids":{"explicit":["explicit.stat_2471517399"]}}} +{"ref":"With at least 40 Strength in Radius, Glacial Hammer deals\nCold-only Splash Damage to surrounding targets","better":1,"matchers":[{"string":"若範圍內含 40 點力量,\n冰霜之錘對附近敵人造成冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3565558422"]}}} +{"ref":"With at least 40 Strength in Radius, Ground Slam\nhas a #% increased angle","better":1,"matchers":[{"string":"若範圍內含 40 點力量,裂地之擊增加 #% 角度"},{"string":"若範圍內含 40 點力量,裂地之擊減少 #% 角度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_156016608"]}}} +{"ref":"With at least 40 Strength in Radius, Ground Slam has a #% chance\nto grant an Endurance Charge when you Stun an Enemy","better":1,"matchers":[{"string":"若範圍內含 40 點力量,\n裂地之擊在暈眩敵人時有 #% 機率獲得耐力球"},{"string":"若範圍內含 40 點力量,\n裂地之擊在暈眩敵人時獲得耐力球"}],"trade":{"ids":{"explicit":["explicit.stat_1559361866"]}}} +{"ref":"With at least 40 Strength in Radius, Heavy Strike has a \n#% chance to deal Double Damage","better":1,"matchers":[{"string":"若範圍內含 40 點力量,沉重之擊有 #% 機率造成 2 倍傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1025503586"]}}} +{"ref":"With at least 40 Strength in Radius, Hits with Cleave Fortify","better":1,"matchers":[{"string":"範圍內至少有 40 點力量,使用劈砍擊中護體"}],"trade":{"ids":{"explicit":["explicit.stat_1248507170"]}}} +{"ref":"With at least 40 Strength in Radius, Hits with Vigilant Strike Fortify you and Nearby Allies for # seconds","better":1,"matchers":[{"string":"範圍內至少有 40 點力量,使用戒備打擊擊中護體你和附近友方 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_530280833"]}}} +{"ref":"With at least 40 Strength in Radius, Molten Strike fires #% more Projectiles","better":1,"matchers":[{"string":"若範圍內含 40 力量,熔岩之擊發射 #% 更多投射物"},{"string":"若範圍內含 40 力量,熔岩之擊發射 #% 更少投射物","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_786380548"]}}} +{"ref":"With at least 40 Strength in Radius, Molten Strike fires an additional Projectile","better":1,"matchers":[{"string":"若範圍內含 40 點力量,熔岩之擊額外發射 # 枚投射物"},{"string":"若範圍內含 40 點力量,熔岩之擊額外發射 1 枚投射物","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2845889407"]}}} +{"ref":"With at least 40 Strength in Radius, Molten Strike has #% increased Area of Effect","better":1,"matchers":[{"string":"若範圍內含 40 點力量,熔岩之擊增加 #% 範圍"}],"trade":{"ids":{"explicit":["explicit.stat_1163758055"]}}} +{"ref":"With at least 40 Strength in Radius, Molten Strike Projectiles Chain +# time","better":1,"matchers":[{"string":"若範圍內含 40 力量,熔岩之擊投射物連鎖 # 次"}],"trade":{"ids":{"explicit":["explicit.stat_2295439133"]}}} +{"ref":"With at least 40 Strength in Radius, Molten Strike Projectiles Chain on impacting ground","better":1,"matchers":[{"string":"若範圍內含 40 力量,熔岩之擊投射物擊中地面時連鎖"}],"trade":{"ids":{"explicit":["explicit.stat_670814047"]}}} +{"ref":"Wither has #% increased Area of Effect","better":1,"matchers":[{"string":"死亡凋零增加 #% 範圍效果"},{"string":"死亡凋零減少 #% 範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1810898461"]}}} +{"ref":"Wither has #% increased Duration","better":1,"matchers":[{"string":"增加 #% 死亡凋零持續時間"},{"string":"減少 #% 死亡凋零持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_447560345"]}}} +{"ref":"Withered does not expire on Enemies Ignited by you","better":1,"matchers":[{"string":"被你點燃的敵人身上的凋零不會失效"}],"trade":{"ids":{"explicit":["explicit.stat_279110104"]}}} +{"ref":"Withered you Inflict expires #% faster","better":1,"matchers":[{"string":"你造成的凋零加速 #% 失效"},{"string":"你造成的凋零減緩 #% 失效","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1625982517"]}}} +{"ref":"Withering Step has #% increased Elusive Effect","better":1,"matchers":[{"string":"凋零之步增加 #% 靈巧效果"},{"string":"凋零之步減少 #% 靈巧效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_281958409"]}}} +{"ref":"Withering Step inflicts # additional Withered Debuffs","better":1,"matchers":[{"string":"凋零之步造成 # 次額外凋零減益效果"}],"trade":{"ids":{"enchant":["enchant.stat_3782733370"]}}} +{"ref":"Wrath has #% increased Aura Effect","better":1,"matchers":[{"string":"雷霆增加 #% 光環效果"},{"string":"雷霆減少 #% 光環效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2181791238"],"implicit":["implicit.stat_2181791238"],"fractured":["fractured.stat_2181791238"]}}} +{"ref":"Wrath has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"雷霆增加 #% 魔力保留效用"},{"string":"雷霆減少 #% 魔力保留效用","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1761642973","explicit.stat_3444518809"],"enchant":["enchant.stat_1761642973","enchant.stat_3444518809"]}}} +{"ref":"Wrath has no Reservation","better":1,"matchers":[{"string":"雷霆無保留"}],"trade":{"ids":{"explicit":["explicit.stat_1865987277"]}}} +{"ref":"You always Ignite while Burning","better":1,"matchers":[{"string":"燃燒時造成點燃"}],"trade":{"ids":{"explicit":["explicit.stat_2636728487"]}}} +{"ref":"You and Enemies in your Presence count as moving while affected by Elemental Ailments","better":1,"matchers":[{"string":"受到元素異常狀態時,你和你視線中的敵人被視為正在移動"}],"trade":{"ids":{"explicit":["explicit.stat_113536037"]}}} +{"ref":"You and nearby Allies deal #% increased Damage","better":1,"matchers":[{"string":"你和附近友方增加 #% 傷害"},{"string":"你和附近友方減少 #% 傷害","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1419713278"]}}} +{"ref":"You and nearby allies gain #% increased Damage","better":1,"matchers":[{"string":"你跟友方增加 #% 傷害"}],"trade":{"ids":{"explicit":["explicit.stat_637766438"]}}} +{"ref":"You and Nearby Allies have # to # added Chaos Damage per White Socket","better":1,"matchers":[{"string":"每個白色插槽使你和附近友方附加 # 至 # 混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3232695173"]}}} +{"ref":"You and Nearby Allies have # to # added Cold Damage per Green Socket","better":1,"matchers":[{"string":"每個綠色插槽使你和附近友方附加 # 至 # 冰冷傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2665149933"]}}} +{"ref":"You and Nearby Allies have # to # added Fire Damage per Red Socket","better":1,"matchers":[{"string":"每個紅色插槽使你和附近友方附加 # 至 # 火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1666896662"]}}} +{"ref":"You and Nearby Allies have # to # added Lightning Damage per Blue Socket","better":1,"matchers":[{"string":"每個藍色插槽使你和附近友方附加 # 至 # 閃電傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3726585224"]}}} +{"ref":"You and Nearby Allies have #% increased Item Rarity","better":1,"matchers":[{"string":"你和附近友方增加 #% 物品稀有度"},{"string":"你和附近友方減少 #% 物品稀有度","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_549203380"]}}} +{"ref":"You and nearby Allies have +#% to Elemental Resistances","better":1,"matchers":[{"string":"你和附近友方 #% 元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_319842716"]}}} +{"ref":"You and nearby Allies have 30% increased Mana Regeneration Rate","better":1,"matchers":[{"string":"你和附近友方減少 30% 魔力回復率","value":-1},{"string":"你和附近友方增加 30% 魔力回復率","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2936084533"]}}} +{"ref":"You and your Minions take #% reduced Reflected Damage","better":-1,"matchers":[{"string":"你和你的召喚物增加承受 #% 反射傷害"},{"string":"你和你的召喚物減少承受 #% 反射傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3577248251"],"implicit":["implicit.stat_3577248251"],"fractured":["fractured.stat_3577248251"]},"inverted":true}} +{"ref":"You and your Minions take #% reduced Reflected Elemental Damage","better":-1,"matchers":[{"string":"你和你的召喚物增加承受 #% 反射元素傷害"},{"string":"你和你的召喚物減少承受 #% 反射元素傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2160417795"],"fractured":["fractured.stat_2160417795"],"scourge":["scourge.stat_2160417795"]},"inverted":true}} +{"ref":"You and your Minions take #% reduced Reflected Physical Damage","better":-1,"matchers":[{"string":"你和你的召喚物增加承受 #% 反射物理傷害"},{"string":"你和你的召喚物減少承受 #% 反射物理傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_129035625"],"fractured":["fractured.stat_129035625"],"scourge":["scourge.stat_129035625"]},"inverted":true}} +{"ref":"You and your Totems Regenerate #% of Life per second for each Summoned Totem","better":1,"matchers":[{"string":"每個召喚的圖騰使你和你的圖騰每秒回復 #% 生命"}],"trade":{"ids":{"explicit":["explicit.stat_1496370423"]}}} +{"ref":"You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently","better":1,"matchers":[{"string":"若你近期沒有格擋,你會達到最大攻擊傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_2584264074"]}}} +{"ref":"You are at Maximum Chance to Block Spell Damage if you have not Blocked Recently","better":1,"matchers":[{"string":"若你近期沒有格擋,你為最大法術傷害格擋率"}],"trade":{"ids":{"explicit":["explicit.stat_1817677817"]}}} +{"ref":"You are Chilled when you are Poisoned","better":1,"matchers":[{"string":"當你中毒時你被冰緩"}],"trade":{"ids":{"explicit":["explicit.stat_1802660259"]}}} +{"ref":"You are Chilled while you are Bleeding","better":1,"matchers":[{"string":"當你流血時被冰緩"}],"trade":{"ids":{"explicit":["explicit.stat_67132951"]}}} +{"ref":"You are Crushed","better":1,"matchers":[{"string":"你被壓碎"}],"trade":{"ids":{"implicit":["implicit.stat_846313030"]}}} +{"ref":"You are Cursed with Conductivity","better":1,"matchers":[{"string":"你被導電詛咒"}],"trade":{"ids":{"scourge":["scourge.stat_4256430383"]}}} +{"ref":"You are Cursed with Despair","better":1,"matchers":[{"string":"你被絕望詛咒"}],"trade":{"ids":{"scourge":["scourge.stat_2177148618"]}}} +{"ref":"You are Cursed with Elemental Weakness","better":1,"matchers":[{"string":"你被元素要害詛咒"}],"trade":{"ids":{"scourge":["scourge.stat_916233227"]}}} +{"ref":"You are Cursed with Enfeeble","better":1,"matchers":[{"string":"你被衰弱詛咒"}],"trade":{"ids":{"scourge":["scourge.stat_2102270408"]}}} +{"ref":"You are Cursed with Flammability","better":1,"matchers":[{"string":"你被易燃詛咒"}],"trade":{"ids":{"scourge":["scourge.stat_469425157"]}}} +{"ref":"You are Cursed with Frostbite","better":1,"matchers":[{"string":"你被凍傷詛咒"}],"trade":{"ids":{"scourge":["scourge.stat_469418792"]}}} +{"ref":"You are Cursed with Temporal Chains","better":1,"matchers":[{"string":"你被時空鎖鏈詛咒"}],"trade":{"ids":{"scourge":["scourge.stat_226443538"]}}} +{"ref":"You are Cursed with Vulnerability","better":1,"matchers":[{"string":"你被脆弱詛咒"}],"trade":{"ids":{"explicit":["explicit.stat_694123963"],"scourge":["scourge.stat_3947740014"]}}} +{"ref":"You are Hexproof if you have a Magic Ring in right slot","better":1,"matchers":[{"string":"若你右戒指欄位為魔法戒指,你為無咒的"}],"trade":{"ids":{"explicit":["explicit.stat_165884462"]}}} +{"ref":"You are Immune to Ailments while Focused","better":1,"matchers":[{"string":"專注時你免疫異常狀態"}],"trade":{"ids":{"explicit":["explicit.stat_1766730250"],"crafted":["crafted.stat_1766730250"]}}} +{"ref":"You are Shocked during Effect, causing 50% increased Damage taken","better":1,"matchers":[{"string":"你在效果持續時間被感電,增加 50% 承受傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1187803783"]}}} +{"ref":"You are Unaffected by Bleeding if you've cast Vulnerability in the past 10 seconds","better":1,"matchers":[{"string":"若你過去 10 秒有施放過脆弱,你不會被流血影響"}],"trade":{"ids":{"explicit":["explicit.stat_971937289"]}}} +{"ref":"You are Unaffected by Bleeding while Leeching","better":1,"matchers":[{"string":"偷取時你不被流血影響"}],"trade":{"ids":{"explicit":["explicit.stat_2291122510"]}}} +{"ref":"You are Unaffected by Freeze if you've cast Frostbite in the past 10 seconds","better":1,"matchers":[{"string":"若你過去 10 秒有施放過凍傷,你不會被冰凍影響"}],"trade":{"ids":{"explicit":["explicit.stat_4194606073"]}}} +{"ref":"You are Unaffected by Ignite if you've cast Flammability in the past 10 seconds","better":1,"matchers":[{"string":"若你過去 10 秒有施放過易燃,你不會被點燃影響"}],"trade":{"ids":{"explicit":["explicit.stat_40907696"]}}} +{"ref":"You are Unaffected by Shock if you've cast Conductivity in the past 10 seconds","better":1,"matchers":[{"string":"若你過去 10 秒有施放過導電,你不會被感電影響"}],"trade":{"ids":{"explicit":["explicit.stat_2517037025"]}}} +{"ref":"You can apply # additional Curses","better":1,"matchers":[{"string":"你可以少造成 1 個詛咒","value":-1},{"string":"你可以造成 # 個額外詛咒"},{"string":"你可以造成 1 個額外詛咒","value":1}],"trade":{"ids":{"explicit":["explicit.stat_30642521"],"implicit":["implicit.stat_30642521"],"fractured":["fractured.stat_30642521"],"scourge":["scourge.stat_30642521"],"crafted":["crafted.stat_30642521"]}}} +{"ref":"You can apply an additional Curse while affected by Malevolence","better":1,"matchers":[{"string":"被惡意影響時,你可以套用 # 個額外詛咒"},{"string":"被惡意影響時,你可以套用 1 個額外詛咒","value":1}],"trade":{"ids":{"explicit":["explicit.stat_4102244881"]}}} +{"ref":"You can apply an additional Curse while at maximum Power Charges","better":1,"matchers":[{"string":"當暴擊球達最大數量時,你可以施放 # 個額外的詛咒"},{"string":"當暴擊球達最大數量時,你可以施放 1 個額外的詛咒","value":1}],"trade":{"ids":{"explicit":["explicit.stat_761598374"]}}} +{"ref":"You can be Touched by Tormented Spirits","better":1,"matchers":[{"string":"你可以被罪魂觸碰"}],"trade":{"ids":{"explicit":["explicit.stat_4197792189"]}}} +{"ref":"You can Cast an additional Brand","better":1,"matchers":[{"string":"你可以施放 # 個額外烙印"},{"string":"你可以施放 1 個額外烙印","value":1}],"trade":{"ids":{"explicit":["explicit.stat_708630863"]}}} +{"ref":"You can catch Corrupted Fish","better":1,"matchers":[{"string":"你可以捕獲汙染魚"}],"trade":{"ids":{"implicit":["implicit.stat_2451060005"]}}} +{"ref":"You can catch Exotic Fish","better":1,"matchers":[{"string":"你可以捕獲外來魚種"}],"trade":{"ids":{"explicit":["explicit.stat_1471580517"]}}} +{"ref":"You can have an Offering of each type","better":1,"matchers":[{"string":"你可以擁有每種奉獻效果"}],"trade":{"ids":{"explicit":["explicit.stat_230941555"]}}} +{"ref":"You can inflict an additional Ignite on each Enemy","better":1,"matchers":[{"string":"你可以對敵人造成額外 # 個點燃效果"},{"string":"你可以對敵人造成額外 1 個點燃效果","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2837603657"]}}} +{"ref":"You can only deal Damage with this Weapon or Ignite","better":1,"matchers":[{"string":"只能使用這個武器造成傷害並點燃"}],"trade":{"ids":{"explicit":["explicit.stat_3128318472"]}}} +{"ref":"You can only Socket Corrupted Gems in this item","better":1,"matchers":[{"string":"此物品只能插入腐化技能寶石"}],"trade":{"ids":{"explicit":["explicit.stat_608438307"]}}} +{"ref":"You can't deal Damage with your Skills yourself","better":1,"matchers":[{"string":"你的技能不能造成傷害"}],"trade":{"ids":{"scourge":["scourge.stat_2248945598"]}}} +{"ref":"You cannot be Chilled for # second after being Chilled","better":1,"matchers":[{"string":"在被冰緩後你有 # 秒不會被冰緩"}],"trade":{"ids":{"explicit":["explicit.stat_2306924373"]}}} +{"ref":"You cannot be Cursed with Silence","better":1,"matchers":[{"string":"你不會被沉默"}],"trade":{"ids":{"explicit":["explicit.stat_1654414582"],"implicit":["implicit.stat_1654414582"]}}} +{"ref":"You cannot be Frozen for # second after being Frozen","better":1,"matchers":[{"string":"在被冰凍後你有 # 秒不會被冰凍"}],"trade":{"ids":{"explicit":["explicit.stat_3612464552"]}}} +{"ref":"You cannot be Hindered","better":1,"matchers":[{"string":"你不能被阻礙"}],"trade":{"ids":{"explicit":["explicit.stat_721014846"],"implicit":["implicit.stat_721014846"]}}} +{"ref":"You cannot be Ignited for # second after being Ignited","better":1,"matchers":[{"string":"在被點燃後你有 # 秒不會點燃"}],"trade":{"ids":{"explicit":["explicit.stat_947072590"]}}} +{"ref":"You cannot be Maimed","better":1,"matchers":[{"string":"#% 機率避免癱瘓"},{"string":"你不能被癱瘓","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1126826428"],"implicit":["implicit.stat_1126826428"]}}} +{"ref":"You cannot be Shocked for # second after being Shocked","better":1,"matchers":[{"string":"在被感電後你有 # 秒不會被感電"}],"trade":{"ids":{"explicit":["explicit.stat_215346464"]}}} +{"ref":"You cannot be Shocked while at maximum Endurance Charges","better":1,"matchers":[{"string":"你在最大耐力球時不會被感電"}],"trade":{"ids":{"explicit":["explicit.stat_798111687"]}}} +{"ref":"You cannot be Shocked while Frozen","better":1,"matchers":[{"string":"你冰凍時不會被感電"}],"trade":{"ids":{"explicit":["explicit.stat_798853218"]}}} +{"ref":"You cannot be Stunned while at maximum Endurance Charges","better":1,"matchers":[{"string":"耐力球數到達最大時不會被暈眩"}],"trade":{"ids":{"explicit":["explicit.stat_3780437763"]}}} +{"ref":"You cannot gain Rage during Soul Gain Prevention","better":1,"matchers":[{"string":"停止獲得靈魂持續時間你不能獲得盛怒"}],"trade":{"ids":{"explicit":["explicit.stat_683365179"]}}} +{"ref":"You cannot have non-Animated Minions","better":1,"matchers":[{"string":"你不能獲得非幻化的召喚物"}],"trade":{"ids":{"explicit":["explicit.stat_1220105149"]}}} +{"ref":"You cannot have non-Golem Minions","better":1,"matchers":[{"string":"你不能有非魔像的召喚物"}],"trade":{"ids":{"explicit":["explicit.stat_1826605755"]}}} +{"ref":"You cannot have Non-Spectre Minions","better":1,"matchers":[{"string":"你不能有非幽魂的召喚物"}],"trade":{"ids":{"explicit":["explicit.stat_2836980154"]}}} +{"ref":"You cannot Recharge Energy Shield","better":1,"matchers":[{"string":"不能充能能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_4164247992"],"scourge":["scourge.stat_4164247992"]}}} +{"ref":"You cannot Regenerate Energy Shield","better":1,"matchers":[{"string":"不能自動回復能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_1052583507"],"scourge":["scourge.stat_1052583507"]}}} +{"ref":"You count as on Full Life while you are Cursed with Vulnerability","better":1,"matchers":[{"string":"你被脆弱詛咒時,你視為滿血"}],"trade":{"ids":{"explicit":["explicit.stat_3257374551"]}}} +{"ref":"You count as on Low Life while you are Cursed with Vulnerability","better":1,"matchers":[{"string":"當你被脆弱詛咒時視為貧血"}],"trade":{"ids":{"explicit":["explicit.stat_2304300603"]}}} +{"ref":"You do not inherently take less Damage for having Fortification","better":1,"matchers":[{"string":"你有護體時,不再固有的承受更少傷害"}],"trade":{"ids":{"explicit":["explicit.stat_3560157887"]}}} +{"ref":"You gain a Grasping Vine when you take a Critical Strike","better":1,"matchers":[{"string":"當你承受暴擊時,你獲得 # 層緩速藤蔓"},{"string":"當你承受暴擊時,你獲得 1 層緩速藤蔓","value":1}],"trade":{"ids":{"explicit":["explicit.stat_375932027"]}}} +{"ref":"You gain Divinity for # seconds on reaching maximum Divine Charges\nLose all Divine Charges when you gain Divinity","better":1,"matchers":[{"string":"神聖充能到達最大疊層時,你獲得神聖 # 秒\n當你獲得神聖時失去所有神聖充能"}],"trade":{"ids":{"explicit":["explicit.stat_1174243390"]}}} +{"ref":"You gain Onslaught for # second per Endurance Charge when Hit","better":1,"matchers":[{"string":"被擊中時每個耐力球獲得 # 秒的猛攻"}],"trade":{"ids":{"explicit":["explicit.stat_3714207489"]}}} +{"ref":"You gain Onslaught for # seconds on Critical Strike","better":1,"matchers":[{"string":"暴擊後獲得 # 秒的猛攻"}],"trade":{"ids":{"explicit":["explicit.stat_1055188639"]}}} +{"ref":"You gain Onslaught for # seconds on Culling Strike","better":1,"matchers":[{"string":"使用撲殺時獲得猛攻 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_3818161429"]}}} +{"ref":"You gain Onslaught for # seconds on Hit","better":1,"matchers":[{"string":"你擊中時獲得 # 秒猛攻"}],"trade":{"ids":{"implicit":["implicit.stat_2514424018"]}}} +{"ref":"You gain Onslaught for # seconds on Kill","better":1,"matchers":[{"string":"擊殺時獲得 # 秒猛攻"}],"trade":{"ids":{"explicit":["explicit.stat_1195849808"]}}} +{"ref":"You gain Onslaught for # seconds on Kill while affected by Haste","better":1,"matchers":[{"string":"被迅捷影響時,你擊殺時獲得 # 秒猛攻"}],"trade":{"ids":{"explicit":["explicit.stat_1424006185"]}}} +{"ref":"You gain Onslaught for # seconds on Killing Taunted Enemies","better":1,"matchers":[{"string":"擊殺被嘲諷的敵人獲得 # 秒猛攻"}],"trade":{"ids":{"explicit":["explicit.stat_2580101523"]}}} +{"ref":"You gain Onslaught for # seconds on using a Vaal Skill","better":1,"matchers":[{"string":"使用瓦爾技能時獲得猛攻持續 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_2654043939"]}}} +{"ref":"You gain Onslaught for # seconds when Hit","better":1,"matchers":[{"string":"被擊中時你得到 # 秒猛攻"}],"trade":{"ids":{"explicit":["explicit.stat_2764164760"],"fractured":["fractured.stat_2764164760"],"scourge":["scourge.stat_2764164760"]}}} +{"ref":"You gain Phasing for # seconds on using a Vaal Skill","better":1,"matchers":[{"string":"使用瓦爾技能時獲得迷蹤效果 # 秒"}],"trade":{"ids":{"explicit":["explicit.stat_4089413281"]}}} +{"ref":"You grant # Frenzy Charges to allies on Death","better":1,"matchers":[{"string":"你死亡時給予友方 # 狂怒球"}],"trade":{"ids":{"explicit":["explicit.stat_2105456174"]}}} +{"ref":"You have # Conflux for 3 seconds every 8 seconds","better":1,"matchers":[{"string":"你每 8 秒會獲得 3 秒冰緩匯流","value":1},{"string":"你每 8 秒會獲得 3 秒感電匯流","value":2},{"string":"你每 8 秒會獲得 3 秒點燃匯流","value":3}],"trade":{"ids":{"explicit":["explicit.stat_1190121450"],"fractured":["fractured.stat_1190121450"]},"option":true}} +{"ref":"You have Consecrated Ground around you while\nstationary if Strength is your highest Attribute","better":1,"matchers":[{"string":"若力量是你最高的能力值,你站立時,你附近會有奉獻地面"}],"trade":{"ids":{"explicit":["explicit.stat_1196333117"]}}} +{"ref":"You have Consecrated Ground around you while stationary","better":1,"matchers":[{"string":"你站立時,你附近會有奉獻地面"}],"trade":{"ids":{"explicit":["explicit.stat_880970200"],"fractured":["fractured.stat_880970200"]}}} +{"ref":"You have Crimson Dance if you have dealt a Critical Strike Recently","better":1,"matchers":[{"string":"若你近期有造成暴擊則獲得緋紅舞蹈"}],"trade":{"ids":{"explicit":["explicit.stat_1756017808"]}}} +{"ref":"You have Crimson Dance while you have Cat's Stealth","better":1,"matchers":[{"string":"當你有傲貓隱身時獲得緋紅舞蹈"}],"trade":{"ids":{"explicit":["explicit.stat_3492797685"]}}} +{"ref":"You have Culling Strike against Cursed Enemies","better":1,"matchers":[{"string":"你對被詛咒的敵人有撲殺"}],"trade":{"ids":{"explicit":["explicit.stat_2150694455"]}}} +{"ref":"You have Far Shot while you do not have Iron Reflexes","better":1,"matchers":[{"string":"當你沒有霸體時獲得狙擊"}],"trade":{"ids":{"explicit":["explicit.stat_3284029342"]}}} +{"ref":"You have Fungal Ground around you while stationary","better":1,"matchers":[{"string":"當你靜止時,你附近會有毒菌地面"}],"trade":{"ids":{"explicit":["explicit.stat_799872465"]}}} +{"ref":"You have Igniting, Chilling and Shocking Conflux while affected by Glorious Madness","better":1,"matchers":[{"string":"被榮耀瘋癲影響時,你獲得點燃、冰緩和感電匯流"}],"trade":{"ids":{"explicit":["explicit.stat_3909952544"]}}} +{"ref":"You have Iron Reflexes while at maximum Frenzy Charges","better":1,"matchers":[{"string":"當狂怒球達上限時,你獲得霸體"}],"trade":{"ids":{"explicit":["explicit.stat_1990354706"]}}} +{"ref":"You have Lesser Brutal Shrine Buff","better":1,"matchers":[{"string":"你有低階猛擊神殿增益效果"}],"trade":{"ids":{"explicit":["explicit.stat_2761538350"]}}} +{"ref":"You have Lesser Massive Shrine Buff","better":1,"matchers":[{"string":"你有低階巨大神殿增益效果"}],"trade":{"ids":{"explicit":["explicit.stat_3779398176"]}}} +{"ref":"You have Mind over Matter while at maximum Power Charges","better":1,"matchers":[{"string":"當暴擊球達上限時,你獲得心靈昇華"}],"trade":{"ids":{"explicit":["explicit.stat_1876857497"]}}} +{"ref":"You have no Armour or Maximum Energy Shield","better":1,"matchers":[{"string":"你沒有護甲或最大能量護盾"}],"trade":{"ids":{"explicit":["explicit.stat_3591359751"]}}} +{"ref":"You have no Intelligence","better":1,"matchers":[{"string":"你沒有智慧"}],"trade":{"ids":{"explicit":["explicit.stat_2706175703"]}}} +{"ref":"You have no Life Regeneration","better":1,"matchers":[{"string":"你沒有生命回復"}],"trade":{"ids":{"explicit":["explicit.stat_854225133"],"scourge":["scourge.stat_854225133"]}}} +{"ref":"You have no Mana Regeneration","better":1,"matchers":[{"string":"你沒有魔力回復"}],"trade":{"ids":{"scourge":["scourge.stat_1052246654"]}}} +{"ref":"You have Onslaught during Soul Gain Prevention","better":1,"matchers":[{"string":"停止獲得靈魂期間你獲得猛攻"}],"trade":{"ids":{"explicit":["explicit.stat_1572897579"],"fractured":["fractured.stat_1572897579"],"crafted":["crafted.stat_1572897579"]}}} +{"ref":"You have Onslaught while at maximum Endurance Charges","better":1,"matchers":[{"string":"達到最大耐力球數量時獲得猛攻"}],"trade":{"ids":{"explicit":["explicit.stat_3101915418"]}}} +{"ref":"You have Onslaught while Fortified","better":1,"matchers":[{"string":"護體時你有猛攻"}],"trade":{"ids":{"explicit":["explicit.stat_1493590317"]}}} +{"ref":"You have Onslaught while not on Low Mana","better":1,"matchers":[{"string":"非貧魔狀態時獲得猛攻"}],"trade":{"ids":{"explicit":["explicit.stat_1959256242"]}}} +{"ref":"You have Onslaught while on Low Life","better":1,"matchers":[{"string":"當你貧血時獲得猛攻"}],"trade":{"ids":{"explicit":["explicit.stat_1871938116"]}}} +{"ref":"You have Onslaught while you have Cat's Agility","better":1,"matchers":[{"string":"你有傲貓姣捷時,你獲得猛攻"}],"trade":{"ids":{"explicit":["explicit.stat_4274075490"]}}} +{"ref":"You have Perfect Agony if you've dealt a Critical Strike recently","better":1,"matchers":[{"string":"若你近期有造成暴擊,你會獲得絕對受難"}],"trade":{"ids":{"explicit":["explicit.stat_3058395672"]}}} +{"ref":"You have Phasing if Energy Shield Recharge has started Recently","better":1,"matchers":[{"string":"近期內若能量護盾開始回復,獲得迷蹤效果"}],"trade":{"ids":{"explicit":["explicit.stat_2632954025"]}}} +{"ref":"You have Phasing if you have Blocked Recently","better":1,"matchers":[{"string":"若你近期有格擋,你獲得迷蹤"}],"trade":{"ids":{"explicit":["explicit.stat_3492654051"]}}} +{"ref":"You have Phasing if you've Killed Recently","better":1,"matchers":[{"string":"若你近期有擊殺,短時間内獲得迷蹤效果"}],"trade":{"ids":{"explicit":["explicit.stat_3489372920"]}}} +{"ref":"You have Phasing while affected by Haste","better":1,"matchers":[{"string":"被迅捷影響時你獲得迷蹤效果"}],"trade":{"ids":{"explicit":["explicit.stat_1346311588"]}}} +{"ref":"You have Phasing while on Low Life","better":1,"matchers":[{"string":"貧血時你有迷蹤效果"}],"trade":{"ids":{"explicit":["explicit.stat_23466649"]}}} +{"ref":"You have Phasing while you have Cat's Stealth","better":1,"matchers":[{"string":"當你有傲貓隱身時獲得迷蹤效果"}],"trade":{"ids":{"explicit":["explicit.stat_1834455446"]}}} +{"ref":"You have Resolute Technique while you do not have Elemental Overload","better":1,"matchers":[{"string":"當你沒有元素超載時獲得堅毅之心"}],"trade":{"ids":{"explicit":["explicit.stat_2905429068"]}}} +{"ref":"You have Scorching Conflux, Brittle Conflux and Sapping Conflux while your two highest Attributes are equal","better":1,"matchers":[{"string":"你兩個最高的能力值相等時,你有焦灼匯流、易碎匯流和殘喘匯流"}],"trade":{"ids":{"explicit":["explicit.stat_1518701332"]}}} +{"ref":"You have Tailwind if you have dealt a Critical Strike Recently","better":1,"matchers":[{"string":"若你近期有造成暴擊,你獲得流順之風"}],"trade":{"ids":{"explicit":["explicit.stat_1085545682"]}}} +{"ref":"You have Tailwind if you've used a Socketed Vaal Skill Recently","better":1,"matchers":[{"string":"若你近期有使用插槽中的瓦爾技能,你獲得流順之風"}],"trade":{"ids":{"explicit":["explicit.stat_1678234826"]}}} +{"ref":"You have Unholy Might while you have no Energy Shield","better":1,"matchers":[{"string":"你沒有能量護盾時獲得不潔之力"}],"trade":{"ids":{"explicit":["explicit.stat_2353201291"]}}} +{"ref":"You have Vaal Pact if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"若你近期有造成暴擊,你會獲得瓦爾冥約"}],"trade":{"ids":{"explicit":["explicit.stat_1032751668"]}}} +{"ref":"You have Vaal Pact while all Socketed Gems are Red","better":1,"matchers":[{"string":"當所有插槽中寶石為紅色時,你獲得瓦爾冥約"}],"trade":{"ids":{"explicit":["explicit.stat_3242537102"]}}} +{"ref":"You have Vaal Pact while at maximum Endurance Charges","better":1,"matchers":[{"string":"當耐力球達上限時,你獲得瓦爾冥約"}],"trade":{"ids":{"explicit":["explicit.stat_1314418188"]}}} +{"ref":"You have Vaal Pact while Focused","better":1,"matchers":[{"string":"專注時你有瓦爾冥約"}],"trade":{"ids":{"explicit":["explicit.stat_2022851697"],"fractured":["fractured.stat_2022851697"],"crafted":["crafted.stat_2022851697"]}}} +{"ref":"You have Zealot's Oath if you haven't been hit recently","better":1,"matchers":[{"string":"若你近期沒有被擊中,你會有狂熱誓言"}],"trade":{"ids":{"explicit":["explicit.stat_2391255504"]}}} +{"ref":"You lose all Endurance Charges on reaching maximum Endurance Charges","better":1,"matchers":[{"string":"達到最大耐力球時失去所有耐力球"}],"trade":{"ids":{"explicit":["explicit.stat_3590104875"]}}} +{"ref":"You lose all Endurance Charges when Hit","better":1,"matchers":[{"string":"被擊中時你失去所有的耐力球"}],"trade":{"ids":{"explicit":["explicit.stat_2994477068"]}}} +{"ref":"You lose all Spirit Charges when taking a Savage Hit","better":1,"matchers":[{"string":"當你受到殘暴打擊時,失去所有靈體能量球"}],"trade":{"ids":{"explicit":["explicit.stat_2663792764"]}}} +{"ref":"You only lose # Crab Barriers when you take Physical Damage from a Hit","better":1,"matchers":[{"string":"你被物理傷害擊中時,只會失去 # 層蟹將重盾"}],"trade":{"ids":{"explicit":["explicit.stat_455217103"]}}} +{"ref":"You take # Chaos Damage per second for # seconds on Kill","better":1,"matchers":[{"string":"殺死敵人後 # 秒內持續承受 # 混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_4031081471"]}}} +{"ref":"You take #% increased Extra Damage from Critical Strikes by Poisoned Enemies","better":1,"matchers":[{"string":"你增加承受 #% 來自中毒敵人暴擊的額外傷害"},{"string":"你減少承受 #% 來自中毒敵人暴擊的額外傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2070361501"]}}} +{"ref":"You take #% of Damage from Blocked Hits","better":1,"matchers":[{"string":"你承受 #% 來自格擋擊中的傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2905515354"],"implicit":["implicit.stat_2905515354"]}}} +{"ref":"You take #% of Elemental Damage from Blocked Hits","better":1,"matchers":[{"string":"你承受來自格擋擊中 #% 的元素傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2393355605"]}}} +{"ref":"You take #% of your maximum Life as Chaos Damage on use","better":1,"matchers":[{"string":"使用時承受最大生命 #% 的混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2301696196"]}}} +{"ref":"You take #% reduced Extra Damage from Critical Strikes","better":1,"matchers":[{"string":"減少 #% 承受的暴擊傷害"},{"string":"增加 #% 承受的暴擊傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3855016469"],"implicit":["implicit.stat_3855016469"],"fractured":["fractured.stat_3855016469"],"scourge":["scourge.stat_3855016469"]}}} +{"ref":"You take #% reduced Extra Damage from Critical Strikes if you've taken a Critical Strike Recently","better":1,"matchers":[{"string":"若你近期受到暴擊,你減少承受 #% 來自暴擊的額外傷害"}],"trade":{"ids":{"enchant":["enchant.stat_2047590583"]}}} +{"ref":"You take #% reduced Extra Damage from Critical Strikes per Endurance Charge","better":1,"matchers":[{"string":"每個耐力球使你承受的暴擊傷害減少 #%"},{"string":"每個耐力球使你承受的暴擊傷害增加 #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2380848911"],"fractured":["fractured.stat_2380848911"]}}} +{"ref":"You take #% reduced Extra Damage from Critical Strikes while affected by Determination","better":-1,"matchers":[{"string":"被堅定影響時,你增加承受 #% 暴擊的額外傷害"},{"string":"被堅定影響時,你減少承受 #% 暴擊的額外傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_68410701"]},"inverted":true}} +{"ref":"You take #% reduced Extra Damage from Critical Strikes while you have no Power Charges","better":-1,"matchers":[{"string":"當你沒有暴擊球時,你增加承受 #% 暴擊的額外傷害"},{"string":"當你沒有暴擊球時,你減少承受 #% 暴擊的額外傷害","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3544527742"]},"inverted":true}} +{"ref":"You take Chaos Damage instead of Physical Damage from Bleeding","better":1,"matchers":[{"string":"流血對你造成混沌傷害而不是物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_1623397857"]}}} +{"ref":"You take no Extra Damage from Critical Strikes while Elusive","better":1,"matchers":[{"string":"靈巧時,你不會承受暴擊的額外傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2953854044"]}}} +{"ref":"Your Arc Towers deal #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"4,4"}],"matchers":[{"string":"你的電弧塔增加 #% 傷害"},{"string":"你的電弧塔減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3011405513"]}}} +{"ref":"Your Arc Towers have # additional chains","better":1,"anointments":[{"roll":3,"oils":"3,13"}],"matchers":[{"string":"你的電弧塔有 # 次額外連鎖"}],"trade":{"ids":{"enchant":["enchant.stat_6032025"]}}} +{"ref":"Your Arc Towers have #% chance to inflict Sap","better":1,"anointments":[{"roll":20,"oils":"3,7"}],"matchers":[{"string":"你的電弧塔有 #% 機率造成殘喘"}],"trade":{"ids":{"enchant":["enchant.stat_441374889"]}}} +{"ref":"Your Arc Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"3,9"}],"matchers":[{"string":"你的電弧塔增加 #% 範圍"},{"string":"你的電弧塔減少 #% 範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1572544406"]}}} +{"ref":"Your Arc Towers repeats # additional Times","better":1,"anointments":[{"roll":1,"oils":"1,12"}],"matchers":[{"string":"你的電弧塔額外重複 # 次"}],"trade":{"ids":{"enchant":["enchant.stat_4173465567"]}}} +{"ref":"Your Aura Buffs do not affect allies","better":1,"matchers":[{"string":"光環效果對友方沒有作用"}],"trade":{"ids":{"explicit":["explicit.stat_4196775867"]}}} +{"ref":"Your Chaos Damage can Chill","better":1,"matchers":[{"string":"你的混沌傷害可以冰緩"}],"trade":{"ids":{"explicit":["explicit.stat_3686066640"]}}} +{"ref":"Your Chaos Damage can Ignite","better":1,"matchers":[{"string":"你的混沌傷害可以點燃"}],"trade":{"ids":{"explicit":["explicit.stat_1139878780"]}}} +{"ref":"Your Chaos Damage can Shock","better":1,"matchers":[{"string":"混沌傷害可以感電"}],"trade":{"ids":{"explicit":["explicit.stat_2418601510"]}}} +{"ref":"Your Chaos Damage cannot Poison","better":1,"matchers":[{"string":"你的混沌傷害不能造成中毒"}],"trade":{"ids":{"scourge":["scourge.stat_2578701544"]}}} +{"ref":"Your Chaos Damage has #% chance to Poison Enemies","better":1,"matchers":[{"string":"你的混沌傷害有 #% 機率造成敵人中毒"},{"string":"你的混沌傷害使敵人中毒","value":100},{"string":"你的混沌傷害造成敵人中毒","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2894297982","explicit.stat_3549040753"]}}} +{"ref":"Your Chilling Towers deal #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"1,1"}],"matchers":[{"string":"你的冰緩塔增加 #% 傷害"},{"string":"你的冰緩塔減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_926530613"]}}} +{"ref":"Your Chilling Towers freeze enemies for # seconds while they are affected by chilling beams","better":1,"anointments":[{"roll":0.2,"oils":"11,12"}],"matchers":[{"string":"當敵人被冰緩射線影響時,你的冰緩塔冰凍敵人 # 秒"}],"trade":{"ids":{"enchant":["enchant.stat_1357120250"]}}} +{"ref":"Your Chilling Towers have #% increased Duration","better":1,"anointments":[{"roll":25,"oils":"8,10"}],"matchers":[{"string":"你的冰緩塔增加 #% 持續時間"},{"string":"你的冰緩塔減少 #% 持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_889454763"]}}} +{"ref":"Your Chilling Towers have #% increased effect of Chill","better":1,"anointments":[{"roll":25,"oils":"8,8"}],"matchers":[{"string":"你的冰緩塔增加 #% 冰緩效果"},{"string":"你的冰緩塔減少 #% 冰緩效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1139911029"]}}} +{"ref":"Your Chilling Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"4,6"}],"matchers":[{"string":"你的冰緩塔增加 #% 範圍"},{"string":"你的冰緩塔減少 #% 範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_27499777"]}}} +{"ref":"Your Cold Damage can Ignite","better":1,"matchers":[{"string":"你的冰冷傷害可以造成點燃"}],"trade":{"ids":{"explicit":["explicit.stat_1888494262","explicit.stat_3573591118"]}}} +{"ref":"Your Cold Damage can Ignite but not Freeze or Chill","better":1,"matchers":[{"string":"你的冰冷傷害可以點燃但不能冰凍或冰緩"}],"trade":{"ids":{"explicit":["explicit.stat_1261612903"]}}} +{"ref":"Your Cold Damage can Poison","better":1,"matchers":[{"string":"你的冰冷傷害可以造成中毒"}],"trade":{"ids":{"explicit":["explicit.stat_1917124426"]}}} +{"ref":"Your Cold Damage cannot Freeze","better":1,"matchers":[{"string":"你的冰冷傷害不能冰凍"}],"trade":{"ids":{"explicit":["explicit.stat_220932154"]}}} +{"ref":"Your Critical Strike Chance is Lucky while Focused","better":1,"matchers":[{"string":"專注時,你的暴擊率很不幸","value":-1},{"string":"專注時,你的暴擊率很幸運","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1349659520"],"fractured":["fractured.stat_1349659520"],"crafted":["crafted.stat_1349659520"]}}} +{"ref":"Your Critical Strike Chance is Lucky while on Low Life","better":1,"matchers":[{"string":"貧血時你的暴擊率很不幸","value":-1},{"string":"貧血時你的暴擊率很幸運","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2706122133"]}}} +{"ref":"Your Critical Strike Multiplier is 300%","better":1,"matchers":[{"string":"你的暴擊加成為 300%"}],"trade":{"ids":{"explicit":["explicit.stat_824024007"]}}} +{"ref":"Your Critical Strikes do not deal extra Damage","better":1,"matchers":[{"string":"你的暴擊不造成額外傷害"}],"trade":{"ids":{"explicit":["explicit.stat_4058681894"],"scourge":["scourge.stat_4058681894"]}}} +{"ref":"Your Critical Strikes do not deal extra Damage during Effect","better":1,"matchers":[{"string":"效果持續時間,你的暴擊不能造成額外暴擊傷害"}],"trade":{"ids":{"explicit":["explicit.stat_2893557981"]}}} +{"ref":"Your Curse Limit is equal to your maximum Power Charges","better":1,"matchers":[{"string":"你的詛咒上限等同你的最大暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_973000407"]}}} +{"ref":"Your Curses have #% increased Effect if 50% of Curse Duration expired","better":1,"matchers":[{"string":"若詛咒持續時間過去 50%,你的詛咒增加 #% 效果"},{"string":"若詛咒持續時間過去 50%,你的詛咒減少 #% 效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2339022735"]}}} +{"ref":"Your Elemental Damage can Shock","better":1,"matchers":[{"string":"你的元素傷害可以造成感電"}],"trade":{"ids":{"explicit":["explicit.stat_2933625540"]}}} +{"ref":"Your Empowering Towers also grant #% increased Cast Speed","better":1,"anointments":[{"roll":20,"oils":"8,12"}],"matchers":[{"string":"你的賦予塔同時給予增加 #% 施放速度"},{"string":"你的賦予塔同時給予減少 #% 施放速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3564606017"]}}} +{"ref":"Your Empowering Towers also grant #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"10,12"}],"matchers":[{"string":"你的賦予塔同時給予增加 #% 傷害"},{"string":"你的賦予塔同時給予減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2166020726"]}}} +{"ref":"Your Empowering Towers have #% increased Effect","better":1,"anointments":[{"roll":25,"oils":"2,6"}],"matchers":[{"string":"你的賦予塔給予增加 #% 效果"},{"string":"你的賦予塔給予減少 #% 效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_246356360"]}}} +{"ref":"Your Empowering Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"4,10"}],"matchers":[{"string":"你的賦予塔增加 #% 範圍"},{"string":"你的賦予塔減少 #% 範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2097223452"]}}} +{"ref":"Your Energy Shield starts at zero","better":1,"matchers":[{"string":"不朽野望"},{"string":"你的能量護盾從 0 開始"}],"trade":{"ids":{"explicit":["explicit.stat_2413219096"]}}} +{"ref":"Your Fire Damage can Poison","better":1,"matchers":[{"string":"你的火焰傷害可以造成中毒"}],"trade":{"ids":{"explicit":["explicit.stat_1985969957"]}}} +{"ref":"Your Fire Damage can Shock but not Ignite","better":1,"matchers":[{"string":"你的火焰傷害可以感電但不能點燃"}],"trade":{"ids":{"explicit":["explicit.stat_2949096603"]}}} +{"ref":"Your Fireball Towers deal #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"1,3"}],"matchers":[{"string":"你的火球塔增加 #% 傷害"},{"string":"你的火球塔減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3026109282"]}}} +{"ref":"Your Fireball Towers fire an additional Projectile","better":1,"anointments":[{"roll":2,"oils":"2,11"},{"roll":8,"oils":"11,13"}],"matchers":[{"string":"你的火球塔發射 # 個額外投射物"},{"string":"你的火球塔發射 1 個額外投射物","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1008350423"]}}} +{"ref":"Your Fireball Towers have #% increased Cast Speed","better":1,"anointments":[{"roll":15,"oils":"6,9"}],"matchers":[{"string":"你的火球塔增加 #% 施放速度"},{"string":"你的火球塔減少 #% 施放速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2410280305"]}}} +{"ref":"Your Fireball Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"2,8"}],"matchers":[{"string":"你的火球塔增加 #% 範圍"},{"string":"你的火球塔減少 #% 範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_117905700"]}}} +{"ref":"Your Fireball Towers Projectiles fire in a circle","better":1,"matchers":[{"string":"你的火球塔以圓形型式發射投射物"}],"trade":{"ids":{"enchant":["enchant.stat_2685482716"]}}} +{"ref":"Your Flamethrower Towers deal #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"2,3"}],"matchers":[{"string":"你的噴火塔增加 #% 傷害"},{"string":"你的噴火塔減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1478321338"]}}} +{"ref":"Your Flamethrower Towers deal full damage to Fire Enemies","better":1,"anointments":[{"roll":1,"oils":"8,9"}],"matchers":[{"string":"你的噴火塔對火焰敵人造成全部傷害"}],"trade":{"ids":{"enchant":["enchant.stat_3687716368"]}}} +{"ref":"Your Flamethrower Towers have #% chance to inflict Scorch","better":1,"anointments":[{"roll":20,"oils":"2,7"}],"matchers":[{"string":"你的噴火塔有 #% 機率造成焦灼"}],"trade":{"ids":{"enchant":["enchant.stat_1248361993"]}}} +{"ref":"Your Flamethrower Towers have #% increased Cast Speed","better":1,"anointments":[{"roll":15,"oils":"3,11"}],"matchers":[{"string":"你的噴火塔增加 #% 施放速度"},{"string":"你的噴火塔減少 #% 施放速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4039396512"]}}} +{"ref":"Your Flamethrower Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"3,8"}],"matchers":[{"string":"你的噴火塔增加 #% 範圍"},{"string":"你的噴火塔減少 #% 範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_665179774"]}}} +{"ref":"Your Freezebolt Tower deal full damage to Cold Enemies","better":1,"anointments":[{"roll":1,"oils":"4,9"}],"matchers":[{"string":"你的冰凍彈塔對冰冷敵人造成全部傷害"}],"trade":{"ids":{"enchant":["enchant.stat_2541263647"]}}} +{"ref":"Your Freezebolt Towers deal #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"1,2"}],"matchers":[{"string":"你的冰凍彈塔增加 #% 傷害"},{"string":"你的冰凍彈塔減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2834109076"]}}} +{"ref":"Your Freezebolt Towers fire an additional Projectile","better":1,"anointments":[{"roll":2,"oils":"9,10"}],"matchers":[{"string":"你的冰凍彈塔發射 # 個額外投射物"},{"string":"你的冰凍彈塔發射 1 個額外投射物","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1797913614"]}}} +{"ref":"Your Freezebolt Towers have #% chance to inflict Brittle","better":1,"anointments":[{"roll":20,"oils":"4,7"}],"matchers":[{"string":"你的冰凍彈塔有 #% 機率造成易碎"}],"trade":{"ids":{"enchant":["enchant.stat_3802588863"]}}} +{"ref":"Your Freezebolt Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"1,8"}],"matchers":[{"string":"你的冰凍彈塔增加 #% 範圍"},{"string":"你的冰凍彈塔減少 #% 範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3434272371"]}}} +{"ref":"Your Glacial Cage Towers have #% increased Cooldown Recovery Rate","better":1,"anointments":[{"roll":20,"oils":"5,9"}],"matchers":[{"string":"你的寒冰牢籠塔增加 #% 冷卻時間恢復速度"},{"string":"你的寒冰牢籠塔減少 #% 冷卻時間恢復速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1035680542"]}}} +{"ref":"Your Glacial Cage Towers have #% increased Duration","better":1,"anointments":[{"roll":25,"oils":"2,2"}],"matchers":[{"string":"你的寒冰牢籠塔增加 #% 持續時間"},{"string":"你的寒冰牢籠塔減少 #% 持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1056655244"]}}} +{"ref":"Your Glacial Cage Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"5,6"}],"matchers":[{"string":"你的寒冰牢籠塔增加 #% 範圍"},{"string":"你的寒冰牢籠塔減少 #% 範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2454791895"]}}} +{"ref":"Your Hexes can affect Hexproof Enemies","better":1,"matchers":[{"string":"你的咒術可以影響無咒的敵人"}],"trade":{"ids":{"explicit":["explicit.stat_1367119630"]}}} +{"ref":"Your Hits can only Kill Frozen Enemies","better":1,"matchers":[{"string":"你的攻擊或法術命中時只能撃殺被冰凍的敵人"}],"trade":{"ids":{"explicit":["explicit.stat_2740359895"]}}} +{"ref":"Your hits can't be Evaded","better":1,"matchers":[{"string":"你的擊中不能被閃避","value":1},{"string":"攻擊和法術不能被閃避","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1165023334","explicit.stat_4126210832"],"fractured":["fractured.stat_4126210832"],"crafted":["crafted.stat_4126210832"]}}} +{"ref":"Your Hits can't be Evaded by Blinded Enemies","better":1,"matchers":[{"string":"被致盲的敵人不能閃避你的攻擊"}],"trade":{"ids":{"explicit":["explicit.stat_90597215"]}}} +{"ref":"Your Hits cannot Penetrate or ignore Elemental Resistances","better":1,"matchers":[{"string":"你的擊中不能穿透或無視元素抗性"}],"trade":{"ids":{"explicit":["explicit.stat_3091072796"]}}} +{"ref":"Your Hits cannot Stun Enemies","better":1,"matchers":[{"string":"你的擊中不能暈眩敵人"}],"trade":{"ids":{"scourge":["scourge.stat_373932729"]}}} +{"ref":"Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds","better":1,"matchers":[{"string":"你擊中造成腐化,每秒造成 700 混沌傷害,持續 8 秒"}],"trade":{"ids":{"explicit":["explicit.stat_3322709337"],"fractured":["fractured.stat_3322709337"]}}} +{"ref":"Your Hits Intimidate Enemies for 4 seconds while you are using Pride","better":1,"matchers":[{"string":"你使用驕傲時,你的擊中威嚇敵人 4 秒"}],"trade":{"ids":{"explicit":["explicit.stat_3772848194"]}}} +{"ref":"Your Imbuing Towers also grant #% increased Critical Strike Chance","better":1,"anointments":[{"roll":50,"oils":"9,12"}],"matchers":[{"string":"你的湧泉塔同時增加 #% 暴擊率"},{"string":"你的湧泉塔同時減少 #% 暴擊率","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3891165938"]}}} +{"ref":"Your Imbuing Towers also grant #% increased Damage","better":1,"anointments":[{"roll":50,"oils":"8,13"}],"matchers":[{"string":"你的湧泉塔同時增加 #% 傷害"},{"string":"你的湧泉塔同時減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_639766324"]}}} +{"ref":"Your Imbuing Towers also grant Onslaught","better":1,"anointments":[{"roll":1,"oils":"6,7"}],"matchers":[{"string":"你的湧泉塔同時給予猛攻"}],"trade":{"ids":{"enchant":["enchant.stat_1277406505"]}}} +{"ref":"Your Imbuing Towers have #% increased Effect","better":1,"anointments":[{"roll":25,"oils":"3,6"}],"matchers":[{"string":"你的湧泉塔增加 #% 效果"},{"string":"你的湧泉塔減少 #% 效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3346280197"]}}} +{"ref":"Your Imbuing Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"5,10"}],"matchers":[{"string":"你的湧泉塔增加 #% 範圍"},{"string":"你的湧泉塔減少 #% 範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3044601282"]}}} +{"ref":"Your Lightning Damage can Freeze but not Shock","better":1,"matchers":[{"string":"你的閃電傷害可以冰凍但不能感電"}],"trade":{"ids":{"explicit":["explicit.stat_1011772129"]}}} +{"ref":"Your Lightning Damage can Ignite","better":1,"matchers":[{"string":"你的閃電傷害可以點燃"}],"trade":{"ids":{"explicit":["explicit.stat_3121133045"]}}} +{"ref":"Your Lightning Damage can Poison","better":1,"matchers":[{"string":"你的閃電傷害可以造成中毒"}],"trade":{"ids":{"explicit":["explicit.stat_1604984482"]}}} +{"ref":"Your Lightning Storm Towers create Storms centred on Enemies","better":1,"anointments":[{"roll":1,"oils":"7,12"}],"matchers":[{"string":"你的雷霆風暴塔在敵人中心製造風暴"}],"trade":{"ids":{"enchant":["enchant.stat_3354028437"]}}} +{"ref":"Your Lightning Storm Towers deal #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"2,5"}],"matchers":[{"string":"你的雷霆風暴塔增加 #% 傷害"},{"string":"你的雷霆風暴塔減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1960580674"]}}} +{"ref":"Your Lightning Storm Towers have #% increased explosion Area of Effect","better":1,"anointments":[{"roll":25,"oils":"2,13"}],"matchers":[{"string":"你的雷霆風暴塔增加 #% 爆炸範圍效果"},{"string":"你的雷霆風暴塔減少 #% 爆炸範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3849821286"]}}} +{"ref":"Your Lightning Storm Towers have #% increased Impact Delay","better":1,"anointments":[{"roll":-25,"oils":"10,10"}],"matchers":[{"string":"你的雷霆風暴塔增加 #% 衝擊延遲"},{"string":"你的雷霆風暴塔減少 #% 衝擊延遲","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_197351228"]}}} +{"ref":"Your Lightning Storm Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"2,9"}],"matchers":[{"string":"你的雷霆風暴塔增加 #% 範圍"},{"string":"你的雷霆風暴塔減少 #% 範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1789548201"]}}} +{"ref":"Your Maps contain #","better":1,"matchers":[{"string":"你的地圖含有埃哈","value":2},{"string":"區域含有埃哈","value":2},{"string":"你的地圖含有艾瓦","value":3},{"string":"區域含有艾瓦","value":3},{"string":"你的地圖含有尼科","value":5},{"string":"區域含有尼科","value":5},{"string":"你的地圖含有瓊恩","value":6},{"string":"區域含有瓊恩","value":6},{"string":"你的地圖含有札娜","value":7},{"string":"區域含有札娜","value":7}],"trade":{"ids":{"explicit":["explicit.stat_3187151138"],"enchant":["enchant.stat_3187151138"]},"option":true}} +{"ref":"Your Mark Transfers to another Enemy when Marked Enemy dies","better":1,"matchers":[{"string":"當被印記的敵人死亡時,你的印記有 #% 機率轉移至其他敵人"},{"string":"當被印記的敵人死亡時,你的印記轉移至其他敵人","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1104120660"]}}} +{"ref":"Your Maximum Endurance Charges is equal to your Maximum Frenzy Charges","better":1,"matchers":[{"string":"你的耐力球最大數量等於你的狂怒球最大數量"}],"trade":{"ids":{"explicit":["explicit.stat_3443585706"]}}} +{"ref":"Your Maximum Frenzy Charges is equal to your Maximum Power Charges","better":1,"matchers":[{"string":"你的最大狂怒球等於你的最大暴擊球"}],"trade":{"ids":{"explicit":["explicit.stat_2238831336"]}}} +{"ref":"Your Maximum Resistances are #%","better":1,"matchers":[{"string":"你的最大抗性為 #%"}],"trade":{"ids":{"explicit":["explicit.stat_798767971"]}}} +{"ref":"Your Meteor Towers always Stun","better":1,"anointments":[{"roll":1,"oils":"9,9"}],"matchers":[{"string":"你的隕石塔必定暈眩"}],"trade":{"ids":{"enchant":["enchant.stat_1819243251"]}}} +{"ref":"Your Meteor Towers create Burning Ground for # seconds on Hit","better":1,"anointments":[{"roll":3,"oils":"7,8"}],"matchers":[{"string":"你的隕石塔擊中時製造燃燒地面,持續 # 秒"}],"trade":{"ids":{"enchant":["enchant.stat_3704937638"]}}} +{"ref":"Your Meteor Towers deal #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"1,4"}],"matchers":[{"string":"你的隕石塔增加 #% 傷害"},{"string":"你的隕石塔減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1084180630"]}}} +{"ref":"Your Meteor Towers drop an additional Meteor","better":1,"anointments":[{"roll":1,"oils":"4,11"}],"matchers":[{"string":"你的隕石塔掉落 # 個額外隕石"},{"string":"你的隕石塔掉落 1 個額外隕石","value":1}],"trade":{"ids":{"enchant":["enchant.stat_2396402660"]}}} +{"ref":"Your Meteor Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"4,8"}],"matchers":[{"string":"你的隕石塔增加 #% 範圍"},{"string":"你的隕石塔減少 #% 範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1270423035"]}}} +{"ref":"Your Minions spread Burning Ground on Death, dealing #% of their maximum Life as Fire Damage per second","better":1,"matchers":[{"string":"你的召喚物死亡後擴散燃燒地面,每秒造成他們最大生命 #% 的火焰傷害"}],"trade":{"ids":{"explicit":["explicit.stat_4099989681"]}}} +{"ref":"Your Minions spread Caustic Ground on Death, dealing #% of their maximum Life as Chaos Damage per second","better":1,"matchers":[{"string":"你的召喚物死亡時擴散腐蝕地面,每秒造成 #% 他們最大生命的混沌傷害"}],"trade":{"ids":{"explicit":["explicit.stat_688802590"]}}} +{"ref":"Your Minions use your Flasks when summoned","better":1,"matchers":[{"string":"當召喚召喚物時消耗你的藥劑"}],"trade":{"ids":{"explicit":["explicit.stat_1827636152"]}}} +{"ref":"Your Movement Skills are Disabled","better":1,"matchers":[{"string":"你的位移技能失效"}],"trade":{"ids":{"scourge":["scourge.stat_86000920"]}}} +{"ref":"Your Movement Speed is #% of its base value","better":1,"matchers":[{"string":"你的移動速度為 #% 它的基礎值"}],"trade":{"ids":{"explicit":["explicit.stat_3945685369"]}}} +{"ref":"Your nearby party members maximum Endurance Charges is equal to yours","better":1,"matchers":[{"string":"你附近隊伍成員最大耐力球等於你的"}],"trade":{"ids":{"explicit":["explicit.stat_598215770"]}}} +{"ref":"Your Offerings have #% increased Effect","better":1,"matchers":[{"string":"你的奉獻增加 #% 效果"},{"string":"增加 #% 奉獻效果"},{"string":"你的奉獻減少 #% 效果","negate":true},{"string":"減少 #% 奉獻效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3191479793"],"implicit":["implicit.stat_3191479793"],"fractured":["fractured.stat_3191479793"]}}} +{"ref":"Your Offerings have #% increased Effect on you","better":1,"matchers":[{"string":"你的奉獻技能對你增加 #% 效果"},{"string":"你的奉獻技能對你減少 #% 效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2071120096"]}}} +{"ref":"Your Physical Damage can Chill","better":1,"matchers":[{"string":"物理傷害可以冰緩"}],"trade":{"ids":{"explicit":["explicit.stat_2227042420"]}}} +{"ref":"Your Physical Damage can Freeze","better":1,"matchers":[{"string":"你的物理傷害可以造成冰凍"}],"trade":{"ids":{"explicit":["explicit.stat_1526975429"]}}} +{"ref":"Your Physical Damage can Shock","better":1,"matchers":[{"string":"你的物理傷害造成感電"}],"trade":{"ids":{"explicit":["explicit.stat_3848047105"]}}} +{"ref":"Your Physical Damage cannot Poison","better":1,"matchers":[{"string":"你的物理傷害不能造成中毒"}],"trade":{"ids":{"scourge":["scourge.stat_733138911"]}}} +{"ref":"Your Raised Spectres also gain Arcane Surge when you do","better":1,"matchers":[{"string":"當你獲得秘能波動時,你的喚醒幽魂也會獲得"}],"trade":{"ids":{"explicit":["explicit.stat_3462113315"]}}} +{"ref":"Your Raised Zombies count as corpses","better":1,"matchers":[{"string":"你的殭屍復甦視為屍體"}],"trade":{"ids":{"explicit":["explicit.stat_3951269079"]}}} +{"ref":"Your Scout Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"5,8"}],"matchers":[{"string":"你的哨兵塔增加 #% 範圍"},{"string":"你的哨兵塔減少 #% 範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4048897123"]}}} +{"ref":"Your Scout Towers summon an additional minion","better":1,"anointments":[{"roll":1,"oils":"6,12"}],"matchers":[{"string":"你的哨兵塔召喚 # 個額外召喚物"},{"string":"你的哨兵塔召喚 1 個額外召喚物","value":1},{"string":"你的哨兵塔少召喚 # 個召喚物","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1441906885"]}}} +{"ref":"Your Seismic Towers deal #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"3,5"}],"matchers":[{"string":"你的地裂塔增加 #% 傷害"},{"string":"你的地裂塔減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1582085030"]}}} +{"ref":"Your Seismic Towers have #% increased length and range of Cascades","better":1,"anointments":[{"roll":100,"oils":"12,13"}],"matchers":[{"string":"你的地裂塔增加 #% 長度和地刺範圍"},{"string":"你的地裂塔減少 #% 長度和地刺範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3830917556"]}}} +{"ref":"Your Seismic Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"1,10"}],"matchers":[{"string":"你的地裂塔增加 #% 範圍"},{"string":"你的地裂塔減少 #% 範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2410117075"]}}} +{"ref":"Your Seismic Towers have #% increased Stun Duration","better":1,"anointments":[{"roll":25,"oils":"2,12"}],"matchers":[{"string":"你的地裂塔增加 #% 暈眩持續時間"},{"string":"你的地裂塔減少 #% 暈眩持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3006815533"]}}} +{"ref":"Your Seismic Towers have an additional Cascade","better":1,"anointments":[{"roll":1,"oils":"4,13"}],"matchers":[{"string":"你的地裂塔有 # 個額外地刺"},{"string":"你的地裂塔有 1 個額外地刺","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3094610721"]}}} +{"ref":"Your Sentinel Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"6,8"}],"matchers":[{"string":"你的衛士塔增加 #% 範圍"},{"string":"你的衛士塔減少 #% 範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1843683045"]}}} +{"ref":"Your Shock Nova Towers deal #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"3,4"}],"matchers":[{"string":"你的閃電新星塔增加 #% 傷害"},{"string":"你的閃電新星塔減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2882048906"]}}} +{"ref":"Your Shock Nova Towers deal full damage to Lightning Enemies","better":1,"anointments":[{"roll":1,"oils":"9,11"}],"matchers":[{"string":"你的閃電新星塔對閃電敵人造成全部傷害"}],"trade":{"ids":{"enchant":["enchant.stat_2242331554"]}}} +{"ref":"Your Shock Nova Towers have #% increased area of effect per repeat","better":1,"anointments":[{"roll":30,"oils":"10,13"}],"matchers":[{"string":"你的感電新星塔每次重複增加 #% 範圍效果"},{"string":"你的感電新星塔每次重複減少 #% 範圍效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_21144785"]}}} +{"ref":"Your Shock Nova Towers have #% increased effect of Shock","better":1,"anointments":[{"roll":25,"oils":"1,13"}],"matchers":[{"string":"你的閃電新星塔增加 #% 感電效果"},{"string":"你的閃電新星塔減少 #% 感電效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_439316158"]}}} +{"ref":"Your Shock Nova Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"1,9"}],"matchers":[{"string":"你的閃電新星塔增加 #% 範圍"},{"string":"你的閃電新星塔減少 #% 範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2731937118"]}}} +{"ref":"Your Shock Nova Towers repeats # additional Times","better":1,"matchers":[{"string":"你的閃電新星塔重複額外 # 次"}],"trade":{"ids":{"enchant":["enchant.stat_307092526"]}}} +{"ref":"Your Skills deal you #% of Mana Spent on Upfront Skill Mana Costs as Physical Damage","better":1,"matchers":[{"string":"你的技能對你造成 #% 你魔力消耗在前期技能魔力消耗的物理傷害"}],"trade":{"ids":{"explicit":["explicit.stat_99487834"]}}} +{"ref":"Your Smothering Towers also grant #% chance to be Frozen, Shocked and Ignited","better":1,"anointments":[{"roll":10,"oils":"1,7"}],"matchers":[{"string":"你的禁閉塔同時有 #% 機率冰凍、感電和點燃"}],"trade":{"ids":{"enchant":["enchant.stat_906949000"]}}} +{"ref":"Your Smothering Towers also grant #% increased Damage","better":1,"anointments":[{"roll":-10,"oils":"9,13"}],"matchers":[{"string":"你的禁閉塔同時增加 #% 傷害"},{"string":"你的禁閉塔同時減少 #% 傷害","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2563159607"]}}} +{"ref":"Your Smothering Towers also grant #% increased Movement Speed","better":1,"anointments":[{"roll":-20,"oils":"11,11"}],"matchers":[{"string":"你的禁閉塔同時增加 #% 移動速度"},{"string":"你的禁閉塔同時減少 #% 移動速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_118036057"]}}} +{"ref":"Your Smothering Towers have #% increased Effect","better":1,"anointments":[{"roll":25,"oils":"5,5"}],"matchers":[{"string":"你的禁閉塔增加 #% 效果"},{"string":"你的禁閉塔減少 #% 效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_726779274"]}}} +{"ref":"Your Smothering Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"6,10"}],"matchers":[{"string":"你的禁閉塔增加 #% 範圍"},{"string":"你的禁閉塔減少 #% 範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2764047332"]}}} +{"ref":"Your Spells are disabled","better":1,"matchers":[{"string":"你的法術被禁用"}],"trade":{"ids":{"explicit":["explicit.stat_1981749265"]}}} +{"ref":"Your spells have #% chance to Shock against Frozen Enemies","better":1,"matchers":[{"string":"你的法術有 #% 機率對冰凍的敵人造成感電"}],"trade":{"ids":{"explicit":["explicit.stat_288651645"]}}} +{"ref":"Your Spells have Culling Strike","better":1,"matchers":[{"string":"你的法術擁有撲殺效果"}],"trade":{"ids":{"explicit":["explicit.stat_3238189103"]}}} +{"ref":"Your Stone Gaze Cage Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"3,10"}],"matchers":[{"string":"你的石化凝視塔增加 #% 範圍"},{"string":"你的石化凝視塔減少 #% 範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2911217910"]}}} +{"ref":"Your Stone Gaze Towers have #% increased Cooldown Recovery Rate","better":1,"anointments":[{"roll":20,"oils":"4,12"}],"matchers":[{"string":"你的石化凝視塔增加 #% 冷卻時間恢復速度"},{"string":"你的石化凝視塔減少 #% 冷卻時間恢復速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1619284089"]}}} +{"ref":"Your Stone Gaze Towers have #% increased Duration","better":1,"anointments":[{"roll":25,"oils":"4,5"}],"matchers":[{"string":"你的石化凝視塔增加 #% 持續時間"},{"string":"你的石化凝視塔減少 #% 持續時間","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_573352991"]}}} +{"ref":"Your Stone Gaze Towers have #% increased Petrification Delay","better":1,"anointments":[{"roll":-20,"oils":"6,13"}],"matchers":[{"string":"你的石化凝視塔增加 #% 石化延遲"},{"string":"你的石化凝視塔減少 #% 石化延遲","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3352207460"]}}} +{"ref":"Your Summoning Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"6,6"}],"matchers":[{"string":"你的召喚塔增加 #% 範圍"},{"string":"你的召喚塔減少 #% 範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2550660356"]}}} +{"ref":"Your Summoning Towers summon # additional Minions","better":1,"anointments":[{"roll":2,"oils":"12,12"}],"matchers":[{"string":"你的召喚塔召喚 # 個額外召喚物"}],"trade":{"ids":{"enchant":["enchant.stat_1261917923"]}}} +{"ref":"Your Temporal Towers also grant Stun Immunity","better":1,"anointments":[{"roll":1,"oils":"5,7"}],"matchers":[{"string":"你的時空塔同時給予暈眩免疫"}],"trade":{"ids":{"enchant":["enchant.stat_2538402671"]}}} +{"ref":"Your Temporal Towers also grant you #% reduced action speed","better":1,"anointments":[{"roll":-20,"oils":"5,13"}],"matchers":[{"string":"你的時空塔同時減少你 #% 行動速度"},{"string":"你的時空塔同時增加你 #% 行動速度","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3198887051"]}}} +{"ref":"Your Temporal Towers effects decay #% faster","better":1,"anointments":[{"roll":-25,"oils":"3,12"}],"matchers":[{"string":"你的時空塔效果逝去加速 #%"},{"string":"你的時空塔效果逝去減緩 #%","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4024383498"]}}} +{"ref":"Your Temporal Towers have #% increased Effect","better":1,"anointments":[{"roll":25,"oils":"1,6"}],"matchers":[{"string":"你的時空塔增加 #% 效果"},{"string":"你的時空塔減少 #% 效果","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2109921176"]}}} +{"ref":"Your Temporal Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"2,10"}],"matchers":[{"string":"你的時空塔增加 #% 範圍"},{"string":"你的時空塔減少 #% 範圍","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4089551985"]}}} +{"ref":"Your Towers deal #% increased Damage per Type of Tower Active","better":1,"anointments":[{"roll":10,"oils":"7,13"}],"matchers":[{"string":"每種啟動的防守塔,使你的防守塔增加 #% 傷害"}],"trade":{"ids":{"enchant":["enchant.stat_2125952342"]}}} +{"ref":"Your Warcries open Chests","better":1,"matchers":[{"string":"你的戰吼開啟保險箱"}],"trade":{"ids":{"explicit":["explicit.stat_3452963763"],"fractured":["fractured.stat_3452963763"]}}} +{"ref":"Zealot's Oath","better":1,"matchers":[{"string":"狂熱誓言"}],"trade":{"ids":{"explicit":["explicit.stat_632761194"],"scourge":["scourge.stat_632761194"]}}} +{"ref":"Zealot's Oath during Effect","better":1,"matchers":[{"string":"效果持續時間,獲得狂熱誓言"}],"trade":{"ids":{"explicit":["explicit.stat_851224302"]}}} +{"ref":"Zealotry has #% increased Aura Effect","better":1,"matchers":[{"string":"狂熱增加 #% 光環效果"},{"string":"狂熱減少 #% 光環效果","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4096052153"],"implicit":["implicit.stat_4096052153"],"fractured":["fractured.stat_4096052153"]}}} +{"ref":"Zealotry has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"狂熱增加 #% 魔力保留效用"},{"string":"狂熱減少 #% 魔力保留效用","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_168308685","explicit.stat_4216444167"],"enchant":["enchant.stat_168308685","enchant.stat_4216444167"]}}} +{"ref":"Zealotry has no Reservation","better":1,"matchers":[{"string":"狂熱無保留"}],"trade":{"ids":{"explicit":["explicit.stat_1741242318"]}}} diff --git a/renderer/public/.DS_Store/data/en/items.ndjson b/renderer/public/.DS_Store/data/en/items.ndjson index 80cb24f3b..504916889 100644 --- a/renderer/public/.DS_Store/data/en/items.ndjson +++ b/renderer/public/.DS_Store/data/en/items.ndjson @@ -3007,6 +3007,7 @@ {"name": "Grand Spectrum", "refName": "Grand Spectrum", "namespace": "UNIQUE", "unique": {"base": "Emerald"}} {"name": "Grand Spectrum", "refName": "Grand Spectrum", "namespace": "UNIQUE", "unique": {"base": "Ruby"}} {"name": "Grand Spectrum", "refName": "Grand Spectrum", "namespace": "UNIQUE", "unique": {"base": "Sapphire"}} +{"name": "Heroic Tragedy", "refName": "Heroic Tragedy", "namespace": "UNIQUE", "unique": {"base": "Timeless Jewel"}} {"name": "Prism of Belief", "refName": "Prism of Belief", "namespace": "UNIQUE", "unique": {"base": "Diamond"}} {"name": "The Adorned", "refName": "The Adorned", "namespace": "UNIQUE", "unique": {"base": "Diamond"}} {"name": "Brain Rattler", "refName": "Brain Rattler", "namespace": "UNIQUE", "unique": {"base": "Studded Greatclub"}} @@ -3021,6 +3022,11 @@ {"name": "Guiding Palm", "refName": "Guiding Palm", "namespace": "UNIQUE", "unique": {"base": "Shrine Sceptre"}} {"name": "Hoghunt", "refName": "Hoghunt", "namespace": "UNIQUE", "unique": {"base": "Felled Greatclub"}} {"name": "Hrimnor's Hymn", "refName": "Hrimnor's Hymn", "namespace": "UNIQUE", "unique": {"base": "Oak Greathammer"}} +{"name": "INCOMPLETE", "refName": "INCOMPLETE", "namespace": "UNIQUE", "unique": {"base": "War Spear"}} +{"name": "INCOMPLETE", "refName": "INCOMPLETE", "namespace": "UNIQUE", "unique": {"base": "Vampiric Blade"}} +{"name": "INCOMPLETE", "refName": "INCOMPLETE", "namespace": "UNIQUE", "unique": {"base": "Charred Shortsword"}} +{"name": "INCOMPLETE", "refName": "INCOMPLETE", "namespace": "UNIQUE", "unique": {"base": "Corroded Longsword"}} +{"name": "INCOMPLETE", "refName": "INCOMPLETE", "namespace": "UNIQUE", "unique": {"base": "Rippled Greatsword"}} {"name": "Lifesprig", "refName": "Lifesprig", "namespace": "UNIQUE", "unique": {"base": "Attuned Wand"}} {"name": "Matsya", "refName": "Matsya", "namespace": "UNIQUE", "unique": {"base": "Crescent Quarterstaff"}} {"name": "Mist Whisper", "refName": "Mist Whisper", "namespace": "UNIQUE", "unique": {"base": "Makeshift Crossbow"}} diff --git a/renderer/public/.DS_Store/data/en/stats.ndjson b/renderer/public/.DS_Store/data/en/stats.ndjson index 2fe07f8fb..4c8004b7e 100644 --- a/renderer/public/.DS_Store/data/en/stats.ndjson +++ b/renderer/public/.DS_Store/data/en/stats.ndjson @@ -1,3 +1,32 @@ +{"ref": "# Life Regenerated per Second", "better": 1, "matchers": [{"string": "# Life Regenerated per Second "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_life_regen"]}}} +{"ref": "#% increased Cold Damage", "better": 1, "id": "cold_damage_+%", "matchers": [{"string": "#% increased Cold Damage", "negate": false}, {"string": "#% reduced Cold Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3291658075"], "pseudo": ["pseudo.pseudo_increased_cold_damage"]}}} +{"ref": "#% increased Cold Spell Damage", "better": 1, "matchers": [{"string": "#% increased Cold Spell Damage "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_cold_spell_damage"]}}} +{"ref": "#% increased Elemental Damage", "better": 1, "id": "elemental_damage_+%", "matchers": [{"string": "#% increased Elemental Damage", "negate": false}, {"string": "#% reduced Elemental Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3141070085"], "pseudo": ["pseudo.pseudo_increased_elemental_damage"]}}} +{"ref": "#% increased Elemental Damage with Attacks", "better": 1, "id": "elemental_damage_with_attack_skills_+%", "matchers": [{"string": "#% increased Elemental Damage with Attacks", "negate": false}, {"string": "#% reduced Elemental Damage with Attacks", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_387439868"], "enchant": ["enchant.stat_387439868"], "rune": ["rune.stat_387439868"], "pseudo": ["pseudo.pseudo_increased_elemental_damage_with_attack_skills"]}}} +{"ref": "#% increased Fire Damage", "better": 1, "id": "fire_damage_+%", "matchers": [{"string": "#% increased Fire Damage", "negate": false}, {"string": "#% reduced Fire Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3962278098"], "pseudo": ["pseudo.pseudo_increased_fire_damage"]}}} +{"ref": "#% increased Fire Spell Damage", "better": 1, "matchers": [{"string": "#% increased Fire Spell Damage "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_fire_spell_damage"]}}} +{"ref": "#% increased Lightning Damage", "better": 1, "id": "lightning_damage_+%", "matchers": [{"string": "#% increased Lightning Damage", "negate": false}, {"string": "#% reduced Lightning Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2231156303"], "pseudo": ["pseudo.pseudo_increased_lightning_damage"]}}} +{"ref": "#% increased Lightning Spell Damage", "better": 1, "matchers": [{"string": "#% increased Lightning Spell Damage "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_lightning_spell_damage"]}}} +{"ref": "#% increased Mana Regeneration Rate", "better": 1, "id": "mana_regeneration_rate_+%", "matchers": [{"string": "#% increased Mana Regeneration Rate", "negate": false}, {"string": "#% reduced Mana Regeneration Rate", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_789117908"], "implicit": ["implicit.stat_789117908"], "enchant": ["enchant.stat_789117908"], "rune": ["rune.stat_789117908"], "pseudo": ["pseudo.pseudo_increased_mana_regen"]}}} +{"ref": "#% increased Movement Speed", "better": 1, "id": "base_movement_velocity_+%", "matchers": [{"string": "#% increased Movement Speed", "negate": false}, {"string": "#% reduced Movement Speed", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2250533757"], "implicit": ["implicit.stat_2250533757"], "enchant": ["enchant.stat_2250533757"], "sanctum": ["sanctum.stat_1416455556"], "pseudo": ["pseudo.pseudo_increased_movement_speed"]}}} +{"ref": "#% increased Spell Damage", "better": 1, "id": "spell_damage_+%", "matchers": [{"string": "#% increased Spell Damage", "negate": false}, {"string": "#% reduced Spell Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2974417149"], "enchant": ["enchant.stat_2974417149"], "pseudo": ["pseudo.pseudo_increased_spell_damage"]}}} +{"ref": "#% total increased Physical Damage", "better": 1, "matchers": [{"string": "#% total increased Physical Damage "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_physical_damage"]}}} +{"ref": "+# total maximum Energy Shield", "better": 1, "matchers": [{"string": "+# total maximum Energy Shield "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_energy_shield"]}}} +{"ref": "+# total maximum Life", "better": 1, "matchers": [{"string": "+# total maximum Life "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_life"]}}} +{"ref": "+# total maximum Mana", "better": 1, "matchers": [{"string": "+# total maximum Mana "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_mana"]}}} +{"ref": "+# total to all Attributes", "better": 1, "matchers": [{"string": "+# total to all Attributes "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_all_attributes"]}}} +{"ref": "+# total to Dexterity", "better": 1, "matchers": [{"string": "+# total to Dexterity "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_dexterity"]}}} +{"ref": "+# total to Intelligence", "better": 1, "matchers": [{"string": "+# total to Intelligence "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_intelligence"]}}} +{"ref": "+# total to Strength", "better": 1, "matchers": [{"string": "+# total to Strength "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_strength"]}}} +{"ref": "+#% Global Critical Strike Chance", "better": 1, "matchers": [{"string": "+#% Global Critical Strike Chance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_global_critical_strike_chance"]}}} +{"ref": "+#% Global Critical Strike Multiplier", "better": 1, "matchers": [{"string": "+#% Global Critical Strike Multiplier "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_global_critical_strike_multiplier"]}}} +{"ref": "+#% total Attack Speed", "better": 1, "matchers": [{"string": "+#% total Attack Speed "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_attack_speed"]}}} +{"ref": "+#% total Cast Speed", "better": 1, "matchers": [{"string": "+#% total Cast Speed "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_cast_speed"]}}} +{"ref": "+#% total Elemental Resistance", "better": 1, "matchers": [{"string": "+#% total Elemental Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_elemental_resistance"]}}} +{"ref": "+#% total to Chaos Resistance", "better": 1, "matchers": [{"string": "+#% total to Chaos Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_chaos_resistance"]}}} +{"ref": "+#% total to Cold Resistance", "better": 1, "matchers": [{"string": "+#% total to Cold Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_cold_resistance"]}}} +{"ref": "+#% total to Fire Resistance", "better": 1, "matchers": [{"string": "+#% total to Fire Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_fire_resistance"]}}} +{"ref": "+#% total to Lightning Resistance", "better": 1, "matchers": [{"string": "+#% total to Lightning Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_lightning_resistance"]}}} {"ref": "+# to Strength", "better": 1, "id": "additional_strength", "matchers": [{"string": "# to Strength", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4080418644"], "implicit": ["implicit.stat_4080418644"], "enchant": ["enchant.stat_4080418644"]}}} {"ref": "+# to Dexterity", "better": 1, "id": "additional_dexterity", "matchers": [{"string": "# to Dexterity", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3261801346"], "implicit": ["implicit.stat_3261801346"], "enchant": ["enchant.stat_3261801346"]}}} {"ref": "+# to Intelligence", "better": 1, "id": "additional_intelligence", "matchers": [{"string": "# to Intelligence", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_328541901"], "implicit": ["implicit.stat_328541901"], "enchant": ["enchant.stat_328541901"]}}} @@ -29,7 +58,6 @@ {"ref": "#% increased Evasion and Energy Shield", "better": 1, "id": "local_evasion_and_energy_shield_+%", "matchers": [{"string": "#% increased Evasion and Energy Shield", "negate": false}, {"string": "#% reduced Evasion and Energy Shield", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1999113824"], "enchant": ["enchant.stat_1999113824"]}}} {"ref": "#% increased Attribute Requirements", "better": 1, "id": "local_attribute_requirements_+%", "matchers": [{"string": "#% increased Attribute Requirements", "negate": false}, {"string": "#% reduced Attribute Requirements", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3639275092"], "enchant": ["enchant.stat_3639275092"]}}} {"ref": "+# to Stun Threshold", "better": 1, "id": "stun_threshold_+", "matchers": [{"string": "# to Stun Threshold", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_915769802"], "rune": ["rune.stat_915769802"]}}} -{"ref": "#% increased Movement Speed", "better": 1, "id": "base_movement_velocity_+%", "matchers": [{"string": "#% increased Movement Speed", "negate": false}, {"string": "#% reduced Movement Speed", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2250533757"], "implicit": ["implicit.stat_2250533757"], "enchant": ["enchant.stat_2250533757"], "sanctum": ["sanctum.stat_1416455556"]}}} {"ref": "# to # Physical Thorns damage", "better": 1, "id": "thorns_minimum_base_physical_damage", "matchers": [{"string": "# to # Physical Thorns damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2881298780"]}}} {"ref": "Adds # to # Physical Damage to Attacks", "better": 1, "id": "attack_minimum_added_physical_damage", "matchers": [{"string": "Adds # to # Physical Damage to Attacks", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3032590688"], "implicit": ["implicit.stat_3032590688"]}}} {"ref": "Adds # to # Fire damage to Attacks", "better": 1, "id": "attack_minimum_added_fire_damage", "matchers": [{"string": "Adds # to # Fire damage to Attacks", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1573130764"], "implicit": ["implicit.stat_1573130764"]}}} @@ -45,10 +73,6 @@ {"ref": "Allies in your Presence deal # to # additional Attack Lightning Damage", "better": 1, "id": "allies_in_presence_attack_minimum_added_lightning_damage", "matchers": [{"string": "Allies in your Presence deal # to # additional Attack Lightning Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2854751904"]}}} {"ref": "No Physical Damage", "better": 1, "id": "local_physical_damage_+%", "matchers": [{"string": "No Physical Damage", "negate": false}], "trade": {"ids": null}} {"ref": "Allies in your Presence deal #% increased Damage", "better": 1, "id": "allies_in_presence_damage_+%", "matchers": [{"string": "Allies in your Presence deal #% increased Damage", "negate": false}, {"string": "Allies in your Presence deal #% reduced Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1798257884"], "enchant": ["enchant.stat_1798257884"]}}} -{"ref": "#% increased Spell Damage", "better": 1, "id": "spell_damage_+%", "matchers": [{"string": "#% increased Spell Damage", "negate": false}, {"string": "#% reduced Spell Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2974417149"], "enchant": ["enchant.stat_2974417149"]}}} -{"ref": "#% increased Fire Damage", "better": 1, "id": "fire_damage_+%", "matchers": [{"string": "#% increased Fire Damage", "negate": false}, {"string": "#% reduced Fire Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3962278098"]}}} -{"ref": "#% increased Cold Damage", "better": 1, "id": "cold_damage_+%", "matchers": [{"string": "#% increased Cold Damage", "negate": false}, {"string": "#% reduced Cold Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3291658075"]}}} -{"ref": "#% increased Lightning Damage", "better": 1, "id": "lightning_damage_+%", "matchers": [{"string": "#% increased Lightning Damage", "negate": false}, {"string": "#% reduced Lightning Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2231156303"]}}} {"ref": "#% increased Chaos Damage", "better": 1, "id": "chaos_damage_+%", "matchers": [{"string": "#% increased Chaos Damage", "negate": false}, {"string": "#% reduced Chaos Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_736967255"]}}} {"ref": "#% increased Spell Physical Damage", "better": 1, "id": "spell_physical_damage_+%", "matchers": [{"string": "#% increased Spell Physical Damage", "negate": false}, {"string": "#% reduced Spell Physical Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2768835289"]}}} {"ref": "#% increased Trap Damage", "better": 1, "id": "trap_damage_+%", "matchers": [{"string": "#% increased Trap Damage", "negate": false}, {"string": "#% reduced Trap Damage", "negate": true}], "trade": {"ids": null}} @@ -64,7 +88,6 @@ {"ref": "+# to Level of all Projectile Skills", "better": 1, "id": "projectile_skill_gem_level_+", "matchers": [{"string": "# to Level of all Projectile Skills", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1202301673"]}}} {"ref": "# Life Regeneration per second", "better": 1, "id": "base_life_regeneration_rate_per_minute", "matchers": [{"string": "# Life Regeneration per second", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3325883026"], "implicit": ["implicit.stat_3325883026"]}}} {"ref": "Allies in your Presence Regenerate # Life per second", "better": 1, "id": "allies_in_presence_life_regeneration_rate_per_minute", "matchers": [{"string": "Allies in your Presence Regenerate # Life per second", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4010677958"]}}} -{"ref": "#% increased Mana Regeneration Rate", "better": 1, "id": "mana_regeneration_rate_+%", "matchers": [{"string": "#% increased Mana Regeneration Rate", "negate": false}, {"string": "#% reduced Mana Regeneration Rate", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_789117908"], "implicit": ["implicit.stat_789117908"], "enchant": ["enchant.stat_789117908"], "rune": ["rune.stat_789117908"]}}} {"ref": "Leech #% of Physical Attack Damage as Life", "better": 1, "id": "base_life_leech_from_physical_attack_damage_permyriad", "matchers": [{"string": "Leech #% of Physical Attack Damage as Life", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2557965901"], "enchant": ["enchant.stat_2557965901"]}}} {"ref": "Leeches #% of Physical Damage as Life", "better": 1, "id": "local_life_leech_from_physical_damage_permyriad", "matchers": [{"string": "Leeches #% of Physical Damage as Life", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_55876295"], "rune": ["rune.stat_55876295"]}}} {"ref": "Leech #% of Physical Attack Damage as Mana", "better": 1, "id": "base_mana_leech_from_physical_attack_damage_permyriad", "matchers": [{"string": "Leech #% of Physical Attack Damage as Mana", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_707457662"], "enchant": ["enchant.stat_707457662"]}}} @@ -114,7 +137,7 @@ {"ref": "+#% to all Maximum Elemental Resistances", "better": 1, "id": "additional_maximum_all_elemental_resistances_%", "matchers": [{"string": "#% to all Maximum Elemental Resistances", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1978899297"], "implicit": ["implicit.stat_1978899297"], "enchant": ["enchant.stat_1978899297"]}}} {"ref": "#% increased Energy Shield Recharge Rate", "better": 1, "id": "energy_shield_recharge_rate_+%", "matchers": [{"string": "#% increased Energy Shield Recharge Rate", "negate": false}, {"string": "#% reduced Energy Shield Recharge Rate", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2339757871"]}}} {"ref": "#% chance to Pierce an Enemy", "better": 1, "id": "base_chance_to_pierce_%", "matchers": [{"string": "#% chance to Pierce an Enemy", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2321178454"], "implicit": ["implicit.stat_2321178454"], "enchant": ["enchant.stat_2321178454"]}}} -{"ref": "Bow Attacks fire an additional Arrow", "better": 1, "id": "number_of_additional_arrows", "matchers": [{"string": "Bow Attacks fire an additional Arrow", "negate": false}], "trade": {"ids": null}} +{"ref": "Bow Attacks fire an additional Arrow", "better": 1, "id": "number_of_additional_arrows", "matchers": [{"string": "Bow Attacks fire an additional Arrow", "negate": false}, {"string": "Bow Attacks fire # additional Arrows", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3885405204"], "implicit": ["implicit.stat_3885405204"], "enchant": ["enchant.stat_3885405204"]}}} {"ref": "Loads an additional bolt", "better": 1, "id": "base_number_of_crossbow_bolts", "matchers": [{"string": "Loads an additional bolt", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1039380318"], "implicit": ["implicit.stat_1039380318"], "enchant": ["enchant.stat_1039380318"]}}} {"ref": "#% increased Flask Life Recovery rate", "better": 1, "id": "flask_life_recovery_rate_+%", "matchers": [{"string": "#% increased Flask Life Recovery rate", "negate": false}, {"string": "#% reduced Flask Life Recovery rate", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_51994685"]}}} {"ref": "#% increased Flask Mana Recovery rate", "better": 1, "id": "flask_mana_recovery_rate_+%", "matchers": [{"string": "#% increased Flask Mana Recovery rate", "negate": false}, {"string": "#% reduced Flask Mana Recovery rate", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1412217137"]}}} @@ -132,7 +155,6 @@ {"ref": "#% of Damage taken Recouped as Mana", "better": 1, "id": "damage_taken_goes_to_mana_%", "matchers": [{"string": "#% of Damage taken Recouped as Mana", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_472520716"], "enchant": ["enchant.stat_472520716"]}}} {"ref": "#% increased Stun Duration", "better": 1, "id": "local_base_stun_duration_+%", "matchers": [{"string": "#% increased Stun Duration", "negate": false}, {"string": "#% reduced Stun Duration", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_748522257"]}}} {"ref": "Causes #% increased Stun Buildup", "better": 1, "id": "local_hit_damage_stun_multiplier_+%", "matchers": [{"string": "Causes #% increased Stun Buildup", "negate": false}, {"string": "Causes #% reduced Stun Buildup", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_791928121"], "implicit": ["implicit.stat_791928121"], "enchant": ["enchant.stat_791928121"], "rune": ["rune.stat_791928121"]}}} -{"ref": "#% increased Elemental Damage with Attacks", "better": 1, "id": "elemental_damage_with_attack_skills_+%", "matchers": [{"string": "#% increased Elemental Damage with Attacks", "negate": false}, {"string": "#% reduced Elemental Damage with Attacks", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_387439868"], "enchant": ["enchant.stat_387439868"], "rune": ["rune.stat_387439868"]}}} {"ref": "Gain #% of Damage as Extra Fire Damage", "better": 1, "id": "non_skill_base_all_damage_%_to_gain_as_fire", "matchers": [{"string": "Gain #% of Damage as Extra Fire Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3015669065"]}}} {"ref": "Gain #% of Damage as Extra Cold Damage", "better": 1, "id": "non_skill_base_all_damage_%_to_gain_as_cold", "matchers": [{"string": "Gain #% of Damage as Extra Cold Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2505884597"]}}} {"ref": "Gain #% of Damage as Extra Lightning Damage", "better": 1, "id": "non_skill_base_all_damage_%_to_gain_as_lightning", "matchers": [{"string": "Gain #% of Damage as Extra Lightning Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3278136794"]}}} @@ -197,7 +219,7 @@ {"ref": "Causes Enemies to Explode on Critical kill, for #% of their Life as Physical Damage", "better": 1, "id": "local_explode_on_kill_with_crit_%_physical_damage_to_deal", "matchers": [{"string": "Causes Enemies to Explode on Critical kill, for #% of their Life as Physical Damage", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_1541903247"]}}} {"ref": "Crushes Enemies on Hit", "better": 1, "id": "local_crush_on_hit", "matchers": [{"string": "Crushes Enemies on Hit", "negate": false}], "trade": {"ids": null}} {"ref": "#% chance to Maim on Hit", "better": 1, "id": "local_maim_on_hit_%", "matchers": [{"string": "#% chance to Maim on Hit", "negate": false}], "trade": {"ids": {"enchant": ["enchant.stat_2763429652"]}}} -{"ref": "#% increased Projectile Speed when thrown", "better": 1, "id": "local_projectile_speed_+%", "matchers": [{"string": "#% increased Projectile Speed when thrown", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Projectile Speed when thrown", "better": 1, "id": "local_projectile_speed_+%", "matchers": [{"string": "#% increased Projectile Speed when thrown", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_535217483"]}}} {"ref": "Uses both hand slots", "better": 1, "id": "local_weapon_uses_both_hands", "matchers": [{"string": "Uses both hand slots", "negate": false}], "trade": {"ids": null}} {"ref": "#% chance to Blind Enemies on hit", "better": 1, "id": "local_chance_to_blind_on_hit_%", "matchers": [{"string": "#% chance to Blind Enemies on hit", "negate": false}], "trade": {"ids": {"enchant": ["enchant.stat_2301191210"]}}} {"ref": "#% chance to Poison on Hit", "better": 1, "id": "local_poison_on_hit_%", "matchers": [{"string": "#% chance to Poison on Hit", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_795138349"], "enchant": ["enchant.stat_3885634897"], "rune": ["rune.stat_3885634897"]}}} @@ -254,7 +276,6 @@ {"ref": "#% increased Daze Buildup", "better": 1, "id": "daze_build_up_+%", "matchers": [{"string": "#% increased Daze Buildup", "negate": false}, {"string": "#% reduced Daze Buildup", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1949833742"]}}} {"ref": "Debuffs on you expire #% faster", "better": 1, "id": "debuff_time_passed_+%", "matchers": [{"string": "Debuffs on you expire #% faster", "negate": false}, {"string": "Debuffs on you expire #% slower", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1238227257"]}}} {"ref": "#% increased Duration of Ignite, Shock and Chill on Enemies", "better": 1, "id": "ignite_shock_chill_duration_+%", "matchers": [{"string": "#% increased Duration of Ignite, Shock and Chill on Enemies", "negate": false}, {"string": "#% reduced Duration of Ignite, Shock and Chill on Enemies", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1062710370"]}}} -{"ref": "#% increased Elemental Damage", "better": 1, "id": "elemental_damage_+%", "matchers": [{"string": "#% increased Elemental Damage", "negate": false}, {"string": "#% reduced Elemental Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3141070085"]}}} {"ref": "Empowered Attacks deal #% increased Damage", "better": 1, "id": "empowered_attack_damage_+%", "matchers": [{"string": "Empowered Attacks deal #% increased Damage", "negate": false}, {"string": "Empowered Attacks deal #% reduced Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1569101201"]}}} {"ref": "Meta Skills gain #% increased Energy", "better": 1, "id": "energy_generated_+%", "matchers": [{"string": "Meta Skills gain #% increased Energy", "negate": false}, {"string": "Meta Skills gain #% reduced Energy", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_4236566306"], "enchant": ["enchant.stat_4236566306"]}}} {"ref": "Damaging Ailments deal damage #% faster", "better": 1, "id": "damaging_ailments_deal_damage_+%_faster", "matchers": [{"string": "Damaging Ailments deal damage #% faster", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_538241406"]}}} diff --git a/renderer/public/.DS_Store/data/ko/items.ndjson.old b/renderer/public/.DS_Store/data/ko/items.ndjson.old new file mode 100644 index 000000000..f9ca2235a --- /dev/null +++ b/renderer/public/.DS_Store/data/ko/items.ndjson.old @@ -0,0 +1,4527 @@ +{"name":"산성 미끄럼뱀","refName":"Acid Slitherer","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"미숙한 렉스","refName":"Adolescent Rhex","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"고산 악마","refName":"Alpine Devil","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"고산 주술사","refName":"Alpine Shaman","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"아라칼리의 딸","refName":"Arakaali's Daughter","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"한기의 늑대","refName":"Arctic Wolf","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"방어구 깨물이","refName":"Armour Cruncher","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"사태 기수","refName":"Avalanche Rider","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"구역질나는 새","refName":"Avian Retch","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"가시 독사","refName":"Barb Serpent","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"무덤의 유인원","refName":"Barrow Ape","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"염소인간 악마","refName":"Bearded Devil","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"염소인간 주술사","refName":"Bearded Shaman","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"염소인간 하늘소환사","refName":"Bearded Skycaller","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"검은 모리건","refName":"Black Mórrigan","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"검은 전갈","refName":"Black Scorpion","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"백색 파행 벌레","refName":"Bleached Crawler","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"피의 유인원","refName":"Blood Ape","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"피의 부족장","refName":"Blood Chieftain","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"뼈 깨물이","refName":"Bone Cruncher","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"뼈 로아","refName":"Bone Rhoa","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"가시나무 코브라","refName":"Bramble Cobra","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"염수의 봉신","refName":"Brine Vassal","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"음울한 타란툴라","refName":"Brooding Tarantula","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"학살의 유인원","refName":"Carnage Ape","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"학살의 부족장","refName":"Carnage Chieftain","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"부패하는 굴착자","refName":"Carrion Burrower","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"부패하는 여왕","refName":"Carrion Queen","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"부패하는 무리","refName":"Carrion Swarmer","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"동굴 야수","refName":"Cave Beast","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"동굴 잽싼거미","refName":"Cave Skitterer","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"암굴 떠돌이","refName":"Cavern Drifter","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"키메라 물렁이","refName":"Chimeric Croaker","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"크롬 주입 키메랄","refName":"Chrome-infused Chimeral","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"크롬 주입 물렁이","refName":"Chrome-infused Croaker","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"크롬 주입 골리앗","refName":"Chrome-infused Goliath","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"크롬 도금 키메랄","refName":"Chrome-touched Chimeral","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"크롬 도금 물렁이","refName":"Chrome-touched Croaker","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"크롬 도금 골리앗","refName":"Chrome-touched Goliath","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"초대형 타쇄자","refName":"Colossus Crusher","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"타락한 거미","refName":"Corrupted Arach","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"타락한 야수","refName":"Corrupted Beast","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"타락한 로아","refName":"Corrupted Rhoa","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"타락한 전갈","refName":"Corrupted Spitter","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"심해의 최초, 크라칸","refName":"Craiceann, First of the Deep","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"크라칸의 키메랄","refName":"Craicic Chimeral","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"크라칸의 큰턱개구리","refName":"Craicic Maw","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"크라칸의 모래 전갈","refName":"Craicic Sand Spitter","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"크라칸의 사나운 게","refName":"Craicic Savage Crab","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"크라칸의 방패게","refName":"Craicic Shield Crab","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"크라칸의 거미게","refName":"Craicic Spider Crab","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"크라칸의 오징어","refName":"Craicic Squid","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"크라칸의 봉신","refName":"Craicic Vassal","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"크라칸의 감시자","refName":"Craicic Watcher","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"갑각류 저격충","refName":"Crustacean Sniper","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"지하실 매복자","refName":"Crypt Ambusher","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"지하실 직공","refName":"Crypt Weaver","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"저주받은 유충","refName":"Cursed Spawn","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"심층 갑각류","refName":"Deep Crustacean","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"포식자","refName":"Devourer","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"흙 넝마주이","refName":"Dirt Scrabbler","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"공포의 영장류","refName":"Dread Primate","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"사구 헬리온","refName":"Dune Hellion","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"먼지 넝마주이","refName":"Dust Scrabbler","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"도취된 거미류","refName":"Enraptured Arachnid","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"도취된 야수","refName":"Enraptured Beast","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"도취된 게","refName":"Enraptured Crab","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"노예 헬리온","refName":"Enslaved Hellion","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"탈출한 렉스","refName":"Escaped Rhex","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"페룰 유인원","refName":"Farric Ape","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"페룰 부족장","refName":"Farric Chieftain","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"페룰 화염 헬리온 우두머리","refName":"Farric Flame Hellion Alpha","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"페룰 서리 헬리온 우두머리","refName":"Farric Frost Hellion Alpha","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"페룰 가르강튀아","refName":"Farric Gargantuan","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"페룰 염소인간","refName":"Farric Goatman","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"페룰의 골리앗","refName":"Farric Goliath","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"페룰 스라소니 우두머리","refName":"Farric Lynx Alpha","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"페룰 마그마 사냥개","refName":"Farric Magma Hound","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"페룰 구덩이 사냥개","refName":"Farric Pit Hound","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"페룰 황소자리","refName":"Farric Taurus","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"페룰 호랑이 우두머리","refName":"Farric Tiger Alpha","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"페룰 곰","refName":"Farric Ursa","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"페룰의 늑대 우두머리","refName":"Farric Wolf Alpha","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"평야의 최초, 페룰","refName":"Farrul, First of the Plains","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"페누무스 포식자","refName":"Fenumal Devourer","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"페누무스 잡종 거미류","refName":"Fenumal Hybrid Arachnid","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"페누무스 역병 걸린 거미류","refName":"Fenumal Plagued Arachnid","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"페누무스 여왕","refName":"Fenumal Queen","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"페누무스 전갈","refName":"Fenumal Scorpion","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"페누무스 넝마주이","refName":"Fenumal Scrabbler","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"페누무스 과부 거미","refName":"Fenumal Widow","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"밤의 최초, 페누무스","refName":"Fenumus, First of the Night","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"야생 키메랄","refName":"Feral Chimeral","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"야생닭","refName":"Feral Fowl","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"악취 나는 큰턱개구리","refName":"Fetid Maw","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"싸움소","refName":"Fighting Bull","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"오물 큰턱개구리","refName":"Filth Maw","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"화염 헬리온","refName":"Flame Hellion","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"숲 야수","refName":"Forest Beast","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"동결 늑대","refName":"Freezing Wolf","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"광분한 사냥개","refName":"Fury Hound","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"풀숲 큰독사","refName":"Glade Mamba","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"걸신들린 갈매기","refName":"Gluttonous Gull","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"염소인간","refName":"Goatman","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"염소인간 방화범","refName":"Goatman Fire-raiser","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"염소인간 주술사","refName":"Goatman Shaman","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"염소인간 반항자","refName":"Goatman Stomper","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"화강암 포식자","refName":"Granite Eater","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"자갈 포식자","refName":"Gravel Eater","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"식사하는 황소자리","refName":"Grazing Taurus","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"털투성이 뼈깨물이","refName":"Hairy Bonecruncher","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"새끼거미","refName":"Hatchling","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"언덕 악마","refName":"Hill Devil","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"숙주 살무사","refName":"Host Adder","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"숙주 부족장","refName":"Host Chieftain","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"숙주 코브라","refName":"Host Cobra","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"잡종 거미류","refName":"Hybrid Arachnid","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"감염된 유인원","refName":"Infested Ape","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"감염된 게","refName":"Infested Crab","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"감염된 파행 벌레","refName":"Infested Crawler","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"감염된 큰턱개구리","refName":"Infested Maw","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"감염된 로아","refName":"Infested Rhoa","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"감염된 독사","refName":"Infested Serpent","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"감염된 잽싼거미","refName":"Infested Skitterer","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"감염된 터널마귀","refName":"Infested Tunnelfiend","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"감염된 곰","refName":"Infested Ursa","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"감염된 시체매","refName":"Infested Vulture","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"잉크 거미","refName":"Ink Spinner","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"도약 거미","refName":"Leaping Spider","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"저지대 깡총이","refName":"Lowlands Hopper","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"도사리는 독액","refName":"Lurking Venom","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"어미 렉스","refName":"Maternal Rhex","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"머베일의 수행원","refName":"Merveil's Attendant","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"머베일에 축복받은 자","refName":"Merveil's Blessed","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"머베일에 선택받은 자","refName":"Merveil's Chosen","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"머베일의 딸","refName":"Merveil's Daughter","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"머베일의 총애자","refName":"Merveil's Favoured","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"머베일의 신하","refName":"Merveil's Retainer","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"무심한 청소부","refName":"Mindless Scavenger","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"산맥 헬리온","refName":"Mountain Hellion","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"산맥 헬리온 우두머리","refName":"Mountain Hellion Alpha","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"산맥 스라소니","refName":"Mountain Lynx","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"암흑 질주자","refName":"Murk Runner","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"변종 거미","refName":"Mutant Arach","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"밤 살무사","refName":"Night Adder","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"유독성 타란툴라","refName":"Noxious Tarantula","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"흑요석 포식자","refName":"Obsidian Eater","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"기생충","refName":"Parasite","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"투견 악마","refName":"Pitbull Demon","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"역병 걸린 거미류","refName":"Plagued Arachnid","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"판금 기생충","refName":"Plated Parasite","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"깃털 키메랄","refName":"Plumed Chimeral","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"곤두박질 곰","refName":"Plummeting Ursa","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"호저 골리앗","refName":"Porcupine Goliath","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"육식 전갈","refName":"Predatory Scorpion","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"원시 박살발톱","refName":"Primal Crushclaw","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"원시 낭종소환사","refName":"Primal Cystcaller","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"원시 렉스 어미","refName":"Primal Rhex Matriarch","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"숙청 사냥개","refName":"Purge Hound","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"굶주린 기생충","refName":"Ravenous Parasite","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"암컷 로아","refName":"Rhoa Mare","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"바위 전갈","refName":"Rock Spitter","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"수탉 마귀","refName":"Rooster Fiend","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"썩어가는 시체매","refName":"Rotting Vulture","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"유적 헬리온","refName":"Ruins Hellion","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"모래 뜀박이","refName":"Sand Leaper","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"모래 전갈","refName":"Sand Scorpion","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"모래 독사","refName":"Sand Serpent","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"모래 잽싼거미","refName":"Sand Skitterer","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"하늘의 최초, 사카왈","refName":"Saqawal, First of the Sky","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"사카왈 피 독사","refName":"Saqawine Blood Viper","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"사카왈 키메랄","refName":"Saqawine Chimeral","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"사카왈 코브라","refName":"Saqawine Cobra","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"사카왈 레치","refName":"Saqawine Retch","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"사카왈 렉스","refName":"Saqawine Rhex","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"사카왈 로아","refName":"Saqawine Rhoa","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"사카왈 시체매","refName":"Saqawine Vulture","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"사나운 게","refName":"Savage Crab","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"뜨거운 거미류","refName":"Scalding Arachnid","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"청소하는 시체매","refName":"Scavenging Vulture","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"쓰레기 파행 벌레","refName":"Scum Crawler","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"오염된 파행 벌레","refName":"Sewage Crawler","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"하수도 떠돌이","refName":"Sewer Drifter","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"족쇄 찬 헬리온","refName":"Shackled Hellion","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"털북숭이 괴수","refName":"Shaggy Monstrosity","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"노래하는 사이렌","refName":"Singing Siren","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"해골 야수","refName":"Skeletal Beast","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"물컹한 천벌","refName":"Slimy Nemesis","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"눈 늑대","refName":"Snow Wolf","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"영혼 없는 감시자","refName":"Soulless Watcher","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"물레 거미","refName":"Spindle Spider","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"척추 독사","refName":"Spine Serpent","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"뱉는 기생충","refName":"Spitting Parasite","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"명계의 유인원","refName":"Stygian Ape","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"명계의 수컷고릴라","refName":"Stygian Silverback","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"유황 전갈","refName":"Sulphuric Scorpion","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"유황유충","refName":"Sulphurspawn","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"거뭇한 연체류","refName":"Swarthy Mollusc","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"발톱 궁수","refName":"Talon Archer","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"수컷 로아","refName":"Tercel Rhoa","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"잡목림 거대 곰","refName":"Thicket Hulk","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"맹독성 파행 벌레","refName":"Toxic Crawler","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"터널마귀","refName":"Tunnelfiend","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"바알 은자","refName":"Vaal Recluse","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"뜀틀 물렁이","refName":"Vaulting Croaker","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"독성 유충","refName":"Venomous Spawn","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"포악한 사냥개","refName":"Vicious Hound","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"포악한 기생충","refName":"Vicious Parasite","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"병독성 거미","refName":"Virulent Spider","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"혈기 애버라라크","refName":"Vivid Abberarach","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"혈기 시체매","refName":"Vivid Vulture","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"혈기 감시자","refName":"Vivid Watcher","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"전쟁 사냥개","refName":"War Hound","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"황무지 러처","refName":"Waste Lurcher","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"거미줄 덮인 거미","refName":"Webbed Spider","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"야생 가시나무등","refName":"Wild Brambleback","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"야생 털짐승 어미","refName":"Wild Bristle Matron","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"야생 헬리온 우두머리","refName":"Wild Hellion Alpha","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"황야 렉스","refName":"Wild Rhex","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"숲속 곰","refName":"Woods Ursa","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"싸늘한 바람","refName":"A Chilling Wind","namespace":"DIVINATION_CARD","tradeTag":"a-chilling-wind","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"약간의 잉크","refName":"A Dab of Ink","namespace":"DIVINATION_CARD","tradeTag":"a-dab-of-ink","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"먼지 쌓인 기억","refName":"A Dusty Memory","namespace":"DIVINATION_CARD","tradeTag":"a-dusty-memory","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"귀에 익은 외침","refName":"A Familiar Call","namespace":"DIVINATION_CARD","tradeTag":"a-familiar-call","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"죽음보다 더한 운명","refName":"A Fate Worse Than Death","namespace":"DIVINATION_CARD","tradeTag":"a-fate-worse-than-death","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"소박한 부탁","refName":"A Modest Request","namespace":"DIVINATION_CARD","tradeTag":"a-modest-request","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"어머니의 이별 선물","refName":"A Mother's Parting Gift","namespace":"DIVINATION_CARD","tradeTag":"a-mothers-parting-gift","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"바람 속의 기록","refName":"A Note in the Wind","namespace":"DIVINATION_CARD","tradeTag":"a-note-in-the-wind","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"푸른색의 바다","refName":"A Sea of Blue","namespace":"DIVINATION_CARD","tradeTag":"a-sea-of-blue","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"완벽해진 돌","refName":"A Stone Perfected","namespace":"DIVINATION_CARD","tradeTag":"a-stone-perfected","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"버려진 재산","refName":"Abandoned Wealth","namespace":"DIVINATION_CARD","tradeTag":"abandoned-wealth","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"순응","refName":"Acclimatisation","namespace":"DIVINATION_CARD","tradeTag":"acclimatisation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"아킬의 예언","refName":"Akil's Prophecy","namespace":"DIVINATION_CARD","tradeTag":"akils-prophecy","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"알리비아의 은총","refName":"Alivia's Grace","namespace":"DIVINATION_CARD","tradeTag":"alivias-grace","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"유혹의 하사품","refName":"Alluring Bounty","namespace":"DIVINATION_CARD","tradeTag":"alluring-bounty","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"어둠 속에서 홀로","refName":"Alone in the Darkness","namespace":"DIVINATION_CARD","tradeTag":"alone-in-the-darkness","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"변질된 감각","refName":"Altered Perception","namespace":"DIVINATION_CARD","tradeTag":"altered-perception","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"야심찬 집착","refName":"Ambitious Obsession","namespace":"DIVINATION_CARD","tradeTag":"ambitious-obsession","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"혼란의 가치","refName":"Anarchy's Price","namespace":"DIVINATION_CARD","tradeTag":"anarchys-price","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"바알의 오만","refName":"Arrogance of the Vaal","namespace":"DIVINATION_CARD","tradeTag":"arrogance-of-the-vaal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"암살자의 호의","refName":"Assassin's Favour","namespace":"DIVINATION_CARD","tradeTag":"assassins-favour","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"암살자의 선물","refName":"Assassin's Gift","namespace":"DIVINATION_CARD","tradeTag":"assassins-gift","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"우주의 보호","refName":"Astral Protection","namespace":"DIVINATION_CARD","tradeTag":"astral-protection","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"앗지리의 병기창","refName":"Atziri's Arsenal","namespace":"DIVINATION_CARD","tradeTag":"atziris-arsenal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"대담성","refName":"Audacity","namespace":"DIVINATION_CARD","tradeTag":"audacity","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"상서로운 야망","refName":"Auspicious Ambitions","namespace":"DIVINATION_CARD","tradeTag":"auspicious-ambitions","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"새의 추적","refName":"Avian Pursuit","namespace":"DIVINATION_CARD","tradeTag":"avian-pursuit","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"담청색 격노","refName":"Azure Rage","namespace":"DIVINATION_CARD","tradeTag":"azure-rage","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"아지란의 보상","refName":"Azyran's Reward","namespace":"DIVINATION_CARD","tradeTag":"azyrans-reward","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"현혹된 기대","refName":"Baited Expectations","namespace":"DIVINATION_CARD","tradeTag":"baited-expectations","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"죽음을 지나온 아름다움","refName":"Beauty Through Death","namespace":"DIVINATION_CARD","tradeTag":"beauty-through-death","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"보석","refName":"Bijoux","namespace":"DIVINATION_CARD","tradeTag":"bijoux","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"세 여신의 탄생","refName":"Birth of the Three","namespace":"DIVINATION_CARD","tradeTag":"birth-of-the-three","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"무모한 모험","refName":"Blind Venture","namespace":"DIVINATION_CARD","tradeTag":"blind-venture","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"정의의 은혜","refName":"Boon of Justice","namespace":"DIVINATION_CARD","tradeTag":"boon-of-justice","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"최초의 존재들의 은혜","refName":"Boon of the First Ones","namespace":"DIVINATION_CARD","tradeTag":"boon-of-the-first-ones","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"무한한 영역","refName":"Boundless Realms","namespace":"DIVINATION_CARD","tradeTag":"boundless-realms","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"활장이의 꿈","refName":"Bowyer's Dream","namespace":"DIVINATION_CARD","tradeTag":"bowyers-dream","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"깨진 약속","refName":"Broken Promises","namespace":"DIVINATION_CARD","tradeTag":"broken-promises","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"깨진 휴전","refName":"Broken Truce","namespace":"DIVINATION_CARD","tradeTag":"broken-truce","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"형제의 선물","refName":"Brother's Gift","namespace":"DIVINATION_CARD","tradeTag":"brothers-gift","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"형제의 보관함","refName":"Brother's Stash","namespace":"DIVINATION_CARD","tradeTag":"brothers-stash","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"유배의 형제","refName":"Brotherhood in Exile","namespace":"DIVINATION_CARD","tradeTag":"brotherhood-in-exile","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"붓, 물감과 팔레트","refName":"Brush, Paint and Palette","namespace":"DIVINATION_CARD","tradeTag":"brush-paint-and-palette","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"파묻힌 보물","refName":"Buried Treasure","namespace":"DIVINATION_CARD","tradeTag":"buried-treasure","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"불타는 피","refName":"Burning Blood","namespace":"DIVINATION_CARD","tradeTag":"burning-blood","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"최초의 존재들에게 외치다","refName":"Call to the First Ones","namespace":"DIVINATION_CARD","tradeTag":"call-to-the-first-ones","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"카메리아의 상처","refName":"Cameria's Cut","namespace":"DIVINATION_CARD","tradeTag":"camerias-cut","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"지도제작자의 기쁨","refName":"Cartographer's Delight","namespace":"DIVINATION_CARD","tradeTag":"cartographers-delight","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"혼돈의 결정","refName":"Chaotic Disposition","namespace":"DIVINATION_CARD","tradeTag":"chaotic-disposition","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"위험을 좇아서","refName":"Chasing Risk","namespace":"DIVINATION_CARD","tradeTag":"chasing-risk","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"체크메이트","refName":"Checkmate","namespace":"DIVINATION_CARD","tradeTag":"checkmate","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"숨막히는 죄책감","refName":"Choking Guilt","namespace":"DIVINATION_CARD","tradeTag":"choking-guilt","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"값비싼 예술품","refName":"Costly Curio","namespace":"DIVINATION_CARD","tradeTag":"costly-curio","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"고양이 의회","refName":"Council of Cats","namespace":"DIVINATION_CARD","tradeTag":"council-of-cats","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"갈망하던 소유","refName":"Coveted Possession","namespace":"DIVINATION_CARD","tradeTag":"coveted-possession","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"저주의 말","refName":"Cursed Words","namespace":"DIVINATION_CARD","tradeTag":"cursed-words","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"암흑의 꿈","refName":"Dark Dreams","namespace":"DIVINATION_CARD","tradeTag":"dark-dreams","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"어둠의 유혹","refName":"Dark Temptation","namespace":"DIVINATION_CARD","tradeTag":"dark-temptation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"어두운 이면","refName":"Darker Half","namespace":"DIVINATION_CARD","tradeTag":"darker-half","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"치명적인 기쁨","refName":"Deadly Joy","namespace":"DIVINATION_CARD","tradeTag":"deadly-joy","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"죽음","refName":"Death","namespace":"DIVINATION_CARD","tradeTag":"death","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"치명적인 설계","refName":"Deathly Designs","namespace":"DIVINATION_CARD","tradeTag":"deathly-designs","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"실성 공포증","refName":"Dementophobia","namespace":"DIVINATION_CARD","tradeTag":"dementophobia","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"반신의 내기","refName":"Demigod's Wager","namespace":"DIVINATION_CARD","tradeTag":"demigods-wager","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"훼손된 미덕","refName":"Desecrated Virtue","namespace":"DIVINATION_CARD","tradeTag":"desecrated-virtue","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"필사적인 성전","refName":"Desperate Crusade","namespace":"DIVINATION_CARD","tradeTag":"desperate-crusade","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"무너질 운명","refName":"Destined to Crumble","namespace":"DIVINATION_CARD","tradeTag":"destined-to-crumble","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"디알라의 예속","refName":"Dialla's Subjugation","namespace":"DIVINATION_CARD","tradeTag":"diallas-subjugation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"경멸","refName":"Disdain","namespace":"DIVINATION_CARD","tradeTag":"disdain","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"신성한 아름다움","refName":"Divine Beauty","namespace":"DIVINATION_CARD","tradeTag":"divine-beauty","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"도이드리의 광기","refName":"Doedre's Madness","namespace":"DIVINATION_CARD","tradeTag":"doedres-madness","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"드리운 꿈","refName":"Draped in Dreams","namespace":"DIVINATION_CARD","tradeTag":"draped-in-dreams","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"이중성","refName":"Duality","namespace":"DIVINATION_CARD","tradeTag":"duality","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"죽어가는 빛","refName":"Dying Light","namespace":"DIVINATION_CARD","tradeTag":"dying-light","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"대지 흡수자","refName":"Earth Drinker","namespace":"DIVINATION_CARD","tradeTag":"earth-drinker","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"사랑의 메아리","refName":"Echoes of Love","namespace":"DIVINATION_CARD","tradeTag":"echoes-of-love","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"섬뜩한 완벽","refName":"Eldritch Perfection","namespace":"DIVINATION_CARD","tradeTag":"eldritch-perfection","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"정화의 황제","refName":"Emperor of Purity","namespace":"DIVINATION_CARD","tradeTag":"emperor-of-purity","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"황제의 행운","refName":"Emperor's Luck","namespace":"DIVINATION_CARD","tradeTag":"emperors-luck","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"끝없는 밤","refName":"Endless Night","namespace":"DIVINATION_CARD","tradeTag":"endless-night","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"아로새겨진 피","refName":"Etched in Blood","namespace":"DIVINATION_CARD","tradeTag":"etched-in-blood","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"영원한 유대","refName":"Eternal Bonds","namespace":"DIVINATION_CARD","tradeTag":"eternal-bonds","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"변화무쌍","refName":"Ever-Changing","namespace":"DIVINATION_CARD","tradeTag":"ever-changing","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"운명적인 만남","refName":"Fateful Meeting","namespace":"DIVINATION_CARD","tradeTag":"fateful-meeting","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"근원을 알 수 없는 화염","refName":"Fire Of Unknown Origin","namespace":"DIVINATION_CARD","tradeTag":"fire-of-unknown-origin","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"금지된 힘","refName":"Forbidden Power","namespace":"DIVINATION_CARD","tradeTag":"forbidden-power","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"우정","refName":"Friendship","namespace":"DIVINATION_CARD","tradeTag":"friendship","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"뼈에서 재로","refName":"From Bone to Ashes","namespace":"DIVINATION_CARD","tradeTag":"from-bone-to-ashes","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"추가 발명","refName":"Further Invention","namespace":"DIVINATION_CARD","tradeTag":"further-invention","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"세공사의 자비","refName":"Gemcutter's Mercy","namespace":"DIVINATION_CARD","tradeTag":"gemcutters-mercy","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"세공사의 약속","refName":"Gemcutter's Promise","namespace":"DIVINATION_CARD","tradeTag":"gemcutters-promise","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"아세나스의 선물","refName":"Gift of Asenath","namespace":"DIVINATION_CARD","tradeTag":"gift-of-asenath","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"마석 여왕의 선물","refName":"Gift of the Gemling Queen","namespace":"DIVINATION_CARD","tradeTag":"gift-of-the-gemling-queen","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"희망의 빛","refName":"Glimmer of Hope","namespace":"DIVINATION_CARD","tradeTag":"glimmer-of-hope","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"무덤의 지식","refName":"Grave Knowledge","namespace":"DIVINATION_CARD","tradeTag":"grave-knowledge","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"수호자의 시련","refName":"Guardian's Challenge","namespace":"DIVINATION_CARD","tradeTag":"guardians-challenge","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"영혼의 조화","refName":"Harmony of Souls","namespace":"DIVINATION_CARD","tradeTag":"harmony-of-souls","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"출몰하는 그림자","refName":"Haunting Shadows","namespace":"DIVINATION_CARD","tradeTag":"haunting-shadows","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"그녀의 가면","refName":"Her Mask","namespace":"DIVINATION_CARD","tradeTag":"her-mask","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"이색증","refName":"Heterochromia","namespace":"DIVINATION_CARD","tradeTag":"heterochromia","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"고향","refName":"Home","namespace":"DIVINATION_CARD","tradeTag":"home","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"희망","refName":"Hope","namespace":"DIVINATION_CARD","tradeTag":"hope-card","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"거울의 집","refName":"House of Mirrors","namespace":"DIVINATION_CARD","tradeTag":"house-of-mirrors","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"오만","refName":"Hubris","namespace":"DIVINATION_CARD","tradeTag":"hubris","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"겸손","refName":"Humility","namespace":"DIVINATION_CARD","tradeTag":"humility","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"사냥꾼의 결의","refName":"Hunter's Resolve","namespace":"DIVINATION_CARD","tradeTag":"hunters-resolve","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"사냥꾼의 보상","refName":"Hunter's Reward","namespace":"DIVINATION_CARD","tradeTag":"hunters-reward","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"형제가 보인다","refName":"I See Brothers","namespace":"DIVINATION_CARD","tradeTag":"i-see-brothers","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"불멸의 결의","refName":"Immortal Resolve","namespace":"DIVINATION_CARD","tradeTag":"immortal-resolve","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"불완전한 기억","refName":"Imperfect Memories","namespace":"DIVINATION_CARD","tradeTag":"imperfect-memories","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"제국의 유산","refName":"Imperial Legacy","namespace":"DIVINATION_CARD","tradeTag":"imperial-legacy","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"깜짝 상자","refName":"Jack in the Box","namespace":"DIVINATION_CARD","tradeTag":"jack-in-the-box","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"판단하는 목소리","refName":"Judging Voices","namespace":"DIVINATION_CARD","tradeTag":"judging-voices","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"정당한 야망","refName":"Justified Ambition","namespace":"DIVINATION_CARD","tradeTag":"justified-ambition","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"보관자의 타락","refName":"Keeper's Corruption","namespace":"DIVINATION_CARD","tradeTag":"keepers-corruption","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"눈물샘의 괴사","refName":"Lachrymal Necrosis","namespace":"DIVINATION_CARD","tradeTag":"lachrymal-necrosis","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"란타도어의 죽은 연인","refName":"Lantador's Lost Love","namespace":"DIVINATION_CARD","tradeTag":"lantadors-lost-love","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"최후의 희망","refName":"Last Hope","namespace":"DIVINATION_CARD","tradeTag":"last-hope","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"운명에 맡기다","refName":"Left to Fate","namespace":"DIVINATION_CARD","tradeTag":"left-to-fate","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"레테의 유혹","refName":"Lethean Temptation","namespace":"DIVINATION_CARD","tradeTag":"lethean-temptation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"빛과 진실","refName":"Light and Truth","namespace":"DIVINATION_CARD","tradeTag":"light-and-truth","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"지속되는 유물","refName":"Lingering Remnants","namespace":"DIVINATION_CARD","tradeTag":"lingering-remnants","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"외로운 전사","refName":"Lonely Warrior","namespace":"DIVINATION_CARD","tradeTag":"lonely-warrior","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"잃어버린 세계","refName":"Lost Worlds","namespace":"DIVINATION_CARD","tradeTag":"lost-worlds","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"얼음을 가르는 사랑","refName":"Love Through Ice","namespace":"DIVINATION_CARD","tradeTag":"love-through-ice","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"충성심","refName":"Loyalty","namespace":"DIVINATION_CARD","tradeTag":"loyalty","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"바알의 행운","refName":"Luck of the Vaal","namespace":"DIVINATION_CARD","tradeTag":"luck-of-the-vaal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"행운의 연결","refName":"Lucky Connections","namespace":"DIVINATION_CARD","tradeTag":"lucky-connections","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"행운의 카드 묶음","refName":"Lucky Deck","namespace":"DIVINATION_CARD","tradeTag":"lucky-deck","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"빛나는 발견물","refName":"Luminous Trove","namespace":"DIVINATION_CARD","tradeTag":"luminous-trove","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"라이사의 휴식","refName":"Lysah's Respite","namespace":"DIVINATION_CARD","tradeTag":"lysahs-respite","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"필생의 걸작","refName":"Magnum Opus","namespace":"DIVINATION_CARD","tradeTag":"magnum-opus","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"사람과 곰","refName":"Man With Bear","namespace":"DIVINATION_CARD","tradeTag":"man-with-bear","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"마트료시카","refName":"Matryoshka","namespace":"DIVINATION_CARD","tradeTag":"matryoshka","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"모어 블레이드","refName":"Mawr Blaidd","namespace":"DIVINATION_CARD","tradeTag":"mawr-blaidd","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"무자비한 병기","refName":"Merciless Armament","namespace":"DIVINATION_CARD","tradeTag":"merciless-armament","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"힘이 정의다","refName":"Might is Right","namespace":"DIVINATION_CARD","tradeTag":"might-is-right","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"어둠 속 비참함","refName":"Misery in Darkness","namespace":"DIVINATION_CARD","tradeTag":"misery-in-darkness","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"미트","refName":"Mitts","namespace":"DIVINATION_CARD","tradeTag":"mitts","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"단색화","refName":"Monochrome","namespace":"DIVINATION_CARD","tradeTag":"monochrome","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"끝없는 욕심","refName":"More is Never Enough","namespace":"DIVINATION_CARD","tradeTag":"more-is-never-enough","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"흔적 없음","refName":"No Traces","namespace":"DIVINATION_CARD","tradeTag":"no-traces","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"누크의 왕관","refName":"Nook's Crown","namespace":"DIVINATION_CARD","tradeTag":"nooks-crown","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"기생충 밥벌레","refName":"Parasitic Passengers","namespace":"DIVINATION_CARD","tradeTag":"parasitic-passengers","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"평화로운 순간들","refName":"Peaceful Moments","namespace":"DIVINATION_CARD","tradeTag":"peaceful-moments","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"완벽","refName":"Perfection","namespace":"DIVINATION_CARD","tradeTag":"perfection","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"독을 품은 믿음","refName":"Poisoned Faith","namespace":"DIVINATION_CARD","tradeTag":"poisoned-faith","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"편견","refName":"Prejudice","namespace":"DIVINATION_CARD","tradeTag":"prejudice","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"몰락 직전의 긍지","refName":"Pride Before the Fall","namespace":"DIVINATION_CARD","tradeTag":"pride-before-the-fall","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"최초의 존재들의 자부심","refName":"Pride of the First Ones","namespace":"DIVINATION_CARD","tradeTag":"pride-of-the-first-ones","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"프로메테우스의 무기고","refName":"Prometheus' Armoury","namespace":"DIVINATION_CARD","tradeTag":"prometheus-armoury","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"번영","refName":"Prosperity","namespace":"DIVINATION_CARD","tradeTag":"prosperity","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"카오스의 비","refName":"Rain of Chaos","namespace":"DIVINATION_CARD","tradeTag":"rain-of-chaos","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"비 유혹자","refName":"Rain Tempter","namespace":"DIVINATION_CARD","tradeTag":"rain-tempter","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"쥐","refName":"Rats","namespace":"DIVINATION_CARD","tradeTag":"rats","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"부활","refName":"Rebirth","namespace":"DIVINATION_CARD","tradeTag":"rebirth","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"부활과 새로운 시작","refName":"Rebirth and Renewal","namespace":"DIVINATION_CARD","tradeTag":"rebirth-and-renewal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"무모한 야망","refName":"Reckless Ambition","namespace":"DIVINATION_CARD","tradeTag":"reckless-ambition","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"추모","refName":"Remembrance","namespace":"DIVINATION_CARD","tradeTag":"remembrance","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"삼보디의 맹세","refName":"Sambodhi's Vow","namespace":"DIVINATION_CARD","tradeTag":"sambodhis-vow","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"삼보디의 지혜","refName":"Sambodhi's Wisdom","namespace":"DIVINATION_CARD","tradeTag":"sambodhis-wisdom","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"바다의 학자","refName":"Scholar of the Seas","namespace":"DIVINATION_CARD","tradeTag":"scholar-of-the-seas","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"7년 간의 불운","refName":"Seven Years Bad Luck","namespace":"DIVINATION_CARD","tradeTag":"seven-years-bad-luck","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"운명의 파편","refName":"Shard of Fate","namespace":"DIVINATION_CARD","tradeTag":"shard-of-fate","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"침묵과 서리","refName":"Silence and Frost","namespace":"DIVINATION_CARD","tradeTag":"silence-and-frost","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"사회의 회한","refName":"Society's Remorse","namespace":"DIVINATION_CARD","tradeTag":"societys-remorse","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"어두운 것","refName":"Something Dark","namespace":"DIVINATION_CARD","tradeTag":"something-dark","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"갈증을 푼 영혼","refName":"Soul Quenched","namespace":"DIVINATION_CARD","tradeTag":"soul-quenched","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"번개에 맞다","refName":"Struck by Lightning","namespace":"DIVINATION_CARD","tradeTag":"struck-by-lightning","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"결백한 자의 원조","refName":"Succor of the Sinless","namespace":"DIVINATION_CARD","tradeTag":"succor-of-the-sinless","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"자제","refName":"Temperance","namespace":"DIVINATION_CARD","tradeTag":"temperance","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"학구열","refName":"The Academic","namespace":"DIVINATION_CARD","tradeTag":"the-academic","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"숭배자","refName":"The Admirer","namespace":"DIVINATION_CARD","tradeTag":"the-admirer","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"모험 정신","refName":"The Adventuring Spirit","namespace":"DIVINATION_CARD","tradeTag":"the-adventuring-spirit","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"탐미주의자","refName":"The Aesthete","namespace":"DIVINATION_CARD","tradeTag":"the-aesthete","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"약제사","refName":"The Apothecary","namespace":"DIVINATION_CARD","tradeTag":"the-apothecary","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"대마법사의 심복","refName":"The Archmage's Right Hand","namespace":"DIVINATION_CARD","tradeTag":"the-archmages-right-hand","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"투기장의 용사","refName":"The Arena Champion","namespace":"DIVINATION_CARD","tradeTag":"the-arena-champion","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"피의 군대","refName":"The Army of Blood","namespace":"DIVINATION_CARD","tradeTag":"the-army-of-blood","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"예술가","refName":"The Artist","namespace":"DIVINATION_CARD","tradeTag":"the-artist","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"지망자","refName":"The Aspirant","namespace":"DIVINATION_CARD","tradeTag":"the-aspirant","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"점성술사","refName":"The Astromancer","namespace":"DIVINATION_CARD","tradeTag":"the-astromancer","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"복수자","refName":"The Avenger","namespace":"DIVINATION_CARD","tradeTag":"the-avenger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"깨어난 자","refName":"The Awakened","namespace":"DIVINATION_CARD","tradeTag":"the-awakened","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"타고난 전투원","refName":"The Battle Born","namespace":"DIVINATION_CARD","tradeTag":"the-battle-born","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"웅녀","refName":"The Bear Woman","namespace":"DIVINATION_CARD","tradeTag":"the-bear-woman","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"짐승","refName":"The Beast","namespace":"DIVINATION_CARD","tradeTag":"the-beast","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"배신","refName":"The Betrayal","namespace":"DIVINATION_CARD","tradeTag":"the-betrayal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"쓰라린 만개","refName":"The Bitter Blossom","namespace":"DIVINATION_CARD","tradeTag":"the-bitter-blossom","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"맹렬한 화염","refName":"The Blazing Fire","namespace":"DIVINATION_CARD","tradeTag":"the-blazing-fire","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"몸통","refName":"The Body","namespace":"DIVINATION_CARD","tradeTag":"the-body","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"뼈","refName":"The Bones","namespace":"DIVINATION_CARD","tradeTag":"the-bones","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"건장한 전투 마법사","refName":"The Brawny Battle Mage","namespace":"DIVINATION_CARD","tradeTag":"the-brawny-battle-mage","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"균열","refName":"The Breach","namespace":"DIVINATION_CARD","tradeTag":"the-breach","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"말라붙은 황제","refName":"The Brittle Emperor","namespace":"DIVINATION_CARD","tradeTag":"the-brittle-emperor","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"은닉처","refName":"The Cache","namespace":"DIVINATION_CARD","tradeTag":"the-cache","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"불협화음","refName":"The Cacophony","namespace":"DIVINATION_CARD","tradeTag":"the-cacophony","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"소명","refName":"The Calling","namespace":"DIVINATION_CARD","tradeTag":"the-calling","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"카드 사기꾼","refName":"The Card Sharp","namespace":"DIVINATION_CARD","tradeTag":"the-card-sharp","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"까마귀","refName":"The Carrion Crow","namespace":"DIVINATION_CARD","tradeTag":"the-carrion-crow","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"지도제작자","refName":"The Cartographer","namespace":"DIVINATION_CARD","tradeTag":"the-cartographer","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"대재앙","refName":"The Cataclysm","namespace":"DIVINATION_CARD","tradeTag":"the-cataclysm","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"기폭제","refName":"The Catalyst","namespace":"DIVINATION_CARD","tradeTag":"the-catalyst","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"월척","refName":"The Catch","namespace":"DIVINATION_CARD","tradeTag":"the-catch","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"천공의 심판관","refName":"The Celestial Justicar","namespace":"DIVINATION_CARD","tradeTag":"the-celestial-justicar","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"천공의 돌","refName":"The Celestial Stone","namespace":"DIVINATION_CARD","tradeTag":"the-celestial-stone","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"속박의 사슬","refName":"The Chains that Bind","namespace":"DIVINATION_CARD","tradeTag":"the-chains-that-bind","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"사기꾼","refName":"The Cheater","namespace":"DIVINATION_CARD","tradeTag":"the-cheater","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"선택받은 자","refName":"The Chosen","namespace":"DIVINATION_CARD","tradeTag":"the-chosen","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"다가오는 태풍","refName":"The Coming Storm","namespace":"DIVINATION_CARD","tradeTag":"the-coming-storm","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"도관","refName":"The Conduit","namespace":"DIVINATION_CARD","tradeTag":"the-conduit","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"갈망","refName":"The Craving","namespace":"DIVINATION_CARD","tradeTag":"the-craving","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"저주받은 왕","refName":"The Cursed King","namespace":"DIVINATION_CARD","tradeTag":"the-cursed-king","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"저주받은 자","refName":"The Damned","namespace":"DIVINATION_CARD","tradeTag":"the-damned","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"말쑥한 영재","refName":"The Dapper Prodigy","namespace":"DIVINATION_CARD","tradeTag":"the-dapper-prodigy","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"어둠 마법사","refName":"The Dark Mage","namespace":"DIVINATION_CARD","tradeTag":"the-dark-mage","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"암울한 꿈","refName":"The Darkest Dream","namespace":"DIVINATION_CARD","tradeTag":"the-darkest-dream","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"거래","refName":"The Deal","namespace":"DIVINATION_CARD","tradeTag":"the-deal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"기만자","refName":"The Deceiver","namespace":"DIVINATION_CARD","tradeTag":"the-deceiver","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"심해의 존재","refName":"The Deep Ones","namespace":"DIVINATION_CARD","tradeTag":"the-deep-ones","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"악마","refName":"The Demon","namespace":"DIVINATION_CARD","tradeTag":"the-demon","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"여악마","refName":"The Demoness","namespace":"DIVINATION_CARD","tradeTag":"the-demoness","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"목적지","refName":"The Destination","namespace":"DIVINATION_CARD","tradeTag":"the-destination","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"파괴자","refName":"The Devastator","namespace":"DIVINATION_CARD","tradeTag":"the-devastator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"의사","refName":"The Doctor","namespace":"DIVINATION_CARD","tradeTag":"the-doctor","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"분신","refName":"The Doppelganger","namespace":"DIVINATION_CARD","tradeTag":"the-doppelganger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"용","refName":"The Dragon","namespace":"DIVINATION_CARD","tradeTag":"the-dragon","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"용의 심장","refName":"The Dragon's Heart","namespace":"DIVINATION_CARD","tradeTag":"the-dragons-heart","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"몽상가","refName":"The Dreamer","namespace":"DIVINATION_CARD","tradeTag":"the-dreamer","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"꿈의 세계","refName":"The Dreamland","namespace":"DIVINATION_CARD","tradeTag":"the-dreamland","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"만취한 귀족","refName":"The Drunken Aristocrat","namespace":"DIVINATION_CARD","tradeTag":"the-drunken-aristocrat","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"던전의 주인","refName":"The Dungeon Master","namespace":"DIVINATION_CARD","tradeTag":"the-dungeon-master","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"편안한 산책","refName":"The Easy Stroll","namespace":"DIVINATION_CARD","tradeTag":"the-easy-stroll","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"섬뜩한 부패","refName":"The Eldritch Decay","namespace":"DIVINATION_CARD","tradeTag":"the-eldritch-decay","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"허무","refName":"The Emptiness","namespace":"DIVINATION_CARD","tradeTag":"the-emptiness","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"잠식해오는 어둠","refName":"The Encroaching Darkness","namespace":"DIVINATION_CARD","tradeTag":"the-encroaching-darkness","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"끝없는 어둠","refName":"The Endless Darkness","namespace":"DIVINATION_CARD","tradeTag":"the-endless-darkness","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"인내","refName":"The Endurance","namespace":"DIVINATION_CARD","tradeTag":"the-endurance","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"집행자","refName":"The Enforcer","namespace":"DIVINATION_CARD","tradeTag":"the-enforcer","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"계몽된 자","refName":"The Enlightened","namespace":"DIVINATION_CARD","tradeTag":"the-enlightened","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"열광자들","refName":"The Enthusiasts","namespace":"DIVINATION_CARD","tradeTag":"the-enthusiasts","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"탈주","refName":"The Escape","namespace":"DIVINATION_CARD","tradeTag":"the-escape","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"영원한 전쟁","refName":"The Eternal War","namespace":"DIVINATION_CARD","tradeTag":"the-eternal-war","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"천상에 속한 자","refName":"The Ethereal","namespace":"DIVINATION_CARD","tradeTag":"the-ethereal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"탐험가","refName":"The Explorer","namespace":"DIVINATION_CARD","tradeTag":"the-explorer","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"공포의 눈","refName":"The Eye of Terror","namespace":"DIVINATION_CARD","tradeTag":"the-eye-of-terror","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"용의 눈","refName":"The Eye of the Dragon","namespace":"DIVINATION_CARD","tradeTag":"the-eye-of-the-dragon","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"깊이 모를 심연","refName":"The Fathomless Depths","namespace":"DIVINATION_CARD","tradeTag":"the-fathomless-depths","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"연회","refName":"The Feast","namespace":"DIVINATION_CARD","tradeTag":"the-feast","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"마귀","refName":"The Fiend","namespace":"DIVINATION_CARD","tradeTag":"the-fiend","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"화룡점정","refName":"The Finishing Touch","namespace":"DIVINATION_CARD","tradeTag":"the-finishing-touch","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"생선 장수","refName":"The Fishmonger","namespace":"DIVINATION_CARD","tradeTag":"the-fishmonger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"화살 제조자","refName":"The Fletcher","namespace":"DIVINATION_CARD","tradeTag":"the-fletcher","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"식물의 선물","refName":"The Flora's Gift","namespace":"DIVINATION_CARD","tradeTag":"the-floras-gift","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"어리석은 자","refName":"The Fool","namespace":"DIVINATION_CARD","tradeTag":"the-fool","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"잊혀진 보물","refName":"The Forgotten Treasure","namespace":"DIVINATION_CARD","tradeTag":"the-forgotten-treasure","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"무형의 바다","refName":"The Formless Sea","namespace":"DIVINATION_CARD","tradeTag":"the-formless-sea","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"버림받은 자","refName":"The Forsaken","namespace":"DIVINATION_CARD","tradeTag":"the-forsaken","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"행운아","refName":"The Fortunate","namespace":"DIVINATION_CARD","tradeTag":"the-fortunate","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"전면 응시","refName":"The Forward Gaze","namespace":"DIVINATION_CARD","tradeTag":"the-forward-gaze","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"여우","refName":"The Fox","namespace":"DIVINATION_CARD","tradeTag":"the-fox","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"가시나무에 얽힌 여우","refName":"The Fox in the Brambles","namespace":"DIVINATION_CARD","tradeTag":"the-fox-in-the-brambles","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"도박꾼","refName":"The Gambler","namespace":"DIVINATION_CARD","tradeTag":"the-gambler","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"화려한 힘","refName":"The Garish Power","namespace":"DIVINATION_CARD","tradeTag":"the-garish-power","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"세공사","refName":"The Gemcutter","namespace":"DIVINATION_CARD","tradeTag":"the-gemcutter","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"신사","refName":"The Gentleman","namespace":"DIVINATION_CARD","tradeTag":"the-gentleman","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"검투사","refName":"The Gladiator","namespace":"DIVINATION_CARD","tradeTag":"the-gladiator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"황금시대","refName":"The Golden Era","namespace":"DIVINATION_CARD","tradeTag":"the-golden-era","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"위대한 뜻","refName":"The Greatest Intentions","namespace":"DIVINATION_CARD","tradeTag":"the-greatest-intentions","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"만","refName":"The Gulf","namespace":"DIVINATION_CARD","tradeTag":"the-gulf","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"건강한 심장","refName":"The Hale Heart","namespace":"DIVINATION_CARD","tradeTag":"the-hale-heart","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"수확자","refName":"The Harvester","namespace":"DIVINATION_CARD","tradeTag":"the-harvester","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"은둔자","refName":"The Hermit","namespace":"DIVINATION_CARD","tradeTag":"the-hermit","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"영웅적인 시도","refName":"The Heroic Shot","namespace":"DIVINATION_CARD","tradeTag":"the-heroic-shot","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"지식의 산실","refName":"The Hive of Knowledge","namespace":"DIVINATION_CARD","tradeTag":"the-hive-of-knowledge","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"비축가","refName":"The Hoarder","namespace":"DIVINATION_CARD","tradeTag":"the-hoarder","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"갈고리","refName":"The Hook","namespace":"DIVINATION_CARD","tradeTag":"the-hook","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"굶주림","refName":"The Hunger","namespace":"DIVINATION_CARD","tradeTag":"the-hunger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"불멸자","refName":"The Immortal","namespace":"DIVINATION_CARD","tradeTag":"the-immortal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"주문","refName":"The Incantation","namespace":"DIVINATION_CARD","tradeTag":"the-incantation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"결백한 자","refName":"The Innocent","namespace":"DIVINATION_CARD","tradeTag":"the-innocent","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"접종자","refName":"The Inoculated","namespace":"DIVINATION_CARD","tradeTag":"the-inoculated","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"실성한 고양이","refName":"The Insane Cat","namespace":"DIVINATION_CARD","tradeTag":"the-insane-cat","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"만족을 모르는 자","refName":"The Insatiable","namespace":"DIVINATION_CARD","tradeTag":"the-insatiable","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"발명가","refName":"The Inventor","namespace":"DIVINATION_CARD","tradeTag":"the-inventor","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"어릿광대","refName":"The Jester","namespace":"DIVINATION_CARD","tradeTag":"the-jester","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"보석 상인의 은혜","refName":"The Jeweller's Boon","namespace":"DIVINATION_CARD","tradeTag":"the-jewellers-boon","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"집필가","refName":"The Journalist","namespace":"DIVINATION_CARD","tradeTag":"the-journalist","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"여행","refName":"The Journey","namespace":"DIVINATION_CARD","tradeTag":"the-journey","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"왕의 검","refName":"The King's Blade","namespace":"DIVINATION_CARD","tradeTag":"the-kings-blade","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"왕의 심장","refName":"The King's Heart","namespace":"DIVINATION_CARD","tradeTag":"the-kings-heart","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"상륙","refName":"The Landing","namespace":"DIVINATION_CARD","tradeTag":"the-landing","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"최후의 승자","refName":"The Last One Standing","namespace":"DIVINATION_CARD","tradeTag":"the-last-one-standing","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"최후의 만찬","refName":"The Last Supper","namespace":"DIVINATION_CARD","tradeTag":"the-last-supper","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"레비아탄","refName":"The Leviathan","namespace":"DIVINATION_CARD","tradeTag":"the-leviathan","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"리치","refName":"The Lich","namespace":"DIVINATION_CARD","tradeTag":"the-lich","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"생명력 도둑","refName":"The Life Thief","namespace":"DIVINATION_CARD","tradeTag":"the-life-thief","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"사자","refName":"The Lion","namespace":"DIVINATION_CARD","tradeTag":"the-lion","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"기나긴 속임수","refName":"The Long Con","namespace":"DIVINATION_CARD","tradeTag":"the-long-con","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"오랜 감시","refName":"The Long Watch","namespace":"DIVINATION_CARD","tradeTag":"the-long-watch","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"어둠 속의 군주","refName":"The Lord in Black","namespace":"DIVINATION_CARD","tradeTag":"the-lord-in-black","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"축제의 군주","refName":"The Lord of Celebration","namespace":"DIVINATION_CARD","tradeTag":"the-lord-of-celebration","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"연인","refName":"The Lover","namespace":"DIVINATION_CARD","tradeTag":"the-lover","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"루나리스 여사제","refName":"The Lunaris Priestess","namespace":"DIVINATION_CARD","tradeTag":"the-lunaris-priestess","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"미치광이 왕","refName":"The Mad King","namespace":"DIVINATION_CARD","tradeTag":"the-mad-king","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"마그마 게","refName":"The Magma Crab","namespace":"DIVINATION_CARD","tradeTag":"the-magma-crab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"대가","refName":"The Master","namespace":"DIVINATION_CARD","tradeTag":"the-master","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"장인","refName":"The Master Artisan","namespace":"DIVINATION_CARD","tradeTag":"the-master-artisan","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"용병","refName":"The Mercenary","namespace":"DIVINATION_CARD","tradeTag":"the-mercenary","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"전달자","refName":"The Messenger","namespace":"DIVINATION_CARD","tradeTag":"the-messenger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"금속 세공사의 선물","refName":"The Metalsmith's Gift","namespace":"DIVINATION_CARD","tradeTag":"the-metalsmiths-gift","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"마음의 눈","refName":"The Mind's Eyes","namespace":"DIVINATION_CARD","tradeTag":"the-minds-eyes","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"산","refName":"The Mountain","namespace":"DIVINATION_CARD","tradeTag":"the-mountain","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"간호사","refName":"The Nurse","namespace":"DIVINATION_CARD","tradeTag":"the-nurse","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"서약","refName":"The Oath","namespace":"DIVINATION_CARD","tradeTag":"the-oath","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"가려진 자","refName":"The Obscured","namespace":"DIVINATION_CARD","tradeTag":"the-obscured","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"공물","refName":"The Offering","namespace":"DIVINATION_CARD","tradeTag":"the-offering","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"자손","refName":"The Offspring","namespace":"DIVINATION_CARD","tradeTag":"the-offspring","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"노인","refName":"The Old Man","namespace":"DIVINATION_CARD","tradeTag":"the-old-man","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"도망친 자","refName":"The One That Got Away","namespace":"DIVINATION_CARD","tradeTag":"the-one-that-got-away","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"만인과 함께하는 자","refName":"The One With All","namespace":"DIVINATION_CARD","tradeTag":"the-one-with-all","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"호화로움","refName":"The Opulent","namespace":"DIVINATION_CARD","tradeTag":"the-opulent","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"무리의 우두머리","refName":"The Pack Leader","namespace":"DIVINATION_CARD","tradeTag":"the-pack-leader","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"계약","refName":"The Pact","namespace":"DIVINATION_CARD","tradeTag":"the-pact","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"환자","refName":"The Patient","namespace":"DIVINATION_CARD","tradeTag":"the-patient","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"참회자","refName":"The Penitent","namespace":"DIVINATION_CARD","tradeTag":"the-penitent","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"시인","refName":"The Poet","namespace":"DIVINATION_CARD","tradeTag":"the-poet","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"박식가","refName":"The Polymath","namespace":"DIVINATION_CARD","tradeTag":"the-polymath","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"호저","refName":"The Porcupine","namespace":"DIVINATION_CARD","tradeTag":"the-porcupine","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"헌신의 대가","refName":"The Price of Devotion","namespace":"DIVINATION_CARD","tradeTag":"the-price-of-devotion","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"충성의 대가","refName":"The Price of Loyalty","namespace":"DIVINATION_CARD","tradeTag":"the-price-of-loyalty","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"선지의 대가","refName":"The Price of Prescience","namespace":"DIVINATION_CARD","tradeTag":"the-price-of-prescience","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"보호의 대가","refName":"The Price of Protection","namespace":"DIVINATION_CARD","tradeTag":"the-price-of-protection","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"태고","refName":"The Primordial","namespace":"DIVINATION_CARD","tradeTag":"the-primordial","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"어둠의 대공","refName":"The Prince of Darkness","namespace":"DIVINATION_CARD","tradeTag":"the-prince-of-darkness","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"교수","refName":"The Professor","namespace":"DIVINATION_CARD","tradeTag":"the-professor","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"루나리스의 자손","refName":"The Progeny of Lunaris","namespace":"DIVINATION_CARD","tradeTag":"the-progeny-of-lunaris","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"수수께끼","refName":"The Puzzle","namespace":"DIVINATION_CARD","tradeTag":"the-puzzle","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"여왕","refName":"The Queen","namespace":"DIVINATION_CARD","tradeTag":"the-queen","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"토끼 발","refName":"The Rabbit's Foot","namespace":"DIVINATION_CARD","tradeTag":"the-rabbits-foot","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"광포한 로아","refName":"The Rabid Rhoa","namespace":"DIVINATION_CARD","tradeTag":"the-rabid-rhoa","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"영역","refName":"The Realm","namespace":"DIVINATION_CARD","tradeTag":"the-realm","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"쥐의 귀환","refName":"The Return of the Rat","namespace":"DIVINATION_CARD","tradeTag":"the-return-of-the-rat","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"위험","refName":"The Risk","namespace":"DIVINATION_CARD","tradeTag":"the-risk","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"원소의 의식","refName":"The Rite of Elements","namespace":"DIVINATION_CARD","tradeTag":"the-rite-of-elements","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"힘에 이르는 길","refName":"The Road to Power","namespace":"DIVINATION_CARD","tradeTag":"the-road-to-power","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"녹슨 음유시인","refName":"The Rusted Bard","namespace":"DIVINATION_CARD","tradeTag":"the-rusted-bard","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"무정한 허리띠","refName":"The Ruthless Ceinture","namespace":"DIVINATION_CARD","tradeTag":"the-ruthless-ceinture","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"희생","refName":"The Sacrifice","namespace":"DIVINATION_CARD","tradeTag":"the-sacrifice","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"성자의 보물","refName":"The Saint's Treasure","namespace":"DIVINATION_CARD","tradeTag":"the-saints-treasure","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"사무라이의 눈","refName":"The Samurai's Eye","namespace":"DIVINATION_CARD","tradeTag":"the-samurais-eye","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"상처 입은 초원","refName":"The Scarred Meadow","namespace":"DIVINATION_CARD","tradeTag":"the-scarred-meadow","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"시체 청소부","refName":"The Scavenger","namespace":"DIVINATION_CARD","tradeTag":"the-scavenger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"학자","refName":"The Scholar","namespace":"DIVINATION_CARD","tradeTag":"the-scholar","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"정찰병","refName":"The Scout","namespace":"DIVINATION_CARD","tradeTag":"the-scout","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"탐색자","refName":"The Seeker","namespace":"DIVINATION_CARD","tradeTag":"the-seeker","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"세피로트","refName":"The Sephirot","namespace":"DIVINATION_CARD","tradeTag":"the-sephirot","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"양치기의 샌들","refName":"The Shepherd's Sandals","namespace":"DIVINATION_CARD","tradeTag":"the-shepherds-sandals","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"방패 운반자","refName":"The Shieldbearer","namespace":"DIVINATION_CARD","tradeTag":"the-shieldbearer","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"지름길","refName":"The Shortcut","namespace":"DIVINATION_CARD","tradeTag":"the-shortcut","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"부가 임무","refName":"The Side Quest","namespace":"DIVINATION_CARD","tradeTag":"the-side-quest","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"부적","refName":"The Sigil","namespace":"DIVINATION_CARD","tradeTag":"the-sigil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"사이렌","refName":"The Siren","namespace":"DIVINATION_CARD","tradeTag":"the-siren","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"해골","refName":"The Skeleton","namespace":"DIVINATION_CARD","tradeTag":"the-skeleton","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"영혼","refName":"The Soul","namespace":"DIVINATION_CARD","tradeTag":"the-soul","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"불꽃과 화염","refName":"The Spark and the Flame","namespace":"DIVINATION_CARD","tradeTag":"the-spark-and-the-flame","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"버릇 없이 자란 왕자","refName":"The Spoiled Prince","namespace":"DIVINATION_CARD","tradeTag":"the-spoiled-prince","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"교착 상태","refName":"The Standoff","namespace":"DIVINATION_CARD","tradeTag":"the-standoff","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"폭풍 소환사","refName":"The Stormcaller","namespace":"DIVINATION_CARD","tradeTag":"the-stormcaller","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"전략가","refName":"The Strategist","namespace":"DIVINATION_CARD","tradeTag":"the-strategist","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"소환자","refName":"The Summoner","namespace":"DIVINATION_CARD","tradeTag":"the-summoner","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"태양","refName":"The Sun","namespace":"DIVINATION_CARD","tradeTag":"the-sun","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"외과의사","refName":"The Surgeon","namespace":"DIVINATION_CARD","tradeTag":"the-surgeon","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"측량사","refName":"The Surveyor","namespace":"DIVINATION_CARD","tradeTag":"the-surveyor","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"생존주의자","refName":"The Survivalist","namespace":"DIVINATION_CARD","tradeTag":"the-survivalist","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"자양분","refName":"The Sustenance","namespace":"DIVINATION_CARD","tradeTag":"the-sustenance","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"검의 제왕의 경례","refName":"The Sword King's Salute","namespace":"DIVINATION_CARD","tradeTag":"the-sword-kings-salute","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"마석학자","refName":"The Thaumaturgist","namespace":"DIVINATION_CARD","tradeTag":"the-thaumaturgist","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"왕좌","refName":"The Throne","namespace":"DIVINATION_CARD","tradeTag":"the-throne","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"땜장이의 작업대","refName":"The Tinkerer's Table","namespace":"DIVINATION_CARD","tradeTag":"the-tinkerers-table","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"끈기 있는 추출자","refName":"The Tireless Extractor","namespace":"DIVINATION_CARD","tradeTag":"the-tireless-extractor","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"탑","refName":"The Tower","namespace":"DIVINATION_CARD","tradeTag":"the-tower","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"배반자","refName":"The Traitor","namespace":"DIVINATION_CARD","tradeTag":"the-traitor","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"변화","refName":"The Transformation","namespace":"DIVINATION_CARD","tradeTag":"the-transformation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"시험","refName":"The Trial","namespace":"DIVINATION_CARD","tradeTag":"the-trial","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"회전초","refName":"The Tumbleweed","namespace":"DIVINATION_CARD","tradeTag":"the-tumbleweed","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"황혼의 달","refName":"The Twilight Moon","namespace":"DIVINATION_CARD","tradeTag":"the-twilight-moon","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"쌍둥이","refName":"The Twins","namespace":"DIVINATION_CARD","tradeTag":"the-twins","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"폭군","refName":"The Tyrant","namespace":"DIVINATION_CARD","tradeTag":"the-tyrant","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"의연한 자","refName":"The Undaunted","namespace":"DIVINATION_CARD","tradeTag":"the-undaunted","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"모두가 인정하는 자","refName":"The Undisputed","namespace":"DIVINATION_CARD","tradeTag":"the-undisputed","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"뜻밖의 포상","refName":"The Unexpected Prize","namespace":"DIVINATION_CARD","tradeTag":"the-unexpected-prize","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"결합","refName":"The Union","namespace":"DIVINATION_CARD","tradeTag":"the-union","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"발키리","refName":"The Valkyrie","namespace":"DIVINATION_CARD","tradeTag":"the-valkyrie","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"광대함","refName":"The Vast","namespace":"DIVINATION_CARD","tradeTag":"the-vast","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"공상가","refName":"The Visionary","namespace":"DIVINATION_CARD","tradeTag":"the-visionary","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"공허","refName":"The Void","namespace":"DIVINATION_CARD","tradeTag":"the-void","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"간수","refName":"The Warden","namespace":"DIVINATION_CARD","tradeTag":"the-warden","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"전쟁군주","refName":"The Warlord","namespace":"DIVINATION_CARD","tradeTag":"the-warlord","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"감시자","refName":"The Watcher","namespace":"DIVINATION_CARD","tradeTag":"the-watcher","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"거미줄","refName":"The Web","namespace":"DIVINATION_CARD","tradeTag":"the-web","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"결혼 선물","refName":"The Wedding Gift","namespace":"DIVINATION_CARD","tradeTag":"the-wedding-gift","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"백기사","refName":"The White Knight","namespace":"DIVINATION_CARD","tradeTag":"the-white-knight","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"백시","refName":"The Whiteout","namespace":"DIVINATION_CARD","tradeTag":"the-whiteout","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"시들은 장미","refName":"The Wilted Rose","namespace":"DIVINATION_CARD","tradeTag":"the-wilted-rose","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"바람","refName":"The Wind","namespace":"DIVINATION_CARD","tradeTag":"the-wind","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"마녀","refName":"The Witch","namespace":"DIVINATION_CARD","tradeTag":"the-witch","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"늑대","refName":"The Wolf","namespace":"DIVINATION_CARD","tradeTag":"the-wolf","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"늑대의 유산","refName":"The Wolf's Legacy","namespace":"DIVINATION_CARD","tradeTag":"the-wolfs-legacy","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"늑대의 그림자","refName":"The Wolf's Shadow","namespace":"DIVINATION_CARD","tradeTag":"the-wolfs-shadow","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"늑대왕의 이빨","refName":"The Wolven King's Bite","namespace":"DIVINATION_CARD","tradeTag":"the-wolven-kings-bite","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"오소리","refName":"The Wolverine","namespace":"DIVINATION_CARD","tradeTag":"the-wolverine","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"세계를 먹는 자","refName":"The World Eater","namespace":"DIVINATION_CARD","tradeTag":"the-world-eater","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"진노","refName":"The Wrath","namespace":"DIVINATION_CARD","tradeTag":"the-wrath","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"불운아","refName":"The Wretched","namespace":"DIVINATION_CARD","tradeTag":"the-wretched","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"불타는 지식욕","refName":"Thirst for Knowledge","namespace":"DIVINATION_CARD","tradeTag":"thirst-for-knowledge","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"어둠 속의 세 얼굴","refName":"Three Faces in the Dark","namespace":"DIVINATION_CARD","tradeTag":"three-faces-in-the-dark","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"3개의 목소리","refName":"Three Voices","namespace":"DIVINATION_CARD","tradeTag":"three-voices","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"천둥 치는 하늘","refName":"Thunderous Skies","namespace":"DIVINATION_CARD","tradeTag":"thunderous-skies","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"오래된 유물","refName":"Time-Lost Relic","namespace":"DIVINATION_CARD","tradeTag":"time-lost-relic","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"유독한 소식","refName":"Toxic Tidings","namespace":"DIVINATION_CARD","tradeTag":"toxic-tidings","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"평온","refName":"Tranquillity","namespace":"DIVINATION_CARD","tradeTag":"tranquillity","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"보물 사냥꾼","refName":"Treasure Hunter","namespace":"DIVINATION_CARD","tradeTag":"treasure-hunter","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"13 공포증","refName":"Triskaidekaphobia","namespace":"DIVINATION_CARD","tradeTag":"triskaidekaphobia","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"다른 뺨을 내밀라","refName":"Turn the Other Cheek","namespace":"DIVINATION_CARD","tradeTag":"turn-the-other-cheek","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"해방","refName":"Unchained","namespace":"DIVINATION_CARD","tradeTag":"unchained","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"지하 숲","refName":"Underground Forest","namespace":"DIVINATION_CARD","tradeTag":"underground-forest","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"짝사랑","refName":"Unrequited Love","namespace":"DIVINATION_CARD","tradeTag":"unrequited-love","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"자만심","refName":"Vanity","namespace":"DIVINATION_CARD","tradeTag":"vanity","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"사악한 힘","refName":"Vile Power","namespace":"DIVINATION_CARD","tradeTag":"vile-power","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"비니아의 증표","refName":"Vinia's Token","namespace":"DIVINATION_CARD","tradeTag":"vinias-token","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"원소의 공허","refName":"Void of the Elements","namespace":"DIVINATION_CARD","tradeTag":"void-of-the-elements","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"불안한 권력","refName":"Volatile Power","namespace":"DIVINATION_CARD","tradeTag":"volatile-power","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"부와 권력","refName":"Wealth and Power","namespace":"DIVINATION_CARD","tradeTag":"wealth-and-power","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"누가 물었느냐","refName":"Who Asked","namespace":"DIVINATION_CARD","tradeTag":"who-asked","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"겨울의 포옹","refName":"Winter's Embrace","namespace":"DIVINATION_CARD","tradeTag":"winters-embrace","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"면죄","refName":"Absolution","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BYnNvbHV0aW9uQmxhc3RHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/11111dec89/AbsolutionBlastGem.png","gem":{}} +{"name":"격려의 면죄","refName":"Absolution of Inspiring","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BYnNvbHV0aW9uQmxhc3RHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/11111dec89/AbsolutionBlastGem.png","gem":{"transfigured":true,"normalVariant":"Absolution"}} +{"name":"카오스 피해 추가 보조","refName":"Added Chaos Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0FkZGVkQ2hhb3NEYW1hZ2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a89e2281e4/AddedChaosDamage.png","gem":{}} +{"name":"냉기 피해 추가 보조","refName":"Added Cold Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0FkZGVkQ29sZERhbWFnZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/2da648ff1b/AddedColdDamage.png","gem":{}} +{"name":"화염 피해 추가 보조","refName":"Added Fire Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0FkZGVkRmlyZURhbWFnZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/021b8c80d0/AddedFireDamage.png","gem":{}} +{"name":"번개 피해 추가 보조","refName":"Added Lightning Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0FkZGVkTGlnaHRuaW5nRGFtYWdlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2d0e496d25/AddedLightningDamage.png","gem":{}} +{"name":"정확도 추가 보조","refName":"Additional Accuracy Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0luY3JlYXNlZEFjY3VyYWN5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6c436c2a7c/IncreasedAccuracy.png","gem":{}} +{"name":"향상된 덫 보조","refName":"Advanced Traps Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1RyYXBDb29sZG93blJlY292ZXJ5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/30ba703ddf/TrapCooldownRecovery.png","gem":{}} +{"name":"연금술사의 징표","refName":"Alchemist's Mark","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BbGNoZW1pc3RzTWFya1NraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2edd055957/AlchemistsMarkSkillGem.png","gem":{}} +{"name":"매복","refName":"Ambush","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BbWJ1c2hTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/92a4cb4028/AmbushSkillGem.png","gem":{}} +{"name":"선대의 부름 보조","refName":"Ancestral Call Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01pcmFnZVN0cmlrZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e51b75463c/MirageStrike.png","gem":{}} +{"name":"선대의 함성","refName":"Ancestral Cry","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BbmNlc3RyYWxDcnkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/50bc6a58db/AncestralCry.png","gem":{}} +{"name":"분노","refName":"Anger","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BbmdlciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e0cd2d4f3a/Anger.png","gem":{}} +{"name":"수호자 기동","refName":"Animate Guardian","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BbmltYXRlQXJtb3VyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d6eff6fc81/AnimateArmour.png","gem":{}} +{"name":"징벌의 수호자 기동","refName":"Animate Guardian of Smiting","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BbmltYXRlQXJtb3VyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d6eff6fc81/AnimateArmour.png","gem":{"transfigured":true,"normalVariant":"Animate Guardian"}} +{"name":"무기 기동","refName":"Animate Weapon","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BbmltYXRlV2VhcG9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/739caf7508/AnimateWeapon.png","gem":{}} +{"name":"원거리 병기의 무기 기동","refName":"Animate Weapon of Ranged Arms","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BbmltYXRlV2VhcG9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/739caf7508/AnimateWeapon.png","gem":{"transfigured":true,"normalVariant":"Animate Weapon"}} +{"name":"자기 반사의 무기 기동","refName":"Animate Weapon of Self Reflection","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BbmltYXRlV2VhcG9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/739caf7508/AnimateWeapon.png","gem":{"transfigured":true,"normalVariant":"Animate Weapon"}} +{"name":"연쇄 번개","refName":"Arc","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BcmMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3778fcf505/Arc.png","gem":{}} +{"name":"뇌동의 연쇄 번개","refName":"Arc of Oscillating","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BcmMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3778fcf505/Arc.png","gem":{"transfigured":true,"normalVariant":"Arc"}} +{"name":"쇄도의 연쇄 번개","refName":"Arc of Surging","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BcmMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3778fcf505/Arc.png","gem":{"transfigured":true,"normalVariant":"Arc"}} +{"name":"비전의 망토","refName":"Arcane Cloak","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BcmNhbmVDbG9hayIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7660cd542e/ArcaneCloak.png","gem":{}} +{"name":"비전 쇄도 보조","refName":"Arcane Surge Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0FyY2FuZVN1cmdlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d3d0499c29/ArcaneSurge.png","gem":{}} +{"name":"신비학자 낙인","refName":"Arcanist Brand","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BcmNhbmlzdEJyYW5kR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/13599bc515/ArcanistBrandGem.png","gem":{}} +{"name":"대마법사 보조","refName":"Archmage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01hbmF3ZWF2ZVN1cHBvcnRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/26b9a98b33/ManaweaveSupportGem.png","gem":{}} +{"name":"한기의 방어구","refName":"Arctic Armour","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTaGllbGQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/22044364a7/IceShield.png","gem":{}} +{"name":"종말의 낙인","refName":"Armageddon Brand","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Bcm1hZ2VkZG9uQnJhbmQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/743223e101/ArmageddonBrand.png","gem":{}} +{"name":"소환의 종말의 낙인","refName":"Armageddon Brand of Recall","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Bcm1hZ2VkZG9uQnJhbmQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/743223e101/ArmageddonBrand.png","gem":{"transfigured":true,"normalVariant":"Armageddon Brand"}} +{"name":"일촉즉발의 종말의 낙인","refName":"Armageddon Brand of Volatility","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Bcm1hZ2VkZG9uQnJhbmQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/743223e101/ArmageddonBrand.png","gem":{"transfigured":true,"normalVariant":"Armageddon Brand"}} +{"name":"오만 보조","refName":"Arrogance Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Jsb29kTWFnaWMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f90e23f319/BloodMagic.png","gem":{}} +{"name":"화살 산개 보조","refName":"Arrow Nova Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0dyZWVuUmFpblN1cHBvcnRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/127eda6207/GreenRainSupportGem.png","gem":{}} +{"name":"포대 쇠뇌","refName":"Artillery Ballista","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Nb3J0YXJUb3RlbUJvd1NraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5636ae404e/MortarTotemBowSkillGem.png","gem":{}} +{"name":"십자 포화의 포대 쇠뇌","refName":"Artillery Ballista of Cross Strafe","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Nb3J0YXJUb3RlbUJvd1NraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5636ae404e/MortarTotemBowSkillGem.png","gem":{"transfigured":true,"normalVariant":"Artillery Ballista"}} +{"name":"집중 사격의 포대 쇠뇌","refName":"Artillery Ballista of Focus Fire","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Nb3J0YXJUb3RlbUJvd1NraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5636ae404e/MortarTotemBowSkillGem.png","gem":{"transfigured":true,"normalVariant":"Artillery Ballista"}} +{"name":"암살자의 징표","refName":"Assassin's Mark","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Bc3Nhc3NpbnNNYXJrIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/bddd6aa693/AssassinsMark.png","gem":{}} +{"name":"자동 전력","refName":"Autoexertion","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzMwLDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BdXRvQ2FzdEluc3RhbnRXYXJjcnkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ffc975c2b7/AutoCastInstantWarcry.png","gem":{}} +{"name":"자동화","refName":"Automation","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzMwLDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BdXRvQ2FzdEluc3RhbnRTa2lsbHMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ec5d94a83e/AutoCastInstantSkills.png","gem":{}} +{"name":"각성한 카오스 피해 추가 보조","refName":"Awakened Added Chaos Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0FkZGVkQ2hhb3NEYW1hZ2VQbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/61d2d11bfb/AddedChaosDamagePlus.png","gem":{"awakened":true}} +{"name":"각성한 냉기 피해 추가 보조","refName":"Awakened Added Cold Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0FkZGVkQ29sZERhbWFnZVBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8fef150dd7/AddedColdDamagePlus.png","gem":{"awakened":true}} +{"name":"각성한 화염 피해 추가 보조","refName":"Awakened Added Fire Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0FkZGVkRmlyZURhbWFnZVBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c1135da118/AddedFireDamagePlus.png","gem":{"awakened":true}} +{"name":"각성한 번개 피해 추가 보조","refName":"Awakened Added Lightning Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0FkZGVkTGlnaHRuaW5nRGFtYWdlUGx1cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/12f4edd322/AddedLightningDamagePlus.png","gem":{"awakened":true}} +{"name":"각성한 선대의 부름 보조","refName":"Awakened Ancestral Call Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL01pcmFnZVN0cmlrZVBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f7a05689d9/MirageStrikePlus.png","gem":{"awakened":true}} +{"name":"각성한 화살 산개 보조","refName":"Awakened Arrow Nova Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0dyZWVuUmFpblBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/84da19af8c/GreenRainPlus.png","gem":{"awakened":true}} +{"name":"각성한 신성 모독 보조","refName":"Awakened Blasphemy Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0F1cmlmeVBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/fbdc11b158/AurifyPlus.png","gem":{"awakened":true}} +{"name":"각성한 포악함 보조","refName":"Awakened Brutality Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0JydXRhbGl0eVBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9553670260/BrutalityPlus.png","gem":{"awakened":true}} +{"name":"각성한 화상 피해 보조","refName":"Awakened Burning Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0luY3JlYXNlZEJ1cm5EdXJhdGlvblBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/021c221c69/IncreasedBurnDurationPlus.png","gem":{"awakened":true}} +{"name":"각성한 치명타 시 시전 보조","refName":"Awakened Cast On Critical Strike Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0Nhc3RPbkNyaXRQbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/928b624b08/CastOnCritPlus.png","gem":{"awakened":true}} +{"name":"각성한 집중 유지 중 시전 보조","refName":"Awakened Cast While Channelling Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0Nhc3RXaGlsZUNoYW5uZWxpbmdQbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b6365df6cb/CastWhileChannelingPlus.png","gem":{"awakened":true}} +{"name":"각성한 연쇄 보조","refName":"Awakened Chain Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0NoYWluUGx1cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b328b4615c/ChainPlus.png","gem":{"awakened":true}} +{"name":"각성한 냉기 관통 보조","refName":"Awakened Cold Penetration Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0NvbGRQZW5ldHJhdGlvblBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/52ac74cbd4/ColdPenetrationPlus.png","gem":{"awakened":true}} +{"name":"각성한 제어된 파괴 보조","refName":"Awakened Controlled Destruction Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0NvbnRyb2xsZWREZXN0cnVjdGlvblBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e545c985d0/ControlledDestructionPlus.png","gem":{"awakened":true}} +{"name":"각성한 치명적인 상태 이상 보조","refName":"Awakened Deadly Ailments Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0RlYWRseUFpbG1lbnRzUGx1cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/68c620c3dc/DeadlyAilmentsPlus.png","gem":{"awakened":true}} +{"name":"각성한 공격 시 원소 피해 보조","refName":"Awakened Elemental Damage with Attacks Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL1dlYXBvbkVsZW1lbnRhbERhbWFnZVBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/2d6aa43759/WeaponElementalDamagePlus.png","gem":{"awakened":true}} +{"name":"각성한 원소 집중 보조","refName":"Awakened Elemental Focus Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0VsZW1lbnRhbEZvY3VzUGx1cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a84d493e28/ElementalFocusPlus.png","gem":{"awakened":true}} +{"name":"각성한 강화 보조","refName":"Awakened Empower Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0VtcG93ZXJQbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/eb0e6f91ed/EmpowerPlus.png","gem":{"awakened":true}} +{"name":"각성한 향상 보조","refName":"Awakened Enhance Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL2VuaGFuY2VwbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d3de7b3bd1/enhanceplus.png","gem":{"awakened":true}} +{"name":"각성한 계몽 보조","refName":"Awakened Enlighten Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0VubGlnaHRlbnBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/7ec7d0544d/Enlightenplus.png","gem":{"awakened":true}} +{"name":"각성한 화염 관통 보조","refName":"Awakened Fire Penetration Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0ZpcmVQZW5ldHJhdGlvblBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b1308cf253/FirePenetrationPlus.png","gem":{"awakened":true}} +{"name":"각성한 갈래 보조","refName":"Awakened Fork Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0ZvcmtQbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/664ffa6acd/ForkPlus.png","gem":{"awakened":true}} +{"name":"각성한 관대함 보조","refName":"Awakened Generosity Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0dlbmVyb3NpdHlQbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/14d887c794/GenerosityPlus.png","gem":{"awakened":true}} +{"name":"각성한 상위 다중 투사체 보조","refName":"Awakened Greater Multiple Projectiles Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0dyZWF0ZXJNdWx0aXBsZVByb2plY3RpbGVzUGx1cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/720eb18ad1/GreaterMultipleProjectilesPlus.png","gem":{"awakened":true}} +{"name":"각성한 사술 손길 보조","refName":"Awakened Hextouch Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0N1cnNlT25IaXRQbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/bae0341d74/CurseOnHitPlus.png","gem":{"awakened":true}} +{"name":"각성한 효과 범위 증가 보조","refName":"Awakened Increased Area of Effect Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0luY3JlYXNlZEFPRVBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/360e9e4ed5/IncreasedAOEPlus.png","gem":{"awakened":true}} +{"name":"각성한 번개 관통 보조","refName":"Awakened Lightning Penetration Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0xpZ2h0bmluZ1BlbmV0cmF0aW9uUGx1cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/163f40e5e5/LightningPenetrationPlus.png","gem":{"awakened":true}} +{"name":"각성한 근접 물리 피해 보조","refName":"Awakened Melee Physical Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0luY3JlYXNlZFBoeXNjaWFsRGFtYWdlUGx1cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b5d08a6777/IncreasedPhyscialDamagePlus.png","gem":{"awakened":true}} +{"name":"각성한 근접 범위 피해 보조","refName":"Awakened Melee Splash Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL1NwbGFzaFBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8c6dd76bf4/SplashPlus.png","gem":{"awakened":true}} +{"name":"각성한 소환수 피해 보조","refName":"Awakened Minion Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL01pbmlvbkRhbWFnZVBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5a905affec/MinionDamagePlus.png","gem":{"awakened":true}} +{"name":"각성한 연속타격 보조","refName":"Awakened Multistrike Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL011bHRpcGxlQXR0YWNrc1BsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c32ddc2121/MultipleAttacksPlus.png","gem":{"awakened":true}} +{"name":"각성한 연속 주문 보조","refName":"Awakened Spell Cascade Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL1NwZWxsQ2FzY2FkZVBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/7a316ceb5c/SpellCascadePlus.png","gem":{"awakened":true}} +{"name":"각성한 주문 메아리 보조","refName":"Awakened Spell Echo Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0VjaG9QbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9cccabda03/EchoPlus.png","gem":{"awakened":true}} +{"name":"각성한 고통 격화 보조","refName":"Awakened Swift Affliction Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL1N1cHBvcnRSYXBpZERlY2F5UGx1cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/275f8da8d1/SupportRapidDecayPlus.png","gem":{"awakened":true}} +{"name":"각성한 벌어지는 상처 보조","refName":"Awakened Unbound Ailments Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL1VuYm91bmRBaWxtZW50UGx1cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/41b8082cb4/UnboundAilmentPlus.png","gem":{"awakened":true}} +{"name":"각성한 촉발 보조","refName":"Awakened Unleash Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL1VubGVhc2hQbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/107949fc2b/UnleashPlus.png","gem":{"awakened":true}} +{"name":"각성한 포악한 투사체 보조","refName":"Awakened Vicious Projectiles Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL1JhbmdlZFBoeXNpY2FsQXR0YWNrRGFtYWdlUGx1cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/982ca84dbe/RangedPhysicalAttackDamagePlus.png","gem":{"awakened":true}} +{"name":"각성한 공허 조작 보조","refName":"Awakened Void Manipulation Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL1ZvaWRNYW5pcHVsYXRpb25QbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9223d42a35/VoidManipulationPlus.png","gem":{"awakened":true}} +{"name":"구형 번개","refName":"Ball Lightning","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CYWxsTGlnaHRuaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6c73d5c555/BallLightning.png","gem":{}} +{"name":"공전의 구형 번개","refName":"Ball Lightning of Orbiting","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CYWxsTGlnaHRuaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6c73d5c555/BallLightning.png","gem":{"transfigured":true,"normalVariant":"Ball Lightning"}} +{"name":"정전기의 구형 번개","refName":"Ball Lightning of Static","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CYWxsTGlnaHRuaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6c73d5c555/BallLightning.png","gem":{"transfigured":true,"normalVariant":"Ball Lightning"}} +{"name":"쇠뇌 토템 보조","refName":"Ballista Totem Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1JhbmdlZEF0dGFja1RvdGVtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b7ee0c564e/RangedAttackTotem.png","gem":{}} +{"name":"파멸","refName":"Bane","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EYXJrUml0dWFsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/c59eb9d27b/DarkRitualGem.png","gem":{}} +{"name":"규탄의 파멸","refName":"Bane of Condemnation","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EYXJrUml0dWFsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/c59eb9d27b/DarkRitualGem.png","gem":{"transfigured":true,"normalVariant":"Bane"}} +{"name":"연발 사격","refName":"Barrage","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CYXJyYWdlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/0669bef74e/Barrage.png","gem":{}} +{"name":"일제 포격의 연발 사격","refName":"Barrage of Volley Fire","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CYXJyYWdlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/0669bef74e/Barrage.png","gem":{"transfigured":true,"normalVariant":"Barrage"}} +{"name":"연발 사격 보조","refName":"Barrage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0dyZWVuQmFycmFnZVN1cHBvcnRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9c04b6b337/GreenBarrageSupportGem.png","gem":{}} +{"name":"전투마법사의 함성","refName":"Battlemage's Cry","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXZpbmVDcnlHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6948014a56/DivineCryGem.png","gem":{}} +{"name":"곰 덫","refName":"Bear Trap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CZWFyVHJhcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a6ad2b45cf/BearTrap.png","gem":{}} +{"name":"꼬챙이의 곰 덫","refName":"Bear Trap of Skewers","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CZWFyVHJhcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a6ad2b45cf/BearTrap.png","gem":{"transfigured":true,"normalVariant":"Bear Trap"}} +{"name":"참수 보조","refName":"Behead Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0V4ZWN1dGlvbmVyU3VwcG9ydEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5a4440c4e7/ExecutionerSupportGem.png","gem":{}} +{"name":"광폭","refName":"Berserk","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CZXNlcmtHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/fb31554c78/BeserkGem.png","gem":{}} +{"name":"칼날 폭격","refName":"Blade Blast","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFkZUJ1cnN0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/599beedaf4/BladeBurst.png","gem":{}} +{"name":"단검 폭파의 칼날 폭격","refName":"Blade Blast of Dagger Detonation","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFkZUJ1cnN0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/599beedaf4/BladeBurst.png","gem":{"transfigured":true,"normalVariant":"Blade Blast"}} +{"name":"난사의 칼날 폭격","refName":"Blade Blast of Unloading","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFkZUJ1cnN0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/599beedaf4/BladeBurst.png","gem":{"transfigured":true,"normalVariant":"Blade Blast"}} +{"name":"질풍의 칼날","refName":"Blade Flurry","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFyZ2VkQXR0YWNrIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b55acf2e90/ChargedAttack.png","gem":{}} +{"name":"절개의 질풍의 칼날","refName":"Blade Flurry of Incision","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFyZ2VkQXR0YWNrIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b55acf2e90/ChargedAttack.png","gem":{"transfigured":true,"normalVariant":"Blade Flurry"}} +{"name":"칼날 덫","refName":"Blade Trap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFkZVRyYXBTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b4ce2d5dc5/BladeTrapSkillGem.png","gem":{}} +{"name":"대검의 칼날 덫","refName":"Blade Trap of Greatswords","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFkZVRyYXBTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b4ce2d5dc5/BladeTrapSkillGem.png","gem":{"transfigured":true,"normalVariant":"Blade Trap"}} +{"name":"열상의 칼날 덫","refName":"Blade Trap of Laceration","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFkZVRyYXBTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b4ce2d5dc5/BladeTrapSkillGem.png","gem":{"transfigured":true,"normalVariant":"Blade Trap"}} +{"name":"칼날 소용돌이","refName":"Blade Vortex","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGlubmluZ0V0aGVyZWFsQmxhZGVzR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8f7a7d7b81/SpinningEtherealBladesGem.png","gem":{}} +{"name":"낫의 칼날 소용돌이","refName":"Blade Vortex of the Scythe","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGlubmluZ0V0aGVyZWFsQmxhZGVzR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8f7a7d7b81/SpinningEtherealBladesGem.png","gem":{"transfigured":true,"normalVariant":"Blade Vortex"}} +{"name":"칼날비","refName":"Bladefall","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWluT2ZCbGFkZXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0c68403963/RainOfBlades.png","gem":{}} +{"name":"꿰뚫기의 칼날비","refName":"Bladefall of Impaling","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWluT2ZCbGFkZXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0c68403963/RainOfBlades.png","gem":{"transfigured":true,"normalVariant":"Bladefall"}} +{"name":"사격 공세의 칼날비","refName":"Bladefall of Volleys","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWluT2ZCbGFkZXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0c68403963/RainOfBlades.png","gem":{"transfigured":true,"normalVariant":"Bladefall"}} +{"name":"칼날 폭풍","refName":"Bladestorm","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFkZXN0b3JtR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6b216c693a/BladestormGem.png","gem":{}} +{"name":"불확실성의 칼날 폭풍","refName":"Bladestorm of Uncertainty","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFkZXN0b3JtR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6b216c693a/BladestormGem.png","gem":{"transfigured":true,"normalVariant":"Bladestorm"}} +{"name":"신성 모독 보조","refName":"Blasphemy Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0F1cmlmeSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ac2d013ed8/Aurify.png","gem":{}} +{"name":"폭발 화살비","refName":"Blast Rain","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFzdFJhaW5HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1bc0aca8d7/BlastRainGem.png","gem":{}} +{"name":"연쇄 폭발 지뢰 보조","refName":"Blastchain Mine Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1JlbW90ZU1pbmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6a62456c74/RemoteMine.png","gem":{}} +{"name":"맹렬한 포격","refName":"Blazing Salvo","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbWJlciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/dce0125adf/Ember.png","gem":{}} +{"name":"황폐","refName":"Blight","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGlnaHRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/63c4ea3534/BlightGem.png","gem":{}} +{"name":"위축의 황폐","refName":"Blight of Atrophy","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGlnaHRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/63c4ea3534/BlightGem.png","gem":{"transfigured":true,"normalVariant":"Blight"}} +{"name":"전염의 황폐","refName":"Blight of Contagion","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGlnaHRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/63c4ea3534/BlightGem.png","gem":{"transfigured":true,"normalVariant":"Blight"}} +{"name":"실명 보조","refName":"Blind Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0JsaW5kIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/06f95114ae/Blind.png","gem":{}} +{"name":"점멸 화살","refName":"Blink Arrow","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGlua0Fycm93IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2836299d6e/BlinkArrow.png","gem":{}} +{"name":"포격 분신의 점멸 화살","refName":"Blink Arrow of Bombarding Clones","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGlua0Fycm93IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2836299d6e/BlinkArrow.png","gem":{"transfigured":true,"normalVariant":"Blink Arrow"}} +{"name":"분광 분신의 점멸 화살","refName":"Blink Arrow of Prismatic Clones","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGlua0Fycm93IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2836299d6e/BlinkArrow.png","gem":{"transfigured":true,"normalVariant":"Blink Arrow"}} +{"name":"막기 확률 감소 보조","refName":"Block Chance Reduction Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0JyZWFrQmxvY2siLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/18132535a7/BreakBlock.png","gem":{}} +{"name":"피와 모래","refName":"Blood and Sand","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZFNhbmRTdGFuY2VHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/91016572ac/BloodSandStanceGem.png","gem":{}} +{"name":"피의 격노","refName":"Blood Rage","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZFJhZ2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0a98a6bf95/BloodRage.png","gem":{}} +{"name":"유혈 충동 보조","refName":"Bloodlust Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Jsb29kbHVzdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0f21ba16fe/Bloodlust.png","gem":{}} +{"name":"피의 갈증 보조","refName":"Bloodthirst Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Jsb29kUHJpY2VTdXBwb3J0R2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4ea8419360/BloodPriceSupportGem.png","gem":{}} +{"name":"신체 전환","refName":"Bodyswap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db3Jwc2VXYXJwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/93895fd56c/CorpseWarp.png","gem":{}} +{"name":"희생의 신체 전환","refName":"Bodyswap of Sacrifice","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db3Jwc2VXYXJwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/93895fd56c/CorpseWarp.png","gem":{"transfigured":true,"normalVariant":"Bodyswap"}} +{"name":"뼈 공물","refName":"Bone Offering","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Cb25lT2ZmZXJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9918a40b8a/BoneOffering.png","gem":{}} +{"name":"사무치는 한기 보조","refName":"Bonechill Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0JvbmVDaGlsbFN1cHBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9aa30460fd/BoneChillSupport.png","gem":{}} +{"name":"뼈 박살","refName":"Boneshatter","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Cb25lc2hhdHRlclNraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9c37514f07/BoneshatterSkillGem.png","gem":{}} +{"name":"살육의 뼈 박살","refName":"Boneshatter of Carnage","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Cb25lc2hhdHRlclNraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9c37514f07/BoneshatterSkillGem.png","gem":{"transfigured":true,"normalVariant":"Boneshatter"}} +{"name":"복합 외상의 뼈 박살","refName":"Boneshatter of Complex Trauma","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Cb25lc2hhdHRlclNraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9c37514f07/BoneshatterSkillGem.png","gem":{"transfigured":true,"normalVariant":"Boneshatter"}} +{"name":"낙인 소환","refName":"Brand Recall","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SZWNhbGxTaWdpbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ee8b0c8fd2/RecallSigil.png","gem":{}} +{"name":"포악함 보조","refName":"Brutality Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0JydXRhbGl0eSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/62f8d5318d/Brutality.png","gem":{}} +{"name":"불타는 화살","refName":"Burning Arrow","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CdXJuaW5nQXJyb3ciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4cc118dd2c/BurningArrow.png","gem":{}} +{"name":"활력의 불타는 화살","refName":"Burning Arrow of Vigour","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CdXJuaW5nQXJyb3ciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4cc118dd2c/BurningArrow.png","gem":{"transfigured":true,"normalVariant":"Burning Arrow"}} +{"name":"화상 피해 보조","refName":"Burning Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0luY3JlYXNlZEJ1cm5EdXJhdGlvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/46900a1f5b/IncreasedBurnDuration.png","gem":{}} +{"name":"치명타 시 시전 보조","refName":"Cast On Critical Strike Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Nhc3RPbkNyaXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8ebad1afae/CastOnCrit.png","gem":{}} +{"name":"사망 시 시전 보조","refName":"Cast on Death Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Nhc3RPbkRlYXRoIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/7a8f023bcf/CastOnDeath.png","gem":{}} +{"name":"근접 처치 시 시전 보조","refName":"Cast on Melee Kill Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Nhc3RPbk1lbGVlS2lsbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/cbebb42cbc/CastOnMeleeKill.png","gem":{}} +{"name":"피격 시 시전 보조","refName":"Cast when Damage Taken Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Nhc3RPbkRtZ1Rha2VuIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2f075f5964/CastOnDmgTaken.png","gem":{}} +{"name":"기절 시 시전 보조","refName":"Cast when Stunned Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Nhc3RPblN0dW4iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/12b3b0fdfc/CastOnStun.png","gem":{}} +{"name":"집중 유지 중 시전 보조","refName":"Cast while Channelling Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Nhc3RXaGlsZUNoYW5uZWxpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/7a6045467d/CastWhileChanneling.png","gem":{}} +{"name":"부식성 화살","refName":"Caustic Arrow","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb2lzb25BcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8aa59b2327/PoisonArrow.png","gem":{}} +{"name":"독의 부식성 화살","refName":"Caustic Arrow of Poison","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb2lzb25BcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8aa59b2327/PoisonArrow.png","gem":{"transfigured":true,"normalVariant":"Caustic Arrow"}} +{"name":"사슬 갈고리","refName":"Chain Hook","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFpblN0cmlrZUdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fa737225f6/ChainStrikeGem.png","gem":{}} +{"name":"연쇄 보조","refName":"Chain Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L2NoYWluIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/812e47f631/chain.png","gem":{}} +{"name":"출혈 확률 보조","refName":"Chance to Bleed Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0NoYW5jZVRvQmxlZWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/51506e2da6/ChanceToBleed.png","gem":{}} +{"name":"도망칠 확률 보조","refName":"Chance to Flee Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0NoYW5jZXRvRmxlZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ae4e560cd8/ChancetoFlee.png","gem":{}} +{"name":"중독 확률 보조","refName":"Chance to Poison Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0xlc3NlclBvaXNvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9cce1eb7ef/LesserPoison.png","gem":{}} +{"name":"충전 질주","refName":"Charged Dash","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFyZ2VkRGFzaEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/2e78031cd6/ChargedDashGem.png","gem":{}} +{"name":"충전된 지뢰 보조","refName":"Charged Mines Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ludGVsbGlnZW5jZVBvd2VyRnJlbnp5Q2hhcmdlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/af11e7653b/IntelligencePowerFrenzyCharge.png","gem":{}} +{"name":"충전된 덫 보조","refName":"Charged Traps Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1Bvd2VyRnJlbnp5Q2hhcmdlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/50c4a0b8e0/PowerFrenzyCharge.png","gem":{}} +{"name":"명상","refName":"Clarity","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DbGFyaXR5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/30046e480b/Clarity.png","gem":{}} +{"name":"회전베기","refName":"Cleave","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DbGVhdmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/7d4382b5e9/Cleave.png","gem":{}} +{"name":"격노의 회전베기","refName":"Cleave of Rage","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DbGVhdmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/7d4382b5e9/Cleave.png","gem":{"transfigured":true,"normalVariant":"Cleave"}} +{"name":"근접 전투 보조","refName":"Close Combat Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Nsb3NlQ29tYmF0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/812599bf67/CloseCombat.png","gem":{}} +{"name":"무리 덫 보조","refName":"Cluster Traps Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0NsdXN0ZXJUcmFwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/91000f9475/ClusterTrap.png","gem":{}} +{"name":"코브라 채찍","refName":"Cobra Lash","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db2JyYUxhc2giLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9aaa5c123a/CobraLash.png","gem":{}} +{"name":"냉기 관통 보조","refName":"Cold Penetration Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0NvbGRQZW5ldHJhdGlvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/bf21e6828c/ColdPenetration.png","gem":{}} +{"name":"한파","refName":"Cold Snap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db2xkU25hcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/889f6cb1fd/ColdSnap.png","gem":{}} +{"name":"권능의 한파","refName":"Cold Snap of Power","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db2xkU25hcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/889f6cb1fd/ColdSnap.png","gem":{"transfigured":true,"normalVariant":"Cold Snap"}} +{"name":"냉기 화염 전환 보조","refName":"Cold to Fire Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0NvbGR0b0ZpcmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cc186488fc/ColdtoFire.png","gem":{}} +{"name":"연소 보조","refName":"Combustion Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0NoYW5jZXRvSWduaXRlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b24521e59a/ChancetoIgnite.png","gem":{}} +{"name":"효과 집중 보조","refName":"Concentrated Effect Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0NvbmNlbnRyYXRlZEFPRSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/4db641d292/ConcentratedAOE.png","gem":{}} +{"name":"전도성","refName":"Conductivity","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db25kdWN0aXZpdHkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1d64a0439e/Conductivity.png","gem":{}} +{"name":"축성의 진격","refName":"Consecrated Path","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ib2x5UGF0aEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ee190dd4e1/HolyPathGem.png","gem":{}} +{"name":"인내의 축성의 진격","refName":"Consecrated Path of Endurance","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ib2x5UGF0aEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ee190dd4e1/HolyPathGem.png","gem":{"transfigured":true,"normalVariant":"Consecrated Path"}} +{"name":"전염","refName":"Contagion","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db250YWdpb25HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a93197f89a/ContagionGem.png","gem":{}} +{"name":"침하의 전염","refName":"Contagion of Subsiding","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db250YWdpb25HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a93197f89a/ContagionGem.png","gem":{"transfigured":true,"normalVariant":"Contagion"}} +{"name":"전이의 전염","refName":"Contagion of Transference","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db250YWdpb25HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a93197f89a/ContagionGem.png","gem":{"transfigured":true,"normalVariant":"Contagion"}} +{"name":"제어된 불길 보조","refName":"Controlled Blaze Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0NvbnRyb2xsZWRCbGF6ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/da0249157e/ControlledBlaze.png","gem":{}} +{"name":"제어된 파괴 보조","refName":"Controlled Destruction Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0NvbnRyb2xsZWREZXN0cnVjdGlvbkdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0fca4292bb/ControlledDestructionGem.png","gem":{}} +{"name":"전향 덫","refName":"Conversion Trap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db252ZXJzaW9uVHJhcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/15f3ca7d18/ConversionTrap.png","gem":{}} +{"name":"소집","refName":"Convocation","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db252b2NhdGlvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/429e3e480f/Convocation.png","gem":{}} +{"name":"타락시키는 비명 보조","refName":"Corrupting Cry Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0NvcnJ1cHRpbmdDcnkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/27dd12964c/CorruptingCry.png","gem":{}} +{"name":"타락한 열병","refName":"Corrupting Fever","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db3JydXB0ZWRCbG9vZFN0cmVhbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fdc2a5d375/CorruptedBloodStream.png","gem":{}} +{"name":"치직대는 창","refName":"Crackling Lance","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXNlbnRlZ3JhdGVHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/89788eeb5b/DisentegrateGem.png","gem":{}} +{"name":"파생의 치직대는 창","refName":"Crackling Lance of Branching","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXNlbnRlZ3JhdGVHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/89788eeb5b/DisentegrateGem.png","gem":{"transfigured":true,"normalVariant":"Crackling Lance"}} +{"name":"분해의 치직대는 창","refName":"Crackling Lance of Disintegration","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXNlbnRlZ3JhdGVHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/89788eeb5b/DisentegrateGem.png","gem":{"transfigured":true,"normalVariant":"Crackling Lance"}} +{"name":"엄습하는 서리","refName":"Creeping Frost","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BcmN0aWNCcmVhdGgiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0102d0ec76/ArcticBreath.png","gem":{}} +{"name":"시체 소각","refName":"Cremation","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db3Jwc2VFcnVwdGlvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/83bc1fdffa/CorpseEruption.png","gem":{}} +{"name":"발굴의 시체 소각","refName":"Cremation of Exhuming","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db3Jwc2VFcnVwdGlvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/83bc1fdffa/CorpseEruption.png","gem":{"transfigured":true,"normalVariant":"Cremation"}} +{"name":"화산의 시체 소각","refName":"Cremation of the Volcano","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db3Jwc2VFcnVwdGlvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/83bc1fdffa/CorpseEruption.png","gem":{"transfigured":true,"normalVariant":"Cremation"}} +{"name":"치명타 고통 격화 보조","refName":"Critical Strike Affliction Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1BvaXNvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/93b5718773/Poison.png","gem":{}} +{"name":"잔혹 보조","refName":"Cruelty Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ZyYWdpbGl0eSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/85392d054c/Fragility.png","gem":{}} +{"name":"타쇄하는 주먹","refName":"Crushing Fist","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzMwLDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DcnVzaGluZ0Zpc3RTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f941a48bca/CrushingFistSkillGem.png","gem":{}} +{"name":"마무리 타격 보조","refName":"Culling Strike Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0N1bGxpbmdTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/328a156075/CullingStrike.png","gem":{}} +{"name":"저주받은 지대 보조","refName":"Cursed Ground Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0hleFpvbmVTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/63e77cc4ae/HexZoneSupport.png","gem":{}} +{"name":"회오리바람","refName":"Cyclone","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DeWNsb25lIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f97bf2f477/Cyclone.png","gem":{}} +{"name":"소동의 회오리바람","refName":"Cyclone of Tumult","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DeWNsb25lIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f97bf2f477/Cyclone.png","gem":{"transfigured":true,"normalVariant":"Cyclone"}} +{"name":"최대 생명력 시 피해 보조","refName":"Damage on Full Life Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01lbGVlRGFtYWdlb25GdWxsTGlmZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/487b8dcafd/MeleeDamageonFullLife.png","gem":{}} +{"name":"어둠의 서약","refName":"Dark Pact","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ta2VsZXRhbENoYWlucyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5976d42537/SkeletalChains.png","gem":{}} +{"name":"질주","refName":"Dash","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9RdWlja0Rhc2hHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9b7d6a4128/QuickDashGem.png","gem":{}} +{"name":"치명적인 상태 이상 보조","refName":"Deadly Ailments Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0RlYWRseUFpbG1lbnRzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/04acd7af7d/DeadlyAilments.png","gem":{}} +{"name":"부패 보조","refName":"Decay Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0RlY2F5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/a88201c7c2/Decay.png","gem":{}} +{"name":"미끼 토템","refName":"Decoy Totem","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZWNveVRvdGVtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/7a5edf8963/DecoyTotem.png","gem":{}} +{"name":"저항의 깃발","refName":"Defiance Banner","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Bcm1vdXJhbmRFdmFzaW9uQmFubmVyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b1f3dcfaa6/ArmourandEvasionBanner.png","gem":{}} +{"name":"모독","refName":"Desecrate","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZXNlY3JhdGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/25ac841d64/Desecrate.png","gem":{}} +{"name":"절망","refName":"Despair","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZXNwYWlyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b4dbf071cd/Despair.png","gem":{}} +{"name":"파괴의 연결","refName":"Destructive Link","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Dcml0aWNhbExpbmtHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/78c8139685/CriticalLinkGem.png","gem":{}} +{"name":"결의","refName":"Determination","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZXRlcm1pbmF0aW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/64c8ca9798/Determination.png","gem":{}} +{"name":"시체 폭발","refName":"Detonate Dead","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZXRvbmF0ZURlYWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/109199fc84/DetonateDead.png","gem":{}} +{"name":"연쇄 반응의 시체 폭발","refName":"Detonate Dead of Chain Reaction","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZXRvbmF0ZURlYWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/109199fc84/DetonateDead.png","gem":{"transfigured":true,"normalVariant":"Detonate Dead"}} +{"name":"청소부의 시체 폭발","refName":"Detonate Dead of Scavenging","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZXRvbmF0ZURlYWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/109199fc84/DetonateDead.png","gem":{"transfigured":true,"normalVariant":"Detonate Dead"}} +{"name":"지뢰 폭발","refName":"Detonate Mines","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZXRvbmF0ZU1pbmVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/01399d507f/DetonateMines.png","gem":{}} +{"name":"포식 보조","refName":"Devour Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Rldm91ciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/3c8b4acc1b/Devour.png","gem":{}} +{"name":"포식 토템","refName":"Devouring Totem","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZXZvdXJpbmdUb3RlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9aca73deb3/DevouringTotem.png","gem":{}} +{"name":"방출","refName":"Discharge","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXNjaGFyZ2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cedc22eeb5/Discharge.png","gem":{}} +{"name":"비참의 방출","refName":"Discharge of Misery","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXNjaGFyZ2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cedc22eeb5/Discharge.png","gem":{"transfigured":true,"normalVariant":"Discharge"}} +{"name":"단련","refName":"Discipline","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXNjaXBsaW5lIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8fb38b53f4/Discipline.png","gem":{}} +{"name":"신성한 축복 보조","refName":"Divine Blessing Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0JsZXNzaW5nU3VwcG9ydCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/99fba49d0f/BlessingSupport.png","gem":{}} +{"name":"신성한 진노","refName":"Divine Ire","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXZpbmVUZW1wZXN0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4b8cb33523/DivineTempest.png","gem":{}} +{"name":"분해의 신성한 진노","refName":"Divine Ire of Disintegration","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXZpbmVUZW1wZXN0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4b8cb33523/DivineTempest.png","gem":{"transfigured":true,"normalVariant":"Divine Ire"}} +{"name":"상서로운 번개의 신성한 진노","refName":"Divine Ire of Holy Lightning","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXZpbmVUZW1wZXN0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4b8cb33523/DivineTempest.png","gem":{"transfigured":true,"normalVariant":"Divine Ire"}} +{"name":"신성한 응징","refName":"Divine Retribution","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzMwLDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SZXRhbGlhdGlvbkhvbHlTcGVsbFNraWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/e0e8279ec8/RetaliationHolySpellSkill.png","gem":{}} +{"name":"지배의 맹타","refName":"Dominating Blow","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb21pbmF0aW5nQmxvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c0a344a783/DominatingBlow.png","gem":{}} +{"name":"격려의 지배의 맹타","refName":"Dominating Blow of Inspiring","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb21pbmF0aW5nQmxvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c0a344a783/DominatingBlow.png","gem":{"transfigured":true,"normalVariant":"Dominating Blow"}} +{"name":"이중 타격","refName":"Double Strike","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb3VibGVTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/408f3e4fa9/DoubleStrike.png","gem":{}} +{"name":"꿰뚫기의 이중 타격","refName":"Double Strike of Impaling","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb3VibGVTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/408f3e4fa9/DoubleStrike.png","gem":{"transfigured":true,"normalVariant":"Double Strike"}} +{"name":"기세의 이중 타격","refName":"Double Strike of Momentum","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb3VibGVTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/408f3e4fa9/DoubleStrike.png","gem":{"transfigured":true,"normalVariant":"Double Strike"}} +{"name":"공포의 깃발","refName":"Dread Banner","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EcmVhZEJhbm5lciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/cbb87b80fb/DreadBanner.png","gem":{}} +{"name":"쌍수 타격","refName":"Dual Strike","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EdWFsU3RyaWtlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f5112d91e4/DualStrike.png","gem":{}} +{"name":"양손잡이의 쌍수 타격","refName":"Dual Strike of Ambidexterity","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EdWFsU3RyaWtlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f5112d91e4/DualStrike.png","gem":{"transfigured":true,"normalVariant":"Dual Strike"}} +{"name":"지진","refName":"Earthquake","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9RdWFrZVNsYW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3a3c0f1c46/QuakeSlam.png","gem":{}} +{"name":"증폭의 지진","refName":"Earthquake of Amplification","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9RdWFrZVNsYW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3a3c0f1c46/QuakeSlam.png","gem":{"transfigured":true,"normalVariant":"Earthquake"}} +{"name":"지면 분쇄","refName":"Earthshatter","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGlrZVNsYW1HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f366aab2cf/SpikeSlamGem.png","gem":{}} +{"name":"허약의 지면 분쇄","refName":"Earthshatter of Fragility","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGlrZVNsYW1HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f366aab2cf/SpikeSlamGem.png","gem":{"transfigured":true,"normalVariant":"Earthshatter"}} +{"name":"출중의 지면 분쇄","refName":"Earthshatter of Prominence","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGlrZVNsYW1HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f366aab2cf/SpikeSlamGem.png","gem":{"transfigured":true,"normalVariant":"Earthshatter"}} +{"name":"효력 보조","refName":"Efficacy Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0VmZmljYWN5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/90381ee91a/Efficacy.png","gem":{}} +{"name":"원소의 군단 보조","refName":"Elemental Army Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1bW1vbnNFbGVtZW50YWxSZXNpc3RzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/db4dac7400/SummonsElementalResists.png","gem":{}} +{"name":"공격 시 원소 피해 보조","refName":"Elemental Damage with Attacks Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1dlYXBvbkVsZW1lbnRhbERhbWFnZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/2cfbdc80b2/WeaponElementalDamage.png","gem":{}} +{"name":"원소 집중 보조","refName":"Elemental Focus Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0VsZW1lbnRhbEZvY3VzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/89a3556bad/ElementalFocus.png","gem":{}} +{"name":"원소의 일격","refName":"Elemental Hit","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbGVtZW50YWxoaXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/498f9dcd1e/Elementalhit.png","gem":{}} +{"name":"파장의 원소의 일격","refName":"Elemental Hit of the Spectrum","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbGVtZW50YWxoaXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/498f9dcd1e/Elementalhit.png","gem":{"transfigured":true,"normalVariant":"Elemental Hit"}} +{"name":"원소 관통 보조","refName":"Elemental Penetration Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0VsZW1lbnRhbFBlbmV0cmF0aW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/36b75b1496/ElementalPenetration.png","gem":{}} +{"name":"원소 확산 보조","refName":"Elemental Proliferation Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0VsZW1lbnRhbFByb2xpZmVyYXRpb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/820a3ee1f5/ElementalProliferation.png","gem":{}} +{"name":"원소 약화","refName":"Elemental Weakness","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbGVtZW50YWxXZWFrbmVzcyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b639dd2650/ElementalWeakness.png","gem":{}} +{"name":"강화 보조","refName":"Empower Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0VtcG93ZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c2b1b38b15/Empower.png","gem":{}} +{"name":"기절 시 인내 충전 보조","refName":"Endurance Charge on Melee Stun Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0VuZHVyYW5jZUNoYXJnZVN0dW4iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e3b4ca1900/EnduranceChargeStun.png","gem":{}} +{"name":"인내의 함성","refName":"Enduring Cry","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbmR1cmluZ0NyeSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/4c160bac55/EnduringCry.png","gem":{}} +{"name":"에너지 칼날","refName":"Energy Blade","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdG9ybUJsYWRlR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/387697170b/StormBladeGem.png","gem":{}} +{"name":"에너지 흡수 보조","refName":"Energy Leech Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0VuZXJneVNoaWVsZExlZWNoc3VwcG9ydCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/691b0c6570/EnergyShieldLeechsupport.png","gem":{}} +{"name":"쇠약화","refName":"Enfeeble","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbmZlZWJsZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e85edd0ad5/Enfeeble.png","gem":{}} +{"name":"향상 보조","refName":"Enhance Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L2VuaGFuY2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9f8df30377/enhance.png","gem":{}} +{"name":"계몽 보조","refName":"Enlighten Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0VubGlnaHRlbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/05a949e270/Enlighten.png","gem":{}} +{"name":"올가미 화살","refName":"Ensnaring Arrow","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbnNuYXJpbmdBcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d73b324dd3/EnsnaringArrow.png","gem":{}} +{"name":"정수 흡수","refName":"Essence Drain","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaXBob25HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/97ff6075bf/SiphonGem.png","gem":{}} +{"name":"필사의 정수 흡수","refName":"Essence Drain of Desperation","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaXBob25HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/97ff6075bf/SiphonGem.png","gem":{"transfigured":true,"normalVariant":"Essence Drain"}} +{"name":"사악함의 정수 흡수","refName":"Essence Drain of Wickedness","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaXBob25HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/97ff6075bf/SiphonGem.png","gem":{"transfigured":true,"normalVariant":"Essence Drain"}} +{"name":"영원한 축복 보조","refName":"Eternal Blessing Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01vcnRhbENvbnZpY3Rpb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/39ae65a638/MortalConviction.png","gem":{}} +{"name":"천상의 단도","refName":"Ethereal Knives","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FdGhlcmVhbEtuaXZlcyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/67d0809c7c/EtherealKnives.png","gem":{}} +{"name":"지속되는 칼날의 천상의 단도","refName":"Ethereal Knives of Lingering Blades","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FdGhlcmVhbEtuaXZlcyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/67d0809c7c/EtherealKnives.png","gem":{"transfigured":true,"normalVariant":"Ethereal Knives"}} +{"name":"도륙의 천상의 단도","refName":"Ethereal Knives of the Massacre","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FdGhlcmVhbEtuaXZlcyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/67d0809c7c/EtherealKnives.png","gem":{"transfigured":true,"normalVariant":"Ethereal Knives"}} +{"name":"내장 적출","refName":"Eviscerate","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzMwLDE0LHsiZiI6IjJESXRlbXMvR2Vtcy8xSGFuZFNoaWVsZENvdW50ZXJhdHRhY2tTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/18612cf0b3/1HandShieldCounterattackSkillGem.png","gem":{}} +{"name":"노련한 보복 보조","refName":"Expert Retaliation Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0V4cGVydFJldGFsaWF0aW9uU3VwcG9ydCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7897b090f1/ExpertRetaliationSupport.png","gem":{}} +{"name":"폭발 화살","refName":"Explosive Arrow","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FeHBsb3NpdmVBcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a9cd35adfb/ExplosiveArrow.png","gem":{}} +{"name":"폭발성 혼합물","refName":"Explosive Concoction","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FeHBsb3NpdmVGbGFza1NraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9114018038/ExplosiveFlaskSkillGem.png","gem":{}} +{"name":"파괴의 폭발성 혼합물","refName":"Explosive Concoction of Destruction","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FeHBsb3NpdmVGbGFza1NraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9114018038/ExplosiveFlaskSkillGem.png","gem":{"transfigured":true,"normalVariant":"Explosive Concoction"}} +{"name":"폭발 덫","refName":"Explosive Trap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaHJhcG5lbFRyYXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/77d643292b/ShrapnelTrap.png","gem":{}} +{"name":"규모의 폭발 덫","refName":"Explosive Trap of Magnitude","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaHJhcG5lbFRyYXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/77d643292b/ShrapnelTrap.png","gem":{"transfigured":true,"normalVariant":"Explosive Trap"}} +{"name":"파편의 폭발 덫","refName":"Explosive Trap of Shrapnel","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaHJhcG5lbFRyYXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/77d643292b/ShrapnelTrap.png","gem":{"transfigured":true,"normalVariant":"Explosive Trap"}} +{"name":"방혈","refName":"Exsanguinate","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZFRlbmRyaWxzU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d421c5c70e/BloodTendrilsSkillGem.png","gem":{}} +{"name":"전송의 방혈","refName":"Exsanguinate of Transmission","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZFRlbmRyaWxzU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d421c5c70e/BloodTendrilsSkillGem.png","gem":{"transfigured":true,"normalVariant":"Exsanguinate"}} +{"name":"겨울의 눈","refName":"Eye of Winter","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm96ZW5TcGhlcmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b51924877e/FrozenSphereSkillGem.png","gem":{}} +{"name":"종극의 겨울의 눈","refName":"Eye of Winter of Finality","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm96ZW5TcGhlcmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b51924877e/FrozenSphereSkillGem.png","gem":{"transfigured":true,"normalVariant":"Eye of Winter"}} +{"name":"덧없음의 겨울의 눈","refName":"Eye of Winter of Transience","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm96ZW5TcGhlcmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b51924877e/FrozenSphereSkillGem.png","gem":{"transfigured":true,"normalVariant":"Eye of Winter"}} +{"name":"공격 속도 증가 보조","refName":"Faster Attacks Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Zhc3RlckF0dGFja3MiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c3e1544a95/FasterAttacks.png","gem":{}} +{"name":"시전 속도 증가 보조","refName":"Faster Casting Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Zhc3RlckNhc3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4a65f03270/FasterCast.png","gem":{}} +{"name":"투사체 속도 증가 보조","refName":"Faster Projectiles Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Zhc3RlclByb2plY3RpbGVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/a6517119dd/FasterProjectiles.png","gem":{}} +{"name":"격분 주입 보조","refName":"Feeding Frenzy Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L09mZmVuc2l2ZU1pbmlvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f90cd05483/OffensiveMinion.png","gem":{}} +{"name":"화염 관통 보조","refName":"Fire Penetration Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ZpcmVQZW5ldHJhdGlvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/191dcc704c/FirePenetration.png","gem":{}} +{"name":"화염 덫","refName":"Fire Trap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlVHJhcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9d94f9ce06/FireTrap.png","gem":{}} +{"name":"폭발의 화염 덫","refName":"Fire Trap of Blasting","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlVHJhcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9d94f9ce06/FireTrap.png","gem":{"transfigured":true,"normalVariant":"Fire Trap"}} +{"name":"화염구","refName":"Fireball","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlYmFsbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8f374db219/Fireball.png","gem":{}} +{"name":"화염 폭풍","refName":"Firestorm","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlc3Rvcm0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/86d85233c1/Firestorm.png","gem":{}} +{"name":"유성의 화염 폭풍","refName":"Firestorm of Meteors","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlc3Rvcm0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/86d85233c1/Firestorm.png","gem":{"transfigured":true,"normalVariant":"Firestorm"}} +{"name":"퍼부음의 화염 폭풍","refName":"Firestorm of Pelting","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlc3Rvcm0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/86d85233c1/Firestorm.png","gem":{"transfigured":true,"normalVariant":"Firestorm"}} +{"name":"전쟁의 주먹 보조","refName":"Fist of War Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Zpc3RPZldhckdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6ba67a3963/FistOfWarGem.png","gem":{}} +{"name":"화염 질주","refName":"Flame Dash","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZURhc2giLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6816a20975/FlameDash.png","gem":{}} +{"name":"귀환의 화염 질주","refName":"Flame Dash of Return","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZURhc2giLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6816a20975/FlameDash.png","gem":{"transfigured":true,"normalVariant":"Flame Dash"}} +{"name":"화염의 연결","refName":"Flame Link","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZUxpbmtHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/fee913312b/FlameLinkGem.png","gem":{}} +{"name":"화염 쇄도","refName":"Flame Surge","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZXdoaXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/005ce2aecc/Flamewhip.png","gem":{}} +{"name":"발화의 화염 쇄도","refName":"Flame Surge of Combusting","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZXdoaXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/005ce2aecc/Flamewhip.png","gem":{"transfigured":true,"normalVariant":"Flame Surge"}} +{"name":"화염 벽","refName":"Flame Wall","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJld2FsbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d3c69ec0a3/Firewall.png","gem":{}} +{"name":"화염파","refName":"Flameblast","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFyZ2VkQmxhc3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/90adc64f44/ChargedBlast.png","gem":{}} +{"name":"민첩함의 화염파","refName":"Flameblast of Celerity","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFyZ2VkQmxhc3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/90adc64f44/ChargedBlast.png","gem":{"transfigured":true,"normalVariant":"Flameblast"}} +{"name":"수축의 화염파","refName":"Flameblast of Contraction","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFyZ2VkQmxhc3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/90adc64f44/ChargedBlast.png","gem":{"transfigured":true,"normalVariant":"Flameblast"}} +{"name":"화염방사기 덫","refName":"Flamethrower Trap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZXRocm93ZXJUcmFwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/11e6f1dd04/FlamethrowerTrap.png","gem":{}} +{"name":"화염나무 보조","refName":"Flamewood Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ZsYW1ld29vZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/83ebdeea1c/Flamewood.png","gem":{}} +{"name":"인화성","refName":"Flammability","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtbWFiaWxpdHkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ba43e87752/Flammability.png","gem":{}} +{"name":"육체와 돌","refName":"Flesh and Stone","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZFNhbmRBcm1vdXJHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a66b8062e9/BloodSandArmourGem.png","gem":{}} +{"name":"살점 공물","refName":"Flesh Offering","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGVzaE9mZmVyaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d0a2e49abe/FleshOffering.png","gem":{}} +{"name":"점멸 타격","refName":"Flicker Strike","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGlja2VyU3RyaWtlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4d16009413/FlickerStrike.png","gem":{}} +{"name":"권능의 점멸 타격","refName":"Flicker Strike of Power","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGlja2VyU3RyaWtlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4d16009413/FlickerStrike.png","gem":{"transfigured":true,"normalVariant":"Flicker Strike"}} +{"name":"쇠뇌 집중 사격 보조","refName":"Focused Ballista Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ZvY3Vzc2VkQmFsbGlzdGFTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/7fe5aa6d93/FocussedBallistaSupport.png","gem":{}} +{"name":"금단의 의식","refName":"Forbidden Rite","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Tb3VsZmVhc3RHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b4fd5ae750/SoulfeastGem.png","gem":{}} +{"name":"영혼 희생의 금단의 의식","refName":"Forbidden Rite of Soul Sacrifice","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Tb3VsZmVhc3RHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b4fd5ae750/SoulfeastGem.png","gem":{"transfigured":true,"normalVariant":"Forbidden Rite"}} +{"name":"갈래 보조","refName":"Fork Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ZvcmsiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9de72b6ab9/Fork.png","gem":{}} +{"name":"방어 상승 보조","refName":"Fortify Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ZvcnRpZnlHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0f54034785/FortifyGem.png","gem":{}} +{"name":"동결 파동","refName":"Freezing Pulse","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GcmVlemluZ1B1bHNlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d62582b397/FreezingPulse.png","gem":{}} +{"name":"격분","refName":"Frenzy","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GcmVuenkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cd16439994/Frenzy.png","gem":{}} +{"name":"맹공의 격분","refName":"Frenzy of Onslaught","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GcmVuenkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cd16439994/Frenzy.png","gem":{"transfigured":true,"normalVariant":"Frenzy"}} +{"name":"신선한 고기 보조","refName":"Fresh Meat Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ZyZXNoTWVhdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/aad1cf4139/FreshMeat.png","gem":{}} +{"name":"차디찬 유대 보조","refName":"Frigid Bond Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ZyaWdpZEJvbmQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e595841550/FrigidBond.png","gem":{}} +{"name":"서리 칼날","refName":"Frost Blades","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d5e5a05831/IceStrike.png","gem":{}} +{"name":"퇴각의 서리 칼날","refName":"Frost Blades of Katabasis","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d5e5a05831/IceStrike.png","gem":{"transfigured":true,"normalVariant":"Frost Blades"}} +{"name":"서리 폭탄","refName":"Frost Bomb","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdEJvbWIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c8aeb75684/FrostBomb.png","gem":{}} +{"name":"임박의 서리 폭탄","refName":"Frost Bomb of Forthcoming","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdEJvbWIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c8aeb75684/FrostBomb.png","gem":{"transfigured":true,"normalVariant":"Frost Bomb"}} +{"name":"불안정의 서리 폭탄","refName":"Frost Bomb of Instability","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdEJvbWIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c8aeb75684/FrostBomb.png","gem":{"transfigured":true,"normalVariant":"Frost Bomb"}} +{"name":"서리 방패","refName":"Frost Shield","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdEdsb2JlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/e7020ad872/FrostGlobe.png","gem":{}} +{"name":"서리 방벽","refName":"Frost Wall","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdFdhbGwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6b6d630e19/FrostWall.png","gem":{}} +{"name":"동상","refName":"Frostbite","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdEJpdGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b858d8016a/FrostBite.png","gem":{}} +{"name":"서리점멸","refName":"Frostblink","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdGJsaW5rU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5d0c50f5e4/FrostblinkSkillGem.png","gem":{}} +{"name":"차가운 폭발의 서리점멸","refName":"Frostblink of Wintry Blast","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdGJsaW5rU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5d0c50f5e4/FrostblinkSkillGem.png","gem":{"transfigured":true,"normalVariant":"Frostblink"}} +{"name":"서리 구체","refName":"Frostbolt","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdEJvbHQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/33202c1f22/FrostBolt.png","gem":{}} +{"name":"얼어붙은 군단","refName":"Frozen Legion","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm96ZW5MZWdpb25Ta2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f177c9b520/FrozenLegionSkillGem.png","gem":{}} +{"name":"재집결의 얼어붙은 군단","refName":"Frozen Legion of Rallying","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm96ZW5MZWdpb25Ta2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f177c9b520/FrozenLegionSkillGem.png","gem":{"transfigured":true,"normalVariant":"Frozen Legion"}} +{"name":"충격 화살","refName":"Galvanic Arrow","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaHJhcG5lbFNob3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6efbafb70a/ShrapnelShot.png","gem":{}} +{"name":"에너지의 충격 화살","refName":"Galvanic Arrow of Energy","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaHJhcG5lbFNob3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6efbafb70a/ShrapnelShot.png","gem":{"transfigured":true,"normalVariant":"Galvanic Arrow"}} +{"name":"쇄도의 충격 화살","refName":"Galvanic Arrow of Surging","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaHJhcG5lbFNob3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6efbafb70a/ShrapnelShot.png","gem":{"transfigured":true,"normalVariant":"Galvanic Arrow"}} +{"name":"충격장","refName":"Galvanic Field","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HYWx2YW5pY0ZpZWxkU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8aa27ccb46/GalvanicFieldSkillGem.png","gem":{}} +{"name":"격렬함의 충격장","refName":"Galvanic Field of Intensity","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HYWx2YW5pY0ZpZWxkU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8aa27ccb46/GalvanicFieldSkillGem.png","gem":{"transfigured":true,"normalVariant":"Galvanic Field"}} +{"name":"장군의 함성","refName":"General's Cry","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HZW5lcmFsc0NyeSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8f89442969/GeneralsCry.png","gem":{}} +{"name":"관대함 보조","refName":"Generosity Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0dlbmVyb3NpdHlTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/a32a095b6b/GenerositySupport.png","gem":{}} +{"name":"빙하 폭포","refName":"Glacial Cascade","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9VcGhlYXZhbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e29730bc66/Upheaval.png","gem":{}} +{"name":"균열의 빙하 폭포","refName":"Glacial Cascade of the Fissure","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9VcGhlYXZhbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e29730bc66/Upheaval.png","gem":{"transfigured":true,"normalVariant":"Glacial Cascade"}} +{"name":"빙하 망치","refName":"Glacial Hammer","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HbGFjaWFsSGFtbWVyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ff8c64eae7/GlacialHammer.png","gem":{}} +{"name":"산산조각의 빙하 망치","refName":"Glacial Hammer of Shattering","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HbGFjaWFsSGFtbWVyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ff8c64eae7/GlacialHammer.png","gem":{"transfigured":true,"normalVariant":"Glacial Hammer"}} +{"name":"빙하 방패 후려치기","refName":"Glacial Shield Swipe","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzMwLDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VXYXZlc1NraWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/37c0c2b118/IceWavesSkill.png","gem":{}} +{"name":"은총","refName":"Grace","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HcmFjZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e98082048a/Grace.png","gem":{}} +{"name":"상위 다중 투사체 보조","refName":"Greater Multiple Projectiles Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0dyZWF0ZXJNdWx0aXBsZVByb2plY3RpbGVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/c157c4f1e9/GreaterMultipleProjectiles.png","gem":{}} +{"name":"상위 사격 공세 보조","refName":"Greater Volley Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0dyZWF0ZXJWb2xsZXlTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/bb821215f4/GreaterVolleySupport.png","gem":{}} +{"name":"대지 강타","refName":"Ground Slam","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Hcm91bmRzbGFtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/fe4a163a74/Groundslam.png","gem":{}} +{"name":"지동의 대지 강타","refName":"Ground Slam of Earthshaking","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Hcm91bmRzbGFtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/fe4a163a74/Groundslam.png","gem":{"transfigured":true,"normalVariant":"Ground Slam"}} +{"name":"수호자의 축복 보조","refName":"Guardian's Blessing Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0d1YXJkaWFuc0JsZXNzaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/bd80e27bb7/GuardiansBlessing.png","gem":{}} +{"name":"가속","refName":"Haste","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IYXN0ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/151b5aa85b/Haste.png","gem":{}} +{"name":"증오","refName":"Hatred","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IYXRyZWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/432bfae70e/Hatred.png","gem":{}} +{"name":"묵직한 타격","refName":"Heavy Strike","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IZWF2eVN0cmlrZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6139e85fcd/HeavyStrike.png","gem":{}} +{"name":"고통의 전령","refName":"Herald of Agony","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IZXJhbGRPZkFnb255R2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/0e95349c4d/HeraldOfAgonyGem.png","gem":{}} +{"name":"재의 전령","refName":"Herald of Ash","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IZXJhbGRvZkFzaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/10697bcbfe/HeraldofAsh.png","gem":{}} +{"name":"얼음의 전령","refName":"Herald of Ice","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IZXJhbGRvZkljZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ce4dc073c8/HeraldofIce.png","gem":{}} +{"name":"순수의 전령","refName":"Herald of Purity","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IZXJhbGRPZkxpZ2h0IEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8e500098c1/HeraldOfLight%20Gem.png","gem":{}} +{"name":"천둥의 전령","refName":"Herald of Thunder","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IZXJhbGRvZlRodW5kZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/567f7d8ad4/HeraldofThunder.png","gem":{}} +{"name":"사술의 꽃 보조","refName":"Hex Bloom Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IZXhTcHJlYWRpbmdTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/873fa8ef65/HexSpreadingSupport.png","gem":{}} +{"name":"사술 폭발","refName":"Hexblast","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb29tQmxhc3RTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1866f44c9d/DoomBlastSkillGem.png","gem":{}} +{"name":"상반의 사술폭발","refName":"Hexblast of Contradiction","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb29tQmxhc3RTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1866f44c9d/DoomBlastSkillGem.png","gem":{"transfigured":true,"normalVariant":"Hexblast"}} +{"name":"혼란의 사술폭발","refName":"Hexblast of Havoc","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb29tQmxhc3RTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1866f44c9d/DoomBlastSkillGem.png","gem":{"transfigured":true,"normalVariant":"Hexblast"}} +{"name":"사술 손길 보조","refName":"Hextouch Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0N1cnNlT25IaXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/da0ae156c5/CurseOnHit.png","gem":{}} +{"name":"고충격 지뢰 보조","refName":"High-Impact Mine Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0FsdFJlbW90ZU1pbmVTdXBwb3J0R2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/22c3e66b67/AltRemoteMineSupportGem.png","gem":{}} +{"name":"신성한 화염 토템","refName":"Holy Flame Totem","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZVRvdGVtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b622628c3c/FlameTotem.png","gem":{}} +{"name":"노여움의 신성한 화염 토템","refName":"Holy Flame Totem of Ire","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZVRvdGVtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b622628c3c/FlameTotem.png","gem":{"transfigured":true,"normalVariant":"Holy Flame Totem"}} +{"name":"물의 구체","refName":"Hydrosphere","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IeWRyb3NwaGVyZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8602dc0a80/Hydrosphere.png","gem":{}} +{"name":"체온저하 보조","refName":"Hypothermia Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0RhbWFnZUFnYWluc3RDaGlsbGVkIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/97f8b88dfa/DamageAgainstChilled.png","gem":{}} +{"name":"얼음 쐐기 보조","refName":"Ice Bite Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ZyZW56eUNoYXJnZU9uU2hhdHRlciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d172bfc06a/FrenzyChargeOnShatter.png","gem":{}} +{"name":"얼음 충격","refName":"Ice Crash","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VDcmFzaEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/23f3dc49b4/IceCrashGem.png","gem":{}} +{"name":"운율의 얼음 충격","refName":"Ice Crash of Cadence","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VDcmFzaEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/23f3dc49b4/IceCrashGem.png","gem":{"transfigured":true,"normalVariant":"Ice Crash"}} +{"name":"얼음 폭발","refName":"Ice Nova","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VOb3ZhIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/65f9588dac/IceNova.png","gem":{}} +{"name":"결빙의 얼음 폭발","refName":"Ice Nova of Deep Freeze","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VOb3ZhIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/65f9588dac/IceNova.png","gem":{"transfigured":true,"normalVariant":"Ice Nova"}} +{"name":"서리 구체의 얼음 폭발","refName":"Ice Nova of Frostbolts","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VOb3ZhIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/65f9588dac/IceNova.png","gem":{"transfigured":true,"normalVariant":"Ice Nova"}} +{"name":"얼음 화살","refName":"Ice Shot","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTaG90IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6ebe439727/IceShot.png","gem":{}} +{"name":"관통의 얼음 화살","refName":"Ice Shot of Penetration","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTaG90IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6ebe439727/IceShot.png","gem":{"transfigured":true,"normalVariant":"Ice Shot"}} +{"name":"얼음 창","refName":"Ice Spear","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTcGVhciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1ba7d15d5d/IceSpear.png","gem":{}} +{"name":"분할의 얼음 창","refName":"Ice Spear of Splitting","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTcGVhciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1ba7d15d5d/IceSpear.png","gem":{"transfigured":true,"normalVariant":"Ice Spear"}} +{"name":"얼음 덫","refName":"Ice Trap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VUcmFwUnVuZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5211666f1b/IceTrapRune.png","gem":{}} +{"name":"무상의 얼음 덫","refName":"Ice Trap of Hollowness","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VUcmFwUnVuZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5211666f1b/IceTrapRune.png","gem":{"transfigured":true,"normalVariant":"Ice Trap"}} +{"name":"고드름 지뢰","refName":"Icicle Mine","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db2xkUHJvamVjdGlsZU1pbmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a7c134082a/ColdProjectileMineSkillGem.png","gem":{}} +{"name":"퍼짐의 고드름 지뢰","refName":"Icicle Mine of Fanning","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db2xkUHJvamVjdGlsZU1pbmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a7c134082a/ColdProjectileMineSkillGem.png","gem":{"transfigured":true,"normalVariant":"Icicle Mine"}} +{"name":"방해 공작의 고드름 지뢰","refName":"Icicle Mine of Sabotage","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db2xkUHJvamVjdGlsZU1pbmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a7c134082a/ColdProjectileMineSkillGem.png","gem":{"transfigured":true,"normalVariant":"Icicle Mine"}} +{"name":"점화 확산 보조","refName":"Ignite Proliferation Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0lnbml0ZVByb2xpZmVyYXRpb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e6a337b58f/IgniteProliferation.png","gem":{}} +{"name":"번제 보조","refName":"Immolate Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ltbW9sYXRlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/af3f7bc354/Immolate.png","gem":{}} +{"name":"불멸의 외침","refName":"Immortal Call","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JbW1vcnRhbENhbGwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ef38147c94/ImmortalCall.png","gem":{}} +{"name":"꿰뚫기 보조","refName":"Impale Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L2ltcGFsZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a974bd1dc1/impale.png","gem":{}} +{"name":"임박한 멸망 보조","refName":"Impending Doom Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1ZpY2lvdXNIZXhTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ca0675bd9c/ViciousHexSupport.png","gem":{}} +{"name":"소각","refName":"Incinerate","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZXRocm93ZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d7c85f1aa4/Flamethrower.png","gem":{}} +{"name":"광야의 소각","refName":"Incinerate of Expanse","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZXRocm93ZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d7c85f1aa4/Flamethrower.png","gem":{"transfigured":true,"normalVariant":"Incinerate"}} +{"name":"환기의 소각","refName":"Incinerate of Venting","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZXRocm93ZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d7c85f1aa4/Flamethrower.png","gem":{"transfigured":true,"normalVariant":"Incinerate"}} +{"name":"효과 범위 증가 보조","refName":"Increased Area of Effect Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0luY3JlYXNlZEFPRSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a4111d2154/IncreasedAOE.png","gem":{}} +{"name":"치명타 피해 증가 보조","refName":"Increased Critical Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0luY3JlYXNlZENyaXRpY2FsRGFtYWdlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/74164474d1/IncreasedCriticalDamage.png","gem":{}} +{"name":"치명타 증가 보조","refName":"Increased Critical Strikes Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0luY3JlYXNlZENyaXRpY2FsU3RyaWtlcyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/afc7a604cf/IncreasedCriticalStrikes.png","gem":{}} +{"name":"지옥불 맹타","refName":"Infernal Blow","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JbmZlcm5hbEJsb3ciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d016d5b5a1/InfernalBlow.png","gem":{}} +{"name":"제물의 지옥불 맹타","refName":"Infernal Blow of Immolation","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JbmZlcm5hbEJsb3ciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d016d5b5a1/InfernalBlow.png","gem":{"transfigured":true,"normalVariant":"Infernal Blow"}} +{"name":"지옥불 함성","refName":"Infernal Cry","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JbmZlcm5hbENyeSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/dccf976e24/InfernalCry.png","gem":{}} +{"name":"지옥불 군단 보조","refName":"Infernal Legion Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0luZmVybmFsTGVnaW9uU3VwcG9ydEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/461a9b10aa/InfernalLegionSupportGem.png","gem":{}} +{"name":"깊어지는 집중 유지 보조","refName":"Infused Channelling Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N0b3JtQmFycmllciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7db72233e9/StormBarrier.png","gem":{}} +{"name":"자극 보조","refName":"Innervate Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L09uc2xhdWdodE9uU2xheWluZ1Nob2NrZWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0780d91964/OnslaughtOnSlayingShocked.png","gem":{}} +{"name":"영감 보조","refName":"Inspiration Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1JlZHVjZWRNYW5hQ29zdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f9f7503054/ReducedManaCost.png","gem":{}} +{"name":"격화 보조","refName":"Intensify Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1NwZWxsRm9jdXNTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f1143120cd/SpellFocusSupport.png","gem":{}} +{"name":"위협의 함성","refName":"Intimidating Cry","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JbnRpbWlkYXRpbmdDcnkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d208dc6bb5/IntimidatingCry.png","gem":{}} +{"name":"직관의 연결","refName":"Intuitive Link","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9UcmlnZ2VyTGlua0dlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/726a29e3ef/TriggerLinkGem.png","gem":{}} +{"name":"강철 손아귀 보조","refName":"Iron Grip Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0lyb25HcmlwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/e4644c9b8b/IronGrip.png","gem":{}} +{"name":"강철의 의지 보조","refName":"Iron Will Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0lyb25XaWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/fe7bad1137/IronWill.png","gem":{}} +{"name":"아이템 희귀도 보조","refName":"Item Rarity Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0luY3JlYXNlZFF1YWxpdHkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3419db9edf/IncreasedQuality.png","gem":{}} +{"name":"역학 폭발","refName":"Kinetic Blast","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DbHVzdGVyQnVyc3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1b7aff0832/ClusterBurst.png","gem":{}} +{"name":"군집의 역학 폭발","refName":"Kinetic Blast of Clustering","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DbHVzdGVyQnVyc3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1b7aff0832/ClusterBurst.png","gem":{"transfigured":true,"normalVariant":"Kinetic Blast"}} +{"name":"역학 투사체","refName":"Kinetic Bolt","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9aaWdaYWdXYW5kU2tpbGwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/461e91bc97/ZigZagWandSkill.png","gem":{}} +{"name":"파쇄의 역학 투사체","refName":"Kinetic Bolt of Fragmentation","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9aaWdaYWdXYW5kU2tpbGwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/461e91bc97/ZigZagWandSkill.png","gem":{"transfigured":true,"normalVariant":"Kinetic Bolt"}} +{"name":"밀어내기 보조","refName":"Knockback Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0tub2NrYmFjayIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/682a61d0bb/Knockback.png","gem":{}} +{"name":"피부 찢기","refName":"Lacerate","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb3VibGVTbGFzaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fb44a829bd/DoubleSlash.png","gem":{}} +{"name":"도살의 피부 찢기","refName":"Lacerate of Butchering","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb3VibGVTbGFzaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fb44a829bd/DoubleSlash.png","gem":{"transfigured":true,"normalVariant":"Lacerate"}} +{"name":"실혈의 피부 찢기","refName":"Lacerate of Haemorrhage","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb3VibGVTbGFzaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fb44a829bd/DoubleSlash.png","gem":{"transfigured":true,"normalVariant":"Lacerate"}} +{"name":"강철 관통","refName":"Lancing Steel","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MYW5jaW5nU3RlZWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8ed78ceb39/LancingSteel.png","gem":{}} +{"name":"분사의 강철 관통","refName":"Lancing Steel of Spraying","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MYW5jaW5nU3RlZWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8ed78ceb39/LancingSteel.png","gem":{"transfigured":true,"normalVariant":"Lancing Steel"}} +{"name":"도약 강타","refName":"Leap Slam","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MZWFwU2xhbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f65891de7a/LeapSlam.png","gem":{}} +{"name":"땅 분쇄의 도약 강타","refName":"Leap Slam of Groundbreaking","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MZWFwU2xhbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f65891de7a/LeapSlam.png","gem":{"transfigured":true,"normalVariant":"Leap Slam"}} +{"name":"지속시간 감소 보조","refName":"Less Duration Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1JlZHVjZUR1cmF0aW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ab88044f5f/ReduceDuration.png","gem":{}} +{"name":"하위 다중 투사체 보조","refName":"Lesser Multiple Projectiles Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0xlc3Nlck11bHRpcGxlUHJvamVjdGlsZXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/db32a787d3/LesserMultipleProjectiles.png","gem":{}} +{"name":"명중 시 생명력 획득 보조","refName":"Life Gain on Hit Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0xpZmVvbkhpdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7f577bed88/LifeonHit.png","gem":{}} +{"name":"생명력 흡수 보조","refName":"Life Leech Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0xpZmVMZWVjaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/56a5e21d58/LifeLeech.png","gem":{}} +{"name":"생명력 전환 보조","refName":"Lifetap Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0xpZmVUYXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9cef38ae47/LifeTap.png","gem":{}} +{"name":"번개 화살","refName":"Lightning Arrow","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdBcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f5ad901f20/LightningArrow.png","gem":{}} +{"name":"전기 처형의 번개 화살","refName":"Lightning Arrow of Electrocution","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdBcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f5ad901f20/LightningArrow.png","gem":{"transfigured":true,"normalVariant":"Lightning Arrow"}} +{"name":"번개 도관","refName":"Lightning Conduit","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbmVyZ3lSZWxlYXNlU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5a89cebfb0/EnergyReleaseSkillGem.png","gem":{}} +{"name":"천국의 번개 도관","refName":"Lightning Conduit of the Heavens","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbmVyZ3lSZWxlYXNlU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5a89cebfb0/EnergyReleaseSkillGem.png","gem":{"transfigured":true,"normalVariant":"Lightning Conduit"}} +{"name":"번개 관통 보조","refName":"Lightning Penetration Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0xpZ2h0bmluZ1BlbmV0cmF0aW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4fcb8dce90/LightningPenetration.png","gem":{}} +{"name":"번개 첨탑 덫","refName":"Lightning Spire Trap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdTcGlyZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/701078aee5/LightningSpire.png","gem":{}} +{"name":"과부하의 번개 첨탑 덫","refName":"Lightning Spire Trap of Overloading","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdTcGlyZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/701078aee5/LightningSpire.png","gem":{"transfigured":true,"normalVariant":"Lightning Spire Trap"}} +{"name":"전류의 번개 첨탑 덫","refName":"Lightning Spire Trap of Zapping","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdTcGlyZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/701078aee5/LightningSpire.png","gem":{"transfigured":true,"normalVariant":"Lightning Spire Trap"}} +{"name":"번개 타격","refName":"Lightning Strike","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e593a52f90/LightningStrike.png","gem":{}} +{"name":"전호의 번개 타격","refName":"Lightning Strike of Arcing","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e593a52f90/LightningStrike.png","gem":{"transfigured":true,"normalVariant":"Lightning Strike"}} +{"name":"덩굴 번개","refName":"Lightning Tendrils","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodGVuaW5nVG91Y2giLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/418fa752e4/LighteningTouch.png","gem":{}} +{"name":"기행의 덩굴 번개","refName":"Lightning Tendrils of Eccentricity","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodGVuaW5nVG91Y2giLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/418fa752e4/LighteningTouch.png","gem":{"transfigured":true,"normalVariant":"Lightning Tendrils"}} +{"name":"격화의 덩굴 번개","refName":"Lightning Tendrils of Escalation","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodGVuaW5nVG91Y2giLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/418fa752e4/LighteningTouch.png","gem":{"transfigured":true,"normalVariant":"Lightning Tendrils"}} +{"name":"번개 덫","refName":"Lightning Trap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdUcmFwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/18365fa604/LightningTrap.png","gem":{}} +{"name":"전기불꽃의 번개 덫","refName":"Lightning Trap of Sparking","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdUcmFwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/18365fa604/LightningTrap.png","gem":{"transfigured":true,"normalVariant":"Lightning Trap"}} +{"name":"번개 차원 이동","refName":"Lightning Warp","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdXYXJwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5f79874aa8/LightningWarp.png","gem":{}} +{"name":"궤적 지뢰 보조","refName":"Locus Mine Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0xvY3VzTWluZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/81e9dcb0a5/LocusMine.png","gem":{}} +{"name":"힘줄 절단 보조","refName":"Maim Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01haW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/dc8062db46/Maim.png","gem":{}} +{"name":"악의","refName":"Malevolence","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZWxpcml1bUdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/68eb889340/DeliriumGem.png","gem":{}} +{"name":"마나 흡수 보조","refName":"Mana Leech Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01hbmFMZWVjaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d7f54dd2b1/ManaLeech.png","gem":{}} +{"name":"마나 결속","refName":"Manabond","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9NYW5hVm9pZEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ce344fd0e1/ManaVoidGem.png","gem":{}} +{"name":"마나벼림 화살 보조","refName":"Manaforged Arrows Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0FyY2FuZUFyY2hlclN1cHBvcnRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5258fad72b/ArcaneArcherSupportGem.png","gem":{}} +{"name":"명중 시 징표 보조","refName":"Mark On Hit Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01hcmtPbkhpdHRpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/082becefa3/MarkOnHitting.png","gem":{}} +{"name":"육탄 방어 보조","refName":"Meat Shield Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0RlZmVuc2l2ZU1pbmlvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/604a531a0b/DefensiveMinion.png","gem":{}} +{"name":"근접 물리 피해 보조","refName":"Melee Physical Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0luY3JlYXNlZFBoeXNpY2FsRGFtYWdlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/99e02beaac/IncreasedPhysicalDamage.png","gem":{}} +{"name":"근접 범위 피해 보조","refName":"Melee Splash Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1NwbGFzaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/739d21a3fc/Splash.png","gem":{}} +{"name":"지뢰밭 보조","refName":"Minefield Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01pbmVmaWVsZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/04b0f0d1e0/Minefield.png","gem":{}} +{"name":"소환수 피해 보조","refName":"Minion Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01pbmlvbkRhbWFnZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9bf4329029/MinionDamage.png","gem":{}} +{"name":"소환수 생명력 보조","refName":"Minion Life Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01pbmlvbkxpZmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/efcc549806/MinionLife.png","gem":{}} +{"name":"소환수 속도 보조","refName":"Minion Speed Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01pbmlvblNwZWVkIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/83f397f71b/MinionSpeed.png","gem":{}} +{"name":"신기루 궁수 보조","refName":"Mirage Archer Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01pcmFnZUFyY2hlciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/4f37cfb6a7/MirageArcher.png","gem":{}} +{"name":"거울 화살","refName":"Mirror Arrow","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9NaXJyb3JBcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/73b6c24402/MirrorArrow.png","gem":{}} +{"name":"포격 분신의 거울 화살","refName":"Mirror Arrow of Bombarding Clones","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9NaXJyb3JBcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/73b6c24402/MirrorArrow.png","gem":{"transfigured":true,"normalVariant":"Mirror Arrow"}} +{"name":"분광 분신의 거울 화살","refName":"Mirror Arrow of Prismatic Clones","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9NaXJyb3JBcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/73b6c24402/MirrorArrow.png","gem":{"transfigured":true,"normalVariant":"Mirror Arrow"}} +{"name":"용암 방패","refName":"Molten Shell","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Nb2x0ZW5TaGVsbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9d2618a44a/MoltenShell.png","gem":{}} +{"name":"용암 타격","refName":"Molten Strike","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Nb2x0ZW5TdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3493f9e016/MoltenStrike.png","gem":{}} +{"name":"북극성의 용암 타격","refName":"Molten Strike of the Zenith","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Nb2x0ZW5TdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3493f9e016/MoltenStrike.png","gem":{"transfigured":true,"normalVariant":"Molten Strike"}} +{"name":"기세 보조","refName":"Momentum Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01vbWVudHVtU3VwcG9ydEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ccdd57e05a/MomentumSupportGem.png","gem":{}} +{"name":"지속시간 증폭 보조","refName":"More Duration Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0luY3JlYXNlZER1cmF0aW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/a5db7ae0bd/IncreasedDuration.png","gem":{}} +{"name":"다중 토템 보조","refName":"Multiple Totems Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L011bHRpcGxlVG90ZW1zIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/dc8f032f0b/MultipleTotems.png","gem":{}} +{"name":"다중 덫 보조","refName":"Multiple Traps Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L011bHRpVHJhcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/40a7787dff/MultiTrap.png","gem":{}} +{"name":"연속타격 보조","refName":"Multistrike Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L211bHRpcGxlYXR0YWNrcyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/49bb71ab5f/multipleattacks.png","gem":{}} +{"name":"밤의 칼날 보조","refName":"Nightblade Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L05pZ2h0YmxhZGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ffa3ac8f49/Nightblade.png","gem":{}} +{"name":"폭풍 보주","refName":"Orb of Storms","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdG9ybUNsb3VkR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5b77e4b3b2/StormCloudGem.png","gem":{}} +{"name":"과충전 보조","refName":"Overcharge Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1B1cmVTaG9ja1N1cHBvcnRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/161c06a8d4/PureShockSupportGem.png","gem":{}} +{"name":"전심전력 보조","refName":"Overexertion Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L092ZXJleGVydGlvbldhcmNyeVN1cHBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/2f39285834/OverexertionWarcrySupport.png","gem":{}} +{"name":"속죄의 낙인","refName":"Penance Brand","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QZW5hbmNlQnJhbmRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/72054bdbca/PenanceBrandGem.png","gem":{}} +{"name":"전도의 속죄의 낙인","refName":"Penance Brand of Conduction","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QZW5hbmNlQnJhbmRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/72054bdbca/PenanceBrandGem.png","gem":{"transfigured":true,"normalVariant":"Penance Brand"}} +{"name":"소실의 속죄의 낙인","refName":"Penance Brand of Dissipation","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QZW5hbmNlQnJhbmRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/72054bdbca/PenanceBrandGem.png","gem":{"transfigured":true,"normalVariant":"Penance Brand"}} +{"name":"천공","refName":"Perforate","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZFNhbmRTcGVhcnNTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c39a8a0fbb/BloodSandSpearsSkillGem.png","gem":{}} +{"name":"유혈의 천공","refName":"Perforate of Bloodshed","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZFNhbmRTcGVhcnNTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c39a8a0fbb/BloodSandSpearsSkillGem.png","gem":{"transfigured":true,"normalVariant":"Perforate"}} +{"name":"이중성의 천공","refName":"Perforate of Duality","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZFNhbmRTcGVhcnNTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c39a8a0fbb/BloodSandSpearsSkillGem.png","gem":{"transfigured":true,"normalVariant":"Perforate"}} +{"name":"전염성 일격","refName":"Pestilent Strike","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9NYW1iYVN0cmlrZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/456033ff00/MambaStrike.png","gem":{}} +{"name":"피 석화","refName":"Petrified Blood","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QZXRyaWZpZWRCbG9vZEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9221d2458d/PetrifiedBloodGem.png","gem":{}} +{"name":"위상 질주","refName":"Phase Run","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QaGFzZVJ1biIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0f3a780d1f/PhaseRun.png","gem":{}} +{"name":"물리 번개 전환 보조","refName":"Physical to Lightning Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1BoeXNpY2FsVG9MaWdodG5pbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5f0b03c090/PhysicalToLightning.png","gem":{}} +{"name":"관통 보조","refName":"Pierce Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1BpZXJjZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9cceecca83/Pierce.png","gem":{}} +{"name":"핵심 조준 보조","refName":"Pinpoint Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1Byb2plY3RpbGVJbnRlbnNpdHkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ee6ee305b9/ProjectileIntensity.png","gem":{}} +{"name":"독성 운반자","refName":"Plague Bearer","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QbGFndWVCZWFyZXJHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9b3e8e4025/PlagueBearerGem.png","gem":{}} +{"name":"밀렵꾼의 징표","refName":"Poacher's Mark","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb2FjaGVyc01hcmsiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4a716d544e/PoachersMark.png","gem":{}} +{"name":"근접 사격 보조","refName":"Point Blank Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1BvaW50QmxhbmsiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/23dd6314d7/PointBlank.png","gem":{}} +{"name":"독성 혼합물","refName":"Poisonous Concoction","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb2lzb25vdXNDb25jb2N0aW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b1cde568a6/PoisonousConcoction.png","gem":{}} +{"name":"반동의 독성 혼합물","refName":"Poisonous Concoction of Bouncing","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb2lzb25vdXNDb25jb2N0aW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b1cde568a6/PoisonousConcoction.png","gem":{"transfigured":true,"normalVariant":"Poisonous Concoction"}} +{"name":"포탈","refName":"Portal","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb3J0YWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/179ddc4cbd/Portal.png","gem":{}} +{"name":"치명타 시 권능 충전 보조","refName":"Power Charge On Critical Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1Bvd2VyQ2hhcmdlcyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d65c84e89f/PowerCharges.png","gem":{}} +{"name":"권능 착취","refName":"Power Siphon","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb3dlclNpcGhvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8c00738194/PowerSiphon.png","gem":{}} +{"name":"대마법사의 권능 착취","refName":"Power Siphon of the Archmage","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb3dlclNpcGhvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8c00738194/PowerSiphon.png","gem":{"transfigured":true,"normalVariant":"Power Siphon"}} +{"name":"정밀함","refName":"Precision","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BY2N1cmFjeWFuZENyaXRpY2FsQ2hhbmNlQXVyYSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/3996a0a9cf/AccuracyandCriticalChanceAura.png","gem":{}} +{"name":"포식자 보조","refName":"Predator Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01pbmlvbkZvY3VzRmlyZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/84babeb963/MinionFocusFire.png","gem":{}} +{"name":"자부심","refName":"Pride","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QcmlkZUF1cmFHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/115cf1f969/PrideAuraGem.png","gem":{}} +{"name":"분광 격발 보조","refName":"Prismatic Burst Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0VsZW1lbnRhbEJ1cnN0U3VwcG9ydEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/717e468ab8/ElementalBurstSupportGem.png","gem":{}} +{"name":"보호의 연결","refName":"Protective Link","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9ja0xpbmtHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a459f4b2b0/BlockLinkGem.png","gem":{}} +{"name":"분쇄 보조","refName":"Pulverise Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1B1bHZlcml6ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f6e9b6cedb/Pulverize.png","gem":{}} +{"name":"관통상","refName":"Puncture","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QdW5jdHVyZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5c16efd68b/Puncture.png","gem":{}} +{"name":"들이꽂는 관통상","refName":"Puncture of Shanking","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QdW5jdHVyZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5c16efd68b/Puncture.png","gem":{"transfigured":true,"normalVariant":"Puncture"}} +{"name":"응징","refName":"Punishment","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QdW5pc2htZW50IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4bffb6422c/Punishment.png","gem":{}} +{"name":"정화의 불길","refName":"Purifying Flame","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QdXJpZnlpbmdGbGFtZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/3f5689d6e1/PurifyingFlame.png","gem":{}} +{"name":"계시의 정화의 불길","refName":"Purifying Flame of Revelations","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QdXJpZnlpbmdGbGFtZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/3f5689d6e1/PurifyingFlame.png","gem":{"transfigured":true,"normalVariant":"Purifying Flame"}} +{"name":"원소의 순수함","refName":"Purity of Elements","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QdXJpdHkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/44bd765302/Purity.png","gem":{}} +{"name":"불의 순수함","refName":"Purity of Fire","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlUmVzaXN0QXVyYSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/973e94bf0a/FireResistAura.png","gem":{}} +{"name":"얼음의 순수함","refName":"Purity of Ice","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db2xkUmVzaXN0QXVyYSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0ebc7da568/ColdResistAura.png","gem":{}} +{"name":"번개의 순수함","refName":"Purity of Lightning","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdSZXNpc3RBdXJhIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4c883997e3/LightningResistAura.png","gem":{}} +{"name":"화산탄 지뢰","refName":"Pyroclast Mine","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlTW9ydGFyQmFycmFnZU1pbmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0dbce41c29/FireMortarBarrageMineSkillGem.png","gem":{}} +{"name":"방해 공작의 화산탄 지뢰","refName":"Pyroclast Mine of Sabotage","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlTW9ydGFyQmFycmFnZU1pbmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0dbce41c29/FireMortarBarrageMineSkillGem.png","gem":{"transfigured":true,"normalVariant":"Pyroclast Mine"}} +{"name":"격노 보조","refName":"Rage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1JhZ2VTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ed66060764/RageSupport.png","gem":{}} +{"name":"격노 소용돌이","refName":"Rage Vortex","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWdlVm9ydGV4IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/31794f9875/RageVortex.png","gem":{}} +{"name":"광폭화의 격노 소용돌이","refName":"Rage Vortex of Berserking","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWdlVm9ydGV4IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/31794f9875/RageVortex.png","gem":{"transfigured":true,"normalVariant":"Rage Vortex"}} +{"name":"화살비","refName":"Rain of Arrows","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlub2ZBcnJvd3MiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a7e02c03ad/RainofArrows.png","gem":{}} +{"name":"포대의 화살비","refName":"Rain of Arrows of Artillery","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlub2ZBcnJvd3MiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a7e02c03ad/RainofArrows.png","gem":{"transfigured":true,"normalVariant":"Rain of Arrows"}} +{"name":"포화의 화살비","refName":"Rain of Arrows of Saturation","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlub2ZBcnJvd3MiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a7e02c03ad/RainofArrows.png","gem":{"transfigured":true,"normalVariant":"Rain of Arrows"}} +{"name":"망령 소환","refName":"Raise Spectre","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlzZVNwZWN0cmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8b97da3ff6/RaiseSpectre.png","gem":{}} +{"name":"덧없음의 망령 소환","refName":"Raise Spectre of Transience","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlzZVNwZWN0cmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8b97da3ff6/RaiseSpectre.png","gem":{"transfigured":true,"normalVariant":"Raise Spectre"}} +{"name":"좀비 소환","refName":"Raise Zombie","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlzZVpvbWJpZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/91518203be/RaiseZombie.png","gem":{}} +{"name":"추락의 좀비 소환","refName":"Raise Zombie of Falling","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlzZVpvbWJpZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/91518203be/RaiseZombie.png","gem":{"transfigured":true,"normalVariant":"Raise Zombie"}} +{"name":"강타의 좀비 소환","refName":"Raise Zombie of Slamming","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlzZVpvbWJpZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/91518203be/RaiseZombie.png","gem":{"transfigured":true,"normalVariant":"Raise Zombie"}} +{"name":"집결의 함성","refName":"Rallying Cry","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWxseWluZ0NyeVNraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1baf6b0602/RallyingCrySkillGem.png","gem":{}} +{"name":"낫질","refName":"Reap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZHJlYXBHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a57bea32ba/BloodreapGem.png","gem":{}} +{"name":"약탈","refName":"Reave","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SZWF2ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/cdfa67890f/Reave.png","gem":{}} +{"name":"굴절의 약탈","refName":"Reave of Refraction","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SZWF2ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/cdfa67890f/Reave.png","gem":{"transfigured":true,"normalVariant":"Reave"}} +{"name":"회복 토템","refName":"Rejuvenation Totem","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SZWp1dmluYXRpb25Ub3RlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5dd895cd90/RejuvinationTotem.png","gem":{}} +{"name":"돌아오는 투사체 보조","refName":"Returning Projectiles Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1JldHVyblByb2plY3RpbGVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/76e59b7e35/ReturnProjectiles.png","gem":{}} +{"name":"정의의 화염","refName":"Righteous Fire","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SaWdodGVvdXNGaXJlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/da7c97a11c/RighteousFire.png","gem":{}} +{"name":"비전 헌신의 정의의 화염","refName":"Righteous Fire of Arcane Devotion","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SaWdodGVvdXNGaXJlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/da7c97a11c/RighteousFire.png","gem":{"transfigured":true,"normalVariant":"Righteous Fire"}} +{"name":"몰려오는 마그마","refName":"Rolling Magma","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlTW9ydGFyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9339ca9a6b/FireMortar.png","gem":{}} +{"name":"파열 보조","refName":"Rupture Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1J1cHR1cmVTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/38a8e54b96/RuptureSupport.png","gem":{}} +{"name":"무자비 보조","refName":"Ruthless Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1J1dGhsZXNzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d8a9bf875d/Ruthless.png","gem":{}} +{"name":"신성한 도깨비불 보조","refName":"Sacred Wisps Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1dhbmRXaXNwU3VwcG9ydCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/20976859e1/WandWispSupport.png","gem":{}} +{"name":"희생 보조","refName":"Sacrifice Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1NhY3JpZmljZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7797a594a9/Sacrifice.png","gem":{}} +{"name":"가학증 보조","refName":"Sadism Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1NhZGlzbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/13cc734252/Sadism.png","gem":{}} +{"name":"작열 광선","refName":"Scorching Ray","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlQmVhbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/daf2631e95/FireBeam.png","gem":{}} +{"name":"제물의 작열 광선","refName":"Scorching Ray of Immolation","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlQmVhbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/daf2631e95/FireBeam.png","gem":{"transfigured":true,"normalVariant":"Scorching Ray"}} +{"name":"재앙의 화살","refName":"Scourge Arrow","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9WaXJ1bGVudEFycm93IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/e633045dfb/VirulentArrow.png","gem":{}} +{"name":"위험의 재앙의 화살","refName":"Scourge Arrow of Menace","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9WaXJ1bGVudEFycm93IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/e633045dfb/VirulentArrow.png","gem":{"transfigured":true,"normalVariant":"Scourge Arrow"}} +{"name":"불타는 굴레","refName":"Searing Bond","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TZWFyaW5nQm9uZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1bc968cafb/SearingBond.png","gem":{}} +{"name":"새로운 활력 보조","refName":"Second Wind Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1NlY29uZFdpbmRTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ccfc5c7b25/SecondWindSupport.png","gem":{}} +{"name":"지진 함성","refName":"Seismic Cry","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TZWlzbWljQ3J5U2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f15f5c64ff/SeismicCrySkillGem.png","gem":{}} +{"name":"지진 덫","refName":"Seismic Trap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdWJ0ZXJyYW5lYW5UcmFwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/592e94541c/SubterraneanTrap.png","gem":{}} +{"name":"팽창의 지진 덫","refName":"Seismic Trap of Swells","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdWJ0ZXJyYW5lYW5UcmFwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/592e94541c/SubterraneanTrap.png","gem":{"transfigured":true,"normalVariant":"Seismic Trap"}} +{"name":"강철 파편","refName":"Shattering Steel","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaGF0dGVyaW5nU3RlZWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f2f0ff3d2b/ShatteringSteel.png","gem":{}} +{"name":"탄약의 강철 파편","refName":"Shattering Steel of Ammunition","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaGF0dGVyaW5nU3RlZWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f2f0ff3d2b/ShatteringSteel.png","gem":{"transfigured":true,"normalVariant":"Shattering Steel"}} +{"name":"방패 돌진","refName":"Shield Charge","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaGllbGRDaGFyZ2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1749dcaa1d/ShieldCharge.png","gem":{}} +{"name":"방패 타쇄","refName":"Shield Crush","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaGllbGRDcnVzaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/920a5e462f/ShieldCrush.png","gem":{}} +{"name":"부족장의 방패 타쇄","refName":"Shield Crush of the Chieftain","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaGllbGRDcnVzaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/920a5e462f/ShieldCrush.png","gem":{"transfigured":true,"normalVariant":"Shield Crush"}} +{"name":"충격 폭발","refName":"Shock Nova","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaG9ja05vdmEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/671a5ad79a/ShockNova.png","gem":{}} +{"name":"충격파 보조","refName":"Shockwave Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1Nob2Nrd2F2ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/891f9888bb/Shockwave.png","gem":{}} +{"name":"충격파 토템","refName":"Shockwave Totem","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaG9ja3dhdmVUb3RlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/406bc8da09/ShockwaveTotem.png","gem":{}} +{"name":"파편 쇠뇌","refName":"Shrapnel Ballista","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaG90Z3VuVG90ZW1Cb3dTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c52d90f33e/ShotgunTotemBowSkillGem.png","gem":{}} +{"name":"강철의 파편 쇠뇌","refName":"Shrapnel Ballista of Steel","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaG90Z3VuVG90ZW1Cb3dTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c52d90f33e/ShotgunTotemBowSkillGem.png","gem":{"transfigured":true,"normalVariant":"Shrapnel Ballista"}} +{"name":"공성 쇠뇌","refName":"Siege Ballista","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Dcm9zc0Jvd1RvdGVtR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/90dbc7b7ca/CrossBowTotemGem.png","gem":{}} +{"name":"파편의 공성 쇠뇌","refName":"Siege Ballista of Splintering","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Dcm9zc0Jvd1RvdGVtR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/90dbc7b7ca/CrossBowTotemGem.png","gem":{"transfigured":true,"normalVariant":"Siege Ballista"}} +{"name":"힘의 부적","refName":"Sigil of Power","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaXJjbGVvZlBvd2VyU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b47a71c6bf/CircleofPowerSkillGem.png","gem":{}} +{"name":"착취 덫","refName":"Siphoning Trap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTaXBob24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b04d5c8c56/IceSiphon.png","gem":{}} +{"name":"투사체 속도 감소 보조","refName":"Slower Projectiles Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1Nsb3dlclByb2plY3RpbGVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2192faa440/SlowerProjectiles.png","gem":{}} +{"name":"징벌","refName":"Smite","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TbWl0ZUdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7c84ed15fc/SmiteGem.png","gem":{}} +{"name":"신성한 심판의 징벌","refName":"Smite of Divine Judgement","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TbWl0ZUdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7c84ed15fc/SmiteGem.png","gem":{"transfigured":true,"normalVariant":"Smite"}} +{"name":"연막 지뢰","refName":"Smoke Mine","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TbW9rZUJvbWIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b002b08d2d/SmokeBomb.png","gem":{}} +{"name":"저격","refName":"Snipe","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TbmlwZXJTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ae5061110b/SniperSkillGem.png","gem":{}} +{"name":"저격수의 징표","refName":"Sniper's Mark","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qcm9qZWN0aWxlV2Vha25lc3MiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3dd2dfcc61/ProjectileWeakness.png","gem":{}} +{"name":"영혼의 연결","refName":"Soul Link","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Tb3VsTGlua0dlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/77a2f86ddb/SoulLinkGem.png","gem":{}} +{"name":"영혼 분리","refName":"Soulrend","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Tb3VscmVuZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ff1bb335b0/Soulrend.png","gem":{}} +{"name":"낫질의 영혼 분리","refName":"Soulrend of Reaping","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Tb3VscmVuZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ff1bb335b0/Soulrend.png","gem":{"transfigured":true,"normalVariant":"Soulrend"}} +{"name":"나선의 영혼 분리","refName":"Soulrend of the Spiral","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Tb3VscmVuZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ff1bb335b0/Soulrend.png","gem":{"transfigured":true,"normalVariant":"Soulrend"}} +{"name":"전기불꽃","refName":"Spark","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGFyayIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/60a5c0ff13/Spark.png","gem":{}} +{"name":"폭발의 전기불꽃","refName":"Spark of the Nova","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGFyayIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/60a5c0ff13/Spark.png","gem":{"transfigured":true,"normalVariant":"Spark"}} +{"name":"예측 불허의 전기불꽃","refName":"Spark of Unpredictability","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGFyayIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/60a5c0ff13/Spark.png","gem":{"transfigured":true,"normalVariant":"Spark"}} +{"name":"영체 나선","refName":"Spectral Helix","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGVjdHJhbFNwaXJhbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a4324285be/SpectralSpiralGem.png","gem":{}} +{"name":"환영 방패 투척","refName":"Spectral Shield Throw","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9UaHJvd24gU2hpZWxkIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f6b7871386/Thrown%20Shield.png","gem":{}} +{"name":"산산조각의 환영 방패 투척","refName":"Spectral Shield Throw of Shattering","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9UaHJvd24gU2hpZWxkIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f6b7871386/Thrown%20Shield.png","gem":{"transfigured":true,"normalVariant":"Spectral Shield Throw"}} +{"name":"환영 무기 투척","refName":"Spectral Throw","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HaG9zdGx5VGhyb3ciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c3b7611261/GhostlyThrow.png","gem":{}} +{"name":"구체화의 환영 무기 투척","refName":"Spectral Throw of Materialising","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HaG9zdGx5VGhyb3ciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c3b7611261/GhostlyThrow.png","gem":{"transfigured":true,"normalVariant":"Spectral Throw"}} +{"name":"연속 주문 보조","refName":"Spell Cascade Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1NwZWxsQ2FzY2FkZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c72a3fbf82/SpellCascade.png","gem":{}} +{"name":"주문 메아리 보조","refName":"Spell Echo Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0VjaG8iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1868afbf2e/Echo.png","gem":{}} +{"name":"주문 토템 보조","refName":"Spell Totem Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1RvdGVtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/e168c87ee6/Totem.png","gem":{}} +{"name":"주문칼날 보조","refName":"Spellblade Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1NwZWxsQmxhZGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6f4a6cf751/SpellBlade.png","gem":{}} +{"name":"주문투척","refName":"Spellslinger","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGVsbHNsaW5nZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/2417fd6a3c/Spellslinger.png","gem":{}} +{"name":"영혼 공물","refName":"Spirit Offering","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGlyaXRPZmZlcmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/3ba85cdc49/SpiritOffering.png","gem":{}} +{"name":"분할 화살","refName":"Split Arrow","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGxpdEFycm93IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3107527c8d/SplitArrow.png","gem":{}} +{"name":"분할의 분할 화살","refName":"Split Arrow of Splitting","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGxpdEFycm93IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3107527c8d/SplitArrow.png","gem":{"transfigured":true,"normalVariant":"Split Arrow"}} +{"name":"강철 분할","refName":"Splitting Steel","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JbXBhY3RpbmdTdGVlbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/67462b2579/ImpactingSteelGem.png","gem":{}} +{"name":"탄약의 강철 분할","refName":"Splitting Steel of Ammunition","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JbXBhY3RpbmdTdGVlbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/67462b2579/ImpactingSteelGem.png","gem":{"transfigured":true,"normalVariant":"Splitting Steel"}} +{"name":"정전기 타격","refName":"Static Strike","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdGF0aWNHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6eee72093c/StaticGem.png","gem":{}} +{"name":"강철피부","refName":"Steelskin","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9RdWlja0d1YXJkR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/7dcb756463/QuickGuardGem.png","gem":{}} +{"name":"폭풍의 낙인","refName":"Storm Brand","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db25kdWl0U2lnaWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8f4eb9be01/ConduitSigil.png","gem":{}} +{"name":"우유부단의 폭풍의 낙인","refName":"Storm Brand of Indecision","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db25kdWl0U2lnaWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8f4eb9be01/ConduitSigil.png","gem":{"transfigured":true,"normalVariant":"Storm Brand"}} +{"name":"폭풍 점사","refName":"Storm Burst","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdG9ybUJ1cnN0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6ce2215dff/StormBurst.png","gem":{}} +{"name":"폭풍 부름","refName":"Storm Call","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdG9ybWNhbGwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/eb3168564d/Stormcall.png","gem":{}} +{"name":"폭풍우","refName":"Storm Rain","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QcmlzbWF0aWNSYWluIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/576ba4b47b/PrismaticRain.png","gem":{}} +{"name":"도관의 폭풍우","refName":"Storm Rain of the Conduit","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QcmlzbWF0aWNSYWluIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/576ba4b47b/PrismaticRain.png","gem":{"transfigured":true,"normalVariant":"Storm Rain"}} +{"name":"울타리의 폭풍우","refName":"Storm Rain of the Fence","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QcmlzbWF0aWNSYWluIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/576ba4b47b/PrismaticRain.png","gem":{"transfigured":true,"normalVariant":"Storm Rain"}} +{"name":"폭풍 연대","refName":"Stormbind","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdG9ybWJpbmRTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/30ae7dcd24/StormbindSkillGem.png","gem":{}} +{"name":"순간이동의 폭풍 연대","refName":"Stormbind of Teleportation","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdG9ybWJpbmRTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/30ae7dcd24/StormbindSkillGem.png","gem":{"transfigured":true,"normalVariant":"Stormbind"}} +{"name":"태풍 파열 지뢰","refName":"Stormblast Mine","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdFeHBsb3Npb25NaW5lU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4722363740/LightningExplosionMineSkillGem.png","gem":{}} +{"name":"기절 보조","refName":"Stun Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N0dW4iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/38371dbefc/Stun.png","gem":{}} +{"name":"부패 골렘 소환","refName":"Summon Carrion Golem","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25DYXJyaW9uR29sZW1HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/01dce8b537/SummonCarrionGolemGem.png","gem":{}} +{"name":"군단의 부패 골렘 소환","refName":"Summon Carrion Golem of Hordes","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25DYXJyaW9uR29sZW1HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/01dce8b537/SummonCarrionGolemGem.png","gem":{"transfigured":true,"normalVariant":"Summon Carrion Golem"}} +{"name":"청소부의 부패 골렘 소환","refName":"Summon Carrion Golem of Scavenging","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25DYXJyaW9uR29sZW1HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/01dce8b537/SummonCarrionGolemGem.png","gem":{"transfigured":true,"normalVariant":"Summon Carrion Golem"}} +{"name":"카오스 골렘 소환","refName":"Summon Chaos Golem","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFvc0VsZW1lbnRhbFN1bW1vbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e735374a53/ChaosElementalSummon.png","gem":{}} +{"name":"군단의 카오스 골렘 소환","refName":"Summon Chaos Golem of Hordes","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFvc0VsZW1lbnRhbFN1bW1vbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e735374a53/ChaosElementalSummon.png","gem":{"transfigured":true,"normalVariant":"Summon Chaos Golem"}} +{"name":"마엘스트롬의 카오스 골렘 소환","refName":"Summon Chaos Golem of the Maelström","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFvc0VsZW1lbnRhbFN1bW1vbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e735374a53/ChaosElementalSummon.png","gem":{"transfigured":true,"normalVariant":"Summon Chaos Golem"}} +{"name":"화염 골렘 소환","refName":"Summon Flame Golem","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlRWxlbWVudGFsU3VtbW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/cca9edd8f9/FireElementalSummon.png","gem":{}} +{"name":"군단의 화염 골렘 소환","refName":"Summon Flame Golem of Hordes","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlRWxlbWVudGFsU3VtbW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/cca9edd8f9/FireElementalSummon.png","gem":{"transfigured":true,"normalVariant":"Summon Flame Golem"}} +{"name":"유성의 화염 골렘 소환","refName":"Summon Flame Golem of the Meteor","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlRWxlbWVudGFsU3VtbW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/cca9edd8f9/FireElementalSummon.png","gem":{"transfigured":true,"normalVariant":"Summon Flame Golem"}} +{"name":"신성한 유물 소환","refName":"Summon Holy Relic","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ib2x5UmVsaWMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b624fd0cda/HolyRelic.png","gem":{}} +{"name":"신념의 신성한 유물 소환","refName":"Summon Holy Relic of Conviction","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ib2x5UmVsaWMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b624fd0cda/HolyRelic.png","gem":{"transfigured":true,"normalVariant":"Summon Holy Relic"}} +{"name":"얼음 골렘 소환","refName":"Summon Ice Golem","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VFbGVtZW50YWxTdW1tb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1b7a06245a/IceElementalSummon.png","gem":{}} +{"name":"군단의 얼음 골렘 소환","refName":"Summon Ice Golem of Hordes","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VFbGVtZW50YWxTdW1tb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1b7a06245a/IceElementalSummon.png","gem":{"transfigured":true,"normalVariant":"Summon Ice Golem"}} +{"name":"산산조각의 얼음 골렘 소환","refName":"Summon Ice Golem of Shattering","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VFbGVtZW50YWxTdW1tb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1b7a06245a/IceElementalSummon.png","gem":{"transfigured":true,"normalVariant":"Summon Ice Golem"}} +{"name":"번개 골렘 소환","refName":"Summon Lightning Golem","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdHb2xlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5dbb993d49/LightningGolem.png","gem":{}} +{"name":"군단의 번개 골렘 소환","refName":"Summon Lightning Golem of Hordes","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdHb2xlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5dbb993d49/LightningGolem.png","gem":{"transfigured":true,"normalVariant":"Summon Lightning Golem"}} +{"name":"환영 소환 보조","refName":"Summon Phantasm Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1bW1vblBoYW50YXNtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/beef708237/SummonPhantasm.png","gem":{}} +{"name":"격노의 유령 소환","refName":"Summon Raging Spirit","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25FbGVtZW50YWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/65322c4405/SummonElemental.png","gem":{}} +{"name":"극악무도의 격노의 유령 소환","refName":"Summon Raging Spirit of Enormity","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25FbGVtZW50YWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/65322c4405/SummonElemental.png","gem":{"transfigured":true,"normalVariant":"Summon Raging Spirit"}} +{"name":"수확자 소환","refName":"Summon Reaper","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25SZWFwZXJTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/24f147e638/SummonReaperSkillGem.png","gem":{}} +{"name":"적출의 수확자 소환","refName":"Summon Reaper of Eviscerating","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25SZWFwZXJTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/24f147e638/SummonReaperSkillGem.png","gem":{"transfigured":true,"normalVariant":"Summon Reaper"}} +{"name":"원령의 수확자 소환","refName":"Summon Reaper of Revenants","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25SZWFwZXJTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/24f147e638/SummonReaperSkillGem.png","gem":{"transfigured":true,"normalVariant":"Summon Reaper"}} +{"name":"해골 소환","refName":"Summon Skeletons","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25Ta2VsZXRvbnMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d686d7dd8a/SummonSkeletons.png","gem":{}} +{"name":"궁수의 해골 소환","refName":"Summon Skeletons of Archers","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25Ta2VsZXRvbnMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d686d7dd8a/SummonSkeletons.png","gem":{"transfigured":true,"normalVariant":"Summon Skeletons"}} +{"name":"마법사의 해골 소환","refName":"Summon Skeletons of Mages","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25Ta2VsZXRvbnMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d686d7dd8a/SummonSkeletons.png","gem":{"transfigured":true,"normalVariant":"Summon Skeletons"}} +{"name":"원격 기폭 장치 소환","refName":"Summon Skitterbots","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ta2l0dGVyYm90U2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d6f39b50a5/SkitterbotSkillGem.png","gem":{}} +{"name":"돌 골렘 소환","refName":"Summon Stone Golem","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Sb2NrR29sZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6a504c60d3/RockGolem.png","gem":{}} +{"name":"군단의 돌 골렘 소환","refName":"Summon Stone Golem of Hordes","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Sb2NrR29sZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6a504c60d3/RockGolem.png","gem":{"transfigured":true,"normalVariant":"Summon Stone Golem"}} +{"name":"방비의 돌 골렘 소환","refName":"Summon Stone Golem of Safeguarding","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Sb2NrR29sZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6a504c60d3/RockGolem.png","gem":{"transfigured":true,"normalVariant":"Summon Stone Golem"}} +{"name":"산산조각","refName":"Sunder","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaG9ja3dhdmVTbGFtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6e2b0e71d5/ShockwaveSlam.png","gem":{}} +{"name":"대지 분쇄의 산산조각","refName":"Sunder of Earthbreaking","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaG9ja3dhdmVTbGFtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6e2b0e71d5/ShockwaveSlam.png","gem":{"transfigured":true,"normalVariant":"Sunder"}} +{"name":"휩쓸기","refName":"Sweep","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Td2VlcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/dcad278e28/Sweep.png","gem":{}} +{"name":"고통 격화 보조","refName":"Swift Affliction Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRSYXBpZERlY2F5R2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/bed2b2a224/SupportRapidDecayGem.png","gem":{}} +{"name":"재빠른 조립 보조","refName":"Swift Assembly Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1RyYXBNaW5lU3VwcG9ydEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/809e461b30/TrapMineSupportGem.png","gem":{}} +{"name":"재빠른 낙인 보조","refName":"Swiftbrand Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N3aWZ0YnJhbmRTdXBwb3J0R2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/18dcd7a075/SwiftbrandSupportGem.png","gem":{}} +{"name":"검의 폭풍","refName":"Swordstorm","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzMwLDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9XZWFwb25TdG9ybVNraWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/be6f64c9c5/WeaponStormSkill.png","gem":{}} +{"name":"지층 강타","refName":"Tectonic Slam","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9UZWN0b25pY1NsYW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f19a11009f/TectonicSlam.png","gem":{}} +{"name":"대재앙의 지층 강타","refName":"Tectonic Slam of Cataclysm","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9UZWN0b25pY1NsYW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f19a11009f/TectonicSlam.png","gem":{"transfigured":true,"normalVariant":"Tectonic Slam"}} +{"name":"폭풍의 방패","refName":"Tempest Shield","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9UZW1wZXN0U2hpZWxkIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/bfe0750738/TempestShield.png","gem":{}} +{"name":"시간의 사슬","refName":"Temporal Chains","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9UZW1wb3JhbENoYWlucyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9746170624/TemporalChains.png","gem":{}} +{"name":"시간의 균열","refName":"Temporal Rift","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaHJvbm9tYW5jZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9977b27b7c/Chronomancer.png","gem":{}} +{"name":"회오리","refName":"Tornado","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ub3JuYWRvR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6ff8d3b903/TornadoGem.png","gem":{}} +{"name":"격동하는 원소의 회오리","refName":"Tornado of Elemental Turbulence","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ub3JuYWRvR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6ff8d3b903/TornadoGem.png","gem":{"transfigured":true,"normalVariant":"Tornado"}} +{"name":"회오리 사격","refName":"Tornado Shot","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ub3JuYWRvU2hvdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7299d3edf8/TornadoShot.png","gem":{}} +{"name":"구름폭발의 회오리 사격","refName":"Tornado Shot of Cloudburst","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ub3JuYWRvU2hvdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7299d3edf8/TornadoShot.png","gem":{"transfigured":true,"normalVariant":"Tornado Shot"}} +{"name":"맹독성 비","refName":"Toxic Rain","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlub2ZTcG9yZXNHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/968913d716/RainofSporesGem.png","gem":{}} +{"name":"포자 폭발의 맹독성 비","refName":"Toxic Rain of Sporeburst","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlub2ZTcG9yZXNHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/968913d716/RainofSporesGem.png","gem":{"transfigured":true,"normalVariant":"Toxic Rain"}} +{"name":"고사의 맹독성 비","refName":"Toxic Rain of Withering","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlub2ZTcG9yZXNHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/968913d716/RainofSporesGem.png","gem":{"transfigured":true,"normalVariant":"Toxic Rain"}} +{"name":"덫 및 지뢰 피해 보조","refName":"Trap and Mine Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1RyYXBBbmRNaW5lRGFtYWdlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/83b5eac9be/TrapAndMineDamage.png","gem":{}} +{"name":"덫 보조","refName":"Trap Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1RyYXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8893adb50f/Trap.png","gem":{}} +{"name":"외상 보조","refName":"Trauma Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1RyYXVtYSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f1642bf8e3/Trauma.png","gem":{}} +{"name":"삼위일체 보조","refName":"Trinity Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1RyaW5pdHlTdXBwb3J0R2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f547899752/TrinitySupportGem.png","gem":{}} +{"name":"벌어지는 상처 보조","refName":"Unbound Ailments Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1VuYm91bmRBaWxtZW50cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a5ce74c4dc/UnboundAilments.png","gem":{}} +{"name":"발굴","refName":"Unearth","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Cb25lTGFuY2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ba9f4da647/BoneLance.png","gem":{}} +{"name":"촉발 보조","refName":"Unleash Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1VubGVhc2hTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9c92c88f3e/UnleashSupport.png","gem":{}} +{"name":"긴급 명령 보조","refName":"Urgent Orders Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1VyZ2VudE9yZGVyc1N1cHBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/dfa6ae426c/UrgentOrdersSupport.png","gem":{}} +{"name":"바알 면죄","refName":"Vaal Absolution","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BYnNvbHV0aW9uQmxhc3RHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/11111dec89/AbsolutionBlastGem.png","gem":{"vaal":true}} +{"name":"바알 무기 기동","refName":"Vaal Animate Weapon","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BbmltYXRlV2VhcG9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/739caf7508/AnimateWeapon.png","gem":{"vaal":true}} +{"name":"바알 연쇄 번개","refName":"Vaal Arc","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BcmMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3778fcf505/Arc.png","gem":{"vaal":true}} +{"name":"바알 한기의 방어구","refName":"Vaal Arctic Armour","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTaGllbGQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/22044364a7/IceShield.png","gem":{"vaal":true}} +{"name":"바알 질풍의 칼날","refName":"Vaal Blade Flurry","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFyZ2VkQXR0YWNrIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b55acf2e90/ChargedAttack.png","gem":{"vaal":true}} +{"name":"바알 칼날 소용돌이","refName":"Vaal Blade Vortex","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGlubmluZ0V0aGVyZWFsQmxhZGVzR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8f7a7d7b81/SpinningEtherealBladesGem.png","gem":{"vaal":true}} +{"name":"바알 황폐","refName":"Vaal Blight","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGlnaHRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/63c4ea3534/BlightGem.png","gem":{"vaal":true}} +{"name":"바알 균열","refName":"Vaal Breach","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9WYWFsR2Vtcy9WYWFsQnJlYWNoUG9ydGFsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/99b58a9a68/VaalBreachPortal.png","gem":{}} +{"name":"바알 불타는 화살","refName":"Vaal Burning Arrow","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CdXJuaW5nQXJyb3ciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4cc118dd2c/BurningArrow.png","gem":{"vaal":true}} +{"name":"바알 부식성 화살","refName":"Vaal Caustic Arrow","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb2lzb25BcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8aa59b2327/PoisonArrow.png","gem":{"vaal":true}} +{"name":"바알 명상","refName":"Vaal Clarity","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DbGFyaXR5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/30046e480b/Clarity.png","gem":{"vaal":true}} +{"name":"바알 회전베기","refName":"Vaal Cleave","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DbGVhdmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/7d4382b5e9/Cleave.png","gem":{"vaal":true}} +{"name":"바알 한파","refName":"Vaal Cold Snap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db2xkU25hcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/889f6cb1fd/ColdSnap.png","gem":{"vaal":true}} +{"name":"바알 회오리바람","refName":"Vaal Cyclone","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DeWNsb25lIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f97bf2f477/Cyclone.png","gem":{"vaal":true}} +{"name":"바알 시체 폭발","refName":"Vaal Detonate Dead","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZXRvbmF0ZURlYWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/109199fc84/DetonateDead.png","gem":{"vaal":true}} +{"name":"바알 단련","refName":"Vaal Discipline","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXNjaXBsaW5lIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8fb38b53f4/Discipline.png","gem":{"vaal":true}} +{"name":"바알 지배","refName":"Vaal Domination","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb21pbmF0aW5nQmxvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c0a344a783/DominatingBlow.png","gem":{"vaal":true}} +{"name":"바알 이중 타격","refName":"Vaal Double Strike","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb3VibGVTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/408f3e4fa9/DoubleStrike.png","gem":{"vaal":true}} +{"name":"바알 지진","refName":"Vaal Earthquake","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9RdWFrZVNsYW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3a3c0f1c46/QuakeSlam.png","gem":{"vaal":true}} +{"name":"바알 화염구","refName":"Vaal Fireball","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlYmFsbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8f374db219/Fireball.png","gem":{"vaal":true}} +{"name":"바알 화염 폭풍","refName":"Vaal Firestorm","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlc3Rvcm0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/86d85233c1/Firestorm.png","gem":{"vaal":true}} +{"name":"바알 화염파","refName":"Vaal Flameblast","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFyZ2VkQmxhc3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/90adc64f44/ChargedBlast.png","gem":{"vaal":true}} +{"name":"바알 점멸 타격","refName":"Vaal Flicker Strike","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGlja2VyU3RyaWtlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4d16009413/FlickerStrike.png","gem":{"vaal":true}} +{"name":"바알 빙하 망치","refName":"Vaal Glacial Hammer","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HbGFjaWFsSGFtbWVyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ff8c64eae7/GlacialHammer.png","gem":{"vaal":true}} +{"name":"바알 은총","refName":"Vaal Grace","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HcmFjZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e98082048a/Grace.png","gem":{"vaal":true}} +{"name":"바알 대지 강타","refName":"Vaal Ground Slam","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Hcm91bmRzbGFtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/fe4a163a74/Groundslam.png","gem":{"vaal":true}} +{"name":"바알 가속","refName":"Vaal Haste","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IYXN0ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/151b5aa85b/Haste.png","gem":{"vaal":true}} +{"name":"바알 얼음 폭발","refName":"Vaal Ice Nova","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VOb3ZhIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/65f9588dac/IceNova.png","gem":{"vaal":true}} +{"name":"바알 얼음 화살","refName":"Vaal Ice Shot","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTaG90IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6ebe439727/IceShot.png","gem":{"vaal":true}} +{"name":"바알 불의 부정함","refName":"Vaal Impurity of Fire","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlUmVzaXN0QXVyYSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/973e94bf0a/FireResistAura.png","gem":{"vaal":true}} +{"name":"바알 얼음의 부정함","refName":"Vaal Impurity of Ice","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db2xkUmVzaXN0QXVyYSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0ebc7da568/ColdResistAura.png","gem":{"vaal":true}} +{"name":"바알 번개의 부정함","refName":"Vaal Impurity of Lightning","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdSZXNpc3RBdXJhIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4c883997e3/LightningResistAura.png","gem":{"vaal":true}} +{"name":"바알 번개 화살","refName":"Vaal Lightning Arrow","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdBcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f5ad901f20/LightningArrow.png","gem":{"vaal":true}} +{"name":"바알 번개 타격","refName":"Vaal Lightning Strike","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e593a52f90/LightningStrike.png","gem":{"vaal":true}} +{"name":"바알 번개 덫","refName":"Vaal Lightning Trap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdUcmFwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/18365fa604/LightningTrap.png","gem":{"vaal":true}} +{"name":"바알 용암 방패","refName":"Vaal Molten Shell","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Nb2x0ZW5TaGVsbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9d2618a44a/MoltenShell.png","gem":{"vaal":true}} +{"name":"바알 용암 타격","refName":"Vaal Molten Strike","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Nb2x0ZW5TdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3493f9e016/MoltenStrike.png","gem":{"vaal":true}} +{"name":"바알 권능 착취","refName":"Vaal Power Siphon","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb3dlclNpcGhvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8c00738194/PowerSiphon.png","gem":{"vaal":true}} +{"name":"바알 화살비","refName":"Vaal Rain of Arrows","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlub2ZBcnJvd3MiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a7e02c03ad/RainofArrows.png","gem":{"vaal":true}} +{"name":"바알 낫질","refName":"Vaal Reap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZHJlYXBHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a57bea32ba/BloodreapGem.png","gem":{"vaal":true}} +{"name":"바알 약탈","refName":"Vaal Reave","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SZWF2ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/cdfa67890f/Reave.png","gem":{"vaal":true}} +{"name":"바알 회복 토템","refName":"Vaal Rejuvenation Totem","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SZWp1dmluYXRpb25Ub3RlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5dd895cd90/RejuvinationTotem.png","gem":{"vaal":true}} +{"name":"바알 정의의 화염","refName":"Vaal Righteous Fire","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SaWdodGVvdXNGaXJlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/da7c97a11c/RighteousFire.png","gem":{"vaal":true}} +{"name":"바알 징벌","refName":"Vaal Smite","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TbWl0ZUdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7c84ed15fc/SmiteGem.png","gem":{"vaal":true}} +{"name":"바알 전기불꽃","refName":"Vaal Spark","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGFyayIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/60a5c0ff13/Spark.png","gem":{"vaal":true}} +{"name":"바알 환영 무기 투척","refName":"Vaal Spectral Throw","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HaG9zdGx5VGhyb3ciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c3b7611261/GhostlyThrow.png","gem":{"vaal":true}} +{"name":"바알 폭풍 부름","refName":"Vaal Storm Call","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdG9ybWNhbGwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/eb3168564d/Stormcall.png","gem":{"vaal":true}} +{"name":"바알 해골 소환","refName":"Vaal Summon Skeletons","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25Ta2VsZXRvbnMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d686d7dd8a/SummonSkeletons.png","gem":{"vaal":true}} +{"name":"바알 독액 선회","refName":"Vaal Venom Gyre","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TbmFwcGluZ0FkZGVyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d3f9a31aac/SnappingAdder.png","gem":{"vaal":true}} +{"name":"바알 화산 균열","refName":"Vaal Volcanic Fissure","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Wb2xjYW5pY0Zpc3N1cmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b12b9ef422/VolcanicFissureSkillGem.png","gem":{"vaal":true}} +{"name":"흡혈의 연결","refName":"Vampiric Link","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MZWVjaExpbmtHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cb9c98d9f4/LeechLinkGem.png","gem":{}} +{"name":"복수의 함성","refName":"Vengeful Cry","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzMwLDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SZXRhbGlhdGlvblJhZ2VXYXJlY3J5V2FyY3J5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/963303d35a/RetaliationRageWarecryWarcry.png","gem":{}} +{"name":"독액 선회","refName":"Venom Gyre","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TbmFwcGluZ0FkZGVyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d3f9a31aac/SnappingAdder.png","gem":{}} +{"name":"포악한 투사체 보조","refName":"Vicious Projectiles Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1JhbmdlZFBoeXNpY2FsQXR0YWNrRGFtYWdlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ad10efb4f6/RangedPhysicalAttackDamage.png","gem":{}} +{"name":"경계 타격","refName":"Vigilant Strike","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9WaWdpbGFudFN0cmlrZUdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/14cfefd50c/VigilantStrikeGem.png","gem":{}} +{"name":"끔찍한 독소 보조","refName":"Vile Toxins Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1ZpbGVUb3hpbnMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f63c48d4b1/VileToxins.png","gem":{}} +{"name":"맹독 타격","refName":"Viper Strike","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9WaXBlclN0cmlrZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/185f7013c7/ViperStrike.png","gem":{}} +{"name":"큰독사의 맹독 타격","refName":"Viper Strike of the Mamba","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9WaXBlclN0cmlrZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/185f7013c7/ViperStrike.png","gem":{"transfigured":true,"normalVariant":"Viper Strike"}} +{"name":"활력","refName":"Vitality","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9WaXRhbGl0eSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/125dbe04db/Vitality.png","gem":{}} +{"name":"공허 조작 보조","refName":"Void Manipulation Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1ZvaWRNYW5pcHVsYXRpb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d43a79f597/VoidManipulation.png","gem":{}} +{"name":"공허 구체","refName":"Void Sphere","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFja0hvbGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5a522c3871/BlackHole.png","gem":{}} +{"name":"분리의 공허 구체","refName":"Void Sphere of Rending","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFja0hvbGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5a522c3871/BlackHole.png","gem":{"transfigured":true,"normalVariant":"Void Sphere"}} +{"name":"시체 불덩이","refName":"Volatile Dead","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Wb2xhdGlsZURlYWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/75c543dab5/VolatileDead.png","gem":{}} +{"name":"감금의 시체 불덩이","refName":"Volatile Dead of Confinement","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Wb2xhdGlsZURlYWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/75c543dab5/VolatileDead.png","gem":{"transfigured":true,"normalVariant":"Volatile Dead"}} +{"name":"끓어오름의 시체 불덩이","refName":"Volatile Dead of Seething","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Wb2xhdGlsZURlYWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/75c543dab5/VolatileDead.png","gem":{"transfigured":true,"normalVariant":"Volatile Dead"}} +{"name":"일촉즉발 보조","refName":"Volatility Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1ZvbGF0aWxpdHkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/89efd990e3/Volatility.png","gem":{}} +{"name":"화산 균열","refName":"Volcanic Fissure","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Wb2xjYW5pY0Zpc3N1cmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b12b9ef422/VolcanicFissureSkillGem.png","gem":{}} +{"name":"구불거림의 화산 균열","refName":"Volcanic Fissure of Snaking","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Wb2xjYW5pY0Zpc3N1cmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b12b9ef422/VolcanicFissureSkillGem.png","gem":{"transfigured":true,"normalVariant":"Volcanic Fissure"}} +{"name":"사격 공세 보조","refName":"Volley Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1BhcmFsbGVsUHJvamVjdGlsZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/814ab0a18f/ParallelProjectile.png","gem":{}} +{"name":"전도성 격발","refName":"Voltaxic Burst","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Wb2lkYnVyc3RTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ba291fb033/VoidburstSkillGem.png","gem":{}} +{"name":"소용돌이","refName":"Vortex","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdFZvcnRleCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/13869ff5ca/FrostVortex.png","gem":{}} +{"name":"투영의 소용돌이","refName":"Vortex of Projection","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdFZvcnRleCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/13869ff5ca/FrostVortex.png","gem":{"transfigured":true,"normalVariant":"Vortex"}} +{"name":"취약성","refName":"Vulnerability","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9WdWxuZXJhYmlsaXR5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1235ccd6b3/Vulnerability.png","gem":{}} +{"name":"전쟁 깃발","refName":"War Banner","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9XYXJiYW5uZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/bad44cab15/Warbanner.png","gem":{}} +{"name":"전쟁군주의 징표","refName":"Warlord's Mark","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9XYXJsb3Jkc01hcmsiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a51e4dbcb5/WarlordsMark.png","gem":{}} +{"name":"신념의 파도","refName":"Wave of Conviction","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QdXJnZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/773530e679/Purge.png","gem":{}} +{"name":"칼날 선회","refName":"Whirling Blades","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9XaGlybGluZ0JsYWRlcyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c2fc108c55/WhirlingBlades.png","gem":{}} +{"name":"사나운 타격","refName":"Wild Strike","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbGVtZW50YWxTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3d431c517c/ElementalStrike.png","gem":{}} +{"name":"극단의 사나운 타격","refName":"Wild Strike of Extremes","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbGVtZW50YWxTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3d431c517c/ElementalStrike.png","gem":{"transfigured":true,"normalVariant":"Wild Strike"}} +{"name":"겨울 보주","refName":"Winter Orb","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdEZ1cnkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/89ef86a052/FrostFury.png","gem":{}} +{"name":"겨울의 낙인","refName":"Wintertide Brand","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9XaW50ZXJ0aWRlQnJhbmRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/21a236e3c7/WintertideBrandGem.png","gem":{}} +{"name":"위축","refName":"Wither","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9XaXRoZXJHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f4a77cf6bc/WitherGem.png","gem":{}} +{"name":"고사시키는 걸음","refName":"Withering Step","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9XaXRoZXJpbmdTdGVwR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6f949bee1e/WitheringStepGem.png","gem":{}} +{"name":"위축의 손길 보조","refName":"Withering Touch Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1dpdGhlckdlbVN1cHBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/214e5fcb53/WitherGemSupport.png","gem":{}} +{"name":"진노","refName":"Wrath","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9XcmF0aCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6646c27a1b/Wrath.png","gem":{}} +{"name":"열광","refName":"Zealotry","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGVsbERhbWFnZUdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f36b77014f/SpellDamageGem.png","gem":{}} +{"name":"특이한 화석","refName":"Aberrant Fossil","namespace":"ITEM","tradeTag":"aberrant-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvQWJiZXJhbnRGb3NzaWwiLCJzY2FsZSI6MX1d/0ebc664beb/AbberantFossil.png"} +{"name":"흉물 지도","refName":"Abomination Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{}} +{"name":"연마의 기폭제","refName":"Abrasive Catalyst","namespace":"ITEM","tradeTag":"abrasive-catalyst","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL0FicmFzaXZlQ2F0YWx5c3QiLCJzY2FsZSI6MX1d/aca49c3cc0/AbrasiveCatalyst.png"} +{"name":"심연 갑충석","refName":"Abyss Scarab","namespace":"ITEM","tradeTag":"abyss-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJBYnlzcyIsInNjYWxlIjoxfV0/05f3ac3c5c/LesserScarabAbyss.png"} +{"name":"건축물의 심연 갑충석","refName":"Abyss Scarab of Edifice","namespace":"ITEM","tradeTag":"abyss-scarab-of-edifice","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiQWJ5c3MiLCJzY2FsZSI6MX1d/84851bd122/GreaterScarabAbyss.png"} +{"name":"허무의 심연 갑충석","refName":"Abyss Scarab of Emptiness","namespace":"ITEM","tradeTag":"abyss-scarab-of-emptiness","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHROb3JtYWxTY2FyYWJBYnlzcyIsInNjYWxlIjoxfV0/1dbd071787/AltNormalScarabAbyss.png"} +{"name":"군중의 심연 갑충석","refName":"Abyss Scarab of Multitudes","namespace":"ITEM","tradeTag":"abyss-scarab-of-multitudes","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJBYnlzcyIsInNjYWxlIjoxfV0/e28a53e1a0/NormalScarabAbyss.png"} +{"name":"심원한 깊이의 심연 갑충석","refName":"Abyss Scarab of Profound Depth","namespace":"ITEM","tradeTag":"abyss-scarab-of-profound-depth","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRUaWVyNFNjYXJhYkFieXNzIiwic2NhbGUiOjF9XQ/b40fb2422b/AltTier4ScarabAbyss.png"} +{"name":"심연의 도끼","refName":"Abyssal Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNyIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/931ad5cc29/TwoHandAxe7.png","w":2,"h":4} +{"name":"심연의 환영의 오브","refName":"Abyssal Delirium Orb","namespace":"ITEM","tradeTag":"abyssal-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJBYnlzcyIsInNjYWxlIjoxfV0/7434403ff2/DeliriumOrbAbyss.png"} +{"name":"심연의 인큐베이터","refName":"Abyssal Incubator","namespace":"ITEM","tradeTag":"abyssal-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQWJ5c3MiLCJzY2FsZSI6MX1d/f3c36d1eb4/IncubationAbyss.png"} +{"name":"심연의 셉터","refName":"Abyssal Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyOCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/6644b94336/scepter8.png","w":2,"h":3} +{"name":"학술원 지도","refName":"Academy Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{}} +{"name":"가속의 기폭제","refName":"Accelerating Catalyst","namespace":"ITEM","tradeTag":"accelerating-catalyst","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL1NwZWVkTW9kaWZpZXJDYXRhbHlzdCIsInNjYWxlIjoxfV0/6493f34e78/SpeedModifierCatalyst.png"} +{"name":"축적 마법봉","refName":"Accumulator Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9IZWlzdFdhbmQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/4499b00066/HeistWand.png","h":3} +{"name":"산성 암굴 지도","refName":"Acid Caverns Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/vISJftF.jpg"}} +{"name":"에테르 화석","refName":"Aetheric Fossil","namespace":"ITEM","tradeTag":"aetheric-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvQWV0aGVyaWNGb3NzaWwiLCJzY2FsZSI6MX1d/4c874e6fa9/AethericFossil.png"} +{"name":"에테르 바람 장갑","refName":"Aetherwind Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[28,32]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUml0dWFsSW50R2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/b698da54ed/RitualIntGloves.png","w":2,"h":2} +{"name":"마노 목걸이","refName":"Agate Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BZ2F0ZUFtdWxldCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/710a5a8ec4/AgateAmulet.png"} +{"name":"집합 부적","refName":"Aggregator Charm","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQWdncmVnYXRvckNoYXJtTWFnaWNTdG9uZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/18dabef4ca/AggregatorCharmMagicStone.png","w":2,"h":2} +{"name":"알-헤즈민의 문양","refName":"Al-Hezmin's Crest","namespace":"ITEM","tradeTag":"al-hezmins-crest","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9IdW50ZXJGcmFnbWVudCIsInNjYWxlIjoxfV0/3ad268c533/HunterFragment.png"} +{"name":"흰 로아 깃털","refName":"Albino Rhoa Feather","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lSaG9hRmVhdGhlciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a6c81de02d/CurrencyRhoaFeather.png"} +{"name":"오리나무 가시 방패","refName":"Alder Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[209,240],"es":[43,49]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/db9355404e/ShieldDexInt2.png","w":2,"h":2} +{"name":"골목길 지도","refName":"Alleyways Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/m21vNCp.jpg"}} +{"name":"합금 가시 방패","refName":"Alloyed Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[56,70],"es":[13,16]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/36d311e1dc/ShieldDexInt3.png","w":2,"h":2} +{"name":"갈마드는 셉터","refName":"Alternating Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9IZWlzdFNjZXB0cmVFbGVtZW50YWwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/34e5d78ab3/HeistSceptreElemental.png","w":2,"h":3} +{"name":"알바의 기억","refName":"Alva's Memory","namespace":"ITEM","craftable":{"category":"Memory Line"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWVtb3J5TGluZS9BbHZhTWVtb3J5SXRlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5adc01981d/AlvaMemoryItem.png"} +{"name":"호박 목걸이","refName":"Amber Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/abb6811fa1/Amulet3.png"} +{"name":"호박빛 성유","refName":"Amber Oil","namespace":"ITEM","tradeTag":"amber-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9BbWJlck9pbCIsInNjYWxlIjoxfV0/bd5ce1adfa/AmberOil.png"} +{"name":"매복 장화","refName":"Ambush Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[85,95],"es":[18,20]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0c80b843d0/BootsDexInt3.png","w":2,"h":2} +{"name":"매복 미트","refName":"Ambush Mitts","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[81,91],"es":[17,19]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/e18b986979/GlovesDexInt2.png","w":2,"h":2} +{"name":"매복 갑충석","refName":"Ambush Scarab","namespace":"ITEM","tradeTag":"ambush-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJTdHJvbmdib3hlcyIsInNjYWxlIjoxfV0/137917584a/LesserScarabStrongboxes.png"} +{"name":"봉쇄의 매복 갑충석","refName":"Ambush Scarab of Containment","namespace":"ITEM","tradeTag":"ambush-scarab-of-containment","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYlN0cm9uZ2JveGVzIiwic2NhbGUiOjF9XQ/da665a65ee/Tier4ScarabStrongboxes.png"} +{"name":"분별의 매복 갑충석","refName":"Ambush Scarab of Discernment","namespace":"ITEM","tradeTag":"ambush-scarab-of-discernment","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRUaWVyNFNjYXJhYlN0cm9uZ2JveGVzIiwic2NhbGUiOjF9XQ/72722370df/AltTier4ScarabStrongboxes.png"} +{"name":"비밀 공간의 매복 갑충석","refName":"Ambush Scarab of Hidden Compartments","namespace":"ITEM","tradeTag":"ambush-scarab-of-hidden-compartments","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJTdHJvbmdib3hlcyIsInNjYWxlIjoxfV0/2654dacfee/NormalScarabStrongboxes.png"} +{"name":"잠재력의 매복 갑충석","refName":"Ambush Scarab of Potency","namespace":"ITEM","tradeTag":"ambush-scarab-of-potency","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiU3Ryb25nYm94ZXMiLCJzY2FsZSI6MX1d/c2cb4efc18/GreaterScarabStrongboxes.png"} +{"name":"매복자","refName":"Ambusher","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/954af836f7/Dagger4.png","h":3} +{"name":"자수정 플라스크","refName":"Amethyst Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvQW1ldGh5c3QiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/0f93f9050a/Amethyst.png","h":2} +{"name":"자수정 반지","refName":"Amethyst Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQW1ldGh5c3RSaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/804d781735/AmethystRing.png"} +{"name":"왕 알현","refName":"An Audience With The King","namespace":"ITEM","tradeTag":"an-audience-with-the-king","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb0tpbmdFZmZpZ3kiLCJzY2FsZSI6MX1d/55e8fd8f34/VoodooKingEffigy.png"} +{"name":"무질서한 정령의 칼","refName":"Anarchic Spiritblade","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0hlaXN0T25lSGFuZFN3b3JkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/6b56c4c406/HeistOneHandSword.png","w":2,"h":3} +{"name":"혼란 갑충석","refName":"Anarchy Scarab","namespace":"ITEM","tradeTag":"anarchy-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJBbmFyY2h5Iiwic2NhbGUiOjF9XQ/73d1ee9b23/LesserScarabAnarchy.png"} +{"name":"비대화의 혼란 갑충석","refName":"Anarchy Scarab of Gigantification","namespace":"ITEM","tradeTag":"anarchy-scarab-of-gigantification","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJBbmFyY2h5Iiwic2NhbGUiOjF9XQ/d391e90e68/NormalScarabAnarchy.png"} +{"name":"협력의 혼란 갑충석","refName":"Anarchy Scarab of Partnership","namespace":"ITEM","tradeTag":"anarchy-scarab-of-partnership","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiQW5hcmNoeSIsInNjYWxlIjoxfV0/4697e57871/GreaterScarabAnarchy.png"} +{"name":"선대의 곤봉","refName":"Ancestral Club","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2UyIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/75d926bb65/OneHandMace2.png","h":3} +{"name":"고대 도시 지도","refName":"Ancient City Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/MThKML2.jpg"}} +{"name":"고대의 건틀릿","refName":"Ancient Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[154,173]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyMyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f5896830bf/GlovesStr3.png","w":2,"h":2} +{"name":"고대 각반","refName":"Ancient Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[151,174]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/56efa25c50/BootsStr3.png","w":2,"h":2} +{"name":"고대 가면","refName":"Ancient Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[308,355],"es":[62,71]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDEwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/62018602df/HelmetDexInt10.png","w":2,"h":2} +{"name":"고대의 오브","refName":"Ancient Orb","namespace":"ITEM","tradeTag":"ancient-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jaWVudE9yYiIsInNjYWxlIjoxfV0/83015d0dc9/AncientOrb.png"} +{"name":"고대의 성유물 보관실 열쇠","refName":"Ancient Reliquary Key","namespace":"ITEM","tradeTag":"ancient-reliquary-key","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYXVsdE1hcCIsInNjYWxlIjoxfV0/e1342052dd/VaultMap.png"} +{"name":"고대의 파편","refName":"Ancient Shard","namespace":"ITEM","tradeTag":"ancient-shard","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jaWVudFNoYXJkIiwic2NhbGUiOjF9XQ/3695589639/AncientShard.png"} +{"name":"고대의 영혼 방패","refName":"Ancient Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[38,45]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/2fcc8b522c/ShieldInt4.png","w":2,"h":2} +{"name":"고대의 검","refName":"Ancient Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDYiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/c12083d6b6/OneHandSword6.png","w":2,"h":3} +{"name":"천사의 연모양 방패","refName":"Angelic Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[124,142],"es":[25,29]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/92beb951d5/ShieldStrInt5.png","w":2,"h":3} +{"name":"소멸의 파편","refName":"Annulment Shard","namespace":"ITEM","tradeTag":"annulment-shard","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5udWxsU2hhcmQiLCJzY2FsZSI6MX1d/1cf9962d97/AnnullShard.png"} +{"name":"앤티크 건틀릿","refName":"Antique Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[129,154]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyMiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/557280e2c8/GlovesStr2.png","w":2,"h":2} +{"name":"앤티크 각반","refName":"Antique Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[122,144]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c55db774a6/BootsStr2.png","w":2,"h":2} +{"name":"앤티크 레이피어","refName":"Antique Rapier","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjYiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/f9bc0a5aa1/Rapier6.png","h":4} +{"name":"정점의 가로날도끼","refName":"Apex Cleaver","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9IZWlzdFR3b0hhbmRBeGUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/4aef1881cc/HeistTwoHandAxe.png","w":2,"h":4} +{"name":"정점 레이피어","refName":"Apex Rapier","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjgiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/1f11ed5e87/Rapier8.png","h":4} +{"name":"약제상의 장갑","refName":"Apothecary's Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[108,124],"es":[29,33]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQ2hlbWlzdEdsb3ZlcyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/b6fad295a2/ChemistGloves.png","w":2,"h":2} +{"name":"수습생 장갑","refName":"Apprentice Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[132,152]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUml0dWFsRGV4R2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/2785fe1c37/RitualDexGloves.png","w":2,"h":2} +{"name":"아쿠아마린 플라스크","refName":"Aquamarine Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvYXF1YW1hcmluZSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/b48851db23/aquamarine.png","h":2} +{"name":"거미류 둥지 지도","refName":"Arachnid Nest Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/Ljh7mDh.jpg"}} +{"name":"거미류 무덤 지도","refName":"Arachnid Tomb Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/1IAVUXr.jpg"}} +{"name":"상점가 지도","refName":"Arcade Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/mTl4tTm.jpg"}} +{"name":"비전의 법의","refName":"Arcane Vestment","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[196,225]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9ea39de510/BodyInt1C.png","w":2,"h":3} +{"name":"신비학자의 장갑","refName":"Arcanist Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[45,52]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/abe163b992/GlovesInt3.png","w":2,"h":2} +{"name":"신비학자의 슬리퍼","refName":"Arcanist Slippers","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[47,55]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/036cf97e61/BootsInt3.png","w":2,"h":2} +{"name":"대악마 왕관","refName":"Archdemon Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[185,212],"es":[38,43]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01hc2tDcm93biIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/dbad72643e/MaskCrown.png","w":2,"h":2} +{"name":"서고 성유물 보관실 열쇠","refName":"Archive Reliquary Key","namespace":"ITEM","tradeTag":"archive-reliquary-key","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TZWFyaW5nRXhhcmNoRm9pbCIsInNjYWxlIjoxfV0/76bce43f6c/SearingExarchFoil.png"} +{"name":"집정관의 연모양 방패","refName":"Archon Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[156,179],"es":[32,37]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/92beb951d5/ShieldStrInt5.png","w":2,"h":3} +{"name":"집정관의 연모양 방패 조각","refName":"Archon Kite Shield Piece","namespace":"ITEM","craftable":{"category":"Unique Fragment","uniqueOnly":true},"icon":"","w":1,"h":2} +{"name":"투기장 지도","refName":"Arena Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/EaTICR6.jpg"}} +{"name":"투기장 판금 갑옷","refName":"Arena Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[324,389]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/429eee131d/BodyStr2C.png","w":2,"h":3} +{"name":"메마른 호수 지도","refName":"Arid Lake Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/9gm7OPL.jpg"}} +{"name":"전투용 도끼","refName":"Arming Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/01f0e16494/OneHandAxe6.png","w":2,"h":3} +{"name":"방어구 장인의 고철","refName":"Armourer's Scrap","namespace":"ITEM","tradeTag":"scrap","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lBcm1vdXJRdWFsaXR5Iiwic2NhbGUiOjF9XQ/fc4e26afbc/CurrencyArmourQuality.png"} +{"name":"갑옷제작자의 환영의 오브","refName":"Armoursmith's Delirium Orb","namespace":"ITEM","tradeTag":"armoursmiths-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJBcm1vdXIiLCJzY2FsZSI6MX1d/c00fa9e1a3/DeliriumOrbArmour.png"} +{"name":"갑주 창고 지도","refName":"Armoury Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/d5Y7MBu.jpg"}} +{"name":"병기창 지도","refName":"Arsenal Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/5iGxpEn.jpg"}} +{"name":"포대 화살통","refName":"Artillery Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9DaGlzZWxRdWl2ZXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e316e63433/ChiselQuiver.png","w":2,"h":3} +{"name":"재껍질 팅크","refName":"Ashbark Tincture","namespace":"ITEM","craftable":{"category":"Tincture"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL0lnbml0ZVNhcCIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/deba37a1a1/IgniteSap.png","h":2} +{"name":"잿빛 숲 지도","refName":"Ashen Wood Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/kHvVFYI.jpg"}} +{"name":"재비늘 부적","refName":"Ashscale Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbldoaXRlOCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/2554d58070/TalismanWhite8.png"} +{"name":"암살자 활","refName":"Assassin Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/2c90c93faf/Bow5.png","w":2,"h":4} +{"name":"암살자의 장화","refName":"Assassin's Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[121,139],"es":[25,28]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0c80b843d0/BootsDexInt3.png","w":2,"h":2} +{"name":"암살자의 의복","refName":"Assassin's Garb","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[737,811]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8f1d1cfaa9/BodyDex2C.png","w":2,"h":3} +{"name":"암살자의 미트","refName":"Assassin's Mitts","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[104,123],"es":[21,25]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/e18b986979/GlovesDexInt2.png","w":2,"h":2} +{"name":"조립 마법봉","refName":"Assembler Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9IZWlzdFdhbmQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/4499b00066/HeistWand.png","h":3} +{"name":"복사뼈","refName":"Astragali","namespace":"ITEM","tradeTag":"astragali","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXhwZWRpdGlvbi9HYW1ibGVyUmVmcmVzaEN1cnJlbmN5Iiwic2NhbGUiOjF9XQ/ff5640db4c/GamblerRefreshCurrency.png"} +{"name":"우주의 가죽 갑옷","refName":"Astral Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[1037,1193]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4M0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e30de2c7a6/BodyDex3C.png","w":2,"h":3} +{"name":"우주의 판금 갑옷","refName":"Astral Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[711,782]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/94a3d5d98e/BodyStr1C.png","w":2,"h":3} +{"name":"관측기 목걸이","refName":"Astrolabe Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9IZWlzdEFtdWxldDEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MSwiZWxkZXIiOnRydWUsInNoYXBlciI6dHJ1ZX1d/8dcc0d5883/HeistAmulet1.png"} +{"name":"산호섬 지도","refName":"Atoll Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/ynKNdxR.jpg"}} +{"name":"속죄 가면","refName":"Atonement Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[122,140],"ev":[122,140]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleFIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f63493ca95/HelmetStrDexR.png","w":2,"h":2} +{"name":"금빛 철퇴","refName":"Auric Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U3IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/84402507d1/OneHandMace7.png","w":2,"h":3} +{"name":"쇠사슬 투구","refName":"Aventail Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[101,119],"es":[21,25]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/6ec3ce7dae/HelmetStrInt5.png","w":2,"h":2} +{"name":"쌍둥이 새 부적","refName":"Avian Twins Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbkJsYWNrMiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/51fd60eedf/TalismanBlack2.png"} +{"name":"각성자의 오브","refName":"Awakener's Orb","namespace":"ITEM","tradeTag":"awakeners-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVHJhbnNmZXJPcmIiLCJzY2FsZSI6MX1d/f3b1c1566f/TransferOrb.png"} +{"name":"각성의 조각","refName":"Awakening Fragment","namespace":"ITEM","tradeTag":"awakening-fragment","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyQm9zc0tleVNpcnVzIiwic2NhbGUiOjF9XQ/094681ee85/UberBossKeySirus.png"} +{"name":"송곳","refName":"Awl","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ac6e7ab61d/Claw3.png","w":2,"h":2} +{"name":"담청빛 성유","refName":"Azure Oil","namespace":"ITEM","tradeTag":"azure-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9BenVyZU9pbCIsInNjYWxlIjoxfV0/a68235e8e8/AzureOil.png"} +{"name":"남동석 섬광가루","refName":"Azurite Flashpowder","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQXp1cml0ZUZsYXNocG93ZGVyIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/b8addc416a/AzuriteFlashpowder.png","w":2,"h":2} +{"name":"추방의 칼","refName":"Banishing Blade","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL0hlaXN0VHdvSGFuZFN3b3JkIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/9757ea88b2/HeistTwoHandSword.png","w":2,"h":4} +{"name":"바란의 문양","refName":"Baran's Crest","namespace":"ITEM","tradeTag":"barans-crest","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9DcnVzYWRlckZyYWdtZW50Iiwic2NhbGUiOjF9XQ/3e2fecf3bc/CrusaderFragment.png"} +{"name":"가시 돋친 곤봉","refName":"Barbed Club","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2UzIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/a3a1dace2a/OneHandMace3.png","h":3} +{"name":"철갑 투구","refName":"Barbute Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[92,115]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/38b7aedad1/HelmetStr3.png","w":2,"h":2} +{"name":"바로크 원형 방패","refName":"Baroque Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[122,140],"ev":[122,140]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/b81ab44241/ShieldStrDex5.png","w":2,"h":3} +{"name":"고분 지도","refName":"Barrows Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/SwZdc6q.jpg"}} +{"name":"현무암 플라스크","refName":"Basalt Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3Mvc3RvbmUiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/00261d09db/stone.png","h":2} +{"name":"베이스라드","refName":"Baselard","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/936e00e3e6/OneHandSword4.png","w":2,"h":3} +{"name":"일반 금속 발 보호대","refName":"Basemetal Treads","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[68,78]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SaXR1YWxTdHJCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/fa0ce420ed/RitualStrBoots.png","w":2,"h":2} +{"name":"기본 변장 도구","refName":"Basic Disguise Kit","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmFzaWNEaXNndWlzZUtpdCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7be5d4947a/BasicDisguiseKit.png","w":2,"h":2} +{"name":"교회당 지도","refName":"Basilica Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/G6ySvIu.jpg"}} +{"name":"손보호구 레이피어","refName":"Basket Rapier","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjQiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/dc28604809/Rapier4.png","h":4} +{"name":"바스타드","refName":"Bastard Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/28f44a7a0c/TwoHandSword3.png","w":2,"h":4} +{"name":"닳은 펜싱 검","refName":"Battered Foil","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjMiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/11f4a8b0d0/Rapier3.png","h":4} +{"name":"닳은 헬름","refName":"Battered Helm","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[13,18],"ev":[13,18]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/00af4cd199/HelmetStrDex1.png","w":2,"h":2} +{"name":"충전 지팡이","refName":"Battery Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGVpc3RTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/5e852184f5/HeistStaff.png","w":2,"h":4} +{"name":"전투용 버클러","refName":"Battle Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[287,330]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5a38d58259/ShieldDex5.png","w":2,"h":2} +{"name":"전투용 망치","refName":"Battle Hammer","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U1IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/7a42346f2b/OneHandMace5.png","w":2,"h":3} +{"name":"전투용 라멜라","refName":"Battle Lamellar","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[297,341],"ev":[297,341]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyNEEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/7e1c29aacf/BodyStr4A.png","w":2,"h":3} +{"name":"전투용 판금 갑옷","refName":"Battle Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[412,474]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/c62bd1159e/BodyStr2B.png","w":2,"h":3} +{"name":"전투용 검","refName":"Battle Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/38536bcafb/OneHandSword5.png","w":2,"h":3} +{"name":"장터 지도","refName":"Bazaar Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/bo5223u.jpg"}} +{"name":"해변 지도","refName":"Beach Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/qZNQGdD.jpg"}} +{"name":"거대한 철퇴","refName":"Behemoth Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U5IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f2a493ef7a/OneHandMace9.png","w":2,"h":3} +{"name":"종탑 지도","refName":"Belfry Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/7zjdJvN.jpg"}} +{"name":"야수의 오브","refName":"Bestiary Orb","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJFbXB0eSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/023527ca4e/BestiaryOrbEmpty.png"} +{"name":"야수 도감 갑충석","refName":"Bestiary Scarab","namespace":"ITEM","tradeTag":"bestiary-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJCZWFzdHMiLCJzY2FsZSI6MX1d/a13711c8ed/LesserScarabBeasts.png"} +{"name":"복제의 야수 도감 갑충석","refName":"Bestiary Scarab of Duplicating","namespace":"ITEM","tradeTag":"bestiary-scarab-of-duplicating","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiQmVhc3RzIiwic2NhbGUiOjF9XQ/09caa391c6/GreaterScarabBeasts.png"} +{"name":"떼의 야수 도감 갑충석","refName":"Bestiary Scarab of the Herd","namespace":"ITEM","tradeTag":"bestiary-scarab-of-the-herd","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJCZWFzdHMiLCJzY2FsZSI6MX1d/0d5c9d2d30/NormalScarabBeasts.png"} +{"name":"그늘진 까마귀의 야수 도감 갑충석","refName":"Bestiary Scarab of the Shadowed Crow","namespace":"ITEM","tradeTag":"bestiary-scarab-of-the-shadowed-crow","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkJlYXN0cyIsInNjYWxlIjoxfV0/c8a03d1108/Tier4ScarabBeasts.png"} +{"name":"배신 갑충석","refName":"Betrayal Scarab","namespace":"ITEM","tradeTag":"betrayal-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJCZXRyYXlhbCIsInNjYWxlIjoxfV0/d53970be47/LesserScarabBetrayal.png"} +{"name":"지능의 배신 갑충석","refName":"Betrayal Scarab of Intelligence","namespace":"ITEM","tradeTag":"betrayal-scarab-of-intelligence","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJCZXRyYXlhbCIsInNjYWxlIjoxfV0/3e4a843098/NormalScarabBetrayal.png"} +{"name":"영속화의 배신 갑충석","refName":"Betrayal Scarab of Perpetuation","namespace":"ITEM","tradeTag":"betrayal-scarab-of-perpetuation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkJldHJheWFsIiwic2NhbGUiOjF9XQ/4290457e94/Tier4ScarabBetrayal.png"} +{"name":"보강의 배신 갑충석","refName":"Betrayal Scarab of Reinforcements","namespace":"ITEM","tradeTag":"betrayal-scarab-of-reinforcements","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiQmV0cmF5YWwiLCJzY2FsZSI6MX1d/7dd831f857/GreaterScarabBetrayal.png"} +{"name":"이계 갑충석","refName":"Beyond Scarab","namespace":"ITEM","tradeTag":"beyond-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJCZXlvbmQiLCJzY2FsZSI6MX1d/28f0c03cf7/LesserScarabBeyond.png"} +{"name":"타락의 이계 갑충석","refName":"Beyond Scarab of Corruption","namespace":"ITEM","tradeTag":"beyond-scarab-of-corruption","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiQmV5b25kIiwic2NhbGUiOjF9XQ/a7736e43ae/GreaterScarabBeyond.png"} +{"name":"혈우병의 이계 갑충석","refName":"Beyond Scarab of Haemophilia","namespace":"ITEM","tradeTag":"beyond-scarab-of-haemophilia","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJCZXlvbmQiLCJzY2FsZSI6MX1d/6d3487e108/NormalScarabBeyond.png"} +{"name":"재기의 이계 갑충석","refName":"Beyond Scarab of Resurgence","namespace":"ITEM","tradeTag":"beyond-scarab-of-resurgence","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRHcmVhdGVyU2NhcmFiQmV5b25kIiwic2NhbGUiOjF9XQ/4e3cafe44b/AltGreaterScarabBeyond.png"} +{"name":"침략의 이계 갑충석","refName":"Beyond Scarab of the Invasion","namespace":"ITEM","tradeTag":"beyond-scarab-of-the-invasion","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkJleW9uZCIsInNjYWxlIjoxfV0/a1d0b3e27b/Tier4ScarabBeyond.png"} +{"name":"속박의 파편","refName":"Binding Shard","namespace":"ITEM","tradeTag":"binding-shard","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmluZGluZ1NoYXJkIiwic2NhbGUiOjF9XQ/569d09ac86/BindingShard.png"} +{"name":"비스무트 플라스크","refName":"Bismuth Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvYmlzbXV0aCIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MSwiZmkiOnRydWV9XQ/d8294b3822/bismuth.png","h":2} +{"name":"검은 턱 부적","refName":"Black Maw Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbldoaXRlMyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a0b3d42186/TalismanWhite3.png"} +{"name":"검은빛 성유","refName":"Black Oil","namespace":"ITEM","tradeTag":"black-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9CbGFja09pbCIsInNjYWxlIjoxfV0/ce6830b309/BlackOil.png"} +{"name":"대장장이의 환영의 오브","refName":"Blacksmith's Delirium Orb","namespace":"ITEM","tradeTag":"blacksmiths-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJXZWFwb25zIiwic2NhbGUiOjF9XQ/eaa6f85f6c/DeliriumOrbWeapons.png"} +{"name":"대장장이의 숫돌","refName":"Blacksmith's Whetstone","namespace":"ITEM","tradeTag":"whetstone","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lXZWFwb25RdWFsaXR5Iiwic2NhbGUiOjF9XQ/c9cd72719e/CurrencyWeaponQuality.png"} +{"name":"톱날 철퇴","refName":"Bladed Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U2IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/a2a18837d4/OneHandMace6.png","w":2,"h":3} +{"name":"신성모독자","refName":"Blasphemer","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0dlb2ZyaUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/c8c02e1c54/GeofriCorpse.png","w":3,"h":2} +{"name":"폭발성 칼","refName":"Blasting Blade","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL0hlaXN0VHdvSGFuZFN3b3JkIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/9757ea88b2/HeistTwoHandSword.png","w":2,"h":4} +{"name":"맹렬한 화살통","refName":"Blazing Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJGaXJlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/0537b8437d/QuiverFire.png","w":2,"h":3} +{"name":"불길의 조각","refName":"Blazing Fragment","namespace":"ITEM","tradeTag":"blazing-fragment","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyQm9zc0tleVNlYXJpbmdFeGFyY2giLCJzY2FsZSI6MX1d/cc2f3bce1b/UberBossKeySearingExarch.png"} +{"name":"축복의 오브","refName":"Blessed Orb","namespace":"ITEM","tradeTag":"blessed","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lJbXBsaWNpdE1vZCIsInNjYWxlIjoxfV0/48e700cc20/CurrencyImplicitMod.png"} +{"name":"차율라의 축복","refName":"Blessing of Chayula","namespace":"ITEM","tradeTag":"blessing-chayula","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFVwZ3JhZGVyQ2hhb3MiLCJzY2FsZSI6MX1d/45e8da717e/BreachUpgraderChaos.png"} +{"name":"에쉬의 축복","refName":"Blessing of Esh","namespace":"ITEM","tradeTag":"blessing-esh","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFVwZ3JhZGVyTGlnaHRuaW5nIiwic2NhbGUiOjF9XQ/3d1db83ad2/BreachUpgraderLightning.png"} +{"name":"툴의 축복","refName":"Blessing of Tul","namespace":"ITEM","tradeTag":"blessing-tul","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFVwZ3JhZGVyQ29sZCIsInNjYWxlIjoxfV0/3573fedbf3/BreachUpgraderCold.png"} +{"name":"울네톨의 축복","refName":"Blessing of Uul-Netol","namespace":"ITEM","tradeTag":"blessing-uul-netol","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFVwZ3JhZGVyUGh5c2ljYWwiLCJzY2FsZSI6MX1d/f230a19a13/BreachUpgraderPhysical.png"} +{"name":"조프의 축복","refName":"Blessing of Xoph","namespace":"ITEM","tradeTag":"blessing-xoph","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFVwZ3JhZGVyRmlyZSIsInNjYWxlIjoxfV0/16a58db13d/BreachUpgraderFire.png"} +{"name":"역병 갑충석","refName":"Blight Scarab","namespace":"ITEM","tradeTag":"blight-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJCbGlnaHQiLCJzY2FsZSI6MX1d/401222e4f4/LesserScarabBlight.png"} +{"name":"개화의 역병 갑충석","refName":"Blight Scarab of Blooming","namespace":"ITEM","tradeTag":"blight-scarab-of-blooming","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkJsaWdodCIsInNjYWxlIjoxfV0/7ecd3dcebc/Tier4ScarabBlight.png"} +{"name":"하사품의 역병 갑충석","refName":"Blight Scarab of Bounty","namespace":"ITEM","tradeTag":"blight-scarab-of-bounty","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJCbGlnaHQiLCJzY2FsZSI6MX1d/de78905e90/NormalScarabBlight.png"} +{"name":"고무의 역병 갑충석","refName":"Blight Scarab of Invigoration","namespace":"ITEM","tradeTag":"blight-scarab-of-invigoration","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRUaWVyNFNjYXJhYkJsaWdodCIsInNjYWxlIjoxfV0/34e07da01c/AltTier4ScarabBlight.png"} +{"name":"메마른 심장의 역병 갑충석","refName":"Blight Scarab of the Blightheart","namespace":"ITEM","tradeTag":"blight-scarab-of-the-blightheart","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiQmxpZ2h0Iiwic2NhbGUiOjF9XQ/d0aa6a6d55/GreaterScarabBlight.png"} +{"name":"Blight-ravaged Map","refName":"Blight-ravaged Map","namespace":"ITEM","icon":"https://i.imgur.com/FpyXU1v.png"} +{"name":"역병 걸린 환영의 오브","refName":"Blighted Delirium Orb","namespace":"ITEM","tradeTag":"blighted-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJCbGlnaHQiLCJzY2FsZSI6MX1d/e65965e8bd/DeliriumOrbBlight.png"} +{"name":"역병 걸린 인큐베이터","refName":"Blighted Incubator","namespace":"ITEM","tradeTag":"blighted-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQmxpZ2h0Iiwic2NhbGUiOjF9XQ/0f1872598d/IncubationBlight.png"} +{"name":"Blighted Map","refName":"Blighted Map","namespace":"ITEM","icon":"https://i.imgur.com/CRmwRkA.png"} +{"name":"역병 걸린 정찰 보고서","refName":"Blighted Scouting Report","namespace":"ITEM","tradeTag":"blighted-scouting-report","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png"} +{"name":"실명기","refName":"Blinder","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/1d5586ea56/Claw5.png","w":2,"h":2} +{"name":"눈보라 왕관","refName":"Blizzard Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[185,212],"es":[38,43]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludFIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/9da7af13c1/HelmetDexIntR.png","w":2,"h":2} +{"name":"피의 악마","refName":"Blood Demon","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0hlbGxzY2FwZURlbW9uQm9zc0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/9bcd7bb5b8/HellscapeDemonBossCorpse.png","w":3,"h":2} +{"name":"피의 의복","refName":"Blood Raiment","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[436,501],"es":[73,84]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/95329b265f/BodyDexInt1C.png","w":2,"h":3} +{"name":"피 진액 팅크","refName":"Blood Sap Tincture","namespace":"ITEM","craftable":{"category":"Tincture"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL0JsZWVkU2FwIiwidyI6MSwiaCI6Miwic2NhbGUiOjF9XQ/853d2bf5b5/BleedSap.png","h":2} +{"name":"피의 셉터","refName":"Blood Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/35e149f5cf/scepter6.png","w":2,"h":3} +{"name":"피 담긴 그릇","refName":"Blood-filled Vessel","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUml0dWFsL0Jsb29kU29ha2VkRWZmaWd5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1adc81c853/BloodSoakedEffigy.png"} +{"name":"피얼룩 화석","refName":"Bloodstained Fossil","namespace":"ITEM","tradeTag":"bloodstained-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvQmxvb2RzdGFpbmVkRm9zc2lsIiwic2NhbGUiOjF9XQ/91236983e9/BloodstainedFossil.png"} +{"name":"파란 진주 목걸이","refName":"Blue Pearl Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9CbHVlUGVhcmxBbXVsZXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e71aeafbd3/BluePearlAmulet.png"} +{"name":"도면: 벙커","refName":"Blueprint: Bunker","namespace":"ITEM","craftable":{"category":"Heist Blueprint"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/03e0a85e57/BlueprintNotApproved.png"} +{"name":"도면: 실험실","refName":"Blueprint: Laboratory","namespace":"ITEM","craftable":{"category":"Heist Blueprint"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/fd4cd3685e/BlueprintNotApproved3.png"} +{"name":"도면: 대저택","refName":"Blueprint: Mansion","namespace":"ITEM","craftable":{"category":"Heist Blueprint"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQ5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/c6b8f5dbc2/BlueprintNotApproved9.png"} +{"name":"도면: 금지된 도서관","refName":"Blueprint: Prohibited Library","namespace":"ITEM","craftable":{"category":"Heist Blueprint"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQ1IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/78c1f7c667/BlueprintNotApproved5.png"} +{"name":"도면: 기록 보관소","refName":"Blueprint: Records Office","namespace":"ITEM","craftable":{"category":"Heist Blueprint"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQ4IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/cc90ce9113/BlueprintNotApproved8.png"} +{"name":"도면: 저장소","refName":"Blueprint: Repository","namespace":"ITEM","craftable":{"category":"Heist Blueprint"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQ0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2705c5829f/BlueprintNotApproved4.png"} +{"name":"도면: 밀수범 소굴","refName":"Blueprint: Smuggler's Den","namespace":"ITEM","craftable":{"category":"Heist Blueprint"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/cbd577605e/BlueprintNotApproved2.png"} +{"name":"도면: 터널","refName":"Blueprint: Tunnels","namespace":"ITEM","craftable":{"category":"Heist Blueprint"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQ2IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f2e3a9ec0f/BlueprintNotApproved6.png"} +{"name":"도면: 취약 지점","refName":"Blueprint: Underbelly","namespace":"ITEM","craftable":{"category":"Heist Blueprint"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQ3IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/bafd718e24/BlueprintNotApproved7.png"} +{"name":"뭉툭한 화살통","refName":"Blunt Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJCbHVudCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/435539df0f/QuiverBlunt.png","w":2,"h":3} +{"name":"뭉툭한 화살통 조각","refName":"Blunt Arrow Quiver Piece","namespace":"ITEM","craftable":{"category":"Unique Fragment","uniqueOnly":true},"icon":"","w":1,"h":2} +{"name":"둔력 응축자","refName":"Blunt Force Condenser","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvSGVpc3RUd29IYW5kTWFjZSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/ecc9c2724b/HeistTwoHandMace.png","w":2,"h":4} +{"name":"선상 도끼","refName":"Boarding Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlMyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/126bb32028/OneHandAxe3.png","w":2,"h":3} +{"name":"습지대 지도","refName":"Bog Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/cPWmdWr.jpg"}} +{"name":"뼈 갑옷","refName":"Bone Armour","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[194,233],"es":[41,49]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50NEMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/99efce2041/BodyDexInt4C.png","w":2,"h":3} +{"name":"뼈 활","refName":"Bone Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/6642f8922a/Bow6.png","w":2,"h":4} +{"name":"뼈의 관","refName":"Bone Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[36,40]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/6edb78065a/HelmetInt5.png","w":2,"h":2} +{"name":"뼈 지하실 지도","refName":"Bone Crypt Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/NVVVCOt.jpg"}} +{"name":"뼈 투구","refName":"Bone Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[197,227],"es":[40,46]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0JvbmVIZWxtIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/81dc21096f/BoneHelm.png","w":2,"h":2} +{"name":"뼈 반지","refName":"Bone Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQm9uZVJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4ed569fff9/BoneRing.png"} +{"name":"뼈 영혼 방패","refName":"Bone Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[15,19]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f0b78ea97c/ShieldInt3.png","w":2,"h":2} +{"name":"뼈 첨탑 부적","refName":"Bonespire Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbldoaXRlNyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d1c13039a9/TalismanWhite7.png"} +{"name":"우뢰 철퇴","refName":"Boom Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvSGVpc3RPbmVIYW5kTWFjZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/48ff9d9c4c/HeistOneHandMace.png","w":2,"h":3} +{"name":"주머니칼","refName":"Boot Blade","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjUiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/3431875aaf/Dagger5.png","h":3} +{"name":"주머니 단도","refName":"Boot Knife","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjUiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/3431875aaf/Dagger5.png","h":3} +{"name":"북풍목 팅크","refName":"Borealwood Tincture","namespace":"ITEM","craftable":{"category":"Tincture"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL0ZyZWV6ZVNhcCIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/3d546137f5/FreezeSap.png","h":2} +{"name":"속박의 화석","refName":"Bound Fossil","namespace":"ITEM","tradeTag":"bound-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUmVzb25hdGluZ0Zvc3NpbCIsInNjYWxlIjoxfV0/9db0326ecc/ResonatingFossil.png"} +{"name":"속박 룬","refName":"Bound Rune","namespace":"ITEM","tradeTag":"bound-rune","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2V0dGxlcnMvVmlsbGFnZVJ1bmUzIiwic2NhbGUiOjF9XQ/7e7fa2cc52/VillageRune3.png"} +{"name":"하사품 룬","refName":"Bounty Rune","namespace":"ITEM","tradeTag":"bounty-rune","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2V0dGxlcnMvVmlsbGFnZVJ1bmU2Iiwic2NhbGUiOjF9XQ/2eed968220/VillageRune6.png"} +{"name":"가시나무 계곡 지도","refName":"Bramble Valley Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/1HM5ro5.jpg"}} +{"name":"각인한 연모양 방패","refName":"Branded Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[186,208],"es":[38,43]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/996436dc6d/ShieldStrInt2.png","w":2,"h":3} +{"name":"황동 대형 망치","refName":"Brass Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U2IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/a114ad5617/TwoHandMace6.png","w":2,"h":4} +{"name":"황동 영혼 방패","refName":"Brass Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[35,40]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/404ef29c87/ShieldInt6.png","w":2,"h":2} +{"name":"균열 반지","refName":"Breach Ring","namespace":"ITEM","craftable":{"category":"Ring","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQnJlYWNoUmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c21b912df7/BreachRing.png"} +{"name":"균열 갑충석","refName":"Breach Scarab","namespace":"ITEM","tradeTag":"breach-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJCcmVhY2giLCJzY2FsZSI6MX1d/769139d13b/LesserScarabBreach.png"} +{"name":"지위의 균열 갑충석","refName":"Breach Scarab of Lordship","namespace":"ITEM","tradeTag":"breach-scarab-of-lordship","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiQnJlYWNoIiwic2NhbGUiOjF9XQ/b129897f73/GreaterScarabBreach.png"} +{"name":"공명하는 폭포의 균열 갑충석","refName":"Breach Scarab of Resonant Cascade","namespace":"ITEM","tradeTag":"breach-scarab-of-resonant-cascade","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRUaWVyNFNjYXJhYkJyZWFjaCIsInNjYWxlIjoxfV0/d6fe5cdce6/AltTier4ScarabBreach.png"} +{"name":"올가미의 균열 갑충석","refName":"Breach Scarab of Snares","namespace":"ITEM","tradeTag":"breach-scarab-of-snares","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkJyZWFjaCIsInNjYWxlIjoxfV0/2e4da41035/Tier4ScarabBreach.png"} +{"name":"파편의 균열 갑충석","refName":"Breach Scarab of Splintering","namespace":"ITEM","tradeTag":"breach-scarab-of-splintering","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRHcmVhdGVyU2NhcmFiQnJlYWNoIiwic2NhbGUiOjF9XQ/99f8bb0c06/AltGreaterScarabBreach.png"} +{"name":"몽상가의 균열 갑충석","refName":"Breach Scarab of the Dreamer","namespace":"ITEM","tradeTag":"breach-scarab-of-the-dreamer","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJCcmVhY2giLCJzY2FsZSI6MX1d/d8bc60711f/NormalScarabBreach.png"} +{"name":"골절늑골 부적","refName":"Breakrib Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbldoaXRlMSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8f8a4eaa88/TalismanWhite1.png"} +{"name":"유황 발 보호대","refName":"Brimstone Treads","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[236,271]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SaXR1YWxTdHJCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/fa0ce420ed/RitualStrBoots.png","w":2,"h":2} +{"name":"넓은날 도끼","refName":"Broad Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/9cdefe9de4/OneHandAxe5.png","w":2,"h":3} +{"name":"넓은날 검","refName":"Broad Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/936e00e3e6/OneHandSword4.png","w":2,"h":3} +{"name":"넓은 촉 화살통","refName":"Broadhead Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJCcm9hZGhlYWQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5265402022/QuiverBroadhead.png","w":2,"h":3} +{"name":"청동 건틀릿","refName":"Bronze Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[77,96]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyMyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f5896830bf/GlovesStr3.png","w":2,"h":2} +{"name":"청동 판금 갑옷","refName":"Bronze Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[373,429]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/ca9e30f668/BodyStr1B.png","w":2,"h":3} +{"name":"청동 셉터","refName":"Bronze Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyMyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/366212755a/scepter3.png","w":2,"h":3} +{"name":"청동 거대 방패","refName":"Bronze Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[290,324]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/ee43ed9cee/ShieldStr5.png","w":2,"h":4} +{"name":"청동 비늘 장화","refName":"Bronzescale Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[55,63],"ev":[55,63]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3418ad050e/BootsStrDex3.png","w":2,"h":2} +{"name":"청동 비늘 건틀릿","refName":"Bronzescale Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[50,62],"ev":[50,62]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyRGV4MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/01471b423e/GlovesStrDex3.png","w":2,"h":2} +{"name":"사슴가죽 거대 방패","refName":"Buckskin Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[177,209]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8d8c4e161f/ShieldStr3.png","w":2,"h":4} +{"name":"사슴가죽 튜닉","refName":"Buckskin Tunic","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[176,221]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/57409a1844/BodyDex1B.png","w":2,"h":3} +{"name":"묘실 지도","refName":"Burial Chambers Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/Wp5GF44.jpg"}} +{"name":"매장용 메달리온","refName":"Burial Medallion","namespace":"ITEM","tradeTag":"burial-medallion","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXhwZWRpdGlvbi9EYW5uaWdSZXJvbGxDdXJyZW5jeSIsInNjYWxlIjoxfV0/58eed604a2/DannigRerollCurrency.png"} +{"name":"윤이 나는 펜싱 검","refName":"Burnished Foil","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjMiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/11f4a8b0d0/Rapier3.png","h":4} +{"name":"윤이 나는 가시 방패","refName":"Burnished Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[62,73],"es":[13,16]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/53a98ddeac/ShieldDexInt4.png","w":2,"h":2} +{"name":"격발 반지","refName":"Burst Band","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQnVyc3RCYW5kTWFnaWNTdG9uZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/01e87b79d4/BurstBandMagicStone.png","w":2,"h":2} +{"name":"도살자 도끼","refName":"Butcher Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/9cdefe9de4/OneHandAxe5.png","w":2,"h":3} +{"name":"도살자 단도","refName":"Butcher Knife","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjMiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/fbc18a1b4f/Dagger3.png","h":3} +{"name":"도살자 검","refName":"Butcher Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDIiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/fcaf050e0f/TwoHandSword2.png","w":2,"h":4} +{"name":"비법가 예복","refName":"Cabalist Regalia","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[75,88]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e6eb42b23a/BodyStrDexInt1C.png","w":2,"h":3} +{"name":"창살 지도","refName":"Cage Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/r20ygP0.jpg"}} +{"name":"칼데라 지도","refName":"Caldera Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/dAFd7cQ.jpg"}} +{"name":"부름의 마법봉","refName":"Calling Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9Db252b2tpbmdXYW5kIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/fc10997b84/ConvokingWand.png","h":3} +{"name":"냉담한 가면","refName":"Callous Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[122,137],"es":[25,28]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/49d89bccdb/HelmetDexInt7.png","w":2,"h":2} +{"name":"냉담한 가면 조각","refName":"Callous Mask Piece","namespace":"ITEM","craftable":{"category":"Unique Fragment","uniqueOnly":true},"icon":"","w":1,"h":1} +{"name":"촛대 유물","refName":"Candlestick Relic","namespace":"ITEM","craftable":{"category":"Sanctum Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljQmFzZTF4NCIsInciOjEsImgiOjQsInNjYWxlIjoxfV0/160debfe1b/RelicBase1x4.png","h":4} +{"name":"협곡 지도","refName":"Canyon Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/8BSd3du.jpg"}} +{"name":"가능성의 막대","refName":"Capacity Rod","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGVpc3RXYXJTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/c9454891da/HeistWarStaff.png","w":2,"h":4} +{"name":"변덕스러운 정령의 칼","refName":"Capricious Spiritblade","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0hlaXN0T25lSGFuZFN3b3JkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/6b56c4c406/HeistOneHandSword.png","w":2,"h":3} +{"name":"시체 지도","refName":"Carcass Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/bANX02j.jpg"}} +{"name":"선홍색 원형 방패","refName":"Cardinal Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[209,240],"ev":[209,240]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/f50adf0569/ShieldStrDex4.png","w":2,"h":3} +{"name":"육욕의 갑옷","refName":"Carnal Armour","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[353,388],"es":[103,113]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50NEMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/99efce2041/BodyDexInt4C.png","w":2,"h":3} +{"name":"육욕의 장화","refName":"Carnal Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[99,117],"es":[20,24]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/bad1ba72df/BootsDexInt4.png","w":2,"h":2} +{"name":"육욕의 미트","refName":"Carnal Mitts","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[90,101],"es":[19,21]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/060b6ea395/GlovesDexInt3.png","w":2,"h":2} +{"name":"육욕의 셉터","refName":"Carnal Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/6b9c62e4c3/scepter7.png","w":2,"h":3} +{"name":"지도제작자의 끌","refName":"Cartographer's Chisel","namespace":"ITEM","tradeTag":"chisel","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lNYXBRdWFsaXR5Iiwic2NhbGUiOjF9XQ/0246313b99/CurrencyMapQuality.png"} +{"name":"지도제작자의 환영의 오브","refName":"Cartographer's Delirium Orb","namespace":"ITEM","tradeTag":"cartographers-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJNYXBzIiwic2NhbGUiOjF9XQ/0e2be34e49/DeliriumOrbMaps.png"} +{"name":"지도제작자의 인큐베이터","refName":"Cartographer's Incubator","namespace":"ITEM","tradeTag":"cartographers-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uTWFwcyIsInNjYWxlIjoxfV0/3d07c20be0/IncubationMaps.png"} +{"name":"타락의 지도 제작 갑충석","refName":"Cartography Scarab of Corruption","namespace":"ITEM","tradeTag":"cartography-scarab-of-corruption","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiTWFwcyIsInNjYWxlIjoxfV0/7c589dbe02/GreaterScarabMaps.png"} +{"name":"증대의 지도 제작 갑충석","refName":"Cartography Scarab of Escalation","namespace":"ITEM","tradeTag":"cartography-scarab-of-escalation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJNYXBzIiwic2NhbGUiOjF9XQ/e7d11bcc5b/LesserScarabMaps.png"} +{"name":"위험의 지도 제작 갑충석","refName":"Cartography Scarab of Risk","namespace":"ITEM","tradeTag":"cartography-scarab-of-risk","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJNYXBzIiwic2NhbGUiOjF9XQ/b41df1ff07/NormalScarabMaps.png"} +{"name":"특이점의 지도 제작 갑충석","refName":"Cartography Scarab of Singularity","namespace":"ITEM","tradeTag":"cartography-scarab-of-singularity","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHROb3JtYWxTY2FyYWJNYXBzIiwic2NhbGUiOjF9XQ/41c689bbef/AltNormalScarabMaps.png"} +{"name":"군중의 지도 제작 갑충석","refName":"Cartography Scarab of the Multitude","namespace":"ITEM","tradeTag":"cartography-scarab-of-the-multitude","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHROb3JtYWxTY2FyYWJNYXBzIiwic2NhbGUiOjF9XQ/41c689bbef/AltNormalScarabMaps.png"} +{"name":"조각된 마법봉","refName":"Carved Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kMyIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/6322bd53f5/Wand3.png","h":3} +{"name":"조각용 단도","refName":"Carving Knife","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjMiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/fbc18a1b4f/Dagger3.png","h":3} +{"name":"성곽 유적 지도","refName":"Castle Ruins Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/aFT1RlG.jpg"}} +{"name":"고양이 발","refName":"Cat's Paw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0a98c635d3/Claw4.png","w":2,"h":2} +{"name":"삼나무 거대 방패","refName":"Cedar Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[94,113]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d95a5bfcf0/ShieldStr4.png","w":2,"h":4} +{"name":"천공의 갑옷제작자의 인큐베이터","refName":"Celestial Armoursmith's Incubator","namespace":"ITEM","tradeTag":"celestial-armoursmiths-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQXJtb3VyIiwic2NhbGUiOjF9XQ/8cd6cd0531/IncubationArmour.png"} +{"name":"천공의 대장장이의 인큐베이터","refName":"Celestial Blacksmith's Incubator","namespace":"ITEM","tradeTag":"celestial-blacksmiths-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uV2VhcG9ucyIsInNjYWxlIjoxfV0/4c2bb7d249/IncubationWeapons.png"} +{"name":"천공의 보석상의 인큐베이터","refName":"Celestial Jeweller's Incubator","namespace":"ITEM","tradeTag":"celestial-jewellers-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uVHJpbmtldHMiLCJzY2FsZSI6MX1d/74b5811007/IncubationTrinkets.png"} +{"name":"감방 지도","refName":"Cells Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/ks4E8Cs.jpg"}} +{"name":"공동묘지 지도","refName":"Cemetery Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/j9OPnMf.jpg"}} +{"name":"향로 유물","refName":"Censer Relic","namespace":"ITEM","craftable":{"category":"Sanctum Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljQmFzZTF4MiIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/95a2dfd60b/RelicBase1x2.png","h":2} +{"name":"의식용 도끼","refName":"Ceremonial Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/5bbf95c3b4/OneHandAxe7.png","w":2,"h":3} +{"name":"제사장의 연모양 방패","refName":"Ceremonial Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[77,89],"es":[16,19]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/92beb951d5/ShieldStrInt5.png","w":2,"h":3} +{"name":"의식용 철퇴","refName":"Ceremonial Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U3IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/84402507d1/OneHandMace7.png","w":2,"h":3} +{"name":"진청색 반지","refName":"Cerulean Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQ2VydWxlYW5SaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/c5fe3e533c/CeruleanRing.png"} +{"name":"사슬 허리띠","refName":"Chain Belt","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdDIiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/3a6ece4e40/Belt2.png","w":2} +{"name":"사슬 장화","refName":"Chain Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[11,15],"es":[3,5]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckludDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0519faf993/BootsStrInt1.png","w":2,"h":2} +{"name":"사슬 장갑","refName":"Chain Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[14,20],"es":[4,6]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RySW50MSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/5d45f8da8f/GlovesStrInt1.png","w":2,"h":2} +{"name":"쇠사슬 갑옷","refName":"Chain Hauberk","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[281,314],"es":[58,65]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5a1804c81b/BodyStrInt2C.png","w":2,"h":3} +{"name":"사슬 더블릿","refName":"Chainmail Doublet","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[119,140],"es":[27,31]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2cea5723dd/BodyStrInt2B.png","w":2,"h":3} +{"name":"사슬 튜닉","refName":"Chainmail Tunic","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[48,63],"es":[13,17]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MkEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9f12486d42/BodyStrInt2A.png","w":2,"h":3} +{"name":"사슬 조끼","refName":"Chainmail Vest","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[27,38],"es":[9,13]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MUEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5cc435caff/BodyStrInt1A.png","w":2,"h":3} +{"name":"도전하는 환영의 오브","refName":"Challenging Delirium Orb","namespace":"ITEM","tradeTag":"challenging-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJVbHRpbWF0dW0iLCJzY2FsZSI6MX1d/3e820d9958/DeliriumOrbUltimatum.png"} +{"name":"도전하는 인큐베이터","refName":"Challenging Incubator","namespace":"ITEM","tradeTag":"challenging-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uVWx0aW1hdHVtIiwic2NhbGUiOjF9XQ/ea6dbbb27e/IncubationUltimatum.png"} +{"name":"용사의 연모양 방패","refName":"Champion Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[215,247],"es":[44,50]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8d673b3a1f/ShieldStrInt4.png","w":2,"h":3} +{"name":"물길 지도","refName":"Channel Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/qNjNqND.jpg"}} +{"name":"카오스 오브","refName":"Chaos Orb","namespace":"ITEM","tradeTag":"chaos","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lSZXJvbGxSYXJlIiwic2NhbGUiOjF9XQ/46a2347805/CurrencyRerollRare.png"} +{"name":"카오스 파편","refName":"Chaos Shard","namespace":"ITEM","tradeTag":"chaos-shard","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2hhb3NTaGFyZCIsInNjYWxlIjoxfV0/db7041e193/ChaosShard.png"} +{"name":"차란의 검","refName":"Charan's Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1RoZUdvZGRlc3NVbmxlYXNoZWQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/37ecd7541b/TheGoddessUnleashed.png","w":2,"h":3} +{"name":"대저택 지도","refName":"Chateau Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/9K7IyE3.jpg"}} +{"name":"차율라의 균열석","refName":"Chayula's Breachstone","namespace":"ITEM","tradeTag":"chayulas-breachstone","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaEZyYWdtZW50c0NoYW9zIiwic2NhbGUiOjF9XQ/4c99b7dd49/BreachFragmentsChaos.png"} +{"name":"차율라의 결함 없는 균열석","refName":"Chayula's Flawless Breachstone","namespace":"ITEM","tradeTag":"chayulas-flawless-breachstone","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0NoYXl1bGFzRmxhd2xlc3NCcmVhY2hzdG9uZSIsInNjYWxlIjoxfV0/daa631766b/ChayulasFlawlessBreachstone.png"} +{"name":"가르기용 스플리터","refName":"Chest Splitter","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/01f0e16494/OneHandAxe6.png","w":2,"h":3} +{"name":"가슴 보호 갑옷","refName":"Chestplate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[68,89]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMkEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/33a8fe3c3f/BodyStr2A.png","w":2,"h":3} +{"name":"키메라비늘 장화","refName":"Chimerascale Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[176,203],"ev":[176,203]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/d5b5430d4c/BootsStrDex2.png","w":2,"h":2} +{"name":"키메라비늘 건틀릿","refName":"Chimerascale Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[176,176],"ev":[176,176]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyRGV4MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0bb5dd1e50/GlovesStrDex2.png","w":2,"h":2} +{"name":"차임벨 영혼 방패","refName":"Chiming Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[42,48]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4bf20f79d1/ShieldInt5.png","w":2,"h":2} +{"name":"색채의 오브","refName":"Chromatic Orb","namespace":"ITEM","tradeTag":"chrome","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lSZXJvbGxTb2NrZXRDb2xvdXJzIiwic2NhbGUiOjF9XQ/19c8ddae20/CurrencyRerollSocketColours.png"} +{"name":"앗조아틀의 연대기","refName":"Chronicle of Atzoatl","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UZW1wbGVNYXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9be10cc6b3/TempleMap.png"} +{"name":"번데기 부적","refName":"Chrysalis Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9OZXdUYWxpc21hbjIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/bf3f4938da/NewTalisman2.png"} +{"name":"성채 활","refName":"Citadel Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/c064c479fa/Bow3.png","w":2,"h":4} +{"name":"성채 지도","refName":"Citadel Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{}} +{"name":"황수정 목걸이","refName":"Citrine Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9DaXRyaW5lQW11bGV0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/95804f838b/CitrineAmulet.png"} +{"name":"도시 광장 지도","refName":"City Square Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/dpMpwdP.jpg"}} +{"name":"버클 장화","refName":"Clasped Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[50,57],"es":[11,12]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0c80b843d0/BootsDexInt3.png","w":2,"h":2} +{"name":"버클 미트","refName":"Clasped Mitts","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[57,65],"es":[12,14]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/060b6ea395/GlovesDexInt3.png","w":2,"h":2} +{"name":"투명한 성유","refName":"Clear Oil","namespace":"ITEM","tradeTag":"clear-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9DbGVhck9pbCIsInNjYWxlIjoxfV0/0a7f30cc3b/ClearOil.png"} +{"name":"가로날도끼","refName":"Cleaver","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/451ba2cadb/OneHandAxe4.png","w":2,"h":3} +{"name":"폐쇄형 투구","refName":"Close Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[130,150]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0a862ec4b2/HelmetStr4.png","w":2,"h":2} +{"name":"헝겊 허리띠","refName":"Cloth Belt","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdDQiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/fce1729448/Belt4.png","w":2} +{"name":"헝겊 허리띠 조각","refName":"Cloth Belt Piece","namespace":"ITEM","craftable":{"category":"Unique Fragment","uniqueOnly":true},"icon":""} +{"name":"구름속삭임 장화","refName":"Cloudwhisper Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[68,78]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SaXR1YWxEZXhCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7172feff67/RitualDexBoots.png","w":2,"h":2} +{"name":"움켜잡는 부적","refName":"Clutching Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbkJsYWNrMyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1cd5ee74f4/TalismanBlack3.png"} +{"name":"코발트색 주얼","refName":"Cobalt Jewel","namespace":"ITEM","craftable":{"category":"Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL2Jhc2ljaW50IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/510013aec2/basicint.png"} +{"name":"궤짝 유물","refName":"Coffer Relic","namespace":"ITEM","craftable":{"category":"Sanctum Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljQmFzZTJ4MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/4d7c38a2ac/RelicBase2x2.png","w":2,"h":2} +{"name":"톱니장치 반지","refName":"Cogwork Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvSGVpc3RSaW5nMSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/23b3000b81/HeistRing1.png"} +{"name":"코일형 지팡이","refName":"Coiled Staff","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY1IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/53f1a6b438/Staff5.png","w":2,"h":4} +{"name":"똬리 마법봉","refName":"Coiled Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/a28035d7c4/Wand5.png","h":3} +{"name":"차가운 강 지도","refName":"Cold River Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/ld3HPg6.jpg"}} +{"name":"조율된 냉기 버클러","refName":"Cold-attuned Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[206,237]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0RleEhlaXN0U2hpZWxkIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/484b5bba00/DexHeistShield.png","w":2,"h":2} +{"name":"가로수 지도","refName":"Colonnade Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/5uaNQwH.jpg"}} +{"name":"초대형 하이브리드 플라스크","refName":"Colossal Hybrid Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvaHlicmlkZmxhc2sxIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/88dca03c78/hybridflask1.png","h":2} +{"name":"초대형 생명력 플라스크","refName":"Colossal Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrNyIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/a3a05678ea/lifeflask7.png","h":2} +{"name":"초대형 마나 플라스크","refName":"Colossal Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrNyIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/da16d2d8c3/manaflask7.png","h":2} +{"name":"초대형 거대 방패","refName":"Colossal Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[522,601]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d883ad1ca2/ShieldStr6.png","w":2,"h":4} +{"name":"원형 경기장 지도","refName":"Colosseum Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/LYXkjl8.jpg"}} +{"name":"원형 경기장 판금 갑옷","refName":"Colosseum Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[491,589]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/429eee131d/BodyStr2C.png","w":2,"h":3} +{"name":"초대형 나무 망치","refName":"Colossus Mallet","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2UzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/5e536c19aa/TwoHandMace3.png","w":2,"h":4} +{"name":"지휘관의 브리간딘","refName":"Commander's Brigandine","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[275,325],"ev":[275,325]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/60a6d7b58c/BodyStrDex2C.png","w":2,"h":3} +{"name":"합성궁","refName":"Composite Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d7cd8910cc/Bow4.png","w":2,"h":4} +{"name":"합성 반지","refName":"Composite Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvSGVpc3RSaW5nMlNpbHZlciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/717c7a2c50/HeistRing2Silver.png"} +{"name":"복합궁","refName":"Compound Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d7cd8910cc/Bow4.png","w":2,"h":4} +{"name":"합성 가시 방패","refName":"Compound Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[122,144],"es":[25,30]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/36d311e1dc/ShieldDexInt3.png","w":2,"h":2} +{"name":"상세한 정찰 보고서","refName":"Comprehensive Scouting Report","namespace":"ITEM","tradeTag":"comprehensive-scouting-report","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png"} +{"name":"관로","refName":"Conduit Line","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29uZHVpdExpbmVNYWdpY1N0b25lIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/a7c30a541b/ConduitLineMagicStone.png","w":2,"h":2} +{"name":"원뿔 투구","refName":"Cone Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[38,50]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/fdb5370ecb/HelmetStr2.png","w":2,"h":2} +{"name":"군집 마법봉","refName":"Congregator Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9IZWlzdFdhbmQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/4499b00066/HeistWand.png","h":3} +{"name":"요술사 장화","refName":"Conjurer Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[36,42]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5589419509/BootsInt4.png","w":2,"h":2} +{"name":"요술사 장갑","refName":"Conjurer Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[37,44]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/484e9bd879/GlovesInt4.png","w":2,"h":2} +{"name":"요술사의 법의","refName":"Conjurer's Vestment","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[94,105]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9ea39de510/BodyInt1C.png","w":2,"h":3} +{"name":"정복자의 투구","refName":"Conqueror's Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[501,576]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjEwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/b1e95342a8/HelmetStr10.png","w":2,"h":2} +{"name":"점령자의 사슬 갑옷","refName":"Conquest Chainmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[387,445],"es":[79,91]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2cea5723dd/BodyStrInt2B.png","w":2,"h":3} +{"name":"정복 투구","refName":"Conquest Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[308,355],"ev":[308,355]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0884b27765/HelmetStrDex7.png","w":2,"h":2} +{"name":"정복 라멜라","refName":"Conquest Lamellar","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[723,831],"ev":[723,831]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyNEEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MSwic2VhcmluZyI6dHJ1ZSwidGFuZ2xlZCI6dHJ1ZX1d/b732d8618c/BodyStr4A.png","w":2,"h":3} +{"name":"온실 지도","refName":"Conservatory Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/VfVUpKT.jpg"}} +{"name":"계약: 벙커","refName":"Contract: Bunker","namespace":"ITEM","craftable":{"category":"Heist Contract"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8262f2ca0e/ContractItem.png"} +{"name":"계약: 실험실","refName":"Contract: Laboratory","namespace":"ITEM","craftable":{"category":"Heist Contract"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtMyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8838f281b6/ContractItem3.png"} +{"name":"계약: 대저택","refName":"Contract: Mansion","namespace":"ITEM","craftable":{"category":"Heist Contract"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtOSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/24220667d4/ContractItem9.png"} +{"name":"계약: 금지된 도서관","refName":"Contract: Prohibited Library","namespace":"ITEM","craftable":{"category":"Heist Contract"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtNSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fd1a9eb91f/ContractItem5.png"} +{"name":"계약: 기록 보관소","refName":"Contract: Records Office","namespace":"ITEM","craftable":{"category":"Heist Contract"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtOCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d28f52922a/ContractItem8.png"} +{"name":"계약: 저장소","refName":"Contract: Repository","namespace":"ITEM","craftable":{"category":"Heist Contract"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtNCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d555dbf890/ContractItem4.png"} +{"name":"계약: 밀수범 소굴","refName":"Contract: Smuggler's Den","namespace":"ITEM","craftable":{"category":"Heist Contract"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtMiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f755c71433/ContractItem2.png"} +{"name":"계약: 터널","refName":"Contract: Tunnels","namespace":"ITEM","craftable":{"category":"Heist Contract"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtNiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fda76bd516/ContractItem6.png"} +{"name":"계약: 취약 지점","refName":"Contract: Underbelly","namespace":"ITEM","craftable":{"category":"Heist Contract"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtNyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/aa8fd5bde5/ContractItem7.png"} +{"name":"회합의 마법봉","refName":"Convening Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9Db252b2tpbmdXYW5kIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/fc10997b84/ConvokingWand.png","h":3} +{"name":"소집의 마법봉","refName":"Convoking Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9Db252b2tpbmdXYW5kIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/fc10997b84/ConvokingWand.png","h":3} +{"name":"구리 크리스","refName":"Copper Kris","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjYiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/5dcee0019c/Dagger6.png","h":3} +{"name":"구리 판금 갑옷","refName":"Copper Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[176,221]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/ca9e30f668/BodyStr1B.png","w":2,"h":3} +{"name":"구리 검","refName":"Copper Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDIiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/606dae9ce9/OneHandSword2.png","h":3} +{"name":"구리 거대 방패","refName":"Copper Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[151,173]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/ee43ed9cee/ShieldStr5.png","w":2,"h":4} +{"name":"산호 목걸이","refName":"Coral Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/fe19a0a686/Amulet2.png"} +{"name":"산호 반지","refName":"Coral Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6e12710920/Ring2.png"} +{"name":"산호 유적 지도","refName":"Coral Ruins Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/YI4jsqt.jpg"}} +{"name":"중심부 지도","refName":"Core Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/SCCsOxV.jpg"}} +{"name":"광환의 가죽 갑옷","refName":"Coronal Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[491,579]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4M0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e30de2c7a6/BodyDex3C.png","w":2,"h":3} +{"name":"광환의 대형 망치","refName":"Coronal Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U4IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/d7f01f7a37/TwoHandMace8.png","w":2,"h":4} +{"name":"부식된 칼날","refName":"Corroded Blade","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDEiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/1ba03c111f/TwoHandSword1.png","h":4} +{"name":"부식된 화석","refName":"Corroded Fossil","namespace":"ITEM","tradeTag":"corroded-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvQ29ycm9kZWRGb3NzaWwiLCJzY2FsZSI6MX1d/7578bf6bab/CorrodedFossil.png"} +{"name":"부식된 거대 방패","refName":"Corroded Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[36,47]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjIiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/b2c0ccc044/ShieldStr2.png","w":2,"h":4} +{"name":"주름진 버클러","refName":"Corrugated Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[227,272]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/60c6c83831/ShieldDex4.png","w":2,"h":2} +{"name":"해적의 검","refName":"Corsair Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDMiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/0aa55ff7a1/OneHandSword3.png","h":3} +{"name":"강옥 플라스크","refName":"Corundum Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvQW50aVN0dW5GbGFzayIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/4df2dac26a/AntiStunFlask.png","h":2} +{"name":"별나라의 조각","refName":"Cosmic Fragment","namespace":"ITEM","tradeTag":"cosmic-fragment","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyQm9zc0tleVNoYXBlciIsInNjYWxlIjoxfV0/719e96a82a/UberBossKeyShaper.png"} +{"name":"우주의 성유물 보관실 열쇠","refName":"Cosmic Reliquary Key","namespace":"ITEM","tradeTag":"cosmic-reliquary-key","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TaGFwZXJGb2lsIiwic2NhbGUiOjF9XQ/5c88f39bc3/ShaperFoil.png"} +{"name":"코르티잔 검","refName":"Courtesan Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjkiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/e409e11584/Rapier9.png","h":4} +{"name":"법원 지도","refName":"Courthouse Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/zg9qN4K.jpg"}} +{"name":"안뜰 지도","refName":"Courtyard Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/rRYcncq.jpg"}} +{"name":"만 지도","refName":"Coves Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/NB7i3Mu.jpg"}} +{"name":"균열 철퇴","refName":"Crack Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvSGVpc3RPbmVIYW5kTWFjZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/48ff9d9c4c/HeistOneHandMace.png","w":2,"h":3} +{"name":"분화구 지도","refName":"Crater Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/ffRs5qU.jpg"}} +{"name":"초승달 파편","refName":"Crescent Splinter","namespace":"ITEM","tradeTag":"crescent-splinter","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXRsYXMvTWF2ZW5LZXlGcmFnbWVudCIsInNjYWxlIjoxfV0/014d46c630/MavenKeyFragment.png"} +{"name":"초승달의 지팡이","refName":"Crescent Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY4IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/edbdbaa9ba/Staff8.png","w":2,"h":4} +{"name":"문장 거대 방패","refName":"Crested Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[293,337]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/80f9f1abea/ShieldStr7.png","w":2,"h":4} +{"name":"진홍색 주얼","refName":"Crimson Jewel","namespace":"ITEM","craftable":{"category":"Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL2Jhc2ljc3RyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8129ab1f4d/basicstr.png"} +{"name":"진홍빛 성유","refName":"Crimson Oil","namespace":"ITEM","tradeTag":"crimson-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9Dcmltc29uT2lsIiwic2NhbGUiOjF9XQ/5e5f62ac0e/CrimsonOil.png"} +{"name":"진홍색 의복","refName":"Crimson Raiment","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[264,304],"es":[55,63]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/95329b265f/BodyDexInt1C.png","w":2,"h":3} +{"name":"진홍색 원형 방패","refName":"Crimson Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[155,178],"ev":[155,178]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/f50adf0569/ShieldStrDex4.png","w":2,"h":3} +{"name":"진홍색 사원 지도","refName":"Crimson Temple Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/4731HPd.jpg"}} +{"name":"진홍색 마을 지도","refName":"Crimson Township Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/OOugfbm.jpg"}} +{"name":"조잡한 활","refName":"Crude Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/50dd0fd6ac/Bow1.png","w":2,"h":3} +{"name":"조잡한 감지 부적","refName":"Crude Sensing Charm","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ3J1ZGVTZW5zaW5nQ2hhcm0iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/207cf61525/CrudeSensingCharm.png","w":2,"h":2} +{"name":"조잡한 수호","refName":"Crude Ward","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ3J1ZGVXYXJkIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/0308021b23/CrudeWard.png","w":2,"h":2} +{"name":"십자군 장화","refName":"Crusader Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[121,139],"es":[25,28]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e75ade3184/BootsStrInt3.png","w":2,"h":2} +{"name":"십자군 버클러","refName":"Crusader Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[385,442]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5a38d58259/ShieldDex5.png","w":2,"h":2} +{"name":"십자군 사슬 갑옷","refName":"Crusader Chainmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[237,266],"es":[50,55]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2cea5723dd/BodyStrInt2B.png","w":2,"h":3} +{"name":"십자군 장갑","refName":"Crusader Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[121,139],"es":[25,28]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RySW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7adc65bac6/GlovesStrInt3.png","w":2,"h":2} +{"name":"십자군 투구","refName":"Crusader Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[85,95],"es":[18,20]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f6a9c01543/HelmetStrInt4.png","w":2,"h":2} +{"name":"십자군 판금 갑옷","refName":"Crusader Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[601,691]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/c62bd1159e/BodyStr2B.png","w":2,"h":3} +{"name":"십자군의 엑잘티드 오브","refName":"Crusader's Exalted Orb","namespace":"ITEM","tradeTag":"crusaders-exalted-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5mbHVlbmNlIEV4YWx0cy9DcnVzYWRlck9yYiIsInNjYWxlIjoxfV0/8b48230188/CrusaderOrb.png"} +{"name":"압착력 확대자","refName":"Crushing Force Magnifier","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvSGVpc3RUd29IYW5kTWFjZSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/ecc9c2724b/HeistTwoHandMace.png","w":2,"h":4} +{"name":"지하실 갑옷","refName":"Crypt Armour","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[308,369],"es":[63,76]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50NEMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/99efce2041/BodyDexInt4C.png","w":2,"h":3} +{"name":"수정 허리띠","refName":"Crystal Belt","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQ3J5c3RhbEJlbHQiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/1e9174ec8f/CrystalBelt.png","w":2} +{"name":"수정 광석 지도","refName":"Crystal Ore Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/ff3kcZI.jpg"}} +{"name":"수정 셉터","refName":"Crystal Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/c986bafb78/scepter4.png","w":2,"h":3} +{"name":"수정 마법봉","refName":"Crystal Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNCIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/b505ad92e7/Wand4.png","h":3} +{"name":"저주받은 지하실 지도","refName":"Cursed Crypt Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/hz8a9Ea.jpg"}} +{"name":"곡도","refName":"Curved Blade","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDgiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/decb6a0e86/TwoHandSword8.png","w":2,"h":4} +{"name":"커틀라스","refName":"Cutlass","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDMiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/0aa55ff7a1/OneHandSword3.png","h":3} +{"name":"살인자의 의복","refName":"Cutthroat's Garb","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[530,594]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8f1d1cfaa9/BodyDex2C.png","w":2,"h":3} +{"name":"단검 도끼","refName":"Dagger Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlOCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/ba1d6734bb/TwoHandAxe8.png","w":2,"h":4} +{"name":"춤추는 검","refName":"Dancing Sword","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0FuaW1hdGVkV2VhcG9uQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/2720caa383/AnimatedWeaponCorpse.png","w":3,"h":2} +{"name":"어둠의 숲 지도","refName":"Dark Forest Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/ayyUVDP.jpg"}} +{"name":"어둠의 꼭두각시","refName":"Dark Marionette","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JvYm90TWFubmVxdWluQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/2ad85223a4/RobotMannequinCorpse.png","w":3,"h":2} +{"name":"어둠의 수확자","refName":"Dark Reaper","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JlYXBlckJvc3NDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/d6c81d82f9/ReaperBossCorpse.png","w":3,"h":2} +{"name":"검은 강철 발 보호대","refName":"Darksteel Treads","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[164,189]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SaXR1YWxTdHJCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/fa0ce420ed/RitualStrBoots.png","w":2,"h":2} +{"name":"흑단목 셉터","refName":"Darkwood Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyMiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/e3e72321e0/scepter2.png","w":2,"h":3} +{"name":"죽은 손 부적","refName":"Deadhand Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbldoaXRlNCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5c187331d9/TalismanWhite4.png"} +{"name":"귀를 찢는 분노의 에센스","refName":"Deafening Essence of Anger","namespace":"ITEM","tradeTag":"deafening-essence-of-anger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9BbmdlcjciLCJzY2FsZSI6MX1d/4af31038e6/Anger7.png"} +{"name":"귀를 찢는 비통의 에센스","refName":"Deafening Essence of Anguish","namespace":"ITEM","tradeTag":"deafening-essence-of-anguish","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Bbmd1aXNoNyIsInNjYWxlIjoxfV0/b7bb2fa059/Anguish7.png"} +{"name":"귀를 찢는 경멸의 에센스","refName":"Deafening Essence of Contempt","namespace":"ITEM","tradeTag":"deafening-essence-of-contempt","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Db250ZW1wdDciLCJzY2FsZSI6MX1d/b8be130237/Contempt7.png"} +{"name":"귀를 찢는 의심의 에센스","refName":"Deafening Essence of Doubt","namespace":"ITEM","tradeTag":"deafening-essence-of-doubt","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Eb3VidDciLCJzY2FsZSI6MX1d/663b299868/Doubt7.png"} +{"name":"귀를 찢는 불안의 에센스","refName":"Deafening Essence of Dread","namespace":"ITEM","tradeTag":"deafening-essence-of-dread","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9EcmVhZDciLCJzY2FsZSI6MX1d/5f5d022b78/Dread7.png"} +{"name":"귀를 찢는 선망의 에센스","refName":"Deafening Essence of Envy","namespace":"ITEM","tradeTag":"deafening-essence-of-envy","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9FbnZ5NyIsInNjYWxlIjoxfV0/83c7610bca/Envy7.png"} +{"name":"귀를 찢는 두려움의 에센스","refName":"Deafening Essence of Fear","namespace":"ITEM","tradeTag":"deafening-essence-of-fear","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9GZWFyNyIsInNjYWxlIjoxfV0/0b0dcd4320/Fear7.png"} +{"name":"귀를 찢는 탐욕의 에센스","refName":"Deafening Essence of Greed","namespace":"ITEM","tradeTag":"deafening-essence-of-greed","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVlZDciLCJzY2FsZSI6MX1d/9d7e9a3b11/Greed7.png"} +{"name":"귀를 찢는 증오의 에센스","refName":"Deafening Essence of Hatred","namespace":"ITEM","tradeTag":"deafening-essence-of-hatred","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9IYXRyZWQ3Iiwic2NhbGUiOjF9XQ/a69c5c06cc/Hatred7.png"} +{"name":"귀를 찢는 혐오의 에센스","refName":"Deafening Essence of Loathing","namespace":"ITEM","tradeTag":"deafening-essence-of-loathing","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Mb2F0aGluZzciLCJzY2FsZSI6MX1d/67a47325e8/Loathing7.png"} +{"name":"귀를 찢는 비참의 에센스","refName":"Deafening Essence of Misery","namespace":"ITEM","tradeTag":"deafening-essence-of-misery","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9NaXNlcnk3Iiwic2NhbGUiOjF9XQ/a86e9a3359/Misery7.png"} +{"name":"귀를 찢는 격노의 에센스","refName":"Deafening Essence of Rage","namespace":"ITEM","tradeTag":"deafening-essence-of-rage","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9SYWdlNyIsInNjYWxlIjoxfV0/6567f7bb78/Rage7.png"} +{"name":"귀를 찢는 멸시의 에센스","refName":"Deafening Essence of Scorn","namespace":"ITEM","tradeTag":"deafening-essence-of-scorn","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TY29ybjciLCJzY2FsZSI6MX1d/ac4ec5f480/Scorn7.png"} +{"name":"귀를 찢는 슬픔의 에센스","refName":"Deafening Essence of Sorrow","namespace":"ITEM","tradeTag":"deafening-essence-of-sorrow","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Tb3Jyb3c3Iiwic2NhbGUiOjF9XQ/db24a92da3/Sorrow7.png"} +{"name":"귀를 찢는 악의의 에센스","refName":"Deafening Essence of Spite","namespace":"ITEM","tradeTag":"deafening-essence-of-spite","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TcGl0ZTciLCJzY2FsZSI6MX1d/c26296fbeb/Spite7.png"} +{"name":"귀를 찢는 고통의 에센스","refName":"Deafening Essence of Suffering","namespace":"ITEM","tradeTag":"deafening-essence-of-suffering","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TdWZmZXJpbmc3Iiwic2NhbGUiOjF9XQ/e48c276341/Suffering7.png"} +{"name":"귀를 찢는 고뇌의 에센스","refName":"Deafening Essence of Torment","namespace":"ITEM","tradeTag":"deafening-essence-of-torment","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Ub3JtZW50NyIsInNjYWxlIjoxfV0/4c9779fe15/Torment7.png"} +{"name":"귀를 찢는 비애의 에센스","refName":"Deafening Essence of Woe","namespace":"ITEM","tradeTag":"deafening-essence-of-woe","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Xb2U3Iiwic2NhbGUiOjF9XQ/6bb5af5409/Woe7.png"} +{"name":"귀를 찢는 진노의 에센스","refName":"Deafening Essence of Wrath","namespace":"ITEM","tradeTag":"deafening-essence-of-wrath","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9XcmF0aDciLCJzY2FsZSI6MX1d/c2d8ad83fc/Wrath7.png"} +{"name":"귀를 찢는 열의의 에센스","refName":"Deafening Essence of Zeal","namespace":"ITEM","tradeTag":"deafening-essence-of-zeal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9aZWFsNyIsInNjYWxlIjoxfV0/27ff3b63ea/Zeal7.png"} +{"name":"죽음의 활","refName":"Death Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzgiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8d079c60ed/Bow8.png","w":2,"h":4} +{"name":"쇠퇴의 조각","refName":"Decaying Fragment","namespace":"ITEM","tradeTag":"decaying-fragment","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyQm9zc0tleUVsZGVyIiwic2NhbGUiOjF9XQ/42d1e96e4e/UberBossKeyElder.png"} +{"name":"부패하는 성유물 보관실 열쇠","refName":"Decaying Reliquary Key","namespace":"ITEM","tradeTag":"decaying-reliquary-key","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FbGRlckZvaWwiLCJzY2FsZSI6MX1d/cbb24273c1/ElderFoil.png"} +{"name":"대량 학살의 활","refName":"Decimation Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzgiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8d079c60ed/Bow8.png","w":2,"h":4} +{"name":"장식된 도끼","refName":"Decorative Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/5bbf95c3b4/OneHandAxe7.png","w":2,"h":3} +{"name":"비곡궁","refName":"Decurve Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/c064c479fa/Bow3.png","w":2,"h":4} +{"name":"여신에게 바치는 헌신","refName":"Dedication to the Goddess","namespace":"ITEM","tradeTag":"offer-dedication","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9MYWJ5cmludGhIYXJ2ZXN0SW5mdXNlZDIiLCJzY2FsZSI6MX1d/31d582aac1/LabyrinthHarvestInfused2.png"} +{"name":"심해의 존재 부적","refName":"Deep One Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbldoaXRlNSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fbd475431a/TalismanWhite5.png"} +{"name":"사슴가죽 장화","refName":"Deerskin Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[74,92]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f2e9a30d4a/BootsDex3.png","w":2,"h":2} +{"name":"사슴가죽 장갑","refName":"Deerskin Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[71,88]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/445d038f1d/GlovesDex3.png","w":2,"h":2} +{"name":"더럽혀진 대성당 지도","refName":"Defiled Cathedral Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/rSqf91M.jpg"}} +{"name":"날렵한 화석","refName":"Deft Fossil","namespace":"ITEM","tradeTag":"deft-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvRW5jaGFudGVkRm9zc2lsIiwic2NhbGUiOjF9XQ/299ee9bcb8/EnchantedFossil.png"} +{"name":"신살자 가면","refName":"Deicide Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[190,219],"es":[47,54]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDExIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/ff51fc2e8c/HelmetDexInt11.png","w":2,"h":2} +{"name":"환영의 정찰 보고서","refName":"Delirious Scouting Report","namespace":"ITEM","tradeTag":"delirious-scouting-report","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png"} +{"name":"환영 갑충석","refName":"Delirium Scarab","namespace":"ITEM","tradeTag":"delirium-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJEZWxpcml1bSIsInNjYWxlIjoxfV0/0b8b887e88/LesserScarabDelirium.png"} +{"name":"망상의 환영 갑충석","refName":"Delirium Scarab of Delusions","namespace":"ITEM","tradeTag":"delirium-scarab-of-delusions","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkRlbGlyaXVtIiwic2NhbGUiOjF9XQ/aa8241bb6c/Tier4ScarabDelirium.png"} +{"name":"광증의 환영 갑충석","refName":"Delirium Scarab of Mania","namespace":"ITEM","tradeTag":"delirium-scarab-of-mania","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJEZWxpcml1bSIsInNjYWxlIjoxfV0/9de6ce65c5/NormalScarabDelirium.png"} +{"name":"신경증의 환영 갑충석","refName":"Delirium Scarab of Neuroses","namespace":"ITEM","tradeTag":"delirium-scarab-of-neuroses","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRHcmVhdGVyU2NhcmFiRGVsaXJpdW0iLCJzY2FsZSI6MX1d/5690762715/AltGreaterScarabDelirium.png"} +{"name":"편집증의 환영 갑충석","refName":"Delirium Scarab of Paranoia","namespace":"ITEM","tradeTag":"delirium-scarab-of-paranoia","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiRGVsaXJpdW0iLCJzY2FsZSI6MX1d/e6730494ae/GreaterScarabDelirium.png"} +{"name":"악마 왕관","refName":"Demon Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[122,140],"es":[25,29]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01hc2tDcm93biIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/dbad72643e/MaskCrown.png","w":2,"h":2} +{"name":"악마 단검","refName":"Demon Dagger","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjgiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/e0bade03f8/Dagger8.png","h":3} +{"name":"악마의 뿔","refName":"Demon's Horn","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kMiIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/896948eee2/Wand2.png","h":3} +{"name":"조밀한 화석","refName":"Dense Fossil","namespace":"ITEM","tradeTag":"dense-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvRGVuc2VGb3NzaWwiLCJzY2FsZSI6MX1d/ac39aaf3cd/DenseFossil.png"} +{"name":"자율 주문서","refName":"Deregulation Scroll","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9IYXJiaW5nZXJUb2tlbkhlbG0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ee0bd282eb/HarbingerTokenHelm.png"} +{"name":"사막 브리간딘","refName":"Desert Brigandine","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[376,451],"ev":[376,451]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/cd52e7b841/BodyStrDex2B.png","w":2,"h":3} +{"name":"사막 지도","refName":"Desert Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/BcaiqlN.jpg"}} +{"name":"사막의 샘 지도","refName":"Desert Spring Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/aDop71B.jpg"}} +{"name":"절대군주 도끼","refName":"Despot Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/e2c34a0fb2/TwoHandAxe6.png","w":2,"h":4} +{"name":"운명의 가죽 갑옷","refName":"Destiny Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[601,721]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4M0IiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/db900972c7/BodyDex3B.png","w":2,"h":3} +{"name":"파괴자 예복","refName":"Destroyer Regalia","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[109,129]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e6eb42b23a/BodyStrDexInt1C.png","w":2,"h":3} +{"name":"포식의 조각","refName":"Devouring Fragment","namespace":"ITEM","tradeTag":"devouring-fragment","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyQm9zc0tleUVhdGVyT2ZXb3JsZHMiLCJzY2FsZSI6MX1d/6022aa0897/UberBossKeyEaterOfWorlds.png"} +{"name":"신도 사슬 갑옷","refName":"Devout Chainmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[302,363],"es":[62,74]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50M0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/900b4f2c03/BodyStrInt3C.png","w":2,"h":3} +{"name":"다이아몬드 플라스크","refName":"Diamond Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvZGlhbW9uZCIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/98bf48b8dd/diamond.png","h":2} +{"name":"다이아몬드 반지","refName":"Diamond Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvRGlhbW9uZFJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d07e3dfbb6/DiamondRing.png"} +{"name":"발굴지 지도","refName":"Dig Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/E8Z9yPz.jpg"}} +{"name":"지독한 가죽모","refName":"Dire Pelt","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[431,496]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/549bc86dd9/HelmetDex4.png","w":2,"h":2} +{"name":"책망의 도끼","refName":"Disapprobation Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9IZWlzdE9uZWhhbmRBeGUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5ba95d3930/HeistOnehandAxe.png","w":2,"h":3} +{"name":"훔쳐냄의 점술 갑충석","refName":"Divination Scarab of Pilfering","namespace":"ITEM","tradeTag":"divination-scarab-of-pilfering","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiRGl2aW5hdGlvbiIsInNjYWxlIjoxfV0/73ab11f6bd/GreaterScarabDivination.png"} +{"name":"풍부함의 점술 갑충석","refName":"Divination Scarab of Plenty","namespace":"ITEM","tradeTag":"divination-scarab-of-plenty","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJEaXZpbmF0aW9uIiwic2NhbGUiOjF9XQ/acb5d1754a/NormalScarabDivination.png"} +{"name":"회랑의 점술 갑충석","refName":"Divination Scarab of The Cloister","namespace":"ITEM","tradeTag":"divination-scarab-of-the-cloister","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJEaXZpbmF0aW9uIiwic2NhbGUiOjF9XQ/20ff060a8d/LesserScarabDivination.png"} +{"name":"신성한 왕관","refName":"Divine Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[355,409],"es":[71,82]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/6ad7c513a8/HelmetStrInt9.png","w":2,"h":2} +{"name":"신성한 생명력 플라스크","refName":"Divine Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrMTEiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/54ba3c70ae/lifeflask11.png","h":2} +{"name":"신성한 마나 플라스크","refName":"Divine Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrMTEiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/9313e55ff4/manaflask11.png","h":2} +{"name":"신성한 오브","refName":"Divine Orb","namespace":"ITEM","tradeTag":"divine","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lNb2RWYWx1ZXMiLCJzY2FsZSI6MX1d/ec48896769/CurrencyModValues.png"} +{"name":"성스러운 시험관","refName":"Divine Vessel","namespace":"ITEM","tradeTag":"divine-vessel","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TaW5GbGFza0VtcHR5Iiwic2NhbGUiOjF9XQ/3a2d49608a/SinFlaskEmpty.png"} +{"name":"예언자의 환영의 오브","refName":"Diviner's Delirium Orb","namespace":"ITEM","tradeTag":"diviners-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJEaXZpbmF0aW9uQ2FyZHMiLCJzY2FsZSI6MX1d/9ab37abc47/DeliriumOrbDivinationCards.png"} +{"name":"예언자의 인큐베이터","refName":"Diviner's Incubator","namespace":"ITEM","tradeTag":"diviners-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRGl2aW5hdGlvbkNhcmRzIiwic2NhbGUiOjF9XQ/e14c3ef7f9/IncubationDivinationCards.png"} +{"name":"지배 갑충석","refName":"Domination Scarab","namespace":"ITEM","tradeTag":"domination-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJEb21pbmF0aW9uIiwic2NhbGUiOjF9XQ/76cedf832c/LesserScarabDomination.png"} +{"name":"유령의 지배 갑충석","refName":"Domination Scarab of Apparitions","namespace":"ITEM","tradeTag":"domination-scarab-of-apparitions","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJEb21pbmF0aW9uIiwic2NhbGUiOjF9XQ/c907d44dec/NormalScarabDomination.png"} +{"name":"진화의 지배 갑충석","refName":"Domination Scarab of Evolution","namespace":"ITEM","tradeTag":"domination-scarab-of-evolution","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiRG9taW5hdGlvbiIsInNjYWxlIjoxfV0/8913234164/GreaterScarabDomination.png"} +{"name":"공포의 지배 갑충석","refName":"Domination Scarab of Terrors","namespace":"ITEM","tradeTag":"domination-scarab-of-terrors","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkRvbWluYXRpb24iLCJzY2FsZSI6MX1d/0d55e72414/Tier4ScarabDomination.png"} +{"name":"양날 도끼","refName":"Double Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/4b3fbfcd65/TwoHandAxe5.png","w":2,"h":4} +{"name":"이중 클로","refName":"Double Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3OSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/84eab7e6ba/Claw9.png","w":2,"h":2} +{"name":"용 철퇴","refName":"Dragon Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U5IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f2a493ef7a/OneHandMace9.png","w":2,"h":3} +{"name":"용뼈 레이피어","refName":"Dragonbone Rapier","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjIiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/481efcada5/Rapier2.png","h":4} +{"name":"용 비늘 장화","refName":"Dragonscale Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[121,139],"ev":[121,139]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3418ad050e/BootsStrDex3.png","w":2,"h":2} +{"name":"용 비늘 더블릿","refName":"Dragonscale Doublet","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[313,351],"ev":[313,351]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/d9b2da2bce/BodyStrDex1B.png","w":2,"h":3} +{"name":"용 비늘 건틀릿","refName":"Dragonscale Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[121,139],"ev":[121,139]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyRGV4MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/01471b423e/GlovesStrDex3.png","w":2,"h":2} +{"name":"용기병 검","refName":"Dragoon Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjkiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/e409e11584/Rapier9.png","h":4} +{"name":"끔찍한 대형 망치","refName":"Dread Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U3IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/d7e632f004/TwoHandMace7.png","w":2,"h":4} +{"name":"몽환의 철퇴","refName":"Dream Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U4IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/57786131bb/OneHandMace8.png","w":2,"h":3} +{"name":"꿈의 정벌 슬리퍼","refName":"Dreamquest Slippers","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[50,57]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SaXR1YWxJbnRCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/dfe31cc493/RitualIntBoots.png","w":2,"h":2} +{"name":"표류목 곤봉","refName":"Driftwood Club","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2UxIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/e51d4ef68d/OneHandMace1.png","h":3} +{"name":"표류목 대형 망치","refName":"Driftwood Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2UxIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/5977f27334/TwoHandMace1.png","w":2,"h":4} +{"name":"표류목 셉터","refName":"Driftwood Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyMSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/4b2438446d/scepter1.png","h":3} +{"name":"유목 가시 방패","refName":"Driftwood Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[46,60],"es":[11,15]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/db9355404e/ShieldDexInt2.png","w":2,"h":2} +{"name":"표류목 마법봉","refName":"Driftwood Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kMSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/899dabeaf1/Wand1.png","h":3} +{"name":"드록스의 문양","refName":"Drox's Crest","namespace":"ITEM","tradeTag":"droxs-crest","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9XYXJsb3JkRnJhZ21lbnQiLCJzY2FsZSI6MX1d/3d735a8303/WarlordFragment.png"} +{"name":"드루이드 연금술사","refName":"Druidic Alchemist","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Rhd2hvYU1lZGljaW5lV29tYW5Db3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/a446a2f4d0/TawhoaMedicineWomanCorpse.png","w":3,"h":2} +{"name":"메마른 바다 지도","refName":"Dry Sea Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/JGfVZsB.jpg"}} +{"name":"사구 지도","refName":"Dunes Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/88Gm4iq.jpg"}} +{"name":"던전 지도","refName":"Dungeon Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/GRI8xIf.jpg"}} +{"name":"황혼의 검","refName":"Dusk Blade","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDgiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/406f7aec97/OneHandSword8.png","w":2,"h":3} +{"name":"황혼걸음 슬리퍼","refName":"Duskwalk Slippers","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[15,18]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SaXR1YWxJbnRCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/dfe31cc493/RitualIntBoots.png","w":2,"h":2} +{"name":"독수리 클로","refName":"Eagle Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3OCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/3cc3260177/Claw8.png","w":2,"h":2} +{"name":"칠흑의 거대 방패","refName":"Ebony Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[357,411]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d95a5bfcf0/ShieldStr4.png","w":2,"h":4} +{"name":"월식 지팡이","refName":"Eclipse Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY4IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/edbdbaa9ba/Staff8.png","w":2,"h":4} +{"name":"장어가죽 장화","refName":"Eelskin Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[129,148]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/37d9d4d590/BootsDex2.png","w":2,"h":2} +{"name":"장어가죽 장갑","refName":"Eelskin Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[125,148]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/b051b2c9f5/GlovesDex2.png","w":2,"h":2} +{"name":"장어가죽 밑창","refName":"Eelskin Sole","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRWVsc2tpblNvbGUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/38cd92718b/EelskinSole.png","w":2,"h":2} +{"name":"장어가죽 튜닉","refName":"Eelskin Tunic","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[373,429]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/57409a1844/BodyDex1B.png","w":2,"h":3} +{"name":"아인하르의 기억","refName":"Einhar's Memory","namespace":"ITEM","craftable":{"category":"Memory Line"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWVtb3J5TGluZS9FaW5oYXJNZW1vcnlJdGVtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5e4c7a8f89/EinharMemoryItem.png"} +{"name":"장로의 검","refName":"Elder Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDYiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/c12083d6b6/OneHandSword6.png","w":2,"h":3} +{"name":"섬뜩한 카오스 오브","refName":"Eldritch Chaos Orb","namespace":"ITEM","tradeTag":"eldritch-chaos-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRWxkcml0Y2hDaGFvc09yYiIsInNjYWxlIjoxfV0/98091fc653/EldritchChaosOrb.png"} +{"name":"섬뜩한 엑잘티드 오브","refName":"Eldritch Exalted Orb","namespace":"ITEM","tradeTag":"eldritch-exalted-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRWxkcml0Y2hFeGFsdGVkT3JiIiwic2NhbGUiOjF9XQ/2da131e652/EldritchExaltedOrb.png"} +{"name":"섬뜩한 눈","refName":"Eldritch Eye","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0VsZGVyVGVudGFjbGVNaW5pb25MYXJnZUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/19b67ee9a1/ElderTentacleMinionLargeCorpse.png","w":3,"h":2} +{"name":"섬뜩한 인큐베이터","refName":"Eldritch Incubator","namespace":"ITEM","tradeTag":"eldritch-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uTWFwcyIsInNjYWxlIjoxfV0/3d07c20be0/IncubationMaps.png"} +{"name":"섬뜩한 소멸의 오브","refName":"Eldritch Orb of Annulment","namespace":"ITEM","tradeTag":"eldritch-orb-of-annulment","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRWxkcml0Y2hBbm51bG1lbnRPcmIiLCJzY2FsZSI6MX1d/b58add03eb/EldritchAnnulmentOrb.png"} +{"name":"전격 주문서","refName":"Electroshock Scroll","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9IYXJiaW5nZXJUb2tlblN3b3JkIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/e3cec18702/HarbingerTokenSword.png"} +{"name":"고상한 펜싱 검","refName":"Elegant Foil","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjciLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/97d714e903/Rapier7.png","h":4} +{"name":"고상한 고리 갑옷","refName":"Elegant Ringmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[377,433],"es":[92,105]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/3247afb396/BodyStrInt1C.png","w":2,"h":3} +{"name":"고상한 원형 방패","refName":"Elegant Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[148,170],"ev":[148,170]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/b81ab44241/ShieldStrDex5.png","w":2,"h":3} +{"name":"고상한 검","refName":"Elegant Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDciLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9ac21989c5/OneHandSword7.png","w":2,"h":3} +{"name":"수놓은 장갑","refName":"Embroidered Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[25,28]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/484e9bd879/GlovesInt4.png","w":2,"h":2} +{"name":"유약 도색 브로치","refName":"Enamel Brooch","namespace":"ITEM","craftable":{"category":"Heist Brooch"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRW5hbWVsQnJvb2NoIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/0d1e9c956e/EnamelBrooch.png"} +{"name":"유약 도색 버클러","refName":"Enameled Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[311,349]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/10a005f978/ShieldDex3.png","w":2,"h":2} +{"name":"인챈트된 인큐베이터","refName":"Enchanted Incubator","namespace":"ITEM","tradeTag":"enchanted-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uTGFieXJpbnRoIiwic2NhbGUiOjF9XQ/755a289f04/IncubationLabyrinth.png"} +{"name":"흡열성 버클러","refName":"Endothermic Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[75,86]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0RleEhlaXN0U2hpZWxkIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/484b5bba00/DexHeistShield.png","w":2,"h":2} +{"name":"기술자의 오브","refName":"Engineer's Orb","namespace":"ITEM","tradeTag":"engineers","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRW5naW5lZXJzT3JiIiwic2NhbGUiOjF9XQ/114b671d41/EngineersOrb.png"} +{"name":"기술자의 파편","refName":"Engineer's Shard","namespace":"ITEM","tradeTag":"engineers-shard","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRW5naW5lZXJzU2hhcmQiLCJzY2FsZSI6MX1d/9fe1384ff9/EngineersShard.png"} +{"name":"아로새긴 대검","refName":"Engraved Greatsword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/828ca9e450/TwoHandSword5.png","w":2,"h":4} +{"name":"아로새긴 손도끼","refName":"Engraved Hatchet","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlOSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/8f1da4998f/OneHandAxe9.png","w":2,"h":3} +{"name":"아로새긴 결전","refName":"Engraved Ultimatum","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{}} +{"name":"아로새긴 마법봉","refName":"Engraved Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kMyIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/6322bd53f5/Wand3.png","h":3} +{"name":"자극의 오브","refName":"Enkindling Orb","namespace":"ITEM","tradeTag":"enkindling-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXhwZWRpdGlvbi9GbGFza1BsYXRlIiwic2NhbGUiOjF9XQ/7c1a584a8d/FlaskPlate.png"} +{"name":"에쉬의 균열석","refName":"Esh's Breachstone","namespace":"ITEM","tradeTag":"eshs-breachstone","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaEZyYWdtZW50c0xpZ2h0bmluZyIsInNjYWxlIjoxfV0/a281438d22/BreachFragmentsLightning.png"} +{"name":"에쉬의 결함 없는 균열석","refName":"Esh's Flawless Breachstone","namespace":"ITEM","tradeTag":"eshs-flawless-breachstone","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0VzaHNGbGF3bGVzc0JyZWFjaHN0b25lIiwic2NhbGUiOjF9XQ/bd6b28f988/EshsFlawlessBreachstone.png"} +{"name":"첩보 변장 도구","refName":"Espionage Disguise Kit","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvUmVnaWNpZGVEaXNndWlzZUtpdCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/e52bff7d39/RegicideDisguiseKit.png","w":2,"h":2} +{"name":"섬망의 에센스","refName":"Essence of Delirium","namespace":"ITEM","tradeTag":"essence-of-delirium","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9NYWRuZXNzMSIsInNjYWxlIjoxfV0/e7a9b32a18/Madness1.png"} +{"name":"경악의 에센스","refName":"Essence of Horror","namespace":"ITEM","tradeTag":"essence-of-horror","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Ib3Jyb3IxIiwic2NhbGUiOjF9XQ/8be6722c5e/Horror1.png"} +{"name":"발작의 에센스","refName":"Essence of Hysteria","namespace":"ITEM","tradeTag":"essence-of-hysteria","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9UZXJyb3IxIiwic2NhbGUiOjF9XQ/10ab1f6037/Terror1.png"} +{"name":"광기의 에센스","refName":"Essence of Insanity","namespace":"ITEM","tradeTag":"essence-of-insanity","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9JbnNhbml0eTEiLCJzY2FsZSI6MX1d/8086f1f3e5/Insanity1.png"} +{"name":"에센스 갑충석","refName":"Essence Scarab","namespace":"ITEM","tradeTag":"essence-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJFc3NlbmNlIiwic2NhbGUiOjF9XQ/4c99af0610/LesserScarabEssence.png"} +{"name":"적응의 에센스 갑충석","refName":"Essence Scarab of Adaptation","namespace":"ITEM","tradeTag":"essence-scarab-of-adaptation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRUaWVyNFNjYXJhYkVzc2VuY2UiLCJzY2FsZSI6MX1d/56560d691e/AltTier4ScarabEssence.png"} +{"name":"상승의 에센스 갑충석","refName":"Essence Scarab of Ascent","namespace":"ITEM","tradeTag":"essence-scarab-of-ascent","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJFc3NlbmNlIiwic2NhbGUiOjF9XQ/3a091b8052/NormalScarabEssence.png"} +{"name":"석회화의 에센스 갑충석","refName":"Essence Scarab of Calcification","namespace":"ITEM","tradeTag":"essence-scarab-of-calcification","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkVzc2VuY2UiLCJzY2FsZSI6MX1d/d7e7534a07/Tier4ScarabEssence.png"} +{"name":"안정의 에센스 갑충석","refName":"Essence Scarab of Stability","namespace":"ITEM","tradeTag":"essence-scarab-of-stability","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiRXNzZW5jZSIsInNjYWxlIjoxfV0/28e74041a5/GreaterScarabEssence.png"} +{"name":"필수 열쇠고리","refName":"Essential Keyring","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRXNzZW50aWFsS2V5cmluZyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/03fd96aa15/EssentialKeyring.png","w":2,"h":2} +{"name":"에스톡","refName":"Estoc","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjQiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/dc28604809/Rapier4.png","h":4} +{"name":"강어귀 지도","refName":"Estuary Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/LNLcK2Z.jpg"}} +{"name":"조각된 대검","refName":"Etched Greatsword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/828ca9e450/TwoHandSword5.png","w":2,"h":4} +{"name":"조각된 손도끼","refName":"Etched Hatchet","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlOSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/8f1da4998f/OneHandAxe9.png","w":2,"h":3} +{"name":"조각된 연모양 방패","refName":"Etched Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[127,142],"es":[27,30]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/996436dc6d/ShieldStrInt2.png","w":2,"h":3} +{"name":"영원의 기병 투구","refName":"Eternal Burgonet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[373,429]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjExIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/d288bbe11b/HelmetStr11.png","w":2,"h":2} +{"name":"영원의 생명력 플라스크","refName":"Eternal Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrMTIiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/7be2c09015/lifeflask12.png","h":2} +{"name":"영원의 마나 플라스크","refName":"Eternal Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrMTIiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/6146902646/manaflask12.png","h":2} +{"name":"영원의 검","refName":"Eternal Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDciLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9ac21989c5/OneHandSword7.png","w":2,"h":3} +{"name":"불예측의 막대","refName":"Eventuality Rod","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGVpc3RXYXJTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/c9454891da/HeistWarStaff.png","w":2,"h":4} +{"name":"엑잘티드 오브","refName":"Exalted Orb","namespace":"ITEM","tradeTag":"exalted","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lBZGRNb2RUb1JhcmUiLCJzY2FsZSI6MX1d/33f2656aea/CurrencyAddModToRare.png"} +{"name":"엑잘티드 파편","refName":"Exalted Shard","namespace":"ITEM","tradeTag":"exalted-shard","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXhhbHRlZFNoYXJkIiwic2NhbGUiOjF9XQ/b9e4013af5/ExaltedShard.png"} +{"name":"발굴터 지도","refName":"Excavation Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/A3E80Du.jpg"}} +{"name":"특출난 섬뜩한 불씨","refName":"Exceptional Eldritch Ember","namespace":"ITEM","tradeTag":"exceptional-eldritch-ember","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2xlYW5zaW5nRmlyZU9yYlJhbms0Iiwic2NhbGUiOjF9XQ/c2c828fa16/CleansingFireOrbRank4.png"} +{"name":"특출난 섬뜩한 영액","refName":"Exceptional Eldritch Ichor","namespace":"ITEM","tradeTag":"exceptional-eldritch-ichor","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVGFuZ2xlT3JiUmFuazQiLCJzY2FsZSI6MX1d/dcf73ecd8e/TangleOrbRank4.png"} +{"name":"기진맥진한 영혼 방패","refName":"Exhausting Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[16,19]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0ludEhlaXN0U2hpZWxkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f58639d2f4/IntHeistShield.png","w":2,"h":3} +{"name":"발열성 거대 방패","refName":"Exothermic Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[87,100]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0hlaXN0U2hpZWxkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/e65fb9efea/HeistShield.png","w":2,"h":3} +{"name":"특이한 주화","refName":"Exotic Coinage","namespace":"ITEM","tradeTag":"exotic-coinage","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXhwZWRpdGlvbi9CYXJ0ZXJSZWZyZXNoQ3VycmVuY3kiLCJzY2FsZSI6MX1d/0542d74d3c/BarterRefreshCurrency.png"} +{"name":"탐험 일지","refName":"Expedition Logbook","namespace":"ITEM","craftable":{"category":"Expedition Logbook"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FeHBlZGl0aW9uQ2hyb25pY2xlMyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/2802fe605e/ExpeditionChronicle3.png"} +{"name":"탐험 갑충석","refName":"Expedition Scarab","namespace":"ITEM","tradeTag":"expedition-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJFeHBlZGl0aW9uIiwic2NhbGUiOjF9XQ/fa49f53ac8/LesserScarabExpedition.png"} +{"name":"고고학의 탐험 갑충석","refName":"Expedition Scarab of Archaeology","namespace":"ITEM","tradeTag":"expedition-scarab-of-archaeology","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkV4cGVkaXRpb24iLCJzY2FsZSI6MX1d/6bd03eec75/Tier4ScarabExpedition.png"} +{"name":"룬 탐색의 탐험 갑충석","refName":"Expedition Scarab of Runefinding","namespace":"ITEM","tradeTag":"expedition-scarab-of-runefinding","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJFeHBlZGl0aW9uIiwic2NhbGUiOjF9XQ/a751f91a8e/NormalScarabExpedition.png"} +{"name":"시인의 탐험 갑충석","refName":"Expedition Scarab of the Skald","namespace":"ITEM","tradeTag":"expedition-scarab-of-the-skald","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRHcmVhdGVyU2NhcmFiRXhwZWRpdGlvbiIsInNjYWxlIjoxfV0/cbeb3c974b/AltGreaterScarabExpedition.png"} +{"name":"베리시움 화약의 탐험 갑충석","refName":"Expedition Scarab of Verisium Powder","namespace":"ITEM","tradeTag":"expedition-scarab-of-verisium-powder","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiRXhwZWRpdGlvbiIsInNjYWxlIjoxfV0/1bf78dd20a/GreaterScarabExpedition.png"} +{"name":"탐험가의 정찰 보고서","refName":"Explorer's Scouting Report","namespace":"ITEM","tradeTag":"explorers-scouting-report","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png"} +{"name":"정교한 검","refName":"Exquisite Blade","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDgiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/decb6a0e86/TwoHandSword8.png","w":2,"h":4} +{"name":"정교한 가죽 갑옷","refName":"Exquisite Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[704,810]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/47360dcc4a/BodyDex1C.png","w":2,"h":3} +{"name":"눈 후비개","refName":"Eye Gouger","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/1d5586ea56/Claw5.png","w":2,"h":2} +{"name":"에조미어 도끼","refName":"Ezomyte Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/24ac93d9cd/TwoHandAxe4.png","w":2,"h":4} +{"name":"에조미어 검","refName":"Ezomyte Blade","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/294bd80312/TwoHandSword4.png","w":2,"h":4} +{"name":"에조미어 기병 투구","refName":"Ezomyte Burgonet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[346,381]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/b814dc309a/HelmetStr9.png","w":2,"h":2} +{"name":"에조미어 단검","refName":"Ezomyte Dagger","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjUiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/3431875aaf/Dagger5.png","h":3} +{"name":"에조미어 가시 방패","refName":"Ezomyte Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[181,209],"es":[37,43]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/36d311e1dc/ShieldDexInt3.png","w":2,"h":2} +{"name":"에조미어 지팡이","refName":"Ezomyte Staff","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY0IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/85c22bd16b/Staff4.png","w":2,"h":4} +{"name":"에조미어 거대 방패","refName":"Ezomyte Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[412,474]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/ee43ed9cee/ShieldStr5.png","w":2,"h":4} +{"name":"연마한 화석","refName":"Faceted Fossil","namespace":"ITEM","tradeTag":"faceted-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvRmFjZXRlZEZvc3NpbCIsInNjYWxlIjoxfV0/473889cafb/FacetedFossil.png"} +{"name":"무아지경의 렌즈","refName":"Facetor's Lens","namespace":"ITEM","tradeTag":"facetors","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lHZW1FeHBlcmllbmNlIiwic2NhbGUiOjF9XQ/7011b1ed48/CurrencyGemExperience.png"} +{"name":"공장 지도","refName":"Factory Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/zOsCvpG.jpg"}} +{"name":"충실한 투구","refName":"Faithful Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[268,308],"es":[54,62]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f6a9c01543/HelmetStrInt4.png","w":2,"h":2} +{"name":"가문의 계약","refName":"Familial Contract","namespace":"ITEM","craftable":{"uniqueOnly":true,"category":"Heist Contract"},"icon":""} +{"name":"장식용 펜싱 검","refName":"Fancy Foil","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjciLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/97d714e903/Rapier7.png","h":4} +{"name":"송곳니턱 부적","refName":"Fangjaw Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbkJsYWNrNSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/48fab16b73/TalismanBlack5.png"} +{"name":"판의 뿔","refName":"Faun's Horn","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kMiIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/896948eee2/Wand2.png","h":3} +{"name":"깃 화살통","refName":"Feathered Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9GZWF0aGVyZWRBcnJvd1F1aXZlciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/76aab0d0b0/FeatheredArrowQuiver.png","w":2,"h":3} +{"name":"검사 샐릿","refName":"Fencer Helm","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[117,134],"ev":[117,134]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/07fb25d634/HelmetStrDex6.png","w":2,"h":2} +{"name":"야생의 인큐베이터","refName":"Feral Incubator","namespace":"ITEM","tradeTag":"feral-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQmVzdGlhcnkiLCJzY2FsZSI6MX1d/7c98be601d/IncubationBestiary.png"} +{"name":"풍요의 기폭제","refName":"Fertile Catalyst","namespace":"ITEM","tradeTag":"fertile-catalyst","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL0ZlcnRpbGVDYXRhbHlzdCIsInNjYWxlIjoxfV0/74603722ac/FertileCatalyst.png"} +{"name":"축제용 가면","refName":"Festival Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[77,88],"es":[17,19]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/bfdfda111a/HelmetDexInt4.png","w":2,"h":2} +{"name":"변화무쌍한 정령의 칼","refName":"Fickle Spiritblade","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0hlaXN0T25lSGFuZFN3b3JkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/6b56c4c406/HeistOneHandSword.png","w":2,"h":3} +{"name":"야전 라멜라","refName":"Field Lamellar","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[194,223],"ev":[194,223]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyNEEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/7e1c29aacf/BodyStr4A.png","w":2,"h":3} +{"name":"들판 지도","refName":"Fields Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/ZBYW0jj.jpg"}} +{"name":"마귀 단검","refName":"Fiend Dagger","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjgiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/e0bade03f8/Dagger8.png","h":3} +{"name":"불타는 식인종","refName":"Fiery Cannibal","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0ZpcmVGdXJ5Q29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/458c4ab871/FireFuryCorpse.png","w":3,"h":2} +{"name":"양질의 환영의 오브","refName":"Fine Delirium Orb","namespace":"ITEM","tradeTag":"fine-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJDdXJyZW5jeSIsInNjYWxlIjoxfV0/a0ccb93233/DeliriumOrbCurrency.png"} +{"name":"양질의 인큐베이터","refName":"Fine Incubator","namespace":"ITEM","tradeTag":"fine-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQ3VycmVuY3kiLCJzY2FsZSI6MX1d/e8a6d32623/IncubationCurrency.png"} +{"name":"정교한 자물쇠 따개","refName":"Fine Lockpick","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRmluZUxvY2twaWNrIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/c894ea53b2/FineLockpick.png","w":2,"h":2} +{"name":"정교한 감지 부적","refName":"Fine Sensing Charm","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRmluZVNlbnNpbmdDaGFybSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/5725075134/FineSensingCharm.png","w":2,"h":2} +{"name":"정교한 숫돌","refName":"Fine Sharpening Stone","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRmluZVNoYXJwZW5pbmdTdG9uZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/eee568b5c8/FineSharpeningStone.png","w":2,"h":2} +{"name":"손가락 없는 실크 장갑","refName":"Fingerless Silk Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[45,52]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRmluZ2VybGVzc1NpbGtHbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/8853f1e934/FingerlessSilkGloves.png","w":2,"h":2} +{"name":"전나무 원형 방패","refName":"Fir Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[29,37],"ev":[29,37]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9cccab30a2/ShieldStrDex2.png","w":2,"h":3} +{"name":"불화살통","refName":"Fire Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJGaXJlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/0537b8437d/QuiverFire.png","w":2,"h":3} +{"name":"낚싯대","refName":"Fishing Rod","namespace":"ITEM","craftable":{"category":"Fishing Rod"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9GaXNoaW5nUm9kcy9GaXNoaW5nUm9kMSIsInciOjEsImgiOjQsInNjYWxlIjoxfV0/d2a4a8b57a/FishingRod1.png","h":4} +{"name":"생선 비늘 건틀릿","refName":"Fishscale Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[9,12],"ev":[9,12]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyRGV4MSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ba243000da/GlovesStrDex1.png","w":2,"h":2} +{"name":"테두리 화살촉","refName":"Flanged Arrowhead","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQXJyb3doZWFkRmxhbmdlZCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/2f2fd20710/ArrowheadFlanged.png","w":2,"h":2} +{"name":"테두리 송곳","refName":"Flanged Drill","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRHJpbGxBZHYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/bf2c8d3b0b/DrillAdv.png","w":2,"h":2} +{"name":"테두리 철퇴","refName":"Flanged Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U2IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/a2a18837d4/OneHandMace6.png","w":2,"h":3} +{"name":"조명탄 철퇴","refName":"Flare Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvSGVpc3RPbmVIYW5kTWFjZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/48ff9d9c4c/HeistOneHandMace.png","w":2,"h":3} +{"name":"번쩍이는 불꽃 칼","refName":"Flashfire Blade","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0hlaXN0UnVuZURhZ2dlciIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/1760d17051/HeistRuneDagger.png","h":3} +{"name":"박피 단도","refName":"Flaying Knife","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjIiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/c2c0a06eec/Dagger2.png","h":3} +{"name":"살점 거열기","refName":"Fleshripper","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlOCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/ba1d6734bb/TwoHandAxe8.png","w":2,"h":4} +{"name":"일렁이는 화염 칼","refName":"Flickerflame Blade","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0hlaXN0UnVuZURhZ2dlciIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/1760d17051/HeistRuneDagger.png","h":3} +{"name":"물에 잠긴 광산 지도","refName":"Flooded Mine Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/RYNfkXJ.jpg"}} +{"name":"홈이 긴 배서닛","refName":"Fluted Bascinet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[160,189],"ev":[160,189]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/cc388acb00/HelmetStrDex8.png","w":2,"h":2} +{"name":"초점석","refName":"Focal Stone","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRm9jYWxNYWdpY1N0b25lIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/65ffdbcd59/FocalMagicStone.png","w":2,"h":2} +{"name":"집중된 목걸이","refName":"Focused Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9IZWlzdEFtdWxldDFTaWx2ZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MSwiZWxkZXIiOnRydWV9XQ/2795ad9a97/HeistAmulet1Silver.png"} +{"name":"잎사귀 브로치","refName":"Foliate Brooch","namespace":"ITEM","craftable":{"category":"Heist Brooch"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRm9saWF0ZUJyb29jaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/72a57eb200/FoliateBrooch.png"} +{"name":"보병 검","refName":"Footman Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/28f44a7a0c/TwoHandSword3.png","w":2,"h":4} +{"name":"금단의 계약","refName":"Forbidden Contract","namespace":"ITEM","craftable":{"uniqueOnly":true,"category":"Heist Contract"},"icon":""} +{"name":"금지된 책","refName":"Forbidden Tome","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2FuY3R1bS9TYW5jdHVtS2V5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d0326cac9a/SanctumKey.png"} +{"name":"금단의 숲 지도","refName":"Forbidden Woods Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/5Jl2OoA.jpg"}} +{"name":"불길한 환영의 오브","refName":"Foreboding Delirium Orb","namespace":"ITEM","tradeTag":"foreboding-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJIYXJiaW5nZXIiLCJzY2FsZSI6MX1d/a10060782a/DeliriumOrbHarbinger.png"} +{"name":"불길한 인큐베이터","refName":"Foreboding Incubator","namespace":"ITEM","tradeTag":"foreboding-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uSGFyYmluZ2VyIiwic2NhbGUiOjF9XQ/11f4bcf0ee/IncubationHarbinger.png"} +{"name":"숲 호랑이","refName":"Forest Tiger","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1RpZ2VyQmVzdGlhcnlTcGlyaXRCb3NzQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/6a46a7dc19/TigerBestiarySpiritBossCorpse.png","w":3,"h":2} +{"name":"숲 전사","refName":"Forest Warrior","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zpa2luZ01hcEJvc3NDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/cc6f33141d/VikingMapBossCorpse.png","w":3,"h":2} +{"name":"불사조의 대장간 지도","refName":"Forge of the Phoenix Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhczJNYXBzL05ldy9QaG9lbml4IiwidyI6MSwiaCI6MSwic2NhbGUiOjEsIm1uIjoxNCwibXQiOjAsIm1pIjoxfV0/b71e695513/Phoenix.png","map":{"screenshot":"https://i.imgur.com/Oiqrl9M.jpg"}} +{"name":"잊혀진 성유물 보관실 열쇠","refName":"Forgotten Reliquary Key","namespace":"ITEM","tradeTag":"forgotten-reliquary-key","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WZW5hcml1c0ZvaWwiLCJzY2FsZSI6MX1d/ba2d66a470/VenariusFoil.png"} +{"name":"갈라지는 강 지도","refName":"Forking River Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/KLlqoMv.jpg"}} +{"name":"요새 지도","refName":"Fortress Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{}} +{"name":"화석화된 환영의 오브","refName":"Fossilised Delirium Orb","namespace":"ITEM","tradeTag":"fossilised-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJGb3NzaWxzIiwic2NhbGUiOjF9XQ/ce824132c2/DeliriumOrbFossils.png"} +{"name":"화석화된 인큐베이터","refName":"Fossilised Incubator","namespace":"ITEM","tradeTag":"fossilised-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRm9zc2lscyIsInNjYWxlIjoxfV0/bb7663432d/IncubationFossils.png"} +{"name":"화석 영혼 방패","refName":"Fossilised Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[49,55]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f0b78ea97c/ShieldInt3.png","w":2,"h":2} +{"name":"사악한 지팡이","refName":"Foul Staff","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY3IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/c1ded974d5/Staff7.png","w":2,"h":4} +{"name":"주물 활","refName":"Foundry Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0hlaXN0Qm93RmlyZSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/30526435da/HeistBowFire.png","w":2,"h":4} +{"name":"주조소 지도","refName":"Foundry Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/EeefLOA.jpg"}} +{"name":"여우가죽 밑창","refName":"Foxhide Sole","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRm94aGlkZVNvbGUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/55215f9d79/FoxhideSole.png","w":2,"h":2} +{"name":"분열된 화석","refName":"Fractured Fossil","namespace":"ITEM","tradeTag":"fractured-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvRnJhY3R1cmVkRm9zc2lsIiwic2NhbGUiOjF9XQ/328d2256ce/FracturedFossil.png"} +{"name":"분열의 오브","refName":"Fracturing Orb","namespace":"ITEM","tradeTag":"fracturing-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRnJhY3R1cmluZ09yYkNvbWJpbmVkIiwic2NhbGUiOjF9XQ/3fb18e8a5b/FracturingOrbCombined.png"} +{"name":"분열의 파편","refName":"Fracturing Shard","namespace":"ITEM","tradeTag":"fracturing-shard","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRnJhY3R1cmluZ09yYlNoYXJkIiwic2NhbGUiOjF9XQ/34fdc6a813/FracturingOrbShard.png"} +{"name":"위압의 조각","refName":"Fragment of Constriction","namespace":"ITEM","tradeTag":"fragment-of-constriction","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcEd1YXJkaWFuSG9seSIsInNjYWxlIjoxfV0/b9ef66f983/AtlasMapGuardianHoly.png"} +{"name":"허무의 조각","refName":"Fragment of Emptiness","namespace":"ITEM","tradeTag":"fragment-of-emptiness","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyRWxkZXIwMiIsInNjYWxlIjoxfV0/085f7abd0b/UberElder02.png"} +{"name":"조종의 조각","refName":"Fragment of Enslavement","namespace":"ITEM","tradeTag":"fragment-of-enslavement","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcEd1YXJkaWFuRmlyZSIsInNjYWxlIjoxfV0/7497ffd64d/AtlasMapGuardianFire.png"} +{"name":"박멸의 조각","refName":"Fragment of Eradication","namespace":"ITEM","tradeTag":"fragment-of-eradication","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcEd1YXJkaWFuTGlnaHRuaW5nIiwic2NhbGUiOjF9XQ/e6e792e80e/AtlasMapGuardianLightning.png"} +{"name":"지식의 조각","refName":"Fragment of Knowledge","namespace":"ITEM","tradeTag":"fragment-of-knowledge","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyRWxkZXIwNCIsInNjYWxlIjoxfV0/096ec774b0/UberElder04.png"} +{"name":"정화의 조각","refName":"Fragment of Purification","namespace":"ITEM","tradeTag":"fragment-of-purification","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcEd1YXJkaWFuQ2hhb3MiLCJzY2FsZSI6MX1d/7938e7a7ee/AtlasMapGuardianChaos.png"} +{"name":"형성의 조각","refName":"Fragment of Shape","namespace":"ITEM","tradeTag":"fragment-of-shape","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyRWxkZXIwMyIsInNjYWxlIjoxfV0/4a8c196777/UberElder03.png"} +{"name":"공포의 조각","refName":"Fragment of Terror","namespace":"ITEM","tradeTag":"fragment-of-terror","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyRWxkZXIwMSIsInNjYWxlIjoxfV0/322988dd38/UberElder01.png"} +{"name":"키메라의 지도 조각","refName":"Fragment of the Chimera","namespace":"ITEM","tradeTag":"chimer","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcHMvRnJhZ21lbnRDaGltZXJhIiwic2NhbGUiOjF9XQ/191b838e55/FragmentChimera.png"} +{"name":"히드라의 지도 조각","refName":"Fragment of the Hydra","namespace":"ITEM","tradeTag":"hydra","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcHMvRnJhZ21lbnRIeWRyYSIsInNjYWxlIjoxfV0/975dcd6b1c/FragmentHydra.png"} +{"name":"미노타우로스의 지도 조각","refName":"Fragment of the Minotaur","namespace":"ITEM","tradeTag":"minot","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcHMvRnJhZ21lbnRNaW5vdGF1ciIsInNjYWxlIjoxfV0/e976236f7a/FragmentMinotaur.png"} +{"name":"불사조의 지도 조각","refName":"Fragment of the Phoenix","namespace":"ITEM","tradeTag":"phoenix","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcHMvRnJhZ21lbnRQaG9lbml4Iiwic2NhbGUiOjF9XQ/3091d971ad/FragmentPhoenix.png"} +{"name":"파쇄 주문서","refName":"Fragmentation Scroll","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9IYXJiaW5nZXJUb2tlblF1aXZlciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a6017fd37d/HarbingerTokenQuiver.png"} +{"name":"조각난 환영의 오브","refName":"Fragmented Delirium Orb","namespace":"ITEM","tradeTag":"fragmented-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJGcmFnbWVudHMiLCJzY2FsZSI6MX1d/a0b9780684/DeliriumOrbFragments.png"} +{"name":"조각난 인큐베이터","refName":"Fragmented Incubator","namespace":"ITEM","tradeTag":"fragmented-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRnJhZ21lbnRzIiwic2NhbGUiOjF9XQ/a3cf9d4a10/IncubationFragments.png"} +{"name":"분열 화살촉","refName":"Fragmenting Arrowhead","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQXJyb3doZWFkRnJhZ21lbnRpbmciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/14b9a9dba3/ArrowheadFragmenting.png","w":2,"h":2} +{"name":"섬뜩한 클로","refName":"Fright Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3OCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/3cc3260177/Claw8.png","w":2,"h":2} +{"name":"섬뜩한 대형 망치","refName":"Fright Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U3IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/d7e632f004/TwoHandMace7.png","w":2,"h":4} +{"name":"차디찬 화석","refName":"Frigid Fossil","namespace":"ITEM","tradeTag":"frigid-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvQW1iZXJGYW5nIiwic2NhbGUiOjF9XQ/2e63199a3e/AmberFang.png"} +{"name":"개척자 가죽 갑옷","refName":"Frontier Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[412,495]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4M0IiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/db900972c7/BodyDex3B.png","w":2,"h":3} +{"name":"얼어붙은 오막 지도","refName":"Frozen Cabins Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/eAML7S2.jpg"}} +{"name":"얼어붙은 식인종","refName":"Frozen Cannibal","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0hhaWxyYWtlQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/a3828d3005/HailrakeCorpse.png","w":3,"h":2} +{"name":"도망자 장화","refName":"Fugitive Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[112,129],"es":[32,37]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9IYWxmVG9uZWRCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/3bfd47b73a/HalfTonedBoots.png","w":2,"h":2} +{"name":"섬전암 팅크","refName":"Fulgurite Tincture","namespace":"ITEM","craftable":{"category":"Tincture"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL1Nob2NrU2FwIiwidyI6MSwiaCI6Miwic2NhbGUiOjF9XQ/b5365ad256/ShockSap.png","h":2} +{"name":"전신 사슬 갑옷","refName":"Full Chainmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[178,199],"es":[38,43]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5a1804c81b/BodyStrInt2C.png","w":2,"h":3} +{"name":"전신 용 비늘 갑옷","refName":"Full Dragonscale","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[470,541],"ev":[373,429]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/769e4eedeb/BodyStrDex1C.png","w":2,"h":3} +{"name":"전신 가죽 갑옷","refName":"Full Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[284,327]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/47360dcc4a/BodyDex1C.png","w":2,"h":3} +{"name":"전신 판금 갑옷","refName":"Full Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[284,319]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/94a3d5d98e/BodyStr1C.png","w":2,"h":3} +{"name":"전신 고리 갑옷","refName":"Full Ringmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[156,180],"es":[34,39]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/3247afb396/BodyStrInt1C.png","w":2,"h":3} +{"name":"전신 미늘 갑옷","refName":"Full Scale Armour","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[156,180],"ev":[156,180]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/769e4eedeb/BodyStrDex1C.png","w":2,"h":3} +{"name":"전신 아룡 비늘 갑옷","refName":"Full Wyrmscale","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[254,292],"ev":[254,292]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/769e4eedeb/BodyStrDex1C.png","w":2,"h":3} +{"name":"전체 비룡비늘 갑옷","refName":"Full Wyvernscale","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[545,627],"ev":[545,627]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/769e4eedeb/BodyStrDex1C.png","w":2,"h":3} +{"name":"근본적인 화석","refName":"Fundamental Fossil","namespace":"ITEM","tradeTag":"fundamental-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvRW5jcnVzdGVkRm9zc2lsIiwic2NhbGUiOjF9XQ/17b85500f2/EncrustedFossil.png"} +{"name":"곰팡이 동혈 지도","refName":"Fungal Hollow Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/D4HiW8x.jpg"}} +{"name":"강풍 왕관","refName":"Gale Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[42,49],"es":[10,12]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludFIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/9da7af13c1/HelmetDexIntR.png","w":2,"h":2} +{"name":"정원 지도","refName":"Gardens Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/nnb6Fss.jpg"}} +{"name":"의사봉","refName":"Gavel","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U0IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/b0b1a18a0c/OneHandMace4.png","w":2,"h":3} +{"name":"세공사의 인큐베이터","refName":"Gemcutter's Incubator","namespace":"ITEM","tradeTag":"gemcutters-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uR2VtcyIsInNjYWxlIjoxfV0/7df785d740/IncubationGems.png"} +{"name":"세공사의 프리즘","refName":"Gemcutter's Prism","namespace":"ITEM","tradeTag":"gcp","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lHZW1RdWFsaXR5Iiwic2NhbGUiOjF9XQ/dbe9678a28/CurrencyGemQuality.png"} +{"name":"쌍생아 클로","refName":"Gemini Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3OSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/84eab7e6ba/Claw9.png","w":2,"h":2} +{"name":"원석 검","refName":"Gemstone Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDIiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/606dae9ce9/OneHandSword2.png","h":3} +{"name":"장군의 브리간딘","refName":"General's Brigandine","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[415,465],"ev":[415,465]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/60a6d7b58c/BodyStrDex2C.png","w":2,"h":3} +{"name":"장군의 투구","refName":"General's Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[431,496]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/b814dc309a/HelmetStr9.png","w":2,"h":2} +{"name":"정동석 지도","refName":"Geode Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/iGJ0Ohk.jpg"}} +{"name":"정동석 반지","refName":"Geodesic Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvSGVpc3RSaW5nMiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ef30e9565e/HeistRing2.png"} +{"name":"대지술사의 인큐베이터","refName":"Geomancer's Incubator","namespace":"ITEM","tradeTag":"geomancers-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQXJtb3VyIiwic2NhbGUiOjF9XQ/8cd6cd0531/IncubationArmour.png"} +{"name":"무시무시한 눈 주얼","refName":"Ghastly Eye Jewel","namespace":"ITEM","craftable":{"category":"Abyss Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0doYXN0bHlFeWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ed72511412/GhastlyEye.png"} +{"name":"빈민촌 지도","refName":"Ghetto Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/I8onB4N.jpg"}} +{"name":"초거대 생명력 플라스크","refName":"Giant Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrNiIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/13cd1c8a08/lifeflask6.png","h":2} +{"name":"초거대 마나 플라스크","refName":"Giant Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrNiIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/61993fdd4b/manaflask6.png","h":2} +{"name":"거인 처형자 투구","refName":"Giantslayer Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[582,669]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjExIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/d288bbe11b/HelmetStr11.png","w":2,"h":2} +{"name":"여신에게 바치는 선물","refName":"Gift to the Goddess","namespace":"ITEM","tradeTag":"offer-gift","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9MYWJ5cmludGhIYXJ2ZXN0SW5mdXNlZDEiLCJzY2FsZSI6MX1d/a5254d7933/LabyrinthHarvestInfused1.png"} +{"name":"도금된 도끼","refName":"Gilded Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/e2c34a0fb2/TwoHandAxe6.png","w":2,"h":4} +{"name":"도금 버클러","refName":"Gilded Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[225,259]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/ad59b083a6/ShieldDex6.png","w":2,"h":2} +{"name":"도금된 화석","refName":"Gilded Fossil","namespace":"ITEM","tradeTag":"gilded-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvU2FuY3RpZmllZEZvc3NpbCIsInNjYWxlIjoxfV0/7240f907f2/SanctifiedFossil.png"} +{"name":"도금 샐릿","refName":"Gilded Sallet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[90,97],"ev":[90,97]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e013d5e90a/HelmetStrDex4.png","w":2,"h":2} +{"name":"둘러싼 거대 방패","refName":"Girded Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[397,437]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d883ad1ca2/ShieldStr6.png","w":2,"h":4} +{"name":"빙하 지도","refName":"Glacier Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/t3Arfep.jpg"}} +{"name":"검투사 투구","refName":"Gladiator Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[174,195]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/38bfc94781/HelmetStr5.png","w":2,"h":2} +{"name":"검투사 판금 갑옷","refName":"Gladiator Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[738,848]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/429eee131d/BodyStr2C.png","w":2,"h":3} +{"name":"글라디우스","refName":"Gladius","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/936e00e3e6/OneHandSword4.png","w":2,"h":3} +{"name":"유리 단도","refName":"Glass Shank","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjEiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/aeb581e270/Dagger1.png","h":3} +{"name":"유리직공의 방울","refName":"Glassblower's Bauble","namespace":"ITEM","tradeTag":"bauble","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lGbGFza1F1YWxpdHkiLCJzY2FsZSI6MX1d/59e57027e5/CurrencyFlaskQuality.png"} +{"name":"영광의 가죽 갑옷","refName":"Glorious Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[451,519]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/47360dcc4a/BodyDex1C.png","w":2,"h":3} +{"name":"영광의 판금 갑옷","refName":"Glorious Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[776,892]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyM0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/09903268a5/BodyStr3C.png","w":2,"h":3} +{"name":"상형 문자 화석","refName":"Glyphic Fossil","namespace":"ITEM","tradeTag":"glyphic-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvR2x5cGhpY0Zvc3NpbCIsInNjYWxlIjoxfV0/3e6fb90b9d/GlyphicFossil.png"} +{"name":"울퉁불퉁한 나뭇가지","refName":"Gnarled Branch","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmYxIiwidyI6MSwiaCI6NCwic2NhbGUiOjF9XQ/c4f884eb64/Staff1.png","h":4} +{"name":"염소의 뿔","refName":"Goat's Horn","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kMiIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/896948eee2/Wand2.png","h":3} +{"name":"염소가죽 장화","refName":"Goathide Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[42,54]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/37d9d4d590/BootsDex2.png","w":2,"h":2} +{"name":"염소 가죽 버클러","refName":"Goathide Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[14,20]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f5469d2393/ShieldDex1.png","w":2,"h":2} +{"name":"염소가죽 장갑","refName":"Goathide Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[32,42]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/b051b2c9f5/GlovesDex2.png","w":2,"h":2} +{"name":"황금 목걸이","refName":"Gold Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQ2IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9c1412b6dd/Amulet6.png"} +{"name":"황금 플라스크","refName":"Gold Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvR29sZEZsYXNrIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/0669496bc6/GoldFlask.png","h":2} +{"name":"황금 반지","refName":"Gold Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/2164e44179/Ring4.png"} +{"name":"황금 검","refName":"Golden Blade","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0RlbWlnb2RzQXV0aG9yaXR5IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/be10fa5951/DemigodsAuthority.png","w":2,"h":3} +{"name":"황금 팔보호구","refName":"Golden Bracers","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRGVtaWdvZHNUb3VjaCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f0cc5eee0b/DemigodsTouch.png","w":2,"h":2} +{"name":"황금 브로치","refName":"Golden Brooch","namespace":"ITEM","craftable":{"category":"Heist Brooch"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvR29sZGVuQnJvb2NoIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ef48504f78/GoldenBrooch.png"} +{"name":"금색 버클러","refName":"Golden Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[354,407]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/ad59b083a6/ShieldDex6.png","w":2,"h":2} +{"name":"황금 칼리가","refName":"Golden Caligae","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9EZW1pZ29kc1N0cmlkZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/b58f10a704/DemigodsStride.png","w":2,"h":2} +{"name":"황금 불꽃","refName":"Golden Flame","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0RlbWlnb2RzU2hpZWxkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/c838c8c4a7/DemigodsShield.png","w":2,"h":3} +{"name":"황금 고리","refName":"Golden Hoop","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvRGVtaWdvZHNCYW5kIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ed7fdf1fb6/DemigodsBand.png"} +{"name":"황금 크리스","refName":"Golden Kris","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjYiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/5dcee0019c/Dagger6.png","h":3} +{"name":"황금 외투","refName":"Golden Mantle","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[75,86],"ev":[75,86],"es":[17,19]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9EZW1pZ29kc0FybW91ciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/c491aef3bb/DemigodsArmour.png","w":2,"h":3} +{"name":"황금 가면","refName":"Golden Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[96,103],"es":[20,22]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/445c130e44/HelmetDexInt5.png","w":2,"h":2} +{"name":"황금 오비","refName":"Golden Obi","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvRGVtaWJlbHQxIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/aff71be0d1/Demibelt1.png","w":2} +{"name":"금빛 성유","refName":"Golden Oil","namespace":"ITEM","tradeTag":"golden-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9Hb2xkZW5PaWwiLCJzY2FsZSI6MX1d/263a5d73da/GoldenOil.png"} +{"name":"황금 판금 갑옷","refName":"Golden Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[559,643]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/ca9e30f668/BodyStr1B.png","w":2,"h":3} +{"name":"황금 얼굴","refName":"Golden Visage","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0RlbWlnb2RzSW1tb3J0YWxpdHkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/49ce309a2f/DemigodsImmortality.png","w":2,"h":2} +{"name":"황금 화관","refName":"Golden Wreath","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0RlbWlnb2RzdHJpdW1waCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/4af6a35515/Demigodstriumph.png","w":2,"h":2} +{"name":"거인 건틀릿","refName":"Goliath Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[174,200]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyNCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/468f466568/GlovesStr4.png","w":2,"h":2} +{"name":"거인 각반","refName":"Goliath Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[177,209]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/82bedfd1e0/BootsStr4.png","w":2,"h":2} +{"name":"후비개","refName":"Gouger","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ac6e7ab61d/Claw3.png","w":2,"h":2} +{"name":"우아한 검","refName":"Graceful Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDciLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9ac21989c5/OneHandSword7.png","w":2,"h":3} +{"name":"우수한 섬뜩한 불씨","refName":"Grand Eldritch Ember","namespace":"ITEM","tradeTag":"grand-eldritch-ember","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2xlYW5zaW5nRmlyZU9yYlJhbmszIiwic2NhbGUiOjF9XQ/0486f1ac82/CleansingFireOrbRank3.png"} +{"name":"우수한 섬뜩한 영액","refName":"Grand Eldritch Ichor","namespace":"ITEM","tradeTag":"grand-eldritch-ichor","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVGFuZ2xlT3JiUmFuazMiLCJzY2FsZSI6MX1d/199f3b36f3/TangleOrbRank3.png"} +{"name":"거대 생명력 플라스크","refName":"Grand Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrNSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/52f0b42c56/lifeflask5.png","h":2} +{"name":"거대 마나 플라스크","refName":"Grand Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrNSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/035910bcbc/manaflask5.png","h":2} +{"name":"우수한 고리 갑옷","refName":"Grand Ringmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[545,627],"es":[110,127]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/3247afb396/BodyStrInt1C.png","w":2,"h":3} +{"name":"명인 열쇠고리","refName":"Grandmaster Keyring","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvR3JhbmRtYXN0ZXJLZXlyaW5nIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/0c53c85ef3/GrandmasterKeyring.png","w":2,"h":2} +{"name":"화강암 플라스크","refName":"Granite Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvZ3Jhbml0ZSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/101bce8899/granite.png","h":2} +{"name":"격투자","refName":"Grappler","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDkiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/d11450350f/OneHandSword9.png","w":2,"h":3} +{"name":"탐욕스러운 사슬옷","refName":"Grasping Mail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[217,250],"ev":[217,250],"es":[44,51]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9HcmFzcGluZ01haWwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/ec1ff98d3c/GraspingMail.png","w":2,"h":3} +{"name":"무덤 고랑 지도","refName":"Grave Trough Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/ee5davj.jpg"}} +{"name":"묘지 지도","refName":"Graveyard Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/gm0UolB.jpg"}} +{"name":"대형 왕관","refName":"Great Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[143,161],"es":[29,33]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/607b69e687/HelmetStrInt7.png","w":2,"h":2} +{"name":"대형 투구","refName":"Great Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[61,76],"es":[14,17]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/b4ec7dbe33/HelmetStrInt3.png","w":2,"h":2} +{"name":"대형 나무 망치","refName":"Great Mallet","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2UzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/5e536c19aa/TwoHandMace3.png","w":2,"h":4} +{"name":"거대 하얀 클로","refName":"Great White Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/8b8d9559cd/Claw2.png","w":2,"h":2} +{"name":"상급 섬뜩한 불씨","refName":"Greater Eldritch Ember","namespace":"ITEM","tradeTag":"greater-eldritch-ember","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2xlYW5zaW5nRmlyZU9yYlJhbmsyIiwic2NhbGUiOjF9XQ/698817b93d/CleansingFireOrbRank2.png"} +{"name":"상급 섬뜩한 영액","refName":"Greater Eldritch Ichor","namespace":"ITEM","tradeTag":"greater-eldritch-ichor","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVGFuZ2xlT3JiUmFuazIiLCJzY2FsZSI6MX1d/689d1897c7/TangleOrbRank2.png"} +{"name":"대용량 생명력 플라스크","refName":"Greater Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrNCIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/2601beea57/lifeflask4.png","h":2} +{"name":"대용량 마나 플라스크","refName":"Greater Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrNCIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/54e8624da7/manaflask4.png","h":2} +{"name":"위대한 늑대 부적","refName":"Greatwolf Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UNFRhbGlzbWFuIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/92e5669fe8/T4Talisman.png"} +{"name":"웃는 조각상 홀","refName":"Grinning Fetish","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyMiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/e3e72321e0/scepter2.png","w":2,"h":3} +{"name":"움켜쥔 장갑","refName":"Gripped Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[220,253]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR3JpcEdsb3Zlc0Jhc2VUeXBlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/905e5572e6/GripGlovesBaseType.png","w":2,"h":2} +{"name":"반백의 가죽모","refName":"Grizzly Pelt","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[501,576]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e2b3ccec11/HelmetDex7.png","w":2,"h":2} +{"name":"석굴 지도","refName":"Grotto Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/N7P59cb.jpg"}} +{"name":"수목원 활","refName":"Grove Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/0fcc51afcd/Bow2.png","w":2,"h":3} +{"name":"수호자 거북이","refName":"Guardian Turtle","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Jvbmdva3VyYWlTcGlyaXRUb3J0b2lzZUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/5cdaded7da/RongokuraiSpiritTortoiseCorpse.png","w":3,"h":2} +{"name":"수호의 건틀릿","refName":"Guarding Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[132,152]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUml0dWFsU3RyR2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/254b8a0066/RitualStrGloves.png","w":2,"h":2} +{"name":"내장 거열기","refName":"Gut Ripper","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/1d5586ea56/Claw5.png","w":2,"h":2} +{"name":"내장 제거용 단도","refName":"Gutting Knife","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjIiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/c2c0a06eec/Dagger2.png","h":3} +{"name":"핏빛 연소 주문서","refName":"Haemocombustion Scroll","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9IYXJiaW5nZXJUb2tlblN0YWZmIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3bac452156/HarbingerTokenStaff.png"} +{"name":"잊혀져 가는 골리앗","refName":"Half-remembered Goliath","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1N5bnRoZXNpc0dvbGVtQm9zc0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/aed2848215/SynthesisGolemBossCorpse.png","w":3,"h":2} +{"name":"거룩한 하이브리드 플라스크","refName":"Hallowed Hybrid Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvaHlicmlkZmxhc2s0IiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/541bb93a64/hybridflask4.png","h":2} +{"name":"거룩한 생명력 플라스크","refName":"Hallowed Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrOSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/67262f06f5/lifeflask9.png","h":2} +{"name":"거룩한 마나 플라스크","refName":"Hallowed Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrOSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/8ef0a39c9d/manaflask9.png","h":2} +{"name":"단련한 버클러","refName":"Hammered Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[116,139]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/60c6c83831/ShieldDex4.png","w":2,"h":2} +{"name":"선구자 활","refName":"Harbinger Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzgiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8d079c60ed/Bow8.png","w":2,"h":4} +{"name":"선구자 지도","refName":"Harbinger Map","namespace":"ITEM","craftable":{"uniqueOnly":true,"category":"Map"},"icon":"","map":{}} +{"name":"선구자 갑충석","refName":"Harbinger Scarab","namespace":"ITEM","tradeTag":"harbinger-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJIYXJiaW5nZXJzIiwic2NhbGUiOjF9XQ/cc33d9f639/LesserScarabHarbingers.png"} +{"name":"오벨리스크의 선구자 갑충석","refName":"Harbinger Scarab of Obelisks","namespace":"ITEM","tradeTag":"harbinger-scarab-of-obelisks","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJIYXJiaW5nZXJzIiwic2NhbGUiOjF9XQ/dc5f44e261/NormalScarabHarbingers.png"} +{"name":"섭정의 선구자 갑충석","refName":"Harbinger Scarab of Regency","namespace":"ITEM","tradeTag":"harbinger-scarab-of-regency","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiSGFyYmluZ2VycyIsInNjYWxlIjoxfV0/335df4321f/GreaterScarabHarbingers.png"} +{"name":"전쟁비축물의 선구자 갑충석","refName":"Harbinger Scarab of Warhoards","namespace":"ITEM","tradeTag":"harbinger-scarab-of-warhoards","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkhhcmJpbmdlcnMiLCJzY2FsZSI6MX1d/58a4c0d3f8/Tier4ScarabHarbingers.png"} +{"name":"선구자의 오브","refName":"Harbinger's Orb","namespace":"ITEM","tradeTag":"harbingers-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFyYmluZ2VyT3JiIiwic2NhbGUiOjF9XQ/0a26e01f15/HarbingerOrb.png"} +{"name":"선구자의 파편","refName":"Harbinger's Shard","namespace":"ITEM","tradeTag":"harbingers-shard","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFyYmluZ2VyU2hhcmQiLCJzY2FsZSI6MX1d/ad19e27b2f/HarbingerShard.png"} +{"name":"할리퀸 가면","refName":"Harlequin Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[157,185],"es":[32,38]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c006f13480/HelmetDexInt9.png","w":2,"h":2} +{"name":"화음 영혼 방패","refName":"Harmonic Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[58,66]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4bf20f79d1/ShieldInt5.png","w":2,"h":2} +{"name":"하피 레이피어","refName":"Harpy Rapier","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjgiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/1f11ed5e87/Rapier8.png","h":4} +{"name":"하피가죽 장화","refName":"Harpyskin Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[307,353]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f2e9a30d4a/BootsDex3.png","w":2,"h":2} +{"name":"하피가죽 장갑","refName":"Harpyskin Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[307,353]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/445d038f1d/GlovesDex3.png","w":2,"h":2} +{"name":"수확 갑충석","refName":"Harvest Scarab","namespace":"ITEM","tradeTag":"harvest-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJIYXJ2ZXN0Iiwic2NhbGUiOjF9XQ/976dcf6526/LesserScarabHarvest.png"} +{"name":"풍요의 뿔의 수확 갑충석","refName":"Harvest Scarab of Cornucopia","namespace":"ITEM","tradeTag":"harvest-scarab-of-cornucopia","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkhhcnZlc3QiLCJzY2FsZSI6MX1d/35e8847de2/Tier4ScarabHarvest.png"} +{"name":"복제의 수확 갑충석","refName":"Harvest Scarab of Doubling","namespace":"ITEM","tradeTag":"harvest-scarab-of-doubling","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiSGFydmVzdCIsInNjYWxlIjoxfV0/6077972903/GreaterScarabHarvest.png"} +{"name":"으스스한 배서닛","refName":"Haunted Bascinet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[355,409],"ev":[355,409]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDEwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/4c9ea10e7c/HelmetStrDex10.png","w":2,"h":2} +{"name":"으스스한 대저택 지도","refName":"Haunted Mansion Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/TyBueyN.jpg"}} +{"name":"참수자의 검","refName":"Headman's Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDIiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/fcaf050e0f/TwoHandSword2.png","w":2,"h":4} +{"name":"참수자 도끼","refName":"Headsman Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/24ac93d9cd/TwoHandAxe4.png","w":2,"h":4} +{"name":"조율된 열기 거대 방패","refName":"Heat-attuned Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[220,253]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0hlaXN0U2hpZWxkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/e65fb9efea/HeistShield.png","w":2,"h":3} +{"name":"이방인 마법봉","refName":"Heathen Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNyIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/84ced52bef/Wand7.png","h":3} +{"name":"무거운 화살통","refName":"Heavy Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJCbHVudCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/435539df0f/QuiverBlunt.png","w":2,"h":3} +{"name":"무거운 허리띠","refName":"Heavy Belt","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdDUiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MSwiZWxkZXIiOnRydWV9XQ/440fb77647/Belt5.png","w":2} +{"name":"다면체 활","refName":"Hedron Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0hlaXN0Qm93RmlyZSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/30526435da/HeistBowFire.png","w":2,"h":4} +{"name":"나선형 반지","refName":"Helical Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvSGVpc3RSaW5nMURhcmsiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/50914baa93/HeistRing1Dark.png"} +{"name":"헬리온의 발","refName":"Hellion's Paw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0a98c635d3/Claw4.png","w":2,"h":2} +{"name":"사술발톱 부적","refName":"Hexclaw Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbkJsYWNrNiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6885b449d4/TalismanBlack6.png"} +{"name":"명문가의 활","refName":"Highborn Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/1e6a3da9aa/Bow7.png","w":2,"h":4} +{"name":"상류층의 지팡이","refName":"Highborn Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY2IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/5e3de6f391/Staff6.png","w":2,"h":4} +{"name":"고지대 검","refName":"Highland Blade","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/294bd80312/TwoHandSword4.png","w":2,"h":4} +{"name":"히네코라의 머리카락","refName":"Hinekora's Lock","namespace":"ITEM","tradeTag":"hinekoras-lock","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGluZWtvcmFzTG9jayIsInNjYWxlIjoxfV0/b188026e7f/HinekorasLock.png"} +{"name":"공허의 화석","refName":"Hollow Fossil","namespace":"ITEM","tradeTag":"hollow-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvQW1iZXJFeWUiLCJzY2FsZSI6MX1d/542a2b7b0a/AmberEye.png"} +{"name":"중공 화살촉","refName":"Hollowpoint Arrowhead","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQXJyb3doZWFkSG9sbG93cG9pbnQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/517705408e/ArrowheadHollowpoint.png","w":2,"h":2} +{"name":"중공 단검","refName":"Hollowpoint Dagger","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0hlaXN0RGFnZ2VyIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/d484666b70/HeistDagger.png","h":3} +{"name":"성스러운 사슬 갑옷","refName":"Holy Chainmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[194,233],"es":[41,49]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50M0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/900b4f2c03/BodyStrInt3C.png","w":2,"h":3} +{"name":"연마한 가로날도끼","refName":"Honed Cleaver","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9IZWlzdFR3b0hhbmRBeGUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/4aef1881cc/HeistTwoHandAxe.png","w":2,"h":4} +{"name":"두건 망토","refName":"Hooded Cloak","namespace":"ITEM","craftable":{"category":"Heist Cloak"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvSG9vZGVkQ2xvYWsiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/cc1771375c/HoodedCloak.png","w":2,"h":2} +{"name":"갈고리 검","refName":"Hook Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDkiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/d11450350f/OneHandSword9.png","w":2,"h":3} +{"name":"지평의 파편","refName":"Horizon Shard","namespace":"ITEM","tradeTag":"horizon-shard","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSG9yaXpvblNoYXJkIiwic2NhbGUiOjF9XQ/627ae5f273/HorizonShard.png"} +{"name":"각성의 뿔 달린 갑충석","refName":"Horned Scarab of Awakening","namespace":"ITEM","tradeTag":"horned-scarab-of-awakening","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9TdXBlclNjYXJhYjQiLCJzY2FsZSI6MX1d/c939905663/SuperScarab4.png"} +{"name":"혈맹의 뿔 달린 갑충석","refName":"Horned Scarab of Bloodlines","namespace":"ITEM","tradeTag":"horned-scarab-of-bloodlines","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9TdXBlclNjYXJhYjEiLCJzY2FsZSI6MX1d/acc1b258a3/SuperScarab1.png"} +{"name":"번쩍임의 뿔 달린 갑충석","refName":"Horned Scarab of Glittering","namespace":"ITEM","tradeTag":"horned-scarab-of-glittering","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9TdXBlclNjYXJhYjYiLCJzY2FsZSI6MX1d/f74c2fdd4f/SuperScarab6.png"} +{"name":"천벌의 뿔 달린 갑충석","refName":"Horned Scarab of Nemeses","namespace":"ITEM","tradeTag":"horned-scarab-of-nemeses","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9TdXBlclNjYXJhYjIiLCJzY2FsZSI6MX1d/c4f92c444d/SuperScarab2.png"} +{"name":"혼란 유발의 뿔 달린 갑충석","refName":"Horned Scarab of Pandemonium","namespace":"ITEM","tradeTag":"horned-scarab-of-pandemonium","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9TdXBlclNjYXJhYjciLCJzY2FsZSI6MX1d/28b95bae7b/SuperScarab7.png"} +{"name":"보전의 뿔 달린 갑충석","refName":"Horned Scarab of Preservation","namespace":"ITEM","tradeTag":"horned-scarab-of-preservation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9TdXBlclNjYXJhYjMiLCJzY2FsZSI6MX1d/64d9f06e78/SuperScarab3.png"} +{"name":"전통의 뿔 달린 갑충석","refName":"Horned Scarab of Tradition","namespace":"ITEM","tradeTag":"horned-scarab-of-tradition","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9TdXBlclNjYXJhYjUiLCJzY2FsZSI6MX1d/cbdd57fa7e/SuperScarab5.png"} +{"name":"뿔 달린 셉터","refName":"Horned Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyOSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/151820601e/scepter9.png","w":2,"h":3} +{"name":"뿔 달린 부적","refName":"Horned Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9OZXdUYWxpc21hbjciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/98ae73297c/NewTalisman7.png"} +{"name":"자만의 관","refName":"Hubris Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[80,92]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDExIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/4588b92597/HelmetInt11.png","w":2,"h":2} +{"name":"육중한 기형물","refName":"Hulking Miscreation","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JvYm90QXJndXNNaW5pYm9zc0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/b72efcb93e/RobotArgusMinibossCorpse.png","w":3,"h":2} +{"name":"사냥꾼 두건","refName":"Hunter Hood","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[203,227]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/00026e167c/HelmetDex5.png","w":2,"h":2} +{"name":"사냥꾼의 엑잘티드 오브","refName":"Hunter's Exalted Orb","namespace":"ITEM","tradeTag":"hunters-exalted-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5mbHVlbmNlIEV4YWx0cy9CYXNpbGlza09yYiIsInNjYWxlIjoxfV0/cd2131d564/BasiliskOrb.png"} +{"name":"경기병 브리간딘","refName":"Hussar Brigandine","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[232,278],"ev":[232,278]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/cd52e7b841/BodyStrDex2B.png","w":2,"h":3} +{"name":"히드라","refName":"Hydra","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0h5ZHJhQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/cd848db11b/HydraCorpse.png","w":3,"h":2} +{"name":"히드라 비늘 장화","refName":"Hydrascale Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[106,122],"ev":[106,122]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/d5b5430d4c/BootsStrDex2.png","w":2,"h":2} +{"name":"히드라 비늘 건틀릿","refName":"Hydrascale Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[106,122],"ev":[106,122]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyRGV4MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0bb5dd1e50/GlovesStrDex2.png","w":2,"h":2} +{"name":"최면 거는 눈 주얼","refName":"Hypnotic Eye Jewel","namespace":"ITEM","craftable":{"category":"Abyss Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JpdmV0ZWRFeWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a17c4bcc60/RivetedEye.png"} +{"name":"빙산 지도","refName":"Iceberg Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/9g2hpKu.jpg"}} +{"name":"부여의 기폭제","refName":"Imbued Catalyst","namespace":"ITEM","tradeTag":"imbued-catalyst","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL0ltYnVlZENhdGFseXN0Iiwic2NhbGUiOjF9XQ/cce071aa45/ImbuedCatalyst.png"} +{"name":"부여된 마법봉","refName":"Imbued Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kMyIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/6322bd53f5/Wand3.png","h":3} +{"name":"임프 왕관","refName":"Imp Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[42,49],"es":[10,12]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01hc2tDcm93biIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/dbad72643e/MaskCrown.png","w":2,"h":2} +{"name":"임프 단검","refName":"Imp Dagger","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjgiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/e0bade03f8/Dagger8.png","h":3} +{"name":"충격력 확산자","refName":"Impact Force Propagator","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvSGVpc3RUd29IYW5kTWFjZSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/ecc9c2724b/HeistTwoHandMace.png","w":2,"h":4} +{"name":"불완전한 신성모독자","refName":"Imperfect Blasphemer","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0dlb2ZyaUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/c8c02e1c54/GeofriCorpse.png","w":3,"h":2} +{"name":"불완전한 피의 악마","refName":"Imperfect Blood Demon","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0hlbGxzY2FwZURlbW9uQm9zc0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/9bcd7bb5b8/HellscapeDemonBossCorpse.png","w":3,"h":2} +{"name":"불완전한 춤추는 검","refName":"Imperfect Dancing Sword","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0FuaW1hdGVkV2VhcG9uQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/2720caa383/AnimatedWeaponCorpse.png","w":3,"h":2} +{"name":"불완전한 어둠의 꼭두각시","refName":"Imperfect Dark Marionette","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JvYm90TWFubmVxdWluQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/2ad85223a4/RobotMannequinCorpse.png","w":3,"h":2} +{"name":"불완전한 어둠의 수확자","refName":"Imperfect Dark Reaper","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JlYXBlckJvc3NDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/d6c81d82f9/ReaperBossCorpse.png","w":3,"h":2} +{"name":"불완전한 드루이드 연금술사","refName":"Imperfect Druidic Alchemist","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Rhd2hvYU1lZGljaW5lV29tYW5Db3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/a446a2f4d0/TawhoaMedicineWomanCorpse.png","w":3,"h":2} +{"name":"불완전한 섬뜩한 눈","refName":"Imperfect Eldritch Eye","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0VsZGVyVGVudGFjbGVNaW5pb25MYXJnZUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/19b67ee9a1/ElderTentacleMinionLargeCorpse.png","w":3,"h":2} +{"name":"불완전한 불타는 식인종","refName":"Imperfect Fiery Cannibal","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0ZpcmVGdXJ5Q29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/458c4ab871/FireFuryCorpse.png","w":3,"h":2} +{"name":"불완전한 숲 호랑이","refName":"Imperfect Forest Tiger","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1RpZ2VyQmVzdGlhcnlTcGlyaXRCb3NzQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/6a46a7dc19/TigerBestiarySpiritBossCorpse.png","w":3,"h":2} +{"name":"불완전한 숲 전사","refName":"Imperfect Forest Warrior","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zpa2luZ01hcEJvc3NDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/cc6f33141d/VikingMapBossCorpse.png","w":3,"h":2} +{"name":"불완전한 얼어붙은 식인종","refName":"Imperfect Frozen Cannibal","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0hhaWxyYWtlQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/a3828d3005/HailrakeCorpse.png","w":3,"h":2} +{"name":"불완전한 수호자 거북이","refName":"Imperfect Guardian Turtle","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Jvbmdva3VyYWlTcGlyaXRUb3J0b2lzZUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/5cdaded7da/RongokuraiSpiritTortoiseCorpse.png","w":3,"h":2} +{"name":"불완전한 잊혀져 가는 골리앗","refName":"Imperfect Half-remembered Goliath","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1N5bnRoZXNpc0dvbGVtQm9zc0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/aed2848215/SynthesisGolemBossCorpse.png","w":3,"h":2} +{"name":"불완전한 육중한 기형물","refName":"Imperfect Hulking Miscreation","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JvYm90QXJndXNNaW5pYm9zc0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/b72efcb93e/RobotArgusMinibossCorpse.png","w":3,"h":2} +{"name":"불완전한 히드라","refName":"Imperfect Hydra","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0h5ZHJhQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/cd848db11b/HydraCorpse.png","w":3,"h":2} +{"name":"불완전한 심판의 정령","refName":"Imperfect Judgemental Spirit","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0dvZGRlc3NPZkp1c3RpY2VDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/e674a594ff/GoddessOfJusticeCorpse.png","w":3,"h":2} +{"name":"불완전한 고깃자루","refName":"Imperfect Meatsack","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0Z1bmd1c1pvbWJpZUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/4da2b7756d/FungusZombieCorpse.png","w":3,"h":2} +{"name":"불완전한 해군 장교","refName":"Imperfect Naval Officer","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0FkbWlyYWxEYXJuYXdDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/ccfa254872/AdmiralDarnawCorpse.png","w":3,"h":2} +{"name":"불완전한 바늘 호러","refName":"Imperfect Needle Horror","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0RlbW9uQm9zczNDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/6abaea26f2/DemonBoss3Corpse.png","w":3,"h":2} +{"name":"불완전한 고통의 예술가","refName":"Imperfect Pain Artist","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0FmZmxpY3Rpb25NaW5pb24yQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/afa1eaea1c/AfflictionMinion2Corpse.png","w":3,"h":2} +{"name":"불완전한 원시 창제자","refName":"Imperfect Primal Demiurge","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0NydXNhZGVyTWFuYVBoYW50YXNtQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/66bb067c9b/CrusaderManaPhantasmCorpse.png","w":3,"h":2} +{"name":"불완전한 원시 천둥새","refName":"Imperfect Primal Thunderbird","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JhdmVuQm9zc0JsdWVDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/1a1ed30e2f/RavenBossBlueCorpse.png","w":3,"h":2} +{"name":"불완전한 룬의 해골","refName":"Imperfect Runic Skeleton","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1N3b3JkU2tlbGV0b25Db3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/171f40accf/SwordSkeletonCorpse.png","w":3,"h":2} +{"name":"불완전한 혈액술사 악마","refName":"Imperfect Sanguimancer Demon","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0hlbGxzY2FwZURlbW9uRWxpdGUyQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/a795ad40fa/HellscapeDemonElite2Corpse.png","w":3,"h":2} +{"name":"불완전한 톱날 호러","refName":"Imperfect Sawblade Horror","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0RlbW9uQm9zczFDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/27f61146a0/DemonBoss1Corpse.png","w":3,"h":2} +{"name":"불완전한 독사 전사","refName":"Imperfect Serpent Warrior","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0F0bGFzRXhpbGUzQXBwYXJpdGlvbkNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/127b613caf/AtlasExile3ApparitionCorpse.png","w":3,"h":2} +{"name":"불완전한 그림자 광전사","refName":"Imperfect Shadow Berserker","namespace":"ITEM","icon":"%NOT_FOUND%","w":3,"h":2} +{"name":"불완전한 그림자 구조물","refName":"Imperfect Shadow Construct","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0luY2FTaGFkb3dCb3NzQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/acddc4a119/IncaShadowBossCorpse.png","w":3,"h":2} +{"name":"불완전한 칼날 호러","refName":"Imperfect Slashing Horror","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0RlbW9uQm9zczJDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/211195cd4d/DemonBoss2Corpse.png","w":3,"h":2} +{"name":"불완전한 거미 여군주","refName":"Imperfect Spider Matriarch","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0JsYWNrRGVhdGhCb3NzQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/658153825a/BlackDeathBossCorpse.png","w":3,"h":2} +{"name":"불완전한 행운의 정령","refName":"Imperfect Spirit of Fortune","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0t1ZHVrdVRvdGVtQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/7faf1de77b/KudukuTotemCorpse.png","w":3,"h":2} +{"name":"불완전한 전쟁군주","refName":"Imperfect Warlord","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL09ha0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/9a9c4d9ada/OakCorpse.png","w":3,"h":2} +{"name":"제국 활","refName":"Imperial Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/1e6a3da9aa/Bow7.png","w":2,"h":4} +{"name":"제국 버클러","refName":"Imperial Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[440,506]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/ad59b083a6/ShieldDex6.png","w":2,"h":2} +{"name":"제국 클로","refName":"Imperial Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/9efad90cdb/Claw7.png","w":2,"h":2} +{"name":"제국 환영의 오브","refName":"Imperial Delirium Orb","namespace":"ITEM","tradeTag":"imperial-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJMYWJ5cmludGgiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/50340fc6c8/DeliriumOrbLabyrinth.png"} +{"name":"제국 대형 망치","refName":"Imperial Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U2IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/a114ad5617/TwoHandMace6.png","w":2,"h":4} +{"name":"제국 양날 단검","refName":"Imperial Skean","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjciLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/61e8f27cc5/Dagger7.png","h":3} +{"name":"제국 지팡이","refName":"Imperial Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY2IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/5e3de6f391/Staff6.png","w":2,"h":4} +{"name":"제국 지팡이 조각","refName":"Imperial Staff Piece","namespace":"ITEM","craftable":{"category":"Unique Fragment","uniqueOnly":true},"icon":"","w":1,"h":2} +{"name":"백열하는 초대","refName":"Incandescent Invitation","namespace":"ITEM","craftable":{"category":"Invitation"},"tradeTag":"incandescent-invitation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVlc3RJdGVtcy9DbGVhbnNpbmdGaXJlT3JiUXVlc3Q1Iiwic2NhbGUiOjF9XQ/d5ac505898/CleansingFireOrbQuest5.png"} +{"name":"기습 갑충석","refName":"Incursion Scarab","namespace":"ITEM","tradeTag":"incursion-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJJbmN1cnNpb24iLCJzY2FsZSI6MX1d/4afd758a13/LesserScarabIncursion.png"} +{"name":"용사의 기습 갑충석","refName":"Incursion Scarab of Champions","namespace":"ITEM","tradeTag":"incursion-scarab-of-champions","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiSW5jdXJzaW9uIiwic2NhbGUiOjF9XQ/ff92bda004/GreaterScarabIncursion.png"} +{"name":"침략의 기습 갑충석","refName":"Incursion Scarab of Invasion","namespace":"ITEM","tradeTag":"incursion-scarab-of-invasion","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJJbmN1cnNpb24iLCJzY2FsZSI6MX1d/a38b517f35/NormalScarabIncursion.png"} +{"name":"시간선의 기습 갑충석","refName":"Incursion Scarab of Timelines","namespace":"ITEM","tradeTag":"incursion-scarab-of-timelines","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkluY3Vyc2lvbiIsInNjYWxlIjoxfV0/748b10e2cf/Tier4ScarabIncursion.png"} +{"name":"남색 성유","refName":"Indigo Oil","namespace":"ITEM","tradeTag":"indigo-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9JbmRpZ29PaWwiLCJzY2FsZSI6MX1d/d11c298ca8/IndigoOil.png"} +{"name":"보병 브리간딘","refName":"Infantry Brigandine","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[119,142],"ev":[119,142]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/cd52e7b841/BodyStrDex2B.png","w":2,"h":3} +{"name":"지옥불 도끼","refName":"Infernal Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlOCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/1c9ff58159/OneHandAxe8.png","w":2,"h":3} +{"name":"지옥불 칼","refName":"Infernal Blade","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0hlaXN0UnVuZURhZ2dlciIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/1760d17051/HeistRuneDagger.png","h":3} +{"name":"지옥불 검","refName":"Infernal Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/cba6615b1a/TwoHandSword7.png","w":2,"h":4} +{"name":"감염된 계곡 지도","refName":"Infested Valley Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/9FiIb93.jpg"}} +{"name":"잠입자 장화","refName":"Infiltrator Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[176,203],"es":[35,41]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0c80b843d0/BootsDexInt3.png","w":2,"h":2} +{"name":"잠입자 미트","refName":"Infiltrator Mitts","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[176,203],"es":[35,41]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/e18b986979/GlovesDexInt2.png","w":2,"h":2} +{"name":"영향을 받은 정찰 보고서","refName":"Influenced Scouting Report","namespace":"ITEM","tradeTag":"influenced-scouting-report","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png"} +{"name":"전향의 영향력 갑충석","refName":"Influencing Scarab of Conversion","namespace":"ITEM","tradeTag":"influencing-scarab-of-conversion","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYlNoYXBlciIsInNjYWxlIjoxfV0/320c05daeb/Tier4ScarabShaper.png"} +{"name":"군단의 영향력 갑충석","refName":"Influencing Scarab of Hordes","namespace":"ITEM","tradeTag":"influencing-scarab-of-hordes","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiRWxkZXIiLCJzY2FsZSI6MX1d/660528eb40/GreaterScarabElder.png"} +{"name":"엘더의 영향력 갑충석","refName":"Influencing Scarab of the Elder","namespace":"ITEM","tradeTag":"influencing-scarab-of-the-elder","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJFbGRlciIsInNjYWxlIjoxfV0/8828d3f4eb/LesserScarabElder.png"} +{"name":"쉐이퍼의 영향력 갑충석","refName":"Influencing Scarab of the Shaper","namespace":"ITEM","tradeTag":"influencing-scarab-of-the-shaper","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJTaGFwZXIiLCJzY2FsZSI6MX1d/caf0ac9307/LesserScarabShaper.png"} +{"name":"주입된 인큐베이터","refName":"Infused Incubator","namespace":"ITEM","tradeTag":"infused-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRXNzZW5jZSIsInNjYWxlIjoxfV0/839bf6cef9/IncubationEssence.png"} +{"name":"새겨진 결전","refName":"Inscribed Ultimatum","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VbHRpbWF0dW1UcmlhbEJhc2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b65f1edffb/UltimatumTrialBase.png"} +{"name":"주입의 오브","refName":"Instilling Orb","namespace":"ITEM","tradeTag":"instilling-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXhwZWRpdGlvbi9GbGFza0luamVjdG9yIiwic2NhbGUiOjF9XQ/efc518b1be/FlaskInjector.png"} +{"name":"본질의 기폭제","refName":"Intrinsic Catalyst","namespace":"ITEM","tradeTag":"intrinsic-catalyst","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL0ludHJpbnNpY0NhdGFseXN0Iiwic2NhbGUiOjF9XQ/cea67fbce2/IntrinsicCatalyst.png"} +{"name":"근청석 반지","refName":"Iolite Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQ2hhb3NEbWdSaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/41236019f8/ChaosDmgRing.png"} +{"name":"철제 관","refName":"Iron Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[12,15]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/64cde8f674/HelmetInt2.png","w":2,"h":2} +{"name":"철 플라스크","refName":"Iron Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvV2FyZGZsYXNrMDEiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/19bbf3a214/Wardflask01.png","h":2} +{"name":"철제 건틀릿","refName":"Iron Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[6,9]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyMSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/413116fb67/GlovesStr1.png","w":2,"h":2} +{"name":"철제 각반","refName":"Iron Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[6,9]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/10332346d1/BootsStr1.png","w":2,"h":2} +{"name":"철제 투구","refName":"Iron Hat","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[9,13]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/a114c1308e/HelmetStr1.png","w":2,"h":2} +{"name":"철 가면","refName":"Iron Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[48,60],"es":[11,14]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/a56694476d/HelmetDexInt3.png","w":2,"h":2} +{"name":"철제 반지","refName":"Iron Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/bf29c9d45e/Ring1.png"} +{"name":"철제 셉터","refName":"Iron Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/4b16d71d85/scepter5.png","w":2,"h":3} +{"name":"철제 지팡이","refName":"Iron Staff","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY0IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/85c22bd16b/Staff4.png","w":2,"h":4} +{"name":"철제 비늘 장화","refName":"Ironscale Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[34,44],"ev":[34,44]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/d5b5430d4c/BootsStrDex2.png","w":2,"h":2} +{"name":"철제 비늘 건틀릿","refName":"Ironscale Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[28,37],"ev":[28,37]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyRGV4MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0bb5dd1e50/GlovesStrDex2.png","w":2,"h":2} +{"name":"철목 버클러","refName":"Ironwood Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[327,385]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/cffdb4477e/ShieldDex2.png","w":2,"h":2} +{"name":"철목 팅크","refName":"Ironwood Tincture","namespace":"ITEM","craftable":{"category":"Tincture"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL1N0dW5TYXAiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MX1d/d28b324f64/StunSap.png","h":2} +{"name":"상아색 활","refName":"Ivory Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/6642f8922a/Bow6.png","w":2,"h":4} +{"name":"상아 영혼 방패","refName":"Ivory Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[35,40]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f0b78ea97c/ShieldInt3.png","w":2,"h":2} +{"name":"상아 사원 지도","refName":"Ivory Temple Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/gl7ODl5.jpg"}} +{"name":"비취 목걸이","refName":"Jade Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQ0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ffc5888355/Amulet4.png"} +{"name":"비취 절단기","refName":"Jade Chopper","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlMiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/bc8072f8c3/TwoHandAxe2.png","w":2,"h":4} +{"name":"비취 플라스크","refName":"Jade Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvZXZhc2lvbmZsYXNrMDEiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/8ead4435df/evasionflask01.png","h":2} +{"name":"비취 손도끼","refName":"Jade Hatchet","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlMiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/2bb7df0078/OneHandAxe2.png","w":2,"h":3} +{"name":"삐죽삐죽한 펜싱 검","refName":"Jagged Foil","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjUiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/ccce0178cc/Rapier5.png","h":4} +{"name":"뾰족한 화석","refName":"Jagged Fossil","namespace":"ITEM","tradeTag":"jagged-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvSmFnZ2VkRm9zc2lsIiwic2NhbGUiOjF9XQ/ca9c17d7d9/JaggedFossil.png"} +{"name":"삐죽삐죽한 대형 망치","refName":"Jagged Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U1IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/88d16a9600/TwoHandMace5.png","w":2,"h":4} +{"name":"벽옥 손도끼","refName":"Jasper Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlMiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/2bb7df0078/OneHandAxe2.png","w":2,"h":3} +{"name":"벽옥 절단기","refName":"Jasper Chopper","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlMiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/bc8072f8c3/TwoHandAxe2.png","w":2,"h":4} +{"name":"어릿광대 가면","refName":"Jester Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[268,308],"es":[54,62]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c006f13480/HelmetDexInt9.png","w":2,"h":2} +{"name":"보석이 박힌 펜싱 검","refName":"Jewelled Foil","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjciLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/97d714e903/Rapier7.png","h":4} +{"name":"쥬얼러 환영의 오브","refName":"Jeweller's Delirium Orb","namespace":"ITEM","tradeTag":"jewellers-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJUcmlua2V0cyIsInNjYWxlIjoxfV0/165e84bd2a/DeliriumOrbTrinkets.png"} +{"name":"쥬얼러 오브","refName":"Jeweller's Orb","namespace":"ITEM","tradeTag":"jewellers","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lSZXJvbGxTb2NrZXROdW1iZXJzIiwic2NhbGUiOjF9XQ/ba411ff58a/CurrencyRerollSocketNumbers.png"} +{"name":"방울 영혼 방패","refName":"Jingling Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[25,29]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4bf20f79d1/ShieldInt5.png","w":2,"h":2} +{"name":"여정 룬","refName":"Journey Rune","namespace":"ITEM","tradeTag":"journey-rune","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2V0dGxlcnMvVmlsbGFnZVJ1bmU3Iiwic2NhbGUiOjF9XQ/953733102b/VillageRune7.png"} +{"name":"육신의 여정 문신","refName":"Journey Tattoo of the Body","namespace":"ITEM","tradeTag":"journey-tattoo-of-the-body","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL1VuaXF1ZTNUYXR0dG9vRXF1aXBtZW50Iiwic2NhbGUiOjF9XQ/f83d9c508a/Unique3TatttooEquipment.png"} +{"name":"정신의 여정 문신","refName":"Journey Tattoo of the Mind","namespace":"ITEM","tradeTag":"journey-tattoo-of-the-mind","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL1VuaXF1ZTNUYXR0dG9vRXF1aXBtZW50Iiwic2NhbGUiOjF9XQ/f83d9c508a/Unique3TatttooEquipment.png"} +{"name":"영혼의 여정 문신","refName":"Journey Tattoo of the Soul","namespace":"ITEM","tradeTag":"journey-tattoo-of-the-soul","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL1VuaXF1ZTNUYXR0dG9vRXF1aXBtZW50Iiwic2NhbGUiOjF9XQ/f83d9c508a/Unique3TatttooEquipment.png"} +{"name":"심판 지팡이","refName":"Judgement Staff","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY3IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/c1ded974d5/Staff7.png","w":2,"h":4} +{"name":"심판의 정령","refName":"Judgemental Spirit","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0dvZGRlc3NPZkp1c3RpY2VDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/e674a594ff/GoddessOfJusticeCorpse.png","w":3,"h":2} +{"name":"밀림 계곡 지도","refName":"Jungle Valley Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/O4q6Op8.jpg"}} +{"name":"칼구르 환영의 오브","refName":"Kalguuran Delirium Orb","namespace":"ITEM","tradeTag":"kalguuran-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJFeHBlZGl0aW9uIiwic2NhbGUiOjF9XQ/486dcec31d/DeliriumOrbExpedition.png"} +{"name":"칼구르 인큐베이터","refName":"Kalguuran Incubator","namespace":"ITEM","tradeTag":"kalguuran-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRXhwZWRpdGlvbiIsInNjYWxlIjoxfV0/2916070090/IncubationExpedition.png"} +{"name":"카루이 도끼","refName":"Karui Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlMiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/2bb7df0078/OneHandAxe2.png","w":2,"h":3} +{"name":"카루이 절단기","refName":"Karui Chopper","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlMiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/bc8072f8c3/TwoHandAxe2.png","w":2,"h":4} +{"name":"카루이 대형 망치","refName":"Karui Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2UyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/36201397ff/TwoHandMace2.png","w":2,"h":4} +{"name":"카루이 셉터","refName":"Karui Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyMiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/e3e72321e0/scepter2.png","w":2,"h":3} +{"name":"키락의 기억","refName":"Kirac's Memory","namespace":"ITEM","craftable":{"category":"Memory Line"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWVtb3J5TGluZS9LaXJhY01lbW9yeUl0ZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/def36e7b78/KiracMemoryItem.png"} +{"name":"기사 투구","refName":"Knight Helm","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[268,308],"ev":[268,308]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/07fb25d634/HelmetStrDex6.png","w":2,"h":2} +{"name":"실험실 지도","refName":"Laboratory Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/3wlWzSX.jpg"}} +{"name":"라브리스","refName":"Labrys","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/4b3fbfcd65/TwoHandAxe5.png","w":2,"h":4} +{"name":"쥐방울나무 영혼 방패","refName":"Lacewood Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[47,55]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/99b47eb1fa/ShieldInt2.png","w":2,"h":2} +{"name":"옻칠한 버클러","refName":"Lacquered Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[477,549]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/10a005f978/ShieldDex3.png","w":2,"h":2} +{"name":"옻칠한 의복","refName":"Lacquered Garb","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[286,329],"es":[59,68]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/6744d2d486/BodyDexInt2C.png","w":2,"h":3} +{"name":"옻칠한 투구","refName":"Lacquered Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[138,155],"ev":[138,155]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0884b27765/HelmetStrDex7.png","w":2,"h":2} +{"name":"소굴 지도","refName":"Lair Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/Uj6Ef71.jpg"}} +{"name":"히드라의 소굴 지도","refName":"Lair of the Hydra Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhczJNYXBzL05ldy9IeWRyYSIsInciOjEsImgiOjEsInNjYWxlIjoxLCJtbiI6MTQsIm10IjowLCJtaSI6MX1d/c0a42dd7bc/Hydra.png","map":{"screenshot":"https://i.imgur.com/eOWrITq.jpg"}} +{"name":"합판 연모양 방패","refName":"Laminated Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[113,133],"es":[23,27]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/23fbb47426/ShieldStrInt3.png","w":2,"h":3} +{"name":"청금석 목걸이","refName":"Lapis Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQ1IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/998c42287b/Amulet5.png"} +{"name":"대형 스킬 군 주얼","refName":"Large Cluster Jewel","namespace":"ITEM","craftable":{"category":"Cluster Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL05ld0dlbUJhc2UzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/db35e60885/NewGemBase3.png"} +{"name":"대형 하이브리드 플라스크","refName":"Large Hybrid Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvaHlicmlkZmxhc2s0IiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/541bb93a64/hybridflask4.png","h":2} +{"name":"대형 생명력 플라스크","refName":"Large Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrMyIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/35b22b6cc3/lifeflask3.png","h":2} +{"name":"대형 마나 플라스크","refName":"Large Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrMyIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/36c890e698/manaflask3.png","h":2} +{"name":"쇠테 곤봉","refName":"Lathi","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmYzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/9bc79ef01c/Staff3.png","w":2,"h":4} +{"name":"격자형 고리 갑옷","refName":"Latticed Ringmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[216,248],"es":[45,52]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/61293d71af/BodyStrInt1B.png","w":2,"h":3} +{"name":"용암의 방 지도","refName":"Lava Chamber Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/XR1YVVq.jpg"}} +{"name":"용암 호수 지도","refName":"Lava Lake Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/G85TEg5.jpg"}} +{"name":"겹재질 연모양 방패","refName":"Layered Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[62,73],"es":[13,16]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/23fbb47426/ShieldStrInt3.png","w":2,"h":3} +{"name":"납 셉터","refName":"Lead Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/4b16d71d85/scepter5.png","w":2,"h":3} +{"name":"가죽 허리띠","refName":"Leather Belt","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdDMiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/93af17affd/Belt3.png","w":2} +{"name":"가죽 팔보호구","refName":"Leather Bracers","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQnJhY2VyQmFzZVR5cGVfbGVhdGhlciIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/863a42f603/BracerBaseType_leather.png","w":2,"h":2} +{"name":"가죽 모자","refName":"Leather Cap","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[19,27]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/765e9b75f1/HelmetDex1.png","w":2,"h":2} +{"name":"가죽 두건","refName":"Leather Hood","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[101,127]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/636c0ab999/HelmetDex3.png","w":2,"h":2} +{"name":"가죽 비늘 장화","refName":"Leatherscale Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[12,17],"ev":[12,17]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/bae77b3a2c/BootsStrDex1.png","w":2,"h":2} +{"name":"군단 장화","refName":"Legion Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[104,120],"es":[21,25]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/742e5a15d7/BootsStrInt2.png","w":2,"h":2} +{"name":"군단 장갑","refName":"Legion Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[103,121],"es":[21,25]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RySW50MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f09ae395f5/GlovesStrInt2.png","w":2,"h":2} +{"name":"군단 망치","refName":"Legion Hammer","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U1IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/7a42346f2b/OneHandMace5.png","w":2,"h":3} +{"name":"군단 판금 갑옷","refName":"Legion Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[1018,1171]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/429eee131d/BodyStr2C.png","w":2,"h":3} +{"name":"군단 갑충석","refName":"Legion Scarab","namespace":"ITEM","tradeTag":"legion-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJMZWdpb24iLCJzY2FsZSI6MX1d/e7b6e5659c/LesserScarabLegion.png"} +{"name":"지휘의 군단 갑충석","refName":"Legion Scarab of Command","namespace":"ITEM","tradeTag":"legion-scarab-of-command","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHROb3JtYWxTY2FyYWJMZWdpb24iLCJzY2FsZSI6MX1d/5d88c1f891/AltNormalScarabLegion.png"} +{"name":"영원한 분쟁의 군단 갑충석","refName":"Legion Scarab of Eternal Conflict","namespace":"ITEM","tradeTag":"legion-scarab-of-eternal-conflict","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkxlZ2lvbiIsInNjYWxlIjoxfV0/4a56211137/Tier4ScarabLegion.png"} +{"name":"장교의 군단 갑충석","refName":"Legion Scarab of Officers","namespace":"ITEM","tradeTag":"legion-scarab-of-officers","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJMZWdpb24iLCJzY2FsZSI6MX1d/986b842d3f/NormalScarabLegion.png"} +{"name":"세케마의 군단 갑충석","refName":"Legion Scarab of The Sekhema","namespace":"ITEM","tradeTag":"legion-scarab-of-the-sekhema","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiTGVnaW9uIiwic2NhbGUiOjF9XQ/d687801212/GreaterScarabLegion.png"} +{"name":"군단 검","refName":"Legion Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/38536bcafb/OneHandSword5.png","w":2,"h":3} +{"name":"군단 검 조각","refName":"Legion Sword Piece","namespace":"ITEM","craftable":{"category":"Unique Fragment","uniqueOnly":true},"icon":"","w":1,"h":2} +{"name":"하급 섬뜩한 불씨","refName":"Lesser Eldritch Ember","namespace":"ITEM","tradeTag":"lesser-eldritch-ember","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2xlYW5zaW5nRmlyZU9yYlJhbmsxIiwic2NhbGUiOjF9XQ/c7df0e0316/CleansingFireOrbRank1.png"} +{"name":"하급 섬뜩한 영액","refName":"Lesser Eldritch Ichor","namespace":"ITEM","tradeTag":"lesser-eldritch-ichor","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVGFuZ2xlT3JiUmFuazEiLCJzY2FsZSI6MX1d/70e5e53590/TangleOrbRank1.png"} +{"name":"레비아탄 건틀릿","refName":"Leviathan Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[359,413]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyNCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/468f466568/GlovesStr4.png","w":2,"h":2} +{"name":"레비아탄 각반","refName":"Leviathan Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[359,413]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/82bedfd1e0/BootsStr4.png","w":2,"h":2} +{"name":"지맥 장갑","refName":"Leyline Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[9,10]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUml0dWFsSW50R2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/b698da54ed/RitualIntGloves.png","w":2,"h":2} +{"name":"지맥 지도","refName":"Leyline Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/5UjUxso.jpg"}} +{"name":"리치의 관","refName":"Lich's Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[117,134]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4bb6b31cbe/HelmetInt8.png","w":2,"h":2} +{"name":"생명 룬","refName":"Life Rune","namespace":"ITEM","tradeTag":"life-rune","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2V0dGxlcnMvVmlsbGFnZVJ1bmUxIiwic2NhbGUiOjF9XQ/98d663edbd/VillageRune1.png"} +{"name":"가벼운 브리간딘","refName":"Light Brigandine","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[48,63],"ev":[48,63]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MkEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/c9df1157d4/BodyStrDex2A.png","w":2,"h":3} +{"name":"등대 지도","refName":"Lighthouse Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/40gXcr4.jpg"}} +{"name":"린덴목 연모양 방패","refName":"Linden Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[43,56],"es":[11,14]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/996436dc6d/ShieldStrInt2.png","w":2,"h":3} +{"name":"사자 가죽모","refName":"Lion Pelt","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[380,437]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDEwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/ea03257436/HelmetDex10.png","w":2,"h":2} +{"name":"사자 검","refName":"Lion Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d69254d0a6/TwoHandSword6.png","w":2,"h":4} +{"name":"유연한 검","refName":"Lithe Blade","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDgiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/decb6a0e86/TwoHandSword8.png","w":2,"h":4} +{"name":"외가지뿔 부적","refName":"Lone Antler Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbldoaXRlMiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/21377608a3/TalismanWhite2.png"} +{"name":"장궁","refName":"Long Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/c064c479fa/Bow3.png","w":2,"h":4} +{"name":"긴 지팡이","refName":"Long Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmYzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/9bc79ef01c/Staff3.png","w":2,"h":4} +{"name":"장검","refName":"Longsword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDIiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/fcaf050e0f/TwoHandSword2.png","w":2,"h":4} +{"name":"긴 이빨 부적","refName":"Longtooth Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hblJlZDQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/47b8c0e94f/TalismanRed4.png"} +{"name":"전망대 지도","refName":"Lookout Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/QNuOzHT.jpg"}} +{"name":"위풍당당한 판금 갑옷","refName":"Lordly Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[353,417]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyM0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/09903268a5/BodyStr3C.png","w":2,"h":3} +{"name":"단단한 고리 갑옷","refName":"Loricated Ringmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[325,374],"es":[66,76]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/61293d71af/BodyStrInt1B.png","w":2,"h":3} +{"name":"빛나는 화석","refName":"Lucent Fossil","namespace":"ITEM","tradeTag":"lucent-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvTHVjZW50Rm9zc2lsIiwic2NhbGUiOjF9XQ/0cf6de72d4/LucentFossil.png"} +{"name":"달의 관","refName":"Lunaris Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[41,48]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/558833af02/HelmetInt6.png","w":2,"h":2} +{"name":"빛나는 수호","refName":"Lustrous Ward","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvTHVtaW5vdXNXYXJkIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/0be7aaf163/LuminousWard.png","w":2,"h":2} +{"name":"광기의 인큐베이터","refName":"Maddening Incubator","namespace":"ITEM","tradeTag":"maddening-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRGVsaXJpdW0iLCJzY2FsZSI6MX1d/74f49a934c/IncubationDelirium.png"} +{"name":"마엘스트롬 지팡이","refName":"Maelström Staff","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY1IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/53f1a6b438/Staff5.png","w":2,"h":4} +{"name":"마법사의 법의","refName":"Mage's Vestment","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[62,69]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9ea39de510/BodyInt1C.png","w":2,"h":3} +{"name":"재판관 왕관","refName":"Magistrate Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[160,189],"es":[33,39]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/cf727943d2/HelmetStrInt8.png","w":2,"h":2} +{"name":"마그마 거대 방패","refName":"Magmatic Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[144,165]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0hlaXN0U2hpZWxkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/e65fb9efea/HeistShield.png","w":2,"h":3} +{"name":"마호가니 거대 방패","refName":"Mahogany Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[230,265]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d95a5bfcf0/ShieldStr4.png","w":2,"h":4} +{"name":"압도적인 가죽모","refName":"Majestic Pelt","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[582,669]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDEwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/ea03257436/HelmetDex10.png","w":2,"h":2} +{"name":"압도적인 판금 갑옷","refName":"Majestic Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[530,625]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyM0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/09903268a5/BodyStr3C.png","w":2,"h":3} +{"name":"기형 지도","refName":"Malformation Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/bVcvxGD.jpg"}} +{"name":"해악의 송곳니","refName":"Malign Fangs","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9IZWlzdENsYXciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/7ebe8140fa/HeistClaw.png","w":2,"h":2} +{"name":"나무 망치","refName":"Mallet","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2UzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/5e536c19aa/TwoHandMace3.png","w":2,"h":4} +{"name":"가학의 도끼","refName":"Maltreatment Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9IZWlzdE9uZWhhbmRBeGUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5ba95d3930/HeistOnehandAxe.png","w":2,"h":3} +{"name":"아래턱 부적","refName":"Mandible Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9OZXdUYWxpc21hbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c548be9ed4/NewTalisman.png"} +{"name":"다면의 반지","refName":"Manifold Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvSGVpc3RSaW5nMkRhcmsiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/087a05ad4a/HeistRing2Dark.png"} +{"name":"단풍나무 원형 방패","refName":"Maple Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[88,99],"ev":[88,99]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9cccab30a2/ShieldStrDex2.png","w":2,"h":3} +{"name":"마라케스 활","refName":"Maraketh Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzkiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/aa9bf2b0d1/Bow9.png","w":2,"h":4} +{"name":"대리석 목걸이","refName":"Marble Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9NYXJibGVBbXVsZXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3dee478d8d/MarbleAmulet.png"} +{"name":"원수의 브리간딘","refName":"Marshall's Brigandine","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[627,721],"ev":[627,721]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/60a6d7b58c/BodyStrDex2C.png","w":2,"h":3} +{"name":"습지 지도","refName":"Marshes Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/25Oc1GQ.jpg"}} +{"name":"순교자 장화","refName":"Martyr Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[176,203],"es":[35,41]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/742e5a15d7/BootsStrInt2.png","w":2,"h":2} +{"name":"순교자 장갑","refName":"Martyr Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[176,203],"es":[35,41]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RySW50MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f09ae395f5/GlovesStrInt2.png","w":2,"h":2} +{"name":"고급 자물쇠 따개","refName":"Master Lockpick","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvTWFzdGVyTG9ja3BpY2siLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c0ac4addef/MasterLockpick.png","w":2,"h":2} +{"name":"능묘 지도","refName":"Mausoleum Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/lppiQiQ.jpg"}} +{"name":"탐욕의 메이븐의 끌","refName":"Maven's Chisel of Avarice","namespace":"ITEM","tradeTag":"mavens-chisel-of-avarice","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWF2ZW5DaGlzZWw0Iiwic2NhbGUiOjF9XQ/d878502dc7/MavenChisel4.png"} +{"name":"점술의 메이븐의 끌","refName":"Maven's Chisel of Divination","namespace":"ITEM","tradeTag":"mavens-chisel-of-divination","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWF2ZW5DaGlzZWw1Iiwic2NhbGUiOjF9XQ/ff3e7f02eb/MavenChisel5.png"} +{"name":"조달의 메이븐의 끌","refName":"Maven's Chisel of Procurement","namespace":"ITEM","tradeTag":"mavens-chisel-of-procurement","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWF2ZW5DaGlzZWwxIiwic2NhbGUiOjF9XQ/a21d7d73da/MavenChisel1.png"} +{"name":"확산의 메이븐의 끌","refName":"Maven's Chisel of Proliferation","namespace":"ITEM","tradeTag":"mavens-chisel-of-proliferation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWF2ZW5DaGlzZWwyIiwic2NhbGUiOjF9XQ/bb82bb4150/MavenChisel2.png"} +{"name":"갑충석의 메이븐의 끌","refName":"Maven's Chisel of Scarabs","namespace":"ITEM","tradeTag":"mavens-chisel-of-scarabs","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWF2ZW5DaGlzZWwzIiwic2NhbGUiOjF9XQ/a7a9ac8f01/MavenChisel3.png"} +{"name":"미로 지도","refName":"Maze Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/vPKZUFI.jpg"}} +{"name":"미노타우로스의 미로 지도","refName":"Maze of the Minotaur Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhczJNYXBzL05ldy9NaW5vdGF1ciIsInciOjEsImgiOjEsInNjYWxlIjoxLCJtbiI6MTQsIm10IjowLCJtaSI6MX1d/6bee7d5ef7/Minotaur.png","map":{"screenshot":"https://i.imgur.com/rMcvBGP.jpg"}} +{"name":"고기 갈이개","refName":"Meatgrinder","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U1IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/88d16a9600/TwoHandMace5.png","w":2,"h":4} +{"name":"고깃자루","refName":"Meatsack","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0Z1bmd1c1pvbWJpZUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/4da2b7756d/FungusZombieCorpse.png","w":3,"h":2} +{"name":"기계 경보 허리띠","refName":"Mechalarm Belt","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSGVpc3RCZWx0MiIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/21286700c8/HeistBelt2.png","w":2} +{"name":"기계식 허리띠","refName":"Mechanical Belt","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSGVpc3RCZWx0MiIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/21286700c8/HeistBelt2.png","w":2} +{"name":"중형 스킬 군 주얼","refName":"Medium Cluster Jewel","namespace":"ITEM","craftable":{"category":"Cluster Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL05ld0dlbUJhc2UyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/78f6bf8356/NewGemBase2.png"} +{"name":"중형 하이브리드 플라스크","refName":"Medium Hybrid Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvaHlicmlkZmxhc2syIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/7ac2158cdf/hybridflask2.png","h":2} +{"name":"중형 생명력 플라스크","refName":"Medium Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrMiIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/c06020a713/lifeflask2.png","h":2} +{"name":"중형 마나 플라스크","refName":"Medium Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrMiIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/3c612edd38/manaflask2.png","h":2} +{"name":"메사 지도","refName":"Mesa Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/gvpYUBQ.jpg"}} +{"name":"망사 장화","refName":"Mesh Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[51,64],"es":[11,14]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e75ade3184/BootsStrInt3.png","w":2,"h":2} +{"name":"망사 장갑","refName":"Mesh Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[58,67],"es":[12,14]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RySW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7adc65bac6/GlovesStrInt3.png","w":2,"h":2} +{"name":"금속성 화석","refName":"Metallic Fossil","namespace":"ITEM","tradeTag":"metallic-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvTWV0YWxsaWNGb3NzaWwiLCJzY2FsZSI6MX1d/5a8a5bd1b1/MetallicFossil.png"} +{"name":"섬세한 주조자 허리띠","refName":"Micro-Distillery Belt","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSGVpc3RCZWx0MSIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/1f77620811/HeistBelt1.png","w":2} +{"name":"심야의 칼날","refName":"Midnight Blade","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDgiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/406f7aec97/OneHandSword8.png","w":2,"h":3} +{"name":"군용 지팡이","refName":"Military Staff","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY0IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/85c22bd16b/Staff4.png","w":2,"h":4} +{"name":"정신의 창살","refName":"Mind Cage","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[73,84]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDEwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/79abe1a202/HelmetInt10.png","w":2,"h":2} +{"name":"광물층 지도","refName":"Mineral Pools Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/AvgBb6c.jpg"}} +{"name":"칼란드라의 거울","refName":"Mirror of Kalandra","namespace":"ITEM","tradeTag":"mirror","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lEdXBsaWNhdGUiLCJzY2FsZSI6MX1d/8d7fea29d1/CurrencyDuplicate.png"} +{"name":"거울 파편","refName":"Mirror Shard","namespace":"ITEM","tradeTag":"mirror-shard","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWlycm9yU2hhcmQiLCJzY2FsZSI6MX1d/698183ea2b/MirrorShard.png"} +{"name":"거울 같은 가시 방패","refName":"Mirrored Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[151,174],"es":[31,35]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/53a98ddeac/ShieldDexInt4.png","w":2,"h":2} +{"name":"원숭이 발 부적","refName":"Monkey Paw Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Nb25rZXlQYXdUYWxpc21hbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/4eb5202fe4/MonkeyPawTalisman.png"} +{"name":"쌍둥이 원숭이 부적","refName":"Monkey Twins Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hblJlZDYiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/2cd96aba6e/TalismanRed6.png"} +{"name":"달의 지팡이","refName":"Moon Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY4IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/edbdbaa9ba/Staff8.png","w":2,"h":4} +{"name":"달의 사원 지도","refName":"Moon Temple Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/WoUgaQp.jpg"}} +{"name":"달빛 관","refName":"Moonlit Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[87,100]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/558833af02/HelmetInt6.png","w":2,"h":2} +{"name":"월장석 반지","refName":"Moonstone Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTW9vbnN0b25lUmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6dbab29358/MoonstoneRing.png"} +{"name":"모닝스타","refName":"Morning Star","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U4IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/d7f01f7a37/TwoHandMace8.png","w":2,"h":4} +{"name":"필멸의 슬픔","refName":"Mortal Grief","namespace":"ITEM","tradeTag":"grie","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyVmFhbDA0Iiwic2NhbGUiOjF9XQ/fa8dd8fea2/UberVaal04.png"} +{"name":"필멸의 희망","refName":"Mortal Hope","namespace":"ITEM","tradeTag":"hope","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyVmFhbDAyIiwic2NhbGUiOjF9XQ/9f6c126c9e/UberVaal02.png"} +{"name":"필멸의 무지","refName":"Mortal Ignorance","namespace":"ITEM","tradeTag":"ign","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyVmFhbDAzIiwic2NhbGUiOjF9XQ/3d126fe51b/UberVaal03.png"} +{"name":"필멸의 격노","refName":"Mortal Rage","namespace":"ITEM","tradeTag":"rage","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyVmFhbDAxIiwic2NhbGUiOjF9XQ/9dca208434/UberVaal01.png"} +{"name":"조각무늬 연모양 방패","refName":"Mosaic Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[147,169],"es":[30,34]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/23fbb47426/ShieldStrInt3.png","w":2,"h":3} +{"name":"산 룬","refName":"Mountain Rune","namespace":"ITEM","tradeTag":"mountain-rune","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2V0dGxlcnMvVmlsbGFnZVJ1bmU4Iiwic2NhbGUiOjF9XQ/f5ea7b3aa9/VillageRune8.png"} +{"name":"진흙 간헐천 지도","refName":"Mud Geyser Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/qVVPlhi.jpg"}} +{"name":"살인자의 장화","refName":"Murder Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[185,213],"es":[18,21]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/bad1ba72df/BootsDexInt4.png","w":2,"h":2} +{"name":"살인자의 미트","refName":"Murder Mitts","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[121,139],"es":[25,28]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/060b6ea395/GlovesDexInt3.png","w":2,"h":2} +{"name":"살인적인 눈 주얼","refName":"Murderous Eye Jewel","namespace":"ITEM","craftable":{"category":"Abyss Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL011cmRlcm91c0V5ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/439da96896/MurderousEye.png"} +{"name":"박물관 지도","refName":"Museum Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/oOrFsgt.jpg"}} +{"name":"불평하는 분노의 에센스","refName":"Muttering Essence of Anger","namespace":"ITEM","tradeTag":"muttering-essence-of-anger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9BbmdlcjIiLCJzY2FsZSI6MX1d/3963f7ecaf/Anger2.png"} +{"name":"불평하는 경멸의 에센스","refName":"Muttering Essence of Contempt","namespace":"ITEM","tradeTag":"muttering-essence-of-contempt","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Db250ZW1wdDIiLCJzY2FsZSI6MX1d/13a5416e7b/Contempt2.png"} +{"name":"불평하는 두려움의 에센스","refName":"Muttering Essence of Fear","namespace":"ITEM","tradeTag":"muttering-essence-of-fear","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9GZWFyMiIsInNjYWxlIjoxfV0/e65af458a0/Fear2.png"} +{"name":"불평하는 탐욕의 에센스","refName":"Muttering Essence of Greed","namespace":"ITEM","tradeTag":"muttering-essence-of-greed","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVlZDIiLCJzY2FsZSI6MX1d/66dcbcfe6c/Greed2.png"} +{"name":"불평하는 증오의 에센스","refName":"Muttering Essence of Hatred","namespace":"ITEM","tradeTag":"muttering-essence-of-hatred","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9IYXRyZWQyIiwic2NhbGUiOjF9XQ/cb37284b43/Hatred2.png"} +{"name":"불평하는 슬픔의 에센스","refName":"Muttering Essence of Sorrow","namespace":"ITEM","tradeTag":"muttering-essence-of-sorrow","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Tb3Jyb3cyIiwic2NhbGUiOjF9XQ/d4fa234cf8/Sorrow2.png"} +{"name":"불평하는 고뇌의 에센스","refName":"Muttering Essence of Torment","namespace":"ITEM","tradeTag":"muttering-essence-of-torment","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Ub3JtZW50MiIsInNjYWxlIjoxfV0/e2ca4c066f/Torment2.png"} +{"name":"불평하는 비애의 에센스","refName":"Muttering Essence of Woe","namespace":"ITEM","tradeTag":"muttering-essence-of-woe","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Xb2UyIiwic2NhbGUiOjF9XQ/de9769c922/Woe2.png"} +{"name":"수수께끼의 인큐베이터","refName":"Mysterious Incubator","namespace":"ITEM","tradeTag":"mysterious-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uR2VuZXJpYyIsInNjYWxlIjoxfV0/9476a818a5/IncubationGeneric.png"} +{"name":"못박은 너클","refName":"Nailed Fist","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3MSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/22e3c62f0d/Claw1.png","w":2,"h":2} +{"name":"이름 없는 반지","refName":"Nameless Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUml0dWFsUmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1213b9959b/RitualRing.png"} +{"name":"해군 계약","refName":"Naval Contract","namespace":"ITEM","craftable":{"uniqueOnly":true,"category":"Heist Contract"},"icon":""} +{"name":"해군 장교","refName":"Naval Officer","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0FkbWlyYWxEYXJuYXdDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/ccfa254872/AdmiralDarnawCorpse.png","w":3,"h":2} +{"name":"네크로맨서 관","refName":"Necromancer Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[55,64]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4bb6b31cbe/HelmetInt8.png","w":2,"h":2} +{"name":"네크로맨서 실크 갑옷","refName":"Necromancer Silks","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[123,147]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/3689be0ddd/BodyInt2B.png","w":2,"h":3} +{"name":"매장지 지도","refName":"Necropolis Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/6cNUs2I.jpg"}} +{"name":"괴사의 방어구","refName":"Necrotic Armour","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[723,831],"es":[145,167]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50NEMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/99efce2041/BodyDexInt4C.png","w":2,"h":3} +{"name":"바늘 호러","refName":"Needle Horror","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0RlbW9uQm9zczNDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/6abaea26f2/DemonBoss3Corpse.png","w":3,"h":2} +{"name":"연결부 장갑","refName":"Nexus Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[47,54]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUml0dWFsSW50R2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/b698da54ed/RitualIntGloves.png","w":2,"h":2} +{"name":"악몽의 배서닛","refName":"Nightmare Bascinet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[162,187],"ev":[233,268]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDEwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/4c9ea10e7c/HelmetStrDex10.png","w":2,"h":2} +{"name":"악몽의 철퇴","refName":"Nightmare Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U4IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/57786131bb/OneHandMace8.png","w":2,"h":3} +{"name":"밤의 직물 로브","refName":"Nightweave Robe","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[227,260]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8b200fbbb5/BodyInt2C.png","w":2,"h":3} +{"name":"밤바람 슬리퍼","refName":"Nightwind Slippers","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[34,39]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SaXR1YWxJbnRCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/dfe31cc493/RitualIntBoots.png","w":2,"h":2} +{"name":"니코의 기억","refName":"Niko's Memory","namespace":"ITEM","craftable":{"category":"Memory Line"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWVtb3J5TGluZS9OaWtvTWVtb3J5SXRlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5c560ea8fd/NikoMemoryItem.png"} +{"name":"귀족 도끼","refName":"Noble Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/e2c34a0fb2/TwoHandAxe6.png","w":2,"h":4} +{"name":"귀족 클로","refName":"Noble Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/9efad90cdb/Claw7.png","w":2,"h":2} +{"name":"귀족 삼각모","refName":"Noble Tricorne","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[232,266]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/545e1905b3/HelmetDex6.png","w":2,"h":2} +{"name":"유독성 기폭제","refName":"Noxious Catalyst","namespace":"ITEM","tradeTag":"noxious-catalyst","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL0NoYW9zUGh5c2ljYWxDYXRhbHlzdCIsInNjYWxlIjoxfV0/2b886f8343/ChaosPhysicalCatalyst.png"} +{"name":"소가죽 장화","refName":"Nubuck Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[113,126]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/76eb290c9b/BootsDex4.png","w":2,"h":2} +{"name":"소가죽 장갑","refName":"Nubuck Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[109,122]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/05a8c03e95/GlovesDex4.png","w":2,"h":2} +{"name":"참나무 버클러","refName":"Oak Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[220,259]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/cffdb4477e/ShieldDex2.png","w":2,"h":2} +{"name":"참나무가지 팅크","refName":"Oakbranch Tincture","namespace":"ITEM","craftable":{"category":"Tincture"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL0NyaXRpY2FsU3RyaWtlU2FwIiwidyI6MSwiaCI6Miwic2NhbGUiOjF9XQ/d7d5d7ef19/CriticalStrikeSap.png","h":2} +{"name":"가려진 환영의 오브","refName":"Obscured Delirium Orb","namespace":"ITEM","tradeTag":"obscured-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJCcmVhY2giLCJzY2FsZSI6MX1d/0b320eec66/DeliriumOrbBreach.png"} +{"name":"가려진 인큐베이터","refName":"Obscured Incubator","namespace":"ITEM","tradeTag":"obscured-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQnJlYWNoIiwic2NhbGUiOjF9XQ/e9b256aff0/IncubationBreach.png"} +{"name":"흑요석 숫돌","refName":"Obsidian Sharpening Stone","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvT2JzaWRpYW5TaGFycGVuaW5nU3RvbmUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3b585d05fe/ObsidianSharpeningStone.png","w":2,"h":2} +{"name":"오컬티스트의 법의","refName":"Occultist's Vestment","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[137,151]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9ea39de510/BodyInt1C.png","w":2,"h":3} +{"name":"오커 셉터","refName":"Ochre Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/35e149f5cf/scepter6.png","w":2,"h":3} +{"name":"여신에게 바치는 공물","refName":"Offering to the Goddess","namespace":"ITEM","tradeTag":"offer","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9MYWJ5cmludGgiLCJzY2FsZSI6MX1d/24fe6dc261/Labyrinth.png"} +{"name":"성유 추출기","refName":"Oil Extractor","namespace":"ITEM","tradeTag":"oil-extractor","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9JY2hvckV4dHJhY3RvciIsInNjYWxlIjoxfV0/e020224caf/IchorExtractor.png"} +{"name":"기름칠된 외투","refName":"Oiled Coat","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[124,146],"es":[28,33]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/360c5ce7d4/BodyDexInt2B.png","w":2,"h":3} +{"name":"기름칠된 조끼","refName":"Oiled Vest","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[54,70],"es":[14,18]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MkEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2b44daac92/BodyDexInt2A.png","w":2,"h":3} +{"name":"아드레날린의 징조","refName":"Omen of Adrenaline","namespace":"ITEM","tradeTag":"omen-of-adrenaline","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zM1llbGxvdyIsInNjYWxlIjoxfV0/3713d430a2/VoodooOmens3Yellow.png"} +{"name":"개량의 징조","refName":"Omen of Amelioration","namespace":"ITEM","tradeTag":"omen-of-amelioration","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zMUJsdWUiLCJzY2FsZSI6MX1d/7af7f24083/VoodooOmens1Blue.png"} +{"name":"표백의 징조","refName":"Omen of Blanching","namespace":"ITEM","tradeTag":"omen-of-blanching","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zNFB1cnBsZSIsInNjYWxlIjoxfV0/cc40d87dcb/VoodooOmens4Purple.png"} +{"name":"광채의 징조","refName":"Omen of Brilliance","namespace":"ITEM","tradeTag":"omen-of-brilliance","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zNEJsdWUiLCJzY2FsZSI6MX1d/0fb19e3399/VoodooOmens4Blue.png"} +{"name":"연결의 징조","refName":"Omen of Connections","namespace":"ITEM","tradeTag":"omen-of-connections","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zM1B1cnBsZSIsInNjYWxlIjoxfV0/ef5b7d0a85/VoodooOmens3Purple.png"} +{"name":"죽음의 춤의 징조","refName":"Omen of Death-dancing","namespace":"ITEM","tradeTag":"omen-of-death-dancing","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zMVllbGxvdyIsInNjYWxlIjoxfV0/cbc6367481/VoodooOmens1Yellow.png"} +{"name":"죽음의 문턱의 징조","refName":"Omen of Death's Door","namespace":"ITEM","tradeTag":"omen-of-deaths-door","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zNFllbGxvdyIsInNjYWxlIjoxfV0/6e22195c5b/VoodooOmens4Yellow.png"} +{"name":"행운의 징조","refName":"Omen of Fortune","namespace":"ITEM","tradeTag":"omen-of-fortune","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zMVB1cnBsZSIsInNjYWxlIjoxfV0/f7558b6e48/VoodooOmens1Purple.png"} +{"name":"원기 회복의 징조","refName":"Omen of Refreshment","namespace":"ITEM","tradeTag":"omen-of-refreshment","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zMlllbGxvdyIsInNjYWxlIjoxfV0/292381414c/VoodooOmens2Yellow.png"} +{"name":"귀환의 징조","refName":"Omen of Return","namespace":"ITEM","tradeTag":"omen-of-return","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zMkJsdWUiLCJzY2FsZSI6MX1d/bd2fd8bf5b/VoodooOmens2Blue.png"} +{"name":"보석상의 징조","refName":"Omen of the Jeweller","namespace":"ITEM","tradeTag":"omen-of-the-jeweller","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zMlB1cnBsZSIsInNjYWxlIjoxfV0/220fd7098d/VoodooOmens2Purple.png"} +{"name":"영혼 포식자의 징조","refName":"Omen of the Soul Devourer","namespace":"ITEM","tradeTag":"omen-of-the-soul-devourer","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zM0JsdWUiLCJzY2FsZSI6MX1d/00f28b94e2/VoodooOmens3Blue.png"} +{"name":"전조의 마법봉","refName":"Omen Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNiIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/30763e0fe7/Wand6.png","h":3} +{"name":"오닉스 목걸이","refName":"Onyx Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQ3IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/58942b1ab3/Amulet7.png"} +{"name":"오팔 반지","refName":"Opal Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvT3BhbFJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8c87f65b28/OpalRing.png"} +{"name":"오팔 셉터","refName":"Opal Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/c986bafb78/scepter4.png","w":2,"h":3} +{"name":"오팔 마법봉","refName":"Opal Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNCIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/b505ad92e7/Wand4.png","h":3} +{"name":"오팔빛 성유","refName":"Opalescent Oil","namespace":"ITEM","tradeTag":"opalescent-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9PcGFsZXNjZW50T2lsIiwic2NhbGUiOjF9XQ/abd419a154/OpalescentOil.png"} +{"name":"첩보원의 정찰 보고서","refName":"Operative's Scouting Report","namespace":"ITEM","tradeTag":"operatives-scouting-report","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png"} +{"name":"호화로운 화석","refName":"Opulent Fossil","namespace":"ITEM","tradeTag":"opulent-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUGVyZmVjdEZvc3NpbCIsInNjYWxlIjoxfV0/f9e43ecadb/PerfectFossil.png"} +{"name":"연금술의 오브","refName":"Orb of Alchemy","namespace":"ITEM","tradeTag":"alch","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lVcGdyYWRlVG9SYXJlIiwic2NhbGUiOjF9XQ/0c72cd1d44/CurrencyUpgradeToRare.png"} +{"name":"변화의 오브","refName":"Orb of Alteration","namespace":"ITEM","tradeTag":"alt","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lSZXJvbGxNYWdpYyIsInNjYWxlIjoxfV0/6308fc8ca2/CurrencyRerollMagic.png"} +{"name":"소멸의 오브","refName":"Orb of Annulment","namespace":"ITEM","tradeTag":"annul","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5udWxsT3JiIiwic2NhbGUiOjF9XQ/0858a418ac/AnnullOrb.png"} +{"name":"확장의 오브","refName":"Orb of Augmentation","namespace":"ITEM","tradeTag":"aug","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lBZGRNb2RUb01hZ2ljIiwic2NhbGUiOjF9XQ/d879c15321/CurrencyAddModToMagic.png"} +{"name":"속박의 오브","refName":"Orb of Binding","namespace":"ITEM","tradeTag":"orb-of-binding","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmluZGluZ09yYiIsInNjYWxlIjoxfV0/aac9579bd2/BindingOrb.png"} +{"name":"기회의 오브","refName":"Orb of Chance","namespace":"ITEM","tradeTag":"chance","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lVcGdyYWRlUmFuZG9tbHkiLCJzY2FsZSI6MX1d/a3f9bf0917/CurrencyUpgradeRandomly.png"} +{"name":"갈등의 오브","refName":"Orb of Conflict","namespace":"ITEM","tradeTag":"orb-of-conflict","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ29uZmxpY3RPcmJSYW5rMSIsInNjYWxlIjoxfV0/7e02c990fc/ConflictOrbRank1.png"} +{"name":"지배의 오브","refName":"Orb of Dominance","namespace":"ITEM","tradeTag":"mavens-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWF2ZW5PcmIiLCJzY2FsZSI6MX1d/f307d80bfd/MavenOrb.png"} +{"name":"연결의 오브","refName":"Orb of Fusing","namespace":"ITEM","tradeTag":"fusing","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lSZXJvbGxTb2NrZXRMaW5rcyIsInNjYWxlIjoxfV0/c5e1959880/CurrencyRerollSocketLinks.png"} +{"name":"지평의 오브","refName":"Orb of Horizons","namespace":"ITEM","tradeTag":"orb-of-horizons","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSG9yaXpvbk9yYiIsInNjYWxlIjoxfV0/0891338fb0/HorizonOrb.png"} +{"name":"후회의 오브","refName":"Orb of Regret","namespace":"ITEM","tradeTag":"regret","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lQYXNzaXZlU2tpbGxSZWZ1bmQiLCJzY2FsZSI6MX1d/32d499f562/CurrencyPassiveSkillRefund.png"} +{"name":"정제의 오브","refName":"Orb of Scouring","namespace":"ITEM","tradeTag":"scour","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lDb252ZXJ0VG9Ob3JtYWwiLCJzY2FsZSI6MX1d/a0981d67fe/CurrencyConvertToNormal.png"} +{"name":"진화의 오브","refName":"Orb of Transmutation","namespace":"ITEM","tradeTag":"transmute","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lVcGdyYWRlVG9NYWdpYyIsInNjYWxlIjoxfV0/ded9e8ee63/CurrencyUpgradeToMagic.png"} +{"name":"취소의 오브","refName":"Orb of Unmaking","namespace":"ITEM","tradeTag":"orb-of-unmaking","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUmVncmV0T3JiIiwic2NhbGUiOjF9XQ/beae1b00c7/RegretOrb.png"} +{"name":"과수원 지도","refName":"Orchard Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/S5wxemk.jpg"}} +{"name":"화려한 인큐베이터","refName":"Ornate Incubator","namespace":"ITEM","tradeTag":"ornate-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQ3VycmVuY3kiLCJzY2FsZSI6MX1d/e8a6d32623/IncubationCurrency.png"} +{"name":"화려한 철퇴","refName":"Ornate Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U3IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/84402507d1/OneHandMace7.png","w":2,"h":3} +{"name":"화려한 화살통","refName":"Ornate Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9UcmlnZ2VyUXVpdmVyVW5pcXVlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/925018d4b5/TriggerQuiverUnique.png","w":2,"h":3} +{"name":"화려한 고리 갑옷","refName":"Ornate Ringmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[259,298],"es":[54,62]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/3247afb396/BodyStrInt1C.png","w":2,"h":3} +{"name":"화려한 가시 방패","refName":"Ornate Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[120,135],"es":[26,29]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3f3c95a49a/ShieldDexInt5.png","w":2,"h":2} +{"name":"화려한 검","refName":"Ornate Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d69254d0a6/TwoHandSword6.png","w":2,"h":4} +{"name":"진동 셉터","refName":"Oscillating Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9IZWlzdFNjZXB0cmVFbGVtZW50YWwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/34e5d78ab3/HeistSceptreElemental.png","w":2,"h":3} +{"name":"이계의 인큐베이터","refName":"Otherworldly Incubator","namespace":"ITEM","tradeTag":"otherworldly-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uTWFwcyIsInNjYWxlIjoxfV0/3d07c20be0/IncubationMaps.png"} +{"name":"신기한 정찰 보고서","refName":"Otherworldly Scouting Report","namespace":"ITEM","tradeTag":"otherworldly-scouting-report","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png"} +{"name":"지하 감옥 성유물 보관실 열쇠","refName":"Oubliette Reliquary Key","namespace":"ITEM","tradeTag":"oubliette-reliquary-key","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TaXJ1c0ZvaWwiLCJzY2FsZSI6MX1d/1ada8ca2a7/SirusFoil.png"} +{"name":"무성한 유적 지도","refName":"Overgrown Ruin Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/U1gMZhT.jpg"}} +{"name":"무성한 성소 지도","refName":"Overgrown Shrine Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/vXh4QKk.jpg"}} +{"name":"패드 재킷","refName":"Padded Jacket","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[102,128],"es":[24,29]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/333216677b/BodyDexInt1B.png","w":2,"h":3} +{"name":"패드 조끼","refName":"Padded Vest","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[27,38],"es":[9,13]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MUEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/4e0c88b753/BodyDexInt1A.png","w":2,"h":3} +{"name":"이교도 마법봉","refName":"Pagan Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNyIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/84ced52bef/Wand7.png","h":3} +{"name":"고통의 예술가","refName":"Pain Artist","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0FmZmxpY3Rpb25NaW5pb24yQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/afa1eaea1c/AfflictionMinion2Corpse.png","w":3,"h":2} +{"name":"도색된 버클러","refName":"Painted Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[123,154]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/10a005f978/ShieldDex3.png","w":2,"h":2} +{"name":"도색된 거대 방패","refName":"Painted Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[188,216]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/80f9f1abea/ShieldStr7.png","w":2,"h":4} +{"name":"궁전 지도","refName":"Palace Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/U7ABlGw.jpg"}} +{"name":"성기사 장화","refName":"Paladin Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[205,236],"es":[41,47]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e75ade3184/BootsStrInt3.png","w":2,"h":2} +{"name":"성기사 왕관","refName":"Paladin Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[308,355],"es":[62,71]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/607b69e687/HelmetStrInt7.png","w":2,"h":2} +{"name":"성기사 장갑","refName":"Paladin Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[205,236],"es":[41,47]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RySW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7adc65bac6/GlovesStrInt3.png","w":2,"h":2} +{"name":"성기사의 호버크","refName":"Paladin's Hauberk","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[627,721],"es":[126,145]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5a1804c81b/BodyStrInt2C.png","w":2,"h":3} +{"name":"파피루스 유물","refName":"Papyrus Relic","namespace":"ITEM","craftable":{"category":"Sanctum Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljQmFzZTR4MSIsInciOjQsImgiOjEsInNjYWxlIjoxfV0/978c0b6ab9/RelicBase4x1.png","w":4} +{"name":"공원 지도","refName":"Park Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/HlFwmtM.jpg"}} +{"name":"파우아 목걸이","refName":"Paua Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQxIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/aa977ebe43/Amulet1.png"} +{"name":"파우아 반지","refName":"Paua Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4f08d18365/Ring3.png"} +{"name":"페코라로","refName":"Pecoraro","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjQiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/dc28604809/Rapier4.png","h":4} +{"name":"우리 지도","refName":"Pen Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/FYax6WD.jpg"}} +{"name":"관통 화살통","refName":"Penetrating Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJQZW5ldHJhdGluZyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/7db7561558/QuiverPenetrating.png","w":2,"h":3} +{"name":"반도 지도","refName":"Peninsula Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/5YycEWs.jpg"}} +{"name":"참회 가면","refName":"Penitent Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[185,212],"ev":[185,212]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleFIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f63493ca95/HelmetStrDexR.png","w":2,"h":2} +{"name":"완전한 신성모독자","refName":"Perfect Blasphemer","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0dlb2ZyaUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/c8c02e1c54/GeofriCorpse.png","w":3,"h":2} +{"name":"완전한 피의 악마","refName":"Perfect Blood Demon","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0hlbGxzY2FwZURlbW9uQm9zc0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/9bcd7bb5b8/HellscapeDemonBossCorpse.png","w":3,"h":2} +{"name":"완전한 춤추는 검","refName":"Perfect Dancing Sword","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0FuaW1hdGVkV2VhcG9uQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/2720caa383/AnimatedWeaponCorpse.png","w":3,"h":2} +{"name":"완전한 어둠의 꼭두각시","refName":"Perfect Dark Marionette","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JvYm90TWFubmVxdWluQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/2ad85223a4/RobotMannequinCorpse.png","w":3,"h":2} +{"name":"완전한 어둠의 수확자","refName":"Perfect Dark Reaper","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JlYXBlckJvc3NDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/d6c81d82f9/ReaperBossCorpse.png","w":3,"h":2} +{"name":"완전한 드루이드 연금술사","refName":"Perfect Druidic Alchemist","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Rhd2hvYU1lZGljaW5lV29tYW5Db3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/a446a2f4d0/TawhoaMedicineWomanCorpse.png","w":3,"h":2} +{"name":"완전한 섬뜩한 눈","refName":"Perfect Eldritch Eye","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0VsZGVyVGVudGFjbGVNaW5pb25MYXJnZUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/19b67ee9a1/ElderTentacleMinionLargeCorpse.png","w":3,"h":2} +{"name":"완전한 불타는 식인종","refName":"Perfect Fiery Cannibal","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0ZpcmVGdXJ5Q29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/458c4ab871/FireFuryCorpse.png","w":3,"h":2} +{"name":"완전한 숲 호랑이","refName":"Perfect Forest Tiger","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1RpZ2VyQmVzdGlhcnlTcGlyaXRCb3NzQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/6a46a7dc19/TigerBestiarySpiritBossCorpse.png","w":3,"h":2} +{"name":"완전한 숲 전사","refName":"Perfect Forest Warrior","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zpa2luZ01hcEJvc3NDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/cc6f33141d/VikingMapBossCorpse.png","w":3,"h":2} +{"name":"완전한 얼어붙은 식인종","refName":"Perfect Frozen Cannibal","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0hhaWxyYWtlQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/a3828d3005/HailrakeCorpse.png","w":3,"h":2} +{"name":"완전한 수호자 거북이","refName":"Perfect Guardian Turtle","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Jvbmdva3VyYWlTcGlyaXRUb3J0b2lzZUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/5cdaded7da/RongokuraiSpiritTortoiseCorpse.png","w":3,"h":2} +{"name":"완전한 잊혀져 가는 골리앗","refName":"Perfect Half-remembered Goliath","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1N5bnRoZXNpc0dvbGVtQm9zc0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/aed2848215/SynthesisGolemBossCorpse.png","w":3,"h":2} +{"name":"완전한 육중한 기형물","refName":"Perfect Hulking Miscreation","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JvYm90QXJndXNNaW5pYm9zc0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/b72efcb93e/RobotArgusMinibossCorpse.png","w":3,"h":2} +{"name":"완전한 히드라","refName":"Perfect Hydra","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0h5ZHJhQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/cd848db11b/HydraCorpse.png","w":3,"h":2} +{"name":"완전한 심판의 정령","refName":"Perfect Judgemental Spirit","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0dvZGRlc3NPZkp1c3RpY2VDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/e674a594ff/GoddessOfJusticeCorpse.png","w":3,"h":2} +{"name":"완전한 고깃자루","refName":"Perfect Meatsack","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0Z1bmd1c1pvbWJpZUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/4da2b7756d/FungusZombieCorpse.png","w":3,"h":2} +{"name":"완전한 해군 장교","refName":"Perfect Naval Officer","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0FkbWlyYWxEYXJuYXdDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/ccfa254872/AdmiralDarnawCorpse.png","w":3,"h":2} +{"name":"완전한 바늘 호러","refName":"Perfect Needle Horror","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0RlbW9uQm9zczNDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/6abaea26f2/DemonBoss3Corpse.png","w":3,"h":2} +{"name":"완전한 고통의 예술가","refName":"Perfect Pain Artist","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0FmZmxpY3Rpb25NaW5pb24yQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/afa1eaea1c/AfflictionMinion2Corpse.png","w":3,"h":2} +{"name":"완전한 원시 창제자","refName":"Perfect Primal Demiurge","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0NydXNhZGVyTWFuYVBoYW50YXNtQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/66bb067c9b/CrusaderManaPhantasmCorpse.png","w":3,"h":2} +{"name":"완전한 원시 천둥새","refName":"Perfect Primal Thunderbird","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JhdmVuQm9zc0JsdWVDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/1a1ed30e2f/RavenBossBlueCorpse.png","w":3,"h":2} +{"name":"완전한 룬의 해골","refName":"Perfect Runic Skeleton","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1N3b3JkU2tlbGV0b25Db3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/171f40accf/SwordSkeletonCorpse.png","w":3,"h":2} +{"name":"완전한 혈액술사 악마","refName":"Perfect Sanguimancer Demon","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0hlbGxzY2FwZURlbW9uRWxpdGUyQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/a795ad40fa/HellscapeDemonElite2Corpse.png","w":3,"h":2} +{"name":"완전한 톱날 호러","refName":"Perfect Sawblade Horror","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0RlbW9uQm9zczFDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/27f61146a0/DemonBoss1Corpse.png","w":3,"h":2} +{"name":"완전한 독사 전사","refName":"Perfect Serpent Warrior","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0F0bGFzRXhpbGUzQXBwYXJpdGlvbkNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/127b613caf/AtlasExile3ApparitionCorpse.png","w":3,"h":2} +{"name":"완전한 그림자 광전사","refName":"Perfect Shadow Berserker","namespace":"ITEM","icon":"%NOT_FOUND%","w":3,"h":2} +{"name":"완전한 그림자 구조물","refName":"Perfect Shadow Construct","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0luY2FTaGFkb3dCb3NzQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/acddc4a119/IncaShadowBossCorpse.png","w":3,"h":2} +{"name":"완전한 칼날 호러","refName":"Perfect Slashing Horror","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0RlbW9uQm9zczJDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/211195cd4d/DemonBoss2Corpse.png","w":3,"h":2} +{"name":"완전한 거미 여군주","refName":"Perfect Spider Matriarch","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0JsYWNrRGVhdGhCb3NzQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/658153825a/BlackDeathBossCorpse.png","w":3,"h":2} +{"name":"완전한 행운의 정령","refName":"Perfect Spirit of Fortune","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0t1ZHVrdVRvdGVtQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/7faf1de77b/KudukuTotemCorpse.png","w":3,"h":2} +{"name":"완전한 전쟁군주","refName":"Perfect Warlord","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL09ha0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/9a9c4d9ada/OakCorpse.png","w":3,"h":2} +{"name":"페르나치","refName":"Pernach","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U2IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/a2a18837d4/OneHandMace6.png","w":2,"h":3} +{"name":"석화된 곤봉","refName":"Petrified Club","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2UyIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/75d926bb65/OneHandMace2.png","h":3} +{"name":"환영 지도","refName":"Phantasmagoria Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/yCDYKxA.jpg"}} +{"name":"혼령 장화","refName":"Phantom Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[205,236],"es":[41,47]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/bad1ba72df/BootsDexInt4.png","w":2,"h":2} +{"name":"혼령 철퇴","refName":"Phantom Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U4IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/57786131bb/OneHandMace8.png","w":2,"h":3} +{"name":"혼령 미트","refName":"Phantom Mitts","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[205,236],"es":[41,47]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/060b6ea395/GlovesDexInt3.png","w":2,"h":2} +{"name":"선창 지도","refName":"Pier Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/rZMXMj1.jpg"}} +{"name":"돼지 머리 배서닛","refName":"Pig-Faced Bascinet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[229,263],"ev":[159,183]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f0313fc805/HelmetStrDex9.png","w":2,"h":2} +{"name":"말뚝 망치","refName":"Piledriver","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U0IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/8c1f2059d0/TwoHandMace4.png","w":2,"h":4} +{"name":"소나무 버클러","refName":"Pine Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[51,66]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/cffdb4477e/ShieldDex2.png","w":2,"h":2} +{"name":"최고의 거대 방패","refName":"Pinnacle Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[467,537]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/80f9f1abea/ShieldStr7.png","w":2,"h":4} +{"name":"구덩이 지도","refName":"Pit Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/PkwpOv0.jpg"}} +{"name":"키메라의 구덩이 지도","refName":"Pit of the Chimera Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhczJNYXBzL05ldy9DaGltZXJhIiwidyI6MSwiaCI6MSwic2NhbGUiOjEsIm1uIjoxNCwibXQiOjAsIm1pIjoxfV0/c48b6d1b55/Chimera.png","map":{"screenshot":"https://i.imgur.com/ey3258Y.jpg"}} +{"name":"역병 가면","refName":"Plague Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[29,38],"es":[7,10]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/1bcda70f31/HelmetDexInt2.png","w":2,"h":2} +{"name":"널빤지 연모양 방패","refName":"Plank Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[18,25],"es":[5,7]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/beeb773dcf/ShieldStrInt1.png","w":2,"h":3} +{"name":"판금 조끼","refName":"Plate Vest","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[19,27]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMUEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/027d388361/BodyStr1A.png","w":2,"h":3} +{"name":"고원 지도","refName":"Plateau Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/0t2NnqI.jpg"}} +{"name":"판금 건틀릿","refName":"Plated Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[39,50]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyMiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/557280e2c8/GlovesStr2.png","w":2,"h":2} +{"name":"판금 각반","refName":"Plated Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[77,96]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/56efa25c50/BootsStr3.png","w":2,"h":2} +{"name":"판금 대형 망치","refName":"Plated Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U2IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/a114ad5617/TwoHandMace6.png","w":2,"h":4} +{"name":"백금 크리스","refName":"Platinum Kris","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjYiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/5dcee0019c/Dagger6.png","h":3} +{"name":"백금 셉터","refName":"Platinum Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/4b16d71d85/scepter5.png","w":2,"h":3} +{"name":"광장 지도","refName":"Plaza Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/kYGkNDs.jpg"}} +{"name":"공압 단검","refName":"Pneumatic Dagger","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0hlaXN0RGFnZ2VyIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/d484666b70/HeistDagger.png","h":3} +{"name":"포이너드","refName":"Poignard","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/954af836f7/Dagger4.png","h":3} +{"name":"독딸기 팅크","refName":"Poisonberry Tincture","namespace":"ITEM","craftable":{"category":"Tincture"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL1BvaXNvblNhcCIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/d8e5f6cbdc/PoisonSap.png","h":2} +{"name":"극지의 버클러","refName":"Polar Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[123,142]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0RleEhlaXN0U2hpZWxkIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/484b5bba00/DexHeistShield.png","w":2,"h":2} +{"name":"극성의 초대","refName":"Polaric Invitation","namespace":"ITEM","craftable":{"category":"Invitation"},"tradeTag":"polaric-invitation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVlc3RJdGVtcy9DbGVhbnNpbmdGaXJlT3JiUXVlc3QwIiwic2NhbGUiOjF9XQ/b5b962d0c8/CleansingFireOrbQuest0.png"} +{"name":"자루 도끼","refName":"Poleaxe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/24ac93d9cd/TwoHandAxe4.png","w":2,"h":4} +{"name":"광택 나는 감지 부적","refName":"Polished Sensing Charm","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvUG9saXNoZWRTZW5zaW5nQ2hhcm0iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/395f37968e/PolishedSensingCharm.png","w":2,"h":2} +{"name":"광택을 낸 가시 방패","refName":"Polished Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[111,131],"es":[23,27]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/53a98ddeac/ShieldDexInt4.png","w":2,"h":2} +{"name":"항만 지도","refName":"Port Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/9KprAxq.jpg"}} +{"name":"포탈 주문서","refName":"Portal Scroll","namespace":"ITEM","tradeTag":"portal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lQb3J0YWwiLCJzY2FsZSI6MX1d/d92d3478a0/CurrencyPortal.png"} +{"name":"강화형 연금술 공명기","refName":"Potent Alchemical Resonator","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvVXBncmFkZTJ4MUIiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MX1d/0a97cfef85/Upgrade2x1B.png","h":2} +{"name":"강화형 혼돈 공명기","refName":"Potent Chaotic Resonator","namespace":"ITEM","tradeTag":"potent-chaotic-resonator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUmVyb2xsMngxQSIsInNjYWxlIjoxfV0/bee1bcfe36/Reroll2x1A.png","h":2} +{"name":"잠재력의 막대","refName":"Potentiality Rod","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGVpc3RXYXJTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/c9454891da/HeistWarStaff.png","w":2,"h":4} +{"name":"권능 룬","refName":"Power Rune","namespace":"ITEM","tradeTag":"power-rune","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2V0dGxlcnMvVmlsbGFnZVJ1bmUxMCIsInNjYWxlIjoxfV0/7a75e42c42/VillageRune10.png"} +{"name":"강력 연금술 공명기","refName":"Powerful Alchemical Resonator","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvVXBncmFkZTJ4MkEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/30b32cdb00/Upgrade2x2A.png","w":2,"h":2} +{"name":"강력 혼돈 공명기","refName":"Powerful Chaotic Resonator","namespace":"ITEM","tradeTag":"powerful-chaotic-resonator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUmVyb2xsMngyQSIsInNjYWxlIjoxfV0/80b90b6b94/Reroll2x2A.png","w":2,"h":2} +{"name":"집정관 왕관","refName":"Praetor Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[161,185],"es":[51,58]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDEwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/6eed6bbe8e/HelmetStrInt10.png","w":2,"h":2} +{"name":"구획 지도","refName":"Precinct Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/fAJ8DcM.jpg"}} +{"name":"정확한 화살촉","refName":"Precise Arrowhead","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQXJyb3doZWFkUHJlY2lzZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/6cb3029c66/ArrowheadPrecise.png","w":2,"h":2} +{"name":"선도자 건틀릿","refName":"Precursor Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[307,353]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyMyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f5896830bf/GlovesStr3.png","w":2,"h":2} +{"name":"선도자 각반","refName":"Precursor Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[307,353]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/56efa25c50/BootsStr3.png","w":2,"h":2} +{"name":"선사 시대 클로","refName":"Prehistoric Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ae1fb6dddd/Claw6.png","w":2,"h":2} +{"name":"보전의 건틀릿","refName":"Preserving Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[35,41]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUml0dWFsU3RyR2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/254b8a0066/RitualStrGloves.png","w":2,"h":2} +{"name":"가압 단검","refName":"Pressurised Dagger","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0hlaXN0RGFnZ2VyIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/d484666b70/HeistDagger.png","h":3} +{"name":"예방 차원의 계약","refName":"Preventative Contract","namespace":"ITEM","craftable":{"uniqueOnly":true,"category":"Heist Contract"},"icon":""} +{"name":"원시 화살통","refName":"Primal Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9SaWtlclJpblF1aXZlciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/8f01e6977f/RikerRinQuiver.png","w":2,"h":3} +{"name":"원시 생기 결정","refName":"Primal Crystallised Lifeforce","namespace":"ITEM","tradeTag":"primal-lifeforce","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9QcmltYWxMaWZlZm9yY2UiLCJzY2FsZSI6MX1d/c498cdfd7f/PrimalLifeforce.png"} +{"name":"원시 환영의 오브","refName":"Primal Delirium Orb","namespace":"ITEM","tradeTag":"primal-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJUYWxpc21hbnMiLCJzY2FsZSI6MX1d/7fd8a5c64e/DeliriumOrbTalismans.png"} +{"name":"원시 창제자","refName":"Primal Demiurge","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0NydXNhZGVyTWFuYVBoYW50YXNtQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/66bb067c9b/CrusaderManaPhantasmCorpse.png","w":3,"h":2} +{"name":"원시 인큐베이터","refName":"Primal Incubator","namespace":"ITEM","tradeTag":"primal-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uVGFsaXNtYW5zIiwic2NhbGUiOjF9XQ/994245860e/IncubationTalismans.png"} +{"name":"원시 해골 부적","refName":"Primal Skull Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbkJsYWNrNyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c02ff6ddaf/TalismanBlack7.png"} +{"name":"원시 천둥새","refName":"Primal Thunderbird","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JhdmVuQm9zc0JsdWVDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/1a1ed30e2f/RavenBossBlueCorpse.png","w":3,"h":2} +{"name":"최종형 연금술 공명기","refName":"Prime Alchemical Resonator","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvVXBncmFkZTJ4MkMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5192b134c8/Upgrade2x2C.png","w":2,"h":2} +{"name":"최종형 혼돈 공명기","refName":"Prime Chaotic Resonator","namespace":"ITEM","tradeTag":"prime-chaotic-resonator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUmVyb2xsMngyQyIsInNjYWxlIjoxfV0/c624d45072/Reroll2x2C.png","w":2,"h":2} +{"name":"최종형 가로날도끼","refName":"Prime Cleaver","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9IZWlzdFR3b0hhbmRBeGUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/4aef1881cc/HeistTwoHandAxe.png","w":2,"h":4} +{"name":"원시 레이피어","refName":"Primeval Rapier","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjYiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/f9bc0a5aa1/Rapier6.png","h":4} +{"name":"초기형 연금술 공명기","refName":"Primitive Alchemical Resonator","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvVXBncmFkZTF4MUEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/bf5a71a635/Upgrade1x1A.png"} +{"name":"초기형 혼돈 공명기","refName":"Primitive Chaotic Resonator","namespace":"ITEM","tradeTag":"primitive-chaotic-resonator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUmVyb2xsMXgxQSIsInNjYWxlIjoxfV0/9c7dcd6158/Reroll1x1A.png"} +{"name":"원시의 지팡이","refName":"Primitive Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmYyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/69ff746d86/Staff2.png","w":2,"h":4} +{"name":"태고의 구역 지도","refName":"Primordial Blocks Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/TtaIepR.jpg"}} +{"name":"태고의 조각","refName":"Primordial Fragment","namespace":"ITEM","craftable":{"category":"Unique Fragment","uniqueOnly":true},"icon":""} +{"name":"태고의 웅덩이 지도","refName":"Primordial Pool Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/Fxl9Naf.jpg"}} +{"name":"태고의 지팡이","refName":"Primordial Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmYyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/69ff746d86/Staff2.png","w":2,"h":4} +{"name":"분광의 기폭제","refName":"Prismatic Catalyst","namespace":"ITEM","tradeTag":"prismatic-catalyst","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL1ByaXNtYXRpY0NhdGFseXN0Iiwic2NhbGUiOjF9XQ/1e725fd26d/PrismaticCatalyst.png"} +{"name":"분광 화석","refName":"Prismatic Fossil","namespace":"ITEM","tradeTag":"prismatic-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUHJpc21hdGljRm9zc2lsIiwic2NhbGUiOjF9XQ/af5347946f/PrismaticFossil.png"} +{"name":"분광 주얼","refName":"Prismatic Jewel","namespace":"ITEM","craftable":{"category":"Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL01hc3RlcnkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/eb1cf5699e/Mastery.png"} +{"name":"분광 성유","refName":"Prismatic Oil","namespace":"ITEM","tradeTag":"prismatic-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9QcmlzbWF0aWNPaWwiLCJzY2FsZSI6MX1d/271183afbe/PrismaticOil.png"} +{"name":"분광 반지","refName":"Prismatic Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzEyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/51db874b5c/Ring12.png"} +{"name":"분광 팅크","refName":"Prismatic Tincture","namespace":"ITEM","craftable":{"category":"Tincture"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL1ByaXNtYXRpY1NhcCIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/81563db8c1/PrismaticSap.png","h":2} +{"name":"온전한 화석","refName":"Pristine Fossil","namespace":"ITEM","tradeTag":"pristine-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUHJpc3RpbmVGb3NzaWwiLCJzY2FsZSI6MX1d/bc91a1b44b/PristineFossil.png"} +{"name":"행렬 유물","refName":"Processional Relic","namespace":"ITEM","craftable":{"category":"Sanctum Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljQmFzZTF4MyIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/d1a161fb4d/RelicBase1x3.png","h":3} +{"name":"부정한 마법봉","refName":"Profane Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNyIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/84ced52bef/Wand7.png","h":3} +{"name":"산책로 지도","refName":"Promenade Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/Q8E3SQ5.jpg"}} +{"name":"갈래 단검","refName":"Prong Dagger","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjkiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/ac5b740611/Dagger9.png","h":3} +{"name":"예언 마법봉","refName":"Prophecy Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNiIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/30763e0fe7/Wand6.png","h":3} +{"name":"예언자 왕관","refName":"Prophet Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[224,258],"es":[32,37]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/6ad7c513a8/HelmetStrInt9.png","w":2,"h":2} +{"name":"광기의 도끼","refName":"Psychotic Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9IZWlzdE9uZWhhbmRBeGUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5ba95d3930/HeistOnehandAxe.png","w":2,"h":3} +{"name":"육척봉","refName":"Quarterstaff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmYzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/9bc79ef01c/Staff3.png","w":2,"h":4} +{"name":"석영 플라스크","refName":"Quartz Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvcGhhc2VmbGFzazAxIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/6266d738e1/phaseflask01.png","h":2} +{"name":"석영 셉터","refName":"Quartz Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/c986bafb78/scepter4.png","w":2,"h":3} +{"name":"석영 마법봉","refName":"Quartz Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNCIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/b505ad92e7/Wand4.png","h":3} +{"name":"수은 플라스크","refName":"Quicksilver Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3Mvc3ByaW50IiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/aa66be180b/sprint.png","h":2} +{"name":"누비 재킷","refName":"Quilted Jacket","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[221,248],"es":[46,52]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/333216677b/BodyDexInt1B.png","w":2,"h":3} +{"name":"경주장 지도","refName":"Racecourse Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/tKH5lyG.jpg"}} +{"name":"성벽 지도","refName":"Ramparts Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/Yx5UIDO.jpg"}} +{"name":"레인저 활","refName":"Ranger Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d7cd8910cc/Bow4.png","w":2,"h":4} +{"name":"미늘톱니 반지","refName":"Ratcheting Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvSGVpc3RSaW5nMVNpbHZlciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/3ea47de609/HeistRing1Silver.png"} +{"name":"큰까마귀 가면","refName":"Raven Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[104,119],"es":[22,25]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/39565b89de/HelmetDexInt6.png","w":2,"h":2} +{"name":"생가죽 장화","refName":"Rawhide Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[13,18]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/d9494fc647/BootsDex1.png","w":2,"h":2} +{"name":"생가죽 장갑","refName":"Rawhide Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[13,18]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4MSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/9d9390ed4a/GlovesDex1.png","w":2,"h":2} +{"name":"생가죽 거대 방패","refName":"Rawhide Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[53,66]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8d8c4e161f/ShieldStr3.png","w":2,"h":4} +{"name":"현실의 조각","refName":"Reality Fragment","namespace":"ITEM","tradeTag":"reality-fragment","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyQm9zc0tleU1hdmVuIiwic2NhbGUiOjF9XQ/20e155ad7d/UberBossKeyMaven.png"} +{"name":"강탈자 도끼","refName":"Reaver Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/451ba2cadb/OneHandAxe4.png","w":2,"h":3} +{"name":"강탈자 투구","refName":"Reaver Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[198,233]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/497b497cd5/HelmetStr6.png","w":2,"h":2} +{"name":"강탈자 검","refName":"Reaver Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/28f44a7a0c/TwoHandSword3.png","w":2,"h":4} +{"name":"질책의 칼","refName":"Rebuking Blade","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL0hlaXN0VHdvSGFuZFN3b3JkIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/9757ea88b2/HeistTwoHandSword.png","w":2,"h":4} +{"name":"보복 지팡이","refName":"Reciprocation Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGVpc3RTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/5e852184f5/HeistStaff.png","w":2,"h":4} +{"name":"반곡궁","refName":"Recurve Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/2c90c93faf/Bow5.png","w":2,"h":4} +{"name":"대속자의 엑잘티드 오브","refName":"Redeemer's Exalted Orb","namespace":"ITEM","tradeTag":"redeemers-exalted-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5mbHVlbmNlIEV4YWx0cy9FeXJpZU9yYiIsInNjYWxlIjoxfV0/8ec9b52d65/EyrieOrb.png"} +{"name":"삼나무 가시 방패","refName":"Redwood Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[142,163],"es":[30,34]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/db9355404e/ShieldDexInt2.png","w":2,"h":2} +{"name":"암초 지도","refName":"Reef Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/pVdQXl9.jpg"}} +{"name":"투영하는 안개","refName":"Reflecting Mist","namespace":"ITEM","tradeTag":"reflecting-mist","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUmVmbGVjdGl2ZU1pc3QiLCJzY2FsZSI6MX1d/26956f795e/ReflectiveMist.png"} +{"name":"투영 성유","refName":"Reflective Oil","namespace":"ITEM","tradeTag":"reflective-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9NaXJyb3JPaWwiLCJzY2FsZSI6MX1d/eca4a49588/MirrorOil.png"} +{"name":"반동궁","refName":"Reflex Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzkiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/aa9bf2b0d1/Bow9.png","w":2,"h":4} +{"name":"제왕의 오브","refName":"Regal Orb","namespace":"ITEM","tradeTag":"regal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lVcGdyYWRlTWFnaWNUb1JhcmUiLCJzY2FsZSI6MX1d/0ded706f57/CurrencyUpgradeMagicToRare.png"} +{"name":"제왕의 파편","refName":"Regal Shard","namespace":"ITEM","tradeTag":"regal-shard","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUmVnYWxTaGFyZCIsInNjYWxlIjoxfV0/6f7fc44a91/RegalShard.png"} +{"name":"왕 시해자 변장 도구","refName":"Regicide Disguise Kit","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVGhlYXRyZURpc2d1aXNlS2l0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/5a52352c52/TheatreDisguiseKit.png","w":2,"h":2} +{"name":"왕 시해자 가면","refName":"Regicide Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[141,158],"es":[29,32]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/03d255fadc/HelmetDexInt8.png","w":2,"h":2} +{"name":"강화 각반","refName":"Reinforced Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[109,120]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/82bedfd1e0/BootsStr4.png","w":2,"h":2} +{"name":"강화 연모양 방패","refName":"Reinforced Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[65,81],"es":[15,18]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8d673b3a1f/ShieldStrInt4.png","w":2,"h":3} +{"name":"강화 거대 방패","refName":"Reinforced Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[237,260]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d883ad1ca2/ShieldStr6.png","w":2,"h":4} +{"name":"유물의 방 지도","refName":"Relic Chambers Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/jsNHNa1.jpg"}} +{"name":"타락의 유물","refName":"Remnant of Corruption","namespace":"ITEM","tradeTag":"remnant-of-corruption","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Fc3NlbmNlQ29ycnVwdCIsInNjYWxlIjoxfV0/e0e8a57a15/EssenceCorrupt.png"} +{"name":"주택 지도","refName":"Residence Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/FF5qpbI.jpg"}} +{"name":"반지","refName":"Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"%NOT_FOUND%"} +{"name":"고리 장화","refName":"Ringmail Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[25,32],"es":[6,8]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/742e5a15d7/BootsStrInt2.png","w":2,"h":2} +{"name":"외투 고리 갑옷","refName":"Ringmail Coat","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[97,121],"es":[22,28]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/61293d71af/BodyStrInt1B.png","w":2,"h":3} +{"name":"고리 장갑","refName":"Ringmail Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[35,46],"es":[8,10]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RySW50MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f09ae395f5/GlovesStrInt2.png","w":2,"h":2} +{"name":"풍부함의 의식 갑충석","refName":"Ritual Scarab of Abundance","namespace":"ITEM","tradeTag":"ritual-scarab-of-abundance","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiUml0dWFsIiwic2NhbGUiOjF9XQ/a990c91de5/GreaterScarabRitual.png"} +{"name":"선택의 의식 갑충석","refName":"Ritual Scarab of Selectiveness","namespace":"ITEM","tradeTag":"ritual-scarab-of-selectiveness","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJSaXR1YWwiLCJzY2FsZSI6MX1d/08f82dab28/LesserScarabRitual.png"} +{"name":"도깨비불의 의식 갑충석","refName":"Ritual Scarab of Wisps","namespace":"ITEM","tradeTag":"ritual-scarab-of-wisps","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJSaXR1YWwiLCJzY2FsZSI6MX1d/f2c3231213/NormalScarabRitual.png"} +{"name":"의식용 셉터","refName":"Ritual Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/6b9c62e4c3/scepter7.png","w":2,"h":3} +{"name":"의식의 파편","refName":"Ritual Splinter","namespace":"ITEM","tradeTag":"ritual-splinter","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUml0dWFsL1JpdHVhbFNwbGludGVyIiwic2NhbGUiOjF9XQ/702c7441d8/RitualSplinter.png"} +{"name":"의식의 그릇","refName":"Ritual Vessel","namespace":"ITEM","tradeTag":"ritual-vessel","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUml0dWFsL0VmZmlneSIsInNjYWxlIjoxfV0/1686de4490/Effigy.png"} +{"name":"강 룬","refName":"River Rune","namespace":"ITEM","tradeTag":"river-rune","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2V0dGxlcnMvVmlsbGFnZVJ1bmU1Iiwic2NhbGUiOjF9XQ/239b52bb4d/VillageRune5.png"} +{"name":"고정못 장화","refName":"Riveted Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[65,71],"es":[14,15]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckludDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0519faf993/BootsStrInt1.png","w":2,"h":2} +{"name":"고정못 장갑","refName":"Riveted Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[67,77],"es":[14,16]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RySW50MSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/5d45f8da8f/GlovesStrInt1.png","w":2,"h":2} +{"name":"바위 분쇄기","refName":"Rock Breaker","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U0IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/b0b1a18a0c/OneHandMace4.png","w":2,"h":3} +{"name":"도둑의 증표","refName":"Rogue's Marker","namespace":"ITEM","tradeTag":"rogues-marker","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvSGVpc3RDb2luQ3VycmVuY3kiLCJzY2FsZSI6MX1d/335e66630d/HeistCoinCurrency.png"} +{"name":"장미가시 팅크","refName":"Rosethorn Tincture","namespace":"ITEM","craftable":{"category":"Tincture"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL0N1bGxpbmdTdHJpa2VTYXAiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MX1d/a0158b364e/CullingStrikeSap.png","h":2} +{"name":"썩은 머리 부적","refName":"Rot Head Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9GaXNoVGFsaXNtYW4iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/dec3900c32/FishTalisman.png"} +{"name":"썩은 깃털 부적","refName":"Rotfeather Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hblJlZDEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/7d856182d7/TalismanRed1.png"} +{"name":"썩은 원형 방패","refName":"Rotted Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[13,18],"ev":[13,18]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/a6a71ad77b/ShieldStrDex1.png","w":2,"h":3} +{"name":"거친 숫돌","refName":"Rough Sharpening Stone","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvUm91Z2hTaGFycGVuaW5nU3RvbmUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/16a700882f/RoughSharpeningStone.png","w":2,"h":2} +{"name":"왕실 도끼","refName":"Royal Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/5bbf95c3b4/OneHandAxe7.png","w":2,"h":3} +{"name":"왕실 활","refName":"Royal Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/1e6a3da9aa/Bow7.png","w":2,"h":4} +{"name":"왕실 기병 투구","refName":"Royal Burgonet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[377,434]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjEwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/b1e95342a8/HelmetStr10.png","w":2,"h":2} +{"name":"왕실 판금 갑옷","refName":"Royal Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[1183,1360]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyM0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/09903268a5/BodyStr3C.png","w":2,"h":3} +{"name":"왕실의 셉터","refName":"Royal Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/6b9c62e4c3/scepter7.png","w":2,"h":3} +{"name":"왕실 양날 단검","refName":"Royal Skean","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjciLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/61e8f27cc5/Dagger7.png","h":3} +{"name":"왕실 지팡이","refName":"Royal Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY2IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/5e3de6f391/Staff6.png","w":2,"h":4} +{"name":"루비 목걸이","refName":"Ruby Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9SdWJ5QW11bGV0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/55c35f60fe/RubyAmulet.png"} +{"name":"루비 플라스크","refName":"Ruby Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvcnVieSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/0d582b3f83/ruby.png","h":2} +{"name":"루비 반지","refName":"Ruby Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0e04df86a3/Ring7.png"} +{"name":"룬 문자 팔보호구","refName":"Runed Bracers","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQnJhY2VyQmFzZVR5cGVfcnVuZWQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/7fedd82771/BracerBaseType_runed.png","w":2,"h":2} +{"name":"룬 관모","refName":"Runic Crest","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ward":[97,112]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1NwaXJpdEhlbG1ldEJhc2VUeXBlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/53e1ae7954/SpiritHelmetBaseType.png","w":2,"h":2} +{"name":"룬 왕관","refName":"Runic Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ward":[164,189]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1NwaXJpdEhlbG1ldEJhc2VUeXBlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/53e1ae7954/SpiritHelmetBaseType.png","w":2,"h":2} +{"name":"룬 손 보호대","refName":"Runic Gages","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ward":[62,71]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3Bpcml0R2xvdmVzQmFzZVR5cGUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c6f6ccf94f/SpiritGlovesBaseType.png","w":2,"h":2} +{"name":"룬 건틀릿","refName":"Runic Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ward":[102,117]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3Bpcml0R2xvdmVzQmFzZVR5cGUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c6f6ccf94f/SpiritGlovesBaseType.png","w":2,"h":2} +{"name":"룬 장갑","refName":"Runic Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ward":[24,28]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3Bpcml0R2xvdmVzQmFzZVR5cGUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c6f6ccf94f/SpiritGlovesBaseType.png","w":2,"h":2} +{"name":"룬 각반","refName":"Runic Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ward":[24,28]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TcGlyaXRCb290c0Jhc2VUeXBlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/c6826fae52/SpiritBootsBaseType.png","w":2,"h":2} +{"name":"룬 손도끼","refName":"Runic Hatchet","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlOSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/8f1da4998f/OneHandAxe9.png","w":2,"h":3} +{"name":"룬 투구","refName":"Runic Helm","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ward":[41,47]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1NwaXJpdEhlbG1ldEJhc2VUeXBlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/53e1ae7954/SpiritHelmetBaseType.png","w":2,"h":2} +{"name":"룬 발 덮개","refName":"Runic Sabatons","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ward":[102,117]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TcGlyaXRCb290c0Jhc2VUeXBlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/c6826fae52/SpiritBootsBaseType.png","w":2,"h":2} +{"name":"룬의 해골","refName":"Runic Skeleton","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1N3b3JkU2tlbGV0b25Db3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/171f40accf/SwordSkeletonCorpse.png","w":3,"h":2} +{"name":"룬 쇠구두","refName":"Runic Sollerets","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ward":[62,71]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TcGlyaXRCb290c0Jhc2VUeXBlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/c6826fae52/SpiritBootsBaseType.png","w":2,"h":2} +{"name":"녹슨 코이프","refName":"Rusted Coif","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[16,22],"es":[5,7]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/9987324e35/HelmetStrInt1.png","w":2,"h":2} +{"name":"녹슨 손도끼","refName":"Rusted Hatchet","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlMSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/0e8f6203f2/OneHandAxe1.png","h":3} +{"name":"녹슨 스파이크","refName":"Rusted Spike","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjEiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/feb0e7f8d8/Rapier1.png","h":4} +{"name":"녹슨 검","refName":"Rusted Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDEiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/ae6e9dda13/OneHandSword1.png","h":3} +{"name":"소박한 띠","refName":"Rustic Sash","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdDEiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/6b67d971e8/Belt1.png","w":2} +{"name":"사브르","refName":"Sabre","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDMiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/0aa55ff7a1/OneHandSword3.png","h":3} +{"name":"신성한 꽃","refName":"Sacred Blossom","namespace":"ITEM","tradeTag":"sacred-blossom","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9Pc2hhYmlNYXAiLCJzY2FsZSI6MX1d/ae20ec4d5f/OshabiMap.png"} +{"name":"성스러운 사슬 갑옷","refName":"Sacred Chainmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[723,831],"es":[145,167]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50M0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/900b4f2c03/BodyStrInt3C.png","w":2,"h":3} +{"name":"신성한 생기 결정","refName":"Sacred Crystallised Lifeforce","namespace":"ITEM","tradeTag":"sacred-lifeforce","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9TYWNyZWRMaWZlZm9yY2UiLCJzY2FsZSI6MX1d/edfba3c893/SacredLifeforce.png"} +{"name":"성스러운 하이브리드 플라스크","refName":"Sacred Hybrid Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvaHlicmlkZmxhc2syIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/7ac2158cdf/hybridflask2.png","h":2} +{"name":"성스러운 생명력 플라스크","refName":"Sacred Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrOCIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/1c24a51fc4/lifeflask8.png","h":2} +{"name":"성스러운 마나 플라스크","refName":"Sacred Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrOCIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/52e82c502f/manaflask8.png","h":2} +{"name":"성스러운 오브","refName":"Sacred Orb","namespace":"ITEM","tradeTag":"sacred-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2FjcmVkT3JiIiwic2NhbGUiOjF9XQ/0380fd0dba/SacredOrb.png"} +{"name":"새벽의 희생","refName":"Sacrifice at Dawn","namespace":"ITEM","tradeTag":"dawn","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYWFsMDIiLCJzY2FsZSI6MX1d/3516d95235/Vaal02.png"} +{"name":"황혼의 희생","refName":"Sacrifice at Dusk","namespace":"ITEM","tradeTag":"dusk","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYWFsMDQiLCJzY2FsZSI6MX1d/3be8311430/Vaal04.png"} +{"name":"심야의 희생","refName":"Sacrifice at Midnight","namespace":"ITEM","tradeTag":"mid","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYWFsMDEiLCJzY2FsZSI6MX1d/c7cd8058f6/Vaal01.png"} +{"name":"정오의 희생","refName":"Sacrifice at Noon","namespace":"ITEM","tradeTag":"noon","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYWFsMDMiLCJzY2FsZSI6MX1d/55524425f4/Vaal03.png"} +{"name":"희생의 의복","refName":"Sacrificial Garb","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[329,378],"ev":[329,378],"es":[67,77]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9TYWNyaWZpY2lhbEdhcmIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/fa818f4ae3/SacrificialGarb.png","w":2,"h":3} +{"name":"가학자 의복","refName":"Sadist Garb","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[427,491],"es":[93,107]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/6744d2d486/BodyDexInt2C.png","w":2,"h":3} +{"name":"현자 장갑","refName":"Sage Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[62,71]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/abe163b992/GlovesInt3.png","w":2,"h":2} +{"name":"현자 슬리퍼","refName":"Sage Slippers","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[62,71]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/036cf97e61/BootsInt3.png","w":2,"h":2} +{"name":"현자 마법봉","refName":"Sage Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNiIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/30763e0fe7/Wand6.png","h":3} +{"name":"현자의 로브","refName":"Sage's Robe","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[79,90]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/906a100c16/BodyInt1B.png","w":2,"h":3} +{"name":"사이","refName":"Sai","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjkiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/ac5b740611/Dagger9.png","h":3} +{"name":"성인의 쇠사슬 갑옷","refName":"Saint's Hauberk","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[443,496],"es":[76,85]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5a1804c81b/BodyStrInt2C.png","w":2,"h":3} +{"name":"성인의 사슬 갑옷","refName":"Saintly Chainmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[401,461],"es":[96,110]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50M0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/900b4f2c03/BodyStrInt3C.png","w":2,"h":3} +{"name":"샐릿","refName":"Sallet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[37,48],"ev":[37,48]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0dc199afb2/HelmetStrDex2.png","w":2,"h":2} +{"name":"삼바 셉터","refName":"Sambar Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyOSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/151820601e/scepter9.png","w":2,"h":3} +{"name":"금실 장갑","refName":"Samite Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[32,37]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/abe163b992/GlovesInt3.png","w":2,"h":2} +{"name":"금실 슬리퍼","refName":"Samite Slippers","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[30,35]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/036cf97e61/BootsInt3.png","w":2,"h":2} +{"name":"삼니움 투구","refName":"Samnite Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[276,325]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/8bd91531d0/HelmetStr8.png","w":2,"h":2} +{"name":"축성된 화석","refName":"Sanctified Fossil","namespace":"ITEM","tradeTag":"sanctified-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvR2lsZGVkRm9zc2lsIiwic2NhbGUiOjF9XQ/fc2d3fdf51/GildedFossil.png"} +{"name":"축성된 생명력 플라스크","refName":"Sanctified Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrMTAiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/c32c443453/lifeflask10.png","h":2} +{"name":"축성된 마나 플라스크","refName":"Sanctified Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrMTAiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/437e6be59d/manaflask10.png","h":2} +{"name":"성역 지도","refName":"Sanctuary Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{}} +{"name":"혈액술사 악마","refName":"Sanguimancer Demon","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0hlbGxzY2FwZURlbW9uRWxpdGUyQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/a795ad40fa/HellscapeDemonElite2Corpse.png","w":3,"h":2} +{"name":"핏빛 의상","refName":"Sanguine Raiment","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[545,627],"es":[110,127]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/95329b265f/BodyDexInt1C.png","w":2,"h":3} +{"name":"사파이어 플라스크","refName":"Sapphire Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3Mvc2FwcGhpcmUiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjEsImZpIjp0cnVlfV0/7762dad209/sapphire.png","h":2} +{"name":"사파이어 반지","refName":"Sapphire Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzYiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/74a5d719fd/Ring6.png"} +{"name":"새틴 장갑","refName":"Satin Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[28,33]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/cb34a7c551/GlovesInt2.png","w":2,"h":2} +{"name":"새틴 슬리퍼","refName":"Satin Slippers","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[26,30]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/efece2ca68/BootsInt2.png","w":2,"h":2} +{"name":"석학의 로브","refName":"Savant's Robe","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[115,132]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/906a100c16/BodyInt1B.png","w":2,"h":3} +{"name":"톱날 호러","refName":"Sawblade Horror","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0RlbW9uQm9zczFDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/27f61146a0/DemonBoss1Corpse.png","w":3,"h":2} +{"name":"비늘 더블릿","refName":"Scale Doublet","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[97,121],"ev":[97,121]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/d9b2da2bce/BodyStrDex1B.png","w":2,"h":3} +{"name":"미늘 조끼","refName":"Scale Vest","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[27,38],"ev":[27,38]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MUEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/171496c8b0/BodyStrDex1A.png","w":2,"h":3} +{"name":"적수의 갑충석","refName":"Scarab of Adversaries","namespace":"ITEM","tradeTag":"scarab-of-adversaries","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRMZXNzZXJTY2FyYWJNaXNjIiwic2NhbGUiOjF9XQ/ab24a34cd1/AltLesserScarabMisc.png"} +{"name":"신성의 갑충석","refName":"Scarab of Divinity","namespace":"ITEM","tradeTag":"scarab-of-divinity","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJNaXNjIiwic2NhbGUiOjF9XQ/6d4755a692/NormalScarabMisc.png"} +{"name":"쫓기는 배신자의 갑충석","refName":"Scarab of Hunted Traitors","namespace":"ITEM","tradeTag":"scarab-of-hunted-traitors","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiTWlzYyIsInNjYWxlIjoxfV0/7a40f7ea9f/GreaterScarabMisc.png"} +{"name":"기괴한 혈통의 갑충석","refName":"Scarab of Monstrous Lineage","namespace":"ITEM","tradeTag":"scarab-of-monstrous-lineage","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJNaXNjIiwic2NhbGUiOjF9XQ/9196715e8d/LesserScarabMisc.png"} +{"name":"찬란한 폭풍의 갑충석","refName":"Scarab of Radiant Storms","namespace":"ITEM","tradeTag":"scarab-of-radiant-storms","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYk1pc2MyIiwic2NhbGUiOjF9XQ/d19b59b6b8/Tier4ScarabMisc2.png"} +{"name":"안정의 갑충석","refName":"Scarab of Stability","namespace":"ITEM","tradeTag":"scarab-of-stability","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYk1pc2MiLCJzY2FsZSI6MX1d/c80f553284/Tier4ScarabMisc.png"} +{"name":"도깨비불의 갑충석","refName":"Scarab of Wisps","namespace":"ITEM","tradeTag":"scarab-of-wisps","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiTWlzYzEiLCJzY2FsZSI6MX1d/303001a475/GreaterScarabMisc1.png"} +{"name":"허수아비 가면","refName":"Scare Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[13,18],"es":[4,6]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f1a4b7abd8/HelmetDexInt1.png","w":2,"h":2} +{"name":"다홍색 의복","refName":"Scarlet Raiment","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[156,180],"es":[34,39]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/95329b265f/BodyDexInt1C.png","w":2,"h":3} +{"name":"다홍색 원형 방패","refName":"Scarlet Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[87,100],"ev":[87,100]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/f50adf0569/ShieldStrDex4.png","w":2,"h":3} +{"name":"학자 장화","refName":"Scholar Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[23,25]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5589419509/BootsInt4.png","w":2,"h":2} +{"name":"학자의 로브","refName":"Scholar's Robe","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[43,53]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/906a100c16/BodyInt1B.png","w":2,"h":3} +{"name":"그을린 화석","refName":"Scorched Fossil","namespace":"ITEM","tradeTag":"scorched-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvQW1iZXJGaXJlRmx5Iiwic2NhbGUiOjF9XQ/0954934026/AmberFireFly.png"} +{"name":"고철","refName":"Scrap Metal","namespace":"ITEM","tradeTag":"scrap-metal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXhwZWRpdGlvbi9EZWFsZXJSZWZyZXNoQ3VycmVuY3kiLCJzY2FsZSI6MX1d/7c2be64768/DealerRefreshCurrency.png"} +{"name":"절규하는 분노의 에센스","refName":"Screaming Essence of Anger","namespace":"ITEM","tradeTag":"screaming-essence-of-anger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9BbmdlcjUiLCJzY2FsZSI6MX1d/495b51bb22/Anger5.png"} +{"name":"절규하는 비통의 에센스","refName":"Screaming Essence of Anguish","namespace":"ITEM","tradeTag":"screaming-essence-of-anguish","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Bbmd1aXNoNSIsInNjYWxlIjoxfV0/f1577676f8/Anguish5.png"} +{"name":"절규하는 경멸의 에센스","refName":"Screaming Essence of Contempt","namespace":"ITEM","tradeTag":"screaming-essence-of-contempt","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Db250ZW1wdDUiLCJzY2FsZSI6MX1d/57f3c59876/Contempt5.png"} +{"name":"절규하는 의심의 에센스","refName":"Screaming Essence of Doubt","namespace":"ITEM","tradeTag":"screaming-essence-of-doubt","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Eb3VidDUiLCJzY2FsZSI6MX1d/3411e349a4/Doubt5.png"} +{"name":"절규하는 불안의 에센스","refName":"Screaming Essence of Dread","namespace":"ITEM","tradeTag":"screaming-essence-of-dread","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9EcmVhZDUiLCJzY2FsZSI6MX1d/089502a0ef/Dread5.png"} +{"name":"절규하는 선망의 에센스","refName":"Screaming Essence of Envy","namespace":"ITEM","tradeTag":"screaming-essence-of-envy","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9FbnZ5NSIsInNjYWxlIjoxfV0/19657c80a1/Envy5.png"} +{"name":"절규하는 두려움의 에센스","refName":"Screaming Essence of Fear","namespace":"ITEM","tradeTag":"screaming-essence-of-fear","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9GZWFyNSIsInNjYWxlIjoxfV0/1032005927/Fear5.png"} +{"name":"절규하는 탐욕의 에센스","refName":"Screaming Essence of Greed","namespace":"ITEM","tradeTag":"screaming-essence-of-greed","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVlZDUiLCJzY2FsZSI6MX1d/f78130ca89/Greed5.png"} +{"name":"절규하는 증오의 에센스","refName":"Screaming Essence of Hatred","namespace":"ITEM","tradeTag":"screaming-essence-of-hatred","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9IYXRyZWQ1Iiwic2NhbGUiOjF9XQ/79d7666969/Hatred5.png"} +{"name":"절규하는 혐오의 에센스","refName":"Screaming Essence of Loathing","namespace":"ITEM","tradeTag":"screaming-essence-of-loathing","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Mb2F0aGluZzUiLCJzY2FsZSI6MX1d/b72c845694/Loathing5.png"} +{"name":"절규하는 비참의 에센스","refName":"Screaming Essence of Misery","namespace":"ITEM","tradeTag":"screaming-essence-of-misery","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9NaXNlcnk1Iiwic2NhbGUiOjF9XQ/f9d69650b9/Misery5.png"} +{"name":"절규하는 격노의 에센스","refName":"Screaming Essence of Rage","namespace":"ITEM","tradeTag":"screaming-essence-of-rage","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9SYWdlNSIsInNjYWxlIjoxfV0/e59a378e12/Rage5.png"} +{"name":"절규하는 멸시의 에센스","refName":"Screaming Essence of Scorn","namespace":"ITEM","tradeTag":"screaming-essence-of-scorn","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TY29ybjUiLCJzY2FsZSI6MX1d/0325ed7212/Scorn5.png"} +{"name":"절규하는 슬픔의 에센스","refName":"Screaming Essence of Sorrow","namespace":"ITEM","tradeTag":"screaming-essence-of-sorrow","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Tb3Jyb3c1Iiwic2NhbGUiOjF9XQ/c4e14310c9/Sorrow5.png"} +{"name":"절규하는 악의의 에센스","refName":"Screaming Essence of Spite","namespace":"ITEM","tradeTag":"screaming-essence-of-spite","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TcGl0ZTUiLCJzY2FsZSI6MX1d/5e2c82ccb4/Spite5.png"} +{"name":"절규하는 고통의 에센스","refName":"Screaming Essence of Suffering","namespace":"ITEM","tradeTag":"screaming-essence-of-suffering","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TdWZmZXJpbmc1Iiwic2NhbGUiOjF9XQ/08db350c33/Suffering5.png"} +{"name":"절규하는 고뇌의 에센스","refName":"Screaming Essence of Torment","namespace":"ITEM","tradeTag":"screaming-essence-of-torment","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Ub3JtZW50NSIsInNjYWxlIjoxfV0/46f5990204/Torment5.png"} +{"name":"절규하는 비애의 에센스","refName":"Screaming Essence of Woe","namespace":"ITEM","tradeTag":"screaming-essence-of-woe","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Xb2U1Iiwic2NhbGUiOjF9XQ/685579dedd/Woe5.png"} +{"name":"절규하는 진노의 에센스","refName":"Screaming Essence of Wrath","namespace":"ITEM","tradeTag":"screaming-essence-of-wrath","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9XcmF0aDUiLCJzY2FsZSI6MX1d/47601c9382/Wrath5.png"} +{"name":"절규하는 열의의 에센스","refName":"Screaming Essence of Zeal","namespace":"ITEM","tradeTag":"screaming-essence-of-zeal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9aZWFsNSIsInNjYWxlIjoxfV0/27f4023314/Zeal5.png"} +{"name":"절규하는 초대","refName":"Screaming Invitation","namespace":"ITEM","craftable":{"category":"Invitation"},"tradeTag":"screaming-invitation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVlc3RJdGVtcy9UYW5nbGVkT3JiUXVlc3Q1Iiwic2NhbGUiOjF9XQ/aad87e6738/TangledOrbQuest5.png"} +{"name":"필사실 지도","refName":"Scriptorium Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{}} +{"name":"감정 주문서","refName":"Scroll of Wisdom","namespace":"ITEM","tradeTag":"wisdom","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lJZGVudGlmaWNhdGlvbiIsInNjYWxlIjoxfV0/c2d03ed3fd/CurrencyIdentification.png"} +{"name":"바다유리 목걸이","refName":"Seaglass Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9DcmVzY2VudEFtdWxldCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ef6f218ca4/CrescentAmulet.png"} +{"name":"탐색하는 눈 주얼","refName":"Searching Eye Jewel","namespace":"ITEM","craftable":{"category":"Abyss Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1NlYXJjaGluZ0V5ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ff2df16522/SearchingEye.png"} +{"name":"호위병 샐릿","refName":"Secutor Helm","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[98,116],"ev":[98,116]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/b609cfed8b/HelmetStrDex5.png","w":2,"h":2} +{"name":"세크헴","refName":"Sekhem","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyMyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/366212755a/scepter3.png","w":2,"h":3} +{"name":"파수꾼 재킷","refName":"Sentinel Jacket","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[330,370],"es":[67,76]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/333216677b/BodyDexInt1B.png","w":2,"h":3} +{"name":"적갈빛 성유","refName":"Sepia Oil","namespace":"ITEM","tradeTag":"sepia-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9TZXBpYU9pbCIsInNjYWxlIjoxfV0/9114927bcc/SepiaOil.png"} +{"name":"매장소 지도","refName":"Sepulchre Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/I8et20T.jpg"}} +{"name":"독사 전사","refName":"Serpent Warrior","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0F0bGFzRXhpbGUzQXBwYXJpdGlvbkNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/127b613caf/AtlasExile3ApparitionCorpse.png","w":3,"h":2} +{"name":"사문석 지팡이","refName":"Serpentine Staff","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY1IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/53f1a6b438/Staff5.png","w":2,"h":4} +{"name":"뱀 비늘 장화","refName":"Serpentscale Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[76,90],"ev":[76,90]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/d5b5430d4c/BootsStrDex2.png","w":2,"h":2} +{"name":"뱀 비늘 건틀릿","refName":"Serpentscale Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[78,87],"ev":[78,87]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyRGV4MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0bb5dd1e50/GlovesStrDex2.png","w":2,"h":2} +{"name":"톱니 화살통","refName":"Serrated Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJTZXJyYXRlZCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/3660315ba6/QuiverSerrated.png","w":2,"h":3} +{"name":"톱니 펜싱 검","refName":"Serrated Foil","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjUiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/ccce0178cc/Rapier5.png","h":4} +{"name":"톱니 화석","refName":"Serrated Fossil","namespace":"ITEM","tradeTag":"serrated-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvU2VycmF0ZWRGb3NzaWwiLCJzY2FsZSI6MX1d/227ff121c8/SerratedFossil.png"} +{"name":"허름한 조끼","refName":"Shabby Jerkin","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[29,41]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MUEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/693fc9456c/BodyDex1A.png","w":2,"h":3} +{"name":"섀클 장화","refName":"Shackled Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[62,71],"es":[13,15]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/bad1ba72df/BootsDexInt4.png","w":2,"h":2} +{"name":"그림자 도끼","refName":"Shadow Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNyIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/931ad5cc29/TwoHandAxe7.png","w":2,"h":4} +{"name":"그림사 광전사","refName":"Shadow Berserker","namespace":"ITEM","icon":"%NOT_FOUND%","w":3,"h":2} +{"name":"그림자 구조물","refName":"Shadow Construct","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0luY2FTaGFkb3dCb3NzQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/acddc4a119/IncaShadowBossCorpse.png","w":3,"h":2} +{"name":"그림자 송곳니","refName":"Shadow Fangs","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9IZWlzdENsYXciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/7ebe8140fa/HeistClaw.png","w":2,"h":2} +{"name":"그림자 셉터","refName":"Shadow Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyOCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/6644b94336/scepter8.png","w":2,"h":3} +{"name":"거친 생가죽 장화","refName":"Shagreen Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[180,216]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/76eb290c9b/BootsDex4.png","w":2,"h":2} +{"name":"거친 생가죽 장갑","refName":"Shagreen Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[177,212]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/05a8c03e95/GlovesDex4.png","w":2,"h":2} +{"name":"거친 생가죽 거대 방패","refName":"Shagreen Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[261,308]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8d8c4e161f/ShieldStr3.png","w":2,"h":4} +{"name":"상어가죽 장화","refName":"Sharkskin Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[145,171]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f2e9a30d4a/BootsDex3.png","w":2,"h":2} +{"name":"상어가죽 장갑","refName":"Sharkskin Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[148,163]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/445d038f1d/GlovesDex3.png","w":2,"h":2} +{"name":"상어가죽 튜닉","refName":"Sharkskin Tunic","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[559,643]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/57409a1844/BodyDex1B.png","w":2,"h":3} +{"name":"상어이빨 화살통","refName":"Sharktooth Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJTaGFya3Rvb3RoIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/da7b4cd60a/QuiverSharktooth.png","w":2,"h":3} +{"name":"상어이빨 클로","refName":"Sharktooth Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/8b8d9559cd/Claw2.png","w":2,"h":2} +{"name":"반짝이는 수호","refName":"Shining Ward","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvU2hpbmluZ1dhcmQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/275019d027/ShiningWard.png","w":2,"h":2} +{"name":"반짝이는 성유물 보관실 열쇠","refName":"Shiny Reliquary Key","namespace":"ITEM","tradeTag":"shiny-reliquary-key","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9NYXZlbkZvaWwiLCJzY2FsZSI6MX1d/09cccd8ddb/MavenFoil.png"} +{"name":"조선소 지도","refName":"Shipyard Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/J5hM5mR.jpg"}} +{"name":"바닷가 지도","refName":"Shore Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/HNPAnu9.jpg"}} +{"name":"단궁","refName":"Short Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/0fcc51afcd/Bow2.png","w":2,"h":3} +{"name":"악을 쓰는 분노의 에센스","refName":"Shrieking Essence of Anger","namespace":"ITEM","tradeTag":"shrieking-essence-of-anger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9BbmdlcjYiLCJzY2FsZSI6MX1d/e3c71c9c4d/Anger6.png"} +{"name":"악을 쓰는 비통의 에센스","refName":"Shrieking Essence of Anguish","namespace":"ITEM","tradeTag":"shrieking-essence-of-anguish","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Bbmd1aXNoNiIsInNjYWxlIjoxfV0/080db712a7/Anguish6.png"} +{"name":"악을 쓰는 경멸의 에센스","refName":"Shrieking Essence of Contempt","namespace":"ITEM","tradeTag":"shrieking-essence-of-contempt","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Db250ZW1wdDYiLCJzY2FsZSI6MX1d/fd0dfb89ba/Contempt6.png"} +{"name":"악을 쓰는 의심의 에센스","refName":"Shrieking Essence of Doubt","namespace":"ITEM","tradeTag":"shrieking-essence-of-doubt","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Eb3VidDYiLCJzY2FsZSI6MX1d/6972865109/Doubt6.png"} +{"name":"악을 쓰는 불안의 에센스","refName":"Shrieking Essence of Dread","namespace":"ITEM","tradeTag":"shrieking-essence-of-dread","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9EcmVhZDYiLCJzY2FsZSI6MX1d/7a5c6cc4be/Dread6.png"} +{"name":"악을 쓰는 선망의 에센스","refName":"Shrieking Essence of Envy","namespace":"ITEM","tradeTag":"shrieking-essence-of-envy","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9FbnZ5NiIsInNjYWxlIjoxfV0/58075e71ff/Envy6.png"} +{"name":"악을 쓰는 두려움의 에센스","refName":"Shrieking Essence of Fear","namespace":"ITEM","tradeTag":"shrieking-essence-of-fear","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9GZWFyNiIsInNjYWxlIjoxfV0/f5a1ac133b/Fear6.png"} +{"name":"악을 쓰는 탐욕의 에센스","refName":"Shrieking Essence of Greed","namespace":"ITEM","tradeTag":"shrieking-essence-of-greed","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVlZDYiLCJzY2FsZSI6MX1d/ec10f707ab/Greed6.png"} +{"name":"악을 쓰는 증오의 에센스","refName":"Shrieking Essence of Hatred","namespace":"ITEM","tradeTag":"shrieking-essence-of-hatred","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9IYXRyZWQ2Iiwic2NhbGUiOjF9XQ/f55a53e6f4/Hatred6.png"} +{"name":"악을 쓰는 혐오의 에센스","refName":"Shrieking Essence of Loathing","namespace":"ITEM","tradeTag":"shrieking-essence-of-loathing","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Mb2F0aGluZzYiLCJzY2FsZSI6MX1d/7ffe10ffb7/Loathing6.png"} +{"name":"악을 쓰는 비참의 에센스","refName":"Shrieking Essence of Misery","namespace":"ITEM","tradeTag":"shrieking-essence-of-misery","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9NaXNlcnk2Iiwic2NhbGUiOjF9XQ/00f76e01d2/Misery6.png"} +{"name":"악을 쓰는 격노의 에센스","refName":"Shrieking Essence of Rage","namespace":"ITEM","tradeTag":"shrieking-essence-of-rage","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9SYWdlNiIsInNjYWxlIjoxfV0/387d05ebf5/Rage6.png"} +{"name":"악을 쓰는 멸시의 에센스","refName":"Shrieking Essence of Scorn","namespace":"ITEM","tradeTag":"shrieking-essence-of-scorn","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TY29ybjYiLCJzY2FsZSI6MX1d/e168e93dcc/Scorn6.png"} +{"name":"악을 쓰는 슬픔의 에센스","refName":"Shrieking Essence of Sorrow","namespace":"ITEM","tradeTag":"shrieking-essence-of-sorrow","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Tb3Jyb3c2Iiwic2NhbGUiOjF9XQ/33a6bbf50d/Sorrow6.png"} +{"name":"악을 쓰는 악의의 에센스","refName":"Shrieking Essence of Spite","namespace":"ITEM","tradeTag":"shrieking-essence-of-spite","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TcGl0ZTYiLCJzY2FsZSI6MX1d/4afdf2e61f/Spite6.png"} +{"name":"악을 쓰는 고통의 에센스","refName":"Shrieking Essence of Suffering","namespace":"ITEM","tradeTag":"shrieking-essence-of-suffering","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TdWZmZXJpbmc2Iiwic2NhbGUiOjF9XQ/521d87c5a2/Suffering6.png"} +{"name":"악을 쓰는 고뇌의 에센스","refName":"Shrieking Essence of Torment","namespace":"ITEM","tradeTag":"shrieking-essence-of-torment","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Ub3JtZW50NiIsInNjYWxlIjoxfV0/fba7f2005f/Torment6.png"} +{"name":"악을 쓰는 비애의 에센스","refName":"Shrieking Essence of Woe","namespace":"ITEM","tradeTag":"shrieking-essence-of-woe","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Xb2U2Iiwic2NhbGUiOjF9XQ/89ba32200e/Woe6.png"} +{"name":"악을 쓰는 진노의 에센스","refName":"Shrieking Essence of Wrath","namespace":"ITEM","tradeTag":"shrieking-essence-of-wrath","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9XcmF0aDYiLCJzY2FsZSI6MX1d/792a6dca01/Wrath6.png"} +{"name":"악을 쓰는 열의의 에센스","refName":"Shrieking Essence of Zeal","namespace":"ITEM","tradeTag":"shrieking-essence-of-zeal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9aZWFsNiIsInNjYWxlIjoxfV0/e949dfa6e3/Zeal6.png"} +{"name":"성소 지도","refName":"Shrine Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/wDK8KBW.jpg"}} +{"name":"전율의 화석","refName":"Shuddering Fossil","namespace":"ITEM","tradeTag":"shuddering-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvU2h1ZGRlcmluZ0Zvc3NpbCIsInNjYWxlIjoxfV0/ecd4122277/ShudderingFossil.png"} +{"name":"공성용 도끼","refName":"Siege Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlMyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/126bb32028/OneHandAxe3.png","w":2,"h":3} +{"name":"공성 투구","refName":"Siege Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[237,272]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/2844841911/HelmetStr7.png","w":2,"h":2} +{"name":"공성 지도","refName":"Siege Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/vOwwEDe.jpg"}} +{"name":"실크 장갑","refName":"Silk Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[18,23]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/abe163b992/GlovesInt3.png","w":2,"h":2} +{"name":"실크 로브","refName":"Silk Robe","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[69,80]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8b200fbbb5/BodyInt2C.png","w":2,"h":3} +{"name":"실크 슬리퍼","refName":"Silk Slippers","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[17,21]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/036cf97e61/BootsInt3.png","w":2,"h":2} +{"name":"실크 의복","refName":"Silken Garb","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[56,64]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/3689be0ddd/BodyInt2B.png","w":2,"h":3} +{"name":"실크 두건","refName":"Silken Hood","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[346,381]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5e6f2df960/HelmetDex8.png","w":2,"h":2} +{"name":"실크 조끼","refName":"Silken Vest","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[30,38]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MkEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/ca22533d0a/BodyInt2A.png","w":2,"h":3} +{"name":"실크 외투","refName":"Silken Wrap","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[86,104]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/3689be0ddd/BodyInt2B.png","w":2,"h":3} +{"name":"비단 직물 밑창","refName":"Silkweave Sole","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvU2lsa3dlYXZlU29sZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0139320677/SilkweaveSole.png","w":2,"h":2} +{"name":"곡물 창고 지도","refName":"Silo Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/hk740NA.jpg"}} +{"name":"은 브로치","refName":"Silver Brooch","namespace":"ITEM","craftable":{"category":"Heist Brooch"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvU2lsdmVyQnJvb2NoIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6601ca4fe0/SilverBrooch.png"} +{"name":"은 플라스크","refName":"Silver Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3Mvc2lsdmVyIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/a2143b575d/silver.png","h":2} +{"name":"은빛 성유","refName":"Silver Oil","namespace":"ITEM","tradeTag":"silver-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9TaWx2ZXJPaWwiLCJzY2FsZSI6MX1d/d6ad829c2f/SilverOil.png"} +{"name":"단순한 자물쇠 따개","refName":"Simple Lockpick","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvU2ltcGxlTG9ja3BpY2siLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/6dbc6c1463/SimpleLockpick.png","w":2,"h":2} +{"name":"단순한 로브","refName":"Simple Robe","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[14,20]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MUEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/7c925b445f/BodyInt1A.png","w":2,"h":3} +{"name":"평범한 목걸이","refName":"Simplex Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9IZWlzdEFtdWxldDIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MSwic2hhcGVyIjp0cnVlfV0/8f62b43742/HeistAmulet2.png"} +{"name":"복제된 영토","refName":"Simulacrum","namespace":"ITEM","tradeTag":"simulacrum","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9EZWxpcml1bUZyYWdtZW50Iiwic2NhbGUiOjF9XQ/7f29157183/DeliriumFragment.png"} +{"name":"복제된 영토 파편","refName":"Simulacrum Splinter","namespace":"ITEM","tradeTag":"simulacrum-splinter","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9EZWxpcml1bVNwbGludGVyIiwic2NhbGUiOjF9XQ/b36d2fcff6/DeliriumSplinter.png"} +{"name":"비범한 환영의 오브","refName":"Singular Delirium Orb","namespace":"ITEM","tradeTag":"singular-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJVbmlxdWVzIiwic2NhbGUiOjF9XQ/f8eb9f0b63/DeliriumOrbUniques.png"} +{"name":"비범한 인큐베이터","refName":"Singular Incubator","namespace":"ITEM","tradeTag":"singular-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uVW5pcXVlcyIsInNjYWxlIjoxfV0/72b48d1f1b/IncubationUniques.png"} +{"name":"비범한 정찰 보고서","refName":"Singular Scouting Report","namespace":"ITEM","tradeTag":"singular-scouting-report","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png"} +{"name":"죄인 삼각모","refName":"Sinner Tricorne","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[369,425]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f348f6138b/HelmetDex9.png","w":2,"h":2} +{"name":"양날 단검","refName":"Skean","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjciLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/61e8f27cc5/Dagger7.png","h":3} +{"name":"해골 열쇠고리","refName":"Skeleton Keyring","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvTWFzdGVyS2V5cmluZyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/d43f92c4ad/MasterKeyring.png","w":2,"h":2} +{"name":"무두질용 단도","refName":"Skinning Knife","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjIiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/c2c0a06eec/Dagger2.png","h":3} +{"name":"달리는 환영의 오브","refName":"Skittering Delirium Orb","namespace":"ITEM","tradeTag":"skittering-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJTY2FyYWJzIiwic2NhbGUiOjF9XQ/ca1dcdc38b/DeliriumOrbScarabs.png"} +{"name":"달리는 인큐베이터","refName":"Skittering Incubator","namespace":"ITEM","tradeTag":"skittering-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uU2NhcmFicyIsInNjYWxlIjoxfV0/1627db84fb/IncubationScarabs.png"} +{"name":"칼날 호러","refName":"Slashing Horror","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0RlbW9uQm9zczJDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/211195cd4d/DemonBoss2Corpse.png","w":3,"h":2} +{"name":"살육 단도","refName":"Slaughter Knife","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjMiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/fbc18a1b4f/Dagger3.png","h":3} +{"name":"대형 양손 망치","refName":"Sledgehammer","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U0IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/8c1f2059d0/TwoHandMace4.png","w":2,"h":4} +{"name":"매끈한 외투","refName":"Sleek Coat","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[243,287],"es":[51,60]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/360c5ce7d4/BodyDexInt2B.png","w":2,"h":3} +{"name":"송아지 가죽 장화","refName":"Slink Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[246,283]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/76eb290c9b/BootsDex4.png","w":2,"h":2} +{"name":"송아지 가죽 장갑","refName":"Slink Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[242,278]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/05a8c03e95/GlovesDex4.png","w":2,"h":2} +{"name":"소형 스킬 군 주얼","refName":"Small Cluster Jewel","namespace":"ITEM","craftable":{"category":"Cluster Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL05ld0dlbUJhc2UxIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/0eb1a9d981/NewGemBase1.png"} +{"name":"소형 하이브리드 플라스크","refName":"Small Hybrid Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvaHlicmlkZmxhc2sxIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/88dca03c78/hybridflask1.png","h":2} +{"name":"소형 생명력 플라스크","refName":"Small Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrMSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/a7ca6503d9/lifeflask1.png","h":2} +{"name":"소형 마나 플라스크","refName":"Small Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrMSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/b764885739/manaflask1.png","h":2} +{"name":"스몰 소드","refName":"Smallsword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjkiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/e409e11584/Rapier9.png","h":4} +{"name":"저격수 활","refName":"Sniper Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/2c90c93faf/Bow5.png","w":2,"h":4} +{"name":"태양의 대형 망치","refName":"Solar Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U4IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/d7f01f7a37/TwoHandMace8.png","w":2,"h":4} +{"name":"태양의 활","refName":"Solarine Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0hlaXN0Qm93RmlyZSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/30526435da/HeistBowFire.png","w":2,"h":4} +{"name":"태양의 관","refName":"Solaris Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[60,68]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e5e3144056/HelmetInt9.png","w":2,"h":2} +{"name":"병사 장화","refName":"Soldier Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[88,99],"es":[18,20]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e75ade3184/BootsStrInt3.png","w":2,"h":2} +{"name":"병사 장갑","refName":"Soldier Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[92,103],"es":[19,21]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RySW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7adc65bac6/GlovesStrInt3.png","w":2,"h":2} +{"name":"병사 투구","refName":"Soldier Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[34,45],"es":[8,11]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/8e5221f23d/HelmetStrInt2.png","w":2,"h":2} +{"name":"병사용 브리간딘","refName":"Soldier's Brigandine","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[178,210],"ev":[178,210]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/60a6d7b58c/BodyStrDex2C.png","w":2,"h":3} +{"name":"악령술사 장화","refName":"Sorcerer Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[51,59]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5589419509/BootsInt4.png","w":2,"h":2} +{"name":"악령술사 장갑","refName":"Sorcerer Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[49,57]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/484e9bd879/GlovesInt4.png","w":2,"h":2} +{"name":"슬픔 가면","refName":"Sorrow Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[42,49],"ev":[42,49]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleFIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f63493ca95/HelmetStrDexR.png","w":2,"h":2} +{"name":"주권자 가시 방패","refName":"Sovereign Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[195,218],"es":[40,45]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3f3c95a49a/ShieldDexInt5.png","w":2,"h":2} +{"name":"섬광 클로","refName":"Sparkling Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/9efad90cdb/Claw7.png","w":2,"h":2} +{"name":"영체 도끼","refName":"Spectral Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlOCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/1c9ff58159/OneHandAxe8.png","w":2,"h":3} +{"name":"영체 검","refName":"Spectral Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/cba6615b1a/TwoHandSword7.png","w":2,"h":4} +{"name":"반영 주문서","refName":"Specularity Scroll","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9IYXJiaW5nZXJUb2tlblNoaWVsZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7e0479ea6e/HarbingerTokenShield.png"} +{"name":"거미 숲 지도","refName":"Spider Forest Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/HkKHFTB.jpg"}} +{"name":"거미 소굴 지도","refName":"Spider Lair Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/s2WAMm5.jpg"}} +{"name":"거미 여군주","refName":"Spider Matriarch","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0JsYWNrRGVhdGhCb3NzQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/658153825a/BlackDeathBossCorpse.png","w":3,"h":2} +{"name":"거미줄 실크 로브","refName":"Spidersilk Robe","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[101,117]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8b200fbbb5/BodyInt2C.png","w":2,"h":3} +{"name":"가시촉 화살통","refName":"Spike-Point Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJTcGlrZS1Qb2ludCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/e420070f35/QuiverSpike-Point.png","w":2,"h":3} +{"name":"가시 박힌 꾸러미","refName":"Spiked Bundle","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[13,18],"es":[4,6]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/76037de1f6/ShieldDexInt1.png","w":2,"h":2} +{"name":"가시 박힌 곤봉","refName":"Spiked Club","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2UzIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/a3a1dace2a/OneHandMace3.png","h":3} +{"name":"가시 장갑","refName":"Spiked Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[220,253]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3Bpa2VkR2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/d98a3475e1/SpikedGloves.png","w":2,"h":2} +{"name":"가시 박힌 원형 방패","refName":"Spiked Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[102,120],"ev":[102,120]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5839b7b6f4/ShieldStrDex3.png","w":2,"h":3} +{"name":"척추 활","refName":"Spine Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/6642f8922a/Bow6.png","w":2,"h":4} +{"name":"척추융합 부적","refName":"Spinefuse Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hblJlZDMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/25b4056f52/TalismanRed3.png"} +{"name":"가시투성이 대형 망치","refName":"Spiny Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U1IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/88d16a9600/TwoHandMace5.png","w":2,"h":4} +{"name":"가시투성이 원형 방패","refName":"Spiny Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[154,177],"ev":[154,177]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5839b7b6f4/ShieldStrDex3.png","w":2,"h":3} +{"name":"나선형 펜싱 검","refName":"Spiraled Foil","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjUiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/ccce0178cc/Rapier5.png","h":4} +{"name":"나선형 마법봉","refName":"Spiraled Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/a28035d7c4/Wand5.png","h":3} +{"name":"행운의 정령","refName":"Spirit of Fortune","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0t1ZHVrdVRvdGVtQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/7faf1de77b/KudukuTotemCorpse.png","w":3,"h":2} +{"name":"화려한 원형 방패","refName":"Splendid Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[75,86],"ev":[75,86]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/b81ab44241/ShieldStrDex5.png","w":2,"h":3} +{"name":"차율라의 파편","refName":"Splinter of Chayula","namespace":"ITEM","tradeTag":"splinter-chayula","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFNoYXJkQ2hhb3MiLCJzY2FsZSI6MX1d/14332eaec8/BreachShardChaos.png"} +{"name":"에쉬의 파편","refName":"Splinter of Esh","namespace":"ITEM","tradeTag":"splinter-esh","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFNoYXJkTGlnaHRuaW5nIiwic2NhbGUiOjF9XQ/38665f5bda/BreachShardLightning.png"} +{"name":"툴의 파편","refName":"Splinter of Tul","namespace":"ITEM","tradeTag":"splinter-tul","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFNoYXJkQ29sZCIsInNjYWxlIjoxfV0/6fb888d0e1/BreachShardCold.png"} +{"name":"울네톨의 파편","refName":"Splinter of Uul-Netol","namespace":"ITEM","tradeTag":"splinter-uul","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFNoYXJkUGh5c2ljYWwiLCJzY2FsZSI6MX1d/3919f62b2a/BreachShardPhysical.png"} +{"name":"조프의 파편","refName":"Splinter of Xoph","namespace":"ITEM","tradeTag":"splinter-xoph","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFNoYXJkRmlyZSIsInNjYWxlIjoxfV0/b53a90ea19/BreachShardFire.png"} +{"name":"쪼개진 거대 방패","refName":"Splintered Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[9,12]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjEiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/3c332a170f/ShieldStr1.png","w":2,"h":4} +{"name":"분할도롱뇽 부적","refName":"Splitnewt Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbkJsYWNrNCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9ef3586829/TalismanBlack4.png"} +{"name":"포자꽃 팅크","refName":"Sporebloom Tincture","namespace":"ITEM","craftable":{"category":"Tincture"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL1Nwb3JlYmxvb21TYXAiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MX1d/1d33094e39/SporebloomSap.png","h":2} +{"name":"안정화의 셉터","refName":"Stabilising Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9IZWlzdFNjZXB0cmVFbGVtZW50YWwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/34e5d78ab3/HeistSceptreElemental.png","w":2,"h":3} +{"name":"카드 묶음","refName":"Stacked Deck","namespace":"ITEM","tradeTag":"stacked-deck","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9EZWNrIiwic2NhbGUiOjF9XQ/8e83aea79a/Deck.png"} +{"name":"수사슴 셉터","refName":"Stag Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyOSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/151820601e/scepter9.png","w":2,"h":3} +{"name":"침체지 지도","refName":"Stagnation Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/OJbjzlG.jpg"}} +{"name":"표준 자물쇠 따개","refName":"Standard Lockpick","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvU3RhbmRhcmRMb2NrcGljayIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/c07ad566fa/StandardLockpick.png","w":2,"h":2} +{"name":"표준 숫돌","refName":"Standard Sharpening Stone","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvU3RhbmRhcmRTaGFycGVuaW5nU3RvbmUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/451be8e369/StandardSharpeningStone.png","w":2,"h":2} +{"name":"은신 장화","refName":"Stealth Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[220,253]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f2e9a30d4a/BootsDex3.png","w":2,"h":2} +{"name":"은신 장갑","refName":"Stealth Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[231,265]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/445d038f1d/GlovesDex3.png","w":2,"h":2} +{"name":"강철 팔보호구","refName":"Steel Bracers","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQnJhY2VyQmFzZVR5cGVfbWV0YWwiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/9922db6069/BracerBaseType_metal.png","w":2,"h":2} +{"name":"강철 관","refName":"Steel Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[49,55]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/52f5eb243a/HelmetInt7.png","w":2,"h":2} +{"name":"강철 송곳","refName":"Steel Drill","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRHJpbGxTdGQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/918de329aa/DrillStd.png","w":2,"h":2} +{"name":"강철 건틀릿","refName":"Steel Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[116,127]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyNCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/468f466568/GlovesStr4.png","w":2,"h":2} +{"name":"강철 각반","refName":"Steel Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[32,42]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c55db774a6/BootsStr2.png","w":2,"h":2} +{"name":"강철 연모양 방패","refName":"Steel Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[146,167],"es":[30,35]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8d673b3a1f/ShieldStrInt4.png","w":2,"h":3} +{"name":"강철 반지","refName":"Steel Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQWRhbWFudGluZVJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/04d7eaa12e/AdamantineRing.png"} +{"name":"강철머리 망치","refName":"Steelhead","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U0IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/8c1f2059d0/TwoHandMace4.png","w":2,"h":4} +{"name":"강철 비늘 장화","refName":"Steelscale Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[65,75],"ev":[65,75]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/bae77b3a2c/BootsStrDex1.png","w":2,"h":2} +{"name":"강철 비늘 건틀릿","refName":"Steelscale Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[65,75],"ev":[65,75]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyRGV4MSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ba243000da/GlovesStrDex1.png","w":2,"h":2} +{"name":"강철목 활","refName":"Steelwood Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzkiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/aa9bf2b0d1/Bow9.png","w":2,"h":4} +{"name":"휘안석 플라스크","refName":"Stibnite Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3Mvc3RpYm5pdGUiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/35fbc2f198/stibnite.png","h":2} +{"name":"스틸레토","refName":"Stiletto","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/954af836f7/Dagger4.png","h":3} +{"name":"돌도끼","refName":"Stone Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlMSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/fd3d66a367/TwoHandAxe1.png","w":2,"h":4} +{"name":"쇄석 망치","refName":"Stone Hammer","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U0IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/b0b1a18a0c/OneHandMace4.png","w":2,"h":3} +{"name":"태풍의 기수 장화","refName":"Stormrider Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[236,271]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SaXR1YWxEZXhCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7172feff67/RitualDexBoots.png","w":2,"h":2} +{"name":"해안 지도","refName":"Strand Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/7aE4Xzp.jpg"}} +{"name":"끈 장화","refName":"Strapped Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[30,39],"es":[7,9]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/2f86a773a5/BootsDexInt2.png","w":2,"h":2} +{"name":"끈을 멘 가죽 갑옷","refName":"Strapped Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[98,127]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4M0EiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e725e99b1b/BodyDex3A.png","w":2,"h":3} +{"name":"끈 미트","refName":"Strapped Mitts","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[30,39],"es":[7,9]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/e18b986979/GlovesDexInt2.png","w":2,"h":2} +{"name":"징 박힌 허리띠","refName":"Studded Belt","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdDYiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/7ae25523b2/Belt6.png","w":2} +{"name":"징 박힌 팔보호구","refName":"Studded Bracers","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQnJhY2VyQmFzZVR5cGVfc3R1ZGRlZCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/1dc4ea1d4c/BracerBaseType_studded.png","w":2,"h":2} +{"name":"징 박힌 원형 방패","refName":"Studded Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[46,58],"ev":[46,58]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5839b7b6f4/ShieldStrDex3.png","w":2,"h":3} +{"name":"명계의 조임쇠","refName":"Stygian Vise","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQWJ5c3NCZWx0IiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/973fb5fe7a/AbyssBelt.png","w":2} +{"name":"아우르는 영혼 방패","refName":"Subsuming Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[25,29]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0ludEhlaXN0U2hpZWxkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f58639d2f4/IntHeistShield.png","w":2,"h":3} +{"name":"아황산염 갑충석","refName":"Sulphite Scarab","namespace":"ITEM","tradeTag":"sulphite-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJTdWxwaGl0ZSIsInNjYWxlIjoxfV0/9bdde2cec0/LesserScarabSulphite.png"} +{"name":"연기의 아황산염 갑충석","refName":"Sulphite Scarab of Fumes","namespace":"ITEM","tradeTag":"sulphite-scarab-of-fumes","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiU3VscGhpdGUiLCJzY2FsZSI6MX1d/55c0fed4b6/GreaterScarabSulphite.png"} +{"name":"탐욕의 아황산염 갑충석","refName":"Sulphite Scarab of Greed","namespace":"ITEM","tradeTag":"sulphite-scarab-of-greed","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJTdWxwaGl0ZSIsInNjYWxlIjoxfV0/8121093ec0/NormalScarabSulphite.png"} +{"name":"유황 발염기","refName":"Sulphur Blowtorch","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVG9yY2hTdGQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/9291e5d539/TorchStd.png","w":2,"h":2} +{"name":"유황 플라스크","refName":"Sulphur Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvZ29sZCIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/74568fc9b9/gold.png","h":2} +{"name":"유황 분출구 지도","refName":"Sulphur Vents Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/D3sc6Dg.jpg"}} +{"name":"꼭대기 지도","refName":"Summit Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/6aL5NhS.jpg"}} +{"name":"태양의 가죽 갑옷","refName":"Sun Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[324,382]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4M0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e30de2c7a6/BodyDex3C.png","w":2,"h":3} +{"name":"태양의 판금 갑옷","refName":"Sun Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[451,506]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/94a3d5d98e/BodyStr1C.png","w":2,"h":3} +{"name":"태양 룬","refName":"Sun Rune","namespace":"ITEM","tradeTag":"sun-rune","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2V0dGxlcnMvVmlsbGFnZVJ1bmUyIiwic2NhbGUiOjF9XQ/c0bfc39082/VillageRune2.png"} +{"name":"작렬하는 도끼","refName":"Sundering Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlMyIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/7d35a55caa/TwoHandAxe3.png","w":2,"h":4} +{"name":"태양불 관","refName":"Sunfire Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[101,116]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e5e3144056/HelmetInt9.png","w":2,"h":2} +{"name":"물에 잠긴 도시 지도","refName":"Sunken City Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/QAoHzcR.jpg"}} +{"name":"최고급 가죽 갑옷","refName":"Supreme Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[894,1028]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/47360dcc4a/BodyDex1C.png","w":2,"h":3} +{"name":"최상급 가시 방패","refName":"Supreme Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[242,278],"es":[49,57]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3f3c95a49a/ShieldDexInt5.png","w":2,"h":2} +{"name":"연합의 의복","refName":"Syndicate's Garb","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[1205,1386]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8f1d1cfaa9/BodyDex2C.png","w":2,"h":3} +{"name":"결합된 지도","refName":"Synthesised Map","namespace":"ITEM","craftable":{"uniqueOnly":true,"category":"Map"},"icon":"","map":{}} +{"name":"결합의 조각","refName":"Synthesising Fragment","namespace":"ITEM","tradeTag":"synthesising-fragment","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyQm9zc0tleUNvcnRleCIsInNjYWxlIjoxfV0/f97fadd4b1/UberBossKeyCortex.png"} +{"name":"재단 오브","refName":"Tailoring Orb","namespace":"ITEM","tradeTag":"tailoring-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGl2aW5lRW5jaGFudFdlYXBvbkN1cnJlbmN5Iiwic2NhbGUiOjF9XQ/d417654a23/DivineEnchantWeaponCurrency.png"} +{"name":"더럽혀진 방어구 장인의 고철","refName":"Tainted Armourer's Scrap","namespace":"ITEM","tradeTag":"tainted-armourers-scrap","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZUFybW91cmVyc1NjcmFwIiwic2NhbGUiOjF9XQ/9ee0a10625/HellscapeArmourersScrap.png"} +{"name":"더럽혀진 대장장이의 숫돌","refName":"Tainted Blacksmith's Whetstone","namespace":"ITEM","tradeTag":"tainted-blacksmiths-whetstone","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZUJsYWNrc21pdGhXaGV0c3RvbmUiLCJzY2FsZSI6MX1d/0309648ccb/HellscapeBlacksmithWhetstone.png"} +{"name":"더럽혀진 기폭제","refName":"Tainted Catalyst","namespace":"ITEM","tradeTag":"tainted-catalyst","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL1RhaW50ZWRDYXRhbHlzdCIsInNjYWxlIjoxfV0/5ce364bd70/TaintedCatalyst.png"} +{"name":"더럽혀진 카오스 오브","refName":"Tainted Chaos Orb","namespace":"ITEM","tradeTag":"tainted-chaos-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZUNoYW9zT3JiIiwic2NhbGUiOjF9XQ/64d1f4db99/HellscapeChaosOrb.png"} +{"name":"더럽혀진 색채의 오브","refName":"Tainted Chromatic Orb","namespace":"ITEM","tradeTag":"tainted-chromatic-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZUNocm9tYXRpY09yYiIsInNjYWxlIjoxfV0/702d29c7ab/HellscapeChromaticOrb.png"} +{"name":"더럽혀진 신성한 눈물방울","refName":"Tainted Divine Teardrop","namespace":"ITEM","tradeTag":"tainted-divine-teardrop","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZVRlYXJkcm9wT3JiIiwic2NhbGUiOjF9XQ/0d251b9d52/HellscapeTeardropOrb.png"} +{"name":"더럽혀진 엑잘티드 오브","refName":"Tainted Exalted Orb","namespace":"ITEM","tradeTag":"tainted-exalted-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZUV4YWx0ZWRPcmIiLCJzY2FsZSI6MX1d/68a0ea3020/HellscapeExaltedOrb.png"} +{"name":"더럽혀진 쥬얼러 오브","refName":"Tainted Jeweller's Orb","namespace":"ITEM","tradeTag":"tainted-jewellers-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZUpld2VsbGVyc09yYiIsInNjYWxlIjoxfV0/f146c29db2/HellscapeJewellersOrb.png"} +{"name":"더럽혀진 신화 오브","refName":"Tainted Mythic Orb","namespace":"ITEM","tradeTag":"tainted-mythic-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZU15dGhpY09yYiIsInNjYWxlIjoxfV0/72ba97d1a8/HellscapeMythicOrb.png"} +{"name":"더럽혀진 성유","refName":"Tainted Oil","namespace":"ITEM","tradeTag":"tainted-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9WYWFsT2lsIiwic2NhbGUiOjF9XQ/ac4ceb0430/VaalOil.png"} +{"name":"더럽혀진 연결의 오브","refName":"Tainted Orb of Fusing","namespace":"ITEM","tradeTag":"tainted-orb-of-fusing","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZU9yYk9mRnVzaW5nIiwic2NhbGUiOjF9XQ/845f3c20ed/HellscapeOrbOfFusing.png"} +{"name":"발톱 도끼","refName":"Talon Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlOCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/ba1d6734bb/TwoHandAxe8.png","w":2,"h":4} +{"name":"얽혀든 화석","refName":"Tangled Fossil","namespace":"ITEM","tradeTag":"tangled-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvVGFuZ2xlZEZvc3NpbCIsInNjYWxlIjoxfV0/b96bdfe155/TangledFossil.png"} +{"name":"변색된 영혼 방패","refName":"Tarnished Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[21,25]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/2fcc8b522c/ShieldInt4.png","w":2,"h":2} +{"name":"해진 망토","refName":"Tattered Cloak","namespace":"ITEM","craftable":{"category":"Heist Cloak"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVGF0dGVyZWRDbG9hayIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/9c3ef0c0c4/TatteredCloak.png","w":2,"h":2} +{"name":"아로호누이 달의 간수의 문신","refName":"Tattoo of the Arohongui Moonwarden","namespace":"ITEM","tradeTag":"tattoo-of-the-arohongui-moonwarden","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"아로호누이 정찰병의 문신","refName":"Tattoo of the Arohongui Scout","namespace":"ITEM","tradeTag":"tattoo-of-the-arohongui-scout","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"아로호누이 주술사의 문신","refName":"Tattoo of the Arohongui Shaman","namespace":"ITEM","tradeTag":"tattoo-of-the-arohongui-shaman","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"아로호누이 전쟁광의 문신","refName":"Tattoo of the Arohongui Warmonger","namespace":"ITEM","tradeTag":"tattoo-of-the-arohongui-warmonger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"아로호누이 전사의 문신","refName":"Tattoo of the Arohongui Warrior","namespace":"ITEM","tradeTag":"tattoo-of-the-arohongui-warrior","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"히네코라 죽음의 간수의 문신","refName":"Tattoo of the Hinekora Deathwarden","namespace":"ITEM","tradeTag":"tattoo-of-the-hinekora-deathwarden","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"히네코라 주술사의 문신","refName":"Tattoo of the Hinekora Shaman","namespace":"ITEM","tradeTag":"tattoo-of-the-hinekora-shaman","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"히네코라 이야기꾼의 문신","refName":"Tattoo of the Hinekora Storyteller","namespace":"ITEM","tradeTag":"tattoo-of-the-hinekora-storyteller","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"히네코라 전쟁광의 문신","refName":"Tattoo of the Hinekora Warmonger","namespace":"ITEM","tradeTag":"tattoo-of-the-hinekora-warmonger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"히네코라 전사의 문신","refName":"Tattoo of the Hinekora Warrior","namespace":"ITEM","tradeTag":"tattoo-of-the-hinekora-warrior","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"키타바 피 흡수자의 문신","refName":"Tattoo of the Kitava Blood Drinker","namespace":"ITEM","tradeTag":"tattoo-of-the-kitava-blood-drinker","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"키타바 심장 포식자의 문신","refName":"Tattoo of the Kitava Heart Eater","namespace":"ITEM","tradeTag":"tattoo-of-the-kitava-heart-eater","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"키타바 반란자의 문신","refName":"Tattoo of the Kitava Rebel","namespace":"ITEM","tradeTag":"tattoo-of-the-kitava-rebel","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"키타바 주술사의 문신","refName":"Tattoo of the Kitava Shaman","namespace":"ITEM","tradeTag":"tattoo-of-the-kitava-shaman","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"키타바 전사의 문신","refName":"Tattoo of the Kitava Warrior","namespace":"ITEM","tradeTag":"tattoo-of-the-kitava-warrior","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"나마후 화염보행자의 문신","refName":"Tattoo of the Ngamahu Firewalker","namespace":"ITEM","tradeTag":"tattoo-of-the-ngamahu-firewalker","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"나마후 주술사의 문신","refName":"Tattoo of the Ngamahu Shaman","namespace":"ITEM","tradeTag":"tattoo-of-the-ngamahu-shaman","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"나마후 전쟁광의 문신","refName":"Tattoo of the Ngamahu Warmonger","namespace":"ITEM","tradeTag":"tattoo-of-the-ngamahu-warmonger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"나마후 전사의 문신","refName":"Tattoo of the Ngamahu Warrior","namespace":"ITEM","tradeTag":"tattoo-of-the-ngamahu-warrior","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"나마후 목각사의 문신","refName":"Tattoo of the Ngamahu Woodcarver","namespace":"ITEM","tradeTag":"tattoo-of-the-ngamahu-woodcarver","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"라마코 궁수의 문신","refName":"Tattoo of the Ramako Archer","namespace":"ITEM","tradeTag":"tattoo-of-the-ramako-archer","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"라마코 쾌속병의 문신","refName":"Tattoo of the Ramako Fleetfoot","namespace":"ITEM","tradeTag":"tattoo-of-the-ramako-fleetfoot","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"라마코 정찰병의 문신","refName":"Tattoo of the Ramako Scout","namespace":"ITEM","tradeTag":"tattoo-of-the-ramako-scout","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"라마코 주술사의 문신","refName":"Tattoo of the Ramako Shaman","namespace":"ITEM","tradeTag":"tattoo-of-the-ramako-shaman","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"라마코 저격수의 문신","refName":"Tattoo of the Ramako Sniper","namespace":"ITEM","tradeTag":"tattoo-of-the-ramako-sniper","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"롱고쿠라이 돌격병의 문신","refName":"Tattoo of the Rongokurai Brute","namespace":"ITEM","tradeTag":"tattoo-of-the-rongokurai-brute","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"롱고쿠라이 골리앗의 문신","refName":"Tattoo of the Rongokurai Goliath","namespace":"ITEM","tradeTag":"tattoo-of-the-rongokurai-goliath","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"롱고쿠라이 수호병의 문신","refName":"Tattoo of the Rongokurai Guard","namespace":"ITEM","tradeTag":"tattoo-of-the-rongokurai-guard","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"롱고쿠라이 거북이의 문신","refName":"Tattoo of the Rongokurai Turtle","namespace":"ITEM","tradeTag":"tattoo-of-the-rongokurai-turtle","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"롱고쿠라이 전사의 문신","refName":"Tattoo of the Rongokurai Warrior","namespace":"ITEM","tradeTag":"tattoo-of-the-rongokurai-warrior","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"타살리오 검의 무희의 문신","refName":"Tattoo of the Tasalio Bladedancer","namespace":"ITEM","tradeTag":"tattoo-of-the-tasalio-bladedancer","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"타살리오 정찰병의 문신","refName":"Tattoo of the Tasalio Scout","namespace":"ITEM","tradeTag":"tattoo-of-the-tasalio-scout","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"타살리오 주술사의 문신","refName":"Tattoo of the Tasalio Shaman","namespace":"ITEM","tradeTag":"tattoo-of-the-tasalio-shaman","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"타살리오 파도변화술사의 문신","refName":"Tattoo of the Tasalio Tideshifter","namespace":"ITEM","tradeTag":"tattoo-of-the-tasalio-tideshifter","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"타살리오 전사의 문신","refName":"Tattoo of the Tasalio Warrior","namespace":"ITEM","tradeTag":"tattoo-of-the-tasalio-warrior","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"타호아 약초상의 문신","refName":"Tattoo of the Tawhoa Herbalist","namespace":"ITEM","tradeTag":"tattoo-of-the-tawhoa-herbalist","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"타호아 박물학자의 문신","refName":"Tattoo of the Tawhoa Naturalist","namespace":"ITEM","tradeTag":"tattoo-of-the-tawhoa-naturalist","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"타호아 정찰병의 문신","refName":"Tattoo of the Tawhoa Scout","namespace":"ITEM","tradeTag":"tattoo-of-the-tawhoa-scout","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"타호아 주술사의 문신","refName":"Tattoo of the Tawhoa Shaman","namespace":"ITEM","tradeTag":"tattoo-of-the-tawhoa-shaman","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"타호아 전사의 문신","refName":"Tattoo of the Tawhoa Warrior","namespace":"ITEM","tradeTag":"tattoo-of-the-tawhoa-warrior","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"투코하마 싸움꾼의 문신","refName":"Tattoo of the Tukohama Brawler","namespace":"ITEM","tradeTag":"tattoo-of-the-tukohama-brawler","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"투코하마 주술사의 문신","refName":"Tattoo of the Tukohama Shaman","namespace":"ITEM","tradeTag":"tattoo-of-the-tukohama-shaman","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"투코하마 전쟁 소집자의 문신","refName":"Tattoo of the Tukohama Warcaller","namespace":"ITEM","tradeTag":"tattoo-of-the-tukohama-warcaller","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"투코하마 전쟁광의 문신","refName":"Tattoo of the Tukohama Warmonger","namespace":"ITEM","tradeTag":"tattoo-of-the-tukohama-warmonger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"투코하마 전사의 문신","refName":"Tattoo of the Tukohama Warrior","namespace":"ITEM","tradeTag":"tattoo-of-the-tukohama-warrior","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"발라코 정찰병의 문신","refName":"Tattoo of the Valako Scout","namespace":"ITEM","tradeTag":"tattoo-of-the-valako-scout","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"발라코 주술사의 문신","refName":"Tattoo of the Valako Shaman","namespace":"ITEM","tradeTag":"tattoo-of-the-valako-shaman","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"발라코 방패 운반자의 문신","refName":"Tattoo of the Valako Shieldbearer","namespace":"ITEM","tradeTag":"tattoo-of-the-valako-shieldbearer","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"발라코 태풍의 기수의 문신","refName":"Tattoo of the Valako Stormrider","namespace":"ITEM","tradeTag":"tattoo-of-the-valako-stormrider","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"발라코 전사의 문신","refName":"Tattoo of the Valako Warrior","namespace":"ITEM","tradeTag":"tattoo-of-the-valako-warrior","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"티크목 원형 방패","refName":"Teak Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[131,146],"ev":[131,146]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9cccab30a2/ShieldStrDex2.png","w":2,"h":3} +{"name":"청록빛 성유","refName":"Teal Oil","namespace":"ITEM","tradeTag":"teal-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9UZWFsT2lsIiwic2NhbGUiOjF9XQ/d90d65a90b/TealOil.png"} +{"name":"단조한 펜싱 검","refName":"Tempered Foil","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjMiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/11f4a8b0d0/Rapier3.png","h":4} +{"name":"완화의 기폭제","refName":"Tempering Catalyst","namespace":"ITEM","tradeTag":"tempering-catalyst","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL1RlbXBlcmluZ0NhdGFseXN0Iiwic2NhbGUiOjF9XQ/6bf69c356e/TemperingCatalyst.png"} +{"name":"단조 오브","refName":"Tempering Orb","namespace":"ITEM","tradeTag":"tempering-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGl2aW5lRW5jaGFudEJvZHlBcm1vdXJDdXJyZW5jeSIsInNjYWxlIjoxfV0/37681eda1c/DivineEnchantBodyArmourCurrency.png"} +{"name":"사원 지도","refName":"Temple Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/g3LZ4zC.jpg"}} +{"name":"고기 망치","refName":"Tenderizer","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2UzIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/a3a1dace2a/OneHandMace3.png","h":3} +{"name":"테라스 지도","refName":"Terrace Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/dZZGyRt.jpg"}} +{"name":"공포의 클로","refName":"Terror Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3OCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/3cc3260177/Claw8.png","w":2,"h":2} +{"name":"공포의 대형 망치","refName":"Terror Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U3IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/d7e632f004/TwoHandMace7.png","w":2,"h":4} +{"name":"마석학자의 환영의 오브","refName":"Thaumaturge's Delirium Orb","namespace":"ITEM","tradeTag":"thaumaturges-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJHZW1zIiwic2NhbGUiOjF9XQ/027802e844/DeliriumOrbGems.png"} +{"name":"마석학자의 인큐베이터","refName":"Thaumaturge's Incubator","namespace":"ITEM","tradeTag":"thaumaturges-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uR2VtcyIsInNjYWxlIjoxfV0/7df785d740/IncubationGems.png"} +{"name":"마석학 감지 부적","refName":"Thaumaturgical Sensing Charm","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVGhhdW1hdHVyZ2ljYWxTZW5zaW5nQ2hhcm0iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/7717c977a0/ThaumaturgicalSensingCharm.png","w":2,"h":2} +{"name":"마석학 수호","refName":"Thaumaturgical Ward","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVGhhdW1hdHVyZ2ljYWxXYXJkIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/5c04225225/ThaumaturgicalWard.png","w":2,"h":2} +{"name":"마석 발염기","refName":"Thaumetic Blowtorch","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVG9yY2hBZHYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/56e93dd6de/TorchAdv.png","w":2,"h":2} +{"name":"마석 섬광가루","refName":"Thaumetic Flashpowder","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVGhhdW1ldGljRmxhc2hwb3dkZXIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/1544d0cf33/ThaumeticFlashpowder.png","w":2,"h":2} +{"name":"메이븐의 문서","refName":"The Maven's Writ","namespace":"ITEM","tradeTag":"the-mavens-writ","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXRsYXMvTWF2ZW5LZXkiLCJzY2FsZSI6MX1d/40683e487b/MavenKey.png"} +{"name":"극장 변장 도구","refName":"Theatre Disguise Kit","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRXNwaW9uYWdlRGlzZ3Vpc2VLaXQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e450ea475f/EspionageDisguiseKit.png","w":2,"h":2} +{"name":"잡목림 활","refName":"Thicket Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/0fcc51afcd/Bow2.png","w":2,"h":3} +{"name":"잡목림 지도","refName":"Thicket Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/rlY2iPC.jpg"}} +{"name":"도둑의 의복","refName":"Thief's Garb","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[353,396]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8f1d1cfaa9/BodyDex2C.png","w":2,"h":3} +{"name":"도둑 장신구","refName":"Thief's Trinket","namespace":"ITEM","craftable":{"category":"Trinket","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvTHVja0NoYXJtMSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/3641828a4f/LuckCharm1.png"} +{"name":"토륨 영혼 방패","refName":"Thorium Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[54,62]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/404ef29c87/ShieldInt6.png","w":2,"h":2} +{"name":"가시 레이피어","refName":"Thorn Rapier","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjgiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/1f11ed5e87/Rapier8.png","h":4} +{"name":"세 개의 손 부적","refName":"Three Hands Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hblJlZDgiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4606db8db3/TalismanRed8.png"} +{"name":"세 마리 쥐 부적","refName":"Three Rat Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hblJlZDciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ebaea93f2d/TalismanRed7.png"} +{"name":"도리깨 클로","refName":"Thresher Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/8b8d9559cd/Claw2.png","w":2,"h":2} +{"name":"목구멍 송곳","refName":"Throat Stabber","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ac6e7ab61d/Claw3.png","w":2,"h":2} +{"name":"좌절의 건틀릿","refName":"Thwarting Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[236,271]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUml0dWFsU3RyR2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/254b8a0066/RitualStrGloves.png","w":2,"h":2} +{"name":"호랑이 갈고리","refName":"Tiger Hook","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDkiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/d11450350f/OneHandSword9.png","w":2,"h":3} +{"name":"호랑이 검","refName":"Tiger Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d69254d0a6/TwoHandSword6.png","w":2,"h":4} +{"name":"호랑이 발","refName":"Tiger's Paw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0a98c635d3/Claw4.png","w":2,"h":2} +{"name":"목재용 도끼","refName":"Timber Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlMyIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/7d35a55caa/TwoHandAxe3.png","w":2,"h":4} +{"name":"시간 룬","refName":"Time Rune","namespace":"ITEM","tradeTag":"time-rune","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2V0dGxlcnMvVmlsbGFnZVJ1bmU5Iiwic2NhbGUiOjF9XQ/d6a60dbfc9/VillageRune9.png"} +{"name":"시간과 빛의 주문서","refName":"Time-light Scroll","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9IYXJiaW5nZXJUb2tlbkJlbHQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cd4f70a070/HarbingerTokenBelt.png"} +{"name":"오래된 인큐베이터","refName":"Time-Lost Incubator","namespace":"ITEM","tradeTag":"time-lost-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uVW5pcXVlcyIsInNjYWxlIjoxfV0/72b48d1f1b/IncubationUniques.png"} +{"name":"무궁한 환영의 오브","refName":"Timeless Delirium Orb","namespace":"ITEM","tradeTag":"timeless-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJMZWdpb24iLCJzY2FsZSI6MX1d/b61cc0e1f6/DeliriumOrbLegion.png"} +{"name":"무궁한 영원의 상징","refName":"Timeless Eternal Emblem","namespace":"ITEM","tradeTag":"timeless-eternal-emblem","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FdGVybmFsRW1waXJlRnJhZ21lbnQiLCJzY2FsZSI6MX1d/974fcca603/EternalEmpireFragment.png"} +{"name":"무궁한 영원한 제국 파편","refName":"Timeless Eternal Empire Splinter","namespace":"ITEM","tradeTag":"timeless-eternal-empire-splinter","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FdGVybmFsRW1waXJlU2hhcmQiLCJzY2FsZSI6MX1d/f404e7925c/EternalEmpireShard.png"} +{"name":"무궁한 주얼","refName":"Timeless Jewel","namespace":"ITEM","craftable":{"category":"Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RpbWVsZXNzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2cc52f22d7/Timeless.png"} +{"name":"무궁한 카루이 상징","refName":"Timeless Karui Emblem","namespace":"ITEM","tradeTag":"timeless-karui-emblem","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9LYXJ1aUZyYWdtZW50Iiwic2NhbGUiOjF9XQ/c616b0ee65/KaruiFragment.png"} +{"name":"무궁한 카루이 파편","refName":"Timeless Karui Splinter","namespace":"ITEM","tradeTag":"timeless-karui-splinter","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9LYXJ1aVNoYXJkIiwic2NhbGUiOjF9XQ/dd21055148/KaruiShard.png"} +{"name":"무궁한 마라케스 상징","refName":"Timeless Maraketh Emblem","namespace":"ITEM","tradeTag":"timeless-maraketh-emblem","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9NYXJha2V0aEZyYWdtZW50Iiwic2NhbGUiOjF9XQ/a81c4968ab/MarakethFragment.png"} +{"name":"무궁한 마라케스 파편","refName":"Timeless Maraketh Splinter","namespace":"ITEM","tradeTag":"timeless-maraketh-splinter","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9NYXJha2V0aFNoYXJkIiwic2NhbGUiOjF9XQ/04ec0d80fe/MarakethShard.png"} +{"name":"무궁한 템플러 상징","refName":"Timeless Templar Emblem","namespace":"ITEM","tradeTag":"timeless-templar-emblem","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UZW1wbGFyRnJhZ21lbnQiLCJzY2FsZSI6MX1d/e7ede9f816/TemplarFragment.png"} +{"name":"무궁한 템플러 파편","refName":"Timeless Templar Splinter","namespace":"ITEM","tradeTag":"timeless-templar-splinter","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UZW1wbGFyU2hhcmQiLCJzY2FsZSI6MX1d/fd3d766dd5/TemplarShard.png"} +{"name":"무궁한 바알 상징","refName":"Timeless Vaal Emblem","namespace":"ITEM","tradeTag":"timeless-vaal-emblem","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYWFsRnJhZ21lbnQiLCJzY2FsZSI6MX1d/1f8bc8f5ad/VaalFragment.png"} +{"name":"무궁한 바알 파편","refName":"Timeless Vaal Splinter","namespace":"ITEM","tradeTag":"timeless-vaal-splinter","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYWFsU2hhcmQiLCJzY2FsZSI6MX1d/6b356215ac/VaalShard.png"} +{"name":"오래된 클로","refName":"Timeworn Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ae1fb6dddd/Claw6.png","w":2,"h":2} +{"name":"오래된 성유물 보관실 열쇠","refName":"Timeworn Reliquary Key","namespace":"ITEM","tradeTag":"timeworn-reliquary-key","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYXVsdE1hcDMiLCJzY2FsZSI6MX1d/b7e8aacbaa/VaultMap3.png"} +{"name":"땜장이 장갑","refName":"Tinker Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[35,41]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUml0dWFsRGV4R2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/2785fe1c37/RitualDexGloves.png","w":2,"h":2} +{"name":"거신 건틀릿","refName":"Titan Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[242,278]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyNCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/468f466568/GlovesStr4.png","w":2,"h":2} +{"name":"거신 각반","refName":"Titan Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[241,278]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/82bedfd1e0/BootsStr4.png","w":2,"h":2} +{"name":"거신 판금 갑옷","refName":"Titan Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[877,1009]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/94a3d5d98e/BodyStr1C.png","w":2,"h":3} +{"name":"거대한 갑충석","refName":"Titanic Scarab","namespace":"ITEM","tradeTag":"titanic-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJVbmlxdWUiLCJzY2FsZSI6MX1d/9ed658ddba/LesserScarabUnique.png"} +{"name":"전설의 거대한 갑충석","refName":"Titanic Scarab of Legend","namespace":"ITEM","tradeTag":"titanic-scarab-of-legend","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiVW5pcXVlIiwic2NhbGUiOjF9XQ/0194f878a0/GreaterScarabUnique.png"} +{"name":"보물의 거대한 갑충석","refName":"Titanic Scarab of Treasures","namespace":"ITEM","tradeTag":"titanic-scarab-of-treasures","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJVbmlxdWUiLCJzY2FsZSI6MX1d/e2945f5878/NormalScarabUnique.png"} +{"name":"티타늄 영혼 방패","refName":"Titanium Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[67,77]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/404ef29c87/ShieldInt6.png","w":2,"h":2} +{"name":"토마호크","refName":"Tomahawk","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlMyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/126bb32028/OneHandAxe3.png","w":2,"h":3} +{"name":"책 유물","refName":"Tome Relic","namespace":"ITEM","craftable":{"category":"Sanctum Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljQmFzZTN4MSIsInciOjMsImgiOjEsInNjYWxlIjoxfV0/7463c2ce89/RelicBase3x1.png","w":3} +{"name":"토파즈 플라스크","refName":"Topaz Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvdG9wYXoiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/2a6d920bc1/topaz.png","h":2} +{"name":"토파즈 반지","refName":"Topaz Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6f90cd3c4b/Ring5.png"} +{"name":"고통 갑충석","refName":"Torment Scarab","namespace":"ITEM","tradeTag":"torment-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJUb3JtZW50Iiwic2NhbGUiOjF9XQ/8c43bf8c64/LesserScarabTorment.png"} +{"name":"기이함의 고통 갑충석","refName":"Torment Scarab of Peculiarity","namespace":"ITEM","tradeTag":"torment-scarab-of-peculiarity","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJUb3JtZW50Iiwic2NhbGUiOjF9XQ/4c94a84fd8/NormalScarabTorment.png"} +{"name":"사로잡힘의 고통 갑충석","refName":"Torment Scarab of Possession","namespace":"ITEM","tradeTag":"torment-scarab-of-possession","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYlRvcm1lbnQiLCJzY2FsZSI6MX1d/5b3bed9d3d/Tier4ScarabTorment.png"} +{"name":"해방의 고통 갑충석","refName":"Torment Scarab of Release","namespace":"ITEM","tradeTag":"torment-scarab-of-release","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiVG9ybWVudCIsInNjYWxlIjoxfV0/548c57abc3/GreaterScarabTorment.png"} +{"name":"찢어진 망토","refName":"Torn Cloak","namespace":"ITEM","craftable":{"category":"Heist Cloak"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVG9ybkNsb2FrIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/8857eabe4c/TornCloak.png","w":2,"h":2} +{"name":"회오리 마법봉","refName":"Tornado Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/a28035d7c4/Wand5.png","h":3} +{"name":"고문용 창살","refName":"Torture Cage","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[20,25]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/bdf765283d/HelmetInt3.png","w":2,"h":2} +{"name":"고문자의 의복","refName":"Torturer Garb","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[627,721],"es":[126,145]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/6744d2d486/BodyDexInt2C.png","w":2,"h":3} +{"name":"고문자의 가면","refName":"Torturer's Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[355,409],"es":[71,82]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDExIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/ff51fc2e8c/HelmetDexInt11.png","w":2,"h":2} +{"name":"토템 대형 망치","refName":"Totemic Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2UyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/36201397ff/TwoHandMace2.png","w":2,"h":4} +{"name":"탑 지도","refName":"Tower Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/LqSPV6K.jpg"}} +{"name":"맹독성 하수도 지도","refName":"Toxic Sewer Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/CgSpbBl.jpg"}} +{"name":"조율된 전이 영혼 방패","refName":"Transfer-attuned Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[39,45]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0ludEhlaXN0U2hpZWxkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f58639d2f4/IntHeistShield.png","w":2,"h":3} +{"name":"변신 지팡이","refName":"Transformer Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGVpc3RTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/5e852184f5/HeistStaff.png","w":2,"h":4} +{"name":"덫사냥꾼 장화","refName":"Trapper Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[74,85],"es":[16,18]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/2f86a773a5/BootsDexInt2.png","w":2,"h":2} +{"name":"덫사냥꾼 미트","refName":"Trapper Mitts","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[65,77],"es":[14,16]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50MSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/983aa9c9fc/GlovesDexInt1.png","w":2,"h":2} +{"name":"덫꾼 장갑","refName":"Trapsetter Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[236,271]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUml0dWFsRGV4R2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/2785fe1c37/RitualDexGloves.png","w":2,"h":2} +{"name":"트라탄 섬광가루","refName":"Trarthan Flashpowder","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVHJhcnRocmFuRmxhc2hwb3dkZXIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/8f197f178c/TrarthranFlashpowder.png","w":2,"h":2} +{"name":"부족 관","refName":"Tribal Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[28,33]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/ce784f5b72/HelmetInt4.png","w":2,"h":2} +{"name":"부족 곤봉","refName":"Tribal Club","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2UyIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/75d926bb65/OneHandMace2.png","h":3} +{"name":"부족 대형 망치","refName":"Tribal Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2UyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/36201397ff/TwoHandMace2.png","w":2,"h":4} +{"name":"여신에게 바치는 제물","refName":"Tribute to the Goddess","namespace":"ITEM","tradeTag":"offer-tribute","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9MYWJ5cmludGhIYXJ2ZXN0Iiwic2NhbGUiOjF9XQ/81054ff374/LabyrinthHarvest.png"} +{"name":"삼각모","refName":"Tricorne","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[53,69]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c4c9b53e80/HelmetDex2.png","w":2,"h":2} +{"name":"트리술라","refName":"Trisula","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjkiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/ac5b740611/Dagger9.png","h":3} +{"name":"승리의 라멜라","refName":"Triumphant Lamellar","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[380,437],"ev":[477,549]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyNEEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/7e1c29aacf/BodyStr4A.png","w":2,"h":3} +{"name":"열대 섬 지도","refName":"Tropical Island Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/wraPtBT.jpg"}} +{"name":"툴의 균열석","refName":"Tul's Breachstone","namespace":"ITEM","tradeTag":"tuls-breachstone","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaEZyYWdtZW50c0NvbGQiLCJzY2FsZSI6MX1d/d1a2906729/BreachFragmentsCold.png"} +{"name":"툴의 결함 없는 균열석","refName":"Tul's Flawless Breachstone","namespace":"ITEM","tradeTag":"tuls-flawless-breachstone","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL1R1bHNGbGF3bGVzc0JyZWFjaHN0b25lIiwic2NhbGUiOjF9XQ/f238a20f9a/TulsFlawlessBreachstone.png"} +{"name":"격동의 기폭제","refName":"Turbulent Catalyst","namespace":"ITEM","tradeTag":"turbulent-catalyst","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL1R1cmJ1bGVudENhdGFseXN0Iiwic2NhbGUiOjF9XQ/1f49d03e58/TurbulentCatalyst.png"} +{"name":"터키석 목걸이","refName":"Turquoise Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UdXJxdW9pc2VBbXVsZXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/605b4da0e1/TurquoiseAmulet.png"} +{"name":"잔가지 영혼 방패","refName":"Twig Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[6,8]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/26dafd13bc/ShieldInt1.png","w":2,"h":2} +{"name":"여명의 검","refName":"Twilight Blade","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDgiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/406f7aec97/OneHandSword8.png","w":2,"h":3} +{"name":"황혼의 예복","refName":"Twilight Regalia","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[262,302]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e6eb42b23a/BodyStrDexInt1C.png","w":2,"h":3} +{"name":"쌍둥이 클로","refName":"Twin Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3OSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/84eab7e6ba/Claw9.png","w":2,"h":2} +{"name":"양손검","refName":"Two-Handed Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/294bd80312/TwoHandSword4.png","w":2,"h":4} +{"name":"쌍촉 화살통","refName":"Two-Point Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJUd28tUG9pbnQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5a4772c3db/QuiverTwo-Point.png","w":2,"h":3} +{"name":"쌍보석 반지","refName":"Two-Stone Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVG9wYXpSdWJ5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8878077651/TopazRuby.png","disc":{"hasImplicit":{"ref":"+#% to Fire and Lightning Resistances"}}} +{"name":"쌍보석 반지","refName":"Two-Stone Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVG9wYXpTYXBwaGlyZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0c211c12b4/TopazSapphire.png","disc":{"hasImplicit":{"ref":"+#% to Cold and Lightning Resistances"}}} +{"name":"쌍보석 반지","refName":"Two-Stone Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU2FwcGhpcmVSdWJ5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/7df6d65dfd/SapphireRuby.png","disc":{"hasImplicit":{"ref":"+#% to Fire and Cold Resistances"}}} +{"name":"두 가지 색 장화","refName":"Two-Toned Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[126,145],"es":[26,30]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Ud29Ub25lZEJvb3RzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/93a61b5672/TwoTonedBoots.png","w":2,"h":2,"disc":{"propEV":true,"propES":true}} +{"name":"두 가지 색 장화","refName":"Two-Toned Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[126,145],"ev":[126,145]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Ud29Ub25lZEJvb3RzMkIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c046f556ab/TwoTonedBoots2B.png","w":2,"h":2,"disc":{"propAR":true,"propEV":true}} +{"name":"두 가지 색 장화","refName":"Two-Toned Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[126,145],"es":[26,30]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Ud29Ub25lZEJvb3RzM0IiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e3271c5de1/TwoTonedBoots3B.png","w":2,"h":2,"disc":{"propAR":true,"propES":true}} +{"name":"폭군의 세크헴","refName":"Tyrant's Sekhem","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyMyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/366212755a/scepter3.png","w":2,"h":3} +{"name":"결전 갑충석","refName":"Ultimatum Scarab","namespace":"ITEM","tradeTag":"ultimatum-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJVbHRpbWF0dW0iLCJzY2FsZSI6MX1d/b1b423625d/LesserScarabUltimatum.png"} +{"name":"매수의 결전 갑충석","refName":"Ultimatum Scarab of Bribing","namespace":"ITEM","tradeTag":"ultimatum-scarab-of-bribing","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJVbHRpbWF0dW0iLCJzY2FsZSI6MX1d/d688264f91/NormalScarabUltimatum.png"} +{"name":"기폭의 결전 갑충석","refName":"Ultimatum Scarab of Catalysing","namespace":"ITEM","tradeTag":"ultimatum-scarab-of-catalysing","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYlVsdGltYXR1bSIsInNjYWxlIjoxfV0/abfc80cf45/Tier4ScarabUltimatum.png"} +{"name":"결투의 결전 갑충석","refName":"Ultimatum Scarab of Dueling","namespace":"ITEM","tradeTag":"ultimatum-scarab-of-dueling","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiVWx0aW1hdHVtIiwic2NhbGUiOjF9XQ/be3b513bfe/GreaterScarabUltimatum.png"} +{"name":"새김의 결전 갑충석","refName":"Ultimatum Scarab of Inscription","namespace":"ITEM","tradeTag":"ultimatum-scarab-of-inscription","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRUaWVyNFNjYXJhYlVsdGltYXR1bSIsInNjYWxlIjoxfV0/080e60e969/AltTier4ScarabUltimatum.png"} +{"name":"지하 강 지도","refName":"Underground River Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/8k4Dug4.jpg"}} +{"name":"지하 해양 지도","refName":"Underground Sea Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/ELUmbfz.jpg"}} +{"name":"산 송장 살점 부적","refName":"Undying Flesh Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbldoaXRlNiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b59ac8a156/TalismanWhite6.png"} +{"name":"가차없는 무궁한 영원의 상징","refName":"Unrelenting Timeless Eternal Emblem","namespace":"ITEM","tradeTag":"uber-timeless-eternal-emblem","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UaW1lbGVzc0NvbmZsaWN0S2FydWkiLCJzY2FsZSI6MX1d/48dd647843/TimelessConflictKarui.png"} +{"name":"가차없는 무궁한 카루이 상징","refName":"Unrelenting Timeless Karui Emblem","namespace":"ITEM","tradeTag":"uber-timeless-karui-emblem","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UaW1lbGVzc0NvbmZsaWN0RXRlcm5hbCIsInNjYWxlIjoxfV0/f96320f889/TimelessConflictEternal.png"} +{"name":"가차없는 무궁한 마라케스 상징","refName":"Unrelenting Timeless Maraketh Emblem","namespace":"ITEM","tradeTag":"uber-timeless-maraketh-emblem","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UaW1lbGVzc0NvbmZsaWN0TWFyYWtldGgiLCJzY2FsZSI6MX1d/8eca6f27b3/TimelessConflictMaraketh.png"} +{"name":"가차없는 무궁한 템플러 상징","refName":"Unrelenting Timeless Templar Emblem","namespace":"ITEM","tradeTag":"uber-timeless-templar-emblem","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UaW1lbGVzc0NvbmZsaWN0VGVtcGxhciIsInNjYWxlIjoxfV0/b0a76a5f78/TimelessConflictTemplar.png"} +{"name":"가차없는 무궁한 바알 상징","refName":"Unrelenting Timeless Vaal Emblem","namespace":"ITEM","tradeTag":"uber-timeless-vaal-emblem","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UaW1lbGVzc0NvbmZsaWN0VmFhbCIsInNjYWxlIjoxfV0/895e0137f2/TimelessConflictVaal.png"} +{"name":"무보석 목걸이","refName":"Unset Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9VbnNldEFtdWxldCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/19b70eaa5b/UnsetAmulet.png"} +{"name":"무보석 반지","refName":"Unset Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvRW1wdHktU29ja2V0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/82146b3aa4/Empty-Socket.png"} +{"name":"강등의 오브","refName":"Unshaping Orb","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXRsYXNEb3duZ3JhZGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0f3716b72b/AtlasDowngrade.png"} +{"name":"불안정한 기폭제","refName":"Unstable Catalyst","namespace":"ITEM","tradeTag":"unstable-catalyst","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL0NyaXRpY2FsTW9kaWZpZXJDYXRhbHlzdCIsInNjYWxlIjoxfV0/eebe548a38/CriticalModifierCatalyst.png"} +{"name":"단지 유물","refName":"Urn Relic","namespace":"ITEM","craftable":{"category":"Sanctum Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljQmFzZTJ4MSIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/676ca95b04/RelicBase2x1.png","w":2} +{"name":"곰 가죽모","refName":"Ursine Pelt","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[276,325]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e2b3ccec11/HelmetDex7.png","w":2,"h":2} +{"name":"울네톨의 균열석","refName":"Uul-Netol's Breachstone","namespace":"ITEM","tradeTag":"uul-breachstone","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaEZyYWdtZW50c1BoeXNpY2FsIiwic2NhbGUiOjF9XQ/2b4821437a/BreachFragmentsPhysical.png"} +{"name":"울네톨의 결함 없는 균열석","refName":"Uul-Netol's Flawless Breachstone","namespace":"ITEM","tradeTag":"uul-flawless-breachstone","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL1V1bE5ldG9sc0ZsYXdsZXNzQnJlYWNoc3RvbmUiLCJzY2FsZSI6MX1d/afcbb96429/UulNetolsFlawlessBreachstone.png"} +{"name":"바알 위상","refName":"Vaal Aspect","namespace":"ITEM","craftable":{"category":"Unique Fragment","uniqueOnly":true},"icon":"","w":1,"h":2} +{"name":"바알 도끼","refName":"Vaal Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/4b3fbfcd65/TwoHandAxe5.png","w":2,"h":4} +{"name":"바알 칼날","refName":"Vaal Blade","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDYiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/c12083d6b6/OneHandSword6.png","w":2,"h":3} +{"name":"바알 버클러","refName":"Vaal Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[330,379]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/60c6c83831/ShieldDex4.png","w":2,"h":2} +{"name":"바알 클로","refName":"Vaal Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ae1fb6dddd/Claw6.png","w":2,"h":2} +{"name":"바알 건틀릿","refName":"Vaal Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[232,266]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyMyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f5896830bf/GlovesStr3.png","w":2,"h":2} +{"name":"바알 대검","refName":"Vaal Greatsword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/828ca9e450/TwoHandSword5.png","w":2,"h":4} +{"name":"바알 각반","refName":"Vaal Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[220,253]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/56efa25c50/BootsStr3.png","w":2,"h":2} +{"name":"바알 손도끼","refName":"Vaal Hatchet","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/01f0e16494/OneHandAxe6.png","w":2,"h":3} +{"name":"바알 가면","refName":"Vaal Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[207,239],"es":[37,43]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDEwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/62018602df/HelmetDexInt10.png","w":2,"h":2} +{"name":"바알 오브","refName":"Vaal Orb","namespace":"ITEM","tradeTag":"vaal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lWYWFsIiwic2NhbGUiOjF9XQ/593fe2e22e/CurrencyVaal.png"} +{"name":"바알 피라미드 지도","refName":"Vaal Pyramid Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/RM2CNDk.jpg"}} +{"name":"바알 레이피어","refName":"Vaal Rapier","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjYiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/f9bc0a5aa1/Rapier6.png","h":4} +{"name":"바알 예복","refName":"Vaal Regalia","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[171,197]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e6eb42b23a/BodyStrDexInt1C.png","w":2,"h":3} +{"name":"바알 성유물 보관실 열쇠","refName":"Vaal Reliquary Key","namespace":"ITEM","tradeTag":"vaal-reliquary-key","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYXVsdE1hcDQiLCJzY2FsZSI6MX1d/7d798c8941/VaultMap4.png"} +{"name":"바알 셉터","refName":"Vaal Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/35e149f5cf/scepter6.png","w":2,"h":3} +{"name":"바알 정찰 보고서","refName":"Vaal Scouting Report","namespace":"ITEM","tradeTag":"vaal-scouting-report","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png"} +{"name":"바알 영혼 방패","refName":"Vaal Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[56,64]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/2fcc8b522c/ShieldInt4.png","w":2,"h":2} +{"name":"바알 사원 지도","refName":"Vaal Temple Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhczJNYXBzL05ldy9WYWFsVGVtcGxlQmFzZSIsInciOjEsImgiOjEsInNjYWxlIjoxLCJtbiI6MTQsIm10IjowfV0/129c5f8ca8/VaalTempleBase.png","map":{"screenshot":"https://i.imgur.com/zgJl9NF.jpg"}} +{"name":"발도의 퍼즐 상자","refName":"Valdo's Puzzle Box","namespace":"ITEM","tradeTag":"valdos-puzzle-box","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmFsZG9zUHV6emxlQm94Iiwic2NhbGUiOjF9XQ/bed9b1b28b/ValdosPuzzleBox.png"} +{"name":"선봉대 허리띠","refName":"Vanguard Belt","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdDciLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/98bc736db6/Belt7.png","w":2} +{"name":"바리사이트 검","refName":"Variscite Blade","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDIiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/606dae9ce9/OneHandSword2.png","h":3} +{"name":"광택 나는 외투","refName":"Varnished Coat","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[387,434],"es":[79,89]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/360c5ce7d4/BodyDexInt2B.png","w":2,"h":3} +{"name":"금고실 지도","refName":"Vault Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/zdIUUwN.jpg"}} +{"name":"장막의 오브","refName":"Veiled Orb","namespace":"ITEM","tradeTag":"veiled-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmVpbGVkQ2hhb3NPcmIiLCJzY2FsZSI6MX1d/fd913b89d0/VeiledChaosOrb.png"} +{"name":"장막 갑충석","refName":"Veiled Scarab","namespace":"ITEM","tradeTag":"veiled-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9TdGFja2VkU2NhcmFiIiwic2NhbGUiOjF9XQ/4674c86ff2/StackedScarab.png"} +{"name":"벨루어 장화","refName":"Velour Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[359,413]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/76eb290c9b/BootsDex4.png","w":2,"h":2} +{"name":"벨루어 장갑","refName":"Velour Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[359,413]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/05a8c03e95/GlovesDex4.png","w":2,"h":2} +{"name":"벨벳 장갑","refName":"Velvet Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[10,13]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/cb34a7c551/GlovesInt2.png","w":2,"h":2} +{"name":"벨벳 슬리퍼","refName":"Velvet Slippers","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[8,11]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/efece2ca68/BootsInt2.png","w":2,"h":2} +{"name":"복수의 계약","refName":"Vengeful Contract","namespace":"ITEM","craftable":{"uniqueOnly":true,"category":"Heist Contract"},"icon":""} +{"name":"신록빛 성유","refName":"Verdant Oil","namespace":"ITEM","tradeTag":"verdant-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9WZXJkYW50T2lsIiwic2NhbGUiOjF9XQ/efeac217c1/VerdantOil.png"} +{"name":"베리타니아의 문양","refName":"Veritania's Crest","namespace":"ITEM","tradeTag":"veritanias-crest","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9SZWRlZW1lckZyYWdtZW50Iiwic2NhbGUiOjF9XQ/86d22a34cc/RedeemerFragment.png"} +{"name":"주색 반지","refName":"Vermillion Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVmVybWlsbGlvblJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b0570b8efc/VermillionRing.png"} +{"name":"다용도 열쇠고리","refName":"Versatile Keyring","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVmVyc2F0aWxlS2V5cmluZyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/eda0c08359/VersatileKeyring.png","w":2,"h":2} +{"name":"각성의 시약","refName":"Vial of Awakening","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbFNsdW1iZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/153f99e185/VialSlumber.png"} +{"name":"결과의 시약","refName":"Vial of Consequence","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbENvd2FyZHNDaGFpbnMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/49367d5e04/VialCowardsChains.png"} +{"name":"지배의 시약","refName":"Vial of Dominance","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbEFyY2hpdGVjdHNIYW5kIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/dbe46fb20c/VialArchitectsHand.png"} +{"name":"운명의 시약","refName":"Vial of Fate","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbFN0b3J5VmFhbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5cc747026e/VialStoryVaal.png"} +{"name":"희생의 시약","refName":"Vial of Sacrifice","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbFNhY3JpZmljaWFsSGVhcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/7f68150b22/VialSacrificialHeart.png"} +{"name":"소환의 시약","refName":"Vial of Summoning","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbFNwaXJpdERyaW5rZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b4c71ef906/VialSpiritDrinker.png"} +{"name":"유령의 시약","refName":"Vial of the Ghost","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbFNvdWxDYXRjaGVyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/41cbc9ed1d/VialSoulCatcher.png"} +{"name":"의식의 시약","refName":"Vial of the Ritual","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbERhbmNlT2ZmZXJlZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a21fb783fd/VialDanceOffered.png"} +{"name":"초월의 시약","refName":"Vial of Transcendence","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbFRlbXBlcmVkRmxlc2giLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ff6f1f931e/VialTemperedFlesh.png"} +{"name":"치안 계약","refName":"Vigilante Contract","namespace":"ITEM","craftable":{"uniqueOnly":true,"category":"Heist Contract"},"icon":""} +{"name":"끔찍한 화살통","refName":"Vile Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9WaWxlQXJyb3dRdWl2ZXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MSwic2hhcGVyIjp0cnVlfV0/ffa143a8d8/VileArrowQuiver.png","w":2,"h":3} +{"name":"끔찍한 지팡이","refName":"Vile Staff","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY3IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/c1ded974d5/Staff7.png","w":2,"h":4} +{"name":"빌라 지도","refName":"Villa Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/EB0wTDF.jpg"}} +{"name":"덩굴 관","refName":"Vine Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[7,10]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/78dd152257/HelmetInt1.png","w":2,"h":2} +{"name":"보랏빛 성유","refName":"Violet Oil","namespace":"ITEM","tradeTag":"violet-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9WaW9sZXRPaWwiLCJzY2FsZSI6MX1d/76c3dc06f8/VioletOil.png"} +{"name":"진청록색 주얼","refName":"Viridian Jewel","namespace":"ITEM","craftable":{"category":"Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL2Jhc2ljZGV4IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9ed22a2b94/basicdex.png"} +{"name":"본능적인 성유물 보관실 열쇠","refName":"Visceral Reliquary Key","namespace":"ITEM","tradeTag":"visceral-reliquary-key","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FYXRlck9mV29ybGRzRm9pbCIsInNjYWxlIjoxfV0/9b4e8c2e7c/EaterOfWorldsFoil.png"} +{"name":"차양 단 샐릿","refName":"Visored Sallet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[64,80],"ev":[64,80]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/12db09a4ce/HelmetStrDex3.png","w":2,"h":2} +{"name":"혈기 생기 결정","refName":"Vivid Crystallised Lifeforce","namespace":"ITEM","tradeTag":"vivid-lifeforce","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9WaXZpZExpZmVmb3JjZSIsInNjYWxlIjoxfV0/a355b8a5a2/VividLifeforce.png"} +{"name":"공허의 도끼","refName":"Void Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNyIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/931ad5cc29/TwoHandAxe7.png","w":2,"h":4} +{"name":"공허의 송곳니","refName":"Void Fangs","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9IZWlzdENsYXciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/7ebe8140fa/HeistClaw.png","w":2,"h":2} +{"name":"공허의 셉터","refName":"Void Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyOCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/6644b94336/scepter8.png","w":2,"h":3} +{"name":"공허의 시초 성유물 보관실 열쇠","refName":"Voidborn Reliquary Key","namespace":"ITEM","tradeTag":"voidborn-reliquary-key","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9Db3NtaWNDb3JlU3VwcG9ydGVyVmF1bHRLZXkiLCJzY2FsZSI6MX1d/1f2d34a36d/CosmicCoreSupporterVaultKey.png"} +{"name":"화산 지도","refName":"Volcano Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/kNQfYSd.jpg"}} +{"name":"전도성 섬광가루","refName":"Voltaxic Flashpowder","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVm9sdGF4aWNGbGFzaHBvd2RlciIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/2df5470ba8/VoltaxicFlashpowder.png","w":2,"h":2} +{"name":"울부짖는 분노의 에센스","refName":"Wailing Essence of Anger","namespace":"ITEM","tradeTag":"wailing-essence-of-anger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9BbmdlcjQiLCJzY2FsZSI6MX1d/193cf26944/Anger4.png"} +{"name":"울부짖는 비통의 에센스","refName":"Wailing Essence of Anguish","namespace":"ITEM","tradeTag":"wailing-essence-of-anguish","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Bbmd1aXNoNCIsInNjYWxlIjoxfV0/b0116a21e3/Anguish4.png"} +{"name":"울부짖는 경멸의 에센스","refName":"Wailing Essence of Contempt","namespace":"ITEM","tradeTag":"wailing-essence-of-contempt","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Db250ZW1wdDQiLCJzY2FsZSI6MX1d/8ab6b81ea8/Contempt4.png"} +{"name":"울부짖는 의심의 에센스","refName":"Wailing Essence of Doubt","namespace":"ITEM","tradeTag":"wailing-essence-of-doubt","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Eb3VidDQiLCJzY2FsZSI6MX1d/b9bda2f648/Doubt4.png"} +{"name":"울부짖는 두려움의 에센스","refName":"Wailing Essence of Fear","namespace":"ITEM","tradeTag":"wailing-essence-of-fear","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9GZWFyNCIsInNjYWxlIjoxfV0/f5a9ea67a9/Fear4.png"} +{"name":"울부짖는 탐욕의 에센스","refName":"Wailing Essence of Greed","namespace":"ITEM","tradeTag":"wailing-essence-of-greed","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVlZDQiLCJzY2FsZSI6MX1d/a390d6d853/Greed4.png"} +{"name":"울부짖는 증오의 에센스","refName":"Wailing Essence of Hatred","namespace":"ITEM","tradeTag":"wailing-essence-of-hatred","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9IYXRyZWQ0Iiwic2NhbGUiOjF9XQ/7bc001e2dd/Hatred4.png"} +{"name":"울부짖는 혐오의 에센스","refName":"Wailing Essence of Loathing","namespace":"ITEM","tradeTag":"wailing-essence-of-loathing","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Mb2F0aGluZzQiLCJzY2FsZSI6MX1d/77278edd37/Loathing4.png"} +{"name":"울부짖는 격노의 에센스","refName":"Wailing Essence of Rage","namespace":"ITEM","tradeTag":"wailing-essence-of-rage","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9SYWdlNCIsInNjYWxlIjoxfV0/c5fa73b85f/Rage4.png"} +{"name":"울부짖는 슬픔의 에센스","refName":"Wailing Essence of Sorrow","namespace":"ITEM","tradeTag":"wailing-essence-of-sorrow","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Tb3Jyb3c0Iiwic2NhbGUiOjF9XQ/3264cd0f60/Sorrow4.png"} +{"name":"울부짖는 악의의 에센스","refName":"Wailing Essence of Spite","namespace":"ITEM","tradeTag":"wailing-essence-of-spite","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TcGl0ZTQiLCJzY2FsZSI6MX1d/b0d6219d6b/Spite4.png"} +{"name":"울부짖는 고통의 에센스","refName":"Wailing Essence of Suffering","namespace":"ITEM","tradeTag":"wailing-essence-of-suffering","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TdWZmZXJpbmc0Iiwic2NhbGUiOjF9XQ/98885460cb/Suffering4.png"} +{"name":"울부짖는 고뇌의 에센스","refName":"Wailing Essence of Torment","namespace":"ITEM","tradeTag":"wailing-essence-of-torment","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Ub3JtZW50NCIsInNjYWxlIjoxfV0/7f54171175/Torment4.png"} +{"name":"울부짖는 비애의 에센스","refName":"Wailing Essence of Woe","namespace":"ITEM","tradeTag":"wailing-essence-of-woe","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Xb2U0Iiwic2NhbGUiOjF9XQ/7d06629499/Woe4.png"} +{"name":"울부짖는 진노의 에센스","refName":"Wailing Essence of Wrath","namespace":"ITEM","tradeTag":"wailing-essence-of-wrath","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9XcmF0aDQiLCJzY2FsZSI6MX1d/24ec8dd88b/Wrath4.png"} +{"name":"울부짖는 열의의 에센스","refName":"Wailing Essence of Zeal","namespace":"ITEM","tradeTag":"wailing-essence-of-zeal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9aZWFsNCIsInNjYWxlIjoxfV0/a4af1958b7/Zeal4.png"} +{"name":"호두나무 영혼 방패","refName":"Walnut Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[32,38]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/99b47eb1fa/ShieldInt2.png","w":2,"h":2} +{"name":"전쟁용 도끼","refName":"War Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/9cdefe9de4/OneHandAxe5.png","w":2,"h":3} +{"name":"전쟁용 버클러","refName":"War Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[169,194]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5a38d58259/ShieldDex5.png","w":2,"h":2} +{"name":"전쟁 망치","refName":"War Hammer","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U1IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/7a42346f2b/OneHandMace5.png","w":2,"h":3} +{"name":"전쟁용 판금 갑옷","refName":"War Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[216,248]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/c62bd1159e/BodyStr2B.png","w":2,"h":3} +{"name":"전쟁 룬","refName":"War Rune","namespace":"ITEM","tradeTag":"war-rune","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2V0dGxlcnMvVmlsbGFnZVJ1bmU0Iiwic2NhbGUiOjF9XQ/81bdd89a32/VillageRune4.png"} +{"name":"전쟁 검","refName":"War Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/38536bcafb/OneHandSword5.png","w":2,"h":3} +{"name":"마법사 장화","refName":"Warlock Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[72,83]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5589419509/BootsInt4.png","w":2,"h":2} +{"name":"마법사 장갑","refName":"Warlock Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[72,83]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/484e9bd879/GlovesInt4.png","w":2,"h":2} +{"name":"전쟁군주","refName":"Warlord","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL09ha0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/9a9c4d9ada/OakCorpse.png","w":3,"h":2} +{"name":"전쟁군주의 엑잘티드 오브","refName":"Warlord's Exalted Orb","namespace":"ITEM","tradeTag":"warlords-exalted-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5mbHVlbmNlIEV4YWx0cy9Db25xdWVyb3JPcmIiLCJzY2FsZSI6MX1d/57f0d85951/ConquerorOrb.png"} +{"name":"황폐한 웅덩이 지도","refName":"Waste Pool Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/fEvrcih.jpg"}} +{"name":"황무지 지도","refName":"Wasteland Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/ywddRfu.jpg"}} +{"name":"수로 지도","refName":"Waterways Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/qAEf4WS.jpg"}} +{"name":"밀랍재질 의복","refName":"Waxed Garb","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[178,205],"es":[38,44]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/6744d2d486/BodyDexInt2C.png","w":2,"h":3} +{"name":"흐느끼는 분노의 에센스","refName":"Weeping Essence of Anger","namespace":"ITEM","tradeTag":"weeping-essence-of-anger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9BbmdlcjMiLCJzY2FsZSI6MX1d/d873f23914/Anger3.png"} +{"name":"흐느끼는 경멸의 에센스","refName":"Weeping Essence of Contempt","namespace":"ITEM","tradeTag":"weeping-essence-of-contempt","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Db250ZW1wdDMiLCJzY2FsZSI6MX1d/843175cf8e/Contempt3.png"} +{"name":"흐느끼는 의심의 에센스","refName":"Weeping Essence of Doubt","namespace":"ITEM","tradeTag":"weeping-essence-of-doubt","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Eb3VidDMiLCJzY2FsZSI6MX1d/f4e471aadd/Doubt3.png"} +{"name":"흐느끼는 두려움의 에센스","refName":"Weeping Essence of Fear","namespace":"ITEM","tradeTag":"weeping-essence-of-fear","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9GZWFyMyIsInNjYWxlIjoxfV0/9d1b4909f4/Fear3.png"} +{"name":"흐느끼는 탐욕의 에센스","refName":"Weeping Essence of Greed","namespace":"ITEM","tradeTag":"weeping-essence-of-greed","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVlZDMiLCJzY2FsZSI6MX1d/4b4549da17/Greed3.png"} +{"name":"흐느끼는 증오의 에센스","refName":"Weeping Essence of Hatred","namespace":"ITEM","tradeTag":"weeping-essence-of-hatred","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9IYXRyZWQzIiwic2NhbGUiOjF9XQ/27bb7480f9/Hatred3.png"} +{"name":"흐느끼는 격노의 에센스","refName":"Weeping Essence of Rage","namespace":"ITEM","tradeTag":"weeping-essence-of-rage","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9SYWdlMyIsInNjYWxlIjoxfV0/7e03c21483/Rage3.png"} +{"name":"흐느끼는 슬픔의 에센스","refName":"Weeping Essence of Sorrow","namespace":"ITEM","tradeTag":"weeping-essence-of-sorrow","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Tb3Jyb3czIiwic2NhbGUiOjF9XQ/93f2e30be4/Sorrow3.png"} +{"name":"흐느끼는 고통의 에센스","refName":"Weeping Essence of Suffering","namespace":"ITEM","tradeTag":"weeping-essence-of-suffering","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TdWZmZXJpbmczIiwic2NhbGUiOjF9XQ/2f8350590a/Suffering3.png"} +{"name":"흐느끼는 고뇌의 에센스","refName":"Weeping Essence of Torment","namespace":"ITEM","tradeTag":"weeping-essence-of-torment","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Ub3JtZW50MyIsInNjYWxlIjoxfV0/437e50ebd4/Torment3.png"} +{"name":"흐느끼는 비애의 에센스","refName":"Weeping Essence of Woe","namespace":"ITEM","tradeTag":"weeping-essence-of-woe","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Xb2UzIiwic2NhbGUiOjF9XQ/982d6149c8/Woe3.png"} +{"name":"흐느끼는 진노의 에센스","refName":"Weeping Essence of Wrath","namespace":"ITEM","tradeTag":"weeping-essence-of-wrath","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9XcmF0aDMiLCJzY2FsZSI6MX1d/6d2ea95b65/Wrath3.png"} +{"name":"변신자발톱 부적","refName":"Wereclaw Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9EaXJlQ2xhd1RhbGlzbWFuIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5c57893c7c/DireClawTalisman.png"} +{"name":"고래뼈 레이피어","refName":"Whalebone Rapier","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjIiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/481efcada5/Rapier2.png","h":4} +{"name":"부두 지도","refName":"Wharf Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/JirgJcM.jpg"}} +{"name":"속삭임 망토","refName":"Whisper-woven Cloak","namespace":"ITEM","craftable":{"category":"Heist Cloak"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvV2hpc3BlcldvdmVuQ2xvYWsiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5d44c09a37/WhisperWovenCloak.png","w":2,"h":2} +{"name":"속삭이는 환영의 오브","refName":"Whispering Delirium Orb","namespace":"ITEM","tradeTag":"whispering-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJFc3NlbmNlIiwic2NhbGUiOjF9XQ/e9f784c467/DeliriumOrbEssence.png"} +{"name":"속삭이는 경멸의 에센스","refName":"Whispering Essence of Contempt","namespace":"ITEM","tradeTag":"whispering-essence-of-contempt","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Db250ZW1wdDEiLCJzY2FsZSI6MX1d/20e306f652/Contempt1.png"} +{"name":"속삭이는 탐욕의 에센스","refName":"Whispering Essence of Greed","namespace":"ITEM","tradeTag":"whispering-essence-of-greed","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVlZDEiLCJzY2FsZSI6MX1d/e2fe787fba/Greed1.png"} +{"name":"속삭이는 증오의 에센스","refName":"Whispering Essence of Hatred","namespace":"ITEM","tradeTag":"whispering-essence-of-hatred","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9IYXRyZWQxIiwic2NhbGUiOjF9XQ/b22aed8024/Hatred1.png"} +{"name":"속삭이는 비애의 에센스","refName":"Whispering Essence of Woe","namespace":"ITEM","tradeTag":"whispering-essence-of-woe","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Xb2UxIiwic2NhbGUiOjF9XQ/bccf321620/Woe1.png"} +{"name":"속삭이는 인큐베이터","refName":"Whispering Incubator","namespace":"ITEM","tradeTag":"whispering-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRXNzZW5jZSIsInNjYWxlIjoxfV0/839bf6cef9/IncubationEssence.png"} +{"name":"과부거미줄 실크 로브","refName":"Widowsilk Robe","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[157,181]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8b200fbbb5/BodyInt2C.png","w":2,"h":3} +{"name":"야생 생기 결정","refName":"Wild Crystallised Lifeforce","namespace":"ITEM","tradeTag":"wild-lifeforce","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9XaWxkTGlmZWZvcmNlIiwic2NhbGUiOjF9XQ/e3d0b372b0/WildLifeforce.png"} +{"name":"거친 가죽 갑옷","refName":"Wild Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[255,306]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4M0IiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/db900972c7/BodyDex3B.png","w":2,"h":3} +{"name":"바람가름 장화","refName":"Windbreak Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[164,189]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SaXR1YWxEZXhCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7172feff67/RitualDexBoots.png","w":2,"h":2} +{"name":"날개 달린 밑창","refName":"Winged Sole","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvV2luZ2VkU29sZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/6b844e2bd0/WingedSole.png","w":2,"h":2} +{"name":"겨울 왕관","refName":"Winter Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[122,140],"es":[25,29]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludFIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/9da7af13c1/HelmetDexIntR.png","w":2,"h":2} +{"name":"늑대 가죽모","refName":"Wolf Pelt","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[150,172]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/549bc86dd9/HelmetDex4.png","w":2,"h":2} +{"name":"목재 지팡이","refName":"Woodful Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmYyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/69ff746d86/Staff2.png","w":2,"h":4} +{"name":"벌목스플리터","refName":"Woodsplitter","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlMyIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/7d35a55caa/TwoHandAxe3.png","w":2,"h":4} +{"name":"양모 장갑","refName":"Wool Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[5,7]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50MSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f279ba86df/GlovesInt1.png","w":2,"h":2} +{"name":"양모 신발","refName":"Wool Shoes","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[5,7]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/68affe41bc/BootsInt1.png","w":2,"h":2} +{"name":"악령 도끼","refName":"Wraith Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlOCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/1c9ff58159/OneHandAxe8.png","w":2,"h":3} +{"name":"악령 검","refName":"Wraith Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/cba6615b1a/TwoHandSword7.png","w":2,"h":4} +{"name":"스트랩형 장화","refName":"Wrapped Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[12,17],"es":[4,5]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5106be74b2/BootsDexInt1.png","w":2,"h":2} +{"name":"스트랩형 미트","refName":"Wrapped Mitts","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[11,15],"es":[3,5]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50MSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/983aa9c9fc/GlovesDexInt1.png","w":2,"h":2} +{"name":"팔목 절단기","refName":"Wrist Chopper","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/451ba2cadb/OneHandAxe4.png","w":2,"h":3} +{"name":"꿈틀거리는 초대","refName":"Writhing Invitation","namespace":"ITEM","craftable":{"category":"Invitation"},"tradeTag":"writhing-invitation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVlc3RJdGVtcy9UYW5nbGVkT3JiUXVlc3QwIiwic2NhbGUiOjF9XQ/7a2f21c33e/TangledOrbQuest0.png"} +{"name":"꿈틀거리는 부적","refName":"Writhing Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9OZXdUYWxpc21hbjMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e015e2d7cc/NewTalisman3.png"} +{"name":"아룡 철퇴","refName":"Wyrm Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U5IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f2a493ef7a/OneHandMace9.png","w":2,"h":3} +{"name":"아룡뼈 레이피어","refName":"Wyrmbone Rapier","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjIiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/481efcada5/Rapier2.png","h":4} +{"name":"아룡 비늘 장화","refName":"Wyrmscale Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[92,103],"ev":[92,103]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3418ad050e/BootsStrDex3.png","w":2,"h":2} +{"name":"아룡 비늘 더블릿","refName":"Wyrmscale Doublet","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[210,236],"ev":[210,236]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/d9b2da2bce/BodyStrDex1B.png","w":2,"h":3} +{"name":"아룡 비늘 건틀릿","refName":"Wyrmscale Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[88,104],"ev":[88,104]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyRGV4MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/01471b423e/GlovesStrDex3.png","w":2,"h":2} +{"name":"비룡비늘 장화","refName":"Wyvernscale Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[205,236],"ev":[205,236]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3418ad050e/BootsStrDex3.png","w":2,"h":2} +{"name":"비룡비늘 건틀릿","refName":"Wyvernscale Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[205,205],"ev":[205,205]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyRGV4MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/01471b423e/GlovesStrDex3.png","w":2,"h":2} +{"name":"조프의 균열석","refName":"Xoph's Breachstone","namespace":"ITEM","tradeTag":"xophs-breachstone","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaEZyYWdtZW50c0ZpcmUiLCJzY2FsZSI6MX1d/2fc9d593d6/BreachFragmentsFire.png"} +{"name":"조프의 결함 없는 균열석","refName":"Xoph's Flawless Breachstone","namespace":"ITEM","tradeTag":"xophs-flawless-breachstone","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL1hvcGhzRmxhd2xlc3NCcmVhY2hzdG9uZSIsInNjYWxlIjoxfV0/a9d5100ceb/XophsFlawlessBreachstone.png"} +{"name":"주목 영혼 방패","refName":"Yew Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[11,14]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/99b47eb1fa/ShieldInt2.png","w":2,"h":2} +{"name":"맹신자 장화","refName":"Zealot Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[73,87],"es":[15,18]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/742e5a15d7/BootsStrInt2.png","w":2,"h":2} +{"name":"맹신자 장갑","refName":"Zealot Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[78,92],"es":[16,19]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RySW50MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f09ae395f5/GlovesStrInt2.png","w":2,"h":2} +{"name":"맹신자 투구","refName":"Zealot Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[119,137],"es":[25,29]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/cff363f9cb/HelmetStrInt6.png","w":2,"h":2} +{"name":"지구라트 지도","refName":"Ziggurat Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{}} +{"name":"성좌의 가죽 갑옷","refName":"Zodiac Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[854,982]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4M0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e30de2c7a6/BodyDex3C.png","w":2,"h":3} +{"name":"아버라스의 발굽","refName":"Abberath's Hooves","namespace":"UNIQUE","unique":{"base":"Goathide Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9BYmJlcmF0aHNIb292ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/445b84d83c/AbberathsHooves.png"} +{"name":"아버라스의 뿔","refName":"Abberath's Horn","namespace":"UNIQUE","unique":{"base":"Goat's Horn"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XeWNodmVyZ2UiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/ea4dd8a801/Wychverge.png"} +{"name":"혐오스러운 취조","refName":"Abhorrent Interrogation","namespace":"UNIQUE","unique":{"base":"Ambush Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRGVjYXlpbmdHcmlwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/fa04f8c987/DecayingGrip.png"} +{"name":"깊은 심연","refName":"Abyssus","namespace":"UNIQUE","unique":{"base":"Ezomyte Burgonet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0FieXNzdXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/a12f5424c8/Abyssus.png"} +{"name":"액턴의 악몽","refName":"Acton's Nightmare","namespace":"UNIQUE","unique":{"base":"Overgrown Shrine Map"},"map":{"screenshot":"https://i.imgur.com/WNGS7TW.jpg"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9tdXNpY2JveCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/765ebfd00f/musicbox.png"} +{"name":"액툼","refName":"Actum","namespace":"UNIQUE","unique":{"base":"Butcher Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9IYW5sb25zUmF6b3IiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/a81f0f6259/HanlonsRazor.png"} +{"name":"제독의 오만","refName":"Admiral's Arrogance","namespace":"UNIQUE","unique":{"base":"Antique Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvSG9ybmVkT25lR2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/0d26e3c415/HornedOneGloves.png"} +{"name":"전진하는 요새","refName":"Advancing Fortress","namespace":"UNIQUE","unique":{"base":"Gut Ripper"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3c2hpZWxkMyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/a04190ca2b/Clawshield3.png"} +{"name":"비호의 오로라","refName":"Aegis Aurora","namespace":"UNIQUE","unique":{"base":"Champion Kite Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludFVuaXF1ZTd1bmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/ae1ec0f5d1/ShieldStrIntUnique7unique.png"} +{"name":"동쪽의 아그네로드","refName":"Agnerod East","namespace":"UNIQUE","unique":{"base":"Imperial Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY2dW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/8b60f5a033/Staff6unique.png"} +{"name":"북쪽의 아그네로드","refName":"Agnerod North","namespace":"UNIQUE","unique":{"base":"Imperial Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY2dW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/8b60f5a033/Staff6unique.png"} +{"name":"남쪽의 아그네로드","refName":"Agnerod South","namespace":"UNIQUE","unique":{"base":"Imperial Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY2dW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/8b60f5a033/Staff6unique.png"} +{"name":"서쪽의 아그네로드","refName":"Agnerod West","namespace":"UNIQUE","unique":{"base":"Imperial Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY2dW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/8b60f5a033/Staff6unique.png"} +{"name":"아켈리의 초원","refName":"Ahkeli's Meadow","namespace":"UNIQUE","unique":{"base":"Ruby Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmVkQ29tcG9uZW50MiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0c950dc560/RedComponent2.png"} +{"name":"아켈리의 산","refName":"Ahkeli's Mountain","namespace":"UNIQUE","unique":{"base":"Ruby Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmVkQ29tcG9uZW50IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4c8c42f98b/RedComponent.png"} +{"name":"아켈리의 계곡","refName":"Ahkeli's Valley","namespace":"UNIQUE","unique":{"base":"Ruby Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmVkQ29tcG9uZW50MyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fe1c0d1513/RedComponent3.png"} +{"name":"안의 경멸","refName":"Ahn's Contempt","namespace":"UNIQUE","unique":{"base":"Praetor Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0FobnNDb250ZW1wdCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/a946d28e48/AhnsContempt.png"} +{"name":"안의 유산","refName":"Ahn's Heritage","namespace":"UNIQUE","unique":{"base":"Colossal Tower Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0FobnNIZXJpdGFnZSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/5a4ca9d54a/AhnsHeritage.png"} +{"name":"안의 완력","refName":"Ahn's Might","namespace":"UNIQUE","unique":{"base":"Midnight Blade"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0FobnNNaWdodCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/ee9d3b45a4/AhnsMight.png"} +{"name":"아후아나의 이빨","refName":"Ahuana's Bite","namespace":"UNIQUE","unique":{"base":"Sharktooth Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9BaHVhbmFRdWl2ZXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/4cc0ef813d/AhuanaQuiver.png"} +{"name":"아코야의 응시","refName":"Akoya's Gaze","namespace":"UNIQUE","unique":{"base":"Regicide Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Frb3lhTWFzayIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/bee9827a02/AkoyaMask.png"} +{"name":"알 디","refName":"Al Dhih","namespace":"UNIQUE","unique":{"base":"Timeworn Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9BbGRoaWgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5af625fdd1/Aldhih.png"} +{"name":"알베른의 적대","refName":"Alberon's Warpath","namespace":"UNIQUE","unique":{"base":"Soldier Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9BbGJlcm9uc3dhcnBhdGgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/be7b089ef3/Alberonswarpath.png"} +{"name":"사후 냉각","refName":"Algor Mortis","namespace":"UNIQUE","unique":{"base":"Carnal Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvVGFuZ21henVhcm1vdXJnbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/fff14c8039/Tangmazuarmourgloves.png"} +{"name":"생존 경쟁","refName":"Allelopathy","namespace":"UNIQUE","unique":{"base":"Satin Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRW1iYWxtZXJzR2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/62148488f8/EmbalmersGloves.png"} +{"name":"매혹","refName":"Allure","namespace":"UNIQUE","unique":{"base":"Vaal Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9BbGx1cmUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/ff5311676c/Allure.png"} +{"name":"우두머리의 울부짖음","refName":"Alpha's Howl","namespace":"UNIQUE","unique":{"base":"Sinner Tricorne"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1dvbGZoZWFkIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/2acc10e593/Wolfhead.png"} +{"name":"뒤바뀐 희미한 기억","refName":"Altered Distant Memory","namespace":"UNIQUE","unique":{"base":"Synthesised Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TeW50aGVzaXNDb2xkR3VhcmRpYW5NYXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5800fc91db/SynthesisColdGuardianMap.png"} +{"name":"아마나무의 응시","refName":"Amanamu's Gaze","namespace":"UNIQUE","unique":{"base":"Ghastly Eye Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0doYXN0bHlFeWVVbmlxdWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/301d98e6cb/GhastlyEyeUnique.png"} +{"name":"야심","refName":"Ambition","namespace":"UNIQUE","unique":{"base":"Vaal Aspect"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UcmlhbG1hc3Rlck1pZGRsZUZyYWdtZW50IiwidyI6MSwiaCI6Miwic2NhbGUiOjF9XQ/ce938362fd/TrialmasterMiddleFragment.png"} +{"name":"앰부의 돌진","refName":"Ambu's Charge","namespace":"UNIQUE","unique":{"base":"Crusader Chainmail"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9TdHJJbnQzQVVuaXF1ZTIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9928614b24/StrInt3AUnique2.png"} +{"name":"극한의 혐오","refName":"Anathema","namespace":"UNIQUE","unique":{"base":"Moonstone Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVW5pcXVlQ3Vyc2VSaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/db99b5c4d2/UniqueCurseRing.png"} +{"name":"선대의 환영","refName":"Ancestral Vision","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1ByaXN0aW5lQ29uZGl0aW9uaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5ad58d3a2e/PristineConditioning.png"} +{"name":"고대 해골","refName":"Ancient Skull","namespace":"UNIQUE","unique":{"base":"Bone Helmet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRWZmZWN0cy9IYXRzL0NodWh1dGx1c1NrdWxsIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/65537c5ac3/ChuhutlusSkull.png"} +{"name":"앤드바리우스","refName":"Andvarius","namespace":"UNIQUE","unique":{"base":"Gold Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzRVbmlxdWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/eea4645cf2/Ring4Unique.png"} +{"name":"전멸의 접근","refName":"Annihilation's Approach","namespace":"UNIQUE","unique":{"base":"Dragonscale Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9VYmVyU2VhcmluZ0V4YXJjaEJvb3QiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/705e9f657f/UberSearingExarchBoot.png"} +{"name":"아펩의 격노","refName":"Apep's Rage","namespace":"UNIQUE","unique":{"base":"Omen Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9BcGVwc1JhZ2UiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/074c66dadc/ApepsRage.png"} +{"name":"아펩의 수면","refName":"Apep's Slumber","namespace":"UNIQUE","unique":{"base":"Vaal Spirit Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0FwZXBzU2x1bWJlciIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/334298da3d/ApepsSlumber.png"} +{"name":"아펩의 패권","refName":"Apep's Supremacy","namespace":"UNIQUE","unique":{"base":"Vaal Spirit Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0FwZXBzU3VwcmVtYWN5IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/e97426b026/ApepsSupremacy.png"} +{"name":"정점 모드","refName":"Apex Mode","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0ludGVuc2l0eUpld2VsMSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/2b116c20d2/IntensityJewel1.png"} +{"name":"아라칼리의 송곳니","refName":"Arakaali's Fang","namespace":"UNIQUE","unique":{"base":"Fiend Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0ZhbmdVbmlxdWUiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/de6e51652e/FangUnique.png"} +{"name":"아라쿠 티키","refName":"Araku Tiki","namespace":"UNIQUE","unique":{"base":"Coral Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQyVW5pcXVlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6468b95d6b/Amulet2Unique.png"} +{"name":"아보릭스","refName":"Arborix","namespace":"UNIQUE","unique":{"base":"Assassin Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL1ZlcmRhbnRHdWFyZGlhbkJvdyIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/9008310cc7/VerdantGuardianBow.png"} +{"name":"건축가의 손길","refName":"Architect's Hand","namespace":"UNIQUE","unique":{"base":"Ambush Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQXJjaGl0ZWN0c0hhbmQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/8f303b6f98/ArchitectsHand.png"} +{"name":"안의 비통","refName":"Arn's Anguish","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQWx0Q2hhcmdlU3RyIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/c07eed602e/AltChargeStr.png"} +{"name":"육체로부터의 해방","refName":"Ascent From Flesh","namespace":"UNIQUE","unique":{"base":"Chain Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvVHVybmNvYXRzZm9ydHVuZSIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/3adba0ad35/Turncoatsfortune.png"} +{"name":"아세나스의 부드러운 손길","refName":"Asenath's Gentle Touch","namespace":"UNIQUE","unique":{"base":"Silk Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQXNlbmF0aHNHZW50bGVUb3VjaCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ea6e822bbe/AsenathsGentleTouch.png"} +{"name":"아세나스의 징표","refName":"Asenath's Mark","namespace":"UNIQUE","unique":{"base":"Iron Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0h5cnJpc01hcmsiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4e0f1cc6a8/HyrrisMark.png"} +{"name":"재 소환사","refName":"Ashcaller","namespace":"UNIQUE","unique":{"base":"Carved Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9Bc2h3YWtlciIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/a36e60acf6/Ashwaker.png"} +{"name":"별의 재","refName":"Ashes of the Stars","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9NYXN0ZXJPZkdlbXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f6497cbdfe/MasterOfGems.png"} +{"name":"부서진 잿더미","refName":"Ashrend","namespace":"UNIQUE","unique":{"base":"Buckskin Tunic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Bc2hyZW5kIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/9755e9fe99/Ashrend.png"} +{"name":"질식의 진노","refName":"Asphyxia's Wrath","namespace":"UNIQUE","unique":{"base":"Feathered Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9Bc3BoeXhpYXNXcmF0aCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/e33bd46903/AsphyxiasWrath.png"} +{"name":"공격병동","refName":"Assailum","namespace":"UNIQUE","unique":{"base":"Sinner Tricorne"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RhbmdtYXp1YXJtb3VyaGVsbWV0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/6e327593b9/Tangmazuarmourhelmet.png"} +{"name":"우주의 영사기","refName":"Astral Projector","namespace":"UNIQUE","unique":{"base":"Topaz Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQXN0cmFsUHJvamVjdG9yIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/92eca463f2/AstralProjector.png"} +{"name":"별의 보석","refName":"Astramentis","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQzNiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/95da0d04a4/Amulet36.png"} +{"name":"앗지리의 예리함","refName":"Atziri's Acuity","namespace":"UNIQUE","unique":{"base":"Vaal Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQXR6aXJpc0FjdWl0eSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/2c0f04ae47/AtzirisAcuity.png"} +{"name":"앗지리의 경멸","refName":"Atziri's Disfavour","namespace":"UNIQUE","unique":{"base":"Vaal Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9BdHppcmlzRGlzZmF2b3VyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/1ffab716f8/AtzirisDisfavour.png"} +{"name":"앗지리의 결점","refName":"Atziri's Foible","namespace":"UNIQUE","unique":{"base":"Paua Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9RdWlkIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/00c2b3a588/Quid.png"} +{"name":"앗지리의 약속","refName":"Atziri's Promise","namespace":"UNIQUE","unique":{"base":"Amethyst Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvQXR6aXJpc1Byb21pc2UiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/8a5f4f13b4/AtzirisPromise.png"} +{"name":"앗지리의 성찰","refName":"Atziri's Reflection","namespace":"UNIQUE","unique":{"base":"Golden Buckler"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDVVbmlxdWUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/78fb81c375/ShieldDex5Unique.png"} +{"name":"앗지리의 치세","refName":"Atziri's Reign","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JlZENvcnJ1cHQxIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b14eb2eeb7/RedCorrupt1.png"} +{"name":"앗지리의 통치","refName":"Atziri's Rule","namespace":"UNIQUE","unique":{"base":"Judgement Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvUG9ydGVudE9mQUZhbHNlR29kIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/a3949ac141/PortentOfAFalseGod.png"} +{"name":"앗지리의 위풍","refName":"Atziri's Splendour","namespace":"UNIQUE","unique":{"base":"Sacrificial Garb"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9BdHppcmlzU3BsZW5kb3VyIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/24c910e168/AtzirisSplendour.png"} +{"name":"앗지리의 걸음","refName":"Atziri's Step","namespace":"UNIQUE","unique":{"base":"Slink Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9BdHppcmlzU3RlcCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ec85575514/AtzirisStep.png"} +{"name":"강화된 희미한 기억","refName":"Augmented Distant Memory","namespace":"UNIQUE","unique":{"base":"Synthesised Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TeW50aGVzaXNGaXJlR3VhcmRpYW5NYXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/924cb164d0/SynthesisFireGuardianMap.png"} +{"name":"오귀르","refName":"Augyre","namespace":"UNIQUE","unique":{"base":"Void Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9FbGRlclNjZXB0cmUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/325c7b1591/ElderSceptre.png"} +{"name":"아우카나의 의지","refName":"Aukuna's Will","namespace":"UNIQUE","unique":{"base":"Clasped Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQXVrdW5hc1dpbGwiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/b3a94fe874/AukunasWill.png"} +{"name":"아울의 반란","refName":"Aul's Uprising","namespace":"UNIQUE","unique":{"base":"Onyx Amulet","fixedStats":["Grants Level # Envy Skill","Nearby Enemies grant #% increased Flask Charges","Hits against Nearby Enemies have #% increased Critical Strike Chance","Nearby Enemies have #% reduced Stun and Block Recovery"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BaG4gQXJ0aWZhY3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5234506d57/Ahn%20Artifact.png"} +{"name":"아우르시즈","refName":"Aurseize","namespace":"UNIQUE","unique":{"base":"Steelscale Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQXVyc2VpemUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4c0d010425/Aurseize.png"} +{"name":"금빛 욕망","refName":"Aurumvorax","namespace":"UNIQUE","unique":{"base":"Basket Rapier"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL0F1cnVtdm9yYXgiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/64b63c7413/Aurumvorax.png"} +{"name":"오시움","refName":"Auxium","namespace":"UNIQUE","unique":{"base":"Crystal Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQXV4aXVtIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/acf784e82e/Auxium.png"} +{"name":"액시옴의 무기징역","refName":"Axiom Perpetuum","namespace":"UNIQUE","unique":{"base":"Bronze Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9BeGlvbVBlcnBldHV1bSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/da686b937b/AxiomPerpetuum.png"} +{"name":"형제단의 증표","refName":"Badge of the Brotherhood","namespace":"UNIQUE","unique":{"base":"Turquoise Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Bc3Nhc3NpblVuaXF1ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/3616219d7d/AssassinUnique.png"} +{"name":"대화재","refName":"Balefire","namespace":"UNIQUE","unique":{"base":"Opal Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9CYWVsZmlyZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/082c0ee423/Baelfire.png"} +{"name":"약해진 숨결","refName":"Bated Breath","namespace":"UNIQUE","unique":{"base":"Chain Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmF0ZWRCcmVhdGgiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/0a8cc4529f/BatedBreath.png"} +{"name":"광기의 신호","refName":"Beacon of Madness","namespace":"UNIQUE","unique":{"base":"Two-Toned Boots","fixedStats":["Grants Level # Embrace Madness Skill","#% increased Movement Speed"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9UYW5nbWF6dWFybW91cmJvb3RzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/664521517c/Tangmazuarmourboots.png"} +{"name":"곰의 허리띠","refName":"Bear's Girdle","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVhcnNDbHV0Y2giLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/31930452e4/BearsClutch.png"} +{"name":"아름다움","refName":"Beauty","namespace":"UNIQUE","unique":{"base":"Vaal Aspect"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UcmlhbG1hc3RlckxlZnRGcmFnbWVudCIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/ec9e7257ef/TrialmasterLeftFragment.png"} +{"name":"짐승의 소굴","refName":"Belly of the Beast","namespace":"UNIQUE","unique":{"base":"Full Wyrmscale"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9iZWxseW9mdGhlYmVhc3QiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/d38723f8b9/bellyofthebeast.png"} +{"name":"기만자의 허리띠","refName":"Belt of the Deceiver","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdE9mVGhlRGVjaWV2ZXIiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/914fb37e8c/BeltOfTheDeciever.png"} +{"name":"벨팀버 검","refName":"Beltimber Blade","namespace":"UNIQUE","unique":{"base":"Eternal Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL1ZlcmRhbnRHdWFyZGlhblN3b3JkMiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/3f09536952/VerdantGuardianSword2.png"} +{"name":"베렉의 손아귀","refName":"Berek's Grip","namespace":"UNIQUE","unique":{"base":"Two-Stone Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmVyZWtzR3JpcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7abb06d839/BereksGrip.png"} +{"name":"베렉의 길","refName":"Berek's Pass","namespace":"UNIQUE","unique":{"base":"Two-Stone Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmVyZWtzUGFzcyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/efb7743eeb/BereksPass.png"} +{"name":"베렉의 유예","refName":"Berek's Respite","namespace":"UNIQUE","unique":{"base":"Two-Stone Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmVyZWtzUmVzcGl0ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/82b228798a/BereksRespite.png"} +{"name":"비노의 부엌칼","refName":"Bino's Kitchen Knife","namespace":"UNIQUE","unique":{"base":"Slaughter Knife"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0Jpbm9zS2l0Y2hlbktuaWZlIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/499d39d615/BinosKitchenKnife.png"} +{"name":"비스코의 목걸이","refName":"Bisco's Collar","namespace":"UNIQUE","unique":{"base":"Gold Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9CaXNjb3NDb2xsYXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8aa730c40e/BiscosCollar.png"} +{"name":"비스코의 가죽끈","refName":"Bisco's Leash","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmlzY29zTGVhc2giLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/87b17c98e7/BiscosLeash.png"} +{"name":"쓰라린 속박의 끝","refName":"Bitterbind Point","namespace":"UNIQUE","unique":{"base":"Titanium Spirit Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL01hc3RlcnNGb2N1cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/1b2e5df5a6/MastersFocus.png"} +{"name":"악몽","refName":"Bitterdream","namespace":"UNIQUE","unique":{"base":"Shadow Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyOHVuaXF1ZTIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/085f7726de/scepter8unique2.png"} +{"name":"검은 태양 문양","refName":"Black Sun Crest","namespace":"UNIQUE","unique":{"base":"Lacquered Helmet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0JsYWNrc3VuY3Jlc3QiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/d5c3617a52/Blacksuncrest.png"} +{"name":"검은 북극성","refName":"Black Zenith","namespace":"UNIQUE","unique":{"base":"Fingerless Silk Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRWJiQW5kRmxvdyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/3e5e1a62ea/EbbAndFlow.png"} +{"name":"검은화염","refName":"Blackflame","namespace":"UNIQUE","unique":{"base":"Amethyst Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmxhY2tGbGFtZUZpcmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d8cb90fe20/BlackFlameFire.png"} +{"name":"검은 섬광","refName":"Blackgleam","namespace":"UNIQUE","unique":{"base":"Blazing Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJVbmlxdWUxIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/797ce777ed/QuiverUnique1.png"} +{"name":"검은 심장","refName":"Blackheart","namespace":"UNIQUE","unique":{"base":"Iron Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzFVbmlxdWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/40666e2827/Ring1Unique.png"} +{"name":"신성 모독자의 장악","refName":"Blasphemer's Grasp","namespace":"UNIQUE","unique":{"base":"Assassin's Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRWxkZXJHbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MSwiZWxkZXIiOnRydWV9XQ/b07fd0eac2/ElderGloves.png"} +{"name":"황폐한 샘","refName":"Blightwell","namespace":"UNIQUE","unique":{"base":"Clutching Talisman"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWludGVkU3ByaW5ncyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a95bad91d3/TaintedSprings.png"} +{"name":"타락의 피","refName":"Blood of Corruption","namespace":"UNIQUE","unique":{"base":"Amber Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9IZWFydE9mQ29ycnVwdGlvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ded3d6446f/HeartOfCorruption.png"} +{"name":"카루이의 피","refName":"Blood of the Karui","namespace":"UNIQUE","unique":{"base":"Sanctified Life Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvQmxvb2RPZlRoZUthcnVpIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/f70bd57e9f/BloodOfTheKarui.png"} +{"name":"피의 대가","refName":"Blood Price","namespace":"UNIQUE","unique":{"base":"Reaver Helmet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Jsb29kUHJpY2VIZWxtVW5pcXVlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/ae8ee271e3/BloodPriceHelmUnique.png"} +{"name":"피붙이","refName":"Bloodbond","namespace":"UNIQUE","unique":{"base":"Bone Armour"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Db21tdW5hbEZsZXNoIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/ad6a787fcf/CommunalFlesh.png"} +{"name":"피의 지배","refName":"Bloodgrip","namespace":"UNIQUE","unique":{"base":"Marble Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9CbG9vZEFtdWxldCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/546826e52b/BloodAmulet.png"} +{"name":"피의 오늬","refName":"Bloodnotch","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0lnbm9yZVBhaW4iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/191f378925/IgnorePain.png"} +{"name":"피의 오락","refName":"Bloodplay","namespace":"UNIQUE","unique":{"base":"Stiletto"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0Jsb29kUGxheSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/3c8258f393/BloodPlay.png"} +{"name":"피의 탐색자","refName":"Bloodseeker","namespace":"UNIQUE","unique":{"base":"Hellion's Paw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9CbG9vZHNlZWtlciIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0b888c4189/Bloodseeker.png"} +{"name":"피투성이 메달리온","refName":"Bloodsoaked Medallion","namespace":"UNIQUE","unique":{"base":"Amber Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9CbG9vZFNvYWtlZF9NZWRhbGxpb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/2160ca2460/BloodSoaked_Medallion.png"} +{"name":"블런더보어","refName":"Blunderbore","namespace":"UNIQUE","unique":{"base":"Astral Plate"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9CbHVuZGVyYm9yZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/4b34ebf3fe/Blunderbore.png"} +{"name":"울러의 뼈","refName":"Bones of Ullr","namespace":"UNIQUE","unique":{"base":"Silk Slippers"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9ib290dW5pcXVlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/1dfabe3358/bootunique.png"} +{"name":"병에 담긴 믿음","refName":"Bottled Faith","namespace":"UNIQUE","unique":{"base":"Sulphur Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvQm90dGxlZFB1cml0eSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/b2ef237bf3/BottledPurity.png"} +{"name":"속박된 운명","refName":"Bound Fate","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSGluZWtvcmFCZWx0IiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/0ffa60853d/HinekoraBelt.png"} +{"name":"요동치는 두뇌","refName":"Brain Rattler","namespace":"UNIQUE","unique":{"base":"Meatgrinder"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvQnJhaW5TY3JhbWJsZXIiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/0749c07fa6/BrainScrambler.png"} +{"name":"가시나무 갑옷","refName":"Bramblejack","namespace":"UNIQUE","unique":{"base":"Plate Vest"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9CcmFtYmxlamFjayIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/d2e07d1ed8/Bramblejack.png"} +{"name":"의회의 숨결","refName":"Breath of the Council","namespace":"UNIQUE","unique":{"base":"Carnal Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9QbGFndWVicmluZ2VyIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/c22a70dd6e/Plaguebringer.png"} +{"name":"숨결강탈자","refName":"Breathstealer","namespace":"UNIQUE","unique":{"base":"Hydrascale Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3VwcG9ydGVyMWdsb3ZlQSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0cbf141437/Supporter1gloveA.png"} +{"name":"밝은 부리","refName":"Brightbeak","namespace":"UNIQUE","unique":{"base":"War Hammer"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U1VW5pcXVlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/d3f763cad7/OneHandMace5Unique.png"} +{"name":"부패한 염수단 깃발","refName":"Brinerot Flag","namespace":"UNIQUE","unique":{"base":"Tarnished Spirit Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0JyaW5lcm90RmxhZyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/4645154405/BrinerotFlag.png"} +{"name":"부패한 염수단 징표","refName":"Brinerot Mark","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQnJpbmVyb3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c1d39c178d/Brinerot.png"} +{"name":"부패한 염수단 고래잡이 신발","refName":"Brinerot Whalers","namespace":"UNIQUE","unique":{"base":"Trapper Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SZWVmc2NvdXJnZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/6f72714c8f/Reefscourge.png"} +{"name":"활력의 겉옷","refName":"Briskwrap","namespace":"UNIQUE","unique":{"base":"Sun Leather"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Ccmlza3dyYXAiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/4a3c7d71e6/Briskwrap.png"} +{"name":"부서진 믿음","refName":"Broken Faith","namespace":"UNIQUE","unique":{"base":"Archon Kite Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NhbnRvbmlzRmFpdGgiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/82ea2899a8/SantonisFaith.png"} +{"name":"브론의 융통성","refName":"Bronn's Lithe","namespace":"UNIQUE","unique":{"base":"Cutthroat's Garb"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Ccm9ubnNsaXRoZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/80b9cf6b0b/Bronnslithe.png"} +{"name":"잔인한 속박","refName":"Brutal Restraint","namespace":"UNIQUE","unique":{"base":"Timeless Jewel","fixedStats":["Historic"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL01hcmFrZXRoQ2l2aWxpemF0aW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8e18d378b4/MarakethCivilization.png"} +{"name":"완력 해결","refName":"Brute Force Solution","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1NUUnRvSU5UIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d8b66f795b/STRtoINT.png"} +{"name":"브루투스의 리드 스프링클러","refName":"Brutus' Lead Sprinkler","namespace":"UNIQUE","unique":{"base":"Ritual Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvVGhlTGVhZFNwcmlua2xlciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/9a9217f832/TheLeadSprinkler.png"} +{"name":"죽음의 자취","refName":"Bubonic Trail","namespace":"UNIQUE","unique":{"base":"Murder Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9BYnlzc0Jvb3RzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/61dd23f86c/AbyssBoots.png"} +{"name":"캐디건의 왕관","refName":"Cadigan's Crown","namespace":"UNIQUE","unique":{"base":"Runic Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0FkYXB0YXRpb25IZWxtZXRVbmlxdWUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/693ad15174/AdaptationHelmetUnique.png"} +{"name":"캐어블레이드 늑대의 소굴","refName":"Caer Blaidd, Wolfpack's Den","namespace":"UNIQUE","unique":{"base":"Underground River Map"},"map":{"screenshot":"https://i.imgur.com/5BwJouH.jpg"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9Xb2xmTWFwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/db94bff258/WolfMap.png"} +{"name":"환란의 시각","refName":"Calamitous Visions","namespace":"UNIQUE","unique":{"base":"Small Cluster Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0xvbmVNZXNzZW5nZXJKZXdlbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/46f8de709e/LoneMessengerJewel.png"} +{"name":"형제의 부름","refName":"Call of the Brotherhood","namespace":"UNIQUE","unique":{"base":"Two-Stone Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQnJvdGhlcmhvb2QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/956d645be0/Brotherhood.png"} +{"name":"공허의 부름","refName":"Call of the Void","namespace":"UNIQUE","unique":{"base":"Sapphire Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvRnJvc3RHbGF6ZWRFeWVSaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjEsImVsZGVyIjp0cnVlLCJzaGFwZXIiOnRydWV9XQ/ed288bc494/FrostGlazedEyeRing.png"} +{"name":"집게발 쇠망치","refName":"Callinellus Malleus","namespace":"UNIQUE","unique":{"base":"Auric Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvQ2FsbGluZWxsdXNNYWxsZXVzIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/54da9946c9/CallinellusMalleus.png"} +{"name":"카메리아의 탐욕","refName":"Cameria's Avarice","namespace":"UNIQUE","unique":{"base":"Gavel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvQW1lcmljc01hdWwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e1b9d35ca3/AmericsMaul.png"} +{"name":"카메리아의 대형 망치","refName":"Cameria's Maul","namespace":"UNIQUE","unique":{"base":"Gavel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvQW1lcmljc01hdWwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e1b9d35ca3/AmericsMaul.png"} +{"name":"쿨레막의 지팡이","refName":"Cane of Kulemak","namespace":"UNIQUE","unique":{"base":"Serpentine Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvQ2F0YXJpbmFTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/9e79ed63e5/CatarinaStaff.png"} +{"name":"해결의 지팡이","refName":"Cane of Unravelling","namespace":"UNIQUE","unique":{"base":"Ezomyte Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvQ2FuZU9mVW5yYXZlbGxpbmciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/99b4e7e44e/CaneOfUnravelling.png"} +{"name":"시체 상인","refName":"Carcass Jack","namespace":"UNIQUE","unique":{"base":"Varnished Coat"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9DYXJjYXNzSmFjayIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/e496ea8e6e/CarcassJack.png"} +{"name":"철저한 계획","refName":"Careful Planning","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0lOVHRvREVYIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/e30df474e0/INTtoDEX.png"} +{"name":"학살 심장","refName":"Carnage Heart","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQzNyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/451ac32a56/Amulet37.png"} +{"name":"끊임없는 연회","refName":"Ceaseless Feast","namespace":"UNIQUE","unique":{"base":"Spiked Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvVG91Y2hPZlJ1c3QiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/a9b7f33bdf/TouchOfRust.png"} +{"name":"관대함의 띠","refName":"Ceinture of Benevolence","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvTGlua21hc3RlcnNDb2lsIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/19af94314e/LinkmastersCoil.png"} +{"name":"케르베로스의 발","refName":"Cerberus Limb","namespace":"UNIQUE","unique":{"base":"Blood Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9DZXJlYnVzIExpbWIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/abffc5b395/Cerebus%20Limb.png"} +{"name":"인내의 사슬","refName":"Chain of Endurance","namespace":"UNIQUE","unique":{"base":"Chain Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvVW5oZWFsdGh5QnVyZGVuIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/d59c2c2bc9/UnhealthyBurden.png"} +{"name":"지휘관의 사슬","refName":"Chains of Command","namespace":"UNIQUE","unique":{"base":"Saintly Chainmail"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9DaGFpbnNPZkNvbW1hbmQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/3919d27d1b/ChainsOfCommand.png"} +{"name":"해방의 사슬","refName":"Chains of Emancipation","namespace":"UNIQUE","unique":{"base":"Chain Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvU2xhdmVyc0JlbHQiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/0b8d818fbb/SlaversBelt.png"} +{"name":"공포의 성배","refName":"Chalice of Horrors","namespace":"UNIQUE","unique":{"base":"War Buckler"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0NoYWxpY2VvZmhvcnJvcnMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/532f7ec81c/Chaliceofhorrors.png"} +{"name":"체르노보그의 기둥","refName":"Chernobog's Pillar","namespace":"UNIQUE","unique":{"base":"Ebony Tower Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0NoZXJub2JvZ3NwaWxsYXIiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8868d6add1/Chernobogspillar.png"} +{"name":"체루빔의 악행","refName":"Cherrubim's Maleficence","namespace":"UNIQUE","unique":{"base":"Triumphant Lamellar"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9DaGVycnViaW1zQ3JhdmUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/90d81e1e5b/CherrubimsCrave.png"} +{"name":"타락의 한기","refName":"Chill of Corruption","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dyZWVuQ29ycnVwdDIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/567ed38e5d/GreenCorrupt2.png"} +{"name":"친 솔","refName":"Chin Sol","namespace":"UNIQUE","unique":{"base":"Assassin Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzV1bmlxdWUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/199f28ea8d/Bow5unique.png"} +{"name":"치투스의 정점","refName":"Chitus' Apex","namespace":"UNIQUE","unique":{"base":"Necromancer Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0NoaXR1c0FwZXgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/65697b1d09/ChitusApex.png"} +{"name":"초버 차버","refName":"Chober Chaber","namespace":"UNIQUE","unique":{"base":"Great Mallet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvQ2hvYmVyQ2hhYmVyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/77d9d3e30a/ChoberChaber.png"} +{"name":"태풍의 합창","refName":"Choir of the Storm","namespace":"UNIQUE","unique":{"base":"Lapis Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Wb2ljZU9mVGhlU3Rvcm1VcGdyYWRlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/50b59f1123/VoiceOfTheStormUpgrade.png"} +{"name":"잿더미 단지","refName":"Cinderswallow Urn","namespace":"UNIQUE","unique":{"base":"Silver Flask","fixedStats":["+# to Maximum Charges","Recharges # Charge when you Consume an Ignited corpse","#% increased Charges per use","Enemies Ignited by you during Effect take #% increased Damage"]},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvVmlhbG9mVW5saWZlIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/9911226887/VialofUnlife.png"} +{"name":"야심의 고리","refName":"Circle of Ambition","namespace":"UNIQUE","unique":{"base":"Prismatic Ring","fixedStats":["#% increased Mana Reservation Efficiency of Herald Skills"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVWJlckNpcmNsZUhlcmFsZCIsInciOjEsImgiOjEsInNjYWxlIjoxLCJzeW50aGVzaXNlZCI6dHJ1ZX1d/77050fa01b/UberCircleHerald.png"} +{"name":"비통의 고리","refName":"Circle of Anguish","namespace":"UNIQUE","unique":{"base":"Ruby Ring","fixedStats":["Adds # to # Fire Damage"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU3ludGhlc2lzRmlyZSIsInciOjEsImgiOjEsInNjYWxlIjoxLCJzeW50aGVzaXNlZCI6dHJ1ZX1d/f64b382150/SynthesisFire.png"} +{"name":"두려움의 고리","refName":"Circle of Fear","namespace":"UNIQUE","unique":{"base":"Sapphire Ring","fixedStats":["Adds # to # Cold Damage"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU3ludGhlc2lzQ29sZCIsInciOjEsImgiOjEsInNjYWxlIjoxLCJzeW50aGVzaXNlZCI6dHJ1ZX1d/f2a949365a/SynthesisCold.png"} +{"name":"유죄의 고리","refName":"Circle of Guilt","namespace":"UNIQUE","unique":{"base":"Iron Ring","fixedStats":["Adds # to # Physical Damage","+# to Armour"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU3ludGhlc2lzUGh5c2ljYWwyIiwidyI6MSwiaCI6MSwic2NhbGUiOjEsInN5bnRoZXNpc2VkIjp0cnVlfV0/9345ce30d7/SynthesisPhysical2.png"} +{"name":"그리움의 고리","refName":"Circle of Nostalgia","namespace":"UNIQUE","unique":{"base":"Amethyst Ring","fixedStats":["Adds # to # Chaos Damage","+#% to Chaos Resistance"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU3ludGhlc2lzUGh5c2ljYWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MSwic3ludGhlc2lzZWQiOnRydWV9XQ/91f50b535b/SynthesisPhysical.png"} +{"name":"후회의 고리","refName":"Circle of Regret","namespace":"UNIQUE","unique":{"base":"Topaz Ring","fixedStats":["Adds # to # Lightning Damage"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU3ludGhlc2lzTGlnaHRuaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjEsInN5bnRoZXNpc2VkIjp0cnVlfV0/ce810e2fcc/SynthesisLightning.png"} +{"name":"클레이쉐이퍼","refName":"Clayshaper","namespace":"UNIQUE","unique":{"base":"Rock Breaker"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvQ2xheVNoYXBlciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/9224ab6497/ClayShaper.png"} +{"name":"저항의 망토","refName":"Cloak of Defiance","namespace":"UNIQUE","unique":{"base":"Lacquered Garb"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9DbG9ha09mRGVmaWFuY2UiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/87997e3b8a/CloakOfDefiance.png"} +{"name":"화염의 망토","refName":"Cloak of Flame","namespace":"UNIQUE","unique":{"base":"Scholar's Robe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MUF1bmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/41c15c6511/BodyInt1Aunique.png"} +{"name":"탐위르 이슬리의 망토","refName":"Cloak of Tawm'r Isley","namespace":"UNIQUE","unique":{"base":"Savant's Robe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Ub21PUmVpbGx5Q2xvYWsiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/595ee9c868/TomOReillyCloak.png"} +{"name":"날붙이 끝","refName":"Cold Iron Point","namespace":"UNIQUE","unique":{"base":"Ezomyte Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0NvbGRJcm9uUG9pbnQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/1a4002957b/ColdIronPoint.png"} +{"name":"집중 전투","refName":"Combat Focus","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0VsZW1lbnRhbEhpdExpZ2h0ZW5pbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e913bb8301/ElementalHitLightening.png"} +{"name":"집중 전투","refName":"Combat Focus","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0VsZW1lbnRhbEhpdENvbGQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/2d08fbc4ec/ElementalHitCold.png"} +{"name":"집중 전투","refName":"Combat Focus","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0VsZW1lbnRhbEhpdEZpcmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/7dac7ceff8/ElementalHitFire.png"} +{"name":"구덩이의 지배자","refName":"Command of the Pit","namespace":"UNIQUE","unique":{"base":"Riveted Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQ29tbWFuZG9mdGhlUGl0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/cc7772a880/CommandofthePit.png"} +{"name":"계약: 파괴 불가능한 존재 파괴하기","refName":"Contract: Breaking the Unbreakable","namespace":"UNIQUE","unique":{"base":"Preventative Contract"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVW5icmVha2FibGVGaWdodENvbnRyYWN0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4e50a5f0ae/UnbreakableFightContract.png"} +{"name":"계약: 다나우에게 죽음을","refName":"Contract: Death to Darnaw","namespace":"UNIQUE","unique":{"base":"Naval Contract"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQWRtaXJhbERhcm5hd0ZpZ2h0Q29udHJhY3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d3d9bf5da6/AdmiralDarnawFightContract.png"} +{"name":"계약: 영광의 심장","refName":"Contract: Heart of Glory","namespace":"UNIQUE","unique":{"base":"Familial Contract"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVXN1cnBlckZpZ2h0Q29udHJhY3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/46d7ba4bf9/UsurperFightContract.png"} +{"name":"계약: 노예상의 왕","refName":"Contract: The Slaver King","namespace":"UNIQUE","unique":{"base":"Vigilante Contract"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvU2xhdmVNZXJjaGFudEZpZ2h0Q29udHJhY3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/05c788361c/SlaveMerchantFightContract.png"} +{"name":"계약: 쌍둥이","refName":"Contract: The Twins","namespace":"UNIQUE","unique":{"base":"Vengeful Contract"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVm94RmFtaWx5RmlnaHRDb250cmFjdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/28f9230b0b/VoxFamilyFightContract.png"} +{"name":"협력","refName":"Cooperation","namespace":"UNIQUE","unique":{"base":"Vaal Aspect"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UcmlhbG1hc3RlclJpZ2h0RnJhZ21lbnQiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MX1d/923a1f4d20/TrialmasterRightFragment.png"} +{"name":"코랄리토의 서명","refName":"Coralito's Signature","namespace":"UNIQUE","unique":{"base":"Diamond Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvR29yZ29uc0ZsYXNrIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/8fa50a1974/GorgonsFlask.png"} +{"name":"시체 보행자","refName":"Corpsewalker","namespace":"UNIQUE","unique":{"base":"Carnal Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9EaXN0dXJiVGhlRGVhZCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/fabb05d84e/DisturbTheDead.png"} +{"name":"코텍스","refName":"Cortex","namespace":"UNIQUE","unique":{"base":"Synthesised Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TeW50aGVzaXNCb3NzR3VhcmRpYW5NYXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/542f2635c7/SynthesisBossGuardianMap.png"} +{"name":"빛나는 묘약","refName":"Coruscating Elixir","namespace":"UNIQUE","unique":{"base":"Ruby Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvQ29ydXNFbGl4aXIiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/26769c58f3/CorusElixir.png"} +{"name":"코스프리의 장난","refName":"Cospri's Malice","namespace":"UNIQUE","unique":{"base":"Jewelled Foil"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL0Nvc3ByaXNNYWxpY2UiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/e9e517220b/CosprisMalice.png"} +{"name":"코스프리의 의지","refName":"Cospri's Will","namespace":"UNIQUE","unique":{"base":"Assassin's Garb"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Db3NwcmlzV2lsbCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/e7801b1322/CosprisWill.png"} +{"name":"겁쟁이의 사슬","refName":"Coward's Chains","namespace":"UNIQUE","unique":{"base":"Chain Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQ293YXJkJ3MgQ2hhaW5zIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/b1cb3d3a26/Coward%27s%20Chains.png"} +{"name":"겁쟁이의 유물","refName":"Coward's Legacy","namespace":"UNIQUE","unique":{"base":"Chain Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQ293YXJkJ3MgTGVnYWN5IiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/2325fc7213/Coward%27s%20Legacy.png"} +{"name":"번개애호가의 고깔","refName":"Cowl of the Ceraunophile","namespace":"UNIQUE","unique":{"base":"Solaris Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1N1cHBvcnRlcjFoZWxtZXRDIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/9455b25c23/Supporter1helmetC.png"} +{"name":"냉동애호가의 고깔","refName":"Cowl of the Cryophile","namespace":"UNIQUE","unique":{"base":"Silken Hood"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1N1cHBvcnRlcjFoZWxtZXRBIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/5283e1920d/Supporter1helmetA.png"} +{"name":"고열애호가의 고깔","refName":"Cowl of the Thermophile","namespace":"UNIQUE","unique":{"base":"Ezomyte Burgonet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1N1cHBvcnRlcjFoZWxtZXRCIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/3a31f05cd3/Supporter1helmetB.png"} +{"name":"바위 화살촉","refName":"Craghead","namespace":"UNIQUE","unique":{"base":"Serrated Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJVbmlxdWU0IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/dfccecb2ae/QuiverUnique4.png"} +{"name":"크라칸의 등딱지","refName":"Craiceann's Carapace","namespace":"UNIQUE","unique":{"base":"Golden Plate"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9DcmFiVW5pcXVlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/b6db96049a/CrabUnique.png"} +{"name":"크라칸의 키틴질","refName":"Craiceann's Chitin","namespace":"UNIQUE","unique":{"base":"Magistrate Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0NyYWJVbmlxdWVIZWxtZXQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/70715aae61/CrabUniqueHelmet.png"} +{"name":"크라칸의 집게","refName":"Craiceann's Pincers","namespace":"UNIQUE","unique":{"base":"Titan Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQ3JhYlVuaXF1ZUdsb3ZlcyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/c5811ae4bd/CrabUniqueGloves.png"} +{"name":"크라칸의 발자국","refName":"Craiceann's Tracks","namespace":"UNIQUE","unique":{"base":"Goliath Greaves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9DcmFiVW5pcXVlQm9vdHMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/65740a31fd/CrabUniqueBoots.png"} +{"name":"갈망의 문양","refName":"Crest of Desire","namespace":"UNIQUE","unique":{"base":"Fluted Bascinet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01hZ25pZmljYXRpb24iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/1c4139ef41/Magnification.png"} +{"name":"페란두스의 문양","refName":"Crest of Perandus","namespace":"UNIQUE","unique":{"base":"Pine Buckler"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleFVuaXF1ZTUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e85f672678/ShieldDexUnique5.png"} +{"name":"눈알 왕관","refName":"Crown of Eyes","namespace":"UNIQUE","unique":{"base":"Hubris Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Nyb3dub2ZFeWVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/778182e367/CrownofEyes.png"} +{"name":"심안의 왕관","refName":"Crown of the Inward Eye","namespace":"UNIQUE","unique":{"base":"Prophet Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Nyb3duT2ZUaGVJbndhcmRFeWUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/fdb20856e4/CrownOfTheInwardEye.png"} +{"name":"창백한 왕의 왕관","refName":"Crown of the Pale King","namespace":"UNIQUE","unique":{"base":"Regicide Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Nyb3dub2Z0aGVQYWxlS2luZyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/a2cd2b0900/CrownofthePaleKing.png"} +{"name":"폭군의 왕관","refName":"Crown of the Tyrant","namespace":"UNIQUE","unique":{"base":"Magistrate Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RoZUltcG9zaW5nIENyb3duIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/e9e915daa7/TheImposing%20Crown.png"} +{"name":"가시 왕관","refName":"Crown of Thorns","namespace":"UNIQUE","unique":{"base":"Vine Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Nyb3dub2ZUaG9ybnMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/23054b0443/CrownofThorns.png"} +{"name":"결정화된 전지력","refName":"Crystallised Omniscience","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Bc2NlbmRhbmNlQW11bGV0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/60368620d5/AscendanceAmulet.png"} +{"name":"흡수의 골동품","refName":"Curio of Absorption","namespace":"UNIQUE","unique":{"base":"Primordial Fragment"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9QaW5uYWNsZUZyYWdtZW50RXhhcmNoIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/0da90fe2d1/PinnacleFragmentExarch.png"} +{"name":"소모의 골동품","refName":"Curio of Consumption","namespace":"UNIQUE","unique":{"base":"Primordial Fragment"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9QaW5uYWNsZUZyYWdtZW50RWF0ZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a386f18599/PinnacleFragmentEater.png"} +{"name":"부패의 골동품","refName":"Curio of Decay","namespace":"UNIQUE","unique":{"base":"Primordial Fragment"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9QaW5uYWNsZUZyYWdtZW50RWxkZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/40544dbcfb/PinnacleFragmentElder.png"} +{"name":"잠재력의 골동품","refName":"Curio of Potential","namespace":"UNIQUE","unique":{"base":"Primordial Fragment"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9QaW5uYWNsZUZyYWdtZW50TWF2ZW4iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/53c751ef5d/PinnacleFragmentMaven.png"} +{"name":"호기심","refName":"Curiosity","namespace":"UNIQUE","unique":{"base":"Vaal Aspect"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UcmlhbG1hc3RlckJvdHRvbUZyYWdtZW50IiwidyI6MywiaCI6MSwic2NhbGUiOjF9XQ/78cddd2ad4/TrialmasterBottomFragment.png"} +{"name":"커튼콜","refName":"Curtain Call","namespace":"UNIQUE","unique":{"base":"Plague Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0N1cnRhaW5DYWxsIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/5f3eb95031/CurtainCall.png"} +{"name":"시빌의 발","refName":"Cybil's Paw","namespace":"UNIQUE","unique":{"base":"Thresher Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DeWJpbHNDbGF3IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/6da52a7519/CybilsClaw.png"} +{"name":"키클로프의 고리","refName":"Cyclopean Coil","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvRWxkZXJCZWx0IiwidyI6MiwiaCI6MSwic2NhbGUiOjEsImVsZGVyIjp0cnVlfV0/e933baf49d/ElderBelt.png"} +{"name":"제물의 춤","refName":"Dance of the Offered","namespace":"UNIQUE","unique":{"base":"Carnal Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9EYW5jZU9mVGhlT2ZmZXJlZCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ca6a0319e6/DanceOfTheOffered.png"} +{"name":"다레소의 용기","refName":"Daresso's Courage","namespace":"UNIQUE","unique":{"base":"Baroque Round Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleFVuaXF1ZTEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/320f1e78fa/ShieldStrDexUnique1.png"} +{"name":"다레소의 저항","refName":"Daresso's Defiance","namespace":"UNIQUE","unique":{"base":"Full Dragonscale"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9EYXJlc3Nvc0RlZmlhbmNlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/2e5802be5f/DaressosDefiance.png"} +{"name":"다레소의 열정","refName":"Daresso's Passion","namespace":"UNIQUE","unique":{"base":"Estoc"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL0RhcmVzc29zIiwidyI6MSwiaCI6NCwic2NhbGUiOjF9XQ/d698c36c19/Daressos.png"} +{"name":"다레소의 경례","refName":"Daresso's Salute","namespace":"UNIQUE","unique":{"base":"Citrine Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9DaXRyaW5lQW11bGV0VW5pcXVlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ea232d0123/CitrineAmuletUnique.png"} +{"name":"어둠에 대한 경외","refName":"Darkness Enthroned","namespace":"UNIQUE","unique":{"base":"Stygian Vise"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvRGFya25lc3NFbnRocm9uZWQiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/2e418e2c4d/DarknessEnthroned.png"} +{"name":"어두운 빛의 궤적","refName":"Darkray Vectors","namespace":"UNIQUE","unique":{"base":"Dragonscale Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9EYXJrcmF5VmVjdG9ycyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/e96f134d02/DarkrayVectors.png"} +{"name":"어두운 냉소","refName":"Darkscorn","namespace":"UNIQUE","unique":{"base":"Assassin Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0RhcmtzY29ybiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/5145b7feef/Darkscorn.png"} +{"name":"여명 분쇄기","refName":"Dawnbreaker","namespace":"UNIQUE","unique":{"base":"Colossal Tower Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1N1cGVyaGVhdGVkU2hpZWxkIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/59e3552a9b/SuperheatedShield.png"} +{"name":"여명 질주자","refName":"Dawnstrider","namespace":"UNIQUE","unique":{"base":"Vaal Greaves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9JbmZlY3Rpb3VzQ29uc3RydWN0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/bf1cb0a5b4/InfectiousConstruct.png"} +{"name":"망자의 판단","refName":"Dead Reckoning","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0FkZGl0aW9uYWxTa2VsZXRvbk1hZ2VzTW9kaWZpZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/64b5aa8a03/AdditionalSkeletonMagesModifier.png"} +{"name":"죽음과 의무","refName":"Death and Taxes","namespace":"UNIQUE","unique":{"base":"Necropolis Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9EZWF0aGFuZFRheGVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/0cc72adc19/DeathandTaxes.png"} +{"name":"죽음의 재촉","refName":"Death Rush","namespace":"UNIQUE","unique":{"base":"Amethyst Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQW1ldGh5c3RSaW5nVW5pcXVlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1ade97e0ac/AmethystRingUnique.png"} +{"name":"죽음의 문턱","refName":"Death's Door","namespace":"UNIQUE","unique":{"base":"Crusader Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9EZWF0aHNkb29yIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/49384091d3/Deathsdoor.png"} +{"name":"죽음의 손길","refName":"Death's Hand","namespace":"UNIQUE","unique":{"base":"Karui Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9FbmRPZkVyYSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/fbfd20f658/EndOfEra.png"} +{"name":"죽음의 하프","refName":"Death's Harp","namespace":"UNIQUE","unique":{"base":"Death Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0RlYXRoc2hhcnAiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/488e5f6267/Deathsharp.png"} +{"name":"죽음의 서약","refName":"Death's Oath","namespace":"UNIQUE","unique":{"base":"Astral Plate"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9EZWF0aHNvYXRoIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f81375e335/Deathsoath.png"} +{"name":"데비온의 장승곡","refName":"Debeon's Dirge","namespace":"UNIQUE","unique":{"base":"Despot Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9TdHJpbmdBeGUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/c3289a678a/StringAxe.png"} +{"name":"사슴 추적자","refName":"Deerstalker","namespace":"UNIQUE","unique":{"base":"Deerskin Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleFVuaXF1ZTEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/8d8725b395/BootsDexUnique1.png"} +{"name":"운명의 저항","refName":"Defiance of Destiny","namespace":"UNIQUE","unique":{"base":"Paua Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9IaW5la29yYUFtdWxldCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d26f80f9c7/HinekoraAmulet.png"} +{"name":"죽음의 종","refName":"Deidbell","namespace":"UNIQUE","unique":{"base":"Gilded Sallet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0RlaWRiZWxsIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/fd66b0b28f/Deidbell.png"} +{"name":"악마 봉합자","refName":"Demon Stitcher","namespace":"UNIQUE","unique":{"base":"Satin Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRGVtb25TdGljaGVyIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/0269893a5c/DemonSticher.png"} +{"name":"화살독 갑옷","refName":"Dendrobate","namespace":"UNIQUE","unique":{"base":"Sentinel Jacket"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9EZW5kcm9iYXRpcyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/7c2d6dd5ce/Dendrobatis.png"} +{"name":"드보토의 헌신","refName":"Devoto's Devotion","namespace":"UNIQUE","unique":{"base":"Nightmare Bascinet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDJ1bmlxdWUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/65fa7daa88/HelmetStrDex2unique.png"} +{"name":"디알라의 악행","refName":"Dialla's Malefaction","namespace":"UNIQUE","unique":{"base":"Sage's Robe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9EaWFsbGFzTWFsZWZhY3Rpb24iLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/842ace4d64/DiallasMalefaction.png"} +{"name":"파쇄자","refName":"Disintegrator","namespace":"UNIQUE","unique":{"base":"Maelström Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvRWxkZXJTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxLCJlbGRlciI6dHJ1ZX1d/b01af8c2ff/ElderStaff.png"} +{"name":"살점의 융해","refName":"Dissolution of the Flesh","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1Jlc2VydmVkQmxvb2RKZXdlbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1a4688f335/ReservedBloodJewel.png"} +{"name":"디비나리우스","refName":"Divinarius","namespace":"UNIQUE","unique":{"base":"Imperial Skean"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjd1bmlxdWUiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/3deec3773b/Dagger7unique.png"} +{"name":"예언의 정수","refName":"Divination Distillate","namespace":"UNIQUE","unique":{"base":"Large Hybrid Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MveUZsYXNrczE3IiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/df28fc612b/yFlasks17.png"} +{"name":"도이드리의 파멸","refName":"Doedre's Damning","namespace":"UNIQUE","unique":{"base":"Paua Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzNVbmlxdWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d06b386d73/Ring3Unique.png"} +{"name":"도이드리의 묘약","refName":"Doedre's Elixir","namespace":"UNIQUE","unique":{"base":"Greater Mana Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MveUZsYXNrNCIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/59c415efed/yFlask4.png"} +{"name":"도이드리의 멸시","refName":"Doedre's Scorn","namespace":"UNIQUE","unique":{"base":"Lunaris Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0RvZWRyZXNTY29ybiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/16c4d034ee/DoedresScorn.png"} +{"name":"도이드리의 가죽","refName":"Doedre's Skin","namespace":"UNIQUE","unique":{"base":"Widowsilk Robe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Eb2VkcmVzU2tpbiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/a04f3c7a0a/DoedresSkin.png"} +{"name":"도이드리의 임기","refName":"Doedre's Tenure","namespace":"UNIQUE","unique":{"base":"Velvet Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRG9lZHJlc1RlbnVyZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/052a57aabd/DoedresTenure.png"} +{"name":"도이드리의 혀","refName":"Doedre's Tongue","namespace":"UNIQUE","unique":{"base":"Lapis Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Eb2VkcmVzVG9uZ3VlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/434403db05/DoedresTongue.png"} +{"name":"죽음의 깃","refName":"Doomfletch","namespace":"UNIQUE","unique":{"base":"Royal Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0Rvb21GbGV0Y2giLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/a284f1cdab/DoomFletch.png"} +{"name":"멸망 유발자","refName":"Doomsower","namespace":"UNIQUE","unique":{"base":"Lion Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL0Rvb21Tb3dlciIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/7d9d914b75/DoomSower.png"} +{"name":"둔 큐비야리","refName":"Doon Cuebiyari","namespace":"UNIQUE","unique":{"base":"Vaal Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvRG9vbkN1ZWJpeWFyaSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/8a4a0ccb6b/DoonCuebiyari.png"} +{"name":"도플갱어 위장","refName":"Doppelgänger Guise","namespace":"UNIQUE","unique":{"base":"Sadist Garb"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Db2xsZWN0b3JzR2FyYkRpZmYiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/eb8a6d36ef/CollectorsGarbDiff.png"} +{"name":"도리아니의 기폭제","refName":"Doryani's Catalyst","namespace":"UNIQUE","unique":{"base":"Vaal Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9Eb3J5YW5pc0NhdGFseXN0IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/aa54cbb507/DoryanisCatalyst.png"} +{"name":"도리아니의 기만","refName":"Doryani's Delusion","namespace":"UNIQUE","unique":{"base":"Sorcerer Boots","fixedStats":["#% increased Movement Speed"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Eb3JpeWFuaXNCbHVlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/0288b52fee/DoriyanisBlue.png"} +{"name":"도리아니의 기만","refName":"Doryani's Delusion","namespace":"UNIQUE","unique":{"base":"Titan Greaves","fixedStats":["#% increased Movement Speed"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Eb3JpeWFuaXNSZWQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/10255d4b05/DoriyanisRed.png"} +{"name":"도리아니의 기만","refName":"Doryani's Delusion","namespace":"UNIQUE","unique":{"base":"Slink Boots","fixedStats":["#% increased Movement Speed"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Eb3JpeWFuaXNHcmVlbiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ef81cb1e57/DoriyanisGreen.png"} +{"name":"도리아니의 주먹","refName":"Doryani's Fist","namespace":"UNIQUE","unique":{"base":"Vaal Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRG9yeWFuaXNGaXN0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/92cfa78e4d/DoryanisFist.png"} +{"name":"도리아니의 초대","refName":"Doryani's Invitation","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvRG9yeWFuaXNJbnZpdGF0aW9uIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/d0085639cc/DoryanisInvitation.png"} +{"name":"도리아니의 기계실","refName":"Doryani's Machinarium","namespace":"UNIQUE","unique":{"base":"Maze Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9Eb3J5YW5pcyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/581444be53/Doryanis.png"} +{"name":"도리아니의 프로토타입","refName":"Doryani's Prototype","namespace":"UNIQUE","unique":{"base":"Saint's Hauberk"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9TaG9ja0Nsb2FrIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/44e73cc73c/ShockCloak.png"} +{"name":"접근하는 공포","refName":"Dreadarc","namespace":"UNIQUE","unique":{"base":"Cleaver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9EcmVhZGFyYyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/fd1e188ee3/Dreadarc.png"} +{"name":"꿈의 조각","refName":"Dream Fragments","namespace":"UNIQUE","unique":{"base":"Sapphire Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzZVbmlxdWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0c74ddd77c/Ring6Unique.png"} +{"name":"꿈의 깃털","refName":"Dreamfeather","namespace":"UNIQUE","unique":{"base":"Eternal Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0RyZWFtZmVhdGhlciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/89a3a7588c/Dreamfeather.png"} +{"name":"치명적 송곳","refName":"Drillneck","namespace":"UNIQUE","unique":{"base":"Penetrating Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9EcmlsbG5lY2siLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2e0770a7b1/Drillneck.png"} +{"name":"황혼의 아침","refName":"Duskdawn","namespace":"UNIQUE","unique":{"base":"Maelström Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU29sYXJpc0x1bmFyaXNTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/e5e9df18a4/SolarisLunarisStaff.png"} +{"name":"황혼의 끝자락","refName":"Dusktoe","namespace":"UNIQUE","unique":{"base":"Ironscale Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleFVuaXF1ZTMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/39b842cf85/BootsStrDexUnique3.png"} +{"name":"쌍둥이의 여명","refName":"Dyadian Dawn","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvTW90aGVyRHlhZHVzIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/ca299e5015/MotherDyadus.png"} +{"name":"디아두스","refName":"Dyadus","namespace":"UNIQUE","unique":{"base":"Infernal Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9EeWFkdXMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e1b1cf2439/Dyadus.png"} +{"name":"죽어가는 숨결","refName":"Dying Breath","namespace":"UNIQUE","unique":{"base":"Iron Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvRHlpbmdCcmVhdGgiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/3b7be0c935/DyingBreath.png"} +{"name":"죽어가는 해","refName":"Dying Sun","namespace":"UNIQUE","unique":{"base":"Ruby Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvU2hhcGVyc0ZsYXNrIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/c6e2f8118d/ShapersFlask.png"} +{"name":"에아렌델의 포옹","refName":"Earendel's Embrace","namespace":"UNIQUE","unique":{"base":"Grinning Fetish"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9FYXJlbmRlbHNFbWJyYWNlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/7fbecdb2b3/EarendelsEmbrace.png"} +{"name":"이버의 통합","refName":"Eber's Unification","namespace":"UNIQUE","unique":{"base":"Hubris Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1BhbGVDb3VuY2lsSGVsbWV0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/4415fd6474/PaleCouncilHelmet.png"} +{"name":"창조의 메아리","refName":"Echoes of Creation","namespace":"UNIQUE","unique":{"base":"Royal Burgonet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RoZVR3aXN0aW5nU2NyZWFtIiwidyI6MiwiaCI6Miwic2NhbGUiOjEsInNoYXBlciI6dHJ1ZX1d/a52bc6cab0/TheTwistingScream.png"} +{"name":"메아리의 탄생","refName":"Echoforge","namespace":"UNIQUE","unique":{"base":"Infernal Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL0Nvc21pY0ZvcmdlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/df82c06267/CosmicForge.png"} +{"name":"솔라리스의 쇠퇴","refName":"Eclipse Solaris","namespace":"UNIQUE","unique":{"base":"Engraved Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kVW5pcXVlMSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/e1734b812d/WandUnique1.png"} +{"name":"광기의 칼날","refName":"Edge of Madness","namespace":"UNIQUE","unique":{"base":"Etched Greatsword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL0VkZ2VPZk1hZG5lc3MiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/5ab6c808b5/EdgeOfMadness.png"} +{"name":"효율적인 훈련","refName":"Efficient Training","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0lOVHRvU1RSIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3631faae6d/INTtoSTR.png"} +{"name":"고상한 오만","refName":"Elegant Hubris","namespace":"UNIQUE","unique":{"base":"Timeless Jewel","fixedStats":["Historic"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0V0ZXJuYWxFbXBpcmVDaXZpbGl6YXRpb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8d1d098584/EternalEmpireCivilization.png"} +{"name":"원소포식","refName":"Elevore","namespace":"UNIQUE","unique":{"base":"Wolf Pelt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1dpbGRjYWxsIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/bf0a462a3a/Wildcall.png"} +{"name":"끊어진 원의 영액","refName":"Elixir of the Unbroken Circle","namespace":"UNIQUE","unique":{"base":"Iron Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvV2FyZEZsYXNrMDMiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/d78b003b9a/WardFlask03.png"} +{"name":"잉걸불 지피기","refName":"Emberwake","namespace":"UNIQUE","unique":{"base":"Ruby Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzEwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/55c8711fd7/Ring10.png"} +{"name":"황제의 잔꾀","refName":"Emperor's Cunning","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0N1bm5pbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4b5d857ef3/Cunning.png"} +{"name":"황제의 숙련","refName":"Emperor's Mastery","namespace":"UNIQUE","unique":{"base":"Prismatic Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL01hc3RlcnkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/eb1cf5699e/Mastery.png"} +{"name":"황제의 완력","refName":"Emperor's Might","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL01pZ2h0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d1507b1ec4/Might.png"} +{"name":"황제의 철야","refName":"Emperor's Vigilance","namespace":"UNIQUE","unique":{"base":"Steel Kite Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0hpZ2hQcmllc3RTaGllbGQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/4c24c383b8/HighPriestShield.png"} +{"name":"황제의 재치","refName":"Emperor's Wit","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1dpdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/bc537c241b/Wit.png"} +{"name":"제국의 손아귀","refName":"Empire's Grasp","namespace":"UNIQUE","unique":{"base":"Goliath Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvSGl0aGVyIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/c23bccbc39/Hither.png"} +{"name":"활력의 방어구","refName":"Energised Armour","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JlZEpld2VsNSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5d09a69cbc/RedJewel5.png"} +{"name":"내재한 에너지","refName":"Energy From Within","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0JsdWVKZXdlbDYiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/43c313a2c4/BlueJewel6.png"} +{"name":"엔트로피의 유린","refName":"Entropic Devastation","namespace":"UNIQUE","unique":{"base":"Assassin's Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvVWJlclNoYXBlckdsb3ZlcyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/50bd7171bf/UberShaperGloves.png"} +{"name":"덧없는 칼날","refName":"Ephemeral Edge","namespace":"UNIQUE","unique":{"base":"Dusk Blade"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDhVbmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/d2fdb4e56e/OneHandSword8Unique.png"} +{"name":"에쉬의 거울","refName":"Esh's Mirror","namespace":"UNIQUE","unique":{"base":"Vaal Spirit Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0VzaHNNaXJyb3IiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/983cf91bf4/EshsMirror.png"} +{"name":"에쉬의 얼굴","refName":"Esh's Visage","namespace":"UNIQUE","unique":{"base":"Vaal Spirit Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0VzaHNNaXJyb3JVcGdyYWRlZCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f965a13213/EshsMirrorUpgraded.png"} +{"name":"에센스 웜","refName":"Essence Worm","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvRXNzZW5jZVdvcm0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4455cc009b/EssenceWorm.png"} +{"name":"피의 정수","refName":"Essentia Sanguis","namespace":"UNIQUE","unique":{"base":"Vaal Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NVVuaXF1ZTIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/8041876a9e/Claw5Unique2.png"} +{"name":"영원한 지옥","refName":"Eternal Damnation","namespace":"UNIQUE","unique":{"base":"Agate Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbndlbnNBbXVsZXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1d40745e7d/AnwensAmulet.png"} +{"name":"이워의 신기루","refName":"Ewar's Mirage","namespace":"UNIQUE","unique":{"base":"Antique Rapier"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL0V3YXJzTWlyYWdlIiwidyI6MSwiaCI6NCwic2NhbGUiOjF9XQ/c7b916c7f4/EwarsMirage.png"} +{"name":"탐험의 끝","refName":"Expedition's End","namespace":"UNIQUE","unique":{"base":"Sentinel Jacket"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9BZG1pcmFsc0phY2tldCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/8c204b4c87/AdmiralsJacket.png"} +{"name":"정신 추출기","refName":"Extractor Mentis","namespace":"UNIQUE","unique":{"base":"Agate Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9FeHRyYWN0b3JNZW50aXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/af5684bd74/ExtractorMentis.png"} +{"name":"차율라의 눈","refName":"Eye of Chayula","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQ3VW5pcXVlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6b059ec15d/Amulet7Unique.png"} +{"name":"결백의 눈","refName":"Eye of Innocence","namespace":"UNIQUE","unique":{"base":"Citrine Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9FeWVPZklubm9jZW5jZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9544014b69/EyeOfInnocence.png"} +{"name":"적의의 눈","refName":"Eye of Malice","namespace":"UNIQUE","unique":{"base":"Callous Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0V5ZU9mRGVzaXJlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/4218c3cc66/EyeOfDesire.png"} +{"name":"위대한 늑대의 눈","refName":"Eyes of the Greatwolf","namespace":"UNIQUE","unique":{"base":"Greatwolf Talisman"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9SaWd3YWxkc1RhbGlzbWFuIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4936fcad86/RigwaldsTalisman.png"} +{"name":"에조미어의 면갑","refName":"Ezomyte Peak","namespace":"UNIQUE","unique":{"base":"Iron Hat"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0V6b215dGVQZWFrIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/058b75e4e0/EzomytePeak.png"} +{"name":"페이스브레이커","refName":"Facebreaker","namespace":"UNIQUE","unique":{"base":"Strapped Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50VW5pcXVlMSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/b97dda23b0/GlovesDexIntUnique1.png"} +{"name":"페어그레이브즈의 삼각모","refName":"Fairgraves' Tricorne","namespace":"UNIQUE","unique":{"base":"Tricorne"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0ZhaXJncmF2ZXNUcmljb3JuZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/6a828c8150/FairgravesTricorne.png"} +{"name":"신념의 수호","refName":"Faithguard","namespace":"UNIQUE","unique":{"base":"Runic Helm"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1NwaXJpdEhlbG1ldFVuaXF1ZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0921dc17df/SpiritHelmetUnique.png"} +{"name":"기근의 속박","refName":"Faminebind","namespace":"UNIQUE","unique":{"base":"Rustic Sash"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvRmFtaW5lYmluZCIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/a790722613/Faminebind.png"} +{"name":"페룰의 이빨","refName":"Farrul's Bite","namespace":"UNIQUE","unique":{"base":"Harlequin Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RpZ2VySGVsbWV0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/c056a59c62/TigerHelmet.png"} +{"name":"페룰의 추적","refName":"Farrul's Chase","namespace":"UNIQUE","unique":{"base":"Slink Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9UaWdlckJvb3RzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/640a42e82a/TigerBoots.png"} +{"name":"페룰의 모피","refName":"Farrul's Fur","namespace":"UNIQUE","unique":{"base":"Triumphant Lamellar"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaWdlckJvZHlBcm1vdXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/1cfa248b9b/TigerBodyArmour.png"} +{"name":"페룰의 급습","refName":"Farrul's Pounce","namespace":"UNIQUE","unique":{"base":"Hydrascale Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvVGlnZXJHbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/294e636cf1/TigerGloves.png"} +{"name":"바알의 운명","refName":"Fate of the Vaal","namespace":"UNIQUE","unique":{"base":"Gemstone Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0ZhdGVPZlRoZVZhYWwiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/0a4128aace/FateOfTheVaal.png"} +{"name":"예견된 최후","refName":"Fated End","namespace":"UNIQUE","unique":{"base":"Paua Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvRm9yYmlkZGVuU2VhbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f402209b8f/ForbiddenSeal.png"} +{"name":"연회의 속박","refName":"Feastbind","namespace":"UNIQUE","unique":{"base":"Rustic Sash"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvRmVhc3RiaW5kIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/f5d1f232d6/Feastbind.png"} +{"name":"성자의 대퇴골","refName":"Femurs of the Saints","namespace":"UNIQUE","unique":{"base":"Primordial Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvRmVtdXJzb2Z0aGVTYWludHMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/e275f87366/FemursoftheSaints.png"} +{"name":"늪 감긴 가지","refName":"Fencoil","namespace":"UNIQUE","unique":{"base":"Gnarled Branch"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmYxdW5pcXVlIiwidyI6MSwiaCI6NCwic2NhbGUiOjF9XQ/cff9022931/Staff1unique.png"} +{"name":"페누무스의 연막","refName":"Fenumus' Shroud","namespace":"UNIQUE","unique":{"base":"Widowsilk Robe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9TcGlkZXJBcm1vdXJCb2R5IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f48eff23e8/SpiderArmourBody.png"} +{"name":"페누무스의 방사 돌기","refName":"Fenumus' Spinnerets","namespace":"UNIQUE","unique":{"base":"Assassin's Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TcGlkZXJBcm1vdXJCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ba3f1e4f2a/SpiderArmourBoots.png"} +{"name":"페누무스의 독소","refName":"Fenumus' Toxins","namespace":"UNIQUE","unique":{"base":"Necromancer Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1NwaWRlckFybW91ckhlbG1ldCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/da7582cbf6/SpiderArmourHelmet.png"} +{"name":"페누무스의 매듭","refName":"Fenumus' Weave","namespace":"UNIQUE","unique":{"base":"Carnal Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3BpZGVyQXJtb3VyIEdsb3ZlcyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/cb4ae94f6d/SpiderArmour%20Gloves.png"} +{"name":"풍요로운 마음","refName":"Fertile Mind","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0RFWHRvSU5UIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b363fdbd52/DEXtoINT.png"} +{"name":"흥분한 마음","refName":"Fevered Mind","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0JsdWVDb3JydXB0NCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ad8d514185/BlueCorrupt4.png"} +{"name":"피델리타스의 가시","refName":"Fidelitas' Spike","namespace":"UNIQUE","unique":{"base":"Jagged Foil"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0ZpZGVsaXRhc1NwaWtlIiwidyI6MSwiaCI6NCwic2NhbGUiOjF9XQ/de1d15ceb1/FidelitasSpike.png"} +{"name":"불의 노래","refName":"Firesong","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JlZEpld2VsNyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/dd6b13c77c/RedJewel7.png"} +{"name":"잔인성의 첫 번째 조각","refName":"First Piece of Brutality","namespace":"UNIQUE","unique":{"base":"Imperial Staff Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGFyYmluZ2VyU2hhcmRzL1NoYXJkMSIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/4dec967e18/Shard1.png"} +{"name":"방향의 첫 번째 조각","refName":"First Piece of Directions","namespace":"UNIQUE","unique":{"base":"Blunt Arrow Quiver Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9TaGFyZHMvU2hhcmQxIiwidyI6MSwiaCI6Miwic2NhbGUiOjF9XQ/3e8a036316/Shard1.png"} +{"name":"집중의 첫 번째 조각","refName":"First Piece of Focus","namespace":"UNIQUE","unique":{"base":"Archon Kite Shield Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoYXJkcy9DaGFubmVsaW5nU2hpZWxkU2hhcmQxIiwidyI6MSwiaCI6Miwic2NhbGUiOjF9XQ/37cf3313be/ChannelingShieldShard1.png"} +{"name":"태풍의 첫 번째 조각","refName":"First Piece of Storms","namespace":"UNIQUE","unique":{"base":"Callous Mask Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hhcmJpbmdlclNoYXJkcy9TaGFyZDEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/571346519c/Shard1.png"} +{"name":"비전의 첫 번째 조각","refName":"First Piece of the Arcane","namespace":"UNIQUE","unique":{"base":"Legion Sword Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0hhcmJpbmdlckxlYWd1ZVNoYXJkcy9IYXJiaW5nZXJTd29yZFNoYXJkMSIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/34740b6337/HarbingerSwordShard1.png"} +{"name":"시간의 첫 번째 조각","refName":"First Piece of Time","namespace":"UNIQUE","unique":{"base":"Cloth Belt Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvU2hhcmRzL0hhcmJpbmdlckJlbHRTaGFyZDEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/59ab81025f/HarbingerBeltShard1.png"} +{"name":"불꽃 시야","refName":"Flamesight","namespace":"UNIQUE","unique":{"base":"Solaris Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0V4cGxvcmVyc1Zpc2lvbkZpcmUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/972275807c/ExplorersVisionFire.png"} +{"name":"육체와 영혼","refName":"Flesh and Spirit","namespace":"UNIQUE","unique":{"base":"Ironscale Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRmxlc2hBbmRTcGlyaXQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/cff8e05a60/FleshAndSpirit.png"} +{"name":"식인종","refName":"Flesh-Eater","namespace":"UNIQUE","unique":{"base":"Dream Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U2VW5pcXVlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/2db8b10771/OneHandMace6Unique.png"} +{"name":"살점조각사","refName":"Fleshcrafter","namespace":"UNIQUE","unique":{"base":"Necromancer Silks"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Fc3NlbmNlR2lmdGVyIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/3b3446e019/EssenceGifter.png"} +{"name":"유체 운동","refName":"Fluid Motion","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1NUUnRvREVYIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f5a4ea844d/STRtoDEX.png"} +{"name":"천둥의 샘","refName":"Font of Thunder","namespace":"UNIQUE","unique":{"base":"Mirrored Spiked Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0ZvbnRPZlRodW5kZXIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/dec53fec0c/FontOfThunder.png"} +{"name":"금단의 화염","refName":"Forbidden Flame","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1B1enpsZVBpZWNlSmV3ZWxfQ2xlYW5zaW5nRmlyZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ddfe57ac90/PuzzlePieceJewel_CleansingFire.png"} +{"name":"금단의 살점","refName":"Forbidden Flesh","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1B1enpsZVBpZWNlSmV3ZWxfR3JlYXRUYW5nbGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9035b9ffd4/PuzzlePieceJewel_GreatTangle.png"} +{"name":"금단의 샤코","refName":"Forbidden Shako","namespace":"UNIQUE","unique":{"base":"Great Crown","fixedStats":["+# to all Attributes"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RoZUVwaXBoYW55IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/e8e44ba854/TheEpiphany.png"} +{"name":"금단의 맛","refName":"Forbidden Taste","namespace":"UNIQUE","unique":{"base":"Quartz Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvUGhhbnRvbUJsb29kIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/d04fc2ce16/PhantomBlood.png"} +{"name":"요새 계약","refName":"Fortress Covenant","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0JsdWVKZXdlbDQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5801f4441d/BlueJewel4.png"} +{"name":"집중의 네 번째 조각","refName":"Fourth Piece of Focus","namespace":"UNIQUE","unique":{"base":"Archon Kite Shield Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoYXJkcy9DaGFubmVsaW5nU2hpZWxkU2hhcmQ0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/dd368f0f34/ChannelingShieldShard4.png"} +{"name":"여우 그림자","refName":"Foxshade","namespace":"UNIQUE","unique":{"base":"Wild Leather"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Gb3hzaGFkZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/bf15e97218/Foxshade.png"} +{"name":"프랙털 사상","refName":"Fractal Thoughts","namespace":"UNIQUE","unique":{"base":"Vaal Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0ZyYWN0YWx0aG91Z2h0cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/64d44c7c52/Fractalthoughts.png"} +{"name":"허약","refName":"Fragility","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JlZENvcnJ1cHQ2IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/161d0c411c/RedCorrupt6.png"} +{"name":"서리 숨결","refName":"Frostbreath","namespace":"UNIQUE","unique":{"base":"Ornate Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvRnJvc3RCcmVhdGgiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8a6b305388/FrostBreath.png"} +{"name":"광분의 밸브","refName":"Fury Valve","namespace":"UNIQUE","unique":{"base":"Turquoise Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9NZXRhbW9ycGhvc2lzQW11bGV0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f8bdb14091/MetamorphosisAmulet.png"} +{"name":"강풍 시야","refName":"Galesight","namespace":"UNIQUE","unique":{"base":"Solaris Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0V4cGxvcmVyc1Zpc2lvbkNvbGQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/702f0515fb/ExplorersVisionCold.png"} +{"name":"도박질주","refName":"Gamblesprint","namespace":"UNIQUE","unique":{"base":"Hydrascale Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9VbHRpbWF0dW1Cb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/2e5d0d7dc7/UltimatumBoots.png"} +{"name":"무리의 추진력","refName":"Gang's Momentum","namespace":"UNIQUE","unique":{"base":"Legion Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9HYW5nc0Jvb3RzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/4443459d14/GangsBoots.png"} +{"name":"덧없는 자의 의복","refName":"Garb of the Ephemeral","namespace":"UNIQUE","unique":{"base":"Savant's Robe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaGVUZW1wbGFyc1JvYmVzIiwidyI6MiwiaCI6Mywic2NhbGUiOjEsInN5bnRoZXNpc2VkIjp0cnVlfV0/bd9f49e4b4/TheTemplarsRobes.png"} +{"name":"가루칸의 비행","refName":"Garukhan's Flight","namespace":"UNIQUE","unique":{"base":"Stealth Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Ud29Ub25lZEJvb3RzQUxUIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/4e0bb109ae/TwoTonedBootsALT.png"} +{"name":"조프리의 세례","refName":"Geofri's Baptism","namespace":"UNIQUE","unique":{"base":"Brass Maul"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U3VW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/378419527e/TwoHandMace7Unique.png"} +{"name":"조프리의 문양","refName":"Geofri's Crest","namespace":"UNIQUE","unique":{"base":"Great Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0dlb2ZyaXNDcmVzdCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/4daae52cf5/GeofrisCrest.png"} +{"name":"조프리의 성역","refName":"Geofri's Sanctuary","namespace":"UNIQUE","unique":{"base":"Elegant Ringmail"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9HZW9mcmlTYW5jdHVhcnkiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/6f94f74244/GeofriSanctuary.png"} +{"name":"유령의 몸서리","refName":"Ghostwrithe","namespace":"UNIQUE","unique":{"base":"Silken Vest"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9HaG9zdHdlYXZlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/95d1911033/Ghostweave.png"} +{"name":"거대한 파멸","refName":"Giantsbane","namespace":"UNIQUE","unique":{"base":"Bronze Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRGVhdGhmb3JnZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/88c0b6908a/Deathforge.png"} +{"name":"하늘에서 내려준 선물","refName":"Gifts from Above","namespace":"UNIQUE","unique":{"base":"Diamond Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvRGlhbW9uZFJpbmdVbmlxdWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8edaf6655a/DiamondRingUnique.png"} +{"name":"혼돈의 섬광","refName":"Glimpse of Chaos","namespace":"UNIQUE","unique":{"base":"Vaal Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1ZhYWxDb3JydXB0aW9uSGVsbWV0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/3476e5818d/VaalCorruptionHelmet.png"} +{"name":"그롬팡","refName":"Gloomfang","namespace":"UNIQUE","unique":{"base":"Blue Pearl Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9TaGFkb3dSYXkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9c05fb0b03/ShadowRay.png"} +{"name":"찬란한 허영심","refName":"Glorious Vanity","namespace":"UNIQUE","unique":{"base":"Timeless Jewel","fixedStats":["Historic"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1ZhYWxDaXZpbGl6YXRpb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/568c0e7c98/VaalCivilization.png"} +{"name":"폭식","refName":"Gluttony","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvR2x1dHRvbnkiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/850a3a646d/Gluttony.png"} +{"name":"고블린날","refName":"Goblinedge","namespace":"UNIQUE","unique":{"base":"Ambusher"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0dvYmxpbkVkZ2UiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/61d1382d07/GoblinEdge.png"} +{"name":"금테","refName":"Goldrim","namespace":"UNIQUE","unique":{"base":"Leather Cap"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleFVuaXF1ZTIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/7f4908ef2f/HelmetDexUnique2.png"} +{"name":"황금 아룡","refName":"Goldwyrm","namespace":"UNIQUE","unique":{"base":"Nubuck Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleFVuaXF1ZTIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/548228175c/BootsDexUnique2.png"} +{"name":"유혈 분쇄기","refName":"Gorebreaker","namespace":"UNIQUE","unique":{"base":"Spiked Club"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2UzVW5pcXVlIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/c3ca02cad8/OneHandMace3Unique.png"} +{"name":"유혈 관통","refName":"Goredrill","namespace":"UNIQUE","unique":{"base":"Skinning Knife"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0dvcmVkcmlsbCIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/e61d6f038e/Goredrill.png"} +{"name":"고르곤의 응시","refName":"Gorgon's Gaze","namespace":"UNIQUE","unique":{"base":"Regicide Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1BpbGxhcnNPZkFydW4iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/49ec219fc5/PillarsOfArun.png"} +{"name":"여신의 은총","refName":"Grace of the Goddess","namespace":"UNIQUE","unique":{"base":"Prophecy Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9VYmVyTWF2ZW5XYW5kIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/1e06b23a5b/UberMavenWand.png"} +{"name":"장대한 파장","refName":"Grand Spectrum","namespace":"UNIQUE","unique":{"base":"Viridian Jewel","fixedStats":[]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dyZWVuR3JhbmRTcGVjdHJ1bSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/df87965e3f/GreenGrandSpectrum.png"} +{"name":"장대한 파장","refName":"Grand Spectrum","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel","fixedStats":[]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0JsdWVHcmFuZFNwZWN0cnVtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b1282ca004/BlueGrandSpectrum.png"} +{"name":"장대한 파장","refName":"Grand Spectrum","namespace":"UNIQUE","unique":{"base":"Crimson Jewel","fixedStats":[]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JlZEdyYW5kU3BlY3RydW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3e6789a065/RedGrandSpectrum.png"} +{"name":"탐욕스러운 까마중","refName":"Grasping Nightshade","namespace":"UNIQUE","unique":{"base":"Sporebloom Tincture"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL1VuaXF1ZVNwb3JlYmxvb20iLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MX1d/7b26d28408/UniqueSporebloom.png"} +{"name":"그라투스 인장","refName":"Grattus Signet","namespace":"UNIQUE","unique":{"base":"Diamond Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvR3JhdHR1c1JpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/230a414e3d/GrattusRing.png"} +{"name":"무덤의 속박","refName":"Gravebind","namespace":"UNIQUE","unique":{"base":"Hydrascale Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRGVhdGhHcmlwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/371752d95c/DeathGrip.png"} +{"name":"그레이븐의 비밀","refName":"Graven's Secret","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQWx0Q2hhcmdlSW50IiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/1300aed2ac/AltChargeInt.png"} +{"name":"위대한 고대 신의 촉수","refName":"Great Old One's Tentacles","namespace":"UNIQUE","unique":{"base":"Eelskin Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvSW1wYWxlR2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/37dd8738f8/ImpaleGloves.png"} +{"name":"위대한 고대 신의 수호","refName":"Great Old One's Ward","namespace":"UNIQUE","unique":{"base":"Corrugated Buckler"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0dyZWF0T2xkT25lc1dhcmQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3c0efbf6be/GreatOldOnesWard.png"} +{"name":"탐욕의 포옹","refName":"Greed's Embrace","namespace":"UNIQUE","unique":{"base":"Golden Plate"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9HcmVlZHNFbWJyYWNlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/0e8984128f/GreedsEmbrace.png"} +{"name":"그렐나무 자루","refName":"Grelwood Shank","namespace":"UNIQUE","unique":{"base":"Eternal Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL1ZlcmRhbnRHdWFyZGlhblN3b3JkMSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/b085f741a5/VerdantGuardianSword1.png"} +{"name":"의회의 장악","refName":"Grip of the Council","namespace":"UNIQUE","unique":{"base":"Arcanist Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50M1VuaXF1ZTIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/88338fac41/GlovesInt3Unique2.png"} +{"name":"그루스컬의 가죽","refName":"Gruthkul's Pelt","namespace":"UNIQUE","unique":{"base":"Wyrmscale Doublet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9XaWxlZmFuZ3NQZWx0IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/e393dbd9af/WilefangsPelt.png"} +{"name":"혈우병","refName":"Haemophilia","namespace":"UNIQUE","unique":{"base":"Serpentscale Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvYmxlZWRnbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/005045bec7/bleedgloves.png"} +{"name":"건장한 부정자","refName":"Hale Negator","namespace":"UNIQUE","unique":{"base":"Mind Cage"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hhbGVOZWdhdG9yIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/f1a292f713/HaleNegator.png"} +{"name":"명인의 전당","refName":"Hall of Grandmasters","namespace":"UNIQUE","unique":{"base":"Promenade Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9IYWxsT2ZHcmFuZG1hc3RlcnMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/73778c0f28/HallOfGrandmasters.png"} +{"name":"거룩한 대지","refName":"Hallowed Ground","namespace":"UNIQUE","unique":{"base":"Cemetery Map"},"map":{"screenshot":"https://i.imgur.com/CvyxLuI.jpg"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9IYWxsb3dlZEdyb3VuZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0dfbdc7da9/HallowedGround.png"} +{"name":"열렬한 자의 손","refName":"Hand of the Fervent","namespace":"UNIQUE","unique":{"base":"Zealot Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR3JpcG9mU2FjcmlmaWNlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/9ac4073c28/GripofSacrifice.png"} +{"name":"사고와 움직임의 손아귀","refName":"Hand of Thought and Motion","namespace":"UNIQUE","unique":{"base":"Imperial Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9UaG91Z2h0TW90aW9uMSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/cc443b5108/ThoughtMotion1.png"} +{"name":"지혜와 행동의 손아귀","refName":"Hand of Wisdom and Action","namespace":"UNIQUE","unique":{"base":"Imperial Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9UaG91Z2h0TW90aW9uMiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/69f2b430d0/ThoughtMotion2.png"} +{"name":"고위 템플러의 손","refName":"Hands of the High Templar","namespace":"UNIQUE","unique":{"base":"Crusader Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvSGFuZHNPZlRoZUhpZ2hUZW1wbGFyIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/239b2df5cf/HandsOfTheHighTemplar.png"} +{"name":"증오의 탄생","refName":"Hateforge","namespace":"UNIQUE","unique":{"base":"Ancient Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvVmFhbFJhZ2VHbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/fbc53ac89d/VaalRageGloves.png"} +{"name":"헤드헌터","refName":"Headhunter","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSGVhZGh1bnRlciIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/e9542ec6ee/Headhunter.png"} +{"name":"건강한 마음","refName":"Healthy Mind","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0JsdWVKZXdlbDciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/73584bc29e/BlueJewel7.png"} +{"name":"마음에 묶인 고리","refName":"Heartbound Loop","namespace":"UNIQUE","unique":{"base":"Moonstone Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvSGVhcnRib3VuZFJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c214aff507/HeartboundRing.png"} +{"name":"심장 분쇄기","refName":"Heartbreaker","namespace":"UNIQUE","unique":{"base":"Royal Skean"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0hlYXJ0YnJlYWtlciIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/fa73c4d5b4/Heartbreaker.png"} +{"name":"열기와 오한","refName":"Heatshiver","namespace":"UNIQUE","unique":{"base":"Leather Hood"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlYXRzaGl2ZXIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/b1860c890e/Heatshiver.png"} +{"name":"패권의 시대","refName":"Hegemony's Era","namespace":"UNIQUE","unique":{"base":"Judgement Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGVnZW1vbnlzRXJhIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/85929506ae/HegemonysEra.png"} +{"name":"이단자의 면사포","refName":"Heretic's Veil","namespace":"UNIQUE","unique":{"base":"Deicide Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0ZhY2VPZkRpdmluaXR5IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/dcefc8975e/FaceOfDivinity.png"} +{"name":"헤즈마나의 유혈 충동","refName":"Hezmana's Bloodlust","namespace":"UNIQUE","unique":{"base":"Vaal Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9IZXptYW5hc0Jsb29kbHVzdCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/fdbd48147f/HezmanasBloodlust.png"} +{"name":"숨겨진 잠재력","refName":"Hidden Potential","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL3VuaXF1ZTE3IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/c445828c50/unique17.png"} +{"name":"고통의 검","refName":"Hiltless","namespace":"UNIQUE","unique":{"base":"Reaver Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL0hpbHRsZXNzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/04689b7d41/Hiltless.png"} +{"name":"히네코라의 통찰력","refName":"Hinekora's Sight","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9IaW5la29yYXNTaWdodCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/13820d857f/HinekorasSight.png"} +{"name":"명예의 총본산","refName":"Honourhome","namespace":"UNIQUE","unique":{"base":"Soldier Helmet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hvbm91cmhvbWUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/11382c25e9/Honourhome.png"} +{"name":"희망 종결자","refName":"Hopeshredder","namespace":"UNIQUE","unique":{"base":"Ranger Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0VsZGVyQm93IiwidyI6MiwiaCI6NCwic2NhbGUiOjEsImVsZGVyIjp0cnVlfV0/0dcd0422ae/ElderBow.png"} +{"name":"흐림노르의 찬가","refName":"Hrimnor's Hymn","namespace":"UNIQUE","unique":{"base":"Sledgehammer"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U2VW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/31ad6258ac/TwoHandMace6Unique.png"} +{"name":"흐림노르의 결의","refName":"Hrimnor's Resolve","namespace":"UNIQUE","unique":{"base":"Samnite Helmet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hyaW1ub3JzUmVzb2x2ZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/cb3ab90132/HrimnorsResolve.png"} +{"name":"흐림소로우","refName":"Hrimsorrow","namespace":"UNIQUE","unique":{"base":"Goathide Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvSHJpbXNvcnJvdyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/bc13b3487c/Hrimsorrow.png"} +{"name":"하야온의 광분","refName":"Hyaon's Fury","namespace":"UNIQUE","unique":{"base":"Legion Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0h5YW9uc0Z1cnkiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/1abaf6507b/HyaonsFury.png"} +{"name":"북방 주민","refName":"Hyperboreus","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmV0cmF5YWxfVW5pcXVlX1RyYW5zcG9ydF9CZWx0IiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/52b9b09a12/Betrayal_Unique_Transport_Belt.png"} +{"name":"하이리의 이빨","refName":"Hyrri's Bite","namespace":"UNIQUE","unique":{"base":"Sharktooth Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9Icnl5aXNCaXRlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/91937737c4/HryyisBite.png"} +{"name":"하이리의 노여움","refName":"Hyrri's Ire","namespace":"UNIQUE","unique":{"base":"Zodiac Leather"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4M0NVbmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/fb532d6c21/BodyDex3CUnique.png"} +{"name":"하이리의 진리","refName":"Hyrri's Truth","namespace":"UNIQUE","unique":{"base":"Jade Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9TeW50aGVzaXNBY2N1cmFjeUFtdWxldCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6062fd361e/SynthesisAccuracyAmulet.png"} +{"name":"얼음송곳니의 위력","refName":"Icefang Orbit","namespace":"UNIQUE","unique":{"base":"Iron Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvSWNlZmFuZ09yYml0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/da6e5eb5aa/IcefangOrbit.png"} +{"name":"얼음 묘지","refName":"Icetomb","namespace":"UNIQUE","unique":{"base":"Latticed Ringmail"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9JY2V0b21iIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/956a92a3fd/Icetomb.png"} +{"name":"이치몬지","refName":"Ichimonji","namespace":"UNIQUE","unique":{"base":"Corsair Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0JsYWRlT2ZWYXN0cmkiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/a01d200e74/BladeOfVastri.png"} +{"name":"이키아호의 약속","refName":"Ikiaho's Promise","namespace":"UNIQUE","unique":{"base":"Coral Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Ja2lhaG9BbXVsZXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/119e919299/IkiahoAmulet.png"} +{"name":"불멸의 육체","refName":"Immortal Flesh","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSW1tb3J0YWxGbGVzaCIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/fceb1b8f8c/ImmortalFlesh.png"} +{"name":"불변의 힘","refName":"Immutable Force","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JlZEpld2VsMiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/87ba4f5e53/RedJewel2.png"} +{"name":"불가능한 탈출","refName":"Impossible Escape","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL01pbmRib3JlUGVhcmwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/367683a1bb/MindborePearl.png"} +{"name":"무존재","refName":"Impresence","namespace":"UNIQUE","unique":{"base":"Onyx Amulet","fixedStats":["Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy","Regenerate #% of Life per second","Regenerate #% of Energy Shield per second","#% increased Stun and Block Recovery","Adds # to # Cold Damage","Adds # to # Fire Damage","Adds # to # Lightning Damage","Adds # to # Physical Damage"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9FbGRlckZpcmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MSwiZWxkZXIiOnRydWV9XQ/e46ce6b266/ElderFire.png"} +{"name":"백열하는 심장","refName":"Incandescent Heart","namespace":"UNIQUE","unique":{"base":"Saintly Chainmail"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9JbGx1bWluYXRpcyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/da0dbbc10a/Illuminatis.png"} +{"name":"인디곤","refName":"Indigon","namespace":"UNIQUE","unique":{"base":"Hubris Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1ViZXJFbGRlckhlbG1ldCIsInciOjIsImgiOjIsInNjYWxlIjoxLCJzaGFwZXIiOnRydWV9XQ/3ba8eceecd/UberElderHelmet.png"} +{"name":"관성","refName":"Inertia","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0RFWHRvU1RSIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2fc9d85725/DEXtoSTR.png"} +{"name":"불가분한 운명","refName":"Inextricable Fate","namespace":"UNIQUE","unique":{"base":"Fugitive Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9WaW5lZ3Jhc3BCb290c1VuaXF1ZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/4f56e4bdb0/VinegraspBootsUnique.png"} +{"name":"지옥불 외투","refName":"Infernal Mantle","namespace":"UNIQUE","unique":{"base":"Widowsilk Robe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9JbmZlcm5hbG1hbnRsZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/ea1b86d7f9/Infernalmantle.png"} +{"name":"침범자","refName":"Infractem","namespace":"UNIQUE","unique":{"base":"Decimation Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0luZnJhY3RlbSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/ea06e13fb8/Infractem.png"} +{"name":"주입된 교두보","refName":"Infused Beachhead","namespace":"UNIQUE","unique":{"base":"Harbinger Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9IYXJiaW5nZXJVYmVyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/91398360e4/HarbingerUber.png"} +{"name":"인스뷰리 칼날","refName":"Innsbury Edge","namespace":"UNIQUE","unique":{"base":"Elder Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0VsZGVyU3dvcmQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2bd26d4bf6/ElderSword.png"} +{"name":"인펄사의 상심","refName":"Inpulsa's Broken Heart","namespace":"UNIQUE","unique":{"base":"Sadist Garb"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9PblNob2NrZWQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/ce499f7b0b/OnShocked.png"} +{"name":"탁월한 학습","refName":"Inspired Learning","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL3VuaXF1ZTciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/05e61f124f/unique7.png"} +{"name":"직관의 도약","refName":"Intuitive Leap","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL3VuaXF1ZTYiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f2dc5c37a5/unique6.png"} +{"name":"지지 않는 태양","refName":"Invictus Solaris","namespace":"UNIQUE","unique":{"base":"Archon Kite Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0ludmljdHVzIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/98194c56fe/Invictus.png"} +{"name":"이냐의 통찰","refName":"Inya's Epiphany","namespace":"UNIQUE","unique":{"base":"Arcanist Slippers"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9QYWxlQ291bmNpbEJvb3RzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/78e277875f/PaleCouncilBoots.png"} +{"name":"철의 지휘관","refName":"Iron Commander","namespace":"UNIQUE","unique":{"base":"Death Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0lyb25Db21tZW5kYW50IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/001ca245e3/IronCommendant.png"} +{"name":"익스첼의 유혹","refName":"Ixchel's Temptation","namespace":"UNIQUE","unique":{"base":"Gold Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQWx0QnJlYWNoIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b2c5201c70/AltBreach.png"} +{"name":"도끼마 잭","refName":"Jack, the Axe","namespace":"UNIQUE","unique":{"base":"Vaal Hatchet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9KYWNrdGhlYXhlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f1f813fe9f/Jacktheaxe.png"} +{"name":"고통의 턱","refName":"Jaws of Agony","namespace":"UNIQUE","unique":{"base":"Supreme Spiked Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0JlYXJUcmFwU2hpZWxkMiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/4d66593647/BearTrapShield2.png"} +{"name":"요르하스트의 강철","refName":"Jorrhast's Blacksteel","namespace":"UNIQUE","unique":{"base":"Steelhead"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvSm9ycmhhc3RzQmxhY2tzdGVlbCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/a1ee3a6a3c/JorrhastsBlacksteel.png"} +{"name":"카후투로아의 확신","refName":"Kahuturoa's Certainty","namespace":"UNIQUE","unique":{"base":"Ancient Greaves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9LYWh1dHVyb2FCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/1453ec94bb/KahuturoaBoots.png"} +{"name":"칼란드라의 손길","refName":"Kalandra's Touch","namespace":"UNIQUE","unique":{"base":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTWlycm9yUmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxLCJkdXBsaWNhdGVkIjp0cnVlfV0/2cbd02eced/MirrorRing.png"} +{"name":"칼리사의 은총","refName":"Kalisa's Grace","namespace":"UNIQUE","unique":{"base":"Samite Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvS2FsaXNhc0dyYWNlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/b165e39eff/KalisasGrace.png"} +{"name":"붙잡은 냉기","refName":"Kaltenhalt","namespace":"UNIQUE","unique":{"base":"Painted Buckler"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleFVuaXF1ZTYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/543c4a2444/ShieldDexUnique6.png"} +{"name":"카옴의 속박","refName":"Kaom's Binding","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvS2FvbUJlbHQiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/94edbfb12d/KaomBelt.png"} +{"name":"카옴의 심장","refName":"Kaom's Heart","namespace":"UNIQUE","unique":{"base":"Glorious Plate"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyM0NVbmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/1027cdf1ad/BodyStr3CUnique.png"} +{"name":"카옴의 탁월함","refName":"Kaom's Primacy","namespace":"UNIQUE","unique":{"base":"Karui Chopper"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlMTFVbmlxdWUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/544409d7f6/TwoHandAxe11Unique.png"} +{"name":"카옴의 근본","refName":"Kaom's Roots","namespace":"UNIQUE","unique":{"base":"Titan Greaves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9LYW9tc1Jvb3RzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/23b569d35e/KaomsRoots.png"} +{"name":"카옴의 표식","refName":"Kaom's Sign","namespace":"UNIQUE","unique":{"base":"Coral Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzJVbmlxdWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/15ce180809/Ring2Unique.png"} +{"name":"카옴의 혼백","refName":"Kaom's Spirit","namespace":"UNIQUE","unique":{"base":"Titan Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvS2FvbXNTcGlyaXQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/eefa7c48f9/KaomsSpirit.png"} +{"name":"카루이의 수호","refName":"Karui Ward","namespace":"UNIQUE","unique":{"base":"Jade Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQ0VW5pcXVlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/069e4f76ea/Amulet4Unique.png"} +{"name":"키아라의 결의","refName":"Kiara's Determination","namespace":"UNIQUE","unique":{"base":"Silver Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvS2lhcmFzRGV0ZXJtaW5hdGlvbiIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/591dcd7979/KiarasDetermination.png"} +{"name":"키카자루","refName":"Kikazaru","namespace":"UNIQUE","unique":{"base":"Topaz Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvS2lrYXphcnUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/911affa06b/Kikazaru.png"} +{"name":"킬로아바의 엄포","refName":"Kiloava's Bluster","namespace":"UNIQUE","unique":{"base":"Ironwood Buckler"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0tpbG9hdmFTaGllbGQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/b1ec2a922a/KiloavaShield.png"} +{"name":"실세","refName":"Kingmaker","namespace":"UNIQUE","unique":{"base":"Despot Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9BbGV4YXhlYW5kaGVhcnRicmVha2VyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/fb47351eee/Alexaxeandheartbreaker.png"} +{"name":"왕의 보호구","refName":"Kingsguard","namespace":"UNIQUE","unique":{"base":"Conquest Chainmail"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9LaW5nc2d1YXJkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/28d6e7ff11/Kingsguard.png"} +{"name":"킨츠키","refName":"Kintsugi","namespace":"UNIQUE","unique":{"base":"Exquisite Leather"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9LaW50c3VnaSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/8fcd7ea593/Kintsugi.png"} +{"name":"키타바의 연회","refName":"Kitava's Feast","namespace":"UNIQUE","unique":{"base":"Void Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9LaXRhdmFzSHVuZ2VyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/7e0b7ac41a/KitavasHunger.png"} +{"name":"키타바의 가르침","refName":"Kitava's Teachings","namespace":"UNIQUE","unique":{"base":"Small Cluster Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0Rpc2NpcGxlT2ZLaXRhdmFKZXdlbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/43d818445c/DiscipleOfKitavaJewel.png"} +{"name":"키타바의 갈증","refName":"Kitava's Thirst","namespace":"UNIQUE","unique":{"base":"Zealot Helmet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0tpdGF2YXNUaGlyc3QiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/585034f884/KitavasThirst.png"} +{"name":"콘도의 자부심","refName":"Kondo's Pride","namespace":"UNIQUE","unique":{"base":"Ezomyte Blade"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL0tvbmRvc1ByaWRlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/59f41a868c/KondosPride.png"} +{"name":"공명의 계략","refName":"Kongming's Stratagem","namespace":"UNIQUE","unique":{"base":"Ancient Spirit Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0tvbmdtaW5nc1N0cmF0YWdlbSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/b7f1e57399/KongmingsStratagem.png"} +{"name":"콩고르의 끝없는 격노","refName":"Kongor's Undying Rage","namespace":"UNIQUE","unique":{"base":"Terror Maul"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvS29uZ29yc1VuZHlpbmdSYWdlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/5fa26110bc/KongorsUndyingRage.png"} +{"name":"쿠르갈의 응시","refName":"Kurgal's Gaze","namespace":"UNIQUE","unique":{"base":"Hypnotic Eye Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0h5cG5vdGljRXllVW5pcXVlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f909ca8b69/HypnoticEyeUnique.png"} +{"name":"라키슈의 검","refName":"Lakishu's Blade","namespace":"UNIQUE","unique":{"base":"Elegant Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDVVbmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5a5771852b/OneHandSword5Unique.png"} +{"name":"최후의 수단","refName":"Last Resort","namespace":"UNIQUE","unique":{"base":"Nailed Fist"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9OZXJhc0xhc3RSZXNvcnQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5f5a6bd205/NerasLastResort.png"} +{"name":"라비앙가의 혼백","refName":"Lavianga's Spirit","namespace":"UNIQUE","unique":{"base":"Sanctified Mana Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvTGF2aWFuZ2FzT2lsIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/44f064d737/LaviangasOil.png"} +{"name":"라비앙가의 지혜","refName":"Lavianga's Wisdom","namespace":"UNIQUE","unique":{"base":"War Hammer"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2UzYSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/3c0044c7be/OneHandMace3a.png"} +{"name":"황야의 법칙","refName":"Law of the Wilds","namespace":"UNIQUE","unique":{"base":"Hellion's Paw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9Xb2xmQ2xhdyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/8dd39cb98e/WolfClaw.png"} +{"name":"만인의 르 흐프","refName":"Le Heup of All","namespace":"UNIQUE","unique":{"base":"Iron Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTGVoZXVwb2ZhbGwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6ea73cc7e4/Leheupofall.png"} +{"name":"통솔력의 가치","refName":"Leadership's Price","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9LdXJhaXNNYXN0ZXJ5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/bf33f8013a/KuraisMastery.png"} +{"name":"봉헌의 가죽끈","refName":"Leash of Oblation","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvTGVhc2hPZk9ibGF0aW9uIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/f865c7f643/LeashOfOblation.png"} +{"name":"음흉한 시선","refName":"Leer Cast","namespace":"UNIQUE","unique":{"base":"Festival Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDl4IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/6693f97fdf/HelmetDexInt9x.png"} +{"name":"광분의 유산","refName":"Legacy of Fury","namespace":"UNIQUE","unique":{"base":"Wyrmscale Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TY29yY2hlZEVhcnRoIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/fda63f7588/ScorchedEarth.png"} +{"name":"나병 환자의 자선","refName":"Leper's Alms","namespace":"UNIQUE","unique":{"base":"Mirrored Spiked Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0xlcGVyc0FsbXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3f9c2a1cec/LepersAlms.png"} +{"name":"치명적인 긍지","refName":"Lethal Pride","namespace":"UNIQUE","unique":{"base":"Timeless Jewel","fixedStats":["Historic"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0thcnVpQ2l2aWxpemF0aW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/04aefd20e6/KaruiCivilization.png"} +{"name":"생명의 가지","refName":"Lifesprig","namespace":"UNIQUE","unique":{"base":"Driftwood Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9MaWZlU3ByaWciLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/8e97a1d808/LifeSprig.png"} +{"name":"루나리스의 빛","refName":"Light of Lunaris","namespace":"UNIQUE","unique":{"base":"Jingling Spirit Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0x1bmFyaXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/a684af2793/Lunaris.png"} +{"name":"사그라든 빛의 의복","refName":"Lightbane Raiment","namespace":"UNIQUE","unique":{"base":"Ornate Ringmail"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9MaWdodGJhbmVyYWlubWVudCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/016757db31/Lightbanerainment.png"} +{"name":"번개 도선","refName":"Lightning Coil","namespace":"UNIQUE","unique":{"base":"Desert Brigandine"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9MaWdodG5pbmdDb2lsIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/1b36c39f5a/LightningCoil.png"} +{"name":"빛의 밀렵꾼","refName":"Lightpoacher","namespace":"UNIQUE","unique":{"base":"Great Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0FieXNzSGVsbWV0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/45c869b05c/AbyssHelmet.png"} +{"name":"사지 분할기","refName":"Limbsplit","namespace":"UNIQUE","unique":{"base":"Woodsplitter"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlX3NwYXJlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/6cc29798f1/TwoHandAxe_spare.png"} +{"name":"사자의 포효","refName":"Lion's Roar","namespace":"UNIQUE","unique":{"base":"Granite Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MveUZsYXNrNSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/69fe070e32/yFlask5.png"} +{"name":"라이온아이의 몰락","refName":"Lioneye's Fall","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0xpb25leWVzRmFsbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/164c5c1080/LioneyesFall.png"} +{"name":"라이온아이의 섬광","refName":"Lioneye's Glare","namespace":"UNIQUE","unique":{"base":"Imperial Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0Jvdzh1bmlxdWUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/29fc966523/Bow8unique.png"} +{"name":"라이온아이의 발","refName":"Lioneye's Paws","namespace":"UNIQUE","unique":{"base":"Bronzescale Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9MaW9uZXllc1Bhd3MiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/550a8f59d4/LioneyesPaws.png"} +{"name":"라이온아이의 후회","refName":"Lioneye's Remorse","namespace":"UNIQUE","unique":{"base":"Pinnacle Tower Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0clVuaXF1ZTYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/dd7ee8e1a0/ShieldStrUnique6.png"} +{"name":"라이온아이의 시각","refName":"Lioneye's Vision","namespace":"UNIQUE","unique":{"base":"Crusader Plate"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9MaW9uZXllc0FybW91ciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/b6e10a9216/LioneyesArmour.png"} +{"name":"록토니얼의 손길","refName":"Lochtonial Caress","namespace":"UNIQUE","unique":{"base":"Iron Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvTG9jaHRvbmlhbENhcmVzcyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/4609116291/LochtonialCaress.png"} +{"name":"지식의 매듭","refName":"Loreweave","namespace":"UNIQUE","unique":{"base":"Elegant Ringmail"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Mb3Jld2VhdmUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/fd11495220/Loreweave.png"} +{"name":"로리의 등불","refName":"Lori's Lantern","namespace":"UNIQUE","unique":{"base":"Prismatic Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTG9yaXNMYW50ZXJuIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/7abe3ca54f/LorisLantern.png"} +{"name":"늑대 거미","refName":"Lycosidae","namespace":"UNIQUE","unique":{"base":"Rawhide Tower Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0x5Y29zaWRhZSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/ec38e32a56/Lycosidae.png"} +{"name":"마아타의 가르침","refName":"Maata's Teaching","namespace":"UNIQUE","unique":{"base":"Karui Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9NYWF0YVNjZXB0cmUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/27dd9da5a6/MaataSceptre.png"} +{"name":"마키나 미트","refName":"Machina Mitts","namespace":"UNIQUE","unique":{"base":"Murder Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvODU0NzkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/360a5df732/85479.png"} +{"name":"혼돈의 마엘스트롬","refName":"Maelström of Chaos","namespace":"UNIQUE","unique":{"base":"Atoll Map"},"map":{"screenshot":"https://i.imgur.com/Y7V6E2k.jpg"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9NYWVsc3Ryb21vZkNoYW9zIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/7772c4e971/MaelstromofChaos.png"} +{"name":"마법사의 피","refName":"Mageblood","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSW5qZWN0b3JCZWx0IiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/21ec0269de/InjectorBelt.png"} +{"name":"커다란 일식","refName":"Magna Eclipsis","namespace":"UNIQUE","unique":{"base":"Pinnacle Tower Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL01hZ25pc0VjbGlwc2lzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/1e76b68e1a/MagnisEclipsis.png"} +{"name":"마훅소틀의 계책","refName":"Mahuxotl's Machination","namespace":"UNIQUE","unique":{"base":"Steel Kite Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL01haHV4b3RsU2hpZWxkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/b39b6fe011/MahuxotlShield.png"} +{"name":"말라카이의 책략","refName":"Malachai's Artifice","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTWFsYWNoYWlzQXJ0aWZpY2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/dfbb52ebfe/MalachaisArtifice.png"} +{"name":"말라카이의 고리","refName":"Malachai's Loop","namespace":"UNIQUE","unique":{"base":"Harmonic Spirit Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL01hbGFjaGFpTG9vcCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/8c38fb6a4e/MalachaiLoop.png"} +{"name":"말라카이의 징표","refName":"Malachai's Mark","namespace":"UNIQUE","unique":{"base":"Murder Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvTWFsYWNoYWlzTWFyayIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/2f2a8c0dff/MalachaisMark.png"} +{"name":"말라카이의 위장막","refName":"Malachai's Simula","namespace":"UNIQUE","unique":{"base":"Iron Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01hbGFjaGFpc1NpbXVsYSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/8bf83455f4/MalachaisSimula.png"} +{"name":"말라카이의 시각","refName":"Malachai's Vision","namespace":"UNIQUE","unique":{"base":"Praetor Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01hbGFjaGFpc1Zpc2lvbiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/bbdd9c241f/MalachaisVision.png"} +{"name":"말리가로의 잔혹성","refName":"Maligaro's Cruelty","namespace":"UNIQUE","unique":{"base":"Turquoise Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQxNSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f1b938bbd1/Amulet15.png"} +{"name":"말리가로의 렌즈","refName":"Maligaro's Lens","namespace":"UNIQUE","unique":{"base":"Compound Spiked Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL01hbGlnYXJvc0xlbnMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/514791cb42/MaligarosLens.png"} +{"name":"말리가로의 속박","refName":"Maligaro's Restraint","namespace":"UNIQUE","unique":{"base":"Chain Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvTWFsaWdhcm9zUmVzdHJhaW50IiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/17a500cb6f/MaligarosRestraint.png"} +{"name":"말리가로의 기교","refName":"Maligaro's Virtuosity","namespace":"UNIQUE","unique":{"base":"Deerskin Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvTWFsaWdhcm9zVmlydG91c2l0eSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7cdbba458f/MaligarosVirtousity.png"} +{"name":"말로니의 기계 장치","refName":"Maloney's Mechanism","namespace":"UNIQUE","unique":{"base":"Ornate Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9UcmlnZ2VyUXVpdmVyQmFzZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/1f3958bdb3/TriggerQuiverBase.png"} +{"name":"말로니의 해질녘","refName":"Maloney's Nightfall","namespace":"UNIQUE","unique":{"base":"Vile Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9NYWxvbmV5c05pZ2h0ZmFsbCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/aad4bc5b10/MaloneysNightfall.png"} +{"name":"마나폭풍","refName":"Manastorm","namespace":"UNIQUE","unique":{"base":"Lacewood Spirit Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL01hbmFzdG9ybSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/d816fe3053/Manastorm.png"} +{"name":"마오 쿤","refName":"Mao Kun","namespace":"UNIQUE","unique":{"base":"Shore Map"},"map":{"screenshot":"https://i.imgur.com/EceJCHQ.jpg"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9GYWlyZ3JhdmVzTWFwMDEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e1c1de7d51/FairgravesMap01.png"} +{"name":"군단의 행진","refName":"March of the Legion","namespace":"UNIQUE","unique":{"base":"Legion Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9BdXJhQm9vdHMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/736eee69a4/AuraBoots.png"} +{"name":"복종의 징표","refName":"Mark of Submission","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmVkQnJhbmRSaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8f15300177/RedBrandRing.png"} +{"name":"불안한 기사의 징표","refName":"Mark of the Doubting Knight","namespace":"UNIQUE","unique":{"base":"Platinum Kris"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RvdWJ0aW5nS25pZ2h0IiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/a71d0de38e/DoubtingKnight.png"} +{"name":"엘더의 징표","refName":"Mark of the Elder","namespace":"UNIQUE","unique":{"base":"Steel Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVWJlckVsZGVyUmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxLCJlbGRlciI6dHJ1ZX1d/02f45acdfb/UberElderRing.png"} +{"name":"붉은 계약의 징표","refName":"Mark of the Red Covenant","namespace":"UNIQUE","unique":{"base":"Tribal Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1BoYW50YXNtbGFGbGFtZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0d222d092f/PhantasmlaFlame.png"} +{"name":"쉐이퍼의 징표","refName":"Mark of the Shaper","namespace":"UNIQUE","unique":{"base":"Opal Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVWJlclNoYXBlclJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MSwic2hhcGVyIjp0cnVlfV0/d856526767/UberShaperRing.png"} +{"name":"마로히 에르키","refName":"Marohi Erqi","namespace":"UNIQUE","unique":{"base":"Karui Maul"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2UydW5pcXVlMiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/6ae0a56923/TwoHandMace2unique2.png"} +{"name":"결백한 순교자","refName":"Martyr of Innocence","namespace":"UNIQUE","unique":{"base":"Highborn Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvTWFydHlySW5ub2NlbmNlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/6fd4eee9df/MartyrInnocence.png"} +{"name":"마릴린의 오산","refName":"Marylene's Fallacy","namespace":"UNIQUE","unique":{"base":"Lapis Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9NYXJ5bGVuZXNGYWxsYWN5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1665e40d51/MarylenesFallacy.png"} +{"name":"영혼 흡수자의 가면","refName":"Mask of the Spirit Drinker","namespace":"UNIQUE","unique":{"base":"Magistrate Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01hc2tvZnRoZVNwaXJpdERyaW5rZXIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/7a9bcf5886/MaskoftheSpiritDrinker.png"} +{"name":"꿰맨 악마의 가면","refName":"Mask of the Stitched Demon","namespace":"UNIQUE","unique":{"base":"Magistrate Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01hc2tvZnRoZVN0aXRjaGVkRGVtb24iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0e24c9f156/MaskoftheStitchedDemon.png"} +{"name":"재판소의 가면","refName":"Mask of the Tribunal","namespace":"UNIQUE","unique":{"base":"Magistrate Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldE9mRG9taW5hbmNlMiIsInciOjIsImgiOjIsInNjYWxlIjoxLCJzeW50aGVzaXNlZCI6dHJ1ZX1d/7cac104f3e/HelmetOfDominance2.png"} +{"name":"마투아 투푸나","refName":"Matua Tupuna","namespace":"UNIQUE","unique":{"base":"Tarnished Spirit Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL01hdHVhdHVwdW5hIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/db1b66f81d/Matuatupuna.png"} +{"name":"정복지의 구렁텅이","refName":"Maw of Conquest","namespace":"UNIQUE","unique":{"base":"Steel Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01hd09mQ29ucXVlc3QiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4d335be1c6/MawOfConquest.png"} +{"name":"말썽의 나락","refName":"Maw of Mischief","namespace":"UNIQUE","unique":{"base":"Bone Helmet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01hd09mTWlzY2hpZWYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/1e970a0f36/MawOfMischief.png"} +{"name":"메드베드의 도전","refName":"Medved's Challenge","namespace":"UNIQUE","unique":{"base":"Runic Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQWRhcHRhdGlvbkdsb3Zlc1VuaXF1ZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/865b871153/AdaptationGlovesUnique.png"} +{"name":"과대망상","refName":"Megalomaniac","namespace":"UNIQUE","unique":{"base":"Medium Cluster Jewel","fixedStats":["Adds # Passive Skills","Added Small Passive Skills grant Nothing"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1VuaXF1ZUpld2VsQmFzZTIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/659b3e6b90/UniqueJewelBase2.png"} +{"name":"메기노드의 허리띠","refName":"Meginord's Girdle","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdDdVbmlxdWUiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/59718aca01/Belt7Unique.png"} +{"name":"메기노드의 조임쇠","refName":"Meginord's Vise","namespace":"UNIQUE","unique":{"base":"Steel Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyNSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/2aaf87839e/GlovesStr5.png"} +{"name":"살점의 융합","refName":"Melding of the Flesh","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0VudGFuZ2xlZEVsZW1lbnRzSmV3ZWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/781ab651c4/EntangledElementsJewel.png"} +{"name":"기억의 금고","refName":"Memory Vault","namespace":"UNIQUE","unique":{"base":"Praetor Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0VsZGVyR3VhcmRpYW4iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/efcf4a9c86/ElderGuardian.png"} +{"name":"용병의 운명","refName":"Mercenary's Lot","namespace":"UNIQUE","unique":{"base":"Slink Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3RyaWtlVHJ1ZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/4a73ba7bf5/StrikeTrue.png"} +{"name":"심야의 교섭","refName":"Midnight Bargain","namespace":"UNIQUE","unique":{"base":"Engraved Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kVW5pcXVlMyIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/1db4fb5dbf/WandUnique3.png"} +{"name":"온유의 힘","refName":"Might of the Meek","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1BvdGVuY3lPZlRoZVVucmVtYXJrYWJsZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/10117c9173/PotencyOfTheUnremarkable.png"} +{"name":"힘의 피 진노","refName":"Mightblood Ire","namespace":"UNIQUE","unique":{"base":"Ironwood Tincture"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL1VuaXF1ZUlyb253b29kIiwidyI6MSwiaCI6Miwic2NhbGUiOjF9XQ/204dc321f7/UniqueIronwood.png"} +{"name":"강력한 가죽칼","refName":"Mightflay","namespace":"UNIQUE","unique":{"base":"Flaying Knife"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjJ1bmlxdWUiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/831b56800f/Dagger2unique.png"} +{"name":"호전적인 신념","refName":"Militant Faith","namespace":"UNIQUE","unique":{"base":"Timeless Jewel","fixedStats":["Historic"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RlbXBsYXJDaXZpbGl6YXRpb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/09ecf8ac86/TemplarCivilization.png"} +{"name":"의회의 정신","refName":"Mind of the Council","namespace":"UNIQUE","unique":{"base":"Harlequin Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RodW5kZXJpbmdXaGlzcGVycyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/dd96346bfc/ThunderingWhispers.png"} +{"name":"정신의 소용돌이","refName":"Mindspiral","namespace":"UNIQUE","unique":{"base":"Aventail Helmet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01pbmRzcGlyYWwiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e4b2c14ad7/Mindspiral.png"} +{"name":"밍의 심장","refName":"Ming's Heart","namespace":"UNIQUE","unique":{"base":"Amethyst Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTWluZ3NIZWFydCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7395d98bba/MingsHeart.png"} +{"name":"안개 벽","refName":"Mistwall","namespace":"UNIQUE","unique":{"base":"Lacquered Buckler"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL01pc3R3YWxsIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/d81f034c2d/Mistwall.png"} +{"name":"묠니르","refName":"Mjölner","namespace":"UNIQUE","unique":{"base":"Gavel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvTWpvbG5lciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/3e6fc15b26/Mjolner.png"} +{"name":"모코우의 포옹","refName":"Mokou's Embrace","namespace":"UNIQUE","unique":{"base":"Ruby Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTW9rb3VzRW1icmFjZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b3bd556d83/MokousEmbrace.png"} +{"name":"몬트레굴의 장악","refName":"Mon'tregul's Grasp","namespace":"UNIQUE","unique":{"base":"Void Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9Nb250cmVndWxzR3Jhc3AiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/c94034110b/MontregulsGrasp.png"} +{"name":"달을 구부리는 자의 날개","refName":"Moonbender's Wing","namespace":"UNIQUE","unique":{"base":"Tomahawk"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9Nb29uYmVuZGVyc1dpbmciLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/68a04ccc3f/MoonbendersWing.png"} +{"name":"달의 슬픔","refName":"Moonsorrow","namespace":"UNIQUE","unique":{"base":"Imbued Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kVW5pcXVlMiIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/7a5458ab50/WandUnique2.png"} +{"name":"고통스러운 죽음","refName":"Mortem Morsu","namespace":"UNIQUE","unique":{"base":"Fright Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3OHVuaXF1ZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7294efb794/Claw8unique.png"} +{"name":"어머니의 포옹","refName":"Mother's Embrace","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvTW90aGVyc0VtYnJhY2UiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/e576fccc3e/MothersEmbrace.png"} +{"name":"고요한 바람단 페넌트","refName":"Mutewind Pennant","namespace":"UNIQUE","unique":{"base":"Enameled Buckler"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL011dGV3aW5kUGVubmFudCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/a3efaf0921/MutewindPennant.png"} +{"name":"고요한 바람단 봉인","refName":"Mutewind Seal","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTXV0ZXdpbmQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3c7eee1d2b/Mutewind.png"} +{"name":"고요한 바람단의 속삭임 신발","refName":"Mutewind Whispersteps","namespace":"UNIQUE","unique":{"base":"Serpentscale Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9UYXJnZW10YWJpIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/fb8815a6bd/Targemtabi.png"} +{"name":"저점 모드","refName":"Nadir Mode","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0ludGVuc2l0eUpld2VsMiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/dd6952365a/IntensityJewel2.png"} +{"name":"이름강탈자","refName":"Nametaker","namespace":"UNIQUE","unique":{"base":"Graceful Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0FmZmxpY3Rpb25Td29yZCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/7b5d4f7c22/AfflictionSword.png"} +{"name":"타고난 친화력","refName":"Natural Affinity","namespace":"UNIQUE","unique":{"base":"Small Cluster Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL05hdHVyZXNQYXRpZW5jZUpld2VsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1f4e80dd70/NaturesPatienceJewel.png"} +{"name":"순수의 지배","refName":"Natural Hierarchy","namespace":"UNIQUE","unique":{"base":"Rotfeather Talisman"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hblVuaXF1ZTIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3783a100bf/TalismanUnique2.png"} +{"name":"성운","refName":"Nebulis","namespace":"UNIQUE","unique":{"base":"Void Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9TY2VwdHJlT2ZNZW1vcmllcyIsInciOjIsImgiOjMsInNjYWxlIjoxLCJzeW50aGVzaXNlZCI6dHJ1ZX1d/42c37f31d6/SceptreOfMemories.png"} +{"name":"네뷸록","refName":"Nebuloch","namespace":"UNIQUE","unique":{"base":"Nightmare Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvRWxkZXJNYWNlIiwidyI6MiwiaCI6Mywic2NhbGUiOjEsImVsZGVyIjp0cnVlfV0/84e6532c8a/ElderMace.png"} +{"name":"네발리우스의 유산","refName":"Nevalius Inheritance","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvTmV2YWxpdXNCZWx0IiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/db57602cd1/NevaliusBelt.png"} +{"name":"나마후의 불꽃","refName":"Ngamahu's Flame","namespace":"UNIQUE","unique":{"base":"Abyssal Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvUmlyaVRlTmdhbWFodSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/55c2a170af/RiriTeNgamahu.png"} +{"name":"나마후의 표식","refName":"Ngamahu's Sign","namespace":"UNIQUE","unique":{"base":"Ruby Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTmdhbWFodXNTaWduIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4323574c5a/NgamahusSign.png"} +{"name":"밤의 연장","refName":"Night's Hold","namespace":"UNIQUE","unique":{"base":"Black Maw Talisman"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Tb2NrZXRlZFRhbGlzbWFuIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/89ef47ed1c/SocketedTalisman.png"} +{"name":"밤손아귀","refName":"Nightgrip","namespace":"UNIQUE","unique":{"base":"Runic Gages"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3Bpcml0R2xvdmVzVW5pcXVlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/c40058de12/SpiritGlovesUnique.png"} +{"name":"니미스","refName":"Nimis","namespace":"UNIQUE","unique":{"base":"Topaz Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVWJlckVhdGVyb2ZXb3JsZHMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6dbfb1baea/UberEaterofWorlds.png"} +{"name":"노믹의 태풍","refName":"Nomic's Storm","namespace":"UNIQUE","unique":{"base":"Strapped Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Ob21pY3NTdG9ybSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/33fedc8e3d/NomicsStorm.png"} +{"name":"무효와 공허","refName":"Null and Void","namespace":"UNIQUE","unique":{"base":"Legion Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvTnVsbEFuZFZvaWQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4f851f97fc/NullAndVoid.png"} +{"name":"몰살 의지","refName":"Null's Inclination","namespace":"UNIQUE","unique":{"base":"Ranger Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL051bGxCb3ciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/067d0e5884/NullBow.png"} +{"name":"누로의 하프","refName":"Nuro's Harp","namespace":"UNIQUE","unique":{"base":"Harbinger Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL051cm9zUHVyaWZ5aW5nSGFycCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/36ac89806c/NurosPurifyingHarp.png"} +{"name":"닉타의 등불","refName":"Nycta's Lantern","namespace":"UNIQUE","unique":{"base":"Crystal Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9MeWNobnVzbHlhZWkiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/c69b77ef8a/Lychnuslyaei.png"} +{"name":"오바의 저주받은 전리품","refName":"Oba's Cursed Trove","namespace":"UNIQUE","unique":{"base":"Underground Sea Map"},"map":{"screenshot":"https://i.imgur.com/pqbFnju.jpg"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9vYmEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c94e09c1a8/oba.png"} +{"name":"말살","refName":"Obliteration","namespace":"UNIQUE","unique":{"base":"Imbued Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9NYWxlZGljdCIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/2ddc131782/Maledict.png"} +{"name":"몽매주의","refName":"Obscurantis","namespace":"UNIQUE","unique":{"base":"Lion Pelt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL09ic2N1cmFudGlzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/95ebfbbef1/Obscurantis.png"} +{"name":"독사에게 바치는 공물","refName":"Offering to the Serpent","namespace":"UNIQUE","unique":{"base":"Legion Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR3JpcE9mVGhlQ29icmEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MSwic3ludGhlc2lzZWQiOnRydWV9XQ/f77051c363/GripOfTheCobra.png"} +{"name":"올레샤의 기쁨","refName":"Olesya's Delight","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQWx0Q2hhcmdlRGV4IiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/caa418edee/AltChargeDex.png"} +{"name":"올멕의 지성소","refName":"Olmec's Sanctum","namespace":"UNIQUE","unique":{"base":"Bone Crypt Map"},"map":{"screenshot":"https://i.imgur.com/UnrLWC4.jpg"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9vbG1lYyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/844fea2e54/olmec.png"} +{"name":"올로스의 돌진","refName":"Olroth's Charge","namespace":"UNIQUE","unique":{"base":"Runic Sollerets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9BZGFwdGF0aW9uQm9vdHNVbmlxdWUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/a0b7d6e35c/AdaptationBootsUnique.png"} +{"name":"올로스의 결의","refName":"Olroth's Resolve","namespace":"UNIQUE","unique":{"base":"Iron Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvV2FyZEZsYXNrMDIiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/b6f390075a/WardFlask02.png"} +{"name":"오메이오칸","refName":"Omeyocan","namespace":"UNIQUE","unique":{"base":"Carnal Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9PbWV5b2NhbiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f72f6a000d/Omeyocan.png"} +{"name":"온다르의 걸쇠","refName":"Ondar's Clasp","namespace":"UNIQUE","unique":{"base":"Wrapped Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvT25kYXJzQ2xhc3AiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/029ff8ad2d/OndarsClasp.png"} +{"name":"맨주먹","refName":"One With Nothing","namespace":"UNIQUE","unique":{"base":"Small Cluster Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0RyYWdvblN0eWxlSmV3ZWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/fa9a94b12e/DragonStyleJewel.png"} +{"name":"오니고로시","refName":"Oni-Goroshi","namespace":"UNIQUE","unique":{"base":"Charan's Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1RoZUdvZGRlc3NVbmxlYXNoZWQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/37ecd7541b/TheGoddessUnleashed.png"} +{"name":"오발라의 항전","refName":"Orbala's Stand","namespace":"UNIQUE","unique":{"base":"Eelskin Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SdWdnZWRTdGVwQm9vdHMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/d3af99e8fe/RuggedStepBoots.png"} +{"name":"오리아스의 종말","refName":"Oriath's End","namespace":"UNIQUE","unique":{"base":"Bismuth Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvVWJlclNpcnVzRmxhc2siLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/8758d70627/UberSirusFlask.png"} +{"name":"원죄","refName":"Original Sin","namespace":"UNIQUE","unique":{"base":"Amethyst Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU2FuY3R1bVNwZWNpYWxVbmlxdWVSaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/e0ff1c1c6b/SanctumSpecialUniqueRing.png"} +{"name":"동방의 장신구","refName":"Ornament of the East","namespace":"UNIQUE","unique":{"base":"Gut Ripper"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9Pcm5hbWVudE9mVGhlRWFzdCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/5bea7643a2/OrnamentOfTheEast.png"} +{"name":"오로의 희생","refName":"Oro's Sacrifice","namespace":"UNIQUE","unique":{"base":"Infernal Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL09yb3NTYWNyaWZpY2UiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/82b813f27d/OrosSacrifice.png"} +{"name":"오스캄","refName":"Oskarm","namespace":"UNIQUE","unique":{"base":"Nubuck Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvWmVub0dsb3ZlcyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/a0056936c7/ZenoGloves.png"} +{"name":"평화주의","refName":"Pacifism","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dyZWVuQ29ycnVwdDYiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1b1c1912b2/GreenCorrupt6.png"} +{"name":"고통 탐구자","refName":"Painseeker","namespace":"UNIQUE","unique":{"base":"Shagreen Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR3JpcE9mVW5tYWtpbmciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/9a6348dc81/GripOfUnmaking.png"} +{"name":"모순","refName":"Paradoxica","namespace":"UNIQUE","unique":{"base":"Vaal Rapier"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL0Fzc2Fzc2luYXRpb25VbmlxdWUyIiwidyI6MSwiaCI6NCwic2NhbGUiOjF9XQ/b84147fcbd/AssassinationUnique2.png"} +{"name":"페란두스 문장","refName":"Perandus Blazon","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQnVja2xlZEJlbHRVbmlxdWUyIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/b67e6fa4a9/BuckledBeltUnique2.png"} +{"name":"페란두스 인장","refName":"Perandus Signet","namespace":"UNIQUE","unique":{"base":"Paua Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTGFkeVJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d696be5b25/LadyRing.png"} +{"name":"영구장치","refName":"Perepiteia","namespace":"UNIQUE","unique":{"base":"Ezomyte Spiked Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0xpZ2h0bmluZ1NoaWVsZCIsInciOjIsImgiOjIsInNjYWxlIjoxLCJzeW50aGVzaXNlZCI6dHJ1ZX1d/05aa542efd/LightningShield.png"} +{"name":"배반","refName":"Perfidy","namespace":"UNIQUE","unique":{"base":"Glorious Plate","fixedStats":["#% increased Melee Damage","+# to maximum Life","You can have two different Banners at the same time","Banners you are carrying gain 1 Stage on Melee Hit, up to 5 per second"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UYW5nbWF6dWFybW91cmJvZHlhcm1vdXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2170370e8f/Tangmazuarmourbodyarmour.png"} +{"name":"퍼퀼의 발가락","refName":"Perquil's Toe","namespace":"UNIQUE","unique":{"base":"Gold Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9QZXJxdWlsc1RvZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7509c4517f/PerquilsToe.png"} +{"name":"인내","refName":"Perseverance","namespace":"UNIQUE","unique":{"base":"Vanguard Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvUGVyc2VydmVyYW5jZSIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/1ff634248a/Perserverance.png"} +{"name":"갇힌 신의 기둥","refName":"Pillar of the Caged God","namespace":"UNIQUE","unique":{"base":"Iron Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvUGlsbGFyb2Z0aGVDYWdlZEdvZCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/0451281624/PillaroftheCagedGod.png"} +{"name":"아룬의 기둥","refName":"Pillars of Arun","namespace":"UNIQUE","unique":{"base":"Dunes Map"},"map":{"screenshot":"https://i.imgur.com/yitkSnN.jpg"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9QaWxsYXJzT2ZWYXN0aXJpIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f030aac473/PillarsOfVastiri.png"} +{"name":"피스카토의 기도","refName":"Piscator's Vigil","namespace":"UNIQUE","unique":{"base":"Imbued Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9QaXNjYXRvcnNWaWdpbCIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/332f80f7ac/PiscatorsVigil.png"} +{"name":"손으로 맺은 서약","refName":"Pledge of Hands","namespace":"UNIQUE","unique":{"base":"Judgement Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvUGxlZGdlb2ZIYW5kcyIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/1da7239060/PledgeofHands.png"} +{"name":"추적의 깃털","refName":"Plume of Pursuit","namespace":"UNIQUE","unique":{"base":"Bone Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1JhdmVuc0Nyb3duIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/dc40362912/RavensCrown.png"} +{"name":"극성의 유린","refName":"Polaric Devastation","namespace":"UNIQUE","unique":{"base":"Opal Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQXNoQW5kRnJvc3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/70630a6e17/AshAndFrost.png"} +{"name":"푸어조이의 은신처","refName":"Poorjoy's Asylum","namespace":"UNIQUE","unique":{"base":"Temple Map"},"map":{"screenshot":"https://i.imgur.com/ZPJdcfs.jpg"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9Qb29yam95c0FzeWx1bSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d7e9aba922/PoorjoysAsylum.png"} +{"name":"무력함","refName":"Powerlessness","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0JsdWVDb3JydXB0NiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/281293a0c5/BlueCorrupt6.png"} +{"name":"실용주의","refName":"Pragmatism","namespace":"UNIQUE","unique":{"base":"Colosseum Plate"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9HcmVlbmV5ZXNBcm1vdXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/bef792208d/GreeneyesArmour.png"} +{"name":"관습","refName":"Praxis","namespace":"UNIQUE","unique":{"base":"Paua Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUHJheGlzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5098474fb7/Praxis.png"} +{"name":"선도자의 상징","refName":"Precursor's Emblem","namespace":"UNIQUE","unique":{"base":"Sapphire Ring","fixedStats":["#% increased maximum Energy Shield","#% increased maximum Life"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQ29tYmluZWRHcmVlblJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/76c5b311f3/CombinedGreenRing.png"} +{"name":"선도자의 상징","refName":"Precursor's Emblem","namespace":"UNIQUE","unique":{"base":"Topaz Ring","fixedStats":["#% increased maximum Energy Shield","#% increased maximum Life"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQ29tYmluZWRCbHVlUmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8d07d0d3bb/CombinedBlueRing.png"} +{"name":"선도자의 상징","refName":"Precursor's Emblem","namespace":"UNIQUE","unique":{"base":"Ruby Ring","fixedStats":["#% increased maximum Energy Shield","#% increased maximum Life"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQ29tYmluZWRSZWRSaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ca98bb7e51/CombinedRedRing.png"} +{"name":"선도자의 상징","refName":"Precursor's Emblem","namespace":"UNIQUE","unique":{"base":"Two-Stone Ring","fixedStats":["#% increased maximum Energy Shield","#% increased maximum Life"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQ29tYmluZWRSZWRCbHVlUmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6f6c0766b4/CombinedRedBlueRing.png"} +{"name":"선도자의 상징","refName":"Precursor's Emblem","namespace":"UNIQUE","unique":{"base":"Prismatic Ring","fixedStats":["#% increased maximum Energy Shield","#% increased maximum Life"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQ29tYmluZWRQcmlzbWF0aWNSaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5dd23ff6ad/CombinedPrismaticRing.png"} +{"name":"차율라의 존재","refName":"Presence of Chayula","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9QcmVzZW5jZU9mQ2hheXVsYSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6460da7c94/PresenceOfChayula.png"} +{"name":"태고의 고귀","refName":"Primordial Eminence","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dvbGVtQXJjdGljIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8461900064/GolemArctic.png"} +{"name":"태고의 조화","refName":"Primordial Harmony","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dvbGVtVGVtcGVzdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/aac7579ae7/GolemTempest.png"} +{"name":"태고의 완력","refName":"Primordial Might","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dvbGVtSW5mZXJuYWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a50b1917f5/GolemInfernal.png"} +{"name":"분광의 수호자","refName":"Prism Guardian","namespace":"UNIQUE","unique":{"base":"Archon Kite Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1RoZUNvcnVuZHVtIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f9ca50a663/TheCorundum.png"} +{"name":"분광 월식","refName":"Prismatic Eclipse","namespace":"UNIQUE","unique":{"base":"Twilight Blade"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1ByaXNtYXRpY0VjbGlwc2UiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/d6243ca476/PrismaticEclipse.png"} +{"name":"빛의 매듭","refName":"Prismweave","namespace":"UNIQUE","unique":{"base":"Rustic Sash"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvUHJpc213ZWF2ZSIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/822582fe24/Prismweave.png"} +{"name":"부정한 대리자","refName":"Profane Proxy","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU2tpdHRlcmJvdFJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/20b7d215dd/SkitterbotRing.png"} +{"name":"전창조","refName":"Progenesis","namespace":"UNIQUE","unique":{"base":"Amethyst Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvVWJlck1hdmVuRmxhc2siLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/b82c247a54/UberMavenFlask.png"} +{"name":"타고난 재능","refName":"Pure Talent","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1B1cmVUYWxlbnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/64b53e536e/PureTalent.png"} +{"name":"푸템보의 초원","refName":"Putembo's Meadow","namespace":"UNIQUE","unique":{"base":"Topaz Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmx1ZUNvbXBvbmVudDIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e8d0f426fe/BlueComponent2.png"} +{"name":"푸템보의 산","refName":"Putembo's Mountain","namespace":"UNIQUE","unique":{"base":"Topaz Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmx1ZUNvbXBvbmVudCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/086886e893/BlueComponent.png"} +{"name":"푸템보의 계곡","refName":"Putembo's Valley","namespace":"UNIQUE","unique":{"base":"Topaz Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmx1ZUNvbXBvbmVudDMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cd1b931996/BlueComponent3.png"} +{"name":"장작","refName":"Pyre","namespace":"UNIQUE","unique":{"base":"Sapphire Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQ2hlcnVmZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/08c38718a4/Cherufe.png"} +{"name":"화염격 걸쇠","refName":"Pyroshock Clasp","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvUHlyb3Nob2NrQ2xhc3AiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/42b1bcc3c8/PyroshockClasp.png"} +{"name":"쿼트라의 제어기","refName":"Qotra's Regulator","namespace":"UNIQUE","unique":{"base":"Sovereign Spiked Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0Fnb255T2ZEZWNheSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/025ae438c5/AgonyOfDecay.png"} +{"name":"퀘촐리","refName":"Quecholli","namespace":"UNIQUE","unique":{"base":"Jagged Maul"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U1VW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/9361b8eb61/TwoHandMace5Unique.png"} +{"name":"숲의 여왕","refName":"Queen of the Forest","namespace":"UNIQUE","unique":{"base":"Destiny Leather"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9RdWVlbm9mdGhlRm9yZXN0IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/bd3ec993e7/QueenoftheForest.png"} +{"name":"여왕의 법령","refName":"Queen's Decree","namespace":"UNIQUE","unique":{"base":"Ornate Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZFVuaXF1ZTMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/a79e04039c/TwoHandSwordUnique3.png"} +{"name":"재촉의 계약","refName":"Quickening Covenant","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL3VuaXF1ZTEwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/46d92a634d/unique10.png"} +{"name":"화살 비","refName":"Quill Rain","namespace":"UNIQUE","unique":{"base":"Short Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzJ1bmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5c5cad82e8/Bow2unique.png"} +{"name":"파편의 비","refName":"Rain of Splinters","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JlZEthcnVpIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/283aad3d25/RedKarui.png"} +{"name":"무지갯빛 발걸음","refName":"Rainbowstride","namespace":"UNIQUE","unique":{"base":"Conjurer Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9yYWluYm93c3RyaWRlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/bf663baf47/rainbowstride.png"} +{"name":"라키아타의 춤","refName":"Rakiata's Dance","namespace":"UNIQUE","unique":{"base":"Engraved Greatsword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1Jha2lhdGFTd29yZCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/ec593eeaa8/RakiataSword.png"} +{"name":"랄라케쉬의 조바심","refName":"Ralakesh's Impatience","namespace":"UNIQUE","unique":{"base":"Riveted Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SYWxha2VzaHNJbXBhdGllbmNlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/54540f0f3d/RalakeshsImpatience.png"} +{"name":"라시칼도어의 인내","refName":"Rashkaldor's Patience","namespace":"UNIQUE","unique":{"base":"Jade Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9SYXNoa2FsZG9yc1BhdGllbmNlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/336e3419f4/RashkaldorsPatience.png"} +{"name":"쥐의 둥지","refName":"Rat's Nest","namespace":"UNIQUE","unique":{"base":"Ursine Pelt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1JhdHNOZXN0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/857976167e/RatsNest.png"} +{"name":"래스피스 구체","refName":"Rathpith Globe","namespace":"UNIQUE","unique":{"base":"Titanium Spirit Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDZ1bmlxdWUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5f2434a635/ShieldInt6unique.png"} +{"name":"합리적인 교리","refName":"Rational Doctrine","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1ViZXJDb3J0ZXhKZXdlbCIsInciOjEsImgiOjEsInNjYWxlIjoxLCJzeW50aGVzaXNlZCI6dHJ1ZX1d/75a97b9ff9/UberCortexJewel.png"} +{"name":"굶주린 열정","refName":"Ravenous Passion","namespace":"UNIQUE","unique":{"base":"Zealot Helmet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1ViZXJFYXRlcm9mV29ybGRzSGVsbWV0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/2215119a51/UberEaterofWorldsHelmet.png"} +{"name":"날카로운 일곱 번째 태양","refName":"Razor of the Seventh Sun","namespace":"UNIQUE","unique":{"base":"Midnight Blade"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1Jhem9yT2ZUaGVTZXZlbnRoU3VuIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/ef21dd7f97/RazorOfTheSeventhSun.png"} +{"name":"의회의 역량","refName":"Reach of the Council","namespace":"UNIQUE","unique":{"base":"Spine Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0Jvd09mVGhlQ291bmNpbCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/55dc65893e/BowOfTheCouncil.png"} +{"name":"영역 형성자","refName":"Realmshaper","namespace":"UNIQUE","unique":{"base":"Iron Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY1dW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/33929e1979/Staff5unique.png"} +{"name":"수확자의 추적","refName":"Reaper's Pursuit","namespace":"UNIQUE","unique":{"base":"Shadow Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlVW5pcXVlMSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/d39a181d8d/TwoHandAxeUnique1.png"} +{"name":"후위 경계","refName":"Rearguard","namespace":"UNIQUE","unique":{"base":"Blunt Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9SZWFyZ3VhcmQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9b285161a6/Rearguard.png"} +{"name":"바알의 질책","refName":"Rebuke of the Vaal","namespace":"UNIQUE","unique":{"base":"Vaal Blade"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDdVbmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/90312b1e4a/OneHandSword7Unique.png"} +{"name":"무모한 방어","refName":"Reckless Defence","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JlY2tsZXNzRGVmZW5zZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/923e6cb6b5/RecklessDefense.png"} +{"name":"붉은 부리","refName":"Redbeak","namespace":"UNIQUE","unique":{"base":"Rusted Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDFVbmlxdWUiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/a3010a69f5/OneHandSword1Unique.png"} +{"name":"적검단 가락지","refName":"Redblade Band","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmVkYmxhZGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cf85c48dff/Redblade.png"} +{"name":"적검단 깃발","refName":"Redblade Banner","namespace":"UNIQUE","unique":{"base":"Painted Tower Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1JlZGJsYWRlQmFubmVyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/33221fb3e1/RedbladeBanner.png"} +{"name":"적검단 유린자","refName":"Redblade Tramplers","namespace":"UNIQUE","unique":{"base":"Ancient Greaves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SdW1ibGVzdGVwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/7ebd8e4a3e/Rumblestep.png"} +{"name":"맹렬한 광분","refName":"Relentless Fury","namespace":"UNIQUE","unique":{"base":"Decorative Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9SZWxlbnRsZXNzRnVyeSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/8013c33f55/RelentlessFury.png"} +{"name":"맹약의 유물","refName":"Relic of the Pact","namespace":"UNIQUE","unique":{"base":"Sage Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9JcG9jaG90bFdhbmQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MSwicmVsaWMiOjN9XQ/42065b29d1/IpochotlWand.png"} +{"name":"참회","refName":"Repentance","namespace":"UNIQUE","unique":{"base":"Crusader Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUmVwZW50YW5jZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/20af664d44/Repentance.png"} +{"name":"깊은 심연 모조품","refName":"Replica Abyssus","namespace":"UNIQUE","unique":{"base":"Ezomyte Burgonet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0FieXNzdXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/a12f5424c8/Abyssus.png"} +{"name":"전진하는 요새 모조품","refName":"Replica Advancing Fortress","namespace":"UNIQUE","unique":{"base":"Gut Ripper"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3c2hpZWxkMyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/a04190ca2b/Clawshield3.png"} +{"name":"알베른의 적대 모조품","refName":"Replica Alberon's Warpath","namespace":"UNIQUE","unique":{"base":"Soldier Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9BbGJlcm9uc3dhcnBhdGgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/be7b089ef3/Alberonswarpath.png"} +{"name":"생존 경쟁 모조품","refName":"Replica Allelopathy","namespace":"UNIQUE","unique":{"base":"Satin Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRW1iYWxtZXJzR2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/62148488f8/EmbalmersGloves.png"} +{"name":"매혹 모조품","refName":"Replica Allure","namespace":"UNIQUE","unique":{"base":"Vaal Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9BbGx1cmUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/ff5311676c/Allure.png"} +{"name":"우두머리의 울부짖음 모조품","refName":"Replica Alpha's Howl","namespace":"UNIQUE","unique":{"base":"Sinner Tricorne"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1dvbGZoZWFkIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/2acc10e593/Wolfhead.png"} +{"name":"앰부의 돌진 모조품","refName":"Replica Ambu's Charge","namespace":"UNIQUE","unique":{"base":"Crusader Chainmail"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9TdHJJbnQzQVVuaXF1ZTIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9928614b24/StrInt3AUnique2.png"} +{"name":"앗지리의 예리함 모조품","refName":"Replica Atziri's Acuity","namespace":"UNIQUE","unique":{"base":"Vaal Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQXR6aXJpc0FjdWl0eSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/2c0f04ae47/AtzirisAcuity.png"} +{"name":"앗지리의 결점 모조품","refName":"Replica Atziri's Foible","namespace":"UNIQUE","unique":{"base":"Paua Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9RdWlkIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/00c2b3a588/Quid.png"} +{"name":"형제단의 증표 모조품","refName":"Replica Badge of the Brotherhood","namespace":"UNIQUE","unique":{"base":"Turquoise Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Bc3Nhc3NpblVuaXF1ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/3616219d7d/AssassinUnique.png"} +{"name":"약해진 숨결 모조품","refName":"Replica Bated Breath","namespace":"UNIQUE","unique":{"base":"Chain Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmF0ZWRCcmVhdGgiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/0a8cc4529f/BatedBreath.png"} +{"name":"악몽 모조품","refName":"Replica Bitterdream","namespace":"UNIQUE","unique":{"base":"Shadow Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyOHVuaXF1ZTIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/085f7726de/scepter8unique2.png"} +{"name":"피의 가시 모조품","refName":"Replica Blood Thorn","namespace":"UNIQUE","unique":{"base":"Gnarled Branch"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvVGhlQmxvb2RUaG9ybiIsInciOjEsImgiOjQsInNjYWxlIjoxfV0/3dac5ee34b/TheBloodThorn.png"} +{"name":"피의 오락 모조품","refName":"Replica Bloodplay","namespace":"UNIQUE","unique":{"base":"Stiletto"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0Jsb29kUGxheSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/3c8258f393/BloodPlay.png"} +{"name":"울러의 뼈 모조품","refName":"Replica Bones of Ullr","namespace":"UNIQUE","unique":{"base":"Silk Slippers"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9ib290dW5pcXVlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/1dfabe3358/bootunique.png"} +{"name":"날붙이 끝 모조품","refName":"Replica Cold Iron Point","namespace":"UNIQUE","unique":{"base":"Ezomyte Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0NvbGRJcm9uUG9pbnQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/1a4002957b/ColdIronPoint.png"} +{"name":"코텍스 모조품","refName":"Replica Cortex","namespace":"UNIQUE","unique":{"base":"Synthesised Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TeW50aGVzaXNCb3NzR3VhcmRpYW5NYXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/542f2635c7/SynthesisBossGuardianMap.png"} +{"name":"계약 모조품","refName":"Replica Covenant","namespace":"UNIQUE","unique":{"base":"Spidersilk Robe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9FbWJyYWNlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/d0110e7660/Embrace.png"} +{"name":"도이드리의 파멸 모조품","refName":"Replica Doedre's Damning","namespace":"UNIQUE","unique":{"base":"Paua Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzNVbmlxdWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d06b386d73/Ring3Unique.png"} +{"name":"용송곳니의 비상 모조품","refName":"Replica Dragonfang's Flight","namespace":"UNIQUE","unique":{"base":"Onyx Amulet","fixedStats":["+#% to all Elemental Resistances","#% increased Reservation Efficiency of Skills","Items and Gems have #% increased Attribute Requirements"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9NYWxhY2hhaSdzIEJyaWxsaWFuY2VBbXVsZXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a1548914e0/Malachai%27s%20BrillianceAmulet.png"} +{"name":"꿈의 깃털 모조품","refName":"Replica Dreamfeather","namespace":"UNIQUE","unique":{"base":"Eternal Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0RyZWFtZmVhdGhlciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/89a3a7588c/Dreamfeather.png"} +{"name":"황혼의 아침 모조품","refName":"Replica Duskdawn","namespace":"UNIQUE","unique":{"base":"Maelström Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU29sYXJpc0x1bmFyaXNTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/e5e9df18a4/SolarisLunarisStaff.png"} +{"name":"에아렌델의 포옹 모조품","refName":"Replica Earendel's Embrace","namespace":"UNIQUE","unique":{"base":"Grinning Fetish"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9FYXJlbmRlbHNFbWJyYWNlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/7fbecdb2b3/EarendelsEmbrace.png"} +{"name":"잉걸불 지피기 모조품","refName":"Replica Emberwake","namespace":"UNIQUE","unique":{"base":"Ruby Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzEwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/55c8711fd7/Ring10.png"} +{"name":"영원의 연막 모조품","refName":"Replica Eternity Shroud","namespace":"UNIQUE","unique":{"base":"Blood Raiment"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9NYW50bGVPZkRpc21hbnRsaW5nIiwidyI6MiwiaCI6Mywic2NhbGUiOjEsImVsZGVyIjp0cnVlfV0/7c6af4d6f5/MantleOfDismantling.png"} +{"name":"페룰의 모피 모조품","refName":"Replica Farrul's Fur","namespace":"UNIQUE","unique":{"base":"Triumphant Lamellar"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaWdlckJvZHlBcm1vdXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/1cfa248b9b/TigerBodyArmour.png"} +{"name":"늪 감긴 가지 모조품","refName":"Replica Fencoil","namespace":"UNIQUE","unique":{"base":"Gnarled Branch"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmYxdW5pcXVlIiwidyI6MSwiaCI6NCwic2NhbGUiOjF9XQ/cff9022931/Staff1unique.png"} +{"name":"허약 모조품","refName":"Replica Fragility","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JlZENvcnJ1cHQ2IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/161d0c411c/RedCorrupt6.png"} +{"name":"서리 숨결 모조품","refName":"Replica Frostbreath","namespace":"UNIQUE","unique":{"base":"Ornate Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvRnJvc3RCcmVhdGgiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8a6b305388/FrostBreath.png"} +{"name":"의회의 장악 모조품","refName":"Replica Grip of the Council","namespace":"UNIQUE","unique":{"base":"Arcanist Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50M1VuaXF1ZTIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/88338fac41/GlovesInt3Unique2.png"} +{"name":"수확 모조품","refName":"Replica Harvest","namespace":"UNIQUE","unique":{"base":"Jasper Chopper"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9UaGVFeHRyYWN0b3IiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8452349a24/TheExtractor.png"} +{"name":"헤드헌터 모조품","refName":"Replica Headhunter","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSGVhZGh1bnRlciIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/e9542ec6ee/Headhunter.png"} +{"name":"심장 분쇄기 모조품","refName":"Replica Heartbreaker","namespace":"UNIQUE","unique":{"base":"Royal Skean"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0hlYXJ0YnJlYWtlciIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/fa73c4d5b4/Heartbreaker.png"} +{"name":"열기와 오한 모조품","refName":"Replica Heatshiver","namespace":"UNIQUE","unique":{"base":"Leather Hood"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlYXRzaGl2ZXIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/b1860c890e/Heatshiver.png"} +{"name":"히네코라의 통찰력 모조품","refName":"Replica Hinekora's Sight","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9IaW5la29yYXNTaWdodCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/13820d857f/HinekorasSight.png"} +{"name":"하이리의 노여움 모조품","refName":"Replica Hyrri's Ire","namespace":"UNIQUE","unique":{"base":"Zodiac Leather"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4M0NVbmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/fb532d6c21/BodyDex3CUnique.png"} +{"name":"하이리의 진리 모조품","refName":"Replica Hyrri's Truth","namespace":"UNIQUE","unique":{"base":"Jade Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9TeW50aGVzaXNBY2N1cmFjeUFtdWxldCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6062fd361e/SynthesisAccuracyAmulet.png"} +{"name":"침범자 모조품","refName":"Replica Infractem","namespace":"UNIQUE","unique":{"base":"Decimation Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0luZnJhY3RlbSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/ea06e13fb8/Infractem.png"} +{"name":"인스뷰리 칼날 모조품","refName":"Replica Innsbury Edge","namespace":"UNIQUE","unique":{"base":"Elder Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0VsZGVyU3dvcmQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2bd26d4bf6/ElderSword.png"} +{"name":"이냐의 통찰 모조품","refName":"Replica Inya's Epiphany","namespace":"UNIQUE","unique":{"base":"Arcanist Slippers"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9QYWxlQ291bmNpbEJvb3RzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/78e277875f/PaleCouncilBoots.png"} +{"name":"철의 지휘관 모조품","refName":"Replica Iron Commander","namespace":"UNIQUE","unique":{"base":"Death Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0lyb25Db21tZW5kYW50IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/001ca245e3/IronCommendant.png"} +{"name":"칼리사의 은총 모조품","refName":"Replica Kalisa's Grace","namespace":"UNIQUE","unique":{"base":"Samite Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvS2FsaXNhc0dyYWNlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/b165e39eff/KalisasGrace.png"} +{"name":"카옴의 심장 모조품","refName":"Replica Kaom's Heart","namespace":"UNIQUE","unique":{"base":"Glorious Plate"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyM0NVbmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/1027cdf1ad/BodyStr3CUnique.png"} +{"name":"카루이의 수호 모조품","refName":"Replica Karui Ward","namespace":"UNIQUE","unique":{"base":"Jade Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQ0VW5pcXVlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/069e4f76ea/Amulet4Unique.png"} +{"name":"콩고르의 끝없는 격노 모조품","refName":"Replica Kongor's Undying Rage","namespace":"UNIQUE","unique":{"base":"Terror Maul"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvS29uZ29yc1VuZHlpbmdSYWdlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/5fa26110bc/KongorsUndyingRage.png"} +{"name":"최후의 수단 모조품","refName":"Replica Last Resort","namespace":"UNIQUE","unique":{"base":"Nailed Fist"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9OZXJhc0xhc3RSZXNvcnQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5f5a6bd205/NerasLastResort.png"} +{"name":"라비앙가의 혼백 모조품","refName":"Replica Lavianga's Spirit","namespace":"UNIQUE","unique":{"base":"Sanctified Mana Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvTGF2aWFuZ2FzT2lsIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/44f064d737/LaviangasOil.png"} +{"name":"음흉한 시선 모조품","refName":"Replica Leer Cast","namespace":"UNIQUE","unique":{"base":"Festival Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDl4IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/6693f97fdf/HelmetDexInt9x.png"} +{"name":"라이온아이의 발 모조품","refName":"Replica Lioneye's Paws","namespace":"UNIQUE","unique":{"base":"Bronzescale Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9MaW9uZXllc1Bhd3MiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/550a8f59d4/LioneyesPaws.png"} +{"name":"지식의 매듭 모조품","refName":"Replica Loreweave","namespace":"UNIQUE","unique":{"base":"Elegant Ringmail"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Mb3Jld2VhdmUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/fd11495220/Loreweave.png"} +{"name":"말라카이의 책략 모조품","refName":"Replica Malachai's Artifice","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTWFsYWNoYWlzQXJ0aWZpY2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/dfbb52ebfe/MalachaisArtifice.png"} +{"name":"말로니의 기계 장치 모조품","refName":"Replica Maloney's Mechanism","namespace":"UNIQUE","unique":{"base":"Ornate Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9UcmlnZ2VyUXVpdmVyQmFzZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/1f3958bdb3/TriggerQuiverBase.png"} +{"name":"심야의 교섭 모조품","refName":"Replica Midnight Bargain","namespace":"UNIQUE","unique":{"base":"Engraved Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kVW5pcXVlMyIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/1db4fb5dbf/WandUnique3.png"} +{"name":"안개 벽 모조품","refName":"Replica Mistwall","namespace":"UNIQUE","unique":{"base":"Lacquered Buckler"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL01pc3R3YWxsIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/d81f034c2d/Mistwall.png"} +{"name":"성운 모조품","refName":"Replica Nebulis","namespace":"UNIQUE","unique":{"base":"Void Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9TY2VwdHJlT2ZNZW1vcmllcyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/a627a19fc4/SceptreOfMemories.png"} +{"name":"오로의 희생 모조품","refName":"Replica Oro's Sacrifice","namespace":"UNIQUE","unique":{"base":"Infernal Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL09yb3NTYWNyaWZpY2UiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/82b813f27d/OrosSacrifice.png"} +{"name":"평화주의 모조품","refName":"Replica Pacifism","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dyZWVuQ29ycnVwdDYiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1b1c1912b2/GreenCorrupt6.png"} +{"name":"모순 모조품","refName":"Replica Paradoxica","namespace":"UNIQUE","unique":{"base":"Vaal Rapier"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL0Fzc2Fzc2luYXRpb25VbmlxdWUyIiwidyI6MSwiaCI6NCwic2NhbGUiOjF9XQ/b84147fcbd/AssassinationUnique2.png"} +{"name":"완벽한 구조 모조품","refName":"Replica Perfect Form","namespace":"UNIQUE","unique":{"base":"Zodiac Leather"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaGVQZXJmZWN0Rm9ybSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/b149b68ecb/ThePerfectForm.png"} +{"name":"아룬의 기둥 모조품","refName":"Replica Pillars of Arun","namespace":"UNIQUE","unique":{"base":"Dunes Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9QaWxsYXJzT2ZWYXN0aXJpIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f030aac473/PillarsOfVastiri.png"} +{"name":"푸어조이의 은신처 모조품","refName":"Replica Poorjoy's Asylum","namespace":"UNIQUE","unique":{"base":"Temple Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9Qb29yam95c0FzeWx1bSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d7e9aba922/PoorjoysAsylum.png"} +{"name":"무력함 모조품","refName":"Replica Powerlessness","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0JsdWVDb3JydXB0NiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/281293a0c5/BlueCorrupt6.png"} +{"name":"태고의 완력 모조품","refName":"Replica Primordial Might","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dvbGVtSW5mZXJuYWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a50b1917f5/GolemInfernal.png"} +{"name":"빛의 매듭 모조품","refName":"Replica Prismweave","namespace":"UNIQUE","unique":{"base":"Rustic Sash"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvUHJpc213ZWF2ZSIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/822582fe24/Prismweave.png"} +{"name":"화살 비 모조품","refName":"Replica Quill Rain","namespace":"UNIQUE","unique":{"base":"Short Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzJ1bmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5c5cad82e8/Bow2unique.png"} +{"name":"무모한 방어 모조품","refName":"Replica Reckless Defence","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JlY2tsZXNzRGVmZW5zZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/923e6cb6b5/RecklessDefense.png"} +{"name":"붉은 발자취 모조품","refName":"Replica Red Trail","namespace":"UNIQUE","unique":{"base":"Titan Greaves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9UaGVJbmZpbml0ZVB1cnN1aXQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/518d10f12f/TheInfinitePursuit.png"} +{"name":"끊임없는 수호 모조품","refName":"Replica Restless Ward","namespace":"UNIQUE","unique":{"base":"Carnal Armour"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaGVSZXN0bGVzc1dhcmQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2508832517/TheRestlessWard.png"} +{"name":"루미의 혼합물 모조품","refName":"Replica Rumi's Concoction","namespace":"UNIQUE","unique":{"base":"Granite Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvQmxvY2tGbGFzayIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/3bc27f19d5/BlockFlask.png"} +{"name":"무광의 연막 모조품","refName":"Replica Shroud of the Lightless","namespace":"UNIQUE","unique":{"base":"Carnal Armour"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9BYnlzc0JvZHkiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/cd67f9b5d3/AbyssBody.png"} +{"name":"공성분쇄기 모조품","refName":"Replica Siegebreaker","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvODU0ODIiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/ee893f3cb8/85482.png"} +{"name":"신의 슬픔 모조품","refName":"Replica Sorrow of the Divine","namespace":"UNIQUE","unique":{"base":"Sulphur Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvU29ycm93T2ZUaGVEaXZpbmUiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/5d9eb26bd6/SorrowOfTheDivine.png"} +{"name":"영혼의 일격 모조품","refName":"Replica Soul Strike","namespace":"UNIQUE","unique":{"base":"Spike-Point Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9Tb3Vsc3RyaWtlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/ecea242a12/Soulstrike.png"} +{"name":"영혼 올가미 모조품","refName":"Replica Soul Tether","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvU291bFRldGhlciIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/a2b7447a4a/SoulTether.png"} +{"name":"쇄도 모조품","refName":"Replica Stampede","namespace":"UNIQUE","unique":{"base":"Assassin's Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TdXBwb3J0ZXIxYm9vdEEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f0b4c611d1/Supporter1bootA.png"} +{"name":"타살리오의 표식 모조품","refName":"Replica Tasalio's Sign","namespace":"UNIQUE","unique":{"base":"Sapphire Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVGFzYWxpb3NTaWduIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1e73f81099/TasaliosSign.png"} +{"name":"격렬한 강철 모조품","refName":"Replica Tempestuous Steel","namespace":"UNIQUE","unique":{"base":"War Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1RlbXBlc3R1b3VzU3RlZWwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/72078201f9/TempestuousSteel.png"} +{"name":"삼단 공격 모조품","refName":"Replica Three-step Assault","namespace":"UNIQUE","unique":{"base":"Shagreen Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9UaHJlZVN0ZXBBc3NhdWx0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/56daf8a36a/ThreeStepAssault.png"} +{"name":"트리파논 모조품","refName":"Replica Trypanon","namespace":"UNIQUE","unique":{"base":"Great Mallet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHJ5cGFub24iLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/3152ab4124/Trypanon.png"} +{"name":"투코하마의 요새 모조품","refName":"Replica Tukohama's Fortress","namespace":"UNIQUE","unique":{"base":"Ebony Tower Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1R1a29oYW1hc0ZvcnRyZXNzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/e502c4bcf2/TukohamasFortress.png"} +{"name":"툴의 몰락 모조품","refName":"Replica Tulfall","namespace":"UNIQUE","unique":{"base":"Opal Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9UdWxib3JuVXBncmFkZWQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/575d6058a2/TulbornUpgraded.png"} +{"name":"트위즐 모조품","refName":"Replica Twyzel","namespace":"UNIQUE","unique":{"base":"Sage Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kMVVuaXF1ZSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/086aeb214c/Wand1Unique.png"} +{"name":"웅힐의 투박함 모조품","refName":"Replica Ungil's Gauche","namespace":"UNIQUE","unique":{"base":"Boot Knife"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjN1bmlxdWUiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/ec0e6a82fb/Dagger3unique.png"} +{"name":"밤의 장막 모조품","refName":"Replica Veil of the Night","namespace":"UNIQUE","unique":{"base":"Great Helmet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1ZlaWxPZlRoZU5pZ2h0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/809ee0994f/VeilOfTheNight.png"} +{"name":"빅타리오의 자비 모조품","refName":"Replica Victario's Charity","namespace":"UNIQUE","unique":{"base":"Laminated Kite Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1ZpY3Rhcm9zQ2hhcml0eSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/baf0e57fb2/VictarosCharity.png"} +{"name":"공허의 눈 모조품","refName":"Replica Voideye","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvdW51c2VkNCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6f0e76fbbb/unused4.png"} +{"name":"공허 보행자 모조품","refName":"Replica Voidwalker","namespace":"UNIQUE","unique":{"base":"Murder Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Dcm9zc2luZ1RoZVZvaWQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MSwic2hhcGVyIjp0cnVlfV0/97df35ca87/CrossingTheVoid.png"} +{"name":"볼쿠르의 인도 모조품","refName":"Replica Volkuur's Guidance","namespace":"UNIQUE","unique":{"base":"Zealot Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUGFsZUNvdW5jaWxHbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3271f5441a/PaleCouncilGloves.png"} +{"name":"윈드리퍼 모조품","refName":"Replica Windripper","namespace":"UNIQUE","unique":{"base":"Imperial Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0VhZ2xlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/01fdf37ac0/Eagle.png"} +{"name":"엔트로피의 날개 모조품","refName":"Replica Wings of Entropy","namespace":"UNIQUE","unique":{"base":"Ezomyte Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9FbnRyb3B5d2luZ3MiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/86e128789a/Entropywings.png"} +{"name":"겨울심장 모조품","refName":"Replica Winterheart","namespace":"UNIQUE","unique":{"base":"Gold Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9XaW50ZXJIZWFydEFMVCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ff8c8c67f2/WinterHeartALT.png"} +{"name":"불타는 마녀의 술 모조품","refName":"Replica Witchfire Brew","namespace":"UNIQUE","unique":{"base":"Stibnite Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvV2l0Y2hGaXJlQnJldyIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/1696a739f5/WitchFireBrew.png"} +{"name":"보복 부적","refName":"Retaliation Charm","namespace":"UNIQUE","unique":{"base":"Citrine Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9TaGFyZWRVbnNpZ2h0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d12260a7ac/SharedUnsight.png"} +{"name":"울림의 막대","refName":"Reverberation Rod","namespace":"UNIQUE","unique":{"base":"Spiraled Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9SZXZlcmJlcmF0aW9uUm9kIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/676a395a5f/ReverberationRod.png"} +{"name":"다시 쓰인 희미한 기억","refName":"Rewritten Distant Memory","namespace":"UNIQUE","unique":{"base":"Synthesised Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TeW50aGVzaXNHb2xlbUd1YXJkaWFuTWFwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f4fd693221/SynthesisGolemGuardianMap.png"} +{"name":"리그월드의 돌진","refName":"Rigwald's Charge","namespace":"UNIQUE","unique":{"base":"Highland Blade"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDVVbmlxdWUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/ce7492e94d/TwoHandSword5Unique.png"} +{"name":"리그월드의 명령","refName":"Rigwald's Command","namespace":"UNIQUE","unique":{"base":"Midnight Blade"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1JpZ3dhcmxTd29yZCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/90114046a7/RigwarlSword.png"} +{"name":"리그월드의 문양","refName":"Rigwald's Crest","namespace":"UNIQUE","unique":{"base":"Two-Stone Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmlnd2FsZHNDcmVzdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ba5e5c58a3/RigwaldsCrest.png"} +{"name":"리그월드의 저주","refName":"Rigwald's Curse","namespace":"UNIQUE","unique":{"base":"Wereclaw Talisman"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9VbmlxdWVEaXJlQ2xhd1RhbGlzbWFuIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/e8cd3f0898/UniqueDireClawTalisman.png"} +{"name":"리그월드의 화살","refName":"Rigwald's Quills","namespace":"UNIQUE","unique":{"base":"Two-Point Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9SaWd3YWxkc1F1aWxscyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/b8325e5214/RigwaldsQuills.png"} +{"name":"리그월드의 야만","refName":"Rigwald's Savagery","namespace":"UNIQUE","unique":{"base":"Royal Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9SaWd3YXJsQXhlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/e2ee95737e/RigwarlAxe.png"} +{"name":"냉기의 시선","refName":"Rime Gaze","namespace":"UNIQUE","unique":{"base":"Mind Cage"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludFVuaXF1ZTEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/607641b0c2/HelmetDexIntUnique1.png"} +{"name":"불사조의 비상","refName":"Rise of the Phoenix","namespace":"UNIQUE","unique":{"base":"Mosaic Kite Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1Jpc2VvZnRoZXBob2VuaXgiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/965404630a/Riseofthephoenix.png"} +{"name":"리브","refName":"Rive","namespace":"UNIQUE","unique":{"base":"Terror Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9CbGVlZENsYXciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/085844fb05/BleedClaw.png"} +{"name":"로미라의 연회","refName":"Romira's Banquet","namespace":"UNIQUE","unique":{"base":"Diamond Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUm9taXJhc0JhbnF1ZXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/aa054b3ccd/RomirasBanquet.png"} +{"name":"부식혈의 약속","refName":"Rotblood Promise","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQ3Vyc2VkRXllIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6f6b42ce7e/CursedEye.png"} +{"name":"썩은 내장","refName":"Rotgut","namespace":"UNIQUE","unique":{"base":"Quicksilver Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvUm90Z3V0IiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/80c2799242/Rotgut.png"} +{"name":"로스의 역량","refName":"Roth's Reach","namespace":"UNIQUE","unique":{"base":"Recurve Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL1NhcmtoYW1zUmVhY2giLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/89bf0cff0b/SarkhamsReach.png"} +{"name":"루미의 혼합물","refName":"Rumi's Concoction","namespace":"UNIQUE","unique":{"base":"Granite Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvQmxvY2tGbGFzayIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/3bc27f19d5/BlockFlask.png"} +{"name":"리슬라사의 감개","refName":"Ryslatha's Coil","namespace":"UNIQUE","unique":{"base":"Studded Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvUnl1c2xhdGhhc0NsdXRjaGVzIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/5b990decd3/RyuslathasClutches.png"} +{"name":"희생의 심장","refName":"Sacrificial Heart","namespace":"UNIQUE","unique":{"base":"Paua Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9TYWNyaWZpY2lhbF9IZWFydCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e3daa4cd32/Sacrificial_Heart.png"} +{"name":"사디마의 손길","refName":"Sadima's Touch","namespace":"UNIQUE","unique":{"base":"Wool Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU2FkaW1hc1RvdWNoIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/751c14cb9c/SadimasTouch.png"} +{"name":"새무스의 선물","refName":"Saemus' Gift","namespace":"UNIQUE","unique":{"base":"Feathered Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9TZWFtdXNHaWZ0IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/7da61eeb8e/SeamusGift.png"} +{"name":"사펠의 골격","refName":"Saffell's Frame","namespace":"UNIQUE","unique":{"base":"Branded Kite Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludFVuaXF1ZTYiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/89281a7dc3/ShieldStrIntUnique6.png"} +{"name":"모래 폭풍의 얼굴","refName":"Sandstorm Visage","namespace":"UNIQUE","unique":{"base":"Necromancer Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Fud2Vuc1RpYXJhIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/db74af1ed2/AnwensTiara.png"} +{"name":"계절의 진액","refName":"Sap of the Seasons","namespace":"UNIQUE","unique":{"base":"Prismatic Tincture"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL1VuaXF1ZVByaXNtYXRpYyIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/9aaf6a2505/UniquePrismatic.png"} +{"name":"사카왈의 무리","refName":"Saqawal's Flock","namespace":"UNIQUE","unique":{"base":"Silken Hood"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0F2aWFuSGVsbWV0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/29e7c95170/AvianHelmet.png"} +{"name":"사카왈의 둥지","refName":"Saqawal's Nest","namespace":"UNIQUE","unique":{"base":"Blood Raiment"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9BdmlhbkJvZHlBcm1vdXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/260410472f/AvianBodyArmour.png"} +{"name":"사카왈의 발톱","refName":"Saqawal's Talons","namespace":"UNIQUE","unique":{"base":"Hydrascale Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9BdmlhbkJvb3RzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/4ea544616e/AvianBoots.png"} +{"name":"사카왈의 바람","refName":"Saqawal's Winds","namespace":"UNIQUE","unique":{"base":"Soldier Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQXZpYW5HbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/eff17664b9/AvianGloves.png"} +{"name":"스카이바","refName":"Scaeva","namespace":"UNIQUE","unique":{"base":"Gladius"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1NjYWV2YSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/320c7247e3/Scaeva.png"} +{"name":"꾸짖음의 굴레","refName":"Scold's Bridle","namespace":"UNIQUE","unique":{"base":"Mind Cage"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1Njb2xkc0JyaWRsZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/d8277c58aa/ScoldsBridle.png"} +{"name":"전갈의 부름","refName":"Scorpion's Call","namespace":"UNIQUE","unique":{"base":"Heavy Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9CbG9vZFNhbmRRdWl2ZXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/57b1387b43/BloodSandQuiver.png"} +{"name":"잔인성의 두 번째 조각","refName":"Second Piece of Brutality","namespace":"UNIQUE","unique":{"base":"Imperial Staff Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGFyYmluZ2VyU2hhcmRzL1NoYXJkMiIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/992359550f/Shard2.png"} +{"name":"방향의 두 번째 조각","refName":"Second Piece of Directions","namespace":"UNIQUE","unique":{"base":"Blunt Arrow Quiver Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9TaGFyZHMvU2hhcmQyIiwidyI6MSwiaCI6Miwic2NhbGUiOjF9XQ/b992cd2275/Shard2.png"} +{"name":"집중의 두 번째 조각","refName":"Second Piece of Focus","namespace":"UNIQUE","unique":{"base":"Archon Kite Shield Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoYXJkcy9DaGFubmVsaW5nU2hpZWxkU2hhcmQyIiwidyI6MSwiaCI6Miwic2NhbGUiOjF9XQ/d68b3e42b7/ChannelingShieldShard2.png"} +{"name":"태풍의 두 번째 조각","refName":"Second Piece of Storms","namespace":"UNIQUE","unique":{"base":"Callous Mask Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hhcmJpbmdlclNoYXJkcy9TaGFyZDIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/931375a2c0/Shard2.png"} +{"name":"비전의 두 번째 조각","refName":"Second Piece of the Arcane","namespace":"UNIQUE","unique":{"base":"Legion Sword Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0hhcmJpbmdlckxlYWd1ZVNoYXJkcy9IYXJiaW5nZXJTd29yZFNoYXJkMiIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/244c6caa1e/HarbingerSwordShard2.png"} +{"name":"시간의 두 번째 조각","refName":"Second Piece of Time","namespace":"UNIQUE","unique":{"base":"Cloth Belt Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvU2hhcmRzL0hhcmJpbmdlckJlbHRTaGFyZDIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/65a4798357/HarbingerBeltShard2.png"} +{"name":"끓어오르는 광분","refName":"Seething Fury","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1NwZWN0cmFsVGhyb3dUaHJlc2hvbGQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6de1cd92c9/SpectralThrowThreshold.png"} +{"name":"자학 채찍질","refName":"Self-Flagellation","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dyZWVuQ29ycnVwdDUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6aa93279b6/GreenCorrupt5.png"} +{"name":"센타리의 응답","refName":"Sentari's Answer","namespace":"UNIQUE","unique":{"base":"Brass Spirit Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NhbnRhcmlzQW5zd2VyIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/f4438d618f/SantarisAnswer.png"} +{"name":"세를의 걸작","refName":"Serle's Masterwork","namespace":"UNIQUE","unique":{"base":"Phantom Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvS2FsZ0ZvcmdlR3VhcmRNYWNlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/9b638e20ea/KalgForgeGuardMace.png"} +{"name":"바람의 걸음","refName":"Seven-League Step","namespace":"UNIQUE","unique":{"base":"Rawhide Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleFVuaXF1ZTMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/23e4614336/BootsDexUnique3.png"} +{"name":"야습","refName":"Severed in Sleep","namespace":"UNIQUE","unique":{"base":"Cutlass"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0V0ZXJuYWxTbGVlcDEiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/60deeaccc5/EternalSleep1.png"} +{"name":"불운아의 족쇄","refName":"Shackles of the Wretched","namespace":"UNIQUE","unique":{"base":"Chain Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUmVjYWxsaW5ndGhlV3JldGNoZWQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/faf70b1bf0/RecallingtheWretched.png"} +{"name":"솔라리스의 그늘","refName":"Shade of Solaris","namespace":"UNIQUE","unique":{"base":"Sage Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9Tb2xhcmlzV2FuZCIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/8f2f75ad2e/SolarisWand.png"} +{"name":"그림자와 먼지","refName":"Shadows and Dust","namespace":"UNIQUE","unique":{"base":"Clasped Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU2hhZG93c0FuZER1c3QiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/80cb67dfe9/ShadowsAndDust.png"} +{"name":"그림자 봉합","refName":"Shadowstitch","namespace":"UNIQUE","unique":{"base":"Sacrificial Garb"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9TaGFkb3dTdGl0Y2giLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2f847b36bd/ShadowStitch.png"} +{"name":"쉐이퍼의 씨앗","refName":"Shaper's Seed","namespace":"UNIQUE","unique":{"base":"Agate Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9TaGFwZXJzU2VlZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/99265d5594/ShapersSeed.png"} +{"name":"쉐이퍼의 손길","refName":"Shaper's Touch","namespace":"UNIQUE","unique":{"base":"Crusader Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU2hhcGVyc0dsb3ZlcyIsInciOjIsImgiOjIsInNjYWxlIjoxLCJzaGFwZXIiOnRydWV9XQ/7f4c45d53e/ShapersGloves.png"} +{"name":"파편 분쇄","refName":"Shattershard","namespace":"UNIQUE","unique":{"base":"Crimson Round Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0V2ZXJnbGFzc0JhcnJpZXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/179a505595/EverglassBarrier.png"} +{"name":"샤브론의 보폭","refName":"Shavronne's Pace","namespace":"UNIQUE","unique":{"base":"Scholar Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TaGF2cm9ubmVzUGFjZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/065a61276a/ShavronnesPace.png"} +{"name":"샤브론의 계시","refName":"Shavronne's Revelation","namespace":"UNIQUE","unique":{"base":"Moonstone Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTW9vbnN0b25lUmluZ1VuaXF1ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d8c1823da5/MoonstoneRingUnique.png"} +{"name":"샤브론의 겉옷","refName":"Shavronne's Wrappings","namespace":"UNIQUE","unique":{"base":"Occultist's Vestment"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MUNVbmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/4f3e22a163/BodyInt1CUnique.png"} +{"name":"쉬머론","refName":"Shimmeron","namespace":"UNIQUE","unique":{"base":"Tornado Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9FbGRlcldhbmQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MSwiZWxkZXIiOnRydWV9XQ/cfca0aa1f1/ElderWand.png"} +{"name":"오한의 검","refName":"Shiversting","namespace":"UNIQUE","unique":{"base":"Bastard Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDZVbmlxdWUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/084a248453/TwoHandSword6Unique.png"} +{"name":"무광의 연막","refName":"Shroud of the Lightless","namespace":"UNIQUE","unique":{"base":"Carnal Armour"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9BYnlzc0JvZHkiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/cd67f9b5d3/AbyssBody.png"} +{"name":"시빌의 한탄","refName":"Sibyl's Lament","namespace":"UNIQUE","unique":{"base":"Coral Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU2lieWxzTGFtZW50IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/73ccf7d7c4/SibylsLament.png"} +{"name":"요정의 숨결","refName":"Sidhebreath","namespace":"UNIQUE","unique":{"base":"Paua Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQxVW5pcXVlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2a0f1c86cc/Amulet1Unique.png"} +{"name":"공성분쇄기","refName":"Siegebreaker","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvODU0ODIiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/ee893f3cb8/85482.png"} +{"name":"죄악을 먹는 자의 흔적","refName":"Sign of the Sin Eater","namespace":"UNIQUE","unique":{"base":"Tyrant's Sekhem"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9TY2VwdGVyT2ZTdWZmZXJpbmciLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/49a06d1a23/ScepterOfSuffering.png"} +{"name":"은빛 가지","refName":"Silverbranch","namespace":"UNIQUE","unique":{"base":"Crude Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzFVbmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/73d6f96075/Bow1Unique.png"} +{"name":"죄악의 여정","refName":"Sin Trek","namespace":"UNIQUE","unique":{"base":"Stealth Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TaW5UcmVrIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/84281e0f84/SinTrek.png"} +{"name":"씬의 부활","refName":"Sin's Rebirth","namespace":"UNIQUE","unique":{"base":"Stibnite Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvU2luIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/897bffaad1/Sin.png"} +{"name":"중력 붕괴","refName":"Singularity","namespace":"UNIQUE","unique":{"base":"Platinum Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9HbG9vbWV5ZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/12d7027e18/Gloomeye.png"} +{"name":"신빅타의 패기","refName":"Sinvicta's Mettle","namespace":"UNIQUE","unique":{"base":"Ezomyte Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9TaW52aWN0YXNNZXR0bGUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/f1eaf2346b/SinvictasMettle.png"} +{"name":"파편의 영주","refName":"Sire of Shards","namespace":"UNIQUE","unique":{"base":"Serpentine Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvUmFkaWVuY2UiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/229388b736/Radience.png"} +{"name":"군주의 가죽","refName":"Skin of the Lords","namespace":"UNIQUE","unique":{"base":"Simple Robe","fixedStats":["Sockets cannot be modified","+# to Level of Socketed Gems","#% increased Global Defences","You can only Socket Corrupted Gems in this item"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9NeXJpYWRHcmFzcEdyYW5kIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/a4525f8d94/MyriadGraspGrand.png"} +{"name":"충신의 가죽","refName":"Skin of the Loyal","namespace":"UNIQUE","unique":{"base":"Simple Robe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9NeXJpYWRHcmFzcCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/03d7746f71/MyriadGrasp.png"} +{"name":"접전","refName":"Skirmish","namespace":"UNIQUE","unique":{"base":"Two-Point Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9UaGVTa2lybWlzaCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/9fe8813a15/TheSkirmish.png"} +{"name":"두개골 투구","refName":"Skullhead","namespace":"UNIQUE","unique":{"base":"Secutor Helm"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1NrdWxsaGVhZCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/55adeb7e35/Skullhead.png"} +{"name":"하늘 달리기","refName":"Skyforth","namespace":"UNIQUE","unique":{"base":"Sorcerer Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Ta3lmb3J0aCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/56fee4545a/Skyforth.png"} +{"name":"노예 감독관의 손길","refName":"Slavedriver's Hand","namespace":"UNIQUE","unique":{"base":"Ambush Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU2xhdmVkcml2ZXJzSGFuZCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/96ae934cf8/SlavedriversHand.png"} +{"name":"뱀의 손길","refName":"Slitherpinch","namespace":"UNIQUE","unique":{"base":"Bronzescale Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU2xpdGhlcnBpbmNoIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/8f23a9535d/Slitherpinch.png"} +{"name":"슬리버텅","refName":"Slivertongue","namespace":"UNIQUE","unique":{"base":"Harbinger Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL1NpbHZlclRvbmd1ZSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/15c7237f48/SilverTongue.png"} +{"name":"뱀 이빨","refName":"Snakebite","namespace":"UNIQUE","unique":{"base":"Assassin's Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvZnJlbnp5Z2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/2d25853f41/frenzygloves.png"} +{"name":"뱀 구덩이","refName":"Snakepit","namespace":"UNIQUE","unique":{"base":"Sapphire Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU2VycGVudHNlZWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/634a5c8913/Serpentseed.png"} +{"name":"솔라리스 흉갑","refName":"Solaris Lorica","namespace":"UNIQUE","unique":{"base":"Copper Plate"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy90b3JuZmxlc2hvZmdvZHMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/420988ec91/tornfleshofgods.png"} +{"name":"동짓날 밤","refName":"Solstice Vigil","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9TaGFwZXJzUHJlc2VuY2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MSwic2hhcGVyIjp0cnVlfV0/5881f1f025/ShapersPresence.png"} +{"name":"영혼 승천","refName":"Soul Ascension","namespace":"UNIQUE","unique":{"base":"Carnal Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU291bEFzY2Vuc2lvbiIsInciOjIsImgiOjIsInNjYWxlIjoxLCJlbGRlciI6dHJ1ZX1d/261dad7419/SoulAscension.png"} +{"name":"영혼 포획자","refName":"Soul Catcher","namespace":"UNIQUE","unique":{"base":"Quartz Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvU291bENhdGNoZXIiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/00e2d0f2b5/SoulCatcher.png"} +{"name":"영혼의 외투","refName":"Soul Mantle","namespace":"UNIQUE","unique":{"base":"Spidersilk Robe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Tb3VsTWFudGxlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/19bb017ce4/SoulMantle.png"} +{"name":"영혼 거열기","refName":"Soul Ripper","namespace":"UNIQUE","unique":{"base":"Quartz Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvU291bFJpcHBlciIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/f74d277e1d/SoulRipper.png"} +{"name":"영혼의 일격","refName":"Soul Strike","namespace":"UNIQUE","unique":{"base":"Spike-Point Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9Tb3Vsc3RyaWtlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/ecea242a12/Soulstrike.png"} +{"name":"영혼 수확자","refName":"Soul Taker","namespace":"UNIQUE","unique":{"base":"Siege Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9BbGV4YXhlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/647bb8bb63/Alexaxe.png"} +{"name":"영혼 올가미","refName":"Soul Tether","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvU291bFRldGhlciIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/a2b7447a4a/SoulTether.png"} +{"name":"속박된 영혼","refName":"Soulbound","namespace":"UNIQUE","unique":{"base":"Paua Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQm9uZGVkTGlmZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/2ee06d14a2/BondedLife.png"} +{"name":"목마른 영혼","refName":"Soulthirst","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvU291bHRoaXJzdCIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/ee53d9c1ef/Soulthirst.png"} +{"name":"영혼 착취","refName":"Soulwrest","namespace":"UNIQUE","unique":{"base":"Ezomyte Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvVG9wRG93blN0YXZlSWNvbiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/f62cfea775/TopDownStaveIcon.png"} +{"name":"남행","refName":"Southbound","namespace":"UNIQUE","unique":{"base":"Soldier Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvTm9ydGhib3VuZCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7b4cbc713d/Northbound.png"} +{"name":"연설가의 화관","refName":"Speaker's Wreath","namespace":"UNIQUE","unique":{"base":"Prophet Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01pbmlvbkhlbG1ldCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7cf5db368e/MinionHelmet.png"} +{"name":"이중 인격","refName":"Split Personality","namespace":"UNIQUE","unique":{"base":"Crimson Jewel","fixedStats":["This Jewel's Socket has #% increased effect per Allocated Passive Skill between\nit and your Class' starting location"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1VuaXF1ZUpld2VsQmFzZTEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/166fecc863/UniqueJewelBase1.png"} +{"name":"포자 수호","refName":"Sporeguard","namespace":"UNIQUE","unique":{"base":"Saint's Hauberk"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9TdXBwb3J0ZXIxYm9keUEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2eeb350e76/Supporter1bodyA.png"} +{"name":"생기의 잎사귀","refName":"Springleaf","namespace":"UNIQUE","unique":{"base":"Plank Kite Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludFVuaXF1ZTIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/def84c6e93/ShieldStrIntUnique2.png"} +{"name":"레이클라스트의 별","refName":"Star of Wraeclast","namespace":"UNIQUE","unique":{"base":"Ruby Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9EaXJnZU9mVmljdG9yeSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e30fe7839f/DirgeOfVictory.png"} +{"name":"별의 탄생","refName":"Starforge","namespace":"UNIQUE","unique":{"base":"Infernal Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1N0YXJmb3JnZSIsInciOjIsImgiOjQsInNjYWxlIjoxLCJzaGFwZXIiOnRydWV9XQ/ed81eb98fb/Starforge.png"} +{"name":"스타콘자의 머리","refName":"Starkonja's Head","namespace":"UNIQUE","unique":{"base":"Silken Hood"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Z1cnJ5aGVhZG9mc3RhcmtvbmphIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/ba13fa5202/Furryheadofstarkonja.png"} +{"name":"별빛 성배","refName":"Starlight Chalice","namespace":"UNIQUE","unique":{"base":"Iron Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvQWRhcHRhdGlvbkZsYXNrMDIiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/e2a95fa6e6/AdaptationFlask02.png"} +{"name":"정체 감옥","refName":"Stasis Prison","namespace":"UNIQUE","unique":{"base":"Carnal Armour"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9DaHJvbm9tYW5jZXJBcm1vdXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/12a9d49478/ChronomancerArmour.png"} +{"name":"강철지렁이","refName":"Steelworm","namespace":"UNIQUE","unique":{"base":"Broadhead Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9TaGFyZFF1aXZlciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/f531e46359/ShardQuiver.png"} +{"name":"스테판 야드","refName":"Steppan Eard","namespace":"UNIQUE","unique":{"base":"Sorcerer Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Bc3NlZGFpc2ZlcnZvciIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/6758b977d2/Assedaisfervor.png"} +{"name":"라즈워의 보석","refName":"Stone of Lazhwar","namespace":"UNIQUE","unique":{"base":"Lapis Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQ1VW5pcXVlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/c7c2e9bfcf/Amulet5Unique.png"} +{"name":"태풍 구름","refName":"Storm Cloud","namespace":"UNIQUE","unique":{"base":"Long Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL1N0b3JtY2xvdWQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/003957da0c/Stormcloud.png"} +{"name":"태풍 감옥","refName":"Storm Prison","namespace":"UNIQUE","unique":{"base":"Spiraled Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9TdG9ybVByaXNvbiIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/0fc4811c94/StormPrison.png"} +{"name":"태풍의 비밀","refName":"Storm Secret","namespace":"UNIQUE","unique":{"base":"Topaz Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVGh1bmRlckxvb3AiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1322cee671/ThunderLoop.png"} +{"name":"태풍의 선물","refName":"Storm's Gift","namespace":"UNIQUE","unique":{"base":"Assassin's Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3Rvcm1HbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MSwic3ludGhlc2lzZWQiOnRydWV9XQ/11d9bac786/StormGloves.png"} +{"name":"태풍 돌격대","refName":"Stormcharger","namespace":"UNIQUE","unique":{"base":"Plated Greaves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TdG9ybWNoYXJnZXIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4f1fe9a640/Stormcharger.png"} +{"name":"태풍불길","refName":"Stormfire","namespace":"UNIQUE","unique":{"base":"Opal Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU3Rvcm1GaXJlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6b3db4e8df/StormFire.png"} +{"name":"폭풍 탐구자","refName":"Stormseeker","namespace":"UNIQUE","unique":{"base":"Ambush Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3Rvcm1zZWVrZXJHbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5f70258b38/StormseekerGloves.png"} +{"name":"폭풍연막","refName":"Stormshroud","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dyZWVuSmV3ZWwyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/75f171fff6/GreenJewel2.png"} +{"name":"바알의 사연","refName":"Story of the Vaal","namespace":"UNIQUE","unique":{"base":"Gemstone Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1N0b3J5T2ZUaGVWYWFsIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/b83d2c0b68/StoryOfTheVaal.png"} +{"name":"교살의 손아귀","refName":"Stranglegasp","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9HaWZ0T2ZHbG9waCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/babc794c98/GiftOfGloph.png"} +{"name":"노예의 끈","refName":"String of Servitude","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvU3RyaW5nX29mX1NlcnZpdHVkZSIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/a19be8cb67/String_of_Servitude.png"} +{"name":"숭고한 환영","refName":"Sublime Vision","namespace":"UNIQUE","unique":{"base":"Prismatic Jewel","fixedStats":["Auras from your Skills have #% increased Effect on you","#% increased Effect of Non-Curse Auras from your Skills on Enemies"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1N1YmxpbWVWaXNpb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MSwic2hhcGVyIjp0cnVlfV0/c2fd05d3b6/SublimeVision.png"} +{"name":"개벽","refName":"Sudden Dawn","namespace":"UNIQUE","unique":{"base":"Steel Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1NvdWxsZXNzRWxlZ2FuY2UiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/9c572a99fe/SoullessElegance.png"} +{"name":"태양의 파동","refName":"Sunblast","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdDgiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/c50a807f09/Belt8.png"} +{"name":"태양을 보는 춤","refName":"Sundance","namespace":"UNIQUE","unique":{"base":"Clasped Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TdW5kYW5jZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/b3a611197c/Sundance.png"} +{"name":"몰려드는 격동","refName":"Surgebinders","namespace":"UNIQUE","unique":{"base":"Dragonscale Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3VyZ2VCaW5kZXJzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/c0b8d5494e/SurgeBinders.png"} +{"name":"생존자의 죄책감","refName":"Survivor's Guilt","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSW1iYWxhbmNlZENvcmQiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/0560075a4c/ImbalancedCord.png"} +{"name":"스발린","refName":"Svalinn","namespace":"UNIQUE","unique":{"base":"Girded Tower Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0xheWVyZWRCYXJyaWVyU2hpZWxkIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/54079c2263/LayeredBarrierShield.png"} +{"name":"타뷸라 라사","refName":"Tabula Rasa","namespace":"UNIQUE","unique":{"base":"Simple Robe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UYWJ1bGFSYXNhIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/3bdbff0756/TabulaRasa.png"} +{"name":"더럽혀진 맹약","refName":"Tainted Pact","namespace":"UNIQUE","unique":{"base":"Coral Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWludGVkUGFjdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/77ad55d4dd/TaintedPact.png"} +{"name":"타누 아히","refName":"Tanu Ahi","namespace":"UNIQUE","unique":{"base":"Wyrmscale Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR29yZWZpc3RHbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4c11aafeb7/GorefistGloves.png"} +{"name":"흡혈 뿌리","refName":"Taproot","namespace":"UNIQUE","unique":{"base":"Ambusher"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL01hcnJvd0dhc2hlciIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/22be181636/MarrowGasher.png"} +{"name":"타린의 오한","refName":"Taryn's Shiver","namespace":"UNIQUE","unique":{"base":"Maelström Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvVGFyeW5zc2hpdmVyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/b11b3dffb7/Tarynsshiver.png"} +{"name":"타살리오의 표식","refName":"Tasalio's Sign","namespace":"UNIQUE","unique":{"base":"Sapphire Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVGFzYWxpb3NTaWduIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1e73f81099/TasaliosSign.png"} +{"name":"증오의 맛","refName":"Taste of Hate","namespace":"UNIQUE","unique":{"base":"Sapphire Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvVGFzdGVPZkhhdGUiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/37ff43c7ff/TasteOfHate.png"} +{"name":"타부카이","refName":"Tavukai","namespace":"UNIQUE","unique":{"base":"Coral Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYXZ1a2FpIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/86cc756de2/Tavukai.png"} +{"name":"타하누쿠의 때맞춤","refName":"Tawhanuku's Timing","namespace":"UNIQUE","unique":{"base":"Moonstone Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVGF3aGFudWt1UmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/024958a572/TawhanukuRing.png"} +{"name":"타호아의 벌채","refName":"Tawhoa's Felling","namespace":"UNIQUE","unique":{"base":"Piledriver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvSmFkZU1hcm9oaUVycWlIYW1tZXIiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/c0c1952927/JadeMarohiErqiHammer.png"} +{"name":"정화의 눈물","refName":"Tear of Purity","namespace":"UNIQUE","unique":{"base":"Lapis Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UZWFyT2ZQdXJpdHkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8a2e6d3c61/TearOfPurity.png"} +{"name":"테크로드의 응시","refName":"Tecrod's Gaze","namespace":"UNIQUE","unique":{"base":"Murderous Eye Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL011cmRlcm91c0V5ZVVuaXF1ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f54f211029/MurderousEyeUnique.png"} +{"name":"조절된 육체","refName":"Tempered Flesh","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RlbXBlcmVkUmVkIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/66e750a720/TemperedRed.png"} +{"name":"조절된 마음","refName":"Tempered Mind","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RlbXBlcmVkQmx1ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/995f6d4810/TemperedBlue.png"} +{"name":"조절된 정신","refName":"Tempered Spirit","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RlbXBlcmVkR3JlZW4iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/29ecf43831/TemperedGreen.png"} +{"name":"유혹의 발걸음","refName":"Temptation Step","namespace":"UNIQUE","unique":{"base":"Shagreen Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9BdGFpdG9sQm9vdHMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/dd0d386124/AtaitolBoots.png"} +{"name":"다가온 최후","refName":"Terminus Est","namespace":"UNIQUE","unique":{"base":"Tiger Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZFVuaXF1ZTIiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/c5d5843861/TwoHandSwordUnique2.png"} +{"name":"빼앗긴 것","refName":"That Which Was Taken","namespace":"UNIQUE","unique":{"base":"Crimson Jewel","fixedStats":[]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0FmZmxpY3Rpb25KZXdlbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0794886e1c/AfflictionJewel.png"} +{"name":"제독","refName":"The Admiral","namespace":"UNIQUE","unique":{"base":"Varnished Coat"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9IZWFydG9mdGhlRWxlbWVudHMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/f211c99b10/HeartoftheElements.png"} +{"name":"치장한 자","refName":"The Adorned","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RyaWFsbWFzdGVySmV3IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f04386d454/TrialmasterJew.png"} +{"name":"생명의 돌","refName":"The Anima Stone","namespace":"UNIQUE","unique":{"base":"Prismatic Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dvbGVtQ2hhb3MiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/2daa0c1149/GolemChaos.png"} +{"name":"절멸의 빛","refName":"The Annihilating Light","namespace":"UNIQUE","unique":{"base":"Quarterstaff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSW50cmVwaWR1c0RvbG9yZW0iLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8244c5f079/IntrepidusDolorem.png"} +{"name":"기대","refName":"The Anticipation","namespace":"UNIQUE","unique":{"base":"Ezomyte Tower Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0xvbmdpbmcxIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/50fbf4d6ba/Longing1.png"} +{"name":"모루","refName":"The Anvil","namespace":"UNIQUE","unique":{"base":"Amber Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbnZpbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8d05280077/Anvil.png"} +{"name":"배교자","refName":"The Apostate","namespace":"UNIQUE","unique":{"base":"Cabalist Regalia"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9VYmVyQ29ydGV4QXJtb3VyIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/aa4ef867a8/UberCortexArmour.png"} +{"name":"고행자","refName":"The Ascetic","namespace":"UNIQUE","unique":{"base":"Gold Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQxMyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8dd083062d/Amulet13.png"} +{"name":"에일러덱스","refName":"The Aylardex","namespace":"UNIQUE","unique":{"base":"Agate Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9YZWRyYWx5YXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d9ae7f380f/Xedralyas.png"} +{"name":"공포의 균형","refName":"The Balance of Terror","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel","fixedStats":["+#% to all Elemental Resistances"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL3VuaXF1ZTE5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/72dbd8bd3d/unique19.png"} +{"name":"남작","refName":"The Baron","namespace":"UNIQUE","unique":{"base":"Close Helmet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RoZUJhcm9uIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/7a7ba87170/TheBaron.png"} +{"name":"내면의 싸움","refName":"The Battle Within","namespace":"UNIQUE","unique":{"base":"Oakbranch Tincture"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL1VuaXF1ZU9ha2JyYW5jaCIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/3200ef2d9b/UniqueOakbranch.png"} +{"name":"교두보","refName":"The Beachhead","namespace":"UNIQUE","unique":{"base":"Harbinger Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9IYXJiaW5nZXJXaGl0ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/4a6302065c/HarbingerWhite.png","disc":{"mapTier":"W"}} +{"name":"교두보","refName":"The Beachhead","namespace":"UNIQUE","unique":{"base":"Harbinger Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9IYXJiaW5nZXJZZWxsb3ciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e98c7f846e/HarbingerYellow.png","disc":{"mapTier":"Y"}} +{"name":"교두보","refName":"The Beachhead","namespace":"UNIQUE","unique":{"base":"Harbinger Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9IYXJiaW5nZXJSZWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1321ebcec0/HarbingerRed.png","disc":{"mapTier":"R"}} +{"name":"야수 모피 숄","refName":"The Beast Fur Shawl","namespace":"UNIQUE","unique":{"base":"Vaal Regalia"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9CZWFzdEZ1clNoYXdsIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f2a30a7f0c/BeastFurShawl.png"} +{"name":"검은 지팡이","refName":"The Black Cane","namespace":"UNIQUE","unique":{"base":"Royal Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9UaGVCbGFja0NhbmUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/b2aa96460e/TheBlackCane.png"} +{"name":"피의 춤","refName":"The Blood Dance","namespace":"UNIQUE","unique":{"base":"Sharkskin Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Hb3JlRnJlbnp5IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/db5eeb8b01/GoreFrenzy.png"} +{"name":"이노센스의 피","refName":"The Blood of Innocence","namespace":"UNIQUE","unique":{"base":"Censer Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL0NvcmVSZWxpY1VuaXF1ZTF4MiIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/a9230e3b96/CoreRelicUnique1x2.png"} +{"name":"피의 수확자","refName":"The Blood Reaper","namespace":"UNIQUE","unique":{"base":"Headsman Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlVW5pcXVlMiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/3f8b59ec70/TwoHandAxeUnique2.png"} +{"name":"피의 가시","refName":"The Blood Thorn","namespace":"UNIQUE","unique":{"base":"Gnarled Branch"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvVGhlQmxvb2RUaG9ybiIsInciOjEsImgiOjQsInNjYWxlIjoxfV0/3dac5ee34b/TheBloodThorn.png"} +{"name":"파란 꿈","refName":"The Blue Dream","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RoZUJsdWVEcmVhbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1cb1c74958/TheBlueDream.png"} +{"name":"파란 악몽","refName":"The Blue Nightmare","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RoZUJsdWVEcmVhbVVwZ3JhZGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MSwicmVsaWMiOnRydWV9XQ/6b097a58d9/TheBlueDreamUpgrade.png"} +{"name":"황동 철갑","refName":"The Brass Dome","namespace":"UNIQUE","unique":{"base":"Gladiator Plate"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Eb21lT2ZCcmFzcyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/41f06694f2/DomeOfBrass.png"} +{"name":"염수 왕관","refName":"The Brine Crown","namespace":"UNIQUE","unique":{"base":"Prophet Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RoZUJyaW5lQ3Jvd24iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/785aa5f630/TheBrineCrown.png"} +{"name":"비의 인도자","refName":"The Bringer of Rain","namespace":"UNIQUE","unique":{"base":"Nightmare Bascinet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RoZUJyaW5nZXJvZlJhaW4iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3878572958/TheBringerofRain.png"} +{"name":"부서진 향로","refName":"The Broken Censer","namespace":"UNIQUE","unique":{"base":"Tome Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljVW5pcXVlM3gxIiwidyI6MywiaCI6MSwic2NhbGUiOjF9XQ/97c059a9f1/RelicUnique3x1.png"} +{"name":"부서진 왕관","refName":"The Broken Crown","namespace":"UNIQUE","unique":{"base":"Prophet Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Jyb2tlbkNyb3duIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/98b19a6cfb/BrokenCrown.png"} +{"name":"그림자의 짐","refName":"The Burden of Shadows","namespace":"UNIQUE","unique":{"base":"Primordial Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvVm9vZG9vS2luZ1N0YWZmIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/295f49d20f/VoodooKingStaff.png"} +{"name":"버거운 진실","refName":"The Burden of Truth","namespace":"UNIQUE","unique":{"base":"Crystal Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvU2lydXNCZWx0IiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/757f213691/SirusBelt.png"} +{"name":"천공의 죔쇠","refName":"The Celestial Brace","namespace":"UNIQUE","unique":{"base":"Goliath Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvVWJlclNlYXJpbmdFeGFyY2hHbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/47d365fea7/UberSearingExarchGloves.png"} +{"name":"징계의 사슬","refName":"The Chains of Castigation","namespace":"UNIQUE","unique":{"base":"Processional Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL0NvcmVSZWxpY1VuaXF1ZTF4MyIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/0640b266e6/CoreRelicUnique1x3.png"} +{"name":"다가오는 대재난","refName":"The Coming Calamity","namespace":"UNIQUE","unique":{"base":"Destroyer Regalia"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9TcGlyaXRIYXJuZXNzIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/69c0a6780d/SpiritHarness.png"} +{"name":"타들어 가는 어둠","refName":"The Consuming Dark","namespace":"UNIQUE","unique":{"base":"Fiend Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0NvbnN1bWluZ3RoZURhcmsiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/71882cbd42/ConsumingtheDark.png"} +{"name":"계약","refName":"The Covenant","namespace":"UNIQUE","unique":{"base":"Spidersilk Robe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9FbWJyYWNlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/d0110e7660/Embrace.png"} +{"name":"겁쟁이의 시험","refName":"The Coward's Trial","namespace":"UNIQUE","unique":{"base":"Cursed Crypt Map"},"map":{"screenshot":"https://i.imgur.com/BCOsIS2.jpg"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VbmRlYWRTaWVnZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/53f1dbdcb4/UndeadSiege.png"} +{"name":"진홍색 태풍","refName":"The Crimson Storm","namespace":"UNIQUE","unique":{"base":"Steelwood Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0ZvcnRpZmljYXRpb25zVW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/b95b104d3e/FortificationsUnique.png"} +{"name":"춤추는 수도승","refName":"The Dancing Dervish","namespace":"UNIQUE","unique":{"base":"Reaver Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1JoeXNibGFkZSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/3ed974e708/Rhysblade.png"} +{"name":"어둠 예견자","refName":"The Dark Seer","namespace":"UNIQUE","unique":{"base":"Shadow Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9Wb2lkR2F6ZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/e24a55cd27/VoidGaze.png"} +{"name":"심해의 가죽","refName":"The Deep One's Hide","namespace":"UNIQUE","unique":{"base":"Studded Round Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0NoaXRpbmh1bGwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/90921c2a19/Chitinhull.png"} +{"name":"정신 포식자","refName":"The Devourer of Minds","namespace":"UNIQUE","unique":{"base":"Pig-Faced Bascinet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1ViZXJFbGRlckhlbG0iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MSwiZWxkZXIiOnRydWV9XQ/c701291b5a/UberElderHelm.png"} +{"name":"걸신들린 왕관","refName":"The Devouring Diadem","namespace":"UNIQUE","unique":{"base":"Necromancer Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RoZURldm91cmluZ0RpYWRlbSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/8bc93d2104/TheDevouringDiadem.png"} +{"name":"약품","refName":"The Druggery","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvVGhlRHJ1Z2dlcnkiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/136b59f839/TheDruggery.png"} +{"name":"시체처리사의 장갑","refName":"The Embalmer","namespace":"UNIQUE","unique":{"base":"Carnal Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQWxsZWxvcGF0aHkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/bcf128d770/Allelopathy.png"} +{"name":"증오의 신","refName":"The Enmity Divine","namespace":"UNIQUE","unique":{"base":"Imperial Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvUmFnZSBTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/7c95713fe7/Rage%20Staff.png"} +{"name":"덧없는 유대","refName":"The Ephemeral Bond","namespace":"UNIQUE","unique":{"base":"Lapis Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9DaGFyZ2UgQW1wbGlmaWVyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/a285d4c77a/Charge%20Amplifier.png"} +{"name":"영원한 사과","refName":"The Eternal Apple","namespace":"UNIQUE","unique":{"base":"Chiming Spirit Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1RoZUV0ZXJuYWxBcHBsZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0f1033587d/TheEternalApple.png"} +{"name":"영원한 투쟁","refName":"The Eternal Struggle","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Wb2lkY29yZUFtdWxldCIsInciOjEsImgiOjEsInNjYWxlIjoxLCJzZWFyaW5nIjp0cnVlLCJ0YW5nbGVkIjp0cnVlfV0/3ca1f8ecb5/VoidcoreAmulet.png"} +{"name":"영원의 연막","refName":"The Eternity Shroud","namespace":"UNIQUE","unique":{"base":"Blood Raiment"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9NYW50bGVPZkRpc21hbnRsaW5nIiwidyI6MiwiaCI6Mywic2NhbGUiOjEsInNoYXBlciI6dHJ1ZX1d/bd0c9d1646/MantleOfDismantling.png"} +{"name":"펠보그 송곳니","refName":"The Felbog Fang","namespace":"UNIQUE","unique":{"base":"Citrine Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9TYWJlcnRvb3Roc1BlbmRhbnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/bbb6f80324/SabertoothsPendant.png"} +{"name":"최초의 문양","refName":"The First Crest","namespace":"UNIQUE","unique":{"base":"Coffer Relic","fixedStats":["This item is destroyed when applied to a Sanctum"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljVW5pcXVlMngyIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/15bd9eec94/RelicUnique2x2.png"} +{"name":"결함 있는 피난처","refName":"The Flawed Refuge","namespace":"UNIQUE","unique":{"base":"Maple Round Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0FmZmxpY3Rpb25TaGllbGQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e24ff32b75/AfflictionShield.png"} +{"name":"풋내기","refName":"The Fledgling","namespace":"UNIQUE","unique":{"base":"Lacquered Helmet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0V4dHJlbWVGb2N1cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/d900d9764f/ExtremeFocus.png"} +{"name":"얽매이지 않은 흐름","refName":"The Flow Untethered","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSGFyYmluZ2VyQmVsdCIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/805aeb48f1/HarbingerBelt.png"} +{"name":"무형의 불꽃","refName":"The Formless Flame","namespace":"UNIQUE","unique":{"base":"Royal Burgonet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Zvcm1sZXNzSW5GbGFtZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/baa0d0009b/FormlessInFlames.png"} +{"name":"무형의 지옥불","refName":"The Formless Inferno","namespace":"UNIQUE","unique":{"base":"Royal Burgonet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Zvcm1sZXNzSW5GbGFtZXNVUEdSQURFIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/3ac12068fd/FormlessInFlamesUPGRADE.png"} +{"name":"네 번째 맹세","refName":"The Fourth Vow","namespace":"UNIQUE","unique":{"base":"Devout Chainmail"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9DbGVyaWNzU2FuY3R1YXJ5IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/447f6b17b1/ClericsSanctuary.png"} +{"name":"분쇄형 회전기","refName":"The Fracturing Spinner","namespace":"UNIQUE","unique":{"base":"Blunt Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9IYXJiaW5nZXJRdWl2ZXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/288bd960f9/HarbingerQuiver.png"} +{"name":"최전방","refName":"The Front Line","namespace":"UNIQUE","unique":{"base":"Small Cluster Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1ZldGVyYW4nc0F3YXJlbmVzc0pld2VsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/7912a0c702/Veteran%27sAwarenessJewel.png"} +{"name":"버팀대","refName":"The Fulcrum","namespace":"UNIQUE","unique":{"base":"Ezomyte Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvRWxlbWVudGFsSGFybW9ueSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/912f60acd7/ElementalHarmony.png"} +{"name":"무시무시한 극장","refName":"The Ghastly Theatre","namespace":"UNIQUE","unique":{"base":"Teak Round Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1Ntb2tlQW5kTWlycm9ycyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/95eb622489/SmokeAndMirrors.png"} +{"name":"도금된 성배","refName":"The Gilded Chalice","namespace":"UNIQUE","unique":{"base":"Processional Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljVW5pcXVlMXgzIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/7a0ff8a041/RelicUnique1x3.png"} +{"name":"걸신들린 파도","refName":"The Gluttonous Tide","namespace":"UNIQUE","unique":{"base":"Citadel Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0ZyZW56aWVkVGVudGFjbGVzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/6dc3218af0/FrenziedTentacles.png"} +{"name":"속박된 여신","refName":"The Goddess Bound","namespace":"UNIQUE","unique":{"base":"Whalebone Rapier"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1VuaXF1ZVJhcGllcjYiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/b9f0cc5e60/UniqueRapier6.png"} +{"name":"경멸받는 여신","refName":"The Goddess Scorned","namespace":"UNIQUE","unique":{"base":"Elegant Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1RoZUdvZGRlc3NzY29ybmVkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/65470d38e9/TheGoddessscorned.png"} +{"name":"황금 법칙","refName":"The Golden Rule","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RoZUdvbGRlblJ1bGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3c5f6382fc/TheGoldenRule.png"} +{"name":"녹색 꿈","refName":"The Green Dream","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RoZUdyZWVuRHJlYW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1a25683711/TheGreenDream.png"} +{"name":"녹색 악몽","refName":"The Green Nightmare","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RoZUdyZWVuRHJlYW1VcGdyYWRlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2a2234606a/TheGreenDreamUpgrade.png"} +{"name":"회색 가지","refName":"The Grey Spire","namespace":"UNIQUE","unique":{"base":"Judgement Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvVGhlR3JleVNwaXJlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/6e3a1c2c79/TheGreySpire.png"} +{"name":"갈매기","refName":"The Gull","namespace":"UNIQUE","unique":{"base":"Raven Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RoZUd1bGwiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/ca1678efd9/TheGull.png"} +{"name":"평온","refName":"The Halcyon","namespace":"UNIQUE","unique":{"base":"Jade Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9HbGFjaWVyQ2Fjb29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9bb08197c4/GlacierCacoon.png"} +{"name":"프레시아의 손","refName":"The Hand of Phrecia","namespace":"UNIQUE","unique":{"base":"Mesh Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUGhyZWNpYUdsb3ZlcyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/29b76be04c/PhreciaGloves.png"} +{"name":"수확","refName":"The Harvest","namespace":"UNIQUE","unique":{"base":"Jasper Chopper"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9UaGVFeHRyYWN0b3IiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8452349a24/TheExtractor.png"} +{"name":"증오에 찬 고발인","refName":"The Hateful Accuser","namespace":"UNIQUE","unique":{"base":"Nameless Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUml0dWFsUGhhbnRhc21SaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/cba7f7e493/RitualPhantasmRing.png"} +{"name":"숨겨진 칼날","refName":"The Hidden Blade","namespace":"UNIQUE","unique":{"base":"Ambusher"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL1NlY3JldEJsYWRlIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/a82388d924/SecretBlade.png"} +{"name":"노상강도","refName":"The Highwayman","namespace":"UNIQUE","unique":{"base":"Gold Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmFuZGl0UmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e08cd25657/BanditRing.png"} +{"name":"신성의 시간","refName":"The Hour of Divinity","namespace":"UNIQUE","unique":{"base":"Censer Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljVW5pcXVlMXgyIiwidyI6MSwiaCI6Miwic2NhbGUiOjF9XQ/f39ebcc337/RelicUnique1x2.png"} +{"name":"허기진 고리","refName":"The Hungry Loop","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVGhlSHVuZ3J5TG9vcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/2225980dc6/TheHungryLoop.png"} +{"name":"이그노몬","refName":"The Ignomon","namespace":"UNIQUE","unique":{"base":"Gold Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQ2VW5pcXVlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/41a964dea4/Amulet6Unique.png"} +{"name":"불멸의 의지","refName":"The Immortal Will","namespace":"UNIQUE","unique":{"base":"Archon Kite Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0hhcmJpbmdlclNoaWVsZFVwZ3JhZGVkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/a259d55fe1/HarbingerShieldUpgraded.png"} +{"name":"끝없는 추적","refName":"The Infinite Pursuit","namespace":"UNIQUE","unique":{"base":"Titan Greaves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Ud29Ub25lZEJvb3RzQUxUMyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ce68366000/TwoTonedBootsALT3.png"} +{"name":"취조","refName":"The Interrogation","namespace":"UNIQUE","unique":{"base":"Small Cluster Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1NlY3JldHNPZkFnb255SmV3ZWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/fbc829657e/SecretsOfAgonyJewel.png"} +{"name":"철의 요새","refName":"The Iron Fortress","namespace":"UNIQUE","unique":{"base":"Crusader Plate"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Jcm9uSGVhcnQgRmluYWwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/113c4e83b6/IronHeart%20Final.png"} +{"name":"철제 운집","refName":"The Iron Mass","namespace":"UNIQUE","unique":{"base":"Gladius"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1NrZWxldG9uU3dvcmQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/f3b8e5c988/SkeletonSword.png"} +{"name":"상아탑","refName":"The Ivory Tower","namespace":"UNIQUE","unique":{"base":"Saint's Hauberk"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaGVJdm9yeVRvd2VyIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/26d71eb965/TheIvoryTower.png"} +{"name":"징크스 액막이","refName":"The Jinxed Juju","namespace":"UNIQUE","unique":{"base":"Citrine Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9KdWp1c1NvdWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6d30276e6f/JujusSoul.png"} +{"name":"의미의 빛","refName":"The Light of Meaning","namespace":"UNIQUE","unique":{"base":"Prismatic Jewel","fixedStats":[]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0FmZmxpY3Rpb25KZXdlbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0794886e1c/AfflictionJewel.png"} +{"name":"살아있는 칼날","refName":"The Living Blade","namespace":"UNIQUE","unique":{"base":"Ezomyte Blade"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL0dyZWVuZXllc1N3b3JkIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/f9c9d0d265/GreeneyesSword.png"} +{"name":"거물","refName":"The Magnate","namespace":"UNIQUE","unique":{"base":"Studded Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQnVja2xlZEJlbHRVbmlxdWUiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/10d87b7baf/BuckledBeltUnique.png"} +{"name":"밤의 등화","refName":"The Night Lamp","namespace":"UNIQUE","unique":{"base":"Urn Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljVW5pcXVlMngxIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/2a6a7e317d/RelicUnique2x1.png"} +{"name":"억압자","refName":"The Oppressor","namespace":"UNIQUE","unique":{"base":"Elegant Round Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1RoZVN1cHByZXNzb3IiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/c8dcd744a2/TheSuppressor.png"} +{"name":"원형의 성서","refName":"The Original Scripture","namespace":"UNIQUE","unique":{"base":"Papyrus Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljVW5pcXVlNHgxIiwidyI6NCwiaCI6MSwic2NhbGUiOjF9XQ/e6e8bfb6e4/RelicUnique4x1.png"} +{"name":"넘치는 성배","refName":"The Overflowing Chalice","namespace":"UNIQUE","unique":{"base":"Sulphur Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvT3ZlcmZsb3dpbmdDaGFsaWNlIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/ff0069d957/OverflowingChalice.png"} +{"name":"대혼란","refName":"The Pandemonius","namespace":"UNIQUE","unique":{"base":"Jade Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9HbGFjaWVyQ2Fjb29uVXBncmFkZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f54aa988e2/GlacierCacoonUpgrade.png"} +{"name":"부랑자","refName":"The Pariah","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVGhlUGFyaWFoIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/778fe35c1e/ThePariah.png"} +{"name":"완벽한 구조","refName":"The Perfect Form","namespace":"UNIQUE","unique":{"base":"Zodiac Leather"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaGVQZXJmZWN0Rm9ybSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/b149b68ecb/ThePerfectForm.png"} +{"name":"시인의 펜","refName":"The Poet's Pen","namespace":"UNIQUE","unique":{"base":"Carved Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9Qb2V0c1BlbiIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/f6f0645739/PoetsPen.png"} +{"name":"평형의 분광기","refName":"The Poised Prism","namespace":"UNIQUE","unique":{"base":"Primal Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9QcmlzbWF0aWNHbGVhbSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/25341c4e59/PrismaticGleam.png"} +{"name":"힘과 약속","refName":"The Power and the Promise","namespace":"UNIQUE","unique":{"base":"Tome Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL0NvcmVSZWxpY1VuaXF1ZTN4MSIsInciOjMsImgiOjEsInNjYWxlIjoxfV0/b7de2a9095/CoreRelicUnique3x1.png"} +{"name":"태고의 사슬","refName":"The Primordial Chain","namespace":"UNIQUE","unique":{"base":"Coral Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UaGVQcmltb3JkaWFsQ2hhaW4iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cd566defdb/ThePrimordialChain.png"} +{"name":"공주","refName":"The Princess","namespace":"UNIQUE","unique":{"base":"Sabre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDNVbmlxdWUiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/2ffa300730/OneHandSword3Unique.png"} +{"name":"악취 나는 수도원","refName":"The Putrid Cloister","namespace":"UNIQUE","unique":{"base":"Museum Map"},"map":{"screenshot":"https://i.imgur.com/s3LKUtm.jpg"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9QdXRyaWRDbG9pc3RlciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/4113992f12/PutridCloister.png"} +{"name":"여왕의 갈망","refName":"The Queen's Hunger","namespace":"UNIQUE","unique":{"base":"Vaal Regalia"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaGVRdWVlbnNIdW5nZXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9dd0ea5e00/TheQueensHunger.png"} +{"name":"정신 억압자","refName":"The Queller of Minds","namespace":"UNIQUE","unique":{"base":"Nameless Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUml0dWFsU2lsZW5jZVJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5e33a5eefb/RitualSilenceRing.png"} +{"name":"쥐덫","refName":"The Rat Cage","namespace":"UNIQUE","unique":{"base":"Sharkskin Tunic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaGVSYXRDYWdlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/585313cc27/TheRatCage.png"} +{"name":"붉은 꿈","refName":"The Red Dream","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RoZVJlZERyZWFtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5fc736ec75/TheRedDream.png"} +{"name":"붉은 악몽","refName":"The Red Nightmare","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RoZVJlZERyZWFtVXBncmFkZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/69a20aa6e0/TheRedDreamUpgrade.png"} +{"name":"붉은 발자취","refName":"The Red Trail","namespace":"UNIQUE","unique":{"base":"Titan Greaves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9UaGVJbmZpbml0ZVB1cnN1aXQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/518d10f12f/TheInfinitePursuit.png"} +{"name":"끊임없는 수호","refName":"The Restless Ward","namespace":"UNIQUE","unique":{"base":"Carnal Armour"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaGVSZXN0bGVzc1dhcmQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2508832517/TheRestlessWard.png"} +{"name":"레치","refName":"The Retch","namespace":"UNIQUE","unique":{"base":"Rustic Sash"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvVGhlUmV0Y2giLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/4d93673157/TheRetch.png"} +{"name":"퍼져나가는 생각","refName":"The Rippling Thoughts","namespace":"UNIQUE","unique":{"base":"Legion Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0hhcmJpbmdlckxlYWd1ZVN3b3JkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/e8a974a73b/HarbingerLeagueSword.png"} +{"name":"구원자","refName":"The Saviour","namespace":"UNIQUE","unique":{"base":"Legion Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL01pcmFnZUJsYWRlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/c84975781c/MirageBlade.png"} +{"name":"정의의 저울","refName":"The Scales of Justice","namespace":"UNIQUE","unique":{"base":"Chiming Spirit Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0dvZGRlc3NTY2FsZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e4ddbd93f5/GoddessScales.png"} +{"name":"재앙","refName":"The Scourge","namespace":"UNIQUE","unique":{"base":"Terror Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9UaGVTY291cmdlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/598a9f9893/TheScourge.png"} +{"name":"울부짖는 독수리","refName":"The Screaming Eagle","namespace":"UNIQUE","unique":{"base":"Jade Hatchet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9TY3JlYW1pbmdlYWdsZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/1fd02e9312/Screamingeagle.png"} +{"name":"이글거리는 손길","refName":"The Searing Touch","namespace":"UNIQUE","unique":{"base":"Lathi"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY0dW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/5c7ddd5550/Staff4unique.png"} +{"name":"두 번째 성체","refName":"The Second Sacrament","namespace":"UNIQUE","unique":{"base":"Candlestick Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljVW5pcXVlMXg0IiwidyI6MSwiaCI6NCwic2NhbGUiOjF9XQ/adaa7ec07c/RelicUnique1x4.png"} +{"name":"이기적인 목자","refName":"The Selfish Shepherd","namespace":"UNIQUE","unique":{"base":"Nameless Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUml0dWFsTGlmZWRyYWluUmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0ce3466499/RitualLifedrainRing.png"} +{"name":"산산이 조각난 신성","refName":"The Shattered Divinity","namespace":"UNIQUE","unique":{"base":"Blunt Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9IYXJiaW5nZXJRdWl2ZXJVcGdyYWRlZCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/866d1ab1b7/HarbingerQuiverUpgraded.png"} +{"name":"포위 작전","refName":"The Siege","namespace":"UNIQUE","unique":{"base":"Small Cluster Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0tpbmV0aWNpc21KZXdlbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d748a39b2e/KineticismJewel.png"} +{"name":"설맹의 은총","refName":"The Snowblind Grace","namespace":"UNIQUE","unique":{"base":"Zodiac Leather"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaGVTbm93YmxpbmRHcmFjZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/1f9378f004/TheSnowblindGrace.png"} +{"name":"신의 슬픔","refName":"The Sorrow of the Divine","namespace":"UNIQUE","unique":{"base":"Sulphur Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvU29ycm93T2ZUaGVEaXZpbmUiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/5d9eb26bd6/SorrowOfTheDivine.png"} +{"name":"종자","refName":"The Squire","namespace":"UNIQUE","unique":{"base":"Elegant Round Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0Nhc3Bpcm9zUmVzb25hbmNlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/94531d2461/CaspirosResonance.png"} +{"name":"쇄도","refName":"The Stampede","namespace":"UNIQUE","unique":{"base":"Assassin's Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TdXBwb3J0ZXIxYm9vdEEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f0b4c611d1/Supporter1bootA.png"} +{"name":"태풍의 눈","refName":"The Stormheart","namespace":"UNIQUE","unique":{"base":"Royal Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY4dW5pcXVlWCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/fa0b46bc0c/Staff8uniqueX.png"} +{"name":"지고의 진리","refName":"The Supreme Truth","namespace":"UNIQUE","unique":{"base":"Crystal Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9UaGVzdXByZW1ldHJ1dGgiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/1f03434324/Thesupremetruth.png"} +{"name":"쇄도하는 생각","refName":"The Surging Thoughts","namespace":"UNIQUE","unique":{"base":"Legion Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0hhcmJpbmdlclN3b3JkVXBncmFkZWQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/bf1d1647f5/HarbingerSwordUpgraded.png"} +{"name":"포기","refName":"The Surrender","namespace":"UNIQUE","unique":{"base":"Ezomyte Tower Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0xvbmdpbmcyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/c97882a68e/Longing2.png"} +{"name":"조련","refName":"The Taming","namespace":"UNIQUE","unique":{"base":"Prismatic Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVGhlVGFtaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/17c5d3d74b/TheTaming.png"} +{"name":"몰려오는 폭풍","refName":"The Tempest Rising","namespace":"UNIQUE","unique":{"base":"Goliath Greaves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9VYmVyU2lydXNCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/587f0ef638/UberSirusBoots.png"} +{"name":"폭풍의 속박","refName":"The Tempest's Binding","namespace":"UNIQUE","unique":{"base":"Callous Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0NoaWxsU2hvY2tIYXJiaW5nZXJNYXNrIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/9a113d997b/ChillShockHarbingerMask.png"} +{"name":"폭풍의 해방","refName":"The Tempest's Liberation","namespace":"UNIQUE","unique":{"base":"Callous Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hhcmJpbmdlckhlbG1VcGdyYWRlZCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f4b2c70b07/HarbingerHelmUpgraded.png"} +{"name":"격렬한 강철","refName":"The Tempestuous Steel","namespace":"UNIQUE","unique":{"base":"War Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1RlbXBlc3R1b3VzU3RlZWwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/72078201f9/TempestuousSteel.png"} +{"name":"세 마리의 용","refName":"The Three Dragons","namespace":"UNIQUE","unique":{"base":"Golden Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RocmVlRHJhZ29ucyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/50afe0768b/ThreeDragons.png"} +{"name":"시간의 파도","refName":"The Tides of Time","namespace":"UNIQUE","unique":{"base":"Vanguard Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvVWJlclNoYXBlckJlbHQiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MSwic2hhcGVyIjp0cnVlfV0/40da4c8de9/UberShaperBelt.png"} +{"name":"격류의 교화","refName":"The Torrent's Reclamation","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSGFyYmluZ2VyQmVsdFVwZ3JhZGVkIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/0c8b942a94/HarbingerBeltUpgraded.png"} +{"name":"협잡꾼의 미소","refName":"The Trickster's Smile","namespace":"UNIQUE","unique":{"base":"Visored Sallet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0F6bWVyaUhlbG1ldCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/8f7af19434/AzmeriHelmet.png"} +{"name":"황혼의 사원","refName":"The Twilight Temple","namespace":"UNIQUE","unique":{"base":"Moon Temple Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9DZWxlc3RpYWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/2b43e37784/Celestial.png"} +{"name":"불굴의 의지","refName":"The Unshattered Will","namespace":"UNIQUE","unique":{"base":"Archon Kite Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0NoYW5uZWxpbmcgU2hpZWxkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/95b237ca78/Channeling%20Shield.png"} +{"name":"손길이 닿지 않은 영혼","refName":"The Untouched Soul","namespace":"UNIQUE","unique":{"base":"Gold Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9TdHJpbmdPZlJpbmdzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/a79e77693d/StringOfRings.png"} +{"name":"극도","refName":"The Utmost","namespace":"UNIQUE","unique":{"base":"Gold Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9QaW5uYWNsZUFtdWxldCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9e3b1529fa/PinnacleAmulet.png"} +{"name":"최정점","refName":"The Vertex","namespace":"UNIQUE","unique":{"base":"Vaal Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RoZVZlcnRleCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/e4cca2929d/TheVertex.png"} +{"name":"빙타 광장","refName":"The Vinktar Square","namespace":"UNIQUE","unique":{"base":"Courtyard Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UaGVWaW5rdGFyU3F1YXJlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d26b82ca56/TheVinktarSquare.png"} +{"name":"간수의 낙인","refName":"The Warden's Brand","namespace":"UNIQUE","unique":{"base":"Iron Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVGhlV2FyZGVuc0JhbmQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5d3830d11d/TheWardensBand.png"} +{"name":"말벌의 독침","refName":"The Wasp Nest","namespace":"UNIQUE","unique":{"base":"Throat Stabber"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9MZXZpYXRoYW5pdm9yeSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/8d31776c34/Leviathanivory.png"} +{"name":"속삭이는 얼음","refName":"The Whispering Ice","namespace":"UNIQUE","unique":{"base":"Vile Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY4dW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/04e7459f43/Staff8unique.png"} +{"name":"숙명의 바람","refName":"The Winds of Fate","namespace":"UNIQUE","unique":{"base":"Foul Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvQW53ZW5zU3RhZmYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/e26a5d3c65/AnwensStaff.png"} +{"name":"지혜의 참나무","refName":"The Wise Oak","namespace":"UNIQUE","unique":{"base":"Bismuth Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvVGhlV2lzZU9hayIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/80a47134d5/TheWiseOak.png"} +{"name":"꿈틀거리는 단지","refName":"The Writhing Jar","namespace":"UNIQUE","unique":{"base":"Hallowed Hybrid Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvV3JpdGhpbmdKYXIiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/6d3e384036/WrithingJar.png"} +{"name":"누그러진 필멸성","refName":"The Yielding Mortality","namespace":"UNIQUE","unique":{"base":"Imperial Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGFyYmluZ2VyU3RhZmZVcGdyYWRlZCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/76cf7c8cb7/HarbingerStaffUpgraded.png"} +{"name":"도둑의 고통","refName":"Thief's Torment","namespace":"UNIQUE","unique":{"base":"Prismatic Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVGhpZWZzVG9ybWVudCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1c182176dc/ThiefsTorment.png"} +{"name":"잔인성의 세 번째 조각","refName":"Third Piece of Brutality","namespace":"UNIQUE","unique":{"base":"Imperial Staff Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGFyYmluZ2VyU2hhcmRzL1NoYXJkMyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/b2ec5375d5/Shard3.png"} +{"name":"방향의 세 번째 조각","refName":"Third Piece of Directions","namespace":"UNIQUE","unique":{"base":"Blunt Arrow Quiver Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9TaGFyZHMvU2hhcmQzIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/d577e203a5/Shard3.png"} +{"name":"집중의 세 번째 조각","refName":"Third Piece of Focus","namespace":"UNIQUE","unique":{"base":"Archon Kite Shield Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoYXJkcy9DaGFubmVsaW5nU2hpZWxkU2hhcmQzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/c50183e0b2/ChannelingShieldShard3.png"} +{"name":"태풍의 세 번째 조각","refName":"Third Piece of Storms","namespace":"UNIQUE","unique":{"base":"Callous Mask Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hhcmJpbmdlclNoYXJkcy9TaGFyZDMiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/130f12073c/Shard3.png"} +{"name":"비전의 세 번째 조각","refName":"Third Piece of the Arcane","namespace":"UNIQUE","unique":{"base":"Legion Sword Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0hhcmJpbmdlckxlYWd1ZVNoYXJkcy9IYXJiaW5nZXJTd29yZFNoYXJkMyIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/b0044b38e9/HarbingerSwordShard3.png"} +{"name":"천 개의 리본","refName":"Thousand Ribbons","namespace":"UNIQUE","unique":{"base":"Simple Robe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaG91c2FuZHJpYmJvbnMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/65a99640e9/Thousandribbons.png"} +{"name":"천 개의 이빨 테무","refName":"Thousand Teeth Temu","namespace":"UNIQUE","unique":{"base":"Vaal Buckler"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleFVuaXF1ZTEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c466a1eb2a/ShieldDexUnique1.png"} +{"name":"희망의 실타래","refName":"Thread of Hope","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0Nvbm5lY3RlZEpld2VsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1d2c1f698a/ConnectedJewel.png"} +{"name":"삼단 공격","refName":"Three-step Assault","namespace":"UNIQUE","unique":{"base":"Shagreen Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9UaHJlZVN0ZXBBc3NhdWx0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/56daf8a36a/ThreeStepAssault.png"} +{"name":"전율강철","refName":"Thrillsteel","namespace":"UNIQUE","unique":{"base":"Barbute Helmet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1vZldhciIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/887e20115c/HelmofWar.png"} +{"name":"천둥 주먹","refName":"Thunderfist","namespace":"UNIQUE","unique":{"base":"Murder Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvdGh1bmRlcmNsYXciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c566a6b7aa/thunderclaw.png"} +{"name":"천둥 시야","refName":"Thundersight","namespace":"UNIQUE","unique":{"base":"Solaris Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0V4cGxvcmVyc1Zpc2lvbkxpZ2h0bmluZyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/56f2f88c51/ExplorersVisionLightning.png"} +{"name":"물결 분쇄기","refName":"Tidebreaker","namespace":"UNIQUE","unique":{"base":"Imperial Maul"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVGlkZWJyZWFrZXIiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/25b69a132f/Tidebreaker.png"} +{"name":"시간의 속박","refName":"Timeclasp","namespace":"UNIQUE","unique":{"base":"Moonstone Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVGltZWNsYXNwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b0c1b94ad1/Timeclasp.png"} +{"name":"톱니의 보호","refName":"Tinkerskin","namespace":"UNIQUE","unique":{"base":"Sadist Garb"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UcmFwcGVyQXJtb3VyIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/3e6bd8eefe/TrapperArmour.png"} +{"name":"티투시우스의 방패","refName":"Titucius' Span","namespace":"UNIQUE","unique":{"base":"Reinforced Tower Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0clVuaXF1ZTciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8dd443976b/ShieldStrUnique7.png"} +{"name":"먼지처럼 사라져라","refName":"To Dust","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL3VuaXF1ZTgiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/50417e8914/unique8.png"} +{"name":"툼피스트","refName":"Tombfist","namespace":"UNIQUE","unique":{"base":"Steelscale Gauntlets","fixedStats":["#% increased Attack Speed"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQWJ5c3NHbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/d0d174823c/AbyssGloves.png"} +{"name":"횃불 참나무 층계","refName":"Torchoak Step","namespace":"UNIQUE","unique":{"base":"Antique Greaves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy84NTQ4MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/5d406f4285/85483.png"} +{"name":"비통의 손길","refName":"Touch of Anguish","namespace":"UNIQUE","unique":{"base":"Imperial Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9Ub3VjaE9mQW5ndWlzaCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/c3b67bc0c2/TouchOfAnguish.png"} +{"name":"초월한 육체","refName":"Transcendent Flesh","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RyYW5zY2VuZGVudFJlZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7dcf8933ad/TranscendentRed.png"} +{"name":"초월한 마음","refName":"Transcendent Mind","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RyYW5zY2VuZGVudEJsdWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d02c69b7dc/TranscendentBlue.png"} +{"name":"초월한 정신","refName":"Transcendent Spirit","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RyYW5zY2VuZGVudEdyZWVuIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6eb091ee7a/TranscendentGreen.png"} +{"name":"전율의 막대","refName":"Tremor Rod","namespace":"UNIQUE","unique":{"base":"Military Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvTWluZVN0YWZmIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/51a69e0959/MineStaff.png"} +{"name":"삼합의 손아귀","refName":"Triad Grip","namespace":"UNIQUE","unique":{"base":"Mesh Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvTWluaW9uQ29udmVyc2lvbkdsb3ZlcyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/6b9b027d0f/MinionConversionGloves.png"} +{"name":"삼두 정치의 권위","refName":"Triumvirate Authority","namespace":"UNIQUE","unique":{"base":"Unset Ring","fixedStats":["+# to Level of Socketed Vaal Gems"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVmFhbFVuc2V0UmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/21c7f71af2/VaalUnsetRing.png"} +{"name":"트롤나무 꼭대기","refName":"Trolltimber Spire","namespace":"UNIQUE","unique":{"base":"Cedar Tower Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0clVuaXF1ZTMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/062f3d11c8/ShieldStrUnique3.png"} +{"name":"트리파논","refName":"Trypanon","namespace":"UNIQUE","unique":{"base":"Great Mallet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHJ5cGFub24iLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/3152ab4124/Trypanon.png"} +{"name":"투코하마의 요새","refName":"Tukohama's Fortress","namespace":"UNIQUE","unique":{"base":"Ebony Tower Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1R1a29oYW1hc0ZvcnRyZXNzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/e502c4bcf2/TukohamasFortress.png"} +{"name":"툴의 탄생","refName":"Tulborn","namespace":"UNIQUE","unique":{"base":"Opal Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9UdWxib3JuIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/7c7cf3e1f2/Tulborn.png"} +{"name":"툴의 몰락","refName":"Tulfall","namespace":"UNIQUE","unique":{"base":"Opal Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9UdWxib3JuVXBncmFkZWQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/575d6058a2/TulbornUpgraded.png"} +{"name":"뒤틀린 희미한 기억","refName":"Twisted Distant Memory","namespace":"UNIQUE","unique":{"base":"Synthesised Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TeW50aGVzaXNMaWdodG5pbmdHdWFyZGlhbk1hcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/30f4dc76de/SynthesisLightningGuardianMap.png"} +{"name":"트위즐","refName":"Twyzel","namespace":"UNIQUE","unique":{"base":"Sage Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kMVVuaXF1ZSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/086aeb214c/Wand1Unique.png"} +{"name":"울라만의 응시","refName":"Ulaman's Gaze","namespace":"UNIQUE","unique":{"base":"Searching Eye Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1NlYXJjaGluZ0V5ZVVuaXF1ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fd2beeb2ad/SearchingEyeUnique.png"} +{"name":"불멸의 탯줄","refName":"Umbilicus Immortalis","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvVW1iaWxpY3VzSW1tb3J0YWxpcyIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/822946a168/UmbilicusImmortalis.png"} +{"name":"끝없는 허기","refName":"Unending Hunger","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1NwZWN0cmVKZXdlbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/4e2d72df55/SpectreJewel.png"} +{"name":"웅힐의 투박함","refName":"Ungil's Gauche","namespace":"UNIQUE","unique":{"base":"Boot Knife"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjN1bmlxdWUiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/ec0e6a82fb/Dagger3unique.png"} +{"name":"웅힐의 조화","refName":"Ungil's Harmony","namespace":"UNIQUE","unique":{"base":"Turquoise Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9VbmdpbHNIYXJtb255IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/dfdaf30e66/UngilsHarmony.png"} +{"name":"꿈속의 연합","refName":"United in Dream","namespace":"UNIQUE","unique":{"base":"Cutlass"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0V0ZXJuYWxTbGVlcDIiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/8d706ed435/EternalSleep2.png"} +{"name":"기이한 본능","refName":"Unnatural Instinct","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1VubmF0dXJhbEluc3RpbmN0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/c37fa5c2b6/UnnaturalInstinct.png"} +{"name":"완고한 불꽃","refName":"Unyielding Flame","namespace":"UNIQUE","unique":{"base":"Archon Kite Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0RhbW5hdGlvQWV0ZXJuYSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/755ec1c5d8/DamnatioAeterna.png"} +{"name":"찬탈자의 속죄","refName":"Usurper's Penance","namespace":"UNIQUE","unique":{"base":"Eternal Burgonet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1VuYnJpZGxlZFJhZ2UiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3d6a6901bb/UnbridledRage.png"} +{"name":"우툴라의 굶주림","refName":"Utula's Hunger","namespace":"UNIQUE","unique":{"base":"Majestic Plate"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9VdGFsYUJvZHlBcm1vdXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/4a4891f3f3/UtalaBodyArmour.png"} +{"name":"울네톨의 포옹","refName":"Uul-Netol's Embrace","namespace":"UNIQUE","unique":{"base":"Vaal Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9VdWxOZXRvbHNLaXNzVXBncmFkZWQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8c4738c8a9/UulNetolsKissUpgraded.png"} +{"name":"울네톨의 입맞춤","refName":"Uul-Netol's Kiss","namespace":"UNIQUE","unique":{"base":"Vaal Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9VdWxOZXRvbHNLaXNzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/300d5ffe23/UulNetolsKiss.png"} +{"name":"울네톨의 맹세","refName":"Uul-Netol's Vow","namespace":"UNIQUE","unique":{"base":"Unset Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9HaWZ0b2ZVdWxOZXRvbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6cabe4da33/GiftofUulNetol.png"} +{"name":"우자자의 초원","refName":"Uzaza's Meadow","namespace":"UNIQUE","unique":{"base":"Sapphire Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvR3JlZW5Db21wb25lbnQyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/c5f02c50a6/GreenComponent2.png"} +{"name":"우자자의 산","refName":"Uzaza's Mountain","namespace":"UNIQUE","unique":{"base":"Sapphire Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvR3JlZW5Db21wb25lbnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f6e55e6800/GreenComponent.png"} +{"name":"우자자의 계곡","refName":"Uzaza's Valley","namespace":"UNIQUE","unique":{"base":"Sapphire Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvR3JlZW5Db21wb25lbnQzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/7e3d39e9a7/GreenComponent3.png"} +{"name":"바알의 손길","refName":"Vaal Caress","namespace":"UNIQUE","unique":{"base":"Bronzescale Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvVmFhbENhcmVzcyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/1caec1617d/VaalCaress.png"} +{"name":"발라코의 표식","refName":"Valako's Sign","namespace":"UNIQUE","unique":{"base":"Topaz Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVmFsYWtvc1NpZ24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cd646c8c54/ValakosSign.png"} +{"name":"발리륨","refName":"Valyrium","namespace":"UNIQUE","unique":{"base":"Moonstone Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVmFseXJpdW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/dd9261042f/Valyrium.png"} +{"name":"바루나스트라","refName":"Varunastra","namespace":"UNIQUE","unique":{"base":"Vaal Blade"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1ZhcnVuYXN0cmEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/ce779b1e41/Varunastra.png"} +{"name":"앗지리의 금고실","refName":"Vaults of Atziri","namespace":"UNIQUE","unique":{"base":"Vaal Pyramid Map"},"map":{"screenshot":"https://i.imgur.com/O60qvAb.jpg"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VbmlxdWVNYXAxIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/7612528d07/UniqueMap1.png"} +{"name":"밤의 장막","refName":"Veil of the Night","namespace":"UNIQUE","unique":{"base":"Great Helmet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1ZlaWxPZlRoZU5pZ2h0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/809ee0994f/VeilOfTheNight.png"} +{"name":"혈관 관통","refName":"Venopuncture","namespace":"UNIQUE","unique":{"base":"Iron Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmxvb2RmcmVlemUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8873778384/Bloodfreeze.png"} +{"name":"벤토의 도박","refName":"Ventor's Gamble","namespace":"UNIQUE","unique":{"base":"Gold Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvRGllT2ZEZXN0aW55IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1470dfcdce/DieOfDestiny.png"} +{"name":"베루소의 야심","refName":"Veruso's Ambition","namespace":"UNIQUE","unique":{"base":"Shackled Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9WZXJzdXNvQm9vdHMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0b431567c7/VersusoBoots.png"} +{"name":"베루소의 공성추","refName":"Veruso's Battering Rams","namespace":"UNIQUE","unique":{"base":"Titan Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvVmVydXNvc0JhdHRlcmluZ1JhbXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e6727320e2/VerusosBatteringRams.png"} +{"name":"빙타의 그릇","refName":"Vessel of Vinktar","namespace":"UNIQUE","unique":{"base":"Topaz Flask","fixedStats":["#% increased Charges used","Shocks nearby Enemies during Effect, causing 10% increased Damage taken","You are Shocked during Effect, causing 50% increased Damage taken","#% of Lightning Damage Leeched as Life during Effect"]},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvVmlua3RhckZsYXNrIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/caf5220901/VinktarFlask.png"} +{"name":"빅타리오의 예리함","refName":"Victario's Acuity","namespace":"UNIQUE","unique":{"base":"Turquoise Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UdXJxdW9pc2VBbXVsZXRVbmlxdWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8ba340b31f/TurquoiseAmuletUnique.png"} +{"name":"빅타리오의 자비","refName":"Victario's Charity","namespace":"UNIQUE","unique":{"base":"Laminated Kite Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1ZpY3Rhcm9zQ2hhcml0eSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/baf0e57fb2/VictarosCharity.png"} +{"name":"빅타리오의 비상","refName":"Victario's Flight","namespace":"UNIQUE","unique":{"base":"Goathide Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludFVuaXF1ZTIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/11ab397d3d/BootsDexIntUnique2.png"} +{"name":"빅타리오의 영향력","refName":"Victario's Influence","namespace":"UNIQUE","unique":{"base":"Lacquered Garb"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9WaWN0YXJpb3NKYWNrZXQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/b50998d963/VictariosJacket.png"} +{"name":"비리디의 장막","refName":"Viridi's Veil","namespace":"UNIQUE","unique":{"base":"Praetor Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0NvbnN0cmljdGluZ0Nyb3duIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/04ee655ca5/ConstrictingCrown.png"} +{"name":"비스 모티스","refName":"Vis Mortis","namespace":"UNIQUE","unique":{"base":"Necromancer Silks"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9WaXNNb3J0aXMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/771efa547e/VisMortis.png"} +{"name":"생체 해부","refName":"Vivinsect","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmV0cmF5YWxFeHBlcmltZW50YXRpb25SaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/0131f81491/BetrayalExperimentationRing.png"} +{"name":"불굴의 달","refName":"Vix Lunaris","namespace":"UNIQUE","unique":{"base":"Cardinal Round Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleFVuaXF1ZTQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/24175c8ffb/ShieldStrDexUnique4.png"} +{"name":"암여우의 함정","refName":"Vixen's Entrapment","namespace":"UNIQUE","unique":{"base":"Embroidered Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvVml4ZW5zRW50cmFwbWVudCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/e2d77223f8/VixensEntrapment.png"} +{"name":"태풍의 목소리","refName":"Voice of the Storm","namespace":"UNIQUE","unique":{"base":"Lapis Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Wb2ljZU9mVGhlU3Rvcm0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c5fb24dbbe/VoiceOfTheStorm.png"} +{"name":"목소리","refName":"Voices","namespace":"UNIQUE","unique":{"base":"Large Cluster Jewel","fixedStats":["Adds # Jewel Socket Passive Skills"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1VuaXF1ZUpld2VsQmFzZTMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/314c9905c8/UniqueJewelBase3.png"} +{"name":"공허 충전기","refName":"Void Battery","namespace":"UNIQUE","unique":{"base":"Prophecy Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9Wb2lkQmF0dGVyeSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/71a0fdc8db/VoidBattery.png"} +{"name":"공허 인도자","refName":"Voidbringer","namespace":"UNIQUE","unique":{"base":"Conjurer Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvSGVsbGJyaW5nZXIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/d82eb1cc3f/Hellbringer.png"} +{"name":"공허의 눈","refName":"Voideye","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvdW51c2VkNCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6f0e76fbbb/unused4.png"} +{"name":"공허 화살깃","refName":"Voidfletcher","namespace":"UNIQUE","unique":{"base":"Primal Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9FbGRhclF1aXZlciIsInciOjIsImgiOjMsInNjYWxlIjoxLCJlbGRlciI6dHJ1ZX1d/49051164a3/EldarQuiver.png"} +{"name":"공허의 탄생","refName":"Voidforge","namespace":"UNIQUE","unique":{"base":"Infernal Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1N0YXJmb3JnZSIsInciOjIsImgiOjQsInNjYWxlIjoxLCJlbGRlciI6dHJ1ZX1d/7adc9ae2a1/Starforge.png"} +{"name":"공허한 고향","refName":"Voidhome","namespace":"UNIQUE","unique":{"base":"Dread Maul"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVm9pZGhvbWUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/0122c9dcf4/Voidhome.png"} +{"name":"공허 보행자","refName":"Voidwalker","namespace":"UNIQUE","unique":{"base":"Murder Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Dcm9zc2luZ1RoZVZvaWQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MSwic2hhcGVyIjp0cnVlfV0/97df35ca87/CrossingTheVoid.png"} +{"name":"볼쿠르의 인도","refName":"Volkuur's Guidance","namespace":"UNIQUE","unique":{"base":"Zealot Gloves","fixedStats":["#% less Poison Duration","Cold Skills have #% chance to Poison on Hit","Fire Skills have #% chance to Poison on Hit","Lightning Skills have #% chance to Poison on Hit"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUGFsZUNvdW5jaWxHbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3271f5441a/PaleCouncilGloves.png"} +{"name":"볼의 헌신","refName":"Voll's Devotion","namespace":"UNIQUE","unique":{"base":"Agate Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BZ2F0ZUFtdWxldFVuaXF1ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a67e002c89/AgateAmuletUnique.png"} +{"name":"볼의 보호자","refName":"Voll's Protector","namespace":"UNIQUE","unique":{"base":"Holy Chainmail"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9TdHJJbnQzQVVuaXF1ZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/d79c6d5644/StrInt3AUnique.png"} +{"name":"볼의 시각","refName":"Voll's Vision","namespace":"UNIQUE","unique":{"base":"Praetor Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1ZvbGxzVmlzaW9uIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/c8dd3f6cf3/VollsVision.png"} +{"name":"전도성 균열","refName":"Voltaxic Rift","namespace":"UNIQUE","unique":{"base":"Spine Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL1ZvaWRzaGFmdCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/aaa5cfdba1/Voidshaft.png"} +{"name":"보라나의 행진","refName":"Vorana's March","namespace":"UNIQUE","unique":{"base":"Runic Sabatons","fixedStats":["Has no Sockets","Triggers Level # Summon Arbalists when Equipped","#% increased Movement Speed"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TcGlyaXRCb290c1VuaXF1ZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/90177dcbec/SpiritBootsUnique.png"} +{"name":"보라나의 준비","refName":"Vorana's Preparation","namespace":"UNIQUE","unique":{"base":"Iron Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvQWRhcHRhdGlvbkZsYXNrMDMiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/f67d3bf6f2/AdaptationFlask03.png"} +{"name":"불커누스","refName":"Vulconus","namespace":"UNIQUE","unique":{"base":"Demon Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL1Z1bGNvbnVzIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/aefa0a977b/Vulconus.png"} +{"name":"파괴의 경야","refName":"Wake of Destruction","namespace":"UNIQUE","unique":{"base":"Mesh Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9XYWtlT2ZEZXN0cnVjdGlvbiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/5964f215f5/WakeOfDestruction.png"} +{"name":"방랑벽","refName":"Wanderlust","namespace":"UNIQUE","unique":{"base":"Wool Shoes"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9XYW5kZXJsdXN0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/c83c1c3bdc/Wanderlust.png"} +{"name":"뒤틀린 시계","refName":"Warped Timepiece","namespace":"UNIQUE","unique":{"base":"Turquoise Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9XYXJwZWRUaW1lcGllY2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/abee67f17d/WarpedTimepiece.png"} +{"name":"전사의 유산","refName":"Warrior's Legacy","namespace":"UNIQUE","unique":{"base":"Ruby Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvV2FycmlvcnNMZWdhY3kiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/80c16ee4e7/WarriorsLegacy.png"} +{"name":"감시자의 눈","refName":"Watcher's Eye","namespace":"UNIQUE","unique":{"base":"Prismatic Jewel","fixedStats":["#% increased maximum Energy Shield","#% increased maximum Life","#% increased maximum Mana"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0VsZGVySmV3ZWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/278c673716/ElderJewel.png"} +{"name":"와카와 투아후","refName":"Whakawairua Tuahu","namespace":"UNIQUE","unique":{"base":"Strand Map"},"map":{"screenshot":"https://i.imgur.com/EhrYM8w.jpg"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VbmlxdWVNYXBFeWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/7c20a66814/UniqueMapEye.png"} +{"name":"거친 항해의 타륜","refName":"Wheel of the Stormsail","namespace":"UNIQUE","unique":{"base":"Rotted Round Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1doZWVsb2Z0aGVzdG9ybXNhaWwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9ff4153db8/Wheelofthestormsail.png"} +{"name":"눈바람","refName":"White Wind","namespace":"UNIQUE","unique":{"base":"Imperial Skean"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL1doaXRlV2luZCIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/48866b1c7f/WhiteWind.png"} +{"name":"넓은 자루 도끼","refName":"Wideswing","namespace":"UNIQUE","unique":{"base":"Poleaxe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9XaWRlc3dpbmciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/e9dfcf58df/Wideswing.png"} +{"name":"과부우박","refName":"Widowhail","namespace":"UNIQUE","unique":{"base":"Crude Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL1dpZG93aGFpbEJvdyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/1f31742277/WidowhailBow.png"} +{"name":"위도우메이커","refName":"Widowmaker","namespace":"UNIQUE","unique":{"base":"Boot Blade"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL1dpZG93bWFrZXIiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/c581a2aec4/Widowmaker.png"} +{"name":"들불 체관 ","refName":"Wildfire Phloem","namespace":"UNIQUE","unique":{"base":"Ashbark Tincture"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL1VuaXF1ZUFzaGJhcmsiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MX1d/2805cb697f/UniqueAshbark.png"} +{"name":"거친 베기","refName":"Wildslash","namespace":"UNIQUE","unique":{"base":"Awl"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9XaWxkc2xhc2giLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/9dc7260a86/Wildslash.png"} +{"name":"의지의 충돌","refName":"Willclash","namespace":"UNIQUE","unique":{"base":"Golden Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01pbmRCbG9ja01hc2siLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/aeb4a78ada/MindBlockMask.png"} +{"name":"버드나무 선물","refName":"Willowgift","namespace":"UNIQUE","unique":{"base":"Jade Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9TdGFybGlnaHRNYXJrIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b956123acc/StarlightMark.png"} +{"name":"윌마의 보답","refName":"Wilma's Requital","namespace":"UNIQUE","unique":{"base":"Solaris Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1dpbG1hc1JlcXVpdGFsIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/32cf26ca5b/WilmasRequital.png"} +{"name":"윈드리퍼","refName":"Windripper","namespace":"UNIQUE","unique":{"base":"Imperial Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0VhZ2xlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/01fdf37ac0/Eagle.png"} +{"name":"변화의 바람","refName":"Winds of Change","namespace":"UNIQUE","unique":{"base":"Ancient Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyNiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/d66854dd65/GlovesStr6.png"} +{"name":"바람의 괴성","refName":"Windscream","namespace":"UNIQUE","unique":{"base":"Reinforced Greaves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9XaW5kc2NyZWFtIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/7cc293769c/Windscream.png"} +{"name":"엔트로피의 날개","refName":"Wings of Entropy","namespace":"UNIQUE","unique":{"base":"Ezomyte Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9FbnRyb3B5d2luZ3MiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/86e128789a/Entropywings.png"} +{"name":"겨울심장","refName":"Winterheart","namespace":"UNIQUE","unique":{"base":"Gold Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9XaW50ZXJIZWFydEFMVCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ff8c8c67f2/WinterHeartALT.png"} +{"name":"겨울 매듭","refName":"Winterweave","namespace":"UNIQUE","unique":{"base":"Coral Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmxvb2RCb2lsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8335c22285/BloodBoil.png"} +{"name":"마녀의 파멸","refName":"Witchbane","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL3VuaXF1ZTEzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9cc73bdf26/unique13.png"} +{"name":"불타는 마녀의 술","refName":"Witchfire Brew","namespace":"UNIQUE","unique":{"base":"Stibnite Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvV2l0Y2hGaXJlQnJldyIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/1696a739f5/WitchFireBrew.png"} +{"name":"마녀 사냥꾼의 심판","refName":"Witchhunter's Judgment","namespace":"UNIQUE","unique":{"base":"Highborn Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvQnJhbmREZXRvbmF0ZVN0YWZmIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/07d64ef02c/BrandDetonateStaff.png"} +{"name":"기적의 발판","refName":"Wondertrap","namespace":"UNIQUE","unique":{"base":"Velvet Slippers"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Xb25kZXJ0cmFwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/6af24f543f/Wondertrap.png"} +{"name":"악령 군주","refName":"Wraithlord","namespace":"UNIQUE","unique":{"base":"Bone Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1dyYWl0aGxvcmQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/090d3d6bb3/Wraithlord.png"} +{"name":"프레시아의 화관","refName":"Wreath of Phrecia","namespace":"UNIQUE","unique":{"base":"Iron Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1dyZWF0aF9vZl9QaHJlY2lhIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/7ae5bac7c5/Wreath_of_Phrecia.png"} +{"name":"웜의 허물","refName":"Wurm's Molt","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdDZVbmlxdWUiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/3307668b96/Belt6Unique.png"} +{"name":"아룡의 징조","refName":"Wyrmsign","namespace":"UNIQUE","unique":{"base":"Wyrmscale Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvV3lybXNpZ25HbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/fe7ef54102/WyrmsignGloves.png"} +{"name":"저글의 손잡이","refName":"Xirgil's Crank","namespace":"UNIQUE","unique":{"base":"Coiled Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY3dW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/2437d7498a/Staff7unique.png"} +{"name":"조프의 피","refName":"Xoph's Blood","namespace":"UNIQUE","unique":{"base":"Amber Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9ZcGhldGhha2tzSGVhcnRVcGdyYWRlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/259f2be84d/YphethakksHeartUpgrade.png"} +{"name":"조프의 심장","refName":"Xoph's Heart","namespace":"UNIQUE","unique":{"base":"Amber Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9ZcGhldGhha2tzSGVhcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8fce3ec78f/YphethakksHeart.png"} +{"name":"조프의 시초","refName":"Xoph's Inception","namespace":"UNIQUE","unique":{"base":"Citadel Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0Jsb29kUGVyaWdyZWUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/7856c171f7/BloodPerigree.png"} +{"name":"조프의 보살핌","refName":"Xoph's Nurture","namespace":"UNIQUE","unique":{"base":"Citadel Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0Jsb29kUGVyaWdyZWVCUkVBQ0giLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/c1e05d8e31/BloodPerigreeBREACH.png"} +{"name":"야오맥의 합의","refName":"Yaomac's Accord","namespace":"UNIQUE","unique":{"base":"Vaal Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9PbmF0emxpU2NlcHRyZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/49dafc0859/OnatzliSceptre.png"} +{"name":"일프밴의 계략","refName":"Ylfeban's Trickery","namespace":"UNIQUE","unique":{"base":"Hubris Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1lsZmViYW4iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c40f798e46/Ylfeban.png"} +{"name":"인다의 항전","refName":"Ynda's Stand","namespace":"UNIQUE","unique":{"base":"Studded Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvS2FsZ3V1cmFuV2FyZEJlbHQiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/07e1a52bf3/KalguuranWardBelt.png"} +{"name":"고통의 멍에","refName":"Yoke of Suffering","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Zb2tlT2ZTdWZmZXJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/80cc716213/YokeOfSuffering.png"} +{"name":"이리엘의 훈육","refName":"Yriel's Fostering","namespace":"UNIQUE","unique":{"base":"Exquisite Leather"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9QYWxlQ291bmNpbEFybW91ciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/f3c31cf6b4/PaleCouncilArmour.png"} +{"name":"잔데투스의 성직복","refName":"Zahndethus' Cassock","namespace":"UNIQUE","unique":{"base":"Sage's Robe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9aYWhuZGV0aHVzY2Fzc29jayIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/6de1273e49/Zahndethuscassock.png"} +{"name":"질의 증폭기","refName":"Zeel's Amplifier","namespace":"UNIQUE","unique":{"base":"Polished Spiked Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1plYWxzQW1wbGlmaWVyIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/d1e9af3da7/ZealsAmplifier.png"} +{"name":"제르피의 심장","refName":"Zerphi's Heart","namespace":"UNIQUE","unique":{"base":"Paua Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9aZXJwaGlzSGVhcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3e35140dfe/ZerphisHeart.png"} +{"name":"제르피의 마지막 숨결","refName":"Zerphi's Last Breath","namespace":"UNIQUE","unique":{"base":"Grand Mana Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvWmVycGhpc0xhc3RCcmVhdGgiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/bf8cb7b943/ZerphisLastBreath.png"} diff --git a/renderer/public/.DS_Store/data/ko/stats.ndjson.old b/renderer/public/.DS_Store/data/ko/stats.ndjson.old new file mode 100644 index 000000000..ed68ed941 --- /dev/null +++ b/renderer/public/.DS_Store/data/ko/stats.ndjson.old @@ -0,0 +1,6681 @@ +{"ref":"# Added Passive Skills are Jewel Sockets","better":1,"matchers":[{"string":"# Added Passive Skills are Jewel Sockets"},{"string":"1 Added Passive Skill is a Jewel Socket","value":1}],"trade":{"ids":{"explicit":["explicit.stat_4079888060"],"fractured":["fractured.stat_4079888060"],"enchant":["enchant.stat_4079888060"]}}} +{"ref":"# Cold Damage taken per second per Frenzy Charge while moving","better":1,"matchers":[{"string":"이동 중 격분 충전 하나당 1초마다 #의 냉기 피해를 받음"}],"trade":{"ids":{"explicit":["explicit.stat_1528823952"]}}} +{"ref":"# Crafted Modifiers","better":1,"matchers":[{"string":"# 제작을 통한 속성 부여 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_crafted_mods"]}}} +{"ref":"# Crafted Prefix Modifiers","better":1,"matchers":[{"string":"# 제작을 통한 접두어 속성 부여 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_crafted_prefix_mods"]}}} +{"ref":"# Crafted Suffix Modifiers","better":1,"matchers":[{"string":"# 제작을 통한 접미어 속성 부여 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_crafted_suffix_mods"]}}} +{"ref":"# Dexterity per 1 Dexterity on Allocated Passives in Radius","better":1,"matchers":[{"string":"반경 내 할당된 패시브 스킬의 민첩 1당 민첩 #"}],"trade":{"ids":{"explicit":["explicit.stat_172076472"]}}} +{"ref":"# Empty Modifiers","better":1,"matchers":[{"string":"# 빈 속성 부여 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_empty_affix_mods"]}}} +{"ref":"# Empty Prefix Modifiers","better":1,"matchers":[{"string":"# 빈 접두어 속성 부여 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_empty_prefix_mods"]}}} +{"ref":"# Empty Suffix Modifiers","better":1,"matchers":[{"string":"# 빈 접미어 속성 부여 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_empty_suffix_mods"]}}} +{"ref":"# Enchant Modifiers","better":1,"matchers":[{"string":"# 인챈트 속성 부여 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_enchant_mods"]}}} +{"ref":"# Fire Damage taken per second per Endurance Charge if you've been Hit Recently","better":1,"matchers":[{"string":"최근 4초 이내 피격된 경우 인내 충전 하나당 1초마다 #의 화염 피해를 받음"}],"trade":{"ids":{"explicit":["explicit.stat_1920234902"]}}} +{"ref":"# Fractured Modifiers","better":1,"matchers":[{"string":"# 분열된 속성 부여 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_fractured_mods"]}}} +{"ref":"# Implicit Modifiers","better":1,"matchers":[{"string":"# 고정 속성 부여 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_implicit_mods"]}}} +{"ref":"# Intelligence per 1 Intelligence on Allocated Passives in Radius","better":1,"matchers":[{"string":"반경 내 할당된 패시브 스킬의 지능 1당 지능 #"}],"trade":{"ids":{"explicit":["explicit.stat_1070347065"]}}} +{"ref":"# Life gained on Kill per Frenzy Charge","better":1,"matchers":[{"string":"처치 시 격분 충전 하나당 생명력 # 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1269609669"]}}} +{"ref":"# Life gained when you Block","better":1,"matchers":[{"string":"막아낼 시 생명력 # 획득"},{"string":"막아낼 시 생명력 # 상실","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_762600725"],"implicit":["implicit.stat_762600725"],"fractured":["fractured.stat_762600725"],"scourge":["scourge.stat_762600725"]}}} +{"ref":"# Life Regenerated per Second","better":1,"matchers":[{"string":"초당 생명력 재생 #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_life_regen"]}}} +{"ref":"# Lightning Damage taken per second per Power Charge if\nyour Skills have dealt a Critical Strike Recently","better":1,"matchers":[{"string":"최근 4초 이내 플레이어의 스킬로 치명타 명중 시 \n권능 충전 하나당 1초마다 #의 번개 피해를 받음"}],"trade":{"ids":{"explicit":["explicit.stat_1964333391"]}}} +{"ref":"# Mana gained when you Block","better":1,"matchers":[{"string":"막아낼 시 마나 # 획득"},{"string":"막아낼 시 마나 # 상실","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2122183138"],"implicit":["implicit.stat_2122183138"],"fractured":["fractured.stat_2122183138"],"scourge":["scourge.stat_2122183138"]}}} +{"ref":"# Maximum Void Charges","better":1,"matchers":[{"string":"공허 충전 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_1209237645"]}}} +{"ref":"# Modifiers","better":1,"matchers":[{"string":"# 속성 부여 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_affix_mods"]}}} +{"ref":"# Notable Passive Skills","better":1,"matchers":[{"string":"# 주요 패시브 스킬 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_notable_passive_skills"]}}} +{"ref":"# Physical Damage taken on Minion Death","better":1,"matchers":[{"string":"소환수 사망 시 받는 물리 피해 #"}],"trade":{"ids":{"explicit":["explicit.stat_4176970656"]}}} +{"ref":"# Prefix Modifiers","better":1,"matchers":[{"string":"# 접두어 속성 부여 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_prefix_mods"]}}} +{"ref":"# Strength per 1 Strength on Allocated Passives in Radius","better":1,"matchers":[{"string":"반경 내 할당된 패시브 스킬의 힘 1당 힘 #"}],"trade":{"ids":{"explicit":["explicit.stat_552705983"]}}} +{"ref":"# Suffix Modifiers","better":1,"matchers":[{"string":"# 접미어 속성 부여 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_suffix_mods"]}}} +{"ref":"# to # Added Attack Lightning Damage per 200 Accuracy Rating","better":1,"matchers":[{"string":"정확도 200당 공격 번개 피해 #~# 추가"}],"trade":{"ids":{"implicit":["implicit.stat_4139229725"]}}} +{"ref":"# to # Added Chaos Damage with Bow Attacks","better":1,"matchers":[{"string":"활 공격의 카오스 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3478075311"],"implicit":["implicit.stat_3478075311"],"fractured":["fractured.stat_3478075311"]}}} +{"ref":"# to # Added Chaos Damage with Claw Attacks","better":1,"matchers":[{"string":"클로 공격의 카오스 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_4191067677"],"fractured":["fractured.stat_4191067677"]}}} +{"ref":"# to # Added Chaos Damage with Dagger Attacks","better":1,"matchers":[{"string":"단검 공격의 카오스 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3248691197"],"fractured":["fractured.stat_3248691197"]}}} +{"ref":"# to # added Cold Damage\nPlayers and their Minions have # to # added Cold Damage","better":1,"matchers":[{"string":"냉기 피해 #~# 추가\n플레이어 및 소환수의 냉기 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3938603844"],"fractured":["fractured.stat_3938603844"]}}} +{"ref":"# to # Added Cold Damage per Frenzy Charge","better":1,"matchers":[{"string":"격분 충전 하나당 냉기 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3648858570"],"implicit":["implicit.stat_3648858570"],"fractured":["fractured.stat_3648858570"]}}} +{"ref":"# to # Added Cold Damage with Axe Attacks","better":1,"matchers":[{"string":"도끼 공격 시 냉기 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1782176131"],"fractured":["fractured.stat_1782176131"]}}} +{"ref":"# to # Added Cold Damage with Bow Attacks","better":1,"matchers":[{"string":"활 공격 시 냉기 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_215124030"],"implicit":["implicit.stat_215124030"],"fractured":["fractured.stat_215124030"]}}} +{"ref":"# to # Added Cold Damage with Claw Attacks","better":1,"matchers":[{"string":"클로 공격 시 냉기 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2848646243"],"fractured":["fractured.stat_2848646243"]}}} +{"ref":"# to # Added Cold Damage with Dagger Attacks","better":1,"matchers":[{"string":"단검 공격 시 냉기 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1263342750"],"fractured":["fractured.stat_1263342750"]}}} +{"ref":"# to # Added Cold Damage with Mace or Sceptre Attacks","better":1,"matchers":[{"string":"철퇴나 셉터 공격 시 냉기 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_187418672"],"fractured":["fractured.stat_187418672"]}}} +{"ref":"# to # Added Cold Damage with Staff Attacks","better":1,"matchers":[{"string":"지팡이 공격 시 냉기 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1261958804"],"fractured":["fractured.stat_1261958804"]}}} +{"ref":"# to # Added Cold Damage with Sword Attacks","better":1,"matchers":[{"string":"검 공격 시 냉기 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_972201717"],"fractured":["fractured.stat_972201717"]}}} +{"ref":"# to # Added Cold Damage with Wand Attacks","better":1,"matchers":[{"string":"마법봉 공격 시 냉기 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2383797932"],"fractured":["fractured.stat_2383797932"]}}} +{"ref":"# to # added Fire Damage\nPlayers and their Minions have # to # added Fire Damage","better":1,"matchers":[{"string":"화염 피해 #~# 추가\n플레이어 및 소환수의 화염 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_190652296"],"fractured":["fractured.stat_190652296"]}}} +{"ref":"# to # added Fire Damage against Burning Enemies","better":1,"matchers":[{"string":"화상 상태의 적에게 화염 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_165402179"],"fractured":["fractured.stat_165402179"]}}} +{"ref":"# to # added Fire Damage per 100 of Maximum Life or Maximum Mana, whichever is lower","better":1,"matchers":[{"string":"최대 생명력 또는 최대 마나 중 낮은 수치 100당 화염 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_753801406"]}}} +{"ref":"# to # Added Fire Damage with Axe Attacks","better":1,"matchers":[{"string":"도끼 공격 시 화염 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2461965653"],"fractured":["fractured.stat_2461965653"]}}} +{"ref":"# to # Added Fire Damage with Bow Attacks","better":1,"matchers":[{"string":"활 공격 시 화염 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3120164895"],"implicit":["implicit.stat_3120164895"],"fractured":["fractured.stat_3120164895"]}}} +{"ref":"# to # Added Fire Damage with Claw Attacks","better":1,"matchers":[{"string":"클로 공격 시 화염 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2154290807"],"fractured":["fractured.stat_2154290807"]}}} +{"ref":"# to # Added Fire Damage with Dagger Attacks","better":1,"matchers":[{"string":"단검 공격 시 화염 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1910361436"],"fractured":["fractured.stat_1910361436"]}}} +{"ref":"# to # Added Fire Damage with Mace or Sceptre Attacks","better":1,"matchers":[{"string":"철퇴나 셉터 공격 시 화염 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3146788701"],"fractured":["fractured.stat_3146788701"]}}} +{"ref":"# to # Added Fire Damage with Staff Attacks","better":1,"matchers":[{"string":"지팡이 공격 시 화염 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3220927448"],"fractured":["fractured.stat_3220927448"]}}} +{"ref":"# to # Added Fire Damage with Sword Attacks","better":1,"matchers":[{"string":"검 공격 시 화염 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_601249293"],"fractured":["fractured.stat_601249293"]}}} +{"ref":"# to # Added Fire Damage with Wand Attacks","better":1,"matchers":[{"string":"마법봉 공격 시 화염 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_87098247"],"fractured":["fractured.stat_87098247"]}}} +{"ref":"# to # added Lightning Damage\nPlayers and their Minions have # to # added Lightning Damage","better":1,"matchers":[{"string":"번개 피해 #~# 추가\n플레이어 및 소환수의 번개 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2697534676"],"fractured":["fractured.stat_2697534676"]}}} +{"ref":"# to # Added Lightning Damage with Axe Attacks","better":1,"matchers":[{"string":"도끼 공격 시 번개 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1582068183"],"fractured":["fractured.stat_1582068183"]}}} +{"ref":"# to # Added Lightning Damage with Bow Attacks","better":1,"matchers":[{"string":"활 공격 시 번개 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1040269876"],"implicit":["implicit.stat_1040269876"],"fractured":["fractured.stat_1040269876"]}}} +{"ref":"# to # Added Lightning Damage with Claw Attacks","better":1,"matchers":[{"string":"클로 공격 시 번개 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_4231842891"],"fractured":["fractured.stat_4231842891"]}}} +{"ref":"# to # Added Lightning Damage with Dagger Attacks","better":1,"matchers":[{"string":"단검 공격 시 번개 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3479683016"],"fractured":["fractured.stat_3479683016"]}}} +{"ref":"# to # Added Lightning Damage with Mace or Sceptre Attacks","better":1,"matchers":[{"string":"철퇴나 셉터 공격 시 번개 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2096159630"],"fractured":["fractured.stat_2096159630"]}}} +{"ref":"# to # Added Lightning Damage with Staff Attacks","better":1,"matchers":[{"string":"지팡이 공격 시 번개 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3212481075"],"fractured":["fractured.stat_3212481075"]}}} +{"ref":"# to # Added Lightning Damage with Sword Attacks","better":1,"matchers":[{"string":"검 공격 시 번개 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1237708713"],"fractured":["fractured.stat_1237708713"]}}} +{"ref":"# to # Added Lightning Damage with Wand Attacks","better":1,"matchers":[{"string":"마법봉 공격 시 번개 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2787733863"],"fractured":["fractured.stat_2787733863"]}}} +{"ref":"# to # added Physical Damage\nPlayers and their Minions have # to # added Physical Damage","better":1,"matchers":[{"string":"물리 피해 #~# 추가\n플레이어 및 소환수의 물리 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1563396443"],"fractured":["fractured.stat_1563396443"]}}} +{"ref":"# to # Added Physical Damage with Axe Attacks","better":1,"matchers":[{"string":"도끼 공격 시 물리 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_311030839"],"fractured":["fractured.stat_311030839"]}}} +{"ref":"# to # Added Physical Damage with Bow Attacks","better":1,"matchers":[{"string":"활 공격 시 물리 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1760576992"],"implicit":["implicit.stat_1760576992"],"fractured":["fractured.stat_1760576992"]}}} +{"ref":"# to # Added Physical Damage with Claw Attacks","better":1,"matchers":[{"string":"클로 공격 시 물리 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3303015"],"fractured":["fractured.stat_3303015"]}}} +{"ref":"# to # Added Physical Damage with Dagger Attacks","better":1,"matchers":[{"string":"단검 공격 시 물리 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1298238534"],"fractured":["fractured.stat_1298238534"]}}} +{"ref":"# to # Added Physical Damage with Mace or Sceptre Attacks","better":1,"matchers":[{"string":"철퇴나 셉터 공격 시 물리 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3882662078"],"fractured":["fractured.stat_3882662078"]}}} +{"ref":"# to # Added Physical Damage with Staff Attacks","better":1,"matchers":[{"string":"지팡이 공격 시 물리 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_69898010"],"fractured":["fractured.stat_69898010"]}}} +{"ref":"# to # Added Physical Damage with Sword Attacks","better":1,"matchers":[{"string":"검 공격 시 물리 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1040189894"],"fractured":["fractured.stat_1040189894"]}}} +{"ref":"# to # Added Physical Damage with Wand Attacks","better":1,"matchers":[{"string":"마법봉 공격 시 물리 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_133683091"],"fractured":["fractured.stat_133683091"]}}} +{"ref":"# to # Added Spell Chaos Damage while Dual Wielding","better":1,"matchers":[{"string":"쌍수를 장착하는 동안 주문 시전 시 카오스 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1865428306"],"fractured":["fractured.stat_1865428306"]}}} +{"ref":"# to # Added Spell Chaos Damage while holding a Shield","better":1,"matchers":[{"string":"방패를 들고 있는 동안 주문 시전 시 카오스 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1181129483"],"fractured":["fractured.stat_1181129483"]}}} +{"ref":"# to # Added Spell Chaos Damage while wielding a Two Handed Weapon","better":1,"matchers":[{"string":"양손 무기를 장착하는 동안 주문 시전 시 카오스 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1743759111"],"fractured":["fractured.stat_1743759111"]}}} +{"ref":"# to # Added Spell Cold Damage while Dual Wielding","better":1,"matchers":[{"string":"쌍수를 장착하는 동안 주문 시전 시 냉기 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3376452528"],"fractured":["fractured.stat_3376452528"]}}} +{"ref":"# to # Added Spell Cold Damage while holding a Shield","better":1,"matchers":[{"string":"방패를 들고 있는 동안 주문 시전 시 냉기 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2671663397"],"fractured":["fractured.stat_2671663397"]}}} +{"ref":"# to # Added Spell Cold Damage while wielding a Two Handed Weapon","better":1,"matchers":[{"string":"양손 무기를 장착하는 동안 주문 시전 시 냉기 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2464689927"],"fractured":["fractured.stat_2464689927"]}}} +{"ref":"# to # Added Spell Fire Damage while Dual Wielding","better":1,"matchers":[{"string":"쌍수를 장착하는 동안 주문 시전 시 화염 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_662691280"],"fractured":["fractured.stat_662691280"]}}} +{"ref":"# to # Added Spell Fire Damage while holding a Shield","better":1,"matchers":[{"string":"방패를 들고 있는 동안 주문 시전 시 화염 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_44182350"],"fractured":["fractured.stat_44182350"]}}} +{"ref":"# to # Added Spell Fire Damage while wielding a Two Handed Weapon","better":1,"matchers":[{"string":"양손 무기를 장착하는 동안 주문 시전 시 화염 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2135335407"],"fractured":["fractured.stat_2135335407"]}}} +{"ref":"# to # Added Spell Lightning Damage while Dual Wielding","better":1,"matchers":[{"string":"쌍수를 장착하는 동안 주문 시전 시 번개 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3352373076"],"fractured":["fractured.stat_3352373076"]}}} +{"ref":"# to # Added Spell Lightning Damage while holding a Shield","better":1,"matchers":[{"string":"방패를 들고 있는 동안 주문 시전 시 번개 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1801889979"],"fractured":["fractured.stat_1801889979"]}}} +{"ref":"# to # Added Spell Lightning Damage while wielding a Two Handed Weapon","better":1,"matchers":[{"string":"양손 무기를 장착하는 동안 주문 시전 시 번개 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2398198236"],"fractured":["fractured.stat_2398198236"]}}} +{"ref":"# to # Added Spell Physical Damage while Dual Wielding","better":1,"matchers":[{"string":"쌍수를 장착하는 동안 주문 시전 시 물리 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_4255924189"],"fractured":["fractured.stat_4255924189"]}}} +{"ref":"# to # Added Spell Physical Damage while holding a Shield","better":1,"matchers":[{"string":"방패를 들고 있는 동안 주문 시전 시 물리 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3954157711"],"fractured":["fractured.stat_3954157711"]}}} +{"ref":"# to # Added Spell Physical Damage while wielding a Two Handed Weapon","better":1,"matchers":[{"string":"양손 무기를 장착하는 동안 주문 시전 시 물리 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2921084940"],"fractured":["fractured.stat_2921084940"]}}} +{"ref":"# to # Fire Damage per Endurance Charge","better":1,"matchers":[{"string":"인내 충전 하나당 #~#의 화염 피해"}],"trade":{"ids":{"explicit":["explicit.stat_1073447019"],"fractured":["fractured.stat_1073447019"]}}} +{"ref":"# to # Lightning Damage per Power Charge","better":1,"matchers":[{"string":"권능 충전 하나당 #~#의 번개 피해"}],"trade":{"ids":{"explicit":["explicit.stat_1917107159"],"fractured":["fractured.stat_1917107159"]}}} +{"ref":"# total Elemental Resistances","better":1,"matchers":[{"string":"총 원소 저항력 # "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_count_elemental_resistances"]}}} +{"ref":"# total Resistances","better":1,"matchers":[{"string":"총 저항 # "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_count_resistances"]}}} +{"ref":"#% additional Elemental Resistances during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 추가 원소 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_962725504"],"fractured":["fractured.stat_962725504"]}}} +{"ref":"#% additional Physical Damage Reduction","better":1,"matchers":[{"string":"받는 물리 피해 #% 추가 감소"}],"trade":{"ids":{"explicit":["explicit.stat_3771516363"],"implicit":["implicit.stat_3771516363"],"fractured":["fractured.stat_3771516363"],"crafted":["crafted.stat_3771516363"]}}} +{"ref":"#% additional Physical Damage Reduction against Abyssal Monsters","better":1,"matchers":[{"string":"심연 몬스터에게 받는 물리 피해 #% 추가 감소"}],"trade":{"ids":{"explicit":["explicit.stat_287491423"],"implicit":["implicit.stat_287491423"],"fractured":["fractured.stat_287491423"]}}} +{"ref":"#% additional Physical Damage Reduction during any Flask Effect","better":1,"matchers":[{"string":"아무 플라스크나 효과를 받는 동안 받는 물리 피해 #% 추가 감소"}],"trade":{"ids":{"explicit":["explicit.stat_2693266036"],"fractured":["fractured.stat_2693266036"]}}} +{"ref":"#% additional Physical Damage Reduction from Hits per Siphoning Charge","better":1,"matchers":[{"string":"착취 충전 하나당 피격 시 받는 물리 피해 #% 추가 감소"}],"trade":{"ids":{"explicit":["explicit.stat_3837366401"]}}} +{"ref":"#% additional Physical Damage Reduction if you weren't Damaged by a Hit Recently","better":1,"matchers":[{"string":"최근 4초 이내 피격 피해를 받지 않은 경우 받는 물리 피해 #% 추가 감소"}],"trade":{"ids":{"explicit":["explicit.stat_3603666270"],"fractured":["fractured.stat_3603666270"]}}} +{"ref":"#% additional Physical Damage Reduction per 10 Strength on Allocated Passives in Radius","better":1,"matchers":[{"string":"반경 내 할당된 패시브 스킬의 힘 10당 받는 물리 피해 #% 추가 감소"}],"trade":{"ids":{"explicit":["explicit.stat_2519848087"]}}} +{"ref":"#% additional Physical Damage Reduction per Frenzy Charge","better":1,"matchers":[{"string":"격분 충전 하나당 받는 물리 피해 #% 추가 감소"}],"trade":{"ids":{"explicit":["explicit.stat_1226049915"]}}} +{"ref":"#% additional Physical Damage Reduction per Power Charge","better":1,"matchers":[{"string":"권능 충전 하나당 받는 물리 피해 #% 추가 감소"}],"trade":{"ids":{"explicit":["explicit.stat_3986347319"]}}} +{"ref":"#% additional Physical Damage Reduction while affected by Determination","better":1,"matchers":[{"string":"결의의 영향을 받는 동안 받는 물리 피해 #% 추가 감소"}],"trade":{"ids":{"explicit":["explicit.stat_1873457881"],"implicit":["implicit.stat_1873457881"]}}} +{"ref":"#% additional Physical Damage Reduction while affected by Herald of Purity","better":1,"matchers":[{"string":"순수의 전령에 영향을 받는 동안 받는 물리 피해 #% 추가 감소"}],"trade":{"ids":{"explicit":["explicit.stat_3163114700"]}}} +{"ref":"#% additional Physical Damage Reduction while Focused","better":1,"matchers":[{"string":"집중하는 동안 받는 물리 피해 #% 추가 감소"}],"trade":{"ids":{"explicit":["explicit.stat_3753650187"],"fractured":["fractured.stat_3753650187"],"crafted":["crafted.stat_3753650187"]}}} +{"ref":"#% additional Physical Damage Reduction while moving","better":1,"matchers":[{"string":"이동 중 받는 물리 피해 #% 추가 감소"}],"trade":{"ids":{"explicit":["explicit.stat_2713357573"]}}} +{"ref":"#% additional Physical Damage Reduction while stationary","better":1,"matchers":[{"string":"정지 상태일 때 받는 물리 피해 #%"},{"string":"정지 상태일 때 받는 물리 피해 #% 추가 감소"}],"trade":{"ids":{"explicit":["explicit.stat_2181129193"],"implicit":["implicit.stat_2181129193"],"fractured":["fractured.stat_2181129193"]}}} +{"ref":"#% Base Defence Percentile","better":1,"matchers":[{"string":"#% 기본 방어 백분위수 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_base_defence_percentile"]}}} +{"ref":"#% chance for Bleeding inflicted with this Weapon to deal 100% more Damage","better":1,"matchers":[{"string":"이 무기로 유발한 출혈 피해 #%의 확률로 100% 증폭"}],"trade":{"ids":{"explicit":["explicit.stat_1560880986"],"fractured":["fractured.stat_1560880986"]}}} +{"ref":"#% chance for Discharge to deal Damage without removing Charges","better":1,"matchers":[{"string":"방출이 충전 제거 없이 #%의 확률로 피해를 줌"},{"string":"방출이 충전 제거 없이 피해를 줌","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1833626118"]}}} +{"ref":"#% chance for dropped Maps to convert to Atlas Memories","better":1,"matchers":[{"string":"떨어진 지도가 #%의 확률로 아틀라스 기억으로 변환 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_conversion_memory_line"]}}} +{"ref":"#% chance for dropped Maps to convert to Conqueror Maps","better":1,"matchers":[{"string":"떨어진 지도가 #%의 확률로 정복자 지도로 변환 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_conversion_conqueror_map"]}}} +{"ref":"#% chance for dropped Maps to convert to Elder Maps","better":1,"matchers":[{"string":"떨어진 지도가 #%의 확률로 엘더 지도로 변환 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_conversion_elder_map"]}}} +{"ref":"#% chance for dropped Maps to convert to Maven Invitations","better":1,"matchers":[{"string":"떨어진 지도가 #%의 확률로 메이븐의 초대로 변환 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_conversion_maven_invitation"]}}} +{"ref":"#% chance for dropped Maps to convert to Scarabs","better":1,"matchers":[{"string":"떨어진 지도가 #%의 확률로 갑충석으로 변환 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_conversion_scarab"]}}} +{"ref":"#% chance for dropped Maps to convert to Shaper Maps","better":1,"matchers":[{"string":"떨어진 지도가 #%의 확률로 쉐이퍼 지도로 변환 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_conversion_shaper_map"]}}} +{"ref":"#% chance for dropped Maps to convert to Unique Maps","better":1,"matchers":[{"string":"떨어진 지도가 #%의 확률로 고유 지도로 변환 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_conversion_unique_map"]}}} +{"ref":"#% chance for Elemental Resistances to count as being 90% against Enemy Hits","better":1,"matchers":[{"string":"적에게 피격 시 #%의 확률로 원소 저항이 90%로 간주"},{"string":"적에게 피격 시 원소 저항이 90%로 간주","value":100}],"trade":{"ids":{"explicit":["explicit.stat_204458505"]}}} +{"ref":"#% chance for Energy Shield Recharge to start when you Block","better":1,"matchers":[{"string":"막아낼 시 #%의 확률로 에너지 보호막 재충전 시작"}],"trade":{"ids":{"explicit":["explicit.stat_762154651"]}}} +{"ref":"#% chance for Energy Shield Recharge to start when you Kill an Enemy","better":1,"matchers":[{"string":"적 처치 시 #%의 확률로 에너지 보호막 재충전 시작"}],"trade":{"ids":{"explicit":["explicit.stat_1618482990"]}}} +{"ref":"#% chance for Energy Shield Recharge to start when you Suppress Spell Damage","better":1,"matchers":[{"string":"주문 피해 억제 시 #%의 확률로 에너지 보호막 재충전 시작"},{"string":"주문 피해 억제 시 에너지 보호막 재충전 시작","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3410306164"]}}} +{"ref":"#% chance for Energy Shield Recharge to start when you use a Skill","better":1,"matchers":[{"string":"스킬 사용 시 #%의 확률로 에너지 보호막 재충전 시작"}],"trade":{"ids":{"explicit":["explicit.stat_3853996752"]}}} +{"ref":"#% chance for Flasks you use to not consume Charges","better":1,"matchers":[{"string":"#%의 확률로 자신의 플라스크 충전을 소모하지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_311641062"],"fractured":["fractured.stat_311641062"],"scourge":["scourge.stat_311641062"],"crafted":["crafted.stat_311641062"]}}} +{"ref":"#% chance for Impales on Enemies you Kill to Reflect Damage to surrounding Enemies","better":1,"matchers":[{"string":"처치하는 적에게 부여된 꿰뚫기가 #%의 확률로 주변 적들에게 피해 반사"},{"string":"처치하는 적에게 부여된 꿰뚫기가 주변 적들에게 피해 반사","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3927388937"]}}} +{"ref":"#% chance for Phase Run to increase Duration without removing Frenzy Charges","better":1,"matchers":[{"string":"#%의 확률로 격분 충전 제거 없이 위상 질주 지속시간 증가"},{"string":"격분 충전 제거 없이 위상 질주 지속시간 증가","value":100}],"trade":{"ids":{"enchant":["enchant.stat_4259029320"]}}} +{"ref":"#% chance for Poisons inflicted with this Weapon to deal 100% more Damage","better":1,"matchers":[{"string":"이 무기로 유발한 중독 피해 #%의 확률로 100% 증폭"}],"trade":{"ids":{"explicit":["explicit.stat_2523146878"],"fractured":["fractured.stat_2523146878"]}}} +{"ref":"#% chance for Poisons inflicted with this Weapon to deal 300% more Damage","better":1,"matchers":[{"string":"이 무기로 유발한 중독 피해 #%의 확률로 300% 증폭"}],"trade":{"ids":{"explicit":["explicit.stat_768124628"]}}} +{"ref":"#% Chance for Puncture to Maim on hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 관통상이 힘줄 절단"}],"trade":{"ids":{"enchant":["enchant.stat_244125450"]}}} +{"ref":"#% chance for Rare Monsters to Fracture on death","better":1,"fromUberAreaMods":true,"matchers":[{"string":"희귀 몬스터가 사망 시 #%의 확률로 분쇄됨"}],"trade":{"ids":{"explicit":["explicit.stat_3097694855"]}}} +{"ref":"#% chance for Resolve Mitigation to be doubled when Hit by an Enemy","better":1,"matchers":[{"string":"적에게 피격 시 #%의 확률로 투지 완화 2배"}],"trade":{"ids":{"explicit":["sanctum.stat_774484840"]}}} +{"ref":"#% chance for Slain monsters to drop an additional Scroll of Wisdom","better":1,"matchers":[{"string":"처치한 몬스터가 감정 주문서 1개를 추가로 떨어뜨릴 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2920230984"]}}} +{"ref":"#% chance for Spell Hits against you to inflict Poison","better":1,"matchers":[{"string":"자신에게 주문 적중 시 #%의 확률로 중독 유발"},{"string":"자신에게 주문 적중 시 중독 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2043747322"]}}} +{"ref":"#% Chance for Traps to Trigger an additional time","better":1,"matchers":[{"string":"#%의 확률로 덫이 1회 추가 발동"},{"string":"덫이 1회 추가 발동","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1087710344"]}}} +{"ref":"#% chance in Heists for Basic Currency drops to be Duplicated","better":1,"matchers":[{"string":"강탈에서 #%의 확률로 떨어지는 기본 화폐 복제"},{"string":"강탈에서 떨어지는 기본 화폐 복제","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2966079414"]}}} +{"ref":"#% chance in Heists for Chaos Orbs to drop as Divine Orbs instead","better":1,"matchers":[{"string":"강탈에서 #% 확률로 카오스 오브가 신성한 오브로 떨어짐"},{"string":"강탈에서 카오스 오브가 신성한 오브로 떨어짐","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2106095595"]}}} +{"ref":"#% chance in Heists for Chaos Orbs to drop as Exalted Orbs instead","better":1,"matchers":[{"string":"강탈에서 #% 확률로 카오스 오브가 엑잘티드 오브로 떨어짐"},{"string":"강탈에서 카오스 오브가 엑잘티드 오브로 떨어짐","value":100}],"trade":{"ids":{"explicit":["explicit.stat_779592324"]}}} +{"ref":"#% chance in Heists for Chromatic Orbs to drop as Jeweller's Orbs instead","better":1,"matchers":[{"string":"강탈에서 #% 확률로 색채의 오브가 쥬얼러 오브로 떨어짐"},{"string":"강탈에서 색채의 오브가 쥬얼러 오브로 떨어짐","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1545361315"]}}} +{"ref":"#% chance in Heists for Chromatic Orbs to drop as Orbs of Fusing instead","better":1,"matchers":[{"string":"강탈에서 #% 확률로 색채의 오브가 연결의 오브로 떨어짐"},{"string":"강탈에서 색채의 오브가 연결의 오브로 떨어짐","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3213734550"]}}} +{"ref":"#% chance in Heists for Items to drop Corrupted","better":1,"matchers":[{"string":"강탈에서 떨어지는 아이템이 #% 확률로 타락"},{"string":"강탈에서 떨어지는 아이템이 타락","value":100}],"trade":{"ids":{"explicit":["explicit.stat_530889264"]}}} +{"ref":"#% chance in Heists for Items to drop fully linked","better":1,"matchers":[{"string":"강탈에서 아이템이 #% 확률로 홈이 모두 연결된 상태로 떨어짐"},{"string":"강탈에서 아이템이 홈이 모두 연결된 상태로 떨어짐","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3892832319"]}}} +{"ref":"#% chance in Heists for Items to drop Identified","better":1,"matchers":[{"string":"강탈에서 아이템이 #% 확률로 식별된 상태로 떨어짐"},{"string":"강탈에서 아이템이 식별된 상태로 떨어짐","value":100}],"trade":{"ids":{"explicit":["explicit.stat_701843516"]}}} +{"ref":"#% chance in Heists for Items to drop with an additional Socket","better":1,"matchers":[{"string":"강탈에서 아이템이 #% 확률로 추가 홈이 있는 상태로 떨어짐"},{"string":"강탈에서 아이템이 추가 홈이 있는 상태로 떨어짐","value":100}],"trade":{"ids":{"explicit":["explicit.stat_986381677"]}}} +{"ref":"#% chance in Heists for Items to drop with Elder Influence","better":1,"matchers":[{"string":"강탈에서 아이템이 #% 확률로 엘더 영향력을 받은 상태로 떨어짐"},{"string":"강탈에서 아이템이 엘더 영향력을 받은 상태로 떨어짐","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3733808322"]}}} +{"ref":"#% chance in Heists for Items to drop with Shaper Influence","better":1,"matchers":[{"string":"강탈에서 아이템이 #% 확률로 쉐이퍼 영향력을 받은 상태로 떨어짐"},{"string":"강탈에서 아이템이 쉐이퍼 영향력을 받은 상태로 떨어짐","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1494306466"]}}} +{"ref":"#% chance in Heists for Jeweller's Orbs to drop as Orbs of Fusing instead","better":1,"matchers":[{"string":"강탈에서 #% 확률로 쥬얼러 오브가 연결의 오브로 떨어짐"},{"string":"강탈에서 쥬얼러 오브가 연결의 오브로 떨어짐","value":100}],"trade":{"ids":{"explicit":["explicit.stat_533969887"]}}} +{"ref":"#% chance in Heists for Orbs of Alteration to drop as Chaos Orbs instead","better":1,"matchers":[{"string":"강탈에서 #% 확률로 변화의 오브가 카오스 오브로 떨어짐"},{"string":"강탈에서 변화의 오브가 카오스 오브로 떨어짐","value":100}],"trade":{"ids":{"explicit":["explicit.stat_844812352"]}}} +{"ref":"#% chance in Heists for Orbs of Alteration to drop as Orbs of Alchemy instead","better":1,"matchers":[{"string":"강탈에서 #% 확률로 변화의 오브가 연금술의 오브로 떨어짐"},{"string":"강탈에서 변화의 오브가 연금술의 오브로 떨어짐","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1122682019"]}}} +{"ref":"#% chance in Heists for Orbs of Alteration to drop as Regal Orbs instead","better":1,"matchers":[{"string":"강탈에서 #% 확률로 변화의 오브가 제왕의 오브로 떨어짐"},{"string":"강탈에서 변화의 오브가 제왕의 오브로 떨어짐","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1290611485"]}}} +{"ref":"#% chance in Heists for Orbs of Augmentation to drop as Chaos Orbs instead","better":1,"matchers":[{"string":"강탈에서 #% 확률로 확장의 오브가 카오스 오브로 떨어짐"},{"string":"강탈에서 확장의 오브가 카오스 오브로 떨어짐","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2559492014"]}}} +{"ref":"#% chance in Heists for Orbs of Augmentation to drop as Orbs of Alchemy instead","better":1,"matchers":[{"string":"강탈에서 #% 확률로 확장의 오브가 연금술의 오브로 떨어짐"},{"string":"강탈에서 확장의 오브가 연금술의 오브로 떨어짐","value":100}],"trade":{"ids":{"explicit":["explicit.stat_306037665"]}}} +{"ref":"#% chance in Heists for Orbs of Augmentation to drop as Regal Orbs instead","better":1,"matchers":[{"string":"강탈에서 #% 확률로 확장의 오브가 제왕의 오브로 떨어짐"},{"string":"강탈에서 확장의 오브가 제왕의 오브로 떨어짐","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1071676747"]}}} +{"ref":"#% chance in Heists for Orbs of Regret to drop as Orbs of Annulment instead","better":1,"matchers":[{"string":"강탈에서 #% 확률로 후회의 오브가 소멸의 오브로 떨어짐"},{"string":"강탈에서 후회의 오브가 소멸의 오브로 떨어짐","value":100}],"trade":{"ids":{"explicit":["explicit.stat_559827707"]}}} +{"ref":"#% chance in Heists for Orbs of Scouring to drop as Orbs of Annulment instead","better":1,"matchers":[{"string":"강탈에서 #% 확률로 정제의 오브가 소멸의 오브로 떨어짐"},{"string":"강탈에서 정제의 오브가 소멸의 오브로 떨어짐","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2845459668"]}}} +{"ref":"#% chance in Heists for Orbs of Scouring to drop as Orbs of Regret instead","better":1,"matchers":[{"string":"강탈에서 #% 확률로 정제의 오브가 후회의 오브로 떨어짐"},{"string":"강탈에서 정제의 오브가 후회의 오브로 떨어짐","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1824085933"]}}} +{"ref":"#% chance in Heists for Orbs of Transmutation to drop as Chaos Orbs instead","better":1,"matchers":[{"string":"강탈에서 #% 확률로 진화의 오브가 카오스 오브로 떨어짐"},{"string":"강탈에서 진화의 오브가 카오스 오브로 떨어짐","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3265666559"]}}} +{"ref":"#% chance in Heists for Orbs of Transmutation to drop as Orbs of Alchemy instead","better":1,"matchers":[{"string":"강탈에서 #% 확률로 진화의 오브가 연금술의 오브로 떨어짐"},{"string":"강탈에서 진화의 오브가 연금술의 오브로 떨어짐","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2532905418"]}}} +{"ref":"#% chance in Heists for Regal Orbs to drop as Divine Orbs instead","better":1,"matchers":[{"string":"강탈에서 #% 확률로 제왕의 오브가 신성한 오브로 떨어짐"},{"string":"강탈에서 제왕의 오브가 신성한 오브로 떨어짐","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2766470009"]}}} +{"ref":"#% chance in Heists for Regal Orbs to drop as Exalted Orbs instead","better":1,"matchers":[{"string":"강탈에서 #% 확률로 제왕의 오브가 엑잘티드 오브로 떨어짐"},{"string":"강탈에서 제왕의 오브가 엑잘티드 오브로 떨어짐","value":100}],"trade":{"ids":{"explicit":["explicit.stat_866391849"]}}} +{"ref":"#% chance on completing a Heist to generate an additional Reveal with Whakano","better":1,"matchers":[{"string":"강탈 완료 시 #%의 확률로 와카노에게서 드러내기 1개 추가 생성"}],"trade":{"ids":{"explicit":["explicit.stat_3107439245"],"fractured":["fractured.stat_3107439245"]}}} +{"ref":"#% Chance on Frenzy to gain an additional Frenzy Charge","better":1,"matchers":[{"string":"격분 상태 시 #%의 확률로 격분 충전 획득"}],"trade":{"ids":{"enchant":["enchant.stat_4243904146"]}}} +{"ref":"#% Chance on Hit to Taunt an Enemy","better":1,"matchers":[{"string":"명중 시 #%의 확률로 도발"},{"string":"명중 시 #%의 확률로 적 도발"}],"trade":{"ids":{"explicit":["explicit.stat_3272283603"]}}} +{"ref":"#% chance on opening a Chest to not generate Alert Level","better":1,"matchers":[{"string":"상자를 열었을 때 #%의 확률로 경보 레벨이 상승하지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_3844152269"],"fractured":["fractured.stat_3844152269"]}}} +{"ref":"#% chance that if you would gain a Crab Barrier, you instead gain up to\nyour maximum number of Crab Barriers","better":1,"matchers":[{"string":"게의 방어막 획득 시\n#%의 확률로 게의 방어막 최대치 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1829869055"]}}} +{"ref":"#% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges","better":1,"matchers":[{"string":"인내 충전 획득 시 #%의 확률로 인내 충전 최대치 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2713233613"]}}} +{"ref":"#% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges","better":1,"matchers":[{"string":"격분 충전 획득 시 #%의 확률로 격분 충전 최대치 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2119664154"]}}} +{"ref":"#% chance that if you would gain Power Charges, you instead gain up to\nyour maximum number of Power Charges","better":1,"matchers":[{"string":"권능 충전 획득 시\n#%의 확률로 권능 충전 최대치 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1232004574"]}}} +{"ref":"#% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage","better":1,"matchers":[{"string":"명중으로 격노 획득 시 #%의 확률로 격노 최대치 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2710292678"]}}} +{"ref":"#% chance to Aggravate Bleeding on targets you Hit with Attacks","better":1,"matchers":[{"string":"공격 명중 시 #%의 확률로 대상의 출혈 가중"}],"trade":{"ids":{"implicit":["implicit.stat_2705185939"]}}} +{"ref":"#% chance to Avoid being Chilled","better":1,"matchers":[{"string":"#%의 확률로 냉각 긴급회피"}],"trade":{"ids":{"explicit":["explicit.stat_3483999943"],"implicit":["implicit.stat_3483999943"],"fractured":["fractured.stat_3483999943"],"enchant":["enchant.stat_3483999943"],"scourge":["scourge.stat_3483999943"],"crafted":["crafted.stat_3483999943"]}}} +{"ref":"#% chance to Avoid being Chilled during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 #%의 확률로 냉각 긴급회피"}],"trade":{"ids":{"explicit":["explicit.stat_1053326368","explicit.stat_1619168299"],"fractured":["fractured.stat_1619168299"]}}} +{"ref":"#% chance to Avoid being Chilled during Onslaught","better":1,"matchers":[{"string":"맹공 상태일 때 #%의 확률로 냉각 긴급회피"}],"trade":{"ids":{"explicit":["explicit.stat_2872105818"]}}} +{"ref":"#% chance to Avoid being Chilled or Frozen if you have used a Fire Skill Recently","better":1,"matchers":[{"string":"최근 4초 이내 화염 스킬을 사용한 경우 #%의 확률로 동결 또는 냉각 긴급회피"}],"trade":{"ids":{"explicit":["explicit.stat_3706656107"]}}} +{"ref":"#% chance to Avoid being Frozen","better":1,"matchers":[{"string":"#%의 확률로 동결 긴급회피"}],"trade":{"ids":{"explicit":["explicit.stat_1514829491"],"implicit":["implicit.stat_1514829491"],"fractured":["fractured.stat_1514829491"],"enchant":["enchant.stat_1514829491"],"scourge":["scourge.stat_1514829491"],"crafted":["crafted.stat_1514829491"]}}} +{"ref":"#% chance to Avoid being Frozen during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 #%의 확률로 동결 긴급회피"}],"trade":{"ids":{"explicit":["explicit.stat_2872815301","explicit.stat_475518267"],"fractured":["fractured.stat_475518267"]}}} +{"ref":"#% chance to Avoid being Ignited","better":1,"matchers":[{"string":"#%의 확률로 점화 긴급회피"}],"trade":{"ids":{"explicit":["explicit.stat_1783006896"],"implicit":["implicit.stat_1783006896"],"fractured":["fractured.stat_1783006896"],"enchant":["enchant.stat_1783006896"],"scourge":["scourge.stat_1783006896"],"crafted":["crafted.stat_1783006896"]}}} +{"ref":"#% chance to Avoid being Ignited during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 #%의 확률로 점화 긴급회피"}],"trade":{"ids":{"explicit":["explicit.stat_20251177"],"fractured":["fractured.stat_20251177"]}}} +{"ref":"#% chance to Avoid being Ignited while on Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태에서 #%의 확률로 점화 긴급회피"}],"trade":{"ids":{"explicit":["explicit.stat_4271082039"]}}} +{"ref":"#% chance to Avoid being Ignited, Chilled or Frozen with Her Blessing","better":1,"matchers":[{"string":"여신의 축복을 받아 #%의 확률로 점화, 냉각, 동결 긴급회피"}],"trade":{"ids":{"explicit":["explicit.stat_1093704472"]}}} +{"ref":"#% chance to Avoid being Interrupted","better":1,"matchers":[{"string":"#%의 확률로 방해 긴급회피"},{"string":"#%의 확률로 방해 회피"}],"trade":{"ids":{"explicit":["explicit.stat_3313284037"],"fractured":["fractured.stat_3313284037"]}}} +{"ref":"#% chance to Avoid being Poisoned","better":1,"matchers":[{"string":"#%의 확률로 중독 긴급회피"},{"string":"중독될 수 없음","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3835551335","explicit.stat_4053951709"],"implicit":["implicit.stat_3835551335","implicit.stat_4053951709"],"fractured":["fractured.stat_3835551335","fractured.stat_4053951709"],"enchant":["enchant.stat_4053951709"],"scourge":["scourge.stat_4053951709"]}}} +{"ref":"#% chance to Avoid being Shocked","better":1,"matchers":[{"string":"#%의 확률로 감전 긴급회피"}],"trade":{"ids":{"explicit":["explicit.stat_1871765599"],"implicit":["implicit.stat_1871765599"],"fractured":["fractured.stat_1871765599"],"enchant":["enchant.stat_1871765599"],"scourge":["scourge.stat_1871765599"],"crafted":["crafted.stat_1871765599"]}}} +{"ref":"#% chance to Avoid being Shocked during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 #%의 확률로 감전 긴급회피"}],"trade":{"ids":{"explicit":["explicit.stat_3642618258"],"fractured":["fractured.stat_3642618258"]}}} +{"ref":"#% chance to Avoid being Shocked while Chilled","better":1,"matchers":[{"string":"냉각 상태에서 #%의 확률로 감전 긴급회피"}],"trade":{"ids":{"explicit":["explicit.stat_3981960937"]}}} +{"ref":"#% chance to Avoid being Stunned","better":1,"matchers":[{"string":"#%의 확률로 기절 긴급회피"},{"string":"기절할 수 없음","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1694106311","explicit.stat_4262448838"],"implicit":["implicit.stat_4262448838"],"fractured":["fractured.stat_4262448838"],"enchant":["enchant.stat_4262448838"],"scourge":["scourge.stat_4262448838"],"crafted":["crafted.stat_4262448838"]}}} +{"ref":"#% Chance to Avoid being Stunned during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 #%의 확률로 기절 긴급회피"},{"string":"효과를 받는 동안 기절할 수 없음","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2312652600"],"fractured":["fractured.stat_2312652600"],"crafted":["crafted.stat_2312652600"]}}} +{"ref":"#% chance to Avoid being Stunned if you've Killed Recently","better":1,"matchers":[{"string":"최근 4초 이내 적을 처치한 경우 #%의 확률로 기절 긴급회피"}],"trade":{"ids":{"enchant":["enchant.stat_412905518"]}}} +{"ref":"#% chance to Avoid being Stunned while Channelling Snipe","better":1,"matchers":[{"string":"저격에 집중 유지하는 동안 #%의 확률로 기절 긴급회피"}],"trade":{"ids":{"enchant":["enchant.stat_3024408350"]}}} +{"ref":"#% chance to Avoid Bleeding","better":1,"matchers":[{"string":"#%의 확률로 출혈 긴급회피"},{"string":"출혈에 면역","value":100},{"string":"출혈이 플레이어에게 유발될 수 없음","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1618589784","explicit.stat_1901158930"],"implicit":["implicit.stat_1618589784","implicit.stat_1901158930"],"fractured":["fractured.stat_1618589784"],"scourge":["scourge.stat_1618589784"],"crafted":["crafted.stat_1618589784"]}}} +{"ref":"#% chance to Avoid Cold Damage from Hits","better":1,"matchers":[{"string":"피격 시 #% 확률로 냉기 피해 긴급회피"},{"string":"피격 시 냉기 피해 긴급회피","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3743375737"],"implicit":["implicit.stat_3743375737"],"fractured":["fractured.stat_3743375737"]}}} +{"ref":"#% chance to Avoid Elemental Ailments","better":1,"matchers":[{"string":"#%의 확률로 원소 상태 이상 긴급회피"}],"trade":{"ids":{"explicit":["explicit.stat_3005472710"],"implicit":["implicit.stat_3005472710"],"fractured":["fractured.stat_3005472710"],"scourge":["scourge.stat_3005472710"],"crafted":["crafted.stat_3005472710"]}}} +{"ref":"#% chance to Avoid Elemental Ailments per Grand Spectrum","better":1,"matchers":[{"string":"장대한 파장 하나당 #%의 확률로 원소 상태 이상 긴급회피"}],"trade":{"ids":{"explicit":["explicit.stat_611279043"]}}} +{"ref":"#% chance to Avoid Elemental Ailments while Phasing","better":1,"matchers":[{"string":"차원 능력 상태에서 #%의 확률로 원소 상태 이상 긴급회피"}],"trade":{"ids":{"explicit":["explicit.stat_115351487"]}}} +{"ref":"#% chance to Avoid Elemental Ailments while you have Elusive","better":1,"matchers":[{"string":"도피 상태에서 #%의 확률로 원소 상태 이상 긴급회피"}],"trade":{"ids":{"explicit":["explicit.stat_2662268382"],"fractured":["fractured.stat_2662268382"],"enchant":["enchant.stat_2662268382"]}}} +{"ref":"#% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention","better":1,"matchers":[{"string":"영혼 획득 방지 중 #%의 확률로 피격 시 원소 피해 긴급회피"}],"trade":{"ids":{"explicit":["explicit.stat_720398262"],"fractured":["fractured.stat_720398262"],"crafted":["crafted.stat_720398262"]}}} +{"ref":"#% chance to Avoid Elemental Damage from Hits per Frenzy Charge","better":1,"matchers":[{"string":"피격 시 격분 충전 하나당 #%의 확률로 원소 피해 긴급회피"},{"string":"격분 충전 보유 중 피격 시 원소 피해 긴급회피","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1649883131"]}}} +{"ref":"#% chance to Avoid Fire Damage from Hits","better":1,"matchers":[{"string":"피격 시 #% 확률로 화염 피해 긴급회피"},{"string":"피격 시 화염 피해 긴급회피","value":100}],"trade":{"ids":{"explicit":["explicit.stat_42242677"],"implicit":["implicit.stat_42242677"],"fractured":["fractured.stat_42242677"]}}} +{"ref":"#% chance to Avoid gaining an Affliction","better":1,"matchers":[{"string":"고난을 획득해야 할 때 #%의 확률로 획득하지 않음"},{"string":"고난 획득 불가","value":100}],"trade":{"ids":{"explicit":["sanctum.stat_1960517795"]}}} +{"ref":"#% chance to Avoid Lightning Damage from Hits","better":1,"matchers":[{"string":"피격 시 #% 확률로 번개 피해 긴급회피"},{"string":"피격 시 번개 피해 긴급회피","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2889664727"],"implicit":["implicit.stat_2889664727"],"fractured":["fractured.stat_2889664727"]}}} +{"ref":"#% chance to Avoid Physical Damage from Hits","better":1,"matchers":[{"string":"피격 시 #% 확률로 물리 피해 긴급회피"},{"string":"피격 시 물리 피해 긴급회피","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2415497478"],"fractured":["fractured.stat_2415497478"]}}} +{"ref":"#% chance to avoid Projectiles","better":1,"matchers":[{"string":"#%의 확률로 투사체 긴급회피"},{"string":"투사체 긴급회피","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3452269808"],"fractured":["fractured.stat_3452269808"]}}} +{"ref":"#% chance to avoid Projectiles if you've taken Projectile Damage Recently","better":1,"matchers":[{"string":"최근 4초 이내 투사체 피해를 받은 경우 #%의 확률로 투사체 긴급회피"}],"trade":{"ids":{"explicit":["explicit.stat_3114696875"]}}} +{"ref":"#% chance to Avoid Projectiles while Phasing","better":1,"matchers":[{"string":"차원 능력 상태에서 #%의 확률로 투사체 긴급회피"}],"trade":{"ids":{"explicit":["explicit.stat_3635120731"]}}} +{"ref":"#% chance to Avoid Resolve loss from Enemy Hits if you've been Hit recently","better":1,"matchers":[{"string":"최근 4초 이내에 피격된 경우 #%의 확률로 적의 명중으로 인한 투지 상실 긴급회피"}],"trade":{"ids":{"explicit":["sanctum.stat_2284543592"]}}} +{"ref":"#% chance to be inflicted with Bleeding when Hit by an Attack","better":1,"matchers":[{"string":"공격에 피격 시 #%의 확률로 출혈 유발"}],"trade":{"ids":{"explicit":["explicit.stat_2155467472"]}}} +{"ref":"#% chance to Blind Enemies on Critical Strike","better":1,"matchers":[{"string":"치명타 명중 시 #%의 확률로 적 실명 유발"}],"trade":{"ids":{"explicit":["explicit.stat_3983981705"]}}} +{"ref":"#% chance to Blind Enemies on hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 적 실명 유발"}],"trade":{"ids":{"explicit":["explicit.stat_2301191210"],"fractured":["fractured.stat_2301191210"],"crafted":["crafted.stat_2301191210"]}}} +{"ref":"#% chance to Blind Enemies on Hit with Attacks","better":1,"matchers":[{"string":"공격 명중 시 #%의 확률로 적 실명 유발"},{"string":"공격 명중 시 적 실명 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_318953428"],"implicit":["implicit.stat_318953428"],"fractured":["fractured.stat_318953428"]}}} +{"ref":"#% chance to Blind Enemies on Hit with Melee Weapons","better":1,"matchers":[{"string":"근접 무기로 명중 시 #%의 확률로 적 실명 유발"}],"trade":{"ids":{"implicit":["implicit.stat_2795267150"]}}} +{"ref":"#% chance to Blind Enemies when they Hit you","better":1,"matchers":[{"string":"피격 시 #%의 확률로 공격한 적 실명 유발"}],"trade":{"ids":{"scourge":["scourge.stat_26216403"]}}} +{"ref":"#% chance to Blind Enemies which Hit you while affected by Grace","better":1,"matchers":[{"string":"은총의 영향을 받는 동안 피격 시 #%의 확률로 공격한 적 실명 유발"},{"string":"은총의 영향을 받는 동안 피격 시 공격한 적 실명 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2548097895"]}}} +{"ref":"#% chance to Blind nearby Enemies when gaining Her Blessing","better":1,"matchers":[{"string":"여신의 축복 획득 시 #%의 확률로 주변의 적 실명 유발"},{"string":"여신의 축복 획득 시 항상 주변의 적 실명 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2327728343"]}}} +{"ref":"#% Chance to Block Attack Damage","better":1,"matchers":[{"string":"#%의 확률로 공격 피해를 막아냄"},{"string":"공격 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1702195217","explicit.stat_2530372417"],"implicit":["implicit.stat_1702195217","implicit.stat_2530372417"],"fractured":["fractured.stat_2530372417"],"scourge":["scourge.stat_1702195217"],"crafted":["crafted.stat_1702195217","crafted.stat_2530372417"]}}} +{"ref":"#% Chance to Block Spell Damage","better":1,"matchers":[{"string":"#%의 확률로 주문 피해를 막아냄"},{"string":"주문 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_19803471","explicit.stat_2881111359","explicit.stat_561307714"],"implicit":["implicit.stat_2881111359","implicit.stat_561307714"],"fractured":["fractured.stat_561307714"],"scourge":["scourge.stat_19803471"],"crafted":["crafted.stat_561307714"]}}} +{"ref":"#% Chance to cause Bleeding Enemies to Flee on hit","better":1,"matchers":[{"string":"출혈 상태의 적 명중 시 #%의 확률로 적이 도망침"}],"trade":{"ids":{"explicit":["explicit.stat_2072206041"]}}} +{"ref":"#% chance to Cause Bleeding on Critical Strike","better":1,"matchers":[{"string":"치명타 명중 시 #%의 확률로 출혈 유발"},{"string":"치명타 명중 시 출혈 유발","value":100},{"string":"치명타 명중 시 50%의 확률로 출혈 유발","value":50}],"trade":{"ids":{"explicit":["explicit.stat_513681673"]}}} +{"ref":"#% chance to cause Bleeding on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 출혈 유발"}],"trade":{"ids":{"explicit":["explicit.stat_1519615863"],"implicit":["implicit.stat_1519615863"],"fractured":["fractured.stat_1519615863"],"enchant":["enchant.stat_1519615863"],"crafted":["crafted.stat_1519615863"]}}} +{"ref":"#% chance to cause Bleeding with Melee Weapons","better":1,"matchers":[{"string":"근접 무기 사용 시 #%의 확률로 출혈 유발"}],"trade":{"ids":{"implicit":["implicit.stat_1630041051"]}}} +{"ref":"#% chance to cause Enemies to Flee on use","better":1,"matchers":[{"string":"사용 시 #%의 확률로 적이 도망침"}],"trade":{"ids":{"explicit":["explicit.stat_1457911472"]}}} +{"ref":"#% Chance to Cause Monster to Flee on Block","better":1,"matchers":[{"string":"막아낼 시 #%의 확률로 몬스터가 도망침"}],"trade":{"ids":{"explicit":["explicit.stat_3212461220"]}}} +{"ref":"#% chance to Cause Monsters to Flee","better":1,"matchers":[{"string":"#%의 확률로 몬스터가 도망침"}],"trade":{"ids":{"explicit":["explicit.stat_3181974858"],"implicit":["implicit.stat_3181974858"]}}} +{"ref":"#% chance to Cause Poison on Critical Strike","better":1,"matchers":[{"string":"치명타 명중 시 #%의 확률로 중독 유발"},{"string":"치명타 명중 시 중독 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_374737750"]}}} +{"ref":"#% chance to Chill Attackers for 4 seconds on Block","better":1,"matchers":[{"string":"막아낼 시 #%의 확률로 4초 동안 공격자에게 냉각 유발"},{"string":"막아낼 시 4초 동안 공격자에게 냉각 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_864879045"],"fractured":["fractured.stat_864879045"],"scourge":["scourge.stat_864879045"]}}} +{"ref":"#% chance to Cover Enemies in Ash on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 적을 재로 덮음"},{"string":"명중 시 적을 재로 덮음","value":100}],"trade":{"ids":{"explicit":["explicit.stat_324460247"]}}} +{"ref":"#% chance to cover Enemies in Ash when they Hit you","better":1,"matchers":[{"string":"피격 시 #%의 확률로 적을 재로 덮음"},{"string":"피격 시 적을 재로 덮음","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3748879662"],"fractured":["fractured.stat_3748879662"]}}} +{"ref":"#% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 10초 동안 희귀 또는 고유 적을 재로 덮음"},{"string":"명중 시 10초 동안 희귀 또는 고유 적을 재로 덮음","value":100}],"trade":{"ids":{"explicit":["explicit.stat_240642724"]}}} +{"ref":"#% chance to create a Smoke Cloud when Hit","better":1,"matchers":[{"string":"피격 시 #%의 확률로 연막 생성"},{"string":"피격 시 연막 생성","value":100}],"trade":{"ids":{"explicit":["explicit.stat_953314356"]}}} +{"ref":"#% chance to create an additional Animate Weapon copy","better":1,"matchers":[{"string":"#%의 확률로 무기 기동 복제본 1개 추가 생성"}],"trade":{"ids":{"enchant":["enchant.stat_3711386843"]}}} +{"ref":"#% chance to create Chilled Ground when Hit with an Attack","better":1,"matchers":[{"string":"공격에 피격 시 #%의 확률로 얼음 지대 생성"},{"string":"공격에 피격 시 얼음 지대 생성","value":100}],"trade":{"ids":{"explicit":["explicit.stat_358040686"]}}} +{"ref":"#% chance to create Chilled Ground when you Freeze an Enemy","better":1,"matchers":[{"string":"적을 동결시켰을 시 #%의 확률로 얼음 지대 생성"},{"string":"적을 동결시켰을 시 얼음 지대 생성","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2901262227"],"enchant":["enchant.stat_2901262227"]}}} +{"ref":"#% chance to create Consecrated Ground when Hit, lasting 8 seconds","better":1,"matchers":[{"string":"피격 시 #%의 확률로 8초 동안 지속되는 신성화 지대 생성"},{"string":"피격 시 8초 동안 지속되는 신성화 지대 생성","value":100}],"trade":{"ids":{"scourge":["scourge.stat_1968872681"]}}} +{"ref":"#% chance to create Consecrated Ground when you Block","better":1,"matchers":[{"string":"막아낼 시 #%의 확률로 신성화 지대 생성"}],"trade":{"ids":{"explicit":["explicit.stat_573884683"]}}} +{"ref":"#% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds","better":1,"matchers":[{"string":"희귀 또는 고유 적 명중 시 #%의 확률로 8초간 지속되는 신성화 지대 생성"}],"trade":{"ids":{"explicit":["explicit.stat_3135669941"]}}} +{"ref":"#% chance to create Consecrated Ground when you Shatter an Enemy","better":1,"matchers":[{"string":"적을 산산이 조각내면 #%의 확률로 신성화 지대 생성"},{"string":"적을 산산이 조각내면 신성화 지대 생성","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4148932984"]}}} +{"ref":"#% chance to create Desecrated Ground when you Block","better":1,"matchers":[{"string":"막아낼 시 #%의 확률로 훼손된 지대 생성"}],"trade":{"ids":{"explicit":["explicit.stat_3685028559"]}}} +{"ref":"#% chance to create Profane Ground on Critical\nStrike if Intelligence is your highest Attribute","better":1,"matchers":[{"string":"능력치 중 지능이 가장 높을 경우 치명타 명중 시 #%의 확률로 부정 지대 생성"}],"trade":{"ids":{"explicit":["explicit.stat_2047846165"]}}} +{"ref":"#% chance to create Shocked Ground when Hit","better":1,"matchers":[{"string":"피격 시 #%의 확률로 감전 지대 생성"},{"string":"피격 시 감전 지대 생성","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3355479537"]}}} +{"ref":"#% chance to Crush on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 타쇄"},{"string":"명중 시 타쇄","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2228892313"],"fractured":["fractured.stat_2228892313"]}}} +{"ref":"#% chance to Curse Enemies which Hit you with a random Hex, ignoring Curse Limit","better":1,"matchers":[{"string":"플레이어를 명중한 적이 #%의 확률로 무작위 사술에 걸림, 저주 제한 무시"},{"string":"플레이어를 명중한 적이 무작위 사술에 걸림, 저주 제한 무시","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2674214144"]}}} +{"ref":"#% chance to Curse Enemies with Socketed Hex Curse Gem on Hit","better":1,"matchers":[{"string":"명중 시 장착된 사술 저주 젬을 사용해 #%의 확률로 적 저주"},{"string":"명중 시 장착된 사술 저주 젬을 사용해 적 저주","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1352418057"],"fractured":["fractured.stat_1352418057"]}}} +{"ref":"#% chance to Curse non-Cursed Enemies with a random Hex on Hit","better":1,"matchers":[{"string":"명중 시 저주에 걸리지 않은 적이 #%의 확률로 무작위 사술 저주에 걸림"}],"trade":{"ids":{"explicit":["explicit.stat_1726444796"]}}} +{"ref":"#% chance to Curse you with Silence when Hit","better":1,"matchers":[{"string":"피격 시 #%의 확률로 플레이어가 침묵 저주에 걸림"},{"string":"피격 시 플레이어가 침묵 저주에 걸림","value":100}],"trade":{"ids":{"scourge":["scourge.stat_3370064078"]}}} +{"ref":"#% chance to deal Double Damage","better":1,"matchers":[{"string":"#%의 확률로 2배의 피해를 줌"}],"trade":{"ids":{"explicit":["explicit.stat_1172810729"],"implicit":["implicit.stat_1172810729"],"fractured":["fractured.stat_1172810729"],"crafted":["crafted.stat_1172810729"]}}} +{"ref":"#% chance to deal Double Damage if you have Stunned an Enemy Recently","better":1,"matchers":[{"string":"최근 4초 이내 적을 기절시킨 경우 #%의 확률로 2배의 피해를 줌"}],"trade":{"ids":{"explicit":["explicit.stat_4224978303"],"fractured":["fractured.stat_4224978303"]}}} +{"ref":"#% chance to deal Double Damage if you've cast Vulnerability in the past 10 seconds","better":1,"matchers":[{"string":"최근 10초 이내 취약성을 시전한 경우 #% 확률로 2배의 피해를 줌"}],"trade":{"ids":{"explicit":["explicit.stat_2304988974"]}}} +{"ref":"#% chance to deal Double Damage while affected by Glorious Madness","better":1,"matchers":[{"string":"찬란한 광기의 영향을 받는 동안 #%의 확률로 2배의 피해를 줌"}],"trade":{"ids":{"explicit":["explicit.stat_1299868012"]}}} +{"ref":"#% chance to deal Double Damage while Focused","better":1,"matchers":[{"string":"집중하는 동안 #%의 확률로 2배의 피해를 줌"},{"string":"집중하는 동안 2배의 피해를 줌","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2908886986"],"fractured":["fractured.stat_2908886986"],"crafted":["crafted.stat_2908886986"]}}} +{"ref":"#% chance to deal Double Damage while using Pride","better":1,"matchers":[{"string":"자부심을 사용하는 동안 #%의 확률로 2배의 피해를 줌"}],"trade":{"ids":{"explicit":["explicit.stat_3371719014"]}}} +{"ref":"#% chance to deal Double Damage while you have at least 200 Strength","better":1,"matchers":[{"string":"힘이 200 이상일 때 #%의 확률로 2배의 피해를 줌"}],"trade":{"ids":{"explicit":["explicit.stat_1535606605"]}}} +{"ref":"#% chance to deal Triple Damage","better":1,"matchers":[{"string":"#%의 확률로 3배의 피해를 줌"},{"string":"3배의 피해를 줌","value":100}],"trade":{"ids":{"scourge":["scourge.stat_2445189705"]}}} +{"ref":"#% chance to deal Triple Damage while you have at least 400 Strength","better":1,"matchers":[{"string":"힘이 400 이상일 때 #%의 확률로 3배의 피해를 줌"}],"trade":{"ids":{"explicit":["explicit.stat_147155654"]}}} +{"ref":"#% chance to Defend with 200% of Armour","better":1,"matchers":[{"string":"#% 확률로 200%의 방어도로 방어"}],"trade":{"ids":{"explicit":["explicit.stat_327253797"],"implicit":["implicit.stat_327253797"],"fractured":["fractured.stat_327253797"]}}} +{"ref":"#% chance to double Stun Duration","better":1,"matchers":[{"string":"#%의 확률로 기절 지속시간 2배"}],"trade":{"ids":{"explicit":["explicit.stat_2622251413"],"implicit":["implicit.stat_2622251413"]}}} +{"ref":"#% chance to Extinguish Enemies on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 적 소진 유발"}],"trade":{"ids":{"implicit":["implicit.stat_49183689"]}}} +{"ref":"#% chance to Freeze","better":1,"matchers":[{"string":"#%의 확률로 동결 유발"},{"string":"명중 시 항상 동결 유발","value":100},{"string":"항상 동결 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2309614417"],"implicit":["implicit.stat_2309614417"],"fractured":["fractured.stat_2309614417"],"enchant":["enchant.stat_2309614417"],"scourge":["scourge.stat_2309614417"],"crafted":["crafted.stat_2309614417"]}}} +{"ref":"#% chance to Freeze during any Flask Effect","better":1,"matchers":[{"string":"아무 플라스크나 효과를 받는 동안 #%의 확률로 동결 유발"}],"trade":{"ids":{"explicit":["explicit.stat_2332726055"]}}} +{"ref":"#% chance to Freeze Enemies for 1 second when they Hit you","better":1,"matchers":[{"string":"피격 시 #%의 확률로 해당 적이 1초 동안 동결"}],"trade":{"ids":{"explicit":["explicit.stat_2168861013"]}}} +{"ref":"#% chance to Freeze with Melee Weapons","better":1,"matchers":[{"string":"근접 무기 사용 시 #%의 확률로 동결 유발"}],"trade":{"ids":{"implicit":["implicit.stat_1858426568"]}}} +{"ref":"#% chance to Freeze, Shock and Ignite","better":1,"matchers":[{"string":"#%의 확률로 동결, 감전 및 점화 유발"},{"string":"항상 동결, 감전 및 점화 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_800141891"],"implicit":["implicit.stat_800141891"],"fractured":["fractured.stat_800141891"]}}} +{"ref":"#% chance to Freeze, Shock and Ignite during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 #%의 확률로 동결, 감전 및 점화 유발"}],"trade":{"ids":{"explicit":["explicit.stat_97064873"],"fractured":["fractured.stat_97064873"]}}} +{"ref":"#% chance to Freeze, Shock and Ignite if you haven't Crit Recently","better":1,"matchers":[{"string":"최근 4초 이내 치명타가 없었던 경우 #%의 확률로 동결, 감전 및 점화 유발"}],"trade":{"ids":{"enchant":["enchant.stat_3915210550"]}}} +{"ref":"#% chance to gain 25% of Non-Chaos Damage with Hits as Extra Chaos Damage","better":1,"matchers":[{"string":"명중 시 #%의 확률로 비-카오스 피해의 25%를 추가 카오스 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1741279188"]}}} +{"ref":"#% chance to gain a Divine Charge on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 신성 충전 획득"},{"string":"명중 시 신성 충전 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_108334292"]}}} +{"ref":"#% chance to gain a Flask Charge when you deal a Critical Strike","better":1,"matchers":[{"string":"치명타 명중 시 #%의 확률로 플라스크 1 충전"},{"string":"치명타 명중 시 플라스크 1 충전","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1546046884","explicit.stat_2858921304","explicit.stat_3738001379"],"fractured":["fractured.stat_3738001379"]}}} +{"ref":"#% chance to gain a Flask Charge when you deal a Critical Strike while at maximum Frenzy Charges","better":1,"matchers":[{"string":"격분 충전 최대치 상태에서 치명타 명중 시 #%의 확률로 플라스크 1 충전"},{"string":"최대 격분 충전 상태에서 치명타 명중 시 플라스크 1 충전","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3371432622"]}}} +{"ref":"#% chance to gain a Frenzy Charge for each Enemy you hit with a Critical Strike","better":1,"matchers":[{"string":"적에게 치명타가 명중할 때마다 #%의 확률로 격분 충전 획득"},{"string":"적에게 치명타가 명중할 때마다 격분 충전 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1302845655"]}}} +{"ref":"#% chance to gain a Frenzy Charge on Critical Strike","better":1,"matchers":[{"string":"치명타 명중 시 #%의 확률로 격분 충전 획득"},{"string":"치명타 명중 시 격분 충전 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3032585258","explicit.stat_398702949"],"fractured":["fractured.stat_3032585258"],"crafted":["crafted.stat_3032585258"]}}} +{"ref":"#% chance to gain a Frenzy Charge on Critical Strike at Close Range","better":1,"matchers":[{"string":"근거리에서 치명타 명중 시 #%의 확률로 격분 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_911695185"]}}} +{"ref":"#% chance to gain a Frenzy Charge on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 격분 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2323242761"],"implicit":["implicit.stat_2323242761"],"fractured":["fractured.stat_2323242761"]}}} +{"ref":"#% chance to gain a Frenzy Charge on Hit while Blinded","better":1,"matchers":[{"string":"실명 상태에서 명중 시 #%의 확률로 격분 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2478268100"]}}} +{"ref":"#% chance to gain a Frenzy Charge on Hitting an Enemy with no Evasion Rating","better":1,"matchers":[{"string":"회피가 없는 적 명중 시 #%의 확률로 격분 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_471924383"]}}} +{"ref":"#% chance to gain a Frenzy Charge on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 격분 충전 획득"},{"string":"처치 시 격분 충전 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1826802197"],"implicit":["implicit.stat_1826802197"],"fractured":["fractured.stat_1826802197"],"enchant":["enchant.stat_1826802197"],"scourge":["scourge.stat_1826802197"]}}} +{"ref":"#% chance to gain a Frenzy Charge on Killing a Frozen Enemy","better":1,"matchers":[{"string":"동결된 적 처치 시 #%의 확률로 격분 충전 획득"},{"string":"동결된 적 처치 시 격분 충전 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2230931659"]}}} +{"ref":"#% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons","better":1,"matchers":[{"string":"중독 5중첩 이상의 적 처치 시 #%의 확률로 격분 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_496822696"]}}} +{"ref":"#% chance to gain a Frenzy Charge when Hit","better":1,"matchers":[{"string":"피격 시 #%의 확률로 격분 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_881914531"]}}} +{"ref":"#% chance to gain a Frenzy Charge when you Block","better":1,"matchers":[{"string":"막아낼 시 #%의 확률로 격분 충전 획득"},{"string":"막아낼 시 격분 충전 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3769211656"],"fractured":["fractured.stat_3769211656"]}}} +{"ref":"#% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy","better":1,"matchers":[{"string":"희귀 또는 고유 적 명중 시 #%의 확률로 격분 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_4179663748"],"fractured":["fractured.stat_4179663748"]}}} +{"ref":"#% chance to gain a Frenzy Charge when you Stun an Enemy","better":1,"matchers":[{"string":"적 기절 시 #%의 확률로 격분 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1695720239"]}}} +{"ref":"#% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy","better":1,"matchers":[{"string":"자신의 덫이 적에 의해 발동되면 #%의 확률로 격분 충전 획득"},{"string":"자신의 덫이 적에 의해 발동되면 격분 충전 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3738335639"]}}} +{"ref":"#% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage","better":1,"matchers":[{"string":"근접 피해로 적을 밀어낼 경우 #%의 확률로 권능 충전 획득"},{"string":"근접 피해로 적을 밀어낼 경우 권능 충전 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2179619644"]}}} +{"ref":"#% chance to gain a Power Charge on Critical Strike","better":1,"matchers":[{"string":"치명타 명중 시 #%의 확률로 권능 충전 획득"},{"string":"치명타 명중 시 권능 충전 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3814876985"],"implicit":["implicit.stat_3814876985"],"fractured":["fractured.stat_3814876985"]}}} +{"ref":"#% Chance to gain a Power Charge on Critical Strike with Ice Spear","better":1,"matchers":[{"string":"얼음 창 치명타 명중 시 #%의 확률로 권능 충전 획득"}],"trade":{"ids":{"enchant":["enchant.stat_3232905239"]}}} +{"ref":"#% chance to gain a Power Charge on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 권능 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1453197917"]}}} +{"ref":"#% chance to Gain a Power Charge on Hit while Poisoned","better":1,"matchers":[{"string":"중독 상태에서 명중 시 #%의 확률로 권능 충전 획득"},{"string":"중독 상태에서 명중 시 권능 충전 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_800598487"]}}} +{"ref":"#% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web","better":1,"matchers":[{"string":"거미줄의 영향을 받는 적 명중 시 #%의 확률로 권능 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_273206351"]}}} +{"ref":"#% chance to gain a Power Charge on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 권능 충전 획득"},{"string":"처치 시 권능 충전 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2483795307"],"implicit":["implicit.stat_2483795307"],"fractured":["fractured.stat_2483795307"],"enchant":["enchant.stat_2483795307"],"scourge":["scourge.stat_2483795307"]}}} +{"ref":"#% chance to gain a Power Charge on Killing a Frozen Enemy","better":1,"matchers":[{"string":"동결된 적 처치 시 #%의 확률로 권능 충전 획득"},{"string":"동결된 적 처치 시 권능 충전 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3607154250"],"fractured":["fractured.stat_3607154250"]}}} +{"ref":"#% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons","better":1,"matchers":[{"string":"중독 5중첩 미만의 적 처치 시 #%의 확률로 권능 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_352612932"]}}} +{"ref":"#% chance to gain a Power Charge when you Block","better":1,"matchers":[{"string":"막아낼 시 #%의 확률로 권능 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3945147290"],"fractured":["fractured.stat_3945147290"]}}} +{"ref":"#% chance to gain a Power Charge when you Cast a Curse Spell","better":1,"matchers":[{"string":"저주 주문 시전 시 #%의 확률로 권능 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_322835727"]}}} +{"ref":"#% chance to gain a Power Charge when you Stun","better":1,"matchers":[{"string":"기절시킬 시 #%의 확률로 권능 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3470535775"]}}} +{"ref":"#% chance to gain a Power Charge when you Throw a Trap","better":1,"matchers":[{"string":"덫 투척 시 #%의 확률로 권능 충전 획득"},{"string":"덫 투척 시 권능 충전 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1936544447"]}}} +{"ref":"#% chance to gain a Power Charge when you use a Vaal Skill","better":1,"matchers":[{"string":"바알 스킬 사용 시 #%의 확률로 권능 충전 획득"},{"string":"바알 스킬 사용 시 권능 충전 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2383388829"]}}} +{"ref":"#% chance to gain a Power, Frenzy or Endurance Charge on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 권능, 격분 또는 인내 충전 획득"},{"string":"처치 시 권능, 격분 또는 인내 충전 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_498214257"],"fractured":["fractured.stat_498214257"]}}} +{"ref":"#% chance to gain a Siphoning Charge when you use a Skill","better":1,"matchers":[{"string":"스킬 사용 시 #%의 확률로 착취 충전 획득"},{"string":"스킬 사용 시 착취 충전 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2922737717"]}}} +{"ref":"#% chance to gain a Spirit Charge on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 혼백 충전 획득"},{"string":"처치 시 혼백 충전 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_570644802"]}}} +{"ref":"#% chance to gain Adrenaline for 2 Seconds when Leech is\nremoved by Filling Unreserved Life","better":1,"matchers":[{"string":"점유되지 않은 생명력이 차서 흡수가 제거되면 #%의 확률로 2초 동안 아드레날린 획득"}],"trade":{"ids":{"explicit":["explicit.stat_414749123"]}}} +{"ref":"#% chance to gain Alchemist's Genius when you use a Flask","better":1,"matchers":[{"string":"플라스크 사용 시 #%의 확률로 연금술사의 천재성 획득"},{"string":"플라스크 사용 시 연금술사의 천재성 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2989883253"],"fractured":["fractured.stat_2989883253"]}}} +{"ref":"#% Chance to gain an additional Power Charge on Kill with Power Siphon","better":1,"matchers":[{"string":"권능 착취로 적 처치 시 #%의 확률로 추가 권능 충전 획득"}],"trade":{"ids":{"enchant":["enchant.stat_3609207587"]}}} +{"ref":"#% chance to gain an additional Vaal Soul on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 바알 영혼 1개 추가 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1962922582"],"implicit":["implicit.stat_1962922582"],"fractured":["fractured.stat_1962922582"]}}} +{"ref":"#% chance to gain an additional Vaal Soul per Enemy Shattered","better":1,"matchers":[{"string":"산산이 조각난 적 하나당 #%의 확률로 바알 영혼 1개 추가 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1633381214"]}}} +{"ref":"#% chance to gain an Endurance Charge on Critical Strike","better":1,"matchers":[{"string":"치명타 명중 시 #%의 확률로 인내 충전 획득"},{"string":"치명타 명중 시 인내 충전 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2542650946"],"fractured":["fractured.stat_2542650946"]}}} +{"ref":"#% chance to gain an Endurance Charge on Hitting an Enemy with no Armour","better":1,"matchers":[{"string":"방어도가 없는 적 명중 시 #%의 확률로 인내 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3488208924"]}}} +{"ref":"#% chance to gain an Endurance Charge on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 인내 충전 획득"},{"string":"처치 시 인내 충전 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1054322244","explicit.stat_2064503808"],"implicit":["implicit.stat_1054322244"],"fractured":["fractured.stat_1054322244"],"enchant":["enchant.stat_1054322244"],"scourge":["scourge.stat_1054322244"]}}} +{"ref":"#% chance to gain an Endurance Charge when you are Hit","better":1,"matchers":[{"string":"피격 시 #%의 확률로 인내 충전 획득"},{"string":"피격 시 인내 충전 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1514657588"]}}} +{"ref":"#% chance to gain an Endurance Charge when you Block","better":1,"matchers":[{"string":"막아낼 시 #%의 확률로 인내 충전 획득"},{"string":"막아낼 시 인내 충전 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_417188801"],"fractured":["fractured.stat_417188801"]}}} +{"ref":"#% chance to gain an Endurance Charge when you Hit a Bleeding Enemy","better":1,"matchers":[{"string":"출혈 중인 적 명중 시 #%의 확률로 인내 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1536266147"],"fractured":["fractured.stat_1536266147"]}}} +{"ref":"#% chance to gain an Endurance Charge when you Stun an Enemy","better":1,"matchers":[{"string":"적 기절 시 #%의 확률로 인내 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1582887649"],"implicit":["implicit.stat_1582887649"]}}} +{"ref":"#% chance to gain an Endurance Charge when you Taunt an Enemy","better":1,"matchers":[{"string":"적 도발 시 #%의 확률로 인내 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1657549833"]}}} +{"ref":"#% chance to gain an Endurance, Frenzy or Power Charge when any\nof your Traps are Triggered by an Enemy","better":1,"matchers":[{"string":"자신의 덫이 적에 의해 발동되면\n#%의 확률로 인내, 격분 또는 권능 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_710805027"]}}} +{"ref":"#% chance to Gain Arcane Surge on Hit with Spells","better":1,"matchers":[{"string":"주문 명중 시 #%의 확률로 비전 쇄도 획득"},{"string":"주문 명중 시 비전 쇄도 획득","value":100}],"trade":{"ids":{"implicit":["implicit.stat_4208096430"]}}} +{"ref":"#% chance to Gain Arcane Surge on Hit with Spells while at maximum Power Charges","better":1,"matchers":[{"string":"권능 충전 최대치 상태에서 주문 명중 시 #%의 확률로 비전 쇄도 획득"},{"string":"최대 권능 충전 상태에서 주문 명중 시 비전 쇄도 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_813119588"]}}} +{"ref":"#% chance to Gain Arcane Surge when you deal a Critical Strike","better":1,"matchers":[{"string":"치명타 명중 시 #%의 확률로 비전 쇄도 획득"},{"string":"치명타 명중 시 비전 쇄도 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_446027070"],"fractured":["fractured.stat_446027070"]}}} +{"ref":"#% chance to gain Arcane Surge when you Kill an Enemy","better":1,"matchers":[{"string":"적 처치 시 #%의 확률로 비전 쇄도 획득"},{"string":"적 처치 시 비전 쇄도 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_573223427"],"fractured":["fractured.stat_573223427"],"crafted":["crafted.stat_573223427"]}}} +{"ref":"#% chance to gain Chaotic Might for 10 seconds on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 10초 동안 혼돈의 완력 획득"},{"string":"처치 시 10초 동안 혼돈의 완력 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_562371749"],"enchant":["enchant.stat_562371749"]}}} +{"ref":"#% chance to gain Elusive on Critical Strike","better":1,"matchers":[{"string":"치명타 명중 시 #% 확률로 도피 획득"},{"string":"치명타 명중 시 도피 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2896192589"],"fractured":["fractured.stat_2896192589"]}}} +{"ref":"#% chance to gain Her Blessing for 3 seconds when you Ignite an Enemy","better":1,"matchers":[{"string":"적 점화 시 #%의 확률로 3초 동안 여신의 축복 획득"},{"string":"적 점화 시 3초 동안 여신의 축복 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4203400545"]}}} +{"ref":"#% chance to gain Onslaught for 10 seconds on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 10초 동안 맹공 획득"},{"string":"처치 시 10초 동안 맹공 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2453026567"]}}} +{"ref":"#% chance to gain Onslaught for 3 seconds when Hit","better":1,"matchers":[{"string":"피격 시 #%의 확률로 3초 동안 맹공 획득"},{"string":"피격 시 3초 동안 맹공 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3049760680"],"fractured":["fractured.stat_3049760680"]}}} +{"ref":"#% chance to Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges","better":1,"matchers":[{"string":"격분 충전 최대치 상태에서 명중 시 #%의 확률로 4초 동안 맹공 획득"},{"string":"최대 격분 충전 상태에서 명중 시 4초 동안 맹공 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2408544213"]}}} +{"ref":"#% chance to gain Onslaught for 4 seconds on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 4초 동안 맹공 획득"},{"string":"처치 시 4초 동안 맹공 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3023957681","explicit.stat_665823128"],"implicit":["implicit.stat_3023957681"],"fractured":["fractured.stat_3023957681","fractured.stat_665823128"],"scourge":["scourge.stat_3023957681"],"crafted":["crafted.stat_3023957681"]}}} +{"ref":"#% chance to gain Onslaught for 4 Seconds when Leech is\nremoved by Filling Unreserved Life","better":1,"matchers":[{"string":"점유되지 않은 생명력이 차서 흡수가 제거되면 #%의 확률로 4초 동안 맹공 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3106724907"]}}} +{"ref":"#% chance to gain Onslaught when you use a Flask","better":1,"matchers":[{"string":"플라스크 사용 시 #%의 확률로 맹공 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1324450398"]}}} +{"ref":"#% chance to gain Phasing for 4 seconds on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 4초 동안 차원 능력 획득"},{"string":"처치 시 4초 동안 차원 능력 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2918708827"],"fractured":["fractured.stat_2918708827"],"scourge":["scourge.stat_2918708827"]}}} +{"ref":"#% chance to gain Unholy Might for 3 seconds on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 3초 동안 불경한 힘 획득"},{"string":"처치 시 3초 동안 불경한 힘 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3562211447"],"implicit":["implicit.stat_3562211447"],"fractured":["fractured.stat_3562211447"],"scourge":["scourge.stat_3562211447"]}}} +{"ref":"#% chance to Gain Unholy Might for 4 seconds on Melee Kill","better":1,"matchers":[{"string":"근접 처치 시 #%의 확률로 4초 동안 불경한 힘 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3166317791"],"fractured":["fractured.stat_3166317791"]}}} +{"ref":"#% chance to grant a Frenzy Charge to nearby Allies on Hit","better":1,"matchers":[{"string":"명중 시 주변 동료들에게 #%의 확률로 격분 충전 제공"},{"string":"명중 시 주변 동료들에게 격분 충전 제공","value":100}],"trade":{"ids":{"explicit":["explicit.stat_991168463"]}}} +{"ref":"#% chance to grant a Power Charge to nearby Allies on Kill","better":1,"matchers":[{"string":"처치 시 주변 동료들에게 #%의 확률로 권능 충전 제공"},{"string":"처치 시 주변 동료들에게 권능 충전 제공","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2367680009"]}}} +{"ref":"#% chance to grant Chaotic Might to nearby Enemies on Kill","better":1,"matchers":[{"string":"처치 시 주변의 적에게 #%의 확률로 혼돈의 완력 적용"},{"string":"처치 시 주변의 적에게 혼돈의 완력 적용","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3607444087"]}}} +{"ref":"#% chance to grant Onslaught to nearby Enemies on Kill","better":1,"matchers":[{"string":"처치 시 주변의 적에게 #%의 확률로 맹공 적용"},{"string":"처치 시 주변의 적에게 맹공 적용","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1924591908"]}}} +{"ref":"#% chance to Hinder Enemies on Hit with Spells","better":1,"matchers":[{"string":"주문 명중 시 #%의 확률로 적 이동 방해"},{"string":"주문 명중 시 적 이동 방해","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3002506763"],"implicit":["implicit.stat_3002506763"],"fractured":["fractured.stat_3002506763"],"scourge":["scourge.stat_3002506763"]}}} +{"ref":"#% chance to Ignite","better":1,"matchers":[{"string":"#%의 확률로 점화 유발"},{"string":"항상 점화 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1335054179"],"implicit":["implicit.stat_1335054179"],"fractured":["fractured.stat_1335054179"],"enchant":["enchant.stat_1335054179"],"scourge":["scourge.stat_1335054179"],"crafted":["crafted.stat_1335054179"]}}} +{"ref":"#% chance to Ignite during any Flask Effect","better":1,"matchers":[{"string":"아무 플라스크나 효과를 받는 동안 #%의 확률로 점화 유발"}],"trade":{"ids":{"explicit":["explicit.stat_3888064854"]}}} +{"ref":"#% chance to Ignite when in Main Hand","better":1,"matchers":[{"string":"주 무기로 장착 시 #%의 확률로 점화 유발"},{"string":"주 무기로 장착 시 항상 점화 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2919089822"]}}} +{"ref":"#% chance to Ignite with Melee Weapons","better":1,"matchers":[{"string":"근접 무기 사용 시 #%의 확률로 점화 유발"}],"trade":{"ids":{"implicit":["implicit.stat_4206255461"]}}} +{"ref":"#% chance to Ignore Stuns while Casting","better":1,"matchers":[{"string":"시전하는 동안 #%의 확률로 기절 무시"},{"string":"시전하는 동안 기절 무시","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1916706958"],"implicit":["implicit.stat_1916706958"],"fractured":["fractured.stat_1916706958"]}}} +{"ref":"#% chance to Ignore Stuns while using Socketed Attack Skills","better":1,"matchers":[{"string":"장착된 공격 스킬을 사용하는 동안 #%의 확률로 기절 무시"},{"string":"장착된 공격 스킬을 사용하는 동안 기절 무시","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1439818705"]}}} +{"ref":"#% chance to Impale Enemies on Hit with Attacks","better":1,"matchers":[{"string":"공격 명중 시 #%의 확률로 적 꿰뚫음"},{"string":"공격 명중 시 적 꿰뚫음","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3739863694","explicit.stat_725880290"],"implicit":["implicit.stat_3739863694"],"fractured":["fractured.stat_3739863694","fractured.stat_725880290"],"scourge":["scourge.stat_3739863694"],"crafted":["crafted.stat_725880290"]}}} +{"ref":"#% chance to Impale Enemies on Hit with Attacks while using Pride","better":1,"matchers":[{"string":"자부심을 사용하는 동안 공격 명중 시 #%의 확률로 적을 꿰뚫음"},{"string":"자부심을 사용하는 동안 공격 명중 시 적을 꿰뚫음","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4173751044"]}}} +{"ref":"#% chance to Impale on Spell Hit","better":1,"matchers":[{"string":"주문 적중 시 #%의 확률로 적 꿰뚫음"}],"trade":{"ids":{"explicit":["explicit.stat_3094222195"]}}} +{"ref":"#% chance to inflict a Grasping Vine on Melee Weapon Hit","better":1,"matchers":[{"string":"근접 무기로 명중 시 #%의 확률로 탐욕스러운 덩굴 1개 유발"},{"string":"근접 무기로 명중 시 탐욕스러운 덩굴 1개 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_19313391"]}}} +{"ref":"#% chance to inflict Bleeding on Critical Strike with Attacks","better":1,"matchers":[{"string":"치명타 명중 시 #%의 확률로 적 출혈 유발"}],"trade":{"ids":{"explicit":["explicit.stat_2054257693"]}}} +{"ref":"#% chance to inflict Brittle","better":1,"matchers":[{"string":"#%의 확률로 허약 유발"},{"string":"항상 허약 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2238174408"]}}} +{"ref":"#% chance to inflict Brittle on Enemies when you Block their Damage","better":1,"matchers":[{"string":"적이 주는 피해를 막아낼 시 #%의 확률로 적에게 허약 유발"},{"string":"적이 주는 피해를 막아낼 시 적에게 허약 유발","value":100}],"trade":{"ids":{"implicit":["implicit.stat_1749278976"]}}} +{"ref":"#% chance to inflict Cold Exposure on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 냉기 노출 유발"},{"string":"명중 시 냉기 노출 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2630708439"],"fractured":["fractured.stat_2630708439"],"scourge":["scourge.stat_2630708439"]}}} +{"ref":"#% chance to inflict Corrosion on Hit with Attacks","better":1,"matchers":[{"string":"공격 명중 시 #%의 확률로 부식 유발"}],"trade":{"ids":{"explicit":["explicit.stat_2523122963"]}}} +{"ref":"#% chance to inflict Fire Exposure on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 화염 노출 유발"},{"string":"명중 시 화염 노출 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3602667353"],"fractured":["fractured.stat_3602667353"],"scourge":["scourge.stat_3602667353"]}}} +{"ref":"#% chance to inflict Lightning Exposure on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 번개 노출 유발"},{"string":"명중 시 번개 노출 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4265906483"],"fractured":["fractured.stat_4265906483"],"enchant":["enchant.stat_4265906483"],"scourge":["scourge.stat_4265906483"]}}} +{"ref":"#% chance to inflict Withered for 2 seconds on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 2초 동안 위축 유발"},{"string":"명중 시 2초 동안 위축 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1957711555"]}}} +{"ref":"#% chance to inflict Withered for 2 seconds on Hit with this Weapon","better":1,"matchers":[{"string":"이 무기로 적 적중 시 #%의 확률로 2초 동안 위축 유발"},{"string":"이 무기로 적 적중 시 2초 동안 위축 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1226121733"]}}} +{"ref":"#% chance to Intimidate Enemies for 4 seconds on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 4초 동안 적 위협"},{"string":"적중 시 #%의 확률로 4초 동안 적 위협"},{"string":"적중 시 4초 동안 적 위협","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2089652545","explicit.stat_78985352"],"implicit":["implicit.stat_2089652545","implicit.stat_78985352"],"fractured":["fractured.stat_2089652545","fractured.stat_78985352"],"scourge":["scourge.stat_78985352"]}}} +{"ref":"#% chance to Intimidate Enemies for 4 seconds on Hit with Attacks","better":1,"matchers":[{"string":"공격 명중 시 #%의 확률로 4초 동안 적 위협"},{"string":"공격 명중 시 4초 동안 적 위협","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3438201750"],"implicit":["implicit.stat_3438201750"],"fractured":["fractured.stat_3438201750"]}}} +{"ref":"#% chance to Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges","better":1,"matchers":[{"string":"인내 충전 최대치 상태에서 명중 시 #%의 확률로 4초 동안 적 위협"},{"string":"최대 인내 충전 상태에서 공격 명중 시 4초 동안 적 위협","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2877370216"]}}} +{"ref":"#% chance to Knock Enemies Back on hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 적을 밀어냄"},{"string":"명중 시 적을 밀어냄","value":100}],"trade":{"ids":{"explicit":["explicit.stat_977908611"],"implicit":["implicit.stat_977908611"],"fractured":["fractured.stat_977908611"],"scourge":["scourge.stat_977908611"]}}} +{"ref":"#% chance to lose a Frenzy Charge when you use a Travel Skill","better":1,"matchers":[{"string":"이동 전용 스킬 사용 시 #%의 확률로 격분 충전 상실"},{"string":"이동 전용 스킬 사용 시 격분 충전 상실","value":100}],"trade":{"ids":{"explicit":["explicit.stat_445906009"]}}} +{"ref":"#% chance to lose a Power Charge when you gain Elusive","better":1,"matchers":[{"string":"도피 획득 시 #%의 확률로 권능 충전 상실"},{"string":"도피 획득 시 권능 충전 상실","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1819086604"]}}} +{"ref":"#% chance to lose an Endurance Charge when you gain Fortification","better":1,"matchers":[{"string":"방어 상승 획득 시 #%의 확률로 인내 충전 상실"},{"string":"방어 상승 획득 시 인내 충전 상실","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1087146228"]}}} +{"ref":"#% chance to Maim Enemies on Critical Strike with Attacks","better":1,"matchers":[{"string":"치명타 명중 시 #%의 확률로 적 힘줄 절단"}],"trade":{"ids":{"explicit":["explicit.stat_996483959"]}}} +{"ref":"#% chance to Maim on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 힘줄 절단"},{"string":"명중 시 힘줄 절단","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2763429652"],"implicit":["implicit.stat_2763429652"],"fractured":["fractured.stat_2763429652"]}}} +{"ref":"#% chance to not Activate Lockdown in Grand Heists","better":1,"matchers":[{"string":"대강탈에서 #%의 확률로 폐쇄가 발동하지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_2438099615"],"fractured":["fractured.stat_2438099615"]}}} +{"ref":"#% chance to not generate Alert Level on opening a Chest using Agility","better":1,"matchers":[{"string":"민첩함으로 상자를 열었을 때 #%의 확률로 경보 레벨이 상승하지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_277930304"],"fractured":["fractured.stat_277930304"]}}} +{"ref":"#% chance to not generate Alert Level on opening a Chest using Brute Force","better":1,"matchers":[{"string":"완력으로 상자를 열었을 때 #%의 확률로 경보 레벨이 상승하지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_1195895224"],"fractured":["fractured.stat_1195895224"]}}} +{"ref":"#% chance to not generate Alert Level on opening a Chest using Counter-Thaumaturgy","better":1,"matchers":[{"string":"반-마석학으로 상자를 열었을 때 #%의 확률로 경보 레벨이 상승하지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_2232609651"],"fractured":["fractured.stat_2232609651"]}}} +{"ref":"#% chance to not generate Alert Level on opening a Chest using Deception","better":1,"matchers":[{"string":"기만으로 상자를 열었을 때 #%의 확률로 경보 레벨이 상승하지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_3146356577"],"fractured":["fractured.stat_3146356577"]}}} +{"ref":"#% chance to not generate Alert Level on opening a Chest using Demolition","better":1,"matchers":[{"string":"파괴 공작으로 상자를 열었을 때 #%의 확률로 경보 레벨이 상승하지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_581152495"],"fractured":["fractured.stat_581152495"]}}} +{"ref":"#% chance to not generate Alert Level on opening a Chest using Engineering","better":1,"matchers":[{"string":"공학으로 상자를 열었을 때 #%의 확률로 경보 레벨이 상승하지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_316122366"],"fractured":["fractured.stat_316122366"]}}} +{"ref":"#% chance to not generate Alert Level on opening a Chest using Lockpicking","better":1,"matchers":[{"string":"자물쇠 따기로 상자를 열었을 때 #%의 확률로 경보 레벨이 상승하지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_647064288"],"fractured":["fractured.stat_647064288"]}}} +{"ref":"#% chance to not generate Alert Level on opening a Chest using Perception","better":1,"matchers":[{"string":"통찰력으로 상자를 열었을 때 #%의 확률로 경보 레벨이 상승하지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_397829245"],"fractured":["fractured.stat_397829245"]}}} +{"ref":"#% chance to not generate Alert Level on opening a Chest using Trap Disarmament","better":1,"matchers":[{"string":"덫 해제로 상자를 열었을 때 #%의 확률로 경보 레벨이 상승하지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_3015749212"],"fractured":["fractured.stat_3015749212"]}}} +{"ref":"#% chance to Poison on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 중독 유발"},{"string":"명중 시 항상 중독 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3885634897","explicit.stat_795138349"],"implicit":["implicit.stat_3885634897","implicit.stat_795138349"],"fractured":["fractured.stat_3885634897","fractured.stat_795138349"],"enchant":["enchant.stat_3885634897"],"scourge":["scourge.stat_795138349"],"crafted":["crafted.stat_3885634897"]}}} +{"ref":"#% chance to Poison on Hit against Cursed Enemies","better":1,"matchers":[{"string":"저주받은 적 명중 시 #%의 확률로 중독 유발"},{"string":"저주받은 적 명중 시 항상 중독 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2208857094"]}}} +{"ref":"#% chance to Poison on Hit during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 명중 시 #%의 확률로 중독 유발"}],"trade":{"ids":{"explicit":["explicit.stat_2777278657"]}}} +{"ref":"#% chance to Poison on Hit with Attacks","better":1,"matchers":[{"string":"공격 명중 시 #%의 확률로 중독 유발"},{"string":"공격 명중 시 항상 중독 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3954735777"]}}} +{"ref":"#% chance to Poison per Power Charge","better":1,"matchers":[{"string":"권능 충전 하나당 #%의 확률로 중독 유발"}],"trade":{"ids":{"explicit":["explicit.stat_2992087211"]}}} +{"ref":"#% chance to Poison with Melee Weapons","better":1,"matchers":[{"string":"근접 무기 사용 시 #%의 확률로 중독 유발"}],"trade":{"ids":{"implicit":["implicit.stat_1168985596"]}}} +{"ref":"#% chance to receive additional Abyss items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"강탈에서 보상 상자를 열 때 #%의 확률로 심연 아이템 추가 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1361025326"]}}} +{"ref":"#% chance to receive additional Armour items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"강탈에서 보상 상자를 열 때 #%의 확률로 방어구 아이템 추가 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3835470471"]}}} +{"ref":"#% chance to receive additional Blight items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"강탈에서 보상 상자를 열 때 #%의 확률로 역병 아이템 추가 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2581419165"]}}} +{"ref":"#% chance to receive additional Breach items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"강탈에서 보상 상자를 열 때 #%의 확률로 균열 아이템 추가 획득"}],"trade":{"ids":{"explicit":["explicit.stat_4146386957"]}}} +{"ref":"#% chance to receive additional Delirium items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"강탈에서 보상 상자를 열 때 #%의 확률로 환영 아이템 추가 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3876876906"]}}} +{"ref":"#% chance to receive additional Delve items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"강탈에서 보상 상자를 열 때 #%의 확률로 탐광 아이템 추가 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1852069308"]}}} +{"ref":"#% chance to receive additional Divination Card items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"강탈에서 보상 상자를 열 때 #%의 확률로 점술 카드 아이템 추가 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3099138455"]}}} +{"ref":"#% chance to receive additional Essences when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"강탈에서 보상 상자를 열 때 #%의 확률로 에센스 아이템 추가 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2454528473"]}}} +{"ref":"#% chance to receive additional Gem items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"강탈에서 보상 상자를 열 때 #%의 확률로 젬 아이템 추가 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2610785454"]}}} +{"ref":"#% chance to receive additional Harbinger items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"강탈에서 보상 상자를 열 때 #%의 확률로 선구자 아이템 추가 획득"}],"trade":{"ids":{"explicit":["explicit.stat_73487979"]}}} +{"ref":"#% chance to receive additional Jewellery when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"강탈에서 보상 상자를 열 때 #%의 확률로 장신구 아이템 추가 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1323476506"]}}} +{"ref":"#% chance to receive additional Legion items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"강탈에서 보상 상자를 열 때 #%의 확률로 군단 아이템 추가 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1463604143"]}}} +{"ref":"#% chance to receive additional Talismans when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"강탈에서 보상 상자를 열 때 #%의 확률로 부적 아이템 추가 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2917742181"]}}} +{"ref":"#% chance to receive additional Ultimatum items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"강탈에서 보상 상자를 열 때 #%의 확률로 결전 아이템 추가 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1485150248"]}}} +{"ref":"#% chance to receive additional Unique items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"강탈에서 보상 상자를 열 때 #%의 확률로 고유 아이템 추가 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3145607602"]}}} +{"ref":"#% chance to receive additional Weapons when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"강탈에서 보상 상자를 열 때 #%의 확률로 무기 추가 획득"}],"trade":{"ids":{"explicit":["explicit.stat_953018841"]}}} +{"ref":"#% chance to Recover 10% of Mana when you use a Skill","better":1,"matchers":[{"string":"스킬 사용 시 #%의 확률로 마나의 10% 회복"}],"trade":{"ids":{"explicit":["explicit.stat_308309328"],"fractured":["fractured.stat_308309328"]}}} +{"ref":"#% chance to Recover 10% of Mana when you use a Skill while affected by Clarity","better":1,"matchers":[{"string":"명상의 영향을 받는 동안 스킬 사용 시 #% 확률로 마나의 10% 회복"}],"trade":{"ids":{"explicit":["explicit.stat_1699077932"]}}} +{"ref":"#% chance to refresh Ignite Duration on Melee Weapon Hit","better":1,"matchers":[{"string":"근접 무기로 명중 시 #%의 확률로 점화 지속시간 초기화"}],"trade":{"ids":{"explicit":["explicit.stat_93054948"]}}} +{"ref":"#% chance to remove 1 Mana Burn on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 마나 연소 1개 제거"}],"trade":{"ids":{"explicit":["explicit.stat_545355339"]}}} +{"ref":"#% chance to Sap Enemies","better":1,"matchers":[{"string":"#%의 확률로 적 활력 감소"},{"string":"항상 적 활력 감소","value":100}],"trade":{"ids":{"explicit":["explicit.stat_532324017"]}}} +{"ref":"#% chance to Sap Enemies in Chilling Areas","better":1,"matchers":[{"string":"#%의 확률로 냉각 지역에 있는 적 활력 감소"},{"string":"항상 냉각 지역에 있는 적 활력 감소","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3057853352"]}}} +{"ref":"#% chance to Sap Enemies when you Block their Damage","better":1,"matchers":[{"string":"적이 주는 피해를 막아낼 시 #%의 확률로 적 활력 감소"},{"string":"적이 주는 피해를 막아낼 시 적 활력 감소","value":100}],"trade":{"ids":{"implicit":["implicit.stat_2113677718"]}}} +{"ref":"#% chance to Scorch Enemies","better":1,"matchers":[{"string":"#%의 확률로 적 그을림"},{"string":"항상 적을 그을림","value":100}],"trade":{"ids":{"explicit":["explicit.stat_606940191"]}}} +{"ref":"#% chance to Scorch Enemies when you Block their Damage","better":1,"matchers":[{"string":"적이 주는 피해를 막아낼 시 #%의 확률로 적 그을림"},{"string":"적이 주는 피해를 막아낼 시 적 그을림","value":100}],"trade":{"ids":{"implicit":["implicit.stat_779391868"]}}} +{"ref":"#% chance to Shock","better":1,"matchers":[{"string":"#%의 확률로 감전 유발"},{"string":"항상 감전 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1538773178"],"implicit":["implicit.stat_1538773178"],"fractured":["fractured.stat_1538773178"],"enchant":["enchant.stat_1538773178"],"scourge":["scourge.stat_1538773178"],"crafted":["crafted.stat_1538773178"]}}} +{"ref":"#% chance to Shock Attackers for 4 seconds on Block","better":1,"matchers":[{"string":"막아낼 시 #%의 확률로 4초 동안 공격자에게 감전 유발"},{"string":"막아낼 시 4초 동안 공격자에게 감전 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_575111651"],"fractured":["fractured.stat_575111651"],"scourge":["scourge.stat_575111651"]}}} +{"ref":"#% chance to Shock Chilled Enemies","better":1,"matchers":[{"string":"#%의 확률로 냉각된 적 감전 유발"}],"trade":{"ids":{"explicit":["explicit.stat_4069101408"]}}} +{"ref":"#% chance to Shock during any Flask Effect","better":1,"matchers":[{"string":"아무 플라스크나 효과를 받는 동안 #%의 확률로 감전 유발"}],"trade":{"ids":{"explicit":["explicit.stat_796406325"]}}} +{"ref":"#% chance to Shock with Melee Weapons","better":1,"matchers":[{"string":"근접 무기 사용 시 #%의 확률로 감전 유발"}],"trade":{"ids":{"implicit":["implicit.stat_2313961828"]}}} +{"ref":"#% chance to Steal Power, Frenzy, and Endurance Charges on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 권능, 격분, 인내 충전 강탈"},{"string":"명중 시 권능, 격분, 인내 충전 강탈","value":100}],"trade":{"ids":{"explicit":["explicit.stat_875143443"]}}} +{"ref":"#% chance to Summon an additional Skeleton with Summon Skeletons","better":1,"matchers":[{"string":"해골 소환으로 #%의 확률로 해골 1마리 추가 소환"}],"trade":{"ids":{"enchant":["enchant.stat_1040958896"]}}} +{"ref":"#% chance to take 50% less Area Damage from Hits","better":1,"matchers":[{"string":"#%의 확률로 피격 시 범위 피해 50% 감폭"}],"trade":{"ids":{"explicit":["explicit.stat_4253777805"]}}} +{"ref":"#% chance to Taunt Enemies on Hit with Attacks","better":1,"matchers":[{"string":"공격 명중 시 #%의 확률로 적 도발"},{"string":"공격 명중 시 적 도발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_280213220"],"implicit":["implicit.stat_280213220"],"fractured":["fractured.stat_280213220"],"scourge":["scourge.stat_280213220"]}}} +{"ref":"#% chance to throw up to 4 additional Traps","better":1,"matchers":[{"string":"#%의 확률로 덫 최대 4개 추가 투척"}],"trade":{"ids":{"explicit":["explicit.stat_3132227798"]}}} +{"ref":"#% chance to Trigger a Socketed Bow Skill when you Attack with a Bow, with a 1 second Cooldown","better":1,"matchers":[{"string":"활 공격 시 #%의 확률로 장착된 활 스킬 발동, 재사용 대기시간 1초"},{"string":"활 공격 시 장착된 활 스킬 발동, 재사용 대기시간 1초","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3171958921"]}}} +{"ref":"#% chance to Trigger a Socketed Bow Skill when you Cast a Spell while wielding a Bow, with a 1 second Cooldown","better":1,"matchers":[{"string":"활 장착 상태로 주문 시전 시 #%의 확률로 장착된 활 스킬 발동, 재사용 대기시간 1초"},{"string":"활 장착 상태로 주문 시전 시 장착된 활 스킬 발동, 재사용 대기시간 1초","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1378815167"]}}} +{"ref":"#% chance to Trigger a Socketed Spell on Using a Skill, with a 8 second Cooldown\nSpells Triggered this way have 150% more Cost","better":1,"matchers":[{"string":"스킬 사용 시 #%의 확률로 장착된 주문 발동, 재사용 대기시간 8초\n이렇게 발동된 주문의 비용 150% 증폭"},{"string":"스킬 사용 시 장착된 주문 발동, 재사용 대기시간 8초\n이렇게 발동된 주문의 비용 150% 증폭","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3079007202"],"fractured":["fractured.stat_3079007202"],"crafted":["crafted.stat_3079007202"]}}} +{"ref":"#% chance to Trigger a Socketed Spell when you Attack with a Bow, with a 0.3 second Cooldown","better":1,"matchers":[{"string":"활 공격 시 #%의 확률로 장착된 주문 발동, 재사용 대기시간 0.3초"},{"string":"활 공격 시 장착된 주문 발동, 재사용 대기시간 0.3초","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3302736916"]}}} +{"ref":"#% chance to Trigger a Socketed Spell when you Attack with this Weapon, with a 0.25 second Cooldown","better":1,"matchers":[{"string":"이 무기로 공격 시 #%의 확률로 장착된 주문 발동, 재사용 대기시간 0.25초"},{"string":"이 무기로 공격 시 장착된 주문 발동, 재사용 대기시간 0.25초","value":100}],"trade":{"ids":{"explicit":["explicit.stat_209056835"]}}} +{"ref":"#% chance to Trigger a Socketed Warcry Skill when you lose Endurance Charges, with a 0.25 second Cooldown","better":1,"matchers":[{"string":"인내 충전 상실 시 #%의 확률로 장착된 함성 스킬 발동, 재사용 대기시간 0.25초"},{"string":"인내 충전 상실 시 장착된 함성 스킬 발동, 재사용 대기시간 0.25초","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1112135314"]}}} +{"ref":"#% chance to Trigger Commandment of Blades on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 칼날의 율령 발동"},{"string":"명중 시 칼날의 율령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_147952811"]}}} +{"ref":"#% chance to Trigger Commandment of Flames on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 화염의 율령 발동"},{"string":"명중 시 화염의 율령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3703722637"]}}} +{"ref":"#% chance to Trigger Commandment of Force on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 힘의 율령 발동"},{"string":"명중 시 힘의 율령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2666843091"]}}} +{"ref":"#% chance to Trigger Commandment of Frost on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 서리의 율령 발동"},{"string":"처치 시 서리의 율령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1877374369"]}}} +{"ref":"#% chance to Trigger Commandment of Fury on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 광분의 율령 발동"},{"string":"명중 시 광분의 율령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1554500307"]}}} +{"ref":"#% chance to Trigger Commandment of Inferno on Critical Strike","better":1,"matchers":[{"string":"치명타 명중 시 #%의 확률로 지옥불의 율령 발동"},{"string":"치명타 명중 시 지옥불의 율령 발동","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3251948367"]}}} +{"ref":"#% chance to Trigger Commandment of Inferno on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 지옥불의 율령 발동"},{"string":"처치 시 지옥불의 율령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2020183428"]}}} +{"ref":"#% chance to Trigger Commandment of Ire when Hit","better":1,"matchers":[{"string":"피격 시 #%의 확률로 노여움의 율령 발동"},{"string":"피격 시 노여움의 율령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_620045439"]}}} +{"ref":"#% chance to Trigger Commandment of Light when you take a Critical Strike","better":1,"matchers":[{"string":"치명타 피격 시 #%의 확률로 빛의 율령 발동"},{"string":"치명타 피격 시 빛의 율령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3109915337"]}}} +{"ref":"#% chance to Trigger Commandment of Reflection when Hit","better":1,"matchers":[{"string":"피격 시 #%의 확률로 투영의 율령 발동"},{"string":"피격 시 투영의 율령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3036365740"]}}} +{"ref":"#% chance to Trigger Commandment of Spite when Hit","better":1,"matchers":[{"string":"피격 시 #%의 확률로 원한의 율령 발동"},{"string":"피격 시 원한의 율령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1259277978"]}}} +{"ref":"#% chance to Trigger Commandment of the Grave when your Skills or Minions Kill","better":1,"matchers":[{"string":"스킬 또는 소환수로 처치 시 #%의 확률로 무덤의 율령 발동"},{"string":"스킬 또는 소환수로 처치 시 무덤의 율령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1374371477"]}}} +{"ref":"#% chance to Trigger Commandment of the Tempest on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 폭풍의 율령 발동"},{"string":"명중 시 폭풍의 율령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_4203647216"]}}} +{"ref":"#% chance to Trigger Commandment of Thunder on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 천둥의 율령 발동"},{"string":"처치 시 천둥의 율령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1988467615"]}}} +{"ref":"#% chance to Trigger Commandment of War on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 전쟁의 율령 발동"},{"string":"처치 시 전쟁의 율령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_494477497"]}}} +{"ref":"#% chance to Trigger Commandment of Winter when Hit","better":1,"matchers":[{"string":"피격 시 #%의 확률로 겨울의 율령 발동"},{"string":"피격 시 겨울의 율령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3222886961"]}}} +{"ref":"#% chance to Trigger Decree of Blades on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 칼날의 법령 발동"},{"string":"명중 시 칼날의 법령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_165958462"]}}} +{"ref":"#% chance to Trigger Decree of Flames on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 화염의 법령 발동"},{"string":"명중 시 화염의 법령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_990408262"]}}} +{"ref":"#% chance to Trigger Decree of Force on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 힘의 법령 발동"},{"string":"명중 시 힘의 법령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2925650365"]}}} +{"ref":"#% chance to Trigger Decree of Frost on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 서리의 법령 발동"},{"string":"처치 시 서리의 법령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1268512925"]}}} +{"ref":"#% chance to Trigger Decree of Fury on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 광분의 법령 발동"},{"string":"명중 시 광분의 법령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2252338738"]}}} +{"ref":"#% chance to Trigger Decree of Inferno on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 지옥불의 법령 발동"},{"string":"처치 시 지옥불의 법령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1366391108"]}}} +{"ref":"#% chance to Trigger Decree of Ire when Hit","better":1,"matchers":[{"string":"피격 시 #%의 확률로 노여움의 법령 발동"},{"string":"피격 시 노여움의 법령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1818525360"]}}} +{"ref":"#% chance to Trigger Decree of Light when you take a Critical Strike","better":1,"matchers":[{"string":"치명타 피격 시 #%의 확률로 빛의 법령 발동"},{"string":"치명타 피격 시 빛의 법령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3641868987"]}}} +{"ref":"#% chance to Trigger Decree of Reflection when Hit","better":1,"matchers":[{"string":"피격 시 #%의 확률로 투영의 법령 발동"},{"string":"피격 시 투영의 법령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1792647120"]}}} +{"ref":"#% chance to Trigger Decree of Spite when Hit","better":1,"matchers":[{"string":"피격 시 #%의 확률로 원한의 법령 발동"},{"string":"피격 시 원한의 법령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_889695873"]}}} +{"ref":"#% chance to Trigger Decree of the Grave when your Skills or Minions Kill","better":1,"matchers":[{"string":"스킬 또는 소환수로 처치 시 #%의 확률로 무덤의 법령 발동"},{"string":"스킬 또는 소환수로 처치 시 무덤의 법령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2187415468"]}}} +{"ref":"#% chance to Trigger Decree of the Tempest on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 폭풍의 법령 발동"},{"string":"명중 시 폭풍의 법령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1671985305"]}}} +{"ref":"#% chance to Trigger Decree of Thunder on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 천둥의 법령 발동"},{"string":"처치 시 천둥의 법령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_4152292551"]}}} +{"ref":"#% chance to Trigger Decree of War on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 전쟁의 법령 발동"},{"string":"처치 시 전쟁의 법령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1106926438"]}}} +{"ref":"#% chance to Trigger Decree of Winter when Hit","better":1,"matchers":[{"string":"피격 시 #%의 확률로 겨울의 법령 발동"},{"string":"피격 시 겨울의 법령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2515273888"]}}} +{"ref":"#% chance to Trigger Edict of Blades on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 칼날의 칙령 발동"},{"string":"명중 시 칼날의 칙령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2160886943"]}}} +{"ref":"#% chance to Trigger Edict of Flames on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 화염의 칙령 발동"},{"string":"명중 시 화염의 칙령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_786149615"]}}} +{"ref":"#% chance to Trigger Edict of Force on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 힘의 칙령 발동"},{"string":"명중 시 힘의 칙령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2760193888"]}}} +{"ref":"#% chance to Trigger Edict of Frost on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 서리의 칙령 발동"},{"string":"처치 시 서리의 칙령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_90942364"]}}} +{"ref":"#% chance to Trigger Edict of Fury on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 광분의 칙령 발동"},{"string":"명중 시 광분의 칙령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1153637043"]}}} +{"ref":"#% chance to Trigger Edict of Inferno on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 지옥불의 칙령 발동"},{"string":"처치 시 지옥불의 칙령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2246143608"]}}} +{"ref":"#% chance to Trigger Edict of Ire when Hit","better":1,"matchers":[{"string":"피격 시 #%의 확률로 노여움의 칙령 발동"},{"string":"피격 시 노여움의 칙령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3285719520"]}}} +{"ref":"#% chance to Trigger Edict of Light when you take a Critical Strike","better":1,"matchers":[{"string":"치명타 피격 시 #%의 확률로 빛의 칙령 발동"},{"string":"치명타 피격 시 빛의 칙령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_271342637"]}}} +{"ref":"#% chance to Trigger Edict of Reflection when Hit","better":1,"matchers":[{"string":"피격 시 #%의 확률로 투영의 칙령 발동"},{"string":"피격 시 투영의 칙령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_4228580629"]}}} +{"ref":"#% chance to Trigger Edict of Spite when Hit","better":1,"matchers":[{"string":"피격 시 #%의 확률로 원한의 칙령 발동"},{"string":"피격 시 원한의 칙령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_257027296"]}}} +{"ref":"#% chance to Trigger Edict of the Grave when your Skills or Minions Kill","better":1,"matchers":[{"string":"스킬 또는 소환수로 처치 시 #%의 확률로 무덤의 칙령 발동"},{"string":"스킬 또는 소환수로 처치 시 무덤의 칙령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_308154324"]}}} +{"ref":"#% chance to Trigger Edict of the Tempest on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 폭풍의 칙령 발동"},{"string":"명중 시 폭풍의 칙령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1711789839"]}}} +{"ref":"#% chance to Trigger Edict of Thunder on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 천둥의 칙령 발동"},{"string":"처치 시 천둥의 칙령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_603658709"]}}} +{"ref":"#% chance to Trigger Edict of War on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 전쟁의 칙령 발동"},{"string":"처치 시 전쟁의 칙령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2033463878"]}}} +{"ref":"#% chance to Trigger Edict of Winter when Hit","better":1,"matchers":[{"string":"피격 시 #%의 확률로 겨울의 칙령 발동"},{"string":"피격 시 겨울의 칙령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_147678606"]}}} +{"ref":"#% chance to Trigger Level 1 Blood Rage when you Kill an Enemy","better":1,"matchers":[{"string":"적 처치 시 #%의 확률로 1레벨 피의 격노 발동"},{"string":"적 처치 시 1레벨 피의 격노 발동","value":100}],"trade":{"ids":{"explicit":["explicit.stat_205619502"],"fractured":["fractured.stat_205619502"],"crafted":["crafted.stat_205619502"]}}} +{"ref":"#% chance to Trigger Level 1 Create Lesser Shrine when you Kill an Enemy","better":1,"matchers":[{"string":"적 처치 시 #%의 확률로 1레벨 하위 성소 창조 발동"},{"string":"적 처치 시 1레벨 하위 성소 창조 발동","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1010340836"]}}} +{"ref":"#% chance to Trigger Level 1 Raise Spiders on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 1레벨 거미 소환 발동"}],"trade":{"ids":{"explicit":["explicit.stat_3844016207"]}}} +{"ref":"#% chance to Trigger Level 10 Summon Raging Spirit on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 8레벨 격노의 유령 소환 발동"},{"string":"처치 시 8레벨 격노의 유령 소환 발동","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3751996449"],"enchant":["enchant.stat_3751996449"]}}} +{"ref":"#% chance to Trigger Level 16 Molten Burst on Melee Hit","better":1,"matchers":[{"string":"근접 명중 시 #%의 확률로 16레벨 마그마 폭발 발동"}],"trade":{"ids":{"explicit":["explicit.stat_4125471110"]}}} +{"ref":"#% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy","better":1,"matchers":[{"string":"기동된 무기가 적 처치 시 #%의 확률로 18레벨 기동된 수호자의 무기 발동"},{"string":"기동된 무기가 적 처치 시 18레벨 기동된 수호자의 무기 발동","value":100}],"trade":{"ids":{"explicit":["explicit.stat_919960234"]}}} +{"ref":"#% chance to Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy","better":1,"matchers":[{"string":"기동된 수호자가 적 처치 시 #%의 확률로 20레벨 기동된 수호자의 무기 발동"},{"string":"기동된 수호자가 적 처치 시 20레벨 기동된 수호자의 무기 발동","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3682009780"]}}} +{"ref":"#% chance to Trigger Level 20 Animate Weapon on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 20레벨 무기 기동 발동"}],"trade":{"ids":{"explicit":["explicit.stat_1973890509"]}}} +{"ref":"#% chance to Trigger Level 20 Arcane Wake after Spending a total of 200 Mana","better":1,"matchers":[{"string":"총 200마나 소모 시 #%의 확률로 20레벨 비전의 각성 발동"},{"string":"총 200마나 소모 시 20레벨 비전의 각성 발동","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3344568504"]}}} +{"ref":"#% chance to Trigger Level 20 Glimpse of Eternity when Hit","better":1,"matchers":[{"string":"피격 시 #%의 확률로 20레벨 영원의 눈길 발동"},{"string":"피격 시 20레벨 영원의 눈길 발동","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3141831683"]}}} +{"ref":"#% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill","better":1,"matchers":[{"string":"장착된 스킬 사용 시 #%의 확률로 20레벨 그림자 형상 발동"}],"trade":{"ids":{"explicit":["explicit.stat_3308936917"]}}} +{"ref":"#% chance to Trigger Level 20 Summon Volatile Anomaly on Kill","better":1,"matchers":[{"string":"처치 시#%의 확률로 20레벨 폭발성 이형 소환 발동"}],"trade":{"ids":{"explicit":["explicit.stat_2143990571"]}}} +{"ref":"#% chance to Trigger Level 20 Tentacle Whip on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 20레벨 무기 촉수 채찍 발동"}],"trade":{"ids":{"explicit":["explicit.stat_1350938937"]}}} +{"ref":"#% chance to Trigger Level 25 Summon Spectral Wolf on Critical Strike with this Weapon","better":1,"matchers":[{"string":"이 무기로 치명타 명중 시 #%의 확률로 25레벨 영체 늑대 소환 발동"},{"string":"이 무기로 치명타 명중 시 25레벨 영체 늑대 소환 발동","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4221489692"]}}} +{"ref":"#% chance to Trigger Socketed Curse Spell when you Cast a Curse Spell, with a 0.25 second Cooldown","better":1,"matchers":[{"string":"저주 주문 시전 시 #%의 확률로 장착된 저주 주문 발동, 재사용 대기시간 0.25초"},{"string":"저주 주문 시전 시 장착된 저주 주문 발동, 재사용 대기시간 0.25초","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3657377047"]}}} +{"ref":"#% chance to Trigger Socketed Spells when you Focus, with a 0.25 second Cooldown","better":1,"matchers":[{"string":"집중 시 #%의 확률로 장착된 주문 발동, 재사용 대기시간 0.25초"},{"string":"집중 시 장착된 주문 발동, 재사용 대기시간 0.25초","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2062792091"],"fractured":["fractured.stat_2062792091"],"crafted":["crafted.stat_2062792091"]}}} +{"ref":"#% chance to Trigger Socketed Spells when you Spend at least # Mana on an\nUpfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown","better":1,"matchers":[{"string":"스킬 사용 또는 발동을 위해 초기 비용으로 마나 # 이상 소모 시\n#%의 확률로 장착된 주문 발동, 재사용 대기시간 0.1초"},{"string":"스킬 사용 또는 발동을 위해 초기 비용으로 마나 # 이상 소모 시\n장착된 주문 발동, 재사용 대기시간 0.1초"}],"trade":{"ids":{"explicit":["explicit.stat_723388324"]}}} +{"ref":"#% chance to Trigger Summon Spirit of Ahuana on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 아후아나의 혼백 소환 발동"}],"trade":{"ids":{"explicit":["explicit.stat_31336590"]}}} +{"ref":"#% chance to Trigger Summon Spirit of Akoya on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 아코야의 혼백 소환 발동"}],"trade":{"ids":{"explicit":["explicit.stat_3888707953"]}}} +{"ref":"#% chance to Trigger Summon Spirit of Ikiaho on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 이키아호의 혼백 소환 발동"}],"trade":{"ids":{"explicit":["explicit.stat_1163205473"]}}} +{"ref":"#% chance to Trigger Summon Spirit of Kahuturoa on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 카후투로아의 혼백 소환 발동"}],"trade":{"ids":{"explicit":["explicit.stat_264841388"]}}} +{"ref":"#% chance to Trigger Summon Spirit of Kaom on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 카옴의 혼백 소환 발동"}],"trade":{"ids":{"explicit":["explicit.stat_817287945"]}}} +{"ref":"#% chance to Trigger Summon Spirit of Kiloava on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 킬로아바의 혼백 소환 발동"}],"trade":{"ids":{"explicit":["explicit.stat_999837849"]}}} +{"ref":"#% chance to Trigger Summon Spirit of Maata on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 마아타의 혼백 소환 발동"}],"trade":{"ids":{"explicit":["explicit.stat_3572665414"]}}} +{"ref":"#% chance to Trigger Summon Spirit of Rakiata on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 라키아타의 혼백 소환 발동"}],"trade":{"ids":{"explicit":["explicit.stat_1630969195"]}}} +{"ref":"#% chance to Trigger Summon Spirit of Tawhanuku on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 타하누쿠의 혼백 소환 발동"}],"trade":{"ids":{"explicit":["explicit.stat_4217417523"]}}} +{"ref":"#% chance to Trigger Summon Spirit of Utula on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 우툴라의 혼백 소환 발동"}],"trade":{"ids":{"explicit":["explicit.stat_272515409"]}}} +{"ref":"#% chance to Trigger Word of Blades on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 칼날의 명령 발동"},{"string":"명중 시 칼날의 명령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_756653426"]}}} +{"ref":"#% chance to Trigger Word of Flames on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 화염의 명령 발동"},{"string":"명중 시 화염의 명령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_891161612"]}}} +{"ref":"#% chance to Trigger Word of Force on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 힘의 명령 발동"},{"string":"명중 시 힘의 명령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1162506883"]}}} +{"ref":"#% chance to Trigger Word of Frost on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 서리의 명령 발동"},{"string":"처치 시 서리의 명령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3302747233"]}}} +{"ref":"#% chance to Trigger Word of Fury on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 광분의 명령 발동"},{"string":"명중 시 광분의 명령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3012437250"]}}} +{"ref":"#% chance to Trigger Word of Inferno on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 지옥불의 명령 발동"},{"string":"처치 시 지옥불의 명령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3901337328"]}}} +{"ref":"#% chance to Trigger Word of Ire when Hit","better":1,"matchers":[{"string":"피격 시 #%의 확률로 노여움의 명령 발동"},{"string":"피격 시 노여움의 명령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2472584898"]}}} +{"ref":"#% chance to Trigger Word of Light when you take a Critical Strike","better":1,"matchers":[{"string":"치명타 피격 시 #%의 확률로 빛의 명령 발동"},{"string":"치명타 피격 시 빛의 명령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3111060801"]}}} +{"ref":"#% chance to Trigger Word of Reflection when Hit","better":1,"matchers":[{"string":"피격 시 #%의 확률로 투영의 명령 발동"},{"string":"피격 시 투영의 명령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2634094270"]}}} +{"ref":"#% chance to Trigger Word of Spite when Hit","better":1,"matchers":[{"string":"피격 시 #%의 확률로 원한의 명령 발동"},{"string":"피격 시 원한의 명령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3992962185"]}}} +{"ref":"#% chance to Trigger Word of the Grave when your Skills or Minions Kill","better":1,"matchers":[{"string":"스킬 또는 소환수로 처치 시 #%의 확률로 무덤의 명령 발동"},{"string":"스킬 또는 소환수로 처치 시 무덤의 명령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2527140156"]}}} +{"ref":"#% chance to Trigger Word of the Tempest on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 폭풍의 명령 발동"},{"string":"명중 시 폭풍의 명령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3610104224"]}}} +{"ref":"#% chance to Trigger Word of Thunder on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 천둥의 명령 발동"},{"string":"처치 시 천둥의 명령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1350605126"]}}} +{"ref":"#% chance to Trigger Word of War on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 전쟁의 명령 발동"},{"string":"처치 시 전쟁의 명령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1906144841"]}}} +{"ref":"#% chance to Trigger Word of Winter when Hit","better":1,"matchers":[{"string":"피격 시 #%의 확률로 겨울의 명령 발동"},{"string":"피격 시 겨울의 명령 발동","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1354248411"]}}} +{"ref":"#% chance to Unnerve Enemies for 4 seconds on Hit","better":1,"matchers":[{"string":"명중 시 #%의 확률로 4초 동안 적 낙담 유발"},{"string":"명중 시 4초 동안 적 낙담 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_763611529"],"implicit":["implicit.stat_763611529"],"fractured":["fractured.stat_763611529"],"scourge":["scourge.stat_763611529"]}}} +{"ref":"#% chance to Unnerve Enemies for 4 seconds on Hit with Spells","better":1,"matchers":[{"string":"주문 명중 시 #%의 확률로 4초 동안 적에게 낙담 유발"},{"string":"주문 명중 시 4초 동안 적에게 낙담 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_220991810"],"fractured":["fractured.stat_220991810"]}}} +{"ref":"#% chance when you Kill a Scorched Enemy to Burn Each surrounding\nEnemy for 4 seconds, dealing 8% of the Killed Enemy's Life as Fire Damage per second","better":1,"matchers":[{"string":"그을린 적 처치 시 #%의 확률로 주변의 각 적에게 4초 동안 화상을 유발하여\n1초마다 처치된 적의 생명력의 8%를 화염 피해로 줌"}],"trade":{"ids":{"explicit":["explicit.stat_3717165313"]}}} +{"ref":"#% chance when you pay a Skill's Cost to gain that much Mana","better":1,"matchers":[{"string":"스킬이 비용 소모 시 #% 확률로 동일한 양의 마나 획득"}],"trade":{"ids":{"implicit":["implicit.stat_1915414884"]}}} +{"ref":"#% faster Restoration of Ward","better":1,"matchers":[{"string":"수호 회복 속도 #% 가속"},{"string":"수호 회복 속도 #% 감속","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1130670241"],"fractured":["fractured.stat_1130670241"]}}} +{"ref":"#% faster start of Energy Shield Recharge","better":1,"matchers":[{"string":"에너지 보호막 재충전 시작 속도 #% 가속"},{"string":"에너지 보호막 재충전 시작 속도 #% 감속","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1782086450"],"implicit":["implicit.stat_1782086450"],"fractured":["fractured.stat_1782086450"],"crafted":["crafted.stat_1782086450"]}}} +{"ref":"#% faster start of Energy Shield Recharge while affected by Discipline","better":1,"matchers":[{"string":"단련의 영향을 받는 동안 에너지 보호막 재충전 시작 속도 #% 가속"},{"string":"단련의 영향을 받는 동안 에너지 보호막 재충전 시작 속도 #% 감속","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1016185292"]}}} +{"ref":"#% Global chance to Blind Enemies on hit","better":1,"matchers":[{"string":"명중 시 #%의 일반 확률로 적 실명 유발"}],"trade":{"ids":{"explicit":["explicit.stat_2221570601"],"implicit":["implicit.stat_2221570601"],"fractured":["fractured.stat_2221570601"],"scourge":["scourge.stat_2221570601"]}}} +{"ref":"#% increased Absolution Cast Speed","better":1,"matchers":[{"string":"면죄 시전 속도 #% 증가"},{"string":"면죄 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2558170600"]}}} +{"ref":"#% increased Accuracy Rating if you've dealt a Critical Strike in the past 8 seconds","better":1,"matchers":[{"string":"지난 8초 이내에 치명타 명중 시 정확도 #% 증가"},{"string":"지난 8초 이내에 치명타 명중 시 정확도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1381557885"]}}} +{"ref":"#% increased Accuracy Rating per Frenzy Charge","better":1,"matchers":[{"string":"격분 충전 하나당 정확도 #% 증가"},{"string":"격분 충전 하나당 정확도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3700381193"],"fractured":["fractured.stat_3700381193"]}}} +{"ref":"#% increased Accuracy Rating when on Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태일 때 정확도 #% 증가"},{"string":"낮은 생명력 상태일 때 정확도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_347697569"]}}} +{"ref":"#% increased Accuracy Rating while you have Onslaught","better":1,"matchers":[{"string":"맹공 상태일 때 정확도 #% 증가"},{"string":"맹공 상태일 때 정확도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2593021351"]}}} +{"ref":"#% increased Accuracy Rating with Axes","better":1,"matchers":[{"string":"도끼 사용 시 정확도 #% 증가"},{"string":"도끼 사용 시 정확도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2538120572"]}}} +{"ref":"#% increased Accuracy Rating with Bows","better":1,"matchers":[{"string":"활 사용 시 정확도 #% 증가"},{"string":"활 사용 시 정확도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_169946467"]}}} +{"ref":"#% increased Accuracy Rating with Claws","better":1,"matchers":[{"string":"클로 사용 시 정확도 #% 증가"},{"string":"클로 사용 시 정확도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1297965523"]}}} +{"ref":"#% increased Accuracy Rating with Daggers","better":1,"matchers":[{"string":"단검 사용 시 정확도 #% 증가"},{"string":"단검 사용 시 정확도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2054715690"]}}} +{"ref":"#% increased Accuracy Rating with Maces or Sceptres","better":1,"matchers":[{"string":"철퇴나 셉터 사용 시 정확도 #% 증가"},{"string":"철퇴나 셉터 사용 시 정확도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3208450870"]}}} +{"ref":"#% increased Accuracy Rating with Staves","better":1,"matchers":[{"string":"지팡이 사용 시 정확도 #% 증가"},{"string":"지팡이 사용 시 정확도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1617235962"]}}} +{"ref":"#% increased Accuracy Rating with Swords","better":1,"matchers":[{"string":"검 사용 시 정확도 #% 증가"},{"string":"검 사용 시 정확도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2090868905"]}}} +{"ref":"#% increased Accuracy Rating with Wands","better":1,"matchers":[{"string":"마법봉 사용 시 정확도 #% 증가"},{"string":"마법봉 사용 시 정확도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2150183156"]}}} +{"ref":"#% increased Action Speed","better":1,"matchers":[{"string":"동작 속도 #% 감소"},{"string":"동작 속도 #% 증가","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2878959938"]},"inverted":true}} +{"ref":"#% increased Action Speed while affected by Haste","better":1,"matchers":[{"string":"가속의 영향을 받는 동안 동작 속도 #% 증가"},{"string":"가속의 영향을 받는 동안 동작 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1960426186"]}}} +{"ref":"#% increased Agility Experience gained","better":1,"matchers":[{"string":"민첩함 경험치 획득량 #% 증가"},{"string":"민첩함 경험치 획득량 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_245401622"],"fractured":["fractured.stat_245401622"]}}} +{"ref":"#% increased Agility speed","better":1,"matchers":[{"string":"민첩함 속도 #% 증가"},{"string":"민첩함 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3422638915"],"implicit":["implicit.stat_3422638915"],"fractured":["fractured.stat_3422638915"]}}} +{"ref":"#% increased Alchemist's Mark Curse Effect","better":1,"matchers":[{"string":"연금술사의 징표 저주 효과 #% 증가"},{"string":"연금술사의 징표 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3583185303"]}}} +{"ref":"#% increased Ambush Cooldown Recovery Rate","better":1,"matchers":[{"string":"매복의 재사용 대기시간 회복 속도 #% 증가"},{"string":"매복의 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2977107166"]}}} +{"ref":"#% increased Amount Recovered","better":1,"matchers":[{"string":"회복량 #% 증가"},{"string":"회복량 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_700317374"],"fractured":["fractured.stat_700317374"]}}} +{"ref":"#% increased Ancestral Protector Totem Placement Speed","better":1,"matchers":[{"string":"선대의 수호자 토템 설치 속도 #% 증가"},{"string":"선대의 수호자 토템 설치 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_592861938"]}}} +{"ref":"#% increased Ancestral Warchief Totem Area of Effect","better":1,"matchers":[{"string":"선대의 대전사 토템 효과 범위 #% 증가"},{"string":"선대의 대전사 토템 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3320271130"]}}} +{"ref":"#% increased Ancestral Warchief Totem Damage","better":1,"matchers":[{"string":"선대의 대전사 토템 피해 #% 증가"},{"string":"선대의 대전사 토템 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_78239163"]}}} +{"ref":"#% increased Animate Weapon Duration","better":1,"matchers":[{"string":"무기 기동 지속시간 #% 증가"},{"string":"무기 기동 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3338074370"]}}} +{"ref":"#% increased Arc Damage","better":1,"matchers":[{"string":"연쇄 번개 피해 #% 증가"},{"string":"연쇄 번개 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2740567252"]}}} +{"ref":"#% increased Arctic Armour Buff Effect","better":1,"matchers":[{"string":"한기의 방어구 버프 효과 #% 증가"},{"string":"한기의 방어구 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3995612171"],"implicit":["implicit.stat_3995612171"],"enchant":["enchant.stat_3995612171"]}}} +{"ref":"#% increased Area Damage","better":1,"matchers":[{"string":"범위 피해 #% 증가"},{"string":"범위 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4251717817"],"implicit":["implicit.stat_4251717817"],"fractured":["fractured.stat_4251717817"],"scourge":["scourge.stat_4251717817"],"crafted":["crafted.stat_4251717817"]}}} +{"ref":"#% increased Area Damage per 10 Devotion","better":1,"matchers":[{"string":"헌신 10당 범위 피해 #% 증가"},{"string":"헌신 10당 범위 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1724614884"]}}} +{"ref":"#% increased Area of Effect","better":1,"matchers":[{"string":"효과 범위 #% 증가"},{"string":"효과 범위 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_280731498"],"implicit":["implicit.stat_280731498"],"fractured":["fractured.stat_280731498"],"scourge":["scourge.stat_280731498"],"crafted":["crafted.stat_280731498"]}}} +{"ref":"#% increased Area of Effect during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 효과 범위 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_215882879"]}}} +{"ref":"#% increased Area of Effect for Attacks","better":1,"matchers":[{"string":"공격 효과 범위 #% 증가"},{"string":"공격 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1840985759"]}}} +{"ref":"#% increased Area of Effect for Skills used by Totems","better":1,"matchers":[{"string":"토템이 사용하는 스킬의 효과 범위 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_869436347"]}}} +{"ref":"#% increased Area of Effect if you have Stunned an Enemy Recently","better":1,"matchers":[{"string":"최근 4초 이내 적을 기절시킨 경우 효과 범위 #% 증가"},{"string":"최근 4초 이내 적을 기절시킨 경우 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_430248187"],"implicit":["implicit.stat_430248187"],"fractured":["fractured.stat_430248187"]}}} +{"ref":"#% increased Area of Effect if you've dealt a Culling Strike Recently","better":1,"matchers":[{"string":"최근 4초 이내 마무리 타격을 가한 경우 효과 범위 #% 증가"},{"string":"최근 4초 이내 마무리 타격을 가한 경우 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1785568076"]}}} +{"ref":"#% increased Area of Effect if you've Killed Recently","better":1,"matchers":[{"string":"최근 4초 이내 적을 처치한 경우 효과 범위 #% 증가"},{"string":"최근 4초 이내 적을 처치한 경우 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3481736410"]}}} +{"ref":"#% increased Area of Effect of Aura Skills","better":1,"matchers":[{"string":"오라 스킬의 효과 범위 #% 증가"},{"string":"오라 스킬의 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_895264825"],"implicit":["implicit.stat_895264825"],"enchant":["enchant.stat_895264825"]}}} +{"ref":"#% increased Area of Effect of Hex Skills","better":1,"matchers":[{"string":"사술 스킬 효과 범위 #% 증가"},{"string":"사술 스킬 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_153777645"],"fractured":["fractured.stat_153777645"]}}} +{"ref":"#% increased Area of Effect per 20 Intelligence","better":1,"matchers":[{"string":"지능 20당 효과 범위 #% 증가"},{"string":"지능 20당 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1307972622"]}}} +{"ref":"#% increased Area of Effect per 25 Rampage Kills","better":1,"matchers":[{"string":"광란 처치 25회당 효과 범위 #% 증가"},{"string":"광란 처치 25회당 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4119032338"]}}} +{"ref":"#% increased Area of Effect per 50 Strength","better":1,"matchers":[{"string":"힘 50당 효과 범위 #% 증가"},{"string":"힘 50당 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2611023406"],"fractured":["fractured.stat_2611023406"]}}} +{"ref":"#% increased Area of Effect per Endurance Charge","better":1,"matchers":[{"string":"인내 충전 하나당 효과 범위 #% 증가"},{"string":"인내 충전 하나당 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2448279015"]}}} +{"ref":"#% increased Area of Effect per Enemy killed recently, up to 50%","better":1,"matchers":[{"string":"최근 4초 이내 처치한 적 하나당 효과 범위 #% 증가, 최대 50%"},{"string":"최근 4초 이내 처치한 적 하나당 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4070157876"]}}} +{"ref":"#% increased Area of Effect per Power Charge","better":1,"matchers":[{"string":"권능 충전 하나당 효과 범위 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3094501804"]}}} +{"ref":"#% increased Area of Effect while in Sand Stance","better":1,"matchers":[{"string":"모래 태세에서 효과 범위 #% 증가"},{"string":"모래 태세에서 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1647746883"]}}} +{"ref":"#% increased Area of Effect while Unarmed","better":1,"matchers":[{"string":"비무장 상태일 때 효과 범위 #% 증가"},{"string":"비무장 상태일 때 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2216127021"]}}} +{"ref":"#% increased Area of Effect while you have Arcane Surge","better":1,"matchers":[{"string":"비전 쇄도 상태에서 효과 범위 #% 증가"},{"string":"비전 쇄도 상태에서 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1406617410"]}}} +{"ref":"#% increased Armour","better":1,"matchers":[{"string":"방어도 #% 증가"},{"string":"방어도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1062208444","explicit.stat_2866361420"],"implicit":["implicit.stat_1062208444","implicit.stat_2866361420"],"fractured":["fractured.stat_1062208444","fractured.stat_2866361420"],"crafted":["crafted.stat_1062208444","crafted.stat_2866361420"]}}} +{"ref":"#% increased Armour against Projectiles","better":1,"matchers":[{"string":"투사체 대응 방어도 #% 증가"},{"string":"투사체 대응 방어도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_706246936"]}}} +{"ref":"#% increased Armour and Energy Shield","better":1,"matchers":[{"string":"방어도 및 에너지 보호막 #% 증가"},{"string":"방어도 및 에너지 보호막 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3321629045"],"fractured":["fractured.stat_3321629045"],"crafted":["crafted.stat_3321629045"]}}} +{"ref":"#% increased Armour and Evasion","better":1,"matchers":[{"string":"방어도 및 회피 #% 증가"},{"string":"방어도 및 회피 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2451402625"],"fractured":["fractured.stat_2451402625"],"crafted":["crafted.stat_2451402625"]}}} +{"ref":"#% increased Armour during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 방어도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1693613464"],"fractured":["fractured.stat_1693613464"]}}} +{"ref":"#% increased Armour from Equipped Helmet and Gloves","better":1,"matchers":[{"string":"장착한 투구 및 장갑이 제공하는 방어도 #% 증가"},{"string":"장착한 투구 및 장갑이 제공하는 방어도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_791154540"]}}} +{"ref":"#% increased Armour if you haven't Killed Recently","better":1,"matchers":[{"string":"최근 4초 이내 적을 처치하지 않은 경우 방어도 #% 증가"},{"string":"최근 4초 이내 적을 처치하지 않은 경우 방어도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2424133568"],"fractured":["fractured.stat_2424133568"]}}} +{"ref":"#% increased Armour per 50 Reserved Mana","better":1,"matchers":[{"string":"점유된 마나 50당 방어도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2574337583"]}}} +{"ref":"#% increased Armour per 50 Strength","better":1,"matchers":[{"string":"힘 50당 방어도 #% 증가"},{"string":"힘 50당 방어도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3621706946"]}}} +{"ref":"#% increased Armour per Endurance Charge","better":1,"matchers":[{"string":"인내 충전 하나당 방어도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1447080724"]}}} +{"ref":"#% increased Armour while Bleeding","better":1,"matchers":[{"string":"출혈 상태에서 방어도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2466912132"]}}} +{"ref":"#% increased Armour while not Ignited, Frozen or Shocked","better":1,"matchers":[{"string":"점화, 동결 또는 감전되지 않은 상태에서 방어도 #% 증가"},{"string":"점화, 동결 또는 감전되지 않은 상태에서 방어도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1164767410"]}}} +{"ref":"#% increased Armour while stationary","better":1,"matchers":[{"string":"정지 상태일 때 방어도 #% 증가"},{"string":"정지 상태일 때 방어도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3184053924"]}}} +{"ref":"#% increased Armour, Evasion and Energy Shield","better":1,"matchers":[{"string":"방어도, 회피, 에너지 보호막 #% 증가"},{"string":"방어도, 회피, 에너지 보호막 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3523867985"],"fractured":["fractured.stat_3523867985"],"scourge":["scourge.stat_3523867985"],"crafted":["crafted.stat_3523867985"]}}} +{"ref":"#% increased Aspect of the Avian Buff Effect","better":1,"matchers":[{"string":"새의 위상 버프 효과 #% 증가"},{"string":"새의 위상 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1746347097"]}}} +{"ref":"#% increased Aspect of the Spider Area of Effect","better":1,"matchers":[{"string":"거미의 위상 효과 범위 #% 증가"},{"string":"거미의 위상 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3686780108"]}}} +{"ref":"#% increased Aspect of the Spider Debuff Duration","better":1,"matchers":[{"string":"거미의 위상 디버프 지속시간 #% 증가"},{"string":"거미의 위상 디버프 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_332854027"]}}} +{"ref":"#% increased Assassin's Mark Curse Effect","better":1,"matchers":[{"string":"암살자의 징표 저주 효과 #% 증가"},{"string":"암살자의 징표 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1961975107"]}}} +{"ref":"#% increased Attack and Cast Speed","better":1,"matchers":[{"string":"공격 및 시전 속도 #% 증가"},{"string":"공격 및 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2672805335"],"implicit":["implicit.stat_2672805335"],"fractured":["fractured.stat_2672805335"],"crafted":["crafted.stat_2672805335"]}}} +{"ref":"#% increased Attack and Cast Speed during Onslaught","better":1,"matchers":[{"string":"맹공 상태일 때 공격 및 시전 속도 #% 증가"},{"string":"맹공 상태일 때 공격 및 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2320884914"]}}} +{"ref":"#% increased Attack and Cast Speed if Corrupted","better":1,"matchers":[{"string":"타락 시 공격 및 시전 속도 #% 증가"},{"string":"타락 시 공격 및 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_26867112"]}}} +{"ref":"#% increased Attack and Cast Speed if you haven't been Hit Recently","better":1,"matchers":[{"string":"최근 4초 이내 피격되지 않은 경우 공격 및 시전 속도 #% 증가"},{"string":"최근 4초 이내 피격되지 않은 경우 공격 및 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_223937937"]}}} +{"ref":"#% increased Attack and Cast Speed if you've Hit an Enemy Recently","better":1,"matchers":[{"string":"최근 4초 이내 적을 명중한 경우 공격 및 시전 속도 #% 증가"},{"string":"최근 4초 이내 적을 명중한 경우 공격 및 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1483753325"],"fractured":["fractured.stat_1483753325"]}}} +{"ref":"#% increased Attack and Cast Speed if you've Killed Recently","better":1,"matchers":[{"string":"최근 4초 이내 적을 처치한 경우 공격 및 시전 속도 #% 증가"}],"trade":{"ids":{"enchant":["enchant.stat_4135304575"]}}} +{"ref":"#% increased Attack and Cast Speed if you've used a Movement Skill Recently","better":1,"matchers":[{"string":"최근 4초 이내 이동 스킬을 사용한 경우 공격 및 시전 속도 #% 증가"},{"string":"최근 4초 이내 이동 스킬을 사용한 경우 공격 및 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2831922878"]}}} +{"ref":"#% increased Attack and Cast Speed per Endurance Charge","better":1,"matchers":[{"string":"인내 충전 하나당 공격 및 시전 속도 #% 증가"},{"string":"인내 충전 하나당 공격 및 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3618888098"]}}} +{"ref":"#% increased Attack and Cast Speed per Power Charge","better":1,"matchers":[{"string":"권능 충전 하나당 공격 및 시전 속도 #% 증가"},{"string":"권능 충전 하나당 공격 및 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_987588151"]}}} +{"ref":"#% increased Attack and Cast Speed per Summoned Raging Spirit","better":1,"matchers":[{"string":"소환된 격노의 유령 하나당 공격 및 시전 속도 #% 증가"},{"string":"소환된 격노의 유령 하나당 공격 및 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3133579934"]}}} +{"ref":"#% increased Attack and Cast Speed while at maximum Fortification","better":1,"matchers":[{"string":"최대 방어 상승 상태에서 공격 및 시전 속도 #% 증가"},{"string":"최대 방어 상승 상태에서 공격 및 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1473444150"]}}} +{"ref":"#% increased Attack and Cast Speed while Focused","better":1,"matchers":[{"string":"집중하는 동안 공격 및 시전 속도 #% 증가"},{"string":"집중하는 동안 공격 및 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2628163981"],"fractured":["fractured.stat_2628163981"],"crafted":["crafted.stat_2628163981"]}}} +{"ref":"#% increased Attack and Cast Speed while Physical Aegis is depleted","better":1,"matchers":[{"string":"물리 비호가 고갈된 동안 공격 및 시전 속도 #% 증가"},{"string":"물리 비호가 고갈된 동안 공격 및 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_232331266"]}}} +{"ref":"#% increased Attack and Movement Speed while you have a Bestial Minion","better":1,"matchers":[{"string":"흉포한 소환수를 보유하는 동안 공격 및 이동 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3597737983"]}}} +{"ref":"#% increased Attack and Movement Speed with Her Blessing","better":1,"matchers":[{"string":"여신의 축복을 받아 공격 및 이동 속도 #% 증가"},{"string":"여신의 축복을 받아 공격 및 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2968804751"]}}} +{"ref":"#% increased Attack Critical Strike Chance per 200 Accuracy Rating","better":1,"matchers":[{"string":"정확도 200당 공격 치명타 확률 #% 증가"},{"string":"정확도 200당 공격 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2196695640"]}}} +{"ref":"#% increased Attack Critical Strike Chance while Dual Wielding","better":1,"matchers":[{"string":"쌍수 장착 시 공격 치명타 확률 #% 증가"},{"string":"쌍수 장착 시 공격 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3702513529"],"fractured":["fractured.stat_3702513529"]}}} +{"ref":"#% increased Attack Damage","better":1,"matchers":[{"string":"공격 피해 #% 증가"},{"string":"공격 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2843214518"],"implicit":["implicit.stat_2843214518"],"fractured":["fractured.stat_2843214518"]}}} +{"ref":"#% increased Attack Damage against Bleeding Enemies","better":1,"matchers":[{"string":"출혈 중인 적에 대한 공격 피해 #% 증가"},{"string":"출혈 중인 적에 대한 공격 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3944782785"],"implicit":["implicit.stat_3944782785"]}}} +{"ref":"#% increased Attack Damage for each Map Item Modifier affecting the Area","better":1,"matchers":[{"string":"지도 아이템에 부여된, 지역에 영향을 주는 속성 하나당 공격 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_698336758"]}}} +{"ref":"#% increased Attack Damage if Corrupted","better":1,"matchers":[{"string":"타락 시 공격 피해 #% 증가"},{"string":"타락 시 공격 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2347923784"]}}} +{"ref":"#% increased Attack Damage if your other Ring is a Shaper Item","better":1,"matchers":[{"string":"자신의 다른 반지가 쉐이퍼 아이템인 경우 공격 피해 #% 증가"},{"string":"자신의 다른 반지가 쉐이퍼 아이템인 경우 공격 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1555962658"]}}} +{"ref":"#% increased Attack Damage per 450 Armour","better":1,"matchers":[{"string":"방어도 450당 공격 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_192842973"]}}} +{"ref":"#% increased Attack Damage per 450 Evasion Rating","better":1,"matchers":[{"string":"회피 450당 공격 피해 #% 증가"},{"string":"회피 450당 공격 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_93696421"]}}} +{"ref":"#% increased Attack Damage per 500 Maximum Mana","better":1,"matchers":[{"string":"최대 마나 500당 공격 피해 #% 증가"},{"string":"최대 마나 500당 공격 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4134865890"]}}} +{"ref":"#% increased Attack Damage while affected by Precision","better":1,"matchers":[{"string":"정밀함의 영향을 받는 동안 공격 피해 #% 증가"},{"string":"정밀함의 영향을 받는 동안 공격 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2048747572"]}}} +{"ref":"#% increased Attack Damage while Dual Wielding","better":1,"matchers":[{"string":"쌍수 장착 시 공격 피해 #% 증가"},{"string":"쌍수 장착 시 공격 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_444174528"],"fractured":["fractured.stat_444174528"]}}} +{"ref":"#% increased Attack Damage while holding a Shield","better":1,"matchers":[{"string":"방패를 들고 있는 동안 공격 피해 #% 증가"},{"string":"방패를 들고 있는 동안 공격 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1393393937"],"fractured":["fractured.stat_1393393937"]}}} +{"ref":"#% increased Attack Damage with Main Hand","better":1,"matchers":[{"string":"주 무기 사용 시 공격 피해 #% 증가"},{"string":"주 무기 사용 시 공격 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2696701853"]}}} +{"ref":"#% increased Attack Damage with Off Hand","better":1,"matchers":[{"string":"보조 장비 사용 시 공격 피해 #% 증가"},{"string":"보조 장비 사용 시 공격 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2924279089"]}}} +{"ref":"#% increased Attack Speed","better":1,"matchers":[{"string":"공격 속도 #% 증가"},{"string":"공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_210067635","explicit.stat_681332047"],"implicit":["implicit.stat_210067635","implicit.stat_681332047"],"fractured":["fractured.stat_210067635","fractured.stat_681332047"],"enchant":["enchant.stat_210067635"],"scourge":["scourge.stat_681332047"],"crafted":["crafted.stat_210067635","crafted.stat_681332047"]}}} +{"ref":"#% increased Attack Speed during any Flask Effect","better":1,"matchers":[{"string":"아무 플라스크나 효과를 받는 동안 공격 속도 #% 증가"},{"string":"아무 플라스크나 효과를 받는 동안 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1365052901"],"implicit":["implicit.stat_1365052901"],"fractured":["fractured.stat_1365052901"]}}} +{"ref":"#% increased Attack Speed during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 공격 속도 #% 증가"},{"string":"효과를 받는 동안 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_968369591"],"fractured":["fractured.stat_968369591"]}}} +{"ref":"#% increased Attack Speed for each Map Item Modifier affecting the Area","better":1,"matchers":[{"string":"지도 아이템에 부여된, 지역에 영향을 주는 속성 하나당 공격 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2025297472"]}}} +{"ref":"#% increased Attack Speed if you haven't Cast Dash recently","better":1,"matchers":[{"string":"최근 4초 이내 질주를 시전하지 않은 경우 공격 속도 #% 증가"},{"string":"최근 4초 이내 질주를 시전하지 않은 경우 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1003608257"]}}} +{"ref":"#% increased Attack Speed if you haven't gained a Frenzy Charge Recently","better":1,"matchers":[{"string":"최근 4초 이내 격분 충전을 얻지 않은 경우 공격 속도 #% 증가"},{"string":"최근 4초 이내 격분 충전을 얻지 않은 경우 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_749465463"]}}} +{"ref":"#% increased Attack Speed if you've been Hit Recently","better":1,"matchers":[{"string":"최근 4초 이내 피격된 경우 공격 속도 #% 증가"},{"string":"최근 4초 이내 피격된 경우 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4137521191"],"fractured":["fractured.stat_4137521191"]}}} +{"ref":"#% increased Attack Speed if you've changed Stance Recently","better":1,"matchers":[{"string":"최근 4초 이내 태세를 바꾼 경우 공격 속도 #% 증가"},{"string":"최근 4초 이내 태세를 바꾼 경우 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2188905761"]}}} +{"ref":"#% increased Attack Speed if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"최근 4초 이내 치명타 명중 시 공격 속도 #% 증가"},{"string":"최근 4초 이내 치명타 명중 시 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1585344030"],"fractured":["fractured.stat_1585344030"]}}} +{"ref":"#% increased Attack Speed if you've Killed Recently","better":1,"matchers":[{"string":"최근 4초 이내 적을 처치한 경우 공격 속도 #% 증가"},{"string":"최근 4초 이내 적을 처치한 경우 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1507059769"],"fractured":["fractured.stat_1507059769"]}}} +{"ref":"#% increased Attack Speed if you've taken a Savage Hit Recently","better":1,"matchers":[{"string":"최근 4초 이내 야만적인 타격을 받은 경우 공격 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3842406602"]}}} +{"ref":"#% increased Attack Speed per 10 Dexterity","better":1,"matchers":[{"string":"민첩 10당 공격 속도 #% 증가"},{"string":"민첩 10당 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_889691035"]}}} +{"ref":"#% increased Attack Speed per 25 Dexterity","better":1,"matchers":[{"string":"민첩 25당 공격 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2241560081"],"fractured":["fractured.stat_2241560081"]}}} +{"ref":"#% increased Attack Speed per 8% Quality","better":1,"matchers":[{"string":"퀄리티 8%당 공격 속도 #% 증가"}],"trade":{"ids":{"enchant":["enchant.stat_3331111689"]}}} +{"ref":"#% increased Attack Speed per Fortification","better":1,"matchers":[{"string":"방어 상승 하나당 공격 속도 #% 증가"},{"string":"방어 상승 하나당 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1039149869"]}}} +{"ref":"#% increased Attack Speed per Frenzy Charge","better":1,"matchers":[{"string":"격분 충전 하나당 공격 속도 #% 증가"},{"string":"격분 충전 하나당 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3548561213"]}}} +{"ref":"#% increased Attack Speed when on Full Life","better":1,"matchers":[{"string":"생명력이 최대일 때 공격 속도 #% 증가"},{"string":"생명력이 최대일 때 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4268321763"]}}} +{"ref":"#% increased Attack Speed when on Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태일 때 공격 속도 #% 증가"},{"string":"낮은 생명력 상태일 때 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1921572790"]}}} +{"ref":"#% increased Attack Speed while a Rare or Unique Enemy is Nearby","better":1,"matchers":[{"string":"주변에 희귀 또는 고유 적이 있는 경우 공격 속도 #% 증가"},{"string":"주변에 희귀 또는 고유 적이 있는 경우 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_314741699"],"fractured":["fractured.stat_314741699"],"crafted":["crafted.stat_314741699"]}}} +{"ref":"#% increased Attack Speed while affected by Precision","better":1,"matchers":[{"string":"정밀함의 영향을 받는 동안 공격 속도 #% 증가"},{"string":"정밀함의 영향을 받는 동안 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3375743050"]}}} +{"ref":"#% increased Attack Speed while Chilled","better":1,"matchers":[{"string":"냉각 상태에서 공격 속도 #% 증가"},{"string":"냉각 상태에서 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3935294261"]}}} +{"ref":"#% increased Attack Speed while Dual Wielding","better":1,"matchers":[{"string":"쌍수 장착 시 공격 속도 #% 증가"},{"string":"쌍수 장착 시 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4249220643"],"fractured":["fractured.stat_4249220643"]}}} +{"ref":"#% increased Attack Speed while Fortified","better":1,"matchers":[{"string":"방어 상승 상태에서 공격 속도 #% 증가"},{"string":"방어 상승 상태에서 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_122450405"],"fractured":["fractured.stat_122450405"]}}} +{"ref":"#% increased Attack Speed while holding a Shield","better":1,"matchers":[{"string":"방패를 들고 있는 동안 공격 속도 #% 증가"},{"string":"방패를 들고 있는 동안 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3805075944"],"fractured":["fractured.stat_3805075944"]}}} +{"ref":"#% increased Attack Speed while Ignited","better":1,"matchers":[{"string":"점화 상태에서 공격 속도 #% 증가"},{"string":"점화 상태에서 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2047819517"],"fractured":["fractured.stat_2047819517"]}}} +{"ref":"#% increased Attack Speed while not on Low Mana","better":1,"matchers":[{"string":"낮은 마나 상태가 아닌 동안 공격 속도 #% 증가"},{"string":"낮은 마나 상태가 아닌 동안 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_779663446"]}}} +{"ref":"#% increased Attack Speed while Phasing","better":1,"matchers":[{"string":"차원 능력 상태에서 공격 속도 #% 증가"},{"string":"차원 능력 상태에서 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2752264922"]}}} +{"ref":"#% increased Attack Speed with Axes","better":1,"matchers":[{"string":"도끼 사용 시 공격 속도 #% 증가"},{"string":"도끼 사용 시 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3550868361"],"implicit":["implicit.stat_3550868361"],"fractured":["fractured.stat_3550868361"]}}} +{"ref":"#% increased Attack Speed with Bows","better":1,"matchers":[{"string":"활 사용 시 공격 속도 #% 증가"},{"string":"활 사용 시 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3759735052"],"implicit":["implicit.stat_3759735052"],"fractured":["fractured.stat_3759735052"]}}} +{"ref":"#% increased Attack Speed with Claws","better":1,"matchers":[{"string":"클로 사용 시 공격 속도 #% 증가"},{"string":"클로 사용 시 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1421645223"],"implicit":["implicit.stat_1421645223"],"fractured":["fractured.stat_1421645223"]}}} +{"ref":"#% increased Attack Speed with Daggers","better":1,"matchers":[{"string":"단검 사용 시 공격 속도 #% 증가"},{"string":"단검 사용 시 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2538566497"],"implicit":["implicit.stat_2538566497"],"fractured":["fractured.stat_2538566497"]}}} +{"ref":"#% increased Attack Speed with Maces or Sceptres","better":1,"matchers":[{"string":"철퇴나 셉터 사용 시 공격 속도 #% 증가"},{"string":"철퇴나 셉터 사용 시 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2515515064"],"implicit":["implicit.stat_2515515064"],"fractured":["fractured.stat_2515515064"]}}} +{"ref":"#% increased Attack Speed with Movement Skills","better":1,"matchers":[{"string":"이동 스킬의 공격 속도 #% 증가"},{"string":"이동 스킬의 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3683134121"]}}} +{"ref":"#% increased Attack Speed with One Handed Melee Weapons","better":1,"matchers":[{"string":"한손 근접 무기 사용 시 공격 속도 #% 증가"},{"string":"한손 근접 무기 사용 시 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1813451228"],"fractured":["fractured.stat_1813451228"]}}} +{"ref":"#% increased Attack Speed with Snipe","better":1,"matchers":[{"string":"저격 사용 시 공격 속도 #% 증가"},{"string":"저격 사용 시 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2513745555"]}}} +{"ref":"#% increased Attack Speed with Staves","better":1,"matchers":[{"string":"지팡이 사용 시 공격 속도 #% 증가"},{"string":"지팡이 사용 시 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1394963553"],"implicit":["implicit.stat_1394963553"],"fractured":["fractured.stat_1394963553"]}}} +{"ref":"#% increased Attack Speed with Swords","better":1,"matchers":[{"string":"검 사용 시 공격 속도 #% 증가"},{"string":"검 사용 시 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3293699237"],"implicit":["implicit.stat_3293699237"],"fractured":["fractured.stat_3293699237"]}}} +{"ref":"#% increased Attack Speed with Two Handed Melee Weapons","better":1,"matchers":[{"string":"양손 근접 무기 사용 시 공격 속도 #% 증가"},{"string":"양손 근접 무기 사용 시 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1917910910"],"fractured":["fractured.stat_1917910910"]}}} +{"ref":"#% increased Attack Speed with Wands","better":1,"matchers":[{"string":"마법봉 사용 시 공격 속도 #% 증가"},{"string":"마법봉 사용 시 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3720627346"],"implicit":["implicit.stat_3720627346"],"fractured":["fractured.stat_3720627346"]}}} +{"ref":"#% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes","better":1,"matchers":[{"string":"철의 반사신경이 없는 동안 공격, 시전 및 이동 속도 #% 증가"},{"string":"철의 반사신경이 없는 동안 공격, 시전 및 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3476327198"]}}} +{"ref":"#% increased Attack, Cast and Movement Speed while you have Onslaught","better":1,"matchers":[{"string":"맹공 상태일 때 공격, 시전 및 이동 속도 #% 증가"},{"string":"맹공 상태일 때 공격, 시전 및 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_879520319"]}}} +{"ref":"#% increased Attribute Requirements","better":-1,"matchers":[{"string":"능력치 요구사항 #% 증가"},{"string":"능력치 요구사항 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3639275092"],"fractured":["fractured.stat_3639275092"],"enchant":["enchant.stat_3639275092"],"scourge":["scourge.stat_3639275092"]}}} +{"ref":"#% increased Attributes","better":1,"matchers":[{"string":"능력치 #% 증가"},{"string":"능력치 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3143208761"],"implicit":["implicit.stat_3143208761"],"fractured":["fractured.stat_3143208761"],"crafted":["crafted.stat_3143208761"]}}} +{"ref":"#% increased Ball Lightning Area of Effect","better":1,"matchers":[{"string":"구형 번개 효과 범위 #% 증가"},{"string":"구형 번개 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_788307702"]}}} +{"ref":"#% increased Ball Lightning Damage","better":1,"matchers":[{"string":"구형 번개 피해 #% 증가"},{"string":"구형 번개 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3152812191"]}}} +{"ref":"#% increased Barrage Attack Speed","better":1,"matchers":[{"string":"연발 사격 공격 속도 #% 증가"},{"string":"연발 사격 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2523298357"]}}} +{"ref":"#% increased Barrage Damage","better":1,"matchers":[{"string":"연발 사격 피해 #% 증가"},{"string":"연발 사격 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3685345485"]}}} +{"ref":"#% increased Battlemage's Cry Buff Effect","better":1,"matchers":[{"string":"전투마법사의 함성 버프 효과 #% 증가"},{"string":"전투마법사의 함성 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2426838124"],"enchant":["enchant.stat_2426838124"]}}} +{"ref":"#% increased Bear Trap Damage","better":1,"matchers":[{"string":"곰 덫 피해 #% 증가"},{"string":"곰 덫 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1877863115"]}}} +{"ref":"#% increased Blade Flurry Area of Effect","better":1,"matchers":[{"string":"질풍의 칼날 효과 범위 #% 증가"},{"string":"질풍의 칼날 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2746213081"]}}} +{"ref":"#% increased Blade Flurry Damage","better":1,"matchers":[{"string":"질풍의 칼날 피해 #% 증가"},{"string":"질풍의 칼날 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_754797886"]}}} +{"ref":"#% increased Blade Trap Area of Effect","better":1,"matchers":[{"string":"칼날 덫 효과 범위 #% 증가"},{"string":"칼날 덫 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1502095380"]}}} +{"ref":"#% increased Blade Trap Damage","better":1,"matchers":[{"string":"칼날 덫 피해 #% 증가"},{"string":"칼날 덫 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3676486210"]}}} +{"ref":"#% increased Blade Vortex Area of Effect","better":1,"matchers":[{"string":"칼날 소용돌이 효과 범위 #% 증가"},{"string":"칼날 소용돌이 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2748553775"]}}} +{"ref":"#% increased Blade Vortex Duration","better":1,"matchers":[{"string":"칼날 소용돌이 지속시간 #% 증가"},{"string":"칼날 소용돌이 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3024867180"]}}} +{"ref":"#% increased Blade Vortex Spell Damage","better":1,"matchers":[{"string":"칼날 소용돌이 주문 피해 #% 증가"},{"string":"칼날 소용돌이 주문 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4221797807"]}}} +{"ref":"#% increased Bladefall Area of Effect","better":1,"matchers":[{"string":"칼날비 효과 범위 #% 증가"},{"string":"칼날비 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2413715772"]}}} +{"ref":"#% increased Bladefall Critical Strike Chance","better":1,"matchers":[{"string":"칼날비 치명타 확률 #% 증가"},{"string":"칼날비 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2833482311"]}}} +{"ref":"#% increased Bladefall Damage","better":1,"matchers":[{"string":"칼날비 피해 #% 증가"},{"string":"칼날비 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3069740560"]}}} +{"ref":"#% increased Bleed Duration on you","better":1,"matchers":[{"string":"플레이어에게 적용되는 출혈 지속시간 #% 증가"},{"string":"플레이어에게 적용되는 출혈 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1692879867"],"implicit":["implicit.stat_1692879867"],"fractured":["fractured.stat_1692879867"]}}} +{"ref":"#% increased Bleeding Duration","better":1,"matchers":[{"string":"출혈 지속시간 #% 증가"},{"string":"출혈 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1459321413"],"implicit":["implicit.stat_1459321413"],"fractured":["fractured.stat_1459321413"]}}} +{"ref":"#% increased Bleeding Duration per 12 Intelligence","better":1,"matchers":[{"string":"지능 12당 출혈 지속시간 #% 증가"},{"string":"지능 12당 출혈 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1030835421"]}}} +{"ref":"#% increased Blight Area of Effect","better":1,"matchers":[{"string":"황폐 효과 범위 #% 증가"},{"string":"황폐 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2511915418"]}}} +{"ref":"#% increased Blight Damage","better":1,"matchers":[{"string":"황폐 피해 #% 증가"},{"string":"황폐 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1623552446"]}}} +{"ref":"#% increased Blind Effect","better":1,"matchers":[{"string":"실명 효과 #% 증가"},{"string":"실명 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1585769763"]}}} +{"ref":"#% increased Block and Stun Recovery during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 막기 및 기절 회복 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3479987487"],"fractured":["fractured.stat_3479987487"]}}} +{"ref":"#% increased Block Recovery","better":1,"matchers":[{"string":"막기 회복 #% 증가"},{"string":"막기 회복 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_369183568"]}}} +{"ref":"#% increased Bodyswap Cast Speed","better":1,"matchers":[{"string":"신체 전환 시전 속도 #% 증가"},{"string":"신체 전환 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_397438226"]}}} +{"ref":"#% increased Bodyswap Damage","better":1,"matchers":[{"string":"신체 전환 피해 #% 증가"},{"string":"신체 전환 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_341054435"]}}} +{"ref":"#% increased Bone Offering Duration","better":1,"matchers":[{"string":"뼈 공물 지속시간 #% 증가"},{"string":"뼈 공물 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1607493537"]}}} +{"ref":"#% increased Boneshatter Damage","better":1,"matchers":[{"string":"뼈 박살이 주는 피해 #% 증가"},{"string":"뼈 박살이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2384264970"]}}} +{"ref":"#% increased Boneshatter Stun Duration","better":1,"matchers":[{"string":"뼈 박살의 기절 지속시간 #% 증가"},{"string":"뼈 박살의 기절 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2742093846"]}}} +{"ref":"#% increased bonuses gained from Equipped Quiver","better":1,"matchers":[{"string":"장착 중인 화살통으로 받는 보너스 #% 증가"},{"string":"장착 중인 화살통으로 받는 보너스 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1200678966"]}}} +{"ref":"#% increased Brand Attachment range","better":1,"matchers":[{"string":"낙인 부착 범위 #% 증가"},{"string":"낙인 부착 범위 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4223377453"],"implicit":["implicit.stat_4223377453"],"fractured":["fractured.stat_4223377453"],"scourge":["scourge.stat_4223377453"],"crafted":["crafted.stat_4223377453"]}}} +{"ref":"#% increased Brand Damage","better":1,"matchers":[{"string":"낙인 피해 #% 증가"},{"string":"낙인 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1323465399"]}}} +{"ref":"#% increased Brand Damage per 10 Devotion","better":1,"matchers":[{"string":"헌신 10당 낙인 피해 #% 증가"},{"string":"헌신 10당 낙인 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2697019412"]}}} +{"ref":"#% increased Brute Force Experience gained","better":1,"matchers":[{"string":"완력 경험치 획득량 #% 증가"},{"string":"완력 경험치 획득량 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2377447058"],"fractured":["fractured.stat_2377447058"]}}} +{"ref":"#% increased Brute Force speed","better":1,"matchers":[{"string":"완력 속도 #% 증가"},{"string":"완력 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3095027077"],"implicit":["implicit.stat_3095027077"],"fractured":["fractured.stat_3095027077"]}}} +{"ref":"#% increased Burning Arrow Damage","better":1,"matchers":[{"string":"불타는 화살 피해 #% 증가"},{"string":"불타는 화살 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_696995312"]}}} +{"ref":"#% increased Burning Damage","better":1,"matchers":[{"string":"화상 피해 #% 증가"},{"string":"화상 피해 #% 감소","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_burning_damage"],"explicit":["explicit.stat_1175385867"],"implicit":["implicit.stat_1175385867"],"fractured":["fractured.stat_1175385867"]}}} +{"ref":"#% increased Burning Damage for each time you have Shocked a Non-Shocked Enemy Recently, up to a maximum of 120%","better":1,"matchers":[{"string":"최근 4초 이내 플레이어가 감전되지 않은 적을 감전시킬 때마다 화상 피해 #% 증가, 최대 120%"},{"string":"최근 4초 이내 플레이어가 감전되지 않은 적을 감전시킬 때마다 화상 피해 #% 감소, 최대 120%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3285748758"]}}} +{"ref":"#% increased Burning Damage if you've Ignited an Enemy Recently","better":1,"matchers":[{"string":"최근 4초 이내 적을 점화한 경우 화상 피해 #% 증가"},{"string":"최근 4초 이내 적을 점화한 경우 화상 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3919557483"]}}} +{"ref":"#% increased Cast Speed","better":1,"matchers":[{"string":"시전 속도 #% 증가"},{"string":"시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2891184298"],"implicit":["implicit.stat_2891184298"],"fractured":["fractured.stat_2891184298"],"enchant":["enchant.stat_2891184298"],"scourge":["scourge.stat_2891184298"],"crafted":["crafted.stat_2891184298"]}}} +{"ref":"#% increased Cast Speed during any Flask Effect","better":1,"matchers":[{"string":"아무 플라스크나 효과를 받는 동안 시전 속도 #% 증가"},{"string":"아무 플라스크나 효과를 받는 동안 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_252194507"],"implicit":["implicit.stat_252194507"],"fractured":["fractured.stat_252194507"]}}} +{"ref":"#% increased Cast Speed during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 시전 속도 #% 증가"},{"string":"효과를 받는 동안 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3256116097"],"fractured":["fractured.stat_3256116097"]}}} +{"ref":"#% increased Cast Speed if a Minion has been Killed Recently","better":1,"matchers":[{"string":"최근 4초 이내 소환수가 사망하면 시전 속도 #% 증가"},{"string":"최근 4초 이내 소환수가 사망하면 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3110907148"],"fractured":["fractured.stat_3110907148"]}}} +{"ref":"#% increased Cast Speed if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"최근 4초 이내 치명타 명중 시 시전 속도 #% 증가"},{"string":"최근 4초 이내 치명타 명중 시 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1174076861"],"fractured":["fractured.stat_1174076861"]}}} +{"ref":"#% increased Cast Speed if you've Killed Recently","better":1,"matchers":[{"string":"최근 4초 이내 적을 처치한 경우 시전 속도 #% 증가"},{"string":"최근 4초 이내 적을 처치한 경우 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2072625596"],"fractured":["fractured.stat_2072625596"]}}} +{"ref":"#% increased Cast Speed per Power Charge","better":1,"matchers":[{"string":"권능 충전 하나당 시전 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1604393896"]}}} +{"ref":"#% increased Cast Speed while affected by Zealotry","better":1,"matchers":[{"string":"열광의 영향을 받는 동안 시전 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2444534954"]}}} +{"ref":"#% increased Cast Speed while Chilled","better":1,"matchers":[{"string":"냉각 상태에서 시전 속도 #% 증가"},{"string":"냉각 상태에서 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_778552242"]}}} +{"ref":"#% increased Cast Speed while Dual Wielding","better":1,"matchers":[{"string":"쌍수 장착 시 시전 속도 #% 증가"},{"string":"쌍수 장착 시 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2382196858"],"implicit":["implicit.stat_2382196858"],"fractured":["fractured.stat_2382196858"]}}} +{"ref":"#% increased Cast Speed while holding a Shield","better":1,"matchers":[{"string":"방패를 들고 있는 동안 시전 속도 #% 증가"},{"string":"방패를 들고 있는 동안 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1612163368"],"implicit":["implicit.stat_1612163368"],"fractured":["fractured.stat_1612163368"]}}} +{"ref":"#% increased Cast Speed while Ignited","better":1,"matchers":[{"string":"점화 상태에서 시전 속도 #% 증가"},{"string":"점화 상태에서 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3660039923"]}}} +{"ref":"#% increased Cast Speed while wielding a Staff","better":1,"matchers":[{"string":"지팡이 장착 시 시전 속도 #% 증가"},{"string":"지팡이 장착 시 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2066542501"],"implicit":["implicit.stat_2066542501"],"fractured":["fractured.stat_2066542501"]}}} +{"ref":"#% increased Cast Speed with Cold Skills","better":1,"matchers":[{"string":"냉기 스킬 시전 속도 #% 증가"},{"string":"냉기 스킬 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_928238845"],"fractured":["fractured.stat_928238845"]}}} +{"ref":"#% increased Cast Speed with Fire Skills","better":1,"matchers":[{"string":"화염 스킬 사용 시 시전 속도 #% 증가"},{"string":"화염 스킬 사용 시 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1476643878"],"fractured":["fractured.stat_1476643878"]}}} +{"ref":"#% increased Cast Speed with Lightning Skills","better":1,"matchers":[{"string":"번개 스킬 시전 속도 #% 증가"},{"string":"번개 스킬 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1788635023"],"fractured":["fractured.stat_1788635023"]}}} +{"ref":"#% increased Caustic Arrow Area of Effect","better":1,"matchers":[{"string":"부식성 화살 효과 범위 #% 증가"},{"string":"부식성 화살 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3854556792"]}}} +{"ref":"#% increased Caustic Arrow Damage","better":1,"matchers":[{"string":"부식성 화살 피해 #% 증가"},{"string":"부식성 화살 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1496334795"]}}} +{"ref":"#% increased Caustic Arrow Duration","better":1,"matchers":[{"string":"부식성 화살 지속시간 #% 증가"},{"string":"부식성 화살 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_387490713"]}}} +{"ref":"#% increased chance to Avoid Resolve Loss from Enemy Melee Hits","better":1,"matchers":[{"string":"적의 근접 명중으로 인한 투지 상실 긴급회피 확률 #% 증가"}],"trade":{"ids":{"explicit":["sanctum.stat_3134588943"]}}} +{"ref":"#% increased chance to Avoid Resolve Loss from Enemy Projectile Hits","better":1,"matchers":[{"string":"적의 투사체 명중으로 인한 투지 상실 긴급회피 확률 #% 증가"}],"trade":{"ids":{"explicit":["sanctum.stat_1798691236"]}}} +{"ref":"#% increased Chance to Block","better":1,"matchers":[{"string":"막기 확률 #% 증가"},{"string":"막기 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2481353198"],"fractured":["fractured.stat_2481353198"],"crafted":["crafted.stat_2481353198"]}}} +{"ref":"#% increased Chaos Damage","better":1,"matchers":[{"string":"카오스 피해 #% 증가"},{"string":"카오스 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_736967255"],"implicit":["implicit.stat_736967255"],"fractured":["fractured.stat_736967255"],"scourge":["scourge.stat_736967255"],"crafted":["crafted.stat_736967255"]}}} +{"ref":"#% increased Chaos Damage over Time","better":1,"matchers":[{"string":"지속 카오스 피해 #% 증가"},{"string":"지속 카오스 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_601272515"],"fractured":["fractured.stat_601272515"]}}} +{"ref":"#% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius","better":1,"matchers":[{"string":"반경 내 할당된 패시브 스킬의 지능 10당 카오스 피해 #% 증가"},{"string":"반경 내 할당된 패시브 스킬의 지능 10당 카오스 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2582360791"]}}} +{"ref":"#% increased Chaos Damage per Level","better":1,"matchers":[{"string":"1레벨당 카오스 피해 #% 증가"},{"string":"1레벨당 카오스 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4084331136"]}}} +{"ref":"#% increased Chaos Damage while affected by Herald of Agony","better":1,"matchers":[{"string":"고통의 전령의 영향을 받는 동안 카오스 피해 #% 증가"},{"string":"고통의 전령의 영향을 받는 동안 카오스 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_739274558"]}}} +{"ref":"#% increased Chaos Damage with Attack Skills","better":1,"matchers":[{"string":"공격 스킬의 카오스 피해 #% 증가"},{"string":"공격 스킬의 카오스 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1959092146"]}}} +{"ref":"#% increased Chaos Damage with Spell Skills","better":1,"matchers":[{"string":"주문 스킬로 주는 카오스 피해 #% 증가"},{"string":"주문 스킬로 주는 카오스 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3761858151"]}}} +{"ref":"#% increased Character Size","better":1,"matchers":[{"string":"캐릭터 크기 #% 증가"},{"string":"캐릭터 크기 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1408638732"],"implicit":["implicit.stat_1408638732"]}}} +{"ref":"#% increased Charge Duration","better":1,"matchers":[{"string":"충전 지속시간 #% 증가"},{"string":"충전 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2171629017"]}}} +{"ref":"#% increased Charge Recovery","better":1,"matchers":[{"string":"충전 회복 #% 증가"},{"string":"충전 회복 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3196823591"],"fractured":["fractured.stat_3196823591"],"enchant":["enchant.stat_3196823591"]}}} +{"ref":"#% increased Charged Dash Damage","better":1,"matchers":[{"string":"충전 질주 피해 #% 증가"},{"string":"충전 질주 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1265055278"]}}} +{"ref":"#% increased Charges gained by Other Flasks during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 다른 플라스크 충전량 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1085359447"]}}} +{"ref":"#% increased Charges per use","better":-1,"matchers":[{"string":"사용 1회당 충전 소모량 #% 증가"},{"string":"사용 1회당 충전 소모량 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_388617051"],"fractured":["fractured.stat_388617051"],"enchant":["enchant.stat_388617051"]}}} +{"ref":"#% increased Chill Duration on Enemies","better":1,"matchers":[{"string":"적에게 적용되는 냉각 지속시간 #% 증가"},{"string":"적에게 적용되는 냉각 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3485067555"],"implicit":["implicit.stat_3485067555"],"crafted":["crafted.stat_3485067555"]}}} +{"ref":"#% increased Chill Duration on Enemies when in Off Hand","better":1,"matchers":[{"string":"보조 장비로 장착 시 적에게 적용되는 냉각 지속시간 #% 증가"},{"string":"보조 장비로 장착 시 적에게 적용되는 냉각 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4199402748"]}}} +{"ref":"#% increased Claw Physical Damage when on Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태일 때 클로 물리 피해 #% 증가"},{"string":"낮은 생명력 상태일 때 클로 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1081444608"]}}} +{"ref":"#% increased Cleave Area of Effect","better":1,"matchers":[{"string":"회전베기 효과 범위 #% 증가"},{"string":"회전베기 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3172519570"]}}} +{"ref":"#% increased Cleave Attack Speed","better":1,"matchers":[{"string":"회전베기 공격 속도 #% 증가"},{"string":"회전베기 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3106577499"]}}} +{"ref":"#% increased Cleave Damage","better":1,"matchers":[{"string":"회전베기 피해 #% 증가"},{"string":"회전베기 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1359058534"]}}} +{"ref":"#% increased Cold Damage","better":1,"matchers":[{"string":"냉기 피해 #% 증가"},{"string":"냉기 피해 #% 감소","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_cold_damage"],"explicit":["explicit.stat_3291658075"],"implicit":["implicit.stat_3291658075"],"fractured":["fractured.stat_3291658075"],"scourge":["scourge.stat_3291658075"],"crafted":["crafted.stat_3291658075"]}}} +{"ref":"#% increased Cold Damage if you have used a Fire Skill Recently","better":1,"matchers":[{"string":"최근 4초 이내 화염 스킬을 사용한 경우 냉기 피해 #% 증가"},{"string":"최근 4초 이내 화염 스킬을 사용한 경우 냉기 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3612256591"]}}} +{"ref":"#% increased Cold Damage per 1% Cold Resistance above 75%","better":1,"matchers":[{"string":"75%를 초과하는 냉기 저항 1%당 냉기 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2517031897"]}}} +{"ref":"#% increased Cold Damage per 1% Missing Cold Resistance, up to a maximum of 300%","better":1,"matchers":[{"string":"부족한 냉기 저항 1%당 냉기 피해 #% 증가(최대 300%)"},{"string":"부족한 냉기 저항 1%당 냉기 피해 #% 감소(최대 300%)","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2859664487"]}}} +{"ref":"#% increased Cold Damage per Frenzy Charge","better":1,"matchers":[{"string":"격분 충전 하나당 냉기 피해 #% 증가"},{"string":"격분 충전 하나당 냉기 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_329974315"]}}} +{"ref":"#% increased Cold Damage while affected by Hatred","better":1,"matchers":[{"string":"증오의 영향을 받는 동안 냉기 피해 #% 증가"},{"string":"증오의 영향을 받는 동안 냉기 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1413864591"]}}} +{"ref":"#% increased Cold Damage while affected by Herald of Ice","better":1,"matchers":[{"string":"얼음의 전령의 영향을 받는 동안 냉기 피해 #% 증가"},{"string":"얼음의 전령의 영향을 받는 동안 냉기 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1970606344"]}}} +{"ref":"#% increased Cold Damage while your Off Hand is empty","better":1,"matchers":[{"string":"보조 장비가 없을 시 냉기 피해 #% 증가"},{"string":"보조 장비가 없을 시 냉기 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3520048646"]}}} +{"ref":"#% increased Cold Damage with Attack Skills","better":1,"matchers":[{"string":"공격 스킬의 냉기 피해 #% 증가"},{"string":"공격 스킬의 냉기 피해 #% 감소","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_cold_damage_with_attack_skills"],"explicit":["explicit.stat_860668586"],"implicit":["implicit.stat_860668586"]}}} +{"ref":"#% increased Cold Damage with Spell Skills","better":1,"matchers":[{"string":"주문 스킬의 냉기 피해 #% 증가"},{"string":"주문 스킬의 냉기 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2186994986"]}}} +{"ref":"#% increased Cold Resistance","better":1,"matchers":[{"string":"냉기 저항 #% 증가"},{"string":"냉기 저항 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4252311791"]}}} +{"ref":"#% increased Cold Snap Area of Effect","better":1,"matchers":[{"string":"한파 효과 범위 #% 증가"},{"string":"한파 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3371538704"]}}} +{"ref":"#% increased Cold Snap Damage","better":1,"matchers":[{"string":"한파 피해 #% 증가"},{"string":"한파 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3729006707"]}}} +{"ref":"#% increased Cold Spell Damage","better":1,"matchers":[{"string":"냉기 주문 피해 #% 증가 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_cold_spell_damage"]}}} +{"ref":"#% increased Conductivity Curse Effect","better":1,"matchers":[{"string":"전도성 저주 효과 #% 증가"},{"string":"전도성 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3395908304"],"enchant":["enchant.stat_3395908304"]}}} +{"ref":"#% increased Conductivity Duration","better":1,"matchers":[{"string":"전도성 지속시간 #% 증가"},{"string":"전도성 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_819890745"]}}} +{"ref":"#% increased Contagion Area of Effect","better":1,"matchers":[{"string":"전염 효과 범위 #% 증가"},{"string":"전염 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1056396846"]}}} +{"ref":"#% increased Contagion Damage","better":1,"matchers":[{"string":"전염 피해 #% 증가"},{"string":"전염 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_277116504"]}}} +{"ref":"#% increased Contagion Duration","better":1,"matchers":[{"string":"전염 지속시간 #% 증가"},{"string":"전염 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2565809961"]}}} +{"ref":"#% increased Convocation Buff Effect","better":1,"matchers":[{"string":"소집 버프 효과 #% 증가"},{"string":"소집 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2054059315"]}}} +{"ref":"#% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"재사용 대기시간 회복 속도 #% 증가"},{"string":"재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1004011302","explicit.stat_239144"],"implicit":["implicit.stat_1004011302"],"fractured":["fractured.stat_1004011302"],"scourge":["scourge.stat_1004011302"],"crafted":["crafted.stat_1004011302"]}}} +{"ref":"#% increased Cooldown Recovery Rate for throwing Traps","better":1,"matchers":[{"string":"덫 투척 재사용 대기시간 회복 속도 #% 증가"},{"string":"덫 투척 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3417757416"],"implicit":["implicit.stat_3417757416"],"fractured":["fractured.stat_3417757416"]}}} +{"ref":"#% increased Cooldown Recovery Rate if you've cast Temporal Chains in the past 10 seconds","better":1,"matchers":[{"string":"최근 10초 이내 시간의 사슬을 시전한 경우 재사용 대기시간 회복 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2954796309"]}}} +{"ref":"#% increased Cooldown Recovery Rate of Movement Skills","better":1,"matchers":[{"string":"이동 스킬의 재사용 대기시간 회복 속도 #% 증가"},{"string":"이동 스킬의 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1124980805"]}}} +{"ref":"#% increased Cooldown Recovery Rate of Movement Skills used while affected by Haste","better":1,"matchers":[{"string":"가속의 영향을 받는 동안 사용한 이동 스킬의 재사용 대기시간 회복 속도 #% 증가"},{"string":"가속의 영향을 받는 동안 사용한 이동 스킬의 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3332055899"]}}} +{"ref":"#% increased Cooldown Recovery Rate of Travel Skills","better":1,"matchers":[{"string":"이동 전용 스킬의 재사용 대기시간 회복 속도 #% 증가"},{"string":"이동 전용 스킬의 재사용 대기시간 회복 속도#% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2308278768"],"implicit":["implicit.stat_2308278768"]}}} +{"ref":"#% increased Cooldown Recovery Rate of Travel Skills per Frenzy Charge","better":1,"matchers":[{"string":"격분 충전 하나당 이동 전용 스킬의 재사용 대기시간 회복 속도 #% 증가"},{"string":"격분 충전 하나당 이동 전용 스킬의 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3083201633"]}}} +{"ref":"#% increased Corrupting Fever Duration","better":1,"matchers":[{"string":"타락한 열병 지속시간 #% 증가"},{"string":"타락한 열병 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3529090048"]}}} +{"ref":"#% increased Cost of Skills for each 200 total Mana Spent Recently","better":1,"matchers":[{"string":"최근 4초 이내 사용한 마나 200당 스킬의 소모 #% 증가"},{"string":"최근 4초 이내 사용한 마나 200당 스킬의 소모 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2650053239"]}}} +{"ref":"#% increased Counter-Thaumaturgy Experience gained","better":1,"matchers":[{"string":"반-마석학 경험치 획득량 #% 증가"},{"string":"반-마석학 경험치 획득량 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1237550112"],"fractured":["fractured.stat_1237550112"]}}} +{"ref":"#% increased Counter-Thaumaturgy speed","better":1,"matchers":[{"string":"반-마석학 속도 #% 증가"},{"string":"반-마석학 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2888942321"],"implicit":["implicit.stat_2888942321"],"fractured":["fractured.stat_2888942321"]}}} +{"ref":"#% increased Creeping Frost Area of Effect","better":1,"matchers":[{"string":"엄습하는 서리 효과 범위 #% 증가"},{"string":"엄습하는 서리 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3816022821"]}}} +{"ref":"#% increased Creeping Frost Damage","better":1,"matchers":[{"string":"엄습하는 서리의 피해 #% 증가"},{"string":"엄습하는 서리의 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2846773529"]}}} +{"ref":"#% increased Creeping Frost Duration","better":1,"matchers":[{"string":"엄습하는 서리 지속시간 #% 증가"},{"string":"엄습하는 서리 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3804575865"]}}} +{"ref":"#% increased Cremation Cast Speed","better":1,"matchers":[{"string":"시체 소각 시전 속도 #% 증가"},{"string":"시체 소각 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2938856716"]}}} +{"ref":"#% increased Cremation Damage","better":1,"matchers":[{"string":"시체 소각 피해 #% 증가"},{"string":"시체 소각 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4175469673"]}}} +{"ref":"#% increased Critical Strike Chance","better":1,"matchers":[{"string":"치명타 확률 #% 증가"},{"string":"치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2375316951"],"implicit":["implicit.stat_2375316951"],"fractured":["fractured.stat_2375316951"],"enchant":["enchant.stat_2375316951"],"crafted":["crafted.stat_2375316951"]}}} +{"ref":"#% increased Critical Strike Chance against Bleeding Enemies","better":1,"matchers":[{"string":"출혈 중인 적에 대한 치명타 확률 #% 증가"},{"string":"출혈 중인 적에 대한 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2282705842"]}}} +{"ref":"#% increased Critical Strike Chance against Blinded Enemies","better":1,"matchers":[{"string":"실명된 적에 대한 치명타 확률 #% 증가"},{"string":"실명된 적에 대한 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1939202111"],"fractured":["fractured.stat_1939202111"]}}} +{"ref":"#% increased Critical Strike Chance against Chilled Enemies","better":1,"matchers":[{"string":"냉각된 적에 대한 치명타 확률 #% 증가"},{"string":"냉각된 적에 대한 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3699490848"]}}} +{"ref":"#% increased Critical Strike Chance against Enemies on Consecrated Ground during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 신성화 지대에 있는 적에 대한 치명타 확률 #% 증가"},{"string":"효과를 받는 동안 신성화 지대에 있는 적에 대한 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3278399103"]}}} +{"ref":"#% increased Critical Strike Chance against Enemies on Consecrated Ground while affected by Zealotry","better":1,"matchers":[{"string":"열광의 영향을 받는 동안 신성화 지대에 있는 적에 대한 치명타 확률 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_214835567"]}}} +{"ref":"#% increased Critical Strike Chance against Enemies that are on Full Life","better":1,"matchers":[{"string":"생명력이 최대인 적에 대한 치명타 확률 #% 증가"},{"string":"생명력이 최대인 적에 대한 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_47954913"]}}} +{"ref":"#% increased Critical Strike Chance against Poisoned Enemies","better":1,"matchers":[{"string":"중독된 적에 대한 치명타 확률 #% 증가"},{"string":"중독된 적에 대한 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1345659139"],"fractured":["fractured.stat_1345659139"]}}} +{"ref":"#% increased Critical Strike Chance against Shocked Enemies","better":1,"matchers":[{"string":"감전된 적에 대한 치명타 확률 #% 증가"},{"string":"감전된 적에 대한 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_276103140"],"fractured":["fractured.stat_276103140"]}}} +{"ref":"#% increased Critical Strike Chance during any Flask Effect","better":1,"matchers":[{"string":"아무 플라스크나 효과를 받는 동안 치명타 확률 #% 증가"},{"string":"아무 플라스크나 효과를 받는 동안 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2898434123"]}}} +{"ref":"#% increased Critical Strike Chance during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 치명타 확률 #% 증가"},{"string":"효과를 받는 동안 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2008255263"],"fractured":["fractured.stat_2008255263"],"crafted":["crafted.stat_2008255263"]}}} +{"ref":"#% increased Critical Strike Chance for Attacks","better":1,"matchers":[{"string":"공격 치명타 확률 #% 증가"},{"string":"공격 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2194114101"]}}} +{"ref":"#% increased Critical Strike Chance for Spells if you've Killed Recently","better":1,"matchers":[{"string":"최근 4초 이내 적을 처치한 경우 주문 치명타 확률 #% 증가"},{"string":"최근 4초 이내 적을 처치한 경우 주문 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1243114410"]}}} +{"ref":"#% increased Critical Strike Chance for Spells while Dual Wielding","better":1,"matchers":[{"string":"쌍수 장착 시 주문 치명타 확률 #% 증가"},{"string":"쌍수 장착 시 주문 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1218939541"]}}} +{"ref":"#% increased Critical Strike Chance for Spells while holding a Shield","better":1,"matchers":[{"string":"방패를 들고 있는 동안 주문 치명타 확률 #% 증가"},{"string":"방패를 들고 있는 동안 주문 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_952509814"]}}} +{"ref":"#% increased Critical Strike Chance for Spells while wielding a Staff","better":1,"matchers":[{"string":"지팡이 장착 시 주문 치명타 확률 #% 증가"},{"string":"지팡이 장착 시 주문 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_140429540"]}}} +{"ref":"#% increased Critical Strike Chance if you have Killed Recently","better":1,"matchers":[{"string":"최근 4초 이내 적을 처치한 경우 치명타 확률 #% 증가"},{"string":"최근 4초 이내 적을 처치한 경우 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3914638685"],"fractured":["fractured.stat_3914638685"]}}} +{"ref":"#% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently","better":1,"matchers":[{"string":"최근 4초 이내 치명타가 없었던 경우 치명타 확률 #% 증가"},{"string":"최근 4초 이내 치명타를 명중시키지 않은 경우 치명타 확률 #% 증가"},{"string":"최근 4초 이내 치명타가 없었던 경우 치명타 확률 #% 감소","negate":true},{"string":"최근 4초 이내 치명타를 명중시키지 않은 경우 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2856328513"],"fractured":["fractured.stat_2856328513"],"enchant":["enchant.stat_3010587200"]}}} +{"ref":"#% increased Critical Strike Chance if you haven't gained a Power Charge Recently","better":1,"matchers":[{"string":"최근 4초 이내 권능 충전을 얻지 않은 경우 치명타 확률 #% 증가"},{"string":"최근 4초 이내 권능 충전을 얻지 않은 경우 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_151106430"]}}} +{"ref":"#% increased Critical Strike Chance if you've been Shocked Recently","better":1,"matchers":[{"string":"최근 4초 이내 감전된 경우 치명타 확률 #% 증가"},{"string":"최근 4초 이내 감전된 경우 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1434381067"]}}} +{"ref":"#% increased Critical Strike Chance per 10 Strength","better":1,"matchers":[{"string":"힘 10당 치명타 확률 #% 증가"},{"string":"힘 10당 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2511370818"]}}} +{"ref":"#% increased Critical Strike Chance per 25 Intelligence","better":1,"matchers":[{"string":"지능 25당 치명타 확률 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1861913998"]}}} +{"ref":"#% increased Critical Strike Chance per 4% Quality","better":1,"matchers":[{"string":"퀄리티 4%당 치명타 확률 #% 증가"}],"trade":{"ids":{"enchant":["enchant.stat_3103053611"]}}} +{"ref":"#% increased Critical Strike Chance per Brand","better":1,"matchers":[{"string":"낙인 하나당 치명타 확률 #% 증가"},{"string":"낙인 하나당 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2409504914"]}}} +{"ref":"#% increased Critical Strike Chance per Endurance Charge","better":1,"matchers":[{"string":"인내 충전 하나당 치명타 확률 #% 증가"},{"string":"인내 충전 하나당 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2547511866"]}}} +{"ref":"#% increased Critical Strike Chance per Frenzy Charge","better":1,"matchers":[{"string":"격분 충전 하나당 치명타 확률 #% 증가"},{"string":"격분 충전 하나당 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_707887043"]}}} +{"ref":"#% increased Critical Strike Chance per Grand Spectrum","better":1,"matchers":[{"string":"장대한 파장 하나당 치명타 확률 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2948375275"]}}} +{"ref":"#% increased Critical Strike Chance while affected by Wrath","better":1,"matchers":[{"string":"진노의 영향을 받는 동안 치명타 확률 #% 증가"},{"string":"진노의 영향을 받는 동안 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3357049845"]}}} +{"ref":"#% increased Critical Strike Chance while area is not in Lockdown\nPlayers have #% increased Critical Strike Chance while area is not in Lockdown","better":1,"matchers":[{"string":"지역이 폐쇄 중이 아닐 때 치명타 확률 #% 증가\n지역이 폐쇄 중이 아닐 때 플레이어의 치명타 확률 #% 증가"},{"string":"지역이 폐쇄 중이 아닐 때 치명타 확률 #% 감소\n지역이 폐쇄 중이 아닐 때 플레이어의 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1051688002"],"fractured":["fractured.stat_1051688002"]}}} +{"ref":"#% increased Critical Strike Chance while Physical Aegis is depleted","better":1,"matchers":[{"string":"물리 비호가 고갈된 동안 치명타 확률 #% 증가"},{"string":"물리 비호가 고갈된 동안 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2620656067"]}}} +{"ref":"#% increased Critical Strike Chance while you have at least 200 Intelligence","better":1,"matchers":[{"string":"지능이 200 이상인 상태에서 치명타 확률 #% 증가"},{"string":"지능이 200 이상인 상태에서 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_578121324"]}}} +{"ref":"#% increased Critical Strike Chance while you have Avatar of Fire","better":1,"matchers":[{"string":"불의 화신이 지속되는 동안 치명타 확률 #% 증가"},{"string":"불의 화신이 지속되는 동안 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2815652613"]}}} +{"ref":"#% increased Critical Strike Chance with arrows that Fork","better":1,"matchers":[{"string":"갈래 보조 효과 적용 시 치명타 확률 #% 증가"},{"string":"갈래 보조 효과 적용 시 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4169623196"]}}} +{"ref":"#% increased Critical Strike Chance with Bows","better":1,"matchers":[{"string":"활 사용 시 치명타 확률 #% 증가"},{"string":"활 사용 시 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2091591880"],"implicit":["implicit.stat_2091591880"],"fractured":["fractured.stat_2091591880"],"scourge":["scourge.stat_2091591880"]}}} +{"ref":"#% increased Critical Strike Chance with Cold Skills","better":1,"matchers":[{"string":"냉기 스킬 치명타 확률 #% 증가"},{"string":"냉기 스킬 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3337344042"],"fractured":["fractured.stat_3337344042"]}}} +{"ref":"#% increased Critical Strike Chance with Elemental Skills","better":1,"matchers":[{"string":"원소 스킬 치명타 확률 #% 증가"},{"string":"원소 스킬 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_439950087"],"fractured":["fractured.stat_439950087"]}}} +{"ref":"#% increased Critical Strike Chance with Fire Skills","better":1,"matchers":[{"string":"화염 스킬 치명타 확률 #% 증가"},{"string":"화염 스킬 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1104796138"],"fractured":["fractured.stat_1104796138"]}}} +{"ref":"#% increased Critical Strike Chance with Lightning Skills","better":1,"matchers":[{"string":"번개 스킬 치명타 확률 #% 증가"},{"string":"번개 스킬 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1186596295"],"fractured":["fractured.stat_1186596295"]}}} +{"ref":"#% increased Critical Strike Chance with Melee Weapons","better":1,"matchers":[{"string":"근접 무기 사용 시 치명타 확률 #% 증가"},{"string":"근접 무기 사용 시 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3678828098"]}}} +{"ref":"#% increased Critical Strike Chance with One Handed Melee Weapons","better":1,"matchers":[{"string":"한손 근접 무기 사용 시 치명타 확률 #% 증가"},{"string":"한손 근접 무기 사용 시 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2381842786"],"fractured":["fractured.stat_2381842786"]}}} +{"ref":"#% increased Critical Strike Chance with Spells which remove the maximum number of Seals","better":1,"matchers":[{"string":"최대 봉인 수를 제거하는 주문 사용 시 치명타 확률 #% 증가"},{"string":"최대 봉인 수를 제거하는 주문 사용 시 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2897207025"]}}} +{"ref":"#% increased Critical Strike Chance with Traps","better":1,"matchers":[{"string":"덫 사용 시 치명타 확률 #% 증가"},{"string":"덫 사용 시 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1192661666"]}}} +{"ref":"#% increased Critical Strike Chance with Two Handed Melee Weapons","better":1,"matchers":[{"string":"양손 근접 무기 사용 시 치명타 확률 #% 증가"},{"string":"양손 근접 무기 사용 시 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_764295120"],"fractured":["fractured.stat_764295120"]}}} +{"ref":"#% increased Critical Strike Chance with Vaal Skills during effect","better":1,"matchers":[{"string":"효과를 받는 동안 바알 스킬 치명타 확률 #% 증가"},{"string":"효과를 받는 동안 바알 스킬 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_778036553"]}}} +{"ref":"#% increased Cyclone Attack Speed","better":1,"matchers":[{"string":"회오리바람 공격 속도 #% 증가"},{"string":"회오리바람 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_835592326"]}}} +{"ref":"#% increased Cyclone Damage","better":1,"matchers":[{"string":"회오리바람 피해 #% 증가"},{"string":"회오리바람 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1454162553"]}}} +{"ref":"#% increased Damage","better":1,"matchers":[{"string":"피해 #% 증가"},{"string":"피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2154246560"],"implicit":["implicit.stat_2154246560"],"fractured":["fractured.stat_2154246560"],"crafted":["crafted.stat_2154246560"]}}} +{"ref":"#% increased Damage during any Flask Effect","better":1,"matchers":[{"string":"아무 플라스크나 효과를 받는 동안 피해 #% 증가"},{"string":"아무 플라스크나 효과를 받는 동안 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2947215268"],"implicit":["implicit.stat_2947215268"],"fractured":["fractured.stat_2947215268"],"crafted":["crafted.stat_2947215268"]}}} +{"ref":"#% increased Damage for each Magic Item Equipped","better":1,"matchers":[{"string":"장착한 마법 아이템 1개당 피해 #% 증가"},{"string":"장착한 마법 아이템 1개당 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_886366428"],"fractured":["fractured.stat_886366428"]}}} +{"ref":"#% increased Damage for each Poison on you up to a maximum of 75%","better":1,"matchers":[{"string":"자신에게 중첩된 중독 하나당 주는 피해 #% 증가, 최대 75%"},{"string":"자신에게 중첩된 중독 하나당 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1034580601"]}}} +{"ref":"#% increased Damage for each type of Abyss Jewel affecting you","better":1,"matchers":[{"string":"자신에게 영향을 주는 심연 주얼 유형 하나당 피해 #% 증가"},{"string":"자신에게 영향을 주는 심연 주얼 유형 하나당 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_154272030"]}}} +{"ref":"#% increased Damage if Corrupted","better":1,"matchers":[{"string":"타락 시 피해 #% 증가"},{"string":"타락 시 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_767196662"]}}} +{"ref":"#% increased Damage if you have Consumed a corpse Recently","better":1,"matchers":[{"string":"최근 4초 이내 시신을 소모한 경우 피해 #% 증가"},{"string":"최근 4초 이내 시신을 소모한 경우 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2118708619"]}}} +{"ref":"#% increased Damage if you have Shocked an Enemy Recently","better":1,"matchers":[{"string":"최근 4초 이내 적을 감전시킨 경우 피해 #% 증가"},{"string":"최근 4초 이내 적을 감전시킨 경우 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_908650225"]}}} +{"ref":"#% increased Damage if you Summoned a Golem in the past 8 seconds","better":1,"matchers":[{"string":"지난 8초 이내에 골렘이 소환된 경우 피해 #% 증가"},{"string":"지난 8초 이내에 골렘이 소환된 경우 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3384291300"]}}} +{"ref":"#% increased Damage if you've been Ignited Recently","better":1,"matchers":[{"string":"최근 4초 이내 점화에 걸린 경우 피해 #% 증가"},{"string":"최근 4초 이내 점화에 걸린 경우 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_430821956"]}}} +{"ref":"#% increased Damage if you've Frozen an Enemy Recently","better":1,"matchers":[{"string":"최근 4초 이내 적을 동결한 경우 피해 #% 증가"},{"string":"최근 4초 이내 적을 동결한 경우 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1064477264"]}}} +{"ref":"#% increased Damage if you've Killed Recently","better":1,"matchers":[{"string":"최근 4초 이내 적을 처치한 경우 피해 #% 증가"},{"string":"최근 4초 이내 적을 처치한 경우 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1072119541"],"fractured":["fractured.stat_1072119541"]}}} +{"ref":"#% increased Damage on Burning Ground","better":1,"matchers":[{"string":"용암 지대에서 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3098087057"]}}} +{"ref":"#% increased Damage over Time","better":1,"matchers":[{"string":"지속 피해 #% 증가"},{"string":"지속 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_967627487"],"implicit":["implicit.stat_967627487"],"fractured":["fractured.stat_967627487"],"crafted":["crafted.stat_967627487"]}}} +{"ref":"#% increased Damage over Time while Dual Wielding","better":1,"matchers":[{"string":"쌍수 장착 시 지속 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_214001793"],"fractured":["fractured.stat_214001793"]}}} +{"ref":"#% increased Damage over Time while holding a Shield","better":1,"matchers":[{"string":"방패를 들고 있는 동안 지속 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1244360317"],"fractured":["fractured.stat_1244360317"]}}} +{"ref":"#% increased Damage over Time while wielding a Two Handed Weapon","better":1,"matchers":[{"string":"양손 무기 장착 시 지속 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_4193088553"],"fractured":["fractured.stat_4193088553"]}}} +{"ref":"#% increased Damage per 1% Chance to Block Attack Damage","better":1,"matchers":[{"string":"공격 피해 막기 확률 1%당 피해 #% 증가"},{"string":"공격 피해 막기 확률 1%당 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3400437584"],"fractured":["fractured.stat_3400437584"]}}} +{"ref":"#% increased Damage per 100 Dexterity","better":1,"matchers":[{"string":"민첩 100당 피해 #% 증가"},{"string":"민첩 100당 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_342670903"]}}} +{"ref":"#% increased Damage per 100 Intelligence","better":1,"matchers":[{"string":"지능 100당 피해 #% 증가"},{"string":"지능 100당 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3966666111"]}}} +{"ref":"#% increased Damage per 100 Strength","better":1,"matchers":[{"string":"힘 100당 피해 #% 증가"},{"string":"힘 100당 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4274080377"]}}} +{"ref":"#% increased Damage per 15 Dexterity","better":1,"matchers":[{"string":"민첩 15당 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2062174346"],"implicit":["implicit.stat_2062174346"],"fractured":["fractured.stat_2062174346"]}}} +{"ref":"#% increased Damage per 15 Intelligence","better":1,"matchers":[{"string":"지능 15당 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3801128794"],"implicit":["implicit.stat_3801128794"],"fractured":["fractured.stat_3801128794"]}}} +{"ref":"#% increased Damage per 15 Strength","better":1,"matchers":[{"string":"힘 15당 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3948776386"],"implicit":["implicit.stat_3948776386"],"fractured":["fractured.stat_3948776386"]}}} +{"ref":"#% increased Damage per 5 of your lowest Attribute","better":1,"matchers":[{"string":"가장 낮은 능력치 5당 피해 #% 증가"},{"string":"가장 낮은 능력치 5당 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_35476451"]}}} +{"ref":"#% increased Damage per Crab Barrier","better":1,"matchers":[{"string":"게의 방어막 하나당 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1019038967"]}}} +{"ref":"#% increased Damage per Curse on you","better":1,"matchers":[{"string":"플레이어에게 적용되는 저주 하나당 피해 #% 증가"},{"string":"플레이어에게 적용되는 저주 하나당 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1019020209"]}}} +{"ref":"#% increased Damage per Endurance Charge","better":1,"matchers":[{"string":"인내 충전 하나당 피해 #% 증가"},{"string":"인내 충전 하나당 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3515686789"],"implicit":["implicit.stat_3515686789"],"fractured":["fractured.stat_3515686789"],"crafted":["crafted.stat_3515686789"]}}} +{"ref":"#% increased Damage per Frenzy Charge","better":1,"matchers":[{"string":"격분 충전 하나당 피해 #% 증가"},{"string":"격분 충전 하나당 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_902747843"],"implicit":["implicit.stat_902747843"],"fractured":["fractured.stat_902747843"],"crafted":["crafted.stat_902747843"]}}} +{"ref":"#% increased Damage per Frenzy Charge with Hits against Enemies on Low Life","better":1,"matchers":[{"string":"격분 충전 하나당 낮은 생명력 상태의 적 적중 시 피해 #% 증가"},{"string":"격분 충전 하나당 낮은 생명력 상태의 적 적중 시 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1696792323"]}}} +{"ref":"#% increased Damage per Power Charge","better":1,"matchers":[{"string":"권능 충전 하나당 피해 #% 증가"},{"string":"권능 충전 하나당 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2034658008"],"implicit":["implicit.stat_2034658008"],"fractured":["fractured.stat_2034658008"],"crafted":["crafted.stat_2034658008"]}}} +{"ref":"#% increased Damage per Raised Zombie","better":1,"matchers":[{"string":"소환한 좀비 하나당 피해 #% 증가"},{"string":"소환한 좀비 하나당 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3868443508"]}}} +{"ref":"#% increased Damage taken","better":1,"matchers":[{"string":"받는 피해 #% 증가"},{"string":"받는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3691641145"]}}} +{"ref":"#% increased Damage taken from Ghosts","better":1,"matchers":[{"string":"유령에게 받는 피해 #% 증가"},{"string":"유령에게 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2156764291"]}}} +{"ref":"#% increased Damage taken from Skeletons","better":1,"matchers":[{"string":"해골에게 받는 피해 #% 증가"},{"string":"해골에게 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_705686721"]}}} +{"ref":"#% increased Damage taken if you've been Frozen Recently","better":1,"matchers":[{"string":"최근 4초 이내 동결된 경우 받는 피해 #% 증가"},{"string":"최근 4초 이내 동결된 경우 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3616645755"]}}} +{"ref":"#% increased Damage taken per 250 Dexterity","better":1,"matchers":[{"string":"민첩 250당 받는 피해 #% 증가"},{"string":"민첩 250당 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2477636501"]}}} +{"ref":"#% increased Damage taken per 250 Intelligence","better":1,"matchers":[{"string":"지능 250당 받는 피해 #% 증가"},{"string":"지능 250당 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3522931817"]}}} +{"ref":"#% increased Damage taken per 250 Strength","better":1,"matchers":[{"string":"힘 250당 받는 피해 #% 증가"},{"string":"힘 250당 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1443108510"]}}} +{"ref":"#% increased Damage taken per Frenzy Charge","better":1,"matchers":[{"string":"격분 충전 하나당 받는 피해 #% 증가"},{"string":"격분 충전 하나당 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1625103793"]}}} +{"ref":"#% increased Damage taken while on Full Energy Shield","better":1,"matchers":[{"string":"에너지 보호막이 최대일 때 받는 피해 #% 증가"},{"string":"에너지 보호막이 최대일 때 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_969865219"]}}} +{"ref":"#% increased Damage taken while on Full Life","better":1,"matchers":[{"string":"생명력이 최대일 때 받는 피해 #% 증가"},{"string":"생명력이 최대일 때 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"scourge":["scourge.stat_4091521421"]}}} +{"ref":"#% increased Damage taken while Phasing","better":1,"matchers":[{"string":"차원 능력 상태에서 받는 피해 #% 증가"},{"string":"차원 능력 상태에서 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_146268648"]}}} +{"ref":"#% increased Damage when on Full Life","better":1,"matchers":[{"string":"생명력이 최대일 때 피해 #% 증가"},{"string":"생명력이 최대일 때 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_592020238"],"fractured":["fractured.stat_592020238"]}}} +{"ref":"#% increased Damage when on Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태일 때 피해 #% 증가"},{"string":"낮은 생명력 상태일 때 적에게 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1513447578"]}}} +{"ref":"#% increased Damage while area is not in Lockdown\nPlayers deal #% increased Damage while area is not in Lockdown","better":1,"matchers":[{"string":"지역이 폐쇄 중이 아닐 때 피해 #% 증가\n지역이 폐쇄 중이 아닐 때 플레이어가 주는 피해 #% 증가"},{"string":"지역이 폐쇄 중이 아닐 때 피해 #% 감소\n지역이 폐쇄 중이 아닐 때 플레이어가 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1312481589"],"fractured":["fractured.stat_1312481589"]}}} +{"ref":"#% increased Damage while Ignited","better":1,"matchers":[{"string":"점화 상태에서 피해 #% 증가"},{"string":"점화 상태에서 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1686122637"]}}} +{"ref":"#% increased Damage while Leeching","better":1,"matchers":[{"string":"흡수하는 동안 피해 #% 증가"},{"string":"흡수하는 동안 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_310246444"],"implicit":["implicit.stat_310246444"],"fractured":["fractured.stat_310246444"],"crafted":["crafted.stat_310246444"]}}} +{"ref":"#% increased Damage while Leeching Life","better":1,"matchers":[{"string":"생명력을 흡수하는 동안 피해 #% 증가"},{"string":"생명력을 흡수하는 동안 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3591306273"]}}} +{"ref":"#% increased Damage while Leeching Mana","better":1,"matchers":[{"string":"마나를 흡수하는 동안 피해 #% 증가"},{"string":"마나를 흡수하는 동안 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1994684426"]}}} +{"ref":"#% increased Damage while on Consecrated Ground","better":1,"matchers":[{"string":"신성화 지대에 있는 동안 피해 #% 증가"},{"string":"신성화 지대에 있는 동안 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1704905020"]}}} +{"ref":"#% increased Damage while Shocked","better":1,"matchers":[{"string":"감전 상태일 때 피해 #% 증가"},{"string":"감전 상태일 때 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_529432426"]}}} +{"ref":"#% increased Damage while you have no Energy Shield","better":1,"matchers":[{"string":"에너지 보호막이 없는 동안 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_414379784"]}}} +{"ref":"#% increased Damage while you have no Frenzy Charges","better":1,"matchers":[{"string":"격분 충전이 없는 동안 피해 #% 증가"},{"string":"격분 충전이 없는 동안 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3905661226"]}}} +{"ref":"#% increased Damage with Ailments","better":1,"matchers":[{"string":"상태 이상 피해 #% 증가"},{"string":"상태 이상 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_690707482"],"implicit":["implicit.stat_690707482"],"fractured":["fractured.stat_690707482"]}}} +{"ref":"#% increased Damage with Ailments per Elder Item Equipped","better":1,"matchers":[{"string":"장착한 엘더 아이템 하나당 상태 이상 피해 #% 증가"},{"string":"장착한 엘더 아이템 하나당 상태 이상 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2418574586"]}}} +{"ref":"#% increased Damage with Axes","better":1,"matchers":[{"string":"도끼 사용 시 피해 #% 증가"},{"string":"도끼 사용 시 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3314142259"],"fractured":["fractured.stat_3314142259"]}}} +{"ref":"#% increased Damage with Bleeding","better":1,"matchers":[{"string":"출혈 피해 #% 증가"},{"string":"출혈 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1294118672"],"implicit":["implicit.stat_1294118672"],"fractured":["fractured.stat_1294118672"]}}} +{"ref":"#% increased Damage with Bleeding from Melee Weapons","better":1,"matchers":[{"string":"근접 무기로 유발한 출혈 피해 #% 증가"},{"string":"근접 무기로 유발한 출혈 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3660450649"]}}} +{"ref":"#% increased Damage with Bow Skills","better":1,"matchers":[{"string":"활 스킬로 주는 피해 #% 증가"},{"string":"활 스킬로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1241625305"],"fractured":["fractured.stat_1241625305"]}}} +{"ref":"#% increased Damage with Bows","better":1,"matchers":[{"string":"활 사용 시 피해 #% 증가"},{"string":"활 사용 시 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4188894176"],"fractured":["fractured.stat_4188894176"]}}} +{"ref":"#% increased Damage with Claws","better":1,"matchers":[{"string":"클로 사용 시 피해 #% 증가"},{"string":"클로 사용 시 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1069260037"],"fractured":["fractured.stat_1069260037"]}}} +{"ref":"#% increased Damage with Claws while on Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태일 때 클로 사용 시 피해 #% 증가"},{"string":"낮은 생명력 상태일 때 클로 사용 시 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1629782265"]}}} +{"ref":"#% increased Damage with Daggers","better":1,"matchers":[{"string":"단검 사용 시 피해 #% 증가"},{"string":"단검 사용 시 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3586984690"],"fractured":["fractured.stat_3586984690"]}}} +{"ref":"#% increased Damage with Hits against Chilled Enemies","better":1,"matchers":[{"string":"냉각된 적 명중 시 피해 #% 증가"},{"string":"냉각된 적 명중 시 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2805714016"],"fractured":["fractured.stat_2805714016"]}}} +{"ref":"#% increased Damage with Hits against Enemies on Full Life","better":1,"matchers":[{"string":"생명력이 최대인 적 명중 시 피해 #% 증가"},{"string":"생명력이 최대인 적 명중 시 피해 #% 증가\n생명력이 최대인 적 명중 시 플레이어가 주는 피해 #% 증가"},{"string":"생명력이 최대인 적 명중 시 피해 #% 감소","negate":true},{"string":"생명력이 최대인 적 명중 시 피해 #% 감소\n생명력이 최대인 적 명중 시 플레이어가 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3708045494"],"fractured":["fractured.stat_3708045494"]}}} +{"ref":"#% increased Damage with Hits against Frozen Enemies","better":1,"matchers":[{"string":"동결된 적 명중 시 피해 #% 증가"},{"string":"동결된 적 명중 시 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1196902248"]}}} +{"ref":"#% increased Damage with Hits against Magic monsters","better":1,"matchers":[{"string":"마법 몬스터 적중 시 피해 #% 증가"},{"string":"마법 몬스터 적중 시 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1278047991"]}}} +{"ref":"#% increased Damage with Hits against Rare monsters","better":1,"matchers":[{"string":"희귀 몬스터 명중 시 피해 #% 증가"},{"string":"희귀 몬스터 명중 시 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2137878565"]}}} +{"ref":"#% increased Damage with Hits against Shocked Enemies","better":1,"matchers":[{"string":"감전된 적 명중 시 피해 #% 증가"},{"string":"감전된 적 명중 시 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4194900521"]}}} +{"ref":"#% increased Damage with Hits and Ailments against Abyssal Monsters","better":1,"matchers":[{"string":"심연 몬스터에 대한 명중 및 상태 이상 피해 #% 증가"},{"string":"심연 몬스터에 대한 명중 및 상태 이상 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3257279374"],"implicit":["implicit.stat_3257279374"],"fractured":["fractured.stat_3257279374"]}}} +{"ref":"#% increased Damage with Hits and Ailments against Bleeding Enemies","better":1,"matchers":[{"string":"출혈 중인 적에 대한 적중 및 상태 이상 피해 #% 증가"},{"string":"출혈 중인 적에 대한 적중 및 상태 이상 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1790172543"]}}} +{"ref":"#% increased Damage with Hits and Ailments against Blinded Enemies","better":1,"matchers":[{"string":"실명된 적에 대한 적중 및 상태 이상 피해 #% 증가"},{"string":"실명된 적에 대한 적중 및 상태 이상 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3503466234","explicit.stat_3565956680"]}}} +{"ref":"#% increased Damage with Hits and Ailments against Chilled Enemies","better":1,"matchers":[{"string":"냉각된 적에 대한 적중 및 상태 이상 피해 #% 증가"},{"string":"냉각된 적에 대한 적중 및 상태 이상 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3747189159"]}}} +{"ref":"#% increased Damage with Hits and Ailments against Cursed Enemies","better":1,"matchers":[{"string":"저주 받은 적에 대한 적중 및 상태 이상 피해 #% 증가"},{"string":"저주 받은 적에 대한 적중 및 상태 이상 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_539970476"],"fractured":["fractured.stat_539970476"]}}} +{"ref":"#% increased Damage with Hits and Ailments against Enemies affected by 3 Spider's Webs","better":1,"matchers":[{"string":"거미줄 3개에 영향을 받는 적에 대한 적중 및 상태 이상 피해 #% 증가"},{"string":"거미줄 3개에 영향을 받는 적에 대한 적중 및 상태 이상 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_103928310"]}}} +{"ref":"#% increased Damage with Hits and Ailments against Hindered Enemies","better":1,"matchers":[{"string":"이동 방해를 받는 적에 대한 적중 및 상태 이상 피해 #% 증가"},{"string":"이동 방해를 받는 적에 대한 적중 및 상태 이상 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_528422616"]}}} +{"ref":"#% increased Damage with Hits and Ailments against Ignited Enemies","better":1,"matchers":[{"string":"점화된 적에 대한 명중 및 상태 이상 피해 #% 증가"},{"string":"점화된 적에 대한 명중 및 상태 이상 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_485151258"]}}} +{"ref":"#% increased Damage with Hits and Ailments against Marked Enemy","better":1,"matchers":[{"string":"징표가 찍힌 적에 대한 적중 및 상태 이상 피해 #% 증가"},{"string":"징표가 찍힌 적에 대한 적중 및 상태 이상 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2001747092"]}}} +{"ref":"#% increased Damage with Hits and Ailments per Curse on Enemy","better":1,"matchers":[{"string":"적에게 걸린 저주 하나당 적중 피해 및 상태 이상 피해 #% 증가"},{"string":"적에게 걸린 저주 하나당 적중 피해 및 상태 이상 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1818773442"],"fractured":["fractured.stat_1818773442"]}}} +{"ref":"#% increased Damage with Ignite from Melee Weapons","better":1,"matchers":[{"string":"근접 무기로 유발하는 점화의 피해 #% 증가"},{"string":"근접 무기로 유발하는 점화의 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3935936274"]}}} +{"ref":"#% increased Damage with Ignite inflicted on Chilled Enemies","better":1,"matchers":[{"string":"냉각된 적에게 주는 점화 피해 #% 증가"},{"string":"냉각된 적에게 주는 점화 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1891782369"]}}} +{"ref":"#% increased Damage with Maces or Sceptres","better":1,"matchers":[{"string":"철퇴나 셉터 사용 시 피해 #% 증가"},{"string":"철퇴나 셉터 사용 시 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1181419800"],"fractured":["fractured.stat_1181419800"]}}} +{"ref":"#% increased Damage with Movement Skills","better":1,"matchers":[{"string":"이동 스킬 피해 #% 증가"},{"string":"이동 스킬 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_856021430"]}}} +{"ref":"#% increased Damage with Non-Vaal Skills during Soul Gain Prevention","better":1,"matchers":[{"string":"영혼 획득 방지 도중 비-바알 스킬로 주는 피해 #% 증가"},{"string":"영혼 획득 방지 도중 비-바알 스킬로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1583385065"],"fractured":["fractured.stat_1583385065"],"crafted":["crafted.stat_1583385065"]}}} +{"ref":"#% increased Damage with One Handed Weapons","better":1,"matchers":[{"string":"한손 무기 피해 #% 증가"},{"string":"한손 무기 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1010549321"],"fractured":["fractured.stat_1010549321"]}}} +{"ref":"#% increased Damage with Poison","better":1,"matchers":[{"string":"중독 피해 #% 증가"},{"string":"중독 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1290399200"],"implicit":["implicit.stat_1290399200"],"fractured":["fractured.stat_1290399200"]}}} +{"ref":"#% increased Damage with Poison from Melee Weapons","better":1,"matchers":[{"string":"근접 무기로 유발하는 중독의 피해 #% 증가"},{"string":"근접 무기로 유발하는 중독의 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_776174407"]}}} +{"ref":"#% increased Damage with Poison if you have at least 300 Dexterity","better":1,"matchers":[{"string":"민첩이 300 이상인 경우 중독 피해 #% 증가"},{"string":"민첩이 300 이상인 경우 중독 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_256730087"]}}} +{"ref":"#% increased Damage with Poison per Frenzy Charge","better":1,"matchers":[{"string":"격분 충전 하나당 중독 피해 #% 증가"},{"string":"격분 충전 하나당 중독 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1221011086"]}}} +{"ref":"#% increased Damage with Poison per Power Charge","better":1,"matchers":[{"string":"권능 충전 하나당 중독 피해 #% 증가"},{"string":"권능 충전 하나당 중독 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4230767876"]}}} +{"ref":"#% increased Damage with Staves","better":1,"matchers":[{"string":"지팡이 사용 시 피해 #% 증가"},{"string":"지팡이 사용 시 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4087089130"],"fractured":["fractured.stat_4087089130"]}}} +{"ref":"#% increased Damage with Swords","better":1,"matchers":[{"string":"검 사용 시 피해 #% 증가"},{"string":"검 사용 시 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_83050999"],"fractured":["fractured.stat_83050999"]}}} +{"ref":"#% increased Damage with Two Handed Weapons","better":1,"matchers":[{"string":"양손 무기 피해 #% 증가"},{"string":"양손 무기 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1836374041"],"fractured":["fractured.stat_1836374041"]}}} +{"ref":"#% increased Damage with Vaal Skills","better":1,"matchers":[{"string":"바알 스킬로 주는 피해 #% 증가"},{"string":"바알 스킬로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2257141320"],"implicit":["implicit.stat_2257141320"],"fractured":["fractured.stat_2257141320"],"crafted":["crafted.stat_2257141320"]}}} +{"ref":"#% increased Damage with Vaal Skills during effect","better":1,"matchers":[{"string":"효과를 받는 동안 바알 스킬로 주는 피해 #% 증가"},{"string":"효과를 받는 동안 바알 스킬로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4067144129"]}}} +{"ref":"#% increased Damage with Wands","better":1,"matchers":[{"string":"마법봉 피해 #% 증가"},{"string":"마법봉 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_379328644"],"fractured":["fractured.stat_379328644"]}}} +{"ref":"#% increased Dark Pact Area of Effect","better":1,"matchers":[{"string":"어둠의 서약 효과 범위 #% 증가"},{"string":"어둠의 서약 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_957864706"]}}} +{"ref":"#% increased Dark Pact Cast Speed","better":1,"matchers":[{"string":"어둠의 서약 시전 속도 #% 증가"},{"string":"어둠의 서약 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1549594869"]}}} +{"ref":"#% increased Dark Pact Damage","better":1,"matchers":[{"string":"어둠의 서약 피해 #% 증가"},{"string":"어둠의 서약 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1573799461"]}}} +{"ref":"#% increased Deception Experience gained","better":1,"matchers":[{"string":"기만 경험치 획득량 #% 증가"},{"string":"기만 경험치 획득량 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2678065384"],"fractured":["fractured.stat_2678065384"]}}} +{"ref":"#% increased Deception speed","better":1,"matchers":[{"string":"기만 속도 #% 증가"},{"string":"기만 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2520458995"],"implicit":["implicit.stat_2520458995"],"fractured":["fractured.stat_2520458995"]}}} +{"ref":"#% increased Decoy Totem Area of Effect","better":1,"matchers":[{"string":"미끼 토템 효과 범위 #% 증가"},{"string":"미끼 토템 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1686675991"]}}} +{"ref":"#% increased Decoy Totem Life","better":1,"matchers":[{"string":"미끼 토템 생명력 #% 증가"},{"string":"미끼 토템 생명력 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1631824124"]}}} +{"ref":"#% increased Defences from Equipped Shield","better":1,"matchers":[{"string":"장착한 방패로 얻는 방어력 #% 증가"},{"string":"장착한 방패로 얻는 방어력 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1215155013"]}}} +{"ref":"#% increased Defences from Equipped Shield per 10 Devotion","better":1,"matchers":[{"string":"헌신 10당 장착한 방패로 얻는 방어력 #% 증가"},{"string":"헌신 10당 장착한 방패로 얻는 방어력 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2803981661"]}}} +{"ref":"#% increased Demolition Experience gained","better":1,"matchers":[{"string":"파괴 공작 경험치 획득량 #% 증가"},{"string":"파괴 공작 경험치 획득량 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1492314881"],"fractured":["fractured.stat_1492314881"]}}} +{"ref":"#% increased Demolition speed","better":1,"matchers":[{"string":"파괴 공작 속도 #% 증가"},{"string":"파괴 공작 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2847917427"],"implicit":["implicit.stat_2847917427"],"fractured":["fractured.stat_2847917427"]}}} +{"ref":"#% increased Despair Curse Effect","better":1,"matchers":[{"string":"절망의 저주 효과 #% 증가"},{"string":"절망의 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3185156108"],"enchant":["enchant.stat_3185156108"]}}} +{"ref":"#% increased Despair Duration","better":1,"matchers":[{"string":"절망 지속시간 #% 증가"},{"string":"절망 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_683073695"]}}} +{"ref":"#% increased Destructive Link Duration","better":1,"matchers":[{"string":"파괴의 연결 지속시간 #% 증가"},{"string":"파괴의 연결 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_728213819"]}}} +{"ref":"#% increased Detonate Dead Area of Effect","better":1,"matchers":[{"string":"시체 폭발 효과 범위 #% 증가"},{"string":"시체 폭발 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_482660590"]}}} +{"ref":"#% increased Detonate Dead Damage","better":1,"matchers":[{"string":"시체 폭발 피해 #% 증가"},{"string":"시체 폭발 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3087527696"]}}} +{"ref":"#% increased Devouring Totem Leech per second","better":1,"matchers":[{"string":"1초마다 포식 토템 흡수 #% 증가"},{"string":"1초마다 포식 토템 흡수 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3317752680"]}}} +{"ref":"#% increased Dexterity","better":1,"matchers":[{"string":"민첩 #% 증가"},{"string":"민첩 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4139681126"],"implicit":["implicit.stat_4139681126"],"fractured":["fractured.stat_4139681126"],"scourge":["scourge.stat_4139681126"]}}} +{"ref":"#% increased Dexterity if Strength is higher than Intelligence","better":1,"matchers":[{"string":"힘이 지능보다 높은 경우 민첩 #% 증가"},{"string":"힘이 지능보다 높은 경우 민첩 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2022724400"]}}} +{"ref":"#% increased Discharge Damage","better":1,"matchers":[{"string":"방출 피해 #% 증가"},{"string":"방출 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1935930829"]}}} +{"ref":"#% increased Double Strike Attack Speed","better":1,"matchers":[{"string":"이중 타격 공격 속도 #% 증가"},{"string":"이중 타격 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2779309910"]}}} +{"ref":"#% increased Double Strike Critical Strike Chance","better":1,"matchers":[{"string":"이중 타격 치명타 확률 #% 증가"},{"string":"이중 타격 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1201942540"]}}} +{"ref":"#% increased Double Strike Damage","better":1,"matchers":[{"string":"이중 타격 피해 #% 증가"},{"string":"이중 타격 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1809965314"]}}} +{"ref":"#% increased Dual Strike Attack Speed","better":1,"matchers":[{"string":"쌍수 타격 공격 속도 #% 증가"},{"string":"쌍수 타격 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1917107304"]}}} +{"ref":"#% increased Dual Strike Critical Strike Chance","better":1,"matchers":[{"string":"쌍수 타격 치명타 확률 #% 증가"},{"string":"쌍수 타격 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2729530556"]}}} +{"ref":"#% increased Dual Strike Damage","better":1,"matchers":[{"string":"쌍수 타격 피해 #% 증가"},{"string":"쌍수 타격 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2094069860"]}}} +{"ref":"#% increased Duration","better":1,"matchers":[{"string":"지속시간 #% 증가"},{"string":"지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1256719186"],"fractured":["fractured.stat_1256719186"],"enchant":["enchant.stat_1256719186"]}}} +{"ref":"#% increased Duration of Ailments on Enemies","better":1,"matchers":[{"string":"적에게 적용되는 상태 이상 지속시간 #% 증가"},{"string":"적에게 적용되는 상태 이상 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2419712247"],"implicit":["implicit.stat_2419712247"],"fractured":["fractured.stat_2419712247"],"scourge":["scourge.stat_2419712247"]}}} +{"ref":"#% increased Duration of Ailments you inflict while Focused","better":1,"matchers":[{"string":"집중하는 동안 적에게 유발한 상태 이상 지속시간 #% 증가"},{"string":"집중하는 동안 적에게 유발한 상태 이상 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1840751341"],"fractured":["fractured.stat_1840751341"],"crafted":["crafted.stat_1840751341"]}}} +{"ref":"#% increased Duration of Cold Ailments","better":1,"matchers":[{"string":"냉기 상태 이상 지속시간 #% 증가"},{"string":"냉기 상태 이상 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3571964448"],"fractured":["fractured.stat_3571964448"]}}} +{"ref":"#% increased Duration of Curses on you","better":1,"matchers":[{"string":"플레이어에게 적용되는 저주 지속시간 #% 증가"},{"string":"플레이어에게 적용되는 저주 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2920970371"]}}} +{"ref":"#% increased Duration of Curses on you per 10 Devotion","better":1,"matchers":[{"string":"헌신 10당 플레이어에게 적용되는 저주 지속시간 #% 증가"},{"string":"헌신 10당 플레이어가에게 적용된 저주 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4235333770"]}}} +{"ref":"#% increased Duration of Elemental Ailments from Melee Weapon Attacks","better":1,"matchers":[{"string":"근접 무기 공격으로 유발하는 원소 상태 이상의 지속시간 #% 증가"},{"string":"근접 무기 공격으로 유발하는 원소 상태 이상의 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3284469689"]}}} +{"ref":"#% increased Duration of Elemental Ailments on Enemies","better":1,"matchers":[{"string":"적에게 적용되는 원소 상태 이상 지속시간 #% 증가"},{"string":"적에게 적용되는 원소 상태 이상 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2604619892"]}}} +{"ref":"#% increased Duration of Elemental Ailments on You while affected by a Rare Abyss Jewel","better":1,"matchers":[{"string":"희귀 심연 주얼의 영향을 받는 동안 플레이어에게 적용되는 원소 상태 이상 지속시간 #% 증가"},{"string":"희귀 심연 주얼의 영향을 받는 동안 플레이어에게 적용되는 원소 상태 이상 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_287112619"]}}} +{"ref":"#% increased Duration of Lightning Ailments","better":1,"matchers":[{"string":"번개 상태 이상 지속시간 #% 증가"},{"string":"번개 상태 이상 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1484471543"]}}} +{"ref":"#% increased Duration of Poisons you inflict during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 플레이어가 유발한 중독 지속시간 #% 증가"},{"string":"효과를 받는 동안 플레이어가 유발한 중독 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_510304734"]}}} +{"ref":"#% increased Duration of Shrine Effects on you","better":1,"matchers":[{"string":"자신에게 적용되는 성소 효과 지속시간 #% 증가"},{"string":"자신에게 적용되는 성소 효과 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1877661946"]}}} +{"ref":"#% increased Earthquake Area of Effect","better":1,"matchers":[{"string":"지진 효과 범위 #% 증가"},{"string":"지진 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_684174846"]}}} +{"ref":"#% increased Earthquake Damage","better":1,"matchers":[{"string":"지진 피해 #% 증가"},{"string":"지진 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1697080607"]}}} +{"ref":"#% increased effect","better":1,"matchers":[{"string":"효과 #% 증가"},{"string":"효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2448920197","explicit.stat_3529940209"],"fractured":["fractured.stat_2448920197"],"enchant":["enchant.stat_2448920197"]}}} +{"ref":"#% increased Effect of Arcane Surge on you","better":1,"matchers":[{"string":"자신에게 적용되는 비전 쇄도 효과 #% 증가"},{"string":"자신에게 적용되는 비전 쇄도 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3015437071"],"implicit":["implicit.stat_3015437071"],"fractured":["fractured.stat_3015437071"]}}} +{"ref":"#% increased Effect of Arcane Surge on you per\nHypnotic Eye Jewel affecting you, up to a maximum of 40%","better":1,"matchers":[{"string":"자신에게 영향을 주는 최면 거는 눈 주얼 하나당\n자신에게 적용되는 비전 쇄도 효과 #% 증가, 최대 40%"},{"string":"자신에게 영향을 주는 최면 거는 눈 주얼 하나당\n자신에게 적용되는 비전 쇄도 효과 #%씩 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1012072406"]}}} +{"ref":"#% increased Effect of Arcane Surge on you while affected by Clarity","better":1,"matchers":[{"string":"명상의 영향을 받는 동안 자신에게 적용되는 비전 쇄도의 효과 #% 증가"},{"string":"명상의 영향을 받는 동안 자신에게 적용되는 비전 쇄도의 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1808477254"]}}} +{"ref":"#% increased Effect of Auras from Mines","better":1,"matchers":[{"string":"지뢰의 오라 효과 #% 증가"},{"string":"지뢰의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2121424530"]}}} +{"ref":"#% increased Effect of Blind from Melee Weapons","better":1,"matchers":[{"string":"근접 무기로 유발한 실명 효과 #% 증가"},{"string":"근접 무기로 유발한 실명 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1808507379"]}}} +{"ref":"#% increased Effect of Buffs granted by Socketed Golem Skills","better":1,"matchers":[{"string":"장착된 골렘 스킬로 얻는 버프 효과 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2813516522"]}}} +{"ref":"#% increased Effect of Buffs granted by your Golems","better":1,"matchers":[{"string":"골렘이 제공하는 버프 효과 #% 증가"},{"string":"골렘이 제공하는 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2109043683"],"implicit":["implicit.stat_2109043683"]}}} +{"ref":"#% increased Effect of Buffs on you","better":1,"matchers":[{"string":"플레이어에게 적용되는 버프 효과 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_306104305"]}}} +{"ref":"#% increased Effect of Chill and Shock on you","better":-1,"matchers":[{"string":"플레이어에게 적용되는 냉각 및 감전 효과 #% 증가"},{"string":"플레이어에게 적용되는 냉각 및 감전 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1984113628"],"fractured":["fractured.stat_1984113628"],"crafted":["crafted.stat_1984113628"]}}} +{"ref":"#% increased Effect of Chill from Melee Weapons","better":1,"matchers":[{"string":"근접 무기로 유발하는 냉각 효과 #% 증가"},{"string":"근접 무기로 유발하는 냉각 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3296814491"]}}} +{"ref":"#% increased Effect of Chilled Ground","better":1,"matchers":[{"string":"얼음 지대 효과 #% 증가"},{"string":"얼음 지대 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2134166669"]}}} +{"ref":"#% increased Effect of Chills you inflict while Leeching Mana","better":1,"matchers":[{"string":"마나 흡수 중에 유발한 냉각 효과 #% 증가"},{"string":"마나 흡수 중에 유발한 냉각 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_898270877"]}}} +{"ref":"#% increased Effect of Cold Ailments","better":1,"matchers":[{"string":"냉기 상태 이상 효과 #% 증가"},{"string":"냉기 상태 이상 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1793818220"],"implicit":["implicit.stat_1793818220"],"fractured":["fractured.stat_1793818220"]}}} +{"ref":"#% increased Effect of Curses applied by Bane","better":1,"matchers":[{"string":"파멸의 저주 효과 #% 증가"},{"string":"파멸의 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2843908086"]}}} +{"ref":"#% increased Effect of Curses on Monsters","better":1,"fromUberAreaMods":true,"matchers":[{"string":"몬스터에게 걸리는 저주 효과 #% 증가"},{"string":"몬스터에게 걸리는 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1661698405"],"fractured":["fractured.stat_1661698405"]}}} +{"ref":"#% increased Effect of Curses on you while on Consecrated Ground","better":-1,"matchers":[{"string":"신성화 지대에 있는 동안 플레이어에게 적용되는 저주 효과 #% 증가"},{"string":"신성화 지대에 있는 동안 플레이어에게 적용되는 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3444629796"],"fractured":["fractured.stat_3444629796"],"enchant":["enchant.stat_3444629796"]}}} +{"ref":"#% increased Effect of Elusive on you per Power Charge","better":1,"matchers":[{"string":"권능 충전 하나당 자신의 도피 효과 #% 증가"},{"string":"권능 충전 하나당 자신의 도피 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3545269928"]}}} +{"ref":"#% increased Effect of Freeze on you","better":-1,"matchers":[{"string":"플레이어에게 적용되는 동결 효과 #% 증가"},{"string":"플레이어에게 적용되는 동결 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2069161757"],"crafted":["crafted.stat_2069161757"]}}} +{"ref":"#% increased Effect of Impales inflicted with Spells","better":1,"matchers":[{"string":"주문으로 유발되는 꿰뚫기의 효과 #% 증가"},{"string":"주문으로 유발되는 꿰뚫기의 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1480595847"]}}} +{"ref":"#% increased Effect of Lightning Ailments","better":1,"matchers":[{"string":"번개 상태 이상 효과 #% 증가"},{"string":"번개 상태 이상 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3081816887"],"fractured":["fractured.stat_3081816887"]}}} +{"ref":"#% increased effect of Non-Curse Auras from your Skills","better":1,"matchers":[{"string":"자신의 비-저주 오라 스킬 효과 #% 증가"},{"string":"자신의 비-저주 오라 스킬 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1880071428"],"implicit":["implicit.stat_1880071428"],"fractured":["fractured.stat_1880071428"],"scourge":["scourge.stat_1880071428"]}}} +{"ref":"#% increased Effect of Non-Curse Auras from your Skills on Enemies","better":1,"matchers":[{"string":"적에게 적용되는 플레이어의 비-저주 오라 스킬 효과 #% 증가"},{"string":"적에게 적용되는 플레이어의 비-저주 오라 스킬 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1636209393"],"fractured":["fractured.stat_1636209393"]}}} +{"ref":"#% increased effect of Non-Curse Auras from your Skills on your Minions","better":1,"matchers":[{"string":"자신의 소환수에게 적용된 자신의 비-저주 오라 스킬 효과 #% 증가"},{"string":"자신의 소환수에게 적용된 자신의 비-저주 오라 스킬 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_634031003"]}}} +{"ref":"#% increased Effect of Non-Curse Auras from your Skills while you have a Linked Target","better":1,"matchers":[{"string":"연결된 대상이 있는 동안 자신의 비-저주 오라 스킬 효과 #% 증가"},{"string":"연결된 대상이 있는 동안 자신의 비-저주 오라 스킬 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3995650818"]}}} +{"ref":"#% increased effect of Non-Curse Auras per 10 Devotion","better":1,"matchers":[{"string":"헌신 10당 비-저주 오라 효과 #% 증가"},{"string":"헌신 10당 비-저주 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2585926696"]}}} +{"ref":"#% increased Effect of Non-Damaging Ailments","better":1,"matchers":[{"string":"비-피해 상태 이상 효과 #% 증가"},{"string":"비-피해 상태 이상 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_782230869"],"implicit":["implicit.stat_782230869"],"fractured":["fractured.stat_782230869"],"scourge":["scourge.stat_782230869"],"crafted":["crafted.stat_782230869"]}}} +{"ref":"#% increased Effect of non-Damaging Ailments on Enemies per 10 Devotion","better":1,"matchers":[{"string":"헌신 10당 적에게 적용되는 비-피해 상태 이상 효과 #% 증가"},{"string":"헌신 10당 적에게 적용되는 비-피해 상태 이상 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1810368194"]}}} +{"ref":"#% increased Effect of Non-Damaging Ailments per Elder Item Equipped","better":1,"matchers":[{"string":"장착한 엘더 아이템 하나당 비-피해 상태 이상 효과 #% 증가"},{"string":"장착한 엘더 아이템 하나당 비-피해 상태 이상 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4133552694"]}}} +{"ref":"#% increased Effect of Non-Damaging Ailments you inflict during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 플레이어가 유발하는 비-피해 상태 이상 효과 #% 감소"},{"string":"효과를 받는 동안 플레이어가 유발하는 비-피해 상태 이상 효과 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1122693835"]}}} +{"ref":"#% increased Effect of non-Damaging Ailments you inflict with Critical Strikes","better":1,"matchers":[{"string":"치명타로 유발한 비-피해 상태 이상 효과 #% 증가"},{"string":"치명타로 유발한 비-피해 상태 이상 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3772078232"]}}} +{"ref":"#% increased Effect of non-Keystone Passive Skills in Radius","better":1,"matchers":[{"string":"반경 내 비-핵심노드 패시브 스킬 효과 #% 증가"},{"string":"반경 내 비-핵심노드 패시브 스킬 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_607548408"]}}} +{"ref":"#% increased Effect of Onslaught on you","better":1,"matchers":[{"string":"플레이어에게 적용되는 맹공 효과 #% 증가"},{"string":"플레이어에게 적용되는 맹공 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3151397056"],"implicit":["implicit.stat_3151397056"],"fractured":["fractured.stat_3151397056"]}}} +{"ref":"#% increased Effect of Scorch","better":1,"matchers":[{"string":"그을림 효과 #% 증가"},{"string":"그을림 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_344570534"]}}} +{"ref":"#% increased Effect of Shock","better":1,"matchers":[{"string":"감전 효과 #% 증가"},{"string":"감전 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2527686725"],"implicit":["implicit.stat_2527686725"],"fractured":["fractured.stat_2527686725"]}}} +{"ref":"#% increased Effect of Shock from Melee Weapons","better":1,"matchers":[{"string":"근접 무기로 유발하는 감전의 효과 #% 증가"},{"string":"근접 무기로 유발하는 감전의 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2245266924"]}}} +{"ref":"#% increased Effect of Shock on you during Effect","better":-1,"matchers":[{"string":"효과를 받는 동안 플레이어에게 적용되는 감전 효과 #% 증가"},{"string":"효과를 받는 동안 플레이어에게 적용되는 감전 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1878455805"],"fractured":["fractured.stat_1878455805"]}}} +{"ref":"#% increased Effect of Shocks you inflict during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 유발하는 감전 효과 #% 증가"},{"string":"효과를 받는 동안 유발하는 감전 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3338065776"]}}} +{"ref":"#% increased Effect of Shocks you inflict while Leeching Energy Shield","better":1,"matchers":[{"string":"에너지 보호막 흡수 중에 유발한 감전 효과 #% 증가"},{"string":"에너지 보호막 흡수 중에 유발한 감전 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3578946428"]}}} +{"ref":"#% increased Effect of Shrine Buffs on you","better":1,"matchers":[{"string":"자신에게 적용되는 성소 버프 효과 #% 증가"},{"string":"자신에게 적용되는 성소 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1939175721"]}}} +{"ref":"#% increased Effect of Socketed Abyss Jewels","better":1,"matchers":[{"string":"장착된 심연 주얼의 효과 #% 증가"},{"string":"장착된 심연 주얼의 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1482572705"],"implicit":["implicit.stat_1482572705"]}}} +{"ref":"#% increased Effect of Tailwind on you","better":1,"matchers":[{"string":"플레이어에게 적용되는 순풍 효과 #% 증가"},{"string":"플레이어에게 적용되는 순풍 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2172944497"]}}} +{"ref":"#% increased effect of Tattoos in Radius","better":1,"matchers":[{"string":"반경 내 문신의 효과 #% 증가"},{"string":"반경 내 문신의 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4149388787"]}}} +{"ref":"#% increased Effect of the Buff granted by your Carrion Golems","better":1,"matchers":[{"string":"부패 골렘이 제공하는 버프 효과 #% 증가"},{"string":"부패 골렘이 제공하는 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2420972973"],"enchant":["enchant.stat_2420972973"]}}} +{"ref":"#% increased Effect of the Buff granted by your Chaos Golems","better":1,"matchers":[{"string":"카오스 골렘의 버프 효과 #% 증가"},{"string":"카오스 골렘의 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1648511635"],"enchant":["enchant.stat_1648511635"]}}} +{"ref":"#% increased Effect of the Buff granted by your Flame Golems","better":1,"matchers":[{"string":"화염 골렘이 제공하는 버프 효과 #% 증가"},{"string":"화염 골렘이 제공하는 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_269930125"],"enchant":["enchant.stat_269930125"]}}} +{"ref":"#% increased Effect of the Buff granted by your Ice Golems","better":1,"matchers":[{"string":"얼음 골렘이 제공하는 버프 효과 #% 증가"},{"string":"얼음 골렘이 제공하는 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2250111474"],"enchant":["enchant.stat_2250111474"]}}} +{"ref":"#% increased Effect of the Buff granted by your Lightning Golems","better":1,"matchers":[{"string":"번개 골렘이 제공하는 버프 효과 #% 증가"},{"string":"번개 골렘이 제공하는 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2527931375"],"enchant":["enchant.stat_2527931375"]}}} +{"ref":"#% increased Effect of the Buff granted by your Stone Golems","better":1,"matchers":[{"string":"돌 골렘이 제공하는 버프 효과 #% 증가"},{"string":"돌 골렘이 제공하는 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2284801675"],"enchant":["enchant.stat_2284801675"]}}} +{"ref":"#% increased Effect of Withered","better":1,"matchers":[{"string":"위축 효과 #% 증가"},{"string":"위축 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2545584555"]}}} +{"ref":"#% increased Effect of your Curses","better":1,"matchers":[{"string":"플레이어가 시전하는 저주 효과 #% 증가"},{"string":"플레이어가 시전하는 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2353576063"],"implicit":["implicit.stat_2353576063"],"fractured":["fractured.stat_2353576063"],"scourge":["scourge.stat_2353576063"],"crafted":["crafted.stat_2353576063"]}}} +{"ref":"#% increased Effect of your Marks","better":1,"matchers":[{"string":"플레이어의 징표 효과 #% 증가"},{"string":"플레이어의 징표 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_803185500"],"implicit":["implicit.stat_803185500"],"fractured":["fractured.stat_803185500"]}}} +{"ref":"#% increased Elemental Damage","better":1,"matchers":[{"string":"원소 피해 #% 증가"},{"string":"원소 피해 #% 감소","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_elemental_damage"],"explicit":["explicit.stat_3141070085"],"implicit":["implicit.stat_3141070085"],"fractured":["fractured.stat_3141070085"],"enchant":["enchant.stat_692420067"],"scourge":["scourge.stat_3141070085"]}}} +{"ref":"#% increased Elemental Damage during any Flask Effect","better":1,"matchers":[{"string":"아무 플라스크나 효과를 받는 동안 원소 피해 #% 증가"},{"string":"아무 플라스크나 효과를 받는 동안 원소 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3150967823"]}}} +{"ref":"#% increased Elemental Damage if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"최근 4초 이내 치명타 명중 시 원소 피해 #% 증가"},{"string":"최근 4초 이내 치명타 명중 시 원소 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2379781920"],"fractured":["fractured.stat_2379781920"],"crafted":["crafted.stat_2379781920"]}}} +{"ref":"#% increased Elemental Damage if you've Warcried Recently","better":1,"matchers":[{"string":"최근 4초 이내 함성을 사용한 경우 원소 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2803182108"]}}} +{"ref":"#% increased Elemental Damage per 10 Devotion","better":1,"matchers":[{"string":"헌신 10당 원소 피해 #% 증가"},{"string":"헌신 10당 원소 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3103189267"]}}} +{"ref":"#% increased Elemental Damage per 10 Dexterity","better":1,"matchers":[{"string":"민첩 10당 원소 피해 #% 증가"},{"string":"민첩 10당 원소 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_963261439"]}}} +{"ref":"#% increased Elemental Damage per Frenzy Charge","better":1,"matchers":[{"string":"격분 충전 하나당 원소 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1586440250"]}}} +{"ref":"#% increased Elemental Damage per Grand Spectrum","better":1,"matchers":[{"string":"장대한 파장(Grand Spectrum) 하나당 원소 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3163738488"]}}} +{"ref":"#% increased Elemental Damage per Level","better":1,"matchers":[{"string":"1레벨당 원소 피해 #% 증가"},{"string":"1레벨당 원소 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2094646950"]}}} +{"ref":"#% increased Elemental Damage per Power charge","better":1,"matchers":[{"string":"권능 충전 하나당 원소 피해 #% 증가"},{"string":"권능 충전 하나당 원소 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1482070333"]}}} +{"ref":"#% increased Elemental Damage taken","better":-1,"matchers":[{"string":"받는 원소 피해 #% 증가"},{"string":"받는 원소 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2734809852"]}}} +{"ref":"#% increased Elemental Damage with Attack Skills","better":1,"matchers":[{"string":"공격 스킬의 원소 피해 #% 증가"},{"string":"공격 스킬의 원소 피해 #% 감소","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_elemental_damage_with_attack_skills"],"explicit":["explicit.stat_387439868"],"implicit":["implicit.stat_387439868"],"fractured":["fractured.stat_387439868"],"scourge":["scourge.stat_387439868"],"crafted":["crafted.stat_387439868"]}}} +{"ref":"#% increased Elemental Damage with Attack Skills during any Flask Effect","better":1,"matchers":[{"string":"아무 플라스크나 효과를 받는 동안 공격 스킬의 원소 피해 #% 증가"},{"string":"아무 플라스크나 효과를 받는 동안 공격 스킬의 원소 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_782323220"]}}} +{"ref":"#% increased Elemental Damage with Attack Skills per Power Charge","better":1,"matchers":[{"string":"권능 충전 하나당 공격 스킬의 원소 피해 #% 증가"},{"string":"권능 충전 하나당 공격 스킬의 원소 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4116409626"]}}} +{"ref":"#% increased Elemental Damage with Hits and Ailments for\neach type of Elemental Ailment on Enemy","better":1,"matchers":[{"string":"적에게 유발된 원소 상태 이상 유형 하나당 명중 및 상태 이상으로\n주는 원소 피해 #% 증가"},{"string":"적에게 유발된 원소 상태 이상 유형 하나당 명중 및 상태 이상으로\n주는 원소 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2605663324"]}}} +{"ref":"#% increased Elemental Damage with Melee Weapons","better":1,"matchers":[{"string":"근접 무기 사용 시 원소 피해 #% 증가"},{"string":"근접 무기 사용 시 원소 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_503138266"]}}} +{"ref":"#% increased Elemental Hit Attack Speed","better":1,"matchers":[{"string":"원소의 일격 공격 속도 #% 증가"},{"string":"원소의 일격 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1151217691"]}}} +{"ref":"#% increased Elemental Weakness Curse Effect","better":1,"matchers":[{"string":"원소 약화 저주 효과 #% 증가"},{"string":"원소 약화 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3348324479"],"enchant":["enchant.stat_3348324479"]}}} +{"ref":"#% increased Elemental Weakness Duration","better":1,"matchers":[{"string":"원소 약화 지속시간 #% 증가"},{"string":"원소 약화 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2690620076"]}}} +{"ref":"#% increased Elusive Effect","better":1,"matchers":[{"string":"도피 효과 #% 증가"},{"string":"도피 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_240857668"],"implicit":["implicit.stat_240857668"],"scourge":["scourge.stat_240857668"]}}} +{"ref":"#% increased Endurance Charge Duration","better":1,"matchers":[{"string":"인내 충전 지속시간 #% 증가"},{"string":"인내 충전 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1170174456"],"implicit":["implicit.stat_1170174456"],"enchant":["enchant.stat_1170174456"]}}} +{"ref":"#% increased Endurance, Frenzy and Power Charge Duration","better":1,"matchers":[{"string":"인내, 격분, 권능 충전 지속시간 #% 증가"},{"string":"인내, 격분, 권능 충전 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2839036860"],"implicit":["implicit.stat_2839036860"]}}} +{"ref":"#% increased Energy Shield","better":1,"matchers":[{"string":"에너지 보호막 #% 증가"},{"string":"에너지 보호막 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4015621042"],"implicit":["implicit.stat_4015621042"],"fractured":["fractured.stat_4015621042"],"crafted":["crafted.stat_4015621042"]}}} +{"ref":"#% increased Energy Shield from Equipped Body Armour","better":1,"matchers":[{"string":"장착한 갑옷으로 얻는 에너지 보호막 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1195319608"],"fractured":["fractured.stat_1195319608"]}}} +{"ref":"#% increased Energy Shield per 10 Strength","better":1,"matchers":[{"string":"힘 10당 에너지 보호막 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_506942497"]}}} +{"ref":"#% increased Energy Shield per Power Charge","better":1,"matchers":[{"string":"권능 충전 하나당 에너지 보호막 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2189382346"]}}} +{"ref":"#% increased Energy Shield Recharge Rate","better":1,"matchers":[{"string":"에너지 보호막 재충전 속도 #% 증가"},{"string":"에너지 보호막 재충전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2339757871"],"implicit":["implicit.stat_2339757871"],"fractured":["fractured.stat_2339757871"],"enchant":["enchant.stat_2339757871"],"scourge":["scourge.stat_2339757871"],"crafted":["crafted.stat_2339757871"]}}} +{"ref":"#% increased Energy Shield Recharge Rate during any Flask Effect","better":1,"matchers":[{"string":"아무 플라스크나 효과를 받는 동안 에너지 보호막 재충전 속도 #% 증가"},{"string":"아무 플라스크나 효과를 받는 동안 에너지 보호막 재충전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1827657795"]}}} +{"ref":"#% increased Energy Shield Recovery rate","better":1,"matchers":[{"string":"에너지 보호막 회복 속도 #% 증가"},{"string":"에너지 보호막 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_988575597"],"implicit":["implicit.stat_988575597"],"fractured":["fractured.stat_988575597"],"scourge":["scourge.stat_988575597"]}}} +{"ref":"#% increased Energy Shield Recovery Rate if you haven't Killed Recently","better":1,"matchers":[{"string":"최근 4초 이내 적을 처치하지 않은 경우 에너지 보호막 회복 속도 #% 증가"},{"string":"최근 4초 이내 적을 처치하지 않은 경우 에너지 보호막 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2698606393"]}}} +{"ref":"#% increased Energy Shield Recovery Rate while affected by Discipline","better":1,"matchers":[{"string":"단련의 영향을 받는 동안 에너지 보호막 회복 속도 #% 증가"},{"string":"단련의 영향을 받는 동안 에너지 보호막 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_80470845"]}}} +{"ref":"#% increased Enfeeble Curse Effect","better":1,"matchers":[{"string":"쇠약화 저주 효과 #% 증가"},{"string":"쇠약화 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3293830776"],"enchant":["enchant.stat_3293830776"]}}} +{"ref":"#% increased Enfeeble Duration","better":1,"matchers":[{"string":"쇠약화 지속시간 #% 증가"},{"string":"쇠약화 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_516587640"]}}} +{"ref":"#% increased Engineering Experience gained","better":1,"matchers":[{"string":"공학 경험치 획득량 #% 증가"},{"string":"공학 경험치 획득량 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1372426763"],"fractured":["fractured.stat_1372426763"]}}} +{"ref":"#% increased Engineering speed","better":1,"matchers":[{"string":"공학 속도 #% 증가"},{"string":"공학 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3211817426"],"implicit":["implicit.stat_3211817426"],"fractured":["fractured.stat_3211817426"]}}} +{"ref":"#% increased Essence Drain Damage","better":1,"matchers":[{"string":"정수 흡수 피해 #% 증가"},{"string":"정수 흡수 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3469967347"]}}} +{"ref":"#% increased Essence Drain Duration","better":1,"matchers":[{"string":"정수 흡수 지속시간 #% 증가"},{"string":"정수 흡수 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3698833303"]}}} +{"ref":"#% increased Ethereal Knives Damage","better":1,"matchers":[{"string":"천상의 단도 피해 #% 증가"},{"string":"천상의 단도 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3514973342"]}}} +{"ref":"#% increased Ethereal Knives Projectile Speed","better":1,"matchers":[{"string":"천상의 단도 투사체 속도 #% 증가"},{"string":"천상의 단도 투사체 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_760994068"]}}} +{"ref":"#% increased Evasion and Energy Shield","better":1,"matchers":[{"string":"회피 및 에너지 보호막 #% 증가"},{"string":"회피 및 에너지 보호막 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1999113824"],"fractured":["fractured.stat_1999113824"],"crafted":["crafted.stat_1999113824"]}}} +{"ref":"#% increased Evasion Rating","better":1,"matchers":[{"string":"회피 #% 증가"},{"string":"회피 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_124859000","explicit.stat_2106365538"],"implicit":["implicit.stat_124859000","implicit.stat_2106365538"],"fractured":["fractured.stat_124859000","fractured.stat_2106365538"],"crafted":["crafted.stat_124859000","crafted.stat_2106365538"]}}} +{"ref":"#% increased Evasion Rating and Armour","better":1,"matchers":[{"string":"회피 및 방어도 #% 증가"},{"string":"회피 및 방어도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3366029652"]}}} +{"ref":"#% increased Evasion Rating during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 회피 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_299054775"],"fractured":["fractured.stat_299054775"]}}} +{"ref":"#% increased Evasion Rating during Onslaught","better":1,"matchers":[{"string":"맹공 상태일 때 회피 #% 증가"},{"string":"맹공 상태일 때 회피 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_156734303"]}}} +{"ref":"#% increased Evasion Rating from Equipped Helmet and Boots","better":1,"matchers":[{"string":"장착한 투구 및 장화가 제공하는 회피 #% 증가"},{"string":"장착한 투구 및 장화가 제공하는 회피 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_623823763"]}}} +{"ref":"#% increased Evasion Rating if you have been Hit Recently","better":1,"matchers":[{"string":"최근 4초 이내 피격을 받은 경우 회피 #% 증가"},{"string":"최근 4초 이내 피격을 받은 경우 회피 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1073310669"]}}} +{"ref":"#% increased Evasion Rating if you've Cast Dash recently","better":1,"matchers":[{"string":"최근 4초 이내 질주를 시전한 경우 회피 #% 증가"},{"string":"최근 4초 이내 질주를 시전한 경우 회피 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_237513297"]}}} +{"ref":"#% increased Evasion Rating per 10 Intelligence","better":1,"matchers":[{"string":"지능 10당 회피 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_810772344"]}}} +{"ref":"#% increased Evasion Rating per 500 Maximum Mana, up to 100%","better":1,"matchers":[{"string":"최대 마나 500당 회피 #% 증가, 최대 100%"}],"trade":{"ids":{"explicit":["explicit.stat_1687962297"]}}} +{"ref":"#% increased Evasion Rating per Frenzy Charge","better":1,"matchers":[{"string":"격분 충전 하나당 회피 #% 증가"},{"string":"격분 충전 하나당 회피 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_660404777"],"implicit":["implicit.stat_660404777"]}}} +{"ref":"#% increased Evasion Rating while Focused","better":1,"matchers":[{"string":"집중하는 동안 회피 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3839620417"],"fractured":["fractured.stat_3839620417"],"crafted":["crafted.stat_3839620417"]}}} +{"ref":"#% increased Evasion Rating while moving","better":1,"matchers":[{"string":"이동 중 회피 #% 증가"},{"string":"이동 중 회피 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_734823525"],"fractured":["fractured.stat_734823525"]}}} +{"ref":"#% increased Evasion Rating while Phasing","better":1,"matchers":[{"string":"차원 능력 상태에서 회피 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_402176724"]}}} +{"ref":"#% increased Experience gain","better":1,"fromAreaMods":true,"matchers":[{"string":"경험치 획득 #% 증가"},{"string":"경험치 획득 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3666934677","explicit.stat_57434274"],"implicit":["implicit.stat_3666934677"],"fractured":["fractured.stat_3666934677"],"enchant":["enchant.stat_57434274"]}}} +{"ref":"#% increased Experience Gain for Corrupted Gems","better":1,"matchers":[{"string":"타락한 젬이 획득하는 경험치 #% 증가"},{"string":"타락한 젬이 획득하는 경험치 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_47271484"]}}} +{"ref":"#% increased Experience Gain of Gems","better":1,"matchers":[{"string":"젬의 경험치 획득 #% 증가"},{"string":"젬의 경험치 획득 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3808869043"]}}} +{"ref":"#% increased Explicit Ailment Modifier magnitudes","better":1,"matchers":[{"string":"비고정 상태 이상 속성 부여 규모 #% 증가"},{"string":"비고정 상태 이상 속성 부여 규모 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3086446674"]}}} +{"ref":"#% increased Explicit Attribute Modifier magnitudes","better":1,"matchers":[{"string":"비고정 능력치 속성 부여 규모 #% 증가"},{"string":"비고정 능력치 속성 부여 규모 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3243861579"]}}} +{"ref":"#% increased Explicit Caster Damage Modifier magnitudes","better":1,"matchers":[{"string":"비고정 시전 피해 속성 부여 규모 #% 증가"},{"string":"비고정 시전 피해 속성 부여 규모 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1498186316"]}}} +{"ref":"#% increased Explicit Chaos Modifier magnitudes","better":1,"matchers":[{"string":"비고정 카오스 속성 부여 규모 #% 증가"},{"string":"비고정 카오스 속성 부여 규모 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3196512240"]}}} +{"ref":"#% increased Explicit Cold Modifier magnitudes","better":1,"matchers":[{"string":"비고정 냉기 속성 부여 규모 #% 증가"},{"string":"비고정 냉기 속성 부여 규모 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3206904707"]}}} +{"ref":"#% increased Explicit Critical Modifier magnitudes","better":1,"matchers":[{"string":"비고정 치명타 속성 부여 규모 #% 증가"},{"string":"비고정 치명타 속성 부여 규모 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2393315299"]}}} +{"ref":"#% increased Explicit Damage Modifier magnitudes","better":1,"matchers":[{"string":"비고정 피해 속성 부여 규모 #% 증가"},{"string":"비고정 피해 속성 부여 규모 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2979443822"]}}} +{"ref":"#% increased Explicit Defence Modifier magnitudes","better":1,"matchers":[{"string":"비고정 방어 속성 부여 규모 #% 증가"},{"string":"비고정 방어 속성 부여 규모 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3300369861"]}}} +{"ref":"#% increased Explicit Fire Modifier magnitudes","better":1,"matchers":[{"string":"비고정 화염 속성 부여 규모 #% 증가"},{"string":"비고정 화염 속성 부여 규모 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3574578302"]}}} +{"ref":"#% increased Explicit Life Modifier magnitudes","better":1,"matchers":[{"string":"비고정 생명력 속성 부여 규모 #% 증가"},{"string":"비고정 생명력 속성 부여 규모 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1308141466"]}}} +{"ref":"#% increased Explicit Lightning Modifier magnitudes","better":1,"matchers":[{"string":"비고정 번개 속성 부여 규모 #% 증가"},{"string":"비고정 번개 속성 부여 규모 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3624940721"]}}} +{"ref":"#% increased Explicit Mana Modifier magnitudes","better":1,"matchers":[{"string":"비고정 마나 속성 부여 규모 #% 증가"},{"string":"비고정 마나 속성 부여 규모 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3514984677"]}}} +{"ref":"#% increased Explicit Modifier magnitudes","better":1,"fromAreaMods":true,"matchers":[{"string":"비고정 속성 부여 규모 #% 증가"},{"string":"비고정 속성 부여 규모 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1581907402"]}}} +{"ref":"#% increased Explicit Physical Modifier magnitudes","better":1,"matchers":[{"string":"비고정 물리 속성 부여 규모 #% 증가"},{"string":"비고정 물리 속성 부여 규모 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1335369947"]}}} +{"ref":"#% increased Explicit Resistance Modifier magnitudes","better":1,"matchers":[{"string":"비고정 저항 속성 부여 규모 #% 증가"},{"string":"비고정 저항 속성 부여 규모 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1972391381"]}}} +{"ref":"#% increased Explicit Speed Modifier magnitudes","better":1,"matchers":[{"string":"비고정 속도 속성 부여 규모 #% 증가"},{"string":"비고정 속도 속성 부여 규모 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_363924732"]}}} +{"ref":"#% increased Explosive Concoction Area of Effect","better":1,"matchers":[{"string":"폭발성 혼합물 효과 범위 #% 증가"},{"string":"폭발성 혼합물 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4100281103"]}}} +{"ref":"#% increased Explosive Concoction Damage","better":1,"matchers":[{"string":"폭발성 혼합물 피해 #% 증가"},{"string":"폭발성 혼합물 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_383710904"]}}} +{"ref":"#% increased Explosive Placement Range","better":1,"fromAreaMods":true,"matchers":[{"string":"폭발물 설치 범위 #% 감소"},{"string":"폭발물 설치 범위 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1539368271"],"implicit":["implicit.stat_1539368271"]}}} +{"ref":"#% increased Explosive Radius","better":1,"fromAreaMods":true,"matchers":[{"string":"폭발 반경 #% 증가"}],"trade":{"ids":{"implicit":["implicit.stat_3289828378"]}}} +{"ref":"#% increased Exsanguinate Duration","better":1,"matchers":[{"string":"방혈 지속시간 #% 증가"},{"string":"방혈 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_292721070"]}}} +{"ref":"#% increased Eye of Winter Damage","better":1,"matchers":[{"string":"겨울의 눈 피해 #% 증가"},{"string":"겨울의 눈 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1015388938"]}}} +{"ref":"#% increased Eye of Winter Projectile Speed","better":1,"matchers":[{"string":"겨울의 눈 투사체 속도 #% 증가"},{"string":"겨울의 눈 투사체 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1739537617"]}}} +{"ref":"#% increased Fire Damage","better":1,"matchers":[{"string":"화염 피해 #% 증가"},{"string":"화염 피해 #% 감소","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_fire_damage"],"explicit":["explicit.stat_3962278098"],"implicit":["implicit.stat_3962278098"],"fractured":["fractured.stat_3962278098"],"scourge":["scourge.stat_3962278098"],"crafted":["crafted.stat_3962278098"]}}} +{"ref":"#% increased Fire Damage if you have used a Cold Skill Recently","better":1,"matchers":[{"string":"최근 4초 이내 냉기 스킬을 사용한 경우 화염 피해 #% 증가"},{"string":"최근 4초 이내 냉기 스킬을 사용한 경우 화염 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4167600809"]}}} +{"ref":"#% increased Fire Damage per 1% Fire Resistance above 75%","better":1,"matchers":[{"string":"75%를 초과하는 화염 저항 1%당 화염 피해 #% 증가"},{"string":"75%를 초과하는 화염 저항 1%당 화염 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3013187834"]}}} +{"ref":"#% increased Fire Damage per 1% Missing Fire Resistance, up to a maximum of 300%","better":1,"matchers":[{"string":"부족한 화염 저항 1%당 화염 피해 #% 증가(최대 300%)"},{"string":"부족한 화염 저항 1%당 화염 피해 #% 감소(최대 300%)","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1060236362"]}}} +{"ref":"#% increased Fire Damage per 20 Strength","better":1,"matchers":[{"string":"힘 20당 화염 피해 #% 증가"},{"string":"힘 20당 화염 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2241902512"],"implicit":["implicit.stat_2241902512"]}}} +{"ref":"#% increased Fire Damage taken","better":1,"matchers":[{"string":"받는 화염 피해 #% 증가"},{"string":"받는 화염 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3743301799"],"implicit":["implicit.stat_3743301799"],"fractured":["fractured.stat_3743301799"],"scourge":["scourge.stat_3743301799"]}}} +{"ref":"#% increased Fire Damage while affected by Anger","better":1,"matchers":[{"string":"분노의 영향을 받는 동안 화염 피해 #% 증가"},{"string":"분노의 영향을 받는 동안 받는 화염 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3337107517"]}}} +{"ref":"#% increased Fire Damage while affected by Herald of Ash","better":1,"matchers":[{"string":"재의 전령의 영향을 받는 동안 화염 피해 #% 증가"},{"string":"재의 전령의 영향을 받는 동안 화염 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2775776604"]}}} +{"ref":"#% increased Fire Damage with Attack Skills","better":1,"matchers":[{"string":"공격 스킬의 화염 피해 #% 증가"},{"string":"공격 스킬의 화염 피해 #% 감소","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_fire_damage_with_attack_skills"],"implicit":["implicit.stat_2468413380"]}}} +{"ref":"#% increased Fire Damage with Hits and Ailments against Bleeding Enemies","better":1,"matchers":[{"string":"출혈 중인 적에 대한 적중 및 상태 이상 화염 피해 #% 증가"},{"string":"출혈 중인 적에 대한 적중 및 상태 이상 화염 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3703926412"]}}} +{"ref":"#% increased Fire Damage with Hits and Ailments against Blinded Enemies","better":1,"matchers":[{"string":"실명된 적에 대한 적중 및 상태 이상 화염 피해 #% 증가"},{"string":"실명된 적에 대한 적중 및 상태 이상 화염 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1601181226"]}}} +{"ref":"#% increased Fire Damage with Spell Skills","better":1,"matchers":[{"string":"주문 스킬로 주는 화염 피해 #% 증가"},{"string":"주문 스킬로 주는 화염 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_361162316"]}}} +{"ref":"#% increased Fire Resistance","better":1,"matchers":[{"string":"화염 저항 #% 증가"},{"string":"화염 저항 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1680060098"]}}} +{"ref":"#% increased Fire Spell Damage","better":1,"matchers":[{"string":"화염 주문 피해 #% 증가 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_fire_spell_damage"]}}} +{"ref":"#% increased Fire Trap Burning Damage","better":1,"matchers":[{"string":"화염 덫 화상 피해 #% 증가"},{"string":"화염 덫 화상 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_345703394"]}}} +{"ref":"#% increased Fire Trap Burning Ground Duration","better":1,"matchers":[{"string":"화염 덫 용암 지대 지속시간 #% 증가"},{"string":"화염 덫 용암 지대 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3279786746"]}}} +{"ref":"#% increased Fire Trap Damage","better":1,"matchers":[{"string":"화염 덫 피해 #% 증가"},{"string":"화염 덫 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_181307038"]}}} +{"ref":"#% increased Fireball Cast Speed","better":1,"matchers":[{"string":"화염구 시전 속도 #% 증가"},{"string":"화염구 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2231403318"]}}} +{"ref":"#% increased Fireball Damage","better":1,"matchers":[{"string":"화염구 피해 #% 증가"},{"string":"화염구 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2600498881"]}}} +{"ref":"#% increased Firestorm Damage","better":1,"matchers":[{"string":"화염 폭풍 피해 #% 증가"},{"string":"화염 폭풍 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2201904285"]}}} +{"ref":"#% increased Firestorm Duration","better":1,"matchers":[{"string":"화염 폭풍 지속시간 #% 증가"},{"string":"화염 폭풍 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1691710359"]}}} +{"ref":"#% increased Firestorm explosion Area of Effect","better":1,"matchers":[{"string":"화염 폭풍 폭발 효과 범위 #% 증가"},{"string":"화염 폭풍 폭발 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3931013900"]}}} +{"ref":"#% increased Fish Bite Sensitivity","better":1,"matchers":[{"string":"물고기 이빨 민감도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1296614065"],"implicit":["implicit.stat_1296614065"]}}} +{"ref":"#% increased Fishing Line Strength","better":1,"matchers":[{"string":"낚싯줄 강도 #% 증가"},{"string":"낚싯줄 강도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1842038569"],"fractured":["fractured.stat_1842038569"],"scourge":["scourge.stat_1842038569"]}}} +{"ref":"#% increased Fishing Range","better":1,"matchers":[{"string":"낚시 거리 #% 증가"},{"string":"낚시 거리 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_170497091"],"fractured":["fractured.stat_170497091"],"scourge":["scourge.stat_170497091"]}}} +{"ref":"#% increased Flame Dash Damage","better":1,"matchers":[{"string":"화염 질주 피해 #% 증가"},{"string":"화염 질주 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3013068851"]}}} +{"ref":"#% increased Flame Link Duration","better":1,"matchers":[{"string":"화염의 연결 지속시간 #% 증가"},{"string":"화염의 연결 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3996051430"]}}} +{"ref":"#% increased Flame Surge Critical Strike Chance","better":1,"matchers":[{"string":"화염 쇄도 치명타 확률 #% 증가"},{"string":"화염 쇄도 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1030003515"]}}} +{"ref":"#% increased Flame Surge Damage","better":1,"matchers":[{"string":"화염 쇄도 피해 #% 증가"},{"string":"화염 쇄도 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1491182794"]}}} +{"ref":"#% increased Flame Surge Damage with Hits and Ailments against Burning Enemies","better":1,"matchers":[{"string":"화상 상태의 적에 대한 화염 쇄도의 명중 및 상태 이상 피해 #% 증가"},{"string":"화상 상태의 적에 대한 화염 쇄도의 명중 및 상태 이상 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_430890565"]}}} +{"ref":"#% increased Flameblast Area of Effect","better":1,"matchers":[{"string":"화염파 효과 범위 #% 증가"},{"string":"화염파 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1532964880"]}}} +{"ref":"#% increased Flameblast Critical Strike Chance","better":1,"matchers":[{"string":"화염파 치명타 확률 #% 증가"},{"string":"화염파 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3053448465"]}}} +{"ref":"#% increased Flameblast Damage","better":1,"matchers":[{"string":"화염파 피해 #% 증가"},{"string":"화염파 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_169405468"]}}} +{"ref":"#% increased Flammability Curse Effect","better":1,"matchers":[{"string":"인화성 저주 효과 #% 증가"},{"string":"인화성 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_282417259"],"enchant":["enchant.stat_282417259"]}}} +{"ref":"#% increased Flammability Duration","better":1,"matchers":[{"string":"인화성 지속시간 #% 증가"},{"string":"인화성 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2166622264"]}}} +{"ref":"#% increased Flask Charges gained","better":1,"matchers":[{"string":"플라스크 충전량 #% 증가"},{"string":"플레이어의 플라스크 충전량 #% 증가"},{"string":"플라스크 충전량 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1452809865"],"implicit":["implicit.stat_1452809865"],"fractured":["fractured.stat_1452809865"],"scourge":["scourge.stat_1452809865"],"crafted":["crafted.stat_1452809865"]}}} +{"ref":"#% increased Flask Charges gained during any Flask Effect","better":1,"matchers":[{"string":"아무 플라스크나 효과를 받는 동안 플라스크 충전량 #% 증가"},{"string":"아무 플라스크나 효과를 받는 동안 플라스크 충전량 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_662803072"]}}} +{"ref":"#% increased Flask Charges gained from Kills with Melee Weapons","better":1,"matchers":[{"string":"근접 무기 처치로 얻는 플라스크 충전량 #% 증가"},{"string":"근접 무기 처치로 얻는 플라스크 충전량 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_6637015"]}}} +{"ref":"#% increased Flask Effect Duration","better":1,"matchers":[{"string":"플라스크 효과 지속시간 #% 증가"},{"string":"플라스크 효과 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3741323227"],"implicit":["implicit.stat_3741323227"],"fractured":["fractured.stat_3741323227"],"enchant":["enchant.stat_3741323227"],"crafted":["crafted.stat_3741323227"]}}} +{"ref":"#% increased Flask Effect Duration per Level","better":1,"matchers":[{"string":"1레벨당 플라스크 효과 지속시간 #% 증가"},{"string":"1레벨당 플라스크 효과 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_981878473"]}}} +{"ref":"#% increased Flask Life Recovery rate","better":1,"matchers":[{"string":"플라스크로 얻는 생명력 회복 속도 #% 증가"},{"string":"플라스크로 얻는 생명력 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_51994685"],"fractured":["fractured.stat_51994685"],"scourge":["scourge.stat_51994685"],"crafted":["crafted.stat_51994685"]}}} +{"ref":"#% increased Flask Mana Recovery rate","better":1,"matchers":[{"string":"플라스크로 얻는 마나 회복 속도 #% 증가"},{"string":"플라스크로 얻는 마나 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1412217137"],"fractured":["fractured.stat_1412217137"],"scourge":["scourge.stat_1412217137"],"crafted":["crafted.stat_1412217137"]}}} +{"ref":"#% increased Flesh Offering Duration","better":1,"matchers":[{"string":"살점 공물 지속시간 #% 증가"},{"string":"살점 공물 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_101788216"]}}} +{"ref":"#% increased Flicker Strike Damage","better":1,"matchers":[{"string":"점멸 타격 피해 #% 증가"},{"string":"점멸 타격 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_464448327"]}}} +{"ref":"#% increased Flicker Strike Damage per Frenzy Charge","better":1,"matchers":[{"string":"격분 충전 하나당 점멸 타격 피해 #% 증가"},{"string":"격분 충전 하나당 점멸 타격 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3701991680"]}}} +{"ref":"#% increased Forbidden Rite Damage","better":1,"matchers":[{"string":"금단의 의식 피해 #% 증가"},{"string":"금단의 의식 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3383175526"]}}} +{"ref":"#% increased Forbidden Rite Projectile Speed","better":1,"matchers":[{"string":"금단의 의식 투사체 속도 #% 증가"},{"string":"금단의 의식 투사체 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3316480899"]}}} +{"ref":"#% increased Freeze Duration on Enemies","better":1,"matchers":[{"string":"적에게 적용되는 동결 지속시간 #% 증가"},{"string":"적에게 적용되는 동결 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1073942215"],"implicit":["implicit.stat_1073942215"],"fractured":["fractured.stat_1073942215"],"crafted":["crafted.stat_1073942215"]}}} +{"ref":"#% increased Freeze Duration on you during Effect","better":-1,"matchers":[{"string":"효과를 받는 동안 플레이어에게 적용되는 동결 지속시간 #% 증가"},{"string":"효과를 받는 동안 플레이어에게 적용되는 동결 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_774474440"],"fractured":["fractured.stat_774474440"]}}} +{"ref":"#% increased Freezing Pulse Cast Speed","better":1,"matchers":[{"string":"동결 파동 시전 속도 #% 증가"},{"string":"동결 파동 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1894493605"]}}} +{"ref":"#% increased Freezing Pulse Damage","better":1,"matchers":[{"string":"동결 파동 피해 #% 증가"},{"string":"동결 파동 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_819852672"]}}} +{"ref":"#% increased Freezing Pulse Projectile Speed","better":1,"matchers":[{"string":"동결 파동 투사체 속도 #% 증가"},{"string":"동결 파동 투사체 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2003026405"]}}} +{"ref":"#% increased Frenzy Charge Duration","better":1,"matchers":[{"string":"격분 충전 지속시간 #% 증가"},{"string":"격분 충전 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3338298622"],"implicit":["implicit.stat_3338298622"],"enchant":["enchant.stat_3338298622"]}}} +{"ref":"#% increased Frenzy Damage","better":1,"matchers":[{"string":"격분 피해 #% 증가"},{"string":"격분 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_522780692"]}}} +{"ref":"#% increased Frenzy Damage per Frenzy Charge","better":1,"matchers":[{"string":"격분 충전 하나당 격분 피해 #% 증가"},{"string":"격분 충전 하나당 격분 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1255310381"]}}} +{"ref":"#% increased Frost Blades Damage","better":1,"matchers":[{"string":"서리 칼날 피해 #% 증가"},{"string":"서리 칼날 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3449510470"]}}} +{"ref":"#% increased Frost Blades Projectile Speed","better":1,"matchers":[{"string":"서리 칼날 투사체 속도 #% 증가"},{"string":"서리 칼날 투사체 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1087923932"]}}} +{"ref":"#% increased Frost Bomb Area of Effect","better":1,"matchers":[{"string":"서리 폭탄 효과 범위 #% 증가"},{"string":"서리 폭탄 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1451372148"]}}} +{"ref":"#% increased Frost Bomb Damage","better":1,"matchers":[{"string":"서리 폭탄 피해 #% 증가"},{"string":"서리 폭탄 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2380598805"]}}} +{"ref":"#% increased Frost Wall Duration","better":1,"matchers":[{"string":"서리 방벽 지속시간 #% 증가"},{"string":"서리 방벽 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_775034903"]}}} +{"ref":"#% increased Frostbite Curse Effect","better":1,"matchers":[{"string":"동상 저주 효과 #% 증가"},{"string":"동상 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1443215722"],"enchant":["enchant.stat_1443215722"]}}} +{"ref":"#% increased Frostbite Duration","better":1,"matchers":[{"string":"동상 지속시간 #% 증가"},{"string":"동상 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1783696476"]}}} +{"ref":"#% increased Frostbolt Cast Speed","better":1,"matchers":[{"string":"서리 구체 시전 속도 #% 증가"},{"string":"서리 구체 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4231484190"]}}} +{"ref":"#% increased Frostbolt Damage","better":1,"matchers":[{"string":"서리 구체 피해 #% 증가"},{"string":"서리 구체 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2078274993"]}}} +{"ref":"#% increased Galvanic Arrow Damage","better":1,"matchers":[{"string":"충격 화살 피해 #% 증가"},{"string":"충격 화살 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2634945088"]}}} +{"ref":"#% increased Glacial Cascade Area of Effect","better":1,"matchers":[{"string":"빙하 폭포 효과 범위 #% 증가"},{"string":"빙하 폭포 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_88796379"]}}} +{"ref":"#% increased Glacial Cascade Damage","better":1,"matchers":[{"string":"빙하 폭포 피해 #% 증가"},{"string":"빙하 폭포 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_451037529"]}}} +{"ref":"#% increased Glacial Hammer Damage","better":1,"matchers":[{"string":"빙하 망치 피해 #% 증가"},{"string":"빙하 망치 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2732675053"]}}} +{"ref":"#% increased Global Accuracy Rating","better":1,"matchers":[{"string":"일반 정확도 #% 증가"},{"string":"일반 정확도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_624954515"],"implicit":["implicit.stat_624954515"],"fractured":["fractured.stat_624954515"],"scourge":["scourge.stat_624954515"]}}} +{"ref":"#% increased Global Armour while you have no Energy Shield","better":1,"matchers":[{"string":"에너지 보호막이 없는 동안 일반 방어도 #% 증가"},{"string":"에너지 보호막이 없는 동안 일반 방어도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3827349913"]}}} +{"ref":"#% increased Global Attack Speed per Green Socket","better":1,"matchers":[{"string":"초록 홈 하나당 일반 공격 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_250876318"]}}} +{"ref":"#% increased Global Critical Strike Chance","better":1,"matchers":[{"string":"일반 치명타 확률 #% 증가"},{"string":"일반 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_587431675"],"implicit":["implicit.stat_587431675"],"fractured":["fractured.stat_587431675"],"scourge":["scourge.stat_587431675"],"crafted":["crafted.stat_587431675"]}}} +{"ref":"#% increased Global Critical Strike Chance if Corrupted","better":1,"matchers":[{"string":"타락 시 일반 치명타 확률 #% 증가"},{"string":"타락 시 일반 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4023723828"]}}} +{"ref":"#% increased Global Critical Strike Chance per Level","better":1,"matchers":[{"string":"1레벨당 일반 치명타 확률 #% 증가"},{"string":"1레벨당 일반 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3081076859"]}}} +{"ref":"#% increased Global Critical Strike Chance when in Main Hand","better":1,"matchers":[{"string":"주 무기로 장착 시 일반 치명타 확률 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3404168630"]}}} +{"ref":"#% increased Global Damage","better":1,"matchers":[{"string":"일반 피해 #% 증가"},{"string":"일반 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_819529588"]}}} +{"ref":"#% increased Global Defences","better":1,"matchers":[{"string":"일반 방어력 #% 증가"},{"string":"일반 방어력 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1389153006"],"implicit":["implicit.stat_1389153006"],"fractured":["fractured.stat_1389153006"],"scourge":["scourge.stat_1389153006"]}}} +{"ref":"#% increased Global Defences per White Socket","better":1,"matchers":[{"string":"하얀 홈 하나당 일반 방어력 #% 증가"},{"string":"하얀 홈 하나당 일반 방어력 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_967108924"]}}} +{"ref":"#% increased Global Evasion Rating when on Full Life","better":1,"matchers":[{"string":"최대 생명력인 경우 일반 회피 #% 증가"},{"string":"최대 생명력인 경우 일반 회피 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_88817332"]}}} +{"ref":"#% increased Global Evasion Rating when on Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태일 때 일반 회피 #% 증가"},{"string":"낮은 생명력 상태일 때 일반 회피 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2695354435"]}}} +{"ref":"#% increased Global maximum Energy Shield and reduced Lightning Resistance","better":1,"matchers":[{"string":"일반 에너지 보호막 최대치 #% 증가, 번개 저항 #% 감소"},{"string":"일반 에너지 보호막 최대치 #% 감소, 번개 저항 #% 증가","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1381972535"]}}} +{"ref":"#% increased Global Physical Damage","better":1,"matchers":[{"string":"일반 물리 피해 #% 증가"},{"string":"일반 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1310194496"],"implicit":["implicit.stat_1310194496"],"fractured":["fractured.stat_1310194496"],"scourge":["scourge.stat_1310194496"],"crafted":["crafted.stat_1310194496"]}}} +{"ref":"#% increased Global Physical Damage while Frozen","better":1,"matchers":[{"string":"동결 상태에서 일반 물리 피해 #% 증가"},{"string":"동결 상태에서 일반 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2614654450"]}}} +{"ref":"#% increased Global Physical Damage with Weapons per Red Socket","better":1,"matchers":[{"string":"빨간 홈 하나당 무기 사용 시 일반 물리 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2112615899"]}}} +{"ref":"#% increased Golem Damage for each Type of Golem you have Summoned","better":1,"matchers":[{"string":"소환된 골렘 유형 하나당 골렘 피해 #% 증가"},{"string":"소환된 골렘 유형 하나당 골렘 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2114157293"]}}} +{"ref":"#% increased Ground Slam Area of Effect","better":1,"matchers":[{"string":"대지 강타 효과 범위 #% 증가"},{"string":"대지 강타 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3061969105"]}}} +{"ref":"#% increased Ground Slam Damage","better":1,"matchers":[{"string":"대지 강타 피해 #% 증가"},{"string":"대지 강타 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_108883700"]}}} +{"ref":"#% increased Heavy Strike Attack Speed","better":1,"matchers":[{"string":"묵직한 타격 공격 속도 #% 증가"},{"string":"묵직한 타격 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_343849491"]}}} +{"ref":"#% increased Heavy Strike Damage","better":1,"matchers":[{"string":"묵직한 타격 피해 #% 증가"},{"string":"묵직한 타격 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_954135826"]}}} +{"ref":"#% increased Herald of Ash Damage","better":1,"matchers":[{"string":"재의 전령 피해 #% 증가"},{"string":"재의 전령 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_767884542"]}}} +{"ref":"#% increased Herald of Ice Damage","better":1,"matchers":[{"string":"얼음의 전령 피해 #% 증가"},{"string":"얼음의 전령 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3910961021"],"enchant":["enchant.stat_3910961021"]}}} +{"ref":"#% increased Herald of Thunder Damage","better":1,"matchers":[{"string":"천둥의 전령 피해 #% 증가"},{"string":"천둥의 전령 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_558298545"]}}} +{"ref":"#% increased Hiring Fee for Agility Jobs","better":-1,"matchers":[{"string":"민첩함 작업의 고용 비용 #% 증가"},{"string":"민첩함 작업의 고용 비용 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2164793549"],"fractured":["fractured.stat_2164793549"]}}} +{"ref":"#% increased Hiring Fee for Brute Force Jobs","better":-1,"matchers":[{"string":"완력 작업의 고용 비용 #% 증가"},{"string":"완력 작업의 고용 비용 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1018753640"],"fractured":["fractured.stat_1018753640"]}}} +{"ref":"#% increased Hiring Fee for Counter-Thaumaturgy Jobs","better":-1,"matchers":[{"string":"반-마석학 작업의 고용 비용 #% 증가"},{"string":"반-마석학 작업의 고용 비용 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3063943261"],"fractured":["fractured.stat_3063943261"]}}} +{"ref":"#% increased Hiring Fee for Deception Jobs","better":-1,"matchers":[{"string":"기만 작업의 고용 비용 #% 증가"},{"string":"기만 작업의 고용 비용 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2506681313"],"fractured":["fractured.stat_2506681313"]}}} +{"ref":"#% increased Hiring Fee for Demolition Jobs","better":-1,"matchers":[{"string":"파괴 공작 작업의 고용 비용 #% 증가"},{"string":"파괴 공작 작업의 고용 비용 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3680061663"],"fractured":["fractured.stat_3680061663"]}}} +{"ref":"#% increased Hiring Fee for Engineering Jobs","better":-1,"matchers":[{"string":"공학 작업의 고용 비용 #% 증가"},{"string":"공학 작업의 고용 비용 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2956083810"],"fractured":["fractured.stat_2956083810"]}}} +{"ref":"#% increased Hiring Fee for Lockpicking Jobs","better":-1,"matchers":[{"string":"자물쇠 따기 작업의 고용 비용 #% 증가"},{"string":"자물쇠 따기 작업의 고용 비용 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3391299828"],"fractured":["fractured.stat_3391299828"]}}} +{"ref":"#% increased Hiring Fee for Perception Jobs","better":-1,"matchers":[{"string":"통찰력 작업의 고용 비용 #% 증가"},{"string":"통찰력 작업의 고용 비용 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2885031631"],"fractured":["fractured.stat_2885031631"]}}} +{"ref":"#% increased Hiring Fee for Trap Disarmament Jobs","better":-1,"matchers":[{"string":"덫 해제 작업의 고용 비용 #% 증가"},{"string":"덫 해제 작업의 고용 비용 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2872715880"],"fractured":["fractured.stat_2872715880"]}}} +{"ref":"#% increased Hiring Fee of Rogues","better":-1,"matchers":[{"string":"고용 비용 #% 증가"},{"string":"도둑 고용 비용 #% 증가"},{"string":"고용 비용 #% 감소","negate":true},{"string":"도둑 고용 비용 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2257592286"],"fractured":["fractured.stat_2257592286"]}}} +{"ref":"#% increased Ice Crash Area of Effect","better":1,"matchers":[{"string":"얼음 충격 효과 범위 #% 증가"},{"string":"얼음 충격 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3930497977"]}}} +{"ref":"#% increased Ice Crash Damage","better":1,"matchers":[{"string":"얼음 충격 피해 #% 증가"},{"string":"얼음 충격 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1794090421"]}}} +{"ref":"#% increased Ice Nova Area of Effect","better":1,"matchers":[{"string":"얼음 폭발 효과 범위 #% 증가"},{"string":"얼음 폭발 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_68809719"]}}} +{"ref":"#% increased Ice Nova Damage","better":1,"matchers":[{"string":"얼음 폭발 피해 #% 증가"},{"string":"얼음 폭발 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1086309398"]}}} +{"ref":"#% increased Ice Shot Area of Effect","better":1,"matchers":[{"string":"얼음 화살 효과 범위 #% 증가"},{"string":"얼음 화살 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1962401751"]}}} +{"ref":"#% increased Ice Shot Damage","better":1,"matchers":[{"string":"얼음 화살 피해 #% 증가"},{"string":"얼음 화살 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3026752303"]}}} +{"ref":"#% increased Ice Spear Critical Strike Chance in second form","better":1,"matchers":[{"string":"두 번째 형태의 얼음 창 치명타 확률 #% 증가"},{"string":"두 번째 형태의 얼음 창 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3510848926"]}}} +{"ref":"#% increased Ice Trap Area of Effect","better":1,"matchers":[{"string":"얼음 덫 효과 범위 #% 증가"},{"string":"얼음 덫 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3367298564"]}}} +{"ref":"#% increased Ice Trap Damage","better":1,"matchers":[{"string":"얼음 덫 피해 #% 증가"},{"string":"얼음 덫 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4224384031"]}}} +{"ref":"#% increased Ignite Duration on Enemies","better":1,"matchers":[{"string":"적에게 적용되는 점화 지속시간 #% 증가"},{"string":"적에게 적용되는 점화 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1086147743"],"implicit":["implicit.stat_1086147743"],"fractured":["fractured.stat_1086147743"],"crafted":["crafted.stat_1086147743"]}}} +{"ref":"#% increased Immortal Call Duration","better":1,"matchers":[{"string":"불멸의 외침 지속시간 #% 증가"},{"string":"불멸의 외침 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1336543283"]}}} +{"ref":"#% increased Impale Effect","better":1,"matchers":[{"string":"꿰뚫기 효과 #% 증가"},{"string":"꿰뚫기 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_298173317"],"fractured":["fractured.stat_298173317"],"scourge":["scourge.stat_298173317"]}}} +{"ref":"#% increased Incinerate Damage","better":1,"matchers":[{"string":"소각 피해 #% 증가"},{"string":"소각 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2246425134"]}}} +{"ref":"#% increased Incinerate Damage for each stage","better":1,"matchers":[{"string":"단계 하나당 소각 피해 #% 증가"},{"string":"단계마다 소각 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4151555126"]}}} +{"ref":"#% increased Infernal Blow Area of Effect","better":1,"matchers":[{"string":"지옥불 맹타 효과 범위 #% 증가"},{"string":"지옥불 맹타 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4031295671"]}}} +{"ref":"#% increased Infernal Blow Damage","better":1,"matchers":[{"string":"지옥불 맹타 피해 #% 증가"},{"string":"지옥불 맹타 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_242838571"]}}} +{"ref":"#% increased Intelligence","better":1,"matchers":[{"string":"지능 #% 증가"},{"string":"지능 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_656461285"],"implicit":["implicit.stat_656461285"],"fractured":["fractured.stat_656461285"],"scourge":["scourge.stat_656461285"]}}} +{"ref":"#% increased Intelligence for each Unique Item Equipped","better":1,"matchers":[{"string":"장착한 고유 아이템 하나당 지능 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_4207939995"]}}} +{"ref":"#% increased Intelligence Requirement","better":1,"matchers":[{"string":"지능 요구사항 없음","value":-100},{"string":"지능 요구사항 #% 증가"},{"string":"지능 요구사항 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_18234720"]}}} +{"ref":"#% increased Intuitive Link Duration","better":1,"matchers":[{"string":"직관의 연결 지속시간 #% 증가"},{"string":"직관의 연결 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3545503197"]}}} +{"ref":"#% increased Item Quantity per White Socket","better":1,"matchers":[{"string":"하얀 홈 하나당 아이템 수량 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2340173293"]}}} +{"ref":"#% increased Item Rarity per White Socket","better":1,"matchers":[{"string":"하얀 홈 하나당 아이템 희귀도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_144675621"]}}} +{"ref":"#% increased Job Experience gain","better":1,"matchers":[{"string":"획득하는 임무 경험치 #% 증가"},{"string":"획득하는 임무 경험치 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3569230441"],"fractured":["fractured.stat_3569230441"]}}} +{"ref":"#% increased Job speed","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"작업 속도 #% 증가"},{"string":"작업 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2978905446"],"fractured":["fractured.stat_2978905446"]}}} +{"ref":"#% increased Kinetic Blast Area of Effect","better":1,"matchers":[{"string":"역학 폭발 효과 범위 #% 증가"},{"string":"역학 폭발 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1660758870"]}}} +{"ref":"#% increased Kinetic Blast Damage","better":1,"matchers":[{"string":"역학 폭발 피해 #% 증가"},{"string":"역학 폭발 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1007135105"]}}} +{"ref":"#% increased Knockback Distance","better":1,"matchers":[{"string":"밀어내기 거리 #% 증가"},{"string":"밀어내기 거리 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_565784293"]}}} +{"ref":"#% increased Lacerate Area of Effect","better":1,"matchers":[{"string":"피부 찢기 효과 범위 #% 증가"},{"string":"피부 찢기 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3854723321"]}}} +{"ref":"#% increased Lacerate Critical Strike Chance","better":1,"matchers":[{"string":"피부 찢기 치명타 확률 #% 증가"},{"string":"피부 찢기 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_578067404"]}}} +{"ref":"#% increased Lacerate Damage","better":1,"matchers":[{"string":"피부 찢기 피해 #% 증가"},{"string":"피부 찢기 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1844721010"]}}} +{"ref":"#% increased Leap Slam Area of Effect","better":1,"matchers":[{"string":"도약 강타 효과 범위 #% 증가"},{"string":"도약 강타 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3367800526"]}}} +{"ref":"#% increased Leap Slam Attack Speed","better":1,"matchers":[{"string":"도약 강타 공격 속도 #% 증가"},{"string":"도약 강타 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3730999759"]}}} +{"ref":"#% increased Leap Slam Damage","better":1,"matchers":[{"string":"도약 강타 피해 #% 증가"},{"string":"도약 강타 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3850775143"]}}} +{"ref":"#% increased Life Recovered","better":1,"matchers":[{"string":"생명력 회복 #% 증가"},{"string":"생명력 회복 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1261982764"],"fractured":["fractured.stat_1261982764"]}}} +{"ref":"#% increased Life Recovery from Flasks","better":1,"matchers":[{"string":"플라스크로 회복하는 생명력 #% 증가"},{"string":"플라스크로 회복하는 생명력 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_821241191"],"implicit":["implicit.stat_821241191"],"scourge":["scourge.stat_821241191"]}}} +{"ref":"#% increased Life Recovery from Flasks while affected by Vitality","better":1,"matchers":[{"string":"활력의 영향을 받는 동안 플라스크로 회복하는 생명력 #% 증가"},{"string":"활력의 영향을 받는 동안 플라스크로 회복하는 생명력 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_362838683"]}}} +{"ref":"#% increased Life Recovery rate","better":1,"matchers":[{"string":"생명력 회복 속도 #% 증가"},{"string":"생명력 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3240073117"],"implicit":["implicit.stat_3240073117"],"fractured":["fractured.stat_3240073117"],"scourge":["scourge.stat_3240073117"]}}} +{"ref":"#% increased Life Recovery Rate if you haven't Killed Recently","better":1,"matchers":[{"string":"최근 4초 이내 적을 처치하지 않은 경우 생명력 회복 속도 #% 증가"},{"string":"최근 4초 이내 적을 처치하지 않은 경우 생명력 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3353368340"]}}} +{"ref":"#% increased Life Recovery Rate per 10 Strength on Allocated Passives in Radius","better":1,"matchers":[{"string":"반경 내 할당된 패시브 스킬의 힘 10당 생명력 회복 속도 #% 증가"},{"string":"반경 내 할당된 패시브 스킬의 힘 10당 생명력 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_235105674"]}}} +{"ref":"#% increased Life Recovery Rate per 10 Strength on Unallocated Passives in Radius","better":1,"matchers":[{"string":"반경 내 할당되지 않은 패시브 스킬의 힘 10당 생명력 회복 속도 #% 증가"},{"string":"반경 내 할당되지 않은 패시브 스킬의 힘 10당 생명력 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4144221848"]}}} +{"ref":"#% increased Life Recovery Rate while affected by Vitality","better":1,"matchers":[{"string":"활력의 영향을 받는 동안 생명력 회복 속도 #% 증가"},{"string":"활력의 영향을 받는 동안 생명력 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2690790844"]}}} +{"ref":"#% increased Life Regeneration rate","better":1,"matchers":[{"string":"생명력 재생 속도 #% 증가"},{"string":"생명력 재생 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_44972811"],"implicit":["implicit.stat_44972811"],"fractured":["fractured.stat_44972811"],"scourge":["scourge.stat_44972811"],"crafted":["crafted.stat_44972811"]}}} +{"ref":"#% increased Life Reservation Efficiency of Skills","better":1,"matchers":[{"string":"스킬의 생명력 점유 효율 #% 증가"},{"string":"스킬의 생명력 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_635485889"],"fractured":["fractured.stat_635485889"]}}} +{"ref":"#% increased Light Radius","better":1,"matchers":[{"string":"시야 반경 #% 증가"},{"string":"시야 반경 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1263695895"],"implicit":["implicit.stat_1263695895"],"fractured":["fractured.stat_1263695895"],"enchant":["enchant.stat_1263695895"],"scourge":["scourge.stat_1263695895"]}}} +{"ref":"#% increased Light Radius during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 시야 반경 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2745936267"]}}} +{"ref":"#% increased Lightning Arrow Area of Effect","better":1,"matchers":[{"string":"번개 화살 효과 범위 #% 증가"},{"string":"번개 화살 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4129421630"]}}} +{"ref":"#% increased Lightning Arrow Damage","better":1,"matchers":[{"string":"번개 화살 피해 #% 증가"},{"string":"번개 화살 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2896672990"]}}} +{"ref":"#% increased Lightning Damage","better":1,"matchers":[{"string":"번개 피해 #% 증가"},{"string":"번개 피해 #% 감소","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_lightning_damage"],"explicit":["explicit.stat_2231156303"],"implicit":["implicit.stat_2231156303"],"fractured":["fractured.stat_2231156303"],"scourge":["scourge.stat_2231156303"],"crafted":["crafted.stat_2231156303"]}}} +{"ref":"#% increased Lightning Damage per 1% Lightning Resistance above 75%","better":1,"matchers":[{"string":"75%를 초과하는 번개 저항 1%당 번개 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2642525868"]}}} +{"ref":"#% increased Lightning Damage per 10 Intelligence","better":1,"matchers":[{"string":"지능 10당 번개 피해 #% 증가"},{"string":"지능 10당 번개 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_990219738"]}}} +{"ref":"#% increased Lightning Damage per Frenzy Charge","better":1,"matchers":[{"string":"격분 충전 하나당 번개 피해 #% 증가"},{"string":"격분 충전 하나당 번개 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3693130674"]}}} +{"ref":"#% increased Lightning Damage while affected by Herald of Thunder","better":1,"matchers":[{"string":"천둥의 전령의 영향을 받는 동안 번개 피해 #% 증가"},{"string":"천둥의 전령의 영향을 받는 동안 번개 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_536957"]}}} +{"ref":"#% increased Lightning Damage while affected by Wrath","better":1,"matchers":[{"string":"진노의 영향을 받는 동안 번개 피해 #% 증가"},{"string":"진노의 영향을 받는 동안 번개 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_418293304"]}}} +{"ref":"#% increased Lightning Damage with Attack Skills","better":1,"matchers":[{"string":"공격 스킬의 번개 피해 #% 증가"},{"string":"공격 스킬의 번개 피해 #% 감소","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_lightning_damage_with_attack_skills"],"explicit":["explicit.stat_4208907162"],"implicit":["implicit.stat_4208907162"]}}} +{"ref":"#% increased Lightning Damage with Spell Skills","better":1,"matchers":[{"string":"주문 스킬로 주는 번개 피해 #% 증가"},{"string":"주문 스킬로 주는 번개 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3935031607"]}}} +{"ref":"#% increased Lightning Resistance","better":1,"matchers":[{"string":"번개 저항 #% 증가"},{"string":"번개 저항 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2249211872"]}}} +{"ref":"#% increased Lightning Spell Damage","better":1,"matchers":[{"string":"번개 주문 피해 #% 증가 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_lightning_spell_damage"]}}} +{"ref":"#% increased Lightning Spire Trap Throwing Speed","better":1,"matchers":[{"string":"번개 첨탑 덫 투척 속도 #% 증가"},{"string":"번개 첨탑 덫 투척 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1978232370"]}}} +{"ref":"#% increased Lightning Strike Damage","better":1,"matchers":[{"string":"번개 타격 피해 #% 증가"},{"string":"번개 타격 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3630274354"]}}} +{"ref":"#% increased Lightning Tendrils Area of Effect","better":1,"matchers":[{"string":"덩굴 번개 효과 범위 #% 증가"},{"string":"덩굴 번개 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1230050013"]}}} +{"ref":"#% increased Lightning Tendrils Critical Strike Chance","better":1,"matchers":[{"string":"덩굴 번개 치명타 확률 #% 증가"},{"string":"덩굴 번개 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_12756171"]}}} +{"ref":"#% increased Lightning Tendrils Damage","better":1,"matchers":[{"string":"덩굴 번개 피해 #% 증가"},{"string":"덩굴 번개 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_39356080"]}}} +{"ref":"#% increased Lightning Trap Damage","better":1,"matchers":[{"string":"번개 덫 피해 #% 증가"},{"string":"번개 덫 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3131492956"]}}} +{"ref":"#% increased Lightning Trap Lightning Ailment Effect","better":1,"matchers":[{"string":"번개 덫의 번개 상태 이상 효과 #% 증가"},{"string":"번개 덫의 번개 상태 이상 효과 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4210927948"]}}} +{"ref":"#% increased Lightning Warp Cast Speed","better":1,"matchers":[{"string":"번개 차원 이동 시전 속도 #% 증가"},{"string":"번개 차원 이동 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1347575155"]}}} +{"ref":"#% increased Lightning Warp Damage","better":1,"matchers":[{"string":"번개 차원 이동 피해 #% 증가"},{"string":"번개 차원 이동 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_209345940"]}}} +{"ref":"#% increased Lockpicking Experience gained","better":1,"matchers":[{"string":"자물쇠 따기 경험치 획득량 #% 증가"},{"string":"자물쇠 따기 경험치 획득량 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2316712523"],"fractured":["fractured.stat_2316712523"]}}} +{"ref":"#% increased Lockpicking speed","better":1,"matchers":[{"string":"자물쇠 따기 속도 #% 증가"},{"string":"자물쇠 따기 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3312732077"],"implicit":["implicit.stat_3312732077"],"fractured":["fractured.stat_3312732077"]}}} +{"ref":"#% increased Magic Monsters","better":1,"fromAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"마법 몬스터 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3873704640"],"fractured":["fractured.stat_3873704640"]}}} +{"ref":"#% increased Main Hand Critical Strike Chance per\nMurderous Eye Jewel affecting you, up to a maximum of 200%","better":1,"matchers":[{"string":"자신에게 영향을 주는 살인적인 눈 주얼 하나당\n주 무기 치명타 확률 #% 감소"},{"string":"자신에게 영향을 주는 살인적인 눈 주얼 하나당\n주 무기 치명타 확률 #% 증가, 최대 200%"}],"trade":{"ids":{"explicit":["explicit.stat_3454830051"]}}} +{"ref":"#% increased Mana Cost of Skills during Effect","better":-1,"matchers":[{"string":"효과를 받는 동안 스킬의 마나 소모 #% 증가"},{"string":"효과를 받는 동안 스킬의 마나 소모 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_683273571"],"fractured":["fractured.stat_683273571"],"crafted":["crafted.stat_683273571"]}}} +{"ref":"#% increased Mana Recovered","better":1,"matchers":[{"string":"마나 회복 #% 증가"},{"string":"마나 회복 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1811130680"],"fractured":["fractured.stat_1811130680"]}}} +{"ref":"#% increased Mana Recovery from Flasks","better":1,"matchers":[{"string":"플라스크로 회복하는 마나 #% 증가"},{"string":"플라스크로 회복하는 마나 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2222186378"],"scourge":["scourge.stat_2222186378"]}}} +{"ref":"#% increased Mana Recovery rate","better":1,"matchers":[{"string":"마나 회복 속도 #% 증가"},{"string":"마나 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3513180117"],"implicit":["implicit.stat_3513180117"],"fractured":["fractured.stat_3513180117"],"scourge":["scourge.stat_3513180117"]}}} +{"ref":"#% increased Mana Recovery Rate if you haven't Killed Recently","better":1,"matchers":[{"string":"최근 4초 이내 적을 처치하지 않은 경우 마나 회복 속도 #% 증가"},{"string":"최근 4초 이내 적을 처치하지 않은 경우 마나 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_630994130"]}}} +{"ref":"#% increased Mana Recovery Rate per 10 Intelligence on Allocated Passives in Radius","better":1,"matchers":[{"string":"반경 내 할당된 패시브 스킬의 지능 10당 마나 회복 속도 #% 증가"},{"string":"반경 내 할당된 패시브 스킬의 지능 10당 마나 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_514215387"]}}} +{"ref":"#% increased Mana Recovery Rate per 10 Intelligence on Unallocated Passives in Radius","better":1,"matchers":[{"string":"반경 내 할당되지 않은 패시브 스킬의 지능 10당 마나 회복 속도 #% 증가"},{"string":"반경 내 할당되지 않은 패시브 스킬의 지능 10당 마나 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1439347620"]}}} +{"ref":"#% increased Mana Recovery Rate while affected by Clarity","better":1,"matchers":[{"string":"명상의 영향을 받는 동안 마나 회복 속도 #% 증가"},{"string":"명상의 영향을 받는 동안 마나 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_556659145"]}}} +{"ref":"#% increased Mana Regeneration Rate","better":1,"matchers":[{"string":"마나 재생 속도 #% 증가"},{"string":"마나 재생 속도 #% 감소","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_mana_regen"],"explicit":["explicit.stat_789117908"],"implicit":["implicit.stat_789117908"],"fractured":["fractured.stat_789117908"],"scourge":["scourge.stat_789117908"],"crafted":["crafted.stat_789117908"]}}} +{"ref":"#% increased Mana Regeneration Rate during any Flask Effect","better":1,"matchers":[{"string":"아무 플라스크나 효과를 받는 동안 마나 재생 속도 #% 증가"},{"string":"아무 플라스크나 효과를 받는 동안 마나 재생 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2993091567"]}}} +{"ref":"#% increased Mana Regeneration Rate if you've cast a Spell Recently","better":1,"matchers":[{"string":"최근 4초 이내 주문을 시전한 경우 마나 재생 속도 #% 증가"},{"string":"최근 4초 이내 주문을 시전한 경우 마나 재생 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1409388882"]}}} +{"ref":"#% increased Mana Regeneration Rate per Power Charge","better":1,"matchers":[{"string":"권능 충전 하나당 마나 재생 속도 #% 증가"},{"string":"권능 충전 하나당 마나 재생 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2847548062"],"implicit":["implicit.stat_2847548062"]}}} +{"ref":"#% increased Mana Regeneration Rate per Raised Spectre","better":1,"matchers":[{"string":"소환한 망령 하나당 마나 재생 속도 #% 증가"},{"string":"소환한 망령 하나당 마나 재생 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2666795121"]}}} +{"ref":"#% increased Mana Regeneration Rate while moving","better":1,"matchers":[{"string":"이동 중 마나 재생 속도 #% 증가"},{"string":"이동 중 마나 재생 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1327522346"],"fractured":["fractured.stat_1327522346"]}}} +{"ref":"#% increased Mana Regeneration Rate while Shocked","better":1,"matchers":[{"string":"감전 상태일 때 마나 재생 속도 #% 증가"},{"string":"감전 상태일 때 마나 재생 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2076519255"],"fractured":["fractured.stat_2076519255"]}}} +{"ref":"#% increased Mana Regeneration Rate while stationary","better":1,"matchers":[{"string":"정지 상태일 때 마나 재생 속도 #% 감소"},{"string":"정지 상태일 때 마나 재생 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3308030688"]}}} +{"ref":"#% increased Mana Reservation Efficiency of Curse Aura Skills","better":1,"matchers":[{"string":"저주 오라 스킬의 마나 점유 효율 #% 증가"},{"string":"저주 오라 스킬의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_443165947","explicit.stat_714566414"]}}} +{"ref":"#% increased Mana Reservation Efficiency of Herald Skills","better":1,"matchers":[{"string":"전령 스킬의 마나 점유 효율 #% 증가"},{"string":"전령 스킬의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3078295401"]}}} +{"ref":"#% increased Mana Reservation Efficiency of Skills","better":1,"matchers":[{"string":"스킬의 마나 점유 효율 #% 증가"},{"string":"스킬의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1269219558","explicit.stat_4237190083"],"implicit":["implicit.stat_1269219558","implicit.stat_4237190083"],"fractured":["fractured.stat_1269219558","fractured.stat_4237190083"],"scourge":["scourge.stat_1269219558","scourge.stat_4237190083"]}}} +{"ref":"#% increased Mana Reservation Efficiency of Skills per 250 total Attributes","better":1,"matchers":[{"string":"총 능력치 250당 스킬의 마나 점유 효율 #% 증가"},{"string":"총 능력치 250당 스킬의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1212083058","explicit.stat_2676451350"]}}} +{"ref":"#% increased Mana Reservation Efficiency of Skills Supported by Spellslinger","better":1,"matchers":[{"string":"주문투척 보조 효과가 적용되는 스킬의 마나 점유 효율 #% 증가"},{"string":"주문투척 보조 효과가 적용되는 스킬의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1341061286","enchant.stat_3305838454"]}}} +{"ref":"#% increased Manabond Area of Effect","better":1,"matchers":[{"string":"마나 결속 효과 범위 #% 증가"},{"string":"마나 결속 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_441455463"]}}} +{"ref":"#% increased Manabond Damage","better":1,"matchers":[{"string":"마나 결속 피해 #% 증가"},{"string":"마나 결속 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1609869231"]}}} +{"ref":"#% increased maximum Energy Shield","better":1,"matchers":[{"string":"에너지 보호막 최대치 #% 증가"},{"string":"에너지 보호막 최대치 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2482852589"],"implicit":["implicit.stat_2482852589"],"fractured":["fractured.stat_2482852589"],"crafted":["crafted.stat_2482852589"]}}} +{"ref":"#% increased Maximum Energy Shield for each Corrupted Item Equipped","better":1,"matchers":[{"string":"장착한 타락 아이템 하나당 에너지 보호막 최대치 #% 증가"},{"string":"장착한 타락 아이템 하나당 에너지 보호막 최대치 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3916980068"]}}} +{"ref":"#% increased Maximum Energy Shield from Equipped Gloves and Boots","better":1,"matchers":[{"string":"장착한 장갑 및 장화가 제공하는 에너지 보호막 최대치 #% 증가"},{"string":"장착한 장갑 및 장화가 제공하는 에너지 보호막 최대치 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1234687045"]}}} +{"ref":"#% increased maximum Energy Shield if Corrupted","better":1,"matchers":[{"string":"타락 시 에너지 보호막 최대치 #% 증가"},{"string":"타락 시 에너지 보호막 최대치 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1025108940"]}}} +{"ref":"#% increased maximum Life","better":1,"matchers":[{"string":"최대 생명력 #% 증가"},{"string":"최대 생명력 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_983749596"],"implicit":["implicit.stat_983749596"],"fractured":["fractured.stat_983749596"],"scourge":["scourge.stat_983749596"],"crafted":["crafted.stat_983749596"]}}} +{"ref":"#% increased maximum Life and reduced Fire Resistance","better":1,"matchers":[{"string":"최대 생명력 #% 증가, 화염 저항 #% 감소"},{"string":"최대 생명력 #% 감소, 화염 저항 #% 증가","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3018691556"]}}} +{"ref":"#% increased Maximum Life for each Corrupted Item Equipped","better":1,"matchers":[{"string":"장착한 타락 아이템 하나당 최대 생명력 #% 증가"},{"string":"장착한 타락 아이템 하나당 최대 생명력 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4169430079"]}}} +{"ref":"#% increased maximum Life if Corrupted","better":1,"matchers":[{"string":"타락 시 최대 생명력 #% 증가"},{"string":"타락 시 최대 생명력 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3887484120"]}}} +{"ref":"#% increased Maximum Life if no Equipped Items are Corrupted","better":1,"matchers":[{"string":"장착한 아이템 중 타락한 아이템이 없는 경우 최대 생명력 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2217962305"]}}} +{"ref":"#% increased Maximum Life per Abyss Jewel affecting you","better":1,"matchers":[{"string":"자신에게 영향을 주는 심연 주얼 하나당 최대 생명력 #% 증가"},{"string":"자신에게 영향을 주는 심연 주얼 하나당 최대 생명력 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3185671537"]}}} +{"ref":"#% increased Maximum Life per Grand Spectrum","better":1,"matchers":[{"string":"장대한 파장 하나당 최대 생명력 #% 증가"},{"string":"장대한 파장 하나당 최대 생명력 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_332217711"]}}} +{"ref":"#% increased maximum Life, Mana and Global Energy Shield","better":1,"matchers":[{"string":"생명력, 마나, 일반 에너지 보호막 최대치 #% 증가"},{"string":"생명력, 마나, 일반 에너지 보호막 최대치 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3899352861"]}}} +{"ref":"#% increased maximum Mana","better":1,"matchers":[{"string":"최대 마나 #% 증가"},{"string":"최대 마나 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2748665614"],"implicit":["implicit.stat_2748665614"],"fractured":["fractured.stat_2748665614"],"scourge":["scourge.stat_2748665614"],"crafted":["crafted.stat_2748665614"]}}} +{"ref":"#% increased maximum Mana and reduced Cold Resistance","better":1,"matchers":[{"string":"최대 마나 #% 증가, 냉기 저항 #% 감소"},{"string":"최대 마나 #% 감소, 냉기 저항 #% 증가","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1156957589"]}}} +{"ref":"#% increased Maximum Mana per Abyss Jewel affecting you","better":1,"matchers":[{"string":"자신에게 영향을 주는 심연 주얼 하나당 최대 마나 #% 증가"},{"string":"자신에게 영향을 주는 심연 주얼 하나당 최대 마나 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2135370196"]}}} +{"ref":"#% increased Maximum Recovery per Energy Shield Leech","better":1,"matchers":[{"string":"에너지 보호막 흡수당 회복량 최대치 #% 증가"},{"string":"에너지 보호막 흡수당 회복량 최대치 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3589396689"]}}} +{"ref":"#% increased Maximum Recovery per Life Leech","better":1,"matchers":[{"string":"생명력 흡수당 회복량 최대치 #% 증가"},{"string":"생명력 흡수당 회복량 최대치 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3101897388"]}}} +{"ref":"#% increased Maximum Resolve","better":1,"matchers":[{"string":"투지 최대치 #% 증가"},{"string":"투지 최대치 #% 감소","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_3866860190"]}}} +{"ref":"#% increased Maximum total Energy Shield Recovery per second from Leech","better":1,"matchers":[{"string":"흡수로 인한 초당 총 에너지 보호막 회복량 최대치 #% 증가"},{"string":"흡수로 인한 초당 총 에너지 보호막 회복량 최대치 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2013799819"],"implicit":["implicit.stat_2013799819"],"fractured":["fractured.stat_2013799819"]}}} +{"ref":"#% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry","better":1,"matchers":[{"string":"열광의 영향을 받는 동안 흡수로 인한 초당 총 에너지 보호막 회복량 최대치 #% 증가"},{"string":"열광의 영향을 받는 동안 흡수로 인한 초당 총 에너지 보호막 회복량 최대치 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2731416566","explicit.stat_3848992177"]}}} +{"ref":"#% increased Maximum total Life Recovery per second from Leech","better":1,"matchers":[{"string":"흡수로 인한 초당 총 생명력 회복량 최대치 #% 증가"},{"string":"흡수로 인한 초당 총 생명력 회복량 최대치 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2916634441","explicit.stat_4118987751"],"implicit":["implicit.stat_4118987751"],"fractured":["fractured.stat_4118987751"]}}} +{"ref":"#% increased Maximum total Mana Recovery per second from Leech","better":1,"matchers":[{"string":"흡수로 인한 초당 총 마나 회복량 최대치 #% 증가"},{"string":"흡수로 인한 초당 총 마나 회복량 최대치 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_96977651"],"implicit":["implicit.stat_96977651"]}}} +{"ref":"#% increased Melee Critical Strike Chance","better":1,"matchers":[{"string":"근접 치명타 확률 #% 증가"},{"string":"근접 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1199429645"],"fractured":["fractured.stat_1199429645"]}}} +{"ref":"#% increased Melee Damage","better":1,"matchers":[{"string":"근접 피해 #% 증가"},{"string":"근접 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1002362373"],"implicit":["implicit.stat_1002362373"],"fractured":["fractured.stat_1002362373"],"crafted":["crafted.stat_1002362373"]}}} +{"ref":"#% increased Melee Damage against Bleeding Enemies","better":1,"matchers":[{"string":"출혈 중인 적에 대한 근접 피해 #% 증가"},{"string":"출혈 중인 적에 대한 근접 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1282978314"]}}} +{"ref":"#% increased Melee Damage during any Flask Effect","better":1,"matchers":[{"string":"아무 플라스크나 효과를 받는 동안 근접 피해 #% 증가"},{"string":"아무 플라스크나 효과를 받는 동안 근접 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4091369450"],"fractured":["fractured.stat_4091369450"]}}} +{"ref":"#% increased Melee Damage per Endurance Charge","better":1,"matchers":[{"string":"인내 충전 하나당 근접 피해 #% 증가"},{"string":"인내 충전 하나당 근접 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1275066948"]}}} +{"ref":"#% increased Melee Damage when on Full Life","better":1,"matchers":[{"string":"생명력이 최대일 때 근접 피해 #% 증가"},{"string":"생명력이 최대일 때 근접 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3579807004"]}}} +{"ref":"#% increased Melee Physical Damage against Ignited Enemies","better":1,"matchers":[{"string":"점화된 적에게 주는 근접 물리 피해 #% 증가"},{"string":"점화된 적에게 주는 근접 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1332534089"]}}} +{"ref":"#% increased Melee Physical Damage per 10 Dexterity","better":1,"matchers":[{"string":"민첩 10당 근접 물리 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2355151849"]}}} +{"ref":"#% increased Melee Weapon Attack Speed","better":1,"matchers":[{"string":"근접 무기 공격 속도 #% 증가"},{"string":"근접 무기 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2038105340"]}}} +{"ref":"#% increased Melee Weapon Damage against Enemies that are on Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태의 적에게 근접 무기로 주는 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_259714394"]}}} +{"ref":"#% increased Merchant Prices","better":1,"matchers":[{"string":"상인 가격 #% 증가"},{"string":"상인 가격 #% 감소","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_3096446459"]}}} +{"ref":"#% increased Mine Damage","better":1,"matchers":[{"string":"지뢰 피해 #% 증가"},{"string":"지뢰 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2137912951"],"fractured":["fractured.stat_2137912951"],"crafted":["crafted.stat_2137912951"]}}} +{"ref":"#% increased Mine Duration","better":1,"matchers":[{"string":"지뢰 지속시간 #% 증가"},{"string":"지뢰 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_117667746"],"fractured":["fractured.stat_117667746"]}}} +{"ref":"#% increased Mine Throwing Speed","better":1,"matchers":[{"string":"지뢰 투척 속도 #% 증가"},{"string":"지뢰 투척 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1896971621"],"implicit":["implicit.stat_1896971621"],"fractured":["fractured.stat_1896971621"],"scourge":["scourge.stat_1896971621"],"crafted":["crafted.stat_1896971621"]}}} +{"ref":"#% increased Minion Accuracy Rating","better":1,"matchers":[{"string":"소환수 정확도 #% 증가"},{"string":"소환수 정확도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1718147982"],"implicit":["implicit.stat_1718147982"],"fractured":["fractured.stat_1718147982"]}}} +{"ref":"#% increased Minion Attack and Cast Speed per 10 Devotion","better":1,"matchers":[{"string":"헌신 10당 소환수 공격 및 시전 속도 #% 증가"},{"string":"헌신 10당 소환수 공격 및 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3808469650"]}}} +{"ref":"#% increased Minion Attack and Cast Speed per Skeleton you own","better":1,"matchers":[{"string":"보유한 해골 하나당 소환수 공격 및 시전 속도 #% 증가"},{"string":"보유한 해골 하나당 소환수 공격 및 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_729367217"]}}} +{"ref":"#% increased Minion Attack Speed per 50 Dexterity","better":1,"matchers":[{"string":"민첩 50당 소환수 공격 속도 #% 증가"},{"string":"민첩 50당 소환수 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4047895119"]}}} +{"ref":"#% increased Minion Damage per Raised Spectre","better":1,"matchers":[{"string":"소환한 망령 하나당 소환수 피해 #% 증가"},{"string":"소환한 망령 하나당 소환수 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3191537057"]}}} +{"ref":"#% increased Minion Duration","better":1,"matchers":[{"string":"소환수 지속시간 #% 증가"},{"string":"소환수 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_999511066"],"fractured":["fractured.stat_999511066"]}}} +{"ref":"#% increased Minion Duration per Raised Zombie","better":1,"matchers":[{"string":"소환한 좀비 하나당 소환수 지속시간 #% 증가"},{"string":"소환한 좀비 하나당 소환수 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_777246604"]}}} +{"ref":"#% increased Minion Movement Speed per 50 Dexterity","better":1,"matchers":[{"string":"민첩 50당 소환수 이동 속도 #% 증가"},{"string":"민첩 50당 소환수 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4017879067"]}}} +{"ref":"#% increased Mirage Archer Duration","better":1,"matchers":[{"string":"신기루 궁수 지속시간 #% 증가"},{"string":"신기루 궁수 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3663580344"]}}} +{"ref":"#% increased Molten Strike Area of Effect","better":1,"matchers":[{"string":"용암 타격 효과 범위 #% 증가"},{"string":"용암 타격 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2524620107"]}}} +{"ref":"#% increased Molten Strike Damage","better":1,"matchers":[{"string":"용암 타격 피해 #% 증가"},{"string":"용암 타격 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2038865857"]}}} +{"ref":"#% increased Monster Attack Speed","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터의 공격 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1913583994"],"fractured":["fractured.stat_1913583994"]}}} +{"ref":"#% increased Monster Cast Speed","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터의 시전 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2488361432"],"fractured":["fractured.stat_2488361432"]}}} +{"ref":"#% increased Monster Damage","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1890519597"],"fractured":["fractured.stat_1890519597"]}}} +{"ref":"#% increased Monster Movement Speed","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터의 이동 속도 #% 증가"},{"string":"몬스터의 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2306522833"],"implicit":["implicit.stat_2306522833"],"fractured":["fractured.stat_2306522833"],"enchant":["enchant.stat_2306522833"]}}} +{"ref":"#% increased Movement Speed","better":1,"matchers":[{"string":"이동 속도 #% 증가"},{"string":"이동 속도 #% 감소","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_movement_speed"],"explicit":["explicit.stat_2250533757"],"implicit":["implicit.stat_2250533757"],"fractured":["fractured.stat_2250533757"],"enchant":["enchant.stat_2250533757"],"scourge":["scourge.stat_2250533757"],"crafted":["crafted.stat_2250533757"]}}} +{"ref":"#% increased Movement Speed during any Flask Effect","better":1,"matchers":[{"string":"아무 플라스크나 효과를 받는 동안 이동 속도 #% 증가"},{"string":"아무 플라스크나 효과를 받는 동안 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_304970526"],"implicit":["implicit.stat_304970526"],"fractured":["fractured.stat_304970526"]}}} +{"ref":"#% increased Movement Speed during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 이동 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3182498570"],"fractured":["fractured.stat_3182498570"],"crafted":["crafted.stat_3182498570"]}}} +{"ref":"#% increased Movement Speed for # seconds on Throwing a Trap","better":1,"matchers":[{"string":"덫 투척 시 #초 동안 이동 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3102860761"]}}} +{"ref":"#% increased Movement Speed for each Poison on you up to a maximum of 50%","better":1,"matchers":[{"string":"자신에게 중첩된 중독 하나당 이동 속도 #% 증가, 최대 50%"},{"string":"자신에게 중첩된 중독 하나당 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1360723495"]}}} +{"ref":"#% increased Movement Speed for you and nearby Allies","better":1,"matchers":[{"string":"자신 및 주변 동료들의 이동 속도 #% 증가"},{"string":"자신 및 주변 동료들의 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3410049114"]}}} +{"ref":"#% increased Movement Speed if Corrupted","better":1,"matchers":[{"string":"타락 시 이동 속도 #% 증가"},{"string":"타락 시 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2880601380"]}}} +{"ref":"#% increased Movement Speed if you have used a Vaal Skill Recently","better":1,"matchers":[{"string":"최근 4초 이내 바알 스킬을 사용한 경우 이동 속도 #% 증가"},{"string":"최근 4초 이내 바알 스킬을 사용한 경우 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1285172810"]}}} +{"ref":"#% increased Movement Speed if you haven't been Hit Recently","better":1,"matchers":[{"string":"최근 4초 이내 피격되지 않은 경우 이동 속도 #% 증가"},{"string":"최근 4초 이내 피격되지 않은 경우 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1177358866","explicit.stat_308396001"],"fractured":["fractured.stat_1177358866","fractured.stat_308396001"],"enchant":["enchant.stat_308396001"],"crafted":["crafted.stat_1177358866"]}}} +{"ref":"#% increased Movement Speed if you haven't taken Damage Recently","better":1,"matchers":[{"string":"최근 4초 이내 피해를 받지 않은 경우 이동 속도 #% 증가"},{"string":"최근 4초 이내 피해를 받지 않은 경우 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3854949926"],"fractured":["fractured.stat_3854949926"]}}} +{"ref":"#% increased Movement Speed if you've Cast Dash recently","better":1,"matchers":[{"string":"최근 4초 이내 질주를 시전한 경우 이동 속도 #% 증가"},{"string":"최근 4초 이내 질주를 시전한 경우 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2659793306"]}}} +{"ref":"#% increased Movement Speed if you've Hit an Enemy Recently","better":1,"matchers":[{"string":"최근 4초 이내 적 명중 시 이동 속도 #% 증가"},{"string":"최근 4초 이내 적 명중 시 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3178542354"],"fractured":["fractured.stat_3178542354"]}}} +{"ref":"#% increased Movement Speed if you've Killed Recently","better":1,"matchers":[{"string":"최근 4초 이내 적을 처치한 경우 이동 속도 #% 증가"},{"string":"최근 4초 이내 적을 처치한 경우 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_279227559"],"fractured":["fractured.stat_279227559"]}}} +{"ref":"#% increased Movement Speed if you've Warcried Recently","better":1,"matchers":[{"string":"최근 4초 이내 함성을 사용한 경우 이동 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2546417825"]}}} +{"ref":"#% increased Movement Speed on Shocked Ground","better":1,"matchers":[{"string":"감전 지대에서 이동 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3678841229"]}}} +{"ref":"#% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius","better":1,"matchers":[{"string":"반경 내 할당된 패시브 스킬의 민첩 10당 이동 속도 #% 증가"},{"string":"반경 내 할당된 패시브 스킬의 민첩 10당 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1795365307"]}}} +{"ref":"#% increased Movement Speed per 10 Dexterity on Unallocated Passives in Radius","better":1,"matchers":[{"string":"반경 내 할당되지 않은 패시브 스킬의 민첩 10당 이동 속도 #% 증가"},{"string":"반경 내 할당되지 않은 패시브 스킬의 민첩 10당 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4169318921"]}}} +{"ref":"#% increased Movement Speed per Endurance Charge","better":1,"matchers":[{"string":"인내 충전 하나당 이동 속도 #% 증가"},{"string":"인내 충전 하나당 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2116250000"]}}} +{"ref":"#% increased Movement Speed per Frenzy Charge","better":1,"matchers":[{"string":"격분 충전 하나당 이동 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1541516339"],"fractured":["fractured.stat_1541516339"]}}} +{"ref":"#% increased Movement Speed per Power Charge","better":1,"matchers":[{"string":"권능 충전 하나당 이동 속도 #% 증가"},{"string":"권능 충전 하나당 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3774108776"]}}} +{"ref":"#% increased Movement Speed when on Full Life","better":1,"matchers":[{"string":"생명력이 최대일 때 이동 속도 #% 증가"},{"string":"생명력이 최대일 때 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3393547195"]}}} +{"ref":"#% increased Movement Speed when on Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태일 때 이동 속도 #% 증가"},{"string":"낮은 생명력 상태일 때 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_649025131"]}}} +{"ref":"#% increased Movement Speed while affected by a Magic Abyss Jewel","better":1,"matchers":[{"string":"마법 심연 주얼의 영향을 받는 동안 이동 속도 #% 증가"},{"string":"마법 심연 주얼의 영향을 받는 동안 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3874817029"]}}} +{"ref":"#% increased Movement Speed while affected by Grace","better":1,"matchers":[{"string":"은총의 영향을 받는 동안 이동 속도 #% 증가"},{"string":"은총의 영향을 받는 동안 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3329402420"]}}} +{"ref":"#% increased Movement Speed while area is not in Lockdown\nPlayers have #% increased Movement Speed while area is not in Lockdown","better":1,"matchers":[{"string":"지역이 폐쇄 중이 아닐 때 이동 속도 #% 증가\n지역이 폐쇄 중이 아닐 때 플레이어의 이동 속도 #% 증가"},{"string":"지역이 폐쇄 중이 아닐 때 이동 속도 #% 감소\n지역이 폐쇄 중이 아닐 때 플레이어의 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_902577520"],"fractured":["fractured.stat_902577520"]}}} +{"ref":"#% increased Movement Speed while Bleeding","better":1,"matchers":[{"string":"출혈 상태에서 이동 속도 #% 증가"},{"string":"출혈 상태에서 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_696659555"]}}} +{"ref":"#% increased Movement Speed while Chilled","better":1,"matchers":[{"string":"냉각 상태에서 이동 속도 #% 증가"},{"string":"냉각 상태에서 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2203777380"]}}} +{"ref":"#% increased Movement Speed while Ignited","better":1,"matchers":[{"string":"점화 상태에서 이동 속도 #% 증가"},{"string":"점화 상태에서 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_581625445"]}}} +{"ref":"#% increased Movement speed while on Burning, Chilled or Shocked ground","better":1,"matchers":[{"string":"용암 지대, 얼음 지대, 감전 지대에 있는 동안 이동 속도 #% 증가"},{"string":"용암 지대, 얼음 지대, 감전 지대에 있는 동안 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1521863824"],"fractured":["fractured.stat_1521863824"]}}} +{"ref":"#% increased Movement Speed while on Full Energy Shield","better":1,"matchers":[{"string":"에너지 보호막이 최대일 때 이동 속도 #% 증가"},{"string":"에너지 보호막이 최대일 때 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2825197711"]}}} +{"ref":"#% increased Movement Speed while Phasing","better":1,"matchers":[{"string":"차원 능력 상태에서 이동 속도 #% 증가"},{"string":"차원 능력 상태에서 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3684879618"],"implicit":["implicit.stat_3684879618"]}}} +{"ref":"#% increased Movement Speed while Shocked","better":1,"matchers":[{"string":"감전 상태일 때 이동 속도 #% 증가"},{"string":"감전 상태일 때 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_542923416"]}}} +{"ref":"#% increased Movement Speed while you have Cat's Stealth","better":1,"matchers":[{"string":"고양이의 은신 상태에서 이동 속도 #% 증가"},{"string":"고양이의 은신 상태에서 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_673704994"]}}} +{"ref":"#% increased number of Explosives","better":1,"fromAreaMods":true,"matchers":[{"string":"폭발물 개수 #% 증가"}],"trade":{"ids":{"implicit":["implicit.stat_3051490307"]}}} +{"ref":"#% increased number of Rare Monsters","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"희귀 몬스터 수 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3793155082"],"fractured":["fractured.stat_3793155082"]}}} +{"ref":"#% increased Orb of Storms Area of Effect","better":1,"matchers":[{"string":"폭풍 보주 효과 범위 #% 증가"},{"string":"폭풍 보주 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2875508213"]}}} +{"ref":"#% increased Orb of Storms Critical Strike Chance","better":1,"matchers":[{"string":"폭풍 보주 치명타 확률 #% 증가"},{"string":"폭풍 보주 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_168538372"]}}} +{"ref":"#% increased Perception Experience gained","better":1,"matchers":[{"string":"통찰력 경험치 획득량 #% 증가"},{"string":"통찰력 경험치 획득량 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_154668190"],"fractured":["fractured.stat_154668190"]}}} +{"ref":"#% increased Perception speed","better":1,"matchers":[{"string":"통찰력 속도 #% 증가"},{"string":"통찰력 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1456551059"],"implicit":["implicit.stat_1456551059"],"fractured":["fractured.stat_1456551059"]}}} +{"ref":"#% increased Phase Run Duration","better":1,"matchers":[{"string":"위상 질주 지속시간 #% 증가"},{"string":"위상 질주 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2556095677"]}}} +{"ref":"#% increased Physical Attack Damage while Dual Wielding","better":1,"matchers":[{"string":"쌍수 장착 시 물리 공격 피해 #% 증가"},{"string":"쌍수 장착 시 물리 공격 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1274831335"],"fractured":["fractured.stat_1274831335"]}}} +{"ref":"#% increased Physical Damage","better":1,"matchers":[{"string":"물리 피해 없음","value":-1},{"string":"물리 피해 #% 증가"},{"string":"물리 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1509134228"],"implicit":["implicit.stat_1509134228"],"fractured":["fractured.stat_1509134228"],"enchant":["enchant.stat_1509134228"],"crafted":["crafted.stat_1509134228"]}}} +{"ref":"#% increased Physical Damage over Time","better":1,"matchers":[{"string":"지속 물리 피해 #% 증가"},{"string":"지속 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1692565595"],"fractured":["fractured.stat_1692565595"]}}} +{"ref":"#% increased Physical Damage Over Time per 10 Dexterity","better":1,"matchers":[{"string":"민첩 10당 지속 물리 피해 #% 증가"},{"string":"민첩 10당 지속 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_555311393"]}}} +{"ref":"#% increased Physical Damage per Endurance Charge","better":1,"matchers":[{"string":"인내 충전 하나당 물리 피해 #% 증가"},{"string":"인내 충전 하나당 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2481358827"]}}} +{"ref":"#% increased Physical Damage taken","better":-1,"matchers":[{"string":"받는 물리 피해 #% 증가"},{"string":"받는 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3853018505"],"scourge":["scourge.stat_3853018505"]}}} +{"ref":"#% increased Physical Damage while affected by Herald of Purity","better":1,"matchers":[{"string":"순수의 전령에 영향을 받는 동안 물리 피해 #% 증가"},{"string":"순수의 전령에 영향을 받는 동안 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3294232483"]}}} +{"ref":"#% increased Physical Damage while using Pride","better":1,"matchers":[{"string":"자부심을 사용하는 동안 물리 피해 #% 증가"},{"string":"자부심을 사용하는 동안 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_576528026"]}}} +{"ref":"#% increased Physical Damage while you have Resolute Technique","better":1,"matchers":[{"string":"확고한 기술이 지속되는 동안 물리 피해 #% 증가"},{"string":"확고한 기술이 지속되는 동안 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1258679667"]}}} +{"ref":"#% increased Physical Damage while you have Unholy Might","better":1,"matchers":[{"string":"불경한 힘이 있는 동안 물리 피해 #% 증가"},{"string":"불경한 힘이 있는 동안 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1609570656"]}}} +{"ref":"#% increased Physical Damage with Attack Skills","better":1,"matchers":[{"string":"공격 스킬의 물리 피해 #% 증가"},{"string":"공격 스킬의 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2266750692"]}}} +{"ref":"#% increased Physical Damage with Axes","better":1,"matchers":[{"string":"도끼 사용 시 물리 피해 #% 증가"},{"string":"도끼 사용 시 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2008219439"],"implicit":["implicit.stat_2008219439"],"fractured":["fractured.stat_2008219439"]}}} +{"ref":"#% increased Physical Damage with Bows","better":1,"matchers":[{"string":"활 사용 시 물리 피해 #% 증가"},{"string":"활 사용 시 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_402920808"],"implicit":["implicit.stat_402920808"],"fractured":["fractured.stat_402920808"]}}} +{"ref":"#% increased Physical Damage with Claws","better":1,"matchers":[{"string":"클로 사용 시 물리 피해 #% 증가"},{"string":"클로 사용 시 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_635761691"],"implicit":["implicit.stat_635761691"],"fractured":["fractured.stat_635761691"]}}} +{"ref":"#% increased Physical Damage with Daggers","better":1,"matchers":[{"string":"단검 사용 시 물리 피해 #% 증가"},{"string":"단검 사용 시 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3882531569"],"implicit":["implicit.stat_3882531569"],"fractured":["fractured.stat_3882531569"]}}} +{"ref":"#% increased Physical Damage with Hits and Ailments against Ignited Enemies","better":1,"matchers":[{"string":"점화된 적에 대한 적중 및 상태 이상 물리 피해 #% 증가"},{"string":"점화된 적에 대한 적중 및 상태 이상 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3375415245"]}}} +{"ref":"#% increased Physical Damage with Maces or Sceptres","better":1,"matchers":[{"string":"철퇴나 셉터 사용 시 물리 피해 #% 증가"},{"string":"철퇴나 셉터 사용 시 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3774831856"],"implicit":["implicit.stat_3774831856"],"fractured":["fractured.stat_3774831856"]}}} +{"ref":"#% increased Physical Damage with Ranged Weapons","better":1,"matchers":[{"string":"원거리 무기 사용 시 물리 피해 #% 증가"},{"string":"원거리 무기 사용 시 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_766615564"]}}} +{"ref":"#% increased Physical Damage with Spell Skills","better":1,"matchers":[{"string":"주문 스킬로 주는 물리 피해 #% 증가"},{"string":"주문 스킬로 주는 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1430255627"]}}} +{"ref":"#% increased Physical Damage with Staves","better":1,"matchers":[{"string":"지팡이 사용 시 물리 피해 #% 증가"},{"string":"지팡이 사용 시 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3150705301"],"implicit":["implicit.stat_3150705301"],"fractured":["fractured.stat_3150705301"]}}} +{"ref":"#% increased Physical Damage with Swords","better":1,"matchers":[{"string":"검 사용 시 물리 피해 #% 증가"},{"string":"검 사용 시 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3814560373"],"implicit":["implicit.stat_3814560373"],"fractured":["fractured.stat_3814560373"]}}} +{"ref":"#% increased Physical Damage with Wands","better":1,"matchers":[{"string":"마법봉 사용 시 물리 피해 #% 증가"},{"string":"마법봉 사용 시 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2769075491"],"implicit":["implicit.stat_2769075491"],"fractured":["fractured.stat_2769075491"]}}} +{"ref":"#% increased Physical Weapon Damage per 10 Strength","better":1,"matchers":[{"string":"힘 10당 물리 무기 피해 #% 증가"},{"string":"힘 10당 물리 무기 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2594215131"]}}} +{"ref":"#% increased Poacher's Mark Curse Effect","better":1,"matchers":[{"string":"밀렵꾼의 징표 저주 효과 #% 증가"},{"string":"밀렵꾼의 징표 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3278819254"]}}} +{"ref":"#% increased Poison Duration","better":1,"matchers":[{"string":"중독 지속시간 #% 증가"},{"string":"중독 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2011656677"],"implicit":["implicit.stat_2011656677"],"fractured":["fractured.stat_2011656677"]}}} +{"ref":"#% increased Poison Duration for each Poison you have inflicted Recently, up to a maximum of 100%","better":1,"matchers":[{"string":"최근 4초 이내 적에게 유발한 중독 하나당 중독 지속시간 #% 증가, 최대 100% 증가"},{"string":"최근 4초 이내 적에게 유발한 중독 하나당 중독 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_86516932"]}}} +{"ref":"#% increased Poison Duration if you have at least 150 Intelligence","better":1,"matchers":[{"string":"지능이 150 이상인 경우 중독 지속시간 #% 증가"},{"string":"지능이 150 이상인 경우 중독 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2771181375"]}}} +{"ref":"#% increased Poison Duration on you","better":1,"matchers":[{"string":"플레이어에게 적용되는 중독 지속시간 #% 증가"},{"string":"플레이어에게 적용되는 중독 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3301100256"],"implicit":["implicit.stat_3301100256"],"fractured":["fractured.stat_3301100256"]}}} +{"ref":"#% increased Poison Duration per Power Charge","better":1,"matchers":[{"string":"권능 충전 하나당 중독 지속시간 #% 증가"},{"string":"권능 충전 하나당 중독 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3491499175"]}}} +{"ref":"#% increased Poisonous Concoction Area of Effect","better":1,"matchers":[{"string":"독성 혼합물 효과 범위 #% 증가"},{"string":"독성 혼합물 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3892584986"]}}} +{"ref":"#% increased Poisonous Concoction Damage","better":1,"matchers":[{"string":"독성 혼합물 피해 #% 증가"},{"string":"독성 혼합물 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_295557151"]}}} +{"ref":"#% increased Power Charge Duration","better":1,"matchers":[{"string":"권능 충전 지속시간 #% 증가"},{"string":"권능 충전 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3872306017"],"implicit":["implicit.stat_3872306017"],"enchant":["enchant.stat_3872306017"]}}} +{"ref":"#% increased Power Siphon Attack Speed","better":1,"matchers":[{"string":"권능 착취 공격 속도 #% 증가"},{"string":"권능 착취 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2753191013"]}}} +{"ref":"#% increased Power Siphon Damage","better":1,"matchers":[{"string":"권능 착취 피해 #% 증가"},{"string":"권능 착취 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_78767457"]}}} +{"ref":"#% increased Prefix Modifier magnitudes","better":1,"matchers":[{"string":"접두어 속성 규모 #% 증가"},{"string":"접두어 속성 규모 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1794120699"]}}} +{"ref":"#% increased Projectile Attack Damage","better":1,"matchers":[{"string":"투사체 공격 피해 #% 증가"},{"string":"투사체 공격 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2162876159"],"implicit":["implicit.stat_2162876159"],"fractured":["fractured.stat_2162876159"]}}} +{"ref":"#% increased Projectile Attack Damage during any Flask Effect","better":1,"matchers":[{"string":"아무 플라스크나 효과를 받는 동안 투사체 공격 피해 #% 증가"},{"string":"아무 플라스크나 효과를 받는 동안 투사체 공격 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2771016039"],"fractured":["fractured.stat_2771016039"]}}} +{"ref":"#% increased Projectile Attack Damage per 200 Accuracy Rating","better":1,"matchers":[{"string":"정확도 200당 투사체 공격 피해 #% 증가"},{"string":"정확도 200당 투사체 공격 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4157767905"],"fractured":["fractured.stat_4157767905"]}}} +{"ref":"#% increased Projectile Attack Damage while you have at least 200 Dexterity","better":1,"matchers":[{"string":"민첩이 200 이상인 상태에서 투사체 공격 피해 #% 증가"},{"string":"민첩이 200 이상인 상태에서 투사체 공격 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1822142649"]}}} +{"ref":"#% increased Projectile Damage","better":1,"matchers":[{"string":"투사체 피해 #% 증가"},{"string":"투사체 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1839076647"],"implicit":["implicit.stat_1839076647"],"fractured":["fractured.stat_1839076647"],"scourge":["scourge.stat_1839076647"],"crafted":["crafted.stat_1839076647"]}}} +{"ref":"#% increased Projectile Damage per Power Charge","better":1,"matchers":[{"string":"권능 충전 하나당 투사체 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3816512110"]}}} +{"ref":"#% increased Projectile Damage while in Blood Stance","better":1,"matchers":[{"string":"핏빛 태세에서 주는 투사체 피해 #% 증가"},{"string":"핏빛 태세에서 주는 투사체 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2982500944"]}}} +{"ref":"#% increased Projectile Speed","better":1,"matchers":[{"string":"투사체 속도 #% 증가"},{"string":"투사체 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3759663284"],"implicit":["implicit.stat_3759663284"],"fractured":["fractured.stat_3759663284"],"scourge":["scourge.stat_3759663284"],"crafted":["crafted.stat_3759663284"]}}} +{"ref":"#% increased Projectile Speed per Frenzy Charge","better":1,"matchers":[{"string":"격분 충전 하나당 투사체 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3159161267"]}}} +{"ref":"#% increased Protective Link Duration","better":1,"matchers":[{"string":"보호의 연결 지속시간 #% 증가"},{"string":"보호의 연결 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3917923501"]}}} +{"ref":"#% increased Puncture Damage","better":1,"matchers":[{"string":"관통상 피해 #% 증가"},{"string":"관통상 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3496292484"]}}} +{"ref":"#% increased Puncture Duration","better":1,"matchers":[{"string":"관통상 지속시간 #% 증가"},{"string":"관통상 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3186938438"]}}} +{"ref":"#% increased Punishment Curse Effect","better":1,"matchers":[{"string":"응징 저주 효과 #% 증가"},{"string":"응징 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2844206732"],"enchant":["enchant.stat_2844206732"]}}} +{"ref":"#% increased Punishment Duration","better":1,"matchers":[{"string":"응징 지속시간 #% 증가"},{"string":"응징 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1924239636"]}}} +{"ref":"#% increased quantity of Artifacts dropped by Monsters","better":1,"fromAreaMods":true,"matchers":[{"string":"몬스터가 떨어뜨리는 유물의 수량 #% 감소"},{"string":"몬스터가 떨어뜨리는 유물의 수량 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_4219583418"],"implicit":["implicit.stat_4219583418"]}}} +{"ref":"#% increased Quantity of Fish Caught","better":1,"matchers":[{"string":"포획하는 물고기 수 #% 증가"},{"string":"포획하는 물고기 수 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3802667447"],"implicit":["implicit.stat_3802667447"],"fractured":["fractured.stat_3802667447"]}}} +{"ref":"#% increased Quantity of Items Dropped by Slain Frozen Enemies","better":1,"matchers":[{"string":"동결된 적 처치 시 떨어뜨리는 아이템 수량 #% 증가"},{"string":"동결된 적 처치 시 떨어뜨리는 아이템 수량 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3304763863"]}}} +{"ref":"#% increased Quantity of Items Dropped by Slain Normal Enemies","better":1,"matchers":[{"string":"처치한 일반 적이 떨어뜨리는 아이템 수량 #% 증가"},{"string":"처치한 일반 적이 떨어뜨리는 아이템 수량 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1342790450"]}}} +{"ref":"#% increased Quantity of Items dropped in Heists","better":1,"matchers":[{"string":"강탈에서 떨어지는 아이템 수량 #% 증가"},{"string":"강탈에서 떨어지는 아이템 수량 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3683643898"],"fractured":["fractured.stat_3683643898"]}}} +{"ref":"#% increased Quantity of Items found","better":1,"matchers":[{"string":"발견하는 아이템 수량 #% 증가"},{"string":"발견하는 아이템 수량 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_884586851"],"implicit":["implicit.stat_884586851"],"fractured":["fractured.stat_884586851"]}}} +{"ref":"#% increased Quantity of Items found during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 발견하는 아이템 수량 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3736953565"]}}} +{"ref":"#% increased Quantity of Items found when on Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태일 때 발견하는 아이템 수량 #% 증가"},{"string":"낮은 생명력 상태일 때 발견하는 아이템 수량 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_760855772"]}}} +{"ref":"#% increased Quantity of Items found with a Magic Item Equipped","better":1,"matchers":[{"string":"마법 아이템 장착 시 발견 아이템 수량 #% 증가"},{"string":"마법 아이템 장착 시 발견 아이템 수량 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1498954300"]}}} +{"ref":"#% increased Quantity of Relics Dropped by Monsters","better":1,"matchers":[{"string":"#% increased Quantity of Relics Dropped by Monsters"},{"string":"#% reduced Quantity of Relics Dropped by Monsters","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_1680962389"]}}} +{"ref":"#% increased Rage Cost of Skills","better":1,"matchers":[{"string":"스킬의 격노 소모 #% 증가"},{"string":"스킬의 격노 소모 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3415234440"]}}} +{"ref":"#% increased Rage Vortex Area of Effect","better":1,"matchers":[{"string":"격노 소용돌이의 효과 범위 #% 증가"},{"string":"격노 소용돌이의 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3988628118"]}}} +{"ref":"#% increased Rage Vortex Damage","better":1,"matchers":[{"string":"격노 소용돌이 피해 #% 증가"},{"string":"격노 소용돌이 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3153431030"]}}} +{"ref":"#% increased Rain of Arrows Area of Effect","better":1,"matchers":[{"string":"화살비 효과 범위 #% 증가"},{"string":"화살비 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2205814812"]}}} +{"ref":"#% increased Rain of Arrows Attack Speed","better":1,"matchers":[{"string":"화살비 공격 속도 #% 증가"},{"string":"화살비 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3825617457"]}}} +{"ref":"#% increased Rain of Arrows Damage","better":1,"matchers":[{"string":"화살비 피해 #% 증가"},{"string":"화살비 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3432170876"]}}} +{"ref":"#% increased Raised Zombie Size","better":1,"matchers":[{"string":"소환한 좀비의 크기 #% 증가"},{"string":"소환한 좀비의 크기 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3563667308"]}}} +{"ref":"#% increased raising of Alert Level","better":-1,"matchers":[{"string":"경보 레벨 상승률 #% 증가"},{"string":"경보 레벨 상승률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_703341733"],"implicit":["implicit.stat_703341733"]}}} +{"ref":"#% increased raising of Alert Level from opening Chests","better":-1,"matchers":[{"string":"상자를 열었을 때의 경보 레벨 상승률 #% 증가"},{"string":"상자를 열었을 때의 경보 레벨 상승률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2500803699"],"fractured":["fractured.stat_2500803699"]}}} +{"ref":"#% increased Rallying Cry Buff Effect","better":1,"matchers":[{"string":"집결의 함성 버프 효과 #% 증가"},{"string":"집결의 함성 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4147277532"],"enchant":["enchant.stat_4147277532","enchant.stat_865263728","enchant.stat_945725535"]}}} +{"ref":"#% increased Rarity of Fish Caught","better":1,"matchers":[{"string":"포획하는 물고기 희귀도 #% 증가"},{"string":"포획하는 물고기 희귀도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3310914132"],"implicit":["implicit.stat_3310914132"],"fractured":["fractured.stat_3310914132"],"scourge":["scourge.stat_3310914132"]}}} +{"ref":"#% increased Rarity of Items Dropped by Enemies killed with a Critical Strike","better":1,"matchers":[{"string":"치명타로 처치한 적이 떨어뜨리는 아이템 희귀도 #% 증가"},{"string":"치명타로 처치한 적이 떨어뜨리는 아이템 희귀도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_21824003"]}}} +{"ref":"#% increased Rarity of Items Dropped by Frozen Enemies","better":1,"matchers":[{"string":"동결된 적이 떨어뜨리는 아이템 희귀도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2138434718"]}}} +{"ref":"#% increased Rarity of Items Dropped by Slain Magic Enemies","better":1,"matchers":[{"string":"처치한 마법 적이 떨어뜨리는 아이템 희귀도 #% 증가"},{"string":"처치한 마법 적이 떨어뜨리는 아이템 희귀도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3433676080"]}}} +{"ref":"#% increased Rarity of Items Dropped by Slain Rare or Unique Enemies","better":1,"matchers":[{"string":"희귀 또는 고유 적 처치 시 떨어지는 아이템 희귀도 #% 증가"},{"string":"희귀 또는 고유 적 처치 시 떨어지는 아이템 희귀도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2161689853"],"fractured":["fractured.stat_2161689853"],"crafted":["crafted.stat_2161689853"]}}} +{"ref":"#% increased Rarity of Items Dropped by Slain Shocked Enemies","better":1,"matchers":[{"string":"감전된 적 처치 시 떨어뜨리는 아이템 희귀도 #% 증가"},{"string":"감전된 적 처치 시 떨어뜨리는 아이템 희귀도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3188291252"]}}} +{"ref":"#% increased Rarity of Items dropped in Heists","better":1,"matchers":[{"string":"강탈에서 떨어지는 아이템 희귀도 #% 증가"},{"string":"강탈에서 떨어지는 아이템 희귀도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2833896424"],"implicit":["implicit.stat_2833896424"],"fractured":["fractured.stat_2833896424"]}}} +{"ref":"#% increased Rarity of Items found","better":1,"matchers":[{"string":"발견하는 아이템 희귀도 #% 증가"},{"string":"발견하는 아이템 희귀도 #% 감소","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_rarity"],"explicit":["explicit.stat_3917489142"],"implicit":["implicit.stat_3917489142"],"fractured":["fractured.stat_3917489142"],"scourge":["scourge.stat_3917489142"],"crafted":["crafted.stat_3917489142"]}}} +{"ref":"#% increased Rarity of Items found during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 발견하는 아이템 희귀도 #% 증가"},{"string":"효과를 받는 동안 발견하는 아이템 희귀도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1740200922","explicit.stat_3251705960"],"crafted":["crafted.stat_3251705960"]}}} +{"ref":"#% increased Rarity of Items found from Slain Unique Enemies","better":1,"matchers":[{"string":"고유 적 처치 시 발견하는 아이템 희귀도 #% 증가"},{"string":"고유 적 처치 시 발견하는 아이템 희귀도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_121185030"],"fractured":["fractured.stat_121185030"]}}} +{"ref":"#% increased Rarity of Items found per Mana Burn, up to a maximum of 100%","better":1,"matchers":[{"string":"마나 연소 하나당 발견하는 아이템 희귀도 #% 증가, 최대 100%"}],"trade":{"ids":{"explicit":["explicit.stat_3226452989"]}}} +{"ref":"#% increased Rarity of Items found when on Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태일 때 발견하는 아이템 희귀도 #% 증가"},{"string":"낮은 생명력 상태일 때 발견하는 아이템 희귀도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2929867083"]}}} +{"ref":"#% increased Rarity of Items found with a Normal Item Equipped","better":1,"matchers":[{"string":"일반 아이템 장착 시 발견 아이템 희귀도 #% 증가"},{"string":"일반 아이템 장착 시 발견 아이템 희귀도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4151190513"]}}} +{"ref":"#% increased Reap Area of Effect","better":1,"matchers":[{"string":"낫질 효과 범위 #% 증가"},{"string":"낫질 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_647221668"]}}} +{"ref":"#% increased Reave Damage","better":1,"matchers":[{"string":"약탈 피해 #% 증가"},{"string":"약탈 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_862824495"]}}} +{"ref":"#% increased Reave Radius","better":1,"matchers":[{"string":"약탈의 반경 #% 증가"},{"string":"약탈의 반경 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1486490067"]}}} +{"ref":"#% increased Reckoning Damage","better":1,"matchers":[{"string":"징벌 피해 #% 증가"},{"string":"징벌 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_308326229"]}}} +{"ref":"#% increased Recovery rate","better":1,"matchers":[{"string":"회복 속도 #% 증가"},{"string":"회복 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_173226756"],"fractured":["fractured.stat_173226756"]}}} +{"ref":"#% increased Recovery rate of Life and Energy Shield","better":1,"matchers":[{"string":"생명력 및 에너지 보호막 회복 속도 #% 증가"},{"string":"생명력 및 에너지 보호막 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1092546321"]}}} +{"ref":"#% increased Recovery rate of Life and Energy Shield per Power Charge","better":1,"matchers":[{"string":"권능 충전 하나당 생명력 및 에너지 보호막 회복 속도 #% 증가"},{"string":"권능 충전 하나당 생명력 및 에너지 보호막 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_604671218"]}}} +{"ref":"#% increased Recovery rate of Life and Energy Shield while affected by Malevolence","better":1,"matchers":[{"string":"악의의 영향을 받는 동안 생명력 및 에너지 보호막 회복 속도 #% 증가"},{"string":"악의의 영향을 받는 동안 생명력 및 에너지 보호막 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3643449791"]}}} +{"ref":"#% increased Reeling Stability","better":1,"matchers":[{"string":"줄 감기 안정도 #% 증가"},{"string":"줄 감기 안정도 #% 감소","negate":true}],"trade":{"ids":{"scourge":["scourge.stat_3332149074"]}}} +{"ref":"#% increased Rejuvenation Totem Aura Effect","better":1,"matchers":[{"string":"회복 토템 오라 효과 #% 증가"},{"string":"회복 토템 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1588572574"]}}} +{"ref":"#% increased Reservation Efficiency of Skills","better":1,"matchers":[{"string":"스킬의 점유 효율 #% 증가"},{"string":"스킬의 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2587176568","explicit.stat_4202507508"],"implicit":["implicit.stat_2587176568","implicit.stat_4202507508"]}}} +{"ref":"#% increased Reservation Efficiency of Skills while affected by a Unique Abyss Jewel","better":1,"matchers":[{"string":"고유 심연 주얼의 영향을 받는 동안 스킬의 점유 효율 #% 증가"},{"string":"고유 심연 주얼의 영향을 받는 동안 스킬의 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2811179011"]}}} +{"ref":"#% increased Reservation of Curse Aura Skills","better":1,"matchers":[{"string":"저주 오라 스킬의 점유 #% 증가"},{"string":"저주 오라 스킬의 점유 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3292930705"]}}} +{"ref":"#% increased Resolve Aegis","better":1,"matchers":[{"string":"투지 비호 #% 증가"},{"string":"투지 비호 #% 감소","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_1388771661"]}}} +{"ref":"#% increased Resolve Recovered","better":1,"matchers":[{"string":"투지 회복량 #% 증가"},{"string":"투지 회복량 #% 감소","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_1306482168"]}}} +{"ref":"#% increased Righteous Fire Area of Effect","better":1,"matchers":[{"string":"정의의 화염 효과 범위 #% 증가"},{"string":"정의의 화염 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2430635444"]}}} +{"ref":"#% increased Righteous Fire Damage","better":1,"matchers":[{"string":"정의의 화염 피해 #% 증가"},{"string":"정의의 화염 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3359178310"]}}} +{"ref":"#% increased Riposte Damage","better":1,"matchers":[{"string":"반격 피해 #% 증가"},{"string":"반격 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4071708873"]}}} +{"ref":"#% increased Rogue's Marker value of primary Heist Target","better":1,"matchers":[{"string":"주요 강탈 대상의 도둑의 증표 가치 #% 증가"},{"string":"주요 강탈 대상의 도둑의 증표 가치 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2357136187"],"fractured":["fractured.stat_2357136187"]}}} +{"ref":"#% increased Rolling Magma Area of Effect","better":1,"matchers":[{"string":"몰려오는 마그마 효과 범위 #% 증가"},{"string":"몰려오는 마그마 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1646093658"]}}} +{"ref":"#% increased Rolling Magma Damage","better":1,"matchers":[{"string":"몰려오는 마그마 피해 #% 증가"},{"string":"몰려오는 마그마 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_600891507"]}}} +{"ref":"#% increased Scorching Ray beam length","better":1,"matchers":[{"string":"작열 광선 사거리 #% 증가"},{"string":"작열 광선 사거리 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_702909553"],"enchant":["enchant.stat_702909553"]}}} +{"ref":"#% increased Scorching Ray Cast Speed","better":1,"matchers":[{"string":"작열 광선 시전 속도 #% 증가"},{"string":"작열 광선 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3279758713"]}}} +{"ref":"#% increased Scorching Ray Damage","better":1,"matchers":[{"string":"작열 광선 피해 #% 증가"},{"string":"작열 광선 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3395096718"]}}} +{"ref":"#% increased Searing Bond Damage","better":1,"matchers":[{"string":"불타는 굴레 피해 #% 증가"},{"string":"불타는 굴레 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2298223148"]}}} +{"ref":"#% increased Searing Bond Totem Elemental Resistances","better":1,"matchers":[{"string":"불타는 굴레 토템 원소 저항 #% 증가"},{"string":"불타는 굴레 토템 원소 저항 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2519689029"]}}} +{"ref":"#% increased Searing Bond Totem Placement Speed","better":1,"matchers":[{"string":"불타는 굴레 토템 설치 속도 #% 증가"},{"string":"불타는 굴레 토템 설치 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_708179348"]}}} +{"ref":"#% increased Sentinel of Absolution Duration","better":1,"matchers":[{"string":"면죄의 파수꾼 지속시간 #% 증가"},{"string":"면죄의 파수꾼 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1778800422"]}}} +{"ref":"#% increased Sentinel of Dominance Duration","better":1,"matchers":[{"string":"지배의 파수꾼 지속시간 #% 증가"},{"string":"지배의 파수꾼 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3772643988"]}}} +{"ref":"#% increased Shield Charge Attack Speed","better":1,"matchers":[{"string":"방패 돌진 공격 속도 #% 증가"},{"string":"방패 돌진 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_648343221"]}}} +{"ref":"#% increased Shield Charge Damage","better":1,"matchers":[{"string":"방패 돌진 피해 #% 증가"},{"string":"방패 돌진 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3490662882"]}}} +{"ref":"#% increased Shield Crush Attack Speed","better":1,"matchers":[{"string":"방패 타쇄 공격 속도 #% 증가"},{"string":"방패 타쇄 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1948292587"]}}} +{"ref":"#% increased Shield Crush Damage","better":1,"matchers":[{"string":"방패 타쇄 피해 #% 증가"},{"string":"방패 타쇄 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1451671945"]}}} +{"ref":"#% increased Shock Duration on Enemies","better":1,"matchers":[{"string":"적에게 적용되는 감전 지속시간 #% 증가"},{"string":"적에게 적용되는 감전 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3668351662"],"implicit":["implicit.stat_3668351662"],"fractured":["fractured.stat_3668351662"],"crafted":["crafted.stat_3668351662"]}}} +{"ref":"#% increased Shock Nova Area of Effect","better":1,"matchers":[{"string":"충격 폭발 효과 범위 #% 증가"},{"string":"충격 폭발 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_565901339"]}}} +{"ref":"#% increased Shock Nova Damage","better":1,"matchers":[{"string":"충격 폭발 피해 #% 증가"},{"string":"충격 폭발 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3948894096"]}}} +{"ref":"#% increased Shockwave Totem Area of Effect","better":1,"matchers":[{"string":"충격파 토템 효과 범위 #% 증가"},{"string":"충격파 토템 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1153159301"]}}} +{"ref":"#% increased Shockwave Totem Cast Speed","better":1,"matchers":[{"string":"충격파 토템 시전 속도 #% 증가"},{"string":"충격파 토템 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2259906777"]}}} +{"ref":"#% increased Shockwave Totem Damage","better":1,"matchers":[{"string":"충격파 토템 피해 #% 증가"},{"string":"충격파 토템 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2440551805"]}}} +{"ref":"#% increased Size of Fish caught during Daytime","better":1,"matchers":[{"string":"낮에 잡는 물고기 크기 #% 증가"},{"string":"낮에 잡는 물고기 크기 #% 감소","negate":true}],"trade":{"ids":{"scourge":["scourge.stat_1771018579"]}}} +{"ref":"#% increased Skeleton Attack Speed","better":1,"matchers":[{"string":"해골의 공격 속도 #% 증가"},{"string":"해골의 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3413085237"]}}} +{"ref":"#% increased Skeleton Cast Speed","better":1,"matchers":[{"string":"해골의 시전 속도 #% 증가"},{"string":"해골의 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2725259389"]}}} +{"ref":"#% increased Skeleton Duration","better":1,"matchers":[{"string":"해골 지속시간 #% 증가"},{"string":"해골 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1331384105"]}}} +{"ref":"#% increased Skeleton Movement Speed","better":1,"matchers":[{"string":"해골의 이동 속도 #% 증가"},{"string":"해골의 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3295031203"]}}} +{"ref":"#% increased Skill Effect Duration","better":1,"matchers":[{"string":"스킬 효과 지속시간 #% 증가"},{"string":"스킬 효과 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3377888098"],"implicit":["implicit.stat_3377888098"],"fractured":["fractured.stat_3377888098"]}}} +{"ref":"#% increased Smoke Mine Duration","better":1,"matchers":[{"string":"연막 지뢰 지속시간 #% 증가"},{"string":"연막 지뢰 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3719728947"]}}} +{"ref":"#% increased Soul Gain Prevention Duration","better":1,"matchers":[{"string":"영혼 획득 방지 지속시간 #% 증가"},{"string":"영혼 획득 방지 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1980613100"]}}} +{"ref":"#% increased Soul Link Duration","better":1,"matchers":[{"string":"영혼의 연결 지속시간 #% 증가"},{"string":"영혼의 연결 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3975033889"]}}} +{"ref":"#% increased Spark Damage","better":1,"matchers":[{"string":"전기불꽃 피해 #% 증가"},{"string":"전기불꽃 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1208019382"]}}} +{"ref":"#% increased Spectral Helix Damage","better":1,"matchers":[{"string":"영체 나선 피해 #% 증가"},{"string":"영체 나선 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_183131376"]}}} +{"ref":"#% increased Spectral Helix Projectile Speed","better":1,"matchers":[{"string":"영체 나선 투사체 속도 #% 증가"},{"string":"영체 나선 투사체 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1952647315"]}}} +{"ref":"#% increased Spectral Shield Throw Damage","better":1,"matchers":[{"string":"환영 방패 투척 피해 #% 증가"},{"string":"환영 방패 투척 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1891516164"]}}} +{"ref":"#% increased Spectral Shield Throw Projectile Speed","better":1,"matchers":[{"string":"환영 방패 투척 투사체 속도 #% 증가"},{"string":"환영 방패 투척 투사체 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1561141582"]}}} +{"ref":"#% increased Spectral Throw Damage","better":1,"matchers":[{"string":"환영 무기 투척 피해 #% 증가"},{"string":"환영 무기 투척 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3755794090"]}}} +{"ref":"#% increased Spectral Throw Projectile Speed","better":1,"matchers":[{"string":"환영 무기 투척 투사체 속도 #% 증가"},{"string":"환영 무기 투척 투사체 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1062615953"]}}} +{"ref":"#% increased Spell Critical Strike Chance","better":1,"matchers":[{"string":"주문 치명타 확률 #% 증가"},{"string":"주문 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_737908626"],"implicit":["implicit.stat_737908626"],"fractured":["fractured.stat_737908626"],"enchant":["enchant.stat_737908626"],"crafted":["crafted.stat_737908626"]}}} +{"ref":"#% increased Spell Critical Strike Chance per 100 Player Maximum Life","better":1,"matchers":[{"string":"플레이어의 최대 생명력 100당 주문 치명타 확률 #% 증가"},{"string":"플레이어의 최대 생명력 100당 주문 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3775574601"]}}} +{"ref":"#% increased Spell Critical Strike Chance per Raised Spectre","better":1,"matchers":[{"string":"소환한 망령 하나당 주문 치명타 확률 #% 증가"},{"string":"소환한 망령 하나당 주문 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_495095219"]}}} +{"ref":"#% increased Spell Damage","better":1,"matchers":[{"string":"주문 피해 #% 증가"},{"string":"주문 피해 #% 감소","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_spell_damage"],"explicit":["explicit.stat_2974417149"],"implicit":["implicit.stat_2974417149"],"fractured":["fractured.stat_2974417149"],"enchant":["enchant.stat_2974417149"],"scourge":["scourge.stat_2974417149"],"crafted":["crafted.stat_2974417149"]}}} +{"ref":"#% increased Spell Damage during any Flask Effect","better":1,"matchers":[{"string":"아무 플라스크나 효과를 받는 동안 주문 피해 #% 증가"},{"string":"아무 플라스크나 효과를 받는 동안 주문 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2080171093"],"fractured":["fractured.stat_2080171093"]}}} +{"ref":"#% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%","better":1,"matchers":[{"string":"최근 4초 이내 사용한 마나 200당 주문 피해 #% 증가, 최대 2,000% 증가"},{"string":"최근 4초 이내 사용한 마나 200당 주문 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_347220474"]}}} +{"ref":"#% increased Spell Damage if Corrupted","better":1,"matchers":[{"string":"타락 시 주문 피해 #% 증가"},{"string":"타락 시 주문 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_374116820"]}}} +{"ref":"#% increased Spell Damage if you've dealt a Critical Strike in the past 8 seconds","better":1,"matchers":[{"string":"지난 8초 이내 치명타 명중 시 주문 피해 #% 증가"},{"string":"지난 8초 이내 치명타 명중 시 주문 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_467806158"]}}} +{"ref":"#% increased Spell Damage if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"최근 4초 이내 치명타 명중 시 주문 피해 #% 증가"},{"string":"최근 4초 이내 치명타 명중 시 주문 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1550015622"]}}} +{"ref":"#% increased Spell Damage if your other Ring is an Elder Item","better":1,"matchers":[{"string":"자신의 다른 반지가 엘더 아이템인 경우 주문 피해 #% 증가"},{"string":"자신의 다른 반지가 엘더 아이템인 경우 주문 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2921373173"]}}} +{"ref":"#% increased Spell Damage per 10 Intelligence","better":1,"matchers":[{"string":"지능 10당 주문 피해 #% 증가"},{"string":"지능 10당 주문 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2818518881"],"implicit":["implicit.stat_2818518881"],"fractured":["fractured.stat_2818518881"]}}} +{"ref":"#% increased Spell Damage per 10 Strength","better":1,"matchers":[{"string":"힘 10당 주문 피해 #% 증가"},{"string":"힘 10당 주문 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1073314277"],"implicit":["implicit.stat_1073314277"],"fractured":["fractured.stat_1073314277"]}}} +{"ref":"#% increased Spell Damage per 100 Player Maximum Life","better":1,"matchers":[{"string":"플레이어의 최대 생명력 100 당 주문 피해 #% 증가"},{"string":"플레이어의 최대 생명력 100당 주문 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3491815140"]}}} +{"ref":"#% increased Spell Damage per 16 Dexterity","better":1,"matchers":[{"string":"민첩 16당 주문 피해 #% 증가"},{"string":"민첩 16당 주문 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2612056840"],"implicit":["implicit.stat_2612056840"],"fractured":["fractured.stat_2612056840"]}}} +{"ref":"#% increased Spell Damage per 16 Intelligence","better":1,"matchers":[{"string":"지능 16당 주문 피해 #% 증가"},{"string":"지능 16당 주문 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3961014595"],"implicit":["implicit.stat_3961014595"],"fractured":["fractured.stat_3961014595"]}}} +{"ref":"#% increased Spell Damage per 16 Strength","better":1,"matchers":[{"string":"힘 16당 주문 피해 #% 증가"},{"string":"힘 16당 주문 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4249521944"],"implicit":["implicit.stat_4249521944"],"fractured":["fractured.stat_4249521944"]}}} +{"ref":"#% increased Spell Damage per 5% Chance to Block Attack Damage","better":1,"matchers":[{"string":"공격 피해 막기 확률 5%당 주문 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2449668043"]}}} +{"ref":"#% increased Spell Damage per 500 Maximum Mana","better":1,"matchers":[{"string":"최대 마나 500당 주문 피해 #% 증가"},{"string":"최대 마나 500당 주문 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3555662994"]}}} +{"ref":"#% increased Spell Damage per Power Charge","better":1,"matchers":[{"string":"권능 충전 하나당 주문 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_827329571"],"implicit":["implicit.stat_827329571"]}}} +{"ref":"#% increased Spell Damage taken when on Low Mana","better":1,"matchers":[{"string":"낮은 마나 상태 시 받는 주문 피해 #% 증가"},{"string":"낮은 마나 상태 시 받는 주문 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3557561376"]}}} +{"ref":"#% increased Spell Damage while Dual Wielding","better":1,"matchers":[{"string":"쌍수 장착 시 주문 피해 #% 증가"},{"string":"쌍수 장착 시 주문 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1678690824"],"implicit":["implicit.stat_1678690824"],"fractured":["fractured.stat_1678690824"]}}} +{"ref":"#% increased Spell Damage while holding a Shield","better":1,"matchers":[{"string":"방패를 들고 있는 동안 주문 피해 #% 증가"},{"string":"방패를 들고 있는 동안 주문 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1766142294"],"implicit":["implicit.stat_1766142294"],"fractured":["fractured.stat_1766142294"]}}} +{"ref":"#% increased Spell Damage while no Mana is Reserved","better":1,"matchers":[{"string":"점유된 마나가 없는 동안 주문 피해 #% 증가"},{"string":"점유된 마나가 없는 동안 주문 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3779823630"]}}} +{"ref":"#% increased Spell Damage while wielding a Staff","better":1,"matchers":[{"string":"지팡이 장착 시 주문 피해 #% 증가"},{"string":"지팡이 장착 시 주문 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3496944181"],"implicit":["implicit.stat_3496944181"],"fractured":["fractured.stat_3496944181"]}}} +{"ref":"#% increased Spirit Offering Duration","better":1,"matchers":[{"string":"영혼 공물 지속시간 #% 증가"},{"string":"영혼 공물 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1063173946"]}}} +{"ref":"#% increased Split Arrow Critical Strike Chance","better":1,"matchers":[{"string":"분할 화살 치명타 확률 #% 증가"},{"string":"분할 화살 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1028884162"]}}} +{"ref":"#% increased Split Arrow Damage","better":1,"matchers":[{"string":"분할 화살 피해 #% 증가"},{"string":"분할 화살 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2555469486"]}}} +{"ref":"#% increased Static Strike Area of Effect","better":1,"matchers":[{"string":"정전기 타격 효과 범위 #% 증가"},{"string":"정전기 타격 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2685860927"]}}} +{"ref":"#% increased Static Strike Damage","better":1,"matchers":[{"string":"정전기 타격 피해 #% 증가"},{"string":"정전기 타격 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_551375258"]}}} +{"ref":"#% increased Static Strike Duration","better":1,"matchers":[{"string":"정전기 타격 지속시간 #% 증가"},{"string":"정전기 타격 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2906742892"]}}} +{"ref":"#% increased Storm Burst Area of Effect","better":1,"matchers":[{"string":"폭풍 점사 효과 범위 #% 증가"},{"string":"폭풍 점사 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3961497709"]}}} +{"ref":"#% increased Storm Burst Damage","better":1,"matchers":[{"string":"폭풍 점사 피해 #% 증가"},{"string":"폭풍 점사 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2948719994"]}}} +{"ref":"#% increased Storm Call Area of Effect","better":1,"matchers":[{"string":"폭풍 부름의 효과 범위 #% 증가"},{"string":"폭풍 부름의 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2070247068"]}}} +{"ref":"#% increased Storm Call Damage","better":1,"matchers":[{"string":"폭풍 부름의 피해 #% 증가"},{"string":"폭풍 부름의 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3359777583"]}}} +{"ref":"#% increased Storm Rain Damage","better":1,"matchers":[{"string":"폭풍우 피해 #% 증가"},{"string":"폭풍우 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1463790510"]}}} +{"ref":"#% increased Strength","better":1,"matchers":[{"string":"힘 #% 증가"},{"string":"힘 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_734614379"],"implicit":["implicit.stat_734614379"],"fractured":["fractured.stat_734614379"],"scourge":["scourge.stat_734614379"]}}} +{"ref":"#% increased Strength Requirement","better":1,"matchers":[{"string":"힘 요구사항 없음","value":-100},{"string":"힘 요구사항 #% 증가"},{"string":"힘 요구사항 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_295075366"]}}} +{"ref":"#% increased Stun and Block Recovery","better":1,"matchers":[{"string":"기절 및 막기 회복 #% 증가"},{"string":"기절 및 막기 회복 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2511217560"],"implicit":["implicit.stat_2511217560"],"fractured":["fractured.stat_2511217560"],"scourge":["scourge.stat_2511217560"]}}} +{"ref":"#% increased Stun Duration on Enemies","better":1,"matchers":[{"string":"적에게 적용되는 기절 지속시간 #% 증가"},{"string":"적에게 적용되는 기절 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2517001139"],"implicit":["implicit.stat_2517001139"],"fractured":["fractured.stat_2517001139"],"scourge":["scourge.stat_2517001139"],"crafted":["crafted.stat_2517001139"]}}} +{"ref":"#% increased Stun Duration on you","better":1,"matchers":[{"string":"플레이어에게 적용되는 기절 지속시간 #% 증가"},{"string":"플레이어에게 적용되는 기절 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1067429236"]}}} +{"ref":"#% increased Stun Duration with Melee Weapons","better":1,"matchers":[{"string":"근접 무기로 유발하는 기절의 지속시간 #% 증가"},{"string":"근접 무기로 유발하는 기절의 지속시간 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2912587137"]}}} +{"ref":"#% increased Stun Threshold","better":1,"matchers":[{"string":"기절 한계치 #% 증가"},{"string":"기절 한계치 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_680068163"],"implicit":["implicit.stat_680068163"],"fractured":["fractured.stat_680068163"]}}} +{"ref":"#% increased Suffix Modifier magnitudes","better":1,"matchers":[{"string":"접미어 속성 규모 #% 증가"},{"string":"접미어 속성 규모 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1033086302"]}}} +{"ref":"#% increased Summon Reaper Cooldown Recovery Rate","better":1,"matchers":[{"string":"수확자 소환의 재사용 대기시간 회복 속도 #% 증가"},{"string":"수확자 소환의 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_82475304"]}}} +{"ref":"#% increased Sweep Area of Effect","better":1,"matchers":[{"string":"휩쓸기 효과 범위 #% 증가"},{"string":"휩쓸기 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4202548383"]}}} +{"ref":"#% increased Sweep Damage","better":1,"matchers":[{"string":"휩쓸기 피해 #% 증가"},{"string":"휩쓸기 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_253870897"]}}} +{"ref":"#% increased Taunt Duration","better":1,"matchers":[{"string":"도발 지속시간 #% 증가"},{"string":"도발 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3651611160"]}}} +{"ref":"#% increased Tempest Shield Damage","better":1,"matchers":[{"string":"폭풍의 방패 피해 #% 증가"},{"string":"폭풍의 방패 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2121581717"]}}} +{"ref":"#% increased Temporal Chains Curse Effect","better":1,"matchers":[{"string":"시간의 사슬 저주 효과 #% 증가"},{"string":"시간의 사슬 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1662974426"],"enchant":["enchant.stat_1662974426"]}}} +{"ref":"#% increased Temporal Chains Duration","better":1,"matchers":[{"string":"시간의 사슬 지속시간 #% 증가"},{"string":"시간의 사슬 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_888039248"]}}} +{"ref":"#% increased time before Lockdown","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"폐쇄까지 남은 시간 #% 증가"},{"string":"폐쇄까지 남은 시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2435922859","explicit.stat_4004160031"],"fractured":["fractured.stat_2435922859"],"enchant":["enchant.stat_429193272"]}}} +{"ref":"#% increased Tornado Area of Effect","better":1,"matchers":[{"string":"회오리 효과 범위 #% 증가"},{"string":"회오리 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1866415366"]}}} +{"ref":"#% increased Tornado Damage","better":1,"matchers":[{"string":"회오리 피해 #% 증가"},{"string":"회오리 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2681941384"]}}} +{"ref":"#% increased Tornado Shot Critical Strike Chance","better":1,"matchers":[{"string":"회오리 사격 치명타 확률 #% 증가"},{"string":"회오리 사격 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1815368527"]}}} +{"ref":"#% increased Tornado Shot Damage","better":1,"matchers":[{"string":"회오리 사격 피해 #% 증가"},{"string":"회오리 사격 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3555919553"]}}} +{"ref":"#% increased Total Heist Fee","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"총 강탈 비용 #% 증가"},{"string":"총 강탈 비용 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_553402472"],"fractured":["fractured.stat_553402472"]}}} +{"ref":"#% increased total Recovery per second from Life Leech","better":1,"matchers":[{"string":"생명력 흡수로 인한 초당 총 회복량 #% 증가"},{"string":"생명력 흡수로 인한 초당 총 회복량 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2633745731"],"implicit":["implicit.stat_2633745731"],"fractured":["fractured.stat_2633745731"],"enchant":["enchant.stat_2633745731"]}}} +{"ref":"#% increased total Recovery per second from Life, Mana, or Energy Shield Leech","better":1,"matchers":[{"string":"생명력, 마나 또는 에너지 보호막 흡수 시 1초마다 총 회복량 #% 증가"},{"string":"생명력, 마나 또는 에너지 보호막 흡수 시 1초마다 총 회복량 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2314393054"]}}} +{"ref":"#% increased total Recovery per second from Mana Leech","better":1,"matchers":[{"string":"마나 흡수로 인한 초당 총 회복량 #% 증가"},{"string":"마나 흡수로 인한 초당 총 회복량 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_690135178"],"implicit":["implicit.stat_690135178"],"enchant":["enchant.stat_690135178"]}}} +{"ref":"#% increased Totem Damage","better":1,"matchers":[{"string":"토템 피해 #% 증가"},{"string":"토템 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3851254963"],"fractured":["fractured.stat_3851254963"]}}} +{"ref":"#% increased Totem Damage per 10 Devotion","better":1,"matchers":[{"string":"헌신 10당 토템 피해 #% 증가"},{"string":"헌신 10당 토템 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2566390555"]}}} +{"ref":"#% increased Totem Duration","better":1,"matchers":[{"string":"토템 지속시간 #% 증가"},{"string":"토템 지속시간 #% 감소","negate":true}],"trade":{"ids":{"scourge":["scourge.stat_2357996603"]}}} +{"ref":"#% increased Totem Life","better":1,"matchers":[{"string":"토템 생명력 #% 증가"},{"string":"토템 생명력 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_686254215"],"fractured":["fractured.stat_686254215"],"scourge":["scourge.stat_686254215"]}}} +{"ref":"#% increased Totem Life per 10 Strength Allocated in Radius","better":1,"matchers":[{"string":"반경 내 할당된 힘 10당 토템 생명력 #% 증가"},{"string":"반경 내 할당된 힘 10당 토템 생명력 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_747037697"]}}} +{"ref":"#% increased Totem Placement speed","better":1,"matchers":[{"string":"토템 설치 속도 #% 증가"},{"string":"토템 설치 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3374165039"],"implicit":["implicit.stat_3374165039"],"fractured":["fractured.stat_3374165039"],"enchant":["enchant.stat_3374165039"],"scourge":["scourge.stat_3374165039"],"crafted":["crafted.stat_3374165039"]}}} +{"ref":"#% increased Trap and Mine Throwing Speed","better":1,"matchers":[{"string":"덫과 지뢰 투척 속도 #% 증가"},{"string":"덫과 지뢰 투척 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_464535071"],"fractured":["fractured.stat_464535071"]}}} +{"ref":"#% increased Trap Damage","better":1,"matchers":[{"string":"덫 피해 #% 증가"},{"string":"덫 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2941585404"],"fractured":["fractured.stat_2941585404"],"crafted":["crafted.stat_2941585404"]}}} +{"ref":"#% increased Trap Disarmament Experience gained","better":1,"matchers":[{"string":"덫 해제 경험치 획득량 #% 증가"},{"string":"덫 해제 경험치 획득량 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_502047644"],"fractured":["fractured.stat_502047644"]}}} +{"ref":"#% increased Trap Disarmament speed","better":1,"matchers":[{"string":"덫 해제 속도 #% 증가"},{"string":"덫 해제 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1579578270"],"implicit":["implicit.stat_1579578270"],"fractured":["fractured.stat_1579578270"]}}} +{"ref":"#% increased Trap Duration","better":1,"matchers":[{"string":"덫 지속시간 #% 증가"},{"string":"덫 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2001530951"],"fractured":["fractured.stat_2001530951"]}}} +{"ref":"#% increased Trap Throwing Speed","better":1,"matchers":[{"string":"덫 투척 속도 #% 증가"},{"string":"덫 투척 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_118398748"],"implicit":["implicit.stat_118398748"],"fractured":["fractured.stat_118398748"],"scourge":["scourge.stat_118398748"],"crafted":["crafted.stat_118398748"]}}} +{"ref":"#% increased Trap Trigger Area of Effect","better":1,"matchers":[{"string":"덫 발동 효과 범위 #% 증가"},{"string":"덫 발동 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_497716276"]}}} +{"ref":"#% increased Travel Fee","better":-1,"matchers":[{"string":"이동 비용 #% 증가"},{"string":"이동 비용 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2904116257"],"fractured":["fractured.stat_2904116257"]}}} +{"ref":"#% increased Unearth Cast Speed","better":1,"matchers":[{"string":"발굴 시전 속도 #% 증가"},{"string":"발굴 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2387717928"]}}} +{"ref":"#% increased Unearth Damage","better":1,"matchers":[{"string":"발굴 피해 #% 증가"},{"string":"발굴 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3953599026"]}}} +{"ref":"#% increased Unveiled Modifier magnitudes","better":1,"matchers":[{"string":"장막 속성 부여 규모 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_586037801"]}}} +{"ref":"#% increased Vaal Skill Critical Strike Chance","better":1,"matchers":[{"string":"바알 스킬 치명타 확률 #% 증가"},{"string":"바알 스킬 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3165492062"],"implicit":["implicit.stat_3165492062"],"fractured":["fractured.stat_3165492062"]}}} +{"ref":"#% increased Vaal Skill Effect Duration","better":1,"matchers":[{"string":"바알 스킬 효과 지속시간 #% 증가"},{"string":"바알 스킬 효과 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_547412107"],"implicit":["implicit.stat_547412107"],"fractured":["fractured.stat_547412107"]}}} +{"ref":"#% increased Valour gained","better":1,"matchers":[{"string":"기백 획득량 #% 증가"},{"string":"기백 획득량 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1050359418"]}}} +{"ref":"#% increased Vampiric Link Duration","better":1,"matchers":[{"string":"흡혈의 연결 지속시간 #% 증가"},{"string":"흡혈의 연결 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1238426677"]}}} +{"ref":"#% increased Vengeance Damage","better":1,"matchers":[{"string":"복수 피해 #% 증가"},{"string":"복수 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1972101281"]}}} +{"ref":"#% increased Vigilant Strike Damage","better":1,"matchers":[{"string":"경계 타격 피해 #% 증가"},{"string":"경계 타격 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2287764959"]}}} +{"ref":"#% increased Viper Strike Critical Strike Chance","better":1,"matchers":[{"string":"맹독 타격 치명타 확률 #% 증가"},{"string":"맹독 타격 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3734756042"]}}} +{"ref":"#% increased Viper Strike Damage","better":1,"matchers":[{"string":"맹독 타격 피해 #% 증가"},{"string":"맹독 타격 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2585271359"]}}} +{"ref":"#% increased Viper Strike Duration","better":1,"matchers":[{"string":"맹독 타격 지속시간 #% 증가"},{"string":"맹독 타격 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3869217625"]}}} +{"ref":"#% increased Volatile Dead Cast Speed","better":1,"matchers":[{"string":"시체 불덩이 시전 속도 #% 증가"},{"string":"시체 불덩이 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3179781611"]}}} +{"ref":"#% increased Volatile Dead Damage","better":1,"matchers":[{"string":"시체 불덩이 피해 #% 증가"},{"string":"시체 불덩이 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1212590278"]}}} +{"ref":"#% increased Voltaxic Burst Area of Effect","better":1,"matchers":[{"string":"전도성 격발 효과 범위 #% 증가"},{"string":"전도성 격발 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2982851186"]}}} +{"ref":"#% increased Voltaxic Burst Damage","better":1,"matchers":[{"string":"전도성 격발 피해 #% 증가"},{"string":"전도성 격발 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2913890852"]}}} +{"ref":"#% increased Vortex Damage","better":1,"matchers":[{"string":"소용돌이 피해 #% 증가"},{"string":"소용돌이 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_200942664"]}}} +{"ref":"#% increased Vortex Duration","better":1,"matchers":[{"string":"소용돌이 지속시간 #% 증가"},{"string":"소용돌이 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4074562940"]}}} +{"ref":"#% increased Vulnerability Curse Effect","better":1,"matchers":[{"string":"취약성 저주 효과 #% 증가"},{"string":"취약성 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1065909420"],"enchant":["enchant.stat_1065909420"]}}} +{"ref":"#% increased Vulnerability Duration","better":1,"matchers":[{"string":"취약성 지속시간 #% 증가"},{"string":"취약성 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3229878341"]}}} +{"ref":"#% increased Warcry Buff Effect","better":1,"matchers":[{"string":"함성 버프 효과 #% 증가"},{"string":"함성 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3037553757"],"implicit":["implicit.stat_3037553757"],"fractured":["fractured.stat_3037553757"],"crafted":["crafted.stat_3037553757"]}}} +{"ref":"#% increased Warcry Cooldown Recovery Rate","better":1,"matchers":[{"string":"함성 재사용 대기시간 회복 속도 #% 증가"},{"string":"함성 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4159248054"],"fractured":["fractured.stat_4159248054"]}}} +{"ref":"#% increased Warcry Speed","better":1,"matchers":[{"string":"함성 속도 #% 증가"},{"string":"함성 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1316278494"],"implicit":["implicit.stat_1316278494"],"fractured":["fractured.stat_1316278494"],"scourge":["scourge.stat_1316278494"],"crafted":["crafted.stat_1316278494"]}}} +{"ref":"#% increased Ward","better":1,"matchers":[{"string":"수호 #% 증가"},{"string":"수호 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_830161081"],"fractured":["fractured.stat_830161081"]}}} +{"ref":"#% increased Ward during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 수호 #% 증가"},{"string":"효과를 받는 동안 수호 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2891175306"],"fractured":["fractured.stat_2891175306"]}}} +{"ref":"#% increased Warlord's Mark Curse Effect","better":1,"matchers":[{"string":"전쟁군주의 징표 저주 효과 #% 증가"},{"string":"전쟁군주의 징표 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1528965411"]}}} +{"ref":"#% increased Whirling Blades Attack Speed","better":1,"matchers":[{"string":"칼날 선회 공격 속도 #% 증가"},{"string":"칼날 선회 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1902197291"]}}} +{"ref":"#% increased Whirling Blades Damage","better":1,"matchers":[{"string":"칼날 선회 피해 #% 증가"},{"string":"칼날 선회 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3723124286"]}}} +{"ref":"#% increased Wild Strike Area of Effect","better":1,"matchers":[{"string":"사나운 타격 효과 범위 #% 증가"},{"string":"사나운 타격 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_524936200"]}}} +{"ref":"#% increased Wild Strike Damage","better":1,"matchers":[{"string":"사나운 타격 피해 #% 증가"},{"string":"사나운 타격 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1666713639"]}}} +{"ref":"#% less Animate Weapon Duration","better":-1,"matchers":[{"string":"무기 기동 지속시간 #% 증폭"},{"string":"무기 기동 지속시간 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_414991155"]},"inverted":true}} +{"ref":"#% less Critical Strike Chance","better":-1,"matchers":[{"string":"치명타 확률 #% 증폭"},{"string":"치명타 확률 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4181057577"]},"inverted":true}} +{"ref":"#% less Damage taken if you have not been Hit Recently","better":-1,"matchers":[{"string":"최근 4초 이내 피격을 받지 않은 경우 받는 피해 #% 증폭"},{"string":"최근 4초 이내 피격을 받지 않은 경우 받는 피해 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_67637087"]},"inverted":true}} +{"ref":"#% less effect of Curses on Monsters","better":-1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터에게 걸리는 저주 효과 #% 증폭"},{"string":"몬스터에게 걸리는 저주 효과 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3796523155"],"fractured":["fractured.stat_3796523155"]},"inverted":true}} +{"ref":"#% less Mine Damage","better":-1,"matchers":[{"string":"지뢰 피해 #% 증폭"},{"string":"지뢰 피해 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3298440988"]},"inverted":true}} +{"ref":"#% less Minimum Physical Attack Damage","better":1,"matchers":[{"string":"최소 물리 공격 피해 #% 증폭"},{"string":"최소 물리 공격 피해 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1715495976"]},"inverted":true}} +{"ref":"#% less Poison Duration","better":-1,"matchers":[{"string":"중독 지속시간 #% 증폭"},{"string":"중독 지속시간 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1237693206"]},"inverted":true}} +{"ref":"#% more Accuracy Rating","better":1,"matchers":[{"string":"정확도 #% 증폭"},{"string":"정확도 #% 감폭","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_170394517"]}}} +{"ref":"#% more Attack Speed","better":1,"matchers":[{"string":"공격 속도 #% 증폭"},{"string":"공격 속도 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2418322751"]}}} +{"ref":"#% more Burning Damage","better":1,"matchers":[{"string":"화상 피해 #% 증폭"},{"string":"화상 피해 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3134513219"]}}} +{"ref":"#% more Critical Strike chance while affected by Precision","better":1,"matchers":[{"string":"정밀함의 영향을 받는 동안 치명타 확률 #% 증폭"},{"string":"정밀함의 영향을 받는 동안 치명타 확률 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2617837023"]}}} +{"ref":"#% more Critical Strike Chance while Insane","better":1,"matchers":[{"string":"광기 상태에서 치명타 확률 #% 증폭"},{"string":"광기 상태에서 치명타 확률 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2692289207"]}}} +{"ref":"#% more Damage","better":1,"matchers":[{"string":"피해 #% 증폭"},{"string":"피해 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_412462523"]}}} +{"ref":"#% more Damage with Arrow Hits at Close Range","better":1,"matchers":[{"string":"근접 화살 공격 피해 #% 증폭"}],"trade":{"ids":{"explicit":["explicit.stat_2749166636"]}}} +{"ref":"#% more Damage with Arrow Hits at Close Range while you have Iron Reflexes","better":1,"matchers":[{"string":"철의 반사신경이 있는 동안 근거리 화살 적중 피해 #% 증폭"}],"trade":{"ids":{"explicit":["explicit.stat_304032021"]}}} +{"ref":"#% more Duration","better":1,"matchers":[{"string":"지속시간 #% 증폭"},{"string":"지속시간 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1506355899"],"fractured":["fractured.stat_1506355899"]}}} +{"ref":"#% more Effect of your Curses","better":1,"matchers":[{"string":"플레이어가 시전하는 저주 효과 #% 증폭"},{"string":"플레이어가 시전하는 저주 효과 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4106109768"]}}} +{"ref":"#% more Elemental Damage taken per Raised Zombie","better":1,"matchers":[{"string":"소환한 좀비 하나당 받는 원소 피해 #% 증폭"},{"string":"소환한 좀비 하나당 받는 원소 피해 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_512740886"]}}} +{"ref":"#% more Energy Shield Recharge Rate","better":1,"matchers":[{"string":"에너지 보호막 재충전 속도 #% 증폭"},{"string":"에너지 보호막 재충전 속도 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3432301333"]}}} +{"ref":"#% more Flask Charges gained from Kills","better":1,"matchers":[{"string":"처치로 얻는 플라스크 충전량 #% 증폭"},{"string":"처치로 얻는 플라스크 충전량 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3790386828","explicit.stat_624257168"]}}} +{"ref":"#% more Ignite Duration","better":1,"matchers":[{"string":"점화 지속시간 #% 증폭"},{"string":"점화 지속시간 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2614885550"]}}} +{"ref":"#% more Main Hand attack speed","better":1,"matchers":[{"string":"주 무기 공격 속도 #% 증폭"},{"string":"주 무기 공격 속도 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_56401364"]}}} +{"ref":"#% more Maximum Life","better":1,"matchers":[{"string":"최대 생명력 #% 증폭"},{"string":"최대 생명력 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2783958145"]}}} +{"ref":"#% more Maximum Physical Attack Damage","better":1,"matchers":[{"string":"최대 물리 공격 피해 #% 증폭"},{"string":"최대 물리 공격 피해 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3029185248"]}}} +{"ref":"#% more Melee Physical Damage during effect","better":1,"matchers":[{"string":"플라스크 효과를 받는 동안 근접 물리 피해 #% 증폭"}],"trade":{"ids":{"explicit":["explicit.stat_3636096208"]}}} +{"ref":"#% more Monster Life","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터의 생명력 #% 증폭"},{"string":"몬스터의 생명력 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2710898947","explicit.stat_95249895"],"implicit":["implicit.stat_95249895"],"fractured":["fractured.stat_95249895"],"enchant":["enchant.stat_3026134008"]}}} +{"ref":"#% more Physical and Chaos Damage Taken while Sane","better":1,"matchers":[{"string":"제정신 상태일 때 받는 물리 및 카오스 피해 #% 증폭"},{"string":"제정신 상태일 때 받는 물리 및 카오스 피해 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_388639924"]}}} +{"ref":"#% more Physical Damage with Unarmed Melee Attacks","better":1,"matchers":[{"string":"비무장 근접 공격으로 주는 물리 피해 #% 증폭"},{"string":"비무장 근접 공격으로 주는 물리 피해 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1814782245"]}}} +{"ref":"#% more Power Charge Duration","better":1,"matchers":[{"string":"권능 충전 지속시간 #% 증폭"},{"string":"권능 충전 지속시간 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2625134410"]}}} +{"ref":"#% more Recovery if used while on Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태일 때 사용 시 회복 #% 증폭"}],"trade":{"ids":{"explicit":["explicit.stat_886931978"],"fractured":["fractured.stat_886931978"]}}} +{"ref":"#% more Rogue's Marker value of primary Heist Target","better":1,"matchers":[{"string":"주요 강탈 대상의 도둑의 증표 가치 #% 증폭"},{"string":"주요 강탈 대상의 도둑의 증표 가치 #% 감폭","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3009603087"]}}} +{"ref":"#% more Ward during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 수호 #% 증폭"},{"string":"효과를 받는 동안 수호 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3615541554"]}}} +{"ref":"#% of Armour applies to Fire, Cold and Lightning Damage taken from Hits","better":1,"matchers":[{"string":"피격 시 받는 화염, 냉기, 번개 피해에 방어도의 #% 적용"}],"trade":{"ids":{"explicit":["explicit.stat_3362812763"]}}} +{"ref":"#% of Attack Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"공격 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_141810208"],"implicit":["implicit.stat_141810208"]}}} +{"ref":"#% of Attack Damage Leeched as Life against Bleeding Enemies","dp":true,"better":1,"matchers":[{"string":"출혈 중인 적에 대한 공격 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_1625933063"]}}} +{"ref":"#% of Attack Damage Leeched as Life against Chilled Enemies","dp":true,"better":1,"matchers":[{"string":"냉각된 적에 대한 공격 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_748813744"]}}} +{"ref":"#% of Attack Damage Leeched as Life against Maimed Enemies","dp":true,"better":1,"matchers":[{"string":"힘줄 절단된 적에 대한 공격 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_447636597"]}}} +{"ref":"#% of Attack Damage Leeched as Life against Taunted Enemies","dp":true,"better":1,"matchers":[{"string":"도발된 적에 대한 공격 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_3750917270"]}}} +{"ref":"#% of Attack Damage Leeched as Life and Mana if you've Killed Recently","dp":true,"better":1,"matchers":[{"string":"최근 4초 이내 적을 처치한 경우 공격 피해의 #%를 생명력 및 마나로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_2770801535"]}}} +{"ref":"#% of Attack Damage Leeched as Life during Effect","dp":true,"better":1,"matchers":[{"string":"효과를 받는 동안 공격 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_1173558568"],"fractured":["fractured.stat_1173558568"]}}} +{"ref":"#% of Attack Damage Leeched as Life on Critical Strike","dp":true,"better":1,"matchers":[{"string":"치명타 명중 시 공격 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_2100196861"]}}} +{"ref":"#% of Attack Damage Leeched as Life per Frenzy Charge","dp":true,"better":1,"matchers":[{"string":"격분 충전 하나당 공격 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_3243062554"]}}} +{"ref":"#% of Attack Damage Leeched as Mana","dp":true,"better":1,"matchers":[{"string":"공격 피해의 #%를 마나로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_350069479"],"implicit":["implicit.stat_350069479"]}}} +{"ref":"#% of Attack Damage Leeched as Mana against Poisoned Enemies","dp":true,"better":1,"matchers":[{"string":"중독된 적에 대한 공격 피해의 #%를 마나로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_3067409450"]}}} +{"ref":"#% of Attack Damage Leeched as Mana per Power Charge","dp":true,"better":1,"matchers":[{"string":"권능 충전 하나당 물리 피해의 #%를 마나로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_2628721358"]}}} +{"ref":"#% of Burning Arrow Physical Damage gained as Extra Fire Damage","better":1,"matchers":[{"string":"불타는 화살 물리 피해의 #%를 추가 화염 피해로 획득"}],"trade":{"ids":{"enchant":["enchant.stat_3229580299"]}}} +{"ref":"#% of Chaos Damage is taken from Mana before Life","better":1,"matchers":[{"string":"카오스 피해의 #%를 생명력 대신 마나로 소모"},{"string":"카오스 피해를 생명력 대신 마나로 소모","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3967028570"]}}} +{"ref":"#% of Chaos Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"카오스 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_744082851"],"implicit":["implicit.stat_2238792070","implicit.stat_744082851"],"fractured":["fractured.stat_744082851"],"scourge":["scourge.stat_744082851"]}}} +{"ref":"#% of Chaos Damage Leeched as Life during Effect","dp":true,"better":1,"matchers":[{"string":"효과를 받는 동안 카오스 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_1341148741"]}}} +{"ref":"#% of Chaos Damage Leeched by Enemy as Life","dp":true,"better":1,"matchers":[{"string":"적이 흡수하는 카오스 피해의 #%를 생명력으로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_334180828"],"fractured":["fractured.stat_334180828"]}}} +{"ref":"#% of Chaos Damage taken does not bypass Energy Shield","better":1,"matchers":[{"string":"받는 카오스 피해의 #%가 에너지 보호막에 막힘"}],"trade":{"ids":{"explicit":["explicit.stat_1865744989"]}}} +{"ref":"#% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire","better":1,"matchers":[{"string":"불의 순수함의 영향을 받는 동안 받는 냉기 및 번개 피해의 #%를 화염 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_1723738042"]}}} +{"ref":"#% of Cold Damage Converted to Fire Damage","better":1,"matchers":[{"string":"냉기 피해의 #%를 화염 피해로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_723832351"]}}} +{"ref":"#% of Cold Damage from Hits taken as Fire Damage","better":1,"matchers":[{"string":"피격 시 냉기 피해의 #%를 화염 피해로 받음"}],"trade":{"ids":{"implicit":["implicit.stat_1189760108"]}}} +{"ref":"#% of Cold Damage from Hits taken as Lightning Damage","better":1,"matchers":[{"string":"피격 시 냉기 피해의 #%를 번개 피해로 받음"}],"trade":{"ids":{"implicit":["implicit.stat_1313503107"]}}} +{"ref":"#% of Cold Damage Leeched as Energy Shield","dp":true,"better":1,"matchers":[{"string":"냉기 피해의 #%를 에너지 보호막으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_1939452467"],"fractured":["fractured.stat_1939452467"]}}} +{"ref":"#% of Cold Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"냉기 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_3999401129"],"implicit":["implicit.stat_2459451600","implicit.stat_3999401129"],"fractured":["fractured.stat_3999401129"],"scourge":["scourge.stat_3999401129"],"crafted":["crafted.stat_3999401129"]}}} +{"ref":"#% of Cold Damage Leeched by Enemy as Life","dp":true,"better":1,"matchers":[{"string":"적이 흡수하는 냉기 피해의 #%를 생명력으로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3271464175"],"fractured":["fractured.stat_3271464175"]}}} +{"ref":"#% of Cold Damage taken as Fire Damage","better":1,"matchers":[{"string":"냉기 피해의 #%를 화염 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_1642347505"]}}} +{"ref":"#% of Cold Damage taken as Lightning Damage","better":1,"matchers":[{"string":"냉기 피해의 #%를 번개 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_2881210047"]}}} +{"ref":"#% of Cold Damage taken Recouped as Life","better":1,"matchers":[{"string":"냉기 피해의 #%를 생명력으로 회생"}],"trade":{"ids":{"explicit":["explicit.stat_3679418014"],"implicit":["implicit.stat_3679418014"]}}} +{"ref":"#% of Damage against Frozen Enemies Leeched as Life","dp":true,"better":1,"matchers":[{"string":"동결된 적에게 주는 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_593279674"]}}} +{"ref":"#% of Damage dealt by your Mines is Leeched to you as Life","dp":true,"better":1,"matchers":[{"string":"자신의 지뢰가 주는 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_807450540"]}}} +{"ref":"#% of Damage dealt by your Totems is Leeched to you as Life","dp":true,"better":1,"matchers":[{"string":"자신의 토템이 주는 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_3812562802"]}}} +{"ref":"#% of Damage from Hits is taken from your nearest Totem's Life before you","better":1,"matchers":[{"string":"피격 시 받는 피해의 #%를 자신보다 자신의 가장 가까운 토템의 생명력에 먼저 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2762445213"]}}} +{"ref":"#% of Damage from Hits is taken from your Spectres' Life before you","better":1,"matchers":[{"string":"피격 시 받는 피해의 #%를 자신보다 자신의 망령이 먼저 받음"}],"trade":{"ids":{"explicit":["explicit.stat_54812069"]}}} +{"ref":"#% of Damage is taken from Mana before Life","better":1,"matchers":[{"string":"받는 피해의 #%를 생명력 대신 마나로 소모"}],"trade":{"ids":{"explicit":["explicit.stat_458438597"],"implicit":["implicit.stat_458438597"]}}} +{"ref":"#% of Damage is taken from Mana before Life per Power Charge","better":1,"matchers":[{"string":"권능 충전 하나당 받는 피해의 #%를 생명력 대신 마나 소모"}],"trade":{"ids":{"explicit":["explicit.stat_1325047894"]}}} +{"ref":"#% of Damage is taken from Mana before Life while Focused","better":1,"matchers":[{"string":"집중하는 동안 받는 피해의 #%를 생명력 대신 마나 소모"}],"trade":{"ids":{"explicit":["explicit.stat_1588539856"],"fractured":["fractured.stat_1588539856"],"crafted":["crafted.stat_1588539856"]}}} +{"ref":"#% of Damage Leeched as Energy Shield","dp":true,"better":1,"matchers":[{"string":"피해의 #%를 에너지 보호막으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_4201339891"]}}} +{"ref":"#% of Damage Leeched as Energy Shield against Frozen Enemies","dp":true,"better":1,"matchers":[{"string":"동결된 적에게 주는 피해의 #%를 에너지 보호막으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_4091709362"]}}} +{"ref":"#% of Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_4069440714"]}}} +{"ref":"#% of Damage Leeched as Life against Cursed Enemies","dp":true,"better":1,"matchers":[{"string":"저주받은 적에게 준 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_3861913659"]}}} +{"ref":"#% of Damage Leeched as Life against Shocked Enemies","dp":true,"better":1,"matchers":[{"string":"감전된 적에게 주는 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_2614321687"]}}} +{"ref":"#% of Damage Leeched as Life for Skills used by Totems","dp":true,"better":1,"matchers":[{"string":"토템이 사용하는 스킬 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_2449723897"]}}} +{"ref":"#% of Damage Leeched as Life if you've Killed Recently","dp":true,"better":1,"matchers":[{"string":"최근 4초 이내 적을 처치한 경우 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"enchant":["enchant.stat_4291115328"]}}} +{"ref":"#% of Damage Leeched as Life on Critical Strike","dp":true,"better":1,"matchers":[{"string":"치명타 명중 시 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_958088871"]}}} +{"ref":"#% of Damage Leeched as Life per Siphoning Charge","dp":true,"better":1,"matchers":[{"string":"착취 충전 하나당 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_1587137379"]}}} +{"ref":"#% of Damage leeched as Life while affected by Vitality","dp":true,"better":1,"matchers":[{"string":"활력의 영향을 받는 동안 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_3656959867"]}}} +{"ref":"#% of Damage Leeched as Life while Focused","dp":true,"better":1,"matchers":[{"string":"집중하는 동안 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_3324747104"],"fractured":["fractured.stat_3324747104"],"crafted":["crafted.stat_3324747104"]}}} +{"ref":"#% of Damage Leeched as Life while you have at least 5 total Endurance, Frenzy and Power Charges","dp":true,"better":1,"matchers":[{"string":"인내, 격분, 권능 충전이 총 5개 이상일 때 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_1526625193"]}}} +{"ref":"#% of Damage Leeched as Mana against Frozen Enemies","dp":true,"better":1,"matchers":[{"string":"동결된 적에게 주는 피해의 #%를 마나로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_2908111053"]}}} +{"ref":"#% of Damage Players' Totems take from Hits is taken from their Summoner's Life instead","better":1,"fromUberAreaMods":true,"matchers":[{"string":"플레이어들의 토템이 피격 시 받는 피해의 #%를 소환자의 생명력에 대신 적용"}],"trade":{"ids":{"explicit":["explicit.stat_297552946"],"fractured":["fractured.stat_297552946"]}}} +{"ref":"#% of Damage taken bypasses Ward","better":1,"matchers":[{"string":"받는 피해의 #%가 수호에 막히지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_3000966016"]}}} +{"ref":"#% of Damage Taken from Hits is Leeched as Life during Effect","dp":true,"better":1,"matchers":[{"string":"효과를 받는 동안 피격 시 받는 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_3824033729"],"crafted":["crafted.stat_3824033729"]}}} +{"ref":"#% of Damage taken from Mana before Life while affected by Clarity","better":1,"matchers":[{"string":"명상의 영향을 받는 동안 받는 피해의 #%를 생명력 대신 마나 소모"}],"trade":{"ids":{"explicit":["explicit.stat_2383304564"]}}} +{"ref":"#% of Damage taken from Stunning Hits is Recovered as Life","better":1,"matchers":[{"string":"기절 유발 명중으로 받는 피해의 #%를 생명력으로 회복"}],"trade":{"ids":{"explicit":["explicit.stat_3913936991"]}}} +{"ref":"#% of Damage taken Recouped as Life","better":1,"matchers":[{"string":"받은 피해의 #%를 생명력으로 회생"}],"trade":{"ids":{"explicit":["explicit.stat_1444556985"],"implicit":["implicit.stat_1444556985"],"fractured":["fractured.stat_1444556985"],"scourge":["scourge.stat_1444556985"]}}} +{"ref":"#% of Damage taken Recouped as Mana","better":1,"matchers":[{"string":"받은 피해의 #%를 마나로 회생"}],"trade":{"ids":{"explicit":["explicit.stat_472520716"],"implicit":["implicit.stat_472520716"],"fractured":["fractured.stat_472520716"],"enchant":["enchant.stat_472520716"],"crafted":["crafted.stat_472520716"]}}} +{"ref":"#% of Damage taken while affected by Clarity Recouped as Mana","better":1,"matchers":[{"string":"명상의 영향을 받는 동안 받은 피해의 #%를 마나로 회생"}],"trade":{"ids":{"explicit":["explicit.stat_380220671"]}}} +{"ref":"#% of Damage you Reflect to Enemies when Hit is leeched as Life","better":1,"matchers":[{"string":"피격 시 적에게 반사하는 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_743992531"]}}} +{"ref":"#% of Elemental Damage from Hits taken as Chaos Damage","better":1,"matchers":[{"string":"피격 시 원소 피해의 #%를 카오스 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_1175213674"]}}} +{"ref":"#% of Elemental Damage from Hits taken as Physical Damage","better":1,"matchers":[{"string":"피격 시 원소 피해의 #%를 물리 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_2340750293"]}}} +{"ref":"#% of Elemental Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"원소 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_720395808"],"implicit":["implicit.stat_720395808"]}}} +{"ref":"#% of Evasion Rating is Regenerated as Life per second while Focused","better":1,"matchers":[{"string":"집중하는 동안 1초마다 회피의 #%를 생명력으로 재생"}],"trade":{"ids":{"explicit":["explicit.stat_3244118730"],"fractured":["fractured.stat_3244118730"],"crafted":["crafted.stat_3244118730"]}}} +{"ref":"#% of Fire and Cold Damage taken as Lightning Damage while\naffected by Purity of Lightning","better":1,"matchers":[{"string":"번개의 순수함의 영향을 받는 동안 받는 화염 및 냉기 피해의 #%를\n번개 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_3953667743"]}}} +{"ref":"#% of Fire and Lightning Damage from Hits taken as Cold Damage during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 피격 시 화염 및 번개 피해의 #%를 냉기 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_1349002319"]}}} +{"ref":"#% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice","better":1,"matchers":[{"string":"얼음의 순수함의 영향을 받는 동안 받는 화염 및 번개 피해의 #%를 냉기 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_2189467271"]}}} +{"ref":"#% of Fire Damage Converted to Chaos Damage","better":1,"matchers":[{"string":"화염 피해의 #%를 카오스 피해로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_2731249891"],"fractured":["fractured.stat_2731249891"]}}} +{"ref":"#% of Fire Damage from Hits taken as Cold Damage","better":1,"matchers":[{"string":"피격 시 화염 피해의 #%를 냉기 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_2522672898"],"implicit":["implicit.stat_2522672898"]}}} +{"ref":"#% of Fire Damage from Hits taken as Lightning Damage","better":1,"matchers":[{"string":"피격 시 화염 피해의 #%를 번개 피해로 받음"}],"trade":{"ids":{"implicit":["implicit.stat_1504091975"]}}} +{"ref":"#% of Fire Damage from Hits taken as Physical Damage","better":1,"matchers":[{"string":"피격 시 화염 피해의 #%를 물리 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_1029319062","explicit.stat_3205239847"]}}} +{"ref":"#% of Fire Damage Leeched as Energy Shield","dp":true,"better":1,"matchers":[{"string":"화염 피해의 #%를 에너지 보호막으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_3885409671"],"fractured":["fractured.stat_3885409671"]}}} +{"ref":"#% of Fire Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"화염 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_3848282610"],"implicit":["implicit.stat_1743742391","implicit.stat_3848282610"],"fractured":["fractured.stat_3848282610"],"scourge":["scourge.stat_3848282610"],"crafted":["crafted.stat_3848282610"]}}} +{"ref":"#% of Fire Damage Leeched as Life while affected by Anger","dp":true,"better":1,"matchers":[{"string":"분노의 영향을 받는 동안 화염 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_2312747856"]}}} +{"ref":"#% of Fire Damage Leeched as Life while Ignited","dp":true,"better":1,"matchers":[{"string":"점화 상태에서 화염 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_3633399302"]}}} +{"ref":"#% of Fire Damage Leeched by Enemy as Life","dp":true,"better":1,"matchers":[{"string":"적이 흡수하는 화염 피해의 #%를 생명력으로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_45548764"]}}} +{"ref":"#% of Fire Damage taken as Lightning Damage","better":1,"matchers":[{"string":"화염 피해의 #%를 번개 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_4142376596"]}}} +{"ref":"#% of Fire Damage taken Recouped as Life","better":1,"matchers":[{"string":"받은 화염 피해의 #%를 생명력으로 회생"}],"trade":{"ids":{"explicit":["explicit.stat_1742651309"],"implicit":["implicit.stat_1742651309"]}}} +{"ref":"#% of Galvanic Arrow Physical Damage gained as extra Lightning Damage","better":1,"matchers":[{"string":"충격 화살 물리 피해의 #%를 추가 번개 피해로 획득"}],"trade":{"ids":{"enchant":["enchant.stat_1943147282"]}}} +{"ref":"#% of Glacial Hammer Physical Damage gained as Extra Cold Damage","better":1,"matchers":[{"string":"빙하 망치 물리 피해의 #%를 추가 냉기 피해로 획득"}],"trade":{"ids":{"enchant":["enchant.stat_2555366825"]}}} +{"ref":"#% of Ice Crash Physical Damage gained as Extra Cold Damage","better":1,"matchers":[{"string":"얼음 충격 물리 피해의 #%를 추가 냉기 피해로 획득"}],"trade":{"ids":{"enchant":["enchant.stat_3465202861"]}}} +{"ref":"#% of Infernal Blow Physical Damage gained as Extra Fire Damage","better":1,"matchers":[{"string":"지옥불 맹타 물리 피해의 #%를 추가 화염 피해로 획득"}],"trade":{"ids":{"enchant":["enchant.stat_2484188706"]}}} +{"ref":"#% of Leech from Hits with this Weapon is Instant per Enemy Power","better":1,"matchers":[{"string":"이 무기로 적 명중 시 적의 위세 하나당 흡수의 #%가 즉시 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2583648686"]}}} +{"ref":"#% of Leech is Instant","better":1,"matchers":[{"string":"흡수의 #%가 즉시 적용"}],"trade":{"ids":{"explicit":["explicit.stat_3561837752"]}}} +{"ref":"#% of Life Leech applies to Enemies as Chaos Damage","better":1,"matchers":[{"string":"적에게 적용되는 생명력 흡수의 #%를 카오스 피해로 적용"}],"trade":{"ids":{"explicit":["explicit.stat_768537671"]}}} +{"ref":"#% of Life Recovery from Flasks is applied to nearby Allies instead of You","better":1,"matchers":[{"string":"플라스크로 얻는 생명력 회복의 #%가 주변 동료들에게 적용됨"}],"trade":{"ids":{"explicit":["explicit.stat_2264655303"],"fractured":["fractured.stat_2264655303"]}}} +{"ref":"#% of Life Regenerated per Second","better":1,"matchers":[{"string":"초당 생명력 재생의 #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_percent_life_regen"]}}} +{"ref":"#% of Life Regenerated per Second if you've dealt a Critical Strike in the past 8 seconds","better":1,"matchers":[{"string":"지난 8초 이내에 치명타 명중 시 1초마다 생명력의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_221532021"]}}} +{"ref":"#% of Life Regenerated per second per Fragile Regrowth","dp":true,"better":1,"matchers":[{"string":"불안정한 재성장 하나당 1초마다 생명력의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_3175722882"],"fractured":["fractured.stat_3175722882"]}}} +{"ref":"#% of Lightning Damage Converted to Chaos Damage","better":1,"matchers":[{"string":"번개 피해의 #%를 카오스 피해로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_4238266823"]}}} +{"ref":"#% of Lightning Damage Converted to Cold Damage","better":1,"matchers":[{"string":"번개 피해의 #%를 냉기 피해로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_2158060122"]}}} +{"ref":"#% of Lightning Damage from Hits taken as Cold Damage","better":1,"matchers":[{"string":"피격 시 번개 피해의 #%를 냉기 피해로 받음"}],"trade":{"ids":{"implicit":["implicit.stat_1017730114"]}}} +{"ref":"#% of Lightning Damage from Hits taken as Fire Damage","better":1,"matchers":[{"string":"피격 시 번개 피해의 #%를 화염 피해로 받음"}],"trade":{"ids":{"implicit":["implicit.stat_3375859421"]}}} +{"ref":"#% of Lightning Damage is Leeched as Energy Shield while affected by Wrath","dp":true,"better":1,"matchers":[{"string":"진노의 영향을 받는 동안 번개 피해의 #%를 에너지 보호막으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_121436064"]}}} +{"ref":"#% of Lightning Damage is Leeched as Mana while affected by Wrath","dp":true,"better":1,"matchers":[{"string":"진노의 영향을 받는 동안 번개 피해의 #%를 마나로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_2889601846"]}}} +{"ref":"#% of Lightning Damage is taken from Mana before Life","better":1,"matchers":[{"string":"번개 피해의 #%를 생명력 대신 마나로 소모"}],"trade":{"ids":{"explicit":["explicit.stat_2477735984"]}}} +{"ref":"#% of Lightning Damage Leeched as Energy Shield","dp":true,"better":1,"matchers":[{"string":"번개 피해의 #%를 에너지 보호막으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_308127151"]}}} +{"ref":"#% of Lightning Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"번개 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_80079005"],"implicit":["implicit.stat_2696663331","implicit.stat_80079005"],"fractured":["fractured.stat_80079005"],"scourge":["scourge.stat_80079005"],"crafted":["crafted.stat_80079005"]}}} +{"ref":"#% of Lightning Damage Leeched as Life during Effect","dp":true,"better":1,"matchers":[{"string":"효과를 받는 동안 번개 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_2687254633"]}}} +{"ref":"#% of Lightning Damage Leeched as Mana during Effect","dp":true,"better":1,"matchers":[{"string":"효과를 받는 동안 번개 피해의 #%를 마나로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_1454377049"]}}} +{"ref":"#% of Lightning Damage Leeched by Enemy as Life","dp":true,"better":1,"matchers":[{"string":"적이 흡수하는 번개 피해의 #%를 생명력으로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3925004212"],"fractured":["fractured.stat_3925004212"]}}} +{"ref":"#% of Lightning Damage taken as Fire Damage","better":1,"matchers":[{"string":"번개 피해의 #%를 화염 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_1244494473"]}}} +{"ref":"#% of Lightning Damage taken Recouped as Life","better":1,"matchers":[{"string":"받은 번개 피해의 #%를 생명력으로 회생"}],"trade":{"ids":{"explicit":["explicit.stat_2970621759"],"implicit":["implicit.stat_2970621759"]}}} +{"ref":"#% of Maximum Life Converted to Energy Shield","better":1,"matchers":[{"string":"최대 생명력의 #%를 에너지 보호막으로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_2458962764"],"fractured":["fractured.stat_2458962764"]}}} +{"ref":"#% of Maximum Life taken as Chaos Damage per second","better":1,"matchers":[{"string":"1초마다 최대 생명력의 #%를 카오스 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_3232201443"]}}} +{"ref":"#% of Melee Physical Damage taken reflected to Attacker","better":1,"matchers":[{"string":"받은 근접 물리 피해의 #%를 공격자에게 반사"}],"trade":{"ids":{"explicit":["explicit.stat_1092987622"]}}} +{"ref":"#% of Non-Chaos Damage taken bypasses Energy Shield","better":1,"matchers":[{"string":"받는 비-카오스 피해의 #%가 에너지 보호막에 막히지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_3379724776"]}}} +{"ref":"#% of Overkill Damage is Leeched as Life","better":1,"matchers":[{"string":"과잉살상 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_3511523149"]}}} +{"ref":"#% of Physical Attack Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"물리 공격 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_physical_attack_damage_leeched_as_life"],"explicit":["explicit.stat_3593843976","explicit.stat_55876295"],"implicit":["implicit.stat_3593843976","implicit.stat_55876295"],"fractured":["fractured.stat_3593843976","fractured.stat_55876295"],"scourge":["scourge.stat_3593843976"],"crafted":["crafted.stat_3593843976","crafted.stat_55876295"]}}} +{"ref":"#% of Physical Attack Damage Leeched as Life per Red Socket","dp":true,"better":1,"matchers":[{"string":"빨간 홈 하나당 물리 공격 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_3025389409"]}}} +{"ref":"#% of Physical Attack Damage Leeched as Mana","dp":true,"better":1,"matchers":[{"string":"물리 공격 피해의 #%를 마나로 흡수"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_physical_attack_damage_leeched_as_mana"],"explicit":["explicit.stat_3237948413","explicit.stat_669069897"],"implicit":["implicit.stat_3237948413","implicit.stat_669069897"],"fractured":["fractured.stat_3237948413","fractured.stat_669069897"],"enchant":["enchant.stat_669069897"],"scourge":["scourge.stat_3237948413"],"crafted":["crafted.stat_3237948413","crafted.stat_669069897"]}}} +{"ref":"#% of Physical Attack Damage Leeched as Mana per Blue Socket","dp":true,"better":1,"matchers":[{"string":"파란 홈 하나당 물리 공격 피해의 #%를 마나로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_172852114"]}}} +{"ref":"#% of Physical Damage converted to a random Element","better":1,"matchers":[{"string":"물리 피해의 #%를 무작위 원소 피해로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_1776612984"]}}} +{"ref":"#% of Physical Damage Converted to Chaos Damage","better":1,"matchers":[{"string":"물리 피해의 #%를 카오스 피해로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_490098963"],"implicit":["implicit.stat_490098963"],"fractured":["fractured.stat_490098963"],"scourge":["scourge.stat_490098963"]}}} +{"ref":"#% of Physical Damage Converted to Cold Damage","better":1,"matchers":[{"string":"물리 피해의 #%를 냉기 피해로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_2133341901"],"implicit":["implicit.stat_2133341901"],"fractured":["fractured.stat_2133341901"],"scourge":["scourge.stat_2133341901"],"crafted":["crafted.stat_2133341901"]}}} +{"ref":"#% of Physical Damage Converted to Cold Damage while affected by Hatred","better":1,"matchers":[{"string":"증오의 영향을 받는 동안 물리 피해의 #%를 냉기 피해로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_664849247"]}}} +{"ref":"#% of Physical Damage Converted to Fire Damage","better":1,"matchers":[{"string":"물리 피해의 #%를 화염 피해로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_1533563525"],"implicit":["implicit.stat_1533563525"],"fractured":["fractured.stat_1533563525"],"scourge":["scourge.stat_1533563525"],"crafted":["crafted.stat_1533563525"]}}} +{"ref":"#% of Physical Damage Converted to Fire Damage while affected by Anger","better":1,"matchers":[{"string":"분노의 영향을 받는 동안 물리 피해의 #%를 화염 피해로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_3624529132"]}}} +{"ref":"#% of Physical Damage Converted to Fire while you have Avatar of Fire","better":1,"matchers":[{"string":"불의 화신이 지속되는 동안 물리 피해의 #%를 화염 피해로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_2052379536"]}}} +{"ref":"#% of Physical Damage Converted to Lightning Damage","better":1,"matchers":[{"string":"물리 피해의 #%를 번개 피해로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_3240769289"],"implicit":["implicit.stat_3240769289"],"fractured":["fractured.stat_3240769289"],"scourge":["scourge.stat_3240769289"],"crafted":["crafted.stat_3240769289"]}}} +{"ref":"#% of Physical Damage Converted to Lightning Damage while affected by Wrath","better":1,"matchers":[{"string":"진노의 영향을 받는 동안 물리 피해의 #%를 번개 피해로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_2106756686"]}}} +{"ref":"#% of Physical Damage Converted to Lightning during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 물리 피해의 #%를 번개 피해로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_660386148"]}}} +{"ref":"#% of Physical Damage from Hits taken as Chaos Damage","better":1,"matchers":[{"string":"피격 시 물리 피해의 #%를 카오스 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_4129825612"],"implicit":["implicit.stat_4129825612"],"fractured":["fractured.stat_4129825612"],"scourge":["scourge.stat_4129825612"]}}} +{"ref":"#% of Physical Damage from Hits taken as Cold Damage","better":1,"matchers":[{"string":"피격 시 물리 피해의 #%를 냉기 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_1871056256"],"implicit":["implicit.stat_1871056256"],"fractured":["fractured.stat_1871056256"],"scourge":["scourge.stat_1871056256"]}}} +{"ref":"#% of Physical Damage from Hits taken as Cold Damage during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 받는 물리 피해의 #%를 냉기 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_625682777"]}}} +{"ref":"#% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Elements","better":1,"matchers":[{"string":"원소의 순수함의 영향을 받는 동안 물리 피해의 #%를 냉기 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_1710207583"]}}} +{"ref":"#% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Ice","better":1,"matchers":[{"string":"얼음의 순수함의 영향을 받는 동안 물리 피해의 #%를 냉기 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_1779027621"]}}} +{"ref":"#% of Physical Damage from Hits taken as Fire Damage","better":1,"matchers":[{"string":"피격 시 물리 피해의 #%를 화염 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_3342989455"],"implicit":["implicit.stat_3342989455"],"fractured":["fractured.stat_3342989455"],"scourge":["scourge.stat_3342989455"],"crafted":["crafted.stat_3342989455"]}}} +{"ref":"#% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Elements","better":1,"matchers":[{"string":"원소의 순수함의 영향을 받는 동안 물리 피해의 #%를 화염 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_1722775216"]}}} +{"ref":"#% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Fire","better":1,"matchers":[{"string":"불의 순수함의 영향을 받는 동안 물리 피해의 #%를 화염 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_1798459983"]}}} +{"ref":"#% of Physical Damage from Hits taken as Lightning Damage","better":1,"matchers":[{"string":"피격 시 물리 피해의 #%를 번개 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_425242359"],"implicit":["implicit.stat_425242359"],"fractured":["fractured.stat_425242359"],"scourge":["scourge.stat_425242359"],"crafted":["crafted.stat_425242359"]}}} +{"ref":"#% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Elements","better":1,"matchers":[{"string":"원소의 순수함의 영향을 받는 동안 물리 피해의 #%를 번개 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_873224517"]}}} +{"ref":"#% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Lightning","better":1,"matchers":[{"string":"번개의 순수함의 영향을 받는 동안 물리 피해의 #%를 번개 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_254131992"]}}} +{"ref":"#% of Physical Damage from Hits with this Weapon is Converted to a random Element","better":1,"matchers":[{"string":"이 무기로 적 명중 시 물리 피해의 #%를 무작위 원소 피해로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_1431238626"],"implicit":["implicit.stat_1431238626"]}}} +{"ref":"#% of Physical Damage is taken from Mana before Life","better":1,"matchers":[{"string":"물리 피해의 #%를 생명력 대신 마나로 소모"}],"trade":{"ids":{"implicit":["implicit.stat_3743438423"]}}} +{"ref":"#% of Physical Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"물리 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_3764265320"],"implicit":["implicit.stat_2508100173","implicit.stat_3764265320"],"fractured":["fractured.stat_3764265320"],"scourge":["scourge.stat_3764265320"]}}} +{"ref":"#% of Physical Damage Leeched by Enemy as Life","dp":true,"better":1,"matchers":[{"string":"적이 흡수하는 물리 피해의 #%를 생명력으로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3423022686"]}}} +{"ref":"#% of Physical Damage taken as Fire Damage","better":1,"matchers":[{"string":"물리 피해의 #%를 화염 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_1004468512"]}}} +{"ref":"#% of Physical Damage taken Recouped as Life","better":1,"matchers":[{"string":"받은 물리 피해의 #%를 생명력으로 회생"}],"trade":{"ids":{"implicit":["implicit.stat_4021566756"]}}} +{"ref":"#% of Recovery applied Instantly","better":1,"matchers":[{"string":"회복량의 #%를 즉시 회복"},{"string":"즉시 회복","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1526933524","explicit.stat_2503377690"],"fractured":["fractured.stat_1526933524","fractured.stat_2503377690"]}}} +{"ref":"#% of Spell Damage Leeched as Energy Shield","dp":true,"better":1,"matchers":[{"string":"주문 피해의 #%를 에너지 보호막으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_11106713"],"implicit":["implicit.stat_11106713"]}}} +{"ref":"#% of Spell Damage Leeched as Energy Shield during Effect","dp":true,"better":1,"matchers":[{"string":"효과를 받는 동안 주문 피해의 #%를 에너지 보호막으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_1456464057"],"fractured":["fractured.stat_1456464057"]}}} +{"ref":"#% of Spell Damage Leeched as Energy Shield for each Curse on Enemy","dp":true,"better":1,"matchers":[{"string":"적에게 걸린 저주 하나당 주문 피해의 #%를 에너지 보호막으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_3734213780"]}}} +{"ref":"#% of Spell Damage Leeched as Life if Equipped Shield has at least 30% Chance to Block","dp":true,"better":1,"matchers":[{"string":"장착한 방패의 막기 확률이 30% 이상이면 주문 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_3893109186"]}}} +{"ref":"#% reduced Area Damage taken from Hits","better":-1,"matchers":[{"string":"피격 시 받는 범위 피해 #% 증가"},{"string":"피격 시 받는 범위 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3001376862"]},"inverted":true}} +{"ref":"#% reduced Attack and Cast Speed per Frenzy Charge","better":-1,"matchers":[{"string":"격분 충전 하나당 공격 및 시전 속도 #% 증가"},{"string":"격분 충전 하나당 공격 및 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_269590092"]},"inverted":true}} +{"ref":"#% reduced Chance to Block Attack and Spell Damage","better":-1,"matchers":[{"string":"공격 및 주문 피해 막기 확률 #% 증가"},{"string":"공격 및 주문 피해 막기 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4147897060"]},"inverted":true}} +{"ref":"#% reduced Chaos Damage taken","better":-1,"matchers":[{"string":"받는 카오스 피해 #% 증가"},{"string":"받는 카오스 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2960683632"],"implicit":["implicit.stat_2960683632"],"fractured":["fractured.stat_2960683632"],"scourge":["scourge.stat_2960683632"]},"inverted":true}} +{"ref":"#% reduced Chaos Damage taken over time","better":-1,"matchers":[{"string":"받는 지속 카오스 피해 #% 증가"},{"string":"받는 지속 카오스 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3762784591"],"fractured":["fractured.stat_3762784591"]},"inverted":true}} +{"ref":"#% reduced Chill Duration on you","better":1,"matchers":[{"string":"플레이어에게 적용되는 냉각 지속시간 #% 감소"},{"string":"플레이어에게 적용되는 냉각 지속시간 #% 증가","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1874553720"],"implicit":["implicit.stat_1874553720"]}}} +{"ref":"#% reduced Cold Damage taken","better":-1,"matchers":[{"string":"받는 냉기 피해 #% 증가"},{"string":"받는 냉기 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3303114033"],"implicit":["implicit.stat_3303114033"],"fractured":["fractured.stat_3303114033"],"scourge":["scourge.stat_3303114033"]},"inverted":true}} +{"ref":"#% reduced Cost of Aura Skills that summon Totems","better":-1,"matchers":[{"string":"토템을 소환하는 오라 스킬의 소모 #% 증가"},{"string":"토템을 소환하는 오라 스킬의 소모 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2701327257"]},"inverted":true}} +{"ref":"#% reduced Critical Strike Chance per Power Charge","better":-1,"matchers":[{"string":"권능 충전 하나당 치명타 확률 #% 증가"},{"string":"권능 충전 하나당 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2102212273"]},"inverted":true}} +{"ref":"#% reduced Damage taken from Damage Over Time","better":-1,"matchers":[{"string":"지속 피해로 받는 피해 #% 증가"},{"string":"지속 피해로 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1101403182"],"implicit":["implicit.stat_1101403182"],"fractured":["fractured.stat_1101403182"],"crafted":["crafted.stat_1101403182"]},"inverted":true}} +{"ref":"#% reduced Damage taken from Projectile Hits","better":-1,"matchers":[{"string":"투사체 피격 시 받는 피해 #% 증가"},{"string":"투사체 피격 시 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1425651005"]},"inverted":true}} +{"ref":"#% reduced Damage taken if Corrupted","better":-1,"matchers":[{"string":"타락 시 받는 피해 #% 증가"},{"string":"타락 시 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3309607228"]},"inverted":true}} +{"ref":"#% reduced Effect of Chill on you","better":-1,"matchers":[{"string":"플레이어에게 적용되는 냉각 효과 #% 증가"},{"string":"플레이어에게 적용되는 냉각 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1478653032"],"implicit":["implicit.stat_1478653032"],"fractured":["fractured.stat_1478653032"],"enchant":["enchant.stat_1478653032"],"scourge":["scourge.stat_1478653032"],"crafted":["crafted.stat_1478653032"]},"inverted":true}} +{"ref":"#% reduced Effect of Chill on you during Effect","better":-1,"matchers":[{"string":"효과를 받는 동안 플레이어에게 적용되는 냉각 효과 #% 증가"},{"string":"효과를 받는 동안 플레이어에게 적용되는 냉각 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2434101731"],"fractured":["fractured.stat_2434101731"]},"inverted":true}} +{"ref":"#% reduced Effect of Curses on you","better":-1,"matchers":[{"string":"플레이어에게 적용되는 저주 효과 #% 증가"},{"string":"플레이어에게 적용되는 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3407849389"],"implicit":["implicit.stat_3407849389"],"fractured":["fractured.stat_3407849389"],"scourge":["scourge.stat_3407849389"],"crafted":["crafted.stat_3407849389"]},"inverted":true}} +{"ref":"#% reduced Effect of Curses on you during Effect","better":-1,"matchers":[{"string":"효과를 받는 동안 플레이어에게 적용되는 저주 효과 #% 증가"},{"string":"효과를 받는 동안 플레이어에게 적용되는 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4265534424"],"fractured":["fractured.stat_4265534424"]},"inverted":true}} +{"ref":"#% reduced Effect of Shock on you","better":-1,"matchers":[{"string":"플레이어에게 적용되는 감전 효과 #% 증가"},{"string":"플레이어에게 적용되는 감전 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3801067695"],"implicit":["implicit.stat_3801067695"],"fractured":["fractured.stat_3801067695"],"enchant":["enchant.stat_3801067695"],"scourge":["scourge.stat_3801067695"],"crafted":["crafted.stat_3801067695"]},"inverted":true}} +{"ref":"#% reduced Elemental Ailment Duration on you","better":1,"matchers":[{"string":"플레이어에게 적용되는 원소 상태 이상 지속시간 #% 감소"},{"string":"플레이어에게 적용되는 원소 상태 이상 지속시간 #% 증가","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1745952865"],"implicit":["implicit.stat_1745952865"],"scourge":["scourge.stat_1745952865"]}}} +{"ref":"#% reduced Elemental Ailment Duration on you per 10 Devotion","better":1,"matchers":[{"string":"헌신 10당 플레이어에게 적용되는 원소 상태 이상 지속시간 #% 감소"},{"string":"헌신 10당 플레이어에게 적용되는 원소 상태 이상 지속시간 #% 증가","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_730530528"]}}} +{"ref":"#% reduced Elemental Damage taken from Hits per Endurance Charge","better":-1,"matchers":[{"string":"인내 충전 하나당 피격 시 받는 원소 피해 #% 증가"},{"string":"인내 충전 하나당 피격 시 받는 원소 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1686913105"]},"inverted":true}} +{"ref":"#% reduced Elemental Damage taken while stationary","better":-1,"matchers":[{"string":"정지 상태일 때 받는 원소 피해 #% 증가"},{"string":"정지 상태일 때 받는 원소 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3859593448","explicit.stat_983989924"],"fractured":["fractured.stat_3859593448"]},"inverted":true}} +{"ref":"#% reduced Elemental Resistances","better":1,"matchers":[{"string":"원소 저항 #% 증가"},{"string":"원소 저항 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_76848920"]},"inverted":true}} +{"ref":"#% reduced Enemy Stun Threshold","better":1,"matchers":[{"string":"적 기절 한계치 #% 감소"},{"string":"적 기절 한계치 #% 증가","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1443060084"],"implicit":["implicit.stat_1443060084"],"fractured":["fractured.stat_1443060084"],"scourge":["scourge.stat_1443060084"]}}} +{"ref":"#% reduced Enemy Stun Threshold during any Flask Effect","better":1,"matchers":[{"string":"아무 플라스크나 효과를 받는 동안 적 기절 한계치 #% 감소"}],"trade":{"ids":{"explicit":["explicit.stat_4228951304"]}}} +{"ref":"#% reduced Enemy Stun Threshold with Melee Weapons","better":1,"matchers":[{"string":"근접 무기 사용 시 적 기절 한계치 #% 감소"},{"string":"근접 무기 사용 시 적 기절 한계치 #% 증가","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2791825817"]}}} +{"ref":"#% reduced Enemy Stun Threshold with this Weapon","better":1,"matchers":[{"string":"이 무기 사용 시 적 기절 한계치 #% 감소"},{"string":"이 무기 사용 시 적 기절 한계치 #% 증가","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_832404842"],"enchant":["enchant.stat_832404842"],"crafted":["crafted.stat_832404842"]}}} +{"ref":"#% reduced Fishing Pool Consumption","better":-1,"matchers":[{"string":"어장 소비 #% 증가"},{"string":"어장 소비 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1550221644"],"fractured":["fractured.stat_1550221644"],"scourge":["scourge.stat_1550221644"]},"inverted":true}} +{"ref":"#% reduced Flask Charges used","better":-1,"matchers":[{"string":"플라스크 충전 소모량 #% 증가"},{"string":"플라스크 충전 소모량 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_644456512"],"implicit":["implicit.stat_644456512"],"fractured":["fractured.stat_644456512"],"scourge":["scourge.stat_644456512"]},"inverted":true}} +{"ref":"#% reduced Freeze Duration on you","better":1,"matchers":[{"string":"플레이어에게 적용되는 동결 지속시간 #% 감소"},{"string":"플레이어에게 적용되는 동결 지속시간 #% 증가","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2160282525"],"implicit":["implicit.stat_2160282525"],"fractured":["fractured.stat_2160282525"],"enchant":["enchant.stat_2160282525"],"scourge":["scourge.stat_2160282525"]}}} +{"ref":"#% reduced Frenzy Charge Duration per Frenzy Charge","better":-1,"matchers":[{"string":"격분 충전 하나당 격분 충전 지속시간 #% 증가"},{"string":"격분 충전 하나당 격분 충전 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2543931078"]},"inverted":true}} +{"ref":"#% reduced Golem Size","better":-1,"matchers":[{"string":"골렘 크기 #% 증가"},{"string":"골렘 크기 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2576412389"]},"inverted":true}} +{"ref":"#% reduced Ignite Duration on you","better":1,"matchers":[{"string":"플레이어에게 적용되는 점화 지속시간 #% 감소"},{"string":"플레이어에게 적용되는 점화 지속시간 #% 증가","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_986397080"],"implicit":["implicit.stat_986397080"],"fractured":["fractured.stat_986397080"],"enchant":["enchant.stat_986397080"],"scourge":["scourge.stat_986397080"],"crafted":["crafted.stat_986397080"]}}} +{"ref":"#% reduced Lightning Damage taken","better":-1,"matchers":[{"string":"받는 번개 피해 #% 증가"},{"string":"받는 번개 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1276918229"],"implicit":["implicit.stat_1276918229"],"fractured":["fractured.stat_1276918229"],"scourge":["scourge.stat_1276918229"]},"inverted":true}} +{"ref":"#% reduced Lightning Warp Duration","better":-1,"matchers":[{"string":"번개 차원 이동 지속시간 #% 증가"},{"string":"번개 차원 이동 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_609478942"]},"inverted":true}} +{"ref":"#% reduced Mana Burn rate","better":-1,"matchers":[{"string":"마나 연소 속도 #% 증가"},{"string":"마나 연소 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_116232170"]},"inverted":true}} +{"ref":"#% reduced Mana Cost of Attacks","better":-1,"matchers":[{"string":"공격의 마나 소모 #% 증가"},{"string":"공격의 마나 소모 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2859471749"]},"inverted":true}} +{"ref":"#% reduced Mana Cost of Minion Skills","better":-1,"matchers":[{"string":"소환수 스킬의 마나 소모 #% 증가"},{"string":"소환수 스킬의 마나 소모 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2969128501"]},"inverted":true}} +{"ref":"#% reduced Mana Cost of Raise Spectre","better":-1,"matchers":[{"string":"망령 소환 마나 소모 #% 증가"},{"string":"망령 소환 마나 소모 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_262301496"]},"inverted":true}} +{"ref":"#% reduced Mana Cost of Skills","better":1,"matchers":[{"string":"스킬의 마나 소모 #% 감소"},{"string":"스킬의 마나 소모 #% 증가","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_474294393"],"implicit":["implicit.stat_474294393"],"fractured":["fractured.stat_474294393"],"crafted":["crafted.stat_474294393"]}}} +{"ref":"#% reduced Mana Cost of Skills if you've been Hit Recently","better":-1,"matchers":[{"string":"최근 4초 이내 피격된 경우 스킬의 마나 소모 #% 증가"},{"string":"최근 4초 이내 피격된 경우 스킬의 마나 소모 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3693451031"]},"inverted":true}} +{"ref":"#% reduced Mana Cost of Skills per 10 Devotion","better":1,"matchers":[{"string":"헌신 10당 스킬의 마나 소모 #% 증가"},{"string":"헌신 10당 스킬의 마나 소모 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3293275880"]},"inverted":true}} +{"ref":"#% reduced Mana Cost of Skills when on Low Life","better":-1,"matchers":[{"string":"낮은 생명력 상태일 때 스킬의 마나 소모 #% 증가"},{"string":"낮은 생명력 상태일 때 스킬의 마나 소모 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_73272763"]},"inverted":true}} +{"ref":"#% reduced Mana Cost per Endurance Charge","better":1,"matchers":[{"string":"인내 충전 하나당 마나 소모 #% 감소"}],"trade":{"ids":{"explicit":["explicit.stat_1774881905"]}}} +{"ref":"#% reduced maximum number of Raised Zombies","better":-1,"matchers":[{"string":"소환 가능한 좀비 최대치 #% 증가"},{"string":"소환 가능한 좀비 최대치 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4041805509"]},"inverted":true}} +{"ref":"#% reduced Maximum number of Summoned Raging Spirits","better":-1,"matchers":[{"string":"소환 가능한 격노의 유령 최대치 #% 증가"},{"string":"소환 가능한 격노의 유령 최대치 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1186934478"]},"inverted":true}} +{"ref":"#% reduced Physical Damage taken over time","better":-1,"matchers":[{"string":"받는 지속 물리 피해 #% 증가"},{"string":"받는 지속 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_511024200"]},"inverted":true}} +{"ref":"#% reduced Reflected Damage taken","better":-1,"matchers":[{"string":"받는 피해 반사 #% 증가"},{"string":"받는 피해 반사 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3846810663"],"implicit":["implicit.stat_3846810663"]},"inverted":true}} +{"ref":"#% reduced Reflected Damage taken during Effect","better":-1,"matchers":[{"string":"효과를 받는 동안 받는 반사 피해 #% 증가"},{"string":"효과를 받는 동안 받는 반사 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3842373291"],"crafted":["crafted.stat_3842373291"]},"inverted":true}} +{"ref":"#% reduced Reflected Elemental Damage taken","better":-1,"matchers":[{"string":"반사로 받는 원소 피해 #% 증가"},{"string":"반사로 받는 원소 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_248838155"],"implicit":["implicit.stat_248838155"],"enchant":["enchant.stat_248838155"]},"inverted":true}} +{"ref":"#% reduced Reflected Elemental Damage taken while affected by Purity of Elements","better":-1,"matchers":[{"string":"원소의 순수함의 영향을 받는 동안 받는 반사 원소 피해 #% 증가"},{"string":"원소의 순수함의 영향을 받는 동안 받는 반사 원소 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_65331133"]},"inverted":true}} +{"ref":"#% reduced Reflected Physical Damage taken","better":-1,"matchers":[{"string":"반사로 받는 물리 피해 #% 증가"},{"string":"반사로 받는 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3158958938"],"implicit":["implicit.stat_3158958938"],"enchant":["enchant.stat_3158958938"]},"inverted":true}} +{"ref":"#% reduced Reflected Physical Damage taken while affected by Determination","better":-1,"matchers":[{"string":"결의의 영향을 받는 동안 받는 반사 물리 피해 #% 증가"},{"string":"결의의 영향을 받는 동안 받는 반사 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2457540491"]},"inverted":true}} +{"ref":"#% reduced Shock Duration on you","better":1,"matchers":[{"string":"플레이어에게 적용되는 감전 지속시간 #% 감소"},{"string":"플레이어에게 적용되는 감전 지속시간 #% 증가","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_99927264"],"implicit":["implicit.stat_99927264"],"fractured":["fractured.stat_99927264"]}}} +{"ref":"#% reduced Spectral Throw Projectile Deceleration","better":-1,"matchers":[{"string":"환영 무기 투척 투사체 감속 #% 증가"},{"string":"환영 무기 투척 투사체 감속 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_444686294"]},"inverted":true}} +{"ref":"#% reduced Spell Damage taken from Blinded Enemies","better":-1,"matchers":[{"string":"실명된 적에게 받는 주문 피해 #% 증가"},{"string":"실명된 적에게 받는 주문 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1165847826"]},"inverted":true}} +{"ref":"#% reduced Storm Call Duration","better":-1,"matchers":[{"string":"폭풍 부름의 지속시간 #% 증가"},{"string":"폭풍 부름의 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1843506018"]},"inverted":true}} +{"ref":"#% slower start of Energy Shield Recharge during any Flask Effect","better":-1,"matchers":[{"string":"아무 플라스크나 효과를 받는 동안 에너지 보호막 재충전 시작 속도 #% 가속"},{"string":"아무 플라스크나 효과를 받는 동안 에너지 보호막 재충전 시작 속도 #% 감속","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1912660783"]},"inverted":true}} +{"ref":"#% total increased maximum Energy Shield","better":1,"matchers":[{"string":"에너지 보호막 최대치 총 #% 증가 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_energy_shield"]}}} +{"ref":"#% total increased Physical Damage","better":1,"matchers":[{"string":"물리 피해 총 #% 증가 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_physical_damage"]}}} +{"ref":"+# Accuracy Rating per 2 Intelligence","better":1,"matchers":[{"string":"지능 2당 정확도 #"}],"trade":{"ids":{"explicit":["explicit.stat_2196657026"]}}} +{"ref":"+# Armour if you've Blocked Recently","better":1,"matchers":[{"string":"최근 4초 이내 막아낸 경우 방어도 #"}],"trade":{"ids":{"explicit":["explicit.stat_4091848539"],"fractured":["fractured.stat_4091848539"]}}} +{"ref":"+# Armour per Summoned Totem","better":1,"matchers":[{"string":"소환된 토템 하나당 방어도 #"}],"trade":{"ids":{"explicit":["explicit.stat_1429385513"]}}} +{"ref":"+# Armour while stationary","better":1,"matchers":[{"string":"정지 상태일 때 방어도 #"}],"trade":{"ids":{"explicit":["explicit.stat_2551779822"],"implicit":["implicit.stat_2551779822"]}}} +{"ref":"+# Armour while you do not have Avatar of Fire","better":1,"matchers":[{"string":"불의 화신이 사라지면 방어도 #"}],"trade":{"ids":{"explicit":["explicit.stat_4078952782"]}}} +{"ref":"+# Chaos Damage taken","better":1,"matchers":[{"string":"받는 카오스 피해 #"}],"trade":{"ids":{"explicit":["explicit.stat_496011033"],"implicit":["implicit.stat_496011033"]}}} +{"ref":"+# Cold Damage taken from Hits","better":1,"matchers":[{"string":"피격 시 받는 냉기 피해 #"}],"trade":{"ids":{"implicit":["implicit.stat_261654754"]}}} +{"ref":"+# Dexterity Requirement","better":1,"matchers":[{"string":"민첩 요구사항 #"}],"trade":{"ids":{"explicit":["explicit.stat_1133453872"],"scourge":["scourge.stat_1133453872"]}}} +{"ref":"+# Energy Shield gained on Killing a Shocked Enemy","better":1,"matchers":[{"string":"감전된 적 처치 시 에너지 보호막 #"}],"trade":{"ids":{"explicit":["explicit.stat_347328113"]}}} +{"ref":"+# Fire Damage taken from Hits","better":1,"matchers":[{"string":"피격 시 받는 화염 피해 #"}],"trade":{"ids":{"explicit":["explicit.stat_614758785"],"implicit":["implicit.stat_614758785"]}}} +{"ref":"+# Fire Damage taken from Hits per Mana Burn","better":1,"matchers":[{"string":"마나 연소 하나당 피격 시 받는 화염 피해 #"}],"trade":{"ids":{"explicit":["explicit.stat_1483305963"]}}} +{"ref":"+# Intelligence Requirement","better":1,"matchers":[{"string":"지능 요구사항 #"}],"trade":{"ids":{"explicit":["explicit.stat_2153364323"],"scourge":["scourge.stat_2153364323"]}}} +{"ref":"+# Life per 4 Dexterity","better":1,"matchers":[{"string":"민첩 4당 생명력 #"}],"trade":{"ids":{"explicit":["explicit.stat_2042405614"]}}} +{"ref":"+# Lightning Damage taken from Hits","better":1,"matchers":[{"string":"피격 시 받는 번개 피해 #"}],"trade":{"ids":{"implicit":["implicit.stat_465051235"]}}} +{"ref":"+# Mana gained on Killing a Frozen Enemy","better":1,"matchers":[{"string":"동결된 적 처치 시 마나 #"}],"trade":{"ids":{"explicit":["explicit.stat_3304801725"]}}} +{"ref":"+# Mana per 4 Strength","better":1,"matchers":[{"string":"힘 4당 최대 마나 #"}],"trade":{"ids":{"explicit":["explicit.stat_507075051"]}}} +{"ref":"+# maximum Energy Shield per 5 Strength","better":1,"matchers":[{"string":"힘 5당 에너지 보호막 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_3788706881"]}}} +{"ref":"+# Maximum Energy Shield per Level","better":1,"matchers":[{"string":"1레벨당 에너지 보호막 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_3864993324"]}}} +{"ref":"+# Maximum Life per Level","better":1,"matchers":[{"string":"1레벨당 최대 생명력 #"}],"trade":{"ids":{"explicit":["explicit.stat_1982144275"]}}} +{"ref":"+# Maximum Mana per Level","better":1,"matchers":[{"string":"1레벨당 최대 마나 #"}],"trade":{"ids":{"explicit":["explicit.stat_2563691316"]}}} +{"ref":"+# metre to Discharge radius","better":1,"matchers":[{"string":"방출 반경 #미터"}],"trade":{"ids":{"enchant":["enchant.stat_2716178075"]}}} +{"ref":"+# metre to Melee Strike Range if you have Killed Recently","better":1,"matchers":[{"string":"최근 4초 이내 적을 처치한 경우 근접 타격 범위 #미터"}],"trade":{"ids":{"explicit":["explicit.stat_3255961830"],"fractured":["fractured.stat_3255961830"]}}} +{"ref":"+# metre to Melee Strike Range per White Socket","better":1,"matchers":[{"string":"하얀 홈 하나당 근접 타격 범위 #미터"}],"trade":{"ids":{"explicit":["explicit.stat_2076080860"]}}} +{"ref":"+# metre to Melee Strike Range while Unarmed","better":1,"matchers":[{"string":"비무장 상태일 때 근접 타격 범위 #미터"}],"trade":{"ids":{"explicit":["explicit.stat_3273962791"]}}} +{"ref":"+# metre to Weapon Range per 10% Quality","better":1,"matchers":[{"string":"퀄리티 10%당 무기 범위 #미터"}],"trade":{"ids":{"enchant":["enchant.stat_2967267655"]}}} +{"ref":"+# metres to Weapon Range","better":1,"matchers":[{"string":"근접 타격 범위 #미터"},{"string":"무기 공격 범위 #미터"}],"trade":{"ids":{"explicit":["explicit.stat_2264295449","explicit.stat_350598685"],"implicit":["implicit.stat_2264295449","implicit.stat_350598685"],"fractured":["fractured.stat_2264295449","fractured.stat_350598685"],"enchant":["enchant.stat_350598685"],"scourge":["scourge.stat_350598685"],"crafted":["crafted.stat_2264295449","crafted.stat_350598685"]}}} +{"ref":"+# Physical Damage taken from Attack Hits","better":1,"matchers":[{"string":"공격 적중 시 받는 물리 피해 #"}],"trade":{"ids":{"explicit":["explicit.stat_3441651621"],"implicit":["implicit.stat_3441651621"],"fractured":["fractured.stat_3441651621"]}}} +{"ref":"+# Physical Damage taken from Hits","better":1,"matchers":[{"string":"피격 시 받는 물리 피해 #"}],"trade":{"ids":{"explicit":["explicit.stat_321765853"]}}} +{"ref":"+# Physical Damage taken from Hits by Animals","better":1,"matchers":[{"string":"동물에게 피격 시 받는 물리 피해 #"}],"trade":{"ids":{"explicit":["explicit.stat_3277537093"]}}} +{"ref":"+# Physical Damage taken from Projectile Attacks","better":1,"matchers":[{"string":"투사체 공격으로 받는 물리 피해 #"}],"trade":{"ids":{"explicit":["explicit.stat_3612407781"]}}} +{"ref":"+# Prefix Modifier allowed","better":1,"matchers":[{"string":"접두어 속성 부여의 최대 개수 #개"}],"trade":{"ids":{"implicit":["implicit.stat_3182714256"]}}} +{"ref":"+# second to Summon Skeleton Cooldown","better":1,"matchers":[{"string":"해골 소환 재사용 대기시간 #초"}],"trade":{"ids":{"explicit":["explicit.stat_3013430129"]}}} +{"ref":"+# seconds to Avian's Flight Duration","dp":true,"better":1,"matchers":[{"string":"새의 비행 지속시간 #초"}],"trade":{"ids":{"explicit":["explicit.stat_1251731548"]}}} +{"ref":"+# seconds to Avian's Might Duration","dp":true,"better":1,"matchers":[{"string":"새의 힘 지속시간 #초"}],"trade":{"ids":{"explicit":["explicit.stat_1251945210"]}}} +{"ref":"+# seconds to Cat's Agility Duration","dp":true,"better":1,"matchers":[{"string":"고양이의 날렵함 지속시간 #초"}],"trade":{"ids":{"explicit":["explicit.stat_3686519528"]}}} +{"ref":"+# seconds to Cat's Stealth Duration","dp":true,"better":1,"matchers":[{"string":"고양이의 은신 지속시간 #초"}],"trade":{"ids":{"explicit":["explicit.stat_387596329"]}}} +{"ref":"+# seconds to Duration of Frenzy and Power Charges on Culling Strike","better":1,"matchers":[{"string":"마무리 타격 시 격분 및 권능 충전의 지속시간 #초"}],"trade":{"ids":{"explicit":["explicit.stat_4244234128"]}}} +{"ref":"+# seconds to Lockdown Timer","better":1,"matchers":[{"string":"폐쇄까지 남은 시간 #초"}],"trade":{"ids":{"explicit":["explicit.stat_3471951849"],"fractured":["fractured.stat_3471951849"]}}} +{"ref":"+# Strength and Intelligence Requirement","better":1,"matchers":[{"string":"힘 및 지능 요구사항 #"}],"trade":{"ids":{"explicit":["explicit.stat_4272453892"]}}} +{"ref":"+# Strength Requirement","better":1,"matchers":[{"string":"힘 요구사항 #"}],"trade":{"ids":{"explicit":["explicit.stat_2833226514"],"scourge":["scourge.stat_2833226514"]}}} +{"ref":"+# Suffix Modifier allowed","better":1,"matchers":[{"string":"접미어 속성 부여의 최대 개수 #개"}],"trade":{"ids":{"implicit":["implicit.stat_718638445"]}}} +{"ref":"+# to Accuracy Rating","better":1,"matchers":[{"string":"정확도 #"}],"trade":{"ids":{"explicit":["explicit.stat_691932474","explicit.stat_803737631"],"implicit":["implicit.stat_691932474","implicit.stat_803737631"],"fractured":["fractured.stat_691932474","fractured.stat_803737631"],"crafted":["crafted.stat_691932474","crafted.stat_803737631"]}}} +{"ref":"+# to Accuracy Rating for each Empty Green Socket on any Equipped Item","better":1,"matchers":[{"string":"장착 중인 모든 아이템의 빈 초록색 홈 하나당 정확도 #"}],"trade":{"ids":{"explicit":["explicit.stat_4280703528"]}}} +{"ref":"+# to Accuracy Rating per 10 Dexterity on Unallocated Passives in Radius","better":1,"matchers":[{"string":"반경 내 할당되지 않은 패시브 스킬의 민첩 10당 정확도 #"}],"trade":{"ids":{"explicit":["explicit.stat_100820057"]}}} +{"ref":"+# to Accuracy Rating per 10 Intelligence on Unallocated Passives in Radius","better":1,"matchers":[{"string":"반경 내 할당되지 않은 패시브 스킬의 지능 10당 정확도 #"}],"trade":{"ids":{"explicit":["explicit.stat_3996149330"]}}} +{"ref":"+# to Accuracy Rating per 2 Dexterity","better":1,"matchers":[{"string":"민첩 2당 정확도 #"}],"trade":{"ids":{"explicit":["explicit.stat_773731062"],"fractured":["fractured.stat_773731062"]}}} +{"ref":"+# to Accuracy Rating per Frenzy Charge","better":1,"matchers":[{"string":"격분 충전 하나당 정확도 #"}],"trade":{"ids":{"implicit":["implicit.stat_3126680545"]}}} +{"ref":"+# to Accuracy Rating while at Maximum Frenzy Charges","better":1,"matchers":[{"string":"격분 충전이 최대치일 때 정확도 #"}],"trade":{"ids":{"explicit":["explicit.stat_3213407110"]}}} +{"ref":"+# to Agility Level for Heists","better":1,"matchers":[{"string":"강탈의 민첩함 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_2943725337"],"fractured":["fractured.stat_2943725337"]}}} +{"ref":"+# to all Attributes","better":1,"matchers":[{"string":"모든 능력치 #"}],"trade":{"ids":{"explicit":["explicit.stat_1379411836"],"implicit":["implicit.stat_1379411836"],"fractured":["fractured.stat_1379411836"],"crafted":["crafted.stat_1379411836"]}}} +{"ref":"+# to Armour","better":1,"matchers":[{"string":"방어도 #"}],"trade":{"ids":{"explicit":["explicit.stat_3484657501","explicit.stat_809229260"],"implicit":["implicit.stat_3484657501"],"fractured":["fractured.stat_3484657501","fractured.stat_809229260"],"scourge":["scourge.stat_3484657501"],"crafted":["crafted.stat_3484657501","crafted.stat_809229260"]}}} +{"ref":"+# to Armour and Evasion Rating","better":1,"matchers":[{"string":"방어도 및 회피 #"}],"trade":{"ids":{"explicit":["explicit.stat_2316658489"],"implicit":["implicit.stat_2316658489"],"fractured":["fractured.stat_2316658489"],"crafted":["crafted.stat_2316658489"]}}} +{"ref":"+# to Armour and Evasion Rating per 1% Chance to Block Attack Damage","better":1,"matchers":[{"string":"공격 피해 막기 확률 1%당 방어도 및 회피 #"}],"trade":{"ids":{"explicit":["explicit.stat_2818854203"]}}} +{"ref":"+# to Armour and Evasion Rating while Fortified","better":1,"matchers":[{"string":"방어 상승 상태에서 방어도 및 회피 #"}],"trade":{"ids":{"implicit":["implicit.stat_2962782530"]}}} +{"ref":"+# to Armour during Soul Gain Prevention","better":1,"matchers":[{"string":"영혼 획득 방지 중 방어도 #"}],"trade":{"ids":{"explicit":["explicit.stat_1539825365"],"fractured":["fractured.stat_1539825365"],"crafted":["crafted.stat_1539825365"]}}} +{"ref":"+# to Armour if you've Hit an Enemy Recently","better":1,"matchers":[{"string":"최근 4초 이내 적 명중 시 방어도 #"}],"trade":{"ids":{"explicit":["explicit.stat_2368149582"]}}} +{"ref":"+# to Armour per 5 Evasion Rating on Equipped Shield","better":1,"matchers":[{"string":"장착한 방패의 회피 5당 방어도 #"}],"trade":{"ids":{"explicit":["explicit.stat_3088183606"]}}} +{"ref":"+# to Armour per Endurance Charge","better":1,"matchers":[{"string":"인내 충전 하나당 방어도 #"}],"trade":{"ids":{"explicit":["explicit.stat_513221334"]}}} +{"ref":"+# to Armour while affected by Determination","better":1,"matchers":[{"string":"결의의 영향을 받는 동안 방어도 #"}],"trade":{"ids":{"explicit":["explicit.stat_3742808908"]}}} +{"ref":"+# to Armour while Fortified","better":1,"matchers":[{"string":"방어 상승 상태에서 방어도 #"}],"trade":{"ids":{"explicit":["explicit.stat_153004860"],"enchant":["enchant.stat_153004860"]}}} +{"ref":"+# to Armour while Frozen","better":1,"matchers":[{"string":"동결 상태에서 방어도 #"}],"trade":{"ids":{"explicit":["explicit.stat_504366827"]}}} +{"ref":"+# to Brute Force Level for Heists","better":1,"matchers":[{"string":"강탈의 완력 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_1169552613"]}}} +{"ref":"+# to Character Level","better":1,"matchers":[{"string":"캐릭터 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_1172162241"],"fractured":["fractured.stat_1172162241"]}}} +{"ref":"+# to Counter-Thaumaturgy Level for Heists","better":1,"matchers":[{"string":"강탈의 반-마석학 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_4207149030"],"fractured":["fractured.stat_4207149030"]}}} +{"ref":"+# to Deception Level for Heists","better":1,"matchers":[{"string":"강탈의 기만 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_828170926"],"fractured":["fractured.stat_828170926"]}}} +{"ref":"+# to Demolition Level for Heists","better":1,"matchers":[{"string":"강탈의 파괴 공작 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_2359025380"],"fractured":["fractured.stat_2359025380"]}}} +{"ref":"+# to Dexterity","better":1,"matchers":[{"string":"민첩 #"}],"trade":{"ids":{"explicit":["explicit.stat_3261801346"],"implicit":["implicit.stat_3261801346"],"fractured":["fractured.stat_3261801346"],"scourge":["scourge.stat_3261801346"],"crafted":["crafted.stat_3261801346"]}}} +{"ref":"+# to Dexterity and Intelligence","better":1,"matchers":[{"string":"민첩 및 지능 #"}],"trade":{"ids":{"explicit":["explicit.stat_2300185227"],"implicit":["implicit.stat_2300185227"],"fractured":["fractured.stat_2300185227"],"crafted":["crafted.stat_2300185227"]}}} +{"ref":"+# to Engineering Level for Heists","better":1,"matchers":[{"string":"강탈의 공학 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_2978835006"],"fractured":["fractured.stat_2978835006"]}}} +{"ref":"+# to Evasion Rating","better":1,"matchers":[{"string":"회피 #"}],"trade":{"ids":{"explicit":["explicit.stat_2144192055","explicit.stat_53045048"],"implicit":["implicit.stat_53045048"],"fractured":["fractured.stat_2144192055","fractured.stat_53045048"],"scourge":["scourge.stat_53045048"],"crafted":["crafted.stat_2144192055","crafted.stat_53045048"]}}} +{"ref":"+# to Evasion Rating and Energy Shield","better":1,"matchers":[{"string":"회피 및 에너지 보호막 #"}],"trade":{"ids":{"explicit":["explicit.stat_1549868759"]}}} +{"ref":"+# to Evasion Rating if Hit an Enemy Recently","better":1,"matchers":[{"string":"최근 4초 이내 적 명중 시 회피 #"}],"trade":{"ids":{"explicit":["explicit.stat_2935548106"]}}} +{"ref":"+# to Evasion Rating per 1 Maximum Energy Shield on Equipped Helmet","better":1,"matchers":[{"string":"장착한 투구의 에너지 보호막 최대치 1당 회피 #"}],"trade":{"ids":{"explicit":["explicit.stat_1144937587"]}}} +{"ref":"+# to Evasion Rating per 5 Maximum Energy Shield on Equipped Shield","better":1,"matchers":[{"string":"장착한 방패의 에너지 보호막 최대치 5당 회피 #"}],"trade":{"ids":{"explicit":["explicit.stat_1115914670"]}}} +{"ref":"+# to Evasion Rating while in Sand Stance","better":1,"matchers":[{"string":"모래 태세에서 회피 #"}],"trade":{"ids":{"explicit":["explicit.stat_1922061483"]}}} +{"ref":"+# to Evasion Rating while on Full Life","better":1,"matchers":[{"string":"생명력이 최대일 때 회피 #"}],"trade":{"ids":{"explicit":["explicit.stat_4082111882"]}}} +{"ref":"+# to Evasion Rating while on Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태일 때 회피 #"}],"trade":{"ids":{"explicit":["explicit.stat_3470876581"]}}} +{"ref":"+# to Evasion Rating while you have Phasing","better":1,"matchers":[{"string":"차원 능력을 보유한 상태에서 회피 #"}],"trade":{"ids":{"enchant":["enchant.stat_3169671355"]}}} +{"ref":"+# to Global Evasion Rating while moving","better":1,"matchers":[{"string":"이동 중 일반 회피 #"}],"trade":{"ids":{"implicit":["implicit.stat_3825877290"]}}} +{"ref":"+# to Intelligence","better":1,"matchers":[{"string":"지능 #"}],"trade":{"ids":{"explicit":["explicit.stat_328541901"],"implicit":["implicit.stat_328541901"],"fractured":["fractured.stat_328541901"],"scourge":["scourge.stat_328541901"],"crafted":["crafted.stat_328541901"]}}} +{"ref":"+# to Level of all Absolution Gems","better":1,"matchers":[{"string":"모든 면죄 젬 레벨 #","advanced":"모든 면죄(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_251"]}}} +{"ref":"+# to Level of all Alchemist's Mark Gems","better":1,"matchers":[{"string":"모든 연금술사의 징표 젬 레벨 #","advanced":"모든 연금술사의 징표(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_270"]}}} +{"ref":"+# to Level of all Ambush Gems","better":1,"matchers":[{"string":"모든 매복 젬 레벨 #","advanced":"모든 매복(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_248"]}}} +{"ref":"+# to Level of all Ancestral Cry Gems","better":1,"matchers":[{"string":"모든 선대의 함성 젬 레벨 #","advanced":"모든 선대의 함성(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_222"]}}} +{"ref":"+# to Level of all Anger Gems","better":1,"matchers":[{"string":"모든 분노 젬 레벨 #","advanced":"모든 분노(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_68"]}}} +{"ref":"+# to Level of all Animate Guardian Gems","better":1,"matchers":[{"string":"모든 수호자 기동 젬 레벨 #","advanced":"모든 수호자 기동(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_95"]}}} +{"ref":"+# to Level of all Animate Weapon Gems","better":1,"matchers":[{"string":"모든 무기 기동 젬 레벨 #","advanced":"모든 무기 기동(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_97"]}}} +{"ref":"+# to Level of all Arc Gems","better":1,"matchers":[{"string":"모든 연쇄 번개 젬 레벨 #","advanced":"모든 연쇄 번개(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_61"]}}} +{"ref":"+# to Level of all Arcane Cloak Gems","better":1,"matchers":[{"string":"모든 비전의 망토 젬 레벨 #","advanced":"모든 비전의 망토(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_220"]}}} +{"ref":"+# to Level of all Arcanist Brand Gems","better":1,"matchers":[{"string":"모든 신비학자 낙인 젬 레벨 #","advanced":"모든 신비학자 낙인(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_225"]}}} +{"ref":"+# to Level of all Arctic Armour Gems","better":1,"matchers":[{"string":"모든 한기의 방어구 젬 레벨 #","advanced":"모든 한기의 방어구(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_81"]}}} +{"ref":"+# to Level of all Armageddon Brand Gems","better":1,"matchers":[{"string":"모든 종말의 낙인 젬 레벨 #","advanced":"모든 종말의 낙인(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_182"]}}} +{"ref":"+# to Level of all Artillery Ballista Gems","better":1,"matchers":[{"string":"모든 포대 쇠뇌 젬 레벨 #","advanced":"모든 포대 쇠뇌(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_213"]}}} +{"ref":"+# to Level of all Assassin's Mark Gems","better":1,"matchers":[{"string":"모든 암살자의 징표 젬 레벨 #","advanced":"모든 암살자의 징표(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_43"]}}} +{"ref":"+# to Level of all Autoexertion Gems","better":1,"matchers":[{"string":"모든 자동 전력 젬 레벨 #","advanced":"모든 자동 전력(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_274"]}}} +{"ref":"+# to Level of all Automation Gems","better":1,"matchers":[{"string":"모든 자동화 젬 레벨 #","advanced":"모든 자동화(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_273"]}}} +{"ref":"+# to Level of all Ball Lightning Gems","better":1,"matchers":[{"string":"모든 구형 번개 젬 레벨 #","advanced":"모든 구형 번개(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_104"]}}} +{"ref":"+# to Level of all Bane Gems","better":1,"matchers":[{"string":"모든 파멸 젬 레벨 #","advanced":"모든 파멸(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_190"]}}} +{"ref":"+# to Level of all Barrage Gems","better":1,"matchers":[{"string":"모든 연발 사격 젬 레벨 #","advanced":"모든 연발 사격(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_103"]}}} +{"ref":"+# to Level of all Battlemage's Cry Gems","better":1,"matchers":[{"string":"모든 전투마법사의 함성 젬 레벨 #","advanced":"모든 전투마법사의 함성(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_250"]}}} +{"ref":"+# to Level of all Bear Trap Gems","better":1,"matchers":[{"string":"모든 곰 덫 젬 레벨 #","advanced":"모든 곰 덫(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_76"]}}} +{"ref":"+# to Level of all Berserk Gems","better":1,"matchers":[{"string":"모든 광폭 젬 레벨 #","advanced":"모든 광폭(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_200"]}}} +{"ref":"+# to Level of all Blade Blast Gems","better":1,"matchers":[{"string":"모든 칼날 폭격 젬 레벨 #","advanced":"모든 칼날 폭격(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_217"]}}} +{"ref":"+# to Level of all Blade Flurry Gems","better":1,"matchers":[{"string":"모든 질풍의 칼날 젬 레벨 #","advanced":"모든 질풍의 칼날(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_157"]}}} +{"ref":"+# to Level of all Blade Trap Gems","better":1,"matchers":[{"string":"모든 칼날 덫 젬 레벨 #","advanced":"모든 칼날 덫(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_255"]}}} +{"ref":"+# to Level of all Blade Vortex Gems","better":1,"matchers":[{"string":"모든 칼날 소용돌이 젬 레벨 #","advanced":"모든 칼날 소용돌이(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_138"]}}} +{"ref":"+# to Level of all Bladefall Gems","better":1,"matchers":[{"string":"모든 칼날비 젬 레벨 #","advanced":"모든 칼날비(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_136"]}}} +{"ref":"+# to Level of all Bladestorm Gems","better":1,"matchers":[{"string":"모든 칼날 폭풍 젬 레벨 #","advanced":"모든 칼날 폭풍(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_198"]}}} +{"ref":"+# to Level of all Blast Rain Gems","better":1,"matchers":[{"string":"모든 폭발 화살비 젬 레벨 #","advanced":"모든 폭발 화살비(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_135"]}}} +{"ref":"+# to Level of all Blazing Salvo Gems","better":1,"matchers":[{"string":"모든 맹렬한 포격 젬 레벨 #","advanced":"모든 맹렬한 포격(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_232"]}}} +{"ref":"+# to Level of all Blight Gems","better":1,"matchers":[{"string":"모든 황폐 젬 레벨 #","advanced":"모든 황폐(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_155"]}}} +{"ref":"+# to Level of all Blink Arrow Gems","better":1,"matchers":[{"string":"모든 점멸 화살 젬 레벨 #","advanced":"모든 점멸 화살(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_120"]}}} +{"ref":"+# to Level of all Blood and Sand Gems","better":1,"matchers":[{"string":"모든 피와 모래 젬 레벨 #","advanced":"모든 피와 모래(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_199"]}}} +{"ref":"+# to Level of all Blood Rage Gems","better":1,"matchers":[{"string":"모든 피의 격노 젬 레벨 #","advanced":"모든 피의 격노(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_23"]}}} +{"ref":"+# to Level of all Bodyswap Gems","better":1,"matchers":[{"string":"모든 신체 전환 젬 레벨 #","advanced":"모든 신체 전환(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_162"]}}} +{"ref":"+# to Level of all Bone Offering Gems","better":1,"matchers":[{"string":"모든 뼈 공물 젬 레벨 #","advanced":"모든 뼈 공물(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_109"]}}} +{"ref":"+# to Level of all Boneshatter Gems","better":1,"matchers":[{"string":"모든 뼈 박살 젬 레벨 #","advanced":"모든 뼈 박살(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_247"]}}} +{"ref":"+# to Level of all Brand Recall Gems","better":1,"matchers":[{"string":"모든 낙인 소환 젬 레벨 #","advanced":"모든 낙인 소환(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_183"]}}} +{"ref":"+# to Level of all Burning Arrow Gems","better":1,"matchers":[{"string":"모든 불타는 화살 젬 레벨 #","advanced":"모든 불타는 화살(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_71"]}}} +{"ref":"+# to Level of all Caustic Arrow Gems","better":1,"matchers":[{"string":"모든 부식성 화살 젬 레벨 #","advanced":"모든 부식성 화살(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_18"]}}} +{"ref":"+# to Level of all Chain Hook Gems","better":1,"matchers":[{"string":"모든 사슬 갈고리 젬 레벨 #","advanced":"모든 사슬 갈고리(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_202"]}}} +{"ref":"+# to Level of all Chaos Skill Gems","better":1,"matchers":[{"string":"모든 카오스 스킬 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_67169579"],"fractured":["fractured.stat_67169579"]}}} +{"ref":"+# to Level of all Chaos Spell Skill Gems","better":1,"matchers":[{"string":"모든 카오스 주문 스킬 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_4226189338"],"fractured":["fractured.stat_4226189338"],"scourge":["scourge.stat_4226189338"]}}} +{"ref":"+# to Level of all Charged Dash Gems","better":1,"matchers":[{"string":"모든 충전 질주 젬 레벨 #","advanced":"모든 충전 질주(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_158"]}}} +{"ref":"+# to Level of all Clarity Gems","better":1,"matchers":[{"string":"모든 명상 젬 레벨 #","advanced":"모든 명상(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_72"]}}} +{"ref":"+# to Level of all Cleave Gems","better":1,"matchers":[{"string":"모든 회전베기 젬 레벨 #","advanced":"모든 회전베기(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_6"]}}} +{"ref":"+# to Level of all Cobra Lash Gems","better":1,"matchers":[{"string":"모든 코브라 채찍 젬 레벨 #","advanced":"모든 코브라 채찍(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_206"]}}} +{"ref":"+# to Level of all Cold Skill Gems","better":1,"matchers":[{"string":"모든 냉기 스킬 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_1078455967"],"fractured":["fractured.stat_1078455967"]}}} +{"ref":"+# to Level of all Cold Snap Gems","better":1,"matchers":[{"string":"모든 한파 젬 레벨 #","advanced":"모든 한파(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_15"]}}} +{"ref":"+# to Level of all Cold Spell Skill Gems","better":1,"matchers":[{"string":"모든 냉기 주문 스킬 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_2254480358"],"fractured":["fractured.stat_2254480358"],"scourge":["scourge.stat_2254480358"]}}} +{"ref":"+# to Level of all Conductivity Gems","better":1,"matchers":[{"string":"모든 전도성 젬 레벨 #","advanced":"모든 전도성(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_85"]}}} +{"ref":"+# to Level of all Consecrated Path Gems","better":1,"matchers":[{"string":"모든 축성의 진격 젬 레벨 #","advanced":"모든 축성의 진격(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_175"]}}} +{"ref":"+# to Level of all Contagion Gems","better":1,"matchers":[{"string":"모든 전염 젬 레벨 #","advanced":"모든 전염(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_139"]}}} +{"ref":"+# to Level of all Conversion Trap Gems","better":1,"matchers":[{"string":"모든 전향 덫 젬 레벨 #","advanced":"모든 전향 덫(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_75"]}}} +{"ref":"+# to Level of all Convocation Gems","better":1,"matchers":[{"string":"모든 소집 젬 레벨 #","advanced":"모든 소집(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_111"]}}} +{"ref":"+# to Level of all Corrupting Fever Gems","better":1,"matchers":[{"string":"모든 타락한 열병 젬 레벨 #","advanced":"모든 타락한 열병(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_239"]}}} +{"ref":"+# to Level of all Crackling Lance Gems","better":1,"matchers":[{"string":"모든 치직대는 창 젬 레벨 #","advanced":"모든 치직대는 창(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_233"]}}} +{"ref":"+# to Level of all Creeping Frost Gems","better":1,"matchers":[{"string":"모든 엄습하는 서리 젬 레벨 #","advanced":"모든 엄습하는 서리(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_19"]}}} +{"ref":"+# to Level of all Cremation Gems","better":1,"matchers":[{"string":"모든 시체 소각 젬 레벨 #","advanced":"모든 시체 소각(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_161"]}}} +{"ref":"+# to Level of all Crushing Fist Gems","better":1,"matchers":[{"string":"모든 타쇄하는 주먹 젬 레벨 #","advanced":"모든 타쇄하는 주먹(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_49"]}}} +{"ref":"+# to Level of all Cyclone Gems","better":1,"matchers":[{"string":"모든 회오리바람 젬 레벨 #","advanced":"모든 회오리바람(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_87"]}}} +{"ref":"+# to Level of all Dark Pact Gems","better":1,"matchers":[{"string":"모든 어둠의 서약 젬 레벨 #","advanced":"모든 어둠의 서약(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_159"]}}} +{"ref":"+# to Level of all Dash Gems","better":1,"matchers":[{"string":"모든 질주 젬 레벨 #","advanced":"모든 질주(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_197"]}}} +{"ref":"+# to Level of all Decoy Totem Gems","better":1,"matchers":[{"string":"모든 미끼 토템 젬 레벨 #","advanced":"모든 미끼 토템(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_78"]}}} +{"ref":"+# to Level of all Defiance Banner Gems","better":1,"matchers":[{"string":"모든 저항의 깃발 젬 레벨 #","advanced":"모든 저항의 깃발(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_242"]}}} +{"ref":"+# to Level of all Desecrate Gems","better":1,"matchers":[{"string":"모든 모독 젬 레벨 #","advanced":"모든 모독(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_107"]}}} +{"ref":"+# to Level of all Despair Gems","better":1,"matchers":[{"string":"모든 절망 젬 레벨 #","advanced":"모든 절망(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_45"]}}} +{"ref":"+# to Level of all Destructive Link Gems","better":1,"matchers":[{"string":"모든 파괴의 연결 젬 레벨 #","advanced":"모든 파괴의 연결(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_267"]}}} +{"ref":"+# to Level of all Determination Gems","better":1,"matchers":[{"string":"모든 결의 젬 레벨 #","advanced":"모든 결의(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_67"]}}} +{"ref":"+# to Level of all Detonate Dead Gems","better":1,"matchers":[{"string":"모든 시체 폭발 젬 레벨 #","advanced":"모든 시체 폭발(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_17"]}}} +{"ref":"+# to Level of all Devouring Totem Gems","better":1,"matchers":[{"string":"모든 포식 토템 젬 레벨 #","advanced":"모든 포식 토템(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_79"]}}} +{"ref":"+# to Level of all Discharge Gems","better":1,"matchers":[{"string":"모든 방출 젬 레벨 #","advanced":"모든 방출(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_25"]}}} +{"ref":"+# to Level of all Discipline Gems","better":1,"matchers":[{"string":"모든 단련 젬 레벨 #","advanced":"모든 단련(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_65"]}}} +{"ref":"+# to Level of all Divine Ire Gems","better":1,"matchers":[{"string":"모든 신성한 진노 젬 레벨 #","advanced":"모든 신성한 진노(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_191"]}}} +{"ref":"+# to Level of all Divine Retribution Gems","better":1,"matchers":[{"string":"모든 신성한 응징 젬 레벨 #","advanced":"모든 신성한 응징(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_275"]}}} +{"ref":"+# to Level of all Dominating Blow Gems","better":1,"matchers":[{"string":"모든 지배의 맹타 젬 레벨 #","advanced":"모든 지배의 맹타(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_52"]}}} +{"ref":"+# to Level of all Double Strike Gems","better":1,"matchers":[{"string":"모든 이중 타격 젬 레벨 #","advanced":"모든 이중 타격(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_9"]}}} +{"ref":"+# to Level of all Dread Banner Gems","better":1,"matchers":[{"string":"모든 공포의 깃발 젬 레벨 #","advanced":"모든 공포의 깃발(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_185"]}}} +{"ref":"+# to Level of all Dual Strike Gems","better":1,"matchers":[{"string":"모든 쌍수 타격 젬 레벨 #","advanced":"모든 쌍수 타격(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_12"]}}} +{"ref":"+# to Level of all Earthquake Gems","better":1,"matchers":[{"string":"모든 지진 젬 레벨 #","advanced":"모든 지진(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_149"]}}} +{"ref":"+# to Level of all Earthshatter Gems","better":1,"matchers":[{"string":"모든 지면 분쇄 젬 레벨 #","advanced":"모든 지면 분쇄(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_228"]}}} +{"ref":"+# to Level of all Elemental Hit Gems","better":1,"matchers":[{"string":"모든 원소의 일격 젬 레벨 #","advanced":"모든 원소의 일격(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_10"]}}} +{"ref":"+# to Level of all Elemental Weakness Gems","better":1,"matchers":[{"string":"모든 원소 약화 젬 레벨 #","advanced":"모든 원소 약화(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_39"]}}} +{"ref":"+# to Level of all Enduring Cry Gems","better":1,"matchers":[{"string":"모든 인내의 함성 젬 레벨 #","advanced":"모든 인내의 함성(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_8"]}}} +{"ref":"+# to Level of all Energy Blade Gems","better":1,"matchers":[{"string":"모든 에너지 칼날 젬 레벨 #","advanced":"모든 에너지 칼날(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_260"]}}} +{"ref":"+# to Level of all Enfeeble Gems","better":1,"matchers":[{"string":"모든 쇠약화 젬 레벨 #","advanced":"모든 쇠약화(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_42"]}}} +{"ref":"+# to Level of all Ensnaring Arrow Gems","better":1,"matchers":[{"string":"모든 올가미 화살 젬 레벨 #","advanced":"모든 올가미 화살(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_215"]}}} +{"ref":"+# to Level of all Essence Drain Gems","better":1,"matchers":[{"string":"모든 정수 흡수 젬 레벨 #","advanced":"모든 정수 흡수(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_141"]}}} +{"ref":"+# to Level of all Ethereal Knives Gems","better":1,"matchers":[{"string":"모든 천상의 단도 젬 레벨 #","advanced":"모든 천상의 단도(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_80"]}}} +{"ref":"+# to Level of all Eviscerate Gems","better":1,"matchers":[{"string":"모든 내장 적출 젬 레벨 #","advanced":"모든 내장 적출(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_146"]}}} +{"ref":"+# to Level of all Explosive Arrow Gems","better":1,"matchers":[{"string":"모든 폭발 화살 젬 레벨 #","advanced":"모든 폭발 화살(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_37"]}}} +{"ref":"+# to Level of all Explosive Concoction Gems","better":1,"matchers":[{"string":"모든 폭발성 혼합물 젬 레벨 #","advanced":"모든 폭발성 혼합물(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_257"]}}} +{"ref":"+# to Level of all Explosive Trap Gems","better":1,"matchers":[{"string":"모든 폭발 덫 젬 레벨 #","advanced":"모든 폭발 덫(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_165"]}}} +{"ref":"+# to Level of all Exsanguinate Gems","better":1,"matchers":[{"string":"모든 방혈 젬 레벨 #","advanced":"모든 방혈(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_238"]}}} +{"ref":"+# to Level of all Eye of Winter Gems","better":1,"matchers":[{"string":"모든 겨울의 눈 젬 레벨 #","advanced":"모든 겨울의 눈(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_252"]}}} +{"ref":"+# to Level of all Fire Skill Gems","better":1,"matchers":[{"string":"모든 화염 스킬 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_599749213"],"fractured":["fractured.stat_599749213"]}}} +{"ref":"+# to Level of all Fire Spell Skill Gems","better":1,"matchers":[{"string":"모든 화염 주문 스킬 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_591105508"],"fractured":["fractured.stat_591105508"],"scourge":["scourge.stat_591105508"]}}} +{"ref":"+# to Level of all Fire Trap Gems","better":1,"matchers":[{"string":"모든 화염 덫 젬 레벨 #","advanced":"모든 화염 덫(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_77"]}}} +{"ref":"+# to Level of all Fireball Gems","better":1,"matchers":[{"string":"모든 화염구 젬 레벨 #","advanced":"모든 화염구(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_1"]}}} +{"ref":"+# to Level of all Firestorm Gems","better":1,"matchers":[{"string":"모든 화염 폭풍 젬 레벨 #","advanced":"모든 화염 폭풍(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_54"]}}} +{"ref":"+# to Level of all Flame Dash Gems","better":1,"matchers":[{"string":"모든 화염 질주 젬 레벨 #","advanced":"모든 화염 질주(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_131"]}}} +{"ref":"+# to Level of all Flame Link Gems","better":1,"matchers":[{"string":"모든 화염의 연결 젬 레벨 #","advanced":"모든 화염의 연결(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_263"]}}} +{"ref":"+# to Level of all Flame Surge Gems","better":1,"matchers":[{"string":"모든 화염 쇄도 젬 레벨 #","advanced":"모든 화염 쇄도(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_106"]}}} +{"ref":"+# to Level of all Flame Wall Gems","better":1,"matchers":[{"string":"모든 화염 벽 젬 레벨 #","advanced":"모든 화염 벽(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_231"]}}} +{"ref":"+# to Level of all Flameblast Gems","better":1,"matchers":[{"string":"모든 화염파 젬 레벨 #","advanced":"모든 화염파(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_102"]}}} +{"ref":"+# to Level of all Flamethrower Trap Gems","better":1,"matchers":[{"string":"모든 화염방사기 덫 젬 레벨 #","advanced":"모든 화염방사기 덫(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_167"]}}} +{"ref":"+# to Level of all Flammability Gems","better":1,"matchers":[{"string":"모든 인화성 젬 레벨 #","advanced":"모든 인화성(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_83"]}}} +{"ref":"+# to Level of all Flesh and Stone Gems","better":1,"matchers":[{"string":"모든 육체와 돌 젬 레벨 #","advanced":"모든 육체와 돌(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_204"]}}} +{"ref":"+# to Level of all Flesh Offering Gems","better":1,"matchers":[{"string":"모든 살점 공물 젬 레벨 #","advanced":"모든 살점 공물(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_108"]}}} +{"ref":"+# to Level of all Flicker Strike Gems","better":1,"matchers":[{"string":"모든 점멸 타격 젬 레벨 #","advanced":"모든 점멸 타격(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_26"]}}} +{"ref":"+# to Level of all Forbidden Rite Gems","better":1,"matchers":[{"string":"모든 금단의 의식 젬 레벨 #","advanced":"모든 금단의 의식(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_254"]}}} +{"ref":"+# to Level of all Freezing Pulse Gems","better":1,"matchers":[{"string":"모든 동결 파동 젬 레벨 #","advanced":"모든 동결 파동(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_33"]}}} +{"ref":"+# to Level of all Frenzy Gems","better":1,"matchers":[{"string":"모든 격분 젬 레벨 #","advanced":"모든 격분(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_14"]}}} +{"ref":"+# to Level of all Frost Blades Gems","better":1,"matchers":[{"string":"모든 서리 칼날 젬 레벨 #","advanced":"모든 서리 칼날(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_132"]}}} +{"ref":"+# to Level of all Frost Bomb Gems","better":1,"matchers":[{"string":"모든 서리 폭탄 젬 레벨 #","advanced":"모든 서리 폭탄(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_144"]}}} +{"ref":"+# to Level of all Frost Shield Gems","better":1,"matchers":[{"string":"모든 서리 방패 젬 레벨 #","advanced":"모든 서리 방패(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_235"]}}} +{"ref":"+# to Level of all Frost Wall Gems","better":1,"matchers":[{"string":"모든 서리 방벽 젬 레벨 #","advanced":"모든 서리 방벽(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_32"]}}} +{"ref":"+# to Level of all Frostbite Gems","better":1,"matchers":[{"string":"모든 동상 젬 레벨 #","advanced":"모든 동상(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_84"]}}} +{"ref":"+# to Level of all Frostblink Gems","better":1,"matchers":[{"string":"모든 서리점멸 젬 레벨 #","advanced":"모든 서리점멸(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_203"]}}} +{"ref":"+# to Level of all Frostbolt Gems","better":1,"matchers":[{"string":"모든 서리 구체 젬 레벨 #","advanced":"모든 서리 구체(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_153"]}}} +{"ref":"+# to Level of all Frozen Legion Gems","better":1,"matchers":[{"string":"모든 얼어붙은 군단 젬 레벨 #","advanced":"모든 얼어붙은 군단(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_271"]}}} +{"ref":"+# to Level of all Galvanic Arrow Gems","better":1,"matchers":[{"string":"모든 충격 화살 젬 레벨 #","advanced":"모든 충격 화살(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_134"]}}} +{"ref":"+# to Level of all Galvanic Field Gems","better":1,"matchers":[{"string":"모든 충격장 젬 레벨 #","advanced":"모든 충격장(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_268"]}}} +{"ref":"+# to Level of all General's Cry Gems","better":1,"matchers":[{"string":"모든 장군의 함성 젬 레벨 #","advanced":"모든 장군의 함성(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_224"]}}} +{"ref":"+# to Level of all Glacial Cascade Gems","better":1,"matchers":[{"string":"모든 빙하 폭포 젬 레벨 #","advanced":"모든 빙하 폭포(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_110"]}}} +{"ref":"+# to Level of all Glacial Hammer Gems","better":1,"matchers":[{"string":"모든 빙하 망치 젬 레벨 #","advanced":"모든 빙하 망치(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_31"]}}} +{"ref":"+# to Level of all Glacial Shield Swipe Gems","better":1,"matchers":[{"string":"모든 빙하 방패 후려치기 젬 레벨 #","advanced":"모든 빙하 방패 후려치기(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_48"]}}} +{"ref":"+# to Level of all Grace Gems","better":1,"matchers":[{"string":"모든 은총 젬 레벨 #","advanced":"모든 은총(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_66"]}}} +{"ref":"+# to Level of all Ground Slam Gems","better":1,"matchers":[{"string":"모든 대지 강타 젬 레벨 #","advanced":"모든 대지 강타(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_5"]}}} +{"ref":"+# to Level of all Haste Gems","better":1,"matchers":[{"string":"모든 가속 젬 레벨 #","advanced":"모든 가속(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_62"]}}} +{"ref":"+# to Level of all Hatred Gems","better":1,"matchers":[{"string":"모든 증오 젬 레벨 #","advanced":"모든 증오(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_69"]}}} +{"ref":"+# to Level of all Heavy Strike Gems","better":1,"matchers":[{"string":"모든 묵직한 타격 젬 레벨 #","advanced":"모든 묵직한 타격(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_51"]}}} +{"ref":"+# to Level of all Herald of Agony Gems","better":1,"matchers":[{"string":"모든 고통의 전령 젬 레벨 #","advanced":"모든 고통의 전령(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_174"]}}} +{"ref":"+# to Level of all Herald of Ash Gems","better":1,"matchers":[{"string":"모든 재의 전령 젬 레벨 #","advanced":"모든 재의 전령(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_114"]}}} +{"ref":"+# to Level of all Herald of Ice Gems","better":1,"matchers":[{"string":"모든 얼음의 전령 젬 레벨 #","advanced":"모든 얼음의 전령(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_115"]}}} +{"ref":"+# to Level of all Herald of Purity Gems","better":1,"matchers":[{"string":"모든 순수의 전령 젬 레벨 #","advanced":"모든 순수의 전령(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_173"]}}} +{"ref":"+# to Level of all Herald of Thunder Gems","better":1,"matchers":[{"string":"모든 천둥의 전령 젬 레벨 #","advanced":"모든 천둥의 전령(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_116"]}}} +{"ref":"+# to Level of all Hexblast Gems","better":1,"matchers":[{"string":"모든 사술폭발 젬 레벨 #","advanced":"모든 사술폭발(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_237"]}}} +{"ref":"+# to Level of all Holy Flame Totem Gems","better":1,"matchers":[{"string":"모든 신성한 화염 토템 젬 레벨 #","advanced":"모든 신성한 화염 토템(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_82"]}}} +{"ref":"+# to Level of all Hydrosphere Gems","better":1,"matchers":[{"string":"모든 물의 구체 젬 레벨 #","advanced":"모든 물의 구체(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_236"]}}} +{"ref":"+# to Level of all Ice Crash Gems","better":1,"matchers":[{"string":"모든 얼음 충격 젬 레벨 #","advanced":"모든 얼음 충격(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_126"]}}} +{"ref":"+# to Level of all Ice Nova Gems","better":1,"matchers":[{"string":"모든 얼음 폭발 젬 레벨 #","advanced":"모든 얼음 폭발(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_2"]}}} +{"ref":"+# to Level of all Ice Shot Gems","better":1,"matchers":[{"string":"모든 얼음 화살 젬 레벨 #","advanced":"모든 얼음 화살(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_20"]}}} +{"ref":"+# to Level of all Ice Spear Gems","better":1,"matchers":[{"string":"모든 얼음 창 젬 레벨 #","advanced":"모든 얼음 창(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_28"]}}} +{"ref":"+# to Level of all Ice Trap Gems","better":1,"matchers":[{"string":"모든 얼음 덫 젬 레벨 #","advanced":"모든 얼음 덫(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_142"]}}} +{"ref":"+# to Level of all Icicle Mine Gems","better":1,"matchers":[{"string":"모든 고드름 지뢰 젬 레벨 #","advanced":"모든 고드름 지뢰(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_93"]}}} +{"ref":"+# to Level of all Immortal Call Gems","better":1,"matchers":[{"string":"모든 불멸의 외침 젬 레벨 #","advanced":"모든 불멸의 외침(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_11"]}}} +{"ref":"+# to Level of all Incinerate Gems","better":1,"matchers":[{"string":"모든 소각 젬 레벨 #","advanced":"모든 소각(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_86"]}}} +{"ref":"+# to Level of all Infernal Blow Gems","better":1,"matchers":[{"string":"모든 지옥불 맹타 젬 레벨 #","advanced":"모든 지옥불 맹타(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_30"]}}} +{"ref":"+# to Level of all Infernal Cry Gems","better":1,"matchers":[{"string":"모든 지옥불 함성 젬 레벨 #","advanced":"모든 지옥불 함성(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_128"]}}} +{"ref":"+# to Level of all Intimidating Cry Gems","better":1,"matchers":[{"string":"모든 위협의 함성 젬 레벨 #","advanced":"모든 위협의 함성(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_221"]}}} +{"ref":"+# to Level of all Intuitive Link Gems","better":1,"matchers":[{"string":"모든 직관의 연결 젬 레벨 #","advanced":"모든 직관의 연결(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_264"]}}} +{"ref":"+# to Level of all Jobs for Heists","better":1,"matchers":[{"string":"강탈의 모든 작업 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_2692578539"],"fractured":["fractured.stat_2692578539"]}}} +{"ref":"+# to Level of all Kinetic Blast Gems","better":1,"matchers":[{"string":"모든 역학 폭발 젬 레벨 #","advanced":"모든 역학 폭발(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_121"]}}} +{"ref":"+# to Level of all Kinetic Bolt Gems","better":1,"matchers":[{"string":"모든 역학 투사체 젬 레벨 #","advanced":"모든 역학 투사체(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_219"]}}} +{"ref":"+# to Level of all Lacerate Gems","better":1,"matchers":[{"string":"모든 피부 찢기 젬 레벨 #","advanced":"모든 피부 찢기(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_151"]}}} +{"ref":"+# to Level of all Lancing Steel Gems","better":1,"matchers":[{"string":"모든 강철 관통 젬 레벨 #","advanced":"모든 강철 관통(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_187"]}}} +{"ref":"+# to Level of all Leap Slam Gems","better":1,"matchers":[{"string":"모든 도약 강타 젬 레벨 #","advanced":"모든 도약 강타(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_3"]}}} +{"ref":"+# to Level of all Lightning Arrow Gems","better":1,"matchers":[{"string":"모든 번개 화살 젬 레벨 #","advanced":"모든 번개 화살(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_60"]}}} +{"ref":"+# to Level of all Lightning Conduit Gems","better":1,"matchers":[{"string":"모든 번개 도관 젬 레벨 #","advanced":"모든 번개 도관(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_269"]}}} +{"ref":"+# to Level of all Lightning Skill Gems","better":1,"matchers":[{"string":"모든 번개 스킬 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_1147690586"],"fractured":["fractured.stat_1147690586"]}}} +{"ref":"+# to Level of all Lightning Spell Skill Gems","better":1,"matchers":[{"string":"모든 번개 주문 스킬 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_1545858329"],"fractured":["fractured.stat_1545858329"],"scourge":["scourge.stat_1545858329"]}}} +{"ref":"+# to Level of all Lightning Spire Trap Gems","better":1,"matchers":[{"string":"모든 번개 첨탑 덫 젬 레벨 #","advanced":"모든 번개 첨탑 덫(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_168"]}}} +{"ref":"+# to Level of all Lightning Strike Gems","better":1,"matchers":[{"string":"모든 번개 타격 젬 레벨 #","advanced":"모든 번개 타격(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_55"]}}} +{"ref":"+# to Level of all Lightning Tendrils Gems","better":1,"matchers":[{"string":"모든 덩굴 번개 젬 레벨 #","advanced":"모든 덩굴 번개(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_118"]}}} +{"ref":"+# to Level of all Lightning Trap Gems","better":1,"matchers":[{"string":"모든 번개 덫 젬 레벨 #","advanced":"모든 번개 덫(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_90"]}}} +{"ref":"+# to Level of all Lightning Warp Gems","better":1,"matchers":[{"string":"모든 번개 차원 이동 젬 레벨 #","advanced":"모든 번개 차원 이동(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_46"]}}} +{"ref":"+# to Level of all Malevolence Gems","better":1,"matchers":[{"string":"모든 악의 젬 레벨 #","advanced":"모든 악의(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_194"]}}} +{"ref":"+# to Level of all Manabond Gems","better":1,"matchers":[{"string":"모든 마나 결속 젬 레벨 #","advanced":"모든 마나 결속(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_256"]}}} +{"ref":"+# to Level of all Melee Skill Gems","better":1,"matchers":[{"string":"모든 근접 스킬 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_9187492"]}}} +{"ref":"+# to Level of all Minion Skill Gems","better":1,"matchers":[{"string":"모든 소환수 스킬 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_2162097452"],"fractured":["fractured.stat_2162097452"]}}} +{"ref":"+# to Level of all Mirror Arrow Gems","better":1,"matchers":[{"string":"모든 거울 화살 젬 레벨 #","advanced":"모든 거울 화살(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_119"]}}} +{"ref":"+# to Level of all Molten Shell Gems","better":1,"matchers":[{"string":"모든 용암 방패 젬 레벨 #","advanced":"모든 용암 방패(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_57"]}}} +{"ref":"+# to Level of all Molten Strike Gems","better":1,"matchers":[{"string":"모든 용암 타격 젬 레벨 #","advanced":"모든 용암 타격(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_112"]}}} +{"ref":"+# to Level of all Orb of Storms Gems","better":1,"matchers":[{"string":"모든 폭풍 보주 젬 레벨 #","advanced":"모든 폭풍 보주(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_143"]}}} +{"ref":"+# to Level of all Penance Brand Gems","better":1,"matchers":[{"string":"모든 속죄의 낙인 젬 레벨 #","advanced":"모든 속죄의 낙인(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_226"]}}} +{"ref":"+# to Level of all Perforate Gems","better":1,"matchers":[{"string":"모든 천공 젬 레벨 #","advanced":"모든 천공(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_201"]}}} +{"ref":"+# to Level of all Pestilent Strike Gems","better":1,"matchers":[{"string":"모든 전염성 일격 젬 레벨 #","advanced":"모든 전염성 일격(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_211"]}}} +{"ref":"+# to Level of all Petrified Blood Gems","better":1,"matchers":[{"string":"모든 피 석화 젬 레벨 #","advanced":"모든 피 석화(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_240"]}}} +{"ref":"+# to Level of all Phase Run Gems","better":1,"matchers":[{"string":"모든 위상 질주 젬 레벨 #","advanced":"모든 위상 질주(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_36"]}}} +{"ref":"+# to Level of all Physical Skill Gems","better":1,"matchers":[{"string":"모든 물리 스킬 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_619213329"],"fractured":["fractured.stat_619213329"]}}} +{"ref":"+# to Level of all Physical Spell Skill Gems","better":1,"matchers":[{"string":"모든 물리 주문 스킬 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_1600707273"],"fractured":["fractured.stat_1600707273"],"enchant":["enchant.stat_1600707273"],"scourge":["scourge.stat_1600707273"]}}} +{"ref":"+# to Level of all Plague Bearer Gems","better":1,"matchers":[{"string":"모든 독성 운반자 젬 레벨 #","advanced":"모든 독성 운반자(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_210"]}}} +{"ref":"+# to Level of all Poacher's Mark Gems","better":1,"matchers":[{"string":"모든 밀렵꾼의 징표 젬 레벨 #","advanced":"모든 밀렵꾼의 징표(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_117"]}}} +{"ref":"+# to Level of all Poisonous Concoction Gems","better":1,"matchers":[{"string":"모든 독성 혼합물 젬 레벨 #","advanced":"모든 독성 혼합물(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_258"]}}} +{"ref":"+# to Level of all Power Siphon Gems","better":1,"matchers":[{"string":"모든 권능 착취 젬 레벨 #","advanced":"모든 권능 착취(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_58"]}}} +{"ref":"+# to Level of all Precision Gems","better":1,"matchers":[{"string":"모든 정밀함 젬 레벨 #","advanced":"모든 정밀함(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_195"]}}} +{"ref":"+# to Level of all Pride Gems","better":1,"matchers":[{"string":"모든 자부심 젬 레벨 #","advanced":"모든 자부심(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_205"]}}} +{"ref":"+# to Level of all Protective Link Gems","better":1,"matchers":[{"string":"모든 보호의 연결 젬 레벨 #","advanced":"모든 보호의 연결(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_265"]}}} +{"ref":"+# to Level of all Puncture Gems","better":1,"matchers":[{"string":"모든 관통상 젬 레벨 #","advanced":"모든 관통상(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_59"]}}} +{"ref":"+# to Level of all Punishment Gems","better":1,"matchers":[{"string":"모든 응징 젬 레벨 #","advanced":"모든 응징(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_41"]}}} +{"ref":"+# to Level of all Purifying Flame Gems","better":1,"matchers":[{"string":"모든 정화의 불길 젬 레벨 #","advanced":"모든 정화의 불길(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_188"]}}} +{"ref":"+# to Level of all Purity of Elements Gems","better":1,"matchers":[{"string":"모든 원소의 순수함 젬 레벨 #","advanced":"모든 원소의 순수함(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_63"]}}} +{"ref":"+# to Level of all Purity of Fire Gems","better":1,"matchers":[{"string":"모든 불의 순수함 젬 레벨 #","advanced":"모든 불의 순수함(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_98"]}}} +{"ref":"+# to Level of all Purity of Ice Gems","better":1,"matchers":[{"string":"모든 얼음의 순수함 젬 레벨 #","advanced":"모든 얼음의 순수함(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_99"]}}} +{"ref":"+# to Level of all Purity of Lightning Gems","better":1,"matchers":[{"string":"모든 번개의 순수함 젬 레벨 #","advanced":"모든 번개의 순수함(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_100"]}}} +{"ref":"+# to Level of all Pyroclast Mine Gems","better":1,"matchers":[{"string":"모든 화산탄 지뢰 젬 레벨 #","advanced":"모든 화산탄 지뢰(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_91"]}}} +{"ref":"+# to Level of all Rage Vortex Gems","better":1,"matchers":[{"string":"모든 격노 소용돌이 젬 레벨 #","advanced":"모든 격노 소용돌이(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_244"]}}} +{"ref":"+# to Level of all Rain of Arrows Gems","better":1,"matchers":[{"string":"모든 화살비 젬 레벨 #","advanced":"모든 화살비(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_53"]}}} +{"ref":"+# to Level of all Raise Spectre Gems","better":1,"matchers":[{"string":"모든 망령 소환 젬 레벨 #","advanced":"모든 망령 소환(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_29","explicit.stat_3235814433"],"fractured":["fractured.stat_3235814433"]}}} +{"ref":"+# to Level of all Raise Zombie Gems","better":1,"matchers":[{"string":"모든 좀비 소환 젬 레벨 #","advanced":"모든 좀비 소환(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_16","explicit.stat_2739830820"]}}} +{"ref":"+# to Level of all Rallying Cry Gems","better":1,"matchers":[{"string":"모든 집결의 함성 젬 레벨 #","advanced":"모든 집결의 함성(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_127"]}}} +{"ref":"+# to Level of all Reap Gems","better":1,"matchers":[{"string":"모든 낫질 젬 레벨 #","advanced":"모든 낫질(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_241"]}}} +{"ref":"+# to Level of all Reave Gems","better":1,"matchers":[{"string":"모든 약탈 젬 레벨 #","advanced":"모든 약탈(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_89"]}}} +{"ref":"+# to Level of all Rejuvenation Totem Gems","better":1,"matchers":[{"string":"모든 회복 토템 젬 레벨 #","advanced":"모든 회복 토템(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_74"]}}} +{"ref":"+# to Level of all Righteous Fire Gems","better":1,"matchers":[{"string":"모든 정의의 화염 젬 레벨 #","advanced":"모든 정의의 화염(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_24"]}}} +{"ref":"+# to Level of all Rolling Magma Gems","better":1,"matchers":[{"string":"모든 몰려오는 마그마 젬 레벨 #","advanced":"모든 몰려오는 마그마(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_130"]}}} +{"ref":"+# to Level of all Scorching Ray Gems","better":1,"matchers":[{"string":"모든 작열 광선 젬 레벨 #","advanced":"모든 작열 광선(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_156"]}}} +{"ref":"+# to Level of all Scourge Arrow Gems","better":1,"matchers":[{"string":"모든 재앙의 화살 젬 레벨 #","advanced":"모든 재앙의 화살(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_177"]}}} +{"ref":"+# to Level of all Searing Bond Gems","better":1,"matchers":[{"string":"모든 불타는 굴레 젬 레벨 #","advanced":"모든 불타는 굴레(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_88"]}}} +{"ref":"+# to Level of all Seismic Cry Gems","better":1,"matchers":[{"string":"모든 지진 함성 젬 레벨 #","advanced":"모든 지진 함성(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_223"]}}} +{"ref":"+# to Level of all Seismic Trap Gems","better":1,"matchers":[{"string":"모든 지진 덫 젬 레벨 #","advanced":"모든 지진 덫(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_169"]}}} +{"ref":"+# to Level of all Shattering Steel Gems","better":1,"matchers":[{"string":"모든 강철 파편 젬 레벨 #","advanced":"모든 강철 파편(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_186"]}}} +{"ref":"+# to Level of all Shield Charge Gems","better":1,"matchers":[{"string":"모든 방패 돌진 젬 레벨 #","advanced":"모든 방패 돌진(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_7"]}}} +{"ref":"+# to Level of all Shield Crush Gems","better":1,"matchers":[{"string":"모든 방패 타쇄 젬 레벨 #","advanced":"모든 방패 타쇄(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_245"]}}} +{"ref":"+# to Level of all Shock Nova Gems","better":1,"matchers":[{"string":"모든 충격 폭발 젬 레벨 #","advanced":"모든 충격 폭발(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_34"]}}} +{"ref":"+# to Level of all Shockwave Totem Gems","better":1,"matchers":[{"string":"모든 충격파 토템 젬 레벨 #","advanced":"모든 충격파 토템(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_73"]}}} +{"ref":"+# to Level of all Shrapnel Ballista Gems","better":1,"matchers":[{"string":"모든 파편 쇠뇌 젬 레벨 #","advanced":"모든 파편 쇠뇌(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_214"]}}} +{"ref":"+# to Level of all Siege Ballista Gems","better":1,"matchers":[{"string":"모든 공성 쇠뇌 젬 레벨 #","advanced":"모든 공성 쇠뇌(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_137"]}}} +{"ref":"+# to Level of all Sigil of Power Gems","better":1,"matchers":[{"string":"모든 힘의 부적 젬 레벨 #","advanced":"모든 힘의 부적(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_229"]}}} +{"ref":"+# to Level of all Siphoning Trap Gems","better":1,"matchers":[{"string":"모든 착취 덫 젬 레벨 #","advanced":"모든 착취 덫(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_166"]}}} +{"ref":"+# to Level of all Skill Gems","better":1,"matchers":[{"string":"모든 스킬 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_4283407333"],"fractured":["fractured.stat_4283407333"]}}} +{"ref":"+# to Level of all Smite Gems","better":1,"matchers":[{"string":"모든 징벌 젬 레벨 #","advanced":"모든 징벌(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_176"]}}} +{"ref":"+# to Level of all Smoke Mine Gems","better":1,"matchers":[{"string":"모든 연막 지뢰 젬 레벨 #","advanced":"모든 연막 지뢰(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_92"]}}} +{"ref":"+# to Level of all Snipe Gems","better":1,"matchers":[{"string":"모든 저격 젬 레벨 #","advanced":"모든 저격(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_147"]}}} +{"ref":"+# to Level of all Sniper's Mark Gems","better":1,"matchers":[{"string":"모든 저격수의 징표 젬 레벨 #","advanced":"모든 저격수의 징표(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_44"]}}} +{"ref":"+# to Level of all Soul Link Gems","better":1,"matchers":[{"string":"모든 영혼의 연결 젬 레벨 #","advanced":"모든 영혼의 연결(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_262"]}}} +{"ref":"+# to Level of all Soulrend Gems","better":1,"matchers":[{"string":"모든 영혼 분리 젬 레벨 #","advanced":"모든 영혼 분리(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_189"]}}} +{"ref":"+# to Level of all Spark Gems","better":1,"matchers":[{"string":"모든 전기불꽃 젬 레벨 #","advanced":"모든 전기불꽃(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_27"]}}} +{"ref":"+# to Level of all Spectral Helix Gems","better":1,"matchers":[{"string":"모든 영체 나선 젬 레벨 #","advanced":"모든 영체 나선(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_253"]}}} +{"ref":"+# to Level of all Spectral Shield Throw Gems","better":1,"matchers":[{"string":"모든 환영 방패 투척 젬 레벨 #","advanced":"모든 환영 방패 투척(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_172"]}}} +{"ref":"+# to Level of all Spectral Throw Gems","better":1,"matchers":[{"string":"모든 환영 무기 투척 젬 레벨 #","advanced":"모든 환영 무기 투척(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_96"]}}} +{"ref":"+# to Level of all Spell Skill Gems","better":1,"matchers":[{"string":"모든 주문 스킬 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_124131830"],"fractured":["fractured.stat_124131830"],"scourge":["scourge.stat_124131830"]}}} +{"ref":"+# to Level of all Spellslinger Gems","better":1,"matchers":[{"string":"모든 주문투척 젬 레벨 #","advanced":"모든 주문투척(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_218"]}}} +{"ref":"+# to Level of all Spirit Offering Gems","better":1,"matchers":[{"string":"모든 영혼 공물 젬 레벨 #","advanced":"모든 영혼 공물(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_152"]}}} +{"ref":"+# to Level of all Split Arrow Gems","better":1,"matchers":[{"string":"모든 분할 화살 젬 레벨 #","advanced":"모든 분할 화살(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_22"]}}} +{"ref":"+# to Level of all Splitting Steel Gems","better":1,"matchers":[{"string":"모든 강철 분할 젬 레벨 #","advanced":"모든 강철 분할(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_230"]}}} +{"ref":"+# to Level of all Static Strike Gems","better":1,"matchers":[{"string":"모든 정전기 타격 젬 레벨 #","advanced":"모든 정전기 타격(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_21"]}}} +{"ref":"+# to Level of all Steelskin Gems","better":1,"matchers":[{"string":"모든 강철피부 젬 레벨 #","advanced":"모든 강철피부(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_196"]}}} +{"ref":"+# to Level of all Storm Brand Gems","better":1,"matchers":[{"string":"모든 폭풍의 낙인 젬 레벨 #","advanced":"모든 폭풍의 낙인(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_181"]}}} +{"ref":"+# to Level of all Storm Burst Gems","better":1,"matchers":[{"string":"모든 폭풍 점사 젬 레벨 #","advanced":"모든 폭풍 점사(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_160"]}}} +{"ref":"+# to Level of all Storm Call Gems","better":1,"matchers":[{"string":"모든 폭풍 부름 젬 레벨 #","advanced":"모든 폭풍 부름(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_101"]}}} +{"ref":"+# to Level of all Storm Rain Gems","better":1,"matchers":[{"string":"모든 폭풍우 젬 레벨 #","advanced":"모든 폭풍우(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_243"]}}} +{"ref":"+# to Level of all Stormbind Gems","better":1,"matchers":[{"string":"모든 폭풍 연대 젬 레벨 #","advanced":"모든 폭풍 연대(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_216"]}}} +{"ref":"+# to Level of all Stormblast Mine Gems","better":1,"matchers":[{"string":"모든 태풍 파열 지뢰 젬 레벨 #","advanced":"모든 태풍 파열 지뢰(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_94"]}}} +{"ref":"+# to Level of all Summon Carrion Golem Gems","better":1,"matchers":[{"string":"모든 부패 골렘 소환 젬 레벨 #","advanced":"모든 부패 골렘 소환(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_212"]}}} +{"ref":"+# to Level of all Summon Chaos Golem Gems","better":1,"matchers":[{"string":"모든 카오스 골렘 소환 젬 레벨 #","advanced":"모든 카오스 골렘 소환(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_122"]}}} +{"ref":"+# to Level of all Summon Flame Golem Gems","better":1,"matchers":[{"string":"모든 화염 골렘 소환 젬 레벨 #","advanced":"모든 화염 골렘 소환(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_124"]}}} +{"ref":"+# to Level of all Summon Holy Relic Gems","better":1,"matchers":[{"string":"모든 신성한 유물 소환 젬 레벨 #","advanced":"모든 신성한 유물 소환(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_179"]}}} +{"ref":"+# to Level of all Summon Ice Golem Gems","better":1,"matchers":[{"string":"모든 얼음 골렘 소환 젬 레벨 #","advanced":"모든 얼음 골렘 소환(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_123"]}}} +{"ref":"+# to Level of all Summon Lightning Golem Gems","better":1,"matchers":[{"string":"모든 번개 골렘 소환 젬 레벨 #","advanced":"모든 번개 골렘 소환(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_125"]}}} +{"ref":"+# to Level of all Summon Raging Spirit Gems","better":1,"matchers":[{"string":"모든 격노의 유령 소환 젬 레벨 #","advanced":"모든 격노의 유령 소환(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_105"]}}} +{"ref":"+# to Level of all Summon Reaper Gems","better":1,"matchers":[{"string":"모든 수확자 소환 젬 레벨 #","advanced":"모든 수확자 소환(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_246"]}}} +{"ref":"+# to Level of all Summon Skeletons Gems","better":1,"matchers":[{"string":"모든 해골 소환 젬 레벨 #","advanced":"모든 해골 소환(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_47"]}}} +{"ref":"+# to Level of all Summon Skitterbots Gems","better":1,"matchers":[{"string":"모든 원격 기폭 장치 소환 젬 레벨 #","advanced":"모든 원격 기폭 장치 소환(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_209"]}}} +{"ref":"+# to Level of all Summon Stone Golem Gems","better":1,"matchers":[{"string":"모든 돌 골렘 소환 젬 레벨 #","advanced":"모든 돌 골렘 소환(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_145"]}}} +{"ref":"+# to Level of all Sunder Gems","better":1,"matchers":[{"string":"모든 산산조각 젬 레벨 #","advanced":"모든 산산조각(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_150"]}}} +{"ref":"+# to Level of all Sweep Gems","better":1,"matchers":[{"string":"모든 휩쓸기 젬 레벨 #","advanced":"모든 휩쓸기(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_4"]}}} +{"ref":"+# to Level of all Swordstorm Gems","better":1,"matchers":[{"string":"모든 검의 폭풍 젬 레벨 #","advanced":"모든 검의 폭풍(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_50"]}}} +{"ref":"+# to Level of all Tectonic Slam Gems","better":1,"matchers":[{"string":"모든 지층 강타 젬 레벨 #","advanced":"모든 지층 강타(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_171"]}}} +{"ref":"+# to Level of all Tempest Shield Gems","better":1,"matchers":[{"string":"모든 폭풍의 방패 젬 레벨 #","advanced":"모든 폭풍의 방패(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_56"]}}} +{"ref":"+# to Level of all Temporal Chains Gems","better":1,"matchers":[{"string":"모든 시간의 사슬 젬 레벨 #","advanced":"모든 시간의 사슬(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_38"]}}} +{"ref":"+# to Level of all Temporal Rift Gems","better":1,"matchers":[{"string":"모든 시간의 균열 젬 레벨 #","advanced":"모든 시간의 균열(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_259"]}}} +{"ref":"+# to Level of all Tornado Gems","better":1,"matchers":[{"string":"모든 회오리 젬 레벨 #","advanced":"모든 회오리(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_261"]}}} +{"ref":"+# to Level of all Tornado Shot Gems","better":1,"matchers":[{"string":"모든 회오리 사격 젬 레벨 #","advanced":"모든 회오리 사격(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_113"]}}} +{"ref":"+# to Level of all Toxic Rain Gems","better":1,"matchers":[{"string":"모든 맹독성 비 젬 레벨 #","advanced":"모든 맹독성 비(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_178"]}}} +{"ref":"+# to Level of all Unearth Gems","better":1,"matchers":[{"string":"모든 발굴 젬 레벨 #","advanced":"모든 발굴(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_164"]}}} +{"ref":"+# to Level of all Vaal Skill Gems","better":1,"matchers":[{"string":"모든 바알 스킬 젬 레벨 #"}],"trade":{"ids":{"implicit":["implicit.stat_4180346416"]}}} +{"ref":"+# to Level of all Vampiric Link Gems","better":1,"matchers":[{"string":"모든 흡혈의 연결 젬 레벨 #","advanced":"모든 흡혈의 연결(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_266"]}}} +{"ref":"+# to Level of all Vengeful Cry Gems","better":1,"matchers":[{"string":"모든 복수의 함성 젬 레벨 #","advanced":"모든 복수의 함성(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_148"]}}} +{"ref":"+# to Level of all Venom Gyre Gems","better":1,"matchers":[{"string":"모든 독액 선회 젬 레벨 #","advanced":"모든 독액 선회(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_208"]}}} +{"ref":"+# to Level of all Vigilant Strike Gems","better":1,"matchers":[{"string":"모든 경계 타격 젬 레벨 #","advanced":"모든 경계 타격(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_129"]}}} +{"ref":"+# to Level of all Viper Strike Gems","better":1,"matchers":[{"string":"모든 맹독 타격 젬 레벨 #","advanced":"모든 맹독 타격(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_35"]}}} +{"ref":"+# to Level of all Vitality Gems","better":1,"matchers":[{"string":"모든 활력 젬 레벨 #","advanced":"모든 활력(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_64"]}}} +{"ref":"+# to Level of all Void Sphere Gems","better":1,"matchers":[{"string":"모든 공허 구체 젬 레벨 #","advanced":"모든 공허 구체(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_234"]}}} +{"ref":"+# to Level of all Volatile Dead Gems","better":1,"matchers":[{"string":"모든 시체 불덩이 젬 레벨 #","advanced":"모든 시체 불덩이(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_163"]}}} +{"ref":"+# to Level of all Volcanic Fissure Gems","better":1,"matchers":[{"string":"모든 화산 균열 젬 레벨 #","advanced":"모든 화산 균열(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_272"]}}} +{"ref":"+# to Level of all Voltaxic Burst Gems","better":1,"matchers":[{"string":"모든 전도성 격발 젬 레벨 #","advanced":"모든 전도성 격발(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_249"]}}} +{"ref":"+# to Level of all Vortex Gems","better":1,"matchers":[{"string":"모든 소용돌이 젬 레벨 #","advanced":"모든 소용돌이(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_154"]}}} +{"ref":"+# to Level of all Vulnerability Gems","better":1,"matchers":[{"string":"모든 취약성 젬 레벨 #","advanced":"모든 취약성(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_170"]}}} +{"ref":"+# to Level of all War Banner Gems","better":1,"matchers":[{"string":"모든 전쟁 깃발 젬 레벨 #","advanced":"모든 전쟁 깃발(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_184"]}}} +{"ref":"+# to Level of all Warlord's Mark Gems","better":1,"matchers":[{"string":"모든 전쟁군주의 징표 젬 레벨 #","advanced":"모든 전쟁군주의 징표(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_40"]}}} +{"ref":"+# to Level of all Wave of Conviction Gems","better":1,"matchers":[{"string":"모든 신념의 파도 젬 레벨 #","advanced":"모든 신념의 파도(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_192"]}}} +{"ref":"+# to Level of all Whirling Blades Gems","better":1,"matchers":[{"string":"모든 칼날 선회 젬 레벨 #","advanced":"모든 칼날 선회(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_13"]}}} +{"ref":"+# to Level of all Wild Strike Gems","better":1,"matchers":[{"string":"모든 사나운 타격 젬 레벨 #","advanced":"모든 사나운 타격(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_133"]}}} +{"ref":"+# to Level of all Winter Orb Gems","better":1,"matchers":[{"string":"모든 겨울 보주 젬 레벨 #","advanced":"모든 겨울 보주(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_180"]}}} +{"ref":"+# to Level of all Wintertide Brand Gems","better":1,"matchers":[{"string":"모든 겨울의 낙인 젬 레벨 #","advanced":"모든 겨울의 낙인(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_227"]}}} +{"ref":"+# to Level of all Wither Gems","better":1,"matchers":[{"string":"모든 위축 젬 레벨 #","advanced":"모든 위축(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_140"]}}} +{"ref":"+# to Level of all Withering Step Gems","better":1,"matchers":[{"string":"모든 고사시키는 걸음 젬 레벨 #","advanced":"모든 고사시키는 걸음(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_207"]}}} +{"ref":"+# to Level of all Wrath Gems","better":1,"matchers":[{"string":"모든 진노 젬 레벨 #","advanced":"모든 진노(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_70"]}}} +{"ref":"+# to Level of all Zealotry Gems","better":1,"matchers":[{"string":"모든 열광 젬 레벨 #","advanced":"모든 열광(화염구-신성한 응징) 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_193"]}}} +{"ref":"+# to Level of Socketed AoE Gems","better":1,"matchers":[{"string":"장착된 효과 범위 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_2551600084"],"implicit":["implicit.stat_2551600084"],"fractured":["fractured.stat_2551600084"],"scourge":["scourge.stat_2551600084"],"crafted":["crafted.stat_2551600084"]}}} +{"ref":"+# to Level of Socketed Aura Gems","better":1,"matchers":[{"string":"장착된 오라 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_2452998583"],"implicit":["implicit.stat_2452998583"],"fractured":["fractured.stat_2452998583"],"scourge":["scourge.stat_2452998583"]}}} +{"ref":"+# to Level of Socketed Bow Gems","better":1,"matchers":[{"string":"장착된 활 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_2027269580"],"implicit":["implicit.stat_2027269580"],"fractured":["fractured.stat_2027269580"]}}} +{"ref":"+# to Level of Socketed Chaos Gems","better":1,"matchers":[{"string":"장착된 카오스 속성 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_2675603254"],"implicit":["implicit.stat_2675603254"],"fractured":["fractured.stat_2675603254"],"scourge":["scourge.stat_2675603254"]}}} +{"ref":"+# to Level of Socketed Cold Gems","better":1,"matchers":[{"string":"장착된 냉기 속성 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_1645459191"],"implicit":["implicit.stat_1645459191"],"fractured":["fractured.stat_1645459191"],"scourge":["scourge.stat_1645459191"]}}} +{"ref":"+# to Level of Socketed Curse Gems","better":1,"matchers":[{"string":"장착된 저주 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_3691695237"],"implicit":["implicit.stat_3691695237"],"fractured":["fractured.stat_3691695237"],"scourge":["scourge.stat_3691695237"]}}} +{"ref":"+# to Level of Socketed Dexterity Gems","better":1,"matchers":[{"string":"장착된 민첩 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_2718698372"],"implicit":["implicit.stat_2718698372"],"fractured":["fractured.stat_2718698372"],"scourge":["scourge.stat_2718698372"]}}} +{"ref":"+# to Level of Socketed Duration Gems","better":1,"matchers":[{"string":"장착된 지속시간 젬 레벨 #"}],"trade":{"ids":{"implicit":["implicit.stat_2115168758"],"scourge":["scourge.stat_2115168758"]}}} +{"ref":"+# to Level of Socketed Elemental Gems","better":1,"matchers":[{"string":"장착된 원소 속성 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_3571342795"]}}} +{"ref":"+# to Level of Socketed Fire Gems","better":1,"matchers":[{"string":"장착된 화염 속성 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_339179093"],"implicit":["implicit.stat_339179093"],"fractured":["fractured.stat_339179093"],"scourge":["scourge.stat_339179093"]}}} +{"ref":"+# to Level of Socketed Gems","better":1,"matchers":[{"string":"장착된 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_2843100721"],"implicit":["implicit.stat_2843100721"],"fractured":["fractured.stat_2843100721"],"scourge":["scourge.stat_2843100721"]}}} +{"ref":"+# to Level of Socketed Golem Gems","better":1,"matchers":[{"string":"장착된 골렘 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_3448743676"]}}} +{"ref":"+# to Level of Socketed Herald Gems","better":1,"matchers":[{"string":"장착된 전령 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_1344805487"]}}} +{"ref":"+# to Level of Socketed Intelligence Gems","better":1,"matchers":[{"string":"장착된 지능 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_1719423857"],"implicit":["implicit.stat_1719423857"],"fractured":["fractured.stat_1719423857"],"scourge":["scourge.stat_1719423857"]}}} +{"ref":"+# to Level of Socketed Lightning Gems","better":1,"matchers":[{"string":"장착된 번개 속성 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_4043416969"],"implicit":["implicit.stat_4043416969"],"fractured":["fractured.stat_4043416969"],"scourge":["scourge.stat_4043416969"]}}} +{"ref":"+# to Level of Socketed Melee Gems","better":1,"matchers":[{"string":"장착된 근접 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_829382474"],"implicit":["implicit.stat_829382474"],"fractured":["fractured.stat_829382474"],"scourge":["scourge.stat_829382474"],"crafted":["crafted.stat_829382474"]}}} +{"ref":"+# to Level of Socketed Minion Gems","better":1,"matchers":[{"string":"장착된 소환수 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_3604946673"],"implicit":["implicit.stat_3604946673"],"fractured":["fractured.stat_3604946673"],"scourge":["scourge.stat_3604946673"]}}} +{"ref":"+# to Level of Socketed Movement Gems","better":1,"matchers":[{"string":"장착된 이동 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_3852526385"]}}} +{"ref":"+# to Level of Socketed Non-Vaal Gems","better":1,"matchers":[{"string":"장착된 비-바알 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_2574694107"]}}} +{"ref":"+# to Level of Socketed Projectile Gems","better":1,"matchers":[{"string":"장착된 투사체 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_2176571093"],"implicit":["implicit.stat_2176571093"],"fractured":["fractured.stat_2176571093"],"scourge":["scourge.stat_2176571093"],"crafted":["crafted.stat_2176571093"]}}} +{"ref":"+# to Level of Socketed Skill Gems","better":1,"matchers":[{"string":"장착된 스킬 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_524797741"],"implicit":["implicit.stat_524797741"],"fractured":["fractured.stat_524797741"]}}} +{"ref":"+# to level of Socketed Skill Gems per Socketed Gem","better":1,"matchers":[{"string":"장착된 젬 하나당 장착된 스킬 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_2503682584"]}}} +{"ref":"+# to Level of Socketed Spell Gems","better":1,"matchers":[{"string":"장착된 주문 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_446733281"]}}} +{"ref":"+# to Level of Socketed Strength Gems","better":1,"matchers":[{"string":"장착된 힘 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_916797432"],"implicit":["implicit.stat_916797432"],"fractured":["fractured.stat_916797432"],"scourge":["scourge.stat_916797432"]}}} +{"ref":"+# to Level of Socketed Support Gems","better":1,"matchers":[{"string":"장착된 보조 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_4154259475"],"implicit":["implicit.stat_4154259475"],"fractured":["fractured.stat_4154259475"],"scourge":["scourge.stat_4154259475"],"crafted":["crafted.stat_4154259475"]}}} +{"ref":"+# to Level of Socketed Trap Gems","better":1,"matchers":[{"string":"장착된 덫 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_407139870"]}}} +{"ref":"+# to Level of Socketed Trap or Mine Gems","better":1,"matchers":[{"string":"장착된 덫 또는 지뢰 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_150668988"],"implicit":["implicit.stat_150668988"],"fractured":["fractured.stat_150668988"],"scourge":["scourge.stat_150668988"]}}} +{"ref":"+# to Level of Socketed Vaal Gems","better":1,"matchers":[{"string":"장착된 바알 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_1170386874"],"implicit":["implicit.stat_1170386874"]}}} +{"ref":"+# to Level of Socketed Warcry Gems","better":1,"matchers":[{"string":"장착된 함성 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_1672793731"],"implicit":["implicit.stat_1672793731"],"scourge":["scourge.stat_1672793731"]}}} +{"ref":"+# to Lockpicking Level for Heists","better":1,"matchers":[{"string":"강탈의 자물쇠 따기 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_3031310169"],"fractured":["fractured.stat_3031310169"]}}} +{"ref":"+# to Maximum Blood Charges","better":1,"matchers":[{"string":"피 충전 최대치 #"}],"trade":{"ids":{"enchant":["enchant.stat_4218649240"]}}} +{"ref":"+# to Maximum Charges","better":1,"matchers":[{"string":"충전 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_1437957544"],"fractured":["fractured.stat_1437957544"],"enchant":["enchant.stat_1437957544"]}}} +{"ref":"+# to maximum Divine Charges","better":1,"matchers":[{"string":"신성 충전 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_3997368968"]}}} +{"ref":"+# to Maximum Endurance Charges","better":1,"matchers":[{"string":"인내 충전 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_1515657623"],"implicit":["implicit.stat_1515657623"],"fractured":["fractured.stat_1515657623"],"scourge":["scourge.stat_1515657623"]}}} +{"ref":"+# to Maximum Endurance Charges while affected by Determination","better":1,"matchers":[{"string":"결의의 영향을 받는 동안 인내 충전 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_2110586221"]}}} +{"ref":"+# to maximum Energy Shield","better":1,"matchers":[{"string":"에너지 보호막 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_3489782002","explicit.stat_4052037485"],"implicit":["implicit.stat_3489782002","implicit.stat_4052037485"],"fractured":["fractured.stat_3489782002","fractured.stat_4052037485"],"scourge":["scourge.stat_4052037485"],"crafted":["crafted.stat_3489782002","crafted.stat_4052037485"]}}} +{"ref":"+# to maximum Energy Shield per 100 Reserved Life","better":1,"matchers":[{"string":"생명력 점유 100당 에너지 보호막 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_4270089231"]}}} +{"ref":"+# to Maximum Energy Shield per 5 Armour on Equipped Shield","better":1,"matchers":[{"string":"장착한 방패의 방어도 5당 에너지 보호막 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_3636098185"]}}} +{"ref":"+# to Maximum Energy Shield per Blue Socket","better":1,"matchers":[{"string":"파란 홈 하나당 에너지 보호막 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_2906522048"]}}} +{"ref":"+# to maximum Fortification","better":1,"matchers":[{"string":"방어 상승 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_2094299742","explicit.stat_335507772"],"implicit":["implicit.stat_335507772"],"fractured":["fractured.stat_335507772"]}}} +{"ref":"+# to maximum Fortification per Endurance Charge","better":1,"matchers":[{"string":"인내 충전 하나당 방어 상승 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_2032578228"]}}} +{"ref":"+# to maximum Fortification while affected by Glorious Madness","better":1,"matchers":[{"string":"찬란한 광기의 영향을 받는 동안 방어 상승 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_2611224062"]}}} +{"ref":"+# to maximum Fortification while Focused","better":1,"matchers":[{"string":"집중하는 동안 방어 상승 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_922014346"],"fractured":["fractured.stat_922014346"],"crafted":["crafted.stat_922014346"]}}} +{"ref":"+# to Maximum Frenzy Charges","better":1,"matchers":[{"string":"격분 충전 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_4078695"],"implicit":["implicit.stat_4078695"],"fractured":["fractured.stat_4078695"],"scourge":["scourge.stat_4078695"]}}} +{"ref":"+# to Maximum Frenzy Charges while affected by Grace","better":1,"matchers":[{"string":"은총의 영향을 받는 동안 격분 충전 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_3458080964"]}}} +{"ref":"+# to maximum Life","better":1,"matchers":[{"string":"생명력 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_3299347043"],"implicit":["implicit.stat_3299347043"],"fractured":["fractured.stat_3299347043"],"scourge":["scourge.stat_3299347043"],"crafted":["crafted.stat_3299347043"]}}} +{"ref":"+# to maximum Life for each Empty Red Socket on any Equipped Item","better":1,"matchers":[{"string":"장착 중인 모든 아이템의 빈 빨간색 홈 하나당 생명력 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_726359715"]}}} +{"ref":"+# to maximum Life if there are no Life Modifiers on other Equipped Items","better":1,"matchers":[{"string":"장착 중인 다른 아이템에 생명력 속성이 부여되지 않은 경우 최대 생명력 #"}],"trade":{"ids":{"explicit":["explicit.stat_2927667525"]}}} +{"ref":"+# to Maximum Life per 10 Dexterity","better":1,"matchers":[{"string":"민첩 10당 최대 생명력 #"}],"trade":{"ids":{"explicit":["explicit.stat_3806100539"]}}} +{"ref":"+# to Maximum Life per 10 Intelligence","better":1,"matchers":[{"string":"지능 10당 최대 생명력 #"}],"trade":{"ids":{"explicit":["explicit.stat_1114351662"]}}} +{"ref":"+# to Maximum Life per 2 Intelligence","better":1,"matchers":[{"string":"지능 2당 생명력 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_4284915962"]}}} +{"ref":"+# to Maximum Life per Elder Item Equipped","better":1,"matchers":[{"string":"장착한 엘더 아이템 하나당 최대 생명력 #"}],"trade":{"ids":{"explicit":["explicit.stat_3849523464"]}}} +{"ref":"+# to Maximum Life per Red Socket","better":1,"matchers":[{"string":"빨간 홈 하나당 생명력 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_4210076836"]}}} +{"ref":"+# to maximum Mana","better":1,"matchers":[{"string":"마나 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_1050105434"],"implicit":["implicit.stat_1050105434"],"fractured":["fractured.stat_1050105434"],"scourge":["scourge.stat_1050105434"],"crafted":["crafted.stat_1050105434"]}}} +{"ref":"+# to maximum Mana for each Empty Blue Socket on any Equipped Item","better":1,"matchers":[{"string":"장착 중인 모든 아이템의 빈 파란색 홈 하나당 마나 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_2962020005"]}}} +{"ref":"+# to Maximum Mana per 10 Dexterity on Unallocated Passives in Radius","better":1,"matchers":[{"string":"반경 내 할당되지 않은 패시브 스킬의 민첩 10당 마나 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_1276712564"]}}} +{"ref":"+# to maximum Mana per 2 Intelligence","better":1,"matchers":[{"string":"지능 2당 마나 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_3822999954"],"fractured":["fractured.stat_3822999954"]}}} +{"ref":"+# to Maximum Mana per Green Socket","better":1,"matchers":[{"string":"초록 홈 하나당 마나 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_896299992"]}}} +{"ref":"+# to Maximum number of Crab Barriers","better":1,"matchers":[{"string":"게의 방어막 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_2894704558"]}}} +{"ref":"+# to maximum number of Eaten Souls","better":1,"matchers":[{"string":"포식한 영혼 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_1915836277"]}}} +{"ref":"+# to maximum number of Flame Walls","better":1,"matchers":[{"string":"화염 벽 최대치 #"}],"trade":{"ids":{"enchant":["enchant.stat_1531456858"]}}} +{"ref":"+# to maximum number of Raging Spirits","better":1,"matchers":[{"string":"격노의 유령 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_3143579606"]}}} +{"ref":"+# to maximum number of Raised Zombies","better":1,"matchers":[{"string":"소환 가능한 좀비 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_966747987"],"implicit":["implicit.stat_966747987"],"fractured":["fractured.stat_966747987"],"scourge":["scourge.stat_966747987"],"crafted":["crafted.stat_966747987"]}}} +{"ref":"+# to maximum number of Sacred Wisps\n+# to number of Sacred Wisps Summoned","better":1,"matchers":[{"string":"신성한 도깨비불의 최대 수 #\n소환되는 신성한 도깨비불의 수 #"}],"trade":{"ids":{"explicit":["explicit.stat_13590525"]}}} +{"ref":"+# to maximum number of Sentinels of Purity","better":1,"matchers":[{"string":"정화의 파수꾼 최대치 #"}],"trade":{"ids":{"enchant":["enchant.stat_2836937264"]}}} +{"ref":"+# to maximum number of Skeletons","better":1,"matchers":[{"string":"해골 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_1225383362"],"fractured":["fractured.stat_1225383362"],"scourge":["scourge.stat_1225383362"],"crafted":["crafted.stat_1225383362"]}}} +{"ref":"+# to maximum number of Spectres","better":1,"matchers":[{"string":"망령 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_125218179"],"fractured":["fractured.stat_125218179"]}}} +{"ref":"+# to maximum number of Spectres per Socketed Ghastly Eye Jewel","better":1,"matchers":[{"string":"장착된 무시무시한 눈 주얼 하나당 망령 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_1664904679"]}}} +{"ref":"+# to maximum number of Summoned Golems","better":1,"matchers":[{"string":"골렘 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_2821079699"]}}} +{"ref":"+# to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped","better":1,"matchers":[{"string":"태고의 아이템 3개를 홈에 장착하거나 장비한 경우, 소환 가능한 골렘 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_920385757"]}}} +{"ref":"+# to maximum number of Summoned Holy Relics","better":1,"matchers":[{"string":"소환 가능한 신성한 유물 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_2056575682"]}}} +{"ref":"+# to maximum number of Summoned Phantasms","better":1,"matchers":[{"string":"소환 가능한 환영 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_517587669"]}}} +{"ref":"+# to maximum number of Summoned Totems","better":1,"matchers":[{"string":"소환 가능한 토템 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_429867172"],"fractured":["fractured.stat_429867172"],"crafted":["crafted.stat_429867172"]}}} +{"ref":"+# to Maximum Power Charges","better":1,"matchers":[{"string":"권능 충전 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_227523295"],"implicit":["implicit.stat_227523295"],"fractured":["fractured.stat_227523295"],"scourge":["scourge.stat_227523295"]}}} +{"ref":"+# to Maximum Power Charges and Maximum Endurance Charges","better":1,"matchers":[{"string":"권능 충전 및 인내 충전 최대치 #"}],"trade":{"ids":{"implicit":["implicit.stat_4138979329"]}}} +{"ref":"+# to Maximum Power Charges while affected by Discipline","better":1,"matchers":[{"string":"단련의 영향을 받는 동안 권능 충전 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_1465672972"]}}} +{"ref":"+# to Maximum Rage","better":1,"matchers":[{"string":"격노 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_1181501418"],"implicit":["implicit.stat_1181501418"]}}} +{"ref":"+# to Maximum Rage while wielding a Sword","better":1,"matchers":[{"string":"검 장착 시 격노 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_406887685"]}}} +{"ref":"+# to Maximum Resolve","better":1,"matchers":[{"string":"투지 최대치 #"}],"trade":{"ids":{"explicit":["sanctum.stat_1054634989"]}}} +{"ref":"+# to Maximum Siphoning Charges per Elder or Shaper Item Equipped","better":1,"matchers":[{"string":"장착한 엘더 또는 쉐이퍼 아이템 하나당 착취 충전 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_1872128565"]}}} +{"ref":"+# to maximum Snipe Stages","better":1,"matchers":[{"string":"저격 최대 단계 #"}],"trade":{"ids":{"explicit":["explicit.stat_1239233415"],"enchant":["enchant.stat_1239233415"]}}} +{"ref":"+# to maximum Sockets","better":1,"matchers":[{"string":"최대 홈 #개"}],"trade":{"ids":{"enchant":["enchant.stat_4099204231"]}}} +{"ref":"+# to Maximum Spirit Charges per Abyss Jewel affecting you","better":1,"matchers":[{"string":"자신에게 영향을 주는 심연 주얼 하나당 최대 혼백 충전 #"}],"trade":{"ids":{"explicit":["explicit.stat_4053097676"]}}} +{"ref":"+# to Minimum Endurance Charges","better":1,"matchers":[{"string":"최소 인내 충전 #"}],"trade":{"ids":{"explicit":["explicit.stat_3706959521"],"implicit":["implicit.stat_3706959521"],"fractured":["fractured.stat_3706959521"],"scourge":["scourge.stat_3706959521"],"crafted":["crafted.stat_3706959521"]}}} +{"ref":"+# to Minimum Endurance Charges per Grand Spectrum","better":1,"matchers":[{"string":"장대한 파장 하나당 최소 인내 충전 #"}],"trade":{"ids":{"explicit":["explicit.stat_2276643899"]}}} +{"ref":"+# to Minimum Endurance, Frenzy and Power Charges","better":1,"matchers":[{"string":"최소 인내, 격분 및 권능 충전 #"}],"trade":{"ids":{"implicit":["implicit.stat_66303477"]}}} +{"ref":"+# to Minimum Frenzy Charges","better":1,"matchers":[{"string":"최소 격분 충전 #"}],"trade":{"ids":{"explicit":["explicit.stat_658456881"],"implicit":["implicit.stat_658456881"],"fractured":["fractured.stat_658456881"],"scourge":["scourge.stat_658456881"],"crafted":["crafted.stat_658456881"]}}} +{"ref":"+# to Minimum Frenzy Charges per Grand Spectrum","better":1,"matchers":[{"string":"장대한 파장 하나당 최소 격분 충전 #"}],"trade":{"ids":{"explicit":["explicit.stat_596758264"]}}} +{"ref":"+# to Minimum Power Charges","better":1,"matchers":[{"string":"최소 권능 충전 #"}],"trade":{"ids":{"explicit":["explicit.stat_1999711879"],"implicit":["implicit.stat_1999711879"],"fractured":["fractured.stat_1999711879"],"scourge":["scourge.stat_1999711879"],"crafted":["crafted.stat_1999711879"]}}} +{"ref":"+# to Minimum Power Charges per Grand Spectrum","better":1,"matchers":[{"string":"장대한 파장 하나당 최소 권능 충전 #"}],"trade":{"ids":{"explicit":["explicit.stat_308799121"]}}} +{"ref":"+# to number of Summoned Arbalists","better":1,"matchers":[{"string":"소환된 석궁병 수 #"}],"trade":{"ids":{"explicit":["explicit.stat_1886245216"]}}} +{"ref":"+# to Perception Level for Heists","better":1,"matchers":[{"string":"강탈의 통찰력 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_2932532516"],"fractured":["fractured.stat_2932532516"]}}} +{"ref":"+# to Spectre maximum Life","better":1,"matchers":[{"string":"망령 최대 생명력 #"}],"trade":{"ids":{"explicit":["explicit.stat_3111456397"]}}} +{"ref":"+# to Strength","better":1,"matchers":[{"string":"힘 #"}],"trade":{"ids":{"explicit":["explicit.stat_4080418644"],"implicit":["implicit.stat_4080418644"],"fractured":["fractured.stat_4080418644"],"scourge":["scourge.stat_4080418644"],"crafted":["crafted.stat_4080418644"]}}} +{"ref":"+# to Strength and Dexterity","better":1,"matchers":[{"string":"힘 및 민첩 #"}],"trade":{"ids":{"explicit":["explicit.stat_538848803"],"implicit":["implicit.stat_538848803"],"fractured":["fractured.stat_538848803"],"crafted":["crafted.stat_538848803"]}}} +{"ref":"+# to Strength and Intelligence","better":1,"matchers":[{"string":"힘 및 지능 #"}],"trade":{"ids":{"explicit":["explicit.stat_1535626285","explicit.stat_2543977012"],"implicit":["implicit.stat_1535626285"],"fractured":["fractured.stat_1535626285"],"crafted":["crafted.stat_1535626285"]}}} +{"ref":"+# to Total Mana Cost of Skills","better":1,"matchers":[{"string":"스킬의 총 마나 소모 #"}],"trade":{"ids":{"explicit":["explicit.stat_3736589033"],"implicit":["implicit.stat_3736589033"],"fractured":["fractured.stat_3736589033"],"crafted":["crafted.stat_3736589033"]}}} +{"ref":"+# to Total Mana Cost of Skills for each Corrupted Item Equipped","better":1,"matchers":[{"string":"장착한 타락 아이템 하나당 스킬의 총 마나 소모 #"}],"trade":{"ids":{"explicit":["explicit.stat_3750572810"]}}} +{"ref":"+# to Total Mana Cost of Skills while affected by Clarity","better":1,"matchers":[{"string":"명상의 영향을 받는 동안 스킬의 총 마나 소모 #"}],"trade":{"ids":{"explicit":["explicit.stat_2445618239"]}}} +{"ref":"+# to Trap Disarmament Level for Heists","better":1,"matchers":[{"string":"강탈의 덫 해제 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_555061211"],"fractured":["fractured.stat_555061211"]}}} +{"ref":"+# to Ward","better":1,"matchers":[{"string":"수호 #"}],"trade":{"ids":{"explicit":["explicit.stat_774059442"],"fractured":["fractured.stat_774059442"]}}} +{"ref":"+# total maximum Energy Shield","better":1,"matchers":[{"string":"에너지 보호막 최대치 총 +# "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_energy_shield"]}}} +{"ref":"+# total maximum Life","better":1,"matchers":[{"string":"총 최대 생명력 +# "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_life"]}}} +{"ref":"+# total maximum Mana","better":1,"matchers":[{"string":"총 최대 마나 +# "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_mana"]}}} +{"ref":"+# total to all Attributes","better":1,"matchers":[{"string":"모든 능력치 총 +# "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_all_attributes"]}}} +{"ref":"+# total to Dexterity","better":1,"matchers":[{"string":"민첩 총 +# "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_dexterity"]}}} +{"ref":"+# total to Intelligence","better":1,"matchers":[{"string":"지능 총 +# "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_intelligence"]}}} +{"ref":"+# total to Level of Socketed Aura Gems","better":1,"matchers":[{"string":"장착한 오라 스킬 젬 레벨 총 +# "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_aura_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Bow Gems","better":1,"matchers":[{"string":"장착한 활 스킬 젬 레벨 총 +# "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_bow_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Chaos Gems","better":1,"matchers":[{"string":"장착한 카오스 스킬 젬 레벨 총 +# "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_chaos_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Cold Gems","better":1,"matchers":[{"string":"장착한 냉기 스킬 젬 레벨 총 +# "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_cold_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Curse Gems","better":1,"matchers":[{"string":"장착한 저주 스킬 젬 레벨 총 +# "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_curse_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Dexterity Gems","better":1,"matchers":[{"string":"장착한 민첩 스킬 젬 레벨 총 +# "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_dexterity_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Elemental Gems","better":1,"matchers":[{"string":"장착한 원소 스킬 젬 레벨 총 +# "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_elemental_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Fire Gems","better":1,"matchers":[{"string":"장착한 화염 스킬 젬 레벨 총 +# "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_fire_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Gems","better":1,"matchers":[{"string":"장착된 스킬 젬 레벨 총 +# "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Golem Gems","better":1,"matchers":[{"string":"장착한 골렘 스킬 젬 레벨 총 +# "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_golem_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Intelligence Gems","better":1,"matchers":[{"string":"장착한 지능 스킬 젬 레벨 총 +# "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_intelligence_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Lightning Gems","better":1,"matchers":[{"string":"장착한 번개 스킬 젬 레벨 총 +# "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_lightning_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Melee Gems","better":1,"matchers":[{"string":"장착한 근접 공격 스킬 젬 레벨 총 +# "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_melee_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Minion Gems","better":1,"matchers":[{"string":"장착한 소환수 스킬 젬 레벨 총 +# "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_minion_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Movement Gems","better":1,"matchers":[{"string":"장착한 이동 스킬 젬 레벨 총 +# "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_movement_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Projectile Gems","better":1,"matchers":[{"string":"장착한 투사체 스킬 젬 레벨 총 +# "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_projectile_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Skill Gems","better":1,"matchers":[{"string":"장착한 스킬 젬 레벨 총 +# "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_skill_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Spell Gems","better":1,"matchers":[{"string":"장착한 주문 스킬 젬 레벨 총 +# "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_spell_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Strength Gems","better":1,"matchers":[{"string":"장착한 힘 스킬 젬 레벨 총 +# "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_strength_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Support Gems","better":1,"matchers":[{"string":"장착한 보조 스킬 젬 레벨 총 +# "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_support_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Vaal Gems","better":1,"matchers":[{"string":"장착한 바알 스킬 젬 레벨 총 +# "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_vaal_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Warcry Gems","better":1,"matchers":[{"string":"장착한 함성 스킬 젬 레벨 총 +# "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_warcry_gem_levels"]}}} +{"ref":"+# total to Strength","better":1,"matchers":[{"string":"힘 총 +# "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_strength"]}}} +{"ref":"+#% chance to Avoid Elemental Damage from Hits while Phasing","better":1,"matchers":[{"string":"차원 능력 상태에서 피격 시 #% 확률로 원소 피해 긴급회피"}],"trade":{"ids":{"explicit":["explicit.stat_143510471"]}}} +{"ref":"+#% chance to Avoid Physical Damage from Hits while Phasing","better":1,"matchers":[{"string":"차원 능력 상태에서 피격 시 물리 피해 긴급회피 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2490633856"]}}} +{"ref":"+#% chance to be Frozen, Shocked and Ignited","better":1,"matchers":[{"string":"동결, 감전, 점화에 걸릴 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_4245896836"]}}} +{"ref":"+#% chance to be Ignited","better":1,"matchers":[{"string":"점화될 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1618339429"]}}} +{"ref":"+#% chance to be Poisoned","better":1,"matchers":[{"string":"중독될 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_4250009622"]}}} +{"ref":"+#% chance to be Shocked","better":1,"matchers":[{"string":"감전될 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3206652215"]}}} +{"ref":"+#% Chance to Block","better":1,"matchers":[{"string":"막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_4253454700"],"implicit":["implicit.stat_4253454700"],"fractured":["fractured.stat_4253454700"],"crafted":["crafted.stat_4253454700"]}}} +{"ref":"+#% Chance to Block Attack Damage during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 공격 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2519106214"]}}} +{"ref":"+#% Chance to Block Attack Damage for every 200 Fire Damage taken from Hits Recently","better":1,"matchers":[{"string":"최근 4초 이내 피격으로 받은 화염 피해 200당 공격 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_8517868"]}}} +{"ref":"+#% Chance to Block Attack Damage from Cursed Enemies","better":1,"matchers":[{"string":"저주받은 적이 주는 공격 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3304203764"]}}} +{"ref":"+#% Chance to Block Attack Damage if there are at least 5 nearby Enemies","better":1,"matchers":[{"string":"주변의 적이 5명 이상인 경우 공격 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1214532298"],"fractured":["fractured.stat_1214532298"]}}} +{"ref":"+#% Chance to Block Attack Damage if you have Blocked Attack Damage Recently","better":1,"matchers":[{"string":"최근 4초 이내 공격 피해를 막아낸 경우 공격 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3789765926"],"fractured":["fractured.stat_3789765926"]}}} +{"ref":"+#% Chance to Block Attack Damage if you have Blocked Spell Damage Recently","better":1,"matchers":[{"string":"최근 4초 이내 주문 피해를 막아낸 경우 공격 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_647983250"]}}} +{"ref":"+#% Chance to Block Attack Damage if you were Damaged by a Hit Recently","better":1,"matchers":[{"string":"최근 4초 이내 피격으로 피해를 받은 경우 공격 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_852195286"],"fractured":["fractured.stat_852195286"]}}} +{"ref":"+#% Chance to Block Attack Damage per 50 Strength","better":1,"matchers":[{"string":"힘 50당 공격 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1061631617"]}}} +{"ref":"+#% Chance to Block Attack Damage per Endurance Charge","better":1,"matchers":[{"string":"인내 충전 하나당 공격 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2355741828","explicit.stat_3039589351"],"fractured":["fractured.stat_3039589351"]}}} +{"ref":"+#% Chance to Block Attack Damage per Frenzy Charge","better":1,"matchers":[{"string":"격분 충전 하나당 공격 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2148784747"]}}} +{"ref":"+#% Chance to Block Attack Damage per Power Charge","better":1,"matchers":[{"string":"권능 충전 하나당 공격 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2856326982"]}}} +{"ref":"+#% Chance to Block Attack Damage per Summoned Skeleton","better":1,"matchers":[{"string":"소환된 해골 하나당 공격 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2445675562"]}}} +{"ref":"+#% Chance to Block Attack Damage when in Off Hand","better":1,"matchers":[{"string":"보조 장비로 장착 시 공격 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2040585053"]}}} +{"ref":"+#% Chance to Block Attack Damage while affected by Determination","better":1,"matchers":[{"string":"결의의 영향을 받는 동안 공격 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3692646597"]}}} +{"ref":"+#% Chance to Block Attack Damage while Dual Wielding","better":1,"matchers":[{"string":"쌍수 장착 시 공격 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2166444903"],"implicit":["implicit.stat_2166444903"],"fractured":["fractured.stat_2166444903"],"crafted":["crafted.stat_2166444903"]}}} +{"ref":"+#% Chance to Block Attack Damage while Dual Wielding Claws","better":1,"matchers":[{"string":"클로로 쌍수 장착 시 공격 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2538694749"]}}} +{"ref":"+#% Chance to Block Attack Damage while holding a Shield","better":1,"matchers":[{"string":"방패를 들고 있는 동안 공격 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_4061558269"],"fractured":["fractured.stat_4061558269"]}}} +{"ref":"+#% Chance to Block Attack Damage while not Cursed","better":1,"matchers":[{"string":"저주받는 상태가 아닌 동안 공격 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3619054484"]}}} +{"ref":"+#% Chance to Block Attack Damage while on Consecrated Ground","better":1,"matchers":[{"string":"신성화 지대에 있는 동안 공격 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3865999868"]}}} +{"ref":"+#% Chance to Block Attack Damage while wielding a Staff","better":1,"matchers":[{"string":"지팡이 장착 시 공격 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1001829678","explicit.stat_1778298516"],"implicit":["implicit.stat_1001829678"],"fractured":["fractured.stat_1001829678","fractured.stat_1778298516"]}}} +{"ref":"+#% Chance to Block Attack Damage while you have at least 10 Crab Barriers","better":1,"matchers":[{"string":"게의 방어막을 10개 이상 보유하는 동안 공격 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_653107703"]}}} +{"ref":"+#% Chance to Block Attack Damage while you have at least 5 Crab Barriers","better":1,"matchers":[{"string":"게의 방어막을 5개 이상 보유하는 동안 공격 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1354504703"]}}} +{"ref":"+#% chance to Block Projectile Attack Damage","better":1,"matchers":[{"string":"투사체 공격 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3416410609"],"fractured":["fractured.stat_3416410609"]}}} +{"ref":"+#% Chance to Block Spell Damage during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 주문 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_215754572"]}}} +{"ref":"+#% chance to Block Spell Damage if you have Blocked Attack Damage Recently","better":1,"matchers":[{"string":"최근 4초 이내 공격 피해를 막아낸 경우 주문 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1214153650"]}}} +{"ref":"+#% Chance to Block Spell Damage if you have Blocked Spell Damage Recently","better":1,"matchers":[{"string":"최근 4초 이내 주문 피해를 막아낸 경우 주문 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_4263513561"],"fractured":["fractured.stat_4263513561"]}}} +{"ref":"+#% Chance to Block Spell Damage if you were Damaged by a Hit Recently","better":1,"matchers":[{"string":"최근 4초 이내 피격 피해를 받은 경우 주문 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1101206134"],"fractured":["fractured.stat_1101206134"]}}} +{"ref":"+#% Chance to Block Spell Damage per Power Charge","better":1,"matchers":[{"string":"권능 충전 하나당 주문 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_816458107"]}}} +{"ref":"+#% Chance to Block Spell Damage while affected by Discipline","better":1,"matchers":[{"string":"단련의 영향을 받는 동안 주문 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1313498929"]}}} +{"ref":"+#% Chance to Block Spell Damage while Cursed","better":1,"matchers":[{"string":"저주에 걸린 동안 주문 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3218891195"]}}} +{"ref":"+#% Chance to Block Spell Damage while Dual Wielding","better":1,"matchers":[{"string":"쌍수 장착 시 주문 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_138741818"],"fractured":["fractured.stat_138741818"]}}} +{"ref":"+#% Chance to Block Spell Damage while holding a Shield","better":1,"matchers":[{"string":"방패를 들고 있는 동안 주문 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_938645499"],"fractured":["fractured.stat_938645499"]}}} +{"ref":"+#% Chance to Block Spell Damage while on Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태일 때 주문 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2253286128","explicit.stat_4070519133"],"fractured":["fractured.stat_2253286128"]}}} +{"ref":"+#% Chance to Block Spell Damage while wielding a Staff","better":1,"matchers":[{"string":"지팡이 장착 시 주문 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2120297997"],"implicit":["implicit.stat_2120297997"],"fractured":["fractured.stat_2120297997"]}}} +{"ref":"+#% Chance to contain a Vaal Side Area","better":1,"fromAreaMods":true,"matchers":[{"string":"바알 부가 지역 등장 확률 #%"},{"string":"바알 부가 지역 등장","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2156201537"],"implicit":["implicit.stat_2156201537"]}}} +{"ref":"+#% chance to Evade Attack Hits","better":1,"matchers":[{"string":"공격 적중 회피 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2021058489"],"implicit":["implicit.stat_2021058489"],"fractured":["fractured.stat_2021058489"]}}} +{"ref":"+#% chance to Evade Attack Hits while affected by Grace","better":1,"matchers":[{"string":"은총의 영향을 받는 동안 공격 적중 회피 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_969576725"],"implicit":["implicit.stat_969576725"]}}} +{"ref":"+#% chance to Suppress Spell Damage","better":1,"matchers":[{"string":"주문 피해 억제 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3680664274","explicit.stat_492027537"],"implicit":["implicit.stat_3680664274","implicit.stat_492027537"],"fractured":["fractured.stat_3680664274","fractured.stat_492027537"],"scourge":["scourge.stat_3680664274"],"crafted":["crafted.stat_3680664274","crafted.stat_492027537"]}}} +{"ref":"+#% chance to Suppress Spell Damage if you've\ntaken Spell Damage Recently","better":1,"matchers":[{"string":"최근 4초 이내 주문 피해를 받은 경우\n#%의 확률로 주문 피해 억제"}],"trade":{"ids":{"enchant":["enchant.stat_1503864797"]}}} +{"ref":"+#% chance to Suppress Spell Damage per Endurance Charge","better":1,"matchers":[{"string":"인내 충전 하나당 주문 피해 억제 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_161741084"]}}} +{"ref":"+#% chance to Suppress Spell Damage per Fortification","better":1,"matchers":[{"string":"방어 상승 하나당 주문 피해 억제 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2731261141"]}}} +{"ref":"+#% chance to Suppress Spell Damage per Frenzy Charge","better":1,"matchers":[{"string":"격분 충전 하나당 주문 피해 억제 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_482967934"]}}} +{"ref":"+#% chance to Suppress Spell Damage per Power Charge","better":1,"matchers":[{"string":"권능 충전 하나당 주문 피해 억제 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1309947938"]}}} +{"ref":"+#% chance to Suppress Spell Damage while affected by Grace","better":1,"matchers":[{"string":"은총의 영향을 받는 동안 주문 피해 억제 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_4071658793"]}}} +{"ref":"+#% chance to Suppress Spell Damage while affected by Haste","better":1,"matchers":[{"string":"가속의 영향을 받는 동안 주문 피해 억제 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2170859717"]}}} +{"ref":"+#% chance to Suppress Spell Damage while Channelling","better":1,"matchers":[{"string":"집중 유지하는 동안 주문 피해 억제 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_4108186648"]}}} +{"ref":"+#% chance to Suppress Spell Damage while your Off Hand is empty","better":1,"matchers":[{"string":"보조 장비가 없을 시 주문 피해 억제 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2076926581"]}}} +{"ref":"+#% Chaos Resistance against Damage Over Time","better":1,"matchers":[{"string":"지속 피해 대응 카오스 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2266636761"],"crafted":["crafted.stat_2266636761"]}}} +{"ref":"+#% Critical Strike Chance per Power Charge","dp":true,"better":1,"matchers":[{"string":"권능 충전 하나당 치명타 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1818900806"]}}} +{"ref":"+#% Critical Strike Chance while at maximum Power Charges","dp":true,"better":1,"matchers":[{"string":"최대 권능 충전 상태에서 치명타 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1166971727"]}}} +{"ref":"+#% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby","better":1,"matchers":[{"string":"주변에 희귀 또는 고유 적이 있으면 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3992439283"],"fractured":["fractured.stat_3992439283"],"crafted":["crafted.stat_3992439283"]}}} +{"ref":"+#% Global Critical Strike Chance","better":1,"matchers":[{"string":"일반 치명타 확률 +#% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_global_critical_strike_chance"]}}} +{"ref":"+#% Global Critical Strike Multiplier","better":1,"matchers":[{"string":"일반 치명타 피해 배율 +#% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_global_critical_strike_multiplier"]}}} +{"ref":"+#% Global Critical Strike Multiplier while you have a Frenzy Charge","better":1,"matchers":[{"string":"격분 충전이 있는 동안 일반 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3375516056"]}}} +{"ref":"+#% Global Critical Strike Multiplier while you have no Frenzy Charges","better":1,"matchers":[{"string":"격분 충전이 없는 동안 일반 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3062763405"]}}} +{"ref":"+#% increased Flame Golem Elemental Resistances","better":1,"matchers":[{"string":"화염 골렘 원소 저항 #%"}],"trade":{"ids":{"enchant":["enchant.stat_1298820272"]}}} +{"ref":"+#% Item Quantity","better":1,"fromAreaMods":true,"matchers":[{"string":"아이템 수량 #%"}],"trade":{"ids":{"implicit":["implicit.stat_2023217031"]}}} +{"ref":"+#% Item Rarity","better":1,"fromAreaMods":true,"matchers":[{"string":"아이템 희귀도 #%"}],"trade":{"ids":{"implicit":["implicit.stat_190932737"]}}} +{"ref":"+#% maximum Player Resistances per 25% Alert Level","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"경보 레벨 25%당 플레이어 저항 최대치 #%"}],"trade":{"ids":{"explicit":["explicit.stat_652638686"],"fractured":["fractured.stat_652638686"]}}} +{"ref":"+#% Monster Chaos Resistance","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터의 카오스 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_365540634"],"fractured":["fractured.stat_365540634"]}}} +{"ref":"+#% Monster Cold Resistance","better":1,"fromAreaMods":true,"matchers":[{"string":"몬스터의 냉기 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1430380429"]}}} +{"ref":"+#% Monster Elemental Resistances","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터의 원소 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1054098949"],"fractured":["fractured.stat_1054098949"]}}} +{"ref":"+#% Monster Fire Resistance","better":1,"fromAreaMods":true,"matchers":[{"string":"몬스터의 화염 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2319127046"]}}} +{"ref":"+#% Monster Lightning Resistance","better":1,"fromAreaMods":true,"matchers":[{"string":"몬스터의 번개 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_162742068"]}}} +{"ref":"+#% Monster Physical Damage Reduction","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터의 물리 피해 감소 #%"}],"trade":{"ids":{"explicit":["explicit.stat_839186746"],"fractured":["fractured.stat_839186746"]}}} +{"ref":"+#% Pack Size","better":1,"fromAreaMods":true,"matchers":[{"string":"무리 규모 #%"}],"trade":{"ids":{"implicit":["implicit.stat_948600126"]}}} +{"ref":"+#% Player Cold Resistance per 25% Alert Level","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"경보 레벨 25%당 플레이어 냉기 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2916448124"],"fractured":["fractured.stat_2916448124"]}}} +{"ref":"+#% Player Fire Resistance per 25% Alert Level","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"경보 레벨 25%당 플레이어 화염 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1318683911"],"fractured":["fractured.stat_1318683911"]}}} +{"ref":"+#% Player Lightning Resistance per 25% Alert Level","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"경보 레벨 25%당 플레이어 번개 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3839688967"],"fractured":["fractured.stat_3839688967"]}}} +{"ref":"+#% to all Elemental Resistances","better":1,"matchers":[{"string":"모든 원소 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2901986750"],"implicit":["implicit.stat_2901986750"],"fractured":["fractured.stat_2901986750"],"scourge":["scourge.stat_2901986750"],"crafted":["crafted.stat_2901986750"]}}} +{"ref":"+#% to all Elemental Resistances for each Empty White Socket on any Equipped Item","better":1,"matchers":[{"string":"장착 중인 모든 아이템의 빈 하얀색 홈 하나당 모든 원소 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_597739519"]}}} +{"ref":"+#% to all Elemental Resistances if Corrupted","better":1,"matchers":[{"string":"타락 시 모든 원소 저항력 #%"}],"trade":{"ids":{"implicit":["implicit.stat_3731630482"]}}} +{"ref":"+#% to all Elemental Resistances per 10 Devotion","better":1,"matchers":[{"string":"헌신 10당 모든 원소 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1910205563"]}}} +{"ref":"+#% to all Elemental Resistances per 15 Omniscience","better":1,"matchers":[{"string":"전지력 15당 모든 원소 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2569472704"]}}} +{"ref":"+#% to all Elemental Resistances per Endurance Charge","better":1,"matchers":[{"string":"인내 충전 하나당 모든 원소 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1852896268"]}}} +{"ref":"+#% to all Elemental Resistances per Grand Spectrum","better":1,"matchers":[{"string":"장대한 파장 하나당 모든 원소 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_242161915"]}}} +{"ref":"+#% to all Elemental Resistances while on Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태일 때 모든 원소 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1637928656"]}}} +{"ref":"+#% to all Elemental Resistances while you have at least 200 Strength","better":1,"matchers":[{"string":"힘이 200 이상인 상태에서 모든 원소 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2415398184"]}}} +{"ref":"+#% to all maximum Elemental Resistances","better":1,"matchers":[{"string":"모든 원소 저항 최대치 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1978899297"],"scourge":["scourge.stat_1978899297"]}}} +{"ref":"+#% to all maximum Elemental Resistances during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 모든 원소 저항 최대치 #%"}],"trade":{"ids":{"explicit":["explicit.stat_4026156644"]}}} +{"ref":"+#% to all maximum Elemental Resistances while affected by Purity of Elements","better":1,"matchers":[{"string":"원소의 순수함의 영향을 받는 동안 모든 원소 저항 최대치 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3234824465"]}}} +{"ref":"+#% to all maximum Resistances","better":1,"matchers":[{"string":"모든 저항 최대치 #%"}],"trade":{"ids":{"explicit":["explicit.stat_569299859"],"implicit":["implicit.stat_569299859"],"fractured":["fractured.stat_569299859"]}}} +{"ref":"+#% to all maximum Resistances while Poisoned","better":1,"matchers":[{"string":"중독 상태에서 모든 저항 최대치 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1030987123"]}}} +{"ref":"+#% to all maximum Resistances while you have no Endurance Charges","better":1,"matchers":[{"string":"인내 충전이 없는 동안 모든 저항 최대치 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3635566977"]}}} +{"ref":"+#% to All Resistances","better":1,"matchers":[{"string":"모든 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2016723660"],"fractured":["fractured.stat_2016723660"]}}} +{"ref":"+#% to all Resistances for each Corrupted Item Equipped","better":1,"matchers":[{"string":"장착한 타락한 아이템 하나당 모든 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3100523498"]}}} +{"ref":"+#% to Ancestral Protector Totem Elemental Resistances","better":1,"matchers":[{"string":"선대의 수호자 토템 원소 저항 #%"}],"trade":{"ids":{"enchant":["enchant.stat_1220207954"]}}} +{"ref":"+#% to Animated Guardian Elemental Resistances","better":1,"matchers":[{"string":"기동된 수호자 원소 저항 #%"}],"trade":{"ids":{"implicit":["implicit.stat_2094281311"],"enchant":["enchant.stat_2094281311"]}}} +{"ref":"+#% to Chaos Damage over Time Multiplier","better":1,"matchers":[{"string":"지속 카오스 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_4055307827"],"implicit":["implicit.stat_4055307827"],"fractured":["fractured.stat_4055307827"],"scourge":["scourge.stat_4055307827"],"crafted":["crafted.stat_4055307827"]}}} +{"ref":"+#% to Chaos Damage over Time Multiplier with Attack Skills","better":1,"matchers":[{"string":"공격 스킬의 지속 카오스 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3913282911"],"fractured":["fractured.stat_3913282911"]}}} +{"ref":"+#% to Chaos Golem Elemental Resistances","better":1,"matchers":[{"string":"카오스 골렘 원소 저항 #%"}],"trade":{"ids":{"enchant":["enchant.stat_1946386823"]}}} +{"ref":"+#% to Chaos Resistance","better":1,"matchers":[{"string":"카오스 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2923486259"],"implicit":["implicit.stat_2923486259"],"fractured":["fractured.stat_2923486259"],"scourge":["scourge.stat_2923486259"]}}} +{"ref":"+#% to Chaos Resistance during any Flask Effect","better":1,"matchers":[{"string":"아무 플라스크나 효과를 받는 동안 카오스 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_392168009"],"fractured":["fractured.stat_392168009"]}}} +{"ref":"+#% to Chaos Resistance per Endurance Charge","better":1,"matchers":[{"string":"인내 충전 하나당 카오스 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_4210011075"]}}} +{"ref":"+#% to Chaos Resistance per Poison on you","better":1,"matchers":[{"string":"자신에게 중첩된 중독 하나당 카오스 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_175362265"]}}} +{"ref":"+#% to Chaos Resistance when on Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태일 때 카오스 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2366940416"]}}} +{"ref":"+#% to Chaos Resistance while affected by Herald of Agony","better":1,"matchers":[{"string":"고통의 전령의 영향을 받는 동안 카오스 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3456816469"]}}} +{"ref":"+#% to Chaos Resistance while affected by Purity of Elements","better":1,"matchers":[{"string":"원소의 순수함의 영향을 받는 동안 카오스 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1138813382"]}}} +{"ref":"+#% to Chaos Resistance while stationary","better":1,"matchers":[{"string":"정지 상태일 때 #%의 카오스 저항"},{"string":"정지 상태일 때 카오스 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_779829642"]}}} +{"ref":"+#% to Cold and Chaos Resistances","better":1,"matchers":[{"string":"냉기 및 카오스 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3393628375"],"fractured":["fractured.stat_3393628375"],"crafted":["crafted.stat_3393628375"]}}} +{"ref":"+#% to Cold and Lightning Resistances","better":1,"matchers":[{"string":"냉기 및 번개 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_4277795662"],"implicit":["implicit.stat_4277795662"],"fractured":["fractured.stat_4277795662"],"crafted":["crafted.stat_4277795662"]}}} +{"ref":"+#% to Cold Damage over Time Multiplier","better":1,"matchers":[{"string":"지속 냉기 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1950806024"],"implicit":["implicit.stat_1950806024"],"fractured":["fractured.stat_1950806024"],"scourge":["scourge.stat_1950806024"],"crafted":["crafted.stat_1950806024"]}}} +{"ref":"+#% to Cold Resistance","better":1,"matchers":[{"string":"냉기 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_4220027924"],"implicit":["implicit.stat_4220027924"],"fractured":["fractured.stat_4220027924"],"scourge":["scourge.stat_4220027924"],"crafted":["crafted.stat_4220027924"]}}} +{"ref":"+#% to Cold Resistance when Socketed with a Green Gem","better":1,"matchers":[{"string":"초록 젬 장착 시 냉기 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1064331314"]}}} +{"ref":"+#% to Cold Resistance while affected by Herald of Ice","better":1,"matchers":[{"string":"얼음의 전령의 영향을 받는 동안 냉기 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2494069187"]}}} +{"ref":"+#% to Critical Strike Chance against Enemies on Consecrated Ground during Effect","dp":true,"better":1,"matchers":[{"string":"효과 상태에서 신성화 지대에 있는 적에 대한 치명타 확률 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1535051459"]}}} +{"ref":"+#% to Critical Strike Chance while affected by Aspect of the Cat","dp":true,"better":1,"matchers":[{"string":"고양이의 위상의 영향을 받는 동안 치명타 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3992636701"]}}} +{"ref":"+#% to Critical Strike Chance while affected by Hatred","dp":true,"better":1,"matchers":[{"string":"증오의 영향을 받는 동안 치명타 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2753985507"]}}} +{"ref":"+#% to Critical Strike Multiplier against Burning Enemies","better":1,"matchers":[{"string":"화상 상태의 적에게 주는 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1963942874"]}}} +{"ref":"+#% to Critical Strike Multiplier against Enemies that are on Full Life","better":1,"matchers":[{"string":"생명력이 최대인 적에 대한 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2355615476"],"fractured":["fractured.stat_2355615476"]}}} +{"ref":"+#% to Critical Strike Multiplier during any Flask Effect","better":1,"matchers":[{"string":"아무 플라스크나 효과를 받는 동안 치명타 피해 배율 #%"}],"trade":{"ids":{"implicit":["implicit.stat_240289863"]}}} +{"ref":"+#% to Critical Strike Multiplier for Attack Damage","better":1,"matchers":[{"string":"공격 피해의 치명타 피해 배율 #%"}],"trade":{"ids":{"implicit":["implicit.stat_3714003708"]}}} +{"ref":"+#% to Critical Strike Multiplier for Spell Damage","better":1,"matchers":[{"string":"주문 피해의 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_274716455"],"implicit":["implicit.stat_274716455"],"fractured":["fractured.stat_274716455"]}}} +{"ref":"+#% to Critical Strike Multiplier for Spells if you haven't Killed Recently","better":1,"matchers":[{"string":"최근 4초 이내 처치하지 않은 경우 주문 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_729430714"]}}} +{"ref":"+#% to Critical Strike Multiplier for Spells while Dual Wielding","better":1,"matchers":[{"string":"쌍수 장착 시 주문 치명타 피해 배율 #%"}],"trade":{"ids":{"implicit":["implicit.stat_2349237916"]}}} +{"ref":"+#% to Critical Strike Multiplier for Spells while holding a Shield","better":1,"matchers":[{"string":"방패를 들고 있는 동안 주문 치명타 피해 배율 #%"}],"trade":{"ids":{"implicit":["implicit.stat_2311200892"]}}} +{"ref":"+#% to Critical Strike Multiplier for Spells while wielding a Staff","better":1,"matchers":[{"string":"지팡이 장착 시 주문 치명타 피해 배율 #%"}],"trade":{"ids":{"implicit":["implicit.stat_3629080637"]}}} +{"ref":"+#% to Critical Strike Multiplier if Dexterity is higher than Intelligence","better":1,"matchers":[{"string":"민첩이 지능보다 높은 경우 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2328588114"]}}} +{"ref":"+#% to Critical Strike Multiplier if you have Blocked Recently","better":1,"matchers":[{"string":"최근 4초 이내 막아낸 경우 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3527458221"],"fractured":["fractured.stat_3527458221"]}}} +{"ref":"+#% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently","better":1,"matchers":[{"string":"최근 4초 이내 치명타를 명중시키지 않은 경우 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1478247313"],"fractured":["fractured.stat_1478247313"]}}} +{"ref":"+#% to Critical Strike Multiplier if you've cast Enfeeble in the past 10 seconds","better":1,"matchers":[{"string":"최근 10초 이내 쇠약화를 시전한 경우 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2379274646"]}}} +{"ref":"+#% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently","better":1,"matchers":[{"string":"최근 4초 이내 비-치명타로 피해를 준 경우 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1626712767"]}}} +{"ref":"+#% to Critical Strike Multiplier if you've gained a Power Charge Recently","better":1,"matchers":[{"string":"최근 4초 이내 권능 충전을 획득한 경우 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2865731079"]}}} +{"ref":"+#% to Critical Strike Multiplier if you've Killed Recently","better":1,"matchers":[{"string":"최근 4초 이내 적을 처치한 경우 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2937483991"],"fractured":["fractured.stat_2937483991"]}}} +{"ref":"+#% to Critical Strike Multiplier if you've Shattered an Enemy Recently","better":1,"matchers":[{"string":"최근 4초 이내 적을 산산이 조각내면 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_536929014"],"fractured":["fractured.stat_536929014"],"crafted":["crafted.stat_536929014"]}}} +{"ref":"+#% to Critical Strike Multiplier per 1% Chance to Block Attack Damage","better":1,"matchers":[{"string":"공격 피해 막기 확률 1%당 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_956384511"]}}} +{"ref":"+#% to Critical Strike Multiplier per 10 Strength on Unallocated Passives in Radius","better":1,"matchers":[{"string":"반경 내 할당되지 않은 패시브 스킬의 힘 10당 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1154827254"]}}} +{"ref":"+#% to Critical Strike Multiplier per Power Charge","better":1,"matchers":[{"string":"권능 충전 하나당 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_4164870816"]}}} +{"ref":"+#% to Critical Strike Multiplier while affected by Anger","better":1,"matchers":[{"string":"분노의 영향을 받는 동안 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3627458291"]}}} +{"ref":"+#% to Critical Strike Multiplier while affected by Precision","better":1,"matchers":[{"string":"정밀함의 영향을 받는 동안 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1817023621"]}}} +{"ref":"+#% to Critical Strike Multiplier while area is not in Lockdown\nPlayers have +#% to Critical Strike Multiplier while area is not in Lockdown","better":1,"matchers":[{"string":"지역이 폐쇄 중이 아닐 때 치명타 피해 배율 #%\n지역이 폐쇄 중이 아닐 때 플레이어의 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3128272024"],"fractured":["fractured.stat_3128272024"]}}} +{"ref":"+#% to Critical Strike Multiplier while Dual Wielding","better":1,"matchers":[{"string":"쌍수 장착 시 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2546185479"],"fractured":["fractured.stat_2546185479"]}}} +{"ref":"+#% to Critical Strike Multiplier with Axes","better":1,"matchers":[{"string":"도끼 사용 시 치명타 피해 배율 #%"}],"trade":{"ids":{"implicit":["implicit.stat_4219746989"]}}} +{"ref":"+#% to Critical Strike Multiplier with Bows","better":1,"matchers":[{"string":"활 사용 시 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1712221299"],"implicit":["implicit.stat_1712221299"],"fractured":["fractured.stat_1712221299"],"scourge":["scourge.stat_1712221299"]}}} +{"ref":"+#% to Critical Strike Multiplier with Claws","better":1,"matchers":[{"string":"클로 사용 시 치명타 피해 배율 #%"}],"trade":{"ids":{"implicit":["implicit.stat_2811834828"]}}} +{"ref":"+#% to Critical Strike Multiplier with Cold Skills","better":1,"matchers":[{"string":"냉기 스킬 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_915908446"],"fractured":["fractured.stat_915908446"]}}} +{"ref":"+#% to Critical Strike Multiplier with Daggers","better":1,"matchers":[{"string":"단검 사용 시 치명타 피해 배율 #%"}],"trade":{"ids":{"implicit":["implicit.stat_3998601568"]}}} +{"ref":"+#% to Critical Strike Multiplier with Elemental Skills","better":1,"matchers":[{"string":"원소 스킬 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1569407745"],"fractured":["fractured.stat_1569407745"]}}} +{"ref":"+#% to Critical Strike Multiplier with Fire Skills","better":1,"matchers":[{"string":"화염 스킬 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2307547323"],"fractured":["fractured.stat_2307547323"]}}} +{"ref":"+#% to Critical Strike Multiplier with Lightning Skills","better":1,"matchers":[{"string":"번개 스킬 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2441475928"],"fractured":["fractured.stat_2441475928"]}}} +{"ref":"+#% to Critical Strike Multiplier with Maces or Sceptres","better":1,"matchers":[{"string":"철퇴나 셉터 사용 시 치명타 피해 배율 #%"}],"trade":{"ids":{"implicit":["implicit.stat_458899422"]}}} +{"ref":"+#% to Critical Strike Multiplier with One Handed Melee Weapons","better":1,"matchers":[{"string":"한손 근접 무기 사용 시 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_670153687"],"fractured":["fractured.stat_670153687"]}}} +{"ref":"+#% to Critical Strike Multiplier with Staves","better":1,"matchers":[{"string":"지팡이 사용 시 치명타 피해 배율 #%"}],"trade":{"ids":{"implicit":["implicit.stat_1474913037"]}}} +{"ref":"+#% to Critical Strike Multiplier with Swords","better":1,"matchers":[{"string":"검 사용 시 치명타 피해 배율 #%"}],"trade":{"ids":{"implicit":["implicit.stat_3114492047"]}}} +{"ref":"+#% to Critical Strike Multiplier with Two Handed Melee Weapons","better":1,"matchers":[{"string":"양손 근접 무기 사용 시 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_252507949"],"fractured":["fractured.stat_252507949"]}}} +{"ref":"+#% to Critical Strike Multiplier with Wands","better":1,"matchers":[{"string":"마법봉 사용 시 치명타 피해 배율 #%"}],"trade":{"ids":{"implicit":["implicit.stat_1241396104"]}}} +{"ref":"+#% to Damage over Time Multiplier","better":1,"matchers":[{"string":"지속 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3988349707"],"implicit":["implicit.stat_3988349707"],"fractured":["fractured.stat_3988349707"],"scourge":["scourge.stat_3988349707"]}}} +{"ref":"+#% to Damage over Time Multiplier for Ailments per Elder Item Equipped","better":1,"matchers":[{"string":"장착한 엘더 아이템 하나당 상태 이상 지속 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2212731469"]}}} +{"ref":"+#% to Damage over Time Multiplier for Bleeding","better":1,"matchers":[{"string":"출혈 지속 피해 배율 #%"}],"trade":{"ids":{"implicit":["implicit.stat_1423749435"]}}} +{"ref":"+#% to Damage over Time Multiplier for Bleeding from Critical Strikes","better":1,"matchers":[{"string":"치명타로 주는 출혈 지속 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1454648374"]}}} +{"ref":"+#% to Damage over Time Multiplier for Bleeding from Hits with this Weapon","better":1,"matchers":[{"string":"이 무기로 적 명중 시 출혈 지속 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_951608773"],"fractured":["fractured.stat_951608773"]}}} +{"ref":"+#% to Damage over Time Multiplier for Bleeding per Frenzy Charge","better":1,"matchers":[{"string":"격분 충전 하나당 출혈 지속 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2583415204"]}}} +{"ref":"+#% to Damage over Time Multiplier for Poison from Critical Strikes during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 치명타로 주는 독 지속 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1691221049"]}}} +{"ref":"+#% to Damage over Time Multiplier for Poison inflicted with this Weapon","better":1,"matchers":[{"string":"이 무기로 유발한 독의 지속 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_4096656097"],"fractured":["fractured.stat_4096656097"]}}} +{"ref":"+#% to Damage over Time Multiplier for Poison per Frenzy Charge","better":1,"matchers":[{"string":"격분 충전 하나당 독 지속 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3504652942"]}}} +{"ref":"+#% to Damage over Time Multiplier if you've dealt a Critical Strike in the past 8 seconds","better":1,"matchers":[{"string":"지난 8초 이내에 치명타 명중 시 지속 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3203086927"]}}} +{"ref":"+#% to Damage over Time Multiplier per 10 Intelligence on Unallocated Passives in Radius","better":1,"matchers":[{"string":"반경 내 할당되지 않은 패시브 스킬의 지능 10당 지속 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1994121713"]}}} +{"ref":"+#% to Damage over Time Multiplier while affected by Malevolence","better":1,"matchers":[{"string":"악의의 영향을 받는 동안 지속 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2736708072"]}}} +{"ref":"+#% to Damage over Time Multiplier with Attack Skills","better":1,"matchers":[{"string":"공격 스킬의 지속 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_693959086"],"fractured":["fractured.stat_693959086"]}}} +{"ref":"+#% to Damage over Time Multiplier with Melee Weapon Attacks","better":1,"matchers":[{"string":"근접 무기 공격으로 주는 지속 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1867426121"]}}} +{"ref":"+#% to Elemental Resistances during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 원소 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3110554274"]}}} +{"ref":"+#% to Fire and Chaos Resistances","better":1,"matchers":[{"string":"화염 및 카오스 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_378817135"],"fractured":["fractured.stat_378817135"],"crafted":["crafted.stat_378817135"]}}} +{"ref":"+#% to Fire and Cold Resistances","better":1,"matchers":[{"string":"화염 및 냉기 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2915988346"],"implicit":["implicit.stat_2915988346"],"fractured":["fractured.stat_2915988346"],"crafted":["crafted.stat_2915988346"]}}} +{"ref":"+#% to Fire and Lightning Resistances","better":1,"matchers":[{"string":"화염 및 번개 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3441501978"],"implicit":["implicit.stat_3441501978"],"fractured":["fractured.stat_3441501978"],"crafted":["crafted.stat_3441501978"]}}} +{"ref":"+#% to Fire Damage over Time Multiplier","better":1,"matchers":[{"string":"지속 화염 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3382807662"],"implicit":["implicit.stat_3382807662"],"fractured":["fractured.stat_3382807662"],"scourge":["scourge.stat_3382807662"],"crafted":["crafted.stat_3382807662"]}}} +{"ref":"+#% to Fire Damage over Time Multiplier with Attack Skills","better":1,"matchers":[{"string":"공격 스킬의 지속 화염 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2139660169"],"fractured":["fractured.stat_2139660169"]}}} +{"ref":"+#% to Fire Resistance","better":1,"matchers":[{"string":"화염 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3372524247"],"implicit":["implicit.stat_3372524247"],"fractured":["fractured.stat_3372524247"],"scourge":["scourge.stat_3372524247"],"crafted":["crafted.stat_3372524247"]}}} +{"ref":"+#% to Fire Resistance when Socketed with a Red Gem","better":1,"matchers":[{"string":"붉은 젬 장착 시 화염 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3051845758"]}}} +{"ref":"+#% to Fire Resistance while affected by Herald of Ash","better":1,"matchers":[{"string":"재의 전령의 영향을 받는 동안 화염 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2675641469"]}}} +{"ref":"+#% to Fire Resistance while on Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태일 때 화염 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_38301299"]}}} +{"ref":"+#% to Global Critical Strike Multiplier","better":1,"matchers":[{"string":"일반 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3556824919"],"implicit":["implicit.stat_3556824919"],"fractured":["fractured.stat_3556824919"],"scourge":["scourge.stat_3556824919"],"crafted":["crafted.stat_3556824919"]}}} +{"ref":"+#% to Global Critical Strike Multiplier per Green Socket","better":1,"matchers":[{"string":"초록 홈 하나당 일반 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_35810390"]}}} +{"ref":"+#% to Ice Golem Elemental Resistances","better":1,"matchers":[{"string":"얼음 골렘 원소 저항 #%"}],"trade":{"ids":{"enchant":["enchant.stat_2520825974"]}}} +{"ref":"+#% to Lightning and Chaos Resistances","better":1,"matchers":[{"string":"번개 및 카오스 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3465022881"],"fractured":["fractured.stat_3465022881"],"crafted":["crafted.stat_3465022881"]}}} +{"ref":"+#% to Lightning Golem Elemental Resistances","better":1,"matchers":[{"string":"번개 골렘 원소 저항 #%"}],"trade":{"ids":{"enchant":["enchant.stat_2338484156"]}}} +{"ref":"+#% to Lightning Resistance","better":1,"matchers":[{"string":"번개 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1671376347"],"implicit":["implicit.stat_1671376347"],"fractured":["fractured.stat_1671376347"],"scourge":["scourge.stat_1671376347"],"crafted":["crafted.stat_1671376347"]}}} +{"ref":"+#% to Lightning Resistance when Socketed with a Blue Gem","better":1,"matchers":[{"string":"파란 젬 장착 시 번개 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_289814996"]}}} +{"ref":"+#% to Lightning Resistance while affected by Herald of Thunder","better":1,"matchers":[{"string":"천둥의 전령의 영향을 받는 동안 번개 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2687017988"]}}} +{"ref":"+#% to maximum Chance to Block Attack Damage","better":1,"matchers":[{"string":"공격 피해 막기 확률 최대치 #%"}],"trade":{"ids":{"explicit":["explicit.stat_4124805414"],"implicit":["implicit.stat_4124805414"],"fractured":["fractured.stat_4124805414"]}}} +{"ref":"+#% to maximum Chance to Block Spell Damage","better":1,"matchers":[{"string":"주문 피해 막기 확률 최대치 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2388574377"],"implicit":["implicit.stat_2388574377"],"fractured":["fractured.stat_2388574377"]}}} +{"ref":"+#% to maximum Chaos Resistance","better":1,"matchers":[{"string":"카오스 저항 최대치 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1301765461"],"implicit":["implicit.stat_1301765461"],"fractured":["fractured.stat_1301765461"],"scourge":["scourge.stat_1301765461"]}}} +{"ref":"+#% to maximum Cold Resistance","better":1,"matchers":[{"string":"냉기 저항 최대치 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3676141501"],"implicit":["implicit.stat_3676141501"],"fractured":["fractured.stat_3676141501"],"scourge":["scourge.stat_3676141501"]}}} +{"ref":"+#% to maximum Cold Resistance while affected by Herald of Ice","better":1,"matchers":[{"string":"얼음의 전령의 영향을 받는 동안 냉기 저항 최대치 #%"}],"trade":{"ids":{"explicit":["explicit.stat_950661692"]}}} +{"ref":"+#% to maximum Fire Resistance","better":1,"matchers":[{"string":"화염 저항 최대치 #%"}],"trade":{"ids":{"explicit":["explicit.stat_4095671657"],"implicit":["implicit.stat_4095671657"],"fractured":["fractured.stat_4095671657"],"scourge":["scourge.stat_4095671657"]}}} +{"ref":"+#% to maximum Fire Resistance while affected by Herald of Ash","better":1,"matchers":[{"string":"재의 전령의 영향을 받는 동안 화염 저항 최대치 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3716758077"]}}} +{"ref":"+#% to maximum Lightning Resistance","better":1,"matchers":[{"string":"번개 저항 최대치 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1011760251"],"implicit":["implicit.stat_1011760251"],"fractured":["fractured.stat_1011760251"],"scourge":["scourge.stat_1011760251"]}}} +{"ref":"+#% to maximum Lightning Resistance while affected by Herald of Thunder","better":1,"matchers":[{"string":"천둥의 전령의 영향을 받는 동안 번개 저항 최대치 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3259396413"]}}} +{"ref":"+#% to Maximum Quality","better":1,"matchers":[{"string":"최대 퀄리티 #%"}],"trade":{"ids":{"implicit":["implicit.stat_2039822488"]}}} +{"ref":"+#% to Melee Critical Strike Multiplier","better":1,"matchers":[{"string":"근접 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_4237442815"],"fractured":["fractured.stat_4237442815"]}}} +{"ref":"+#% to Melee Weapon Critical Strike Multiplier","better":1,"matchers":[{"string":"근접 무기 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_605218169"]}}} +{"ref":"+#% to Monster Critical Strike Multiplier","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터의 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_57326096"],"fractured":["fractured.stat_57326096"]}}} +{"ref":"+#% to Off Hand Critical Strike Chance","dp":true,"better":1,"matchers":[{"string":"보조 장비 치명타 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1757389331"]}}} +{"ref":"+#% to Off Hand Critical Strike Chance per 10 Maximum Energy Shield on Shield","dp":true,"better":1,"matchers":[{"string":"방패의 에너지 보호막 최대치 10당 보조 장비 치명타 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3285400610"]}}} +{"ref":"+#% to Off Hand Critical Strike Multiplier per\nMurderous Eye Jewel affecting you, up to a maximum of +100%","better":1,"matchers":[{"string":"자신에게 영향을 주는 살인적인 눈 주얼 하나당\n보조 장비 치명타 피해 배율 #%, 최대 +100%"}],"trade":{"ids":{"explicit":["explicit.stat_3699529133"]}}} +{"ref":"+#% to Off Hand Critical Strike Multiplier per 10 Maximum Energy Shield on Shield","better":1,"matchers":[{"string":"방패의 에너지 보호막 최대치 10당 보조 장비 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_240790947"]}}} +{"ref":"+#% to Physical Damage over Time Multiplier","better":1,"matchers":[{"string":"지속 물리 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1314617696"],"implicit":["implicit.stat_1314617696"],"fractured":["fractured.stat_1314617696"],"scourge":["scourge.stat_1314617696"],"crafted":["crafted.stat_1314617696"]}}} +{"ref":"+#% to Physical Damage over Time Multiplier with Attack Skills","better":1,"matchers":[{"string":"공격 스킬의 지속 물리 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_709768359"],"fractured":["fractured.stat_709768359"]}}} +{"ref":"+#% to Quality","better":1,"matchers":[{"string":"퀄리티 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2016708976"],"fractured":["fractured.stat_2016708976"],"crafted":["crafted.stat_2016708976"]}}} +{"ref":"+#% to Quality of all Skill Gems","better":1,"matchers":[{"string":"모든 스킬 젬 퀄리티 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3655769732"]}}} +{"ref":"+#% to Quality of Socketed AoE Gems","better":1,"matchers":[{"string":"장착된 효과 범위 젬 퀄리티 #%"}],"trade":{"ids":{"implicit":["implicit.stat_768982451"]}}} +{"ref":"+#% to Quality of Socketed Aura Gems","better":1,"matchers":[{"string":"장착된 오라 젬 퀄리티 #%"}],"trade":{"ids":{"implicit":["implicit.stat_2276941637"]}}} +{"ref":"+#% to Quality of Socketed Bow Gems","better":1,"matchers":[{"string":"장착된 활 젬 퀄리티 #%"}],"trade":{"ids":{"implicit":["implicit.stat_3280600715"]}}} +{"ref":"+#% to Quality of Socketed Chaos Gems","better":1,"matchers":[{"string":"장착된 카오스 젬 퀄리티 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2062835769"],"implicit":["implicit.stat_2062835769"]}}} +{"ref":"+#% to Quality of Socketed Cold Gems","better":1,"matchers":[{"string":"장착된 냉기 젬 퀄리티 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1164882313"],"implicit":["implicit.stat_1164882313"]}}} +{"ref":"+#% to Quality of Socketed Dexterity Gems","better":1,"matchers":[{"string":"장착된 민첩 젬 퀄리티 #%"}],"trade":{"ids":{"implicit":["implicit.stat_2877754099"]}}} +{"ref":"+#% to Quality of Socketed Fire Gems","better":1,"matchers":[{"string":"장착된 화염 젬 퀄리티 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3422008440"],"implicit":["implicit.stat_3422008440"]}}} +{"ref":"+#% to Quality of Socketed Gems","better":1,"matchers":[{"string":"장착된 젬 퀄리티 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3828613551"],"implicit":["implicit.stat_3828613551"],"fractured":["fractured.stat_3828613551"],"crafted":["crafted.stat_3828613551"]}}} +{"ref":"+#% to Quality of Socketed Intelligence Gems","better":1,"matchers":[{"string":"장착된 지능 젬 퀄리티 #%"}],"trade":{"ids":{"implicit":["implicit.stat_3174776455"]}}} +{"ref":"+#% to Quality of Socketed Lightning Gems","better":1,"matchers":[{"string":"장착된 번개 젬 퀄리티 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1065580342"],"implicit":["implicit.stat_1065580342"]}}} +{"ref":"+#% to Quality of Socketed Melee Gems","better":1,"matchers":[{"string":"장착된 근접 젬 퀄리티 #%"}],"trade":{"ids":{"implicit":["implicit.stat_1396421504"]}}} +{"ref":"+#% to Quality of Socketed Projectile Gems","better":1,"matchers":[{"string":"장착된 투사체 젬 퀄리티 #%"}],"trade":{"ids":{"implicit":["implicit.stat_2428621158"]}}} +{"ref":"+#% to Quality of Socketed Skill Gems","better":1,"matchers":[{"string":"장착된 스킬 젬의 퀄리티 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1325783255"]}}} +{"ref":"+#% to Quality of Socketed Strength Gems","better":1,"matchers":[{"string":"장착된 힘 젬 퀄리티 #%"}],"trade":{"ids":{"implicit":["implicit.stat_122841557"]}}} +{"ref":"+#% to Quality of Socketed Support Gems","better":1,"matchers":[{"string":"장착된 보조 젬 퀄리티 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1328548975"],"implicit":["implicit.stat_1328548975"],"fractured":["fractured.stat_1328548975"],"scourge":["scourge.stat_1328548975"]}}} +{"ref":"+#% to Raised Spectre Elemental Resistances","better":1,"matchers":[{"string":"소환한 망령 원소 저항 #%"}],"trade":{"ids":{"enchant":["enchant.stat_27640220"]}}} +{"ref":"+#% to Spell Critical Strike Chance","dp":true,"better":1,"matchers":[{"string":"주문 치명타 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_791835907"],"implicit":["implicit.stat_791835907"],"fractured":["fractured.stat_791835907"]}}} +{"ref":"+#% to Stone Golem Elemental Resistances","better":1,"matchers":[{"string":"돌 골렘 원소 저항 #%"}],"trade":{"ids":{"enchant":["enchant.stat_1601558321"]}}} +{"ref":"+#% to Unarmed Melee Attack Critical Strike Chance","dp":true,"better":1,"matchers":[{"string":"비무장 근접 공격 치명타 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3613173483"]}}} +{"ref":"+#% total Attack Speed","better":1,"matchers":[{"string":"총 공격 속도 +#% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_attack_speed"]}}} +{"ref":"+#% total Cast Speed","better":1,"matchers":[{"string":"총 시전 속도 +#% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_cast_speed"]}}} +{"ref":"+#% total Critical Strike Chance for Spells","better":1,"matchers":[{"string":"총 주문 치명타 확률 +#% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_critical_strike_chance_for_spells"]}}} +{"ref":"+#% total Elemental Resistance","better":1,"matchers":[{"string":"원소 저항력 총 +#% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_elemental_resistance"]}}} +{"ref":"+#% total Resistance","better":1,"matchers":[{"string":"총 저항 +#% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_resistance"]}}} +{"ref":"+#% total to all Elemental Resistances","better":1,"matchers":[{"string":"모든 원소 저항력 총 +#% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_all_elemental_resistances"]}}} +{"ref":"+#% total to Chaos Resistance","better":1,"matchers":[{"string":"카오스 저항 총 +#% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_chaos_resistance"]}}} +{"ref":"+#% total to Cold Resistance","better":1,"matchers":[{"string":"냉기 저항 총 +#% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_cold_resistance"]}}} +{"ref":"+#% total to Fire Resistance","better":1,"matchers":[{"string":"화염 저항 총 +#% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_fire_resistance"]}}} +{"ref":"+#% total to Lightning Resistance","better":1,"matchers":[{"string":"번개 저항 총 +#% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_lightning_resistance"]}}} +{"ref":"+1 to Level of Socketed Skill Gems per # Player Levels","better":1,"matchers":[{"string":"플레이어 #레벨당 장착된 스킬 젬 레벨 +1"}],"trade":{"ids":{"explicit":["explicit.stat_1435838855"]}}} +{"ref":"+1 to maximum Blade Flurry stages","better":1,"matchers":[{"string":"최대 질풍의 칼날 단계 +1"}],"trade":{"ids":{"enchant":["enchant.stat_865345996"]}}} +{"ref":"+1 to maximum number of Raised Zombies per # Strength","better":1,"matchers":[{"string":"힘 #당 소환 가능한 좀비 최대치 +1"}],"trade":{"ids":{"explicit":["explicit.stat_4056985119"]}}} +{"ref":"+40% to Maximum Effect of Shock","better":1,"matchers":[{"string":"감전의 최대 효과 +40%"}],"trade":{"ids":{"explicit":["explicit.stat_4007740198"]}}} +{"ref":"1 Added Passive Skill is Adrenaline","better":1,"matchers":[{"string":"아드레날린 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_4022743870"],"fractured":["fractured.stat_4022743870"]}}} +{"ref":"1 Added Passive Skill is Advance Guard","better":1,"matchers":[{"string":"선발대 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1625939562"],"fractured":["fractured.stat_1625939562"]}}} +{"ref":"1 Added Passive Skill is Aerialist","better":1,"matchers":[{"string":"공중 곡예 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3848677307"],"fractured":["fractured.stat_3848677307"]}}} +{"ref":"1 Added Passive Skill is Aerodynamics","better":1,"matchers":[{"string":"공기 역학 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_4120556534"],"fractured":["fractured.stat_4120556534"]}}} +{"ref":"1 Added Passive Skill is Agent of Destruction","better":1,"matchers":[{"string":"파괴의 요원 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3122491961"],"fractured":["fractured.stat_3122491961"]}}} +{"ref":"1 Added Passive Skill is Aggressive Defence","better":1,"matchers":[{"string":"공격적인 방어 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_4154008618"],"fractured":["fractured.stat_4154008618"]}}} +{"ref":"1 Added Passive Skill is Alchemist","better":1,"matchers":[{"string":"연금술사 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2912949210"],"fractured":["fractured.stat_2912949210"]}}} +{"ref":"1 Added Passive Skill is Ancestral Echo","better":1,"matchers":[{"string":"선대의 메아리 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_957679205"],"fractured":["fractured.stat_957679205"]}}} +{"ref":"1 Added Passive Skill is Ancestral Guidance","better":1,"matchers":[{"string":"선대의 인도 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2387747995"],"fractured":["fractured.stat_2387747995"]}}} +{"ref":"1 Added Passive Skill is Ancestral Inspiration","better":1,"matchers":[{"string":"선대의 영감 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_77045106"],"fractured":["fractured.stat_77045106"]}}} +{"ref":"1 Added Passive Skill is Ancestral Might","better":1,"matchers":[{"string":"선대의 완력 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3998316"],"fractured":["fractured.stat_3998316"]}}} +{"ref":"1 Added Passive Skill is Ancestral Preservation","better":1,"matchers":[{"string":"선대의 보전 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3746703776"]}}} +{"ref":"1 Added Passive Skill is Ancestral Reach","better":1,"matchers":[{"string":"선대의 능력 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3294884567"],"fractured":["fractured.stat_3294884567"]}}} +{"ref":"1 Added Passive Skill is Antifreeze","better":1,"matchers":[{"string":"동결 방지 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2622946553"],"fractured":["fractured.stat_2622946553"]}}} +{"ref":"1 Added Passive Skill is Antivenom","better":1,"matchers":[{"string":"독소 방지 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_774369953"],"fractured":["fractured.stat_774369953"]}}} +{"ref":"1 Added Passive Skill is Arcane Adept","better":1,"matchers":[{"string":"비전 권위자 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_393565679"],"fractured":["fractured.stat_393565679"]}}} +{"ref":"1 Added Passive Skill is Arcane Heroism","better":1,"matchers":[{"string":"비전 영웅 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3901992019"],"fractured":["fractured.stat_3901992019"]}}} +{"ref":"1 Added Passive Skill is Arcane Pyrotechnics","better":1,"matchers":[{"string":"비전 불꽃 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2043503530"]}}} +{"ref":"1 Added Passive Skill is Arcing Shot","better":1,"matchers":[{"string":"전호 사격 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3212859169"],"fractured":["fractured.stat_3212859169"]}}} +{"ref":"1 Added Passive Skill is Assert Dominance","better":1,"matchers":[{"string":"지배력 행사 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_4222265138"],"fractured":["fractured.stat_4222265138"]}}} +{"ref":"1 Added Passive Skill is Astonishing Affliction","better":1,"matchers":[{"string":"경이적인 고통 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2428334013"]}}} +{"ref":"1 Added Passive Skill is Basics of Pain","better":1,"matchers":[{"string":"고통의 밑바닥 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3084359503"],"fractured":["fractured.stat_3084359503"]}}} +{"ref":"1 Added Passive Skill is Battle-Hardened","better":1,"matchers":[{"string":"전투 단련 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_4188581520"],"fractured":["fractured.stat_4188581520"]}}} +{"ref":"1 Added Passive Skill is Battlefield Dominator","better":1,"matchers":[{"string":"전장의 지배자 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1499057234"],"fractured":["fractured.stat_1499057234"]}}} +{"ref":"1 Added Passive Skill is Blacksmith","better":1,"matchers":[{"string":"대장장이 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1127706436"],"fractured":["fractured.stat_1127706436"]}}} +{"ref":"1 Added Passive Skill is Blanketed Snow","better":1,"matchers":[{"string":"내려앉은 눈 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1085167979"],"fractured":["fractured.stat_1085167979"]}}} +{"ref":"1 Added Passive Skill is Blast-Freeze","better":1,"matchers":[{"string":"폭발-동결 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_693808153"],"fractured":["fractured.stat_693808153"]}}} +{"ref":"1 Added Passive Skill is Blessed","better":1,"matchers":[{"string":"축성 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_775689239"],"fractured":["fractured.stat_775689239"]}}} +{"ref":"1 Added Passive Skill is Blessed Rebirth","better":1,"matchers":[{"string":"신성한 부활 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1424794574"],"fractured":["fractured.stat_1424794574"]}}} +{"ref":"1 Added Passive Skill is Blizzard Caller","better":1,"matchers":[{"string":"눈보라 소환사 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3758712376"],"fractured":["fractured.stat_3758712376"]}}} +{"ref":"1 Added Passive Skill is Blood Artist","better":1,"matchers":[{"string":"피 예술가 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2284771334"]}}} +{"ref":"1 Added Passive Skill is Bloodscent","better":1,"matchers":[{"string":"혈향 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3967765261"],"fractured":["fractured.stat_3967765261"]}}} +{"ref":"1 Added Passive Skill is Blowback","better":1,"matchers":[{"string":"역류 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1612414696"],"fractured":["fractured.stat_1612414696"]}}} +{"ref":"1 Added Passive Skill is Bodyguards","better":1,"matchers":[{"string":"호위병 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_791125124"],"fractured":["fractured.stat_791125124"]}}} +{"ref":"1 Added Passive Skill is Born of Chaos","better":1,"matchers":[{"string":"혼돈의 탄생 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2449392400"],"fractured":["fractured.stat_2449392400"]}}} +{"ref":"1 Added Passive Skill is Brand Loyalty","better":1,"matchers":[{"string":"충성의 방향 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3198006994"],"fractured":["fractured.stat_3198006994"]}}} +{"ref":"1 Added Passive Skill is Brewed for Potency","better":1,"matchers":[{"string":"잠재력 발산 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3250272113"],"fractured":["fractured.stat_3250272113"]}}} +{"ref":"1 Added Passive Skill is Broadside","better":1,"matchers":[{"string":"측면 공격 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2205982416"],"fractured":["fractured.stat_2205982416"]}}} +{"ref":"1 Added Passive Skill is Brush with Death","better":1,"matchers":[{"string":"스치는 죽음 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2900833792"],"fractured":["fractured.stat_2900833792"]}}} +{"ref":"1 Added Passive Skill is Brutal Infamy","better":1,"matchers":[{"string":"잔인한 악명 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2068574831"],"fractured":["fractured.stat_2068574831"]}}} +{"ref":"1 Added Passive Skill is Burden Projection","better":1,"matchers":[{"string":"괴로운 예감 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2008682345"],"fractured":["fractured.stat_2008682345"]}}} +{"ref":"1 Added Passive Skill is Burning Bright","better":1,"matchers":[{"string":"불타는 광채 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_4199056048"],"fractured":["fractured.stat_4199056048"]}}} +{"ref":"1 Added Passive Skill is Calamitous","better":1,"matchers":[{"string":"환란 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3359207393"],"fractured":["fractured.stat_3359207393"]}}} +{"ref":"1 Added Passive Skill is Call to the Slaughter","better":1,"matchers":[{"string":"살육자 호출 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3317068522"],"fractured":["fractured.stat_3317068522"]}}} +{"ref":"1 Added Passive Skill is Capacitor","better":1,"matchers":[{"string":"축전기 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_4025536654"],"fractured":["fractured.stat_4025536654"]}}} +{"ref":"1 Added Passive Skill is Careful Handling","better":1,"matchers":[{"string":"세심한 취급 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_456502758"],"fractured":["fractured.stat_456502758"]}}} +{"ref":"1 Added Passive Skill is Chilling Presence","better":1,"matchers":[{"string":"차가운 존재 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2834490860"]}}} +{"ref":"1 Added Passive Skill is Chip Away","better":1,"matchers":[{"string":"누그러짐 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_968069586"],"fractured":["fractured.stat_968069586"]}}} +{"ref":"1 Added Passive Skill is Circling Oblivion","better":1,"matchers":[{"string":"돌고 도는 망각 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2129392647"],"fractured":["fractured.stat_2129392647"]}}} +{"ref":"1 Added Passive Skill is Clarity of Purpose","better":1,"matchers":[{"string":"명료한 목적 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_684087686"],"fractured":["fractured.stat_684087686"]}}} +{"ref":"1 Added Passive Skill is Cold Conduction","better":1,"matchers":[{"string":"냉기 전도 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1274505521"]}}} +{"ref":"1 Added Passive Skill is Cold to the Core","better":1,"matchers":[{"string":"파고드는 추위 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_744783843"],"fractured":["fractured.stat_744783843"]}}} +{"ref":"1 Added Passive Skill is Cold-Blooded Killer","better":1,"matchers":[{"string":"냉혹한 살해자 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_836566759"],"fractured":["fractured.stat_836566759"]}}} +{"ref":"1 Added Passive Skill is Combat Rhythm","better":1,"matchers":[{"string":"전투 리듬 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3122505794"],"fractured":["fractured.stat_3122505794"]}}} +{"ref":"1 Added Passive Skill is Compound Injury","better":1,"matchers":[{"string":"복합 부상 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_4018305528"]}}} +{"ref":"1 Added Passive Skill is Conjured Wall","better":1,"matchers":[{"string":"상상의 벽 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_4105031548"],"fractured":["fractured.stat_4105031548"]}}} +{"ref":"1 Added Passive Skill is Conservation of Energy","better":1,"matchers":[{"string":"에너지 보존 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2083777017"]}}} +{"ref":"1 Added Passive Skill is Cooked Alive","better":1,"matchers":[{"string":"기진맥진 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2938895712"],"fractured":["fractured.stat_2938895712"]}}} +{"ref":"1 Added Passive Skill is Corrosive Elements","better":1,"matchers":[{"string":"부식성 원소 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1777139212"],"fractured":["fractured.stat_1777139212"]}}} +{"ref":"1 Added Passive Skill is Cremator","better":1,"matchers":[{"string":"소각로 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1153801980"],"fractured":["fractured.stat_1153801980"]}}} +{"ref":"1 Added Passive Skill is Cry Wolf","better":1,"matchers":[{"string":"양치기 소년 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1821748178"]}}} +{"ref":"1 Added Passive Skill is Cult-Leader","better":1,"matchers":[{"string":"교주 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2026112251"]}}} +{"ref":"1 Added Passive Skill is Daring Ideas","better":1,"matchers":[{"string":"대담한 사고 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2534405517"],"fractured":["fractured.stat_2534405517"]}}} +{"ref":"1 Added Passive Skill is Dark Ideation","better":1,"matchers":[{"string":"음울한 관념 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1603621602"],"fractured":["fractured.stat_1603621602"]}}} +{"ref":"1 Added Passive Skill is Dark Messenger","better":1,"matchers":[{"string":"어둠 전달자 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3784610129"],"fractured":["fractured.stat_3784610129"]}}} +{"ref":"1 Added Passive Skill is Darting Movements","better":1,"matchers":[{"string":"쏜살같은 이동 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_846491278"],"fractured":["fractured.stat_846491278"]}}} +{"ref":"1 Added Passive Skill is Deadly Repartee","better":1,"matchers":[{"string":"신랄한 말재간 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1013470938"],"fractured":["fractured.stat_1013470938"]}}} +{"ref":"1 Added Passive Skill is Deep Chill","better":1,"matchers":[{"string":"짙은 오한 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1703766309"],"fractured":["fractured.stat_1703766309"]}}} +{"ref":"1 Added Passive Skill is Destructive Aspect","better":1,"matchers":[{"string":"파괴적인 위상 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3860179422"],"fractured":["fractured.stat_3860179422"]}}} +{"ref":"1 Added Passive Skill is Devastator","better":1,"matchers":[{"string":"파괴자 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3711553948"],"fractured":["fractured.stat_3711553948"]}}} +{"ref":"1 Added Passive Skill is Disciples","better":1,"matchers":[{"string":"신봉자 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3177526694"]}}} +{"ref":"1 Added Passive Skill is Disease Vector","better":1,"matchers":[{"string":"질병 매개 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_183591019"],"fractured":["fractured.stat_183591019"]}}} +{"ref":"1 Added Passive Skill is Disorienting Display","better":1,"matchers":[{"string":"혼란스러운 과시 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3206911230"],"fractured":["fractured.stat_3206911230"]}}} +{"ref":"1 Added Passive Skill is Disorienting Wounds","better":1,"matchers":[{"string":"혼란스러운 상처 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3351136461"],"fractured":["fractured.stat_3351136461"]}}} +{"ref":"1 Added Passive Skill is Distilled Perfection","better":1,"matchers":[{"string":"응축된 완벽 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3652138990"],"fractured":["fractured.stat_3652138990"]}}} +{"ref":"1 Added Passive Skill is Doedre's Apathy","better":1,"matchers":[{"string":"도이드리의 무관심 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1381945089"],"fractured":["fractured.stat_1381945089"]}}} +{"ref":"1 Added Passive Skill is Doedre's Gluttony","better":1,"matchers":[{"string":"도이드리의 폭식 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2695848124"],"fractured":["fractured.stat_2695848124"]}}} +{"ref":"1 Added Passive Skill is Doedre's Spite","better":1,"matchers":[{"string":"도이드리의 악의 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_462115791"],"fractured":["fractured.stat_462115791"]}}} +{"ref":"1 Added Passive Skill is Doryani's Lesson","better":1,"matchers":[{"string":"도리아니의 교훈 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_228455793"],"fractured":["fractured.stat_228455793"]}}} +{"ref":"1 Added Passive Skill is Dragon Hunter","better":1,"matchers":[{"string":"용 사냥꾼 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1038955006"],"fractured":["fractured.stat_1038955006"]}}} +{"ref":"1 Added Passive Skill is Dread March","better":1,"matchers":[{"string":"공포의 행진 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3087667389"],"fractured":["fractured.stat_3087667389"]}}} +{"ref":"1 Added Passive Skill is Drive the Destruction","better":1,"matchers":[{"string":"파괴의 원동력 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1911162866"],"fractured":["fractured.stat_1911162866"]}}} +{"ref":"1 Added Passive Skill is Eldritch Inspiration","better":1,"matchers":[{"string":"섬뜩한 영감 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3737604164"],"fractured":["fractured.stat_3737604164"]}}} +{"ref":"1 Added Passive Skill is Electric Presence","better":1,"matchers":[{"string":"전기의 존재 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3950683692"],"fractured":["fractured.stat_3950683692"]}}} +{"ref":"1 Added Passive Skill is Elegant Form","better":1,"matchers":[{"string":"고상한 형태 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_289714529"],"fractured":["fractured.stat_289714529"]}}} +{"ref":"1 Added Passive Skill is Empowered Envoy","better":1,"matchers":[{"string":"전권 대사 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2032453153"],"fractured":["fractured.stat_2032453153"]}}} +{"ref":"1 Added Passive Skill is Endbringer","better":1,"matchers":[{"string":"종말 인도자 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2150878631"]}}} +{"ref":"1 Added Passive Skill is Enduring Composure","better":1,"matchers":[{"string":"지속되는 평정 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2043284086"],"fractured":["fractured.stat_2043284086"]}}} +{"ref":"1 Added Passive Skill is Enduring Focus","better":1,"matchers":[{"string":"지속되는 집중 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2522970386"]}}} +{"ref":"1 Added Passive Skill is Enduring Ward","better":1,"matchers":[{"string":"지속되는 수호 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_252724319"],"fractured":["fractured.stat_252724319"]}}} +{"ref":"1 Added Passive Skill is Energy From Naught","better":1,"matchers":[{"string":"무한 동력 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2195518432"],"fractured":["fractured.stat_2195518432"]}}} +{"ref":"1 Added Passive Skill is Essence Rush","better":1,"matchers":[{"string":"정수의 습격 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1096136223"],"fractured":["fractured.stat_1096136223"]}}} +{"ref":"1 Added Passive Skill is Eternal Suffering","better":1,"matchers":[{"string":"영원한 괴로움 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2144634814"]}}} +{"ref":"1 Added Passive Skill is Evil Eye","better":1,"matchers":[{"string":"사악한 눈 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_156080652","explicit.stat_4291066912"],"fractured":["fractured.stat_156080652","fractured.stat_4291066912"]}}} +{"ref":"1 Added Passive Skill is Expansive Might","better":1,"matchers":[{"string":"팽창하는 힘 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_394918362"],"fractured":["fractured.stat_394918362"]}}} +{"ref":"1 Added Passive Skill is Expendability","better":1,"matchers":[{"string":"소모성 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2020075345"]}}} +{"ref":"1 Added Passive Skill is Expert Sabotage","better":1,"matchers":[{"string":"본격적인 방해 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2084371547"]}}} +{"ref":"1 Added Passive Skill is Exploit Weakness","better":1,"matchers":[{"string":"약점 이용 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_50129423"],"fractured":["fractured.stat_50129423"]}}} +{"ref":"1 Added Passive Skill is Explosive Force","better":1,"matchers":[{"string":"폭발력 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2017927451"],"fractured":["fractured.stat_2017927451"]}}} +{"ref":"1 Added Passive Skill is Exposure Therapy","better":1,"matchers":[{"string":"노출 치료 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_131358113"],"fractured":["fractured.stat_131358113"]}}} +{"ref":"1 Added Passive Skill is Eye of the Storm","better":1,"matchers":[{"string":"태풍의 눈 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3818661553"],"fractured":["fractured.stat_3818661553"]}}} +{"ref":"1 Added Passive Skill is Eye to Eye","better":1,"matchers":[{"string":"눈에는 눈 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_392942015"],"fractured":["fractured.stat_392942015"]}}} +{"ref":"1 Added Passive Skill is Fan of Blades","better":1,"matchers":[{"string":"칼날 부채 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2484082827"],"fractured":["fractured.stat_2484082827"]}}} +{"ref":"1 Added Passive Skill is Fan the Flames","better":1,"matchers":[{"string":"불난 집 부채질 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2918755450"],"fractured":["fractured.stat_2918755450"]}}} +{"ref":"1 Added Passive Skill is Fasting","better":1,"matchers":[{"string":"금식 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_37078857"],"fractured":["fractured.stat_37078857"]}}} +{"ref":"1 Added Passive Skill is Fearsome Warrior","better":1,"matchers":[{"string":"무시무시한 전사 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3134222965"],"fractured":["fractured.stat_3134222965"]}}} +{"ref":"1 Added Passive Skill is Feast of Flesh","better":1,"matchers":[{"string":"육체의 연회 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2396755365"]}}} +{"ref":"1 Added Passive Skill is Feasting Fiends","better":1,"matchers":[{"string":"연회의 마귀 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_383245807"],"fractured":["fractured.stat_383245807"]}}} +{"ref":"1 Added Passive Skill is Feed the Fury","better":1,"matchers":[{"string":"광분 조장 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3944525413"],"fractured":["fractured.stat_3944525413"]}}} +{"ref":"1 Added Passive Skill is Fettle","better":1,"matchers":[{"string":"원기 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1353571444"],"fractured":["fractured.stat_1353571444"]}}} +{"ref":"1 Added Passive Skill is Fire Attunement","better":1,"matchers":[{"string":"불의 조율 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3188756614"],"fractured":["fractured.stat_3188756614"]}}} +{"ref":"1 Added Passive Skill is Flexible Sentry","better":1,"matchers":[{"string":"유순한 보초 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_982290947"],"fractured":["fractured.stat_982290947"]}}} +{"ref":"1 Added Passive Skill is Flow of Life","better":1,"matchers":[{"string":"생의 흐름 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2350430215"],"fractured":["fractured.stat_2350430215"]}}} +{"ref":"1 Added Passive Skill is Follow-Through","better":1,"matchers":[{"string":"마무리 작업 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3984980429"],"fractured":["fractured.stat_3984980429"]}}} +{"ref":"1 Added Passive Skill is Force Multiplier","better":1,"matchers":[{"string":"전력 배가 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1904581068"],"fractured":["fractured.stat_1904581068"]}}} +{"ref":"1 Added Passive Skill is Frantic Aspect","better":1,"matchers":[{"string":"광기의 위상 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_792262925"],"fractured":["fractured.stat_792262925"]}}} +{"ref":"1 Added Passive Skill is Fuel the Fight","better":1,"matchers":[{"string":"전투 장려 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3599340381"],"fractured":["fractured.stat_3599340381"]}}} +{"ref":"1 Added Passive Skill is Furious Assault","better":1,"matchers":[{"string":"분개한 공격 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3415827027"],"fractured":["fractured.stat_3415827027"]}}} +{"ref":"1 Added Passive Skill is Genius","better":1,"matchers":[{"string":"천재 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2763732093"],"fractured":["fractured.stat_2763732093"]}}} +{"ref":"1 Added Passive Skill is Gladiator's Fortitude","better":1,"matchers":[{"string":"검투사의 기백 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1591995797"],"fractured":["fractured.stat_1591995797"]}}} +{"ref":"1 Added Passive Skill is Graceful Execution","better":1,"matchers":[{"string":"품위 있는 처형 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1903496649"],"fractured":["fractured.stat_1903496649"]}}} +{"ref":"1 Added Passive Skill is Grand Design","better":1,"matchers":[{"string":"위대한 설계 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2350900742"],"fractured":["fractured.stat_2350900742"]}}} +{"ref":"1 Added Passive Skill is Grim Oath","better":1,"matchers":[{"string":"엄숙한 서약 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2194205899"],"fractured":["fractured.stat_2194205899"]}}} +{"ref":"1 Added Passive Skill is Guerilla Tactics","better":1,"matchers":[{"string":"유격 전술 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1882129725"],"fractured":["fractured.stat_1882129725"]}}} +{"ref":"1 Added Passive Skill is Haemorrhage","better":1,"matchers":[{"string":"실혈 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_72129119"],"fractured":["fractured.stat_72129119"]}}} +{"ref":"1 Added Passive Skill is Haunting Shout","better":1,"matchers":[{"string":"소름 돋는 비명 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1080363357"],"fractured":["fractured.stat_1080363357"]}}} +{"ref":"1 Added Passive Skill is Heart of Iron","better":1,"matchers":[{"string":"무쇠 심장 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1483358825"]}}} +{"ref":"1 Added Passive Skill is Heavy Hitter","better":1,"matchers":[{"string":"묵직한 타격가 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3640252904"],"fractured":["fractured.stat_3640252904"]}}} +{"ref":"1 Added Passive Skill is Heraldry","better":1,"matchers":[{"string":"문장학 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3274270612"],"fractured":["fractured.stat_3274270612"]}}} +{"ref":"1 Added Passive Skill is Hex Breaker","better":1,"matchers":[{"string":"사술 파괴자 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2341828832"]}}} +{"ref":"1 Added Passive Skill is Hibernator","better":1,"matchers":[{"string":"동면 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2294919888"],"fractured":["fractured.stat_2294919888"]}}} +{"ref":"1 Added Passive Skill is Hit and Run","better":1,"matchers":[{"string":"치고 빠지기 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2665170385"],"fractured":["fractured.stat_2665170385"]}}} +{"ref":"1 Added Passive Skill is Holistic Health","better":1,"matchers":[{"string":"총체적 건강 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3667965781"],"fractured":["fractured.stat_3667965781"]}}} +{"ref":"1 Added Passive Skill is Holy Conquest","better":1,"matchers":[{"string":"신성한 점령 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3898572660"],"fractured":["fractured.stat_3898572660"]}}} +{"ref":"1 Added Passive Skill is Hound's Mark","better":1,"matchers":[{"string":"사냥개의 징표 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_555800967"],"fractured":["fractured.stat_555800967"]}}} +{"ref":"1 Added Passive Skill is Hulking Corpses","better":1,"matchers":[{"string":"육중한 시신 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3467711950"],"fractured":["fractured.stat_3467711950"]}}} +{"ref":"1 Added Passive Skill is Improvisor","better":1,"matchers":[{"string":"임시변통 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_810219447"],"fractured":["fractured.stat_810219447"]}}} +{"ref":"1 Added Passive Skill is Insatiable Killer","better":1,"matchers":[{"string":"만족을 모르는 살인자 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3904970959"],"fractured":["fractured.stat_3904970959"]}}} +{"ref":"1 Added Passive Skill is Inspired Oppression","better":1,"matchers":[{"string":"탁월한 억압 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3872380586"],"fractured":["fractured.stat_3872380586"]}}} +{"ref":"1 Added Passive Skill is Insulated","better":1,"matchers":[{"string":"격리 상태 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_212648555"],"fractured":["fractured.stat_212648555"]}}} +{"ref":"1 Added Passive Skill is Introspection","better":1,"matchers":[{"string":"자기 성찰 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1309218394"],"fractured":["fractured.stat_1309218394"]}}} +{"ref":"1 Added Passive Skill is Invigorating Portents","better":1,"matchers":[{"string":"상쾌한 조짐 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2262034536"]}}} +{"ref":"1 Added Passive Skill is Iron Breaker","better":1,"matchers":[{"string":"무쇠 분쇄기 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3258653591"],"fractured":["fractured.stat_3258653591"]}}} +{"ref":"1 Added Passive Skill is Lasting Impression","better":1,"matchers":[{"string":"불변하는 인상 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_426715778"],"fractured":["fractured.stat_426715778"]}}} +{"ref":"1 Added Passive Skill is Lead By Example","better":1,"matchers":[{"string":"솔선수범 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2195406641"],"fractured":["fractured.stat_2195406641"]}}} +{"ref":"1 Added Passive Skill is Life from Death","better":1,"matchers":[{"string":"죽음에서 피어난 삶 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2337273077"],"fractured":["fractured.stat_2337273077"]}}} +{"ref":"1 Added Passive Skill is Liquid Inspiration","better":1,"matchers":[{"string":"흐르는 영감 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1094635162"],"fractured":["fractured.stat_1094635162"]}}} +{"ref":"1 Added Passive Skill is Lord of Drought","better":1,"matchers":[{"string":"가뭄의 군주 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2055715585"],"fractured":["fractured.stat_2055715585"]}}} +{"ref":"1 Added Passive Skill is Low Tolerance","better":1,"matchers":[{"string":"낮은 역치 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3989400244"]}}} +{"ref":"1 Added Passive Skill is Mage Bane","better":1,"matchers":[{"string":"마법사의 파멸 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_684155617"],"fractured":["fractured.stat_684155617"]}}} +{"ref":"1 Added Passive Skill is Mage Hunter","better":1,"matchers":[{"string":"마법사 사냥꾼 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2118664144"],"fractured":["fractured.stat_2118664144"]}}} +{"ref":"1 Added Passive Skill is Magnifier","better":1,"matchers":[{"string":"확대경 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2886441936"],"fractured":["fractured.stat_2886441936"]}}} +{"ref":"1 Added Passive Skill is Martial Mastery","better":1,"matchers":[{"string":"무예 통달 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1015189426"],"fractured":["fractured.stat_1015189426"]}}} +{"ref":"1 Added Passive Skill is Martial Momentum","better":1,"matchers":[{"string":"전투 기세 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2978494217"],"fractured":["fractured.stat_2978494217"]}}} +{"ref":"1 Added Passive Skill is Martial Prowess","better":1,"matchers":[{"string":"무예 기량 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1152182658"],"fractured":["fractured.stat_1152182658"]}}} +{"ref":"1 Added Passive Skill is Master of Command","better":1,"matchers":[{"string":"지휘의 달인 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3257074218"],"fractured":["fractured.stat_3257074218"]}}} +{"ref":"1 Added Passive Skill is Master of Fire","better":1,"matchers":[{"string":"불의 주인 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1462135249"],"fractured":["fractured.stat_1462135249"]}}} +{"ref":"1 Added Passive Skill is Master of the Maelstrom","better":1,"matchers":[{"string":"소용돌이의 달인 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_185592058"],"fractured":["fractured.stat_185592058"]}}} +{"ref":"1 Added Passive Skill is Master the Fundamentals","better":1,"matchers":[{"string":"기본기의 달인 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3585232432"],"fractured":["fractured.stat_3585232432"]}}} +{"ref":"1 Added Passive Skill is Mender's Wellspring","better":1,"matchers":[{"string":"땜장이의 원천 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_4291434923"],"fractured":["fractured.stat_4291434923"]}}} +{"ref":"1 Added Passive Skill is Militarism","better":1,"matchers":[{"string":"상무 정신 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_4154709486"],"fractured":["fractured.stat_4154709486"]}}} +{"ref":"1 Added Passive Skill is Mindfulness","better":1,"matchers":[{"string":"열린 사고 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2595115995"],"fractured":["fractured.stat_2595115995"]}}} +{"ref":"1 Added Passive Skill is Misery Everlasting","better":1,"matchers":[{"string":"영원히 계속되는 불행 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3832665876"]}}} +{"ref":"1 Added Passive Skill is Mob Mentality","better":1,"matchers":[{"string":"집단 사고 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1048879642"],"fractured":["fractured.stat_1048879642"]}}} +{"ref":"1 Added Passive Skill is Molten One's Mark","better":1,"matchers":[{"string":"녹아내린 신의 징표 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3875792669"],"fractured":["fractured.stat_3875792669"]}}} +{"ref":"1 Added Passive Skill is Mortifying Aspect","better":1,"matchers":[{"string":"괴사의 위상 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3881737087"],"fractured":["fractured.stat_3881737087"]}}} +{"ref":"1 Added Passive Skill is Mystical Ward","better":1,"matchers":[{"string":"신비한 수호 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2314111938"],"fractured":["fractured.stat_2314111938"]}}} +{"ref":"1 Added Passive Skill is Natural Vigour","better":1,"matchers":[{"string":"자연의 활력 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_510654792"],"fractured":["fractured.stat_510654792"]}}} +{"ref":"1 Added Passive Skill is Non-Flammable","better":1,"matchers":[{"string":"비-가연성 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_731840035"],"fractured":["fractured.stat_731840035"]}}} +{"ref":"1 Added Passive Skill is Numbing Elixir","better":1,"matchers":[{"string":"마비의 묘약 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1028754276"],"fractured":["fractured.stat_1028754276"]}}} +{"ref":"1 Added Passive Skill is One with the Shield","better":1,"matchers":[{"string":"방패 소지 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1976069869"]}}} +{"ref":"1 Added Passive Skill is Openness","better":1,"matchers":[{"string":"진솔함 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_633943719"],"fractured":["fractured.stat_633943719"]}}} +{"ref":"1 Added Passive Skill is Opportunistic Fusilade","better":1,"matchers":[{"string":"우발적 연속 공격 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_4281625943"],"fractured":["fractured.stat_4281625943"]}}} +{"ref":"1 Added Passive Skill is Overlord","better":1,"matchers":[{"string":"대군주 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2250169390"],"fractured":["fractured.stat_2250169390"]}}} +{"ref":"1 Added Passive Skill is Overshock","better":1,"matchers":[{"string":"과충격 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3777170562"],"fractured":["fractured.stat_3777170562"]}}} +{"ref":"1 Added Passive Skill is Overwhelming Malice","better":1,"matchers":[{"string":"압도적인 악의 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_770408103"],"fractured":["fractured.stat_770408103"]}}} +{"ref":"1 Added Passive Skill is Paralysis","better":1,"matchers":[{"string":"마비 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_4272503233"],"fractured":["fractured.stat_4272503233"]}}} +{"ref":"1 Added Passive Skill is Peace Amidst Chaos","better":1,"matchers":[{"string":"망중한 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1734275536"]}}} +{"ref":"1 Added Passive Skill is Peak Vigour","better":1,"matchers":[{"string":"절정의 활기 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1722821275"],"fractured":["fractured.stat_1722821275"]}}} +{"ref":"1 Added Passive Skill is Phlebotomist","better":1,"matchers":[{"string":"사혈자 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3057154383"]}}} +{"ref":"1 Added Passive Skill is Powerful Assault","better":1,"matchers":[{"string":"강력한 공격 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1005475168"],"fractured":["fractured.stat_1005475168"]}}} +{"ref":"1 Added Passive Skill is Powerful Ward","better":1,"matchers":[{"string":"강력한 수호 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_164032122"]}}} +{"ref":"1 Added Passive Skill is Practiced Caster","better":1,"matchers":[{"string":"숙련된 시전자 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3435403756"],"fractured":["fractured.stat_3435403756"]}}} +{"ref":"1 Added Passive Skill is Precise Focus","better":1,"matchers":[{"string":"틀림없는 집중 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2913581789"],"fractured":["fractured.stat_2913581789"]}}} +{"ref":"1 Added Passive Skill is Precise Retaliation","better":1,"matchers":[{"string":"정확한 보복 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2335364359"],"fractured":["fractured.stat_2335364359"]}}} +{"ref":"1 Added Passive Skill is Pressure Points","better":1,"matchers":[{"string":"급소 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3391925584"],"fractured":["fractured.stat_3391925584"]}}} +{"ref":"1 Added Passive Skill is Primordial Bond","better":1,"matchers":[{"string":"태고의 유대 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_622362787"],"fractured":["fractured.stat_622362787"]}}} +{"ref":"1 Added Passive Skill is Prismatic Carapace","better":1,"matchers":[{"string":"분광 등딱지 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3492924480"],"fractured":["fractured.stat_3492924480"]}}} +{"ref":"1 Added Passive Skill is Prismatic Dance","better":1,"matchers":[{"string":"분광의 춤 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1149662934"]}}} +{"ref":"1 Added Passive Skill is Prismatic Heart","better":1,"matchers":[{"string":"분광 심장 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2342448236"],"fractured":["fractured.stat_2342448236"]}}} +{"ref":"1 Added Passive Skill is Prodigious Defence","better":1,"matchers":[{"string":"비범한 방어 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1705633890"],"fractured":["fractured.stat_1705633890"]}}} +{"ref":"1 Added Passive Skill is Provocateur","better":1,"matchers":[{"string":"선동가 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_814369372"],"fractured":["fractured.stat_814369372"]}}} +{"ref":"1 Added Passive Skill is Pure Agony","better":1,"matchers":[{"string":"순수한 고통 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1507409483"],"fractured":["fractured.stat_1507409483"]}}} +{"ref":"1 Added Passive Skill is Pure Aptitude","better":1,"matchers":[{"string":"타고난 재능 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3509724289"],"fractured":["fractured.stat_3509724289"]}}} +{"ref":"1 Added Passive Skill is Pure Guile","better":1,"matchers":[{"string":"타고난 교활함 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1621496909"],"fractured":["fractured.stat_1621496909"]}}} +{"ref":"1 Added Passive Skill is Pure Might","better":1,"matchers":[{"string":"타고난 힘 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2372915005"],"fractured":["fractured.stat_2372915005"]}}} +{"ref":"1 Added Passive Skill is Purposeful Harbinger","better":1,"matchers":[{"string":"단호한 선구자 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_507505131"],"fractured":["fractured.stat_507505131"]}}} +{"ref":"1 Added Passive Skill is Quick and Deadly","better":1,"matchers":[{"string":"빠르고 치명적 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2169345147"],"fractured":["fractured.stat_2169345147"]}}} +{"ref":"1 Added Passive Skill is Quick Getaway","better":1,"matchers":[{"string":"신속한 도주 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1626818279"],"fractured":["fractured.stat_1626818279"]}}} +{"ref":"1 Added Passive Skill is Rattling Bellow","better":1,"matchers":[{"string":"기운찬 고함 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_4288473380"],"fractured":["fractured.stat_4288473380"]}}} +{"ref":"1 Added Passive Skill is Raze and Pillage","better":1,"matchers":[{"string":"파괴와 약탈 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1038897629"],"fractured":["fractured.stat_1038897629"]}}} +{"ref":"1 Added Passive Skill is Readiness","better":1,"matchers":[{"string":"준비 태세 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_845306697"],"fractured":["fractured.stat_845306697"]}}} +{"ref":"1 Added Passive Skill is Remarkable","better":1,"matchers":[{"string":"비범함 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_691431951"],"fractured":["fractured.stat_691431951"]}}} +{"ref":"1 Added Passive Skill is Rend","better":1,"matchers":[{"string":"산산조각 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_4263287206"]}}} +{"ref":"1 Added Passive Skill is Renewal","better":1,"matchers":[{"string":"새로운 시작 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3607300552"],"fractured":["fractured.stat_3607300552"]}}} +{"ref":"1 Added Passive Skill is Repeater","better":1,"matchers":[{"string":"연발 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2233272527"],"fractured":["fractured.stat_2233272527"]}}} +{"ref":"1 Added Passive Skill is Replenishing Presence","better":1,"matchers":[{"string":"차오르는 존재감 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1496043857"],"fractured":["fractured.stat_1496043857"]}}} +{"ref":"1 Added Passive Skill is Righteous Path","better":1,"matchers":[{"string":"정의로운 길 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2620267328"],"fractured":["fractured.stat_2620267328"]}}} +{"ref":"1 Added Passive Skill is Riot Queller","better":1,"matchers":[{"string":"폭동 진압자 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_254194892"],"fractured":["fractured.stat_254194892"]}}} +{"ref":"1 Added Passive Skill is Rot-Resistant","better":1,"matchers":[{"string":"부식 저항 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_713945233"],"fractured":["fractured.stat_713945233"]}}} +{"ref":"1 Added Passive Skill is Rote Reinforcement","better":1,"matchers":[{"string":"암기 강화 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2478282326"]}}} +{"ref":"1 Added Passive Skill is Rotten Claws","better":1,"matchers":[{"string":"썩은 발톱 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2289610642"],"fractured":["fractured.stat_2289610642"]}}} +{"ref":"1 Added Passive Skill is Run Through","better":1,"matchers":[{"string":"달음박질 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1488030420"],"fractured":["fractured.stat_1488030420"]}}} +{"ref":"1 Added Passive Skill is Sadist","better":1,"matchers":[{"string":"가학 성애자 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3638731729"],"fractured":["fractured.stat_3638731729"]}}} +{"ref":"1 Added Passive Skill is Sage","better":1,"matchers":[{"string":"현자 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_478147593"],"fractured":["fractured.stat_478147593"]}}} +{"ref":"1 Added Passive Skill is Sap Psyche","better":1,"matchers":[{"string":"무너지는 영체 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_715786975"],"fractured":["fractured.stat_715786975"]}}} +{"ref":"1 Added Passive Skill is Savage Response","better":1,"matchers":[{"string":"야만적인 응답 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_4222635921"],"fractured":["fractured.stat_4222635921"]}}} +{"ref":"1 Added Passive Skill is Savour the Moment","better":1,"matchers":[{"string":"찰나의 음미 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3539175001"],"fractured":["fractured.stat_3539175001"]}}} +{"ref":"1 Added Passive Skill is Scintillating Idea","better":1,"matchers":[{"string":"번득이는 사고 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2589589781"],"fractured":["fractured.stat_2589589781"]}}} +{"ref":"1 Added Passive Skill is Seal Mender","better":1,"matchers":[{"string":"봉인 땜질 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_876846990"],"fractured":["fractured.stat_876846990"]}}} +{"ref":"1 Added Passive Skill is Second Skin","better":1,"matchers":[{"string":"덧씌운 피부 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2773515950"],"fractured":["fractured.stat_2773515950"]}}} +{"ref":"1 Added Passive Skill is Seeker Runes","better":1,"matchers":[{"string":"탐색자의 룬 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2261237498"]}}} +{"ref":"1 Added Passive Skill is Self-Control","better":1,"matchers":[{"string":"자기 절제 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3025453294"],"fractured":["fractured.stat_3025453294"]}}} +{"ref":"1 Added Passive Skill is Self-Fulfilling Prophecy","better":1,"matchers":[{"string":"자기 실현적 예언 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2644533453"]}}} +{"ref":"1 Added Passive Skill is Septic Spells","better":1,"matchers":[{"string":"부패성 주문 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_4290522695"],"fractured":["fractured.stat_4290522695"]}}} +{"ref":"1 Added Passive Skill is Set and Forget","better":1,"matchers":[{"string":"자동 수행 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1101250813"],"fractured":["fractured.stat_1101250813"]}}} +{"ref":"1 Added Passive Skill is Shifting Shadow","better":1,"matchers":[{"string":"변화하는 그림자 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1476913894"],"fractured":["fractured.stat_1476913894"]}}} +{"ref":"1 Added Passive Skill is Shrieking Bolts","better":1,"matchers":[{"string":"효시 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2783012144"],"fractured":["fractured.stat_2783012144"]}}} +{"ref":"1 Added Passive Skill is Skeletal Atrophy","better":1,"matchers":[{"string":"해골의 위축 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1290215329"],"fractured":["fractured.stat_1290215329"]}}} +{"ref":"1 Added Passive Skill is Skullbreaker","better":1,"matchers":[{"string":"해골 분쇄자 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_315697256"],"fractured":["fractured.stat_315697256"]}}} +{"ref":"1 Added Passive Skill is Sleepless Sentries","better":1,"matchers":[{"string":"쉬지 않는 보초 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3993957711"],"fractured":["fractured.stat_3993957711"]}}} +{"ref":"1 Added Passive Skill is Smite the Weak","better":1,"matchers":[{"string":"약자 징벌 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_540300548"],"fractured":["fractured.stat_540300548"]}}} +{"ref":"1 Added Passive Skill is Smoking Remains","better":1,"matchers":[{"string":"그을린 유해 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2322980282"],"fractured":["fractured.stat_2322980282"]}}} +{"ref":"1 Added Passive Skill is Snaring Spirits","better":1,"matchers":[{"string":"꾀어내는 혼 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3319205340"]}}} +{"ref":"1 Added Passive Skill is Snowstorm","better":1,"matchers":[{"string":"눈 태풍 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1595367309"],"fractured":["fractured.stat_1595367309"]}}} +{"ref":"1 Added Passive Skill is Special Reserve","better":1,"matchers":[{"string":"특별한 점유 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_4235300427"],"fractured":["fractured.stat_4235300427"]}}} +{"ref":"1 Added Passive Skill is Spiked Concoction","better":1,"matchers":[{"string":"약을 탄 물약 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3372255769"],"fractured":["fractured.stat_3372255769"]}}} +{"ref":"1 Added Passive Skill is Spiteful Presence","better":1,"matchers":[{"string":"악의에 찬 존재 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1134501245"],"fractured":["fractured.stat_1134501245"]}}} +{"ref":"1 Added Passive Skill is Spring Back","better":1,"matchers":[{"string":"재주 넘기 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3603695769"],"fractured":["fractured.stat_3603695769"]}}} +{"ref":"1 Added Passive Skill is Steady Torment","better":1,"matchers":[{"string":"꾸준한 격통 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3500334379"],"fractured":["fractured.stat_3500334379"]}}} +{"ref":"1 Added Passive Skill is Stoic Focus","better":1,"matchers":[{"string":"엄격한 집중 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1088949570"],"fractured":["fractured.stat_1088949570"]}}} +{"ref":"1 Added Passive Skill is Storm Drinker","better":1,"matchers":[{"string":"태풍 흡수자 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2087561637"],"fractured":["fractured.stat_2087561637"]}}} +{"ref":"1 Added Passive Skill is Storm's Hand","better":1,"matchers":[{"string":"태풍의 손 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1122051203"],"fractured":["fractured.stat_1122051203"]}}} +{"ref":"1 Added Passive Skill is Stormrider","better":1,"matchers":[{"string":"태풍의 기수 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_889728548"],"fractured":["fractured.stat_889728548"]}}} +{"ref":"1 Added Passive Skill is Streamlined","better":1,"matchers":[{"string":"간소화 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1397498432"],"fractured":["fractured.stat_1397498432"]}}} +{"ref":"1 Added Passive Skill is Strike Leader","better":1,"matchers":[{"string":"타격대장 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_282062371"],"fractured":["fractured.stat_282062371"]}}} +{"ref":"1 Added Passive Skill is Stubborn Student","better":1,"matchers":[{"string":"완고한 연구자 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2383914651"],"fractured":["fractured.stat_2383914651"]}}} +{"ref":"1 Added Passive Skill is Student of Decay","better":1,"matchers":[{"string":"부패 연구자 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3202667190"],"fractured":["fractured.stat_3202667190"]}}} +{"ref":"1 Added Passive Skill is Sublime Form","better":1,"matchers":[{"string":"숭고한 형상 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2251304016"],"fractured":["fractured.stat_2251304016"]}}} +{"ref":"1 Added Passive Skill is Sublime Sensation","better":1,"matchers":[{"string":"숭고한 감각 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1364858171"],"fractured":["fractured.stat_1364858171"]}}} +{"ref":"1 Added Passive Skill is Surefooted Striker","better":1,"matchers":[{"string":"굳건한 공격 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3410752193"],"fractured":["fractured.stat_3410752193"]}}} +{"ref":"1 Added Passive Skill is Surging Vitality","better":1,"matchers":[{"string":"솟구치는 활력 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2410501331"],"fractured":["fractured.stat_2410501331"]}}} +{"ref":"1 Added Passive Skill is Surprise Sabotage","better":1,"matchers":[{"string":"기습적인 방해 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3051562738"],"fractured":["fractured.stat_3051562738"]}}} +{"ref":"1 Added Passive Skill is Tempered Arrowheads","better":1,"matchers":[{"string":"단조한 화살촉 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2631806437"],"fractured":["fractured.stat_2631806437"]}}} +{"ref":"1 Added Passive Skill is Tempt the Storm","better":1,"matchers":[{"string":"태풍 유혹 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_348883745"],"fractured":["fractured.stat_348883745"]}}} +{"ref":"1 Added Passive Skill is Thaumophage","better":1,"matchers":[{"string":"마석 항체 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_177215332"],"fractured":["fractured.stat_177215332"]}}} +{"ref":"1 Added Passive Skill is Thunderstruck","better":1,"matchers":[{"string":"벼락 직격 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1741700339"],"fractured":["fractured.stat_1741700339"]}}} +{"ref":"1 Added Passive Skill is Titanic Swings","better":1,"matchers":[{"string":"거대한 휘두르기 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2930275641"],"fractured":["fractured.stat_2930275641"]}}} +{"ref":"1 Added Passive Skill is Touch of Cruelty","better":1,"matchers":[{"string":"잔혹한 손길 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2780712583"],"fractured":["fractured.stat_2780712583"]}}} +{"ref":"1 Added Passive Skill is Towering Threat","better":1,"matchers":[{"string":"맹렬한 위협 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3536778624"],"fractured":["fractured.stat_3536778624"]}}} +{"ref":"1 Added Passive Skill is Uncompromising","better":1,"matchers":[{"string":"타협 불가 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_382360671"],"fractured":["fractured.stat_382360671"]}}} +{"ref":"1 Added Passive Skill is Unholy Grace","better":1,"matchers":[{"string":"불경한 은총 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_4186213466"],"fractured":["fractured.stat_4186213466"]}}} +{"ref":"1 Added Passive Skill is Unrestrained Focus","better":1,"matchers":[{"string":"제어되지 않은 집중 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1570474940"]}}} +{"ref":"1 Added Passive Skill is Unspeakable Gifts","better":1,"matchers":[{"string":"형언불가 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_729163974"],"fractured":["fractured.stat_729163974"]}}} +{"ref":"1 Added Passive Skill is Untouchable","better":1,"matchers":[{"string":"최강 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2758966888"],"fractured":["fractured.stat_2758966888"]}}} +{"ref":"1 Added Passive Skill is Unwavering Focus","better":1,"matchers":[{"string":"변함없는 집중 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_367638058"]}}} +{"ref":"1 Added Passive Skill is Unwaveringly Evil","better":1,"matchers":[{"string":"변함없는 악 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2788982914"],"fractured":["fractured.stat_2788982914"]}}} +{"ref":"1 Added Passive Skill is Vast Power","better":1,"matchers":[{"string":"광대한 권능 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1996576560"],"fractured":["fractured.stat_1996576560"]}}} +{"ref":"1 Added Passive Skill is Veteran Defender","better":1,"matchers":[{"string":"노련한 방어 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_664010431"],"fractured":["fractured.stat_664010431"]}}} +{"ref":"1 Added Passive Skill is Vicious Bite","better":1,"matchers":[{"string":"포악한 이빨 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_882876854"],"fractured":["fractured.stat_882876854"]}}} +{"ref":"1 Added Passive Skill is Vicious Guard","better":1,"matchers":[{"string":"포악한 방어 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_4054656914"],"fractured":["fractured.stat_4054656914"]}}} +{"ref":"1 Added Passive Skill is Vicious Skewering","better":1,"matchers":[{"string":"포악한 꿰기 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_567971948"],"fractured":["fractured.stat_567971948"]}}} +{"ref":"1 Added Passive Skill is Victim Maker","better":1,"matchers":[{"string":"제물 제조기 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1936135020"],"fractured":["fractured.stat_1936135020"]}}} +{"ref":"1 Added Passive Skill is Vile Reinvigoration","better":1,"matchers":[{"string":"끔찍한 재활 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_647201233"],"fractured":["fractured.stat_647201233"]}}} +{"ref":"1 Added Passive Skill is Vital Focus","better":1,"matchers":[{"string":"필수적인 집중 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2134141047"]}}} +{"ref":"1 Added Passive Skill is Vivid Hues","better":1,"matchers":[{"string":"선명한 빛깔 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3957006524"]}}} +{"ref":"1 Added Passive Skill is Volatile Presence","better":1,"matchers":[{"string":"불안정한 존재 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2350668735"],"fractured":["fractured.stat_2350668735"]}}} +{"ref":"1 Added Passive Skill is Wall of Muscle","better":1,"matchers":[{"string":"근육 벽 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1363668533"],"fractured":["fractured.stat_1363668533"]}}} +{"ref":"1 Added Passive Skill is Warning Call","better":1,"matchers":[{"string":"경고 신호 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_578355556"],"fractured":["fractured.stat_578355556"]}}} +{"ref":"1 Added Passive Skill is Wasting Affliction","better":1,"matchers":[{"string":"쓸모없는 고통 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2066820199"],"fractured":["fractured.stat_2066820199"]}}} +{"ref":"1 Added Passive Skill is Weight Advantage","better":1,"matchers":[{"string":"중량의 우위 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2244243943"],"fractured":["fractured.stat_2244243943"]}}} +{"ref":"1 Added Passive Skill is Wicked Pall","better":1,"matchers":[{"string":"사악한 휘장 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1616734644"],"fractured":["fractured.stat_1616734644"]}}} +{"ref":"1 Added Passive Skill is Widespread Destruction","better":1,"matchers":[{"string":"광범위 파괴 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1678643716"],"fractured":["fractured.stat_1678643716"]}}} +{"ref":"1 Added Passive Skill is Will Shaper","better":1,"matchers":[{"string":"의지 형성자 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1162352537"],"fractured":["fractured.stat_1162352537"]}}} +{"ref":"1 Added Passive Skill is Wind-up","better":1,"matchers":[{"string":"마무리 일격 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1938661964"],"fractured":["fractured.stat_1938661964"]}}} +{"ref":"1 Added Passive Skill is Winter Prowler","better":1,"matchers":[{"string":"겨울 배회자 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_755881431"],"fractured":["fractured.stat_755881431"]}}} +{"ref":"1 Added Passive Skill is Wizardry","better":1,"matchers":[{"string":"기묘한 마법 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3078065247"],"fractured":["fractured.stat_3078065247"]}}} +{"ref":"1 Added Passive Skill is Wound Aggravation","better":1,"matchers":[{"string":"상처 악화 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_69078820"],"fractured":["fractured.stat_69078820"]}}} +{"ref":"1 Added Passive Skill is Wrapped in Flame","better":1,"matchers":[{"string":"휘감은 화염 패시브 스킬 1개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_241783558"],"fractured":["fractured.stat_241783558"]}}} +{"ref":"1% increased Armour per # Strength when in Off Hand","better":1,"matchers":[{"string":"보조 장비로 장착 시 힘 #당 방어도 1% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2192181096"]}}} +{"ref":"1% increased Attack Damage per 200 of the lowest of Armour and Evasion Rating","better":1,"matchers":[{"string":"방어도 및 회피 중 가장 낮은 값 200당 공격 피해 1% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1358422215"]}}} +{"ref":"1% increased Claw Physical Damage per # Dexterity Allocated in Radius","better":1,"matchers":[{"string":"반경 내 할당된 민첩 #당 클로 물리 피해 1% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1619923327"]}}} +{"ref":"1% increased Damage per # Strength when in Main Hand","better":1,"matchers":[{"string":"주 무기로 장착 시 힘 #당 피해 1% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_679194784"],"fractured":["fractured.stat_679194784"]}}} +{"ref":"1% increased Evasion Rating per # Dexterity Allocated in Radius","better":1,"matchers":[{"string":"반경 내 할당된 민첩 #당 회피 1% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_4113852051"]}}} +{"ref":"1% increased Melee Physical Damage with Unarmed Attacks per # Dexterity Allocated in Radius","better":1,"matchers":[{"string":"반경 내 할당된 민첩 #당 비무장 공격의 근접 물리 피해 1% 증가"},{"string":"반경 내 할당된 민첩 #당 비무장 공격의 근접 물리 피해 1% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_915233352"]}}} +{"ref":"1% increased Movement Speed per # Evasion Rating, up to 75%","better":1,"matchers":[{"string":"회피 #당 이동 속도 1% 증가, 최대 75%"}],"trade":{"ids":{"explicit":["explicit.stat_2591020064"]}}} +{"ref":"1% increased Rarity of Items found per # Rampage Kills","better":1,"matchers":[{"string":"광란 처치 #당 발견하는 아이템 희귀도 1% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_4260403588"],"fractured":["fractured.stat_4260403588"]}}} +{"ref":"1% less Damage Taken per # Dexterity","better":1,"matchers":[{"string":"민첩 #당 받는 피해 1% 감폭"}],"trade":{"ids":{"implicit":["implicit.stat_824762042"]}}} +{"ref":"1% less Damage Taken per # Intelligence","better":1,"matchers":[{"string":"지능 #당 받는 피해 1% 감폭"}],"trade":{"ids":{"implicit":["implicit.stat_2874488491"]}}} +{"ref":"1% less Damage Taken per # Strength","better":1,"matchers":[{"string":"힘 #당 받는 피해 1% 감폭"}],"trade":{"ids":{"implicit":["implicit.stat_1871491972"]}}} +{"ref":"35% chance to avoid being Stunned for each Herald Buff affecting you","better":1,"matchers":[{"string":"자신에게 영향을 주는 전령 버프 하나당 35%의 확률로 기절 회피"}],"trade":{"ids":{"explicit":["explicit.stat_1493090598"]}}} +{"ref":"Acrobatics","better":1,"matchers":[{"string":"곡예"}],"trade":{"ids":{"explicit":["explicit.stat_383557755"],"fractured":["fractured.stat_383557755"],"scourge":["scourge.stat_383557755"]}}} +{"ref":"Action Speed cannot be modified to below #% of base value","better":1,"matchers":[{"string":"동작 속도가 기본 수치 #% 밑으로 내려가지 않음"}],"trade":{"ids":{"scourge":["scourge.stat_770490590"]}}} +{"ref":"Action Speed cannot be modified to below Base Value","better":1,"matchers":[{"string":"동작 속도가 기본 수치 밑으로 내려가지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_628716294"]}}} +{"ref":"Action Speed cannot be modified to below Base Value if you've cast Temporal Chains in the past 10 seconds","better":1,"matchers":[{"string":"최근 10초 이내 시간의 사슬을 시전한 경우 동작 속도가 기본 수치 밑으로 내려가지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_3616500790"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Area of Effect","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 효과 범위 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_713280739"],"fractured":["fractured.stat_713280739"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Area of Effect of Aura Skills","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 오라 스킬의 효과 범위 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2642917409"],"fractured":["fractured.stat_2642917409"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Area of Effect of Hex Skills","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 사술 스킬의 효과 범위 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2138819920"],"fractured":["fractured.stat_2138819920"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed while affected by a Herald","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 전령의 영향을 받는 동안 공격 및 시전 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3262895685"],"fractured":["fractured.stat_3262895685"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Chaos Skills","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 카오스 스킬의 공격 및 시전 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3692167527"],"fractured":["fractured.stat_3692167527"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Cold Skills","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 냉기 스킬의 공격 및 시전 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2054530657"],"fractured":["fractured.stat_2054530657"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Elemental Skills","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 원소 스킬의 공격 및 시전 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2699118751"],"fractured":["fractured.stat_2699118751"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Fire Skills","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 화염 스킬의 공격 및 시전 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1849042097"],"fractured":["fractured.stat_1849042097"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Lightning Skills","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 번개 스킬의 공격 및 시전 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_201731102"],"fractured":["fractured.stat_201731102"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Physical Skills","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 물리 스킬의 공격 및 시전 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1903097619"],"fractured":["fractured.stat_1903097619"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Attack Speed","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 공격 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1411310186"],"fractured":["fractured.stat_1411310186"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Brand Attachment range","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 낙인 부착 범위 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2265469693"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Cast Speed","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 시전 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1195353227"],"fractured":["fractured.stat_1195353227"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Damage","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 주는 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1719521705"],"fractured":["fractured.stat_1719521705"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Damage over Time","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 지속 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2401834120"],"fractured":["fractured.stat_2401834120"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Duration of Elemental Ailments on Enemies","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 적에게 적용되는 원소 상태 이상 지속시간 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3338465330"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Flask Charges gained","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 플라스크 충전량 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3187805501"],"fractured":["fractured.stat_3187805501"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Mana Regeneration Rate","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 마나 재생 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2474836297"],"fractured":["fractured.stat_2474836297"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Projectile Speed","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 투사체 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_679080252"],"fractured":["fractured.stat_679080252"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Totem Placement speed","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 토템 설치 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1588674629"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Trap and Mine Throwing Speed","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 덫과 지뢰 투척 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2135246244"],"fractured":["fractured.stat_2135246244"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Warcry Duration","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 함성 지속시간 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2596487673"]}}} +{"ref":"Added Small Passive Skills also grant: +# to All Attributes","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 모든 능력치 # 부여"}],"trade":{"ids":{"explicit":["explicit.stat_4036575250"],"fractured":["fractured.stat_4036575250"]}}} +{"ref":"Added Small Passive Skills also grant: +# to Armour","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 방어도 # 부여"}],"trade":{"ids":{"explicit":["explicit.stat_2554466725"],"fractured":["fractured.stat_2554466725"]}}} +{"ref":"Added Small Passive Skills also grant: +# to Dexterity","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 민첩 # 부여"}],"trade":{"ids":{"explicit":["explicit.stat_2090413987"],"fractured":["fractured.stat_2090413987"]}}} +{"ref":"Added Small Passive Skills also grant: +# to Evasion","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 회피 # 부여"}],"trade":{"ids":{"explicit":["explicit.stat_4100161067"],"fractured":["fractured.stat_4100161067"]}}} +{"ref":"Added Small Passive Skills also grant: +# to Intelligence","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 지능 # 부여"}],"trade":{"ids":{"explicit":["explicit.stat_724930776"],"fractured":["fractured.stat_724930776"]}}} +{"ref":"Added Small Passive Skills also grant: +# to Maximum Energy Shield","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 에너지 보호막 최대치 # 부여"}],"trade":{"ids":{"explicit":["explicit.stat_2643685329"],"fractured":["fractured.stat_2643685329"]}}} +{"ref":"Added Small Passive Skills also grant: +# to Maximum Life","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 최대 생명력 # 부여"}],"trade":{"ids":{"explicit":["explicit.stat_3819827377"],"fractured":["fractured.stat_3819827377"]}}} +{"ref":"Added Small Passive Skills also grant: +# to Maximum Mana","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 최대 마나 # 부여"}],"trade":{"ids":{"explicit":["explicit.stat_3994193163"],"fractured":["fractured.stat_3994193163"]}}} +{"ref":"Added Small Passive Skills also grant: +# to Strength","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 힘 # 부여"}],"trade":{"ids":{"explicit":["explicit.stat_3258414199"],"fractured":["fractured.stat_3258414199"]}}} +{"ref":"Added Small Passive Skills also grant: +#% to all Elemental Resistances","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 원소 저항 #% 부여"}],"trade":{"ids":{"explicit":["explicit.stat_2669029667"],"fractured":["fractured.stat_2669029667"]}}} +{"ref":"Added Small Passive Skills also grant: +#% to Chaos Resistance","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 카오스 저항 #% 부여"}],"trade":{"ids":{"explicit":["explicit.stat_1811604576"],"fractured":["fractured.stat_1811604576"]}}} +{"ref":"Added Small Passive Skills also grant: +#% to Cold Resistance","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 냉기 저항 #% 부여"}],"trade":{"ids":{"explicit":["explicit.stat_2709692542"],"fractured":["fractured.stat_2709692542"]}}} +{"ref":"Added Small Passive Skills also grant: +#% to Critical Strike Multiplier","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 치명타 피해 배율 #% 부여"}],"trade":{"ids":{"explicit":["explicit.stat_1926135629"],"fractured":["fractured.stat_1926135629"]}}} +{"ref":"Added Small Passive Skills also grant: +#% to Fire Resistance","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 화염 저항 #% 부여"}],"trade":{"ids":{"explicit":["explicit.stat_1790411851"],"fractured":["fractured.stat_1790411851"]}}} +{"ref":"Added Small Passive Skills also grant: +#% to Lightning Resistance","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 번개 저항 #% 부여"}],"trade":{"ids":{"explicit":["explicit.stat_2250780084"],"fractured":["fractured.stat_2250780084"]}}} +{"ref":"Added Small Passive Skills also grant: Channelling Skills have #% increased Attack and Cast Speed","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 집중 유지 스킬의 공격 및 시전 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3799759054"]}}} +{"ref":"Added Small Passive Skills also grant: Minions have #% increased Attack and Cast Speed","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 소환수의 공격 및 시전 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2310019673"],"fractured":["fractured.stat_2310019673"]}}} +{"ref":"Added Small Passive Skills also grant: Minions have #% increased Attack and Cast Speed while you are affected by a Herald","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 소환수가 전령의 영향을 받는 동안 공격 및 시전 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1948127742"],"fractured":["fractured.stat_1948127742"]}}} +{"ref":"Added Small Passive Skills also grant: Minions Regenerate #% of Life per Second","dp":true,"better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 1초마다 소환수 생명력의 #%만큼 소환수 생명력 재생"}],"trade":{"ids":{"explicit":["explicit.stat_542238572"],"fractured":["fractured.stat_542238572"]}}} +{"ref":"Added Small Passive Skills also grant: Regenerate #% of Life per Second","dp":true,"better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 1초마다 생명력의 #%만큼 재생"}],"trade":{"ids":{"explicit":["explicit.stat_3721672021"],"fractured":["fractured.stat_3721672021"]}}} +{"ref":"Added Small Passive Skills grant Nothing","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬이 아무것도 부여하지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_2557943734"]}}} +{"ref":"Added Small Passive Skills grant: #","better":0,"matchers":[{"string":"추가된 소형 패시브 스킬 효과: 도끼 공격으로 주는 적중 및 상태 이상 피해 12% 증가\n추가된 소형 패시브 스킬 효과: 검 공격으로 주는 적중 및 상태 이상 피해 12% 증가","value":1},{"string":"추가된 소형 패시브 스킬 효과: 주문 피해 10% 증가","value":10},{"string":"추가된 소형 패시브 스킬 효과: 원소 피해 10% 증가","value":11},{"string":"추가된 소형 패시브 스킬 효과: 물리 피해 12% 증가","value":12},{"string":"추가된 소형 패시브 스킬 효과: 화염 피해 12% 증가","value":13},{"string":"추가된 소형 패시브 스킬 효과: 번개 피해 12% 증가","value":14},{"string":"추가된 소형 패시브 스킬 효과: 냉기 피해 12% 증가","value":15},{"string":"추가된 소형 패시브 스킬 효과: 카오스 피해 12% 증가","value":16},{"string":"추가된 소형 패시브 스킬 효과: 소환수가 주는 피해 10% 증가","value":17},{"string":"추가된 소형 패시브 스킬 효과: 화상 피해 12% 증가","value":18},{"string":"추가된 소형 패시브 스킬 효과: 지속 카오스 피해 12% 증가","value":19},{"string":"추가된 소형 패시브 스킬 효과: 지팡이 공격으로 주는 적중 및 상태 이상 피해 12% 증가\n추가된 소형 패시브 스킬 효과: 철퇴나 셉터 공격으로 주는 적중 및 상태 이상 피해 12% 증가","value":2},{"string":"추가된 소형 패시브 스킬 효과: 지속 물리 피해 12% 증가","value":20},{"string":"추가된 소형 패시브 스킬 효과: 지속 냉기 피해 12% 증가","value":21},{"string":"추가된 소형 패시브 스킬 효과: 지속 피해 10% 증가","value":22},{"string":"추가된 소형 패시브 스킬 효과: 비-피해 상태 이상 효과 10% 증가","value":23},{"string":"추가된 소형 패시브 스킬 효과: 자신의 비-저주 오라 스킬 효과 3% 증가","value":24},{"string":"추가된 소형 패시브 스킬 효과: 전령의 영향을 받는 동안 피해 10% 증가","value":26},{"string":"추가된 소형 패시브 스킬 효과: 전령의 영향을 받는 동안 소환수가 주는 피해 10% 증가","value":27},{"string":"추가된 소형 패시브 스킬 효과: 전력 공격이 주는 피해 20% 증가","value":28},{"string":"추가된 소형 패시브 스킬 효과: 치명타 확률 15% 증가","value":29},{"string":"추가된 소형 패시브 스킬 효과: 클로 공격으로 주는 적중 및 상태 이상 피해 12% 증가\n추가된 소형 패시브 스킬 효과: 단검 공격으로 주는 적중 및 상태 이상 피해 12% 증가","value":3},{"string":"추가된 소형 패시브 스킬 효과: 소환수의 최대 생명력 12% 증가","value":30},{"string":"추가된 소형 패시브 스킬 효과: 범위 피해 10% 증가","value":31},{"string":"추가된 소형 패시브 스킬 효과: 투사체 피해 10% 증가","value":32},{"string":"추가된 소형 패시브 스킬 효과: 덫 피해 12% 증가\n추가된 소형 패시브 스킬 효과: 지뢰 피해 12% 증가","value":33},{"string":"추가된 소형 패시브 스킬 효과: 토템 피해 12% 증가","value":34},{"string":"추가된 소형 패시브 스킬 효과: 낙인 피해 12% 증가","value":35},{"string":"추가된 소형 패시브 스킬 효과: 집중 유지 스킬로 주는 피해 12% 증가","value":36},{"string":"추가된 소형 패시브 스킬 효과: 플라스크 효과 지속시간 6% 증가","value":37},{"string":"추가된 소형 패시브 스킬 효과: 플라스크로 회복하는 생명력 10% 증가\n추가된 소형 패시브 스킬 효과: 플라스크로 회복하는 마나 10% 증가","value":38},{"string":"추가된 소형 패시브 스킬 효과: 최대 생명력 4% 증가","value":39},{"string":"추가된 소형 패시브 스킬 효과: 활 사용 시 피해 12% 증가\n추가된 소형 패시브 스킬 효과: 활 스킬의 지속 피해 12% 증가","value":4},{"string":"추가된 소형 패시브 스킬 효과: 에너지 보호막 최대치 6% 증가","value":40},{"string":"추가된 소형 패시브 스킬 효과: 최대 마나 6% 증가","value":41},{"string":"추가된 소형 패시브 스킬 효과: 방어도 15% 증가","value":42},{"string":"추가된 소형 패시브 스킬 효과: 회피 15% 증가","value":43},{"string":"추가된 소형 패시브 스킬 효과: 공격 피해 막기 확률 +2%","value":44},{"string":"추가된 소형 패시브 스킬 효과: 2%의 확률로 주문 피해를 막아냄","value":45},{"string":"추가된 소형 패시브 스킬 효과: 화염 저항 +15%","value":46},{"string":"추가된 소형 패시브 스킬 효과: 냉기 저항 +15%","value":47},{"string":"추가된 소형 패시브 스킬 효과: 번개 저항 +15%","value":48},{"string":"추가된 소형 패시브 스킬 효과: 카오스 저항 +12%","value":49},{"string":"추가된 소형 패시브 스킬 효과: 마법봉 공격으로 주는 적중 및 상태 이상 피해 12% 증가","value":5},{"string":"추가된 소형 패시브 스킬 효과: 주문 피해 억제 확률 +4%","value":50},{"string":"추가된 소형 패시브 스킬 효과: 힘 +10","value":51},{"string":"추가된 소형 패시브 스킬 효과: 민첩 +10","value":52},{"string":"추가된 소형 패시브 스킬 효과: 지능 +10","value":53},{"string":"추가된 소형 패시브 스킬 효과: 스킬의 마나 점유 효율 6% 증가","value":54},{"string":"추가된 소형 패시브 스킬 효과: 플레이어가 시전하는 저주 효과 2% 증가","value":55},{"string":"추가된 소형 패시브 스킬 효과: 양손 무기 피해 12% 증가","value":6},{"string":"추가된 소형 패시브 스킬 효과: 쌍수 장착 시 공격 피해 12% 증가","value":7},{"string":"추가된 소형 패시브 스킬 효과: 방패를 들고 있는 동안 공격 피해 12% 증가","value":8},{"string":"추가된 소형 패시브 스킬 효과: 공격 피해 10% 증가","value":9}],"trade":{"ids":{"enchant":["enchant.stat_3948993189"]},"option":true}} +{"ref":"Added Small Passive Skills have #% increased Effect","better":1,"matchers":[{"string":"추가되는 소형 패시브 스킬의 효과 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2618549697"],"fractured":["fractured.stat_2618549697"]}}} +{"ref":"Adds # Jewel Socket Passive Skills","better":1,"matchers":[{"string":"주얼 슬롯 패시브 스킬 #개 추가"},{"string":"주얼 슬롯 패시브 스킬 1개 추가","value":1}],"trade":{"ids":{"explicit":["explicit.stat_247746531"]}}} +{"ref":"Adds # minimum Cold Damage to Spells per Power Charge","better":1,"matchers":[{"string":"권능 충전 하나당 주문 시전 시 냉기 피해 #~# 추가"},{"string":"권능 충전 하나당 주문 시전 시 최대 #의 냉기 피해 추가"},{"string":"권능 충전 하나당 주문 시전 시 최소 #의 냉기 피해 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3408048164"],"fractured":["fractured.stat_3408048164"]}}} +{"ref":"Adds # Passive Skills","better":-1,"matchers":[{"string":"패시브 스킬 #개 추가"},{"string":"패시브 스킬 1개 추가","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3086156145"],"enchant":["enchant.stat_3086156145"]}}} +{"ref":"Adds # Small Passive Skills which grant nothing","better":-1,"matchers":[{"string":"아무것도 부여하지 않는 소형 패시브 스킬 #개 추가"},{"string":"아무것도 부여하지 않는 소형 패시브 스킬 1개 추가","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1085446536"]}}} +{"ref":"Adds # to # Chaos Damage","better":1,"matchers":[{"string":"카오스 피해 #~# 추가"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_chaos_damage"],"explicit":["explicit.stat_2223678961","explicit.stat_3531280422"],"implicit":["implicit.stat_2223678961","implicit.stat_3531280422"],"fractured":["fractured.stat_2223678961"],"enchant":["enchant.stat_2223678961"],"scourge":["scourge.stat_2223678961"]}}} +{"ref":"Adds # to # Chaos Damage for each Curse on the Enemy","better":1,"matchers":[{"string":"적에게 적용된 저주 하나당 카오스 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_4294344579"]}}} +{"ref":"Adds # to # Chaos Damage for each Spider's Web on the Enemy","better":1,"matchers":[{"string":"적에게 적용된 거미줄 하나당 카오스 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_982177653"]}}} +{"ref":"Adds # to # Chaos Damage if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"최근 4초 이내 치명타 명중 시 카오스 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2523334466"],"fractured":["fractured.stat_2523334466"],"crafted":["crafted.stat_2523334466"]}}} +{"ref":"Adds # to # Chaos Damage if you've taken a Critical Strike Recently","better":1,"matchers":[{"string":"최근 4초 이내 치명타를 맞은 경우 카오스 피해 #~# 추가"}],"trade":{"ids":{"enchant":["enchant.stat_391609701"]}}} +{"ref":"Adds # to # Chaos Damage in Off Hand","better":1,"matchers":[{"string":"보조 장비로 사용 시 카오스 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3758293500"]}}} +{"ref":"Adds # to # Chaos Damage to Attacks","better":1,"matchers":[{"string":"공격 시 카오스 피해 #~# 추가"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_chaos_damage_to_attacks"],"explicit":["explicit.stat_674553446"],"implicit":["implicit.stat_674553446"],"fractured":["fractured.stat_674553446"],"crafted":["crafted.stat_674553446"]}}} +{"ref":"Adds # to # Chaos Damage to Attacks per 80 Strength","better":1,"matchers":[{"string":"공격 시 힘 80당 카오스 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_117885424"]}}} +{"ref":"Adds # to # Chaos Damage to Attacks while you have a Bestial Minion","better":1,"matchers":[{"string":"흉포한 소환수를 보유하는 동안 공격 시 카오스 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2152491486"]}}} +{"ref":"Adds # to # Chaos Damage to Spells","better":1,"matchers":[{"string":"주문 시전 시 카오스 피해 #~# 추가"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_chaos_damage_to_spells"],"explicit":["explicit.stat_2300399854"],"implicit":["implicit.stat_2300399854"],"fractured":["fractured.stat_2300399854"]}}} +{"ref":"Adds # to # Chaos Damage to Spells and Attacks during any Flask Effect","better":1,"matchers":[{"string":"아무 플라스크나 효과를 받는 동안 주문 및 공격 시 카오스 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3519268108"]}}} +{"ref":"Adds # to # Cold Damage","better":1,"matchers":[{"string":"냉기 피해 #~# 추가"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_cold_damage"],"explicit":["explicit.stat_1037193709","explicit.stat_2387423236"],"implicit":["implicit.stat_1037193709","implicit.stat_2387423236"],"fractured":["fractured.stat_1037193709","fractured.stat_2387423236"],"enchant":["enchant.stat_1037193709"],"scourge":["scourge.stat_1037193709"],"crafted":["crafted.stat_1037193709","crafted.stat_2387423236"]}}} +{"ref":"Adds # to # Cold Damage against Chilled Enemies","better":1,"matchers":[{"string":"냉각된 적에게 냉기 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3734640451"]}}} +{"ref":"Adds # to # Cold Damage against Chilled or Frozen Enemies","better":1,"matchers":[{"string":"냉각 또는 동결된 적에게 냉기 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2233361223"],"fractured":["fractured.stat_2233361223"]}}} +{"ref":"Adds # to # Cold Damage if you've been Hit Recently","better":1,"matchers":[{"string":"최근 4초 이내 피격된 경우 냉기 피해 #~# 추가"}],"trade":{"ids":{"enchant":["enchant.stat_884399432"]}}} +{"ref":"Adds # to # Cold Damage if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"최근 4초 이내 치명타 명중 시 냉기 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3370223014"],"fractured":["fractured.stat_3370223014"]}}} +{"ref":"Adds # to # Cold Damage in Off Hand","better":1,"matchers":[{"string":"보조 장비로 사용 시 냉기 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2109066258"]}}} +{"ref":"Adds # to # Cold Damage to Attacks","better":1,"matchers":[{"string":"공격 시 냉기 피해 #~# 추가"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_cold_damage_to_attacks"],"explicit":["explicit.stat_4067062424"],"implicit":["implicit.stat_4067062424"],"fractured":["fractured.stat_4067062424"],"crafted":["crafted.stat_4067062424"]}}} +{"ref":"Adds # to # Cold Damage to Attacks per 10 Dexterity","better":1,"matchers":[{"string":"민첩 10당 공격 시 냉기 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_769783486"],"fractured":["fractured.stat_769783486"]}}} +{"ref":"Adds # to # Cold Damage to Attacks with this Weapon per 10 Dexterity","better":1,"matchers":[{"string":"민첩 10당 이 무기 공격 시 냉기 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_149574107"],"implicit":["implicit.stat_149574107"],"fractured":["fractured.stat_149574107"]}}} +{"ref":"Adds # to # Cold Damage to Retaliation Skills","better":1,"matchers":[{"string":"보복 스킬에 냉기 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1109700751"]}}} +{"ref":"Adds # to # Cold Damage to Spells","better":1,"matchers":[{"string":"주문 시전 시 냉기 피해 #~# 추가"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_cold_damage_to_spells"],"explicit":["explicit.stat_2469416729"],"implicit":["implicit.stat_2469416729"],"fractured":["fractured.stat_2469416729"],"scourge":["scourge.stat_2469416729"],"crafted":["crafted.stat_2469416729"]}}} +{"ref":"Adds # to # Cold Damage to Spells and Attacks","better":1,"matchers":[{"string":"주문 및 공격 시 냉기 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1662717006"],"implicit":["implicit.stat_1662717006"]}}} +{"ref":"Adds # to # Cold Damage to Spells while no Life is Reserved","better":1,"matchers":[{"string":"생명력이 점유되지 않은 상태에서 주문 시전 시 냉기 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_897996059"]}}} +{"ref":"Adds # to # Cold Damage while affected by Hatred","better":1,"matchers":[{"string":"증오의 영향을 받는 동안 냉기 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2643562209"]}}} +{"ref":"Adds # to # Cold Damage while you have Avian's Might","better":1,"matchers":[{"string":"새의 힘을 보유하는 동안 냉기 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3485231932"]}}} +{"ref":"Adds # to # Damage","better":1,"matchers":[{"string":"# 피해에 # 추가 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_damage"]}}} +{"ref":"Adds # to # Damage to Attacks","better":1,"matchers":[{"string":"공격 시 # 피해에 # 추가 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_damage_to_attacks"]}}} +{"ref":"Adds # to # Damage to Spells","better":1,"matchers":[{"string":"주문 시전 시 # 피해에 # 추가 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_damage_to_spells"]}}} +{"ref":"Adds # to # Elemental Damage","better":1,"matchers":[{"string":"# 원소 피해에 # 추가 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_elemental_damage"]}}} +{"ref":"Adds # to # Elemental Damage to Attacks","better":1,"matchers":[{"string":"공격 시 # 원소 피해에 # 추가 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_elemental_damage_to_attacks"]}}} +{"ref":"Adds # to # Elemental Damage to Spells","better":1,"matchers":[{"string":"주문 시전 시 # 원소 피해에 # 추가 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_elemental_damage_to_spells"]}}} +{"ref":"Adds # to # Fire Attack Damage per Buff on you","better":1,"matchers":[{"string":"플레이어에게 적용되는 버프 하나당 화염 공격 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_761505024"]}}} +{"ref":"Adds # to # Fire Damage","better":1,"matchers":[{"string":"화염 피해 #~# 추가"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_fire_damage"],"explicit":["explicit.stat_321077055","explicit.stat_709508406"],"implicit":["implicit.stat_321077055","implicit.stat_709508406"],"fractured":["fractured.stat_321077055","fractured.stat_709508406"],"enchant":["enchant.stat_709508406"],"scourge":["scourge.stat_709508406"],"crafted":["crafted.stat_321077055","crafted.stat_709508406"]}}} +{"ref":"Adds # to # Fire Damage against Ignited Enemies","better":1,"matchers":[{"string":"점화된 적에게 화염 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_794830148"],"fractured":["fractured.stat_794830148"]}}} +{"ref":"Adds # to # Fire Damage if you've Blocked Recently","better":1,"matchers":[{"string":"최근 4초 이내 막아낸 경우 화염 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3623716321"],"fractured":["fractured.stat_3623716321"]}}} +{"ref":"Adds # to # Fire Damage if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"최근 4초 이내 치명타 명중 시 화염 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3144358296"],"fractured":["fractured.stat_3144358296"]}}} +{"ref":"Adds # to # Fire Damage if you've Killed Recently","better":1,"matchers":[{"string":"최근 4초 이내 적을 처치한 경우 화염 피해 #~# 추가"}],"trade":{"ids":{"enchant":["enchant.stat_3077703716"]}}} +{"ref":"Adds # to # Fire Damage in Main Hand","better":1,"matchers":[{"string":"주 무기로 사용 시 화염 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_169657426"]}}} +{"ref":"Adds # to # Fire Damage to Attacks","better":1,"matchers":[{"string":"공격 시 화염 피해 #~# 추가"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_fire_damage_to_attacks"],"explicit":["explicit.stat_1573130764"],"implicit":["implicit.stat_1573130764"],"fractured":["fractured.stat_1573130764"],"crafted":["crafted.stat_1573130764"]}}} +{"ref":"Adds # to # Fire Damage to Attacks against Ignited Enemies","better":1,"matchers":[{"string":"점화된 적에 대한 화염 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_627339348"]}}} +{"ref":"Adds # to # Fire Damage to Attacks per 10 Strength","better":1,"matchers":[{"string":"힘 10당 공격 시 화염 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_68673913"],"fractured":["fractured.stat_68673913"]}}} +{"ref":"Adds # to # Fire Damage to Attacks with this Weapon per 10 Strength","better":1,"matchers":[{"string":"이 무기로 공격 시 힘 10당 화염 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1060540099"],"implicit":["implicit.stat_1060540099"],"fractured":["fractured.stat_1060540099"]}}} +{"ref":"Adds # to # Fire Damage to Hits with this Weapon against Blinded Enemies","better":1,"matchers":[{"string":"이 무기로 실명된 적 명중 시 화염 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3977907993"]}}} +{"ref":"Adds # to # Fire Damage to Spells","better":1,"matchers":[{"string":"주문 시전 시 화염 피해 #~# 추가"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_fire_damage_to_spells"],"explicit":["explicit.stat_1133016593"],"implicit":["implicit.stat_1133016593"],"fractured":["fractured.stat_1133016593"],"scourge":["scourge.stat_1133016593"],"crafted":["crafted.stat_1133016593"]}}} +{"ref":"Adds # to # Fire Damage to Spells and Attacks","better":1,"matchers":[{"string":"주문 및 공격 시 화염 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3964634628"],"implicit":["implicit.stat_3964634628"],"fractured":["fractured.stat_3964634628"]}}} +{"ref":"Adds # to # Fire Damage to Spells while no Life is Reserved","better":1,"matchers":[{"string":"생명력이 점유되지 않은 상태에서 주문 시전 시 화염 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_833719670"]}}} +{"ref":"Adds # to # Fire Spell Damage per Buff on you","better":1,"matchers":[{"string":"플레이어에게 적용되는 버프 하나당 화염 주문 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3434279150"]}}} +{"ref":"Adds # to # Lightning Damage","better":1,"matchers":[{"string":"번개 피해 #~# 추가"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_lightning_damage"],"explicit":["explicit.stat_1334060246","explicit.stat_3336890334"],"implicit":["implicit.stat_1334060246","implicit.stat_3336890334"],"fractured":["fractured.stat_1334060246","fractured.stat_3336890334"],"enchant":["enchant.stat_3336890334"],"scourge":["scourge.stat_3336890334"],"crafted":["crafted.stat_1334060246","crafted.stat_3336890334"]}}} +{"ref":"Adds # to # Lightning Damage against Shocked Enemies","better":1,"matchers":[{"string":"감전된 적에게 번개 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_90012347"],"fractured":["fractured.stat_90012347"]}}} +{"ref":"Adds # to # Lightning Damage for each Shocked Enemy you've Killed Recently","better":1,"matchers":[{"string":"최근 4초 이내 처치한 감전된 적 하나당 번개 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_4222857095"],"fractured":["fractured.stat_4222857095"]}}} +{"ref":"Adds # to # Lightning Damage if you haven't Killed Recently","better":1,"matchers":[{"string":"최근 4초 이내 적을 처치하지 않은 경우 번개 피해 #~# 추가"}],"trade":{"ids":{"enchant":["enchant.stat_1293597434"]}}} +{"ref":"Adds # to # Lightning Damage if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"최근 4초 이내 치명타 명중 시 번개 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_935623115"],"fractured":["fractured.stat_935623115"]}}} +{"ref":"Adds # to # Lightning Damage to Attacks","better":1,"matchers":[{"string":"공격 시 번개 피해 #~# 추가"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_lightning_damage_to_attacks"],"explicit":["explicit.stat_1754445556"],"implicit":["implicit.stat_1754445556"],"fractured":["fractured.stat_1754445556"],"crafted":["crafted.stat_1754445556"]}}} +{"ref":"Adds # to # Lightning Damage to Attacks during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 공격 시 번개 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_4292531291"]}}} +{"ref":"Adds # to # Lightning Damage to Attacks per 10 Intelligence","better":1,"matchers":[{"string":"지능 10당 공격 시 번개 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3168149399"],"fractured":["fractured.stat_3168149399"]}}} +{"ref":"Adds # to # Lightning Damage to Attacks with this Weapon per 10 Dexterity","better":1,"matchers":[{"string":"이 무기로 공격 시 민첩 10당 번개 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_817611267"]}}} +{"ref":"Adds # to # Lightning Damage to Attacks with this Weapon per 10 Intelligence","better":1,"matchers":[{"string":"이 무기로 공격 시 지능 10당 번개 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3390848861"],"implicit":["implicit.stat_3390848861"],"fractured":["fractured.stat_3390848861"]}}} +{"ref":"Adds # to # Lightning Damage to Hits against Ignited Enemies","better":1,"matchers":[{"string":"점화된 적 명중 시 번개 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2870108850"]}}} +{"ref":"Adds # to # Lightning Damage to Spells","better":1,"matchers":[{"string":"주문 시전 시 번개 피해 #~# 추가"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_lightning_damage_to_spells"],"explicit":["explicit.stat_2831165374"],"implicit":["implicit.stat_2831165374"],"fractured":["fractured.stat_2831165374"],"scourge":["scourge.stat_2831165374"],"crafted":["crafted.stat_2831165374"]}}} +{"ref":"Adds # to # Lightning Damage to Spells and Attacks","better":1,"matchers":[{"string":"주문 및 공격 시 번개 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2885144362"],"implicit":["implicit.stat_2885144362"]}}} +{"ref":"Adds # to # Lightning Damage to Spells during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 주문 시전 시 번개 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_4108305628"]}}} +{"ref":"Adds # to # Lightning Damage to Spells per Power Charge","better":1,"matchers":[{"string":"권능 충전 하나당 주문 시전 시 번개 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_4085417083"]}}} +{"ref":"Adds # to # Lightning Damage to Spells while no Life is Reserved","better":1,"matchers":[{"string":"생명력이 점유되지 않은 상태에서 주문 시전 시 번개 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_985999215"]}}} +{"ref":"Adds # to # Lightning Damage to Spells while Unarmed","better":1,"matchers":[{"string":"비무장 상태일 때 주문 시전 시 번개 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3597806437"]}}} +{"ref":"Adds # to # Lightning Damage to Unarmed Melee Hits","better":1,"matchers":[{"string":"비무장 근접 명중 시 번개 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3835522656"]}}} +{"ref":"Adds # to # Lightning Damage while you have Avian's Might","better":1,"matchers":[{"string":"새의 힘을 보유하는 동안 번개 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_855634301"]}}} +{"ref":"Adds # to # Physical Damage","better":1,"matchers":[{"string":"물리 피해 #~# 추가"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_physical_damage"],"explicit":["explicit.stat_1940865751","explicit.stat_960081730"],"implicit":["implicit.stat_1940865751"],"fractured":["fractured.stat_1940865751","fractured.stat_960081730"],"scourge":["scourge.stat_1940865751"],"crafted":["crafted.stat_1940865751"]}}} +{"ref":"Adds # to # Physical Damage against Bleeding Enemies","better":1,"matchers":[{"string":"출혈 중인 적에 대한 물리 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1244003614"]}}} +{"ref":"Adds # to # Physical Damage against Poisoned Enemies","better":1,"matchers":[{"string":"중독된 적에게 물리 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_424026624"]}}} +{"ref":"Adds # to # Physical Damage for each Impale on Enemy","better":1,"matchers":[{"string":"적에게 걸린 꿰뚫기 하나당 물리 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1455766505"]}}} +{"ref":"Adds # to # Physical Damage if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"최근 4초 이내 치명타 명중 시 물리 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2723101291"],"fractured":["fractured.stat_2723101291"]}}} +{"ref":"Adds # to # Physical Damage per Endurance Charge","better":1,"matchers":[{"string":"인내 충전 하나당 물리 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_173438493"]}}} +{"ref":"Adds # to # Physical Damage to Attacks","better":1,"matchers":[{"string":"공격 시 물리 피해 #~# 추가"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_physical_damage_to_attacks"],"explicit":["explicit.stat_3032590688"],"implicit":["implicit.stat_3032590688"],"fractured":["fractured.stat_3032590688"],"crafted":["crafted.stat_3032590688"]}}} +{"ref":"Adds # to # Physical Damage to Attacks against Frozen Enemies","better":1,"matchers":[{"string":"동결된 적 공격에 대한 물리 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3856468419"]}}} +{"ref":"Adds # to # Physical Damage to Attacks and Spells per Siphoning Charge","better":1,"matchers":[{"string":"착취 충전 하나당 공격 및 주문 시전 시 물리 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3368671817"]}}} +{"ref":"Adds # to # Physical Damage to Attacks per 25 Dexterity","better":1,"matchers":[{"string":"민첩 25당 공격 시 물리 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2066426995"]}}} +{"ref":"Adds # to # Physical Damage to Attacks per 25 Strength","better":1,"matchers":[{"string":"힘 25당 공격 시 물리 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_787185456"]}}} +{"ref":"Adds # to # Physical Damage to Attacks per Level","better":1,"matchers":[{"string":"1레벨당 공격 시 물리 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3821472155"]}}} +{"ref":"Adds # to # Physical Damage to Attacks while you have a Bestial Minion","better":1,"matchers":[{"string":"흉포한 소환수를 보유하는 동안 공격 시 물리 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_242822230"]}}} +{"ref":"Adds # to # Physical Damage to Attacks with this Weapon per 3 Player Levels","better":1,"matchers":[{"string":"이 무기로 공격 시 플레이어 레벨 3당 물리 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1454603936"]}}} +{"ref":"Adds # to # Physical Damage to Spells","better":1,"matchers":[{"string":"주문 시전 시 물리 피해 #~# 추가"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_physical_damage_to_spells"],"explicit":["explicit.stat_2435536961"],"implicit":["implicit.stat_2435536961"],"fractured":["fractured.stat_2435536961"],"scourge":["scourge.stat_2435536961"]}}} +{"ref":"Adds 1 maximum Lightning Damage to Attacks per # Dexterity Allocated in Radius","better":1,"matchers":[{"string":"반경 내 할당된 민첩 #당 공격에 번개 피해 최대치 1 추가"}],"trade":{"ids":{"explicit":["explicit.stat_778050954"]}}} +{"ref":"Adds 1 to Maximum Life per # Intelligence Allocated in Radius","better":1,"matchers":[{"string":"반경 내 할당된 지능 #당 생명력 최대치 1 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2865989731"]}}} +{"ref":"Adds Disciple of Kitava","better":1,"matchers":[{"string":"키타바의 신봉자 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3860869243"]}}} +{"ref":"Adds Hollow Palm Technique","better":1,"matchers":[{"string":"공허의 손아귀 기술 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1376530950"]}}} +{"ref":"Adds Kineticism","better":1,"matchers":[{"string":"역학의 예술 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1798719926"]}}} +{"ref":"Adds Knockback to Melee Attacks during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 근접 공격에 밀어내기 추가"}],"trade":{"ids":{"explicit":["explicit.stat_251342217"]}}} +{"ref":"Adds Lone Messenger","better":1,"matchers":[{"string":"고독한 전달자 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1505850286"]}}} +{"ref":"Adds Nature's Patience","better":1,"matchers":[{"string":"자연의 인내 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1360925132"]}}} +{"ref":"Adds Secrets of Suffering","better":1,"matchers":[{"string":"고통의 비밀 추가"}],"trade":{"ids":{"explicit":["explicit.stat_56720831"]}}} +{"ref":"Adds Veteran's Awareness","better":1,"matchers":[{"string":"노병의 마음가짐 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1379205566"]}}} +{"ref":"Agony Crawler deals #% increased Damage","better":1,"matchers":[{"string":"고통의 벌레가 주는 피해 #% 증가"},{"string":"고통의 벌레가 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_786460697"]}}} +{"ref":"Alert Level increases by #% per second","dp":true,"better":1,"fromHeistAreaMods":true,"matchers":[{"string":"경보 레벨이 1초마다 #% 증가"},{"string":"경보 레벨이 1초마다 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3138486617"],"fractured":["fractured.stat_3138486617"]}}} +{"ref":"All Attack Damage Chills when you Stun","better":1,"matchers":[{"string":"기절시킬 시 모든 공격 피해가 냉각 유발"}],"trade":{"ids":{"explicit":["explicit.stat_2437193018"]}}} +{"ref":"All Damage from Hits with This Weapon can Poison","better":1,"matchers":[{"string":"이 무기로 주는 모든 명중 피해가 중독 유발 가능"}],"trade":{"ids":{"implicit":["implicit.stat_264042990"]}}} +{"ref":"All Damage from Monsters' Hits can Poison","better":1,"fromUberAreaMods":true,"matchers":[{"string":"몬스터의 모든 명중 피해가 중독 유발 가능"}],"trade":{"ids":{"explicit":["explicit.stat_3555807120"],"fractured":["fractured.stat_3555807120"]}}} +{"ref":"All Damage inflicts Poison against Enemies affected by at least # Grasping Vine","better":1,"matchers":[{"string":"모든 피해가 탐욕스러운 덩굴이 #개 이상인 적에게 중독 유발"}],"trade":{"ids":{"explicit":["explicit.stat_3190526553"]}}} +{"ref":"All Damage inflicts Poison while affected by Glorious Madness","better":1,"matchers":[{"string":"찬란한 광기의 영향을 받는 동안 모든 피해가 중독 유발"}],"trade":{"ids":{"explicit":["explicit.stat_3359218839"]}}} +{"ref":"All Damage Taken from Hits can Chill you","better":1,"matchers":[{"string":"피격되어 받는 모든 피해가 플레이어에게 냉각 유발"}],"trade":{"ids":{"explicit":["explicit.stat_244239777"]}}} +{"ref":"All Damage Taken from Hits can Ignite you","better":1,"matchers":[{"string":"피격되어 받는 모든 피해가 플레이어에게 점화 유발"}],"trade":{"ids":{"explicit":["explicit.stat_1405089557"]}}} +{"ref":"All Damage with Hits can Chill","better":1,"matchers":[{"string":"모든 적중 피해가 냉각 유발"}],"trade":{"ids":{"explicit":["explicit.stat_3833160777"]}}} +{"ref":"All Damage with Hits can Freeze","better":1,"matchers":[{"string":"모든 적중 피해가 동결 유발"},{"string":"모든 피해가 동결 유발"},{"string":"모든 피해가 동결 유발 가능"}],"trade":{"ids":{"explicit":["explicit.stat_4052117756"]}}} +{"ref":"All Damage with Hits can Ignite","better":1,"matchers":[{"string":"모든 적중 피해가 점화 유발"},{"string":"모든 피해가 점화 유발"},{"string":"모든 피해가 점화 유발 가능"}],"trade":{"ids":{"explicit":["explicit.stat_1369840970"]}}} +{"ref":"All Elemental Damage Converted to Chaos Damage","better":1,"matchers":[{"string":"모든 원소 피해를 카오스 피해로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_2423544033"]}}} +{"ref":"All Monster Damage can Ignite, Freeze and Shock","better":1,"fromUberAreaMods":true,"matchers":[{"string":"몬스터가 주는 모든 피해가 점화, 동결, 감전 유발 가능"}],"trade":{"ids":{"explicit":["explicit.stat_2919181457"],"fractured":["fractured.stat_2919181457"]}}} +{"ref":"All Monster Damage from Hits always Ignites","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"모든 몬스터의 적중 피해가 항상 점화 유발"}],"trade":{"ids":{"explicit":["explicit.stat_816367946"],"fractured":["fractured.stat_816367946"]}}} +{"ref":"All Sockets are Blue","better":1,"matchers":[{"string":"파란 홈만 있음"}],"trade":{"ids":{"enchant":["enchant.stat_2803653753"]}}} +{"ref":"All Sockets are Green","better":1,"matchers":[{"string":"초록 홈만 있음"}],"trade":{"ids":{"enchant":["enchant.stat_2849380136"]}}} +{"ref":"All Sockets are Red","better":1,"matchers":[{"string":"빨간 홈만 있음"}],"trade":{"ids":{"enchant":["enchant.stat_1918718830"]}}} +{"ref":"All Sockets are White","better":1,"matchers":[{"string":"모든 홈이 하얀색임"}],"trade":{"ids":{"explicit":["explicit.stat_211836731"]}}} +{"ref":"All Sockets Linked","better":1,"matchers":[{"string":"모든 홈이 연결됨"}],"trade":{"ids":{"enchant":["enchant.stat_2740018301"]}}} +{"ref":"All Towers in range of your Empowering Towers have #% chance to deal Double Damage","better":1,"anointments":[{"roll":50,"oils":"13,13"}],"matchers":[{"string":"강화의 탑의 사거리 내에 위치한 모든 탑이 #% 확률로 2배의 피해를 줌"},{"string":"강화의 탑의 사거리 내에 위치한 모든 탑이 2배의 피해를 줌","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1959522666"]}}} +{"ref":"Allies' Aura Buffs do not affect you","better":1,"matchers":[{"string":"동료들의 오라 버프 효과가 자신에게는 영향을 주지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_1489905076"]}}} +{"ref":"Allocated Small Passive Skills in Radius grant nothing","better":1,"matchers":[{"string":"반경 내 할당된 소형 패시브 스킬이 아무것도 부여하지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_325204898"]}}} +{"ref":"Allocates #","better":0,"matchers":[{"string":"할당 사형 집행자","value":10016,"oils":"3,4,6"},{"string":"할당 의지의 잠재력","value":1006,"oils":"2,2,11"},{"string":"할당 사치스러운 마무리","value":10115,"oils":"1,6,6"},{"string":"할당 내성","value":10511,"oils":"9,9,11"},{"string":"할당 가시 방벽","value":10542,"oils":"1,2,5"},{"string":"할당 몽상가","value":10835,"oils":"2,5,6"},{"string":"할당 신비학자의 지배력","value":11420,"oils":"1,9,10"},{"string":"할당 번개의 숨결","value":11645,"oils":"6,8,13"},{"string":"할당 인내","value":11730,"oils":"1,10,13"},{"string":"할당 흡혈","value":11784,"oils":"3,5,8"},{"string":"할당 기름 부은 살","value":11820,"oils":"7,13,13"},{"string":"할당 화염의 숨결","value":11924,"oils":"4,6,13"},{"string":"할당 사악한 칼날","value":12033,"oils":"3,4,7"},{"string":"할당 영향력","value":12143,"oils":"4,5,13"},{"string":"할당 융통성","value":12795,"oils":"4,4,11"},{"string":"할당 광폭화","value":12809,"oils":"1,2,11"},{"string":"할당 보복","value":12878,"oils":"4,9,11"},{"string":"할당 신성한 심판","value":13164,"oils":"2,5,10"},{"string":"할당 골렘의 피","value":1325,"oils":"5,13,13"},{"string":"할당 다중 사격","value":13375,"oils":"7,10,12"},{"string":"할당 성벽","value":1340,"oils":"3,4,10"},{"string":"할당 지식의 방벽","value":1365,"oils":"0,11,12"},{"string":"할당 굴하지 않는 항전","value":13703,"oils":"4,10,13"},{"string":"할당 꺼지지 않는 분노","value":13739,"oils":"0,6,12"},{"string":"할당 혼백 비우기","value":1382,"oils":"4,4,4"},{"string":"할당 요지부동","value":13922,"oils":"2,13,13"},{"string":"할당 전투의 전율","value":13935,"oils":"7,12,13"},{"string":"할당 단호함","value":14001,"oils":"7,7,9"},{"string":"할당 어둠 속에서","value":1405,"oils":"1,6,9"},{"string":"할당 나무, 돌, 주문","value":14079,"oils":"0,7,12"},{"string":"할당 적응형 강철","value":14587,"oils":"0,10,10"},{"string":"할당 도살","value":14606,"oils":"4,8,9"},{"string":"할당 신성한 진노","value":14665,"oils":"3,3,11"},{"string":"할당 환락","value":14813,"oils":"3,8,10"},{"string":"할당 구원","value":15046,"oils":"2,8,9"},{"string":"할당 양손잡이","value":15085,"oils":"3,6,10"},{"string":"할당 잔혹한 응수","value":15226,"oils":"1,1,2"},{"string":"할당 감시 포탑","value":15290,"oils":"7,12,12"},{"string":"할당 이동의 자유","value":15344,"oils":"1,2,8"},{"string":"할당 달리는 룬 문자","value":15400,"oils":"11,12,12"},{"string":"할당 굴절","value":15437,"oils":"3,7,12"},{"string":"할당 사냥매의 발톱","value":15614,"oils":"8,10,11"},{"string":"할당 치명적인 검","value":1568,"oils":"3,11,11"},{"string":"할당 폭발 반경","value":15711,"oils":"1,4,11"},{"string":"할당 자연과의 일체화","value":15842,"oils":"4,9,10"},{"string":"할당 천상의 연회","value":15852,"oils":"3,12,13"},{"string":"할당 맹독성 일격","value":16236,"oils":"1,3,9"},{"string":"할당 일제 사격","value":16243,"oils":"2,4,4"},{"string":"할당 고요함","value":16246,"oils":"0,12,13"},{"string":"할당 해골 부수기","value":16703,"oils":"1,10,11"},{"string":"할당 순간 동결","value":17171,"oils":"4,6,9"},{"string":"할당 은밀한 발걸음","value":17608,"oils":"3,4,8"},{"string":"할당 신비한 방벽","value":18174,"oils":"5,5,5"},{"string":"할당 고양이의 재빠름","value":18357,"oils":"1,1,5"},{"string":"할당 우아한 공격","value":18703,"oils":"8,8,10"},{"string":"할당 완벽주의자","value":18707,"oils":"4,5,12"},{"string":"할당 혈서","value":18769,"oils":"2,8,13"},{"string":"할당 융합","value":18865,"oils":"2,8,11"},{"string":"할당 두꺼운 가죽","value":19069,"oils":"8,12,12"},{"string":"할당 정의의 군대","value":19103,"oils":"4,10,10"},{"string":"할당 파수꾼","value":19144,"oils":"4,5,6"},{"string":"할당 사냥꾼의 길","value":19506,"oils":"1,4,4"},{"string":"할당 확실한 타격","value":19730,"oils":"1,7,10"},{"string":"할당 충격적인 힘","value":19794,"oils":"5,7,12"},{"string":"할당 약초학","value":19858,"oils":"5,11,12"},{"string":"할당 죽음의 조율","value":19897,"oils":"1,9,12"},{"string":"할당 덩굴가시 과일청","value":203,"oils":"0,10,12"},{"string":"할당 불안정","value":20528,"oils":"4,12,12"},{"string":"할당 무관용","value":20605,"oils":"0,10,13"},{"string":"할당 성역","value":20832,"oils":"3,5,5"},{"string":"할당 벼랑 끝 전략","value":20835,"oils":"1,3,11"},{"string":"할당 관통 사격","value":21228,"oils":"10,11,12"},{"string":"할당 고성능 폭약","value":21297,"oils":"4,4,12"},{"string":"할당 빠른 회복","value":21330,"oils":"5,5,13"},{"string":"할당 룬 제작자","value":21389,"oils":"6,9,12"},{"string":"할당 전투 지구력","value":21413,"oils":"1,4,10"},{"string":"할당 천과 사슬","value":21435,"oils":"1,1,6"},{"string":"할당 흰서리의 숨결","value":21460,"oils":"5,12,12"},{"string":"할당 파괴적인 기구","value":21602,"oils":"2,3,12"},{"string":"할당 비전의 반응","value":21634,"oils":"3,12,12"},{"string":"할당 잔혹한 준비","value":21958,"oils":"5,10,12"},{"string":"할당 부패 수호","value":21973,"oils":"2,4,5"},{"string":"할당 활기를 주는 불길","value":22133,"oils":"1,5,7"},{"string":"할당 독수리의 눈","value":2225,"oils":"1,1,11"},{"string":"할당 식혈","value":22356,"oils":"8,10,12"},{"string":"할당 멸망의 속삭임","value":22535,"oils":"13,13,13"},{"string":"할당 독사의 자세","value":22702,"oils":"6,10,11"},{"string":"할당 야만적인 격렬함","value":22706,"oils":"6,6,11"},{"string":"할당 자연의 혼합물","value":2275,"oils":"5,5,7"},{"string":"할당 마법봉 투척가","value":22972,"oils":"5,5,9"},{"string":"할당 살육","value":23038,"oils":"6,6,6"},{"string":"할당 야만성","value":23066,"oils":"9,10,13"},{"string":"할당 무형","value":23549,"oils":"0,12,12"},{"string":"할당 에센스 주입","value":23690,"oils":"1,3,4"},{"string":"할당 냉담한 계산","value":24050,"oils":"9,9,9"},{"string":"할당 본능","value":24067,"oils":"2,2,6"},{"string":"할당 생존주의자","value":24133,"oils":"6,9,13"},{"string":"할당 정력가","value":24256,"oils":"1,2,6"},{"string":"할당 폭발적인 충격","value":24324,"oils":"4,6,11"},{"string":"할당 선별적인 정밀함","value":24358,"oils":"0,9,13"},{"string":"할당 깊은 생각","value":24362,"oils":"1,4,8"},{"string":"할당 전사의 피","value":24383,"oils":"5,5,10"},{"string":"할당 전투의 무아지경","value":24716,"oils":"2,3,3"},{"string":"할당 흉골 분쇄자","value":24721,"oils":"5,10,10"},{"string":"할당 작살꾼","value":24858,"oils":"5,7,9"},{"string":"할당 혈액 착취","value":25058,"oils":"6,11,12"},{"string":"할당 원시 혼백","value":25178,"oils":"2,6,10"},{"string":"할당 검의 대가","value":25367,"oils":"1,2,12"},{"string":"할당 불굴의 군단","value":25409,"oils":"8,9,12"},{"string":"할당 주입","value":25411,"oils":"9,12,12"},{"string":"할당 장의사","value":25439,"oils":"7,7,10"},{"string":"할당 수도승","value":25456,"oils":"6,9,10"},{"string":"할당 방화범","value":2550,"oils":"4,4,6"},{"string":"할당 집요한 추적","value":25738,"oils":"2,7,9"},{"string":"할당 신랄","value":25970,"oils":"1,10,10"},{"string":"할당 유목민의 가르침","value":25989,"oils":"10,13,13"},{"string":"할당 준비된 응답","value":2599,"oils":"1,2,2"},{"string":"할당 야만적인 상처","value":26023,"oils":"5,10,13"},{"string":"할당 손도끼의 대가","value":26096,"oils":"4,5,9"},{"string":"할당 출혈 과다","value":26294,"oils":"6,6,12"},{"string":"할당 정전기 타격","value":26557,"oils":"5,8,9"},{"string":"할당 격퇴자","value":26564,"oils":"4,7,12"},{"string":"할당 타락","value":26620,"oils":"9,10,10"},{"string":"할당 완벽해진 조합법","value":26763,"oils":"7,7,8"},{"string":"할당 존엄성","value":26866,"oils":"6,6,10"},{"string":"할당 원려","value":26960,"oils":"5,7,10"},{"string":"할당 부족의 광분","value":27119,"oils":"11,12,13"},{"string":"할당 사상의 지성소","value":27137,"oils":"6,6,13"},{"string":"할당 빠른 걸음","value":2715,"oils":"3,3,4"},{"string":"할당 비전의 의지","value":27163,"oils":"3,3,12"},{"string":"할당 준비 과다","value":27190,"oils":"3,3,6"},{"string":"할당 심장과 영혼","value":27203,"oils":"2,9,13"},{"string":"할당 무도 경험","value":27301,"oils":"1,4,6"},{"string":"할당 엄숙한 계약","value":27308,"oils":"6,10,10"},{"string":"할당 전쟁의 정신","value":27422,"oils":"1,8,13"},{"string":"할당 망자의 군주","value":27611,"oils":"4,9,12"},{"string":"할당 메마른 심장 숭배","value":27781,"oils":"0,0,0"},{"string":"할당 피 흡수자","value":27788,"oils":"11,11,12"},{"string":"할당 천둥과도 같이","value":27806,"oils":"1,1,7"},{"string":"할당 깊은 지혜","value":27929,"oils":"2,5,5"},{"string":"할당 강화된 유대","value":28034,"oils":"1,7,7"},{"string":"할당 쇄도하는 활력","value":28449,"oils":"3,7,8"},{"string":"할당 생명 채집자","value":28503,"oils":"2,4,12"},{"string":"할당 암살","value":28754,"oils":"10,11,13"},{"string":"할당 집요","value":28878,"oils":"2,4,7"},{"string":"할당 신성한 불꽃","value":29049,"oils":"3,5,12"},{"string":"할당 굶주린 패거리","value":29381,"oils":"4,12,13"},{"string":"할당 칼춤","value":29522,"oils":"7,9,9"},{"string":"할당 얼음의 계절","value":2959,"oils":"7,10,13"},{"string":"할당 폭발 룬","value":29861,"oils":"3,6,6"},{"string":"할당 밀쳐내기","value":30160,"oils":"2,2,4"},{"string":"할당 번개 보행자","value":30225,"oils":"2,2,10"},{"string":"할당 원기 왕성","value":30302,"oils":"4,11,12"},{"string":"할당 용암 채찍","value":30439,"oils":"1,1,13"},{"string":"할당 정확한 일격","value":30471,"oils":"5,9,10"},{"string":"할당 신성한 열정","value":30693,"oils":"4,5,7"},{"string":"할당 사냥 전문가","value":30974,"oils":"7,10,10"},{"string":"할당 왕성함","value":31033,"oils":"1,4,5"},{"string":"할당 타고난 권위","value":31257,"oils":"2,12,13"},{"string":"할당 치명적인 독소","value":31359,"oils":"1,8,12"},{"string":"할당 상처의 대가","value":31473,"oils":"1,5,8"},{"string":"할당 스라소니의 위상","value":31508,"oils":"8,8,9"},{"string":"할당 근처의 적개심","value":31513,"oils":"7,9,11"},{"string":"할당 철저한 보호론자","value":31585,"oils":"7,10,11"},{"string":"할당 아생의 유산","value":3195,"oils":"0,9,10"},{"string":"할당 거대한 충격","value":32059,"oils":"3,4,11"},{"string":"할당 영혼 도둑","value":32176,"oils":"2,9,11"},{"string":"할당 살무사의 접촉","value":32227,"oils":"2,10,11"},{"string":"할당 태풍술사","value":32455,"oils":"2,9,10"},{"string":"할당 사냥감 징표 찍기","value":32681,"oils":"2,7,10"},{"string":"할당 강철 벽","value":32738,"oils":"4,7,11"},{"string":"할당 시온의 야심","value":32853,"oils":"0,6,10"},{"string":"할당 주권","value":32932,"oils":"12,12,12"},{"string":"할당 예리한 날","value":33082,"oils":"4,5,8"},{"string":"할당 넓은 발","value":3309,"oils":"2,3,11"},{"string":"할당 거신상","value":33287,"oils":"3,5,11"},{"string":"할당 신성한 지배력","value":33435,"oils":"6,6,9"},{"string":"할당 해리어","value":33545,"oils":"6,9,9"},{"string":"할당 강력한 꿰뚫기","value":33582,"oils":"4,6,8"},{"string":"할당 대의의 용사","value":33718,"oils":"5,9,13"},{"string":"할당 텅 빈 제웅","value":33722,"oils":"0,9,12"},{"string":"할당 활보","value":33725,"oils":"5,8,12"},{"string":"할당 파괴적인 장치","value":33777,"oils":"5,5,12"},{"string":"할당 칼날의 의지","value":33903,"oils":"2,4,10"},{"string":"할당 투기장의 대가","value":34009,"oils":"2,11,12"},{"string":"할당 노련한 검술","value":34284,"oils":"3,7,11"},{"string":"할당 골렘을 부리는 자","value":34506,"oils":"6,12,13"},{"string":"할당 선견지명","value":3452,"oils":"4,11,13"},{"string":"할당 불순한 의도(Malicious Intent)","value":34591,"oils":"7,7,12"},{"string":"할당 화염 보행자","value":34661,"oils":"8,9,10"},{"string":"할당 파괴자","value":34666,"oils":"2,4,11"},{"string":"할당 계획적인 광분","value":34973,"oils":"3,10,13"},{"string":"할당 교질 혼합물","value":34978,"oils":"1,1,4"},{"string":"할당 불화의 장인","value":35233,"oils":"3,5,6"},{"string":"할당 역학 충격","value":35436,"oils":"3,6,8"},{"string":"할당 튼튼한 팔","value":35663,"oils":"1,6,11"},{"string":"할당 무시무시한 힘","value":35685,"oils":"5,6,9"},{"string":"할당 계략","value":35894,"oils":"4,4,10"},{"string":"할당 신뢰와 강철","value":35958,"oils":"2,10,13"},{"string":"할당 원시적인 힘","value":36281,"oils":"6,8,12"},{"string":"할당 가죽 벗기기","value":36490,"oils":"1,8,9"},{"string":"할당 사냥의 화신","value":36687,"oils":"1,11,11"},{"string":"할당 불타는 포악함","value":36736,"oils":"5,7,8"},{"string":"할당 강철목 자세","value":36859,"oils":"5,5,6"},{"string":"할당 희생","value":36915,"oils":"5,6,8"},{"string":"할당 헌신","value":36949,"oils":"9,9,12"},{"string":"할당 학자의 길","value":37078,"oils":"2,3,4"},{"string":"할당 지구력","value":37326,"oils":"10,10,12"},{"string":"할당 주입된 육체","value":37403,"oils":"3,7,10"},{"string":"할당 숙련된 재적용","value":37425,"oils":"2,2,2"},{"string":"할당 직관","value":37504,"oils":"3,8,8"},{"string":"할당 신념의 보루","value":37512,"oils":"0,9,9"},{"string":"할당 사지 절단","value":37647,"oils":"8,11,13"},{"string":"할당 흉조","value":38246,"oils":"3,7,13"},{"string":"할당 정의로운 법령","value":38516,"oils":"2,2,5"},{"string":"할당 이글거리는 열기","value":38849,"oils":"3,6,12"},{"string":"할당 골리앗","value":38922,"oils":"2,3,13"},{"string":"할당 활력 비우기","value":39530,"oils":"1,12,13"},{"string":"할당 거짓 고통","value":39657,"oils":"1,8,8"},{"string":"할당 어둠의 기술","value":39743,"oils":"5,8,11"},{"string":"할당 평형추","value":39761,"oils":"1,3,12"},{"string":"할당 잔인한 꿰뚫기","value":39904,"oils":"6,13,13"},{"string":"할당 더럽혀진 힘","value":39986,"oils":"9,10,11"},{"string":"할당 경외와 공포","value":40619,"oils":"7,7,11"},{"string":"할당 뼈 분쇄기","value":40645,"oils":"4,6,6"},{"string":"할당 결정 가죽","value":40743,"oils":"2,10,12"},{"string":"할당 지속성","value":40849,"oils":"0,7,9"},{"string":"할당 치명상","value":41119,"oils":"2,8,12"},{"string":"할당 야전 의술","value":41137,"oils":"7,9,10"},{"string":"할당 삐죽삐죽한 상처","value":41169,"oils":"0,7,13"},{"string":"할당 타쇄하는 대응","value":41305,"oils":"1,2,3"},{"string":"할당 치명적인 의지","value":41307,"oils":"0,7,10"},{"string":"할당 자연 요법","value":41420,"oils":"7,11,12"},{"string":"할당 수양과 훈련","value":41472,"oils":"10,12,12"},{"string":"할당 엘더의 힘","value":41476,"oils":"5,5,8"},{"string":"할당 죽음의 징표","value":41595,"oils":"2,7,12"},{"string":"할당 혼백의 도움","value":4177,"oils":"12,12,13"},{"string":"할당 겨울의 포옹","value":41870,"oils":"1,7,9"},{"string":"할당 지략","value":41989,"oils":"4,11,11"},{"string":"할당 강철의 영혼","value":42009,"oils":"1,13,13"},{"string":"할당 부정한 반응","value":42041,"oils":"4,10,12"},{"string":"할당 기회의 창","value":4207,"oils":"7,11,11"},{"string":"할당 광란","value":42443,"oils":"6,12,12"},{"string":"할당 눈의 대장간","value":42649,"oils":"3,5,13"},{"string":"할당 원소 집중","value":42686,"oils":"2,3,6"},{"string":"할당 묵직한 당기기","value":42720,"oils":"2,4,8"},{"string":"할당 비전의 집중","value":42795,"oils":"4,9,9"},{"string":"할당 정신 흡수자","value":42804,"oils":"4,5,5"},{"string":"할당 소용돌이 방어막","value":42917,"oils":"3,5,9"},{"string":"할당 겨울의 혼백","value":43385,"oils":"2,5,12"},{"string":"할당 희망의 등불","value":4354,"oils":"0,8,9"},{"string":"할당 혼백의 명령","value":43689,"oils":"2,2,13"},{"string":"할당 효율적인 폭발물","value":44102,"oils":"2,5,8"},{"string":"할당 반사신경","value":44103,"oils":"6,10,13"},{"string":"할당 태산과도 같이","value":44191,"oils":"10,10,11"},{"string":"할당 귀갑 방패","value":44207,"oils":"1,2,10"},{"string":"할당 신성한 광분","value":44347,"oils":"3,3,10"},{"string":"할당 주술사의 지배","value":44562,"oils":"1,6,12"},{"string":"할당 위력적인 연결","value":44788,"oils":"2,2,8"},{"string":"할당 자연의 힘","value":4481,"oils":"4,6,12"},{"string":"할당 신비주의","value":44824,"oils":"5,6,11"},{"string":"할당 서리 보행자","value":44955,"oils":"4,8,11"},{"string":"할당 소모성","value":44988,"oils":"2,12,12"},{"string":"할당 살인마","value":45067,"oils":"3,3,5"},{"string":"할당 궁지에 몰린 사냥감","value":45283,"oils":"3,3,7"},{"string":"할당 재, 서리, 태풍","value":45317,"oils":"2,9,9"},{"string":"할당 기교 사격","value":45329,"oils":"3,8,13"},{"string":"할당 연이은 폭발","value":45608,"oils":"1,1,9"},{"string":"할당 신념의 시험","value":45657,"oils":"2,7,7"},{"string":"할당 역전 용사","value":45803,"oils":"5,7,13"},{"string":"할당 상상의 장벽","value":45945,"oils":"4,7,10"},{"string":"할당 독사의 송곳니","value":46408,"oils":"1,5,6"},{"string":"할당 강력한 유대","value":46471,"oils":"7,7,7"},{"string":"할당 비전의 잠재력","value":46842,"oils":"6,10,12"},{"string":"할당 비전의 성역","value":46904,"oils":"1,12,12"},{"string":"할당 사보추어","value":46965,"oils":"1,5,5"},{"string":"할당 칼날의 대가","value":47065,"oils":"6,11,13"},{"string":"할당 숨통 노리기","value":47306,"oils":"3,8,11"},{"string":"할당 날카로운 감각","value":47484,"oils":"3,4,5"},{"string":"할당 멀리 보는 자","value":47743,"oils":"4,4,9"},{"string":"할당 통찰력","value":48298,"oils":"4,4,13"},{"string":"할당 활력","value":4833,"oils":"9,11,11"},{"string":"할당 기개","value":48438,"oils":"8,11,11"},{"string":"할당 보호소","value":4854,"oils":"7,8,12"},{"string":"할당 어둠의 심장","value":48556,"oils":"0,8,8"},{"string":"할당 열정","value":48614,"oils":"3,10,12"},{"string":"할당 공허 방어막","value":48698,"oils":"9,12,13"},{"string":"할당 검투사의 기교","value":48807,"oils":"2,11,13"},{"string":"할당 치명적인 당기기","value":48823,"oils":"2,4,9"},{"string":"할당 무차별적인 복수","value":4918,"oils":"1,1,1"},{"string":"할당 응징","value":49254,"oils":"1,9,11"},{"string":"할당 파괴구","value":49318,"oils":"1,5,11"},{"string":"할당 청부살인자","value":49379,"oils":"8,8,11"},{"string":"할당 쪼개기","value":4940,"oils":"2,3,10"},{"string":"할당 견고한 의지","value":49416,"oils":"6,8,10"},{"string":"할당 심호흡","value":49445,"oils":"5,7,11"},{"string":"할당 언덕의 왕","value":49459,"oils":"4,8,12"},{"string":"할당 저항","value":49538,"oils":"3,5,10"},{"string":"할당 예민함","value":49621,"oils":"1,8,10"},{"string":"할당 소작","value":49645,"oils":"2,2,7"},{"string":"할당 극에 이른 힘","value":49772,"oils":"3,6,9"},{"string":"할당 용기","value":49969,"oils":"6,8,8"},{"string":"할당 기이한 고요","value":50029,"oils":"4,13,13"},{"string":"할당 탄도학","value":50338,"oils":"6,8,11"},{"string":"할당 회복 요법","value":50690,"oils":"2,3,7"},{"string":"할당 역전 용사의 진노","value":50842,"oils":"8,13,13"},{"string":"할당 꾸짖는 자","value":50858,"oils":"2,6,11"},{"string":"할당 비전 축전기","value":51108,"oils":"8,10,13"},{"string":"할당 엔트로피","value":51212,"oils":"2,3,9"},{"string":"할당 척추 접기","value":5126,"oils":"4,8,8"},{"string":"할당 혼합 탄약","value":51360,"oils":"0,9,11"},{"string":"할당 드루이드 의식","value":51440,"oils":"1,9,13"},{"string":"할당 박살내는 일격","value":51559,"oils":"6,6,8"},{"string":"할당 최후의 의식","value":51748,"oils":"2,10,10"},{"string":"할당 화살 숙련가","value":51881,"oils":"2,9,12"},{"string":"할당 에너지 격발","value":52030,"oils":"1,3,3"},{"string":"할당 분해","value":52031,"oils":"8,10,10"},{"string":"할당 적병 벌목자","value":52090,"oils":"3,10,11"},{"string":"할당 영혼 착취","value":52157,"oils":"3,3,8"},{"string":"할당 풍파에 시달린 사냥꾼","value":52230,"oils":"2,3,5"},{"string":"할당 참을성","value":52282,"oils":"0,13,13"},{"string":"할당 생명의 순환","value":52789,"oils":"1,7,8"},{"string":"할당 전투 분발","value":5289,"oils":"2,4,6"},{"string":"할당 독성 송곳니","value":529,"oils":"1,3,6"},{"string":"할당 위축","value":53013,"oils":"1,2,13"},{"string":"할당 특출난 솜씨","value":53042,"oils":"1,3,10"},{"string":"할당 사냥감의 복수","value":53114,"oils":"10,12,13"},{"string":"할당 포악성","value":53118,"oils":"11,11,13"},{"string":"할당 전멸","value":53493,"oils":"1,1,10"},{"string":"할당 비전 팽창","value":53573,"oils":"9,9,13"},{"string":"할당 부정에 대한 몰입","value":53652,"oils":"2,7,13"},{"string":"할당 주술사의 광분","value":53757,"oils":"2,3,8"},{"string":"할당 정화된 생각","value":53759,"oils":"0,6,13"},{"string":"할당 에센스 추출","value":53802,"oils":"9,9,10"},{"string":"할당 복수","value":53840,"oils":"3,11,12"},{"string":"할당 수완","value":54142,"oils":"5,6,10"},{"string":"할당 칼날 방어막","value":54268,"oils":"1,8,11"},{"string":"할당 마그마성 일격","value":5430,"oils":"3,10,10"},{"string":"할당 파수","value":544,"oils":"2,7,11"},{"string":"할당 준엄","value":54629,"oils":"9,11,12"},{"string":"할당 신성의 빛","value":54694,"oils":"8,9,9"},{"string":"할당 힘의 형성자","value":54713,"oils":"1,7,12"},{"string":"할당 마나의 흐름","value":54776,"oils":"1,11,13"},{"string":"할당 까치의 발톱","value":54791,"oils":"2,6,6"},{"string":"할당 정의로운 광분","value":55002,"oils":"4,7,7"},{"string":"할당 극에 이른 지능","value":55114,"oils":"3,8,9"},{"string":"할당 내려앉는 재","value":55194,"oils":"1,7,13"},{"string":"할당 교묘한 구조물","value":55380,"oils":"2,6,9"},{"string":"할당 체질","value":55485,"oils":"5,8,13"},{"string":"할당 어둠의 힘","value":5574,"oils":"0,11,11"},{"string":"할당 대장장이의 일격","value":55772,"oils":"4,10,11"},{"string":"할당 강에 선 사람","value":56094,"oils":"5,11,11"},{"string":"할당 신중한 잔인성","value":56146,"oils":"0,8,12"},{"string":"할당 굳어진 흉터","value":56207,"oils":"0,6,9"},{"string":"할당 십자군","value":5624,"oils":"0,11,13"},{"string":"할당 지속되는 폭풍","value":56274,"oils":"0,8,11"},{"string":"할당 밤추적자","value":56276,"oils":"2,5,13"},{"string":"할당 전투의 흐름","value":56330,"oils":"2,2,3"},{"string":"할당 식인 의식","value":56359,"oils":"5,6,6"},{"string":"할당 매의 발톱","value":56648,"oils":"3,3,13"},{"string":"할당 천둥의 심장","value":56716,"oils":"2,6,13"},{"string":"할당 현란한 일격","value":570,"oils":"5,5,11"},{"string":"할당 빗발치는 응징","value":57006,"oils":"0,7,11"},{"string":"할당 서리의 송곳니","value":57199,"oils":"2,2,12"},{"string":"할당 교활한 검","value":57839,"oils":"2,6,12"},{"string":"할당 강철의 명령","value":57900,"oils":"3,9,11"},{"string":"할당 구불거리는 주문투척","value":58032,"oils":"7,8,11"},{"string":"할당 고전압","value":58168,"oils":"3,7,7"},{"string":"할당 서리의 손가락","value":58198,"oils":"8,9,13"},{"string":"할당 육체의 정화","value":58218,"oils":"1,10,12"},{"string":"할당 조율","value":5823,"oils":"3,9,10"},{"string":"할당 유명한 위업","value":58382,"oils":"7,11,13"},{"string":"할당 타고난 싸움꾼","value":58449,"oils":"8,8,13"},{"string":"할당 창자 뽑기","value":58831,"oils":"4,8,13"},{"string":"할당 무리의 우두머리","value":58851,"oils":"9,13,13"},{"string":"할당 학살 신봉자","value":58921,"oils":"3,4,13"},{"string":"할당 잔인한 검","value":59151,"oils":"2,4,13"},{"string":"할당 증대자","value":59423,"oils":"4,4,7"},{"string":"할당 효율적인 탄약","value":59556,"oils":"1,6,8"},{"string":"할당 불안정한 탄약","value":59605,"oils":"5,8,8"},{"string":"할당 더러운 기술","value":59766,"oils":"3,11,13"},{"string":"할당 견고화","value":59866,"oils":"2,6,8"},{"string":"할당 조심스러운 반격","value":59976,"oils":"1,1,3"},{"string":"할당 쌍수의 공포","value":6,"oils":"1,6,10"},{"string":"할당 광분의 화살","value":60002,"oils":"4,4,5"},{"string":"할당 분광 피부","value":60031,"oils":"12,13,13"},{"string":"할당 화염의 심장","value":60501,"oils":"5,6,13"},{"string":"할당 충격의 망치","value":60619,"oils":"1,2,9"},{"string":"할당 교묘한 손재주","value":60737,"oils":"4,5,11"},{"string":"할당 기운 나는 유대","value":60781,"oils":"3,5,7"},{"string":"할당 야생의 굶주림","value":61039,"oils":"3,13,13"},{"string":"할당 집결의 우상","value":61190,"oils":"1,6,13"},{"string":"할당 전사의 심장","value":61198,"oils":"8,12,13"},{"string":"할당 증폭","value":61308,"oils":"3,6,11"},{"string":"할당 폭발 원소","value":61689,"oils":"3,9,12"},{"string":"할당 멸망 시전","value":61981,"oils":"3,6,13"},{"string":"할당 무덤의 목적","value":61982,"oils":"2,8,8"},{"string":"할당 피의 갈증","value":62094,"oils":"3,8,12"},{"string":"할당 폭발의 물결","value":6233,"oils":"1,4,9"},{"string":"할당 정밀함","value":6237,"oils":"2,2,9"},{"string":"할당 에센스 쇄도","value":62577,"oils":"5,12,13"},{"string":"할당 신비한 재능","value":62596,"oils":"0,6,11"},{"string":"할당 생사의 경계","value":62802,"oils":"4,7,8"},{"string":"할당 빙하 창살","value":62849,"oils":"4,7,9"},{"string":"할당 무혈","value":6289,"oils":"3,9,13"},{"string":"할당 기수","value":63033,"oils":"7,8,9"},{"string":"할당 철목","value":63150,"oils":"1,3,5"},{"string":"할당 폭풍 강타","value":63207,"oils":"3,4,12"},{"string":"할당 고질적","value":63251,"oils":"10,10,13"},{"string":"할당 학살의 욕망","value":63422,"oils":"5,11,13"},{"string":"할당 과잉 자양분","value":63453,"oils":"5,7,7"},{"string":"할당 원시의 현신","value":63635,"oils":"3,4,9"},{"string":"할당 검투사의 인내","value":63727,"oils":"5,6,12"},{"string":"할당 극에 이른 속도","value":63921,"oils":"2,5,9"},{"string":"할당 토템의 열의","value":63933,"oils":"4,4,8"},{"string":"할당 빛의 매듭","value":63944,"oils":"2,11,11"},{"string":"할당 쉐이퍼","value":63976,"oils":"1,9,9"},{"string":"할당 전사 훈련","value":64077,"oils":"1,5,9"},{"string":"할당 돌의 위상","value":64217,"oils":"0,8,13"},{"string":"할당 포효하는 도전","value":64226,"oils":"1,2,4"},{"string":"할당 낙인 형평성","value":64355,"oils":"7,8,10"},{"string":"할당 둔탁한 외상","value":64395,"oils":"5,9,12"},{"string":"할당 완고한 신봉자","value":64882,"oils":"8,9,11"},{"string":"할당 정수 진액","value":65053,"oils":"5,8,10"},{"string":"할당 검의 무희","value":65093,"oils":"3,3,9"},{"string":"할당 통솔력","value":65097,"oils":"8,11,12"},{"string":"할당 보루 분쇄자","value":65107,"oils":"2,5,7"},{"string":"할당 끈기","value":65108,"oils":"11,11,11"},{"string":"할당 오크의 심장","value":65210,"oils":"4,9,13"},{"string":"할당 독수리의 위상","value":65224,"oils":"3,4,4"},{"string":"할당 수수께끼의 역량","value":65273,"oils":"4,5,10"},{"string":"할당 다이아몬드 피부","value":65308,"oils":"2,5,11"},{"string":"할당 심장 노리기","value":65502,"oils":"5,9,9"},{"string":"할당 전호의 일격","value":6615,"oils":"1,1,12"},{"string":"할당 비전 수호","value":6770,"oils":"1,5,10"},{"string":"할당 야만적인 꿰뚫기","value":6783,"oils":"1,2,7"},{"string":"할당 신비한 매력","value":6799,"oils":"11,13,13"},{"string":"할당 방비","value":6967,"oils":"4,6,10"},{"string":"할당 분할 사격","value":7069,"oils":"1,7,11"},{"string":"할당 무기의 예술성","value":7085,"oils":"1,3,8"},{"string":"할당 일급 공병","value":7136,"oils":"5,10,11"},{"string":"할당 즉발성 맹독","value":7263,"oils":"1,3,13"},{"string":"할당 적병 수확자","value":7440,"oils":"1,3,7"},{"string":"할당 치직대는 속도","value":7555,"oils":"10,11,11"},{"string":"할당 인내의 유대","value":7688,"oils":"1,4,13"},{"string":"할당 수수께끼의 방어력","value":7918,"oils":"8,8,8"},{"string":"할당 교묘한 도둑","value":8001,"oils":"1,4,7"},{"string":"할당 현실적 응용","value":8135,"oils":"1,1,8"},{"string":"할당 원거리 사격","value":8458,"oils":"5,9,11"},{"string":"할당 공격적인 보루","value":861,"oils":"4,8,10"},{"string":"할당 얼음의 심장","value":8833,"oils":"9,11,13"},{"string":"할당 암습","value":8920,"oils":"1,5,12"},{"string":"할당 지독한 고통","value":9015,"oils":"6,9,11"},{"string":"할당 폭발성 지뢰","value":9055,"oils":"6,11,11"},{"string":"할당 무자비한 꿰뚫기","value":9194,"oils":"8,8,12"},{"string":"할당 금단 신봉자","value":9261,"oils":"10,10,10"},{"string":"할당 신속한 정신","value":9432,"oils":"2,8,10"},{"string":"할당 사냥꾼의 책략","value":9535,"oils":"1,4,12"},{"string":"할당 빛 포식자","value":9567,"oils":"6,8,9"},{"string":"할당 기민함","value":9788,"oils":"3,9,9"},{"string":"할당 성장과 부패","value":9864,"oils":"1,5,13"}],"trade":{"ids":{"enchant":["enchant.stat_2954116742"]},"option":true}} +{"ref":"Allocates # if you have the matching modifier on Forbidden Flame","better":1,"matchers":[{"string":"금단의 화염에 일치하는 속성이 있을 경우 네크로맨서 할당","value":10099},{"string":"금단의 화염에 일치하는 속성이 있을 경우 잔인한 열정 할당","value":10143},{"string":"금단의 화염에 일치하는 속성이 있을 경우 믿음의 추구 할당","value":1105},{"string":"금단의 화염에 일치하는 속성이 있을 경우 격려 할당","value":11412},{"string":"금단의 화염에 일치하는 속성이 있을 경우 역병운반자 할당","value":11490},{"string":"금단의 화염에 일치하는 속성이 있을 경우 계절의 가르침 할당","value":11597},{"string":"금단의 화염에 일치하는 속성이 있을 경우 오컬티스트 할당","value":12597},{"string":"금단의 화염에 일치하는 속성이 있을 경우 금속의 대가 할당","value":13374},{"string":"금단의 화염에 일치하는 속성이 있을 경우 열의의 도구 할당","value":13851},{"string":"금단의 화염에 일치하는 속성이 있을 경우 폭발물 전문가 할당","value":14103},{"string":"금단의 화염에 일치하는 속성이 있을 경우 뼈대 방어막 할당","value":14603},{"string":"금단의 화염에 일치하는 속성이 있을 경우 템플러 전직 할당","value":15435},{"string":"금단의 화염에 일치하는 속성이 있을 경우 들쭉날쭉한 기술 할당","value":15616},{"string":"금단의 화염에 일치하는 속성이 있을 경우 명인의 형태 할당","value":16306},{"string":"금단의 화염에 일치하는 속성이 있을 경우 겨울의 서약 할당","value":16848},{"string":"금단의 화염에 일치하는 속성이 있을 경우 방화광 할당","value":16940},{"string":"금단의 화염에 일치하는 속성이 있을 경우 일류 독술사 할당","value":1697},{"string":"금단의 화염에 일치하는 속성이 있을 경우 죽음의 광분, 히네코라 할당","value":1731},{"string":"금단의 화염에 일치하는 속성이 있을 경우 압도 할당","value":17315},{"string":"금단의 화염에 일치하는 속성이 있을 경우 불굴 할당","value":1734},{"string":"금단의 화염에 일치하는 속성이 있을 경우 견인불발 할당","value":17988},{"string":"금단의 화염에 일치하는 속성이 있을 경우 자연의 광분 할당","value":18054},{"string":"금단의 화염에 일치하는 속성이 있을 경우 기회주의 할당","value":19083},{"string":"금단의 화염에 일치하는 속성이 있을 경우 해방된 잠재력 할당","value":19355},{"string":"금단의 화염에 일치하는 속성이 있을 경우 미덕의 도구 할당","value":19417},{"string":"금단의 화염에 일치하는 속성이 있을 경우 유독성 일격 할당","value":1945},{"string":"금단의 화염에 일치하는 속성이 있을 경우 맹독성 전달 할당","value":19598},{"string":"금단의 화염에 일치하는 속성이 있을 경우 변함없는 성전 할당","value":19641},{"string":"금단의 화염에 일치하는 속성이 있을 경우 매복과 암살 할당","value":21264},{"string":"금단의 화염에 일치하는 속성이 있을 경우 강력한 정밀함 할당","value":21455},{"string":"금단의 화염에 일치하는 속성이 있을 경우 바람 수호 할당","value":23169},{"string":"금단의 화염에 일치하는 속성이 있을 경우 한발 앞서 할당","value":23225},{"string":"금단의 화염에 일치하는 속성이 있을 경우 시신의 서약 할당","value":23572},{"string":"금단의 화염에 일치하는 속성이 있을 경우 살육의 갈망 할당","value":24528},{"string":"금단의 화염에 일치하는 속성이 있을 경우 머라우더의 길 할당","value":24755},{"string":"금단의 화염에 일치하는 속성이 있을 경우 듀얼리스트 전직 할당","value":24798},{"string":"금단의 화염에 일치하는 속성이 있을 경우 몰려드는 바람 할당","value":24848},{"string":"금단의 화염에 일치하는 속성이 있을 경우 고사시키는 존재 할당","value":25309},{"string":"금단의 화염에 일치하는 속성이 있을 경우 힘의 신념 할당","value":25651},{"string":"금단의 화염에 일치하는 속성이 있을 경우 원소 골렘술사 할당","value":258},{"string":"금단의 화염에 일치하는 속성이 있을 경우 기술 외의 소질 할당","value":2598},{"string":"금단의 화염에 일치하는 속성이 있을 경우 끝없는 탄약 할당","value":26067},{"string":"금단의 화염에 일치하는 속성이 있을 경우 폭풍의 형성자 할당","value":27038},{"string":"금단의 화염에 일치하는 속성이 있을 경우 공허의 등불 할당","value":27096},{"string":"금단의 화염에 일치하는 속성이 있을 경우 아홉 목숨 할당","value":27602},{"string":"금단의 화염에 일치하는 속성이 있을 경우 선수필승 할당","value":27604},{"string":"금단의 화염에 일치하는 속성이 있을 경우 불필요한 폭력 할당","value":27864},{"string":"금단의 화염에 일치하는 속성이 있을 경우 완전 범죄 할당","value":28535},{"string":"금단의 화염에 일치하는 속성이 있을 경우 점령군 할당","value":2872},{"string":"금단의 화염에 일치하는 속성이 있을 경우 안개 속을 걷는 자 할당","value":28782},{"string":"금단의 화염에 일치하는 속성이 있을 경우 심정지 할당","value":28884},{"string":"금단의 화염에 일치하는 속성이 있을 경우 [UNUSED] Slamako, Slam's Slam 할당","value":28986},{"string":"금단의 화염에 일치하는 속성이 있을 경우 사고의 성역 할당","value":29026},{"string":"금단의 화염에 일치하는 속성이 있을 경우 공세 할당","value":29630},{"string":"금단의 화염에 일치하는 속성이 있을 경우 숙련된 약초학자 할당","value":29662},{"string":"금단의 화염에 일치하는 속성이 있을 경우 탈출의 명수 할당","value":29825},{"string":"금단의 화염에 일치하는 속성이 있을 경우 가디언 할당","value":30919},{"string":"금단의 화염에 일치하는 속성이 있을 경우 불경한 권위 할당","value":31344},{"string":"금단의 화염에 일치하는 속성이 있을 경우 봄의 서약 할당","value":31364},{"string":"금단의 화염에 일치하는 속성이 있을 경우 태양의 포효 시온 할당","value":31667},{"string":"금단의 화염에 일치하는 속성이 있을 경우 강건함 할당","value":31700},{"string":"금단의 화염에 일치하는 속성이 있을 경우 참수자 할당","value":3184},{"string":"금단의 화염에 일치하는 속성이 있을 경우 폭풍으로 감싸는 자, 발라코 할당","value":32249},{"string":"금단의 화염에 일치하는 속성이 있을 경우 전쟁 인도자 할당","value":32251},{"string":"금단의 화염에 일치하는 속성이 있을 경우 경건한 길 할당","value":32816},{"string":"금단의 화염에 일치하는 속성이 있을 경우 재빠른 살인자 할당","value":32947},{"string":"금단의 화염에 일치하는 속성이 있을 경우 여름의 서약 할당","value":33645},{"string":"금단의 화염에 일치하는 속성이 있을 경우 무적의 영웅 할당","value":33940},{"string":"금단의 화염에 일치하는 속성이 있을 경우 각성의 의식 할당","value":34434},{"string":"금단의 화염에 일치하는 속성이 있을 경우 끝없는 굶주림 할당","value":34484},{"string":"금단의 화염에 일치하는 속성이 있을 경우 데드아이 할당","value":34567},{"string":"금단의 화염에 일치하는 속성이 있을 경우 글래디에이터 할당","value":34774},{"string":"금단의 화염에 일치하는 속성이 있을 경우 에센스 포식 할당","value":3554},{"string":"금단의 화염에 일치하는 속성이 있을 경우 정복자 할당","value":35750},{"string":"금단의 화염에 일치하는 속성이 있을 경우 어둠의 사령관 할당","value":36017},{"string":"금단의 화염에 일치하는 속성이 있을 경우 노련한 사냥꾼 할당","value":36958},{"string":"금단의 화염에 일치하는 속성이 있을 경우 부정한 꽃 할당","value":37127},{"string":"금단의 화염에 일치하는 속성이 있을 경우 끔찍한 보루 할당","value":37492},{"string":"금단의 화염에 일치하는 속성이 있을 경우 충격 할당","value":38180},{"string":"금단의 화염에 일치하는 속성이 있을 경우 연쇄 반응 할당","value":38918},{"string":"금단의 화염에 일치하는 속성이 있을 경우 결함 없는 야만성 할당","value":38999},{"string":"금단의 화염에 일치하는 속성이 있을 경우 챔피언 할당","value":39598},{"string":"금단의 화염에 일치하는 속성이 있을 경우 희망의 보루 할당","value":39728},{"string":"금단의 화염에 일치하는 속성이 있을 경우 성역 할당","value":39790},{"string":"금단의 화염에 일치하는 속성이 있을 경우 폭파 전문가 할당","value":39834},{"string":"금단의 화염에 일치하는 속성이 있을 경우 참회의 조짐 할당","value":40059},{"string":"금단의 화염에 일치하는 속성이 있을 경우 지속되는 확산 할당","value":40104},{"string":"금단의 화염에 일치하는 속성이 있을 경우 비전의 축복 할당","value":40510},{"string":"금단의 화염에 일치하는 속성이 있을 경우 겨울의 형성자 할당","value":40810},{"string":"금단의 화염에 일치하는 속성이 있을 경우 자연의 앙갚음 할당","value":40813},{"string":"금단의 화염에 일치하는 속성이 있을 경우 주문분쇄자 할당","value":41891},{"string":"금단의 화염에 일치하는 속성이 있을 경우 버서커 할당","value":4194},{"string":"금단의 화염에 일치하는 속성이 있을 경우 하이로펀트 할당","value":42144},{"string":"금단의 화염에 일치하는 속성이 있을 경우 찬란한 믿음 할당","value":42264},{"string":"금단의 화염에 일치하는 속성이 있을 경우 불안정한 주입 할당","value":4242},{"string":"금단의 화염에 일치하는 속성이 있을 경우 치명적인 번창 할당","value":42469},{"string":"금단의 화염에 일치하는 속성이 있을 경우 어쌔신 할당","value":43122},{"string":"금단의 화염에 일치하는 속성이 있을 경우 슬레이어 할당","value":43195},{"string":"금단의 화염에 일치하는 속성이 있을 경우 인퀴지터 할당","value":43962},{"string":"금단의 화염에 일치하는 속성이 있을 경우 명명백백 할당","value":44297},{"string":"금단의 화염에 일치하는 속성이 있을 경우 야욕 할당","value":44482},{"string":"금단의 화염에 일치하는 속성이 있을 경우 찬란한 성전 할당","value":4494},{"string":"금단의 화염에 일치하는 속성이 있을 경우 장거리 사격 할당","value":45313},{"string":"금단의 화염에 일치하는 속성이 있을 경우 차디찬 각성 할당","value":47630},{"string":"금단의 화염에 일치하는 속성이 있을 경우 폭탄 전문가 할당","value":47778},{"string":"금단의 화염에 일치하는 속성이 있을 경우 피할 수 없는 심판 할당","value":48214},{"string":"금단의 화염에 일치하는 속성이 있을 경우 치명적인 주입 할당","value":48239},{"string":"금단의 화염에 일치하는 속성이 있을 경우 물을 정화하는 자, 타살리오 할당","value":48480},{"string":"금단의 화염에 일치하는 속성이 있을 경우 어머니의 가르침 할당","value":4849},{"string":"금단의 화염에 일치하는 속성이 있을 경우 희생의 여주인 할당","value":48719},{"string":"금단의 화염에 일치하는 속성이 있을 경우 영혼 흡수자 할당","value":48999},{"string":"금단의 화염에 일치하는 속성이 있을 경우 원소의 보루 할당","value":4917},{"string":"금단의 화염에 일치하는 속성이 있을 경우 레인저 전직 할당","value":49532},{"string":"금단의 화염에 일치하는 속성이 있을 경우 숲의 힘, 타호아 할당","value":5029},{"string":"금단의 화염에 일치하는 속성이 있을 경우 영광의 기도 할당","value":50356},{"string":"금단의 화염에 일치하는 속성이 있을 경우 불꽃의 진보, 나마후 할당","value":50692},{"string":"금단의 화염에 일치하는 속성이 있을 경우 어둠의 자식 할당","value":5087},{"string":"금단의 화염에 일치하는 속성이 있을 경우 자연의 아드레날린 할당","value":51101},{"string":"금단의 화염에 일치하는 속성이 있을 경우 황량함의 형성자 할당","value":51391},{"string":"금단의 화염에 일치하는 속성이 있을 경우 태엽장치처럼 할당","value":51462},{"string":"금단의 화염에 일치하는 속성이 있을 경우 의지력의 징표 할당","value":51492},{"string":"금단의 화염에 일치하는 속성이 있을 경우 위치 전직 할당","value":51782},{"string":"금단의 화염에 일치하는 속성이 있을 경우 불굴의 결의 할당","value":52435},{"string":"금단의 화염에 일치하는 속성이 있을 경우 무기의 대가 할당","value":52575},{"string":"금단의 화염에 일치하는 속성이 있을 경우 전쟁의 전령, 투코하마 할당","value":53095},{"string":"금단의 화염에 일치하는 속성이 있을 경우 화염의 형성자 할당","value":53123},{"string":"금단의 화염에 일치하는 속성이 있을 경우 무적 할당","value":53816},{"string":"금단의 화염에 일치하는 속성이 있을 경우 정의로운 섭리 할당","value":53884},{"string":"금단의 화염에 일치하는 속성이 있을 경우 쉐도우의 길 할당","value":53992},{"string":"금단의 화염에 일치하는 속성이 있을 경우 이유 없는 공격성 할당","value":54159},{"string":"금단의 화염에 일치하는 속성이 있을 경우 집중점 할당","value":5443},{"string":"금단의 화염에 일치하는 속성이 있을 경우 템플러의 길 할당","value":54877},{"string":"금단의 화염에 일치하는 속성이 있을 경우 사악한 수호 할당","value":5502},{"string":"금단의 화염에 일치하는 속성이 있을 경우 긴요한 시기 할당","value":55146},{"string":"금단의 화염에 일치하는 속성이 있을 경우 야생의 화신 할당","value":55509},{"string":"금단의 화염에 일치하는 속성이 있을 경우 대학자 할당","value":55867},{"string":"금단의 화염에 일치하는 속성이 있을 경우 태고의 군주 할당","value":56461},{"string":"금단의 화염에 일치하는 속성이 있을 경우 위치의 길 할당","value":56722},{"string":"금단의 화염에 일치하는 속성이 있을 경우 분투 할당","value":56789},{"string":"금단의 화염에 일치하는 속성이 있을 경우 호적수 할당","value":56967},{"string":"금단의 화염에 일치하는 속성이 있을 경우 치프틴 할당","value":57052},{"string":"금단의 화염에 일치하는 속성이 있을 경우 파괴의 심장 할당","value":57197},{"string":"금단의 화염에 일치하는 속성이 있을 경우 공허의 고삐 할당","value":57331},{"string":"금단의 화염에 일치하는 속성이 있을 경우 폐허의 의식 할당","value":57560},{"string":"금단의 화염에 일치하는 속성이 있을 경우 이글거리는 순수 할당","value":57568},{"string":"금단의 화염에 일치하는 속성이 있을 경우 폭주 할당","value":5819},{"string":"금단의 화염에 일치하는 속성이 있을 경우 사보추어 할당","value":58827},{"string":"금단의 화염에 일치하는 속성이 있을 경우 학살의 위상 할당","value":59920},{"string":"금단의 화염에 일치하는 속성이 있을 경우 증류의 달인 할당","value":6038},{"string":"금단의 화염에 일치하는 속성이 있을 경우 빛나는 헌신 할당","value":60462},{"string":"금단의 화염에 일치하는 속성이 있을 경우 저거넛 할당","value":61072},{"string":"금단의 화염에 일치하는 속성이 있을 경우 불화의 지휘자 할당","value":61259},{"string":"금단의 화염에 일치하는 속성이 있을 경우 태양의 빛, 라마코 할당","value":61355},{"string":"금단의 화염에 일치하는 속성이 있을 경우 의지력의 조화 할당","value":61372},{"string":"금단의 화염에 일치하는 속성이 있을 경우 머라우더 전직 할당","value":61437},{"string":"금단의 화염에 일치하는 속성이 있을 경우 튕겨 쏘기 할당","value":61627},{"string":"금단의 화염에 일치하는 속성이 있을 경우 일류 연금술사 할당","value":61805},{"string":"금단의 화염에 일치하는 속성이 있을 경우 금지된 힘 할당","value":62504},{"string":"금단의 화염에 일치하는 속성이 있을 경우 완고 할당","value":62595},{"string":"금단의 화염에 일치하는 속성이 있을 경우 전설의 파멸 할당","value":62817},{"string":"금단의 화염에 일치하는 속성이 있을 경우 일류 의사 할당","value":63293},{"string":"금단의 화염에 일치하는 속성이 있을 경우 듀얼리스트의 길 할당","value":63357},{"string":"금단의 화염에 일치하는 속성이 있을 경우 계획적인 보복 할당","value":63490},{"string":"금단의 화염에 일치하는 속성이 있을 경우 폐허의 등불 할당","value":64588},{"string":"금단의 화염에 일치하는 속성이 있을 경우 변함없는 믿음 할당","value":64768},{"string":"금단의 화염에 일치하는 속성이 있을 경우 초자연적인 힘 할당","value":65153},{"string":"금단의 화염에 일치하는 속성이 있을 경우 자연의 은혜 할당","value":65296},{"string":"금단의 화염에 일치하는 속성이 있을 경우 트릭스터 할당","value":6778},{"string":"금단의 화염에 일치하는 속성이 있을 경우 소모전 할당","value":758},{"string":"금단의 화염에 일치하는 속성이 있을 경우 레인저의 길 할당","value":7618},{"string":"금단의 화염에 일치하는 속성이 있을 경우 쉐도우 전직 할당","value":772},{"string":"금단의 화염에 일치하는 속성이 있을 경우 엘리멘탈리스트 할당","value":8281},{"string":"금단의 화염에 일치하는 속성이 있을 경우 결연한 생존자 할당","value":8419},{"string":"금단의 화염에 일치하는 속성이 있을 경우 워든 할당","value":8656},{"string":"금단의 화염에 일치하는 속성이 있을 경우 신성한 인도 할당","value":922},{"string":"금단의 화염에 일치하는 속성이 있을 경우 고통 무시 할당","value":9271},{"string":"금단의 화염에 일치하는 속성이 있을 경우 패스파인더 할당","value":9327}],"trade":{"ids":{"explicit":["explicit.stat_2460506030"]},"option":true}} +{"ref":"Allocates # if you have the matching modifier on Forbidden Flesh","better":1,"matchers":[{"string":"금단의 살점에 일치하는 속성이 있을 경우 네크로맨서 할당","value":10099},{"string":"금단의 살점에 일치하는 속성이 있을 경우 잔인한 열정 할당","value":10143},{"string":"금단의 살점에 일치하는 속성이 있을 경우 믿음의 추구 할당","value":1105},{"string":"금단의 살점에 일치하는 속성이 있을 경우 격려 할당","value":11412},{"string":"금단의 살점에 일치하는 속성이 있을 경우 역병운반자 할당","value":11490},{"string":"금단의 살점에 일치하는 속성이 있을 경우 계절의 가르침 할당","value":11597},{"string":"금단의 살점에 일치하는 속성이 있을 경우 오컬티스트 할당","value":12597},{"string":"금단의 살점에 일치하는 속성이 있을 경우 금속의 대가 할당","value":13374},{"string":"금단의 살점에 일치하는 속성이 있을 경우 열의의 도구 할당","value":13851},{"string":"금단의 살점에 일치하는 속성이 있을 경우 폭발물 전문가 할당","value":14103},{"string":"금단의 살점에 일치하는 속성이 있을 경우 뼈대 방어막 할당","value":14603},{"string":"금단의 살점에 일치하는 속성이 있을 경우 템플러 전직 할당","value":15435},{"string":"금단의 살점에 일치하는 속성이 있을 경우 들쭉날쭉한 기술 할당","value":15616},{"string":"금단의 살점에 일치하는 속성이 있을 경우 명인의 형태 할당","value":16306},{"string":"금단의 살점에 일치하는 속성이 있을 경우 겨울의 서약 할당","value":16848},{"string":"금단의 살점에 일치하는 속성이 있을 경우 방화광 할당","value":16940},{"string":"금단의 살점에 일치하는 속성이 있을 경우 일류 독술사 할당","value":1697},{"string":"금단의 살점에 일치하는 속성이 있을 경우 죽음의 광분, 히네코라 할당","value":1731},{"string":"금단의 살점에 일치하는 속성이 있을 경우 압도 할당","value":17315},{"string":"금단의 살점에 일치하는 속성이 있을 경우 불굴 할당","value":1734},{"string":"금단의 살점에 일치하는 속성이 있을 경우 견인불발 할당","value":17988},{"string":"금단의 살점에 일치하는 속성이 있을 경우 자연의 광분 할당","value":18054},{"string":"금단의 살점에 일치하는 속성이 있을 경우 기회주의 할당","value":19083},{"string":"금단의 살점에 일치하는 속성이 있을 경우 해방된 잠재력 할당","value":19355},{"string":"금단의 살점에 일치하는 속성이 있을 경우 미덕의 도구 할당","value":19417},{"string":"금단의 살점에 일치하는 속성이 있을 경우 유독성 일격 할당","value":1945},{"string":"금단의 살점에 일치하는 속성이 있을 경우 맹독성 전달 할당","value":19598},{"string":"금단의 살점에 일치하는 속성이 있을 경우 변함없는 성전 할당","value":19641},{"string":"금단의 살점에 일치하는 속성이 있을 경우 매복과 암살 할당","value":21264},{"string":"금단의 살점에 일치하는 속성이 있을 경우 강력한 정밀함 할당","value":21455},{"string":"금단의 살점에 일치하는 속성이 있을 경우 바람 수호 할당","value":23169},{"string":"금단의 살점에 일치하는 속성이 있을 경우 한발 앞서 할당","value":23225},{"string":"금단의 살점에 일치하는 속성이 있을 경우 시신의 서약 할당","value":23572},{"string":"금단의 살점에 일치하는 속성이 있을 경우 살육의 갈망 할당","value":24528},{"string":"금단의 살점에 일치하는 속성이 있을 경우 머라우더의 길 할당","value":24755},{"string":"금단의 살점에 일치하는 속성이 있을 경우 듀얼리스트 전직 할당","value":24798},{"string":"금단의 살점에 일치하는 속성이 있을 경우 몰려드는 바람 할당","value":24848},{"string":"금단의 살점에 일치하는 속성이 있을 경우 고사시키는 존재 할당","value":25309},{"string":"금단의 살점에 일치하는 속성이 있을 경우 힘의 신념 할당","value":25651},{"string":"금단의 살점에 일치하는 속성이 있을 경우 원소 골렘술사 할당","value":258},{"string":"금단의 살점에 일치하는 속성이 있을 경우 기술 외의 소질 할당","value":2598},{"string":"금단의 살점에 일치하는 속성이 있을 경우 끝없는 탄약 할당","value":26067},{"string":"금단의 살점에 일치하는 속성이 있을 경우 폭풍의 형성자 할당","value":27038},{"string":"금단의 살점에 일치하는 속성이 있을 경우 공허의 등불 할당","value":27096},{"string":"금단의 살점에 일치하는 속성이 있을 경우 아홉 목숨 할당","value":27602},{"string":"금단의 살점에 일치하는 속성이 있을 경우 선수필승 할당","value":27604},{"string":"금단의 살점에 일치하는 속성이 있을 경우 불필요한 폭력 할당","value":27864},{"string":"금단의 살점에 일치하는 속성이 있을 경우 완전 범죄 할당","value":28535},{"string":"금단의 살점에 일치하는 속성이 있을 경우 점령군 할당","value":2872},{"string":"금단의 살점에 일치하는 속성이 있을 경우 안개 속을 걷는 자 할당","value":28782},{"string":"금단의 살점에 일치하는 속성이 있을 경우 심정지 할당","value":28884},{"string":"금단의 살점에 일치하는 속성이 있을 경우 [UNUSED] Slamako, Slam's Slam 할당","value":28986},{"string":"금단의 살점에 일치하는 속성이 있을 경우 사고의 성역 할당","value":29026},{"string":"금단의 살점에 일치하는 속성이 있을 경우 공세 할당","value":29630},{"string":"금단의 살점에 일치하는 속성이 있을 경우 숙련된 약초학자 할당","value":29662},{"string":"금단의 살점에 일치하는 속성이 있을 경우 탈출의 명수 할당","value":29825},{"string":"금단의 살점에 일치하는 속성이 있을 경우 가디언 할당","value":30919},{"string":"금단의 살점에 일치하는 속성이 있을 경우 불경한 권위 할당","value":31344},{"string":"금단의 살점에 일치하는 속성이 있을 경우 봄의 서약 할당","value":31364},{"string":"금단의 살점에 일치하는 속성이 있을 경우 태양의 포효 시온 할당","value":31667},{"string":"금단의 살점에 일치하는 속성이 있을 경우 강건함 할당","value":31700},{"string":"금단의 살점에 일치하는 속성이 있을 경우 참수자 할당","value":3184},{"string":"금단의 살점에 일치하는 속성이 있을 경우 폭풍으로 감싸는 자, 발라코 할당","value":32249},{"string":"금단의 살점에 일치하는 속성이 있을 경우 전쟁 인도자 할당","value":32251},{"string":"금단의 살점에 일치하는 속성이 있을 경우 경건한 길 할당","value":32816},{"string":"금단의 살점에 일치하는 속성이 있을 경우 재빠른 살인자 할당","value":32947},{"string":"금단의 살점에 일치하는 속성이 있을 경우 여름의 서약 할당","value":33645},{"string":"금단의 살점에 일치하는 속성이 있을 경우 무적의 영웅 할당","value":33940},{"string":"금단의 살점에 일치하는 속성이 있을 경우 각성의 의식 할당","value":34434},{"string":"금단의 살점에 일치하는 속성이 있을 경우 끝없는 굶주림 할당","value":34484},{"string":"금단의 살점에 일치하는 속성이 있을 경우 데드아이 할당","value":34567},{"string":"금단의 살점에 일치하는 속성이 있을 경우 글래디에이터 할당","value":34774},{"string":"금단의 살점에 일치하는 속성이 있을 경우 에센스 포식 할당","value":3554},{"string":"금단의 살점에 일치하는 속성이 있을 경우 정복자 할당","value":35750},{"string":"금단의 살점에 일치하는 속성이 있을 경우 어둠의 사령관 할당","value":36017},{"string":"금단의 살점에 일치하는 속성이 있을 경우 노련한 사냥꾼 할당","value":36958},{"string":"금단의 살점에 일치하는 속성이 있을 경우 부정한 꽃 할당","value":37127},{"string":"금단의 살점에 일치하는 속성이 있을 경우 끔찍한 보루 할당","value":37492},{"string":"금단의 살점에 일치하는 속성이 있을 경우 충격 할당","value":38180},{"string":"금단의 살점에 일치하는 속성이 있을 경우 연쇄 반응 할당","value":38918},{"string":"금단의 살점에 일치하는 속성이 있을 경우 결함 없는 야만성 할당","value":38999},{"string":"금단의 살점에 일치하는 속성이 있을 경우 챔피언 할당","value":39598},{"string":"금단의 살점에 일치하는 속성이 있을 경우 희망의 보루 할당","value":39728},{"string":"금단의 살점에 일치하는 속성이 있을 경우 성역 할당","value":39790},{"string":"금단의 살점에 일치하는 속성이 있을 경우 폭파 전문가 할당","value":39834},{"string":"금단의 살점에 일치하는 속성이 있을 경우 참회의 조짐 할당","value":40059},{"string":"금단의 살점에 일치하는 속성이 있을 경우 지속되는 확산 할당","value":40104},{"string":"금단의 살점에 일치하는 속성이 있을 경우 비전의 축복 할당","value":40510},{"string":"금단의 살점에 일치하는 속성이 있을 경우 겨울의 형성자 할당","value":40810},{"string":"금단의 살점에 일치하는 속성이 있을 경우 자연의 앙갚음 할당","value":40813},{"string":"금단의 살점에 일치하는 속성이 있을 경우 주문분쇄자 할당","value":41891},{"string":"금단의 살점에 일치하는 속성이 있을 경우 버서커 할당","value":4194},{"string":"금단의 살점에 일치하는 속성이 있을 경우 하이로펀트 할당","value":42144},{"string":"금단의 살점에 일치하는 속성이 있을 경우 찬란한 믿음 할당","value":42264},{"string":"금단의 살점에 일치하는 속성이 있을 경우 불안정한 주입 할당","value":4242},{"string":"금단의 살점에 일치하는 속성이 있을 경우 치명적인 번창 할당","value":42469},{"string":"금단의 살점에 일치하는 속성이 있을 경우 어쌔신 할당","value":43122},{"string":"금단의 살점에 일치하는 속성이 있을 경우 슬레이어 할당","value":43195},{"string":"금단의 살점에 일치하는 속성이 있을 경우 인퀴지터 할당","value":43962},{"string":"금단의 살점에 일치하는 속성이 있을 경우 명명백백 할당","value":44297},{"string":"금단의 살점에 일치하는 속성이 있을 경우 야욕 할당","value":44482},{"string":"금단의 살점에 일치하는 속성이 있을 경우 찬란한 성전 할당","value":4494},{"string":"금단의 살점에 일치하는 속성이 있을 경우 장거리 사격 할당","value":45313},{"string":"금단의 살점에 일치하는 속성이 있을 경우 차디찬 각성 할당","value":47630},{"string":"금단의 살점에 일치하는 속성이 있을 경우 폭탄 전문가 할당","value":47778},{"string":"금단의 살점에 일치하는 속성이 있을 경우 피할 수 없는 심판 할당","value":48214},{"string":"금단의 살점에 일치하는 속성이 있을 경우 치명적인 주입 할당","value":48239},{"string":"금단의 살점에 일치하는 속성이 있을 경우 물을 정화하는 자, 타살리오 할당","value":48480},{"string":"금단의 살점에 일치하는 속성이 있을 경우 어머니의 가르침 할당","value":4849},{"string":"금단의 살점에 일치하는 속성이 있을 경우 희생의 여주인 할당","value":48719},{"string":"금단의 살점에 일치하는 속성이 있을 경우 영혼 흡수자 할당","value":48999},{"string":"금단의 살점에 일치하는 속성이 있을 경우 원소의 보루 할당","value":4917},{"string":"금단의 살점에 일치하는 속성이 있을 경우 레인저 전직 할당","value":49532},{"string":"금단의 살점에 일치하는 속성이 있을 경우 숲의 힘, 타호아 할당","value":5029},{"string":"금단의 살점에 일치하는 속성이 있을 경우 영광의 기도 할당","value":50356},{"string":"금단의 살점에 일치하는 속성이 있을 경우 불꽃의 진보, 나마후 할당","value":50692},{"string":"금단의 살점에 일치하는 속성이 있을 경우 어둠의 자식 할당","value":5087},{"string":"금단의 살점에 일치하는 속성이 있을 경우 자연의 아드레날린 할당","value":51101},{"string":"금단의 살점에 일치하는 속성이 있을 경우 황량함의 형성자 할당","value":51391},{"string":"금단의 살점에 일치하는 속성이 있을 경우 태엽장치처럼 할당","value":51462},{"string":"금단의 살점에 일치하는 속성이 있을 경우 의지력의 징표 할당","value":51492},{"string":"금단의 살점에 일치하는 속성이 있을 경우 위치 전직 할당","value":51782},{"string":"금단의 살점에 일치하는 속성이 있을 경우 불굴의 결의 할당","value":52435},{"string":"금단의 살점에 일치하는 속성이 있을 경우 무기의 대가 할당","value":52575},{"string":"금단의 살점에 일치하는 속성이 있을 경우 전쟁의 전령, 투코하마 할당","value":53095},{"string":"금단의 살점에 일치하는 속성이 있을 경우 화염의 형성자 할당","value":53123},{"string":"금단의 살점에 일치하는 속성이 있을 경우 무적 할당","value":53816},{"string":"금단의 살점에 일치하는 속성이 있을 경우 정의로운 섭리 할당","value":53884},{"string":"금단의 살점에 일치하는 속성이 있을 경우 쉐도우의 길 할당","value":53992},{"string":"금단의 살점에 일치하는 속성이 있을 경우 이유 없는 공격성 할당","value":54159},{"string":"금단의 살점에 일치하는 속성이 있을 경우 집중점 할당","value":5443},{"string":"금단의 살점에 일치하는 속성이 있을 경우 템플러의 길 할당","value":54877},{"string":"금단의 살점에 일치하는 속성이 있을 경우 사악한 수호 할당","value":5502},{"string":"금단의 살점에 일치하는 속성이 있을 경우 긴요한 시기 할당","value":55146},{"string":"금단의 살점에 일치하는 속성이 있을 경우 야생의 화신 할당","value":55509},{"string":"금단의 살점에 일치하는 속성이 있을 경우 대학자 할당","value":55867},{"string":"금단의 살점에 일치하는 속성이 있을 경우 태고의 군주 할당","value":56461},{"string":"금단의 살점에 일치하는 속성이 있을 경우 위치의 길 할당","value":56722},{"string":"금단의 살점에 일치하는 속성이 있을 경우 분투 할당","value":56789},{"string":"금단의 살점에 일치하는 속성이 있을 경우 호적수 할당","value":56967},{"string":"금단의 살점에 일치하는 속성이 있을 경우 치프틴 할당","value":57052},{"string":"금단의 살점에 일치하는 속성이 있을 경우 파괴의 심장 할당","value":57197},{"string":"금단의 살점에 일치하는 속성이 있을 경우 공허의 고삐 할당","value":57331},{"string":"금단의 살점에 일치하는 속성이 있을 경우 폐허의 의식 할당","value":57560},{"string":"금단의 살점에 일치하는 속성이 있을 경우 이글거리는 순수 할당","value":57568},{"string":"금단의 살점에 일치하는 속성이 있을 경우 폭주 할당","value":5819},{"string":"금단의 살점에 일치하는 속성이 있을 경우 사보추어 할당","value":58827},{"string":"금단의 살점에 일치하는 속성이 있을 경우 학살의 위상 할당","value":59920},{"string":"금단의 살점에 일치하는 속성이 있을 경우 증류의 달인 할당","value":6038},{"string":"금단의 살점에 일치하는 속성이 있을 경우 빛나는 헌신 할당","value":60462},{"string":"금단의 살점에 일치하는 속성이 있을 경우 저거넛 할당","value":61072},{"string":"금단의 살점에 일치하는 속성이 있을 경우 불화의 지휘자 할당","value":61259},{"string":"금단의 살점에 일치하는 속성이 있을 경우 태양의 빛, 라마코 할당","value":61355},{"string":"금단의 살점에 일치하는 속성이 있을 경우 의지력의 조화 할당","value":61372},{"string":"금단의 살점에 일치하는 속성이 있을 경우 머라우더 전직 할당","value":61437},{"string":"금단의 살점에 일치하는 속성이 있을 경우 튕겨 쏘기 할당","value":61627},{"string":"금단의 살점에 일치하는 속성이 있을 경우 일류 연금술사 할당","value":61805},{"string":"금단의 살점에 일치하는 속성이 있을 경우 금지된 힘 할당","value":62504},{"string":"금단의 살점에 일치하는 속성이 있을 경우 완고 할당","value":62595},{"string":"금단의 살점에 일치하는 속성이 있을 경우 전설의 파멸 할당","value":62817},{"string":"금단의 살점에 일치하는 속성이 있을 경우 일류 의사 할당","value":63293},{"string":"금단의 살점에 일치하는 속성이 있을 경우 듀얼리스트의 길 할당","value":63357},{"string":"금단의 살점에 일치하는 속성이 있을 경우 계획적인 보복 할당","value":63490},{"string":"금단의 살점에 일치하는 속성이 있을 경우 폐허의 등불 할당","value":64588},{"string":"금단의 살점에 일치하는 속성이 있을 경우 변함없는 믿음 할당","value":64768},{"string":"금단의 살점에 일치하는 속성이 있을 경우 초자연적인 힘 할당","value":65153},{"string":"금단의 살점에 일치하는 속성이 있을 경우 자연의 은혜 할당","value":65296},{"string":"금단의 살점에 일치하는 속성이 있을 경우 트릭스터 할당","value":6778},{"string":"금단의 살점에 일치하는 속성이 있을 경우 소모전 할당","value":758},{"string":"금단의 살점에 일치하는 속성이 있을 경우 레인저의 길 할당","value":7618},{"string":"금단의 살점에 일치하는 속성이 있을 경우 쉐도우 전직 할당","value":772},{"string":"금단의 살점에 일치하는 속성이 있을 경우 엘리멘탈리스트 할당","value":8281},{"string":"금단의 살점에 일치하는 속성이 있을 경우 결연한 생존자 할당","value":8419},{"string":"금단의 살점에 일치하는 속성이 있을 경우 워든 할당","value":8656},{"string":"금단의 살점에 일치하는 속성이 있을 경우 신성한 인도 할당","value":922},{"string":"금단의 살점에 일치하는 속성이 있을 경우 고통 무시 할당","value":9271},{"string":"금단의 살점에 일치하는 속성이 있을 경우 패스파인더 할당","value":9327}],"trade":{"ids":{"explicit":["explicit.stat_1190333629"]},"option":true}} +{"ref":"Always inflict Brittle while affected by Hatred","better":1,"matchers":[{"string":"증오의 영향을 받는 동안 항상 허약 유발"}],"trade":{"ids":{"explicit":["explicit.stat_13285831"]}}} +{"ref":"Always Sap while affected by Wrath","better":1,"matchers":[{"string":"진노의 영향을 받는 동안 항상 활력 감소 유발"}],"trade":{"ids":{"explicit":["explicit.stat_2499038519"]}}} +{"ref":"Always Scorch while affected by Anger","better":1,"matchers":[{"string":"분노의 영향을 받는 동안 항상 그을림 유발"}],"trade":{"ids":{"explicit":["explicit.stat_1585991257"]}}} +{"ref":"An additional Curse can be applied to you","better":1,"matchers":[{"string":"플레이어에게 추가 저주 #개 적용 가능"},{"string":"플레이어에게 추가 저주 적용 가능","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3112863846"]}}} +{"ref":"An additional Room is revealed on the Sanctum Map","better":1,"matchers":[{"string":"성역 지도에서 방 #개가 추가로 드러남"},{"string":"성역 지도에서 방 1개가 추가로 드러남","value":1}],"trade":{"ids":{"explicit":["sanctum.stat_386901949"]}}} +{"ref":"An Enemy Writhing Worms escape the Flask when used\nWrithing Worms are destroyed when Hit","better":1,"matchers":[{"string":"사용 시 플라스크에서 #마리의 꿈틀거리는 벌레 적 탈출\n피격 시 꿈틀거리는 벌레 파괴됨"},{"string":"사용 시 플라스크에서 1마리의 꿈틀거리는 벌레 적 탈출\n피격 시 꿈틀거리는 벌레 파괴됨","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2434293916"]}}} +{"ref":"Ancestral Bond","better":1,"matchers":[{"string":"선대의 유대"}],"trade":{"ids":{"explicit":["explicit.stat_2648570028"],"fractured":["fractured.stat_2648570028"],"scourge":["scourge.stat_2648570028"]}}} +{"ref":"Ancestral Cry has a minimum of # Power","better":1,"matchers":[{"string":"선대의 함성의 최소 위세 #"}],"trade":{"ids":{"enchant":["enchant.stat_988554168"]}}} +{"ref":"Ancestral Protector Totem deals #% increased Damage","better":1,"matchers":[{"string":"선대의 수호자 토템이 주는 피해 #% 증가"},{"string":"선대의 수호자 토템이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2596239449"]}}} +{"ref":"Ancestral Protector Totem grants #% increased Attack Speed while Active","better":1,"matchers":[{"string":"선대의 수호자 토템이 활성 상태인 동안 공격 속도 #% 증가"},{"string":"선대의 수호자 토템이 활성 상태인 동안 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1303996723"]}}} +{"ref":"Ancestral Warchief Totem grants #% increased Melee Damage while Active","better":1,"matchers":[{"string":"선대의 대전사 토템이 활성 상태인 동안 토템의 근접 피해 #% 증가"},{"string":"선대의 대전사 토템이 활성 상태인 동안 토템의 근접 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3543257184"]}}} +{"ref":"and nearby Allies Regenerate 200 Life per second","better":1,"matchers":[{"string":"및 주변 동료들이 1초마다 생명력 200 재생"}],"trade":{"ids":{"explicit":["explicit.stat_1168603868"]}}} +{"ref":"Anger has #% increased Aura Effect","better":1,"matchers":[{"string":"분노의 오라 효과 #% 증가"},{"string":"분노의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1592278124"],"implicit":["implicit.stat_1592278124"],"fractured":["fractured.stat_1592278124"]}}} +{"ref":"Anger has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"분노의 마나 점유 효율 #% 증가"},{"string":"분노의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2549369799","explicit.stat_2963485753"],"fractured":["fractured.stat_2549369799"],"enchant":["enchant.stat_2549369799","enchant.stat_2963485753"]}}} +{"ref":"Anger has no Reservation","better":1,"matchers":[{"string":"분노로 인한 점유 없음"}],"trade":{"ids":{"explicit":["explicit.stat_2189891129"]}}} +{"ref":"Animated Guardian deals #% increased Damage per Animated Weapon","better":1,"matchers":[{"string":"기동된 무기 하나당 기동된 수호자가 주는 피해 #% 증가"},{"string":"기동된 무기 하나당 기동된 수호자가 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_759294825"]}}} +{"ref":"Animated Guardians deal #% increased Damage","better":1,"matchers":[{"string":"기동된 수호자가 주는 피해 #% 증가"},{"string":"기동된 수호자가 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4157143640"]}}} +{"ref":"Animated Minions' Melee Attacks deal #% less Splash Damage to surrounding targets","better":-1,"matchers":[{"string":"기동된 소환수의 근접 공격으로 주변 대상에게 주는 범위 피해 #% 증폭"},{"string":"기동된 소환수의 근접 공격으로 주변 대상에게 주는 범위 피해 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_478698670"]},"inverted":true}} +{"ref":"Animated Minions' Melee Attacks deal Splash Damage to surrounding targets","better":1,"matchers":[{"string":"기동된 소환수의 근접 공격으로 주변 대상에게 범위 피해를 줌"}],"trade":{"ids":{"explicit":["explicit.stat_91242932"]}}} +{"ref":"Animated Weapons deal #% increased Damage","better":1,"matchers":[{"string":"기동된 무기가 주는 피해 #% 증가"},{"string":"기동된 무기가 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1819674879"]}}} +{"ref":"Arc Chains an additional time","better":1,"matchers":[{"string":"연쇄 번개가 #회 추가 연쇄"},{"string":"연쇄 번개가 1회 추가 연쇄","value":1}],"trade":{"ids":{"enchant":["enchant.stat_2461552986"]}}} +{"ref":"Arc deals #% increased Damage for each time it has Chained","better":1,"matchers":[{"string":"연쇄 번개가 연쇄한 횟수 하나당 주는 피해 #% 증가"}],"trade":{"ids":{"enchant":["enchant.stat_3998182656"]}}} +{"ref":"Arc has +#% chance to Shock","better":1,"matchers":[{"string":"연쇄 번개 감전 확률 #%"},{"string":"연쇄 번개가 항상 감전 유발","value":100}],"trade":{"ids":{"enchant":["enchant.stat_195463427"]}}} +{"ref":"Arcane Cloak grants Life Regeneration equal to #% of Mana Spent per Second","better":1,"matchers":[{"string":"비전의 망토가 1초마다 사용한 마나의 #%와 동일한 생명력 재생"}],"trade":{"ids":{"enchant":["enchant.stat_3606492882"]}}} +{"ref":"Arcane Cloak Spends an additional #% of current Mana","better":1,"matchers":[{"string":"비전의 망토가 현재 마나의 #%를 추가 소모"}],"trade":{"ids":{"enchant":["enchant.stat_122106412"]}}} +{"ref":"Arcanist Brand has #% increased Cast Speed","better":1,"matchers":[{"string":"신비학자 낙인 시전 속도 #% 증가"},{"string":"신비학자 낙인 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1147445274"]}}} +{"ref":"Arctic Armour has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"한기의 방어구의 마나 점유 효율 #% 증가"},{"string":"한기의 방어구의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2351239732","explicit.stat_2605040931"],"implicit":["implicit.stat_2351239732"],"fractured":["fractured.stat_2351239732","fractured.stat_2605040931"],"enchant":["enchant.stat_2351239732","enchant.stat_2605040931"]}}} +{"ref":"Arctic Armour has no Reservation","better":1,"matchers":[{"string":"한기의 방어구로 인한 점유 없음"}],"trade":{"ids":{"explicit":["explicit.stat_1483066460"]}}} +{"ref":"Area can contain Breaches","better":1,"matchers":[{"string":"지역에 균열 등장 가능"}],"trade":{"ids":{"enchant":["enchant.stat_2180286756"]}}} +{"ref":"Area contains # additional Chest Marker","better":1,"fromAreaMods":true,"matchers":[{"string":"지역에 상자 표시물 #개 추가 등장"}],"trade":{"ids":{"implicit":["implicit.stat_4160330571"]}}} +{"ref":"Area contains # additional pack of Corrupted Vaal Monsters","better":1,"fromAreaMods":true,"matchers":[{"string":"지역에 타락한 바알 몬스터 무리 #개 추가 등장"}],"trade":{"ids":{"enchant":["enchant.stat_1867024035"]}}} +{"ref":"Area contains #% increased number of Monster Markers","better":1,"fromAreaMods":true,"matchers":[{"string":"지역에 몬스터 표시물 수량 #% 감소"},{"string":"지역에 몬스터 표시물 수량 #% 증가"}],"trade":{"ids":{"implicit":["implicit.stat_1915989164"]}}} +{"ref":"Area contains #% increased number of Remnants","better":1,"fromAreaMods":true,"matchers":[{"string":"지역 내 유적 수 #% 증가"}],"trade":{"ids":{"implicit":["implicit.stat_2991413918"]}}} +{"ref":"Area contains #% increased number of Runic Monster Markers","better":1,"fromAreaMods":true,"matchers":[{"string":"지역에 룬 몬스터 표시물 수량 #% 감소"},{"string":"지역에 룬 몬스터 표시물 수량 #% 증가"}],"trade":{"ids":{"implicit":["implicit.stat_1640965354"],"enchant":["enchant.stat_1640965354"]}}} +{"ref":"Area contains a Blight Encounter","better":1,"matchers":[{"string":"지역에 역병 인카운터 등장"}],"trade":{"ids":{"explicit":["explicit.stat_2459443694"],"enchant":["enchant.stat_2459443694"]}}} +{"ref":"Area contains an additional Abyss","better":1,"matchers":[{"string":"지역에 심연 #개 추가 등장"},{"string":"지역에 심연 1개 추가 등장","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1070816711"],"implicit":["implicit.stat_1070816711"],"enchant":["enchant.stat_1070816711"]}}} +{"ref":"Area contains an additional Breach","better":1,"matchers":[{"string":"지역에 균열 #개 추가 등장"},{"string":"지역에 균열 1개 추가 등장","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3224819794"],"implicit":["implicit.stat_3224819794"],"enchant":["enchant.stat_3224819794"]}}} +{"ref":"Area contains an additional guarded Exquisite Vaal Vessel","better":1,"fromAreaMods":true,"matchers":[{"string":"지역에 방어되는 정교한 바알 그릇 #개 추가 등장"},{"string":"지역에 방어되는 정교한 바알 그릇 1개 추가 등장","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1612402470"],"implicit":["implicit.stat_1612402470"]}}} +{"ref":"Area contains an additional Imprisoned Monster","better":1,"matchers":[{"string":"지역에 갇힌 몬스터 #마리 추가 등장"},{"string":"지역에 갇힌 몬스터 1마리 추가 등장","value":1}],"trade":{"ids":{"implicit":["implicit.stat_395808938"],"enchant":["enchant.stat_395808938"]}}} +{"ref":"Area contains an additional Legion Encounter","better":1,"matchers":[{"string":"지역에 군단 인카운터 #개 추가 등장"},{"string":"지역에 군단 인카운터 1개 추가 등장","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3897451709"],"implicit":["implicit.stat_3897451709"],"enchant":["enchant.stat_3897451709"]}}} +{"ref":"Area contains an additional Shrine","better":1,"matchers":[{"string":"지역에 성소 #개 추가 존재"},{"string":"지역에 추가 성소 존재","value":1}],"trade":{"ids":{"implicit":["implicit.stat_1468737867"],"enchant":["enchant.stat_1468737867"]}}} +{"ref":"Area contains an additional Smuggler's Cache","better":1,"matchers":[{"string":"지역에 밀수범의 은닉함 #개 추가 등장"},{"string":"지역에 밀수범의 은닉함 1개 추가 등장","value":1}],"trade":{"ids":{"implicit":["implicit.stat_3307533469"]}}} +{"ref":"Area contains an additional Strongbox","better":1,"matchers":[{"string":"지역에 추가 금고 #개 존재"},{"string":"지역에 추가 금고 존재","value":1}],"trade":{"ids":{"implicit":["implicit.stat_3240183538"],"enchant":["enchant.stat_3240183538"]}}} +{"ref":"Area contains an additional Underground Area","better":1,"fromAreaMods":true,"matchers":[{"string":"지역에 지하 지역 #개 추가 등장"},{"string":"지역에 지하 지역 1개 추가 등장","value":1}],"trade":{"ids":{"implicit":["implicit.stat_1160596338"]}}} +{"ref":"Area contains an Expedition Boss (#)","better":1,"matchers":[{"string":"지역에 영웅을 쓰러뜨리는 자 메드베드 등장","value":1},{"string":"지역에 최후의 보루 보라나 등장","value":2},{"string":"지역에 갈망하는 배반자 우트레드 등장","value":3},{"string":"지역에 몰락의 기원 올로스 등장","value":4}],"trade":{"ids":{"implicit":["implicit.stat_3159649981"]},"option":true}} +{"ref":"Area contains an Expedition Encounter","better":1,"matchers":[{"string":"지역에 탐험 인카운터 1개 등장"}],"trade":{"ids":{"explicit":["explicit.stat_3557750122"],"implicit":["implicit.stat_3557750122"]}}} +{"ref":"Area contains Drowning Orbs","better":1,"fromUberAreaMods":true,"matchers":[{"string":"지역에 질식의 구체 등장"}],"trade":{"ids":{"explicit":["explicit.stat_25225034"],"fractured":["fractured.stat_25225034"]}}} +{"ref":"Area contains many Totems","better":1,"fromAreaMods":true,"matchers":[{"string":"지역에 다수의 토템 존재"}],"trade":{"ids":{"explicit":["explicit.stat_1000591322"],"fractured":["fractured.stat_1000591322"]}}} +{"ref":"Area contains Metamorph Monsters","better":1,"matchers":[{"string":"지역에 변형 몬스터 등장"}],"trade":{"ids":{"implicit":["implicit.stat_1994562755"],"enchant":["enchant.stat_1994562755"]}}} +{"ref":"Area contains Petrification Statues","better":1,"fromUberAreaMods":true,"matchers":[{"string":"지역에 석화의 조각상 등장"}],"trade":{"ids":{"explicit":["explicit.stat_3709982550"],"fractured":["fractured.stat_3709982550"]}}} +{"ref":"Area contains Runes of the Searing Exarch","better":1,"fromUberAreaMods":true,"matchers":[{"string":"지역에 작열의 총주교의 룬 등장"}],"trade":{"ids":{"explicit":["explicit.stat_2073168229"],"fractured":["fractured.stat_2073168229"]}}} +{"ref":"Area contains The Sacred Grove","better":1,"matchers":[{"string":"지역에 신성한 숲 등장"}],"trade":{"ids":{"implicit":["implicit.stat_1145451936"],"enchant":["enchant.stat_1145451936"]}}} +{"ref":"Area contains two Unique Bosses","better":1,"fromAreaMods":true,"matchers":[{"string":"지역에 고유 보스 2마리 등장"}],"trade":{"ids":{"explicit":["explicit.stat_799271621"],"fractured":["fractured.stat_799271621"]}}} +{"ref":"Area contains Unstable Tentacle Fiends","better":1,"fromUberAreaMods":true,"matchers":[{"string":"지역에 불안정한 촉수 마귀 등장"}],"trade":{"ids":{"explicit":["explicit.stat_1943574423"],"fractured":["fractured.stat_1943574423"]}}} +{"ref":"Area has an additional random Scarab effect","better":1,"fromAreaMods":true,"matchers":[{"string":"지역에 무작위 갑충석 효과 #개 추가"},{"string":"지역에 무작위 갑충석 효과 1개 추가","value":1}],"trade":{"ids":{"implicit":["implicit.stat_754268389"]}}} +{"ref":"Area has increased monster variety","better":1,"fromAreaMods":true,"matchers":[{"string":"지역에 등장하는 몬스터 종류 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3561450806"],"fractured":["fractured.stat_3561450806"]}}} +{"ref":"Area has patches of Awakeners' Desolation","better":1,"fromUberAreaMods":true,"matchers":[{"string":"지역에 각성자의 비애 지대 존재"}],"trade":{"ids":{"explicit":["explicit.stat_563277852"],"fractured":["fractured.stat_563277852"]}}} +{"ref":"Area has patches of Burning Ground","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"지역에 용암 지대 존재"}],"trade":{"ids":{"explicit":["explicit.stat_133340941","explicit.stat_3665534869"],"fractured":["fractured.stat_133340941"]}}} +{"ref":"Area has patches of Chilled Ground","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"지역에 얼음 지대 존재"}],"trade":{"ids":{"explicit":["explicit.stat_349586058","explicit.stat_389725673"],"fractured":["fractured.stat_349586058"]}}} +{"ref":"Area has patches of Consecrated Ground","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"지역에 신성화 지대 존재"}],"trade":{"ids":{"explicit":["explicit.stat_1948962470"],"fractured":["fractured.stat_1948962470"]}}} +{"ref":"Area has patches of desecrated ground","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"지역에 훼손된 지대 존재"}],"trade":{"ids":{"explicit":["explicit.stat_3577222856"],"fractured":["fractured.stat_3577222856"]}}} +{"ref":"Area has patches of Shocked Ground which increase Damage taken by #%","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"지역에 #%만큼 피해가 증가한 감전 지대 존재"}],"trade":{"ids":{"explicit":["explicit.stat_3246076198"],"fractured":["fractured.stat_3246076198"]}}} +{"ref":"Area is affected by a Corrupting Tempest","better":1,"fromAreaMods":true,"matchers":[{"string":"지역이 타락한 폭풍의 영향을 받음"}],"trade":{"ids":{"explicit":["explicit.stat_2836394633"]}}} +{"ref":"Area is affected by an additional random Unallocated Notable Atlas Passives","better":1,"fromAreaMods":true,"matchers":[{"string":"지역이 할당되지 않은 무작위 주요 아틀라스 패시브 스킬 추가 #개의 영향을 받음"},{"string":"지역이 할당되지 않은 무작위 주요 아틀라스 패시브 스킬 추가 1개의 영향을 받음","value":1}],"trade":{"ids":{"implicit":["implicit.stat_2834034653"]}}} +{"ref":"Area is haunted by # additional Tormented Spirit","better":1,"matchers":[{"string":"지역에 고통받는 혼백 #마리 추가 등장"}],"trade":{"ids":{"explicit":["explicit.stat_358129101"],"implicit":["implicit.stat_358129101"]}}} +{"ref":"Area is infested with Fungal Growths\nMap's Item Quantity Modifiers also affect Blight Chest count at 25% value\nCan be Anointed up to 3 times","better":1,"matchers":[{"string":"지역이 번식하는 진균에 오염\n지도의 아이템 수량 속성 부여의 50%만큼 역병 상자에도 적용\n최대 #번까지 성유 부을 수 있음"},{"string":"지역이 번식하는 진균에 오염\n지도의 아이템 수량 속성 부여의 25%만큼 역병 상자에도 적용\n최대 3번까지 성유 부을 수 있음","value":1}],"trade":{"ids":{"implicit":["implicit.stat_299373046"]}}} +{"ref":"Area is influenced by #","better":1,"matchers":[{"string":"지역이 쉐이퍼의 영향을 받음","value":1},{"string":"지역이 엘더의 영향을 받음","value":2}],"trade":{"ids":{"implicit":["implicit.stat_1792283443"]},"option":true}} +{"ref":"Area is inhabited by # additional Rogue Exile","better":1,"matchers":[{"string":"지역에 탈주 유배자 추가 #명이 서식"}],"trade":{"ids":{"explicit":["explicit.stat_3550168289"],"implicit":["implicit.stat_3550168289"],"fractured":["fractured.stat_3550168289"],"enchant":["enchant.stat_3550168289"]}}} +{"ref":"Area is inhabited by Abominations","better":1,"fromAreaMods":true,"matchers":[{"string":"지역에 흉물 서식"}],"trade":{"ids":{"explicit":["explicit.stat_2961018200"],"fractured":["fractured.stat_2961018200"]}}} +{"ref":"Area is inhabited by an additional Invasion Boss","better":1,"matchers":[{"string":"지역에 침략 보스 #마리 추가 서식"},{"string":"지역에 침략 보스 1마리 추가 서식","value":1}],"trade":{"ids":{"explicit":["explicit.stat_279246355"],"implicit":["implicit.stat_279246355"],"enchant":["enchant.stat_279246355"]}}} +{"ref":"Area is inhabited by Animals","better":1,"fromAreaMods":true,"matchers":[{"string":"지역에 동물 서식"}],"trade":{"ids":{"explicit":["explicit.stat_4198346809"],"fractured":["fractured.stat_4198346809"]}}} +{"ref":"Area is inhabited by Cultists of Kitava","better":1,"fromAreaMods":true,"matchers":[{"string":"지역에 키타바 광신자 거주"}],"trade":{"ids":{"explicit":["explicit.stat_4252630904"],"fractured":["fractured.stat_4252630904"]}}} +{"ref":"Area is inhabited by Demons","better":1,"fromAreaMods":true,"matchers":[{"string":"지역에 악마 서식"}],"trade":{"ids":{"explicit":["explicit.stat_3916182167"],"fractured":["fractured.stat_3916182167"]}}} +{"ref":"Area is inhabited by Ghosts","better":1,"fromAreaMods":true,"matchers":[{"string":"지역에 혼 서식"}],"trade":{"ids":{"explicit":["explicit.stat_3516340048"],"fractured":["fractured.stat_3516340048"]}}} +{"ref":"Area is inhabited by Goatmen","better":1,"fromAreaMods":true,"matchers":[{"string":"지역에 염소인간 서식"}],"trade":{"ids":{"explicit":["explicit.stat_1813544255"],"fractured":["fractured.stat_1813544255"]}}} +{"ref":"Area is inhabited by Humanoids","better":1,"fromAreaMods":true,"matchers":[{"string":"지역에 인간형 적 서식"}],"trade":{"ids":{"explicit":["explicit.stat_2651141461"],"fractured":["fractured.stat_2651141461"]}}} +{"ref":"Area is inhabited by Lunaris fanatics","better":1,"fromAreaMods":true,"matchers":[{"string":"지역에 루나리스 광신도 거주"}],"trade":{"ids":{"explicit":["explicit.stat_3134632618","explicit.stat_3408601861"],"fractured":["fractured.stat_3134632618"]}}} +{"ref":"Area is inhabited by ranged monsters","better":1,"fromAreaMods":true,"matchers":[{"string":"지역에 원거리형 몬스터 서식"}],"trade":{"ids":{"explicit":["explicit.stat_645841425"],"fractured":["fractured.stat_645841425"]}}} +{"ref":"Area is inhabited by Sea Witches and their Spawn","better":1,"fromAreaMods":true,"matchers":[{"string":"지역에 바다 마녀 및 유충 서식"}],"trade":{"ids":{"explicit":["explicit.stat_25085466"],"fractured":["fractured.stat_25085466"]}}} +{"ref":"Area is inhabited by Skeletons","better":1,"fromAreaMods":true,"matchers":[{"string":"지역에 해골 서식"}],"trade":{"ids":{"explicit":["explicit.stat_45546355"],"fractured":["fractured.stat_45546355"]}}} +{"ref":"Area is inhabited by Solaris fanatics","better":1,"fromAreaMods":true,"matchers":[{"string":"지역에 솔라리스 광신도 거주"}],"trade":{"ids":{"explicit":["explicit.stat_1934713036","explicit.stat_2457517302"],"fractured":["fractured.stat_2457517302"]}}} +{"ref":"Area is inhabited by the Vaal","better":1,"matchers":[{"string":"지역에 바알 서식"}],"trade":{"ids":{"explicit":["explicit.stat_2609768284"],"fractured":["fractured.stat_2609768284"]}}} +{"ref":"Area is inhabited by Undead","better":1,"fromAreaMods":true,"matchers":[{"string":"지역에 언데드 서식"}],"trade":{"ids":{"explicit":["explicit.stat_808491979"],"fractured":["fractured.stat_808491979"]}}} +{"ref":"Areas are Breached\nAreas contain additional Large Breach Hands\nBreach Bosses have a chance to drop a Breachstone","better":1,"matchers":[{"string":"지역이 균열\n지역 내 큰 균열 손 추가 등장\n균열 보스가 일정 확률로 균열석을 떨어뜨림"}],"trade":{"ids":{"explicit":["explicit.stat_1263962567"]}}} +{"ref":"Areas can contain Abysses","better":1,"matchers":[{"string":"지역에 심연 등장 가능"}],"trade":{"ids":{"enchant":["enchant.stat_3564826949"]}}} +{"ref":"Areas contain a Mirror of Delirium","better":1,"matchers":[{"string":"지역에 환영의 거울 등장"}],"trade":{"ids":{"enchant":["enchant.stat_2398157267"]}}} +{"ref":"Areas contain additional Abysses\nAbysses have already fully opened\nAbysses contain monsters from Beyond this realm","better":1,"matchers":[{"string":"지역 내 심연 추가 등장\n심연이 이미 완전히 열려 있음\n심연에 이계 몬스터 등장"}],"trade":{"ids":{"explicit":["explicit.stat_2789750513"]}}} +{"ref":"Areas contain additional Essences\nEssences contain Rogue Exiles","better":1,"matchers":[{"string":"지역 내 에센스 추가 등장\n에센스에 탈주 유배자가 등장"}],"trade":{"ids":{"explicit":["explicit.stat_4139137767"]}}} +{"ref":"Areas contain additional Harbinger Portals\nHarbinger Portals drop additional Currency Shards when destroyed","better":1,"matchers":[{"string":"지역에 추가 선구자 포탈 등장\n선구자 포탈 파괴 시 추가 화폐 파편이 나옴"}],"trade":{"ids":{"explicit":["explicit.stat_495299940"]}}} +{"ref":"Areas contain additional Shrines\nArea contains Shrines guarded by Pantheon Monsters","better":1,"matchers":[{"string":"지역 내 성소 추가 등장\n지역에 판테온 몬스터들이 방어하는 성소 등장"}],"trade":{"ids":{"explicit":["explicit.stat_4252342397"]}}} +{"ref":"Areas contain additional Strongboxes\nStrongboxes are found in Sequences\nStrongboxes in a Sequence open when the previous Strongbox in the Sequence has unlocked","better":1,"matchers":[{"string":"지역 내 금고 추가 등장\n발견되는 금고에 순서가 있음\n순서가 있는 금고는 순서상 앞에 있는 금고를 잠금 해제해야 열림"}],"trade":{"ids":{"explicit":["explicit.stat_645735818"]}}} +{"ref":"Areas contain additional Temporal Incursions\nTemporal Incursion Portals have their direction reversed","better":1,"matchers":[{"string":"지역 내 시공 기습 추가 등장\n시공 기습 포탈의 방향 반전"}],"trade":{"ids":{"explicit":["explicit.stat_3582614035"]}}} +{"ref":"Areas contain Einhar\nAreas can contain capturable Harvest Beasts","better":1,"matchers":[{"string":"지역 내 아인하르 등장\n지역 내 생포 가능한 수확 야수 등장"}],"trade":{"ids":{"explicit":["explicit.stat_3751566939"]}}} +{"ref":"Areas contain many additional Breaches\nBreaches open and close faster","better":1,"matchers":[{"string":"지역 내 다수의 균열 추가 등장\n균열이 더 빠르게 열리고 닫힘"}],"trade":{"ids":{"explicit":["explicit.stat_2518308945"]}}} +{"ref":"Areas contain Ritual Altars","better":1,"matchers":[{"string":"지역에 의식 제단 등장"}],"trade":{"ids":{"explicit":["explicit.stat_1671749203"],"implicit":["implicit.stat_1671749203"],"enchant":["enchant.stat_1671749203"]}}} +{"ref":"Areas contain The Sacred Grove\nCrops are larger in size\nCrops contain higher tier seeds","better":1,"matchers":[{"string":"지역 내 신성한 숲 등장\n작물의 크기가 더 큼\n작물이 등급이 높은 씨앗 보유"}],"trade":{"ids":{"explicit":["explicit.stat_3422644692"]}}} +{"ref":"Armageddon Brand Damage Penetrates #% of Branded Enemy's Fire Resistance","better":1,"matchers":[{"string":"종말의 낙인 피해가 낙인이 부착된 적 화염 저항의 #%를 관통"}],"trade":{"ids":{"enchant":["enchant.stat_1715805151"]}}} +{"ref":"Armageddon Brand deals #% increased Damage","better":1,"matchers":[{"string":"종말의 낙인이 주는 피해 #% 증가"},{"string":"종말의 낙인이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1699139870"]}}} +{"ref":"Armageddon Brand has #% increased Activation Frequency","better":1,"matchers":[{"string":"종말의 낙인 활성화 빈도 #% 증가"},{"string":"종말의 낙인 활성화 빈도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2512194486"]}}} +{"ref":"Armour also applies to Chaos Damage taken from Hits","better":1,"matchers":[{"string":"방어도가 피격 시 받는 카오스 피해에도 적용"}],"trade":{"ids":{"explicit":["explicit.stat_4186532642"]}}} +{"ref":"Armour also applies to Lightning Damage taken from Hits","better":1,"matchers":[{"string":"방어도가 피격 시 받는 번개 피해에도 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2134207902"]}}} +{"ref":"Armour is increased by Overcapped Fire Resistance","better":1,"matchers":[{"string":"제한 초과 화염 저항에 따라 방어도 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2129352930"],"fractured":["fractured.stat_2129352930"]}}} +{"ref":"Arrow Dancing","better":1,"matchers":[{"string":"춤추는 화살"}],"trade":{"ids":{"explicit":["explicit.stat_2606808909"],"scourge":["scourge.stat_2606808909"]}}} +{"ref":"Arrows Chain +# times","better":1,"matchers":[{"string":"화살 연쇄 #회"}],"trade":{"ids":{"implicit":["implicit.stat_1001077145"]}}} +{"ref":"Arrows deal # to # Added Fire Damage for each time they've Pierced","better":1,"matchers":[{"string":"화살이 관통할 때마다 화염 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3726936056"]}}} +{"ref":"Arrows deal #% increased Damage with Hits and Ailments to Targets they Pierce","better":1,"matchers":[{"string":"화살이 관통 시 대상에게 주는 적중 및 상태 이상 피해 #% 증가"},{"string":"화살이 관통 시 대상에게 주는 적중 및 상태 이상 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1019891080"]}}} +{"ref":"Arrows fired from the first firing points always Pierce","better":1,"matchers":[{"string":"첫 번째 발사 지점에서 발사한 화살은 항상 관통"}],"trade":{"ids":{"explicit":["explicit.stat_2168987271"]}}} +{"ref":"Arrows fired from the fourth firing points Chain +# time","better":1,"matchers":[{"string":"네 번째 발사 지점에서 발사한 화살은 #회 연쇄"}],"trade":{"ids":{"explicit":["explicit.stat_226515115"]}}} +{"ref":"Arrows fired from the second firing points Fork","better":1,"matchers":[{"string":"두 번째 발사 지점에서 발사한 화살은 갈라짐"}],"trade":{"ids":{"explicit":["explicit.stat_3290081052"]}}} +{"ref":"Arrows fired from the third firing points Return to you","better":1,"matchers":[{"string":"세 번째 발사 지점에서 발사한 화살은 자신에게 돌아옴"}],"trade":{"ids":{"explicit":["explicit.stat_301746072"]}}} +{"ref":"Arrows Fork","better":1,"matchers":[{"string":"화살이 갈라짐"}],"trade":{"ids":{"explicit":["explicit.stat_2421436896"]}}} +{"ref":"Arrows Pierce all Targets","better":1,"matchers":[{"string":"화살이 모든 대상 관통"}],"trade":{"ids":{"explicit":["explicit.stat_1829238593"]}}} +{"ref":"Arrows Pierce all Targets after Chaining","better":1,"matchers":[{"string":"화살이 연쇄 후 모든 대상 관통"}],"trade":{"ids":{"explicit":["explicit.stat_1997151732"]}}} +{"ref":"Arrows Pierce all Targets after Forking","better":1,"matchers":[{"string":"갈래 보조 효과에 의해 갈라진 화살이 모든 대상 관통"}],"trade":{"ids":{"explicit":["explicit.stat_2138799639"]}}} +{"ref":"Arrows Pierce an additional Target","better":1,"matchers":[{"string":"화살이 대상 #개를 추가 관통"},{"string":"화살이 대상을 추가 관통","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3423006863"],"implicit":["implicit.stat_3423006863"]}}} +{"ref":"Arrows that Pierce have +#% to Critical Strike Multiplier","better":1,"matchers":[{"string":"관통하는 화살의 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1064778484"]}}} +{"ref":"Arrows that Pierce have 50% chance to inflict Bleeding","better":1,"matchers":[{"string":"관통한 화살이 50%의 확률로 출혈 유발"}],"trade":{"ids":{"explicit":["explicit.stat_1812251528"]}}} +{"ref":"Arsenal of Vengeance","better":1,"matchers":[{"string":"복수의 병기창"}],"trade":{"ids":{"explicit":["explicit.stat_971749694"]}}} +{"ref":"Artillery Ballista Damage Penetrates #% Fire Resistance","better":1,"matchers":[{"string":"포대 쇠뇌 피해가 #%의 화염 저항 관통"}],"trade":{"ids":{"enchant":["enchant.stat_1734517294"]}}} +{"ref":"Artillery Ballista fires an additional Arrow","better":1,"matchers":[{"string":"포대 쇠뇌 사용 시 화살 #개 추가 발사"},{"string":"포대 쇠뇌 사용 시 화살 1개 추가 발사","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3283028259"]}}} +{"ref":"Artillery Ballista Projectiles fall in two perpendicular lines instead","better":1,"matchers":[{"string":"포대 쇠뇌의 투사체가 2개의 수직선 형태로 떨어짐"}],"trade":{"ids":{"enchant":["enchant.stat_2056176052"]}}} +{"ref":"Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies","better":1,"matchers":[{"string":"새의 위상으로 주변 동료들에게 새의 힘, 새의 비행도 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2544408546"]}}} +{"ref":"Aspect of the Cat has no Reservation","better":1,"matchers":[{"string":"고양이의 위상으로 인한 점유 없음"}],"trade":{"ids":{"explicit":["explicit.stat_3850409117"]}}} +{"ref":"Aspect of the Spider can inflict Spider's Web on Enemies an additional time","better":1,"matchers":[{"string":"거미의 위상이 적에게 거미줄 #회 추가 적용"},{"string":"거미의 위상이 적에게 거미줄 1회 추가 적용","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1509532587"]}}} +{"ref":"Aspect of the Spider inflicts Spider's Webs and Hinder every # Seconds instead","better":1,"matchers":[{"string":"거미의 위상이 대신 #초마다 거미줄과 이동 방해를 유발"}],"trade":{"ids":{"explicit":["explicit.stat_3832130495"]}}} +{"ref":"Atlas Passives have #% reduced Effect on Area","better":-1,"fromAreaMods":true,"matchers":[{"string":"지역에 대한 아틀라스 패시브 스킬의 효과 #% 증가"},{"string":"지역에 대한 아틀라스 패시브 스킬의 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3737068014"]},"inverted":true}} +{"ref":"Attack Critical Strikes ignore Enemy Monster Elemental Resistances","better":1,"matchers":[{"string":"공격 치명타 시 적 몬스터의 원소 저항 무시"}],"trade":{"ids":{"implicit":["implicit.stat_2170876738"]}}} +{"ref":"Attack Hits against Bleeding Enemies have #% chance to Blind","better":1,"matchers":[{"string":"출혈 중인 적에게 공격 명중 시 #% 확률로 실명 유발"}],"trade":{"ids":{"explicit":["explicit.stat_4204320922"]}}} +{"ref":"Attack Hits against Blinded Enemies have #% chance to Maim","better":1,"matchers":[{"string":"실명 상태의 적에게 공격 명중 시 #% 확률로 힘줄 절단 유발"}],"trade":{"ids":{"explicit":["explicit.stat_1291726336"]}}} +{"ref":"Attack Projectiles Return to you","better":1,"matchers":[{"string":"공격 투사체가 자신에게 돌아옴"}],"trade":{"ids":{"explicit":["explicit.stat_1658124062"],"enchant":["enchant.stat_1658124062"],"scourge":["scourge.stat_1658124062"],"crafted":["crafted.stat_1658124062"]}}} +{"ref":"Attack Skills gain #% of Physical Damage as Extra Fire Damage per Socketed Red Gem","better":1,"matchers":[{"string":"장착된 붉은 젬 하나당 공격 스킬이 물리 피해의 #%를 추가 화염 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1302700515"]}}} +{"ref":"Attack Skills have +# to maximum number of Summoned Totems","better":1,"matchers":[{"string":"공격 스킬의 소환 가능한 토템 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_3266394681"]}}} +{"ref":"Attack Skills have Added Lightning Damage equal to #% of maximum Mana","better":1,"matchers":[{"string":"공격 스킬이 최대 마나의 #%와 동일한 추가 번개 피해 보유"}],"trade":{"ids":{"explicit":["explicit.stat_2778228111"]}}} +{"ref":"Attacks always inflict Bleeding while you have Cat's Stealth","better":1,"matchers":[{"string":"고양이의 은신 상태에서 공격 시 항상 출혈 유발"}],"trade":{"ids":{"explicit":["explicit.stat_2059771038"]}}} +{"ref":"Attacks Chain an additional time when in Main Hand","better":1,"matchers":[{"string":"주 무기로 장착 시 연쇄 공격 #회 추가"},{"string":"주 무기로 장착 시 연쇄 공격 1회 추가","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2466604008"]}}} +{"ref":"Attacks Cost Life instead of Mana","better":1,"matchers":[{"string":"공격이 마나 대신 생명력 소모"}],"trade":{"ids":{"explicit":["explicit.stat_3358745905"]}}} +{"ref":"Attacks Exerted by Ambush have +#% to Critical Strike Multiplier","better":1,"matchers":[{"string":"매복 버프 시 전력 공격의 치명타 피해 배율 #%"}],"trade":{"ids":{"enchant":["enchant.stat_2343571547"]}}} +{"ref":"Attacks Exerted by Ancestral Cry deal #% increased Damage","better":1,"matchers":[{"string":"선대의 함성으로 인한 전력 공격이 주는 피해 #% 증가"}],"trade":{"ids":{"implicit":["implicit.stat_2146663823"],"enchant":["enchant.stat_2146663823"]}}} +{"ref":"Attacks Exerted by Seismic Cry deal #% increased Damage","better":1,"matchers":[{"string":"지진 함성으로 인한 전력 공격이 주는 피해 #% 증가"}],"trade":{"ids":{"implicit":["implicit.stat_3252913608"],"enchant":["enchant.stat_3252913608"]}}} +{"ref":"Attacks fire an additional Projectile","better":1,"matchers":[{"string":"공격 시 투사체 #개 추가 발사"},{"string":"공격 시 투사체 1개 추가 발사","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1195705739"]}}} +{"ref":"Attacks fire an additional Projectile when in Off Hand","better":1,"matchers":[{"string":"보조 장비로 장착하면 공격 시 투사체 #개 추가 발사"},{"string":"보조 장비로 장착하면 공격 시 투사체 1개 추가 발사","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2105048696"]}}} +{"ref":"Attacks have #% chance to cause Bleeding","better":1,"matchers":[{"string":"공격으로 출혈 유발 불가","value":-1},{"string":"공격 시 #%의 확률로 출혈 유발"},{"string":"공격 시 출혈 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1923879260"],"implicit":["implicit.stat_1923879260"],"fractured":["fractured.stat_1923879260"],"scourge":["scourge.stat_1923879260"]}}} +{"ref":"Attacks have #% chance to Maim on Hit","better":1,"matchers":[{"string":"공격 명중 시 #%의 확률로 힘줄 절단"},{"string":"명중 시 항상 힘줄 절단 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1510714129"],"implicit":["implicit.stat_1510714129"],"fractured":["fractured.stat_1510714129"],"scourge":["scourge.stat_1510714129"]}}} +{"ref":"Attacks have #% chance to Poison while at maximum Frenzy Charges","better":1,"matchers":[{"string":"최대 격분 충전 상태에서 공격 시 #%의 확률로 중독 유발"},{"string":"최대 격분 충전 상태에서 공격 시 항상 중독 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3654074125"]}}} +{"ref":"Attacks have +#% to Critical Strike Chance","dp":true,"better":1,"matchers":[{"string":"공격의 치명타 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2572042788"],"implicit":["implicit.stat_2572042788"],"fractured":["fractured.stat_2572042788"]}}} +{"ref":"Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies","better":1,"matchers":[{"string":"공격이 저주받은 적 명중 시 25%의 확률로 출혈 유발"}],"trade":{"ids":{"explicit":["explicit.stat_2591028853"]}}} +{"ref":"Attacks inflict Unnerve on Critical Strike for 4 seconds","better":1,"matchers":[{"string":"공격으로 치명타 명중 시 4초 동안 낙담 유발"}],"trade":{"ids":{"explicit":["explicit.stat_3362271649"]}}} +{"ref":"Attacks that Fire Projectiles Consume up to # additional Steel Shard","better":1,"matchers":[{"string":"투사체 발사 공격이 강철 조각 최대 #개 추가 소모"}],"trade":{"ids":{"explicit":["explicit.stat_591162856"]}}} +{"ref":"Attacks with Energy Blades Penetrate #% Lightning Resistance","better":1,"matchers":[{"string":"에너지 칼날로 공격 시 번개 저항 #% 관통"}],"trade":{"ids":{"enchant":["enchant.stat_1501151168"]}}} +{"ref":"Attacks with this Weapon deal # to # added Chaos Damage against\nEnemies affected by at least 5 Poisons","better":1,"matchers":[{"string":"중독 5중첩 이상인 적을\n이 무기로 공격 시 카오스 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3829706447"]}}} +{"ref":"Attacks with this Weapon deal # to # added Fire Damage to Bleeding Enemies","better":1,"matchers":[{"string":"이 무기로 출혈 중인 적 공격 시 화염 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2453554491"]}}} +{"ref":"Attacks with this Weapon deal # to # added Physical Damage to Ignited Enemies","better":1,"matchers":[{"string":"이 무기로 공격 시 점화된 적에게 주는 물리 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2202639361"]}}} +{"ref":"Attacks with this Weapon deal Double Damage","better":1,"matchers":[{"string":"이 무기로 공격 시 주는 피해 2배"}],"trade":{"ids":{"explicit":["explicit.stat_1506185293"]}}} +{"ref":"Attacks with this Weapon deal Double Damage to Chilled Enemies","better":1,"matchers":[{"string":"이 무기로 공격 시 냉각된 적에게 주는 피해 2배"}],"trade":{"ids":{"explicit":["explicit.stat_625037258"]}}} +{"ref":"Attacks with this Weapon have #% chance to inflict Bleeding against Ignited Enemies","better":1,"matchers":[{"string":"점화된 적을 이 무기로 공격 시 #%의 확률로 출혈 유발"}],"trade":{"ids":{"explicit":["explicit.stat_3148418088"]}}} +{"ref":"Attacks with this Weapon have #% increased Elemental Damage","better":1,"matchers":[{"string":"이 무기로 공격 시 원소 피해 #% 증가"},{"string":"이 무기로 공격 시 원소 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_17526298"]}}} +{"ref":"Attacks with this Weapon have Added Maximum Lightning Damage equal to #% of Player's Maximum Energy Shield","better":1,"matchers":[{"string":"이 무기로 공격 시 플레이어의 에너지 보호막 최대치의 #%와 동일한 번개 피해 최대치 추가"}],"trade":{"ids":{"explicit":["explicit.stat_973269941"]}}} +{"ref":"Attacks with this Weapon Maim on hit","better":1,"matchers":[{"string":"이 무기로 명중 시 힘줄 절단"}],"trade":{"ids":{"explicit":["explicit.stat_3418949024"]}}} +{"ref":"Attacks with this Weapon Penetrate #% Chaos Resistance","better":1,"matchers":[{"string":"이 무기로 공격 시 #%의 카오스 저항 관통"}],"trade":{"ids":{"explicit":["explicit.stat_3762412853"],"fractured":["fractured.stat_3762412853"],"crafted":["crafted.stat_3762412853"]}}} +{"ref":"Attacks with this Weapon Penetrate #% Cold Resistance","better":1,"matchers":[{"string":"이 무기로 공격 시 #%의 냉기 저항 관통"}],"trade":{"ids":{"explicit":["explicit.stat_1740229525"],"fractured":["fractured.stat_1740229525"]}}} +{"ref":"Attacks with this Weapon Penetrate #% Elemental Resistances","better":1,"matchers":[{"string":"이 무기로 공격 시 #%의 원소 저항 관통"}],"trade":{"ids":{"explicit":["explicit.stat_4064396395"],"implicit":["implicit.stat_4064396395"],"fractured":["fractured.stat_4064396395"],"crafted":["crafted.stat_4064396395"]}}} +{"ref":"Attacks with this Weapon Penetrate #% Fire Resistance","better":1,"matchers":[{"string":"이 무기로 공격 시 #%의 화염 저항 관통"}],"trade":{"ids":{"explicit":["explicit.stat_3398283493"],"fractured":["fractured.stat_3398283493"]}}} +{"ref":"Attacks with this Weapon Penetrate #% Lightning Resistance","better":1,"matchers":[{"string":"이 무기로 공격 시 #%의 번개 저항 관통"}],"trade":{"ids":{"explicit":["explicit.stat_2387539034"],"fractured":["fractured.stat_2387539034"]}}} +{"ref":"Attribute Requirements can be satisfied by #% of Omniscience","better":1,"matchers":[{"string":"능력치 요구사항을 전지력의 #%로 충족 가능"}],"trade":{"ids":{"explicit":["explicit.stat_3024338155"]}}} +{"ref":"Aura Skills other than Anger are Disabled","better":1,"matchers":[{"string":"분노 외의 오라 스킬 사용 불가"}],"trade":{"ids":{"explicit":["explicit.stat_2185337019"]}}} +{"ref":"Aura Skills other than Clarity are Disabled","better":1,"matchers":[{"string":"명상 외의 오라 스킬 사용 불가"}],"trade":{"ids":{"explicit":["explicit.stat_2010835448"]}}} +{"ref":"Aura Skills other than Determination are Disabled","better":1,"matchers":[{"string":"결의 외의 오라 스킬 사용 불가"}],"trade":{"ids":{"explicit":["explicit.stat_460973817"]}}} +{"ref":"Aura Skills other than Discipline are Disabled","better":1,"matchers":[{"string":"단련 외의 오라 스킬 사용 불가"}],"trade":{"ids":{"explicit":["explicit.stat_2204523353"]}}} +{"ref":"Aura Skills other than Grace are Disabled","better":1,"matchers":[{"string":"은총 외의 오라 스킬 사용 불가"}],"trade":{"ids":{"explicit":["explicit.stat_1747401945"]}}} +{"ref":"Aura Skills other than Haste are Disabled","better":1,"matchers":[{"string":"가속 외의 오라 스킬 사용 불가"}],"trade":{"ids":{"explicit":["explicit.stat_3067441492"]}}} +{"ref":"Aura Skills other than Hatred are Disabled","better":1,"matchers":[{"string":"증오 외의 오라 스킬 사용 불가"}],"trade":{"ids":{"explicit":["explicit.stat_3348211884"]}}} +{"ref":"Aura Skills other than Malevolence are Disabled","better":1,"matchers":[{"string":"악의 외의 오라 스킬 사용 불가"}],"trade":{"ids":{"explicit":["explicit.stat_3540033124"]}}} +{"ref":"Aura Skills other than Precision are Disabled","better":1,"matchers":[{"string":"정밀함 외의 오라 스킬 사용 불가"}],"trade":{"ids":{"explicit":["explicit.stat_2800254163"]}}} +{"ref":"Aura Skills other than Pride are Disabled","better":1,"matchers":[{"string":"자부심 외의 오라 스킬 사용 불가"}],"trade":{"ids":{"explicit":["explicit.stat_3970941380"]}}} +{"ref":"Aura Skills other than Purity of Elements are Disabled","better":1,"matchers":[{"string":"원소의 순수함 외의 오라 스킬 사용 불가"}],"trade":{"ids":{"explicit":["explicit.stat_2225434657"]}}} +{"ref":"Aura Skills other than Purity of Fire are Disabled","better":1,"matchers":[{"string":"불의 순수함 외의 오라 스킬 사용 불가"}],"trade":{"ids":{"explicit":["explicit.stat_3192291777"]}}} +{"ref":"Aura Skills other than Purity of Ice are Disabled","better":1,"matchers":[{"string":"얼음의 순수함 외의 오라 스킬 사용 불가"}],"trade":{"ids":{"explicit":["explicit.stat_2517644375"]}}} +{"ref":"Aura Skills other than Purity of Lightning are Disabled","better":1,"matchers":[{"string":"번개의 순수함 외의 오라 스킬 사용 불가"}],"trade":{"ids":{"explicit":["explicit.stat_2523986538"]}}} +{"ref":"Aura Skills other than Vitality are Disabled","better":1,"matchers":[{"string":"활력 외의 오라 스킬 사용 불가"}],"trade":{"ids":{"explicit":["explicit.stat_110034065"]}}} +{"ref":"Aura Skills other than Wrath are Disabled","better":1,"matchers":[{"string":"진노 외의 오라 스킬 사용 불가"}],"trade":{"ids":{"explicit":["explicit.stat_3292388799"]}}} +{"ref":"Aura Skills other than Zealotry are Disabled","better":1,"matchers":[{"string":"열광 외의 오라 스킬 사용 불가"}],"trade":{"ids":{"explicit":["explicit.stat_374559518"]}}} +{"ref":"Auras from your Skills grant #% increased Damage to you and Allies","better":1,"matchers":[{"string":"자신의 오라 스킬이 플레이어 및 동료들이 주는 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3729445224"],"fractured":["fractured.stat_3729445224"]}}} +{"ref":"Auras from your Skills have #% increased Effect on you","better":1,"matchers":[{"string":"자신의 오라 스킬이 자신에게 미치는 효과 #% 증가"},{"string":"자신의 오라 스킬이 자신에게 미치는 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_472812693"]}}} +{"ref":"Aureus Coins are converted to Experience upon defeating the Herald of the Scourge","better":1,"matchers":[{"string":"스컬지의 전령 처치 시 아우레우스 코인이 경험치로 전환됨"}],"trade":{"ids":{"explicit":["sanctum.stat_1307773596"]}}} +{"ref":"Aureus Coins are converted to Relics upon defeating the Herald of the Scourge","better":1,"matchers":[{"string":"스컬지의 전령 처치 시 아우레우스 코인이 유물로 전환됨"}],"trade":{"ids":{"explicit":["sanctum.stat_315260783"]}}} +{"ref":"Aureus Coins are converted to Tainted Currency upon defeating the Herald of the Scourge","better":1,"matchers":[{"string":"스컬지의 전령 처치 시 아우레우스 코인이 더럽혀진 화폐로 전환됨"}],"trade":{"ids":{"explicit":["sanctum.stat_1019656601"]}}} +{"ref":"Avatar of Fire","better":1,"matchers":[{"string":"불의 화신"}],"trade":{"ids":{"explicit":["explicit.stat_346029096"],"fractured":["fractured.stat_346029096"],"scourge":["scourge.stat_346029096"]}}} +{"ref":"Ball Lightning fires an additional Projectile","better":1,"matchers":[{"string":"구형 번개가 투사체 #개 추가 발사"},{"string":"구형 번개가 투사체 1개 추가 발사","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3420683028"]}}} +{"ref":"Bane deals #% increased Damage","better":1,"matchers":[{"string":"파멸로 주는 피해 #% 증가"},{"string":"파멸로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2206071316"]}}} +{"ref":"Bane has #% increased Area of Effect","better":1,"matchers":[{"string":"파멸 효과 범위 #% 증가"},{"string":"파멸 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4224588066"]}}} +{"ref":"Banner Skills have #% increased Aura Effect","better":1,"matchers":[{"string":"깃발 스킬의 오라 효과 #% 증가"},{"string":"깃발 스킬의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2729804981"],"crafted":["crafted.stat_2729804981"]}}} +{"ref":"Banner Skills have no Reservation","better":1,"matchers":[{"string":"깃발 스킬로 인한 점유 없음"}],"trade":{"ids":{"explicit":["explicit.stat_2384457007"]}}} +{"ref":"Barrage fires an additional Projectile","better":1,"matchers":[{"string":"연발 사격이 투사체 #개 추가 발사"},{"string":"연발 사격이 투사체 1개 추가 발사","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3009270704"]}}} +{"ref":"Base Spell Critical Strike Chance of Spells is equal to that of Main Hand Weapon","better":1,"matchers":[{"string":"주문의 기본 주문 치명타 확률이 주 무기의 치명타 확률과 동일"}],"trade":{"ids":{"explicit":["explicit.stat_2560911401"]}}} +{"ref":"Bathed in the blood of # sacrificed in the name of Ahuana","better":0,"matchers":[{"string":"아후아나의 이름으로 희생된 #명의 피로 적셔짐\n반경 내 패시브 스킬은 바알의 지배를 받음","advanced":"아후아나(아후아나-지바콰)의 이름으로 희생된 #명의 피로 적셔짐\n반경 내 패시브 스킬은 바알의 지배를 받음"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_ahuana"]}}} +{"ref":"Bathed in the blood of # sacrificed in the name of Doryani","better":0,"matchers":[{"string":"도리아니의 이름으로 희생된 #명의 피로 적셔짐\n반경 내 패시브 스킬은 바알의 지배를 받음","advanced":"도리아니(아후아나-지바콰)의 이름으로 희생된 #명의 피로 적셔짐\n반경 내 패시브 스킬은 바알의 지배를 받음"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_doryani"]}}} +{"ref":"Bathed in the blood of # sacrificed in the name of Xibaqua","better":0,"matchers":[{"string":"지바콰의 이름으로 희생된 #명의 피로 적셔짐\n반경 내 패시브 스킬은 바알의 지배를 받음","advanced":"지바콰(아후아나-지바콰)의 이름으로 희생된 #명의 피로 적셔짐\n반경 내 패시브 스킬은 바알의 지배를 받음"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_xibaqua"]}}} +{"ref":"Battlemage","better":1,"matchers":[{"string":"전투마법사"}],"trade":{"ids":{"explicit":["explicit.stat_448903047"]}}} +{"ref":"Battlemage's Cry Exerts # additional Attack","better":1,"matchers":[{"string":"전투마법사의 함성 사용 시 전력 공격 #회 추가"}],"trade":{"ids":{"enchant":["enchant.stat_931713173"]}}} +{"ref":"Bear Trap has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"곰 덫의 재사용 대기시간 회복 속도 #% 증가"},{"string":"곰 덫의 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_918308703"]}}} +{"ref":"Berserk has #% increased Buff Effect","better":1,"matchers":[{"string":"광폭의 버프 효과 #% 증가"},{"string":"광폭의 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1663783758"]}}} +{"ref":"Berserk has #% reduced Rage loss per second","better":-1,"matchers":[{"string":"1초마다 광폭의 격노 상실 #% 증가"},{"string":"1초마다 광폭의 격노 상실 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1019790379"]},"inverted":true}} +{"ref":"Blade Blast deals #% increased Damage","better":1,"matchers":[{"string":"칼날 폭격으로 주는 피해 #% 증가"},{"string":"칼날 폭격으로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2276547155"]}}} +{"ref":"Blade Blast detonates other Lingering Blades within an #% increased Area","better":1,"matchers":[{"string":"칼날 폭격이 다른 지속되는 칼날을 폭발시키는 범위 #% 증가"},{"string":"칼날 폭격이 다른 지속되는 칼날을 폭발시키는 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3309486263"]}}} +{"ref":"Blade Blast has #% increased Area of Effect","better":1,"matchers":[{"string":"칼날 폭격의 효과 범위 #% 증가"},{"string":"칼날 폭격의 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3569393676"]}}} +{"ref":"Blade Trap rotates +# times","dp":true,"better":1,"matchers":[{"string":"칼날 덫 회전 #회"}],"trade":{"ids":{"enchant":["enchant.stat_4195549152"]}}} +{"ref":"Blade Vortex has +#% to Critical Strike Multiplier for each blade","better":1,"matchers":[{"string":"칼날 하나당 칼날 소용돌이의 치명타 피해 배율 #%"}],"trade":{"ids":{"enchant":["enchant.stat_2583039202"]}}} +{"ref":"Bladestorm deals #% increased Damage","better":1,"matchers":[{"string":"칼날 폭풍이 주는 피해 #% 증가"},{"string":"칼날 폭풍이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_599289531"]}}} +{"ref":"Blast Rain deals #% increased Damage","better":1,"matchers":[{"string":"폭발 화살비가 주는 피해 #% 증가"},{"string":"폭발 화살비가 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4014289250"]}}} +{"ref":"Blast Rain fires an additional Arrow","better":1,"matchers":[{"string":"폭발 화살비 사용 시 화살 1개 추가 발사"}],"trade":{"ids":{"enchant":["enchant.stat_3519675720"]}}} +{"ref":"Blast Rain has #% increased Area of Effect","better":1,"matchers":[{"string":"폭발 화살비 효과 범위 #% 증가"},{"string":"폭발 화살비 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_574378310"]}}} +{"ref":"Blazing Salvo deals #% increased Damage","better":1,"matchers":[{"string":"맹렬한 포격으로 주는 피해 #% 증가"},{"string":"맹렬한 포격으로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4102281803"]}}} +{"ref":"Blazing Salvo fires an additional Projectile","better":1,"matchers":[{"string":"맹렬한 포격이 투사체 #개 추가 발사"},{"string":"맹렬한 포격이 투사체 1개 추가 발사","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3908539803"]}}} +{"ref":"Blazing Salvo Projectiles land in a #% increased Area","better":1,"matchers":[{"string":"맹렬한 포격 투사체가 떨어지는 범위 #% 증가"},{"string":"맹렬한 포격 투사체가 떨어지는 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1785831895"]}}} +{"ref":"Bleeding Enemies you Kill Explode, dealing #% of\ntheir Maximum Life as Physical Damage","better":1,"matchers":[{"string":"출혈 중인 적을 처치하면 적이 폭발하여\n최대 생명력의 #%를 물리 피해로 줌"}],"trade":{"ids":{"explicit":["explicit.stat_3133323410"]}}} +{"ref":"Bleeding Enemies you Kill with Hits Shatter","better":1,"matchers":[{"string":"출혈 상태의 적 처치 시 산산조각남"}],"trade":{"ids":{"explicit":["explicit.stat_881917501"]}}} +{"ref":"Bleeding on you expires #% faster while Moving","better":1,"matchers":[{"string":"이동 중에 플레이어에게 적용되는 출혈이 #% 더 빠르게 만료"},{"string":"이동 중에 플레이어에게 적용되는 출혈이 #% 더 느리게 만료","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_391460978"]}}} +{"ref":"Bleeding you inflict deals Damage #% faster","better":1,"matchers":[{"string":"플레이어가 유발한 출혈이 피해 #% 가속"}],"trade":{"ids":{"explicit":["explicit.stat_3828375170"],"implicit":["implicit.stat_3828375170"],"fractured":["fractured.stat_3828375170"],"scourge":["scourge.stat_3828375170"]}}} +{"ref":"Bleeding you inflict deals Damage #% faster per Frenzy Charge","better":1,"matchers":[{"string":"플레이어가 유발한 출혈이 격분 충전 하나당 피해 #% 가속"}],"trade":{"ids":{"explicit":["explicit.stat_1670470989"]}}} +{"ref":"Bleeding you inflict is Reflected to you","better":1,"matchers":[{"string":"자신이 유발한 출혈이 자신에게 반사됨"}],"trade":{"ids":{"explicit":["explicit.stat_2658399404"]}}} +{"ref":"Blight has #% increased Hinder Duration","better":1,"matchers":[{"string":"황폐의 이동 방해 지속시간 #% 증가"},{"string":"황폐의 이동 방해 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4170725899"],"enchant":["enchant.stat_4170725899"]}}} +{"ref":"Blind Chilled Enemies on Hit","better":1,"matchers":[{"string":"냉각된 적 명중 시 #%의 확률로 실명 유발"},{"string":"냉각된 적 명중 시 실명 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3450276548"],"fractured":["fractured.stat_3450276548"]}}} +{"ref":"Blind does not affect your Light Radius","better":1,"matchers":[{"string":"실명이 시야 반경에 영향을 미치지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_3013171896"]}}} +{"ref":"Blind you inflict is Reflected to you","better":1,"matchers":[{"string":"자신이 유발한 실명이 자신에게 반사됨"}],"trade":{"ids":{"explicit":["explicit.stat_2458598175"]}}} +{"ref":"Blink Arrow and Blink Arrow Clones have #% increased Attack Speed","better":1,"matchers":[{"string":"점멸 화살 및 점멸 화살 분신의 공격 속도 #% 증가"},{"string":"점멸 화살 및 점멸 화살 분신의 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1554597333"]}}} +{"ref":"Blink Arrow and Blink Arrow Clones have #% increased Damage","better":1,"matchers":[{"string":"점멸 화살 및 점멸 화살 분신의 피해 #% 증가"},{"string":"점멸 화살 및 점멸 화살 분신의 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1967878868"]}}} +{"ref":"Blink Arrow has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"점멸 화살의 재사용 대기시간 회복 속도 #% 증가"},{"string":"점멸 화살의 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2983274404"]}}} +{"ref":"Blood and Sand has #% increased Buff Effect","better":1,"matchers":[{"string":"피와 모래의 버프 효과 #% 증가"},{"string":"피와 모래의 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2471636515"]}}} +{"ref":"Blood Magic","better":1,"matchers":[{"string":"혈마법"}],"trade":{"ids":{"explicit":["explicit.stat_2801937280"],"fractured":["fractured.stat_2801937280"],"scourge":["scourge.stat_2801937280"]}}} +{"ref":"Blood Rage grants additional #% chance to gain a Frenzy Charge on Kill","better":1,"matchers":[{"string":"피의 격노가 처치 시 격분 충전을 획득할 확률 #% 추가"}],"trade":{"ids":{"enchant":["enchant.stat_3152806535"]}}} +{"ref":"Blood Rage grants additional #% increased Attack Speed","better":1,"matchers":[{"string":"피의 격노의 공격 속도 #% 추가 증가"},{"string":"피의 격노의 공격 속도 #% 추가 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3418033798"]}}} +{"ref":"Bloodsoaked Blade","better":1,"matchers":[{"string":"피투성이 칼날"}],"trade":{"ids":{"explicit":["explicit.stat_2363616962"]}}} +{"ref":"Bone Offering grants an additional +#% Chance to Block Attack Damage","better":1,"matchers":[{"string":"뼈 공물이 공격 피해 막기 확률 #% 추가 부여"}],"trade":{"ids":{"enchant":["enchant.stat_3233607638"]}}} +{"ref":"Bone Offering has #% increased Effect","better":1,"matchers":[{"string":"뼈 공물의 효과 #% 증가"},{"string":"뼈 공물의 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1801289192"]}}} +{"ref":"Boneshatter has #% chance to grant +1 Trauma","better":1,"matchers":[{"string":"뼈 박살이 #%의 확률로 외상 +1 획득"}],"trade":{"ids":{"enchant":["enchant.stat_2870283358"]}}} +{"ref":"Bosses impact #% increased Resolve","better":1,"matchers":[{"string":"보스가 투지에 주는 영향 #% 증가"},{"string":"보스가 투지에 주는 영향 #% 감소","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_2207905451"]}}} +{"ref":"Bosses take #% increased Damage","better":1,"matchers":[{"string":"보스가 받는 피해 #% 증가"},{"string":"보스가 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_3226329527"]}}} +{"ref":"Bow Attacks fire # additional Arrows","better":1,"matchers":[{"string":"활 공격 시 화살 #개 추가 발사"},{"string":"활 공격 시 화살 1개 추가 발사","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3885405204"],"implicit":["implicit.stat_3885405204"],"fractured":["fractured.stat_3885405204"],"scourge":["scourge.stat_3885405204"]}}} +{"ref":"Bow Attacks fire # additional Arrows if you haven't Cast Dash recently","better":1,"matchers":[{"string":"최근 4초 이내 질주를 시전하지 않은 경우 활 공격 시 화살 #개 추가 발사"}],"trade":{"ids":{"explicit":["explicit.stat_2482927318"]}}} +{"ref":"Bow Attacks have Culling Strike","better":1,"matchers":[{"string":"활 공격 시 마무리 타격 가능"}],"trade":{"ids":{"explicit":["explicit.stat_4217693429"]}}} +{"ref":"Bow Knockback at Close Range","better":1,"matchers":[{"string":"근접 활 공격 시 밀어내기"}],"trade":{"ids":{"explicit":["explicit.stat_3261557635"]}}} +{"ref":"Brand Skills have #% increased Duration","better":1,"matchers":[{"string":"낙인 스킬의 지속시간 #% 증가"},{"string":"낙인 스킬의 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3089482869"],"scourge":["scourge.stat_3089482869"]}}} +{"ref":"Buffs on Players expire #% faster","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"플레이어에게 적용되는 버프가 #% 더 느리게 만료됨"},{"string":"플레이어에게 적용되는 버프가 #% 더 빠르게 만료됨"}],"trade":{"ids":{"explicit":["explicit.stat_1217583941"],"fractured":["fractured.stat_1217583941"]}}} +{"ref":"Burning Arrow Always Ignites","better":1,"matchers":[{"string":"불타는 화살의 점화 확률 #%"},{"string":"불타는 화살이 항상 점화 유발","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2226973351"]}}} +{"ref":"Burning Enemies you kill have a #% chance to Explode, dealing a tenth of their maximum Life as Fire Damage","better":1,"matchers":[{"string":"플레이어가 처치한 화상 상태의 적이 #%의 확률로 폭발하여, 최대 생명력의 1/10을 화염 피해로 줌"}],"trade":{"ids":{"enchant":["enchant.stat_1617268696"]}}} +{"ref":"Burning Hoofprints","better":1,"matchers":[{"string":"불타는 발굽 자국"}],"trade":{"ids":{"explicit":["explicit.stat_3576153145"]}}} +{"ref":"Cages created by Your Glacial Cage Towers are #% larger","better":1,"anointments":[{"roll":20,"oils":"7,11"}],"matchers":[{"string":"빙하 창살 탑이 생성하는 창살의 크기 #% 증폭"}],"trade":{"ids":{"enchant":["enchant.stat_2449293016"]}}} +{"ref":"Call of Steel causes #% increased Reflected Damage","better":1,"matchers":[{"string":"강철의 부름 사용 시 반사 피해 #% 증가"},{"string":"강철의 부름 사용 시 반사 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2879593163"]}}} +{"ref":"Call of Steel deals Reflected Damage with #% increased Area of Effect","better":1,"matchers":[{"string":"강철의 부름이 주는 반사된 피해의 효과 범위 #% 증가"},{"string":"강철의 부름이 주는 반사된 피해의 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2067717830"]}}} +{"ref":"Call of Steel has #% increased Use Speed","better":1,"matchers":[{"string":"강철의 부름 사용 속도 #% 증가"},{"string":"강철의 부름 사용 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_109671187"]}}} +{"ref":"Call to Arms","better":1,"matchers":[{"string":"소집"}],"trade":{"ids":{"explicit":["explicit.stat_3292262540"],"fractured":["fractured.stat_3292262540"],"scourge":["scourge.stat_3292262540"]}}} +{"ref":"Can be Enchanted by a Kalguuran Runesmith","better":1,"matchers":[{"string":"칼구르 룬 제작자가 인챈트 가능"}],"trade":{"ids":{"explicit":["explicit.stat_4005027470"]}}} +{"ref":"Can be modified while Corrupted","better":1,"matchers":[{"string":"타락한 상태에서 개조 가능"}],"trade":{"ids":{"explicit":["explicit.stat_1161337167"]}}} +{"ref":"Can be Runesmithed as though it were all One Handed Melee Weapon Types","better":1,"matchers":[{"string":"Can be Runesmithed as though it were all One Handed Melee Weapon Types"}],"trade":{"ids":{"explicit":["explicit.stat_3221277412"]}}} +{"ref":"Can have # additional Crafted Modifier","better":1,"matchers":[{"string":"제작 속성 부여 추가 #개 보유 가능"}],"trade":{"ids":{"enchant":["enchant.stat_1963398329"]}}} +{"ref":"Can have # additional Enchantment Modifiers","better":1,"matchers":[{"string":"추가 인챈트 속성 부여 #회 가능"},{"string":"두 번째 속성 부여 인챈트 가능","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1135194732"]}}} +{"ref":"Can have # additional Runesmithing Enchantment","better":1,"matchers":[{"string":"룬 제작 인챈트 추가 #개 보유 가능"}],"trade":{"ids":{"explicit":["explicit.stat_1045438865"]}}} +{"ref":"Can have a up to 1 Implicit Modifier while Item has this Modifier","better":1,"matchers":[{"string":"아이템이 이 속성이 부여된 상태에서 고정 속성 최대 #개 보유 가능"},{"string":"아이템에 이 속성이 부여된 상태에서 고정 속성 최대 1개 보유 가능","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1161341806"]}}} +{"ref":"Can have up to # additional Remote Mine placed at a time","better":1,"matchers":[{"string":"한 번에 원격 지뢰 최대 #개 추가 설치"},{"string":"한 번에 설치할 수 있는 원격 지뢰 개수 #개 감소","negate":true}],"trade":{"ids":{"scourge":["scourge.stat_60263468"]}}} +{"ref":"Can have up to # additional Trap placed at a time","better":1,"matchers":[{"string":"한 번에 덫 최대 #개 추가 설치"},{"string":"한 번에 설치 가능한 덫 #개 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2224292784"],"implicit":["implicit.stat_2224292784"],"fractured":["fractured.stat_2224292784"],"scourge":["scourge.stat_2224292784"]}}} +{"ref":"Can have up to 3 Crafted Modifiers","better":1,"matchers":[{"string":"제작 속성 부여 최대 3개 보유 가능"}],"trade":{"ids":{"explicit":["explicit.stat_1859333175"],"fractured":["fractured.stat_1859333175"],"crafted":["crafted.stat_1859333175"]}}} +{"ref":"Can roll Minion Modifiers","better":1,"matchers":[{"string":"소환수 속성 부여 가능"}],"trade":{"ids":{"implicit":["implicit.stat_2994708956"]}}} +{"ref":"Can't use Chest armour","better":1,"matchers":[{"string":"상체 방어구 사용 불가"}],"trade":{"ids":{"explicit":["explicit.stat_4007482102"]}}} +{"ref":"Can't use Flask in Fifth Slot","better":1,"matchers":[{"string":"5번째 슬롯의 플라스크 사용 불가"}],"trade":{"ids":{"implicit":["implicit.stat_589489789"]}}} +{"ref":"Can't use other Rings","better":1,"matchers":[{"string":"다른 반지 사용 불가"}],"trade":{"ids":{"explicit":["explicit.stat_64726306"]}}} +{"ref":"Cannot be Blinded","better":1,"matchers":[{"string":"실명될 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_1436284579"],"implicit":["implicit.stat_1436284579"],"fractured":["fractured.stat_1436284579"]}}} +{"ref":"Cannot be Blinded while affected by Precision","better":1,"matchers":[{"string":"정밀함의 영향을 받는 동안 실명할 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_1653848515"]}}} +{"ref":"Cannot be Chilled","better":1,"matchers":[{"string":"냉각될 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_283649372"]}}} +{"ref":"Cannot be Chilled or Frozen while moving","better":1,"matchers":[{"string":"이동 중 냉각 또는 동결될 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_628032624"]}}} +{"ref":"Cannot be Frozen","better":1,"matchers":[{"string":"동결될 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_876831634"],"implicit":["implicit.stat_876831634"],"fractured":["fractured.stat_876831634"],"scourge":["scourge.stat_876831634"]}}} +{"ref":"Cannot be Frozen if Dexterity is higher than Intelligence","better":1,"matchers":[{"string":"민첩이 지능보다 높은 경우 동결될 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_3881126302"]}}} +{"ref":"Cannot be Ignited","better":1,"matchers":[{"string":"점화될 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_331731406"],"implicit":["implicit.stat_331731406"]}}} +{"ref":"Cannot be Ignited if Strength is higher than Dexterity","better":1,"matchers":[{"string":"힘이 민첩보다 높은 경우 점화될 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_676883595"]}}} +{"ref":"Cannot be Knocked Back","better":1,"matchers":[{"string":"밀려날 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_4212255859"],"implicit":["implicit.stat_4212255859"],"fractured":["fractured.stat_4212255859"]}}} +{"ref":"Cannot be Poisoned while Bleeding","better":1,"matchers":[{"string":"출혈 중에 중독될 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_2784102684"]}}} +{"ref":"Cannot be Shocked","better":1,"matchers":[{"string":"감전될 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_491899612"],"implicit":["implicit.stat_491899612"]}}} +{"ref":"Cannot be Shocked if Intelligence is higher than Strength","better":1,"matchers":[{"string":"지능이 힘보다 높은 경우 감전될 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_3024242403"]}}} +{"ref":"Cannot be Shocked or Ignited while moving","better":1,"matchers":[{"string":"이동 중 감전 또는 점화될 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_3592330380"],"fractured":["fractured.stat_3592330380"]}}} +{"ref":"Cannot be Stunned by Attacks if your other Ring is an Elder Item","better":1,"matchers":[{"string":"자신의 다른 반지가 엘더 아이템인 경우 주문에 의해 기절할 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_2926399803"]}}} +{"ref":"Cannot be Stunned by Hits you Block","better":1,"matchers":[{"string":"피격을 막을 경우 기절할 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_3058290552"]}}} +{"ref":"Cannot be Stunned by Spells if your other Ring is a Shaper Item","better":1,"matchers":[{"string":"자신의 다른 반지가 쉐이퍼 아이템인 경우 주문에 의해 기절할 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_2312817839"]}}} +{"ref":"Cannot be Stunned by Suppressed Spell Damage","better":1,"matchers":[{"string":"억제된 주문 피해로 기절 불가"}],"trade":{"ids":{"explicit":["explicit.stat_2916280114"]}}} +{"ref":"Cannot be Stunned if you have at least 10 Crab Barriers","better":1,"matchers":[{"string":"게의 방어막을 10개 이상 보유한 경우 기절할 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_877233648"]}}} +{"ref":"Cannot be Stunned when on Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태일 때 기절할 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_1472543401"]}}} +{"ref":"Cannot be Stunned while Bleeding","better":1,"matchers":[{"string":"출혈 중에 기절할 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_2638865425"]}}} +{"ref":"Cannot be Stunned while Fortified","better":1,"matchers":[{"string":"방어 상승 상태에서 기절할 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_2983926876"]}}} +{"ref":"Cannot be Stunned while Leeching","better":1,"matchers":[{"string":"흡수하는 동안 기절할 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_1887508417"]}}} +{"ref":"Cannot be Stunned while you have at least 25 Rage","better":1,"matchers":[{"string":"격노가 25 이상일 시 기절할 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_2971900104"]}}} +{"ref":"Cannot be used with Chaos Inoculation","better":1,"matchers":[{"string":"카오스 면역으로는 사용할 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_623651254"]}}} +{"ref":"Cannot be used with Forbidden Tomes below level #","better":1,"matchers":[{"string":"#레벨 미만인 경우 금지된 책 사용 불가"}],"trade":{"ids":{"explicit":["sanctum.stat_1512067281"]}}} +{"ref":"Cannot Block","better":1,"matchers":[{"string":"막기 불가"}],"trade":{"ids":{"explicit":["explicit.stat_4127720801"]}}} +{"ref":"Cannot Block Attack Damage","better":1,"matchers":[{"string":"공격 피해 막기 불가"}],"trade":{"ids":{"explicit":["explicit.stat_3162258068"],"scourge":["scourge.stat_3162258068"]}}} +{"ref":"Cannot Block Spell Damage","better":1,"matchers":[{"string":"주문 피해 막기 불가"}],"trade":{"ids":{"explicit":["explicit.stat_4076910393"],"scourge":["scourge.stat_4076910393"]}}} +{"ref":"Cannot Block while you have no Energy Shield","better":1,"matchers":[{"string":"에너지 보호막이 없는 동안 막기 불가"}],"trade":{"ids":{"explicit":["explicit.stat_3890287045"]}}} +{"ref":"Cannot deal Critical Strikes with Attacks","better":1,"matchers":[{"string":"공격으로 치명타를 가할 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_3223376951"]}}} +{"ref":"Cannot deal non-Chaos Damage","better":1,"matchers":[{"string":"비-카오스 피해를 주지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_3180152291"]}}} +{"ref":"Cannot Evade Enemy Attacks","better":1,"matchers":[{"string":"적 공격을 회피할 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_474452755"],"scourge":["scourge.stat_474452755"]}}} +{"ref":"Cannot Fish while standing in Water","better":1,"matchers":[{"string":"물속에 서 있는 동안 낚시 불가"}],"trade":{"ids":{"scourge":["scourge.stat_1831380809"]}}} +{"ref":"Cannot gain Charges","better":1,"matchers":[{"string":"충전 획득 불가"}],"trade":{"ids":{"scourge":["scourge.stat_1500620123"]}}} +{"ref":"Cannot gain Energy Shield","better":1,"matchers":[{"string":"에너지 보호막을 획득할 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_206243615"]}}} +{"ref":"Cannot gain Mana during effect","better":1,"matchers":[{"string":"플라스크 효과를 받는 동안 마나 획득 불가"}],"trade":{"ids":{"explicit":["explicit.stat_2198697797"]}}} +{"ref":"Cannot gain Power Charges","better":1,"matchers":[{"string":"권능 충전 획득 불가"}],"trade":{"ids":{"explicit":["explicit.stat_2503253050"]}}} +{"ref":"Cannot have Boons","better":1,"matchers":[{"string":"은혜 획득 불가"}],"trade":{"ids":{"explicit":["sanctum.stat_2283325632"]}}} +{"ref":"Cannot have Inspiration","better":1,"matchers":[{"string":"영감 획득 불가"}],"trade":{"ids":{"explicit":["sanctum.stat_3381591146"]}}} +{"ref":"Cannot Ignite, Chill, Freeze or Shock","better":1,"matchers":[{"string":"점화, 냉각, 동결, 감전 불가"}],"trade":{"ids":{"explicit":["explicit.stat_3281123655"]}}} +{"ref":"Cannot inflict Curses","better":1,"matchers":[{"string":"저주 유발 불가"}],"trade":{"ids":{"scourge":["scourge.stat_1925222248"]}}} +{"ref":"Cannot inflict Elemental Ailments","better":1,"matchers":[{"string":"원소 상태 이상 유발 불가"}],"trade":{"ids":{"scourge":["scourge.stat_3913992084"]}}} +{"ref":"Cannot inflict Freeze or Chill","better":1,"matchers":[{"string":"동결 또는 냉각 불가"}],"trade":{"ids":{"explicit":["explicit.stat_612223930"]}}} +{"ref":"Cannot inflict Ignite","better":1,"matchers":[{"string":"점화 불가"}],"trade":{"ids":{"explicit":["explicit.stat_4198497576"]}}} +{"ref":"Cannot inflict Shock","better":1,"matchers":[{"string":"감전 불가"}],"trade":{"ids":{"explicit":["explicit.stat_990377349"]}}} +{"ref":"Cannot Knock Enemies Back","better":1,"matchers":[{"string":"적을 밀어낼 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_2095084973"]}}} +{"ref":"Cannot Leech","better":1,"matchers":[{"string":"흡수 불가"}],"trade":{"ids":{"explicit":["explicit.stat_1336164384"]}}} +{"ref":"Cannot Leech Energy Shield","better":1,"matchers":[{"string":"에너지 보호막 흡수 불가"}],"trade":{"ids":{"scourge":["scourge.stat_700952022"]}}} +{"ref":"Cannot Leech Life","better":1,"matchers":[{"string":"생명력 흡수 불가"}],"trade":{"ids":{"explicit":["explicit.stat_3769854701"],"scourge":["scourge.stat_3769854701"]}}} +{"ref":"Cannot Leech Life from Critical Strikes","better":1,"matchers":[{"string":"치명타로 생명력 흡수 불가"}],"trade":{"ids":{"explicit":["explicit.stat_3243534964"]}}} +{"ref":"Cannot Leech Mana","better":1,"matchers":[{"string":"마나 흡수 불가"}],"trade":{"ids":{"explicit":["explicit.stat_1759630226"],"scourge":["scourge.stat_1759630226"]}}} +{"ref":"Cannot Leech or Regenerate Mana","better":1,"matchers":[{"string":"마나 흡수 또는 재생 불가"}],"trade":{"ids":{"explicit":["explicit.stat_2918242917"]}}} +{"ref":"Cannot Leech when on Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태일 때 흡수 불가"}],"trade":{"ids":{"explicit":["explicit.stat_3279535558"]}}} +{"ref":"Cannot lose Crab Barriers if you have lost Crab Barriers Recently","better":1,"matchers":[{"string":"최근 4초 이내 게의 방어막을 상실한 경우 더는 게의 방어막을 상실하지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_241251790"]}}} +{"ref":"Cannot recover Resolve","better":1,"matchers":[{"string":"투지 회복 불가"}],"trade":{"ids":{"explicit":["sanctum.stat_624917333"]}}} +{"ref":"Cannot roll Attack Modifiers","better":1,"matchers":[{"string":"공격 속성 부여 불가"}],"trade":{"ids":{"explicit":["explicit.stat_4122424929"],"fractured":["fractured.stat_4122424929"],"crafted":["crafted.stat_4122424929"]}}} +{"ref":"Cannot roll Caster Modifiers","better":1,"matchers":[{"string":"시전 속성 부여 불가"}],"trade":{"ids":{"explicit":["explicit.stat_1149326139"],"fractured":["fractured.stat_1149326139"],"crafted":["crafted.stat_1149326139"]}}} +{"ref":"Cannot take Reflected Elemental Damage","better":1,"matchers":[{"string":"반사된 원소 피해를 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_1827932821"]}}} +{"ref":"Cannot take Reflected Physical Damage","better":1,"matchers":[{"string":"반사된 물리 피해를 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_249805317"]}}} +{"ref":"Carved to glorify # new faithful converted by High Templar Avarius","better":0,"matchers":[{"string":"고위 템플러 아배리우스가 개종시킨 새로운 신도 #명을 찬미하기 위해 조각됨\n반경 내 패시브 스킬은 템플러의 지배를 받음","advanced":"고위 템플러 아배리우스(아배리우스-막사리우스)가 개종시킨 새로운 신도 #명을 찬미하기 위해 조각됨\n반경 내 패시브 스킬은 템플러의 지배를 받음"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_avarius"]}}} +{"ref":"Carved to glorify # new faithful converted by High Templar Dominus","better":0,"matchers":[{"string":"고위 템플러 도미누스가 개종시킨 새로운 신도 #명을 찬미하기 위해 조각됨\n반경 내 패시브 스킬은 템플러의 지배를 받음","advanced":"고위 템플러 도미누스(아배리우스-막사리우스)가 개종시킨 새로운 신도 #명을 찬미하기 위해 조각됨\n반경 내 패시브 스킬은 템플러의 지배를 받음"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_dominus"]}}} +{"ref":"Carved to glorify # new faithful converted by High Templar Maxarius","better":0,"matchers":[{"string":"고위 템플러 막사리우스가 개종시킨 새로운 신도 #명을 찬미하기 위해 조각됨\n반경 내 패시브 스킬은 템플러의 지배를 받음","advanced":"고위 템플러 막사리우스(아배리우스-막사리우스)가 개종시킨 새로운 신도 #명을 찬미하기 위해 조각됨\n반경 내 패시브 스킬은 템플러의 지배를 받음"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_maxarius"]}}} +{"ref":"Cast Level # Fire Burst on Hit","better":1,"matchers":[{"string":"명중 시 #레벨 화염 격발 시전"}],"trade":{"ids":{"enchant":["enchant.stat_1606553462"]}}} +{"ref":"Cast Level 20 Fire Burst on Hit","better":1,"matchers":[{"string":"명중 시 20레벨 화염 격발 시전"}],"trade":{"ids":{"explicit":["explicit.stat_1621470436"],"fractured":["fractured.stat_1621470436"]}}} +{"ref":"Catarina's Veiled","better":0,"matchers":[{"string":"카타리나의 장막의"}],"trade":{"ids":{"veiled":["veiled.mod_63772"]}}} +{"ref":"Caustic Arrow has #% chance to inflict Withered on Hit for # second base Duration","better":1,"matchers":[{"string":"부식성 화살 명중 시 #%의 확률로 #초의 기본 지속시간 동안 위축 유발"},{"string":"부식성 화살 명중 시 #초의 기본 지속시간 동안 위축 유발"}],"trade":{"ids":{"enchant":["enchant.stat_1993913925"]}}} +{"ref":"Celestial Footprints","better":1,"matchers":[{"string":"천공의 발자국"}],"trade":{"ids":{"explicit":["explicit.stat_50381303"]}}} +{"ref":"Chain Hook deals #% increased Damage","better":1,"matchers":[{"string":"사슬 갈고리가 주는 피해 #% 증가"},{"string":"사슬 갈고리가 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_289027663"]}}} +{"ref":"Chain Hook grants 1 Rage if it Hits Enemies","better":1,"matchers":[{"string":"사슬 갈고리로 적 명중 시 격노 1 획득"}],"trade":{"ids":{"enchant":["enchant.stat_2588242810"]}}} +{"ref":"Chain Hook has +# metre to radius per 12 Rage","better":1,"matchers":[{"string":"격노 12당 사슬 갈고리의 반경 #미터"}],"trade":{"ids":{"enchant":["enchant.stat_3269147016"]}}} +{"ref":"Chance to Block is Unlucky","better":1,"matchers":[{"string":"막기 확률에 불운 적용","value":-1},{"string":"막기 확률에 행운 적용","value":1}],"trade":{"ids":{"explicit":["explicit.stat_984774803"]}}} +{"ref":"Chance to Block Spell Damage is Unlucky","better":1,"matchers":[{"string":"주문 피해 막기 확률에 불운 적용","value":-1},{"string":"주문 피해 막기 확률에 행운 적용","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3551025193"]}}} +{"ref":"Channelling Skills deal #% increased Damage","better":1,"matchers":[{"string":"집중 유지 스킬로 주는 피해 #% 증가"},{"string":"집중 유지 스킬로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2733285506"]}}} +{"ref":"Channelling Skills deal #% increased Damage per 10 Devotion","better":1,"matchers":[{"string":"헌신 10당 집중 유지 스킬로 주는 피해 #% 증가"},{"string":"헌신 10당 집중 유지 스킬로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_970844066"]}}} +{"ref":"Channelling Skills have +# to Total Mana Cost","better":1,"matchers":[{"string":"집중 유지 스킬의 총 마나 소모 #"}],"trade":{"ids":{"explicit":["explicit.stat_2421446548"],"fractured":["fractured.stat_2421446548"],"crafted":["crafted.stat_2421446548"]}}} +{"ref":"Chaos Damage can Ignite, Chill and Shock","better":1,"matchers":[{"string":"카오스 피해로 점화, 냉각 및 감전 유발"}],"trade":{"ids":{"explicit":["explicit.stat_3470457445"]}}} +{"ref":"Chaos Damage taken does not bypass Energy Shield","better":1,"matchers":[{"string":"받는 카오스 피해가 에너지 보호막에 막힘"}],"trade":{"ids":{"explicit":["explicit.stat_1119465199"]}}} +{"ref":"Chaos Damage taken does not bypass Energy Shield during effect","better":1,"matchers":[{"string":"플라스크 효과를 받는 동안 받는 카오스 피해가 에너지 보호막에 막힘"}],"trade":{"ids":{"explicit":["explicit.stat_2229840047"]}}} +{"ref":"Chaos Damage taken does not bypass Energy Shield while not on Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태가 아닐 때 받는 카오스 피해가 에너지 보호막에 막힘"}],"trade":{"ids":{"explicit":["explicit.stat_887556907"],"fractured":["fractured.stat_887556907"]}}} +{"ref":"Chaos Damage taken does not bypass Minions' Energy Shield","better":1,"matchers":[{"string":"받는 카오스 피해가 소환수의 에너지 보호막에 막힘"}],"trade":{"ids":{"explicit":["explicit.stat_3008104268"]}}} +{"ref":"Chaos Damage with Hits is Lucky","better":1,"matchers":[{"string":"명중 시 카오스 피해에 불운 적용","value":-1},{"string":"명중 시 카오스 피해에 행운 적용","value":1}],"trade":{"ids":{"enchant":["enchant.stat_2678511347"]}}} +{"ref":"Chaos Golems deal #% increased Damage","better":1,"matchers":[{"string":"카오스 골렘이 주는 피해 #% 증가"},{"string":"카오스 골렘이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2505115650"]}}} +{"ref":"Chaos Resistance is Zero","better":1,"matchers":[{"string":"카오스 저항 0"}],"trade":{"ids":{"explicit":["explicit.stat_2439129490"],"fractured":["fractured.stat_2439129490"]}}} +{"ref":"Chaos Skills have #% chance to Ignite","better":1,"matchers":[{"string":"카오스 스킬이 #%의 확률로 점화 유발"}],"trade":{"ids":{"explicit":["explicit.stat_3573128085"]}}} +{"ref":"Chaos Skills have #% increased Skill Effect Duration","better":1,"matchers":[{"string":"카오스 스킬의 스킬 효과 지속시간 #% 증가"},{"string":"카오스 스킬의 스킬 효과 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_289885185"],"fractured":["fractured.stat_289885185"],"crafted":["crafted.stat_289885185"]}}} +{"ref":"Charged Dash has #% more Movement Speed","better":1,"matchers":[{"string":"충전 질주의 이동 속도 #% 증폭"},{"string":"충전 질주의 이동 속도 #% 감폭","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_797408710"]}}} +{"ref":"Charged Dash has +# metre to radius of each Wave's last damage Area","better":1,"matchers":[{"string":"충전 질주의 각 파도의 마지막 피해 반경 #미터"}],"trade":{"ids":{"enchant":["enchant.stat_2898302567"]}}} +{"ref":"Chests have #% chance to drop Double Aureus Coins","better":1,"matchers":[{"string":"상자에서 #%의 확률로 아우레우스 코인이 2배로 등장"}],"trade":{"ids":{"explicit":["sanctum.stat_3926246735"]}}} +{"ref":"Chill Effect and Freeze Duration on you are based on #% of Energy Shield","better":1,"matchers":[{"string":"플레이어에게 적용되는 냉각 효과 및 동결 지속시간이 에너지 보호막의 #%에 비례함"}],"trade":{"ids":{"explicit":["explicit.stat_1194648995"]}}} +{"ref":"Chill Enemies as though dealing #% more Damage","better":1,"matchers":[{"string":"#% 증폭된 피해를 준 것처럼 적을 냉각"},{"string":"#% 감폭된 피해를 준 것처럼 적을 냉각","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2223307291"]}}} +{"ref":"Chill Enemies for # second on Hit with this Weapon when in Off Hand","better":1,"matchers":[{"string":"보조 장비로 장착하고 이 무기로 명중 시 #초 동안 적 냉각"}],"trade":{"ids":{"explicit":["explicit.stat_1488891279"]}}} +{"ref":"Chill Enemy for # second when Hit, reducing their Action Speed by 30%","better":1,"matchers":[{"string":"피격 시 적을 #초 동안 냉각시켜 적의 동작 속도를 30%만큼 감소"}],"trade":{"ids":{"explicit":["explicit.stat_2459809121"],"fractured":["fractured.stat_2459809121"],"scourge":["scourge.stat_2459809121"]}}} +{"ref":"Chill Nearby Enemies when you Block","better":1,"matchers":[{"string":"막아낼 시 주변의 적 냉각"}],"trade":{"ids":{"explicit":["explicit.stat_583277599"],"fractured":["fractured.stat_583277599"]}}} +{"ref":"Chill nearby Enemies when you Focus, causing 30% reduced Action Speed","better":1,"matchers":[{"string":"집중 시 주변의 적을 냉각시켜 동작 속도 30% 감소"}],"trade":{"ids":{"explicit":["explicit.stat_2384145996"]}}} +{"ref":"Chills from Ice Nova Hits always reduce Action Speed by at least #%","better":1,"matchers":[{"string":"얼음 폭발로 인한 냉각이 항상 동작 속도를 #% 이상 감소"}],"trade":{"ids":{"enchant":["enchant.stat_644285691"]}}} +{"ref":"Chills from your Hits always reduce Action Speed by at least #%","better":1,"matchers":[{"string":"피격되어 냉각된 적의 동작 속도가 항상 최소 #%만큼 감소"}],"trade":{"ids":{"explicit":["explicit.stat_2774670797"]}}} +{"ref":"Clarity has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"명상의 마나 점유 효율 #% 증가"},{"string":"명상의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2668611054","enchant.stat_453778214"]}}} +{"ref":"Clarity has no Reservation","better":1,"matchers":[{"string":"명상으로 인한 점유 없음"}],"trade":{"ids":{"explicit":["explicit.stat_2250543633"]}}} +{"ref":"Cobra Lash Chains an additional time","better":1,"matchers":[{"string":"코브라 채찍의 연쇄 #회 추가"},{"string":"코브라 채찍의 연쇄 1회 추가","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1471796012"]}}} +{"ref":"Cobra Lash deals #% increased Damage","better":1,"matchers":[{"string":"코브라 채찍이 주는 피해 #% 증가"},{"string":"코브라 채찍이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2224580362"]}}} +{"ref":"Cobra Lash has #% increased Projectile Speed","better":1,"matchers":[{"string":"코브라 채찍의 투사체 속도 #% 증가"},{"string":"코브라 채찍의 투사체 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_732631533"]}}} +{"ref":"Cold Exposure on Hit if you've cast Frostbite in the past 10 seconds","better":1,"matchers":[{"string":"최근 10초 이내 동상을 시전한 경우 명중 시 냉기 노출 유발"}],"trade":{"ids":{"explicit":["explicit.stat_1168138239"]}}} +{"ref":"Cold Exposure you inflict applies an extra +#% to Cold Resistance","better":-1,"matchers":[{"string":"플레이어가 유발하는 냉기 노출이 냉기 저항에 #% 추가"}],"trade":{"ids":{"explicit":["explicit.stat_600221736"]}}} +{"ref":"Cold Resistance cannot be Penetrated","better":1,"matchers":[{"string":"냉기 저항이 관통되지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_1864616755"],"fractured":["fractured.stat_1864616755"]}}} +{"ref":"Cold Resistance is #%","better":1,"matchers":[{"string":"Cold Resistance is #%"}],"trade":{"ids":{"explicit":["explicit.stat_496075050"]}}} +{"ref":"Cold Skills have #% chance to Poison on Hit","better":1,"matchers":[{"string":"냉기 스킬 명중 시 #%의 확률로 중독 유발"}],"trade":{"ids":{"explicit":["explicit.stat_2373079502"]}}} +{"ref":"Cold Snap has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"한파의 재사용 대기시간 회복 속도 #% 증가"},{"string":"한파의 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2289367813"]}}} +{"ref":"Combust has #% increased Area of Effect","better":1,"matchers":[{"string":"발화의 효과 범위 #% 증가"}],"trade":{"ids":{"enchant":["enchant.stat_4225882962"]}}} +{"ref":"Commanded leadership over # warriors under Akoya","better":0,"matchers":[{"string":"아코야 휘하 전사 #명에게 지휘권 행사\n반경 내 패시브 스킬은 카루이의 지배를 받음","advanced":"아코야(아코야-라키아타) 휘하 전사 #명에게 지휘권 행사\n반경 내 패시브 스킬은 카루이의 지배를 받음"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_akoya"]}}} +{"ref":"Commanded leadership over # warriors under Kaom","better":0,"matchers":[{"string":"카옴 휘하 전사 #명에게 지휘권 행사\n반경 내 패시브 스킬은 카루이의 지배를 받음","advanced":"카옴(아코야-라키아타) 휘하 전사 #명에게 지휘권 행사\n반경 내 패시브 스킬은 카루이의 지배를 받음"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_kaom"]}}} +{"ref":"Commanded leadership over # warriors under Rakiata","better":0,"matchers":[{"string":"라키아타 휘하 전사 #명에게 지휘권 행사\n반경 내 패시브 스킬은 카루이의 지배를 받음","advanced":"라키아타(아코야-라키아타) 휘하 전사 #명에게 지휘권 행사\n반경 내 패시브 스킬은 카루이의 지배를 받음"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_rakiata"]}}} +{"ref":"Commissioned # coins to commemorate Cadiro","better":0,"matchers":[{"string":"카디로를 기념하기 위해 제작한 주화 #개\n반경 내 패시브 스킬은 영원한 제국의 지배를 받음","advanced":"카디로(카디로-빅타리오)를 기념하기 위해 제작한 주화 #개\n반경 내 패시브 스킬은 영원한 제국의 지배를 받음"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_cadiro"]}}} +{"ref":"Commissioned # coins to commemorate Caspiro","better":0,"matchers":[{"string":"카스피로를 기념하기 위해 제작한 주화 #개\n반경 내 패시브 스킬은 영원한 제국의 지배를 받음","advanced":"카스피로(카디로-빅타리오)를 기념하기 위해 제작한 주화 #개\n반경 내 패시브 스킬은 영원한 제국의 지배를 받음"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_caspiro"]}}} +{"ref":"Commissioned # coins to commemorate Victario","better":0,"matchers":[{"string":"빅타리오를 기념하기 위해 제작한 주화 #개\n반경 내 패시브 스킬은 영원한 제국의 지배를 받음","advanced":"빅타리오(카디로-빅타리오)를 기념하기 위해 제작한 주화 #개\n반경 내 패시브 스킬은 영원한 제국의 지배를 받음"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_victario"]}}} +{"ref":"Completing a Heist generates an additional Reveal","better":1,"matchers":[{"string":"강탈 완료 시 드러내기 #개 추가 생성"},{"string":"강탈 완료 시 드러내기 1개 추가 생성","value":1}],"trade":{"ids":{"enchant":["enchant.stat_2309146693"]}}} +{"ref":"Conductivity has no Reservation if Cast as an Aura","better":1,"matchers":[{"string":"전도성이 오라의 형태로 시전되는 경우 점유 없음"}],"trade":{"ids":{"explicit":["explicit.stat_1233358566"]}}} +{"ref":"Conduit","better":1,"matchers":[{"string":"도관"}],"trade":{"ids":{"explicit":["explicit.stat_1994392904"],"scourge":["scourge.stat_1994392904"]}}} +{"ref":"Consecrated Ground created by this Flask has Tripled Radius","better":1,"matchers":[{"string":"이 플라스크가 생성하는 신성화 지대의 반경이 #% 증가"},{"string":"이 플라스크가 생성하는 신성화 지대의 반경이 2배로 증가","value":100},{"string":"이 플라스크가 생성하는 신성화 지대의 반경이 3배로 증가","value":200}],"trade":{"ids":{"explicit":["explicit.stat_806698863"]}}} +{"ref":"Consecrated Ground created during Effect applies #% increased Damage taken to Enemies","better":1,"matchers":[{"string":"효과 중 생성하는 신성화 지대가 적이 받는 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1866211373"]}}} +{"ref":"Consecrated Ground from Holy Flame Totem applies #% increased Damage taken to Enemies","better":1,"matchers":[{"string":"신성한 화염 토템이 생성하는 신성화 지대에 있는 적이 받는 피해 #% 증가"},{"string":"신성한 화염 토템이 생성하는 신성화 지대에 있는 적이 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2807947"]}}} +{"ref":"Consecrated Ground from Purifying Flame applies #% increased Damage taken to Enemies","better":1,"matchers":[{"string":"정화의 불길이 생성하는 신성화 지대에 있는 적이 받는 피해 #% 증가"},{"string":"정화의 불길이 생성한 신성화 지대에 있는 적이 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3100629498"]}}} +{"ref":"Consecrated Ground you create applies #% increased Damage taken to Enemies","better":1,"matchers":[{"string":"플레이어가 생성하는 신성화 지대에 있는 적이 받는 피해 #% 증가"},{"string":"플레이어가 생성하는 신성화 지대에 있는 적이 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2474564741"]}}} +{"ref":"Consecrated Ground you create while affected by Zealotry causes enemies to take #% increased Damage","better":1,"matchers":[{"string":"열광의 영향을 받는 동안 플레이어가 생성한 신성화 지대에 있는 적이 받는 피해 #% 증가"},{"string":"열광의 영향을 받는 동안 플레이어가 생성한 신성화 지대에 있는 적이 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2434030180"]}}} +{"ref":"Consecrated Path deals #% increased Damage","better":1,"matchers":[{"string":"축성의 진격이 주는 피해 #% 증가"},{"string":"축성의 진격이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4047323043"]}}} +{"ref":"Consecrated Path has #% increased Area of Effect","better":1,"matchers":[{"string":"축성의 진격의 효과 범위 #% 증가"},{"string":"축성의 진격의 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3285061858"]}}} +{"ref":"Consecrated Path has #% increased teleport range","better":1,"matchers":[{"string":"축성의 진격의 순간이동 범위 #% 증가"}],"trade":{"ids":{"enchant":["enchant.stat_2048678824"]}}} +{"ref":"Consumes 1 Frenzy Charge on use","better":1,"matchers":[{"string":"사용 시 격분 충전 #개 소모"},{"string":"사용 시 격분 충전 1개 소모","value":1},{"string":"사용 시 격분 충전 소모","value":100}],"trade":{"ids":{"explicit":["explicit.stat_570159344"]}}} +{"ref":"Consumes a Void Charge to Trigger Level # Void Shot when you fire Arrows with a Non-Triggered Skill","better":1,"matchers":[{"string":"비-발동형 스킬로 화살 발사 시 공허 충전을 소모하여 #레벨 공허 사격 발동"}],"trade":{"ids":{"explicit":["explicit.stat_3262369040"]}}} +{"ref":"Consumes Maximum Charges to use","better":1,"matchers":[{"string":"사용을 위해 최대 충전 소모"}],"trade":{"ids":{"explicit":["explicit.stat_3426614534"]}}} +{"ref":"Contains additional waves of Undead Monsters","better":1,"matchers":[{"string":"언데드 몬스터 웨이브 추가 등장"}],"trade":{"ids":{"explicit":["explicit.stat_1968038301"]}}} +{"ref":"Contains waves of Monsters","better":1,"matchers":[{"string":"지역에 몬스터 웨이브 등장"}],"trade":{"ids":{"explicit":["explicit.stat_1787444936"]}}} +{"ref":"Conversion Trap #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"전향 덫의 재사용 대기시간 회복 속도 #% 증가"},{"string":"전향 덫의 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2143519574"]}}} +{"ref":"Converted Enemies have #% increased Damage","better":1,"matchers":[{"string":"전환된 적의 피해 #% 증가"},{"string":"전환된 적의 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_131320052"]}}} +{"ref":"Convocation has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"소집의 재사용 대기시간 회복 속도 #% 증가"},{"string":"소집의 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2680060124"]}}} +{"ref":"Corpses you Spawn have #% increased Maximum Life","better":1,"matchers":[{"string":"자신이 생성한 시체의 최대 생명력 #% 증가"},{"string":"자신이 생성한 시체의 최대 생명력 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_586568910"]}}} +{"ref":"Corrupted Blood cannot be inflicted on you","better":1,"matchers":[{"string":"타락한 피가 플레이어에게 유발될 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_1658498488"],"implicit":["implicit.stat_1658498488"],"fractured":["fractured.stat_1658498488"]}}} +{"ref":"Corrupted Blood cannot be inflicted on you if you have at least 5 Corrupted Blood Debuffs on you","better":1,"matchers":[{"string":"플레이어에게 적용되는 타락한 피 디버프가 5개 이상인 경우 타락한 피에 면역"}],"trade":{"ids":{"scourge":["scourge.stat_736820284"]}}} +{"ref":"Corrupted Soul","better":1,"matchers":[{"string":"타락한 영혼"}],"trade":{"ids":{"explicit":["explicit.stat_1911037487"]}}} +{"ref":"Corrupting Fever deals #% increased Damage","better":1,"matchers":[{"string":"타락한 열병으로 주는 피해 #% 증가"},{"string":"타락한 열병으로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4010544321"]}}} +{"ref":"Corrupting Fever has +#% chance to inflict an additional Corrupted Blood Debuff","better":1,"matchers":[{"string":"타락한 열병이 #%의 확률로 타락한 피 디버프 1개 추가 유발"}],"trade":{"ids":{"enchant":["enchant.stat_3513613206"]}}} +{"ref":"Count as having maximum number of Endurance Charges\nCount as having maximum number of Frenzy Charges\nCount as having maximum number of Power Charges","better":1,"matchers":[{"string":"인내 충전 최대치를 보유한 것으로 간주\n격분 충전 최대치를 보유한 것으로 간주\n권능 충전 최대치를 보유한 것으로 간주"}],"trade":{"ids":{"explicit":["explicit.stat_3584443917"]}}} +{"ref":"Counts as all One Handed Melee Weapon Types","better":1,"matchers":[{"string":"모든 한손 근접 무기 유형으로 취급"}],"trade":{"ids":{"explicit":["explicit.stat_1524882321"]}}} +{"ref":"Counts as Dual Wielding","better":1,"matchers":[{"string":"쌍수로 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2797075304"]}}} +{"ref":"Cover Full Life Enemies in Ash for # seconds on Melee Weapon Hit","better":1,"matchers":[{"string":"근접 무기로 생명력이 최대인 적 명중 시 해당 적을 #초 동안 재로 뒤덮음"}],"trade":{"ids":{"explicit":["explicit.stat_2428064388"]}}} +{"ref":"Crackling Lance deals #% increased Damage","better":1,"matchers":[{"string":"치직대는 창이 주는 피해 #% 증가"},{"string":"치직대는 창이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_435519320"]}}} +{"ref":"Crackling Lance has #% increased branching angle","better":1,"matchers":[{"string":"치직대는 창의 갈라지는 각도 #% 증가"},{"string":"치직대는 창의 갈라지는 각도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2896346908"]}}} +{"ref":"Crackling Lance has #% increased Cast Speed","better":1,"matchers":[{"string":"치직대는 창의 시전 속도 #% 증가"},{"string":"치직대는 창의 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_617228927"]}}} +{"ref":"Create a Blighted Spore when your Skills or Minions Kill a Rare Monster","better":1,"matchers":[{"string":"스킬 또는 소환수로 희귀 몬스터 처치 시 역병 걸린 포자 생성"}],"trade":{"ids":{"explicit":["explicit.stat_2485187927"]}}} +{"ref":"Create Profane Ground instead of Consecrated Ground","better":1,"matchers":[{"string":"신성화 지대 대신 부정 지대 생성"}],"trade":{"ids":{"explicit":["explicit.stat_1243613350"]}}} +{"ref":"Creates a Smoke Cloud on Rampage","better":1,"matchers":[{"string":"광란 시 연막 생성"}],"trade":{"ids":{"explicit":["explicit.stat_3321583955"]}}} +{"ref":"Creates a Smoke Cloud on Use","better":1,"matchers":[{"string":"사용 시 연막 생성"}],"trade":{"ids":{"implicit":["implicit.stat_538730182"]}}} +{"ref":"Creates Chilled Ground on Use","better":1,"matchers":[{"string":"사용 시 얼음 지대 생성"}],"trade":{"ids":{"implicit":["implicit.stat_3311869501"]}}} +{"ref":"Creates Consecrated Ground on Critical Strike","better":1,"matchers":[{"string":"치명타 명중 시 #%의 확률로 신성화 지대 생성"},{"string":"치명타 명중 시 신성화 지대 생성","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3195625581"]}}} +{"ref":"Creates Consecrated Ground on Use","better":1,"matchers":[{"string":"사용 시 신성화 지대 생성"}],"trade":{"ids":{"implicit":["implicit.stat_2146730404"]}}} +{"ref":"Creeping Frost's Chilling Area has #% increased Movement Speed","better":1,"matchers":[{"string":"엄습하는 서리의 냉각 지역 이동 속도 #% 증가"},{"string":"엄습하는 서리의 냉각 지역 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2781179464"]}}} +{"ref":"Cremation can have up to # additional Geyser at a time","better":1,"matchers":[{"string":"시체 소각이 1회에 유지할 수 있는 간헐천 최대 #개 추가"}],"trade":{"ids":{"enchant":["enchant.stat_3503624267"]}}} +{"ref":"Crimson Dance","better":1,"matchers":[{"string":"진홍색 춤"}],"trade":{"ids":{"explicit":["explicit.stat_300702212"],"fractured":["fractured.stat_300702212"],"scourge":["scourge.stat_300702212"]}}} +{"ref":"Critical Strike Chance is #% for Hits with this Weapon","better":1,"matchers":[{"string":"이 무기로 적 명중 시 치명타 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1672183492"]}}} +{"ref":"Critical Strike Chance is increased by Overcapped Lightning Resistance","better":1,"matchers":[{"string":"제한 초과 번개 저항에 따라 치명타 확률 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2478752719"],"fractured":["fractured.stat_2478752719"]}}} +{"ref":"Critical Strikes deal no Damage","better":1,"matchers":[{"string":"치명타로 주는 피해 없음"}],"trade":{"ids":{"explicit":["explicit.stat_3245481061"]}}} +{"ref":"Critical Strikes do not inherently Freeze","better":1,"matchers":[{"string":"치명타가 본질적으로 동결을 유발하지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_3979476531"]}}} +{"ref":"Critical Strikes do not inherently inflict non-Damaging Ailments","better":1,"matchers":[{"string":"치명타가 기본적으로 비-피해 상태 이상을 유발하지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_249545292"]}}} +{"ref":"Critical Strikes have #% chance to Blind Enemies while you have Cat's Stealth","better":1,"matchers":[{"string":"고양이의 은신 상태에서 치명타 시 #%의 확률로 적 실명 유발"}],"trade":{"ids":{"explicit":["explicit.stat_843854434"]}}} +{"ref":"Critical Strikes have #% chance to inflict Malignant Madness if The Eater of Worlds is dominant","better":1,"matchers":[{"string":"세계 포식자가 지배적인 경우 치명타 시 #%의 확률로 불길한 광기 유발"},{"string":"세계 포식자가 지배적인 경우 치명타 시 불길한 광기 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1109900829"]}}} +{"ref":"Critical Strikes have Culling Strike","better":1,"matchers":[{"string":"치명타 시 마무리 타격 가능"}],"trade":{"ids":{"explicit":["explicit.stat_2996445420"]}}} +{"ref":"Critical Strikes Penetrate #% of Enemy Elemental Resistances while affected by Zealotry","better":1,"matchers":[{"string":"열광의 영향을 받는 동안 치명타가 적 원소 저항의 #% 관통"}],"trade":{"ids":{"explicit":["explicit.stat_2091518682"]}}} +{"ref":"Critical Strikes with Spells have #% chance to inflict Impale","better":1,"matchers":[{"string":"주문으로 치명타 명중 시 #%의 확률로 꿰뚫기 유발"},{"string":"주문으로 치명타 명중 시 꿰뚫기 유발","value":99}],"trade":{"ids":{"explicit":["explicit.stat_4084476257"]}}} +{"ref":"Culling Strike","better":1,"matchers":[{"string":"마무리 타격"}],"trade":{"ids":{"explicit":["explicit.stat_2524254339"],"implicit":["implicit.stat_2524254339"],"fractured":["fractured.stat_2524254339"],"enchant":["enchant.stat_2524254339"],"scourge":["scourge.stat_2524254339"]}}} +{"ref":"Culling Strike against Burning Enemies","better":1,"matchers":[{"string":"화상 상태의 적에게 마무리 타격 가능"}],"trade":{"ids":{"explicit":["explicit.stat_1777334641"]}}} +{"ref":"Culling Strike against Enemies Cursed with Poacher's Mark","better":1,"matchers":[{"string":"밀렵꾼의 징표 저주를 받은 적에게 마무리 타격 가능"}],"trade":{"ids":{"explicit":["explicit.stat_2114080270"]}}} +{"ref":"Culling Strike against Frozen Enemies","better":1,"matchers":[{"string":"동결 상태의 적에게 마무리 타격 가능"}],"trade":{"ids":{"explicit":["explicit.stat_2664667514"]}}} +{"ref":"Culling Strike during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 마무리 타격"}],"trade":{"ids":{"explicit":["explicit.stat_2175889777"]}}} +{"ref":"Curse Auras from Socketed Skills also affect you","better":1,"matchers":[{"string":"장착한 스킬의 저주 오라가 플레이어에게도 영향을 미침"}],"trade":{"ids":{"explicit":["explicit.stat_2965611853"]}}} +{"ref":"Curse Enemies with Conductivity on Hit","better":1,"matchers":[{"string":"명중 시 적이 #%의 확률로 전도성 저주에 걸림"},{"string":"명중 시 적이 전도성 저주에 걸림"}],"trade":{"ids":{"explicit":["explicit.stat_710372469"],"implicit":["implicit.stat_710372469"],"fractured":["fractured.stat_710372469"],"scourge":["scourge.stat_670088789"]}}} +{"ref":"Curse Enemies with Despair on Hit","better":1,"matchers":[{"string":"명중 시 적이 #%의 확률로 절망 저주에 걸림"},{"string":"명중 시 적이 절망 저주에 걸림"}],"trade":{"ids":{"explicit":["explicit.stat_2764915899"],"implicit":["implicit.stat_2764915899"],"fractured":["fractured.stat_2764915899"],"scourge":["scourge.stat_1764973832"]}}} +{"ref":"Curse Enemies with Elemental Weakness on Hit","better":1,"matchers":[{"string":"명중 시 적이 #%의 확률로 원소 약화 저주에 걸림"},{"string":"명중 시 적이 원소 약화 저주에 걸림"}],"trade":{"ids":{"explicit":["explicit.stat_2028847114"],"implicit":["implicit.stat_2028847114"],"fractured":["fractured.stat_2028847114"],"enchant":["enchant.stat_636057969"],"scourge":["scourge.stat_636057969"]}}} +{"ref":"Curse Enemies with Elemental Weakness when you Block their Spell Damage, ignoring Curse Limit","better":1,"matchers":[{"string":"적의 주문 피해를 막아낼 시 적이 원소 약화 저주에 걸림, 저주 제한 무시"}],"trade":{"ids":{"explicit":["explicit.stat_2048643052"]}}} +{"ref":"Curse Enemies with Enfeeble on Hit","better":1,"matchers":[{"string":"명중 시 적이 #%의 확률로 쇠약화 저주에 걸림"},{"string":"명중 시 적이 쇠약화 저주에 걸림"}],"trade":{"ids":{"implicit":["implicit.stat_1625819882"],"scourge":["scourge.stat_1516661546"]}}} +{"ref":"Curse Enemies with Flammability on Block","better":1,"matchers":[{"string":"막아낼 시 적이 인화성 저주에 걸림"}],"trade":{"ids":{"explicit":["explicit.stat_2776399916"]}}} +{"ref":"Curse Enemies with Flammability on Hit","better":1,"matchers":[{"string":"명중 시 적이 인화성 저주에 걸림"}],"trade":{"ids":{"explicit":["explicit.stat_338121249","explicit.stat_654274615"],"implicit":["implicit.stat_338121249"],"fractured":["fractured.stat_338121249"],"scourge":["scourge.stat_654274615"]}}} +{"ref":"Curse Enemies with Frostbite on Hit","better":1,"matchers":[{"string":"명중 시 적이 #%의 확률로 동상 저주에 걸림"},{"string":"명중 시 적이 동상 저주에 걸림"}],"trade":{"ids":{"explicit":["explicit.stat_426847518"],"implicit":["implicit.stat_426847518"],"fractured":["fractured.stat_426847518"],"scourge":["scourge.stat_1016707110"]}}} +{"ref":"Curse Enemies with Punishment when you Block their Melee Damage, ignoring Curse Limit","better":1,"matchers":[{"string":"근접 피해를 막아낼 시 적이 응징 저주에 걸림, 저주 제한 무시"}],"trade":{"ids":{"explicit":["explicit.stat_2922377850"]}}} +{"ref":"Curse Enemies with Temporal Chains on Hit","better":1,"matchers":[{"string":"명중 시 적이 시간의 사슬 저주에 걸림"}],"trade":{"ids":{"explicit":["explicit.stat_3433724931","explicit.stat_4139135963"],"implicit":["implicit.stat_3433724931"],"scourge":["scourge.stat_4139135963"]}}} +{"ref":"Curse Enemies with Temporal Chains when you Block their Projectile Attack Damage, ignoring Curse Limit","better":1,"matchers":[{"string":"적의 투사체 공격 피해를 막아낼 시 적이 시간의 사슬 저주에 걸림, 저주 제한 무시"}],"trade":{"ids":{"explicit":["explicit.stat_541329769"]}}} +{"ref":"Curse Enemies with Vulnerability on Block","better":1,"matchers":[{"string":"막아낼 시 적이 취약성 저주에 걸림"}],"trade":{"ids":{"explicit":["explicit.stat_3477714116"]}}} +{"ref":"Curse Enemies with Vulnerability on Hit","better":1,"matchers":[{"string":"명중 시 적이 #%의 확률로 취약성 저주에 걸림"},{"string":"명중 시 적이 취약성 저주에 걸림"}],"trade":{"ids":{"explicit":["explicit.stat_2213584313","explicit.stat_3967845372"],"implicit":["implicit.stat_3967845372"],"fractured":["fractured.stat_2213584313","fractured.stat_3967845372"],"scourge":["scourge.stat_1826297223"]}}} +{"ref":"Curse Non-Cursed Enemies with Enfeeble on Hit","better":1,"matchers":[{"string":"명중 시 저주에 걸리지 않은 적이 #%의 확률로 쇠약화 저주에 걸림"},{"string":"명중 시 저주에 걸리지 않은 적이 쇠약화 저주에 걸림","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3804297142"]}}} +{"ref":"Curse Skills have #% increased Cast Speed","better":1,"matchers":[{"string":"저주 스킬의 시전 속도 #% 증가"},{"string":"저주 스킬의 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2378065031"]}}} +{"ref":"Curse Skills have #% increased Skill Effect Duration","better":1,"matchers":[{"string":"저주 스킬의 스킬 효과 지속시간 #% 증가"},{"string":"저주 스킬의 스킬 효과 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1435748744"],"implicit":["implicit.stat_1435748744"],"fractured":["fractured.stat_1435748744"],"crafted":["crafted.stat_1435748744"]}}} +{"ref":"Cursed Enemies cannot inflict Elemental Ailments on You","better":1,"matchers":[{"string":"저주받은 적이 플레이어에게 원소 상태 이상 유발 불가"}],"trade":{"ids":{"explicit":["explicit.stat_2643613764"]}}} +{"ref":"Cursed Enemies you or your Minions Kill have a #% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage","better":1,"matchers":[{"string":"자신이나 소환수가 저주받은 적을 처치할 경우 #%의 확률로 적이 폭발하며 생명력 최대치의 1/4만큼을 카오스 피해로 줌"}],"trade":{"ids":{"explicit":["explicit.stat_1763939859"]}}} +{"ref":"Damage cannot be Reflected","better":1,"matchers":[{"string":"피해가 반사되지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_2670993553"],"enchant":["enchant.stat_2670993553"]}}} +{"ref":"Damage from your Critical Strikes cannot be Reflected","better":1,"matchers":[{"string":"치명타로 주는 피해가 반사되지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_1857928882"]}}} +{"ref":"Damage of Enemies Hitting you is Unlucky while you are Cursed with Vulnerability","better":1,"matchers":[{"string":"취약성 저주를 받는 동안 적으로부터 피격되어 받는 피해에 불운 적용","value":-1},{"string":"취약성 저주를 받는 동안 적으로부터 피격되어 받는 피해에 행운 적용","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2758554648"]}}} +{"ref":"Damage of Enemies Hitting you is Unlucky while you are on Full Life","better":1,"matchers":[{"string":"생명력이 최대일 때 적으로부터 피격되어 받는 피해에 불운 적용","value":-1},{"string":"생명력이 최대일 때 적으로부터 피격되어 받는 피해에 행운 적용","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3629143471"]}}} +{"ref":"Damage of Enemies Hitting you is Unlucky while you are on Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태일 때 적으로부터 피격되어 받는 피해에 불운 적용","value":-1},{"string":"낮은 생명력 상태일 때 적으로부터 피격되어 받는 피해에 행운 적용","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3753748365"]}}} +{"ref":"Damage of Enemies Hitting you is Unlucky while you have a Magic Ring Equipped","better":1,"matchers":[{"string":"마법 반지를 장착하고 있을 때 적으로부터 피격되어 받는 피해에 불운 적용","value":-1},{"string":"마법 반지를 장착하고 있을 때 적으로부터 피격되어 받는 피해에 행운 적용","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2510276385"]}}} +{"ref":"Damage Penetrates #% Chaos Resistance","better":1,"matchers":[{"string":"피해가 카오스 저항 #% 관통"},{"string":"플레이어가 명중 시 카오스 저항을 실제 값보다 #% 높게 취급","negate":true}],"trade":{"ids":{"scourge":["scourge.stat_4264312960"]}}} +{"ref":"Damage Penetrates #% Cold Resistance","better":1,"matchers":[{"string":"피해가 냉기 저항 #% 관통"},{"string":"플레이어가 적중 시 냉기 저항을 실제 값보다 #% 높게 취급","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3417711605"],"implicit":["implicit.stat_3417711605"],"fractured":["fractured.stat_3417711605"],"scourge":["scourge.stat_3417711605"]}}} +{"ref":"Damage Penetrates #% Cold Resistance against Chilled Enemies","better":1,"matchers":[{"string":"냉각된 적에게 주는 피해가 #%의 냉기 저항 관통"}],"trade":{"ids":{"explicit":["explicit.stat_1477032229"]}}} +{"ref":"Damage Penetrates #% Cold Resistance while affected by Hatred","better":1,"matchers":[{"string":"증오의 영향을 받는 동안 피해가 #%의 냉기 저항 관통"}],"trade":{"ids":{"explicit":["explicit.stat_1222888897"]}}} +{"ref":"Damage Penetrates #% Elemental Resistances","better":1,"matchers":[{"string":"피해가 #%의 원소 저항 관통"}],"trade":{"ids":{"explicit":["explicit.stat_2101383955"],"implicit":["implicit.stat_2101383955"],"fractured":["fractured.stat_2101383955"]}}} +{"ref":"Damage Penetrates #% Elemental Resistances during any Flask Effect","better":1,"matchers":[{"string":"아무 플라스크나 효과를 받는 동안 #%의 원소 저항 관통"}],"trade":{"ids":{"explicit":["explicit.stat_3392890360"],"fractured":["fractured.stat_3392890360"]}}} +{"ref":"Damage Penetrates #% Elemental Resistances if you haven't Killed Recently","better":1,"matchers":[{"string":"최근 4초 이내 적을 처치하지 않은 경우 피해가 #%의 원소 저항 관통"}],"trade":{"ids":{"explicit":["explicit.stat_455556407"],"fractured":["fractured.stat_455556407"]}}} +{"ref":"Damage Penetrates #% Elemental Resistances while you are Chilled","better":1,"matchers":[{"string":"냉각 상태일 때 주는 피해가 #%의 원소 저항 관통"}],"trade":{"ids":{"explicit":["explicit.stat_1089858120"]}}} +{"ref":"Damage Penetrates #% Fire Resistance","better":1,"matchers":[{"string":"피해가 화염 저항 #% 관통"},{"string":"플레이어가 명중 시 화염 저항을 실제 값보다 #% 높게 취급","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2653955271"],"implicit":["implicit.stat_2653955271"],"fractured":["fractured.stat_2653955271"],"scourge":["scourge.stat_2653955271"]}}} +{"ref":"Damage Penetrates #% Fire Resistance against Blinded Enemies","better":1,"matchers":[{"string":"실명된 적에게 주는 피해가 #%의 화염 저항 관통"}],"trade":{"ids":{"explicit":["explicit.stat_1748657990"]}}} +{"ref":"Damage Penetrates #% Fire Resistance while affected by Anger","better":1,"matchers":[{"string":"분노의 영향을 받는 동안 피해가 #%의 화염 저항 관통"}],"trade":{"ids":{"explicit":["explicit.stat_3111519953"]}}} +{"ref":"Damage Penetrates #% Lightning Resistance","better":1,"matchers":[{"string":"피해가 번개 저항 #% 관통"},{"string":"플레이어가 명중 시 번개 저항을 실제 값보다 #% 높게 취급","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_818778753"],"implicit":["implicit.stat_818778753"],"fractured":["fractured.stat_818778753"],"scourge":["scourge.stat_818778753"]}}} +{"ref":"Damage Penetrates #% Lightning Resistance during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 피해가 #%의 번개 저항을 관통"}],"trade":{"ids":{"explicit":["explicit.stat_4164990693"]}}} +{"ref":"Damage Penetrates #% Lightning Resistance while affected by Wrath","better":1,"matchers":[{"string":"진노의 영향을 받는 동안 피해가 #%의 번개 저항 관통"}],"trade":{"ids":{"explicit":["explicit.stat_1077131949"]}}} +{"ref":"Damage Penetrates #% of Enemy Elemental Resistances","better":1,"matchers":[{"string":"피해가 적 원소 저항의 #%를 관통"}],"trade":{"ids":{"explicit":["explicit.stat_697807915"],"scourge":["scourge.stat_697807915"]}}} +{"ref":"Damage Penetrates #% of Enemy Elemental Resistances if you haven't Killed Recently","better":1,"matchers":[{"string":"최근 4초 이내 적을 처치하지 않은 경우 피해가 적 원소 저항의 #%를 관통"}],"trade":{"ids":{"enchant":["enchant.stat_281254371"]}}} +{"ref":"Damage Penetrates #% of Fire Resistance if you have Blocked Recently","better":1,"matchers":[{"string":"최근 4초 이내 막아낸 경우 피해가 #%의 화염 저항 관통"}],"trade":{"ids":{"explicit":["explicit.stat_2341811700"]}}} +{"ref":"Damage taken from Blocked Hits cannot bypass Energy Shield\nDamage taken from Unblocked hits always bypasses Energy Shield","better":1,"matchers":[{"string":"피격을 막아낼 시 받는 피해가 에너지 보호막에 막힘\n피격을 막아내지 못할 시 받는 피해는 항상 에너지 보호막에 막히지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_2331104018"]}}} +{"ref":"Damage with Hits from Socketed Vaal Skills is Lucky","better":1,"matchers":[{"string":"장착된 바알 스킬 명중 시 피해에 불운 적용","value":-1},{"string":"장착된 바알 스킬 명중 시 피해에 행운 적용","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1274200851"]}}} +{"ref":"Damage with Hits is Lucky","better":1,"matchers":[{"string":"명중 시 피해에 불운 적용","value":-1},{"string":"명중 시 피해에 행운 적용","value":1}],"trade":{"ids":{"scourge":["scourge.stat_827991492"]}}} +{"ref":"Damage with Weapons Penetrates #% Cold Resistance","better":1,"matchers":[{"string":"무기로 주는 피해가 #%의 냉기 저항 관통"}],"trade":{"ids":{"explicit":["explicit.stat_1211769158"],"implicit":["implicit.stat_1211769158"]}}} +{"ref":"Damage with Weapons Penetrates #% Elemental Resistances","better":1,"matchers":[{"string":"무기로 주는 피해가 #%의 원소 저항 관통"}],"trade":{"ids":{"explicit":["explicit.stat_1736172673"]}}} +{"ref":"Damage with Weapons Penetrates #% Fire Resistance","better":1,"matchers":[{"string":"무기로 주는 피해가 #%의 화염 저항 관통"}],"trade":{"ids":{"explicit":["explicit.stat_1123291426"],"implicit":["implicit.stat_1123291426"]}}} +{"ref":"Damage with Weapons Penetrates #% Lightning Resistance","better":1,"matchers":[{"string":"무기로 주는 피해가 #%의 번개 저항 관통"}],"trade":{"ids":{"explicit":["explicit.stat_3301510262"],"implicit":["implicit.stat_3301510262"]}}} +{"ref":"Damaging Ailments deal damage #% faster","better":1,"matchers":[{"string":"상태 이상 피해 #%만큼 가속"}],"trade":{"ids":{"explicit":["explicit.stat_538241406"],"fractured":["fractured.stat_538241406"]}}} +{"ref":"Damaging Ailments you inflict deal Damage #% faster while affected by Malevolence","better":1,"matchers":[{"string":"악의의 영향을 받는 동안 플레이어가 유발한 상태 이상이 피해 #% 가속"}],"trade":{"ids":{"explicit":["explicit.stat_3468843137"]}}} +{"ref":"Dash has +# Cooldown Use","better":1,"matchers":[{"string":"질주의 재사용 횟수 #회"}],"trade":{"ids":{"enchant":["enchant.stat_4172171622"]}}} +{"ref":"Dash travels #% increased distance","better":1,"matchers":[{"string":"질주의 이동 거리 #% 증가"},{"string":"질주의 이동 거리 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4147746721"]}}} +{"ref":"Deal #% of your maximum Life as Fire Damage to nearby Enemies when Hit","better":1,"matchers":[{"string":"피격 시 주변의 적에게 생명력 최대치의 #%를 화염 피해로 줌"}],"trade":{"ids":{"scourge":["scourge.stat_3643913768"]}}} +{"ref":"Deal no Chaos Damage","better":1,"matchers":[{"string":"주는 카오스 피해 없음"}],"trade":{"ids":{"explicit":["explicit.stat_1896269067"],"scourge":["scourge.stat_1896269067"]}}} +{"ref":"Deal no Cold Damage","better":1,"matchers":[{"string":"냉기 피해를 주지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_743677006"],"scourge":["scourge.stat_743677006"]}}} +{"ref":"Deal no Damage when not on Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태가 아닐 때 주는 피해 없음"}],"trade":{"ids":{"explicit":["explicit.stat_3716472556"]}}} +{"ref":"Deal no Elemental Damage","better":1,"matchers":[{"string":"주는 원소 피해 없음"}],"trade":{"ids":{"explicit":["explicit.stat_2998305364"]}}} +{"ref":"Deal no Fire Damage","better":1,"matchers":[{"string":"화염 피해 주지 않음"}],"trade":{"ids":{"scourge":["scourge.stat_3763013280"]}}} +{"ref":"Deal no Lightning Damage","better":1,"matchers":[{"string":"번개 피해 주지 않음"}],"trade":{"ids":{"scourge":["scourge.stat_3520498509"]}}} +{"ref":"Deal no Non-Elemental Damage","better":1,"matchers":[{"string":"원소 피해만 줄 수 있음"}],"trade":{"ids":{"explicit":["explicit.stat_4031851097"]}}} +{"ref":"Deal no Non-Lightning Damage","better":1,"matchers":[{"string":"번개 피해만 줄 수 있음"}],"trade":{"ids":{"explicit":["explicit.stat_2075742842"]}}} +{"ref":"Deal no Non-Physical Damage","better":1,"matchers":[{"string":"비-물리 피해를 주지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_282353000"]}}} +{"ref":"Deal no Physical Damage","better":1,"matchers":[{"string":"물리 피해를 주지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_3900877792"],"fractured":["fractured.stat_3900877792"],"scourge":["scourge.stat_3900877792"]}}} +{"ref":"Deal no Physical or Elemental Damage","better":1,"matchers":[{"string":"주는 물리 또는 원소 피해 없음"}],"trade":{"ids":{"explicit":["explicit.stat_4157542794"]}}} +{"ref":"Deal Triple Damage with Elemental Skills","better":1,"matchers":[{"string":"원소 스킬이 3배의 피해를 줌"}],"trade":{"ids":{"explicit":["explicit.stat_115695112"]}}} +{"ref":"Deals # Chaos Damage per second to nearby Enemies","better":1,"matchers":[{"string":"주변의 적에게 1초마다 #의 카오스 피해를 줌"}],"trade":{"ids":{"explicit":["explicit.stat_2280313599"]}}} +{"ref":"Debilitate Enemies for # Seconds when you Suppress their Spell Damage","better":1,"matchers":[{"string":"적의 주문 피해 억제 시 #초 동안 해당 적에게 쇠잔 유발"}],"trade":{"ids":{"explicit":["explicit.stat_3019649166"]}}} +{"ref":"Debilitate nearby Enemies for # Seconds when Effect ends","better":1,"matchers":[{"string":"효과 만료 시 #초 동안 주변의 적에게 쇠잔 유발"}],"trade":{"ids":{"explicit":["explicit.stat_545593248"]}}} +{"ref":"Debuffs on Monsters expire #% faster","better":1,"fromUberAreaMods":true,"matchers":[{"string":"몬스터에게 적용되는 디버프가 #% 더 빠르게 만료됨"},{"string":"몬스터에게 적용되는 디버프가 #% 더 느리게 만료됨","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1200027417"],"fractured":["fractured.stat_1200027417"]}}} +{"ref":"Debuffs on you expire #% faster","better":1,"matchers":[{"string":"플레이어에게 적용되는 디버프가 #% 더 빠르게 만료됨"},{"string":"플레이어에게 적용되는 디버프가 #% 더 느리게 만료됨","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1238227257"]}}} +{"ref":"Debuffs on you expire #% faster while affected by Haste","better":-1,"matchers":[{"string":"가속의 영향을 받는 동안 플레이어에게 적용되는 디버프가 #% 더 느리게 만료됨"},{"string":"가속의 영향을 받는 동안 플레이어에게 적용되는 디버프가 #% 더 빠르게 만료됨","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_207635700"]},"inverted":true}} +{"ref":"Defences are Zero","better":1,"matchers":[{"string":"방어력 0"}],"trade":{"ids":{"explicit":["explicit.stat_4271994824"]}}} +{"ref":"Defiance Banner has #% increased Aura Effect","better":1,"matchers":[{"string":"저항의 깃발의 오라 효과 #% 증가"},{"string":"저항의 깃발의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1105773670"]}}} +{"ref":"Denoted service of # dekhara in the akhara of Asenath","better":0,"matchers":[{"string":"아세나스의 아카라에 속한 데카라 #명의 봉사 상징\n반경 내 패시브 스킬은 마라케스의 지배를 받음","advanced":"아세나스(아세나스-나시마)의 아카라에 속한 데카라 #명의 봉사 상징\n반경 내 패시브 스킬은 마라케스의 지배를 받음"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_asenath"]}}} +{"ref":"Denoted service of # dekhara in the akhara of Balbala","better":0,"matchers":[{"string":"발바라의 아카라에 속한 데카라 #명의 봉사 상징\n반경 내 패시브 스킬은 마라케스의 지배를 받음","advanced":"발바라(아세나스-나시마)의 아카라에 속한 데카라 #명의 봉사 상징\n반경 내 패시브 스킬은 마라케스의 지배를 받음"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_balbala"]}}} +{"ref":"Denoted service of # dekhara in the akhara of Nasima","better":0,"matchers":[{"string":"나시마의 아카라에 속한 데카라 #명의 봉사 상징\n반경 내 패시브 스킬은 마라케스의 지배를 받음","advanced":"나시마(아세나스-나시마)의 아카라에 속한 데카라 #명의 봉사 상징\n반경 내 패시브 스킬은 마라케스의 지배를 받음"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_nasima"]}}} +{"ref":"Desecrate Spawns an additional corpse","better":1,"matchers":[{"string":"모독이 시신 #구 추가 생성"},{"string":"모독이 시신 1구 추가 생성","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3655654928"]}}} +{"ref":"Despair has no Reservation if Cast as an Aura","better":1,"matchers":[{"string":"절망이 오라의 형태로 시전되는 경우 점유 없음"}],"trade":{"ids":{"explicit":["explicit.stat_450601566"]}}} +{"ref":"Determination has #% increased Aura Effect","better":1,"matchers":[{"string":"결의의 오라 효과 #% 증가"},{"string":"결의의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3653400807"]}}} +{"ref":"Determination has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"결의의 마나 점유 효율 #% 증가"},{"string":"결의의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2721871046","explicit.stat_325889252"],"implicit":["implicit.stat_2721871046","implicit.stat_325889252"],"fractured":["fractured.stat_325889252"],"enchant":["enchant.stat_2721871046","enchant.stat_325889252"]}}} +{"ref":"Determination has no Reservation","better":1,"matchers":[{"string":"결의로 인한 점유 없음"}],"trade":{"ids":{"explicit":["explicit.stat_1358697130"]}}} +{"ref":"Detonate Dead has a #% chance to detonate an additional corpse","better":1,"matchers":[{"string":"시체 폭발이 #%의 확률로 시체 1구 추가 폭발"}],"trade":{"ids":{"enchant":["enchant.stat_1539846779"]}}} +{"ref":"Devouring Totem has #% Chance to Consume an additional corpse","better":1,"matchers":[{"string":"포식 토템이 시신을 추가로 소모할 확률 #% 획득"}],"trade":{"ids":{"enchant":["enchant.stat_4189505564"]}}} +{"ref":"Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus","better":1,"matchers":[{"string":"반경 내 패시브 스킬의 민첩 및 지능이 힘 근접 피해 보너스로 계산"}],"trade":{"ids":{"explicit":["explicit.stat_842363566"]}}} +{"ref":"Dexterity from Passives in Radius is Transformed to Intelligence","better":1,"matchers":[{"string":"반경 내 패시브 스킬로 획득하는 민첩을 지능으로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_2075199521"]}}} +{"ref":"Dexterity from Passives in Radius is Transformed to Strength","better":1,"matchers":[{"string":"반경 내 패시브 스킬로 획득하는 민첩을 힘으로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_4097174922"]}}} +{"ref":"Discipline has #% increased Aura Effect","better":1,"matchers":[{"string":"단련의 오라 효과 #% 증가"},{"string":"단련의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_788317702"]}}} +{"ref":"Discipline has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"단련의 마나 점유 효율 #% 증가"},{"string":"단련의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1692887998","explicit.stat_2081344089"],"implicit":["implicit.stat_1692887998","implicit.stat_2081344089"],"enchant":["enchant.stat_1692887998","enchant.stat_2081344089"]}}} +{"ref":"Discipline has no Reservation","better":1,"matchers":[{"string":"단련으로 인한 점유 없음"}],"trade":{"ids":{"explicit":["explicit.stat_3708588508"]}}} +{"ref":"Divine Flesh","better":1,"matchers":[{"string":"신성한 육체"}],"trade":{"ids":{"explicit":["explicit.stat_2321346567"]}}} +{"ref":"Divine Ire Damages an additional nearby Enemy when gaining Stages","better":1,"matchers":[{"string":"단계 획득 시 신성한 진노가 주변의 추가 적 #명에게 피해를 줌"},{"string":"단계 획득 시 신성한 진노가 주변의 추가 적에게 피해를 줌","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1477213724"]}}} +{"ref":"Divine Ire deals #% increased Damage","better":1,"matchers":[{"string":"신성한 진노가 주는 피해 #% 증가"},{"string":"신성한 진노가 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2584129062"]}}} +{"ref":"Divine Ire's beam has #% increased width","better":1,"matchers":[{"string":"신성한 진노의 광선 폭 #% 증가"},{"string":"신성한 진노의 광선 폭 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2212298325"]}}} +{"ref":"Divine Shield","better":1,"matchers":[{"string":"신성한 방패"}],"trade":{"ids":{"explicit":["explicit.stat_2048995720"],"fractured":["fractured.stat_2048995720"],"scourge":["scourge.stat_2048995720"]}}} +{"ref":"Does not inflict Mana Burn over time","better":1,"matchers":[{"string":"일정 시간 동안 마나 연소를 유발하지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_1686969928"]}}} +{"ref":"Dominating Blow can summon an additional Magic Sentinel of Dominance","better":1,"matchers":[{"string":"지배의 맹타가 마법 지배의 파수꾼 #명 추가 소환 가능"},{"string":"지배의 맹타가 마법 지배의 파수꾼 1명 추가 소환 가능","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1095160683"]}}} +{"ref":"Dominating Blow can summon an additional Rare Sentinel of Dominance","better":1,"matchers":[{"string":"지배의 맹타가 희귀 지배의 파수꾼 #명 추가 소환 가능"},{"string":"지배의 맹타가 희귀 지배의 파수꾼 1명 추가 소환 가능","value":1}],"trade":{"ids":{"enchant":["enchant.stat_2337005967"]}}} +{"ref":"Double Strike has a #% chance to deal Double Damage to Bleeding Enemies","better":1,"matchers":[{"string":"이중 타격이 #%의 확률로 출혈 중인 적에게 2배의 피해를 줌"}],"trade":{"ids":{"enchant":["enchant.stat_3125201823"]}}} +{"ref":"Dread Banner has #% increased Aura Effect","better":1,"matchers":[{"string":"공포의 깃발 오라 효과 #% 증가"},{"string":"공포의 깃발 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_287319069"]}}} +{"ref":"Drops Brittle Ground while moving, lasting # seconds","better":1,"matchers":[{"string":"이동 중 #초 동안 지속되는 허약의 지대 생성"}],"trade":{"ids":{"implicit":["implicit.stat_984148407"]}}} +{"ref":"Drops Burning Ground while moving, dealing # Fire Damage per second for # second","better":1,"matchers":[{"string":"이동 중 용암 지대를 생성하여 #초 동안 1초마다 #의 화염 피해를 줌"}],"trade":{"ids":{"explicit":["explicit.stat_3595254837"],"fractured":["fractured.stat_3595254837"]}}} +{"ref":"Drops Sapped Ground while moving, lasting # seconds","better":1,"matchers":[{"string":"이동 중 #초 동안 지속되는 활력 감소의 지대 생성"}],"trade":{"ids":{"implicit":["implicit.stat_1997664024"]}}} +{"ref":"Drops Scorched Ground while moving, lasting # seconds","better":1,"matchers":[{"string":"이동 중 #초 동안 지속되는 그을린 지대 생성"}],"trade":{"ids":{"explicit":["explicit.stat_1558131185"],"implicit":["implicit.stat_396238230"]}}} +{"ref":"Drops Shocked Ground while moving, lasting # seconds","better":1,"matchers":[{"string":"이동 중 #초 동안 지속되는 감전 지대 생성"}],"trade":{"ids":{"explicit":["explicit.stat_3002060175"]}}} +{"ref":"Duplicates up to # random Offer Reward upon defeating the Herald of the Scourge","better":1,"matchers":[{"string":"스컬지의 전령 처치 시 제안 보상 최대 #개 무작위로 복제"}],"trade":{"ids":{"explicit":["sanctum.stat_502549687"]}}} +{"ref":"During Effect, #% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest","better":-1,"matchers":[{"string":"효과를 받는 동안, 자신의 비 제한 원소 저항 중 가장 낮은 원소 저항의 #%만큼 받는 피해 증가"},{"string":"효과를 받는 동안, 자신의 비 제한 원소 저항 중 가장 낮은 원소 저항의 #%만큼 받는 피해 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1869678332"]},"inverted":true}} +{"ref":"During Effect, Damage Penetrates #% Resistance of each Element for which your Uncapped Elemental Resistance is highest","better":1,"matchers":[{"string":"효과를 받는 동안, 피해가 자신의 비 제한 원소 저항 중 가장 높은 원소 저항의 #%만큼 관통"}],"trade":{"ids":{"explicit":["explicit.stat_2444301311"]}}} +{"ref":"Each Rage also grants +#% to Damage over Time Multiplier for Bleeding while wielding an Axe","better":1,"matchers":[{"string":"도끼 장착 시 격노 하나당 추가로 출혈 지속 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_769468514"]}}} +{"ref":"Each Summoned Phantasm grants you Phantasmal Might","better":1,"matchers":[{"string":"소환된 환영 하나당 시전자에게 환영의 완력 부여"}],"trade":{"ids":{"explicit":["explicit.stat_943553365"]}}} +{"ref":"Earthquake deals #% increased Damage per 0.1 seconds Duration","better":1,"matchers":[{"string":"지진이 지속시간 0.1초마다 주는 피해 #% 증가"},{"string":"지진이 지속시간 0.1초마다 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2068943099"]}}} +{"ref":"Earthshatter deals #% increased Damage","better":1,"matchers":[{"string":"지면 분쇄로 주는 피해 #% 증가"},{"string":"지면 분쇄로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_335520087"]}}} +{"ref":"Earthshatter has #% increased Area of Effect","better":1,"matchers":[{"string":"지면 분쇄 효과 범위 #% 증가"},{"string":"지면 분쇄 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3469056056"]}}} +{"ref":"Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every second","better":1,"matchers":[{"string":"희귀 또는 고유 적 명중 시 영혼 1개 포식, #초마다 최대 1번 포식"},{"string":"희귀 또는 고유 적 명중 시 영혼 1개 포식, 1초마다 최대 1번 포식","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2103621252"]}}} +{"ref":"Effect is not removed when Unreserved Mana is Filled\nEffect does not Queue","better":1,"matchers":[{"string":"점유되지 않은 마나가 찼을 때 효과가 제거되지 않음\n효과가 예약되지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_3969608626"],"fractured":["fractured.stat_3969608626"]}}} +{"ref":"Effect is removed when Hit by a Player","better":1,"matchers":[{"string":"다른 플레이어에게 피격 시 효과 제거"}],"trade":{"ids":{"implicit":["implicit.stat_3399320226"]}}} +{"ref":"Effect is removed when Ward Breaks","better":1,"matchers":[{"string":"수호 파괴 시 효과 제거"}],"trade":{"ids":{"explicit":["explicit.stat_3617672145"]}}} +{"ref":"Effects of Consecrated Ground you create Linger for 1 second","better":1,"matchers":[{"string":"플레이어가 생성하는 신성화 지대의 효과가 #초 더 유지됨"},{"string":"플레이어가 생성하는 신성화 지대의 효과가 1초 더 유지됨","value":1}],"trade":{"ids":{"explicit":["explicit.stat_4113372195"]}}} +{"ref":"Effects of Consecrated Ground you create while affected by Zealotry Linger for # seconds","better":1,"matchers":[{"string":"열광의 영향을 받는 동안 플레이어가 생성한 신성화 지대의 효과 지속시간 # 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2163419452"]}}} +{"ref":"Effects of Profane Ground you create Linger for 1 second","better":1,"matchers":[{"string":"플레이어가 생성하는 부정 지대의 효과가 #초 더 유지됨"},{"string":"플레이어가 생성하는 부정 지대의 효과가 1초 더 유지됨","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3636871122"]}}} +{"ref":"Eldritch Battery","better":1,"matchers":[{"string":"섬뜩한 충전기"}],"trade":{"ids":{"explicit":["explicit.stat_2262736444"],"fractured":["fractured.stat_2262736444"],"scourge":["scourge.stat_2262736444"]}}} +{"ref":"Eldritch Battery during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 섬뜩한 충전기 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1544417021"]}}} +{"ref":"Elemental Ailments inflicted on Enemies Exposed by you have #% increased Duration","better":1,"matchers":[{"string":"플레이어가 노출시킨 적에게 적용되는 원소 상태 이상의 지속시간 #% 증가"},{"string":"플레이어가 노출시킨 적에게 적용되는 원소 상태 이상의 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_261996832"]}}} +{"ref":"Elemental Ailments you inflict are Reflected to you","better":1,"matchers":[{"string":"자신이 유발한 원소 상태 이상이 자신에게 반사됨"}],"trade":{"ids":{"explicit":["explicit.stat_1370804479"]}}} +{"ref":"Elemental Damage with Hits is Lucky while you are Shocked","better":1,"matchers":[{"string":"감전 상태일 때 명중 시 원소 피해에 행운 적용"}],"trade":{"ids":{"explicit":["explicit.stat_888026555"]}}} +{"ref":"Elemental Damage you Deal with Hits is Resisted by lowest Elemental Resistance instead","better":1,"matchers":[{"string":"명중 시 적에게 주는 원소 피해가 가장 낮은 원소 저항의 저항을 받음"}],"trade":{"ids":{"explicit":["explicit.stat_1740349133"]}}} +{"ref":"Elemental Equilibrium","better":1,"matchers":[{"string":"원소 균형"}],"trade":{"ids":{"explicit":["explicit.stat_1263158408"],"implicit":["implicit.stat_1263158408"],"fractured":["fractured.stat_1263158408"],"scourge":["scourge.stat_1263158408"]}}} +{"ref":"Elemental Hit Always Freezes, Shocks and Ignites","better":1,"matchers":[{"string":"원소의 일격 동결, 감전 및 점화 확률 #%"},{"string":"원소의 일격이 항상 동결, 감전 및 점화 유발","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3205997967"]}}} +{"ref":"Elemental Hit deals #% increased Damage","better":1,"matchers":[{"string":"원소의 일격 피해 #% 증가"},{"string":"원소의 일격 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4109038270"],"enchant":["enchant.stat_4109038270"]}}} +{"ref":"Elemental Overload","better":1,"matchers":[{"string":"원소 과부하"}],"trade":{"ids":{"explicit":["explicit.stat_3574189159"],"implicit":["implicit.stat_3574189159"],"fractured":["fractured.stat_3574189159"],"scourge":["scourge.stat_3574189159"]}}} +{"ref":"Elemental Resistances are capped by your highest Maximum Elemental Resistance instead","better":1,"matchers":[{"string":"모든 원소 저항의 한도가 가장 높은 원소 저항 최대치에 따라 결정됨"}],"trade":{"ids":{"explicit":["explicit.stat_3082079953"]}}} +{"ref":"Elemental Resistances are Zero","better":1,"matchers":[{"string":"원소 저항 0"}],"trade":{"ids":{"explicit":["explicit.stat_85576425"]}}} +{"ref":"Elemental Weakness has no Reservation if Cast as an Aura","better":1,"matchers":[{"string":"원소 약화가 오라의 형태로 시전되는 경우 점유 없음"}],"trade":{"ids":{"explicit":["explicit.stat_3416664215"]}}} +{"ref":"Elreon's Veiled","better":0,"matchers":[{"string":"엘레온의 장막의"}],"trade":{"ids":{"veiled":["veiled.mod_5769"]}}} +{"ref":"Enduring Cry grants # additional Endurance Charge to you and Allied Players","better":1,"matchers":[{"string":"인내의 함성이 플레이어와 동료 플레이어들에게 인내 충전 #개 추가"}],"trade":{"ids":{"enchant":["enchant.stat_2977067558"]}}} +{"ref":"Enduring Cry has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"인내의 함성의 재사용 대기시간 회복 속도 #% 증가"},{"string":"인내의 함성의 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3617955571"],"enchant":["enchant.stat_3617955571"]}}} +{"ref":"Enemies affected by Bear Trap take #% increased Damage from Trap or Mine Hits","better":1,"matchers":[{"string":"곰 덫의 영향을 받는 적이 덫 또는 지뢰 명중으로 받는 피해 #% 증가"},{"string":"곰 덫의 영향을 받는 적이 덫 또는 지뢰 명중으로 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1678345858"]}}} +{"ref":"Enemies affected by your Spider's Webs deal #% reduced Damage","better":-1,"matchers":[{"string":"거미줄의 영향을 받는 적이 주는 피해 #% 증가"},{"string":"거미줄의 영향을 받는 적이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3231424461"]},"inverted":true}} +{"ref":"Enemies affected by your Spider's Webs have +#% to All Resistances","better":1,"matchers":[{"string":"플레이어의 거미줄에 영향을 받는 적의 모든 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_785655723"]}}} +{"ref":"Enemies Blinded by you have #% increased Critical Strike Chance","better":1,"matchers":[{"string":"플레이어가 실명시킨 적의 치명타 확률 #% 증가"},{"string":"플레이어가 실명시킨 적의 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4216282855"],"fractured":["fractured.stat_4216282855"],"enchant":["enchant.stat_4216282855"]}}} +{"ref":"Enemies Blinded by you have Malediction","better":1,"matchers":[{"string":"실명을 유발한 적에게 악담 유발"}],"trade":{"ids":{"explicit":["explicit.stat_2621660713"]}}} +{"ref":"Enemies Cannot Leech Life From you","better":1,"matchers":[{"string":"적이 플레이어의 생명력을 흡수할 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_4293455942"],"implicit":["implicit.stat_4293455942"]}}} +{"ref":"Enemies Cannot Leech Mana From you","better":1,"matchers":[{"string":"적이 플레이어의 마나를 흡수할 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_4293245253"]}}} +{"ref":"Enemies Chilled by your Hits can be Shattered as though Frozen","better":1,"matchers":[{"string":"플레이어에게 피격되어 냉각된 적이 동결된 것처럼 산산이 조각남"}],"trade":{"ids":{"explicit":["explicit.stat_3119292058"]}}} +{"ref":"Enemies Chilled by your Hits have Damage taken increased by Chill Effect","better":1,"matchers":[{"string":"플레이어에게 피격되어 냉각된 적이 냉각 효과로 받는 냉기 피해 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1816894864"]}}} +{"ref":"Enemies Chilled by your Hits lessen their Damage dealt by half of Chill Effect","better":1,"matchers":[{"string":"플레이어에게 피격되어 냉각된 적이 주는 피해가 냉각 효과의 반만큼 감폭"}],"trade":{"ids":{"explicit":["explicit.stat_3594661200"]}}} +{"ref":"Enemies Cursed by you are Hindered if 25% of Curse Duration expired","better":1,"matchers":[{"string":"플레이어가 저주한 적의 저주 지속시간이 25% 경과하면\n해당 적이 이동 방해를 받아 이동 속도 #% 감소"},{"string":"플레이어가 저주한 적의 저주 지속시간이 25% 경과하면 해당 적이 이동 방해를 받음","value":30}],"trade":{"ids":{"explicit":["explicit.stat_313419608"]}}} +{"ref":"Enemies Cursed by you take #% increased Damage if 75% of Curse Duration expired","better":1,"matchers":[{"string":"플레이어가 저주한 적의 저주 지속시간이 75% 경과하면 해당 적이 받는 피해 #% 증가"},{"string":"플레이어가 저주한 적의 저주 지속시간이 75% 경과하면 해당 적이 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2057136736"]}}} +{"ref":"Enemies display their Monster Category","better":1,"matchers":[{"string":"적에게 몬스터 유형 표시됨"}],"trade":{"ids":{"explicit":["explicit.stat_4164361381"]}}} +{"ref":"Enemies Drenched by Hydrosphere have Cold and Lightning Exposure, applying +#% to Resistances","better":1,"matchers":[{"string":"물의 구체로 흠뻑 젖은 적이 냉기 및 번개에 노출되어, 적의 저항 #%"}],"trade":{"ids":{"enchant":["enchant.stat_3831546273"]}}} +{"ref":"Enemies Frozen by you take 20% increased Damage","better":1,"matchers":[{"string":"동결된 적이 받는 피해 20% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_849085925"]}}} +{"ref":"Enemies have #% reduced Evasion if you have Hit them Recently","better":-1,"matchers":[{"string":"최근 4초 이내 명중한 적의 회피 #% 증가"},{"string":"최근 4초 이내 명중한 적의 회피 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1773891268"],"fractured":["fractured.stat_1773891268"]},"inverted":true}} +{"ref":"Enemies Hindered by you have #% increased Life Regeneration rate","better":1,"matchers":[{"string":"플레이어가 이동 방해한 적의 생명력 재생 속도 #% 증가"},{"string":"플레이어가 이동 방해한 적의 생명력 재생 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3709502856"],"fractured":["fractured.stat_3709502856"],"enchant":["enchant.stat_3709502856"]}}} +{"ref":"Enemies Ignited by you during Effect take #% increased Damage","better":1,"matchers":[{"string":"효과를 받는 동안 점화된 적이 받는 피해 #% 증가"},{"string":"효과를 받는 동안 점화된 적이 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3477833022"]}}} +{"ref":"Enemies Ignited by you have #% of Physical Damage they deal converted to Fire","better":1,"matchers":[{"string":"자신이 점화한 적이 주는 물리 피해의 #%를 화염 피해로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_1272032962"]}}} +{"ref":"Enemies Ignited by you take Chaos Damage instead of Fire Damage from Ignite","better":1,"matchers":[{"string":"플레이어에 의해 점화된 적이 화염 피해 대신 카오스 피해를 받음"}],"trade":{"ids":{"explicit":["explicit.stat_2714810050"]}}} +{"ref":"Enemies in Void Sphere's range take up to #% increased Damage, based on distance from the Void Sphere","better":1,"matchers":[{"string":"공허 구체와의 거리에 따라 공허 구체의 범위 내 적이 받는 피해 최대 #% 증가"},{"string":"공허 구체와의 거리에 따라 공허 구체의 범위 내 적이 받는 피해 최대 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4271709087"]}}} +{"ref":"Enemies in your Chilling Areas take #% increased Lightning Damage","better":1,"matchers":[{"string":"냉각 지역에 있는 적들이 받는 번개 피해 #% 증가"},{"string":"냉각 지역에 있는 적들이 받는 번개 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3923274300"]}}} +{"ref":"Enemies in your Link Beams cannot apply Elemental Ailments","better":1,"matchers":[{"string":"연결 광선 안에 있는 적이 원소 상태 이상 적용 불가"}],"trade":{"ids":{"explicit":["explicit.stat_2556900184"]}}} +{"ref":"Enemies inflict Elemental Ailments on you instead of nearby Allies","better":1,"matchers":[{"string":"적이 주변 동료들 대신 플레이어에게 원소 상태 이상 유발"}],"trade":{"ids":{"explicit":["explicit.stat_979288792"]}}} +{"ref":"Enemies inside Glacial Cage take #% increased Damage","better":1,"anointments":[{"roll":10,"oils":"1,11"}],"matchers":[{"string":"빙하 창살에 갇힌 적이 받는 피해 #% 증가"},{"string":"빙하 창살에 갇힌 적이 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3384161880"]}}} +{"ref":"Enemies Intimidated by you have #% increased duration of stuns against them","better":1,"matchers":[{"string":"플레이어가 위협한 적의 기절 지속시간 #% 증가"},{"string":"플레이어가 위협한 적의 기절 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1919892065"],"fractured":["fractured.stat_1919892065"],"enchant":["enchant.stat_1919892065"]}}} +{"ref":"Enemies Killed by your Hits are destroyed","better":1,"matchers":[{"string":"플레이어가 명중하여 처치된 적이 파괴됨"}],"trade":{"ids":{"explicit":["explicit.stat_2970902024"],"enchant":["enchant.stat_2970902024"]}}} +{"ref":"Enemies Killed by your Hits are destroyed while Insane","better":1,"matchers":[{"string":"광기 상태에서 플레이어가 명중하여 처치된 적이 파괴됨"}],"trade":{"ids":{"explicit":["explicit.stat_3797538318"]}}} +{"ref":"Enemies Killed by Zombies' Hits Explode, dealing #% of their Life as Fire Damage","better":1,"matchers":[{"string":"좀비에게 적중되어 사망한 적이 폭발하여, 자신의 생명력의 #%를 화염 피해로 줌"}],"trade":{"ids":{"explicit":["explicit.stat_2857427872"]}}} +{"ref":"Enemies Killed with Attack or Spell Hits Explode, dealing #% of their Life as Fire Damage","better":1,"matchers":[{"string":"공격 또는 주문에 적중되어 사망한 적이 폭발하여, 자신의 생명력의 #%를 화염 피해로 줌"}],"trade":{"ids":{"explicit":["explicit.stat_3457687358"],"fractured":["fractured.stat_3457687358"]}}} +{"ref":"Enemies Maimed by you take #% increased Damage Over Time","better":1,"matchers":[{"string":"힘줄 절단시킨 적이 받는 지속 피해 #% 증가"},{"string":"힘줄 절단시킨 적이 받는 지속 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2745149002"],"fractured":["fractured.stat_2745149002"],"enchant":["enchant.stat_2745149002"]}}} +{"ref":"Enemies near corpses affected by your Curses are Blinded\nEnemies Killed near corpses affected by your Curses explode, dealing\n#% of their Life as Physical Damage","better":1,"matchers":[{"string":"자신이 건 저주에 영향을 받는 시신 근처의 적 실명 유발\n자신이 건 저주에 영향을 받는 시신 근처에 있는 적 사망 시 폭발하여\n생명력의 #%를 물리 피해로 줌"}],"trade":{"ids":{"explicit":["explicit.stat_1509756274"]}}} +{"ref":"Enemies on Fungal Ground you Kill have #% chance to Explode, dealing 5% of their Life as Chaos Damage","better":1,"matchers":[{"string":"곰팡이 지대에서 처치한 적이 #% 확률로 폭발하여, 최대 생명력의 5%만큼 카오스 피해를 줌"},{"string":"곰팡이 지대에서 처치한 적이 폭발하여, 최대 생명력의 5%만큼 카오스 피해를 줌","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3550460467"]}}} +{"ref":"Enemies Petrified by Your Stone Gaze Towers take #% increased Damage","better":1,"anointments":[{"roll":10,"oils":"7,9"}],"matchers":[{"string":"돌의 응시 탑으로 석화된 적이 받는 피해 #% 증가"}],"trade":{"ids":{"enchant":["enchant.stat_3169825208"]}}} +{"ref":"Enemies Shocked by you have #% of Physical Damage they deal converted to Lightning","better":1,"matchers":[{"string":"자신이 감전시킨 적이 주는 물리 피해의 #%를 번개 피해로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_1070888079"]}}} +{"ref":"Enemies take #% increased Damage for each type of Ailment you have inflicted on them","better":1,"matchers":[{"string":"플레이어가 적에게 유발한 상태 이상 유형 하나당 적이 받는 피해 #% 증가"},{"string":"플레이어가 적에게 유발한 상태 이상 유형 하나당 적이 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1217730254"]}}} +{"ref":"Enemies take #% increased Elemental Damage from your Hits for\neach Withered you have inflicted on them","better":1,"matchers":[{"string":"플레이어가 적에게 적용한 위축 하나당 해당 적이 플레이어에게 피격 시\n받는 원소 피해 #% 증가"},{"string":"플레이어가 적에게 적용한 위축 하나당 해당 적이 플레이어에게 피격 시\n받는 원소 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3507915723"]}}} +{"ref":"Enemies Taunted by you deal #% more Area Damage","better":1,"matchers":[{"string":"플레이어가 도발한 적이 주는 범위 피해 #% 증폭"},{"string":"플레이어가 도발한 적이 주는 범위 피해 #% 감폭","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1684204928"]}}} +{"ref":"Enemies Taunted by you take #% increased Damage","better":1,"matchers":[{"string":"플레이어가 도발한 적이 받는 피해 #% 증가"},{"string":"플레이어가 도발한 적이 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1282219780"]}}} +{"ref":"Enemies Taunted by your Warcries have #% chance to Explode on death, dealing 8% of their maximum Life as Chaos Damage","better":1,"matchers":[{"string":"플레이어가 함성으로 도발한 적이 사망 시 #%의 확률로 폭발하여, 생명력 최대치의 8%를 카오스 피해로 줌"},{"string":"플레이어가 함성으로 도발한 적이 사망 시 폭발하여, 생명력 최대치의 8%를 카오스 피해로 줌","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2937093415"]}}} +{"ref":"Enemies Withered by you have +#% to all Resistances","better":1,"matchers":[{"string":"플레이어가 위축시킨 적의 모든 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1032614900"],"fractured":["fractured.stat_1032614900"],"enchant":["enchant.stat_1032614900"]}}} +{"ref":"Enemies you Attack Reflect # Physical Damage to you","better":1,"matchers":[{"string":"공격받은 적이 플레이어에게 #~#의 물리 피해 반사"},{"string":"공격받은 적이 플레이어에게 #의 물리 피해 반사"}],"trade":{"ids":{"explicit":["explicit.stat_2006370586"]}}} +{"ref":"Enemies you inflict Bleeding on grant #% increased Flask Charges","better":1,"matchers":[{"string":"적에게 출혈을 유발하면 플라스크 충전량 #% 증가"},{"string":"적에게 출혈을 유발하면 플라스크 충전량 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2671550669"]}}} +{"ref":"Enemies you kill are Shocked","better":1,"matchers":[{"string":"처치한 적이 감전됨"}],"trade":{"ids":{"explicit":["explicit.stat_209387074"]}}} +{"ref":"Enemies you Kill during Effect have a #% chance to Explode, dealing a tenth of their maximum Life as Damage of a Random Element","better":1,"matchers":[{"string":"효과를 받는 동안 처치한 적이 #%의 확률로 폭발하여, 최대 생명력의 1/10을 무작위 원소 피해로 줌"}],"trade":{"ids":{"explicit":["explicit.stat_2165415361"]}}} +{"ref":"Enemies you Kill Explode, dealing #% of their Life as Physical Damage","better":1,"matchers":[{"string":"자신이 처치한 적이 폭발하여, 최대 생명력의 #%를 물리 피해로 줌"}],"trade":{"ids":{"explicit":["explicit.stat_1220361974"],"implicit":["implicit.stat_1220361974"]}}} +{"ref":"Enemies you Kill have a #% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage","better":1,"matchers":[{"string":"자신이 처치한 적이 #%의 확률로 폭발하여, 생명력 최대치의 1/4을 카오스 피해로 줌"}],"trade":{"ids":{"explicit":["explicit.stat_1776945532"]}}} +{"ref":"Enemies you Kill have a #% chance to Explode, dealing a tenth of their maximum Life as Physical Damage","better":1,"matchers":[{"string":"자신이 처치한 적이 #%의 확률로 폭발하여, 최대 생명력의 1/10을 물리 피해로 줌"}],"trade":{"ids":{"explicit":["explicit.stat_3295179224"],"implicit":["implicit.stat_3295179224"],"fractured":["fractured.stat_3295179224"],"scourge":["scourge.stat_3295179224"]}}} +{"ref":"Enemies you Kill that are affected by Elemental Ailments\ngrant #% increased Flask Charges","better":1,"matchers":[{"string":"원소 상태 이상이 유발된 적 처치 시\n플라스크 충전량 #% 증가"},{"string":"원소 상태 이상이 유발된 적 처치 시\n플라스크 충전량 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_589437732"]}}} +{"ref":"Enemies you Kill while affected by Glorious Madness have a #% chance to Explode, dealing a quarter of their Life as Chaos Damage","better":1,"matchers":[{"string":"찬란한 광기의 영향을 받는 동안 처치한 적이 #%의 확률로 폭발하여 생명력의 1/4을 카오스 피해로 줌"}],"trade":{"ids":{"explicit":["explicit.stat_2780297117"]}}} +{"ref":"Enemies you Kill while using Pride have #% chance to Explode, dealing a tenth of their maximum Life as Physical Damage","better":1,"matchers":[{"string":"플레이어가 자부심을 사용하는 동안 처치한 적이 #%의 확률로 폭발하여, 최대 생명력의 1/10을 물리 피해로 줌"}],"trade":{"ids":{"explicit":["explicit.stat_1961516633"]}}} +{"ref":"Enemies you or your Totems Kill have #% chance to Explode, dealing 500% of their maximum Life as Fire Damage","better":1,"matchers":[{"string":"플레이어 또는 플레이어의 토템이 처치한 적이 #%의 확률로 폭발하여, 해당 적의 최대 생명력의 500%를 화염 피해로 줌"}],"trade":{"ids":{"explicit":["explicit.stat_215242678"]}}} +{"ref":"Enemies you Shock have #% reduced Cast Speed","better":-1,"matchers":[{"string":"감전된 적의 시전 속도 #% 증가"},{"string":"감전된 적의 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4107150355"]},"inverted":true}} +{"ref":"Enemies you Shock have #% reduced Movement Speed","better":-1,"matchers":[{"string":"감전된 적의 이동 속도 #% 증가"},{"string":"감전된 적의 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3134790305"]},"inverted":true}} +{"ref":"Enemies you've Hit Recently have #% reduced Life Regeneration rate","better":-1,"matchers":[{"string":"최근 4초 이내 명중한 적의 생명력 재생 속도 #% 증가"},{"string":"최근 4초 이내 명중한 적의 생명력 재생 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3903907406"]},"inverted":true}} +{"ref":"Enemy Hits inflict Temporal Chains on you","better":1,"matchers":[{"string":"적 공격 명중 시 플레이어에게 시간의 사슬 부여"}],"trade":{"ids":{"explicit":["explicit.stat_1955994922"]}}} +{"ref":"Enemy Projectiles Pierce you","better":1,"matchers":[{"string":"적 투사체가 플레이어 관통"}],"trade":{"ids":{"explicit":["explicit.stat_1457679290"]}}} +{"ref":"Energy Blades have #% increased Attack Speed","better":1,"matchers":[{"string":"에너지 칼날의 공격 속도 #% 증가"},{"string":"에너지 칼날의 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1217516474"]}}} +{"ref":"Energy Shield Leech Effects from Attacks are not removed at Full Energy Shield","better":1,"matchers":[{"string":"에너지 보호막이 최대일 때 공격으로 인한 에너지 보호막 흡수 효과가 제거되지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_1004885987"]}}} +{"ref":"Enfeeble has no Reservation if Cast as an Aura","better":1,"matchers":[{"string":"쇠약화가 오라의 형태로 시전되는 경우 점유 없음"}],"trade":{"ids":{"explicit":["explicit.stat_56919069"]}}} +{"ref":"Ensnaring Arrow has #% increased Area of Effect","better":1,"matchers":[{"string":"올가미 화살의 효과 범위 #% 증가"},{"string":"올가미 화살의 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2791271819"]}}} +{"ref":"Ensnaring Arrow has #% increased Debuff Effect","better":1,"matchers":[{"string":"올가미 화살의 디버프 효과 #% 증가"},{"string":"올가미 화살의 디버프 효과 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1405738574"]}}} +{"ref":"Envy has no Reservation","better":1,"matchers":[{"string":"선망으로 인한 점유 없음"}],"trade":{"ids":{"explicit":["explicit.stat_2503479316"]}}} +{"ref":"Eternal Youth","better":1,"matchers":[{"string":"영원한 젊음"}],"trade":{"ids":{"explicit":["explicit.stat_1308467455"],"scourge":["scourge.stat_1308467455"]}}} +{"ref":"Ethereal Knives fires Projectiles in a circle","better":1,"matchers":[{"string":"천상의 단도가 원형으로 투사체 발사"}],"trade":{"ids":{"enchant":["enchant.stat_3491968196"]}}} +{"ref":"Evasion Rating is increased by Overcapped Cold Resistance","better":1,"matchers":[{"string":"제한 초과 냉기 저항에 따라 회피 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2358015838"],"fractured":["fractured.stat_2358015838"]}}} +{"ref":"Everlasting Sacrifice","better":1,"matchers":[{"string":"영원히 계속되는 희생"}],"trade":{"ids":{"explicit":["explicit.stat_145598447"]}}} +{"ref":"Every 10 seconds:\nGain 2% of Life per Enemy Hit with Attacks for 5 seconds\nGain 5% of Life per Enemy Killed for 5 seconds","better":1,"matchers":[{"string":"10초마다\n5초 동안 공격으로 명중한 적 하나당 생명력의 2% 획득\n5초 동안 처치한 적 하나당 생명력의 5% 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3938394827"]}}} +{"ref":"Every 16 seconds you gain Elemental Overload for 8 seconds","better":1,"matchers":[{"string":"16초마다 8초 동안 원소 과부하 획득"}],"trade":{"ids":{"explicit":["explicit.stat_708913352"]}}} +{"ref":"Every 16 seconds you gain Iron Reflexes for 8 seconds","better":1,"matchers":[{"string":"16초마다 8초 동안 철의 반사신경 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2200114771"]}}} +{"ref":"Every 3 seconds, Consume a nearby Corpse to Recover #% of Life","better":1,"matchers":[{"string":"3초마다 주변의 시체 1구를 소모해 생명력의 #% 회복"},{"string":"3초마다 주변의 시체 1구를 소모해 생명력의 #% 상실","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3764198549"]}}} +{"ref":"Every 4 seconds, Regenerate #% of Life over one second","better":1,"matchers":[{"string":"4초마다 1초에 걸쳐 생명력의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_1242155304"],"fractured":["fractured.stat_1242155304"]}}} +{"ref":"Every 4 seconds, remove Curses and Elemental Ailments from you","better":1,"matchers":[{"string":"4초마다 플레이어에게 걸린 저주 및 원소 상태 이상 제거"}],"trade":{"ids":{"explicit":["explicit.stat_2189230542"]}}} +{"ref":"Every 5 seconds, gain one of the following for 5 seconds:\nYour Hits are always Critical Strikes\nHits against you are always Critical Strikes\nAttacks cannot Hit you\nAttacks against you always Hit\nYour Damage with Hits is Lucky\nDamage of Hits against you is Lucky","better":1,"matchers":[{"string":"5초마다, 다음 속성 중 하나를 5초 동안 획득:\n플레이어가 항상 치명타로 명중\n플레이어 피격 시 항상 치명타로 피격\n공격으로 플레이어 명중 불가\n플레이어에 대한 공격이 항상 명중\n명중 시 주는 피해에 행운 적용\n플레이어 피격 시 받는 피해에 행운 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2501671832"]}}} +{"ref":"Every 8 seconds, gain Avatar of Fire for 4 seconds","better":1,"matchers":[{"string":"8초마다 4초 동안 불의 화신 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3345955207"]}}} +{"ref":"Every Rage also grants #% of Physical Damage as Extra Fire Damage","better":1,"matchers":[{"string":"격노 1당 물리 피해의 #%를 추가 화염 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1431402553"]}}} +{"ref":"Excavated Chests have a #% chance to contain twice as many Items","better":1,"fromAreaMods":true,"matchers":[{"string":"파낸 상자에서 #%의 확률로 아이템 2배 등장"}],"trade":{"ids":{"implicit":["implicit.stat_3239978999"]}}} +{"ref":"Exerted Attacks deal #% increased Damage","better":1,"matchers":[{"string":"전력 공격이 주는 피해 #% 증가"},{"string":"전력 공격이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1569101201"],"implicit":["implicit.stat_1569101201"],"fractured":["fractured.stat_1569101201"]}}} +{"ref":"Exerted Attacks Knock Enemies Back on Hit","better":1,"matchers":[{"string":"전력 공격 적중 시 #%의 확률로 적을 밀어냄"},{"string":"전력 공격 적중 시 적을 밀어냄","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1634061592"]}}} +{"ref":"Explosive Arrow deals #% increased Damage","better":1,"matchers":[{"string":"폭발 화살의 피해 #% 증가"},{"string":"폭발 화살의 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3628984170"]}}} +{"ref":"Explosive Arrow has #% increased Area of Effect","better":1,"matchers":[{"string":"폭발 화살의 효과 범위 #% 증가"},{"string":"폭발 화살 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1041365824"]}}} +{"ref":"Explosive Arrow has #% increased Attack Speed","better":1,"matchers":[{"string":"폭발 화살 공격 속도 #% 증가"},{"string":"폭발 화살의 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3949159285"]}}} +{"ref":"Explosive Arrow has #% increased Duration","better":1,"matchers":[{"string":"폭발 화살의 지속시간 #% 증가"},{"string":"폭발 화살의 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3590425794"]}}} +{"ref":"Explosive Concoction uses #% increased Flask Charges","better":1,"matchers":[{"string":"폭발성 혼합물의 플라스크 충전 사용 #% 증가"},{"string":"폭발성 혼합물의 플라스크 충전 사용 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1907051864"]}}} +{"ref":"Explosive Trap causes an additional smaller explosion","better":1,"matchers":[{"string":"폭발 덫이 소규모 폭발을 #회 추가 유발"},{"string":"폭발 덫이 소규모 폭발을 1회 추가 유발","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3078026860"]}}} +{"ref":"Explosive Trap deals #% increased Damage","better":1,"matchers":[{"string":"폭발 덫으로 주는 피해 #% 증가"},{"string":"폭발 덫으로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4207255685"]}}} +{"ref":"Explosive Trap has #% increased Area of Effect","better":1,"matchers":[{"string":"폭발 덫 효과 범위 #% 증가"},{"string":"폭발 덫 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1694915226"]}}} +{"ref":"Exposure you inflict applies an extra +#% to the affected Resistance","better":-1,"matchers":[{"string":"플레이어가 유발하는 노출이 영향을 받는 저항에 #% 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3306713700"]}}} +{"ref":"Exsanguinate deals #% increased Damage","better":1,"matchers":[{"string":"방혈로 주는 피해 #% 증가"},{"string":"방혈로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2259734653"]}}} +{"ref":"Exsanguinate has a #% chance to Chain an additional time","better":1,"matchers":[{"string":"#%의 확률로 방혈 추가 연쇄"}],"trade":{"ids":{"enchant":["enchant.stat_2304517189"]}}} +{"ref":"Extra gore","better":1,"matchers":[{"string":"잔인함"}],"trade":{"ids":{"explicit":["explicit.stat_3403461239"]}}} +{"ref":"Eye of Winter fires Shard projectiles with #% increased Frequency during flight","better":1,"matchers":[{"string":"겨울의 눈이 비행하는 동안 발사하는 파편 투사체의 빈도 #% 증가"},{"string":"겨울의 눈이 비행하는 동안 발사하는 파편 투사체의 빈도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_173612563"]}}} +{"ref":"Far Shot","better":1,"matchers":[{"string":"장거리 사격"}],"trade":{"ids":{"explicit":["explicit.stat_2483362276"]}}} +{"ref":"Fire Resistance cannot be Penetrated","better":1,"matchers":[{"string":"화염 저항이 관통되지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_1138860262"],"fractured":["fractured.stat_1138860262"]}}} +{"ref":"Fire Resistance is #%","better":1,"matchers":[{"string":"Fire Resistance is #%"}],"trade":{"ids":{"explicit":["explicit.stat_763311546"]}}} +{"ref":"Fire Skills have #% chance to Poison on Hit","better":1,"matchers":[{"string":"화염 스킬 명중 시 #%의 확률로 중독 유발"}],"trade":{"ids":{"explicit":["explicit.stat_2424717327"]}}} +{"ref":"Fireball Always Ignites","better":1,"matchers":[{"string":"화염구의 점화 확률 #%"},{"string":"화염구가 항상 점화 유발","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2098790581"]}}} +{"ref":"Fish Rot upon being Caught","better":1,"matchers":[{"string":"물고기 포획 시 부패"}],"trade":{"ids":{"scourge":["scourge.stat_261024552"]}}} +{"ref":"Flame Dash has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"화염 질주의 재사용 대기시간 회복 속도 #% 증가"},{"string":"화염 질주의 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1440798870"]}}} +{"ref":"Flame Golems have #% increased Damage","better":1,"matchers":[{"string":"화염 골렘이 주는 피해 #% 증가"},{"string":"화염 골렘이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1575282859"]}}} +{"ref":"Flame Wall deals #% increased Damage","better":1,"matchers":[{"string":"화염 벽이 주는 피해 #% 증가"},{"string":"화염 벽이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2189364976"]}}} +{"ref":"Flame Wall grants # to # Added Fire Damage to Projectiles","better":1,"matchers":[{"string":"화염 벽이 투사체에 #~#의 화염 피해 추가"}],"trade":{"ids":{"enchant":["enchant.stat_3881327877"]}}} +{"ref":"Flamethrower Trap deals #% increased Damage","better":1,"matchers":[{"string":"화염방사기 덫이 주는 피해 #% 증가"},{"string":"화염방사기 덫이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4162139595"]}}} +{"ref":"Flamethrower Trap has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"화염방사기 덫 재사용 대기시간 회복 속도 #% 증가"},{"string":"화염방사기 덫 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2962501808"]}}} +{"ref":"Flamethrower Trap has #% increased Skill Effect Duration","better":1,"matchers":[{"string":"화염방사기 덫의 스킬 효과 지속시간 #% 증가"},{"string":"화염방사기 덫의 스킬 효과 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_525771896"]}}} +{"ref":"Flamethrower Trap has an additional Flame","better":1,"matchers":[{"string":"화염방사기 덫에 화염 #개 추가"},{"string":"화염방사기 덫에 화염 추가","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1452255482"]}}} +{"ref":"Flammability has no Reservation if Cast as an Aura","better":1,"matchers":[{"string":"인화성이 오라의 형태로 시전되는 경우 점유 없음"}],"trade":{"ids":{"explicit":["explicit.stat_1195140808"]}}} +{"ref":"Flasks applied to you have #% increased Effect","better":1,"matchers":[{"string":"자신에게 적용된 플라스크의 효과 #% 증가"},{"string":"자신에게 적용된 플라스크의 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_114734841"],"implicit":["implicit.stat_114734841"],"fractured":["fractured.stat_114734841"],"crafted":["crafted.stat_114734841"]}}} +{"ref":"Flasks applied to you have #% increased Effect per Level","better":1,"matchers":[{"string":"1레벨당 자신에게 적용된 플라스크의 효과 #% 증가"},{"string":"1레벨당 자신에게 적용된 플라스크의 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3867344930"]}}} +{"ref":"Flasks do not apply to you","better":1,"matchers":[{"string":"플라스크가 자신에게 적용되지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_3003321700"],"fractured":["fractured.stat_3003321700"]}}} +{"ref":"Flasks gain # Charge per second if you've Hit a Unique Enemy Recently","better":1,"matchers":[{"string":"최근 4초 이내 고유 적 명중 시 1초마다 플라스크 # 충전"}],"trade":{"ids":{"explicit":["explicit.stat_3599443205"]}}} +{"ref":"Flasks gain # Charges every 3 seconds","better":1,"matchers":[{"string":"3초마다 플라스크 # 충전"},{"string":"3초마다 플라스크 1 충전","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1193283913"],"implicit":["implicit.stat_1193283913"]}}} +{"ref":"Flasks gain # Charges every 3 seconds while they are inactive","better":1,"matchers":[{"string":"플라스크가 비활성화된 동안 3초마다 플라스크 # 충전"}],"trade":{"ids":{"explicit":["explicit.stat_3168399315"]}}} +{"ref":"Flasks gain # Charges when you hit a Non-Unique Enemy, no more than once per second","better":1,"matchers":[{"string":"비-고유 적 명중 시 생명력 플라스크 # 충전, 1초마다 최대 1번 충전"}],"trade":{"ids":{"explicit":["explicit.stat_196260576"]}}} +{"ref":"Flasks you Use apply to your Raised Zombies and Spectres","better":1,"matchers":[{"string":"사용하는 플라스크가 자신이 소환한 좀비 및 망령에 적용"}],"trade":{"ids":{"explicit":["explicit.stat_3127641775"]}}} +{"ref":"Flesh and Stone has #% increased Area of Effect","better":1,"matchers":[{"string":"육체와 돌의 효과 범위 #% 증가"},{"string":"육체와 돌의 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_789978501"]}}} +{"ref":"Flesh and Stone has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"육체와 돌의 마나 점유 효율 #% 증가"},{"string":"육체와 돌의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1740848995","enchant.stat_3563089138"]}}} +{"ref":"Flesh and Stone has no Reservation","better":1,"matchers":[{"string":"육체와 돌로 인한 점유 없음"}],"trade":{"ids":{"explicit":["explicit.stat_2060601355"]}}} +{"ref":"Flesh Offering grants an additional #% increased Attack Speed","better":1,"matchers":[{"string":"살점 공물의 공격 속도 #% 추가 증가"},{"string":"살점 공물의 공격 속도 #% 추가 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_513715594"]}}} +{"ref":"Flesh Offering has #% increased Effect","better":1,"matchers":[{"string":"살점 공물의 효과 #% 증가"},{"string":"살점 공물의 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3456379680"]}}} +{"ref":"Flicker Strike has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"점멸 타격의 재사용 대기시간 회복 속도 #% 증가"},{"string":"점멸 타격의 점멸 타격 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1398394628"]}}} +{"ref":"Focus has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"집중의 재사용 대기시간 회복 속도 #% 증가"},{"string":"집중의 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3610263531"],"fractured":["fractured.stat_3610263531"],"crafted":["crafted.stat_3610263531"]}}} +{"ref":"For each nearby corpse, #% increased Movement Speed","better":1,"matchers":[{"string":"주변의 시신 하나당 이동 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_504462346"]}}} +{"ref":"For each nearby corpse, Regenerate # Life per second","dp":true,"better":1,"matchers":[{"string":"주변의 시신 하나당 1초마다 생명력 # 재생"}],"trade":{"ids":{"explicit":["explicit.stat_2500585555"]}}} +{"ref":"For each nearby corpse, Regenerate #% Life per second, up to 3%","dp":true,"better":1,"matchers":[{"string":"주변의 시신 하나당, 1초마다 생명력 #% 재생, 최대 3%"}],"trade":{"ids":{"explicit":["explicit.stat_3845048660"]}}} +{"ref":"Forbidden Rite fires an additional Projectile","better":1,"matchers":[{"string":"금단의 의식이 투사체 #개 추가 발사"},{"string":"금단의 의식이 투사체 1개 추가 발사","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3047407995"]}}} +{"ref":"Found Items have #% chance to drop Corrupted in Area","better":1,"fromAreaMods":true,"matchers":[{"string":"지역에서 발견하는 아이템이 #% 확률로 타락"}],"trade":{"ids":{"explicit":["explicit.stat_728267040"],"fractured":["fractured.stat_728267040"],"enchant":["enchant.stat_728267040"]}}} +{"ref":"Found Magic Items drop Identified","better":1,"matchers":[{"string":"발견하는 마법 아이템이 식별된 상태로 떨어짐"}],"trade":{"ids":{"explicit":["explicit.stat_3020069394"]}}} +{"ref":"Freeze Chilled Enemies as though dealing #% more Damage","better":1,"matchers":[{"string":"#% 증폭된 피해를 준 것처럼 냉각된 적 동결"},{"string":"#% 감폭된 피해를 준 것처럼 냉각된 적 동결","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4272678430"]}}} +{"ref":"Freeze Enemies as though dealing #% more Damage","better":1,"matchers":[{"string":"#% 증폭된 피해를 준 것처럼 적을 동결"}],"trade":{"ids":{"explicit":["explicit.stat_1302208736"]}}} +{"ref":"Freezes you inflict spread to other Enemies within # metre","better":1,"matchers":[{"string":"플레이어가 유발한 동결이 #미터 내의 다른 적에게 확산"}],"trade":{"ids":{"explicit":["explicit.stat_3865389316"],"implicit":["implicit.stat_1623640288"]}}} +{"ref":"Frost Bomb has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"서리 폭탄의 재사용 대기시간 회복 속도 #% 증가"},{"string":"서리 폭탄의 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3524326896"]}}} +{"ref":"Frost Bomb has #% increased Debuff Duration","better":1,"matchers":[{"string":"서리 폭탄 디버프 지속시간 #% 증가"},{"string":"서리 폭탄 디버프 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2109176627"]}}} +{"ref":"Frost Shield has +# Cooldown Use","better":1,"matchers":[{"string":"서리 방패의 재사용 횟수 #회"}],"trade":{"ids":{"enchant":["enchant.stat_915160899"]}}} +{"ref":"Frost Shield has +# to maximum Life per Stage","better":1,"matchers":[{"string":"단계 하나당 서리 방패가 최대 생명력 # 보유"}],"trade":{"ids":{"enchant":["enchant.stat_2511493969"]}}} +{"ref":"Frost Wall has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"서리 방벽의 재사용 대기시간 회복 속도 #% 증가"},{"string":"서리 방벽의 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2479762395"]}}} +{"ref":"Frostbite has no Reservation if Cast as an Aura","better":1,"matchers":[{"string":"동상이 오라의 형태로 시전되는 경우 점유 없음"}],"trade":{"ids":{"explicit":["explicit.stat_3062707366"]}}} +{"ref":"Frostblink has #% increased Duration","better":1,"matchers":[{"string":"서리점멸 지속시간 #% 증가"},{"string":"서리점멸 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3941271999"]}}} +{"ref":"Frostblink has #% increased maximum travel distance","better":1,"matchers":[{"string":"서리점멸의 최대 이동 거리 #% 증가"},{"string":"서리점멸의 최대 이동 거리 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3070497632"]}}} +{"ref":"Frostblink has #% reduced Cooldown Recovery Rate","better":-1,"matchers":[{"string":"서리점멸의 재사용 대기시간 회복 속도 #% 증가"},{"string":"서리점멸의 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_815588902"]},"inverted":true}} +{"ref":"Frostbolt has +#% chance to Freeze","better":1,"matchers":[{"string":"서리 구체의 동결 확률 #%"},{"string":"서리 구체가 항상 동결 유발","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2774873427"]}}} +{"ref":"Frozen Legion has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"얼어붙은 군단의 재사용 대기시간 회복 속도 #% 증가"},{"string":"얼어붙은 군단의 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3809563078"]}}} +{"ref":"Frozen Legion has +# Cooldown Use","better":1,"matchers":[{"string":"얼어붙은 군단의 재사용 횟수 #회"}],"trade":{"ids":{"enchant":["enchant.stat_2876793597"]}}} +{"ref":"Frozen Sweep deals #% increased Damage","better":1,"matchers":[{"string":"얼어붙은 휩쓸기로 주는 피해 #% 증가"},{"string":"얼어붙은 휩쓸기로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1048825825"]}}} +{"ref":"Gain # Armour per Grand Spectrum","better":1,"matchers":[{"string":"장대한 파장(Grand Spectrum) 하나당 방어도 # 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1166487805"]}}} +{"ref":"Gain # Aureus Coins at the start of the Sanctum","better":1,"matchers":[{"string":"성역 시작 시 아우레우스 코인 #개 획득"}],"trade":{"ids":{"explicit":["sanctum.stat_2393318075"]}}} +{"ref":"Gain # Aureus Coins when you complete a Room","better":1,"matchers":[{"string":"방 완료 시 아우레우스 코인 #개 획득"}],"trade":{"ids":{"explicit":["sanctum.stat_4057192895"]}}} +{"ref":"Gain # Charge when you are Hit by an Enemy","better":1,"matchers":[{"string":"적에게 피격 시 충전 # 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1582728645"],"fractured":["fractured.stat_1582728645"]}}} +{"ref":"Gain # Endurance Charge every second if you've been Hit Recently","better":1,"matchers":[{"string":"최근 4초 이내 피격된 경우 1초마다 인내 충전 #개 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2894476716"],"implicit":["implicit.stat_2894476716"],"fractured":["fractured.stat_2894476716"]}}} +{"ref":"Gain # Endurance Charge on use","better":1,"matchers":[{"string":"사용 시 인내 충전 #개 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3986030307"]}}} +{"ref":"Gain # Energy Shield for each Enemy you Hit which is affected by a Spider's Web","better":1,"matchers":[{"string":"거미줄의 영향을 받는 적을 명중할 때마다 에너지 보호막 # 획득"}],"trade":{"ids":{"explicit":["explicit.stat_549215295"]}}} +{"ref":"Gain # Energy Shield on Kill per Level","better":1,"matchers":[{"string":"처치 시 1레벨당 에너지 보호막 #"}],"trade":{"ids":{"explicit":["explicit.stat_294153754"]}}} +{"ref":"Gain # Energy Shield per Enemy Hit while affected by Discipline","better":1,"matchers":[{"string":"단련의 영향을 받는 동안 명중한 적 하나당 에너지 보호막 # 획득"},{"string":"단련의 영향을 받는 동안 명중한 적 하나당 에너지 보호막 # 상실","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3765507527"]}}} +{"ref":"Gain # Energy Shield per Enemy Hit with Attacks","better":1,"matchers":[{"string":"공격으로 명중한 적 하나당 에너지 보호막 # 획득"},{"string":"공격으로 명중한 적 하나당 에너지 보호막 # 상실","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_211381198"],"implicit":["implicit.stat_211381198"],"fractured":["fractured.stat_211381198"]}}} +{"ref":"Gain # Energy Shield per Enemy Killed","better":1,"matchers":[{"string":"처치한 적 하나당 에너지 보호막 # 상실"},{"string":"처치한 적 하나당 에너지 보호막 # 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2528955616"]}}} +{"ref":"Gain # Energy Shield when you Block","better":1,"matchers":[{"string":"막아낼 시 에너지 보호막 # 획득"},{"string":"막아낼 시 에너지 보호막 # 상실","negate":true}],"trade":{"ids":{"scourge":["scourge.stat_450695450"]}}} +{"ref":"Gain # Fragile Regrowth each second","better":1,"matchers":[{"string":"1초마다 불안정한 재성장 # 획득"},{"string":"1초마다 불안정한 재성장 # 상실","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3841984913"],"fractured":["fractured.stat_3841984913"]}}} +{"ref":"Gain # Frenzy Charge on use","better":1,"matchers":[{"string":"사용 시 격분 충전 #개 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3230795453"]}}} +{"ref":"Gain # Inspiration at the start of each Floor","better":1,"matchers":[{"string":"각 층 시작 시 영감 # 획득"}],"trade":{"ids":{"explicit":["sanctum.stat_2942028778"]}}} +{"ref":"Gain # Inspiration at the start of the Sanctum","better":1,"matchers":[{"string":"성역 시작 시 영감 # 획득"}],"trade":{"ids":{"explicit":["sanctum.stat_3102760194"]}}} +{"ref":"Gain # Inspiration when you receive an Affliction","better":1,"matchers":[{"string":"고난 획득 시 영감 # 획득"}],"trade":{"ids":{"explicit":["sanctum.stat_1518851624"]}}} +{"ref":"Gain # Life for each Ignited Enemy hit with Attacks","better":1,"matchers":[{"string":"공격으로 명중한 점화된 적 하나당 생명력 # 획득"},{"string":"공격으로 명중한 점화된 적 하나당 생명력 # 상실","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_120895749"],"fractured":["fractured.stat_120895749"]}}} +{"ref":"Gain # Life on Culling Strike","better":1,"matchers":[{"string":"마무리 타격 시 생명력 # 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2381677442"]}}} +{"ref":"Gain # Life on Kill per Level","better":1,"matchers":[{"string":"처치 시 1레벨당 생명력 #"}],"trade":{"ids":{"explicit":["explicit.stat_4228691877"]}}} +{"ref":"Gain # Life per Bleeding Enemy Hit","better":1,"matchers":[{"string":"명중한 출혈 중인 적 하나당 생명력 # 상실"},{"string":"명중한 출혈 중인 적 하나당 생명력 # 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3148570142"]}}} +{"ref":"Gain # Life per Blinded Enemy Hit with this Weapon","better":1,"matchers":[{"string":"이 무기로 명중한 실명 상태의 적 하나당 생명력 # 획득"},{"string":"이 무기로 명중한 실명 상태의 적 하나당 생명력 # 상실","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1649099067"],"fractured":["fractured.stat_1649099067"]}}} +{"ref":"Gain # Life per Cursed Enemy Hit with Attacks","better":1,"matchers":[{"string":"공격으로 명중한 저주받은 적 하나당 생명력 # 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3072303874"]}}} +{"ref":"Gain # Life per Enemy Hit if you have used a Vaal Skill Recently","better":1,"matchers":[{"string":"최근 4초 이내 바알 스킬을 사용한 경우 명중한 적 하나당 생명력 # 획득"},{"string":"최근 4초 이내 바알 스킬을 사용한 경우 명중한 적 하나당 생명력 # 상실","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3285021988"]}}} +{"ref":"Gain # Life per Enemy Hit while affected by Vitality","better":1,"matchers":[{"string":"활력의 영향을 받는 동안 명중한 적 하나당 생명력 # 획득"},{"string":"활력의 영향을 받는 동안 명중한 적 하나당 생명력 # 상실","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4259701244"]}}} +{"ref":"Gain # Life per Enemy Hit with Attacks","better":1,"matchers":[{"string":"공격으로 명중한 적 하나당 생명력 # 획득"},{"string":"공격으로 명중한 적 하나당 생명력 # 상실","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2797971005"],"implicit":["implicit.stat_2797971005"],"fractured":["fractured.stat_2797971005"],"scourge":["scourge.stat_2797971005"],"crafted":["crafted.stat_2797971005"]}}} +{"ref":"Gain # Life per Enemy Hit with Melee Weapons","better":1,"matchers":[{"string":"근접 무기로 명중한 적 하나당 생명력 # 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3497810785"]}}} +{"ref":"Gain # Life per Enemy Hit with Spells","better":1,"matchers":[{"string":"주문으로 명중한 적 하나당 생명력 # 획득"},{"string":"주문으로 명중한 적 하나당 생명력 # 상실","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2018035324"],"fractured":["fractured.stat_2018035324"]}}} +{"ref":"Gain # Life per Enemy Killed","better":1,"matchers":[{"string":"처치한 적 하나당 생명력 # 획득"},{"string":"처치한 적 하나당 생명력 # 상실","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3695891184"],"implicit":["implicit.stat_3695891184"],"fractured":["fractured.stat_3695891184"]}}} +{"ref":"Gain # Life per Enemy Killed with Melee Weapons","better":1,"matchers":[{"string":"근접 무기로 처치한 적 하나당 생명력 # 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2507321875"]}}} +{"ref":"Gain # Life per Ignited Enemy Killed","better":1,"matchers":[{"string":"처치한 점화된 적 하나당 생명력 # 획득"},{"string":"처치한 점화된 적 하나당 생명력 # 상실","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_893903361"]}}} +{"ref":"Gain # Life when you lose an Endurance Charge","better":1,"matchers":[{"string":"인내 충전 상실 시 생명력 # 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3915702459"]}}} +{"ref":"Gain # Life when you Stun an Enemy","better":1,"matchers":[{"string":"적 기절 시 생명력 # 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2968301430"]}}} +{"ref":"Gain # Mana on Culling Strike","better":1,"matchers":[{"string":"마무리 타격 시 마나 # 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2845511711"]}}} +{"ref":"Gain # Mana on Kill per Level","better":1,"matchers":[{"string":"처치 시 1레벨당 마나 #"}],"trade":{"ids":{"explicit":["explicit.stat_1064067689"]}}} +{"ref":"Gain # Mana per Cursed Enemy Hit with Attacks","better":1,"matchers":[{"string":"공격으로 명중한 저주받은 적 하나당 마나 # 획득"},{"string":"공격으로 명중한 저주받은 적 하나당 마나 # 상실","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2087996552"]}}} +{"ref":"Gain # Mana per Enemy Hit with Attacks","better":1,"matchers":[{"string":"공격으로 명중한 적 하나당 마나 # 획득"},{"string":"공격으로 명중한 적 하나당 마나 # 상실","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_820939409"],"implicit":["implicit.stat_820939409"],"fractured":["fractured.stat_820939409"],"scourge":["scourge.stat_820939409"]}}} +{"ref":"Gain # Mana per Enemy Hit with Melee Weapons","better":1,"matchers":[{"string":"근접 무기로 명중한 적 하나당 마나 # 획득"}],"trade":{"ids":{"explicit":["explicit.stat_766380077"]}}} +{"ref":"Gain # Mana per Enemy Hit with Spells","better":1,"matchers":[{"string":"주문으로 명중한 적 하나당 마나 # 획득"},{"string":"주문으로 명중한 적 하나당 마나 # 상실","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2474196346"],"fractured":["fractured.stat_2474196346"]}}} +{"ref":"Gain # Mana per Enemy Killed","better":1,"matchers":[{"string":"처치한 적 하나당 마나 # 획득"},{"string":"처치한 적 하나당 마나 # 상실","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1368271171"],"implicit":["implicit.stat_1368271171"],"fractured":["fractured.stat_1368271171"]}}} +{"ref":"Gain # Mana per Enemy Killed with Melee Weapons","better":1,"matchers":[{"string":"근접 무기로 처치한 적 하나당 마나 # 획득"},{"string":"근접 무기로 처치한 적 하나당 마나 # 상실","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2230910022"]}}} +{"ref":"Gain # Mana per Grand Spectrum","better":1,"matchers":[{"string":"장대한 파장(Grand Spectrum) 하나당 마나 # 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2592799343"]}}} +{"ref":"Gain # Mana per Taunted Enemy Hit","better":1,"matchers":[{"string":"명중한 도발된 적 하나당 마나 # 획득"},{"string":"명중한 도발된 적 하나당 마나 # 상실","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1834588299"]}}} +{"ref":"Gain # Maximum Resolve when you kill a Boss","better":1,"matchers":[{"string":"보스 처치 시 투지 최대치 # 획득"}],"trade":{"ids":{"explicit":["sanctum.stat_3817232752"]}}} +{"ref":"Gain # Maximum Resolve when you use a Fountain","better":1,"matchers":[{"string":"분수 사용 시 투지 최대치 # 획득"}],"trade":{"ids":{"explicit":["sanctum.stat_3722564733"]}}} +{"ref":"Gain # Power Charge on use","better":1,"matchers":[{"string":"사용 시 권능 충전 #개 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2697049014"]}}} +{"ref":"Gain # Power Charges when you Warcry","better":1,"matchers":[{"string":"함성 시 권능 충전 # 획득"}],"trade":{"ids":{"explicit":["explicit.stat_4118945608"]}}} +{"ref":"Gain # Rage after Spending a total of 200 Mana","better":1,"matchers":[{"string":"총 200마나 소모 시 격노 # 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3199910734"]}}} +{"ref":"Gain # Rage on Attack Hit","better":1,"matchers":[{"string":"공격 명중 시 격노 # 획득"}],"trade":{"ids":{"implicit":["implicit.stat_2676601655"]}}} +{"ref":"Gain # Rage on Melee Hit","better":1,"matchers":[{"string":"근접 명중 시 격노 # 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2709367754"],"implicit":["implicit.stat_2709367754"],"enchant":["enchant.stat_2709367754"]}}} +{"ref":"Gain # Rage on Melee Weapon Hit","better":1,"matchers":[{"string":"근접 무기 명중 시 격노 # 획득"}],"trade":{"ids":{"implicit":["implicit.stat_2012294704"]}}} +{"ref":"Gain # Resolve when you kill a Boss","better":1,"matchers":[{"string":"보스 처치 시 투지 # 획득"}],"trade":{"ids":{"explicit":["sanctum.stat_889527415"]}}} +{"ref":"Gain # Resolve when you use a Fountain","better":1,"matchers":[{"string":"분수 사용 시 투지 # 획득"}],"trade":{"ids":{"explicit":["sanctum.stat_2607697594"]}}} +{"ref":"Gain #% increased Area of Effect for 2 seconds after Spending a total of 800 Mana","better":1,"matchers":[{"string":"총 800마나 소모 시 2초 동안 효과 범위 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3591816140"]}}} +{"ref":"Gain #% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy","better":1,"matchers":[{"string":"희귀 또는 고유 적 처치 시 20초 동안 공격 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3243270997"]}}} +{"ref":"Gain #% of Cold Damage as Extra Chaos Damage","better":1,"matchers":[{"string":"냉기 피해의 #%를 추가 카오스 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2915373966"],"implicit":["implicit.stat_2915373966"],"fractured":["fractured.stat_2915373966"],"crafted":["crafted.stat_2915373966"]}}} +{"ref":"Gain #% of Cold Damage as Extra Chaos Damage per Frenzy Charge","better":1,"matchers":[{"string":"격분 충전 하나당 냉기 피해의 #%를 추가 카오스 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3916799917"]}}} +{"ref":"Gain #% of Cold Damage as Extra Fire Damage against Frozen Enemies","better":1,"matchers":[{"string":"동결된 적을 상대할 때 냉기 피해의 #%를 추가 화염 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1383929411"]}}} +{"ref":"Gain #% of Cold Damage as Extra Fire Damage per 1% Chill Effect on Enemy","better":1,"matchers":[{"string":"적에게 적용된 냉각 효과 1%당 냉기 피해의 #%를 추가 화염 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3086896309"]}}} +{"ref":"Gain #% of Elemental Damage as Extra Chaos Damage","better":1,"matchers":[{"string":"원소 피해의 #%를 추가 카오스 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3495544060"],"fractured":["fractured.stat_3495544060"]}}} +{"ref":"Gain #% of Elemental Damage as Extra Chaos Damage during effect","better":1,"matchers":[{"string":"플라스크 효과를 받는 동안 원소 피해의 #%를 추가 카오스 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3562241510"]}}} +{"ref":"Gain #% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped","better":1,"matchers":[{"string":"장착한 쉐이퍼 아이템 하나당 원소 피해의 #%를 추가 카오스 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_33348259"]}}} +{"ref":"Gain #% of Fire Damage as Extra Chaos Damage","better":1,"matchers":[{"string":"화염 피해의 #%를 추가 카오스 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1599775597"],"implicit":["implicit.stat_1599775597"],"fractured":["fractured.stat_1599775597"],"crafted":["crafted.stat_1599775597"]}}} +{"ref":"Gain #% of Fire Damage as Extra Chaos Damage per Endurance Charge","better":1,"matchers":[{"string":"인내 충전 하나당 화염 피해의 #%를 추가 카오스 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1109745356"]}}} +{"ref":"Gain #% of Lightning Damage as Extra Chaos Damage","better":1,"matchers":[{"string":"번개 피해의 #%를 추가 카오스 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2402136583"],"implicit":["implicit.stat_2402136583"],"fractured":["fractured.stat_2402136583"],"crafted":["crafted.stat_2402136583"]}}} +{"ref":"Gain #% of Lightning Damage as Extra Chaos Damage per Power Charge","better":1,"matchers":[{"string":"권능 충전 하나당 번개 피해의 #%를 추가 카오스 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3115319277"]}}} +{"ref":"Gain #% of Lightning Damage as Extra Cold Damage per 2% Shock Effect on Enemy","better":1,"matchers":[{"string":"적에게 유발된 감전 효과 2%당 번개 피해의 #%를 추가 냉기 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_13172430"]}}} +{"ref":"Gain #% of Maximum Life as Extra Maximum Energy Shield","better":1,"matchers":[{"string":"최대 생명력의 #%를 추가 에너지 보호막 최대치로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_67280387"],"implicit":["implicit.stat_67280387"],"fractured":["fractured.stat_67280387"],"crafted":["crafted.stat_67280387"]}}} +{"ref":"Gain #% of Maximum Mana as Extra Maximum Energy Shield","better":1,"matchers":[{"string":"최대 마나의 #%를 추가 에너지 보호막 최대치로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2663376056"],"scourge":["scourge.stat_2663376056"]}}} +{"ref":"Gain #% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity","better":1,"matchers":[{"string":"명상의 영향을 받는 동안 최대 마나의 #%를 에너지 보호막 최대치로 추가 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2831391506"]}}} +{"ref":"Gain #% of Missing Unreserved Life before being Hit by an Enemy","better":1,"matchers":[{"string":"적에게 피격되기 전, 상실한 점유되지 않은 생명력의 #% 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1383676476"]}}} +{"ref":"Gain #% of Non-Chaos Damage as extra Chaos Damage","better":1,"matchers":[{"string":"비-카오스 피해의 #%를 추가 카오스 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2063695047"],"fractured":["fractured.stat_2063695047"],"crafted":["crafted.stat_2063695047"]}}} +{"ref":"Gain #% of Non-Chaos Damage as extra Chaos Damage per Siphoning Charge","better":1,"matchers":[{"string":"착취 충전 하나당 비-카오스 피해의 #%를 추가 카오스 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3296019532"]}}} +{"ref":"Gain #% of Physical Attack Damage as Extra Fire Damage","better":1,"matchers":[{"string":"물리 공격 피해의 #%를 추가 화염 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_273476097"]}}} +{"ref":"Gain #% of Physical Attack Damage as Extra Lightning Damage","better":1,"matchers":[{"string":"물리 공격 피해의 #%를 추가 번개 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1096897481"]}}} +{"ref":"Gain #% of Physical Damage as a Random Element if you've cast Elemental Weakness in the past 10 seconds","better":1,"matchers":[{"string":"최근 10초 이내 원소 약화를 시전한 경우 물리 피해의 #%를 무작위 원소 피해로 추가"}],"trade":{"ids":{"explicit":["explicit.stat_4281949537"]}}} +{"ref":"Gain #% of Physical Damage as Extra Chaos Damage","better":1,"matchers":[{"string":"물리 피해의 #%를 추가 카오스 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3319896421"],"implicit":["implicit.stat_3319896421"],"fractured":["fractured.stat_3319896421"],"crafted":["crafted.stat_3319896421"]}}} +{"ref":"Gain #% of Physical Damage as Extra Chaos Damage during effect","better":1,"matchers":[{"string":"플라스크 효과를 받는 동안 물리 피해의 #%를 추가 카오스 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2818167778"]}}} +{"ref":"Gain #% of Physical Damage as Extra Chaos Damage per Elder Item Equipped","better":1,"matchers":[{"string":"장착한 엘더 아이템 하나당 물리 피해의 #%를 추가 카오스 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1423002070"]}}} +{"ref":"Gain #% of Physical Damage as Extra Chaos Damage while at maximum Power Charges","better":1,"matchers":[{"string":"최대 권능 충전 상태에서 물리 피해의 #%를 추가 카오스 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3492297134"]}}} +{"ref":"Gain #% of Physical Damage as Extra Cold Damage","better":1,"matchers":[{"string":"물리 피해의 #%를 추가 냉기 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_979246511"],"implicit":["implicit.stat_979246511"],"fractured":["fractured.stat_979246511"]}}} +{"ref":"Gain #% of Physical Damage as Extra Cold Damage during effect","better":1,"matchers":[{"string":"플라스크 효과를 받는 동안 물리 피해의 #%를 추가 냉기 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2661163721"]}}} +{"ref":"Gain #% of Physical Damage as Extra Damage of a random Element","better":1,"matchers":[{"string":"물리 피해의 #%를 무작위 원소 피해로 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3753703249"],"implicit":["implicit.stat_3753703249"],"fractured":["fractured.stat_3753703249"]}}} +{"ref":"Gain #% of Physical Damage as Extra Damage of a random Element while you are Ignited","better":1,"matchers":[{"string":"점화 상태일 때 물리 피해의 #%를 무작위 원소 피해로 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3595519743"]}}} +{"ref":"Gain #% of Physical Damage as Extra Damage of each Element per Spirit Charge","better":1,"matchers":[{"string":"혼백 충전 하나당 물리 피해의 #%를 각 원소의 추가 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_4288824781"]}}} +{"ref":"Gain #% of Physical Damage as Extra Fire Damage","better":1,"matchers":[{"string":"물리 피해의 #%를 추가 화염 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_369494213"],"implicit":["implicit.stat_369494213"],"fractured":["fractured.stat_369494213"]}}} +{"ref":"Gain #% of Physical Damage as Extra Fire Damage if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"최근 4초 이내 치명타 명중 시 물리 피해의 #%를 추가 화염 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2810434465"],"fractured":["fractured.stat_2810434465"]}}} +{"ref":"Gain #% of Physical Damage as Extra Fire Damage while affected by Anger","better":1,"matchers":[{"string":"분노의 영향을 받는 동안 물리 피해의 #%를 추가 화염 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_4245204226"]}}} +{"ref":"Gain #% of Physical Damage as Extra Lightning Damage","better":1,"matchers":[{"string":"물리 피해의 #%를 추가 번개 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_219391121"],"implicit":["implicit.stat_219391121"],"fractured":["fractured.stat_219391121"]}}} +{"ref":"Gain #% of Physical Damage as Extra Lightning Damage while affected by Wrath","better":1,"matchers":[{"string":"진노의 영향을 받는 동안 물리 피해의 #%를 추가 번개 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2255914633"]}}} +{"ref":"Gain #% of Sword Physical Damage as Extra Fire Damage","better":1,"matchers":[{"string":"검 물리 피해의 #%를 추가 화염 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_754005431"]}}} +{"ref":"Gain #% of Weapon Physical Damage as Extra Damage of a random Element","better":1,"matchers":[{"string":"무기 물리 피해의 #%를 무작위 원소 피해로 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1038949719"]}}} +{"ref":"Gain #% of Weapon Physical Damage as Extra Damage of each Element","better":1,"matchers":[{"string":"무기 물리 피해의 #%를 각 원소의 추가 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3913265126"],"enchant":["enchant.stat_3913265126"]}}} +{"ref":"Gain +# Life when you Taunt an Enemy","better":1,"matchers":[{"string":"적 도발 시 생명력 # 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3726536628"]}}} +{"ref":"Gain +#% to Critical Strike Chance for 2 seconds after Spending a total of 800 Mana","dp":true,"better":1,"matchers":[{"string":"총 800마나 소모 시 2초 동안 치명타 확률 #% 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2864779809"]}}} +{"ref":"Gain 1 Endurance Charge per Second during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 1초당 인내 충전 1개 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3916499001"]}}} +{"ref":"Gain 1 Rage on Critical Strike with Attacks","better":1,"matchers":[{"string":"공격으로 치명타 명중 시 격노 1 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1043982313"]}}} +{"ref":"Gain a Flask Charge when you deal a Critical Strike while affected by Precision","better":1,"matchers":[{"string":"정밀함의 영향을 받는 동안 치명타 명중 시 플라스크 1 충전"}],"trade":{"ids":{"explicit":["explicit.stat_3772841281"]}}} +{"ref":"Gain a Frenzy Charge after Spending a total of 200 Mana","better":1,"matchers":[{"string":"총 200마나 소모 시 격분 충전 # 획득"},{"string":"총 200마나 소모 시 격분 충전 획득","value":1}],"trade":{"ids":{"implicit":["implicit.stat_3868549606"]}}} +{"ref":"Gain a Frenzy Charge each second","better":1,"matchers":[{"string":"1초마다 격분 충전 1개 상실","value":-1},{"string":"1초마다 격분 충전 #개 획득"},{"string":"1초마다 격분 충전 1개 획득","value":1},{"string":"1초마다 격분 충전 #개 상실","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_651232125"]}}} +{"ref":"Gain a Frenzy Charge every # seconds","better":1,"matchers":[{"string":"#초마다 격분 충전 획득"}],"trade":{"ids":{"implicit":["implicit.stat_3906868545"]}}} +{"ref":"Gain a Frenzy Charge if an Attack Ignites an Enemy","better":1,"matchers":[{"string":"공격으로 적 점화 시 격분 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3598983877"]}}} +{"ref":"Gain a Frenzy Charge on every 50th Rampage Kill","better":1,"matchers":[{"string":"광란 처치 50회마다 격분 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_637690626"]}}} +{"ref":"Gain a Frenzy Charge on Hit while Bleeding","better":1,"matchers":[{"string":"출혈 상태에서 명중 시 격분 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2977774856"]}}} +{"ref":"Gain a Frenzy Charge on reaching Maximum Power Charges","better":1,"matchers":[{"string":"최대 권능 충전에 도달 시 격분 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2732344760"]}}} +{"ref":"Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary","better":1,"matchers":[{"string":"정지 상태일 때 1초마다 격분, 인내 또는 권능 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1438403666"]}}} +{"ref":"Gain a Power Charge after Spending a total of 200 Mana","better":1,"matchers":[{"string":"총 200마나 소모 시 권능 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3269060224"],"fractured":["fractured.stat_3269060224"]}}} +{"ref":"Gain a Power Charge each second","better":1,"matchers":[{"string":"1초마다 권능 충전 1개 상실","value":-1},{"string":"1초마다 권능 충전 #개 획득"},{"string":"1초마다 권능 충전 1개 획득","value":1},{"string":"1초마다 권능 충전 #개 상실","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_521054609"]}}} +{"ref":"Gain a Power Charge every # seconds","better":1,"matchers":[{"string":"#초마다 권능 충전 획득"}],"trade":{"ids":{"implicit":["implicit.stat_3533655459"]}}} +{"ref":"Gain a Power Charge every Second if you haven't lost Power Charges Recently","better":1,"matchers":[{"string":"최근 4초 이내 권능 충전을 잃지 않은 경우 1초마다 권능 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1099200124"]}}} +{"ref":"Gain a Power Charge for each Enemy you hit with a Critical Strike","better":1,"matchers":[{"string":"적에게 치명타가 적중할 때마다 권능 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1556625719"]}}} +{"ref":"Gain a Power Charge on Non-Critical Strike","better":1,"matchers":[{"string":"비-치명타 명중 시 권능 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1592029809"]}}} +{"ref":"Gain a Power Charge when you Hit a Frozen Enemy","better":1,"matchers":[{"string":"동결된 적 적중 시 #%의 확률로 권능 충전 획득"},{"string":"동결된 적 적중 시 권능 충전 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3973790753"]}}} +{"ref":"Gain a random shrine buff every 1 second","better":1,"matchers":[{"string":"#초마다 무작위 성소 버프 1개 획득"},{"string":"1초마다 무작위 성소 버프 1개 획득","value":1}],"trade":{"ids":{"enchant":["enchant.stat_2284520710"]}}} +{"ref":"Gain a Spirit Charge every second","better":1,"matchers":[{"string":"#초마다 혼백 충전 획득"},{"string":"1초마다 혼백 충전 획득","value":1}],"trade":{"ids":{"explicit":["explicit.stat_328131617"]}}} +{"ref":"Gain a Void Charge every # seconds","better":1,"matchers":[{"string":"#초마다 공허 충전 획득"},{"string":"1초마다 공허 충전 획득","value":1}],"trade":{"ids":{"explicit":["explicit.stat_34273389"]}}} +{"ref":"Gain Absorption Charges instead of Power Charges","better":1,"matchers":[{"string":"권능 충전 대신 흡수 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1379726309"]}}} +{"ref":"Gain Accuracy Rating equal to your Strength","better":1,"matchers":[{"string":"힘과 동일한 정확도 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1575519214"],"fractured":["fractured.stat_1575519214"]}}} +{"ref":"Gain Added Chaos Damage equal to #% of Ward","better":1,"matchers":[{"string":"수호의 #%와 동일한 카오스 피해 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3535421504"]}}} +{"ref":"Gain additional Elemental Damage Reduction equal to half your Chaos Resistance","better":1,"matchers":[{"string":"카오스 저항의 50%와 동일한 원소 피해 추가 감소 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3990082744"]}}} +{"ref":"Gain Adrenaline for # second on Kill","better":1,"matchers":[{"string":"처치 시 #초 동안 아드레날린 획득"}],"trade":{"ids":{"explicit":["explicit.stat_4145689649"]}}} +{"ref":"Gain Adrenaline for # second when Ward Breaks","better":1,"matchers":[{"string":"수호 파괴 시 #초 동안 아드레날린 획득"}],"trade":{"ids":{"explicit":["explicit.stat_4231915769"]}}} +{"ref":"Gain Adrenaline for # seconds when you reach Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태가 되면#초 동안 아드레날린 획득"}],"trade":{"ids":{"explicit":["explicit.stat_4205704547"]}}} +{"ref":"Gain Adrenaline when you become Flame-Touched","better":1,"matchers":[{"string":"화염의 손길 획득 시 아드레날린 획득"}],"trade":{"ids":{"explicit":["explicit.stat_349619704"]}}} +{"ref":"Gain Affliction Charges instead of Frenzy Charges","better":1,"matchers":[{"string":"격분 충전 대신 수난 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1602173343"]}}} +{"ref":"Gain an Endurance Charge each second","better":1,"matchers":[{"string":"1초마다 인내 충전 1개 상실","value":-1},{"string":"1초마다 인내 충전 #개 획득"},{"string":"1초마다 인내 충전 1개 획득","value":1},{"string":"1초마다 인내 충전 #개 상실","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3778599971"]}}} +{"ref":"Gain an Endurance Charge every # seconds","better":1,"matchers":[{"string":"#초마다 인내 충전 획득"}],"trade":{"ids":{"implicit":["implicit.stat_2555092341"]}}} +{"ref":"Gain an Endurance Charge every 4 seconds while Stationary","better":1,"matchers":[{"string":"정지 상태일 때 4초마다 # 인내 충전 획득"},{"string":"정지 상태일 때 4초마다 인내 충전 획득","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2156210979"],"fractured":["fractured.stat_2156210979"]}}} +{"ref":"Gain an Endurance Charge if an Attack Freezes an Enemy","better":1,"matchers":[{"string":"공격으로 적 동결 시 인내 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_407576170"]}}} +{"ref":"Gain an Endurance Charge when you lose a Power Charge","better":1,"matchers":[{"string":"권능 충전 상실 시 인내 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1791875585"]}}} +{"ref":"Gain an Endurance Charge when you take a Critical Strike","better":1,"matchers":[{"string":"치명타 피격 시 인내 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2609824731"]}}} +{"ref":"Gain an Endurance Charge, Frenzy Charge, and Power Charge when you use a Vaal Skill","better":1,"matchers":[{"string":"바알 스킬 사용 시 인내 충전, 격분 충전 또는 권능 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1258100102"]}}} +{"ref":"Gain an Endurance, Frenzy or Power Charge every 6 seconds","better":1,"matchers":[{"string":"6초마다 인내, 격분 또는 권능 충전 # 획득"},{"string":"6초마다 인내, 격분 또는 권능 충전 획득","value":1}],"trade":{"ids":{"implicit":["implicit.stat_4282426229"]}}} +{"ref":"Gain an Endurance, Frenzy or Power charge when you Block","better":1,"matchers":[{"string":"막아낼 시 인내, 격분 또는 권능 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2199099676"],"fractured":["fractured.stat_2199099676"]}}} +{"ref":"Gain Arcane Surge after Spending a total of # Mana","better":1,"matchers":[{"string":"총 #의 마나 소모 시 비전 쇄도 획득"}],"trade":{"ids":{"explicit":["explicit.stat_913614572"],"fractured":["fractured.stat_913614572"]}}} +{"ref":"Gain Arcane Surge for 4 seconds when you create Consecrated Ground while affected by Zealotry","better":1,"matchers":[{"string":"열광의 영향을 받는 동안 신성화 지대를 생성하면 4초 동안 비전 쇄도 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1919069577"]}}} +{"ref":"Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell","better":1,"matchers":[{"string":"자신 또는 자신의 토템이 주문으로 적 명중 시 비전 쇄도 획득"}],"trade":{"ids":{"explicit":["explicit.stat_4286031492"]}}} +{"ref":"Gain Brutal Charges instead of Endurance Charges","better":1,"matchers":[{"string":"인내 충전 대신 잔인 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2306836071"]}}} +{"ref":"Gain Elusive on reaching Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태 도달 시 도피 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2868692131"]}}} +{"ref":"Gain Flaming, Icy or Crackling Runesurge at random for # second every 10 seconds","better":1,"matchers":[{"string":"10초마다 #초 동안 무작위로 불을 뿜는 룬 쇄도, 얼어붙은 룬 쇄도 또는 치직대는 룬 쇄도 획득"}],"trade":{"ids":{"enchant":["enchant.stat_3581844317"]}}} +{"ref":"Gain Her Embrace for # seconds when you Ignite an Enemy","better":1,"matchers":[{"string":"적 점화 시 #초 동안 여신의 포옹 획득"}],"trade":{"ids":{"explicit":["explicit.stat_608963131"]}}} +{"ref":"Gain Immunity to Physical Damage for # second on Rampage","better":1,"matchers":[{"string":"광란 시 #초 동안 물리 피해 면역 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3100457893"]}}} +{"ref":"Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy","better":1,"matchers":[{"string":"희귀 또는 고유 적 처치 시 10초 동안 광포한 존재 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3442107889"]}}} +{"ref":"Gain Maximum Life instead of Maximum Energy Shield from Equipped Armour Items","better":1,"matchers":[{"string":"장착한 방어구 아이템으로부터 에너지 보호막 최대치 대신 생명력 최대치를 얻음"}],"trade":{"ids":{"explicit":["explicit.stat_3734229311"]}}} +{"ref":"Gain Onslaught for # second per Frenzy Charge consumed on use","better":1,"matchers":[{"string":"사용 시 소모한 격분 충전 하나당 #초 동안 맹공 획득"}],"trade":{"ids":{"explicit":["explicit.stat_661376813"]}}} +{"ref":"Gain Onslaught for # seconds when you Cast Socketed Golem Skill","better":1,"matchers":[{"string":"장착된 골렘 스킬 시전 시 #초 동안 맹공 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1693676706"]}}} +{"ref":"Gain Onslaught for # seconds when you Warcry","better":1,"matchers":[{"string":"함성 시 #초 동안 맹공 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3049436415"]}}} +{"ref":"Gain Rampage while at Maximum Endurance Charges","better":1,"matchers":[{"string":"최대 인내 충전 상태에서 광란 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1643796079"]}}} +{"ref":"Gain Sacrificial Zeal when you use a Skill, dealing you #% of the Skill's Mana Cost as Physical Damage per Second","better":1,"matchers":[{"string":"스킬 사용 시 희생의 열의를 획득하여, 1초마다 스킬의 마나 소모량의 #%를 물리 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_2287328323"]}}} +{"ref":"Gain Shaper's Presence for 10 seconds when you kill a Rare or Unique Enemy","better":1,"matchers":[{"string":"희귀 또는 고유 적 처치 시 10초 동안 쉐이퍼의 존재 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1091613629"]}}} +{"ref":"Gain Soul Eater during any Flask Effect","better":1,"matchers":[{"string":"아무 플라스크나 효과를 받는 동안 영혼 포식자 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3968454273"]}}} +{"ref":"Gain Soul Eater for # seconds when you use a Vaal Skill","better":1,"matchers":[{"string":"바알 스킬 사용 시 #초 동안 영혼 포식자 획득"}],"trade":{"ids":{"explicit":["explicit.stat_161058250"]}}} +{"ref":"Gain Unholy Might for # second on Rampage","better":1,"matchers":[{"string":"광란 시 #초 동안 불경한 힘 획득"}],"trade":{"ids":{"explicit":["explicit.stat_757315075"]}}} +{"ref":"Gain Unholy Might for 4 seconds on Critical Strike","better":1,"matchers":[{"string":"치명타 명중 시 4초 동안 불경한 힘 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2959020308"]}}} +{"ref":"Gain up to maximum Endurance Charges when you take a Critical Strike","better":1,"matchers":[{"string":"치명타 피격 시 #%의 확률로 인내 충전 최대치 획득"},{"string":"치명타 피격 시 인내 충전 최대치 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4080206249"]}}} +{"ref":"Gain up to maximum Fragile Regrowth when Hit","better":1,"matchers":[{"string":"피격 시 불안정한 재성장 최대치 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2796308895"]}}} +{"ref":"Gain up to maximum Power Charges when you use a Vaal Skill","better":1,"matchers":[{"string":"바알 스킬 사용 시 권능 충전 최대치까지 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3558528738"]}}} +{"ref":"Gain up to your maximum number of Frenzy and Endurance Charges when you gain Cat's Agility","better":1,"matchers":[{"string":"고양이의 날렵함 획득 시 격분 및 인내 충전 최대치 획득"}],"trade":{"ids":{"explicit":["explicit.stat_523966073"]}}} +{"ref":"Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth","better":1,"matchers":[{"string":"고양이의 은신 획득 시 격분 및 권능 충전 최대치 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2446580062"]}}} +{"ref":"Gain Vaal Souls equal to Charges Consumed when used","better":1,"matchers":[{"string":"사용 시 소모한 충전 수와 동일한 개수의 바알 영혼 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1655460656"]}}} +{"ref":"Gain Ward instead of #% of Armour and Evasion Rating from Equipped Body Armour","better":1,"matchers":[{"string":"장착 중인 갑옷이 제공하는 방어도 및 회피의 #%를 수호로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_767698281"]}}} +{"ref":"Gains no Charges during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 충전 획득 불가"}],"trade":{"ids":{"enchant":["enchant.stat_4123533923"]}}} +{"ref":"Gains no Charges during Effect of any Overflowing Chalice Flask","better":1,"matchers":[{"string":"넘치는 성배 플라스크 효과를 받는 동안 충전 없음"}],"trade":{"ids":{"explicit":["explicit.stat_3741956733"]}}} +{"ref":"Gains no Charges during Effect of any Soul Ripper Flask","better":1,"matchers":[{"string":"영혼 수확자(Soul Ripper) 플라스크 효과를 받는 동안 충전 없음"}],"trade":{"ids":{"explicit":["explicit.stat_2748763342"]}}} +{"ref":"Galvanic Arrow has #% increased Projectile Speed","better":1,"matchers":[{"string":"충격 화살의 투사체 속도 #% 증가"},{"string":"충격 화살의 투사체 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1698558866"]}}} +{"ref":"Galvanic Field Chains an additional time","better":1,"matchers":[{"string":"충격장이 #회 추가 연쇄"},{"string":"충격장이 1회 추가 연쇄","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3893203185"]}}} +{"ref":"Galvanic Field deals #% increased Damage","better":1,"matchers":[{"string":"충격장으로 주는 피해 #% 증가"},{"string":"충격장으로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3821213705"]}}} +{"ref":"Galvanic Field has #% increased Cast Speed","better":1,"matchers":[{"string":"충격장의 시전 속도 #% 증가"}],"trade":{"ids":{"enchant":["enchant.stat_2364563825"]}}} +{"ref":"Gems can be Socketed in this Item ignoring Socket Colour","better":1,"matchers":[{"string":"젬은 홈 색상을 무시하고 이 아이템에 장착될 수 있음"}],"trade":{"ids":{"explicit":["explicit.stat_899329924"],"fractured":["fractured.stat_899329924"]}}} +{"ref":"Gems Socketed in Blue Sockets gain #% increased Experience","better":1,"matchers":[{"string":"파란 홈에 장착된 젬 경험치 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2236460050"]}}} +{"ref":"Gems Socketed in Green Sockets have +#% to Quality","better":1,"matchers":[{"string":"초록 홈에 장착된 젬 퀄리티 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3799930101"]}}} +{"ref":"Gems Socketed in Red Sockets have +# to Level","better":1,"matchers":[{"string":"빨간 홈에 장착된 젬 레벨 #"}],"trade":{"ids":{"explicit":["explicit.stat_2886998024"]}}} +{"ref":"General's Cry has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"장군의 함성의 재사용 대기시간 회복 속도 #% 증가"}],"trade":{"ids":{"implicit":["implicit.stat_3637727672"],"enchant":["enchant.stat_3637727672"]}}} +{"ref":"General's Cry has +# to maximum number of Mirage Warriors","better":1,"matchers":[{"string":"장군의 함성의 신기루 전사 최대치 #"}],"trade":{"ids":{"enchant":["enchant.stat_2889995769"]}}} +{"ref":"Ghost Dance","better":1,"matchers":[{"string":"혼의 춤"}],"trade":{"ids":{"explicit":["explicit.stat_3590128077"],"fractured":["fractured.stat_3590128077"],"scourge":["scourge.stat_3590128077"]}}} +{"ref":"Ghost Reaver","better":1,"matchers":[{"string":"혼 강탈자"}],"trade":{"ids":{"explicit":["explicit.stat_4272248216"],"fractured":["fractured.stat_4272248216"],"scourge":["scourge.stat_4272248216"]}}} +{"ref":"Glacial Cascade gains #% of Physical Damage as Extra Cold Damage","better":1,"matchers":[{"string":"빙하 폭포가 물리 피해의 #%를 추가 냉기 피해로 획득"}],"trade":{"ids":{"enchant":["enchant.stat_3492427828"]}}} +{"ref":"Glacial Hammer has +#% chance to Freeze","better":1,"matchers":[{"string":"빙하 망치의 동결 확률 #%"},{"string":"빙하 망치가 항상 동결 유발","value":100}],"trade":{"ids":{"enchant":["enchant.stat_288248772"]}}} +{"ref":"Glancing Blows","better":1,"matchers":[{"string":"비껴내기"}],"trade":{"ids":{"explicit":["explicit.stat_4266776872"],"scourge":["scourge.stat_4266776872"]}}} +{"ref":"Glows while in an Area containing a Unique Fish","better":1,"matchers":[{"string":"고유 생선이 있는 지역에 있는 동안 빛남"}],"trade":{"ids":{"explicit":["explicit.stat_931560398"]}}} +{"ref":"Golem Skills have #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"골렘 스킬의 재사용 대기시간 회복 속도 #% 증가"},{"string":"골렘 스킬의 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_729180395"]}}} +{"ref":"Golems Deal #% less Damage","better":-1,"matchers":[{"string":"골렘이 주는 피해 #% 증폭"},{"string":"골렘이 주는 피해 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2861397339"]},"inverted":true}} +{"ref":"Golems have # to # Added Attack Physical Damage","better":1,"matchers":[{"string":"골렘이 주는 공격 물리 피해 #-# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1417394145"]}}} +{"ref":"Golems have #% increased Attack and Cast Speed","better":1,"matchers":[{"string":"골렘의 공격 및 시전 속도 #% 증가"},{"string":"골렘의 공격 및 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_56225773"]}}} +{"ref":"Golems have #% increased Maximum Life","better":1,"matchers":[{"string":"골렘의 최대 생명력 #% 증가"},{"string":"골렘의 최대 생명력 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1750735210"]}}} +{"ref":"Golems have #% increased Movement Speed","better":1,"matchers":[{"string":"골렘의 이동 속도 #% 증가"},{"string":"골렘의 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_186383409"]}}} +{"ref":"Golems have #% less Life","better":-1,"matchers":[{"string":"골렘의 생명력 #% 증폭"},{"string":"골렘의 생명력 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3730242558"]},"inverted":true}} +{"ref":"Golems have +# to Armour","better":1,"matchers":[{"string":"골렘의 방어도 #"}],"trade":{"ids":{"explicit":["explicit.stat_1020786773"]}}} +{"ref":"Golems Summoned in the past 8 seconds deal #% increased Damage","better":1,"matchers":[{"string":"지난 8초 이내에 소환된 골렘이 주는 피해 #% 증가"},{"string":"지난 8초 이내에 소환된 골렘이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2869193493"]}}} +{"ref":"Gore Footprints","better":1,"matchers":[{"string":"선혈의 발자국"}],"trade":{"ids":{"explicit":["explicit.stat_2319448214"]}}} +{"ref":"Grace has #% increased Aura Effect","better":1,"matchers":[{"string":"은총의 오라 효과 #% 증가"},{"string":"은총의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_397427740"]}}} +{"ref":"Grace has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"은총의 마나 점유 효율 #% 증가"},{"string":"은총의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1803598623","explicit.stat_900639351"],"implicit":["implicit.stat_1803598623","implicit.stat_900639351"],"fractured":["fractured.stat_900639351"],"enchant":["enchant.stat_1803598623","enchant.stat_900639351"]}}} +{"ref":"Grace has no Reservation","better":1,"matchers":[{"string":"은총으로 인한 점유 없음"}],"trade":{"ids":{"explicit":["explicit.stat_2930404958"]}}} +{"ref":"Grant a Frenzy Charge to nearby Allies on Kill","better":1,"matchers":[{"string":"처치 시 #%의 확률로 주변 동료들에게 격분 충전 제공"},{"string":"처치 시 주변 동료들에게 격분 충전 제공","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1243641369"]}}} +{"ref":"Grant an Endurance Charge to nearby Allies on Hit","better":1,"matchers":[{"string":"적중 시 #%의 확률로 주변 동료들에게 인내 충전 제공"},{"string":"적중 시 주변 동료들에게 인내 충전 제공","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3174788165"]}}} +{"ref":"Grants # Life and Mana per Enemy Hit","better":1,"matchers":[{"string":"명중한 적 하나당 생명력 및 마나 # 획득"},{"string":"명중한 적 하나당 플레이어의 생명력 및 마나 # 제거","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1420170973"]}}} +{"ref":"Grants # Life per Enemy Hit","better":1,"matchers":[{"string":"명중한 적 하나당 생명력 # 획득"},{"string":"명중한 적 하나당 플레이어의 생명력 # 제거","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_821021828"],"implicit":["implicit.stat_821021828"],"fractured":["fractured.stat_821021828"]}}} +{"ref":"Grants # Mana per Enemy Hit","better":1,"matchers":[{"string":"명중한 적 하나당 마나 # 획득"},{"string":"명중한 적 하나당 플레이어의 마나 # 제거","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_640052854"],"implicit":["implicit.stat_640052854"]}}} +{"ref":"Grants #% increased Accuracy per 2% Quality","better":1,"matchers":[{"string":"퀄리티 2%당 정확도 #% 증가"}],"trade":{"ids":{"enchant":["enchant.stat_2421363283"]}}} +{"ref":"Grants #% increased Area of Effect per 4% Quality","better":1,"matchers":[{"string":"퀄리티 4%당 효과 범위 #% 증가"}],"trade":{"ids":{"enchant":["enchant.stat_334333797"]}}} +{"ref":"Grants #% increased Elemental Damage per 2% Quality","better":1,"matchers":[{"string":"퀄리티 2%당 원소 피해 #% 증가"}],"trade":{"ids":{"enchant":["enchant.stat_1482025771"]}}} +{"ref":"Grants #% of Life Recovery to Minions","better":1,"matchers":[{"string":"소환수의 생명력 회복 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2416869319"],"fractured":["fractured.stat_2416869319"]}}} +{"ref":"Grants +# to Dexterity per 2% Quality","better":1,"matchers":[{"string":"퀄리티 2%당 민첩 #"}],"trade":{"ids":{"enchant":["enchant.stat_452753731"]}}} +{"ref":"Grants +# to Intelligence per 2% Quality","better":1,"matchers":[{"string":"퀄리티 2%당 지능 #"}],"trade":{"ids":{"enchant":["enchant.stat_2748574832"]}}} +{"ref":"Grants +# to Maximum Life per 2% Quality","better":1,"matchers":[{"string":"퀄리티 2%당 최대 생명력 #"}],"trade":{"ids":{"enchant":["enchant.stat_2711867632"]}}} +{"ref":"Grants +# to Maximum Mana per 2% Quality","better":1,"matchers":[{"string":"퀄리티 2%당 최대 마나 #"}],"trade":{"ids":{"enchant":["enchant.stat_3764009282"]}}} +{"ref":"Grants +# to Strength per 2% Quality","better":1,"matchers":[{"string":"퀄리티 2%당 힘 #"}],"trade":{"ids":{"enchant":["enchant.stat_1519019245"]}}} +{"ref":"Grants +#% to Cold Resistance per 2% Quality","better":1,"matchers":[{"string":"퀄리티 2%당 냉기 저항 #%"}],"trade":{"ids":{"enchant":["enchant.stat_1665106429"]}}} +{"ref":"Grants +#% to Fire Resistance per 2% Quality","better":1,"matchers":[{"string":"퀄리티 2%당 화염 저항 #%"}],"trade":{"ids":{"enchant":["enchant.stat_2787227226"]}}} +{"ref":"Grants +#% to Lightning Resistance per 2% Quality","better":1,"matchers":[{"string":"퀄리티 2%당 번개 저항 #%"}],"trade":{"ids":{"enchant":["enchant.stat_2702369635"]}}} +{"ref":"Grants all bonuses of Unallocated Small Passive Skills in Radius","better":1,"matchers":[{"string":"반경 내 할당되지 않은 소형 패시브 스킬에 모든 보너스 적용"}],"trade":{"ids":{"explicit":["explicit.stat_737702863"]}}} +{"ref":"Grants Armour equal to #% of your Reserved Mana to you and nearby Allies","better":1,"matchers":[{"string":"플레이어 및 주변 동료들에게 플레이어가 점유한 마나의 #%와 동일한 방어도 적용"}],"trade":{"ids":{"explicit":["explicit.stat_681709908"]}}} +{"ref":"Grants Call of Steel","better":1,"matchers":[{"string":"강철의 부름 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_3637628300"]}}} +{"ref":"Grants Immunity to Bleeding for # seconds if used while Bleeding\nGrants Immunity to Corrupted Blood for # seconds if used while affected by Corrupted Blood","better":1,"matchers":[{"string":"출혈 상태에서 사용 시 #초 동안 출혈 면역 부여\n타락한 피의 영향을 받는 동안 사용 시 #초 동안 타락한 피 면역 부여"}],"trade":{"ids":{"explicit":["explicit.stat_182714578"],"fractured":["fractured.stat_182714578"]}}} +{"ref":"Grants Immunity to Chill for # seconds if used while Chilled\nGrants Immunity to Freeze for # seconds if used while Frozen","better":1,"matchers":[{"string":"냉각 상태에서 사용 시 #초 동안 냉각 면역 부여\n동결 상태에서 사용 시 #초 동안 동결 면역 부여"}],"trade":{"ids":{"explicit":["explicit.stat_3869628136"],"fractured":["fractured.stat_3869628136"]}}} +{"ref":"Grants Immunity to Chill for 4 seconds if used while Chilled\nGrants Immunity to Freeze for 4 seconds if used while Frozen","better":1,"matchers":[{"string":"냉각 상태에서 사용 시 4초 동안 냉각 면역 부여\n동결 상태에서 사용 시 4초 동안 동결 면역 부여"}],"trade":{"ids":{"explicit":["explicit.stat_3570046771"]}}} +{"ref":"Grants Immunity to Hinder for # seconds if used while Hindered","better":1,"matchers":[{"string":"이동 방해 상태에서 사용 시 #초 동안 이동 방해 면역 부여"}],"trade":{"ids":{"explicit":["explicit.stat_4003593289"],"fractured":["fractured.stat_4003593289"]}}} +{"ref":"Grants Immunity to Ignite for # seconds if used while Ignited\nRemoves all Burning when used","better":1,"matchers":[{"string":"점화 상태에서 사용 시 #초 동안 점화 면역 부여\n사용 시 모든 화상 제거"}],"trade":{"ids":{"explicit":["explicit.stat_2361218755"],"fractured":["fractured.stat_2361218755"]}}} +{"ref":"Grants Immunity to Ignite for 4 seconds if used while Ignited\nRemoves all Burning when used","better":1,"matchers":[{"string":"점화 상태에서 사용 시 4초 동안 점화 면역 부여\n사용 시 모든 화상 제거"}],"trade":{"ids":{"explicit":["explicit.stat_2695527599"]}}} +{"ref":"Grants Immunity to Maim for # seconds if used while Maimed","better":1,"matchers":[{"string":"힘줄 절단 상태에서 사용 시 #초 동안 힘줄 절단 면역 부여"}],"trade":{"ids":{"explicit":["explicit.stat_4232582040"],"fractured":["fractured.stat_4232582040"]}}} +{"ref":"Grants Immunity to Poison for # seconds if used while Poisoned","better":1,"matchers":[{"string":"중독 상태에서 사용 시 #초 동안 중독 면역 부여"}],"trade":{"ids":{"explicit":["explicit.stat_542375676"],"fractured":["fractured.stat_542375676"]}}} +{"ref":"Grants Immunity to Shock for # seconds if used while Shocked","better":1,"matchers":[{"string":"감전 상태에서 사용 시 #초 동안 감전 면역 부여"}],"trade":{"ids":{"explicit":["explicit.stat_3854439683"],"fractured":["fractured.stat_3854439683"]}}} +{"ref":"Grants Last Breath when you Use a Skill during Effect, for #% of Mana Cost","better":1,"matchers":[{"string":"효과를 받는 동안 스킬 사용 시, 마나 소모의 #%만큼 마지막 숨결 적용"}],"trade":{"ids":{"explicit":["explicit.stat_3686711832"]}}} +{"ref":"Grants level # Affliction","better":1,"matchers":[{"string":"#레벨 고난 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_3486646279"]}}} +{"ref":"Grants Level # Anger Skill","better":1,"matchers":[{"string":"#레벨 분노 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_449494711","explicit.stat_484879947"],"implicit":["implicit.stat_484879947"],"fractured":["fractured.stat_449494711","fractured.stat_484879947"]}}} +{"ref":"Grants Level # Approaching Flames Skill","better":1,"matchers":[{"string":"#레벨 다가가는 화염 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_1943415243"]}}} +{"ref":"Grants Level # Aspect of the Avian Skill","better":1,"matchers":[{"string":"#레벨 새의 위상 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_3914740665"],"fractured":["fractured.stat_3914740665"]}}} +{"ref":"Grants Level # Aspect of the Cat Skill","better":1,"matchers":[{"string":"#레벨 고양이의 위상 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_1265282021"],"fractured":["fractured.stat_1265282021"]}}} +{"ref":"Grants Level # Aspect of the Crab Skill","better":1,"matchers":[{"string":"#레벨 게의 위상 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_4102318278"],"fractured":["fractured.stat_4102318278"]}}} +{"ref":"Grants Level # Aspect of the Spider Skill","better":1,"matchers":[{"string":"#레벨 거미의 위상 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_956546305"],"fractured":["fractured.stat_956546305"]}}} +{"ref":"Grants Level # Battlemage's Cry Skill","better":1,"matchers":[{"string":"#레벨 전투마법사의 함성 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_2356594418"]}}} +{"ref":"Grants Level # Bear Trap Skill","better":1,"matchers":[{"string":"#레벨 곰 덫 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_3541114083"]}}} +{"ref":"Grants Level # Blight Skill","better":1,"matchers":[{"string":"#레벨 황폐 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_1198418726"]}}} +{"ref":"Grants Level # Blood Offering Skill","better":1,"matchers":[{"string":"#레벨 피의 공물 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_3985468650"]}}} +{"ref":"Grants Level # Blood Sacrament Skill","better":1,"matchers":[{"string":"#레벨 피 성체 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_738386056"]}}} +{"ref":"Grants Level # Brandsurge Skill","better":1,"matchers":[{"string":"#레벨 낙인 쇄도 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_2859437049"]}}} +{"ref":"Grants Level # Clarity Skill","better":1,"matchers":[{"string":"#레벨 명상 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_3511815065"],"implicit":["implicit.stat_3511815065"],"fractured":["fractured.stat_3511815065"]}}} +{"ref":"Grants Level # Conductivity Skill","better":1,"matchers":[{"string":"#레벨 전도성 스킬 사용 가능"}],"trade":{"ids":{"implicit":["implicit.stat_461472247"]}}} +{"ref":"Grants Level # Convocation Skill","better":1,"matchers":[{"string":"#레벨 소집 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_1786401772"],"fractured":["fractured.stat_1786401772"]}}} +{"ref":"Grants Level # Crushing Fist Skill","better":1,"matchers":[{"string":"#레벨 타쇄하는 주먹 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_2434330144"]}}} +{"ref":"Grants Level # Dash Skill","better":1,"matchers":[{"string":"#레벨 질주 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_3883691934"]}}} +{"ref":"Grants Level # Death Wish Skill","better":1,"matchers":[{"string":"# 레벨 죽음 동경 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_1965393792"]}}} +{"ref":"Grants Level # Decoy Totem Skill","better":1,"matchers":[{"string":"#레벨 미끼 토템 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_3566242751"],"fractured":["fractured.stat_3566242751"]}}} +{"ref":"Grants Level # Despair Curse Aura during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 #레벨 절망 저주 오라 적용"}],"trade":{"ids":{"explicit":["explicit.stat_1604995720"]}}} +{"ref":"Grants Level # Despair Skill","better":1,"matchers":[{"string":"#레벨 절망 스킬 사용 가능"}],"trade":{"ids":{"implicit":["implicit.stat_2044547677"]}}} +{"ref":"Grants Level # Determination Skill","better":1,"matchers":[{"string":"#레벨 결의 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_3231614028","explicit.stat_4265392510"],"implicit":["implicit.stat_4265392510"],"fractured":["fractured.stat_3231614028","fractured.stat_4265392510"]}}} +{"ref":"Grants Level # Discipline Skill","better":1,"matchers":[{"string":"#레벨 단련 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_2341269061","explicit.stat_2578176147"],"implicit":["implicit.stat_2341269061"],"fractured":["fractured.stat_2341269061","fractured.stat_2578176147"]}}} +{"ref":"Grants Level # Doryani's Touch Skill","better":1,"matchers":[{"string":"#레벨 도리아니의 손길 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_2498303876"]}}} +{"ref":"Grants Level # Embrace Madness Skill","better":1,"matchers":[{"string":"#레벨 광기의 수용 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_1749783861"]}}} +{"ref":"Grants Level # Enduring Cry Skill","better":1,"matchers":[{"string":"#레벨 인내의 함성 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_1031644844"],"fractured":["fractured.stat_1031644844"]}}} +{"ref":"Grants Level # Envy Skill","better":1,"matchers":[{"string":"#레벨 선망 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_52953650"],"fractured":["fractured.stat_52953650"],"enchant":["enchant.stat_52953650"]}}} +{"ref":"Grants Level # Flammability Skill","better":1,"matchers":[{"string":"#레벨 인화성 스킬 사용 가능"}],"trade":{"ids":{"implicit":["implicit.stat_2209668839"]}}} +{"ref":"Grants Level # Frostbite Skill","better":1,"matchers":[{"string":"#레벨 동상 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_1169502663"],"implicit":["implicit.stat_1169502663"]}}} +{"ref":"Grants Level # Frostblink Skill","better":1,"matchers":[{"string":"#레벨 서리점멸 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_2911866787"]}}} +{"ref":"Grants Level # Gluttony of Elements Skill","better":1,"matchers":[{"string":"#레벨 원소의 폭식 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_3321235265"]}}} +{"ref":"Grants Level # Grace Skill","better":1,"matchers":[{"string":"#레벨 은총 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_2867050084","explicit.stat_3914774028"],"implicit":["implicit.stat_2867050084"],"fractured":["fractured.stat_2867050084","fractured.stat_3914774028"]}}} +{"ref":"Grants Level # Haste Skill","better":1,"matchers":[{"string":"#레벨 가속 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_1188846263","explicit.stat_2923442950"],"implicit":["implicit.stat_1188846263"],"fractured":["fractured.stat_1188846263","fractured.stat_2923442950"]}}} +{"ref":"Grants Level # Hatred Skill","better":1,"matchers":[{"string":"#레벨 증오 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_178394804","explicit.stat_2429546158"],"implicit":["implicit.stat_2429546158"],"fractured":["fractured.stat_178394804","fractured.stat_2429546158"]}}} +{"ref":"Grants Level # Herald of Agony Skill","better":1,"matchers":[{"string":"#레벨 고통의 전령 스킬 사용 가능"}],"trade":{"ids":{"scourge":["scourge.stat_1504952168"]}}} +{"ref":"Grants Level # Herald of Ash Skill","better":1,"matchers":[{"string":"#레벨 재의 전령 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_3880462354"],"fractured":["fractured.stat_3880462354"],"scourge":["scourge.stat_3880462354"]}}} +{"ref":"Grants Level # Herald of Ice Skill","better":1,"matchers":[{"string":"#레벨 얼음의 전령 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_3846248551"],"fractured":["fractured.stat_3846248551"],"scourge":["scourge.stat_3846248551"]}}} +{"ref":"Grants Level # Herald of Purity Skill","better":1,"matchers":[{"string":"#레벨 순수의 전령 스킬 사용 가능"}],"trade":{"ids":{"scourge":["scourge.stat_738207023"]}}} +{"ref":"Grants Level # Herald of Thunder Skill","better":1,"matchers":[{"string":"#레벨 천둥의 전령 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_1665492921"],"fractured":["fractured.stat_1665492921"],"scourge":["scourge.stat_1665492921"]}}} +{"ref":"Grants Level # Icestorm Skill","better":1,"matchers":[{"string":"#레벨 얼음태풍 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_2103009393"]}}} +{"ref":"Grants Level # Illusory Warp Skill","better":1,"matchers":[{"string":"#레벨 환상의 차원 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_3279574030"]}}} +{"ref":"Grants Level # Intimidating Cry Skill","better":1,"matchers":[{"string":"#레벨 위협의 함성 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_1271338211"],"fractured":["fractured.stat_1271338211"]}}} +{"ref":"Grants Level # Lightning Warp Skill","better":1,"matchers":[{"string":"#레벨 번개 차원 이동 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_243713911"]}}} +{"ref":"Grants Level # Malevolence Skill","better":1,"matchers":[{"string":"#레벨 악의 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_3086585712"],"implicit":["implicit.stat_2148556029"],"fractured":["fractured.stat_3086585712"]}}} +{"ref":"Grants level # Pacify","better":1,"matchers":[{"string":"#레벨 진정 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_913306901"]}}} +{"ref":"Grants level # Penance Mark","better":1,"matchers":[{"string":"#레벨 속죄의 징표 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_88120117"]}}} +{"ref":"Grants Level # Petrification Statue Skill","better":1,"matchers":[{"string":"#레벨 석화의 조각상 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_1904419785"]}}} +{"ref":"Grants Level # Precision Skill","better":1,"matchers":[{"string":"#레벨 정밀함 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_2721815210"]}}} +{"ref":"Grants Level # Pride Skill","better":1,"matchers":[{"string":"#레벨 자부심 스킬 부여"},{"string":"#레벨 자부심 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_3612470379"],"implicit":["implicit.stat_4184565463"],"fractured":["fractured.stat_3612470379"]}}} +{"ref":"Grants Level # Purity of Elements Skill","better":1,"matchers":[{"string":"#레벨 원소의 순수함 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_105466375"],"implicit":["implicit.stat_105466375"]}}} +{"ref":"Grants Level # Purity of Fire Skill","better":1,"matchers":[{"string":"#레벨 불의 순수함 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_3716281760","explicit.stat_3970432307"],"implicit":["implicit.stat_3970432307"],"fractured":["fractured.stat_3716281760"]}}} +{"ref":"Grants Level # Purity of Ice Skill","better":1,"matchers":[{"string":"#레벨 얼음의 순수함 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_151975117","explicit.stat_4193390599"],"implicit":["implicit.stat_4193390599"],"fractured":["fractured.stat_151975117"]}}} +{"ref":"Grants Level # Purity of Lightning Skill","better":1,"matchers":[{"string":"#레벨 번개의 순수함 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_1141249906","explicit.stat_3822878124"],"implicit":["implicit.stat_3822878124"],"fractured":["fractured.stat_1141249906"]}}} +{"ref":"Grants Level # Queen's Demand Skill","better":1,"matchers":[{"string":"#레벨 여왕의 요구 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_509572644"]}}} +{"ref":"Grants Level # Rallying Cry Skill","better":1,"matchers":[{"string":"#레벨 집결의 함성 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_2007746338"],"fractured":["fractured.stat_2007746338"]}}} +{"ref":"Grants Level # Ravenous Skill","better":1,"matchers":[{"string":"#레벨 굶주림 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_636370122"]}}} +{"ref":"Grants Level # Scorching Ray Skill","better":1,"matchers":[{"string":"#레벨 작열 광선 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_1540840"]}}} +{"ref":"Grants Level # Smite Skill","better":1,"matchers":[{"string":"#레벨 징벌 스킬 획득"}],"trade":{"ids":{"explicit":["explicit.stat_979973117"]}}} +{"ref":"Grants Level # Snipe Skill","better":1,"matchers":[{"string":"#레벨 저격 스킬 부여"}],"trade":{"ids":{"explicit":["explicit.stat_2343098806"]}}} +{"ref":"Grants Level # Sniper's Mark Skill","better":1,"matchers":[{"string":"#레벨 저격수의 징표 스킬 사용 가능"}],"trade":{"ids":{"implicit":["implicit.stat_3536689603"],"scourge":["scourge.stat_3536689603"]}}} +{"ref":"Grants Level # Summon Doedre's Effigy Skill\nSocketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned\nHexes from Socketed Skills can apply 5 additional Curses","better":1,"matchers":[{"string":"#레벨 도이드리의 인형 소환 스킬 사용 가능\n소환 시 도이드리의 인형이 장착된 사술 저주 스킬 발동\n장착된 스킬의 사술이 저주 추가 5개 적용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_1517357911"]}}} +{"ref":"Grants Level # Summon Stone Golem Skill","better":1,"matchers":[{"string":"#레벨 돌 골렘 소환 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_3056188914"]}}} +{"ref":"Grants Level # Thirst for Blood Skill","better":1,"matchers":[{"string":"#레벨 피의 갈증 스킬 부여"}],"trade":{"ids":{"explicit":["explicit.stat_1209807941"]}}} +{"ref":"Grants Level # Unhinge Skill","better":1,"matchers":[{"string":"#레벨 흐트러뜨리기 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_3239991868"]}}} +{"ref":"Grants Level # Vaal Impurity of Fire Skill","better":1,"matchers":[{"string":"#레벨 바알 불의 부정함 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_2700934265"]}}} +{"ref":"Grants Level # Vaal Impurity of Ice Skill","better":1,"matchers":[{"string":"#레벨 바알 얼음의 부정함 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_1300125165"]}}} +{"ref":"Grants Level # Vaal Impurity of Lightning Skill","better":1,"matchers":[{"string":"#레벨 바알 번개의 부정함 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_2959369472"]}}} +{"ref":"Grants Level # Vengeance Skill","better":1,"matchers":[{"string":"#레벨 복수 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_4122367945"]}}} +{"ref":"Grants Level # Vitality Skill","better":1,"matchers":[{"string":"#레벨 활력 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_2410613176"],"implicit":["implicit.stat_2410613176"],"fractured":["fractured.stat_2410613176"]}}} +{"ref":"Grants Level # Vulnerability Curse Aura during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 #레벨 취약성 저주 오라 적용"}],"trade":{"ids":{"explicit":["explicit.stat_1660373569"]}}} +{"ref":"Grants Level # Wintertide Brand Skill","better":1,"matchers":[{"string":"#레벨 겨울의 낙인 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_1826753218"]}}} +{"ref":"Grants Level # Wrath Skill","better":1,"matchers":[{"string":"#레벨 진노 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_1568319697","explicit.stat_2265307453"],"implicit":["implicit.stat_2265307453"],"fractured":["fractured.stat_1568319697","fractured.stat_2265307453"]}}} +{"ref":"Grants Level # Zealotry Skill","better":1,"matchers":[{"string":"#레벨 열광 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_3734675602"],"implicit":["implicit.stat_3224664127"],"fractured":["fractured.stat_3734675602"]}}} +{"ref":"Grants Level 20 Summon Bestial # Skill","better":1,"matchers":[{"string":"20레벨 흉포한 로아 소환 스킬 사용 가능","value":1},{"string":"20레벨 흉포한 곰 소환 스킬 사용 가능","value":2},{"string":"20레벨 흉포한 뱀 소환 스킬 사용 가능","value":3}],"trade":{"ids":{"explicit":["explicit.stat_2878779644"]},"option":true}} +{"ref":"Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence","better":1,"matchers":[{"string":"6초 동안 순차적으로 말라카이의 인내, 격분, 권능 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2918150296"]}}} +{"ref":"Grants Perfect Agony during effect","better":1,"matchers":[{"string":"효과를 받는 동안 완벽한 고통 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3741365813"]}}} +{"ref":"Grants Summon Harbinger Skill","better":1,"matchers":[{"string":"비전의 선구자 소환 스킬 사용 가능","value":1},{"string":"상위 지시의 선구자 소환 스킬 사용 가능","value":10},{"string":"상위 태풍의 선구자 소환 스킬 사용 가능","value":11},{"string":"상위 잔인성의 선구자 소환 스킬 사용 가능","value":12},{"string":"시간의 선구자 소환 스킬 사용 가능","value":2},{"string":"집중의 선구자 소환 스킬 사용 가능","value":3},{"string":"지시의 선구자 소환 스킬 사용 가능","value":4},{"string":"태풍의 선구자 소환 스킬 사용 가능","value":5},{"string":"잔인성의 선구자 소환 스킬 사용 가능","value":6},{"string":"상위 비전의 선구자 소환 스킬 사용 가능","value":7},{"string":"상위 시간의 선구자 소환 스킬 사용 가능","value":8},{"string":"상위 집중의 선구자 소환 스킬 사용 가능","value":9}],"trade":{"ids":{"explicit":["explicit.stat_3872739249"]},"option":true}} +{"ref":"Gravicius' Veiled","better":0,"matchers":[{"string":"그라비시우스의 장막의"}],"trade":{"ids":{"veiled":["veiled.mod_38872"]}}} +{"ref":"Ground Slam has a #% increased angle","better":1,"matchers":[{"string":"대지 강타의 각도 #% 증가"},{"string":"대지 강타의 각도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_648647905"]}}} +{"ref":"Guard Skills have #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"수호 스킬의 재사용 대기시간 회복 속도 #% 증가"},{"string":"수호 스킬의 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"scourge":["scourge.stat_3150300096"]}}} +{"ref":"Guards deal #% increased Damage","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"경비가 주는 피해 #% 증가"},{"string":"경비가 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2569717992"],"fractured":["fractured.stat_2569717992"]}}} +{"ref":"Guards impact #% increased Resolve","better":1,"matchers":[{"string":"수호병이 투지에 주는 영향 #% 증가"},{"string":"수호병이 투지에 주는 영향 #% 감소","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_199414195"]}}} +{"ref":"Guards take #% increased Damage","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"경비가 받는 피해 #% 증가"},{"string":"수호병이 받는 피해 #% 증가"},{"string":"경비가 받는 피해 #% 감소","negate":true},{"string":"수호병이 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_873692616","sanctum.stat_408585189"],"fractured":["fractured.stat_873692616"]}}} +{"ref":"Guff's Veiled","better":0,"matchers":[{"string":"거프의 장막의"}],"trade":{"ids":{"veiled":["veiled.mod_6779"]}}} +{"ref":"Haku's Veiled","better":0,"matchers":[{"string":"하쿠의 장막의"}],"trade":{"ids":{"veiled":["veiled.mod_39023"]}}} +{"ref":"Half of your Strength is added to your Minions","better":1,"matchers":[{"string":"자신의 힘 절반을 소환수에게 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2195137717"]}}} +{"ref":"Has # Abyssal Sockets","better":1,"matchers":[{"string":"심연 홈 #개"},{"string":"심연 홈 1개","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3527617737"],"implicit":["implicit.stat_3527617737"],"fractured":["fractured.stat_3527617737"]}}} +{"ref":"Has # Influences","better":1,"matchers":[{"string":"# 영향력이 부여되어 있습니다 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_has_influence_count"]}}} +{"ref":"Has # White Sockets","better":1,"matchers":[{"string":"하얀 홈 #개"},{"string":"하얀 홈 1개","value":1}],"trade":{"ids":{"enchant":["enchant.stat_931294424"]}}} +{"ref":"Has 1 Socket","better":1,"matchers":[{"string":"홈 #개"},{"string":"홈 1개","value":1}],"trade":{"ids":{"explicit":["explicit.stat_4077843608"],"implicit":["implicit.stat_4077843608"]}}} +{"ref":"Has a Crucible Passive Skill Tree\nCrucible Passive Skill Tree is removed if this Modifier is removed","better":1,"matchers":[{"string":"시련 패시브 스킬 트리 보유\n이 속성이 제거되면 시련 패시브 스킬 트리가 제거됨"}],"trade":{"ids":{"explicit":["explicit.stat_1827605890"]}}} +{"ref":"Has a Crucible Passive Skill Tree with only Support Passive Skills\nCrucible Passive Skill Tree is removed if this Modifier is removed","better":1,"matchers":[{"string":"보조 패시브 스킬만 있는 시련 패시브 스킬 트리 보유\n이 속성이 제거되면 시련 패시브 스킬 트리가 제거됨"}],"trade":{"ids":{"explicit":["explicit.stat_3031897787"]}}} +{"ref":"Has a Two Handed Sword Crucible Passive Skill Tree\nCrucible Passive Skill Tree is removed if this Modifier is removed","better":1,"matchers":[{"string":"양손 검 시련 패시브 스킬 트리 보유\n이 속성이 제거되면 시련 패시브 스킬 트리가 제거됨"}],"trade":{"ids":{"explicit":["explicit.stat_2141582975"]}}} +{"ref":"Has an additional Implicit Mod","better":1,"matchers":[{"string":"추가 고정 속성 부여 보유"}],"trade":{"ids":{"explicit":["explicit.stat_2489070122"]}}} +{"ref":"Has Crusader Influence","better":1,"matchers":[{"string":"십자군 영향력이 부여되어 있습니다 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_has_crusader_influence"]}}} +{"ref":"Has Elder Influence","better":1,"matchers":[{"string":"엘더 영향력이 부여되어 있습니다 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_has_elder_influence"]}}} +{"ref":"Has Elder, Shaper and all Conqueror Influences","better":1,"matchers":[{"string":"엘더, 쉐이퍼, 모든 정복자 영향력 보유"}],"trade":{"ids":{"implicit":["implicit.stat_1795443614"]}}} +{"ref":"Has Hunter Influence","better":1,"matchers":[{"string":"사냥꾼 영향력이 부여되어 있습니다 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_has_hunter_influence"]}}} +{"ref":"Has Logbook Area: Battleground Graves","better":1,"matchers":[{"string":"다음 일지 지역 보유: 전장 무덤 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_battleground_graves"]}}} +{"ref":"Has Logbook Area: Bluffs","better":1,"matchers":[{"string":"다음 일지 지역 보유: 절벽 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_bluffs"]}}} +{"ref":"Has Logbook Area: Cemetery","better":1,"matchers":[{"string":"다음 일지 지역 보유: 공동묘지 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_cemetery"]}}} +{"ref":"Has Logbook Area: Desert Ruins","better":1,"matchers":[{"string":"다음 일지 지역 보유: 사막 폐허 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_desert_ruins"]}}} +{"ref":"Has Logbook Area: Dried Riverbed","better":1,"matchers":[{"string":"다음 일지 지역 보유: 말라붙은 강바닥 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_dried_riverbed"]}}} +{"ref":"Has Logbook Area: Forest Ruins","better":1,"matchers":[{"string":"다음 일지 지역 보유: 숲 폐허 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_forest_ruins"]}}} +{"ref":"Has Logbook Area: Karui Wargraves","better":1,"matchers":[{"string":"다음 일지 지역 보유: 카루이 전쟁 무덤 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_karui_wargraves"]}}} +{"ref":"Has Logbook Area: Mountainside","better":1,"matchers":[{"string":"다음 일지 지역 보유: 산비탈 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_mountainside"]}}} +{"ref":"Has Logbook Area: Rotting Temple","better":1,"matchers":[{"string":"다음 일지 지역 보유: 썩어가는 사원 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_rotting_temple"]}}} +{"ref":"Has Logbook Area: Sarn Slums","better":1,"matchers":[{"string":"다음 일지 지역 보유: 사안 빈민가 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_sarn_slums"]}}} +{"ref":"Has Logbook Area: Scrublands","better":1,"matchers":[{"string":"다음 일지 지역 보유: 관목지 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_scrublands"]}}} +{"ref":"Has Logbook Area: Shipwreck Reef","better":1,"matchers":[{"string":"다음 일지 지역 보유: 난파선 암초 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_shipwreck_reef"]}}} +{"ref":"Has Logbook Area: Utzaal Outskirts","better":1,"matchers":[{"string":"다음 일지 지역 보유: 웃자알 외곽 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_utzaal_outskirts"]}}} +{"ref":"Has Logbook Area: Vaal Temple","better":1,"matchers":[{"string":"다음 일지 지역 보유: 바알 사원 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_vaal_temple"]}}} +{"ref":"Has Logbook Area: Volcanic Island","better":1,"matchers":[{"string":"다음 일지 지역 보유: 화산섬 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_volcano"]}}} +{"ref":"Has Logbook Faction: Black Scythe Mercenaries","better":0,"matchers":[{"string":"검은 낫 용병단"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_faction_mercenaries"]}}} +{"ref":"Has Logbook Faction: Druids of the Broken Circle","better":0,"matchers":[{"string":"끊어진 원의 드루이드"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_faction_druids"]}}} +{"ref":"Has Logbook Faction: Knights of the Sun","better":0,"matchers":[{"string":"태양의 기사단"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_faction_knights"]}}} +{"ref":"Has Logbook Faction: Order of the Chalice","better":0,"matchers":[{"string":"성배단"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_faction_order"]}}} +{"ref":"Has no Attribute Requirements","better":1,"matchers":[{"string":"능력치 요구사항 없음"}],"trade":{"ids":{"explicit":["explicit.stat_2739148464"],"fractured":["fractured.stat_2739148464"]}}} +{"ref":"Has no Blue Sockets","better":1,"matchers":[{"string":"파란 홈 없음"}],"trade":{"ids":{"enchant":["enchant.stat_3837805260"]}}} +{"ref":"Has no Energy Shield","better":1,"matchers":[{"string":"에너지 보호막 없음"}],"trade":{"ids":{"explicit":["explicit.stat_3109875952"]}}} +{"ref":"Has no Green Sockets","better":1,"matchers":[{"string":"초록 홈 없음"}],"trade":{"ids":{"enchant":["enchant.stat_1615727675"]}}} +{"ref":"Has no Red Sockets","better":1,"matchers":[{"string":"빨간 홈 없음"}],"trade":{"ids":{"enchant":["enchant.stat_320043039"]}}} +{"ref":"Has no Sockets","better":1,"matchers":[{"string":"홈 없음"}],"trade":{"ids":{"explicit":["explicit.stat_1493091477"]}}} +{"ref":"Has Redeemer Influence","better":1,"matchers":[{"string":"대속자 영향력이 부여되어 있습니다 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_has_redeemer_influence"]}}} +{"ref":"Has Room: Antechamber","better":0,"matchers":[{"string":"대기실"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_antechamber"]},"option":true}} +{"ref":"Has Room: Apex of Ascension (Tier 3)","better":0,"matchers":[{"string":"승천의 정점 (3등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_sacrifice_room_3"]},"option":true}} +{"ref":"Has Room: Apex of Atzoatl","better":0,"matchers":[{"string":"앗조아틀의 정점"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_apex"]},"option":true}} +{"ref":"Has Room: Arena of Valour (Tier 2)","better":0,"matchers":[{"string":"용맹의 투기장 (2등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_weapon_room_2"]},"option":true}} +{"ref":"Has Room: Armourer's Workshop (Tier 1)","better":0,"matchers":[{"string":"방어구 장인의 작업장 (1등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_armour_room_1"]},"option":true}} +{"ref":"Has Room: Armoury (Tier 2)","better":0,"matchers":[{"string":"갑주 창고 (2등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_armour_room_2"]},"option":true}} +{"ref":"Has Room: Atlas of Worlds (Tier 3)","better":0,"matchers":[{"string":"아틀라스의 세계 (3등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_cartography_room_3"]},"option":true}} +{"ref":"Has Room: Automaton Lab (Tier 2)","better":0,"matchers":[{"string":"오토마톤 제조실 (2등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_boss_minions_2"]},"option":true}} +{"ref":"Has Room: Banquet Hall","better":0,"matchers":[{"string":"연회장"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_banquet_hall"]},"option":true}} +{"ref":"Has Room: Barracks (Tier 2)","better":0,"matchers":[{"string":"주둔지 (2등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_breeding_room_2"]},"option":true}} +{"ref":"Has Room: Breach Containment Chamber (Tier 2)","better":0,"matchers":[{"string":"균열 봉쇄 시설 (2등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_breach_room_2"]},"option":true}} +{"ref":"Has Room: Catalyst of Corruption (Tier 2)","better":0,"matchers":[{"string":"타락의 기폭제 (2등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_corruption_room_2"]},"option":true}} +{"ref":"Has Room: Cellar","better":0,"matchers":[{"string":"저장실"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_cellar"]},"option":true}} +{"ref":"Has Room: Chamber of Iron (Tier 3)","better":0,"matchers":[{"string":"방어구의 방 (3등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_armour_room_3"]},"option":true}} +{"ref":"Has Room: Chasm","better":0,"matchers":[{"string":"절벽길"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_chasm_room"]},"option":true}} +{"ref":"Has Room: Cloister","better":0,"matchers":[{"string":"회랑"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_cloister"]},"option":true}} +{"ref":"Has Room: Conduit of Lightning (Tier 3)","better":0,"matchers":[{"string":"번개의 도관 (3등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_boss_lightning_3"]},"option":true}} +{"ref":"Has Room: Corruption Chamber (Tier 1)","better":0,"matchers":[{"string":"타락의 방 (1등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_corruption_room_1"]},"option":true}} +{"ref":"Has Room: Court of Sealed Death (Tier 3)","better":0,"matchers":[{"string":"봉인된 죽음의 법정 (3등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_strongbox_3"]},"option":true}} +{"ref":"Has Room: Crucible of Flame (Tier 3)","better":0,"matchers":[{"string":"화염의 용광로 (3등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_boss_fire_3"]},"option":true}} +{"ref":"Has Room: Cultivar Chamber (Tier 2)","better":0,"matchers":[{"string":"컬티바의 방 (2등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_poison_room_2"]},"option":true}} +{"ref":"Has Room: Defense Research Lab (Tier 3)","better":0,"matchers":[{"string":"방어물 연구소 (3등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_trap_room_3"]},"option":true}} +{"ref":"Has Room: Demolition Lab (Tier 2)","better":0,"matchers":[{"string":"폭탄 제조실 (2등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_explosives_room_2"]},"option":true}} +{"ref":"Has Room: Department of Thaumaturgy (Tier 2)","better":0,"matchers":[{"string":"마법부 (2등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_gem_room_2"]},"option":true}} +{"ref":"Has Room: Doryani's Institute (Tier 3)","better":0,"matchers":[{"string":"도리아니의 학회 (3등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_gem_room_3"]},"option":true}} +{"ref":"Has Room: Engineering Department (Tier 2)","better":0,"matchers":[{"string":"공학부 (2등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_workshop_2"]},"option":true}} +{"ref":"Has Room: Explosives Room (Tier 1)","better":0,"matchers":[{"string":"폭발물 저장실 (1등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_explosives_room_1"]},"option":true}} +{"ref":"Has Room: Factory (Tier 3)","better":0,"matchers":[{"string":"공장 (3등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_workshop_3"]},"option":true}} +{"ref":"Has Room: Flame Workshop (Tier 1)","better":0,"matchers":[{"string":"화염 작업장 (1등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_boss_fire_1"]},"option":true}} +{"ref":"Has Room: Gemcutter's Workshop (Tier 1)","better":0,"matchers":[{"string":"세공사의 작업장 (1등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_gem_room_1"]},"option":true}} +{"ref":"Has Room: Glittering Halls (Tier 3)","better":0,"matchers":[{"string":"번쩍이는 복도 (3등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_trinket_room_3"]},"option":true}} +{"ref":"Has Room: Guardhouse (Tier 1)","better":0,"matchers":[{"string":"위병소 (1등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_breeding_room_1"]},"option":true}} +{"ref":"Has Room: Hall of Champions (Tier 3)","better":0,"matchers":[{"string":"용사의 전당 (3등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_weapon_room_3"]},"option":true}} +{"ref":"Has Room: Hall of Heroes (Tier 2)","better":0,"matchers":[{"string":"영웅의 전당 (2등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_legion_2"]},"option":true}} +{"ref":"Has Room: Hall of Legends (Tier 3)","better":0,"matchers":[{"string":"전설의 전당 (3등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_legion_3"]},"option":true}} +{"ref":"Has Room: Hall of Locks (Tier 2)","better":0,"matchers":[{"string":"자물쇠의 전당 (2등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_strongbox_2"]},"option":true}} +{"ref":"Has Room: Hall of Lords (Tier 2)","better":0,"matchers":[{"string":"군주의 전당 (2등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_queens_chambers_2"]},"option":true}} +{"ref":"Has Room: Hall of Mettle (Tier 1)","better":0,"matchers":[{"string":"패기의 전당 (1등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_legion_1"]},"option":true}} +{"ref":"Has Room: Hall of Offerings (Tier 2)","better":0,"matchers":[{"string":"공물의 전당 (2등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_sacrifice_room_2"]},"option":true}} +{"ref":"Has Room: Hall of War (Tier 3)","better":0,"matchers":[{"string":"전쟁의 전당 (3등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_breeding_room_3"]},"option":true}} +{"ref":"Has Room: Halls","better":0,"matchers":[{"string":"복도"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_halls"]},"option":true}} +{"ref":"Has Room: Hatchery (Tier 1)","better":0,"matchers":[{"string":"부화장 (1등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_boss_minions_1"]},"option":true}} +{"ref":"Has Room: House of the Others (Tier 3)","better":0,"matchers":[{"string":"다른 존재의 보금자리 (3등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_breach_room_3"]},"option":true}} +{"ref":"Has Room: Hurricane Engine (Tier 2)","better":0,"matchers":[{"string":"폭풍 장치 (2등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_storm_room_2"]},"option":true}} +{"ref":"Has Room: Hybridisation Chamber (Tier 3)","better":0,"matchers":[{"string":"잡종화의 방 (3등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_boss_minions_3"]},"option":true}} +{"ref":"Has Room: Jeweller's Workshop (Tier 1)","better":0,"matchers":[{"string":"보석 상인의 작업장 (1등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_trinket_room_1"]},"option":true}} +{"ref":"Has Room: Jewellery Forge (Tier 2)","better":0,"matchers":[{"string":"장신구 제련소 (2등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_trinket_room_2"]},"option":true}} +{"ref":"Has Room: Lightning Workshop (Tier 1)","better":0,"matchers":[{"string":"번개 작업장 (1등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_boss_lightning_1"]},"option":true}} +{"ref":"Has Room: Locus of Corruption (Tier 3)","better":0,"matchers":[{"string":"타락의 현장 (3등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_corruption_room_3"]},"option":true}} +{"ref":"Has Room: Museum of Artefacts (Tier 3)","better":0,"matchers":[{"string":"유물 박물관 (3등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_chests_3"]},"option":true}} +{"ref":"Has Room: Office of Cartography (Tier 2)","better":0,"matchers":[{"string":"지도 제작소 (2등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_cartography_room_2"]},"option":true}} +{"ref":"Has Room: Omnitect Forge (Tier 2)","better":0,"matchers":[{"string":"종합체 제련소 (2등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_boss_fire_2"]},"option":true}} +{"ref":"Has Room: Omnitect Reactor Plant (Tier 2)","better":0,"matchers":[{"string":"종합체 원전 시설 (2등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_boss_lightning_2"]},"option":true}} +{"ref":"Has Room: Passageways","better":0,"matchers":[{"string":"통로"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_passageways"]},"option":true}} +{"ref":"Has Room: Pits","better":0,"matchers":[{"string":"구덩이"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_the_pits"]},"option":true}} +{"ref":"Has Room: Poison Garden (Tier 1)","better":0,"matchers":[{"string":"독초 정원 (1등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_poison_room_1"]},"option":true}} +{"ref":"Has Room: Pools of Restoration (Tier 1)","better":0,"matchers":[{"string":"회복의 웅덩이 (1등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_healing_room_1"]},"option":true}} +{"ref":"Has Room: Royal Meeting Room (Tier 1)","better":0,"matchers":[{"string":"왕실 회의실 (1등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_queens_chambers_1"]},"option":true}} +{"ref":"Has Room: Sacrificial Chamber (Tier 1)","better":0,"matchers":[{"string":"희생의 방 (1등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_sacrifice_room_1"]},"option":true}} +{"ref":"Has Room: Sadist's Den (Tier 3)","better":0,"matchers":[{"string":"가학자의 굴 (3등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_torment_3"]},"option":true}} +{"ref":"Has Room: Sanctum of Immortality (Tier 3)","better":0,"matchers":[{"string":"불멸의 지성소 (3등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_healing_room_3"]},"option":true}} +{"ref":"Has Room: Sanctum of Unity (Tier 2)","better":0,"matchers":[{"string":"단결의 지성소 (2등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_empowering_room_2"]},"option":true}} +{"ref":"Has Room: Sanctum of Vitality (Tier 2)","better":0,"matchers":[{"string":"활력의 지성소 (2등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_healing_room_2"]},"option":true}} +{"ref":"Has Room: Shrine of Empowerment (Tier 1)","better":0,"matchers":[{"string":"강화의 성소 (1등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_empowering_room_1"]},"option":true}} +{"ref":"Has Room: Shrine of Unmaking (Tier 3)","better":0,"matchers":[{"string":"파괴의 성소 (3등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_explosives_room_3"]},"option":true}} +{"ref":"Has Room: Sparring Room (Tier 1)","better":0,"matchers":[{"string":"격투장 (1등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_weapon_room_1"]},"option":true}} +{"ref":"Has Room: Splinter Research Lab (Tier 1)","better":0,"matchers":[{"string":"파편 연구소 (1등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_breach_room_1"]},"option":true}} +{"ref":"Has Room: Storage Room (Tier 1)","better":0,"matchers":[{"string":"저장고 (1등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_chests_1"]},"option":true}} +{"ref":"Has Room: Storm of Corruption (Tier 3)","better":0,"matchers":[{"string":"타락의 태풍 (3등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_storm_room_3"]},"option":true}} +{"ref":"Has Room: Strongbox Chamber (Tier 1)","better":0,"matchers":[{"string":"금고의 방 (1등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_strongbox_1"]},"option":true}} +{"ref":"Has Room: Surveyor's Study (Tier 1)","better":0,"matchers":[{"string":"측량사의 조사 (1등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_cartography_room_1"]},"option":true}} +{"ref":"Has Room: Tempest Generator (Tier 1)","better":0,"matchers":[{"string":"폭풍 제조기 (1등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_storm_room_1"]},"option":true}} +{"ref":"Has Room: Temple Defense Workshop (Tier 2)","better":0,"matchers":[{"string":"사원 방어물 작업장 (2등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_trap_room_2"]},"option":true}} +{"ref":"Has Room: Temple Nexus (Tier 3)","better":0,"matchers":[{"string":"사원의 연결부 (3등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_empowering_room_3"]},"option":true}} +{"ref":"Has Room: Throne of Atziri (Tier 3)","better":0,"matchers":[{"string":"앗지리의 왕좌 (3등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_queens_chambers_3"]},"option":true}} +{"ref":"Has Room: Tombs","better":0,"matchers":[{"string":"무덤"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_tombs"]},"option":true}} +{"ref":"Has Room: Torment Cells (Tier 1)","better":0,"matchers":[{"string":"고문용 감방 (1등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_torment_1"]},"option":true}} +{"ref":"Has Room: Torture Cages (Tier 2)","better":0,"matchers":[{"string":"고문용 창살 (2등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_torment_2"]},"option":true}} +{"ref":"Has Room: Toxic Grove (Tier 3)","better":0,"matchers":[{"string":"독성 수목원 (3등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_poison_room_3"]},"option":true}} +{"ref":"Has Room: Trap Workshop (Tier 1)","better":0,"matchers":[{"string":"덫 작업장 (1등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_trap_room_1"]},"option":true}} +{"ref":"Has Room: Treasury (Tier 2)","better":0,"matchers":[{"string":"보물 창고 (2등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_currency_vault_2"]},"option":true}} +{"ref":"Has Room: Tunnels","better":0,"matchers":[{"string":"터널"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_tunnels"]},"option":true}} +{"ref":"Has Room: Vault (Tier 1)","better":0,"matchers":[{"string":"금고실 (1등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_currency_vault_1"]},"option":true}} +{"ref":"Has Room: Warehouses (Tier 2)","better":0,"matchers":[{"string":"창고 (2등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_chests_2"]},"option":true}} +{"ref":"Has Room: Wealth of the Vaal (Tier 3)","better":0,"matchers":[{"string":"바알의 재물 (3등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_currency_vault_3"]},"option":true}} +{"ref":"Has Room: Workshop (Tier 1)","better":0,"matchers":[{"string":"작업장 (1등급)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_workshop_1"]},"option":true}} +{"ref":"Has Shaper Influence","better":1,"matchers":[{"string":"쉐이퍼 영향력이 부여되어 있습니다 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_has_shaper_influence"]}}} +{"ref":"Has Warlord Influence","better":1,"matchers":[{"string":"전쟁군주 영향력이 부여되어 있습니다 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_has_warlord_influence"]}}} +{"ref":"Haste has #% increased Aura Effect","better":1,"matchers":[{"string":"가속의 오라 효과 #% 증가"},{"string":"가속의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1240056437"]}}} +{"ref":"Haste has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"가속의 마나 점유 효율 #% 증가"},{"string":"가속의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_804667127","enchant.stat_939320550"]}}} +{"ref":"Haste has no Reservation","better":1,"matchers":[{"string":"가속으로 인한 점유 없음"}],"trade":{"ids":{"explicit":["explicit.stat_751322171"]}}} +{"ref":"Hatred has #% increased Aura Effect","better":1,"matchers":[{"string":"증오의 오라 효과 #% 증가"},{"string":"증오의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3742945352"],"implicit":["implicit.stat_3742945352"],"fractured":["fractured.stat_3742945352"]}}} +{"ref":"Hatred has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"증오의 마나 점유 효율 #% 증가"},{"string":"증오의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1920370417","explicit.stat_2156140483"],"fractured":["fractured.stat_2156140483"],"enchant":["enchant.stat_1920370417","enchant.stat_2156140483"]}}} +{"ref":"Hatred has no Reservation","better":1,"matchers":[{"string":"증오로 인한 점유 없음"}],"trade":{"ids":{"explicit":["explicit.stat_1391583476"]}}} +{"ref":"Haunted by Tormented Spirits","better":1,"matchers":[{"string":"고통받는 혼백에게 빙의됨"}],"trade":{"ids":{"enchant":["enchant.stat_1076392774"]}}} +{"ref":"Having a placed Banner does not prevent you gaining Valour","better":1,"matchers":[{"string":"설치된 깃발이 있는 동안에도 기백 획득 가능"}],"trade":{"ids":{"explicit":["explicit.stat_4068494864"]}}} +{"ref":"Heavy Strike has a #% chance to deal Double Damage","better":1,"matchers":[{"string":"묵직한 타격이 #%의 확률로 2배의 피해를 줌"}],"trade":{"ids":{"enchant":["enchant.stat_3760588941"]}}} +{"ref":"Heist Chests have #% chance to contain nothing","better":1,"matchers":[{"string":"강탈 상자가 #%의 확률로 비어 있음"}],"trade":{"ids":{"enchant":["enchant.stat_3038236553"]}}} +{"ref":"Heist Chests have a #% chance to contain more valuable Uniques","better":1,"matchers":[{"string":"#%의 확률로 강탈 상자에 들어 있는 고유 아이템의 가치 증가"},{"string":"강탈 상자에 들어 있는 고유 아이템의 가치 증가","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3288016752"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Basic Currency","better":1,"matchers":[{"string":"#%의 확률로 강탈 상자에 들어 있는 기본 화폐 복제"},{"string":"강탈 상자에 들어 있는 기본 화폐 복제","value":100}],"trade":{"ids":{"explicit":["explicit.stat_14664297"],"fractured":["fractured.stat_14664297"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Breach Splinters","better":1,"matchers":[{"string":"#%의 확률로 강탈 상자에 들어 있는 균열 파편 복제"},{"string":"강탈 상자에 들어 있는 균열 파편 복제","value":100}],"trade":{"ids":{"explicit":["explicit.stat_668504404"],"fractured":["fractured.stat_668504404"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Catalysts","better":1,"matchers":[{"string":"#%의 확률로 강탈 상자에 들어 있는 기폭제 복제"},{"string":"강탈 상자에 들어 있는 기폭제 복제","value":100}],"trade":{"ids":{"explicit":["explicit.stat_746798754"],"fractured":["fractured.stat_746798754"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Delirium Orbs and Splinters","better":1,"matchers":[{"string":"#%의 확률로 강탈 상자에 들어 있는 환영의 오브 및 파편 복제"},{"string":"강탈 상자에 들어 있는 환영의 오브 및 파편 복제","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1870262721"],"fractured":["fractured.stat_1870262721"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Divination Cards","better":1,"matchers":[{"string":"#%의 확률로 강탈 상자에 들어 있는 점술 카드 복제"},{"string":"강탈 상자에 들어 있는 점술 카드 복제","value":100}],"trade":{"ids":{"explicit":["explicit.stat_63302094"],"fractured":["fractured.stat_63302094"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Essences","better":1,"matchers":[{"string":"#%의 확률로 강탈 상자에 들어 있는 에센스 복제"},{"string":"강탈 상자에 들어 있는 에센스 복제","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2175178647"],"fractured":["fractured.stat_2175178647"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Jewels","better":1,"matchers":[{"string":"#%의 확률로 강탈 상자에 들어 있는 주얼 복제"},{"string":"강탈 상자에 들어 있는 주얼 복제","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2462090973"],"fractured":["fractured.stat_2462090973"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Legion Splinters","better":1,"matchers":[{"string":"#%의 확률로 강탈 상자에 들어 있는 군단 파편 복제"},{"string":"강탈 상자에 들어 있는 군단 파편 복제","value":100}],"trade":{"ids":{"explicit":["explicit.stat_145701647"],"fractured":["fractured.stat_145701647"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Map Fragments","better":1,"matchers":[{"string":"#%의 확률로 강탈 상자에 들어 있는 지도 조각 복제"},{"string":"강탈 상자에 들어 있는 지도 조각 복제","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3967122169"],"fractured":["fractured.stat_3967122169"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Maps","better":1,"matchers":[{"string":"#%의 확률로 강탈 상자에 들어 있는 지도 복제"},{"string":"강탈 상자에 들어 있는 지도 복제","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2885763444"],"fractured":["fractured.stat_2885763444"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Oils","better":1,"matchers":[{"string":"#%의 확률로 강탈 상자에 들어 있는 성유 복제"},{"string":"강탈 상자에 들어 있는 성유 복제","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2233905349"],"fractured":["fractured.stat_2233905349"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Scarabs","better":1,"matchers":[{"string":"#%의 확률로 강탈 상자에 들어 있는 갑충석 복제"},{"string":"강탈 상자에 들어 있는 갑충석 복제","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4216809421"],"fractured":["fractured.stat_4216809421"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate their contents","better":1,"matchers":[{"string":"#%의 확률로 강탈 상자의 내용물 복제"},{"string":"강탈 상자의 내용물 복제","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2747693610"]}}} +{"ref":"Herald of Agony has #% increased Buff Effect","better":1,"matchers":[{"string":"고통의 전령 버프 효과 #% 증가"},{"string":"고통의 전령 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2572910724"],"implicit":["implicit.stat_2572910724"]}}} +{"ref":"Herald of Agony has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"고통의 전령의 마나 점유 효율 #% 증가"},{"string":"고통의 전령의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1133703802","explicit.stat_1284151528"],"enchant":["enchant.stat_1133703802","enchant.stat_1284151528"]}}} +{"ref":"Herald of Ash has #% increased Buff Effect","better":1,"matchers":[{"string":"재의 전령 버프 효과 #% 증가"},{"string":"재의 전령 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2154349925"],"implicit":["implicit.stat_2154349925"]}}} +{"ref":"Herald of Ash has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"재의 전령의 마나 점유 효율 #% 증가"},{"string":"재의 전령의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2500442851","explicit.stat_3819451758"],"enchant":["enchant.stat_2500442851","enchant.stat_3819451758"]}}} +{"ref":"Herald of Ice has #% increased Buff Effect","better":1,"matchers":[{"string":"얼음의 전령 버프 효과 #% 증가"},{"string":"얼음의 전령 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1862926389"],"implicit":["implicit.stat_1862926389"]}}} +{"ref":"Herald of Ice has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"얼음의 전령의 마나 점유 효율 #% 증가"},{"string":"얼음의 전령의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3059700363","explicit.stat_3395872960"],"enchant":["enchant.stat_3059700363","enchant.stat_3395872960"]}}} +{"ref":"Herald of Purity has #% increased Buff Effect","better":1,"matchers":[{"string":"순수의 전령 버프 효과 #% 증가"},{"string":"순수의 전령 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2126027382"],"implicit":["implicit.stat_2126027382"]}}} +{"ref":"Herald of Purity has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"순수의 전령의 마나 점유 효율 #% 증가"},{"string":"순수의 전령의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1542765265","explicit.stat_2189040439"],"enchant":["enchant.stat_1542765265","enchant.stat_2189040439"]}}} +{"ref":"Herald of Thunder also creates a storm when you Shock an Enemy","better":1,"matchers":[{"string":"천둥의 전령이 적 감전 시 태풍 추가 생성"}],"trade":{"ids":{"explicit":["explicit.stat_1964607303"]}}} +{"ref":"Herald of Thunder has #% increased Buff Effect","better":1,"matchers":[{"string":"천둥의 전령 버프 효과 #% 증가"},{"string":"천둥의 전령 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3814686091"],"implicit":["implicit.stat_3814686091"]}}} +{"ref":"Herald of Thunder has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"천둥의 전령의 마나 점유 효율 #% 증가"},{"string":"천둥의 전령의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3817220109","explicit.stat_3959101898"],"enchant":["enchant.stat_3817220109","enchant.stat_3959101898"]}}} +{"ref":"Herald of Thunder's Storms Hit Enemies with #% increased Frequency","better":1,"matchers":[{"string":"천둥의 전령의 태풍이 적을 명중할 빈도 #% 감소"},{"string":"천둥의 전령의 태풍이 적을 명중할 빈도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_28299254"]}}} +{"ref":"Hex Master","better":1,"matchers":[{"string":"사술의 대가"}],"trade":{"ids":{"explicit":["explicit.stat_3849554033"],"scourge":["scourge.stat_3849554033"]}}} +{"ref":"Hex Reflection","better":1,"matchers":[{"string":"사술 반사"}],"trade":{"ids":{"explicit":["explicit.stat_1731672673"]}}} +{"ref":"Hexblast deals #% increased Damage","better":1,"matchers":[{"string":"사술 폭발이 주는 피해 #% 증가"},{"string":"사술 폭발이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2318562335"]}}} +{"ref":"Hexblast has #% increased Area of Effect","better":1,"matchers":[{"string":"사술 폭발의 효과 범위 #% 증가"},{"string":"사술 폭발의 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1811698551"]}}} +{"ref":"Hexblast has +#% chance to remove a Hex","better":-1,"matchers":[{"string":"사술 폭발이 사술을 제거하지 않을 확률 #%","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_120598364"]},"inverted":true}} +{"ref":"Hexes applied by Socketed Curse Skills are Reflected back to you","better":1,"matchers":[{"string":"장착된 저주 스킬의 사술이 플레이어에게 반사됨"}],"trade":{"ids":{"explicit":["explicit.stat_32859524"]}}} +{"ref":"Hexes Transfer to all Enemies within 3 metres when Hexed Enemy dies","better":1,"matchers":[{"string":"사술에 걸린 적 사망 시 사술이 범위 3미터 내의 모든 적에게 전이"}],"trade":{"ids":{"explicit":["explicit.stat_986616727"]}}} +{"ref":"Hinders nearby Enemies with #% reduced Movement Speed if used while not on Full Life","better":1,"matchers":[{"string":"생명력이 최대가 아닐 때 사용 시 주변의 적을 이동 방해하여 적의 이동 속도 #% 감소"}],"trade":{"ids":{"explicit":["explicit.stat_1462364052"],"fractured":["fractured.stat_1462364052"]}}} +{"ref":"Hinders nearby Enemies with #% reduced Movement Speed if used while not on Full Mana","better":1,"matchers":[{"string":"마나가 최대가 아닐 때 사용 시 주변의 적을 이동 방해하여 적의 이동 속도 #% 감소"}],"trade":{"ids":{"explicit":["explicit.stat_2313899959"],"fractured":["fractured.stat_2313899959"]}}} +{"ref":"Historic","better":1,"matchers":[{"string":"역사적인 순간"}],"trade":{"ids":{"explicit":["explicit.stat_3787436548"]}}} +{"ref":"Hits against Enemies Unnerved by you have #% increased Spell Critical Strike Chance","better":1,"matchers":[{"string":"플레이어가 낙담시킨 적에게 적중 시 주문 치명타 확률 #% 증가"},{"string":"플레이어가 낙담시킨 적에게 적중 시 주문 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2090693207"]}}} +{"ref":"Hits against Nearby Enemies have #% increased Critical Strike Chance","better":1,"matchers":[{"string":"주변의 적 명중 시 치명타 확률 #% 증가"},{"string":"주변의 적 명중 시 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3896241826"]}}} +{"ref":"Hits at Close Range with Shattering Steel Fortify","better":1,"matchers":[{"string":"근거리에서 강철 파편 명중 시 방어 상승"}],"trade":{"ids":{"enchant":["enchant.stat_611022108"]}}} +{"ref":"Hits from Socketed Vaal Skills ignore Enemy Monster Resistances","better":1,"matchers":[{"string":"장착된 바알 스킬 명중 시 적 몬스터 저항을 무시"}],"trade":{"ids":{"explicit":["explicit.stat_2540508981"]}}} +{"ref":"Hits from Socketed Vaal Skills ignore Enemy Physical Damage Reduction","better":1,"matchers":[{"string":"장착된 바알 스킬 명중 시 적 몬스터 물리 피해 감소를 무시"}],"trade":{"ids":{"explicit":["explicit.stat_1388374928"]}}} +{"ref":"Hits have #% chance to deal 50% more Area Damage","better":1,"matchers":[{"string":"명중 시 #%의 확률로 주는 범위 피해 50% 증폭"}],"trade":{"ids":{"explicit":["explicit.stat_2289189129"]}}} +{"ref":"Hits have #% chance to ignore Enemy Physical Damage Reduction","better":1,"matchers":[{"string":"명중 시 #%의 확률로 적 몬스터 물리 피해 감소를 무시"},{"string":"명중 시 적 몬스터 물리 피해 감소를 무시","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2839577586"],"implicit":["implicit.stat_2839577586"]}}} +{"ref":"Hits have #% chance to ignore Enemy Physical Damage Reduction while you have Sacrificial Zeal","better":1,"matchers":[{"string":"희생의 열의 상태에서 명중 시 #%의 확률로 적의 물리 피해 감소를 무시"},{"string":"희생의 열의 상태에서 명중 시 적의 물리 피해 감소를 무시","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4243208518"]}}} +{"ref":"Hits have #% increased Critical Strike Chance against you","better":1,"matchers":[{"string":"플레이어가 치명타로 피격될 확률 #% 증가"},{"string":"플레이어가 치명타로 피격될 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_165218607","explicit.stat_4270096386"],"implicit":["implicit.stat_165218607"]}}} +{"ref":"Hits have +#% additional Critical Strike Chance against you","dp":true,"better":1,"matchers":[{"string":"플레이어가 치명타로 피격될 확률 #% 추가"}],"trade":{"ids":{"scourge":["scourge.stat_4152537231"]}}} +{"ref":"Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Elder Items","better":1,"matchers":[{"string":"장착한 아이템이 모두 엘더 아이템일 경우, 적중 시 적 몬스터의 카오스 저항을 무시함"}],"trade":{"ids":{"explicit":["explicit.stat_89314980"]}}} +{"ref":"Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items","better":1,"matchers":[{"string":"장착한 아이템이 모두 쉐이퍼 아이템일 경우, 명중 시 적 몬스터의 카오스 저항을 무시함"}],"trade":{"ids":{"explicit":["explicit.stat_4234677275"]}}} +{"ref":"Hits ignore Enemy Monster Fire Resistance while you are Ignited","better":1,"matchers":[{"string":"플레이어가 점화 효과에 걸린 동안 적 화염 저항 무시"}],"trade":{"ids":{"explicit":["explicit.stat_4040152475"]}}} +{"ref":"Hits ignore Enemy Physical Damage Reduction if you've Blocked in the past 20 seconds","better":1,"matchers":[{"string":"지난 20초 이내에 막아낸 경우 명중 시 적 몬스터 물리 피해 감소를 무시"}],"trade":{"ids":{"explicit":["explicit.stat_3035931505"]}}} +{"ref":"Hits with Melee Movement Skills have #% chance to Fortify","better":1,"matchers":[{"string":"근접 이동 스킬 명중 시 #%의 확률로 방어 상승"}],"trade":{"ids":{"explicit":["explicit.stat_59547568"],"fractured":["fractured.stat_59547568"]}}} +{"ref":"Hits with this Weapon always Ignite, Freeze, and Shock","better":1,"matchers":[{"string":"이 무기로 적 명중 시 항상 점화, 동결 및 감전 유발"}],"trade":{"ids":{"explicit":["explicit.stat_2451774989"]}}} +{"ref":"Hits with this Weapon deal #% increased Damage to Frozen Enemies","better":1,"matchers":[{"string":"이 무기로 적 명중 시 동결된 적에게 주는 피해 #% 증가"},{"string":"이 무기로 적 명중 시 동결된 적에게 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_196313911"]}}} +{"ref":"Hits with this Weapon deal #% increased Damage to Ignited Enemies","better":1,"matchers":[{"string":"이 무기로 적 명중 시 점화된 적에게 주는 피해 #% 증가"},{"string":"이 무기로 적 명중 시 점화된 적에게 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3095345438"]}}} +{"ref":"Hits with this Weapon deal #% increased Damage to Shocked Enemies","better":1,"matchers":[{"string":"이 무기로 적 명중 시 감전된 적에게 주는 피해 #% 증가"},{"string":"이 무기로 적 명중 시 감전된 적에게 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1470894892"]}}} +{"ref":"Hits with this Weapon Freeze Enemies as though dealing #% more Damage","better":1,"matchers":[{"string":"이 무기로 적 명중 시 #% 증폭된 피해를 준 것처럼 적을 동결"},{"string":"이 무기로 적 명중 시 #% 감폭된 피해를 준 것처럼 적을 동결","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2071306253"]}}} +{"ref":"Hits with this Weapon gain #% of Physical Damage as Extra Cold or Lightning Damage","better":1,"matchers":[{"string":"이 무기로 적 명중 시 물리 피해의 #%를 추가 냉기 또는 번개 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1023968711"]}}} +{"ref":"Hits with this Weapon have #% chance to ignore Enemy Physical Damage Reduction","better":1,"matchers":[{"string":"이 무기로 명중 시 #%의 확률로 적의 물리 피해 감소를 무시"},{"string":"이 무기로 명중 시 적의 물리 피해 감소를 무시","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1907260000"],"implicit":["implicit.stat_1907260000"]}}} +{"ref":"Hits with this Weapon have +#% to Critical Strike Multiplier per Enemy Power","better":1,"matchers":[{"string":"이 무기로 적 명중 시 적의 위세 하나당 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1872107885"]}}} +{"ref":"Hits with this Weapon have Culling Strike against Bleeding Enemies","better":1,"matchers":[{"string":"출혈 중인 적을 이 무기로 공격 시 마무리 타격 가능"}],"trade":{"ids":{"explicit":["explicit.stat_2558253923"],"fractured":["fractured.stat_2558253923"]}}} +{"ref":"Hits with this Weapon Shock Enemies as though dealing #% more Damage","better":1,"matchers":[{"string":"이 무기로 적 명중 시 #% 증폭된 피해를 준 것처럼 적을 감전"},{"string":"이 무기로 적 명중 시 #% 감폭된 피해를 준 것처럼 적을 감전","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1386792919"]}}} +{"ref":"Hollow Palm Technique","better":1,"matchers":[{"string":"공허의 손아귀 기술"}],"trade":{"ids":{"explicit":["explicit.stat_3959337123"]}}} +{"ref":"Holy Flame Totem deals #% increased Damage","better":1,"matchers":[{"string":"신성한 화염 토템이 주는 피해 #% 증가"},{"string":"신성한 화염 토템이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2801853811"]}}} +{"ref":"Holy Flame Totem fires an additional Projectile","better":1,"matchers":[{"string":"신성한 화염 토템이 투사체 #개 추가 발사"},{"string":"신성한 화염 토템이 투사체 1개 추가 발사","value":1}],"trade":{"ids":{"enchant":["enchant.stat_775200811"]}}} +{"ref":"Holy Flame Totem has #% increased Projectile Speed","better":1,"matchers":[{"string":"신성한 화염 토템의 투사체 속도 #% 증가"},{"string":"신성한 화염 토템의 투사체 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4082863126"]}}} +{"ref":"Hydrosphere deals #% increased Damage","better":1,"matchers":[{"string":"물의 구체로 주는 피해 #% 증가"},{"string":"물의 구체로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1040582501"]}}} +{"ref":"Ice Golems deal #% increased Damage","better":1,"matchers":[{"string":"얼음 골렘이 주는 피해 #% 증가"},{"string":"얼음 골렘이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3816405721"]}}} +{"ref":"Ice Nova Always Freezes","better":1,"matchers":[{"string":"얼음 폭발 동결 확률 #%"},{"string":"얼음 폭발가 항상 동결 유발","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3269321994"]}}} +{"ref":"Ice Shot has #% increased Area of Effect angle","better":1,"matchers":[{"string":"얼음 화살의 효과 범위 각도 #% 증가"},{"string":"얼음 화살의 효과 범위 각도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3781924200"]}}} +{"ref":"Ice Spear fires an additional Projectile","better":1,"matchers":[{"string":"얼음 창이 투사체 #개 추가 발사"},{"string":"얼음 창이 투사체 1개 추가 발사","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3801130154"]}}} +{"ref":"Ice Spear travels #% reduced distance before changing forms","better":-1,"matchers":[{"string":"얼음 창의 형태 변경 전 이동 거리 #% 증가"},{"string":"얼음 창의 형태 변경 전 이동 거리 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3295914630"]},"inverted":true}} +{"ref":"Ice Trap Damage Penetrates #% Cold Resistance","better":1,"matchers":[{"string":"얼음 덫 피해가 #%의 냉기 저항 관통"}],"trade":{"ids":{"enchant":["enchant.stat_3698446010"]}}} +{"ref":"Icicle Mine deals #% increased Damage","better":1,"matchers":[{"string":"고드름 지뢰의 피해 #% 증가"},{"string":"고드름 지뢰의 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2363866815"]}}} +{"ref":"Icicle Mine has #% increased Throwing Speed","better":1,"matchers":[{"string":"고드름 지뢰 투척 속도 #% 증가"},{"string":"고드름 지뢰 투척 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3162144587"]}}} +{"ref":"Icicle Mine has +#% to Critical Strike Multiplier","better":1,"matchers":[{"string":"고드름 지뢰 치명타 피해 배율 #% 적용"}],"trade":{"ids":{"enchant":["enchant.stat_1555251"]}}} +{"ref":"If you Consumed a corpse Recently, you and nearby Allies Regenerate #% of Life per second","better":1,"matchers":[{"string":"최근 4초 이내 시신을 소모한 경우 자신 및 주변 동료들이 1초마다 생명력의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_4089969970"]}}} +{"ref":"If you have Blocked Recently, you and nearby Allies Regenerate #% of Life per second","better":1,"matchers":[{"string":"최근 4초 이내 막아낸 경우 자신 및 주변 동료들이 1초마다 생명력의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_176085824"]}}} +{"ref":"If you've Attacked Recently, you and nearby Allies have +#% Chance to Block Attack Damage","better":1,"matchers":[{"string":"최근 4초 이내 공격한 경우 자신 및\n주변 동료들의 공격 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1453771408"]}}} +{"ref":"If you've Cast a Spell Recently, you and nearby Allies have +#% Chance to Block Spell Damage","better":1,"matchers":[{"string":"최근 4초 이내 주문을 시전한 경우 자신 및\n주변 동료들의 주문 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1952992278"]}}} +{"ref":"If you've Warcried Recently, you and nearby allies have #% increased Attack, Cast and Movement Speed","better":1,"matchers":[{"string":"최근 4초 이내 함성을 시전한 경우 자신 및 주변 동료들의 공격, 시전 및 이동 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1464115829"]}}} +{"ref":"Ignited Enemies Burn #% slower","better":1,"matchers":[{"string":"점화된 적의 화상 #% 감속"}],"trade":{"ids":{"explicit":["explicit.stat_1619549198"]}}} +{"ref":"Ignited Enemies Killed by your Hits are destroyed","better":1,"matchers":[{"string":"플레이어에게 피격되어 점화가 유발된 적이 사망 시 파괴됨"}],"trade":{"ids":{"explicit":["explicit.stat_3173052379"]}}} +{"ref":"Ignites inflicted with this Weapon deal #% more Damage","better":1,"matchers":[{"string":"이 무기로 유발한 점화 피해 #% 증폭"},{"string":"이 무기로 유발한 점화 피해 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3165905801"]}}} +{"ref":"Ignites you inflict deal Damage #% faster","better":1,"matchers":[{"string":"플레이어가 유발한 점화가 피해 #% 가속"}],"trade":{"ids":{"explicit":["explicit.stat_2443492284"],"implicit":["implicit.stat_2443492284"],"fractured":["fractured.stat_2443492284"],"scourge":["scourge.stat_2443492284"]}}} +{"ref":"Ignites you inflict spread to other Enemies within # metre","better":1,"matchers":[{"string":"플레이어가 유발한 점화가 #미터 내의 다른 적에게 확산"}],"trade":{"ids":{"explicit":["explicit.stat_2011785027"],"implicit":["implicit.stat_2011785027"]}}} +{"ref":"Ignites you inflict with Attacks deal Damage #% faster","better":1,"matchers":[{"string":"플레이어의 공격으로 유발한 점화가 피해 #% 가속"}],"trade":{"ids":{"explicit":["explicit.stat_1420236871"]}}} +{"ref":"Ignore all Movement Penalties from Armour","better":1,"matchers":[{"string":"갑옷으로 인한 모든 이동 페널티 무시"}],"trade":{"ids":{"explicit":["explicit.stat_1311723478"],"fractured":["fractured.stat_1311723478"]}}} +{"ref":"Imbalanced Guard","better":1,"matchers":[{"string":"불안정한 방어"}],"trade":{"ids":{"explicit":["explicit.stat_3868073741"],"scourge":["scourge.stat_3868073741"]}}} +{"ref":"Immune to Burning Ground, Shocked Ground and Chilled Ground","better":1,"matchers":[{"string":"용암 지대, 감전 지대 및 얼음 지대에 면역"}],"trade":{"ids":{"explicit":["explicit.stat_3705740723"]}}} +{"ref":"Immune to Chill","better":1,"matchers":[{"string":"냉각에 면역"}],"trade":{"ids":{"explicit":["explicit.stat_3510243006"]}}} +{"ref":"Immune to Curses if Corrupted","better":1,"matchers":[{"string":"타락 시 저주 면역"}],"trade":{"ids":{"implicit":["implicit.stat_1954526925"]}}} +{"ref":"Immune to Curses if you've cast Despair in the past 10 seconds","better":1,"matchers":[{"string":"최근 10초 이내 절망을 시전한 경우 저주에 면역"}],"trade":{"ids":{"explicit":["explicit.stat_2773026887"]}}} +{"ref":"Immune to Curses while you have at least # Rage","better":1,"matchers":[{"string":"격노가 # 이상인 경우 저주에 면역"}],"trade":{"ids":{"explicit":["explicit.stat_534844170"]}}} +{"ref":"Immune to Elemental Ailments while affected by Glorious Madness","better":1,"matchers":[{"string":"찬란한 광기의 영향을 받는 동안 원소 상태 이상에 면역"}],"trade":{"ids":{"explicit":["explicit.stat_1065479853"]}}} +{"ref":"Immune to Exposure if you've cast Elemental Weakness in the past 10 seconds","better":1,"matchers":[{"string":"최근 10초 이내 원소 약화를 시전한 경우 노출에 면역"}],"trade":{"ids":{"explicit":["explicit.stat_2921954092"]}}} +{"ref":"Immune to Freeze and Chill while Ignited","better":1,"matchers":[{"string":"점화 상태에서 동결 및 냉각에 면역"}],"trade":{"ids":{"explicit":["explicit.stat_1512695141"]}}} +{"ref":"Immune to Freeze while affected by Purity of Ice","better":1,"matchers":[{"string":"얼음의 순수함의 영향을 받는 동안 동결에 면역"}],"trade":{"ids":{"explicit":["explicit.stat_2720072724"]}}} +{"ref":"Immune to Ignite while affected by Purity of Fire","better":1,"matchers":[{"string":"불의 순수함의 영향을 받는 동안 점화에 면역"}],"trade":{"ids":{"explicit":["explicit.stat_371612541"]}}} +{"ref":"Immune to Reflected Damage if you've cast Punishment in the past 10 seconds","better":1,"matchers":[{"string":"최근 10초 이내 응징을 시전한 경우 반사 피해에 면역"}],"trade":{"ids":{"explicit":["explicit.stat_2713909980"]}}} +{"ref":"Immune to Shock while affected by Purity of Lightning","better":1,"matchers":[{"string":"번개의 순수함의 영향을 받는 동안 감전에 면역"}],"trade":{"ids":{"explicit":["explicit.stat_281949611"]}}} +{"ref":"Immunity to Bleeding and Corrupted Blood during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 출혈 및 타락한 피 면역"}],"trade":{"ids":{"explicit":["explicit.stat_3965637181"],"fractured":["fractured.stat_3965637181"]}}} +{"ref":"Immunity to Freeze and Chill during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 동결 및 냉각 면역"}],"trade":{"ids":{"explicit":["explicit.stat_3838369929"],"fractured":["fractured.stat_3838369929"]}}} +{"ref":"Immunity to Freeze, Chill, Curses and Stuns during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 동결, 냉각, 저주 및 기절에 면역"}],"trade":{"ids":{"explicit":["explicit.stat_803730540"]}}} +{"ref":"Immunity to Ignite during Effect\nRemoves Burning on use","better":1,"matchers":[{"string":"효과를 받는 동안 점화에 면역\n사용 시 화상 제거"}],"trade":{"ids":{"explicit":["explicit.stat_658443507"],"fractured":["fractured.stat_658443507"]}}} +{"ref":"Immunity to Poison during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 중독 면역"}],"trade":{"ids":{"explicit":["explicit.stat_1349296959"],"fractured":["fractured.stat_1349296959"]}}} +{"ref":"Immunity to Shock during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 감전 면역"}],"trade":{"ids":{"explicit":["explicit.stat_589991690"],"fractured":["fractured.stat_589991690"]}}} +{"ref":"Impale Damage dealt to Enemies Impaled by you Overwhelms #% Physical Damage Reduction","better":1,"matchers":[{"string":"내가 꿰뚫은 적에게 주는 꿰뚫기 피해가 물리 피해 감소의 #% 압도"}],"trade":{"ids":{"explicit":["explicit.stat_3609854472"]}}} +{"ref":"Impales you inflict last # additional Hits while using Pride","better":1,"matchers":[{"string":"자부심을 사용하는 동안 플레이어가 유발하는 꿰뚫기 효과가 #회 추가 적중할 동안 유지됨"}],"trade":{"ids":{"explicit":["explicit.stat_1011863394"]}}} +{"ref":"Impales you inflict last 1 additional Hit","better":1,"matchers":[{"string":"플레이어가 부여한 꿰뚫기 효과가 #회 적중할 동안 유지됨"},{"string":"플레이어가 부여한 꿰뚫기 효과가 1회 추가로 적중할 동안 유지됨","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3425951133"]}}} +{"ref":"Implicit Modifier magnitudes are doubled","better":1,"matchers":[{"string":"고정 속성 부여 규모 2배 증가"}],"trade":{"ids":{"explicit":["explicit.stat_4249200326"]}}} +{"ref":"Implicit Modifier magnitudes are tripled","better":1,"matchers":[{"string":"고정 속성 부여 규모 3배 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3910859570"]}}} +{"ref":"Implicit Modifiers Cannot Be Changed","better":1,"matchers":[{"string":"고정 속성 변경 불가"}],"trade":{"ids":{"implicit":["implicit.stat_532463031"]}}} +{"ref":"Incinerate has #% increased Area of Effect","better":1,"matchers":[{"string":"소각의 효과 범위 #% 증가"},{"string":"소각의 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2562208244"]}}} +{"ref":"Incinerate has +# to maximum stages","better":1,"matchers":[{"string":"소각의 단계 최대치 #"}],"trade":{"ids":{"enchant":["enchant.stat_3867484047"]}}} +{"ref":"Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed","better":1,"matchers":[{"string":"시전 속도 증가 및 감소가 덫 투척 속도에도 적용"}],"trade":{"ids":{"explicit":["explicit.stat_3520223758"]}}} +{"ref":"Increases and Reductions to Cast Speed apply to Attack Speed","better":1,"matchers":[{"string":"시전 속도 증가 및 감소가 해당 값의 #%만큼 공격 속도에도 적용"},{"string":"시전 속도 증가 및 감소가 공격 속도에도 적용","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4126447694"]}}} +{"ref":"Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage","better":1,"matchers":[{"string":"반경 내 냉기 피해의 증가 및 감소가 변형되어 물리 피해에 적용"}],"trade":{"ids":{"explicit":["explicit.stat_3772485866"]}}} +{"ref":"Increases and Reductions to Damage with Vaal Skills also apply to Non-Vaal Skills","better":1,"matchers":[{"string":"바알 스킬 피해의 증가 및 감소 수치가 비-바알 스킬에도 적용"}],"trade":{"ids":{"implicit":["implicit.stat_3871212304"]}}} +{"ref":"Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value","better":1,"matchers":[{"string":"반경 내 에너지 보호막 증가 및 감소가 변형되어 해당 값의 200%가 방어도에 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2605119037"],"fractured":["fractured.stat_2605119037"]}}} +{"ref":"Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield","better":1,"matchers":[{"string":"반경 내 생명력 증가 및 감소가 변형되어 에너지 보호막에 적용"}],"trade":{"ids":{"explicit":["explicit.stat_3194864913"]}}} +{"ref":"Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value","better":1,"matchers":[{"string":"반경 내 생명력 증가 및 감소가 변형되어 해당 값의 200%가 마나에 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2479374428"]}}} +{"ref":"Increases and Reductions to Light Radius also apply to Accuracy","better":1,"matchers":[{"string":"시야 반경 증가 및 감소 수치를 정확도에도 적용"}],"trade":{"ids":{"explicit":["explicit.stat_411986876"]}}} +{"ref":"Increases and Reductions to Light Radius also apply to Area of Effect at #% of their value","better":1,"matchers":[{"string":"시야 반경 증가 및 감소 수치의 #%를 효과 범위에도 적용"}],"trade":{"ids":{"explicit":["explicit.stat_1138742368"]}}} +{"ref":"Increases and Reductions to Light Radius also apply to Damage","better":1,"matchers":[{"string":"시야 반경 증가 및 감소 수치를 피해에도 적용"}],"trade":{"ids":{"explicit":["explicit.stat_3519807287"]}}} +{"ref":"Increases and Reductions to Maximum Energy Shield instead apply to Ward","better":1,"matchers":[{"string":"에너지 보호막 최대치 증가 및 감소가 에너지 보호막이 아닌 수호에 적용"}],"trade":{"ids":{"explicit":["explicit.stat_4100175081"]}}} +{"ref":"Increases and Reductions to Minion Damage also affect you at 150% of their value","better":1,"matchers":[{"string":"소환수 피해의 증가 및 감소 수치의 150%가 자신에게도 적용"}],"trade":{"ids":{"explicit":["explicit.stat_1433144735"]}}} +{"ref":"Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage","better":1,"matchers":[{"string":"반경 내 기타 피해 유형의 증가 및 감소가 변형되어 화염 피해에 적용"}],"trade":{"ids":{"explicit":["explicit.stat_3446950357"]}}} +{"ref":"Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage","better":1,"matchers":[{"string":"반경 내 물리 피해의 증가 및 감소가 변형되어 냉기 피해에 적용"}],"trade":{"ids":{"explicit":["explicit.stat_738100799"]}}} +{"ref":"Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value","better":1,"matchers":[{"string":"주문 피해에 적용되는 증가 및 감소 수치의 150%를 공격에도 적용"}],"trade":{"ids":{"explicit":["explicit.stat_185598681"]}}} +{"ref":"Infernal Blow Debuff deals an additional #% of Damage per Charge","better":1,"matchers":[{"string":"지옥불 맹타 디버프가 충전 하나당 주는 추가 피해 #%"}],"trade":{"ids":{"enchant":["enchant.stat_105839441"]}}} +{"ref":"Infernal Cry has #% increased Area of Effect","better":1,"matchers":[{"string":"지옥불 함성의 효과 범위 #% 증가"}],"trade":{"ids":{"implicit":["implicit.stat_631097842"]}}} +{"ref":"Infernal Cry has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"지옥불 함성의 재사용 대기시간 회복 속도 #% 증가"}],"trade":{"ids":{"enchant":["enchant.stat_2702698464"]}}} +{"ref":"Inflict Cold Exposure on Hit, applying #% to Cold Resistance","better":-1,"matchers":[{"string":"명중 시 냉기 노출을 유발하여 냉기 저항 #% 적용"}],"trade":{"ids":{"implicit":["implicit.stat_3005701891"]}}} +{"ref":"Inflict Decay on Enemies you Curse with Hex Skills, dealing # Chaos Damage per Second for 8 Seconds","better":1,"matchers":[{"string":"사술 또는 징표 스킬로 저주하는 적에게 부패를 유발하여 8초 동안 1초마다 #의 카오스 피해를 줌"}],"trade":{"ids":{"explicit":["explicit.stat_773846741"]}}} +{"ref":"Inflict Fire Exposure on Hit if you've cast Flammability in the past 10 seconds","better":1,"matchers":[{"string":"최근 10초 이내 인화성을 시전한 경우 명중 시 화염 노출 유발"}],"trade":{"ids":{"explicit":["explicit.stat_3259812992"]}}} +{"ref":"Inflict Fire Exposure on Hit, applying #% to Fire Resistance","better":-1,"matchers":[{"string":"명중 시 화염 노출을 유발하여 화염 저항 #% 적용"}],"trade":{"ids":{"implicit":["implicit.stat_1309840354"]}}} +{"ref":"Inflict Fire, Cold and Lightning Exposure on nearby Enemies when used","better":1,"matchers":[{"string":"사용 시 주변의 적에게 화염, 냉기, 번개 노출 유발"}],"trade":{"ids":{"explicit":["explicit.stat_3933226405"]}}} +{"ref":"Inflict Lightning Exposure on Hit if you've cast Conductivity in the past 10 seconds","better":1,"matchers":[{"string":"최근 10초 이내 전도성을 시전한 경우 명중 시 번개 노출 유발"}],"trade":{"ids":{"explicit":["explicit.stat_3339663313"]}}} +{"ref":"Inflict Lightning Exposure on Hit, applying #% to Lightning Resistance","better":-1,"matchers":[{"string":"명중 시 번개 노출을 유발하여 번개 저항 #% 적용"}],"trade":{"ids":{"implicit":["implicit.stat_981753179"]}}} +{"ref":"Inflict non-Damaging Ailments as though dealing #% more Damage","better":1,"matchers":[{"string":"비-피해 상태 이상 효과를 #% 증폭된 피해를 준 것처럼 부여"},{"string":"비-피해 상태 이상 효과를 #% 감폭된 피해를 준 것처럼 부여","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1345113611"]}}} +{"ref":"Inflict Withered for 2 seconds on Hit if you've cast Despair in the past 10 seconds","better":1,"matchers":[{"string":"최근 10초 이내 절망을 시전한 경우 명중 시 2초 동안 위축 유발"}],"trade":{"ids":{"explicit":["explicit.stat_1904031052"]}}} +{"ref":"Inflicts a random Hex on you when your Totems die","better":1,"matchers":[{"string":"플레이어의 토템이 파괴되면 플레이어가 무작위 사술에 걸림"}],"trade":{"ids":{"explicit":["explicit.stat_2918129907"]}}} +{"ref":"Inflicts Mana Burn on you when you Hit an Enemy with a Melee Weapon","better":1,"matchers":[{"string":"근접 무기로 적 명중 시 자신에게 마나 연소 #개 유발"},{"string":"근접 무기로 적 명중 시 자신에게 마나 연소 유발","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1330482101"]}}} +{"ref":"Inner Conviction","better":1,"matchers":[{"string":"내면의 신념(Inner Conviction)"}],"trade":{"ids":{"explicit":["explicit.stat_354080151"]}}} +{"ref":"Instant Recovery when on Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태일 때 즉시 회복"}],"trade":{"ids":{"explicit":["explicit.stat_3812107348"],"fractured":["fractured.stat_3812107348"]}}} +{"ref":"Insufficient Mana doesn't prevent your Melee Attacks","better":1,"matchers":[{"string":"마나가 부족해도 근접 공격 스킬 사용 가능"}],"trade":{"ids":{"explicit":["explicit.stat_1852317988"]}}} +{"ref":"Intelligence from Passives in Radius is Transformed to Dexterity","better":1,"matchers":[{"string":"반경 내 패시브 스킬로 획득하는 지능을 민첩으로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_1608425196"]}}} +{"ref":"Intelligence from Passives in Radius is Transformed to Strength","better":1,"matchers":[{"string":"반경 내 패시브 스킬로 획득하는 지능을 힘으로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_1285587221"]}}} +{"ref":"Intelligence provides no inherent bonus to Maximum Mana","better":1,"matchers":[{"string":"지능에 따른 마나 최대치 보너스 없음"}],"trade":{"ids":{"explicit":["explicit.stat_2546599258"]}}} +{"ref":"Intimidate Enemies on Hit if you've cast Punishment in the past 10 seconds","better":1,"matchers":[{"string":"최근 10초 이내 응징을 시전한 경우 명중 시 적 위협"}],"trade":{"ids":{"explicit":["explicit.stat_91505809"]}}} +{"ref":"Intimidating Cry has #% increased Area of Effect","better":1,"matchers":[{"string":"위협의 함성의 효과 범위 #% 증가"}],"trade":{"ids":{"enchant":["enchant.stat_1088946611"]}}} +{"ref":"Intimidating Cry has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"위협의 함성의 재사용 대기시간 회복 속도 #% 증가"}],"trade":{"ids":{"implicit":["implicit.stat_1134560807"],"enchant":["enchant.stat_1134560807"]}}} +{"ref":"Iron Grip","better":1,"matchers":[{"string":"강철 손아귀"}],"trade":{"ids":{"explicit":["explicit.stat_573347393"],"fractured":["fractured.stat_573347393"],"scourge":["scourge.stat_573347393"]}}} +{"ref":"Iron Reflexes","better":1,"matchers":[{"string":"철의 반사신경"}],"trade":{"ids":{"explicit":["explicit.stat_326965591"],"scourge":["scourge.stat_326965591"]}}} +{"ref":"Iron Reflexes while stationary","better":1,"matchers":[{"string":"정지 상태일 때 철의 반사신경"}],"trade":{"ids":{"explicit":["explicit.stat_187998220"]}}} +{"ref":"Iron Will","better":1,"matchers":[{"string":"강철의 의지"}],"trade":{"ids":{"explicit":["explicit.stat_4092697134"],"fractured":["fractured.stat_4092697134"],"scourge":["scourge.stat_4092697134"]}}} +{"ref":"It That Fled's Veiled","better":0,"matchers":[{"string":"달아난 그것의 장막의"}],"trade":{"ids":{"veiled":["veiled.mod_55787"]}}} +{"ref":"Item drops on Death if Equipped by an Animated Guardian","better":1,"matchers":[{"string":"기동된 수호자에 장착된 아이템이 사망 시 떨어짐"}],"trade":{"ids":{"explicit":["explicit.stat_3909846940"],"implicit":["implicit.stat_3909846940"],"fractured":["fractured.stat_3909846940"],"crafted":["crafted.stat_3909846940"]}}} +{"ref":"Item sells for much more to vendors","better":1,"matchers":[{"string":"상인에게 더 비싸게 아이템 판매"}],"trade":{"ids":{"implicit":["implicit.stat_3513534186"]}}} +{"ref":"Items and Gems have #% increased Attribute Requirements","better":1,"matchers":[{"string":"아이템 및 젬의 능력치 요구사항 #% 증가"},{"string":"아이템 및 젬의 능력치 요구사항 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_752930724"],"fractured":["fractured.stat_752930724"]}}} +{"ref":"Karui Stone Hook","better":1,"matchers":[{"string":"카루이 돌 낚싯바늘","value":1},{"string":"에조미어 껍질 낚싯바늘","value":2},{"string":"바알 영혼 낚싯바늘","value":3},{"string":"영원의 철 낚싯바늘","value":4}],"trade":{"ids":{"explicit":["explicit.stat_2054162825"],"fractured":["fractured.stat_2054162825"]}}} +{"ref":"Kill Enemies that have 15% or lower Life on Hit if The Searing Exarch is dominant","better":1,"matchers":[{"string":"작열의 총주교가 지배적인 경우 명중 시 생명력이 15% 이하인 적 처치"}],"trade":{"ids":{"explicit":["explicit.stat_3768948090"]}}} +{"ref":"Kills grant an additional Vaal Soul if you have Rampaged Recently","better":1,"matchers":[{"string":"최근 4초 이내 광란을 보유했던 경우, 처치 시 바알 영혼 1개 추가 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3271016161"]}}} +{"ref":"Kinetic Blast has a #% chance for an additional explosion","better":1,"matchers":[{"string":"역학 폭발이 1회 추가 폭발할 확률 #%"},{"string":"역학 폭발이 1회 추가 폭발","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3105097589"]}}} +{"ref":"Kinetic Bolt changes direction # additional time","better":1,"matchers":[{"string":"역학 투사체 방향 전환 #회 추가"}],"trade":{"ids":{"enchant":["enchant.stat_1460506005"]}}} +{"ref":"Kinetic Bolt has #% increased Attack Speed","better":1,"matchers":[{"string":"역학 투사체 공격 속도 #% 증가"},{"string":"역학 투사체 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2244239056"]}}} +{"ref":"Kinetic Bolt has #% increased Projectile Speed","better":1,"matchers":[{"string":"역학 투사체의 투사체 속도 #% 증가"},{"string":"역학 투사체의 투사체 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2482018205"]}}} +{"ref":"Knockback direction is reversed","better":1,"matchers":[{"string":"밀어내기 방향 반전"}],"trade":{"ids":{"explicit":["explicit.stat_281201999"]}}} +{"ref":"Knocks Back Enemies in an Area when you use a Flask","better":1,"matchers":[{"string":"플라스크 사용 시 범위 내 적을 밀어냄"}],"trade":{"ids":{"explicit":["explicit.stat_3591397930"]}}} +{"ref":"Korell's Veiled","better":0,"matchers":[{"string":"코렐의 장막의"}],"trade":{"ids":{"veiled":["veiled.mod_44855"]}}} +{"ref":"Lacerate deals # to # added Physical Damage against Bleeding Enemies","better":1,"matchers":[{"string":"출혈 중인 적을 상대로 피부 찢기 사용 시 물리 피해 #~# 추가"}],"trade":{"ids":{"enchant":["enchant.stat_732320584"]}}} +{"ref":"Lancing Steel deals #% increased Damage","better":1,"matchers":[{"string":"강철 관통으로 주는 피해 #% 증가"},{"string":"강철 관통으로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2159486200"]}}} +{"ref":"Lancing Steel fires an additional Projectile","better":1,"matchers":[{"string":"강철 관통이 투사체 #개 추가 발사"},{"string":"강철 관통이 투사체 1개 추가 발사","value":1}],"trade":{"ids":{"enchant":["enchant.stat_4081185348"]}}} +{"ref":"Lancing Steel has #% chance to count as consuming Steel Shards without Consuming them","better":1,"matchers":[{"string":"강철 관통이 #%의 확률로 강철 조각을 소모하지 않아도 소모한 것으로 간주"}],"trade":{"ids":{"enchant":["enchant.stat_2891251105"]}}} +{"ref":"Leech Energy Shield instead of Life","better":1,"matchers":[{"string":"생명력 대신 에너지 보호막 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_3346092312"]}}} +{"ref":"Left ring slot: #% increased Duration of Ailments on You","better":1,"matchers":[{"string":"왼쪽 반지 슬롯: 플레이어에게 적용되는 상태 이상 지속시간 #% 증가"},{"string":"왼쪽 반지 슬롯: 플레이어에게 적용되는 상태 이상 지속시간 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_221309863"]}}} +{"ref":"Left ring slot: #% increased Effect of Curses on you","better":1,"matchers":[{"string":"왼쪽 반지 슬롯: 플레이어에게 적용되는 저주 효과 #% 증가"},{"string":"왼쪽 반지 슬롯: 플레이어에게 적용되는 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_496053892"]}}} +{"ref":"Left ring slot: #% increased Mana Regeneration Rate","better":1,"matchers":[{"string":"왼쪽 반지 슬롯: 마나 재생 속도 #%"}],"trade":{"ids":{"explicit":["explicit.stat_195090426"]}}} +{"ref":"Left ring slot: #% increased Skill Effect Duration","better":1,"matchers":[{"string":"왼쪽 반지 슬롯: 스킬 효과 지속시간 #% 증가"},{"string":"왼쪽 반지 슬롯: 스킬 효과 지속시간 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3320868777"]}}} +{"ref":"Left ring slot: #% of Cold Damage from Hits taken as Fire Damage","better":1,"matchers":[{"string":"왼쪽 반지 슬롯: 피격 시 냉기 피해의 #%를 화염 피해로 받음"}],"trade":{"ids":{"implicit":["implicit.stat_1323927995"]}}} +{"ref":"Left ring slot: #% of Fire Damage from Hits taken as Lightning Damage","better":1,"matchers":[{"string":"왼쪽 반지 슬롯: 피격 시 화염 피해의 #%를 번개 피해로 받음"}],"trade":{"ids":{"implicit":["implicit.stat_17730902"]}}} +{"ref":"Left ring slot: #% of Lightning Damage from Hits taken as Cold Damage","better":1,"matchers":[{"string":"왼쪽 반지 슬롯: 피격 시 번개 피해의 #%를 냉기 피해로 받음"}],"trade":{"ids":{"implicit":["implicit.stat_450178102"]}}} +{"ref":"Left ring slot: +# to maximum Energy Shield","better":1,"matchers":[{"string":"왼쪽 반지 슬롯: 에너지 보호막 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_1497601437"]}}} +{"ref":"Left Ring slot: Cover Enemies in Ash for # seconds when you Ignite them","better":1,"matchers":[{"string":"왼쪽 반지 슬롯: 적 점화 시 #초 동안 적을 재로 덮음"}],"trade":{"ids":{"explicit":["explicit.stat_2533512212"]}}} +{"ref":"Left ring slot: Minions take #% increased Damage","better":1,"matchers":[{"string":"왼쪽 반지 슬롯: 소환수가 받는 피해 #% 증가"},{"string":"왼쪽 반지 슬롯: 소환수가 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1916904011"]}}} +{"ref":"Left ring slot: Projectiles from Spells cannot Chain","better":1,"matchers":[{"string":"왼쪽 반지 슬롯: 주문의 투사체 연쇄 불가"}],"trade":{"ids":{"explicit":["explicit.stat_3647242059"]}}} +{"ref":"Left ring slot: Projectiles from Spells Fork","better":1,"matchers":[{"string":"왼쪽 반지 슬롯: 주문의 투사체가 갈라짐"}],"trade":{"ids":{"explicit":["explicit.stat_2437476305"]}}} +{"ref":"Left ring slot: Regenerate # Mana per Second","better":1,"matchers":[{"string":"왼쪽 반지 슬롯: 1초마다 마나 # 재생"}],"trade":{"ids":{"explicit":["explicit.stat_3241234878"]}}} +{"ref":"Left ring slot: You and your Minions take #% reduced Reflected Elemental Damage","better":-1,"matchers":[{"string":"왼쪽 반지 슬롯: 자신 및 소환수가 반사로 받는 원소 피해 #% 증가"},{"string":"왼쪽 반지 슬롯: 자신 및 소환수가 반사로 받는 원소 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2422197812"]},"inverted":true}} +{"ref":"Left ring slot: You cannot Recharge or Regenerate Energy Shield","better":1,"matchers":[{"string":"왼쪽 반지 슬롯: 에너지 보호막 재충전 또는 재생 불가"}],"trade":{"ids":{"explicit":["explicit.stat_4263540840"]}}} +{"ref":"Left Ring Slot: Your Chilling Skitterbot's Aura applies Socketed Hex Curse instead","better":1,"matchers":[{"string":"왼쪽 반지 슬롯: 냉각 원격 기폭 장치의 오라 대신 장착된 사술 저주 부여"}],"trade":{"ids":{"explicit":["explicit.stat_625885138"]}}} +{"ref":"Leftmost # Magic Utility Flask constantly applies its Flask Effect to you","better":1,"matchers":[{"string":"가장 왼쪽에 있는 마법 특수 플라스크 #개가 지속적으로 플라스크 효과를 자신에게 적용함"}],"trade":{"ids":{"explicit":["explicit.stat_2388347909"]}}} +{"ref":"Leo's Veiled","better":0,"matchers":[{"string":"레오의 장막의"}],"trade":{"ids":{"veiled":["veiled.mod_3258"]}}} +{"ref":"Lethe Shade","better":1,"matchers":[{"string":"레테의 그늘"}],"trade":{"ids":{"explicit":["explicit.stat_1678358883"],"fractured":["fractured.stat_1678358883"],"scourge":["scourge.stat_1678358883"]}}} +{"ref":"Life and Mana Leech are instant during effect","better":1,"matchers":[{"string":"플라스크 효과를 받는 동안 생명력 및 마나 흡수 즉시 적용"}],"trade":{"ids":{"explicit":["explicit.stat_1102362593"]}}} +{"ref":"Life and Mana Leech from Critical Strikes are instant","better":1,"matchers":[{"string":"치명타 시 생명력 및 마나 흡수 즉시 적용"}],"trade":{"ids":{"explicit":["explicit.stat_3389184522"]}}} +{"ref":"Life Flasks gain # Charge every 3 seconds","better":1,"matchers":[{"string":"3초마다 생명력 플라스크 # 충전"}],"trade":{"ids":{"explicit":["explicit.stat_2592686757"],"scourge":["scourge.stat_2592686757"]}}} +{"ref":"Life Flasks used while on Low Life apply Recovery Instantly","better":1,"matchers":[{"string":"낮은 생명력 상태일 때 생명력 플라스크 사용 시 즉시 회복 적용"}],"trade":{"ids":{"explicit":["explicit.stat_1200347828"]}}} +{"ref":"Life Leech effects are not removed when Unreserved Life is Filled","better":1,"matchers":[{"string":"점유되지 않은 생명력이 찼을 때 생명력 흡수 효과가 제거되지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_2108380422"]}}} +{"ref":"Life Leech from Exerted Attacks is instant","better":1,"matchers":[{"string":"전력 공격 시 생명력 흡수 즉시 적용"}],"trade":{"ids":{"explicit":["explicit.stat_272906215"]}}} +{"ref":"Life Leech from Hits with this Weapon is instant","better":1,"matchers":[{"string":"이 무기로 적 명중 시 생명력 흡수 즉시 적용"}],"trade":{"ids":{"explicit":["explicit.stat_1765389199"]}}} +{"ref":"Life Recovery from Flasks also applies to Energy Shield during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 플라스크로 얻는 생명력 회복이 에너지 보호막에도 적용"}],"trade":{"ids":{"explicit":["explicit.stat_74462130"]}}} +{"ref":"Life Recovery from Regeneration is not applied","better":1,"matchers":[{"string":"재생으로 인한 생명력 회복이 적용되지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_3947672598"]}}} +{"ref":"Life that would be lost by taking Damage is instead Reserved\nuntil you take no Damage to Life for # second","better":1,"matchers":[{"string":"생명력이 피해를 받아 상실되는 대신 점유됨, 해당 효과는 #초 동안 생명력 피해를 받지 않을 때까지 지속됨"}],"trade":{"ids":{"explicit":["explicit.stat_1777740627"]}}} +{"ref":"Light Radius is based on Energy Shield instead of Life","better":1,"matchers":[{"string":"시야 반경이 생명력 대신 에너지 보호막에 비례함"}],"trade":{"ids":{"explicit":["explicit.stat_3836017971"],"fractured":["fractured.stat_3836017971"],"crafted":["crafted.stat_3836017971"]}}} +{"ref":"Lightning Arrow hits # additional Enemy","better":1,"matchers":[{"string":"번개 화살이 적 #명 추가 적중"}],"trade":{"ids":{"enchant":["enchant.stat_1901955093"]}}} +{"ref":"Lightning Conduit deals #% increased Damage","better":1,"matchers":[{"string":"번개 도관으로 주는 피해 #% 증가"},{"string":"번개 도관으로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2511245659"]}}} +{"ref":"Lightning Conduit has #% increased Area of Effect","better":1,"matchers":[{"string":"번개 도관의 효과 범위 #% 증가"},{"string":"번개 도관의 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2252888886"]}}} +{"ref":"Lightning Conduit has #% increased Cast Speed","better":1,"matchers":[{"string":"번개 도관의 시전 속도 #% 증가"}],"trade":{"ids":{"enchant":["enchant.stat_2437571727"]}}} +{"ref":"Lightning Damage of Enemies Hitting you is Lucky","better":1,"matchers":[{"string":"적으로부터 피격되어 받는 번개 피해에 행운 적용"}],"trade":{"ids":{"explicit":["explicit.stat_4224965099"]}}} +{"ref":"Lightning Damage with Non-Critical Strikes is Lucky","better":1,"matchers":[{"string":"비-치명타로 주는 번개 피해에 행운 적용"}],"trade":{"ids":{"explicit":["explicit.stat_1430928642"]}}} +{"ref":"Lightning Golems deal #% increased Damage","better":1,"matchers":[{"string":"번개 골렘이 주는 피해 #% 증가"},{"string":"번개 골렘이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3280107027"]}}} +{"ref":"Lightning Resistance cannot be Penetrated","better":1,"matchers":[{"string":"번개 저항이 관통되지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_3515979920"],"fractured":["fractured.stat_3515979920"]}}} +{"ref":"Lightning Resistance does not affect Lightning Damage taken","better":1,"matchers":[{"string":"번개 저항이 받는 번개 피해에 영향을 미치지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_3999959974"]}}} +{"ref":"Lightning Resistance is #%","better":1,"matchers":[{"string":"Lightning Resistance is #%"}],"trade":{"ids":{"explicit":["explicit.stat_1942151132"]}}} +{"ref":"Lightning Skills have #% chance to Poison on Hit","better":1,"matchers":[{"string":"번개 스킬 명중 시 #%의 확률로 중독 유발"}],"trade":{"ids":{"explicit":["explicit.stat_949718413"]}}} +{"ref":"Lightning Spire Trap deals #% increased Damage","better":1,"matchers":[{"string":"번개 첨탑 덫이 주는 피해 #% 증가"},{"string":"번개 첨탑 덫이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_982975385"]}}} +{"ref":"Lightning Spire Trap has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"번개 첨탑 덫 재사용 대기시간 회복 속도 #% 증가"},{"string":"번개 첨탑 덫 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1570047087"]}}} +{"ref":"Lightning Spire Trap has #% increased Skill Effect Duration","better":1,"matchers":[{"string":"번개 첨탑 덫의 스킬 효과 지속시간 #% 증가"},{"string":"번개 첨탑 덫의 스킬 효과 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2207890291"]}}} +{"ref":"Lightning Spire Trap strikes an additional area","better":1,"matchers":[{"string":"번개 첨탑 덫이 지역 #개 추가 타격"},{"string":"번개 첨탑 덫이 지역 1개 추가 타격","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1104507216"]}}} +{"ref":"Lightning Strike fires an additional Projectile","better":1,"matchers":[{"string":"번개 타격이 투사체 #개 추가 발사"},{"string":"번개 타격이 투사체 1개 추가 발사","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1213035889"]}}} +{"ref":"Lightning Strike pierces an additional Target","better":1,"matchers":[{"string":"번개 타격이 대상 #개 추가 관통"},{"string":"번개 타격이 대상 1개 추가 관통","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3134777190"]}}} +{"ref":"Lightning Trap Damage Penetrates #% Lightning Resistance","better":1,"matchers":[{"string":"번개 덫 피해가 #%의 번개 저항 관통"}],"trade":{"ids":{"enchant":["enchant.stat_1557531966"]}}} +{"ref":"Lightning Trap pierces an additional Target","better":1,"matchers":[{"string":"번개 덫이 대상 #개 추가 관통"},{"string":"번개 덫이 대상 1개 추가 관통","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3764410821"]}}} +{"ref":"Link Skills have #% increased Cast Speed","better":1,"matchers":[{"string":"연결 스킬의 시전 속도 #% 증가"},{"string":"연결 스킬의 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2597985144"]}}} +{"ref":"Link Skills have #% increased Skill Effect Duration","better":1,"matchers":[{"string":"연결 스킬의 스킬 효과 지속시간 #% 증가"},{"string":"연결 스킬의 스킬 효과 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1214762172"]}}} +{"ref":"Linked Targets always count as in range of Non-Curse Auras from your Skills\nNon-Curse Auras from your Skills only apply to you and Linked Targets","better":1,"matchers":[{"string":"연결된 대상이 항상 자신의 비-저주 오라 스킬의 범위 내에 있는 것으로 간주\n자신의 비-저주 오라 스킬이 연결된 대상과 자신에게만 적용"}],"trade":{"ids":{"explicit":["explicit.stat_3678739763"]}}} +{"ref":"Linked Targets Cannot Die for # seconds after you Die","better":1,"matchers":[{"string":"플레이어 사망 후 #초 동안 연결된 대상이 사망할 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_3251211004"]}}} +{"ref":"Lockdown occurs immediately when Alert Level is full","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"경보 레벨이 최대일 때 즉시 폐쇄 발동"}],"trade":{"ids":{"explicit":["explicit.stat_1239251576"],"fractured":["fractured.stat_1239251576"]}}} +{"ref":"Lose # Life per second","better":-1,"matchers":[{"string":"1초마다 # 생명력 상실"}],"trade":{"ids":{"explicit":["explicit.stat_771127912"],"fractured":["fractured.stat_771127912"],"crafted":["crafted.stat_771127912"]}}} +{"ref":"Lose # Mana per Second","better":-1,"matchers":[{"string":"1초마다 # 마나 상실"}],"trade":{"ids":{"explicit":["explicit.stat_2589042711","explicit.stat_838272676"],"scourge":["scourge.stat_2589042711"],"crafted":["crafted.stat_838272676"]}}} +{"ref":"Lose # Mana when you use a Skill","better":-1,"matchers":[{"string":"스킬 사용 시 마나 # 상실"}],"trade":{"ids":{"explicit":["explicit.stat_2924302129"]}}} +{"ref":"Lose #% of Energy Shield per second","better":1,"matchers":[{"string":"1초마다 에너지 보호막 #% 상실"}],"trade":{"ids":{"explicit":["explicit.stat_761102773"]}}} +{"ref":"Lose #% of Energy Shield when you deal a Critical Strike","better":-1,"matchers":[{"string":"치명타 명중 시 에너지 보호막의 #% 상실"}],"trade":{"ids":{"explicit":["explicit.stat_1229725509"]}}} +{"ref":"Lose #% of Life per second","dp":true,"better":1,"matchers":[{"string":"1초마다 생명력의 #% 상실"}],"trade":{"ids":{"explicit":["explicit.stat_1661347488"]}}} +{"ref":"Lose #% of Life per second if you have been Hit Recently","better":-1,"matchers":[{"string":"최근 4초 이내 피격된 경우 1초마다 생명력의 #% 상실"}],"trade":{"ids":{"explicit":["explicit.stat_2325592140"]}}} +{"ref":"Lose #% of Life when you deal a Critical Strike","better":-1,"matchers":[{"string":"치명타 명중 시 생명력의 #% 상실"}],"trade":{"ids":{"explicit":["explicit.stat_1862591837"]}}} +{"ref":"Lose #% of Mana per Second","better":-1,"matchers":[{"string":"1초마다 마나의 #% 상실"}],"trade":{"ids":{"explicit":["explicit.stat_2936435999"]}}} +{"ref":"Lose #% of Mana when you use an Attack Skill","better":-1,"matchers":[{"string":"공격 스킬 사용 시 마나의 #% 상실"}],"trade":{"ids":{"explicit":["explicit.stat_113147867"]}}} +{"ref":"Lose a Power Charge each second if you have not Detonated Mines Recently","better":1,"matchers":[{"string":"최근 4초 이내 폭발한 지뢰가 없는 경우 1초마다 권능 충전 1개 상실"}],"trade":{"ids":{"explicit":["explicit.stat_3530865840"]}}} +{"ref":"Lose Adrenaline when you cease to be Flame-Touched","better":1,"matchers":[{"string":"화염의 손길 상실 시 아드레날린 상실"}],"trade":{"ids":{"explicit":["explicit.stat_138579627"]}}} +{"ref":"Lose all Eaten Souls when you use a Flask","better":1,"matchers":[{"string":"플라스크 사용 시 포식한 영혼 모두 상실"}],"trade":{"ids":{"explicit":["explicit.stat_3577316952"]}}} +{"ref":"Lose all Endurance Charges when Rampage ends","better":1,"matchers":[{"string":"광란 종료 시 모든 인내 충전 상실"}],"trade":{"ids":{"explicit":["explicit.stat_2881426199"]}}} +{"ref":"Lose all Fragile Regrowth when Hit","better":1,"matchers":[{"string":"피격 시 불안정한 재성장 모두 상실"}],"trade":{"ids":{"explicit":["explicit.stat_1306791873"],"fractured":["fractured.stat_1306791873"]}}} +{"ref":"Lose all Frenzy Charges on reaching Maximum Frenzy Charges to make the next Bow Attack you perform fire that many additional Arrows","better":1,"matchers":[{"string":"최대 격분 충전 도달 시 모든 격분 충전이 상실되어 플레이어가 수행하는 다음 활 공격이 다수의 추가 화살 발사"}],"trade":{"ids":{"explicit":["explicit.stat_2522975315"]}}} +{"ref":"Lose all Power Charges on Critical Strike","better":1,"matchers":[{"string":"치명타 명중 시 권능 충전 모두 상실"}],"trade":{"ids":{"explicit":["explicit.stat_2735889191"]}}} +{"ref":"Lose all Power Charges on reaching Maximum Power Charges","better":1,"matchers":[{"string":"최대 권능 충전에 도달 시 모든 권능 충전을 상실"}],"trade":{"ids":{"explicit":["explicit.stat_2135899247"]}}} +{"ref":"Lose all Power Charges when you Block","better":1,"matchers":[{"string":"막아낼 시 권능 충전 모두 상실"}],"trade":{"ids":{"explicit":["explicit.stat_3898799092"]}}} +{"ref":"Lose no Experience when you die because a Linked target died","better":1,"matchers":[{"string":"연결된 대상이 사망하여 플레이어가 사망할 경우 경험치를 잃지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_738821856"]}}} +{"ref":"Loses all Charges when you enter a new area","better":1,"matchers":[{"string":"새로운 지역에 들어가면 모든 충전 상실"}],"trade":{"ids":{"explicit":["explicit.stat_776020689"]}}} +{"ref":"Magebane","better":1,"matchers":[{"string":"마법사 파멸"}],"trade":{"ids":{"explicit":["explicit.stat_4180925106"],"fractured":["fractured.stat_4180925106"],"scourge":["scourge.stat_4180925106"]}}} +{"ref":"Magic Monsters take #% increased Damage","better":1,"matchers":[{"string":"마법 몬스터가 받는 피해 #% 증가"},{"string":"마법 몬스터가 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3056215807"]}}} +{"ref":"Magic Utility Flask Effects cannot be removed","better":1,"matchers":[{"string":"마법 특수 플라스크 효과 제거 불가"}],"trade":{"ids":{"explicit":["explicit.stat_344389721"]}}} +{"ref":"Magic Utility Flasks applied to you have #% increased Effect","better":1,"matchers":[{"string":"자신에게 적용된 마법 특수 플라스크의 효과 #% 증가"},{"string":"자신에게 적용된 마법 특수 플라스크의 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2564857472"],"fractured":["fractured.stat_2564857472"]}}} +{"ref":"Magic Utility Flasks cannot be Used","better":1,"matchers":[{"string":"마법 특수 플라스크 사용 불가"}],"trade":{"ids":{"explicit":["explicit.stat_3986704288"]}}} +{"ref":"Malevolence has #% increased Aura Effect","better":1,"matchers":[{"string":"악의의 오라 효과 #% 증가"},{"string":"악의의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4175197580"],"implicit":["implicit.stat_4175197580"],"fractured":["fractured.stat_4175197580"]}}} +{"ref":"Malevolence has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"악의의 마나 점유 효율 #% 증가"},{"string":"악의의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3266567165","explicit.stat_3383226338"],"enchant":["enchant.stat_3266567165","enchant.stat_3383226338"]}}} +{"ref":"Malevolence has no Reservation","better":1,"matchers":[{"string":"악의로 인한 점유 없음"}],"trade":{"ids":{"explicit":["explicit.stat_585622486"]}}} +{"ref":"Mana Flasks gain # Charge every 3 seconds","better":1,"matchers":[{"string":"3초마다 마나 플라스크 # 충전"}],"trade":{"ids":{"explicit":["explicit.stat_1193925814"],"scourge":["scourge.stat_1193925814"]}}} +{"ref":"Mana Flasks used while on Low Mana apply Recovery Instantly","better":1,"matchers":[{"string":"낮은 마나 상태일 때 마나 플라스크 사용 시 즉시 회복 적용"}],"trade":{"ids":{"explicit":["explicit.stat_1839832419"]}}} +{"ref":"Mana Recovery occurs instantly at the end of Effect","better":1,"matchers":[{"string":"효과가 끝나면 마나 회복 즉시 발동"}],"trade":{"ids":{"explicit":["explicit.stat_4204954479"],"fractured":["fractured.stat_4204954479"]}}} +{"ref":"Mana Reservation of Herald Skills is always 45%","better":1,"matchers":[{"string":"전령 스킬의 마나 점유가 45%로 고정"}],"trade":{"ids":{"explicit":["explicit.stat_262773569"]}}} +{"ref":"Manabond Penetrates #% Lightning Resistance while on Low Mana","better":1,"matchers":[{"string":"마나 결속이 낮은 마나 상태에서 #%의 번개 저항 관통"}],"trade":{"ids":{"enchant":["enchant.stat_2052200782"]}}} +{"ref":"Manifested Dancing Dervishes die when Rampage ends","better":1,"matchers":[{"string":"광란 종료 시 출현한 춤추는 수도승 사망"}],"trade":{"ids":{"explicit":["explicit.stat_1414945937"]}}} +{"ref":"Manifested Dancing Dervishes disables both weapon slots","better":1,"matchers":[{"string":"춤추는 수도승 출현 시 모든 무기 슬롯 비활성화"}],"trade":{"ids":{"explicit":["explicit.stat_398335579"]}}} +{"ref":"Map Boss is accompanied by a Synthesis Boss","better":1,"fromUberAreaMods":true,"matchers":[{"string":"지도 보스가 결합 보스 대동"}],"trade":{"ids":{"explicit":["explicit.stat_4150353141"],"fractured":["fractured.stat_4150353141"]}}} +{"ref":"Map Boss is surrounded by Tormented Spirits","better":1,"matchers":[{"string":"지도 보스가 고통받는 혼백에 둘러싸임"}],"trade":{"ids":{"enchant":["enchant.stat_3750528071"]}}} +{"ref":"Map contains #'s Citadel","better":1,"matchers":[{"string":"지도에 바란의 시타델 등장\n아이템 수량 값의 20%만큼 바란이 떨어뜨리는 보상의 수량 증가","value":1},{"string":"지도에 베리타니아의 시타델 등장\n아이템 수량 값의 20%만큼 베리타니아가 떨어뜨리는 보상의 수량 증가","value":2},{"string":"지도에 알-헤즈민의 시타델 등장\n아이템 수량 값의 20%만큼 알-헤즈민이 떨어뜨리는 보상의 수량 증가","value":3},{"string":"지도에 드록스의 시타델 등장\n아이템 수량 값의 20%만큼 드록스가 떨어뜨리는 보상의 수량 증가","value":4}],"trade":{"ids":{"implicit":["implicit.stat_2563183002"]},"option":true}} +{"ref":"Map Crafting options for this Map have no cost","better":1,"fromAreaMods":true,"matchers":[{"string":"이 지도에 대한 지도 제작 옵션의 비용 없음"}],"trade":{"ids":{"implicit":["implicit.stat_4149961555"]}}} +{"ref":"Map has # additional random Modifier","better":1,"matchers":[{"string":"지도에 무작위 속성 부여 #개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_4003278965"]}}} +{"ref":"Map has # additional Synthesis Global Modifier","better":1,"matchers":[{"string":"지도에 무작위 결합 일반 속성 부여 #개 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2132807290"]}}} +{"ref":"Map has an additional random Modifier from Kirac's Crafting Bench","better":1,"matchers":[{"string":"지도에 키락의 작업대에 있는 무작위 속성 부여 1개 추가"}],"trade":{"ids":{"enchant":["enchant.stat_1389457945"]}}} +{"ref":"Map is occupied by #","better":1,"matchers":[{"string":"지도가 조종자의 손에 넘어감","value":1},{"string":"지도가 박멸자의 손에 넘어감","value":2},{"string":"지도가 위압자의 손에 넘어감","value":3},{"string":"지도가 정화자의 손에 넘어감","value":4}],"trade":{"ids":{"implicit":["implicit.stat_3624393862"]},"option":true}} +{"ref":"Mark Skills have #% increased Cast Speed","better":1,"matchers":[{"string":"징표 스킬의 시전 속도 #% 증가"},{"string":"징표 스킬의 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4189061307"]}}} +{"ref":"Maven releases all Bosses at once","better":1,"fromAreaMods":true,"matchers":[{"string":"메이븐이 모든 보스를 한꺼번에 내보냄"}],"trade":{"ids":{"explicit":["explicit.stat_3606985138"]}}} +{"ref":"Maximum # Fragile Regrowth","better":1,"matchers":[{"string":"최대 # 불안정한 재성장"}],"trade":{"ids":{"explicit":["explicit.stat_1173537953"],"fractured":["fractured.stat_1173537953"]}}} +{"ref":"Maximum Absorption Charges is equal to Maximum Power Charges","better":1,"matchers":[{"string":"흡수 충전 최대치가 권능 충전 최대치와 동일"}],"trade":{"ids":{"explicit":["explicit.stat_2494027711"]}}} +{"ref":"Maximum Affliction Charges is equal to Maximum Frenzy Charges","better":1,"matchers":[{"string":"수난 충전 최대치가 격분 충전 최대치와 동일"}],"trade":{"ids":{"explicit":["explicit.stat_2817027713"]}}} +{"ref":"Maximum Brutal Charges is equal to Maximum Endurance Charges","better":1,"matchers":[{"string":"잔인 충전 최대치가 인내 충전 최대치와 동일"}],"trade":{"ids":{"explicit":["explicit.stat_3710150470"]}}} +{"ref":"Maximum Critical Strike Chance is 50%","better":1,"matchers":[{"string":"최대 치명타 확률 50%"}],"trade":{"ids":{"explicit":["explicit.stat_1463929958"]}}} +{"ref":"Maximum Endurance, Frenzy and Power Charges is 0","better":1,"matchers":[{"string":"인내, 격분, 권능 충전 최대치 0"}],"trade":{"ids":{"explicit":["explicit.stat_2957871460"]}}} +{"ref":"Maximum Quality is #%","better":1,"matchers":[{"string":"Maximum Quality is #%"}],"trade":{"ids":{"explicit":["explicit.stat_275498888"]}}} +{"ref":"Maximum Resolve is 1","better":1,"matchers":[{"string":"투지 최대치 1"}],"trade":{"ids":{"explicit":["sanctum.stat_1471840332"]}}} +{"ref":"Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers","better":1,"matchers":[{"string":"반경 내 근접 및 근접 무기 유형 속성 부여가 활 속성 부여로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_854030602"]}}} +{"ref":"Melee Attacks have #% chance to cause Bleeding","better":1,"matchers":[{"string":"근접 공격 시 #%의 확률로 출혈 유발"},{"string":"근접 공격 시 출혈 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1285056331"]}}} +{"ref":"Melee Attacks have #% chance to Poison on Hit","better":1,"matchers":[{"string":"근접 공격 명중 시 #%의 확률로 중독 유발"},{"string":"근접 공격 명중 시 중독 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_33065250"]}}} +{"ref":"Melee Attacks Knock Enemies Back on Hit","better":1,"matchers":[{"string":"근접 공격이 명중 시 적을 밀어냄"}],"trade":{"ids":{"explicit":["explicit.stat_3962823719"],"fractured":["fractured.stat_3962823719"]}}} +{"ref":"Melee Hits count as Rampage Kills\nRampage","better":1,"matchers":[{"string":"근접 명중을 광란 처치로 간주\n광란"}],"trade":{"ids":{"explicit":["explicit.stat_2889807051"]}}} +{"ref":"Melee Hits Fortify","better":1,"matchers":[{"string":"근접 명중 시 #%의 확률로 방어 상승"},{"string":"근접 명중 시 방어 상승","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1166417447"],"implicit":["implicit.stat_1166417447"]}}} +{"ref":"Melee Hits from Strike Skills Fortify","better":1,"matchers":[{"string":"타격 스킬로 근접 명중 시 방어 상승"}],"trade":{"ids":{"explicit":["explicit.stat_3049891689"]}}} +{"ref":"Melee Hits which Stun have #% chance to Fortify","better":1,"matchers":[{"string":"근접 명중으로 기절 유발 시 #%의 확률로 방어 상승"},{"string":"근접 명중으로 기절 유발 시 방어 상승","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3206381437"],"fractured":["fractured.stat_3206381437"]}}} +{"ref":"Melee Hits with Strike Skills always Knockback","better":1,"matchers":[{"string":"타격 스킬 근접 명중 시 항상 밀어냄"}],"trade":{"ids":{"explicit":["explicit.stat_1737583880"]}}} +{"ref":"Melee Strike Skills deal Splash Damage to surrounding targets","better":1,"matchers":[{"string":"근접 타격 스킬로 주변 대상에게 범위 피해를 줌"}],"trade":{"ids":{"explicit":["explicit.stat_3675300253"]}}} +{"ref":"Melee Weapon Attacks have Culling Strike","better":1,"matchers":[{"string":"근접 무기 공격 시 마무리 타격 가능"}],"trade":{"ids":{"explicit":["explicit.stat_802532569"]}}} +{"ref":"Melee Weapon Damage Penetrates #% Elemental Resistances","better":1,"matchers":[{"string":"근접 무기 피해가 원소 저항 #% 관통"}],"trade":{"ids":{"explicit":["explicit.stat_2499808413"]}}} +{"ref":"Melee Weapon Damage Penetrates #% Elemental Resistances per Mana Burn","better":1,"matchers":[{"string":"마나 연소 하나당 근접 무기 피해가 원소 저항 #% 관통"}],"trade":{"ids":{"explicit":["explicit.stat_3685214225"]}}} +{"ref":"Melee Weapon Hits have #% chance to ignore Enemy Physical Damage Reduction","better":1,"matchers":[{"string":"근접 무기로 명중 시 #%의 확률로 적의 물리 피해 감소를 무시"},{"string":"근접 무기로 명중 시 적의 물리 피해 감소를 무시","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1676663186"]}}} +{"ref":"Melee Weapon Hits Inflict # Withered Debuffs for 2 seconds","better":1,"matchers":[{"string":"근접 무기로 명중 시 2초 동안 위축 디버프 #개 유발"}],"trade":{"ids":{"explicit":["explicit.stat_1103333624"]}}} +{"ref":"Mercury Footprints","better":1,"matchers":[{"string":"수은의 발자국"}],"trade":{"ids":{"explicit":["explicit.stat_3970396418"]}}} +{"ref":"Mind Over Matter","better":1,"matchers":[{"string":"물질보다 정신"}],"trade":{"ids":{"explicit":["explicit.stat_373964381"],"scourge":["scourge.stat_373964381"]}}} +{"ref":"Mines can be Detonated an additional time","better":1,"matchers":[{"string":"지뢰 #회 추가 폭발"},{"string":"지뢰 1회 추가 폭발","value":1}],"trade":{"ids":{"explicit":["explicit.stat_325437053"]}}} +{"ref":"Mines have #% increased Detonation Speed","better":1,"matchers":[{"string":"지뢰의 폭파 속도 #% 증가"},{"string":"지뢰의 폭파 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3085465082"],"fractured":["fractured.stat_3085465082"]}}} +{"ref":"Minion Instability","better":1,"matchers":[{"string":"소환수 불안정"}],"trade":{"ids":{"explicit":["explicit.stat_433293234"],"scourge":["scourge.stat_433293234"]}}} +{"ref":"Minion Life is increased by their Overcapped Fire Resistance","better":1,"matchers":[{"string":"소환수의 제한 초과 화염 저항에 따라 소환수 생명력 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1586164348"]}}} +{"ref":"Minions are Aggressive","better":1,"matchers":[{"string":"소환수가 공격적으로 행동"}],"trade":{"ids":{"explicit":["explicit.stat_128585622"],"fractured":["fractured.stat_128585622"]}}} +{"ref":"Minions can hear the whispers for # seconds after they deal a Critical Strike","better":1,"matchers":[{"string":"소환수가 치명타 명중 후 #초 동안 속삭임을 들을 수 있음"}],"trade":{"ids":{"explicit":["explicit.stat_2735021664"]}}} +{"ref":"Minions cannot be Blinded","better":1,"matchers":[{"string":"소환수 실명 면역"}],"trade":{"ids":{"explicit":["explicit.stat_2684385509"]}}} +{"ref":"Minions convert #% of Physical Damage to Chaos Damage per White Socket","better":1,"matchers":[{"string":"하얀 홈 하나당 소환수가 물리 피해의 #%를 카오스 피해로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_199362230"]}}} +{"ref":"Minions convert #% of Physical Damage to Cold Damage","better":1,"matchers":[{"string":"소환수가 물리 피해의 #%를 냉기 피해로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_264042266"]}}} +{"ref":"Minions convert #% of Physical Damage to Cold Damage per Green Socket","better":1,"matchers":[{"string":"초록 홈 하나당 소환수가 물리 피해의 #%를 냉기 피해로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_306443498"]}}} +{"ref":"Minions convert #% of Physical Damage to Fire Damage per Red Socket","better":1,"matchers":[{"string":"빨간 홈 하나당 소환수가 물리 피해의 #%를 화염 피해로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_2139569643"]}}} +{"ref":"Minions convert #% of Physical Damage to Lightning Damage per Blue Socket","better":1,"matchers":[{"string":"파란 홈 하나당 소환수가 물리 피해의 #%를 번개 피해로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_3366426512"]}}} +{"ref":"Minions Convert #% of their Maximum Life to Maximum Energy\nShield per 1% Chaos Resistance they have","better":1,"matchers":[{"string":"소환수가 카오스 저항 1%당 생명력 최대치의 #%를\n에너지 보호막 최대치로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_433536969"]}}} +{"ref":"Minions count as having the same number of\nEndurance, Frenzy and Power Charges as you","better":1,"matchers":[{"string":"소환수가 플레이어와 동일한 수의\n인내, 격분, 권능 충전을 보유한 것으로 간주"}],"trade":{"ids":{"explicit":["explicit.stat_2797097751"]}}} +{"ref":"Minions deal # to # additional Attack Physical Damage","better":1,"matchers":[{"string":"소환수가 주는 공격 물리 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_797833282"]}}} +{"ref":"Minions deal # to # additional Chaos Damage","better":1,"matchers":[{"string":"소환수가 주는 카오스 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2889601781"],"fractured":["fractured.stat_2889601781"]}}} +{"ref":"Minions deal # to # additional Cold Damage","better":1,"matchers":[{"string":"소환수가 주는 냉기 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3152982863"],"fractured":["fractured.stat_3152982863"]}}} +{"ref":"Minions deal # to # additional Fire Damage","better":1,"matchers":[{"string":"소환수가 주는 화염 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3351784991"],"fractured":["fractured.stat_3351784991"]}}} +{"ref":"Minions deal # to # additional Lightning Damage","better":1,"matchers":[{"string":"소환수가 주는 번개 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2930653471"],"fractured":["fractured.stat_2930653471"]}}} +{"ref":"Minions deal # to # additional Physical Damage","better":1,"matchers":[{"string":"소환수가 주는 물리 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1172029298"],"fractured":["fractured.stat_1172029298"]}}} +{"ref":"Minions deal #% increased Damage","better":1,"matchers":[{"string":"소환수가 주는 피해 #% 증가"},{"string":"소환수가 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1589917703"],"implicit":["implicit.stat_1589917703"],"fractured":["fractured.stat_1589917703"],"enchant":["enchant.stat_1589917703"],"scourge":["scourge.stat_1589917703"],"crafted":["crafted.stat_1589917703"]}}} +{"ref":"Minions deal #% increased Damage if you've Hit Recently","better":1,"matchers":[{"string":"최근 4초 이내 적 명중 시 소환수가 주는 피해 #% 증가"},{"string":"최근 4초 이내 적 명중 시 소환수가 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2337295272"]}}} +{"ref":"Minions deal #% increased Damage if you've used a Minion Skill Recently","better":1,"matchers":[{"string":"최근 4초 이내 소환수 스킬을 사용한 경우 소환수 피해 #% 증가"},{"string":"최근 4초 이내 소환수 스킬을 사용한 경우 소환수 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_412745376"],"fractured":["fractured.stat_412745376"]}}} +{"ref":"Minions deal #% increased Damage per 5 Dexterity","better":1,"matchers":[{"string":"소환수가 민첩 10당 주는 피해 #% 증가"},{"string":"소환수가 민첩 10당 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4187741589"]}}} +{"ref":"Minions deal #% increased Damage with Hits and Ailments against Abyssal Monsters","better":1,"matchers":[{"string":"소환수가 심연 몬스터에게 주는 명중 및 상태 이상 피해 #% 증가"},{"string":"소환수가 심연 몬스터에게 주는 명중 및 상태 이상 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1086057912"],"fractured":["fractured.stat_1086057912"]}}} +{"ref":"Minions deal no Non-Cold Damage","better":1,"matchers":[{"string":"소환수가 주는 비-냉기 피해 없음"}],"trade":{"ids":{"explicit":["explicit.stat_935592011"]}}} +{"ref":"Minions gain #% of Elemental Damage as Extra Chaos Damage","better":1,"matchers":[{"string":"소환수가 원소 피해의 #%를 추가 카오스 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_247168950"]}}} +{"ref":"Minions gain #% of Physical Damage as Extra Cold Damage","better":1,"matchers":[{"string":"소환수가 물리 피해의 #%를 추가 냉기 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1236638414"]}}} +{"ref":"Minions gain #% of Physical Damage as Extra Fire Damage","better":1,"matchers":[{"string":"소환수가 물리 피해의 #%를 추가 화염 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3217428772"]}}} +{"ref":"Minions gain Added Physical Damage equal to #% of Maximum Energy Shield on your Equipped Helmet","better":1,"matchers":[{"string":"소환수가 플레이어가 장착 중인 투구의 에너지 보호막 최대치의 #%와 동일한 추가 물리 피해 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2268802111"]}}} +{"ref":"Minions gain Unholy Might for # seconds on Kill","better":1,"matchers":[{"string":"소환수가 처치 시 소환수가 #초 동안 불경한 힘 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3835570161"]}}} +{"ref":"Minions have #% additional Physical Damage Reduction","better":1,"matchers":[{"string":"소환수가 받는 물리 피해 #% 추가 감소"}],"trade":{"ids":{"explicit":["explicit.stat_3119612865"],"fractured":["fractured.stat_3119612865"]}}} +{"ref":"Minions have #% chance to Blind Enemies on hit","better":1,"matchers":[{"string":"소환수가 공격 명중 시 #%의 확률로 적 실명 유발"}],"trade":{"ids":{"explicit":["explicit.stat_2939409392"]}}} +{"ref":"Minions have #% chance to Blind on Hit with Attacks","better":1,"matchers":[{"string":"소환수가 공격 명중 시 #%의 확률로 실명 유발"},{"string":"소환수가 공격 명중 시 실명 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2431643207"],"fractured":["fractured.stat_2431643207"]}}} +{"ref":"Minions have #% chance to cause Bleeding with Attacks","better":1,"matchers":[{"string":"소환수가 공격 시 #%의 확률로 출혈 유발"},{"string":"소환수가 공격 시 출혈 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3998967779"],"fractured":["fractured.stat_3998967779"]}}} +{"ref":"Minions have #% chance to deal Double Damage","better":1,"matchers":[{"string":"소환수가 #%의 확률로 2배의 피해를 줌"}],"trade":{"ids":{"explicit":["explicit.stat_755922799"],"fractured":["fractured.stat_755922799"]}}} +{"ref":"Minions have #% chance to Freeze, Shock and Ignite","better":1,"matchers":[{"string":"소환수가 #%의 확률로 동결, 감전 및 점화 유발"},{"string":"소환수가 항상 동결, 감전 및 점화 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1994549323"]}}} +{"ref":"Minions have #% chance to gain Unholy Might for 4 seconds on Kill","better":1,"matchers":[{"string":"소환수가 처치 시 소환수가 #%의 확률로 4초 동안 불경한 힘 획득"},{"string":"소환수가 처치 시 소환수가 4초 동안 불경한 힘 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3131367308"]}}} +{"ref":"Minions have #% chance to Hinder Enemies on Hit with Spells","better":1,"matchers":[{"string":"소환수가 주문 명중 시 #%의 확률로 적 이동 방해"},{"string":"소환수가 주문 명중 시 적 이동 방해","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2323739383"],"fractured":["fractured.stat_2323739383"]}}} +{"ref":"Minions have #% chance to Ignite","better":1,"matchers":[{"string":"소환수가 #%의 확률로 점화 유발"}],"trade":{"ids":{"explicit":["explicit.stat_3945908658"],"fractured":["fractured.stat_3945908658"]}}} +{"ref":"Minions have #% chance to inflict Withered on Hit","better":1,"matchers":[{"string":"소환수가 명중 시 #%의 확률로 위축 유발"}],"trade":{"ids":{"explicit":["explicit.stat_1387367793"]}}} +{"ref":"Minions have #% chance to Maim Enemies on Hit with Attacks","better":1,"matchers":[{"string":"소환수의 공격 명중 시 #%의 확률로 적 힘줄 절단 유발"},{"string":"소환수의 공격 명중 시 적 힘줄 절단 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2138548436"]}}} +{"ref":"Minions have #% chance to Poison Enemies on Hit","better":1,"matchers":[{"string":"소환수가 명중 시 #%의 확률로 적 중독 유발"},{"string":"소환수가 명중 시 적 중독 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1974445926"],"fractured":["fractured.stat_1974445926"]}}} +{"ref":"Minions have #% chance to Taunt on Hit with Attacks","better":1,"matchers":[{"string":"소환수가 공격 명중 시 #%의 확률로 도발"},{"string":"소환수가 공격 명중 시 도발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2911442053"],"fractured":["fractured.stat_2911442053"],"scourge":["scourge.stat_2911442053"]}}} +{"ref":"Minions have #% faster start of Energy Shield Recharge","better":1,"matchers":[{"string":"소환수의 에너지 보호막 재충전 시작 속도 #% 가속"},{"string":"소환수의 에너지 보호막 재충전 시작 속도 #% 감속","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2834476618"]}}} +{"ref":"Minions have #% increased Area of Effect","better":1,"matchers":[{"string":"소환수의 효과 범위 #% 증가"},{"string":"소환수의 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3811191316"],"fractured":["fractured.stat_3811191316"]}}} +{"ref":"Minions have #% increased Attack and Cast Speed","better":1,"matchers":[{"string":"소환수의 공격 및 시전 속도 #% 증가"},{"string":"소환수의 공격 및 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3091578504"],"fractured":["fractured.stat_3091578504"]}}} +{"ref":"Minions have #% increased Attack Speed","better":1,"matchers":[{"string":"소환수의 공격 속도 #% 증가"},{"string":"소환수의 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3375935924"],"implicit":["implicit.stat_3375935924"],"fractured":["fractured.stat_3375935924"],"scourge":["scourge.stat_3375935924"],"crafted":["crafted.stat_3375935924"]}}} +{"ref":"Minions have #% increased Cast Speed","better":1,"matchers":[{"string":"소환수의 시전 속도 #% 증가"},{"string":"소환수의 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4000101551"],"implicit":["implicit.stat_4000101551"],"fractured":["fractured.stat_4000101551"],"scourge":["scourge.stat_4000101551"],"crafted":["crafted.stat_4000101551"]}}} +{"ref":"Minions have #% increased Critical Strike Chance","better":1,"matchers":[{"string":"소환수의 치명타 확률 #% 증가"},{"string":"소환수의 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_491450213"],"fractured":["fractured.stat_491450213"]}}} +{"ref":"Minions have #% increased Critical Strike Chance per Maximum Power Charge you have","better":1,"matchers":[{"string":"플레이어가 보유한 권능 충전 최대치당 소환수의 치명타 확률 #% 증가"},{"string":"플레이어가 보유한 권능 충전 최대치당 소환수의 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_446070669"]}}} +{"ref":"Minions have #% increased Flask Effect Duration","better":1,"matchers":[{"string":"소환수의 플라스크 효과 지속시간 #% 증가"},{"string":"소환수의 플라스크 효과 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1932583315"]}}} +{"ref":"Minions have #% increased maximum Life","better":1,"matchers":[{"string":"소환수의 최대 생명력 #% 증가"},{"string":"소환수의 최대 생명력 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_770672621"],"implicit":["implicit.stat_770672621"],"fractured":["fractured.stat_770672621"],"enchant":["enchant.stat_770672621"],"scourge":["scourge.stat_770672621"],"crafted":["crafted.stat_770672621"]}}} +{"ref":"Minions have #% increased Movement Speed","better":1,"matchers":[{"string":"소환수의 이동 속도 #% 증가"},{"string":"소환수의 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_174664100"],"implicit":["implicit.stat_174664100"],"fractured":["fractured.stat_174664100"],"crafted":["crafted.stat_174664100"]}}} +{"ref":"Minions have #% reduced Flask Charges used","better":-1,"matchers":[{"string":"소환수의 플라스크 충전 소모량 #% 증가"},{"string":"소환수의 플라스크 충전 소모량 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_180240697"]},"inverted":true}} +{"ref":"Minions have +# to Accuracy Rating","better":1,"matchers":[{"string":"소환수의 정확도 #"}],"trade":{"ids":{"explicit":["explicit.stat_1661151735"],"fractured":["fractured.stat_1661151735"]}}} +{"ref":"Minions have +# to Accuracy Rating per 10 Devotion","better":1,"matchers":[{"string":"헌신 10당 소환수 정확도 #"}],"trade":{"ids":{"explicit":["explicit.stat_2830135449"]}}} +{"ref":"Minions have +# to Armour","better":1,"matchers":[{"string":"소환수의 방어도 #"}],"trade":{"ids":{"explicit":["explicit.stat_2048970144"]}}} +{"ref":"Minions have +#% Chance to Block Attack Damage","better":1,"matchers":[{"string":"소환수의 공격 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3374054207"],"fractured":["fractured.stat_3374054207"],"scourge":["scourge.stat_3374054207"]}}} +{"ref":"Minions have +#% Chance to Block Spell Damage","better":1,"matchers":[{"string":"소환수의 주문 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2762046953"],"scourge":["scourge.stat_2762046953"]}}} +{"ref":"Minions have +#% chance to Suppress Spell Damage","better":1,"matchers":[{"string":"소환수의 주문 피해 억제 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3195300715"]}}} +{"ref":"Minions have +#% to all Elemental Resistances","better":1,"matchers":[{"string":"소환수의 모든 원소 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1423639565"],"implicit":["implicit.stat_1423639565"],"fractured":["fractured.stat_1423639565"],"scourge":["scourge.stat_1423639565"],"crafted":["crafted.stat_1423639565"]}}} +{"ref":"Minions have +#% to all maximum Elemental Resistances","better":1,"matchers":[{"string":"소환수의 모든 원소 저항 최대치 #%"}],"trade":{"ids":{"explicit":["explicit.stat_10224385"],"fractured":["fractured.stat_10224385"]}}} +{"ref":"Minions have +#% to Chaos Resistance","better":1,"matchers":[{"string":"소환수의 카오스 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3837707023"],"fractured":["fractured.stat_3837707023"],"scourge":["scourge.stat_3837707023"]}}} +{"ref":"Minions have +#% to Cold Resistance","better":1,"matchers":[{"string":"소환수 냉기 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2200407711"]}}} +{"ref":"Minions have +#% to Critical Strike Multiplier","better":1,"matchers":[{"string":"소환수의 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1854213750"],"fractured":["fractured.stat_1854213750"]}}} +{"ref":"Minions have +#% to Critical Strike Multiplier per Grand Spectrum","better":1,"matchers":[{"string":"장대한 파장 하나당 소환수의 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_482240997"]}}} +{"ref":"Minions have +#% to Critical Strike Multiplier per Withered Debuff on Enemy","better":1,"matchers":[{"string":"적에게 걸린 위축 디버프 하나당 소환수의 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1494965559"]}}} +{"ref":"Minions have +#% to Damage over Time Multiplier per\nGhastly Eye Jewel affecting you, up to a maximum of +30%","better":1,"matchers":[{"string":"자신에게 영향을 주는 무시무시한 눈 주얼 하나당\n소환수의 지속 피해 배율 #%, 최대 +30%"}],"trade":{"ids":{"explicit":["explicit.stat_613055432"]}}} +{"ref":"Minions have +#% to Fire Resistance","better":1,"matchers":[{"string":"소환수의 화염 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1889350679"]}}} +{"ref":"Minions have the same maximum number of Endurance, Frenzy and Power Charges as you","better":1,"matchers":[{"string":"소환수가 플레이어와 동일한 수의 인내, 격분, 권능 충전 최대치 보유"}],"trade":{"ids":{"explicit":["explicit.stat_3879726065"]}}} +{"ref":"Minions Leech #% of Damage as Life","dp":true,"better":1,"matchers":[{"string":"소환수가 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_2770782267"],"fractured":["fractured.stat_2770782267"],"scourge":["scourge.stat_2770782267"]}}} +{"ref":"Minions Leech #% of Damage as Life against Poisoned Enemies","dp":true,"better":1,"matchers":[{"string":"소환수가 중독된 적에게 주는 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_548721233"]}}} +{"ref":"Minions Recover #% of Life on Killing a Poisoned Enemy","better":1,"matchers":[{"string":"소환수가 중독된 적 처치 시 생명력의 #% 회복"}],"trade":{"ids":{"explicit":["explicit.stat_2602664175"]}}} +{"ref":"Minions Recover #% of their Life when they Block","better":1,"matchers":[{"string":"소환수가 막아낼 시 소환수의 생명력 #% 회복"}],"trade":{"ids":{"explicit":["explicit.stat_676967140"]}}} +{"ref":"Minions Recover #% of their Life when you Focus","better":1,"matchers":[{"string":"자신이 집중하는 동안 소환수가 생명력의 #% 회복"}],"trade":{"ids":{"explicit":["explicit.stat_3500359417"],"fractured":["fractured.stat_3500359417"],"crafted":["crafted.stat_3500359417"]}}} +{"ref":"Minions Regenerate # Life per second","better":1,"matchers":[{"string":"소환수가 1초마다 # 생명력 재생"}],"trade":{"ids":{"explicit":["explicit.stat_3062329212"],"fractured":["fractured.stat_3062329212"]}}} +{"ref":"Minions Regenerate #% of Life per second","better":1,"matchers":[{"string":"소환수가 1초마다 생명력의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_2479683456"],"implicit":["implicit.stat_2479683456"],"fractured":["fractured.stat_2479683456"],"scourge":["scourge.stat_2479683456"]}}} +{"ref":"Minions summoned by Your Scout Towers have #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"3,3"}],"matchers":[{"string":"정찰병 탑이 소환한 소환수의 피해 #% 증가"},{"string":"정찰병 탑이 소환한 소환수의 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3473724367"]}}} +{"ref":"Minions summoned by Your Scout Towers have #% increased Life","better":1,"matchers":[{"string":"정찰병 탑이 소환한 소환수의 생명력 #% 증가"},{"string":"정찰병 탑이 소환한 소환수의 생명력 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1282857477"]}}} +{"ref":"Minions summoned by Your Scout Towers have #% increased Movement Speed","better":1,"anointments":[{"roll":25,"oils":"6,11"}],"matchers":[{"string":"정찰병 탑이 소환한 소환수의 이동 속도 #% 증가"},{"string":"정찰병 탑이 소환한 소환수의 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_971955285"]}}} +{"ref":"Minions summoned by Your Scout Towers inflict Malediction on Hit","better":1,"anointments":[{"roll":1,"oils":"7,10"}],"matchers":[{"string":"정찰병 탑이 소환한 소환수가 명중 시 악담 유발"}],"trade":{"ids":{"enchant":["enchant.stat_42482990"]}}} +{"ref":"Minions summoned by Your Sentinel Towers have #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"1,5"}],"matchers":[{"string":"파수꾼 탑이 소환한 소환수가 주는 피해 #% 증가"},{"string":"파수꾼 탑이 소환한 소환수가 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2013536039"]}}} +{"ref":"Minions summoned by Your Sentinel Towers have #% increased Life","better":1,"anointments":[{"roll":50,"oils":"10,11"}],"matchers":[{"string":"파수꾼 탑이 소환한 소환수의 생명력 #% 증가"},{"string":"파수꾼 탑이 소환한 소환수의 생명력 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3640837971"]}}} +{"ref":"Minions summoned by Your Sentinel Towers have #% increased Movement Speed","better":1,"anointments":[{"roll":25,"oils":"8,11"}],"matchers":[{"string":"파수꾼 탑이 소환한 소환수의 이동 속도 #% 증가"},{"string":"파수꾼 탑이 소환한 소환수의 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1971866993"]}}} +{"ref":"Minions summoned by Your Sentinel Towers Leech #% of Damage as Life","dp":true,"better":1,"anointments":[{"roll":2,"oils":"7,7"}],"matchers":[{"string":"파수꾼 탑이 소환한 소환수가 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"enchant":["enchant.stat_4148328809"]}}} +{"ref":"Minions summoned by Your Summoning Towers have #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"2,4"}],"matchers":[{"string":"소환의 탑이 소환한 소환수가 주는 피해 #% 증가"},{"string":"소환의 탑이 소환한 소환수가 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_850390248"]}}} +{"ref":"Minions summoned by Your Summoning Towers have #% increased Life","better":1,"anointments":[{"roll":50,"oils":"5,12"}],"matchers":[{"string":"소환의 탑이 소환한 소환수의 생명력 #% 증가"}],"trade":{"ids":{"enchant":["enchant.stat_3651039490"]}}} +{"ref":"Minions summoned by Your Summoning Towers have #% increased Movement Speed","better":1,"anointments":[{"roll":25,"oils":"5,11"}],"matchers":[{"string":"소환의 탑이 소환한 소환수의 이동 속도 #% 증가"},{"string":"소환의 탑이 소환한 소환수의 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1378482149"]}}} +{"ref":"Minions take #% reduced Reflected Damage","better":-1,"matchers":[{"string":"소환수가 받는 반사 피해 #% 증가"},{"string":"소환수가 받는 반사 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3056045252"]},"inverted":true}} +{"ref":"Minions' Base Attack Critical Strike Chance is equal to the Critical\nStrike Chance of your Main Hand Weapon","better":1,"matchers":[{"string":"소환수의 기본 공격 치명타 확률이\n플레이어 주 무기의 치명타 확률과 동일"}],"trade":{"ids":{"explicit":["explicit.stat_3700085184"]}}} +{"ref":"Minions' Hits can only Kill Ignited Enemies","better":1,"matchers":[{"string":"소환수가 적중 시 점화된 적만 처치 가능"}],"trade":{"ids":{"explicit":["explicit.stat_1736403946"]}}} +{"ref":"Mirror Arrow and Mirror Arrow Clones deal #% increased Damage","better":1,"matchers":[{"string":"거울 화살 및 거울 화살 분신이 주는 피해 #% 증가"},{"string":"거울 화살 및 거울 화살 분신이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4136186767"]}}} +{"ref":"Mirror Arrow and Mirror Arrow Clones have #% increased Attack Speed","better":1,"matchers":[{"string":"거울 화살 및 거울 화살 분신의 공격 속도 #% 증가"},{"string":"거울 화살 및 거울 화살 분신의 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3653459847"]}}} +{"ref":"Mirror Arrow has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"거울 화살의 재사용 대기시간 회복 속도 #% 증가"},{"string":"거울 화살의 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1781106044"]}}} +{"ref":"Mirrored Tablet has # Islands","better":1,"matchers":[{"string":"복제 서판이 섬 #개 보유 "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_lake_number_of_islands"]}}} +{"ref":"Modifiers to Attributes instead apply to Omniscience","better":1,"matchers":[{"string":"능력치에 부여되는 속성이 능력치가 아닌 전지력에 적용"}],"trade":{"ids":{"explicit":["explicit.stat_1411347992"]}}} +{"ref":"Modifiers to Chance to Avoid being Shocked apply to all Elemental Ailments","better":1,"matchers":[{"string":"감전 긴급회피 확률 속성이 모든 원소 상태 이상에 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2543019543"]}}} +{"ref":"Modifiers to Chance to Suppress Spell Damage also apply to Chance to Avoid Elemental Ailments at #% of their Value","better":1,"matchers":[{"string":"주문 피해 억제 확률 속성 부여가 원소 상태 이상 긴급회피 확률에도 수치의 #%로 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2401345409"]}}} +{"ref":"Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed with Melee Skills","better":1,"matchers":[{"string":"클로 공격 속도 속성 부여가 근접 스킬의 비무장 공격 속도에도 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2988055461"]}}} +{"ref":"Modifiers to Claw Critical Strike Chance also apply to Unarmed Critical Strike Chance with Melee Skills","better":1,"matchers":[{"string":"클로 치명타 확률 관련 속성 부여가 근접 스킬의 비무장 치명타 확률에도 적용"}],"trade":{"ids":{"explicit":["explicit.stat_531932482"]}}} +{"ref":"Modifiers to Claw Damage also apply to Unarmed Attack Damage with Melee Skills","better":1,"matchers":[{"string":"클로 피해 속성 부여가 근접 스킬의 비무장 공격 피해에도 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2865232420"]}}} +{"ref":"Modifiers to Ignite Duration on you apply to all Elemental Ailments","better":1,"matchers":[{"string":"플레이어에게 적용되는 점화 지속시간 속성이 모든 원소 상태 이상에 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2845551354"]}}} +{"ref":"Modifiers to Item Quantity will affect the number of encounter rewards dropped by #% of their value","better":1,"matchers":[{"string":"아이템 수량 속성 부여가 인카운터에서 떨어지는 보상의 개수에 해당 수치의 #%만큼 적용"},{"string":"아이템 수량 속성 부여가 인카운터에서 떨어지는 보상의 개수에도 적용","value":100}],"trade":{"ids":{"implicit":["implicit.stat_1522386771"]}}} +{"ref":"Modifiers to Minimum Endurance Charges instead apply to Minimum Brutal Charges","better":1,"matchers":[{"string":"최소 인내 충전에 부여되는 속성이 최소 잔인 충전에 대신 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2966482502"]}}} +{"ref":"Modifiers to Minimum Frenzy Charges instead apply to Minimum Affliction Charges","better":1,"matchers":[{"string":"최소 격분 충전에 부여되는 속성이 최소 수난 충전에 대신 적용"}],"trade":{"ids":{"explicit":["explicit.stat_1424305790"]}}} +{"ref":"Modifiers to Minimum Power Charges instead apply to Minimum Absorption Charges","better":1,"matchers":[{"string":"최소 권능 충전에 부여되는 속성이 최소 흡수 충전에 대신 적용"}],"trade":{"ids":{"explicit":["explicit.stat_1752582590"]}}} +{"ref":"Modifiers to number of Projectiles instead apply\nto the number of targets Projectiles Split towards","better":1,"matchers":[{"string":"속성 부여 효과를 투사체 수 대신\n투사체가 분할되는 대상 수에 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2057712935"]}}} +{"ref":"Molten Shell has #% increased Skill Effect Duration","better":1,"matchers":[{"string":"용암 방패의 스킬 효과 지속시간 #% 증가"},{"string":"용암 방패의 스킬 효과 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4255043252"]}}} +{"ref":"Molten Strike fires an additional Projectile","better":1,"matchers":[{"string":"용암 타격이 투사체 #개 추가 발사"},{"string":"용암 타격이 투사체 1개 추가 발사","value":1}],"trade":{"ids":{"enchant":["enchant.stat_995860222"]}}} +{"ref":"Monster Damage Penetrates #% Elemental Resistances","better":1,"fromUberAreaMods":true,"matchers":[{"string":"몬스터 피해가 #%의 원소 저항 관통"}],"trade":{"ids":{"explicit":["explicit.stat_1898978455"],"fractured":["fractured.stat_1898978455"]}}} +{"ref":"Monsters are Hexproof","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터가 사술 방지 보유"}],"trade":{"ids":{"explicit":["explicit.stat_4154059009"],"fractured":["fractured.stat_4154059009"]}}} +{"ref":"Monsters are Unaffected by Curses","better":1,"fromAreaMods":true,"matchers":[{"string":"몬스터가 저주의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_1472832594"]}}} +{"ref":"Monsters cannot be Leeched from","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터는 흡수 대상이 되지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_1140978125"],"fractured":["fractured.stat_1140978125"]}}} +{"ref":"Monsters cannot be Stunned","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터 기절 면역"}],"trade":{"ids":{"explicit":["explicit.stat_1041951480"],"fractured":["fractured.stat_1041951480"]}}} +{"ref":"Monsters cannot be Taunted","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터 도발 면역"}],"trade":{"ids":{"explicit":["explicit.stat_1106651798"],"fractured":["fractured.stat_1106651798"]}}} +{"ref":"Monsters deal #% extra Physical Damage as Cold","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터가 #%의 추가 물리 피해를 냉기 속성으로 가함"}],"trade":{"ids":{"explicit":["explicit.stat_3448216135"],"fractured":["fractured.stat_3448216135"]}}} +{"ref":"Monsters deal #% extra Physical Damage as Fire","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터가 #%의 추가 물리 피해를 화염 속성으로 가함"}],"trade":{"ids":{"explicit":["explicit.stat_1497673356"],"fractured":["fractured.stat_1497673356"]}}} +{"ref":"Monsters deal #% extra Physical Damage as Lightning","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터가 #%의 추가 물리 피해를 번개 속성으로 가함"}],"trade":{"ids":{"explicit":["explicit.stat_3416853625"],"fractured":["fractured.stat_3416853625"]}}} +{"ref":"Monsters fire # additional Projectiles","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터가 투사체 #개 추가 발사"},{"string":"플레이어 및 몬스터가 투사체 #개 추가 발사"},{"string":"플레이어가 투사체 #개 추가 발사"}],"trade":{"ids":{"explicit":["explicit.stat_1309819744"],"fractured":["fractured.stat_1309819744"]}}} +{"ref":"Monsters gain #% of Maximum Life as Extra Maximum Energy Shield","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터가 최대 생명력의 #%를 추가 에너지 보호막 최대치로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2887760183"],"fractured":["fractured.stat_2887760183"]}}} +{"ref":"Monsters gain #% of their Physical Damage as Extra Chaos Damage","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터가 물리 피해의 #%를 추가 카오스 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1840747977"],"fractured":["fractured.stat_1840747977"]}}} +{"ref":"Monsters gain #% of their Physical Damage as Extra Damage of a random Element","better":1,"fromUberAreaMods":true,"matchers":[{"string":"몬스터가 물리 피해의 #%를 추가 무작위 원소 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_4062840317"],"fractured":["fractured.stat_4062840317"]}}} +{"ref":"Monsters have #% chance to Avoid Ailments","better":1,"fromAreaMods":true,"matchers":[{"string":"몬스터가 #%의 확률로 상태 이상 긴급회피"}],"trade":{"ids":{"explicit":["explicit.stat_376585490"]}}} +{"ref":"Monsters have #% chance to Avoid Elemental Ailments","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터가 #%의 확률로 원소 상태 이상 긴급회피"}],"trade":{"ids":{"explicit":["explicit.stat_322206271"],"fractured":["fractured.stat_322206271"]}}} +{"ref":"Monsters have #% chance to Blind on Hit","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터가 명중 시 #%의 확률로 실명 유발"},{"string":"몬스터가 명중 시 실명 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1629869774"],"fractured":["fractured.stat_1629869774"]}}} +{"ref":"Monsters have #% chance to drop Double Aureus Coins","better":1,"matchers":[{"string":"몬스터가 #%의 확률로 아우레우스 코인을 2배로 떨어뜨림"}],"trade":{"ids":{"explicit":["sanctum.stat_231205265"]}}} +{"ref":"Monsters have #% chance to Duplicate dropped Rogue's Marker","better":1,"matchers":[{"string":"#%의 확률로 몬스터가 떨어지는 도둑의 증표 복제"},{"string":"몬스터가 #%의 확률로 떨어지는 도둑의 증표 복제"},{"string":"몬스터가 떨어지는 도둑의 증표 복제","value":100}],"trade":{"ids":{"explicit":["explicit.stat_823106560"]}}} +{"ref":"Monsters have #% chance to gain a Frenzy Charge on Hit","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터가 명중 시 #%의 확률로 격분 충전 획득"},{"string":"몬스터가 명중 시 격분 충전 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1742567045"],"fractured":["fractured.stat_1742567045"]}}} +{"ref":"Monsters have #% chance to gain a Power Charge on Hit","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터가 명중 시 #%의 확률로 권능 충전 획득"},{"string":"몬스터가 명중 시 권능 충전 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_406353061"],"fractured":["fractured.stat_406353061"]}}} +{"ref":"Monsters have #% chance to gain an Endurance Charge on Hit","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터가 명중 시 #%의 확률로 인내 충전 획득"},{"string":"몬스터가 명중 시 인내 충전 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_687813731"],"fractured":["fractured.stat_687813731"]}}} +{"ref":"Monsters have #% chance to Hinder on Hit with Spells","better":1,"fromAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터의 주문 명중 시 #%의 확률로 이동 방해 유발"},{"string":"몬스터의 주문 명중 시 이동 방해 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_962720646"],"fractured":["fractured.stat_962720646"]}}} +{"ref":"Monsters have #% chance to inflict Withered for 2 seconds on Hit","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터가 명중 시 #%의 확률로 2초 동안 위축 유발"},{"string":"몬스터가 명중 시 2초 동안 위축 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3044826007"],"fractured":["fractured.stat_3044826007"]}}} +{"ref":"Monsters have #% chance to Maim on Hit with Attacks","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터가 공격 명중 시 #%의 확률로 힘줄 절단 유발"},{"string":"몬스터가 공격 명중 시 힘줄 절단 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4164174520"],"fractured":["fractured.stat_4164174520"]}}} +{"ref":"Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터가 명중 시 #%의 확률로 권능, 격분, 인내 충전 강탈"},{"string":"몬스터가 명중 시 권능, 격분, 인내 충전 강탈","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3222482040"],"fractured":["fractured.stat_3222482040"]}}} +{"ref":"Monsters have #% increased Accuracy Rating","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터의 정확도 #% 증가"},{"string":"몬스터의 정확도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1588049749"],"fractured":["fractured.stat_1588049749"]}}} +{"ref":"Monsters have #% increased Area of Effect","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터의 효과 범위 #% 증가"},{"string":"몬스터의 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1708461270"],"fractured":["fractured.stat_1708461270"]}}} +{"ref":"Monsters have #% increased Critical Strike Chance","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터의 치명타 확률 #% 증가"},{"string":"몬스터의 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2753083623"],"fractured":["fractured.stat_2753083623"]}}} +{"ref":"Monsters have #% increased Poison Duration","better":1,"fromUberAreaMods":true,"matchers":[{"string":"몬스터의 중독 지속시간 #% 증가"},{"string":"몬스터의 중독 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_134839587"],"fractured":["fractured.stat_134839587"]}}} +{"ref":"Monsters have +# to Maximum Endurance Charges","better":1,"fromUberAreaMods":true,"matchers":[{"string":"몬스터의 인내 충전 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_4067268731"],"fractured":["fractured.stat_4067268731"]}}} +{"ref":"Monsters have +# to Maximum Frenzy Charges","better":1,"fromUberAreaMods":true,"matchers":[{"string":"몬스터의 격분 충전 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_3900284865"],"fractured":["fractured.stat_3900284865"]}}} +{"ref":"Monsters have +# to Maximum Power Charges","better":1,"fromUberAreaMods":true,"matchers":[{"string":"몬스터의 권능 충전 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_1103106414"],"fractured":["fractured.stat_1103106414"]}}} +{"ref":"Monsters have +#% Chance to Block Attack Damage","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"matchers":[{"string":"몬스터의 공격 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_881836292"],"fractured":["fractured.stat_881836292"]}}} +{"ref":"Monsters have +#% Chance to Block Spell Damage","better":1,"fromAreaMods":true,"matchers":[{"string":"몬스터의 주문 피해 막기 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_395617565"]}}} +{"ref":"Monsters have +#% chance to Suppress Spell Damage","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터의 주문 피해 억제 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2138205941"],"fractured":["fractured.stat_2138205941"]}}} +{"ref":"Monsters have a #% chance to avoid Poison, Impale, and Bleeding","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터가 #%의 확률로 중독, 꿰뚫기, 출혈 회피"}],"trade":{"ids":{"explicit":["explicit.stat_144665660"],"fractured":["fractured.stat_144665660"]}}} +{"ref":"Monsters have a #% chance to gain an Endurance Charge when hit","better":1,"fromUberAreaMods":true,"matchers":[{"string":"몬스터가 피격 시 #%의 확률로 인내 충전 획득"},{"string":"몬스터가 피격 시 인내 충전 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3707756896"],"fractured":["fractured.stat_3707756896"]}}} +{"ref":"Monsters have a #% chance to Ignite, Freeze and Shock on Hit","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터가 명중 시 #%의 확률로 점화, 동결, 감전 유발"},{"string":"몬스터가 명중 시 점화, 동결, 감전 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2553656203"],"fractured":["fractured.stat_2553656203"]}}} +{"ref":"Monsters impact #% increased Resolve","better":1,"matchers":[{"string":"몬스터가 투지에 주는 영향 #% 증가"},{"string":"몬스터가 투지에 주는 영향 #% 감소","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_3554249693"]}}} +{"ref":"Monsters inflict # Grasping Vine on Hit","better":1,"fromUberAreaMods":true,"matchers":[{"string":"몬스터가 명중 시 탐욕스러운 덩굴 #개 유발"}],"trade":{"ids":{"explicit":["explicit.stat_1751584857"],"fractured":["fractured.stat_1751584857"]}}} +{"ref":"Monsters Poison on Hit","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터의 공격 명중 시 중독"}],"trade":{"ids":{"explicit":["explicit.stat_3350803563","explicit.stat_394639761"],"fractured":["fractured.stat_3350803563"]}}} +{"ref":"Monsters prevent +#% of Suppressed Spell Damage","better":1,"fromAreaMods":true,"matchers":[{"string":"몬스터가 방지하는 억제된 주문 피해 #%"},{"string":"몬스터가 억제된 주문 피해의 #% 방지"}],"trade":{"ids":{"explicit":["explicit.stat_1260060682"]}}} +{"ref":"Monsters reflect #% of Elemental Damage","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터가 원소 피해의 #%를 반사"}],"trade":{"ids":{"explicit":["explicit.stat_2764017512"],"fractured":["fractured.stat_2764017512"]}}} +{"ref":"Monsters reflect #% of Physical Damage","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터가 물리 피해의 #%를 반사"}],"trade":{"ids":{"explicit":["explicit.stat_3464419871"],"fractured":["fractured.stat_3464419871"]}}} +{"ref":"Monsters Reflect Hexes","better":1,"fromAreaMods":true,"matchers":[{"string":"몬스터가 사술을 반사"}],"trade":{"ids":{"explicit":["explicit.stat_1341845920"]}}} +{"ref":"Monsters take #% increased Damage","better":1,"matchers":[{"string":"몬스터가 받는 피해 #% 증가"},{"string":"몬스터가 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3007862517","sanctum.stat_2549512259"]}}} +{"ref":"Monsters take #% reduced Extra Damage from Critical Strikes","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터가 치명타로 받는 추가 피해 #% 감소"},{"string":"몬스터가 치명타로 받는 추가 피해 #% 증가","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_337935900"],"fractured":["fractured.stat_337935900"]}}} +{"ref":"Monsters' Action Speed cannot be modified to below Base Value","better":1,"fromUberAreaMods":true,"matchers":[{"string":"몬스터의 동작 속도가 기본 수치 밑으로 내려가지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_2758454849"],"fractured":["fractured.stat_2758454849"]}}} +{"ref":"Monsters' Action Speed cannot be modified to below Base Value\nMonsters' Movement Speed cannot be modified to below Base Value","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터의 동작 속도가 기본 수치 밑으로 내려가지 않음\n몬스터의 이동 속도가 기본 수치 밑으로 내려가지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_798009319"],"fractured":["fractured.stat_798009319"]}}} +{"ref":"Monsters' Attacks have #% chance to Impale on Hit","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터의 공격이 명중 시 #%의 확률로 꿰뚫음"},{"string":"몬스터의 공격이 명중 시 꿰뚫음","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1541224187"],"fractured":["fractured.stat_1541224187"]}}} +{"ref":"Monsters' Movement Speed cannot be modified to below Base Value","better":1,"fromUberAreaMods":true,"matchers":[{"string":"몬스터의 이동 속도가 기본 수치 밑으로 내려가지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_777421120"],"fractured":["fractured.stat_777421120"]}}} +{"ref":"Monsters' Projectiles have #% chance to be able to Chain when colliding with Terrain","better":1,"fromUberAreaMods":true,"matchers":[{"string":"몬스터의 투사체가 지형과 충돌 시 #%의 확률로 연쇄"},{"string":"몬스터의 투사체가 지형과 충돌 시 연쇄 가능","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2753403220"],"fractured":["fractured.stat_2753403220"]}}} +{"ref":"Monsters' skills Chain # additional times","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"몬스터의 스킬 #회 추가 연쇄"}],"trade":{"ids":{"explicit":["explicit.stat_3183973644"],"fractured":["fractured.stat_3183973644"]}}} +{"ref":"More Currency: #%","better":1,"matchers":[{"string":"화폐 더 많음: #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_more_currency_drops"]}}} +{"ref":"More Divination Cards: #%","better":1,"matchers":[{"string":"점술 카드 더 많음: #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_more_card_drops"]}}} +{"ref":"More Maps: #%","better":1,"matchers":[{"string":"지도 더 많음: #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_more_map_drops"]}}} +{"ref":"More Scarabs: #%","better":1,"matchers":[{"string":"갑충석 더 많음: #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_more_scarab_drops"]}}} +{"ref":"Movement Speed cannot be modified to below Base Value","better":1,"matchers":[{"string":"이동 속도가 기본 수치 밑으로 내려가지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_3875592188"],"fractured":["fractured.stat_3875592188"]}}} +{"ref":"Moving while Bleeding doesn't cause you to take extra Damage","better":1,"matchers":[{"string":"출혈 상태에서 이동해도 추가 피해를 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_935326447"],"fractured":["fractured.stat_935326447"],"crafted":["crafted.stat_935326447"]}}} +{"ref":"Nearby allies gain #% increased Damage","better":1,"matchers":[{"string":"주변 동료들이 주는 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3175679225"]}}} +{"ref":"Nearby Allies gain #% increased Mana Regeneration Rate","better":1,"matchers":[{"string":"주변 동료들의 마나 재생 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_778848857"]}}} +{"ref":"Nearby Allies gain #% of Life Regenerated per second","better":1,"matchers":[{"string":"주변 동료들이 1초마다 생명력의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_3462673103"]}}} +{"ref":"Nearby Allies have #% Chance to Block Attack Damage per 100 Strength you have","better":1,"matchers":[{"string":"주변 동료들이 플레이어의 힘 100당 공격 피해 막기 확률 #% 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3941641418"]}}} +{"ref":"Nearby Allies have #% increased Cast Speed per 100 Intelligence you have","better":1,"matchers":[{"string":"플레이어의 지능 100당 주변 동료들의 시전 속도 #% 증가"},{"string":"플레이어의 지능 100당 주변 동료들의 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2373999301"]}}} +{"ref":"Nearby Allies have #% increased Defences per 100 Strength you have","better":1,"matchers":[{"string":"플레이어의 힘 100당 주변 동료들의 방어력 #% 증가"},{"string":"플레이어의 힘 100당 주변 동료들의 방어력 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3767939384"]}}} +{"ref":"Nearby Allies have #% increased Item Rarity","better":1,"matchers":[{"string":"주변 동료들이 발견하는 아이템 희귀도 #% 증가"},{"string":"주변 동료들이 발견하는 아이템 희귀도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1722463112"]}}} +{"ref":"Nearby Allies have +# Fortification","better":1,"matchers":[{"string":"주변 동료들이 #의 방어 상승 획득"}],"trade":{"ids":{"explicit":["explicit.stat_244825991"]}}} +{"ref":"Nearby Allies have +#% to Critical Strike Multiplier","better":1,"matchers":[{"string":"주변 동료들의 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3152714748"]}}} +{"ref":"Nearby Allies have +#% to Critical Strike Multiplier per 100 Dexterity you have","better":1,"matchers":[{"string":"플레이어의 민첩 100당 주변 동료들의 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1438488526"]}}} +{"ref":"Nearby Allies have Culling Strike","better":1,"matchers":[{"string":"주변 동료들이 마무리 타격 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1560540713"]}}} +{"ref":"Nearby allies Recover #% of your Maximum Life when you Die","dp":true,"better":1,"matchers":[{"string":"사망 시 플레이어 최대 생명력의 #%를 주변 동료들이 회복"}],"trade":{"ids":{"explicit":["explicit.stat_3484267929"]}}} +{"ref":"Nearby Allies' Action Speed cannot be modified to below Base Value","better":1,"matchers":[{"string":"주변 동료들의 동작 속도가 기본 수치 밑으로 내려가지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_1356468153"]}}} +{"ref":"Nearby Allies' Damage with Hits is Lucky","better":1,"matchers":[{"string":"주변 동료들이 명중 시 피해에 행운 적용"}],"trade":{"ids":{"explicit":["explicit.stat_655871604"]}}} +{"ref":"Nearby corpses Explode when you Warcry, dealing #% of their Life as Physical Damage","better":1,"matchers":[{"string":"함성 사용 시 주변의 시체가 폭발하여 시체의 최대 생명력의 #%를 물리 피해로 줌"}],"trade":{"ids":{"explicit":["explicit.stat_293071889"]}}} +{"ref":"Nearby Enemies are Blinded","better":1,"matchers":[{"string":"주변의 적 실명 유발"}],"trade":{"ids":{"explicit":["explicit.stat_2826979740"],"implicit":["implicit.stat_2826979740"],"fractured":["fractured.stat_2826979740"]}}} +{"ref":"Nearby Enemies are Blinded while Physical Aegis is not depleted","better":1,"matchers":[{"string":"물리 비호가 고갈되지 않은 동안 주변의 적 실명 유발"}],"trade":{"ids":{"explicit":["explicit.stat_2504709365"]}}} +{"ref":"Nearby Enemies are Chilled","better":1,"matchers":[{"string":"주변의 적 냉각 유발"}],"trade":{"ids":{"explicit":["explicit.stat_2159555743","explicit.stat_2480873346"]}}} +{"ref":"Nearby Enemies are Covered in Ash","better":1,"matchers":[{"string":"주변의 적이 재로 뒤덮임"}],"trade":{"ids":{"explicit":["explicit.stat_746994389"]}}} +{"ref":"Nearby Enemies are Crushed","better":1,"matchers":[{"string":"주변의 적이 타쇄당함"}],"trade":{"ids":{"implicit":["implicit.stat_3608782127"]}}} +{"ref":"Nearby Enemies are Crushed while you have at least # Rage","better":1,"matchers":[{"string":"격노가 # 이상인 경우 주변의 적이 타쇄당함"}],"trade":{"ids":{"explicit":["explicit.stat_3069588220"]}}} +{"ref":"Nearby Enemies are Hindered, with #% reduced Movement Speed","better":-1,"matchers":[{"string":"주변의 적이 이동 방해를 받아 이동 속도 #% 증가"},{"string":"주변의 적이 이동 방해를 받아 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_607839150"]},"inverted":true}} +{"ref":"Nearby Enemies are Intimidated","better":1,"matchers":[{"string":"주변의 적이 위협에 걸림"}],"trade":{"ids":{"explicit":["explicit.stat_2899095498"]}}} +{"ref":"Nearby Enemies are Scorched","better":1,"matchers":[{"string":"주변의 적이 그을림"}],"trade":{"ids":{"explicit":["explicit.stat_3733114005"]}}} +{"ref":"Nearby Enemies cannot deal Critical Strikes","better":1,"matchers":[{"string":"주변의 적이 치명타를 가할 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_1177959871"]}}} +{"ref":"Nearby Enemies cannot gain Power, Frenzy or Endurance Charges","better":1,"matchers":[{"string":"주변의 적이 권능, 격분 또는 인내 충전을 획득할 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_4031527864"]}}} +{"ref":"Nearby Enemies Convert #% of their Physical Damage to Fire","better":1,"matchers":[{"string":"주변의 적이 물리 피해의 #%를 화염으로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_3729324251"]}}} +{"ref":"Nearby Enemies grant #% increased Flask Charges","better":1,"matchers":[{"string":"주변의 적에게 받는 플라스크 충전량 #% 증가"},{"string":"주변의 적에게 받는 플라스크 충전량 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3547189490"]}}} +{"ref":"Nearby Enemies have #% increased Effect of Curses on them","better":1,"matchers":[{"string":"주변의 적에게 걸린 저주 효과 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_443525707"]}}} +{"ref":"Nearby Enemies have #% increased Fire and Cold Resistances","better":1,"matchers":[{"string":"주변의 적들의 화염 및 냉기 저항 #% 증가"},{"string":"주변의 적들의 화염 및 냉기 저항 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4273356746"]}}} +{"ref":"Nearby Enemies have #% reduced Stun and Block Recovery","better":-1,"matchers":[{"string":"주변의 적의 기절 및 막기 회복 #% 증가"},{"string":"주변의 적의 기절 및 막기 회복 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3169825297"]},"inverted":true}} +{"ref":"Nearby Enemies have #% to all Resistances","better":-1,"matchers":[{"string":"주변의 적의 모든 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_668145148"]}}} +{"ref":"Nearby Enemies have +#% to Chaos Resistance","better":-1,"matchers":[{"string":"주변의 적의 카오스 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1902595112"],"fractured":["fractured.stat_1902595112"],"scourge":["scourge.stat_1902595112"]}}} +{"ref":"Nearby Enemies have +#% to Cold Resistance","better":-1,"matchers":[{"string":"주변의 적의 냉기 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2674336304"],"fractured":["fractured.stat_2674336304"],"scourge":["scourge.stat_2674336304"]}}} +{"ref":"Nearby Enemies have +#% to Fire Resistance","better":-1,"matchers":[{"string":"주변의 적의 화염 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3914021960"],"fractured":["fractured.stat_3914021960"],"scourge":["scourge.stat_3914021960"]}}} +{"ref":"Nearby Enemies have +#% to Lightning Resistance","better":-1,"matchers":[{"string":"주변의 적의 번개 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1849749435"],"fractured":["fractured.stat_1849749435"],"scourge":["scourge.stat_1849749435"]}}} +{"ref":"Nearby Enemies have Lightning Resistance equal to yours","better":1,"matchers":[{"string":"주변 적들이 플레이어와 동일한 번개 저항 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3549734978"]}}} +{"ref":"Nearby Enemies have Malediction","better":1,"matchers":[{"string":"주변의 적에게 악담 부여"}],"trade":{"ids":{"implicit":["implicit.stat_2774148053"]}}} +{"ref":"Nearby Enemies Killed by anyone count as being Killed by you instead","better":1,"matchers":[{"string":"주변에서 처치되는 모든 적을 자신이 처치한 것으로 간주"}],"trade":{"ids":{"explicit":["explicit.stat_2307982579"]}}} +{"ref":"Nearby Enemies take #% increased Elemental Damage","better":1,"matchers":[{"string":"주변의 적이 받는 원소 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_639595152"],"fractured":["fractured.stat_639595152"]}}} +{"ref":"Nearby Enemies take #% increased Physical Damage","better":1,"matchers":[{"string":"주변의 적이 받는 물리 피해 #% 증가"},{"string":"주변의 적이 받는 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_415837237"],"fractured":["fractured.stat_415837237"],"scourge":["scourge.stat_415837237"]}}} +{"ref":"Nearby Enemies' Chaos Resistance is 0","better":1,"matchers":[{"string":"주변의 적의 카오스 저항 0"}],"trade":{"ids":{"explicit":["explicit.stat_663080464"]}}} +{"ref":"Nearby Enemy Monsters have at least #% of Life Reserved","better":1,"matchers":[{"string":"주변의 적 몬스터의 생명력이 #% 이상 점유됨"}],"trade":{"ids":{"explicit":["explicit.stat_1063263585"]}}} +{"ref":"Nearby stationary Enemies gain a Grasping Vine every second","better":1,"matchers":[{"string":"주변의 정지 상태인 적이 #초마다 탐욕스러운 덩굴 1개 획득"},{"string":"주변의 정지 상태인 적이 1초마다 탐욕스러운 덩굴 1개 획득","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3469279727"]}}} +{"ref":"Necrotic Footprints","better":1,"matchers":[{"string":"괴사의 발자국"}],"trade":{"ids":{"explicit":["explicit.stat_214242256"]}}} +{"ref":"Never deal Critical Strikes","better":1,"matchers":[{"string":"치명타가 발생하지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_3638599682"],"scourge":["scourge.stat_3638599682"]}}} +{"ref":"No Chance to Block","better":1,"matchers":[{"string":"막기 확률 없음"}],"trade":{"ids":{"explicit":["explicit.stat_1023752508"]}}} +{"ref":"No Resolve Mitigation, chance to Avoid Resolve loss or Resolve Aegis","better":1,"matchers":[{"string":"투지 완화, 투지 상실 긴급회피 확률 또는 투지 비호 없음"}],"trade":{"ids":{"explicit":["sanctum.stat_1278905604"]}}} +{"ref":"No Travel Cost","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"이동 비용 없음"}],"trade":{"ids":{"explicit":["explicit.stat_2946222246"],"fractured":["fractured.stat_2946222246"]}}} +{"ref":"Non-Aura Curses you inflict are not removed from Dying Enemies","better":1,"matchers":[{"string":"플레이어가 유발한 비-오라 저주 효과는 적이 죽어도 사라지지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_847744351"]}}} +{"ref":"Non-Aura Hexes expire upon reaching #% of base Effect","better":1,"matchers":[{"string":"비-오라 사술이 기본 효과의 #%에 도달 시 만료"}],"trade":{"ids":{"explicit":["explicit.stat_2417456003"]}}} +{"ref":"Non-Aura Hexes gain 20% increased Effect per second","better":1,"matchers":[{"string":"비-오라 사술의 효과 1초당 20% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3266609002"]}}} +{"ref":"Non-Aura Vaal Skills require #% reduced Souls Per Use","better":-1,"matchers":[{"string":"비-오라 바알 스킬 사용 시 필요한 영혼 #% 증가"},{"string":"비-오라 바알 스킬 사용 시 필요한 영혼 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3533432197"],"fractured":["fractured.stat_3533432197"]},"inverted":true}} +{"ref":"Non-Aura Vaal Skills require #% reduced Souls Per Use during Effect","better":-1,"matchers":[{"string":"효과를 받는 동안 비-오라 바알 스킬 사용 시 필요한 영혼 #% 증가"},{"string":"효과를 받는 동안 비-오라 바알 스킬 사용 시 필요한 영혼 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1274125114"]},"inverted":true}} +{"ref":"Non-Channelling Skills Cost +# Mana","better":1,"matchers":[{"string":"비-집중 유지 스킬의 마나 소모 #"}],"trade":{"ids":{"explicit":["explicit.stat_407482587"],"crafted":["crafted.stat_407482587"]}}} +{"ref":"Non-Channelling Skills have +# to Total Mana Cost","better":1,"matchers":[{"string":"비-집중 유지 스킬의 총 마나 소모 #"}],"trade":{"ids":{"explicit":["explicit.stat_677564538"],"fractured":["fractured.stat_677564538"],"crafted":["crafted.stat_677564538"]}}} +{"ref":"Non-Channelling Skills have +# to Total Mana Cost while affected by Clarity","better":1,"matchers":[{"string":"명상의 영향을 받는 동안 비-집중 유지 스킬의 총 마나 소모 #"}],"trade":{"ids":{"explicit":["explicit.stat_1853636813"]}}} +{"ref":"Non-Chilled Enemies you inflict Bleeding on are Chilled","better":1,"matchers":[{"string":"냉각되지 않은 적에게 출혈을 유발하면 해당 적이 냉각됨"}],"trade":{"ids":{"explicit":["explicit.stat_398940995"]}}} +{"ref":"Non-Chilled Enemies you Poison are Chilled","better":1,"matchers":[{"string":"냉각되지 않은 적을 중독시키면 해당 적이 냉각됨"}],"trade":{"ids":{"explicit":["explicit.stat_3998191356"]}}} +{"ref":"Non-critical strikes deal #% more Damage","better":1,"matchers":[{"string":"비-치명타로 주는 피해 #% 증폭"},{"string":"비-치명타로 주는 피해 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1711683262"]}}} +{"ref":"Non-Critical Strikes deal no Damage","better":1,"matchers":[{"string":"치명타로만 피해를 줌"}],"trade":{"ids":{"explicit":["explicit.stat_2511969244"]}}} +{"ref":"Non-Damaging Ailments have #% increased Effect on you while you have Arcane Surge","better":1,"matchers":[{"string":"비전 쇄도 상태에서 자신에게 적용되는 비-피해 상태 이상 효과 #% 증가"},{"string":"비전 쇄도 상태에서 자신에게 적용되는 비-피해 상태 이상 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3014823981"]}}} +{"ref":"Non-Exerted Attacks deal no Damage","better":1,"matchers":[{"string":"비-전력 공격이 피해를 주지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_3303984198"]}}} +{"ref":"Non-instant Mana Recovery from Flasks is also Recovered as Life","better":1,"matchers":[{"string":"효과가 즉시 적용되지 않는 플라스크를 사용하여 마나 회복 시 생명력도 회복"}],"trade":{"ids":{"explicit":["explicit.stat_2262007777"]}}} +{"ref":"Non-Unique Utility Flasks you Use apply to Linked Targets","better":1,"matchers":[{"string":"플레이어가 사용하는 비-고유 특수 플라스크가 연결된 대상에게 적용"}],"trade":{"ids":{"explicit":["explicit.stat_865273657"]}}} +{"ref":"Non-Vaal Strike Skills target # additional nearby Enemy","better":1,"matchers":[{"string":"비-바알 타격 스킬이 주변 적 #명을 추가 대상으로 삼음"}],"trade":{"ids":{"explicit":["explicit.stat_1661253443"],"implicit":["implicit.stat_1661253443"]}}} +{"ref":"Notable Passive Skills in Radius are Transformed to\ninstead grant: #% increased Mana Cost of Skills and #% increased Spell Damage","better":1,"matchers":[{"string":"반경 내 주요 패시브 스킬이 변형되어 다음을 대신 제공:\n스킬의 마나 소모 #% 증가, 주문 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3430460307"]}}} +{"ref":"Notable Passive Skills in Radius are Transformed to\ninstead grant: Minions have #% increased Movement Speed","better":1,"matchers":[{"string":"반경 내 주요 패시브 스킬이 변형되어 다음을 대신 제공:\n소환수의 이동 속도 #% 증가"},{"string":"반경 내 주요 패시브 스킬이 변형되어 다음을 대신 제공:\n소환수의 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3362879252"]}}} +{"ref":"Notable Passive Skills in Radius are Transformed to\ninstead grant: Minions take #% increased Damage","better":1,"matchers":[{"string":"반경 내 주요 패시브 스킬이 변형되어 다음을 대신 제공:\n소환수가 받는 피해 #% 증가"},{"string":"반경 내 주요 패시브 스킬이 변형되어 다음을 대신 제공:\n소환수가 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3659983276"]}}} +{"ref":"Notable Passive Skills in Radius grant nothing","better":1,"matchers":[{"string":"반경 내 주요 패시브 스킬이 아무것도 부여하지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_2627243269"]}}} +{"ref":"Nova Spells deal 30% less Damage to Players with Hits and Ailments\nNova Spells Cast at the targeted location instead of around you","better":1,"matchers":[{"string":"플레이어에 대한 폭발 주문의 명중 및 상태 이상 피해 30% 감폭\n폭발 주문을 시전자 주변이 아닌 목표 지점에 시전"}],"trade":{"ids":{"explicit":["explicit.stat_728246008"]}}} +{"ref":"Nova Spells have #% more Area of Effect","better":1,"matchers":[{"string":"폭발 주문의 효과 범위 #% 증폭"},{"string":"폭발 주문의 효과 범위 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_200113086"]}}} +{"ref":"of Aisling's Veil","better":0,"matchers":[{"string":"- 아이슬링의 장막"}],"trade":{"ids":{"veiled":["veiled.mod_48007"]}}} +{"ref":"of Cameria's Veil","better":0,"matchers":[{"string":"- 카메리아의 장막"}],"trade":{"ids":{"veiled":["veiled.mod_65163"]}}} +{"ref":"of Hillock's Veil","better":0,"matchers":[{"string":"- 힐록의 장막"}],"trade":{"ids":{"veiled":["veiled.mod_3975"]}}} +{"ref":"of Janus' Veil","better":0,"matchers":[{"string":"- 야누스의 장막"}],"trade":{"ids":{"veiled":["veiled.mod_11536"]}}} +{"ref":"of Jorgin's Veil","better":0,"matchers":[{"string":"- 요르긴의 장막"}],"trade":{"ids":{"veiled":["veiled.mod_62955"]}}} +{"ref":"of Riker's Veil","better":0,"matchers":[{"string":"- 라이커의 장막"}],"trade":{"ids":{"veiled":["veiled.mod_48408"]}}} +{"ref":"of the Veil","better":0,"matchers":[{"string":"- 장막"}],"trade":{"ids":{"veiled":["veiled.mod_63099"]}}} +{"ref":"Offering Skills have #% increased Duration","better":1,"matchers":[{"string":"공물 스킬의 지속시간 #% 증가"},{"string":"공물 스킬의 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2957407601"]}}} +{"ref":"On Killing a Poisoned Enemy, nearby Enemies are Poisoned","better":1,"matchers":[{"string":"중독된 적 처치 시 주변의 적 중독"}],"trade":{"ids":{"explicit":["explicit.stat_456916387"]}}} +{"ref":"Only affects Passives in # Ring","better":1,"matchers":[{"string":"좁은 반경의 패시브 스킬에만 영향을 미침","advanced":"좁은 반경의 패시브 스킬에만 영향을 미침(좁은 반경-아주 넓은 반경)","value":1},{"string":"중간 반경의 패시브 스킬에만 영향을 미침","advanced":"중간 반경의 패시브 스킬에만 영향을 미침(좁은 반경-아주 넓은 반경)","value":2},{"string":"넓은 반경의 패시브 스킬에만 영향을 미침","advanced":"넓은 반경의 패시브 스킬에만 영향을 미침(좁은 반경-아주 넓은 반경)","value":3},{"string":"아주 넓은 반경의 패시브 스킬에만 영향을 미침","advanced":"아주 넓은 반경의 패시브 스킬에만 영향을 미침(좁은 반경-아주 넓은 반경)","value":4},{"string":"거대한 반경의 패시브 스킬에만 영향을 미침","advanced":"거대한 반경의 패시브 스킬에만 영향을 미침","value":5}],"trade":{"ids":{"explicit":["explicit.stat_3642528642"]},"option":true}} +{"ref":"Onslaught","better":1,"matchers":[{"string":"맹공"}],"trade":{"ids":{"explicit":["explicit.stat_1520059289"],"implicit":["implicit.stat_1520059289"]}}} +{"ref":"Orb of Storms deals #% increased Damage","better":1,"matchers":[{"string":"폭풍 보주가 주는 피해 #% 증가"},{"string":"폭풍 보주가 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4084540709"]}}} +{"ref":"Orb of Storms has #% increased Cast Speed","better":1,"matchers":[{"string":"폭풍 보주 시전 속도 #% 증가"}],"trade":{"ids":{"enchant":["enchant.stat_2778301298"]}}} +{"ref":"Pain Attunement","better":1,"matchers":[{"string":"고통의 조율"}],"trade":{"ids":{"explicit":["explicit.stat_98977150"],"fractured":["fractured.stat_98977150"],"scourge":["scourge.stat_98977150"]}}} +{"ref":"Passive Skills in Radius also grant #% increased Armour","better":1,"matchers":[{"string":"반경 내 패시브 스킬이 추가로 방어도 #% 증가 부여"},{"string":"반경 내 패시브 스킬이 추가로 방어도 #% 감소 부여","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1647724040"]}}} +{"ref":"Passive Skills in Radius also grant #% increased Chaos Damage","better":1,"matchers":[{"string":"반경 내 패시브 스킬이 추가로 카오스 피해 #% 증가 부여"},{"string":"반경 내 패시브 스킬이 추가로 카오스 피해 #% 감소 부여","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1313763128"]}}} +{"ref":"Passive Skills in Radius also grant #% increased Cold Damage","better":1,"matchers":[{"string":"반경 내 패시브 스킬이 추가로 냉기 피해 #% 증가 부여"},{"string":"반경 내 패시브 스킬이 추가로 냉기 피해 #% 감소 부여","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2999571636"]}}} +{"ref":"Passive Skills in Radius also grant #% increased Energy Shield","better":1,"matchers":[{"string":"반경 내 패시브 스킬이 추가로 에너지 보호막 #% 증가 부여"},{"string":"반경 내 패시브 스킬이 추가로 에너지 보호막 #% 감소 부여","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4215928287"]}}} +{"ref":"Passive Skills in Radius also grant #% increased Evasion Rating","better":1,"matchers":[{"string":"반경 내 패시브 스킬이 추가로 회피 #% 증가 부여"},{"string":"반경 내 패시브 스킬이 추가로 회피 #% 감소 부여","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3761482453"]}}} +{"ref":"Passive Skills in Radius also grant #% increased Fire Damage","better":1,"matchers":[{"string":"반경 내 패시브 스킬이 추가로 화염 피해 #% 증가 부여"},{"string":"반경 내 패시브 스킬이 추가로 화염 피해 #% 감소 부여","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_719810173"]}}} +{"ref":"Passive Skills in Radius also grant #% increased Global Critical Strike Chance","better":1,"matchers":[{"string":"반경 내 패시브 스킬이 추가로 일반 치명타 확률 #% 증가 부여"},{"string":"반경 내 패시브 스킬이 추가로 일반 치명타 확률 #% 감소 부여","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3901726941"]}}} +{"ref":"Passive Skills in Radius also grant #% increased Lightning Damage","better":1,"matchers":[{"string":"반경 내 패시브 스킬이 추가로 번개 피해 #% 증가 부여"},{"string":"반경 내 패시브 스킬이 추가로 번개 피해 #% 감소 부여","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3556460433"]}}} +{"ref":"Passive Skills in Radius also grant #% increased Physical Damage","better":1,"matchers":[{"string":"반경 내 패시브 스킬이 추가로 물리 피해 #% 증가 부여"},{"string":"반경 내 패시브 스킬이 추가로 물리 피해 #% 감소 부여","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3252387974"]}}} +{"ref":"Passive Skills in Radius also grant +# to all Attributes","better":1,"matchers":[{"string":"반경 내 패시브 스킬이 추가로 모든 능력치 # 부여"}],"trade":{"ids":{"explicit":["explicit.stat_3587101704"]}}} +{"ref":"Passive Skills in Radius also grant +# to maximum Life","better":1,"matchers":[{"string":"반경 내 패시브 스킬이 추가로 최대 생명력 # 부여"}],"trade":{"ids":{"explicit":["explicit.stat_1223932609"]}}} +{"ref":"Passive Skills in Radius also grant +# to maximum Mana","better":1,"matchers":[{"string":"반경 내 패시브 스킬이 추가로 마나 최대치 # 부여"}],"trade":{"ids":{"explicit":["explicit.stat_3382199855"]}}} +{"ref":"Passive Skills in Radius also grant +#% to Chaos Resistance","better":1,"matchers":[{"string":"반경 내 패시브 스킬이 추가로 카오스 저항 #% 부여"}],"trade":{"ids":{"explicit":["explicit.stat_1812306107"]}}} +{"ref":"Passive Skills in Radius also grant: #% increased Unarmed Attack Speed with Melee Skills","better":1,"matchers":[{"string":"반경 내 패시브 스킬이 제공: 근접 스킬의 비무장 공격 속도 #% 감소"},{"string":"반경 내 패시브 스킬이 제공: 근접 스킬의 비무장 공격 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3087912144"]}}} +{"ref":"Passive Skills in Radius also grant: Traps and Mines deal # to # added Physical Damage","better":1,"matchers":[{"string":"반경 내의 패시브 스킬이 제공: 덫 및 지뢰가 주는 물리 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_576760472"],"fractured":["fractured.stat_576760472"]}}} +{"ref":"Passives granting Cold Resistance or all Elemental Resistances in Radius\nalso grant an equal chance to gain a Frenzy Charge on Kill","better":1,"matchers":[{"string":"처치 시 반경 내 패시브 스킬이 제공하는 냉기 저항 또는 모든 원소 저항 수치와\n동일한 확률로 격분 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_509677462"]}}} +{"ref":"Passives granting Cold Resistance or all Elemental Resistances in Radius\nalso grant Chance to Suppress Spell Damage at #% of its value","better":1,"matchers":[{"string":"반경 내 냉기 저항 또는 모든 원소 저항을 제공하는 패시브 스킬이\n해당 수치의 #%만큼을 주문 피해 억제 확률로 제공"}],"trade":{"ids":{"explicit":["explicit.stat_1409669176"]}}} +{"ref":"Passives granting Fire Resistance or all Elemental Resistances in Radius\nalso grant an equal chance to gain an Endurance Charge on Kill","better":1,"matchers":[{"string":"처치 시 반경 내 패시브 스킬이 제공하는 화염 저항 또는 모든 원소 저항 수치와\n동일한 확률로 인내 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1645524575"]}}} +{"ref":"Passives granting Fire Resistance or all Elemental Resistances in Radius\nalso grant Chance to Block Attack Damage at #% of its value","better":1,"matchers":[{"string":"반경 내 화염 저항 또는 모든 원소 저항을 제공하는 패시브 스킬이\n해당 수치의 #%만큼을 공격 피해 막기 확률로 제공"}],"trade":{"ids":{"explicit":["explicit.stat_3931143552"]}}} +{"ref":"Passives granting Lightning Resistance or all Elemental Resistances in Radius\nalso grant an equal chance to gain a Power Charge on Kill","better":1,"matchers":[{"string":"처치 시 반경 내 패시브 스킬이 제공하는 번개 저항 또는 모든 원소 저항 수치와\n동일한 확률로 권능 충전 획득"}],"trade":{"ids":{"explicit":["explicit.stat_926444104"]}}} +{"ref":"Passives granting Lightning Resistance or all Elemental Resistances in Radius\nalso grant Chance to Block Spell Damage at #% of its value","better":1,"matchers":[{"string":"반경 내 번개 저항 또는 모든 원소 저항을 제공하는 패시브 스킬이\n해당 수치의 #%만큼을 주문 피해 막기 확률로 제공"}],"trade":{"ids":{"explicit":["explicit.stat_1224928411"]}}} +{"ref":"Passives in Radius can be Allocated without being connected to your tree","better":1,"matchers":[{"string":"반경 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능"}],"trade":{"ids":{"explicit":["explicit.stat_4077035099"]}}} +{"ref":"Passives in Radius of # can be Allocated\nwithout being connected to your tree","better":0,"matchers":[{"string":"반경 철의 반사신경 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":10661},{"string":"반경 바알의 계약 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":10808},{"string":"반경 바람의 무희 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":11239},{"string":"반경 카오스 면역 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":11455},{"string":"반경 강철 손아귀 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":12926},{"string":"반경 피투성이 칼날 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":13019},{"string":"반경 차원 곡예 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":14914},{"string":"반경 진홍색 춤 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":17818},{"string":"반경 소환수 불안정 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":18663},{"string":"반경 불가지론자 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":19732},{"string":"반경 복수의 병기창 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":21210},{"string":"반경 영원한 젊음 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":21650},{"string":"반경 원소 과부하 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":22088},{"string":"반경 소집 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":23090},{"string":"반경 완벽한 고통 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":23407},{"string":"반경 도관 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":23540},{"string":"반경 사악한 수호 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":23950},{"string":"반경 혼 강탈자 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":24426},{"string":"반경 불안정한 방어 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":24720},{"string":"반경 바알의 지배력 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":27637},{"string":"반경 메마른 심장 숭배 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":27781},{"string":"반경 고통의 조율 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":31703},{"string":"반경 확고한 기술 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":31961},{"string":"반경 물질보다 정신 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":34098},{"string":"반경 혼의 춤 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":35255},{"string":"반경 원소 균형 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":39085},{"string":"반경 비껴내기 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":39713},{"string":"반경 변함없는 자세 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":40907},{"string":"반경 선대의 유대 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":41970},{"string":"반경 근접 사격 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":42178},{"string":"반경 룬 결속사 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":42343},{"string":"반경 사술의 대가 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":43988},{"string":"반경 불의 화신 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":44941},{"string":"반경 강령술의 비호 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":45175},{"string":"반경 자만의 정점 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":49639},{"string":"반경 강철의 의지 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":50288},{"string":"반경 유연한 전투원 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":50679},{"string":"반경 곡예 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":54307},{"string":"반경 춤추는 화살 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":54922},{"string":"반경 섬뜩한 충전기 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":56075},{"string":"반경 마법사 파멸 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":56116},{"string":"반경 꿰뚫는 자 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":57257},{"string":"반경 혈마법 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":57279},{"string":"반경 신성한 방패 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":58556},{"string":"반경 유아론 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":60247},{"string":"반경 바알 학살 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":61516},{"string":"반경 레테의 그늘 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":62791},{"string":"반경 맹신자의 서약 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":63425},{"string":"반경 정확한 기술 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":63620},{"string":"반경 필사적 신념 내 패시브 스킬이 트리와 연결되지 않아도 할당 가능","value":9403}],"trade":{"ids":{"explicit":["explicit.stat_2422708892"]},"option":true}} +{"ref":"Patrol Packs have #% increased chance to be replaced by an Elite Patrol Pack","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"순찰 무리 대신 정예 순찰 무리가 등장할 확률 #% 증가"},{"string":"순찰 무리 대신 정예 순찰 무리가 등장할 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1982436039"],"fractured":["fractured.stat_1982436039"]}}} +{"ref":"Patrol Packs take #% increased damage","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"순찰 무리가 받는 피해 #% 증가"},{"string":"순찰 무리가 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3702411606"],"fractured":["fractured.stat_3702411606"]}}} +{"ref":"Patrolling Monsters deal #% increased Damage","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"순찰하는 몬스터가 주는 피해 #% 증가"},{"string":"순찰하는 몬스터가 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3144910208"],"fractured":["fractured.stat_3144910208"]}}} +{"ref":"Penance Brand deals #% increased Damage","better":1,"matchers":[{"string":"속죄의 낙인이 주는 피해 #% 증가"},{"string":"속죄의 낙인이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_610562666"]}}} +{"ref":"Penance Brand has #% increased Area of Effect","better":1,"matchers":[{"string":"속죄의 낙인의 효과 범위 #% 증가"},{"string":"속죄의 낙인의 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1486948114"]}}} +{"ref":"Penance Brand has #% increased Cast Speed","better":1,"matchers":[{"string":"속죄의 낙인의 시전 속도 #% 증가"},{"string":"속죄의 낙인의 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_709541481"]}}} +{"ref":"Penetrate #% Elemental Resistances per 15 Omniscience","better":1,"matchers":[{"string":"전지력 15당 #%의 원소 저항 관통"}],"trade":{"ids":{"explicit":["explicit.stat_2757041809"]}}} +{"ref":"Penetrate #% Elemental Resistances per Abyss Jewel affecting you","better":1,"matchers":[{"string":"플레이어에게 영향을 주는 심연 주얼 하나당 #%의 원소 저항 관통"}],"trade":{"ids":{"explicit":["explicit.stat_4250752669"]}}} +{"ref":"Perfect Agony","better":1,"matchers":[{"string":"완벽한 고통"}],"trade":{"ids":{"explicit":["explicit.stat_3884934810"],"fractured":["fractured.stat_3884934810"],"scourge":["scourge.stat_3884934810"]}}} +{"ref":"Perforate deals #% increased Damage","better":1,"matchers":[{"string":"천공이 주는 피해 #% 증가"},{"string":"천공이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2731606134"]}}} +{"ref":"Perforate has #% increased Area of Effect","better":1,"matchers":[{"string":"천공 효과 범위 #% 증가"},{"string":"천공 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3536566359"]}}} +{"ref":"Performing Brute Force during Lockdown doesn't take additional time","better":1,"matchers":[{"string":"폐쇄 중에 완력 사용 시 추가 시간이 소요되지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_2485799092"],"fractured":["fractured.stat_2485799092"]}}} +{"ref":"Performing Counter-Thaumaturgy during Lockdown doesn't take additional time","better":1,"matchers":[{"string":"폐쇄 중에 반-마석학 사용 시 추가 시간이 소요되지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_3969573213"],"fractured":["fractured.stat_3969573213"]}}} +{"ref":"Performing Demolition during Lockdown doesn't take additional time","better":1,"matchers":[{"string":"폐쇄 중에 파괴 공작 사용 시 추가 시간이 소요되지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_450155423"],"fractured":["fractured.stat_450155423"]}}} +{"ref":"Performing Engineering during Lockdown doesn't take additional time","better":1,"matchers":[{"string":"폐쇄 중에 공학 사용 시 추가 시간이 소요되지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_1124657098"],"fractured":["fractured.stat_1124657098"]}}} +{"ref":"Performing Lockpicking during Lockdown doesn't take additional time","better":1,"matchers":[{"string":"폐쇄 중에 자물쇠 따기 사용 시 추가 시간이 소요되지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_3144025395"],"fractured":["fractured.stat_3144025395"]}}} +{"ref":"Permanently Intimidate Enemies on Block","better":1,"matchers":[{"string":"막아낼 시 영구적으로 적 위협"}],"trade":{"ids":{"explicit":["explicit.stat_2930706364"],"fractured":["fractured.stat_2930706364"]}}} +{"ref":"Pestilent Strike deals #% increased Damage","better":1,"matchers":[{"string":"전염성 일격이 주는 피해 #% 증가"},{"string":"전염성 일격이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_856157011"]}}} +{"ref":"Pestilent Strike has #% increased Area of Effect","better":1,"matchers":[{"string":"전염성 일격의 효과 범위 #% 증가"},{"string":"전염성 일격의 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3787328468"]}}} +{"ref":"Pestilent Strike has #% increased Duration","better":1,"matchers":[{"string":"전염성 일격의 지속시간 #% 증가"},{"string":"전염성 일격의 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_64670441"]}}} +{"ref":"Petrified Blood has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"피 석화의 마나 점유 효율 #% 증가"},{"string":"피 석화의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1779904215","enchant.stat_1829483269"]}}} +{"ref":"Petrified during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 석화 상태"}],"trade":{"ids":{"explicit":["explicit.stat_1935500672"]}}} +{"ref":"Physical Damage taken bypasses Energy Shield","better":1,"matchers":[{"string":"받는 물리 피해의 #%가 에너지 보호막에 막히지 않음"},{"string":"받는 물리 피해가 에너지 보호막에 막히지 않음","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2649513539"]}}} +{"ref":"Plague Bearer Buff grants +#% to Poison Damage over Time Multiplier while Infecting","better":1,"matchers":[{"string":"독성 운반자 버프에 감염된 동안 지속 중독 피해 배율 #% 적용"}],"trade":{"ids":{"enchant":["enchant.stat_1967208066"]}}} +{"ref":"Plague Bearer deals Damage based on an additional #% of Plague Value","better":1,"matchers":[{"string":"독성 운반자가 주는 피해가 역병 수치의 #%에 비례"}],"trade":{"ids":{"enchant":["enchant.stat_2093796647"]}}} +{"ref":"Player Skills which Throw Mines throw up to # fewer Mines","better":1,"fromUberAreaMods":true,"matchers":[{"string":"플레이어의 지뢰 투척 스킬이 지뢰를 1개 덜 투척","value":-1},{"string":"플레이어의 스킬이 지뢰 #개 추가 투척"},{"string":"플레이어의 지뢰 투척 스킬이 지뢰를 최대 #개 덜 투척"},{"string":"플레이어의 스킬이 지뢰 1개 추가 투척","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3633247582"],"fractured":["fractured.stat_3633247582"]}}} +{"ref":"Player Skills which Throw Traps throw up to # fewer Traps","better":1,"fromUberAreaMods":true,"matchers":[{"string":"플레이어의 덫 투척 스킬이 덫을 1개 덜 투척","value":-1},{"string":"플레이어의 덫 투척 스킬이 덫 최대 #개 추가 투척"},{"string":"플레이어의 덫 투척 스킬이 덫을 최대 #개 덜 투척"},{"string":"플레이어의 덫 투척 스킬이 덫 최대 1개 추가 투척","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3693062339"],"fractured":["fractured.stat_3693062339"]}}} +{"ref":"Players and their Minions deal no damage for 4 out of every 10 seconds","better":1,"fromUberAreaMods":true,"matchers":[{"string":"플레이어들과 그 소환수가 10초마다 4초 동안 피해를 주지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_2408625104"],"fractured":["fractured.stat_2408625104"]}}} +{"ref":"Players and their Minions have #% increased Mana Regeneration Rate","better":1,"matchers":[{"string":"플레이어 및 소환수의 마나 재생 속도 #% 증가"},{"string":"플레이어 및 소환수의 마나 재생 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2513410880"],"fractured":["fractured.stat_2513410880"]}}} +{"ref":"Players and their Minions Regenerate #% of Life per second","dp":true,"better":1,"matchers":[{"string":"플레이어 및 소환수가 1초마다 생명력의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_430044247"],"fractured":["fractured.stat_430044247"]}}} +{"ref":"Players are assaulted by Bloodstained Sawblades","better":1,"fromUberAreaMods":true,"matchers":[{"string":"플레이어들이 피얼룩 톱날에 습격당함"}],"trade":{"ids":{"explicit":["explicit.stat_3052102815"],"fractured":["fractured.stat_3052102815"]}}} +{"ref":"Players are Cursed with Elemental Weakness","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"플레이어가 원소 약화 저주에 걸림"}],"trade":{"ids":{"explicit":["explicit.stat_558910024"],"fractured":["fractured.stat_558910024"]}}} +{"ref":"Players are Cursed with Enfeeble","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"플레이어가 쇠약화 저주에 걸림"}],"trade":{"ids":{"explicit":["explicit.stat_4103440490"],"fractured":["fractured.stat_4103440490"]}}} +{"ref":"Players are Cursed with Temporal Chains","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"플레이어가 시간의 사슬 저주에 걸림"}],"trade":{"ids":{"explicit":["explicit.stat_2326202293"],"fractured":["fractured.stat_2326202293"]}}} +{"ref":"Players are Cursed with Vulnerability","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"플레이어가 취약성 저주에 걸림"}],"trade":{"ids":{"explicit":["explicit.stat_1366534040"],"fractured":["fractured.stat_1366534040"]}}} +{"ref":"Players are Marked for Death for # seconds\nafter killing a Rare or Unique monster","better":1,"fromUberAreaMods":true,"matchers":[{"string":"플레이어들이 희귀 또는 고유 몬스터 처치 후\n#초 동안 죽음의 징표 획득"}],"trade":{"ids":{"explicit":["explicit.stat_436406826"],"fractured":["fractured.stat_436406826"]}}} +{"ref":"Players cannot Block","better":1,"fromUberAreaMods":true,"matchers":[{"string":"플레이어가 막기 불가"}],"trade":{"ids":{"explicit":["explicit.stat_419810844"],"fractured":["fractured.stat_419810844"]}}} +{"ref":"Players cannot Block Attack Damage","better":1,"fromAreaMods":true,"matchers":[{"string":"플레이어가 공격 피해 막기 불가"}],"trade":{"ids":{"explicit":["explicit.stat_2736953535"]}}} +{"ref":"Players cannot Block Spell Damage","better":1,"fromAreaMods":true,"matchers":[{"string":"플레이어가 주문 피해 막기 불가"}],"trade":{"ids":{"explicit":["explicit.stat_4261179672"]}}} +{"ref":"Players cannot gain Endurance Charges","better":1,"fromUberAreaMods":true,"matchers":[{"string":"플레이어가 인내 충전 획득 불가"}],"trade":{"ids":{"explicit":["explicit.stat_3532144131"],"fractured":["fractured.stat_3532144131"]}}} +{"ref":"Players cannot gain Flask Charges","better":1,"fromAreaMods":true,"matchers":[{"string":"플레이어가 플라스크 충전 불가"}],"trade":{"ids":{"explicit":["explicit.stat_36406748"]}}} +{"ref":"Players cannot gain Frenzy Charges","better":1,"fromUberAreaMods":true,"matchers":[{"string":"플레이어가 격분 충전 획득 불가"}],"trade":{"ids":{"explicit":["explicit.stat_620879593"],"fractured":["fractured.stat_620879593"]}}} +{"ref":"Players cannot gain Power Charges","better":1,"fromUberAreaMods":true,"matchers":[{"string":"플레이어가 권능 충전 획득 불가"}],"trade":{"ids":{"explicit":["explicit.stat_1282233725"],"fractured":["fractured.stat_1282233725"]}}} +{"ref":"Players cannot inflict Exposure","better":1,"fromAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"플레이어가 노출 유발 불가"}],"trade":{"ids":{"explicit":["explicit.stat_1026390635"],"fractured":["fractured.stat_1026390635"]}}} +{"ref":"Players cannot Recharge Energy Shield","better":1,"fromUberAreaMods":true,"matchers":[{"string":"플레이어들이 에너지 보호막 재충전 불가"}],"trade":{"ids":{"explicit":["explicit.stat_1888489569"],"fractured":["fractured.stat_1888489569"]}}} +{"ref":"Players cannot Regenerate Life, Mana or Energy Shield","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"플레이어가 생명력, 마나 또는 에너지 보호막 재생 불가"}],"trade":{"ids":{"explicit":["explicit.stat_1910157106"],"fractured":["fractured.stat_1910157106"]}}} +{"ref":"Players cannot Suppress Spell Damage","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"matchers":[{"string":"플레이어가 주문 피해 억제 불가"}],"trade":{"ids":{"explicit":["explicit.stat_3203905334"],"fractured":["fractured.stat_3203905334"]}}} +{"ref":"Players gain #% increased Flask Charges per 25% Alert Level","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"경보 레벨 25%당 플레이어의 플라스크 충전량 #% 증가"},{"string":"경보 레벨 25%당 플레이어의 플라스크 충전량 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_816079058"],"fractured":["fractured.stat_816079058"]}}} +{"ref":"Players gain #% reduced Flask Charges","better":-1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Players gain #% increased Flask Charges"},{"string":"Players gain #% reduced Flask Charges","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2549889921"],"fractured":["fractured.stat_2549889921"]},"inverted":true}} +{"ref":"Players have #% chance to be targeted by a Meteor when they use a Flask","better":1,"fromUberAreaMods":true,"matchers":[{"string":"플레이어가 플라스크 사용 시 #%의 확률로 유성의 대상이 됨"},{"string":"플레이어가 플라스크 사용 시 유성의 대상이 됨","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4102870672"],"fractured":["fractured.stat_4102870672"]}}} +{"ref":"Players have #% increased Action Speed for each time they've used a Skill Recently","better":1,"fromUberAreaMods":true,"matchers":[{"string":"플레이어가 최근 4초 이내에 스킬을 사용한 횟수 1회당 해당 플레이어의 동작 속도 #% 증가"},{"string":"플레이어가 최근 4초 이내에 스킬을 사용한 횟수 1회당 해당 플레이어의 동작 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3479892158"],"fractured":["fractured.stat_3479892158"]}}} +{"ref":"Players have #% increased effect of Non-Curse Auras from Skills","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"플레이어가 비-저주 오라 스킬로 받는 효과 #% 증가"},{"string":"플레이어가 비-저주 오라 스킬로 받는 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2450628570"],"fractured":["fractured.stat_2450628570"]}}} +{"ref":"Players have #% less Area of Effect","better":-1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"플레이어의 효과 범위 #% 증폭"},{"string":"플레이어의 효과 범위 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2312028586"],"fractured":["fractured.stat_2312028586"]},"inverted":true}} +{"ref":"Players have #% less Armour","better":-1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"플레이어의 방어도 #% 증폭"},{"string":"플레이어의 방어도 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_272758639"],"fractured":["fractured.stat_272758639"]},"inverted":true}} +{"ref":"Players have #% less Recovery Rate of Life and Energy Shield","better":-1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"플레이어의 생명력 및 에너지 보호막 회복 속도 #% 증폭"},{"string":"플레이어의 생명력 및 에너지 보호막 회복 속도 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4181072906"],"fractured":["fractured.stat_4181072906"]},"inverted":true}} +{"ref":"Players have #% more Accuracy Rating","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"플레이어의 정확도 #% 증폭"},{"string":"플레이어의 정확도 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3667574329"],"fractured":["fractured.stat_3667574329"]}}} +{"ref":"Players have #% more Armour per 25% Alert Level","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"경보 레벨 25%당 플레이어의 방어도 #% 증폭"},{"string":"경보 레벨 25%당 플레이어의 방어도 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2787931289"],"fractured":["fractured.stat_2787931289"]}}} +{"ref":"Players have #% more Cooldown Recovery Rate","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"플레이어의 재사용 대기시간 회복 속도 #% 증폭"},{"string":"플레이어의 재사용 대기시간 회복 속도 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_941368244"],"fractured":["fractured.stat_941368244"]}}} +{"ref":"Players have #% more Defences","better":1,"fromUberAreaMods":true,"matchers":[{"string":"플레이어의 방어력 #% 증폭"},{"string":"플레이어의 방어력 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_943960754"],"fractured":["fractured.stat_943960754"]}}} +{"ref":"Players have #% more Energy Shield Recovery Rate per 25% Alert Level","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"경보 레벨 25%당 플레이어의 에너지 보호막 회복 속도 #% 증폭"},{"string":"경보 레벨 25%당 플레이어의 에너지 보호막 회복 속도 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_751773204"],"fractured":["fractured.stat_751773204"]}}} +{"ref":"Players have #% more Evasion per 25% Alert Level","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"경보 레벨 25%당 플레이어의 회피 #% 증폭"},{"string":"경보 레벨 25%당 플레이어의 회피 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1238382441"],"fractured":["fractured.stat_1238382441"]}}} +{"ref":"Players have #% more Life Recovery Rate per 25% Alert Level","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"경보 레벨 25%당 플레이어의 생명력 회복 속도 #% 증폭"},{"string":"경보 레벨 25%당 플레이어의 생명력 회복 속도 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1466172118"],"fractured":["fractured.stat_1466172118"]}}} +{"ref":"Players have #% more Mana Recovery Rate per 25% Alert Level","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"경보 레벨 25%당 플레이어의 마나 회복 속도 #% 증폭"},{"string":"경보 레벨 25%당 플레이어의 마나 회복 속도 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_953449033"],"fractured":["fractured.stat_953449033"]}}} +{"ref":"Players have #% reduced Chance to Block","better":-1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"플레이어의 막기 확률 #% 증가"},{"string":"플레이어의 막기 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3729221884"],"fractured":["fractured.stat_3729221884"]},"inverted":true}} +{"ref":"Players have #% to all maximum Resistances","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"플레이어의 모든 저항 최대치 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3376488707"],"fractured":["fractured.stat_3376488707"]}}} +{"ref":"Players have +# to maximum number of Summoned Totems","better":1,"fromUberAreaMods":true,"matchers":[{"string":"플레이어들이 소환 가능한 토템 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_2912613786"],"fractured":["fractured.stat_2912613786"]}}} +{"ref":"Players in Area take #% increased Damage per nearby Ally","better":1,"fromUberAreaMods":true,"matchers":[{"string":"주변의 동료 1명당 지역 내 플레이어들이 받는 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_4045850340"],"fractured":["fractured.stat_4045850340"]}}} +{"ref":"Players in Areas take on the form of Harbingers\nItems found in Areas are replaced by stacks of Currency Shards","better":1,"matchers":[{"string":"지역 내 플레이어들이 선구자의 형상을 띰\n지역에서 발견되는 아이템이 화폐 파편 중첩으로 변경되어 떨어짐"}],"trade":{"ids":{"explicit":["explicit.stat_2467500499"]}}} +{"ref":"Players Prevent +#% of Suppressed Spell Damage","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"플레이어가 방지하는 억제된 주문 피해 #%"},{"string":"플레이어가 억제된 주문 피해의 #% 방지"}],"trade":{"ids":{"explicit":["explicit.stat_286947568"],"fractured":["fractured.stat_286947568"]}}} +{"ref":"Players take #% reduced Damage from Monsters from Beyond","better":-1,"matchers":[{"string":"플레이어가 이계 몬스터에게 받는 피해 #% 증가"},{"string":"플레이어가 이계 몬스터에게 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3045897926"]},"inverted":true}} +{"ref":"Players' Minions have #% more Attack Speed","better":1,"fromUberAreaMods":true,"matchers":[{"string":"플레이어들의 소환수의 공격 속도 #% 증폭"},{"string":"플레이어들의 소환수의 공격 속도 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1308016791"],"fractured":["fractured.stat_1308016791"]}}} +{"ref":"Players' Minions have #% more Cast Speed","better":1,"fromUberAreaMods":true,"matchers":[{"string":"플레이어들의 소환수의 시전 속도 #% 증폭"},{"string":"플레이어들의 소환수의 시전 속도 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1237051929"],"fractured":["fractured.stat_1237051929"]}}} +{"ref":"Players' Minions have #% more Movement Speed","better":1,"fromUberAreaMods":true,"matchers":[{"string":"플레이어들의 소환수의 이동 속도 #% 증폭"},{"string":"플레이어들의 소환수의 이동 속도 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3991644188"],"fractured":["fractured.stat_3991644188"]}}} +{"ref":"Players' Vaal Skills do not apply Soul Gain Prevention","better":1,"fromAreaMods":true,"matchers":[{"string":"플레이어가 사용하는 바알 스킬에 영혼 획득 방지가 적용되지 않음"}],"trade":{"ids":{"implicit":["implicit.stat_977063976"],"enchant":["enchant.stat_977063976"]}}} +{"ref":"Point Blank","better":1,"matchers":[{"string":"근접 사격"}],"trade":{"ids":{"explicit":["explicit.stat_2896346114"],"implicit":["implicit.stat_2896346114"],"fractured":["fractured.stat_2896346114"],"scourge":["scourge.stat_2896346114"]}}} +{"ref":"Poison Cursed Enemies on hit","better":1,"matchers":[{"string":"저주받은 적 명중 시 중독 유발"}],"trade":{"ids":{"explicit":["explicit.stat_4266201818"]}}} +{"ref":"Poison you inflict is Reflected to you if you have fewer than 100 Poisons on you","better":1,"matchers":[{"string":"자신에게 적용된 중독 수치가 100 미만일 경우 자신이 유발한 중독이 자신에게 반사됨"}],"trade":{"ids":{"explicit":["explicit.stat_2374357674"]}}} +{"ref":"Poison you inflict with Travel Skills is Reflected to you if you\nhave fewer than 5 Poisons on you","better":1,"matchers":[{"string":"자신에게 적용된 중독 수치가 5 미만일 경우\n이동 전용 스킬로 유발하는 중독이 자신에게 반사됨"}],"trade":{"ids":{"explicit":["explicit.stat_130616495"]}}} +{"ref":"Poisoned Enemies you Kill with Hits Shatter","better":1,"matchers":[{"string":"중독 상태의 적 처치 시 산산조각남"}],"trade":{"ids":{"explicit":["explicit.stat_3350228283"]}}} +{"ref":"Poisonous Concoction uses #% increased Flask Charges","better":1,"matchers":[{"string":"독성 혼합물의 플라스크 충전 사용 #% 증가"},{"string":"독성 혼합물의 플라스크 충전 사용 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1474722052"]}}} +{"ref":"Poisonous Hit","better":1,"matchers":[{"string":"중독 공격"}],"trade":{"ids":{"explicit":["explicit.stat_4075957192"]}}} +{"ref":"Poisons on you expire #% slower","better":-1,"matchers":[{"string":"플레이어에게 적용되는 중독이 #% 더 빠르게 만료"},{"string":"플레이어에게 적용되는 중독이 #% 더 느리게 만료","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2443132097"]},"inverted":true}} +{"ref":"Poisons you inflict deal Damage #% faster","better":1,"matchers":[{"string":"플레이어가 유발한 중독이 피해 #% 가속"}],"trade":{"ids":{"explicit":["explicit.stat_2907156609"],"implicit":["implicit.stat_2907156609"],"fractured":["fractured.stat_2907156609"],"scourge":["scourge.stat_2907156609"]}}} +{"ref":"Power Siphon fires at up to # additional target","better":1,"matchers":[{"string":"권능 착취가 최대 #명의 추가 대상에게 발사"}],"trade":{"ids":{"enchant":["enchant.stat_1177831984"]}}} +{"ref":"Precise Technique","better":1,"matchers":[{"string":"정확한 기술"}],"trade":{"ids":{"explicit":["explicit.stat_4096273663"]}}} +{"ref":"Precision has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"정밀함의 마나 점유 효율 #% 증가"},{"string":"정밀함의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3859865977"],"enchant":["enchant.stat_3859865977","enchant.stat_658622139"]}}} +{"ref":"Precision has 100% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"정밀함의 마나 점유 효율 100% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1291925008"]}}} +{"ref":"Prefixes Cannot Be Changed","better":1,"matchers":[{"string":"접두어 변경 불가"}],"trade":{"ids":{"explicit":["explicit.stat_2879723104"],"fractured":["fractured.stat_2879723104"],"crafted":["crafted.stat_2879723104"]}}} +{"ref":"Prevent +#% of Suppressed Spell Damage","better":1,"matchers":[{"string":"방지하는 억제된 주문 피해 #%"},{"string":"억제된 주문 피해의 #% 방지"}],"trade":{"ids":{"explicit":["explicit.stat_4116705863"],"implicit":["implicit.stat_4116705863"],"fractured":["fractured.stat_4116705863"]}}} +{"ref":"Prevent +#% of Suppressed Spell Damage while on Full Energy Shield","better":1,"matchers":[{"string":"에너지 보호막이 최대일 때 방지하는 억제된 주문 피해 #%"},{"string":"에너지 보호막이 최대일 때 억제된 주문 피해의 #% 방지"}],"trade":{"ids":{"explicit":["explicit.stat_1493325653"]}}} +{"ref":"Pride has #% increased Aura Effect","better":1,"matchers":[{"string":"자부심의 오라 효과 #% 증가"},{"string":"자부심의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4247488219"]}}} +{"ref":"Pride has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"자부심의 마나 점유 효율 #% 증가"},{"string":"자부심의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3484910620","explicit.stat_3993865658"],"fractured":["fractured.stat_3993865658"],"enchant":["enchant.stat_3484910620","enchant.stat_3993865658"]}}} +{"ref":"Pride has no Reservation","better":1,"matchers":[{"string":"자부심으로 인한 점유 없음"}],"trade":{"ids":{"explicit":["explicit.stat_3554614456"]}}} +{"ref":"Primordial","better":1,"matchers":[{"string":"태고의"}],"trade":{"ids":{"explicit":["explicit.stat_1089165168"]}}} +{"ref":"Projectile Attack Skills have #% increased Critical Strike Chance","better":1,"matchers":[{"string":"투사체 공격 스킬의 치명타 확률 #% 증가"},{"string":"투사체 공격 스킬의 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4095169720"]}}} +{"ref":"Projectile Barrages have no spread","better":1,"matchers":[{"string":"투사체 연발 사격이 확산되지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_3953699641"]}}} +{"ref":"Projectiles are fired in random directions","better":1,"matchers":[{"string":"투사체가 무작위 방향으로 발사됨"}],"trade":{"ids":{"explicit":["explicit.stat_4159765624"]}}} +{"ref":"Projectiles cannot collide with Enemies in Close Range","better":1,"matchers":[{"string":"투사체가 근거리의 적과 충돌하지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_2826633504"]}}} +{"ref":"Projectiles Chain +# times while you have Phasing","better":1,"matchers":[{"string":"차원 능력을 보유한 상태에서 투사체 연쇄 #회"}],"trade":{"ids":{"explicit":["explicit.stat_383509486"]}}} +{"ref":"Projectiles deal #% increased Damage with Hits and Ailments for each Enemy Pierced","better":1,"matchers":[{"string":"투사체가 관통한 적 하나당 해당 투사체의 명중 및 상태 이상 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_883169830"],"implicit":["implicit.stat_883169830"],"fractured":["fractured.stat_883169830"]}}} +{"ref":"Projectiles deal #% increased Damage with Hits and Ailments for each time they have Chained","better":1,"matchers":[{"string":"투사체가 연쇄한 횟수 하나당 해당 투사체의 명중 및 상태 이상 피해 #% 증가"}],"trade":{"ids":{"implicit":["implicit.stat_1923210508"]}}} +{"ref":"Projectiles from Attacks can Fork # additional time","better":1,"matchers":[{"string":"공격으로 발사된 투사체가 #회 추가로 갈라질 수 있음"}],"trade":{"ids":{"explicit":["explicit.stat_1643324992"]}}} +{"ref":"Projectiles from Attacks Fork","better":1,"matchers":[{"string":"공격으로 발사된 투사체가 갈라짐"}],"trade":{"ids":{"explicit":["explicit.stat_396113830"]}}} +{"ref":"Projectiles from Attacks have #% chance to inflict Bleeding on Hit while\nyou have a Bestial Minion","better":1,"matchers":[{"string":"흉포한 소환수를 보유하는 동안\n공격으로 발사된 투사체 명중 시 #%의 확률로 출혈 유발"}],"trade":{"ids":{"explicit":["explicit.stat_4058504226"]}}} +{"ref":"Projectiles from Attacks have #% chance to Maim on Hit while\nyou have a Bestial Minion","better":1,"matchers":[{"string":"흉포한 소환수를 보유하는 동안\n공격으로 발사된 투사체 명중 시 #%의 확률로 힘줄 절단"}],"trade":{"ids":{"explicit":["explicit.stat_1753916791"]}}} +{"ref":"Projectiles from Attacks have #% chance to Poison on Hit while\nyou have a Bestial Minion","better":1,"matchers":[{"string":"흉포한 소환수를 보유하는 동안\n공격으로 발사된 투사체 명중 시 #%의 확률로 중독 유발"}],"trade":{"ids":{"explicit":["explicit.stat_1114411822"]}}} +{"ref":"Projectiles from Socketed Gems Fork","better":1,"matchers":[{"string":"장착된 젬의 투사체가 갈라짐"}],"trade":{"ids":{"explicit":["explicit.stat_1519665289"]}}} +{"ref":"Projectiles from Spells cannot Pierce","better":1,"matchers":[{"string":"주문의 투사체 관통 불가"}],"trade":{"ids":{"explicit":["explicit.stat_3826125995"]}}} +{"ref":"Projectiles gain #% of Non-Chaos Damage as extra Chaos Damage per Chain","better":1,"matchers":[{"string":"투사체 연쇄 하나당 비-카오스 피해의 #%를 추가 카오스 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1924041432"]}}} +{"ref":"Projectiles gain Damage as they travel farther, dealing up\nto #% increased Damage with Hits to targets","better":1,"matchers":[{"string":"투사체 이동 거리가 멀어질수록\n대상 명중 시 피해 최대 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2083727359"]}}} +{"ref":"Projectiles have #% chance to be able to Chain when colliding with terrain","better":1,"matchers":[{"string":"투사체가 지형과 충돌 시 #%의 확률로 연쇄"},{"string":"투사체가 지형과 충돌 시 연쇄","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2140446632"]}}} +{"ref":"Projectiles have #% chance to be able to Chain when colliding with terrain per\nSearching Eye Jewel affecting you, up to a maximum of 20%","better":1,"matchers":[{"string":"자신에게 영향을 주는 탐색하는 눈 주얼 하나당\n투사체가 지형과 충돌 시 #%의 확률로 연쇄, 최대 20%"}],"trade":{"ids":{"explicit":["explicit.stat_1485085047"]}}} +{"ref":"Projectiles Pierce # additional Targets","better":1,"matchers":[{"string":"투사체가 대상 #개를 추가 관통"},{"string":"투사체가 대상을 추가 관통","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2067062068"],"implicit":["implicit.stat_2067062068","implicit.stat_2902845638"],"fractured":["fractured.stat_2067062068"],"scourge":["scourge.stat_2067062068"],"crafted":["crafted.stat_2067062068"]}}} +{"ref":"Projectiles Pierce all Burning Enemies","better":1,"matchers":[{"string":"투사체가 모든 화상 상태의 적 관통"}],"trade":{"ids":{"explicit":["explicit.stat_2214228141"]}}} +{"ref":"Projectiles Pierce all Targets while you have Phasing","better":1,"matchers":[{"string":"차원 능력을 보유한 상태에서 투사체가 근접한 모든 대상 관통"}],"trade":{"ids":{"explicit":["explicit.stat_2636403786"]}}} +{"ref":"Projectiles Pierce an additional Target while you have Phasing","better":1,"matchers":[{"string":"차원 능력을 보유한 상태에서 투사체가 대상 #개 추가 관통"},{"string":"차원 능력을 보유한 상태에서 투사체가 대상을 추가 관통","value":1}],"trade":{"ids":{"explicit":["explicit.stat_97250660"]}}} +{"ref":"Projectiles Split towards +# targets","better":1,"matchers":[{"string":"투사체가 대상 #를 향해 분할"}],"trade":{"ids":{"scourge":["scourge.stat_3464380325"]}}} +{"ref":"Projectiles that have Chained gain #% of Non-Chaos Damage as extra Chaos Damage","better":1,"matchers":[{"string":"연쇄된 투사체가 비-카오스 피해의 #%를 추가 카오스 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1698276268"]}}} +{"ref":"Properties are doubled while in a Breach","better":1,"matchers":[{"string":"균열에 있는 동안 속성 수치 2배"}],"trade":{"ids":{"implicit":["implicit.stat_202275580"]}}} +{"ref":"Punishment has no Reservation if Cast as an Aura","better":1,"matchers":[{"string":"응징이 오라의 형태로 시전되는 경우 점유 없음"}],"trade":{"ids":{"explicit":["explicit.stat_2097195894"]}}} +{"ref":"Purifying Flame deals #% increased Damage","better":1,"matchers":[{"string":"정화의 불길로 주는 피해 #% 증가"},{"string":"정화의 불길로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_944311193"]}}} +{"ref":"Purifying Flame has #% increased Area of Effect if targeting Consecrated Ground","better":1,"matchers":[{"string":"신성화 지대를 대상으로 한 경우 정화의 불길 효과 범위 #% 증가"},{"string":"신성화 지대를 대상으로 한 경우 정화의 불길 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1954529734"]}}} +{"ref":"Purity of Elements has #% increased Aura Effect","better":1,"matchers":[{"string":"원소의 순수함의 오라 효과 #% 증가"},{"string":"원소의 순수함의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3541970927"]}}} +{"ref":"Purity of Elements has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"원소의 순수함의 마나 점유 효율 #% 증가"},{"string":"원소의 순수함의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3303293173","enchant.stat_491551762"]}}} +{"ref":"Purity of Elements has no Reservation","better":1,"matchers":[{"string":"원소의 순수함으로 인한 점유 없음"}],"trade":{"ids":{"explicit":["explicit.stat_1826480903"]}}} +{"ref":"Purity of Fire has #% increased Aura Effect","better":1,"matchers":[{"string":"불의 순수함의 오라 효과 #% 증가"},{"string":"불의 순수함의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2539726203"]}}} +{"ref":"Purity of Fire has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"불의 순수함의 마나 점유 효율 #% 증가"},{"string":"불의 순수함의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1135152940","explicit.stat_3003688066"],"implicit":["implicit.stat_1135152940","implicit.stat_3003688066"],"fractured":["fractured.stat_3003688066"],"enchant":["enchant.stat_1135152940","enchant.stat_3003688066"]}}} +{"ref":"Purity of Fire has no Reservation","better":1,"matchers":[{"string":"불의 순수함으로 인한 점유 없음"}],"trade":{"ids":{"explicit":["explicit.stat_2278589942"]}}} +{"ref":"Purity of Ice has #% increased Aura Effect","better":1,"matchers":[{"string":"얼음의 순수함의 오라 효과 #% 증가"},{"string":"얼음의 순수함의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1944316218"]}}} +{"ref":"Purity of Ice has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"얼음의 순수함의 마나 점유 효율 #% 증가"},{"string":"얼음의 순수함의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_139925400","explicit.stat_2665518524"],"implicit":["implicit.stat_139925400","implicit.stat_2665518524"],"enchant":["enchant.stat_139925400","enchant.stat_2665518524"]}}} +{"ref":"Purity of Ice has no Reservation","better":1,"matchers":[{"string":"얼음의 순수함으로 인한 점유 없음"}],"trade":{"ids":{"explicit":["explicit.stat_1622979279"]}}} +{"ref":"Purity of Lightning has #% increased Aura Effect","better":1,"matchers":[{"string":"번개의 순수함의 오라 효과 #% 증가"},{"string":"번개의 순수함의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_45589825"]}}} +{"ref":"Purity of Lightning has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"번개의 순수함의 마나 점유 효율 #% 증가"},{"string":"번개의 순수함의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1450978702","explicit.stat_3411256933"],"implicit":["implicit.stat_1450978702","implicit.stat_3411256933"],"enchant":["enchant.stat_1450978702","enchant.stat_3411256933"]}}} +{"ref":"Purity of Lightning has no Reservation","better":1,"matchers":[{"string":"번개의 순수함으로 인한 점유 없음"}],"trade":{"ids":{"explicit":["explicit.stat_2308225900"]}}} +{"ref":"Pyroclast Mine deals #% increased Damage","better":1,"matchers":[{"string":"화산탄 지뢰가 주는 피해 #% 증가"},{"string":"화산탄 지뢰가 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4048820315"]}}} +{"ref":"Pyroclast Mine fires an additional Projectile","better":1,"matchers":[{"string":"화산탄 지뢰가 투사체 #개 추가 발사"},{"string":"화산탄 지뢰가 투사체 1개 추가 발사","value":1}],"trade":{"ids":{"enchant":["enchant.stat_841281094"]}}} +{"ref":"Pyroclast Mine has #% increased Throwing Speed","better":1,"matchers":[{"string":"화산탄 지뢰의 투척 속도 #% 증가"},{"string":"화산탄 지뢰의 투척 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2005440071","enchant.stat_2432759583"]}}} +{"ref":"Quality (Attack Modifiers): #%","better":1,"matchers":[{"string":"퀄리티 (공격 속성 부여): #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_jewellery_attack_quality"]}}} +{"ref":"Quality (Attribute Modifiers): #%","better":1,"matchers":[{"string":"퀄리티 (능력치 속성 부여): #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_jewellery_attribute_quality"]}}} +{"ref":"Quality (Caster Modifiers): #%","better":1,"matchers":[{"string":"퀄리티 (시전 속성 부여): #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_jewellery_caster_quality"]}}} +{"ref":"Quality (Critical Modifiers): #%","better":1,"matchers":[{"string":"퀄리티 (치명타 속성 부여): #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_jewellery_critical_quality"]}}} +{"ref":"Quality (Currency): #%","better":1,"matchers":[{"string":"퀄리티 (화폐): #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_quality_currency"]}}} +{"ref":"Quality (Defence Modifiers): #%","better":1,"matchers":[{"string":"퀄리티 (방어 속성 부여): #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_jewellery_defense_quality"]}}} +{"ref":"Quality (Divination Cards): #%","better":1,"matchers":[{"string":"퀄리티 (점술 카드): #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_quality_cards"]}}} +{"ref":"Quality (Elemental Damage Modifiers): #%","better":1,"matchers":[{"string":"퀄리티 (원소 피해 속성 부여): #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_jewellery_elemental_quality"]}}} +{"ref":"Quality (Life and Mana Modifiers): #%","better":1,"matchers":[{"string":"퀄리티 (생명력과 마나 속성 부여): #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_jewellery_resource_quality"]}}} +{"ref":"Quality (Pack Size): #%","better":1,"matchers":[{"string":"퀄리티 (무리 규모): #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_quality_pack_size"]}}} +{"ref":"Quality (Physical and Chaos Damage Modifiers): #%","better":1,"matchers":[{"string":"퀄리티 (물리 및 카오스 피해 속성 부여): #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_jewellery_physical_chaos_quality"]}}} +{"ref":"Quality (Rarity): #%","better":1,"matchers":[{"string":"퀄리티 (희귀도): #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_quality_rarity"]}}} +{"ref":"Quality (Resistance Modifiers): #%","better":1,"matchers":[{"string":"퀄리티 (저항 속성 부여): #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_jewellery_resistance_quality"]}}} +{"ref":"Quality (Scarabs): #%","better":1,"matchers":[{"string":"퀄리티 (갑충석): #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_quality_scarabs"]}}} +{"ref":"Quality (Speed Modifiers): #%","better":1,"matchers":[{"string":"퀄리티 (속도 속성 부여): #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_jewellery_speed_quality"]}}} +{"ref":"Quality applies to Pack Size instead of Item Quantity","better":1,"fromAreaMods":true,"matchers":[{"string":"퀄리티가 아이템 수량이 아닌 무리 규모에 적용"}],"trade":{"ids":{"implicit":["implicit.stat_3036505016"]}}} +{"ref":"Quality does not increase Defences","better":1,"matchers":[{"string":"퀄리티가 방어력을 증가시키지 않음"}],"trade":{"ids":{"enchant":["enchant.stat_2677401098"]}}} +{"ref":"Quality does not increase Physical Damage","better":1,"matchers":[{"string":"퀄리티가 물리 피해를 증가시키지 않음"}],"trade":{"ids":{"enchant":["enchant.stat_2052525717"]}}} +{"ref":"Queen's Demand can Trigger Level # Flames of Judgement","better":1,"matchers":[{"string":"여왕의 요구가 #레벨 심판의 화염 발동 가능"}],"trade":{"ids":{"explicit":["explicit.stat_2766423342"]}}} +{"ref":"Queen's Demand can Trigger Level # Storm of Judgement","better":1,"matchers":[{"string":"여왕의 요구가 #레벨 심판의 폭풍 발동 가능"}],"trade":{"ids":{"explicit":["explicit.stat_758006884"]}}} +{"ref":"Quicksilver Flasks you Use also apply to nearby Allies","better":1,"matchers":[{"string":"자신이 사용하는 수은 플라스크가 주변 동료들에게도 적용됨"}],"trade":{"ids":{"explicit":["explicit.stat_699756626"]}}} +{"ref":"Rage grants Spell Damage instead of Attack Damage","better":1,"matchers":[{"string":"격노가 공격 피해가 아닌 주문 피해 부여"}],"trade":{"ids":{"explicit":["explicit.stat_2933909365"]}}} +{"ref":"Rage Vortex Sacrifices +#% of Rage","better":1,"matchers":[{"string":"격노 소용돌이가 소모하는 격노 #%"}],"trade":{"ids":{"enchant":["enchant.stat_1957790343"]}}} +{"ref":"Rain of Arrows has #% chance to fire an additional sequence of arrows","better":1,"matchers":[{"string":"화살비가 #%의 확률로 연속 화살 1회 추가 발사"}],"trade":{"ids":{"enchant":["enchant.stat_3505939359"]}}} +{"ref":"Raise Zombie does not require a corpse","better":1,"matchers":[{"string":"시신 없이도 좀비 소환 가능"}],"trade":{"ids":{"explicit":["explicit.stat_16924183"]}}} +{"ref":"Raised Zombies Cover Enemies in Ash on Hit","better":1,"matchers":[{"string":"소환한 좀비가 적 적중 시 #%의 확률로 적을 재로 덮음"},{"string":"소환한 좀비가 적 적중 시 적을 재로 덮음","value":100}],"trade":{"ids":{"explicit":["explicit.stat_613525808"]}}} +{"ref":"Raised Zombies deal #% increased Damage","better":1,"matchers":[{"string":"소환된 좀비가 주는 피해 #% 증가"},{"string":"소환된 좀비가 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2228518621"],"enchant":["enchant.stat_2228518621"]}}} +{"ref":"Raised Zombies deal #% more Physical Damage","better":1,"matchers":[{"string":"소환한 좀비가 주는 물리 피해 #% 증폭"},{"string":"소환한 좀비가 주는 물리 피해 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_568070507"]}}} +{"ref":"Raised Zombies have #% increased Attack Speed","better":1,"matchers":[{"string":"소환한 좀비의 공격 속도 #% 증가"},{"string":"소환한 좀비의 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2499559911"]}}} +{"ref":"Raised Zombies have #% increased maximum Life","better":1,"matchers":[{"string":"소환한 좀비의 생명력 최대치 #% 증가"},{"string":"소환한 좀비의 생명력 최대치 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_927817294"]}}} +{"ref":"Raised Zombies have +# to maximum Life","better":1,"matchers":[{"string":"소환한 좀비 최대 생명력 #"}],"trade":{"ids":{"explicit":["explicit.stat_4116579804"]}}} +{"ref":"Raised Zombies have +#% to all Resistances","better":1,"matchers":[{"string":"소환한 좀비의 모든 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3150000576"]}}} +{"ref":"Raised Zombies have +#% to Elemental Resistances","better":1,"matchers":[{"string":"소환한 좀비의 원소 저항 #%"}],"trade":{"ids":{"enchant":["enchant.stat_2871777604"]}}} +{"ref":"Raised Zombies have Avatar of Fire","better":1,"matchers":[{"string":"소환한 좀비가 불의 화신을 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1474437010"]}}} +{"ref":"Raised Zombies take #% of their Maximum Life per second as Fire Damage","better":1,"matchers":[{"string":"소환한 좀비가 1초마다 자신의 최대 생명력의 #%를 화염 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_3733496041"]}}} +{"ref":"Rallying Cry Exerts # additional Attack","better":1,"matchers":[{"string":"집결의 함성 사용 시 전력 공격 #회 추가"}],"trade":{"ids":{"enchant":["enchant.stat_2080441723"]}}} +{"ref":"Rampage","better":1,"matchers":[{"string":"광란"}],"trade":{"ids":{"explicit":["explicit.stat_2397408229"]}}} +{"ref":"Rare and Unique Monsters found in Areas are Possessed and their Minions are Touched","better":1,"matchers":[{"string":"지역 내 발견되는 희귀 및 고유 몬스터가 사로잡히고 그 소환수들은 손길에 닿게 됨"}],"trade":{"ids":{"explicit":["explicit.stat_2168365746"]}}} +{"ref":"Rare and Unique Monsters remove #% of Life, Mana and Energy Shield from Players or their Minions on Hit","better":1,"fromUberAreaMods":true,"matchers":[{"string":"희귀 및 고유 몬스터가 명중 시 플레이어들 또는 소환수들의 생명력, 마나 및 에너지 보호막의 #% 제거"}],"trade":{"ids":{"explicit":["explicit.stat_3270788481"],"fractured":["fractured.stat_3270788481"]}}} +{"ref":"Rare Monsters each have # additional Modifier","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"matchers":[{"string":"희귀 몬스터가 각각 속성 #개 추가 보유"}],"trade":{"ids":{"explicit":["explicit.stat_2550456553"],"fractured":["fractured.stat_2550456553"]}}} +{"ref":"Rare Monsters have #% chance to have a Volatile Core","better":1,"fromUberAreaMods":true,"matchers":[{"string":"희귀 몬스터가 #%의 확률로 폭발성 중심부 보유"},{"string":"희귀 몬스터가 폭발성 중심부 보유","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1706239920"],"fractured":["fractured.stat_1706239920"]}}} +{"ref":"Rare monsters in area are Shaper-Touched","better":1,"fromUberAreaMods":true,"matchers":[{"string":"지역 내 희귀 몬스터가 쉐이퍼의 손길에 닿음"}],"trade":{"ids":{"explicit":["explicit.stat_2931889194"],"fractured":["fractured.stat_2931889194"]}}} +{"ref":"Reap deals #% increased Damage","better":1,"matchers":[{"string":"낫질로 주는 피해 #% 증가"},{"string":"낫질로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1545524769"]}}} +{"ref":"Recharges # Charge when you Consume an Ignited corpse","better":1,"matchers":[{"string":"점화된 시신 소모 시 충전 # 재충전"}],"trade":{"ids":{"explicit":["explicit.stat_2557247391"]}}} +{"ref":"Reckoning has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"역습의 재사용 대기시간 회복 속도 #% 증가"},{"string":"역습의 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_804983774"]}}} +{"ref":"Recoup #% of Damage Taken by your Totems as Life","better":1,"matchers":[{"string":"플레이어의 토템이 받은 피해의 #%를 생명력으로 회생"}],"trade":{"ids":{"explicit":["explicit.stat_825316273"]}}} +{"ref":"Recover # Energy Shield when your Trap is triggered by an Enemy","better":1,"matchers":[{"string":"자신의 덫이 적에 의해 발동되면 에너지 보호막 # 회복"}],"trade":{"ids":{"explicit":["explicit.stat_1073384532"]}}} +{"ref":"Recover # Life when you Block","better":1,"matchers":[{"string":"막아낼 시 생명력 # 회복"}],"trade":{"ids":{"explicit":["explicit.stat_1678831767"]}}} +{"ref":"Recover # Life when you Ignite an Enemy","better":1,"matchers":[{"string":"점화한 적 하나당 생명력 # 회복"}],"trade":{"ids":{"explicit":["explicit.stat_4045269075"]}}} +{"ref":"Recover # Life when you Suppress Spell Damage","better":1,"matchers":[{"string":"주문 피해 억제 시 생명력 # 회복"}],"trade":{"ids":{"explicit":["explicit.stat_1807705940"]}}} +{"ref":"Recover # Life when your Trap is triggered by an Enemy","better":1,"matchers":[{"string":"자신의 덫이 적에 의해 발동되면 생명력 # 회복"}],"trade":{"ids":{"explicit":["explicit.stat_3952196842"]}}} +{"ref":"Recover # Resolve when you complete a Room","better":1,"matchers":[{"string":"방 완료 시 투지 # 회복"}],"trade":{"ids":{"explicit":["sanctum.stat_3002663227"]}}} +{"ref":"Recover #% of Energy Shield on Kill","better":1,"matchers":[{"string":"처치 시 에너지 보호막의 #% 회복"},{"string":"처치 시 에너지 보호막의 #% 상실","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1699499433","explicit.stat_2406605753"],"fractured":["fractured.stat_2406605753"],"scourge":["scourge.stat_2406605753"]}}} +{"ref":"Recover #% of Energy Shield when you Block","better":1,"matchers":[{"string":"막아낼 시 에너지 보호막 #% 회복"}],"trade":{"ids":{"explicit":["explicit.stat_1606263610"],"fractured":["fractured.stat_1606263610"]}}} +{"ref":"Recover #% of Energy Shield when you Kill an Enemy during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 적 처치 시 에너지 보호막의 #%를 회복"}],"trade":{"ids":{"explicit":["explicit.stat_2347201221"]}}} +{"ref":"Recover #% of Energy Shield when you lose a Spirit Charge","better":1,"matchers":[{"string":"혼백 충전 상실 시 에너지 보호막의 #% 회복"}],"trade":{"ids":{"explicit":["explicit.stat_1996775727"]}}} +{"ref":"Recover #% of Life at the end of the Effect","better":1,"matchers":[{"string":"효과가 끝나면 생명력의 #% 회복"},{"string":"효과가 끝나면 생명력 모두 회복","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4078194486"]}}} +{"ref":"Recover #% of Life on Kill","better":1,"matchers":[{"string":"처치 시 생명력의 #% 회복"},{"string":"처치 시 생명력의 #% 상실","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2023107756","explicit.stat_751813227"],"implicit":["implicit.stat_2023107756"],"fractured":["fractured.stat_2023107756"],"scourge":["scourge.stat_2023107756"]}}} +{"ref":"Recover #% of Life on Rampage","better":1,"matchers":[{"string":"광란 시 생명력의 #% 회복"}],"trade":{"ids":{"explicit":["explicit.stat_2737492258"]}}} +{"ref":"Recover #% of Life on use","better":1,"matchers":[{"string":"사용 시 생명력의 #% 회복"},{"string":"사용 시 생명력 모두 회복","value":101}],"trade":{"ids":{"explicit":["explicit.stat_2629106530"]}}} +{"ref":"Recover #% of Life per Endurance Charge on use\nLose all Endurance Charges on use","better":1,"matchers":[{"string":"사용 시 인내 충전 하나당 생명력의 #% 회복\n사용 시 모든 인내 충전 상실"}],"trade":{"ids":{"explicit":["explicit.stat_521653232"]}}} +{"ref":"Recover #% of Life when you Block","better":1,"matchers":[{"string":"막아낼 시 생명력의 #% 회복"}],"trade":{"ids":{"explicit":["explicit.stat_2442647190"],"implicit":["implicit.stat_2442647190"],"fractured":["fractured.stat_2442647190"]}}} +{"ref":"Recover #% of Life when you Ignite an Enemy","better":1,"matchers":[{"string":"적 점화 시 생명력의 #% 회복"}],"trade":{"ids":{"explicit":["explicit.stat_3112776239"]}}} +{"ref":"Recover #% of Life when you Kill an Enemy during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 적 처치 시 생명력의 #%를 회복"}],"trade":{"ids":{"explicit":["explicit.stat_1217476473"]}}} +{"ref":"Recover #% of Life when you Kill an Enemy while you have Rage","better":1,"matchers":[{"string":"격노가 있을 때 적을 처치하면 생명력 #% 회복"}],"trade":{"ids":{"enchant":["enchant.stat_3305072079"]}}} +{"ref":"Recover #% of Life when you lose a Spirit Charge","better":1,"matchers":[{"string":"혼백 충전 상실 시 생명력의 #% 회복"}],"trade":{"ids":{"explicit":["explicit.stat_305634887"]}}} +{"ref":"Recover #% of Life when you use a Flask","better":1,"matchers":[{"string":"플라스크 사용 시 생명력의 #% 회복"}],"trade":{"ids":{"explicit":["explicit.stat_3184268466"]}}} +{"ref":"Recover #% of Life when you use a Mana Flask","better":1,"matchers":[{"string":"마나 플라스크 사용 시 생명력의 #% 회복"}],"trade":{"ids":{"explicit":["explicit.stat_1926816773"]}}} +{"ref":"Recover #% of Mana and Energy Shield when you Focus","better":1,"matchers":[{"string":"집중 시 마나 및 에너지 보호막의 #% 회복"}],"trade":{"ids":{"explicit":["explicit.stat_2992263716"],"fractured":["fractured.stat_2992263716"],"crafted":["crafted.stat_2992263716"]}}} +{"ref":"Recover #% of Mana on Kill","better":1,"matchers":[{"string":"처치 시 마나의 #% 회복"},{"string":"처치 시 마나의 #% 상실","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1030153674","explicit.stat_1604736568"],"implicit":["implicit.stat_1030153674"],"fractured":["fractured.stat_1030153674"],"scourge":["scourge.stat_1030153674"]}}} +{"ref":"Recover #% of Mana when you Kill an Enemy during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 적 처치 시 마나의 #%를 회복"}],"trade":{"ids":{"explicit":["explicit.stat_3247931236"]}}} +{"ref":"Recover #% of Mana when you Shock an Enemy","better":1,"matchers":[{"string":"적 감전 시 마나의 #% 상실"},{"string":"적 감전 시 마나의 #% 회복"}],"trade":{"ids":{"explicit":["explicit.stat_2524029637"]}}} +{"ref":"Recover #% of your maximum Mana when you Block","better":1,"matchers":[{"string":"막아낼 시 최대 마나의 #% 회복"}],"trade":{"ids":{"explicit":["explicit.stat_3041288981"],"implicit":["implicit.stat_3041288981"],"fractured":["fractured.stat_3041288981"]}}} +{"ref":"Recover an additional #% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life","better":1,"matchers":[{"string":"최대 생명력이 아닐 때 사용 시 10초에 걸쳐 플라스크의 생명력 회복량의 #% 추가 회복"}],"trade":{"ids":{"explicit":["explicit.stat_307410279"],"fractured":["fractured.stat_307410279"]}}} +{"ref":"Recover Energy Shield equal to #% of Armour when you Block","better":1,"matchers":[{"string":"막아낼 시 방어도의 #%와 동일한 에너지 보호막 회복"}],"trade":{"ids":{"explicit":["explicit.stat_3681057026"]}}} +{"ref":"Reflect Shocks applied to you to all Nearby Enemies","better":1,"matchers":[{"string":"자신에게 적용된 감전을 주변의 적 모두에게 반사"}],"trade":{"ids":{"explicit":["explicit.stat_615884286"]}}} +{"ref":"Reflection of Abyss (Difficulty #)","better":1,"matchers":[{"string":"심연의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_38892"]}}} +{"ref":"Reflection of Ambush (Difficulty #)","better":1,"matchers":[{"string":"매복의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_48307"]}}} +{"ref":"Reflection of Angling (Difficulty #)","better":1,"matchers":[{"string":"강태공의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_40794"]}}} +{"ref":"Reflection of Azurite (Difficulty #)","better":1,"matchers":[{"string":"남동석의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_40031"]}}} +{"ref":"Reflection of Bestiary (Difficulty #)","better":1,"matchers":[{"string":"야수 도감의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_55569"]}}} +{"ref":"Reflection of Breach (Difficulty #)","better":1,"matchers":[{"string":"균열의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_62572"]}}} +{"ref":"Reflection of Brutality (Difficulty #)","better":1,"matchers":[{"string":"잔인성의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_29096"]}}} +{"ref":"Reflection of Camaraderie (Difficulty #)","better":1,"matchers":[{"string":"전우애의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_35395"]}}} +{"ref":"Reflection of Catalysis (Difficulty #)","better":1,"matchers":[{"string":"촉매의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_57850"]}}} +{"ref":"Reflection of Chaos (Difficulty #)","better":1,"matchers":[{"string":"혼돈의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_50834"]}}} +{"ref":"Reflection of Conflict (Difficulty #)","better":1,"matchers":[{"string":"갈등의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_1931"]}}} +{"ref":"Reflection of Darkness (Difficulty #)","better":1,"matchers":[{"string":"어둠의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_34457"]}}} +{"ref":"Reflection of Delirium (Difficulty #)","better":1,"matchers":[{"string":"환영의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_22138"]}}} +{"ref":"Reflection of Delve (Difficulty #)","better":1,"matchers":[{"string":"탐광의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_18737"]}}} +{"ref":"Reflection of Demonfire (Difficulty #)","better":1,"matchers":[{"string":"악마불의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_28500"]}}} +{"ref":"Reflection of Domination (Difficulty #)","better":1,"matchers":[{"string":"지배의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_63412"]}}} +{"ref":"Reflection of Entrapment (Difficulty #)","better":1,"matchers":[{"string":"속박의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_44399"]}}} +{"ref":"Reflection of Essence (Difficulty #)","better":1,"matchers":[{"string":"에센스의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_49862"]}}} +{"ref":"Reflection of Experimentation (Difficulty #)","better":1,"matchers":[{"string":"실험의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_55676"]}}} +{"ref":"Reflection of Flame (Difficulty #)","better":1,"matchers":[{"string":"화염의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_42468"]}}} +{"ref":"Reflection of Fractured Dimensions (Difficulty #)","better":1,"matchers":[{"string":"분열된 차원의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_49488"]}}} +{"ref":"Reflection of Frost (Difficulty #)","better":1,"matchers":[{"string":"서리의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_38110"]}}} +{"ref":"Reflection of Guilt (Difficulty #)","better":1,"matchers":[{"string":"죄책감의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_25480"]}}} +{"ref":"Reflection of Imprisonment (Difficulty #)","better":1,"matchers":[{"string":"갇힘의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_10363"]}}} +{"ref":"Reflection of Kalandra (Difficulty #)","better":1,"matchers":[{"string":"칼란드라의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_36591"]}}} +{"ref":"Reflection of Legion (Difficulty #)","better":1,"matchers":[{"string":"군단의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_403"]}}} +{"ref":"Reflection of Metamorph (Difficulty #)","better":1,"matchers":[{"string":"변형의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_3699"]}}} +{"ref":"Reflection of Occultism (Difficulty #)","better":1,"matchers":[{"string":"비술의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_24451"]}}} +{"ref":"Reflection of Paradise (Difficulty #)","better":1,"matchers":[{"string":"낙원의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_50846"]}}} +{"ref":"Reflection of Perverted Faith (Difficulty #)","better":1,"matchers":[{"string":"엇나간 믿음의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_27678"]}}} +{"ref":"Reflection of Phaaryl (Difficulty #)","better":1,"matchers":[{"string":"파아릴의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_7674"]}}} +{"ref":"Reflection of Possession (Difficulty #)","better":1,"matchers":[{"string":"빙의의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_25049"]}}} +{"ref":"Reflection of Power (Difficulty #)","better":1,"matchers":[{"string":"힘의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_35950"]}}} +{"ref":"Reflection of Scourge (Difficulty #)","better":1,"matchers":[{"string":"스컬지의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_62360"]}}} +{"ref":"Reflection of Stasis (Difficulty #)","better":1,"matchers":[{"string":"정체의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_32968"]}}} +{"ref":"Reflection of Sulphite (Difficulty #)","better":1,"matchers":[{"string":"아황산염의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_45086"]}}} +{"ref":"Reflection of the Black Scythe (Difficulty #)","better":1,"matchers":[{"string":"검은 낫의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_9662"]}}} +{"ref":"Reflection of the Breachlord (Difficulty #)","better":1,"matchers":[{"string":"균열 군주의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_62935"]}}} +{"ref":"Reflection of the Broken Circle (Difficulty #)","better":1,"matchers":[{"string":"끊어진 원의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_43128"]}}} +{"ref":"Reflection of the Chalice (Difficulty #)","better":1,"matchers":[{"string":"성배의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_64561"]}}} +{"ref":"Reflection of the Chasm (Difficulty #)","better":1,"matchers":[{"string":"절벽길의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_57101"]}}} +{"ref":"Reflection of the Dream (Difficulty #)","better":1,"matchers":[{"string":"꿈의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_27117"]}}} +{"ref":"Reflection of the Harbingers (Difficulty #)","better":1,"matchers":[{"string":"선구자의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_37203"]}}} +{"ref":"Reflection of the Hunter (Difficulty #)","better":1,"matchers":[{"string":"사냥꾼의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_18816"]}}} +{"ref":"Reflection of the Monolith (Difficulty #)","better":1,"matchers":[{"string":"기둥의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_34796"]}}} +{"ref":"Reflection of the Nightmare (Difficulty #)","better":1,"matchers":[{"string":"악몽의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_24232"]}}} +{"ref":"Reflection of the Storm (Difficulty #)","better":1,"matchers":[{"string":"태풍의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_2745"]}}} +{"ref":"Reflection of the Sun (Difficulty #)","better":1,"matchers":[{"string":"태양의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_60034"]}}} +{"ref":"Reflection of the Trove (Difficulty #)","better":1,"matchers":[{"string":"발견물의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_46772"]}}} +{"ref":"Reflection of the Wilderness (Difficulty #)","better":1,"matchers":[{"string":"황야의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_29224"]}}} +{"ref":"Reflection of Thralldom (Difficulty #)","better":1,"matchers":[{"string":"예속의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_26813"]}}} +{"ref":"Reflection of Torment (Difficulty #)","better":1,"matchers":[{"string":"고통의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_53950"]}}} +{"ref":"Reflection of Tyranny (Difficulty #)","better":1,"matchers":[{"string":"폭정의 투영 (난이도 #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_60981"]}}} +{"ref":"Reflects # Chaos Damage to Melee Attackers","better":1,"matchers":[{"string":"근접 공격자에게 #의 카오스 피해 반사"}],"trade":{"ids":{"explicit":["explicit.stat_189451991"]}}} +{"ref":"Reflects # Cold Damage to Melee Attackers","better":1,"matchers":[{"string":"근접 공격자에게 #의 냉기 피해 반사"}],"trade":{"ids":{"explicit":["explicit.stat_4235886357"]}}} +{"ref":"Reflects # Fire Damage to Attackers on Block","better":1,"matchers":[{"string":"막아낼 시 공격자에게 #의 화염 피해 반사"}],"trade":{"ids":{"explicit":["explicit.stat_3815724042"]}}} +{"ref":"Reflects # Fire Damage to Melee Attackers","better":1,"matchers":[{"string":"근접 공격자에게 #의 화염 피해 반사"}],"trade":{"ids":{"explicit":["explicit.stat_1757945818"]}}} +{"ref":"Reflects # Lightning Damage to Attackers on Block","better":1,"matchers":[{"string":"막아낼 시 공격자에게 #~#의 번개 피해 반사"},{"string":"막아낼 시 공격자에게 #의 번개 피해 반사"}],"trade":{"ids":{"explicit":["explicit.stat_1810011556"]}}} +{"ref":"Reflects # Lightning Damage to Melee Attackers","better":1,"matchers":[{"string":"근접 공격자에게 #의 번개 피해 반사"}],"trade":{"ids":{"explicit":["explicit.stat_3868184702"]}}} +{"ref":"Reflects # Physical Damage to Melee Attackers","better":1,"matchers":[{"string":"근접 공격자에게 #의 물리 피해 반사"}],"trade":{"ids":{"explicit":["explicit.stat_3767873853"],"implicit":["implicit.stat_3767873853"],"fractured":["fractured.stat_3767873853"],"scourge":["scourge.stat_3767873853"],"crafted":["crafted.stat_3767873853"]}}} +{"ref":"Reflects # to # Lightning Damage to Melee Attackers","better":1,"matchers":[{"string":"근접 공격자에게 #~#의 번개 피해 반사"}],"trade":{"ids":{"explicit":["explicit.stat_1243237244"]}}} +{"ref":"Reflects # to # Physical Damage to Attackers on Block","better":1,"matchers":[{"string":"막아낼 시 공격자에게 #~#의 물리 피해 반사"},{"string":"막아낼 시 공격자에게 #의 물리 피해 반사"}],"trade":{"ids":{"explicit":["explicit.stat_1445684883"],"crafted":["crafted.stat_1445684883"]}}} +{"ref":"Reflects # to # Physical Damage to Melee Attackers","better":1,"matchers":[{"string":"근접 공격자에게 #~#의 물리 피해 반사"}],"trade":{"ids":{"explicit":["explicit.stat_2970307386"]}}} +{"ref":"Reflects your other Ring","better":1,"matchers":[{"string":"플레이어의 다른 반지 투영"}],"trade":{"ids":{"explicit":["explicit.stat_746505085"]}}} +{"ref":"Regenerate # Energy Shield per second","better":1,"matchers":[{"string":"1초마다 에너지 보호막 # 재생"}],"trade":{"ids":{"explicit":["explicit.stat_1330109706","explicit.stat_2561836520"],"fractured":["fractured.stat_2561836520"]}}} +{"ref":"Regenerate # Energy Shield per second if all Equipped items are Corrupted","better":1,"matchers":[{"string":"장착한 아이템이 모두 타락한 경우 1초마다 에너지 보호막 # 재생"}],"trade":{"ids":{"explicit":["explicit.stat_4156715241"]}}} +{"ref":"Regenerate # Energy Shield per Second per Poison on you, up to 400 per second","better":1,"matchers":[{"string":"자신에게 중첩된 중독 하나당 1초마다 에너지 보호막 # 재생, 최대 400 재생"}],"trade":{"ids":{"explicit":["explicit.stat_948687156"]}}} +{"ref":"Regenerate # Energy Shield per second while a Rare or Unique Enemy is Nearby","better":1,"matchers":[{"string":"주변에 희귀 또는 고유 적이 있는 동안 1초마다 에너지 보호막 # 재생"}],"trade":{"ids":{"explicit":["explicit.stat_2238019079"],"fractured":["fractured.stat_2238019079"],"crafted":["crafted.stat_2238019079"]}}} +{"ref":"Regenerate # Life over 1 second when you Cast a Spell","better":1,"matchers":[{"string":"주문 시전 시 1초 동안 생명력 # 재생"}],"trade":{"ids":{"explicit":["explicit.stat_1955882986"]}}} +{"ref":"Regenerate # Life per second","better":1,"matchers":[{"string":"1초마다 생명력 # 재생"}],"trade":{"ids":{"explicit":["explicit.stat_3325883026"],"implicit":["implicit.stat_3325883026"],"fractured":["fractured.stat_3325883026"],"scourge":["scourge.stat_3325883026"],"crafted":["crafted.stat_3325883026"]}}} +{"ref":"Regenerate # Life per second for each Uncorrupted Item Equipped","better":1,"matchers":[{"string":"장착한 타락하지 않은 아이템 하나당 1초마다 생명력 # 재생"}],"trade":{"ids":{"explicit":["explicit.stat_405941409"]}}} +{"ref":"Regenerate # Life per second if no Equipped Items are Corrupted","better":1,"matchers":[{"string":"장착한 아이템 중 타락한 아이템이 없는 경우 1초마다 최대 생명력 # 재생"}],"trade":{"ids":{"explicit":["explicit.stat_2497198283"]}}} +{"ref":"Regenerate # Life per second if you have at least 1000 Maximum Energy Shield","better":1,"matchers":[{"string":"에너지 보호막 최대치가 1,000 이상인 경우 1초마다 생명력 # 재생"}],"trade":{"ids":{"explicit":["explicit.stat_1704843611"]}}} +{"ref":"Regenerate # Life per second if you have at least 1500 Maximum Energy Shield","better":1,"matchers":[{"string":"에너지 보호막 최대치가 1,500 이상인 경우 1초마다 생명력 # 재생"}],"trade":{"ids":{"explicit":["explicit.stat_3227159962"]}}} +{"ref":"Regenerate # Life per second if you have at least 500 Maximum Energy Shield","better":1,"matchers":[{"string":"에너지 보호막 최대치가 500 이상인 경우 1초마다 생명력 # 재생"}],"trade":{"ids":{"explicit":["explicit.stat_1103902353"]}}} +{"ref":"Regenerate # Life per second per Endurance Charge","better":1,"matchers":[{"string":"인내 충전 하나당 1초마다 생명력 # 재생"}],"trade":{"ids":{"explicit":["explicit.stat_1898967950"]}}} +{"ref":"Regenerate # Life per second per Level","better":1,"matchers":[{"string":"1레벨당 1초마다 생명력 # 재생"}],"trade":{"ids":{"explicit":["explicit.stat_1384864963"]}}} +{"ref":"Regenerate # Life per Second while affected by Vitality","better":1,"matchers":[{"string":"활력의 영향을 받는 동안 1초마다 생명력 # 재생"}],"trade":{"ids":{"explicit":["explicit.stat_3489570622"]}}} +{"ref":"Regenerate # Life per second while Ignited","better":1,"matchers":[{"string":"점화 상태일 때 1초마다 생명력 # 재생"}],"trade":{"ids":{"explicit":["explicit.stat_952897668"]}}} +{"ref":"Regenerate # Life per Second while in Blood Stance","better":1,"matchers":[{"string":"핏빛 태세에서 1초마다 생명력 # 재생"}],"trade":{"ids":{"explicit":["explicit.stat_550848224"]}}} +{"ref":"Regenerate # Life per second while moving","better":1,"matchers":[{"string":"이동 중일 때 1초마다 생명력 # 재생"}],"trade":{"ids":{"explicit":["explicit.stat_2841027131"],"implicit":["implicit.stat_2841027131"]}}} +{"ref":"Regenerate # Life per Second while on Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태일 때 1초마다 #의 생명력 재생"}],"trade":{"ids":{"explicit":["explicit.stat_2161482953"]}}} +{"ref":"Regenerate # Life per Second while you have Avian's Flight","better":1,"matchers":[{"string":"새의 비행 상태일 때 1초마다 생명력 # 재생"}],"trade":{"ids":{"explicit":["explicit.stat_2589482056"]}}} +{"ref":"Regenerate # Mana per second","better":1,"matchers":[{"string":"1초마다 마나 # 재생"}],"trade":{"ids":{"explicit":["explicit.stat_4291461939"],"implicit":["implicit.stat_4291461939"],"fractured":["fractured.stat_4291461939"],"scourge":["scourge.stat_4291461939"],"crafted":["crafted.stat_4291461939"]}}} +{"ref":"Regenerate # Mana per second if all Equipped Items are Corrupted","better":1,"matchers":[{"string":"장착한 아이템이 모두 타락한 경우 1초마다 마나 # 재생"}],"trade":{"ids":{"explicit":["explicit.stat_2760138143"]}}} +{"ref":"Regenerate # Mana per Second per 10 Devotion","better":1,"matchers":[{"string":"헌신 10당 1초마다 마나 # 재생"}],"trade":{"ids":{"explicit":["explicit.stat_2042813020"]}}} +{"ref":"Regenerate # Mana per Second per Power Charge","better":1,"matchers":[{"string":"권능 충전 하나당 1초마다 마나 # 재생"}],"trade":{"ids":{"explicit":["explicit.stat_4084763463"]}}} +{"ref":"Regenerate # Mana per Second while Dual Wielding","better":1,"matchers":[{"string":"쌍수 장착 시 1초마다 마나 # 재생"}],"trade":{"ids":{"implicit":["implicit.stat_1361343333"]}}} +{"ref":"Regenerate # Mana per Second while holding a Shield","better":1,"matchers":[{"string":"방패를 들고 있는 동안 1초마다 마나 # 재생"}],"trade":{"ids":{"implicit":["implicit.stat_3762868276"]}}} +{"ref":"Regenerate # Mana per second while wielding a Staff","better":1,"matchers":[{"string":"지팡이 장착 시 1초마다 마나 # 재생"}],"trade":{"ids":{"implicit":["implicit.stat_1388668644"]}}} +{"ref":"Regenerate # Mana per Second while you have Avian's Flight","better":1,"matchers":[{"string":"새의 비행 상태일 때 1초마다 마나 # 재생"}],"trade":{"ids":{"explicit":["explicit.stat_1495376076"]}}} +{"ref":"Regenerate #% Life over one second when hit while affected by Vitality","better":1,"matchers":[{"string":"활력의 영향을 받는 동안 피격 시 1초에 걸쳐 생명력의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_1366273824"]}}} +{"ref":"Regenerate #% Life over one second when Hit while Sane","better":1,"matchers":[{"string":"제정신 상태일 때 피격 시 1초에 걸쳐 생명력의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_2504632495"]}}} +{"ref":"Regenerate #% of Energy Shield over 2 seconds when you Consume a corpse","better":1,"matchers":[{"string":"시신 소모 시 2초 동안 에너지 보호막의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_2900084972"]}}} +{"ref":"Regenerate #% of Energy Shield per second","better":1,"matchers":[{"string":"1초마다 에너지 보호막 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_3594640492"],"implicit":["implicit.stat_3594640492"],"fractured":["fractured.stat_3594640492"]}}} +{"ref":"Regenerate #% of Energy Shield per Second for\nevery 10 Intelligence on Allocated Passives in Radius","better":1,"matchers":[{"string":"반경 내 할당된 패시브 스킬의 지능 10당\n1초마다 에너지 보호막의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_615595418"]}}} +{"ref":"Regenerate #% of Energy Shield per second if you've dealt a Critical Strike with this weapon Recently","better":1,"matchers":[{"string":"이 무기로 최근 4초 이내 치명타 명중 시 1초마다 에너지 보호막의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_298613712"]}}} +{"ref":"Regenerate #% of Energy Shield per second if you've Hit an Enemy Recently","better":1,"matchers":[{"string":"최근 4초 이내 적 명중 시 1초마다 에너지 보호막의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_588560583"]}}} +{"ref":"Regenerate #% of Energy Shield per Second while affected by Discipline","dp":true,"better":1,"matchers":[{"string":"단련의 영향을 받는 동안 1초마다 에너지 보호막의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_991194404"],"implicit":["implicit.stat_991194404"]}}} +{"ref":"Regenerate #% of Energy Shield per second while on Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태일 때 1초마다 에너지 보호막의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_115109959"]}}} +{"ref":"Regenerate #% of Energy Shield per second while Shocked","better":1,"matchers":[{"string":"감전 상태일 때 1초마다 에너지 보호막의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_1700808530"]}}} +{"ref":"Regenerate #% of Life per second","dp":true,"better":1,"matchers":[{"string":"1초마다 생명력의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_836936635"],"implicit":["implicit.stat_836936635"],"fractured":["fractured.stat_836936635"],"enchant":["enchant.stat_836936635"],"crafted":["crafted.stat_836936635"]}}} +{"ref":"Regenerate #% of Life per second during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 1초마다 생명력의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_871270154"],"crafted":["crafted.stat_871270154"]}}} +{"ref":"Regenerate #% of Life per second for each different Ailment affecting you","better":1,"matchers":[{"string":"플레이어에게 영향을 주는 서로 다른 상태 이상 하나당 1초마다 생명력의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_3491639130"]}}} +{"ref":"Regenerate #% of Life per second for each Raised Zombie","dp":true,"better":1,"matchers":[{"string":"소환한 좀비 하나당 1초마다 생명력의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_2841618445"]}}} +{"ref":"Regenerate #% of Life per second if you have been Hit Recently","better":1,"matchers":[{"string":"최근 4초 이내 피격된 경우 1초마다 생명력의 #% 재생"},{"string":"최근 4초 이내 피격된 경우 1초마다 생명력의 #%를 재생"}],"trade":{"ids":{"explicit":["explicit.stat_2201614328"],"enchant":["enchant.stat_1122635070"]}}} +{"ref":"Regenerate #% of Life per second on Chilled Ground","better":1,"matchers":[{"string":"얼음 지대에서 1초마다 생명력의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_710105516"]}}} +{"ref":"Regenerate #% of Life per second per 500 Maximum Energy Shield","better":1,"matchers":[{"string":"에너지 보호막 최대치 500당 1초마다 생명력의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_1960833438"]}}} +{"ref":"Regenerate #% of Life per second per Endurance Charge","better":1,"matchers":[{"string":"인내 충전 하나당 1초마다 생명력의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_989800292"],"implicit":["implicit.stat_989800292"]}}} +{"ref":"Regenerate #% of Life per second per Frenzy Charge","better":1,"matchers":[{"string":"격분 충전 하나당 1초마다 생명력의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_2828673491"]}}} +{"ref":"Regenerate #% of Life per second per Power Charge","better":1,"matchers":[{"string":"권능 충전 하나당 1초마다 생명력의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_3961213398"]}}} +{"ref":"Regenerate #% of Life per second while affected by Vitality","dp":true,"better":1,"matchers":[{"string":"활력의 영향을 받는 동안 1초마다 생명력의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_1165583295"]}}} +{"ref":"Regenerate #% of Life per second while Frozen","better":1,"matchers":[{"string":"동결 상태일 때 1초마다 생명력의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_2656696317"]}}} +{"ref":"Regenerate #% of Life per second while moving","better":1,"matchers":[{"string":"이동 중일 때 1초마다 생명력의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_908516597"],"fractured":["fractured.stat_908516597"]}}} +{"ref":"Regenerate #% of Life per second while on Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태일 때 1초마다 생명력의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_3942946753"]}}} +{"ref":"Regenerate #% of Life per second with at least 400 Strength","better":1,"matchers":[{"string":"힘 400 이상이면 1초마다 생명력의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_1173027373"]}}} +{"ref":"Regenerate #% of Mana over 2 seconds when you Consume a corpse","better":1,"matchers":[{"string":"시신 소모 시 2초 동안 마나의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_3721828090"]}}} +{"ref":"Regenerate #% of Mana per second","better":1,"matchers":[{"string":"1초마다 마나의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_3188455409"],"implicit":["implicit.stat_3188455409"],"fractured":["fractured.stat_3188455409"]}}} +{"ref":"Regenerate #% of Mana per second if you've Hit an Enemy Recently","better":1,"matchers":[{"string":"최근 4초 이내 적 명중 시 1초마다 마나의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_2602865453"]}}} +{"ref":"Regenerate 1 Rage per second for every # Life Recovery per second from Regeneration\nDoes not delay Inherent Loss of Rage","better":1,"matchers":[{"string":"재생으로 인한 초당 생명력 회복 #당 1초마다 격노 1 재생\n기본 격노 상실을 지연시키지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_4103111421"]}}} +{"ref":"Reinforcements have #% increased Attack Speed","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"지원군의 공격 속도 #% 증가"},{"string":"지원군의 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1339532482"],"fractured":["fractured.stat_1339532482"]}}} +{"ref":"Reinforcements have #% increased Cast Speed","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"지원군의 시전 속도 #% 증가"},{"string":"지원군의 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1843941387"],"fractured":["fractured.stat_1843941387"]}}} +{"ref":"Reinforcements have #% increased Movement Speed","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"지원군의 이동 속도 #% 증가"},{"string":"지원군의 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1342271987"],"fractured":["fractured.stat_1342271987"]}}} +{"ref":"Rejuvenation Totem also grants Mana Regeneration equal to #% of its Life Regeneration","better":1,"matchers":[{"string":"회복 토템이 추가로 생명력 재생의 #%와 동일한 마나 재생"}],"trade":{"ids":{"enchant":["enchant.stat_1803063132"]}}} +{"ref":"Remnants have #% chance to have an additional Suffix Modifier","better":1,"fromAreaMods":true,"matchers":[{"string":"유적에 #%의 확률로 접미어 속성 1개 추가 부여"}],"trade":{"ids":{"implicit":["implicit.stat_1871805225"]}}} +{"ref":"Remove an Ailment when you use a Flask if all Equipped Items are Elder Items","better":1,"matchers":[{"string":"장착한 아이템이 모두 엘더 아이템인 경우, 플라스크 사용 시 상태 이상 제거"}],"trade":{"ids":{"explicit":["explicit.stat_2917587077"]}}} +{"ref":"Remove Chill and Freeze when you use a Flask","better":1,"matchers":[{"string":"플라스크 사용 시 냉각 및 동결 제거"}],"trade":{"ids":{"explicit":["explicit.stat_3296873305"],"implicit":["implicit.stat_3296873305"],"fractured":["fractured.stat_3296873305"]}}} +{"ref":"Remove Ignite and Burning when you use a Flask","better":1,"matchers":[{"string":"플라스크 사용 시 점화 및 화상 제거"}],"trade":{"ids":{"explicit":["explicit.stat_1162425204"],"implicit":["implicit.stat_1162425204"],"fractured":["fractured.stat_1162425204"]}}} +{"ref":"Remove Shock when you use a Flask","better":1,"matchers":[{"string":"플라스크 사용 시 감전 제거"}],"trade":{"ids":{"explicit":["explicit.stat_561861132"],"implicit":["implicit.stat_561861132"],"fractured":["fractured.stat_561861132"]}}} +{"ref":"Removes #% of Life Recovered from Mana when used","better":1,"matchers":[{"string":"사용 시 마나에서 회복한 생명력의 #% 제거"}],"trade":{"ids":{"explicit":["explicit.stat_648019518"],"fractured":["fractured.stat_648019518"]}}} +{"ref":"Removes #% of Mana Recovered from Life when used","better":1,"matchers":[{"string":"사용 시 생명력에서 회복한 마나의 #% 제거"}],"trade":{"ids":{"explicit":["explicit.stat_959641748"],"fractured":["fractured.stat_959641748"]}}} +{"ref":"Removes #% of your maximum Energy Shield on use","better":1,"matchers":[{"string":"사용 시 에너지 보호막 최대치 #% 제거"}],"trade":{"ids":{"explicit":["explicit.stat_2917449574"]}}} +{"ref":"Removes all but one Life on use\nRemoved life is Regenerated as Energy Shield over # seconds","better":1,"matchers":[{"string":"생명력을 1만 남기고 제거\n제거된 생명력은 #초에 걸쳐 에너지 보호막으로 재생"}],"trade":{"ids":{"explicit":["explicit.stat_4120779321"]}}} +{"ref":"Removes all Energy Shield","better":1,"matchers":[{"string":"모든 에너지 보호막 제거"}],"trade":{"ids":{"explicit":["explicit.stat_1482608021"]}}} +{"ref":"Removes Bleeding when you use a Flask","better":1,"matchers":[{"string":"플라스크 사용 시 출혈 제거"}],"trade":{"ids":{"explicit":["explicit.stat_2202201823"]}}} +{"ref":"Removes Bleeding when you use a Warcry","better":1,"matchers":[{"string":"함성 사용 시 출혈 제거"}],"trade":{"ids":{"explicit":["explicit.stat_3936926420"],"fractured":["fractured.stat_3936926420"]}}} +{"ref":"Removes Curses on use","better":1,"matchers":[{"string":"사용 시 저주 제거"}],"trade":{"ids":{"explicit":["explicit.stat_3895393544"],"fractured":["fractured.stat_3895393544"]}}} +{"ref":"Removes Elemental Ailments on Rampage","better":1,"matchers":[{"string":"광란 시 원소 상태 이상 제거"}],"trade":{"ids":{"explicit":["explicit.stat_627889781"]}}} +{"ref":"Reserves #% of Life","better":1,"matchers":[{"string":"생명력 #% 점유"}],"trade":{"ids":{"explicit":["explicit.stat_2492660287"]}}} +{"ref":"Resolute Technique","better":1,"matchers":[{"string":"확고한 기술"}],"trade":{"ids":{"explicit":["explicit.stat_3943945975"],"implicit":["implicit.stat_3943945975"],"fractured":["fractured.stat_3943945975"],"scourge":["scourge.stat_3943945975"]}}} +{"ref":"Resolve Aegis Recovers #% faster while not losing Resolve","better":1,"matchers":[{"string":"투지를 상실하지 않는 동안 투지 비호가 #% 더 빠르게 회복"},{"string":"투지를 상실하지 않는 동안 투지 비호가 #% 더 느리게 회복","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_3889616543"]}}} +{"ref":"Resolve Mitigation from Enemy Hits is based on +#% of Armour","better":1,"matchers":[{"string":"적에게 피격 시 투지 완화의 기준이 되는 방어도 #%"}],"trade":{"ids":{"explicit":["sanctum.stat_3621177126"]}}} +{"ref":"Restores Ward on use","better":1,"matchers":[{"string":"사용 시 수호 회복"}],"trade":{"ids":{"implicit":["implicit.stat_2451856207"]}}} +{"ref":"Reused at the end of this Flask's effect","better":1,"matchers":[{"string":"이 플라스크 효과가 끝나면 재사용"}],"trade":{"ids":{"enchant":["enchant.stat_1932727102"]}}} +{"ref":"Reward Room Monsters deal #% increased Damage","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"보물 창고 몬스터가 주는 피해 #% 증가"},{"string":"보물 창고 몬스터가 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1390113017"],"fractured":["fractured.stat_1390113017"]}}} +{"ref":"Reward Room Monsters take #% increased Damage","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"보물 창고 몬스터가 받는 피해 #% 증가"},{"string":"보물 창고 몬스터가 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_839556554"],"fractured":["fractured.stat_839556554"]}}} +{"ref":"Reward Rooms have #% increased Monsters","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"보물 창고의 몬스터 #% 증가"},{"string":"보물 창고의 몬스터 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4056408881"],"fractured":["fractured.stat_4056408881"]}}} +{"ref":"Rhoa Feather Lure","better":1,"matchers":[{"string":"로아 깃털 루어","value":1},{"string":"사이렌 웜 미끼","value":2},{"string":"토템 나무 루어","value":3},{"string":"마석학 루어","value":4}],"trade":{"ids":{"explicit":["explicit.stat_3360430812"],"fractured":["fractured.stat_3360430812"]}}} +{"ref":"Right ring slot: #% increased Duration of Ailments on You","better":1,"matchers":[{"string":"오른쪽 반지 슬롯: 플레이어에게 적용되는 상태 이상 지속시간 #% 증가"},{"string":"오른쪽 반지 슬롯: 플레이어에게 적용되는 상태 이상 지속시간 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2457848738"]}}} +{"ref":"Right ring slot: #% increased Effect of Curses on you","better":1,"matchers":[{"string":"오른쪽 반지 슬롯: 플레이어에게 적용되는 저주 효과 #% 증가"},{"string":"오른쪽 반지 슬롯: 플레이어에게 적용되는 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4279053153"]}}} +{"ref":"Right ring slot: #% increased Skill Effect Duration","better":1,"matchers":[{"string":"오른쪽 반지 슬롯: 스킬 효과 지속시간 #% 증가"},{"string":"오른쪽 반지 슬롯: 스킬 효과 지속시간 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2239667237"]}}} +{"ref":"Right ring slot: #% of Cold Damage from Hits taken as Lightning Damage","better":1,"matchers":[{"string":"오른쪽 반지 슬롯: 피격 시 냉기 피해의 #%를 번개 피해로 받음"}],"trade":{"ids":{"implicit":["implicit.stat_744858137"]}}} +{"ref":"Right ring slot: #% of Fire Damage from Hits taken as Cold Damage","better":1,"matchers":[{"string":"오른쪽 반지 슬롯: 피격 시 화염 피해의 #%를 냉기 피해로 받음"}],"trade":{"ids":{"implicit":["implicit.stat_2478238773"]}}} +{"ref":"Right ring slot: #% of Lightning Damage from Hits taken as Fire Damage","better":1,"matchers":[{"string":"오른쪽 반지 슬롯: 피격 시 번개 피해의 #%를 화염 피해로 받음"}],"trade":{"ids":{"implicit":["implicit.stat_1905512385"]}}} +{"ref":"Right ring slot: +# to maximum Mana","better":1,"matchers":[{"string":"오른쪽 반지 슬롯: 마나 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_417509375"]}}} +{"ref":"Right Ring slot: Cover Enemies in Frost for # seconds when you Freeze them","better":1,"matchers":[{"string":"오른쪽 반지 슬롯: 적 동결 시 #초 동안 적을 서리로 덮음"}],"trade":{"ids":{"explicit":["explicit.stat_3536082205"]}}} +{"ref":"Right ring slot: Minions take #% increased Damage","better":1,"matchers":[{"string":"오른쪽 반지 슬롯: 소환수가 받는 피해 #% 증가"},{"string":"오른쪽 반지 슬롯: 소환수가 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1069618951"]}}} +{"ref":"Right ring slot: Projectiles from Spells cannot Fork","better":1,"matchers":[{"string":"오른쪽 반지 슬롯: 주문의 투사체 갈라짐 불가"}],"trade":{"ids":{"explicit":["explicit.stat_2933024469"]}}} +{"ref":"Right ring slot: Projectiles from Spells Chain +# times","better":1,"matchers":[{"string":"오른쪽 반지 슬롯: 주문의 투사체 연쇄 #회"}],"trade":{"ids":{"explicit":["explicit.stat_1555918911"]}}} +{"ref":"Right ring slot: Regenerate #% of Energy Shield per second","better":1,"matchers":[{"string":"오른쪽 반지 슬롯: 1초마다 에너지 보호막의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_3676958605"]}}} +{"ref":"Right ring slot: You and your Minions take #% reduced Reflected Physical Damage","better":-1,"matchers":[{"string":"오른쪽 반지 슬롯: 자신 및 소환수가 반사로 받는 물리 피해 #% 증가"},{"string":"오른쪽 반지 슬롯: 자신 및 소환수가 반사로 받는 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1357244124"]},"inverted":true}} +{"ref":"Right ring slot: You cannot Regenerate Mana","better":1,"matchers":[{"string":"오른쪽 반지 슬롯: 마나 재생 불가"}],"trade":{"ids":{"explicit":["explicit.stat_783864527"]}}} +{"ref":"Right Ring Slot: Your Shocking Skitterbot's Aura applies Socketed Hex Curse instead","better":1,"matchers":[{"string":"오른쪽 반지 슬롯: 감전 원격 기폭 장치의 오라 대신 장착된 사술 저주 부여"}],"trade":{"ids":{"explicit":["explicit.stat_1809329372"]}}} +{"ref":"Righteous Fire grants #% increased Spell Damage","better":1,"matchers":[{"string":"정의의 화염이 주문 피해 #% 증가 부여"},{"string":"정의의 화염이 주문 피해 #% 감소 부여","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3316822388"]}}} +{"ref":"Rin's Veiled","better":0,"matchers":[{"string":"린의 장막의"}],"trade":{"ids":{"veiled":["veiled.mod_6131"]}}} +{"ref":"Riposte has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"반격 재사용 대기시간 회복 속도 #% 증가"},{"string":"반격 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2287986752"]}}} +{"ref":"Rogue Equipment cannot be found","better":1,"matchers":[{"string":"도둑 장비 발견 불가"}],"trade":{"ids":{"enchant":["enchant.stat_1045213941"]}}} +{"ref":"Rogue Perks are doubled","better":1,"matchers":[{"string":"도둑 특전의 효과 #% 증폭"},{"string":"도둑 특전의 효과 2배","value":100}],"trade":{"ids":{"enchant":["enchant.stat_898812928"]}}} +{"ref":"Rolling Magma Chains an additional time","better":1,"matchers":[{"string":"몰려오는 마그마가 #회 추가 연쇄"},{"string":"몰려오는 마그마가 1회 추가 연쇄","value":1}],"trade":{"ids":{"enchant":["enchant.stat_2589980605"]}}} +{"ref":"Rooms are unknown on the Sanctum Map","better":1,"matchers":[{"string":"성역 지도에서 방을 확인할 수 없음"}],"trade":{"ids":{"explicit":["sanctum.stat_3237367570"]}}} +{"ref":"Rune Blast teleports you to the detonated Rune if you have not detonated Runes in the past 1.5 seconds","better":1,"matchers":[{"string":"최근 1.5초 내에 룬 문자를 폭발시키지 않았다면 룬 폭발이 자신을 폭발한 룬 문자로 순간이동"}],"trade":{"ids":{"enchant":["enchant.stat_242209782"]}}} +{"ref":"Runebinder","better":1,"matchers":[{"string":"룬 결속사"}],"trade":{"ids":{"explicit":["explicit.stat_4080245957"],"fractured":["fractured.stat_4080245957"],"scourge":["scourge.stat_4080245957"]}}} +{"ref":"Sacrifice #% of Life to gain that much Energy Shield when you Cast a Spell","better":1,"matchers":[{"string":"주문 시전 시 생명력 #%를 희생하여 같은 값의 에너지 보호막 획득"}],"trade":{"ids":{"explicit":["explicit.stat_613752285"]}}} +{"ref":"Sacrifice #% of your Life when you Use or Trigger a Spell Skill","better":1,"matchers":[{"string":"주문 스킬 사용 또는 발동 시 생명력의 #% 희생"}],"trade":{"ids":{"explicit":["explicit.stat_545408899"]}}} +{"ref":"Sand Bladestorms move with #% increased speed","better":1,"matchers":[{"string":"모래 칼날 폭풍 이동 속도 #% 증가"},{"string":"모래 칼날 폭풍 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1556508042"]}}} +{"ref":"Scorch Enemies in Close Range when you Block","better":1,"matchers":[{"string":"플레이어가 막아낼 시 근거리에 있는 적 그을림 유발"}],"trade":{"ids":{"explicit":["explicit.stat_41178696"]}}} +{"ref":"Scourge Arrow creates +# Spore Pod","better":1,"matchers":[{"string":"재앙의 화살이 생성하는 포자 주머니 #개"}],"trade":{"ids":{"enchant":["enchant.stat_1044970549"]}}} +{"ref":"Scourge Arrow deals #% increased Damage","better":1,"matchers":[{"string":"재앙의 화살로 주는 피해 #% 증가"},{"string":"재앙의 화살로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_192534517"]}}} +{"ref":"Scourge Arrow has #% chance to Poison per Stage","better":1,"matchers":[{"string":"재앙의 화살 단계 하나당 #%의 확률로 중독 유발"}],"trade":{"ids":{"enchant":["enchant.stat_2257652056"]}}} +{"ref":"Secrets of Suffering","better":1,"matchers":[{"string":"고통의 비밀"}],"trade":{"ids":{"implicit":["implicit.stat_261342933"]}}} +{"ref":"Seismic Cry has a minimum of # Power","better":1,"matchers":[{"string":"지진 함성의 최소 위세 #"}],"trade":{"ids":{"enchant":["enchant.stat_355086768"]}}} +{"ref":"Seismic Trap deals #% increased Damage","better":1,"matchers":[{"string":"지진 덫으로 주는 피해 #% 증가"},{"string":"지진 덫으로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1175282728"]}}} +{"ref":"Seismic Trap has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"지진 덫의 재사용 대기시간 회복 속도 #% 증가"},{"string":"지진 덫의 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3618430531"]}}} +{"ref":"Seismic Trap has #% increased Skill Effect Duration","better":1,"matchers":[{"string":"지진 덫의 스킬 효과 지속시간 #% 증가"},{"string":"지진 덫의 스킬 효과 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1615912303"]}}} +{"ref":"Seismic Trap releases an additional Wave","better":1,"matchers":[{"string":"지진 덫이 추가 파도 #회 방출"},{"string":"지진 덫이 추가 파도 1회 방출","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1389191919"]}}} +{"ref":"Sentinels of Purity deal #% increased Damage","better":1,"matchers":[{"string":"정화의 파수꾼이 주는 피해 #% 증가"},{"string":"정화의 파수꾼이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_650630047"]}}} +{"ref":"Share Endurance Charges with nearby party members","better":1,"matchers":[{"string":"주변의 파티원과 인내 충전 공유"}],"trade":{"ids":{"explicit":["explicit.stat_1881314095"]}}} +{"ref":"Shared Suffering","better":1,"matchers":[{"string":"공유된 고통"}],"trade":{"ids":{"explicit":["explicit.stat_956038713"]}}} +{"ref":"Shattering Steel deals #% increased Damage","better":1,"matchers":[{"string":"강철 파편으로 주는 피해 #% 증가"},{"string":"강철 파편으로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2313072099"]}}} +{"ref":"Shattering Steel has #% chance to not consume Steel Shards","better":1,"matchers":[{"string":"강철 파편이 #%의 확률로 강철 조각을 소모하지 않음"}],"trade":{"ids":{"enchant":["enchant.stat_4072657110"]}}} +{"ref":"Shepherd of Souls","better":1,"matchers":[{"string":"영혼의 목자"}],"trade":{"ids":{"explicit":["explicit.stat_2038577923"]}}} +{"ref":"Shield Crush central wave has #% more Area of Effect","better":1,"matchers":[{"string":"방패 타쇄의 중앙 파장의 효과 범위 #% 증폭"},{"string":"방패 타쇄의 중앙 파장의 효과 범위 #% 감폭","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_734712401"]}}} +{"ref":"Shock Enemies as though dealing #% more Damage","better":1,"matchers":[{"string":"#% 증폭된 피해를 준 것처럼 적에게 감전 유발"}],"trade":{"ids":{"explicit":["explicit.stat_2206792089","explicit.stat_451866048"]}}} +{"ref":"Shock nearby Enemies for # Seconds when you Focus","better":1,"matchers":[{"string":"집중 시 #초 동안 주변의 적 감전"}],"trade":{"ids":{"explicit":["explicit.stat_3031766858"],"fractured":["fractured.stat_3031766858"],"crafted":["crafted.stat_3031766858"]}}} +{"ref":"Shock Nova ring deals #% increased Damage","better":1,"matchers":[{"string":"충격 폭발 고리가 주는 피해 #% 증가"},{"string":"충격 폭발 고리가 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3652051346"]}}} +{"ref":"Shock Reflection","better":1,"matchers":[{"string":"감전 반사"}],"trade":{"ids":{"explicit":["explicit.stat_3291999509"],"fractured":["fractured.stat_3291999509"]}}} +{"ref":"Shocked Enemies you Kill Explode, dealing #% of\ntheir Life as Lightning Damage which cannot Shock","better":1,"matchers":[{"string":"자신이 처치한 감전 상태의 적이 폭발하여\n생명력의 #%를 감전되지 않는 번개 피해로 줌"}],"trade":{"ids":{"explicit":["explicit.stat_2706994884"]}}} +{"ref":"Shocks from your Hits always increase Damage taken by at least #%","better":1,"matchers":[{"string":"피격되어 감전된 적이 받는 피해가 항상 최소 #%만큼 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1712740586"]}}} +{"ref":"Shocks nearby Enemies during Effect, causing 10% increased Damage taken","better":1,"matchers":[{"string":"효과를 받는 동안 주변의 적을 감전시켜 받는 피해 10% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3446170049"]}}} +{"ref":"Shocks you cause are reflected back to you","better":1,"matchers":[{"string":"자신이 유발한 감전이 자신에게 반사됨"}],"trade":{"ids":{"explicit":["explicit.stat_807955413"]}}} +{"ref":"Shocks you inflict during Effect spread to other Enemies within # metre","better":1,"matchers":[{"string":"효과를 받는 동안 플레이어가 유발한 감전이 #미터 내의 다른 적에게 확산"}],"trade":{"ids":{"explicit":["explicit.stat_911839512"]}}} +{"ref":"Shocks you inflict spread to other Enemies within # metre","better":1,"matchers":[{"string":"플레이어가 유발한 감전이 #미터 내의 다른 적에게 확산"}],"trade":{"ids":{"explicit":["explicit.stat_424549222"],"implicit":["implicit.stat_424549222"]}}} +{"ref":"Shocks you inflict spread to other Enemies within 1.5 metres","better":1,"matchers":[{"string":"플레이어가 유발한 감전이 1.5미터 내의 다른 적에게 확산"}],"trade":{"ids":{"explicit":["explicit.stat_1640259660"]}}} +{"ref":"Shocks you when you reach Maximum Power Charges","better":1,"matchers":[{"string":"최대 권능 충전에 도달 시 감전 상태가 됨"}],"trade":{"ids":{"explicit":["explicit.stat_4256314560"]}}} +{"ref":"Shrapnel Ballista fires an additional Arrow","better":1,"matchers":[{"string":"파편 쇠뇌가 화살 #개 추가 발사"},{"string":"파편 쇠뇌가 화살 1개 추가 발사","value":1}],"trade":{"ids":{"enchant":["enchant.stat_959534996"]}}} +{"ref":"Shrapnel Ballista has #% increased Projectile Speed","better":1,"matchers":[{"string":"파편 쇠뇌의 투사체 속도 #% 증가"},{"string":"파편 쇠뇌의 투사체 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1213017413"]}}} +{"ref":"Shrapnel Ballista has +# to maximum number of Summoned Totems per 200 Strength","better":1,"matchers":[{"string":"힘 200당 파편 쇠뇌의 소환 가능한 토템 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_1124661381"]}}} +{"ref":"Shrapnel Ballista Pierces an additional Target","better":1,"matchers":[{"string":"파편 쇠뇌가 대상 #개 추가 관통"},{"string":"파편 쇠뇌가 대상 1개 추가 관통","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1494168614"]}}} +{"ref":"Siege Ballista deals #% increased Damage","better":1,"matchers":[{"string":"공성 쇠뇌로 주는 피해 #% 증가"},{"string":"공성 쇠뇌로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_840189382"]}}} +{"ref":"Siege Ballista has #% increased Attack Speed","better":1,"matchers":[{"string":"공성 쇠뇌 공격 속도 #% 증가"},{"string":"공성 쇠뇌 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_444858149"]}}} +{"ref":"Siege Ballista has #% increased Totem Placement Speed","better":1,"matchers":[{"string":"공성 쇠뇌의 토템 설치 속도 #% 증가"},{"string":"공성 쇠뇌의 토템 설치 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2896357741"]}}} +{"ref":"Siege Ballista has +# to maximum number of Summoned Totems per 200 Dexterity","better":1,"matchers":[{"string":"민첩 200당 공성 쇠뇌의 소환 가능한 토템 최대치 #"}],"trade":{"ids":{"explicit":["explicit.stat_2125178364"]}}} +{"ref":"Sigil of Power requires #% increased Mana Spent to gain a Stage","better":1,"matchers":[{"string":"힘의 부적 단계 하나 획득에 소모되는 마나 #% 증가"},{"string":"힘의 부적 단계 하나 획득에 소모되는 마나 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1582465837"]}}} +{"ref":"Sigil of Power's Buff also grants #% increased Critical Strike Chance per Stage","better":1,"matchers":[{"string":"힘의 부적 버프 시 단계 하나당 치명타 확률 또한 #% 증가"},{"string":"힘의 부적 버프 시 단계 하나당 치명타 확률 또한 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_479197076"]}}} +{"ref":"Siphoning Trap deals #% increased Damage","better":1,"matchers":[{"string":"착취 덫이 주는 피해 #% 증가"},{"string":"착취 덫이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3686368306"]}}} +{"ref":"Siphoning Trap has #% increased Chill Effect","better":1,"matchers":[{"string":"착취 덫의 냉각 효과 #% 증가"},{"string":"착취 덫의 냉각 효과 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2530563277"]}}} +{"ref":"Siphoning Trap has #% increased Skill Effect Duration","better":1,"matchers":[{"string":"착취 덫의 스킬 효과 지속시간 #% 증가"},{"string":"착취 덫의 스킬 효과 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4166695945"]}}} +{"ref":"Siphoning Trap's beam to you grants #% reduced Damage taken for each other beam","better":-1,"matchers":[{"string":"착취 덫의 광선으로 다른 광선에 받는 피해 #% 증가"},{"string":"착취 덫의 광선으로 다른 광선에 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2673745094"]},"inverted":true}} +{"ref":"Skeletons deal #% increased Damage","better":1,"matchers":[{"string":"해골이 주는 피해 #% 증가"},{"string":"해골이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3059357595"],"enchant":["enchant.stat_3059357595"]}}} +{"ref":"Skeletons gain Added Chaos Damage equal to #% of Maximum Energy Shield on your Equipped Shield","better":1,"matchers":[{"string":"해골이 플레이어가 장착 중인 방패의 에너지 보호막 최대치의 #%와 동일한 추가 카오스 피해 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1475598909"]}}} +{"ref":"Skills Chain +# times","better":1,"matchers":[{"string":"스킬 연쇄 #회"}],"trade":{"ids":{"explicit":["explicit.stat_1787073323"],"implicit":["implicit.stat_1787073323"],"scourge":["scourge.stat_1787073323"]}}} +{"ref":"Skills Chain an additional time while at maximum Frenzy Charges","better":1,"matchers":[{"string":"최대 격분 충전 상태에서 스킬 #회 연쇄 추가 연쇄"},{"string":"최대 격분 충전 상태에서 스킬 1회 추가 연쇄","value":1}],"trade":{"ids":{"explicit":["explicit.stat_285624304"]}}} +{"ref":"Skills Cost no Mana during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 스킬 사용 시 마나를 소모하지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_1669220541"]}}} +{"ref":"Skills deal #% more Damage for each Warcry Exerting them","better":1,"matchers":[{"string":"스킬에 전력을 다하게 하는 함성 하나당 피해 #% 증폭"},{"string":"스킬에 전력을 다하게 하는 함성 하나당 피해 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2023285759"]}}} +{"ref":"Skills Fire # additional Projectile for 4 seconds after\nyou consume a total of 12 Steel Shards","better":1,"matchers":[{"string":"총 12개의 강철 조각을 소모한 후 4초 동안\n스킬이 투사체 #개 추가 발사"},{"string":"총 12개의 강철 조각을 소모한 후 4초 동안#스킬이 투사체 \n개 추가 발사"}],"trade":{"ids":{"explicit":["explicit.stat_2511521167"]}}} +{"ref":"Skills fire an additional Projectile","better":1,"matchers":[{"string":"스킬이 투사체 #개 추가 발사"},{"string":"스킬이 투사체 1개 추가 발사","value":1}],"trade":{"ids":{"explicit":["explicit.stat_74338099"],"implicit":["implicit.stat_74338099"],"fractured":["fractured.stat_74338099"]}}} +{"ref":"Skills fire an additional Projectile during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 스킬이 투사체 #개 추가 발사"},{"string":"효과를 받는 동안 스킬이 투사체 1개 추가 발사","value":1}],"trade":{"ids":{"explicit":["explicit.stat_323705912"]}}} +{"ref":"Skills fire an additional Projectile if you've been Hit Recently","better":1,"matchers":[{"string":"최근 4초 이내 피격된 경우 스킬이 투사체 #개 추가 발사"},{"string":"최근 4초 이내 피격된 경우 스킬이 투사체 1개 추가 발사","value":1}],"trade":{"ids":{"explicit":["explicit.stat_988207959"]}}} +{"ref":"Skills fire an additional Projectile if you've used a Movement Skill Recently","better":1,"matchers":[{"string":"최근 4초 이내 이동 스킬을 사용한 경우 투사체 #개 추가 발사"},{"string":"최근 4초 이내 이동 스킬을 사용한 경우 투사체 1개 추가 발사","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2809802678"]}}} +{"ref":"Skills gain a Base Energy Shield Cost equal to #% of Base Mana Cost","better":1,"matchers":[{"string":"스킬이 기본 마나 소모의 #%와 동일한 기본 에너지 보호막 소모를 얻음"}],"trade":{"ids":{"explicit":["explicit.stat_4013794060"]}}} +{"ref":"Skills gain a Base Life Cost equal to #% of Base Mana Cost","better":1,"matchers":[{"string":"스킬이 기본 마나 소모의 #%와 동일한 기본 생명력 소모를 얻음"}],"trade":{"ids":{"explicit":["explicit.stat_3605834869"]}}} +{"ref":"Skills Supported by Spellslinger have #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"주문투척 보조 효과가 적용되는 스킬의 재사용 대기시간 회복 속도 #% 증가"},{"string":"주문투척 보조 효과가 적용되는 스킬의 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_465162370"]}}} +{"ref":"Skills Supported by Unleash have #% increased Seal gain frequency","better":1,"matchers":[{"string":"촉발 보조 효과가 적용되는 스킬의 봉인 획득 빈도 #% 증가"},{"string":"촉발 보조 효과가 적용되는 스킬의 봉인 획득 빈도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1504513372"]}}} +{"ref":"Skills supported by Unleash have +# to maximum number of Seals","better":1,"matchers":[{"string":"촉발 보조 젬 효과가 적용되는 스킬이 가지는 최대 봉인 수 #"}],"trade":{"ids":{"explicit":["explicit.stat_1264919148"],"fractured":["fractured.stat_1264919148"]}}} +{"ref":"Skills that would Summon a Totem have #% chance to Summon two Totems instead","better":1,"matchers":[{"string":"토템 1개를 소환하는 스킬이 #%의 확률로 2개를 소환"}],"trade":{"ids":{"explicit":["explicit.stat_1870732546"]}}} +{"ref":"Skills used by Mines have #% increased Area of Effect","better":1,"matchers":[{"string":"지뢰로 인해 사용된 스킬의 효과 범위 #% 증가"},{"string":"지뢰로 인해 사용된 스킬의 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2228913626"],"fractured":["fractured.stat_2228913626"]}}} +{"ref":"Skills used by Traps have #% increased Area of Effect","better":1,"matchers":[{"string":"덫에 의해 사용된 스킬 효과 범위 #% 증가"},{"string":"덫에 의해 사용된 스킬 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4050593908"],"fractured":["fractured.stat_4050593908"]}}} +{"ref":"Skills which Exert an Attack have #% chance to not count that Attack","better":1,"matchers":[{"string":"공격을 전력 공격으로 만드는 스킬이 #%의 확률로 해당 공격이 전력 공격 횟수를 소비하지 않게 함"}],"trade":{"ids":{"explicit":["explicit.stat_2538411280"]}}} +{"ref":"Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Dexterity","better":1,"matchers":[{"string":"민첩이 800이상인 경우, 지뢰 투척 스킬로 지뢰 최대 #개 추가 투척"},{"string":"민첩이 800이상인 경우, 지뢰 투척 스킬로 지뢰 최대 1개 추가 투척","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1917661185"]}}} +{"ref":"Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Intelligence","better":1,"matchers":[{"string":"지능이 800이상인 경우, 지뢰 투척 스킬로 지뢰 최대 #개 추가 투척"},{"string":"지능이 800이상인 경우, 지뢰 투척 스킬로 지뢰 최대 1개 추가 투척","value":1}],"trade":{"ids":{"explicit":["explicit.stat_5955083"]}}} +{"ref":"Skills which throw Traps Cost Life instead of Mana","better":1,"matchers":[{"string":"덫 투척 스킬이 마나 대신 생명력 소모"}],"trade":{"ids":{"explicit":["explicit.stat_2420786978"]}}} +{"ref":"Skills which Throw Traps throw up to 1 additional Trap","better":1,"matchers":[{"string":"덫 투척 스킬로 덫 최대 #개 추가 투척"},{"string":"덫 투척 스킬로 덫 최대 1개 추가 투척","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1220800126"]}}} +{"ref":"Slaying Enemies close together can attract monsters from Beyond this realm","better":1,"fromAreaMods":true,"matchers":[{"string":"서로 가까이 있는 적을 처치하면 이계 몬스터를 불러옴"}],"trade":{"ids":{"explicit":["explicit.stat_1837040413"],"implicit":["implicit.stat_1837040413"],"fractured":["fractured.stat_1837040413"],"enchant":["enchant.stat_1837040413"]}}} +{"ref":"Slaying Enemies has a #% increased chance to spawn a Beyond Portal","better":1,"fromAreaMods":true,"matchers":[{"string":"몬스터 처치 시 이계 포탈이 생성될 확률 #% 증가"},{"string":"몬스터 처치 시 이계 포탈이 생성될 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3036422124"]}}} +{"ref":"Smite deals #% increased Damage","better":1,"matchers":[{"string":"징벌로 주는 피해 #% 증가"},{"string":"징벌로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3901016205"]}}} +{"ref":"Smite has #% increased Aura Effect","better":1,"matchers":[{"string":"징벌의 오라 효과 #% 증가"}],"trade":{"ids":{"enchant":["enchant.stat_2294732229"]}}} +{"ref":"Smite has a #% chance for lightning to strike another target","better":1,"matchers":[{"string":"징벌의 번개가 #%의 확률로 다른 대상을 타격"}],"trade":{"ids":{"enchant":["enchant.stat_3946561324"]}}} +{"ref":"Smoke Mine grants additional #% increased Movement Speed","better":1,"matchers":[{"string":"연막 지뢰로 얻는 이동 속도 #% 증가"},{"string":"연막 지뢰로 얻는 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3564777492"]}}} +{"ref":"Smuggler's Caches have #% chance to Duplicate contained Rogue's Markers","better":1,"matchers":[{"string":"#%의 확률로 밀수범의 은닉함에 들어 있는 도둑의 증표 복제"},{"string":"밀수범의 은닉함에 들어 있는 도둑의 증표 복제","value":100}],"trade":{"ids":{"explicit":["explicit.stat_833254006"]}}} +{"ref":"Sniper's Mark has #% increased Curse Effect","better":1,"matchers":[{"string":"저격수의 징표 저주 효과 #% 증가"},{"string":"저격수의 징표 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2789561878"]}}} +{"ref":"Socketed Attacks have +# to Total Mana Cost","better":-1,"matchers":[{"string":"장착된 공격의 총 마나 소모 #"}],"trade":{"ids":{"explicit":["explicit.stat_2264586521"],"fractured":["fractured.stat_2264586521"]}}} +{"ref":"Socketed Attacks have +#% to Critical Strike Chance","dp":true,"better":1,"matchers":[{"string":"장착된 공격의 치명타 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2867348718"],"fractured":["fractured.stat_2867348718"]}}} +{"ref":"Socketed Attacks have +#% to Critical Strike Multiplier","better":1,"matchers":[{"string":"장착된 공격의 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_356456977"],"fractured":["fractured.stat_356456977"]}}} +{"ref":"Socketed Curse Gems have #% increased Reservation Efficiency","better":-1,"matchers":[{"string":"장착된 저주 젬의 점유 효율 #% 감소"},{"string":"장착된 저주 젬의 점유 효율 #% 증가","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1471600638"]},"inverted":true}} +{"ref":"Socketed Gems are Supported by Level # Added Chaos Damage","better":1,"matchers":[{"string":"장착된 젬에 #레벨 카오스 피해 추가 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_128","explicit.stat_411460446"],"scourge":["scourge.stat_411460446"]}}} +{"ref":"Socketed Gems are Supported by Level # Added Cold Damage","better":1,"matchers":[{"string":"장착된 젬에 #레벨 냉기 피해 추가 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_127","explicit.stat_4020144606"],"scourge":["scourge.stat_4020144606"]}}} +{"ref":"Socketed Gems are Supported by Level # Added Fire Damage","better":1,"matchers":[{"string":"장착된 젬에 #레벨 화염 피해 추가 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_126","explicit.stat_2572192375"],"implicit":["implicit.stat_2572192375"],"fractured":["fractured.stat_2572192375"]}}} +{"ref":"Socketed Gems are Supported by Level # Added Lightning Damage","better":1,"matchers":[{"string":"장착된 젬에 #레벨 번개 피해 추가 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_125","explicit.stat_1647529598"],"scourge":["scourge.stat_1647529598"]}}} +{"ref":"Socketed Gems are supported by Level # Additional Accuracy","better":1,"matchers":[{"string":"장착된 젬에 #레벨 정확도 추가 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_1567462963"],"implicit":["implicit.stat_1567462963"],"fractured":["fractured.stat_1567462963"]}}} +{"ref":"Socketed Gems are Supported by Level # Advanced Traps","better":1,"matchers":[{"string":"장착된 젬에 #레벨 향상된 덫 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_6","explicit.stat_3839163699"],"fractured":["fractured.stat_3839163699"]}}} +{"ref":"Socketed Gems are Supported by Level # Ancestral Call","better":1,"matchers":[{"string":"장착된 젬에 #레벨 선대의 부름 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_14","explicit.stat_696805682"],"fractured":["fractured.stat_696805682"]}}} +{"ref":"Socketed Gems are Supported by Level # Arcane Surge","better":1,"matchers":[{"string":"장착된 젬에 #레벨 비전 쇄도 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_123","explicit.stat_2287264161"],"fractured":["fractured.stat_2287264161"]}}} +{"ref":"Socketed Gems are Supported by Level # Archmage","better":1,"matchers":[{"string":"장착된 젬에 #레벨 대마법사 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_122","explicit.stat_3652278215"]}}} +{"ref":"Socketed Gems are Supported by Level # Arrogance","better":1,"matchers":[{"string":"장착된 젬에 #레벨 오만 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_116","explicit.stat_3922006600"],"implicit":["implicit.stat_3922006600"],"crafted":["crafted.stat_3922006600"]}}} +{"ref":"Socketed Gems are Supported by Level # Arrow Nova","better":1,"matchers":[{"string":"장착된 젬에 #레벨 화살 산개 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_121","explicit.stat_1331336999"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Added Chaos Damage","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 카오스 피해 추가 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2722592119"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Added Cold Damage","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 냉기 피해 추가 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2509486489"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Added Fire Damage","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 화염 피해 추가 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_339131601"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Added Lightning Damage","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 번개 피해 추가 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_3429304534"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Ancestral Call","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 선대의 부름 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_4055526353"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Blasphemy","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 신성 모독 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_1046449631"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Brutality","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 포악함 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_3610200044"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Burning Damage","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 화상 피해 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_493707013"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Chain","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 연쇄 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2249251344"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Cold Penetration","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 냉기 관통 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_1889095429"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Controlled Destruction","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 제어된 파괴 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_271119551"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Deadly Ailments","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 치명적인 상태 이상 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_1621366871"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Elemental Damage With Attacks","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 공격 시 원소 피해 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_1786672841"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Elemental Focus","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 원소 집중 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2111661233"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Empower","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 강화 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_3739157305"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Enhance","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 향상 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2133566731"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Fire Penetration","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 화염 관통 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_170274897"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Fork","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 갈래 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_1803865171"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Generosity","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 관대함 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_1007586373"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Greater Multiple Projectiles","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 상위 다중 투사체 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_1980028507"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Increased Area Of Effect","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 효과 범위 증가 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2333301609"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Lightning Penetration","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 번개 관통 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_1544223714"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Melee Physical Damage","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 근접 물리 피해 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2173069393"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Melee Splash","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 근접 범위 피해 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2253550081"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Minion Damage","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 소환수 피해 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2100048639"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Multistrike","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 연속타격 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_511417258"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Spell Cascade","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 연속 주문 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2222752567"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Spell Echo","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 주문 메아리 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_48859060"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Swift Affliction","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 고통 격화 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_4089933397"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Unbound Ailments","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 벌어지는 상처 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2116002108"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Unleash","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 촉발 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_3428829446"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Vicious Projectiles","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 포악한 투사체 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2647355055"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Void Manipulation","better":1,"matchers":[{"string":"장착된 젬에 #레벨 각성한 공허 조작 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_1882929618"]}}} +{"ref":"Socketed Gems are Supported by Level # Ballista Totem","better":1,"matchers":[{"string":"장착된 젬에 #레벨 쇠뇌 토템 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_27","explicit.stat_3030692053"],"fractured":["fractured.stat_3030692053"]}}} +{"ref":"Socketed Gems are Supported by Level # Barrage","better":1,"matchers":[{"string":"장착된 젬에 #레벨 연발 사격 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_120","explicit.stat_3827538724"]}}} +{"ref":"Socketed Gems are Supported by Level # Behead","better":1,"matchers":[{"string":"장착된 젬에 #레벨 참수 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_140","explicit.stat_1019145105"]}}} +{"ref":"Socketed Gems are Supported by Level # Blasphemy","better":1,"matchers":[{"string":"장착된 젬에 #레벨 신성 모독 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_119","explicit.stat_539747809"]}}} +{"ref":"Socketed Gems are Supported by Level # Blastchain Mine","better":1,"matchers":[{"string":"장착된 젬에 #레벨 연쇄 폭발 지뢰 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_23","explicit.stat_1710508327"],"fractured":["fractured.stat_1710508327"]}}} +{"ref":"Socketed Gems are supported by Level # Blind","better":1,"matchers":[{"string":"장착된 젬에 #레벨 실명 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2223640518"],"implicit":["implicit.stat_2223640518"],"fractured":["fractured.stat_2223640518"]}}} +{"ref":"Socketed Gems are Supported by Level # Block Chance Reduction","better":1,"matchers":[{"string":"장착된 젬에 #레벨 막기 확률 감소 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_1966051190"]}}} +{"ref":"Socketed Gems are Supported by Level # Bloodlust","better":1,"matchers":[{"string":"장착된 젬에 #레벨 유혈 충동 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_117","explicit.stat_804508379"]}}} +{"ref":"Socketed Gems are Supported by Level # Bloodthirst","better":1,"matchers":[{"string":"장착된 젬에 #레벨 피의 갈증 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_135"]}}} +{"ref":"Socketed Gems are Supported by Level # Bonechill","better":1,"matchers":[{"string":"장착된 젬에 #레벨 사무치는 한기 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_115","explicit.stat_1859244771"]}}} +{"ref":"Socketed Gems are Supported by Level # Brutality","better":1,"matchers":[{"string":"장착된 젬에 #레벨 포악함 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_114","explicit.stat_715256302"],"fractured":["fractured.stat_715256302"]}}} +{"ref":"Socketed Gems are Supported by Level # Burning Damage","better":1,"matchers":[{"string":"장착된 젬에 #레벨 화상 피해 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_68","explicit.stat_2680613507"],"fractured":["fractured.stat_2680613507"]}}} +{"ref":"Socketed Gems are supported by Level # Cast On Critical Strike","better":1,"matchers":[{"string":"장착된 젬에 #레벨 치명타 시 시전 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2325632050"],"implicit":["implicit.stat_2325632050"],"fractured":["fractured.stat_2325632050"]}}} +{"ref":"Socketed Gems are supported by Level # Cast on Death","better":1,"matchers":[{"string":"장착된 젬에 #레벨 사망 시 시전 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_3878987051"]}}} +{"ref":"Socketed Gems are Supported by Level # Cast On Melee Kill","better":1,"matchers":[{"string":"장착된 젬에 #레벨 근접 처치 시 시전 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_3312593243"],"fractured":["fractured.stat_3312593243"]}}} +{"ref":"Socketed Gems are Supported by Level # Cast when Damage Taken","better":1,"matchers":[{"string":"장착된 젬에 #레벨 피격 시 시전 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_112","explicit.stat_3036440332"],"fractured":["fractured.stat_3036440332"]}}} +{"ref":"Socketed Gems are supported by Level # Cast when Stunned","better":1,"matchers":[{"string":"장착된 젬에 #레벨 기절 시 시전 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_1079148723"],"implicit":["implicit.stat_1079148723"]}}} +{"ref":"Socketed Gems are Supported by Level # Cast While Channelling","better":1,"matchers":[{"string":"장착된 젬에 #레벨 집중 유지 중 시전 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_1316646496"],"fractured":["fractured.stat_1316646496"]}}} +{"ref":"Socketed Gems are Supported by Level # Chain","better":1,"matchers":[{"string":"장착된 젬에 #레벨 연쇄 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_107","explicit.stat_2643665787"]}}} +{"ref":"Socketed Gems are Supported by Level # Chance To Bleed","better":1,"matchers":[{"string":"장착된 젬에 #레벨 출혈 확률 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2178803872","explicit.stat_4197676934"],"fractured":["fractured.stat_4197676934"]}}} +{"ref":"Socketed Gems are supported by Level # Chance to Flee","better":1,"matchers":[{"string":"장착된 젬에 #레벨 도망칠 확률 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_952060721"]}}} +{"ref":"Socketed Gems are Supported by Level # Chance to Poison","better":1,"matchers":[{"string":"장착된 젬에 #레벨 중독 확률 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_54","explicit.stat_228165595"],"fractured":["fractured.stat_228165595"]}}} +{"ref":"Socketed Gems are Supported by Level # Charged Mines","better":1,"matchers":[{"string":"장착된 젬에 #레벨 충전된 지뢰 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_103","explicit.stat_1365328494"]}}} +{"ref":"Socketed Gems are Supported by Level # Charged Traps","better":1,"matchers":[{"string":"장착된 젬에 #레벨 충전된 덫 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_78","explicit.stat_479453859"]}}} +{"ref":"Socketed Gems are Supported by Level # Close Combat","better":1,"matchers":[{"string":"장착된 젬에 #레벨 근접 전투 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_102","explicit.stat_694651314"]}}} +{"ref":"Socketed Gems are Supported by Level # Cluster Trap","better":1,"matchers":[{"string":"장착된 젬에 #레벨 무리 덫 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2854183975"]}}} +{"ref":"Socketed Gems are Supported by Level # Cold Penetration","better":1,"matchers":[{"string":"장착된 젬에 #레벨 냉기 관통 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_100","explicit.stat_1991958615"],"fractured":["fractured.stat_1991958615"]}}} +{"ref":"Socketed Gems are Supported by Level # Cold to Fire","better":1,"matchers":[{"string":"장착된 젬에 #레벨 냉기 화염 전환 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_99","explicit.stat_550444281"]}}} +{"ref":"Socketed Gems are Supported by Level # Combustion","better":1,"matchers":[{"string":"장착된 젬에 #레벨 연소 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_105","explicit.stat_1828254451"]}}} +{"ref":"Socketed Gems are Supported by Level # Concentrated Effect","better":1,"matchers":[{"string":"장착된 젬에 #레벨 효과 집중 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_98","explicit.stat_2388360415"],"fractured":["fractured.stat_2388360415"]}}} +{"ref":"Socketed Gems are Supported by Level # Controlled Blaze","better":1,"matchers":[{"string":"장착된 젬에 #레벨 제어된 불길 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_162"]}}} +{"ref":"Socketed Gems are Supported by Level # Controlled Destruction","better":1,"matchers":[{"string":"장착된 젬에 #레벨 제어된 파괴 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_97","explicit.stat_3718597497"],"fractured":["fractured.stat_3718597497"]}}} +{"ref":"Socketed Gems are Supported by Level # Corrupting Cry","better":1,"matchers":[{"string":"장착된 젬에 #레벨 타락시키는 비명 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_155"]}}} +{"ref":"Socketed Gems are Supported by Level # Critical Strike Affliction","better":1,"matchers":[{"string":"장착된 젬에 #레벨 치명타 고통 격화 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_31","explicit.stat_2228279620"],"fractured":["fractured.stat_2228279620"]}}} +{"ref":"Socketed Gems are Supported by Level # Cruelty","better":1,"matchers":[{"string":"장착된 젬에 #레벨 잔혹 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_136","explicit.stat_1679136"]}}} +{"ref":"Socketed Gems are Supported by Level # Culling Strike","better":1,"matchers":[{"string":"장착된 젬에 #레벨 마무리 타격 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_96","explicit.stat_1135493957"]}}} +{"ref":"Socketed Gems are Supported by Level # Cursed Ground","better":1,"matchers":[{"string":"장착된 젬에 #레벨 저주받은 지대 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_145","explicit.stat_3998071134"]}}} +{"ref":"Socketed Gems are Supported by Level # Damage On Full Life","better":1,"matchers":[{"string":"장착된 젬에 #레벨 최대 생명력 시 피해 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2126431157"]}}} +{"ref":"Socketed Gems are Supported by Level # Deadly Ailments","better":1,"matchers":[{"string":"장착된 젬에 #레벨 치명적인 상태 이상 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_94","explicit.stat_103909236"]}}} +{"ref":"Socketed Gems are Supported by Level # Decay","better":1,"matchers":[{"string":"장착된 젬에 #레벨 부패 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_92","explicit.stat_388696990"]}}} +{"ref":"Socketed Gems are Supported by Level # Devour","better":1,"matchers":[{"string":"장착된 젬에 #레벨 포식 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_152","explicit.stat_2820883532"]}}} +{"ref":"Socketed Gems are Supported by Level # Divine Blessing","better":1,"matchers":[{"string":"장착된 젬에 #레벨 신성한 축복 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_3274973940"]}}} +{"ref":"Socketed Gems are Supported by Level # Efficacy","better":1,"matchers":[{"string":"장착된 젬에 #레벨 효력 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_91","explicit.stat_3924539382"],"fractured":["fractured.stat_3924539382"]}}} +{"ref":"Socketed Gems are Supported by Level # Elemental Army Support","better":1,"matchers":[{"string":"장착된 젬에 #레벨 원소의 군단 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_514705332"]}}} +{"ref":"Socketed Gems are supported by Level # Elemental Damage with Attacks","better":1,"matchers":[{"string":"장착된 젬에 #레벨 공격 시 원소 피해 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2532625478"],"implicit":["implicit.stat_2532625478"],"fractured":["fractured.stat_2532625478"]}}} +{"ref":"Socketed Gems are Supported by Level # Elemental Focus","better":1,"matchers":[{"string":"장착된 젬에 #레벨 원소 집중 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_90","explicit.stat_1169422227"],"fractured":["fractured.stat_1169422227"]}}} +{"ref":"Socketed Gems are Supported by Level # Elemental Penetration","better":1,"matchers":[{"string":"장착된 젬에 #레벨 원소 관통 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_1994143317"]}}} +{"ref":"Socketed Gems are Supported by Level # Elemental Proliferation","better":1,"matchers":[{"string":"장착된 젬에 #레벨 원소 확산 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_89","explicit.stat_2929101122"],"implicit":["implicit.stat_2929101122"],"fractured":["fractured.stat_2929101122"]}}} +{"ref":"Socketed Gems are Supported by Level # Empower","better":1,"matchers":[{"string":"장착된 젬에 #레벨 강화 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_3581578643"],"fractured":["fractured.stat_3581578643"]}}} +{"ref":"Socketed Gems are Supported by Level # Endurance Charge on Melee Stun","better":1,"matchers":[{"string":"장착된 젬에 #레벨 기절 시 인내 충전 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_88","explicit.stat_3375208082"],"fractured":["fractured.stat_3375208082"]}}} +{"ref":"Socketed Gems are Supported by Level # Energy Leech","better":1,"matchers":[{"string":"장착된 젬에 #레벨 에너지 흡수 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_87","explicit.stat_799443127"]}}} +{"ref":"Socketed Gems are Supported by Level # Enhance","better":1,"matchers":[{"string":"장착된 젬에 #레벨 향상 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2556436882"],"fractured":["fractured.stat_2556436882"]}}} +{"ref":"Socketed Gems are Supported by Level # Enlighten","better":1,"matchers":[{"string":"장착된 젬에 #레벨 계몽 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2065361612"],"fractured":["fractured.stat_2065361612"]}}} +{"ref":"Socketed Gems are Supported by Level # Eternal Blessing","better":1,"matchers":[{"string":"장착된 젬에 #레벨 영원한 축복 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_143","explicit.stat_3062849155"]}}} +{"ref":"Socketed Gems are Supported by Level # Expert Retaliation","better":1,"matchers":[{"string":"장착된 젬에 #레벨 노련한 보복 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_164","explicit.stat_3570337997"]}}} +{"ref":"Socketed Gems are Supported by Level # Faster Attacks","better":1,"matchers":[{"string":"장착된 젬에 #레벨 공격 속도 증가 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_86","explicit.stat_928701213"],"fractured":["fractured.stat_928701213"]}}} +{"ref":"Socketed Gems are Supported by Level # Faster Casting","better":1,"matchers":[{"string":"장착된 젬에 #레벨 시전 속도 증가 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_85","explicit.stat_2169938251"],"implicit":["implicit.stat_2169938251"],"fractured":["fractured.stat_2169938251"]}}} +{"ref":"Socketed Gems are supported by Level # Faster Projectiles","better":1,"matchers":[{"string":"장착된 젬에 #레벨 투사체 속도 증가 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_99089516"],"implicit":["implicit.stat_99089516"],"fractured":["fractured.stat_99089516"]}}} +{"ref":"Socketed Gems are Supported by Level # Feeding Frenzy","better":1,"matchers":[{"string":"장착된 젬에 #레벨 격분 주입 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_83","explicit.stat_2269282877"]}}} +{"ref":"Socketed Gems are Supported by Level # Fire Penetration","better":1,"matchers":[{"string":"장착된 젬에 #레벨 화염 관통 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_82","explicit.stat_1979658770","explicit.stat_3265951306"],"fractured":["fractured.stat_1979658770"]}}} +{"ref":"Socketed Gems are Supported by Level # Fist of War","better":1,"matchers":[{"string":"장착된 젬에 #레벨 전쟁의 주먹 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_129"]}}} +{"ref":"Socketed Gems are Supported by Level # Flamewood","better":1,"matchers":[{"string":"장착된 젬에 #레벨 화염나무 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_154","explicit.stat_285773939"]}}} +{"ref":"Socketed Gems are Supported by Level # Focused Ballista","better":1,"matchers":[{"string":"장착된 젬에 #레벨 집중 쇠뇌 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_138","explicit.stat_921536976"]}}} +{"ref":"Socketed Gems are supported by Level # Fork","better":1,"matchers":[{"string":"장착된 젬에 #레벨 갈래 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2062753054"],"implicit":["implicit.stat_2062753054"]}}} +{"ref":"Socketed Gems are Supported by Level # Fortify","better":1,"matchers":[{"string":"장착된 젬에 #레벨 방어 상승 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_79","explicit.stat_107118693"],"implicit":["implicit.stat_107118693"],"fractured":["fractured.stat_107118693"]}}} +{"ref":"Socketed Gems are Supported by Level # Fresh Meat","better":1,"matchers":[{"string":"장착된 젬에 #레벨 신선한 고기 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_153","explicit.stat_3713917371"]}}} +{"ref":"Socketed Gems are Supported by Level # Frigid Bond","better":1,"matchers":[{"string":"장착된 젬에 #레벨 차디찬 유대 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_159"]}}} +{"ref":"Socketed Gems are Supported by Level # Generosity","better":1,"matchers":[{"string":"장착된 젬에 #레벨 관대함 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_77","explicit.stat_2593773031"]}}} +{"ref":"Socketed Gems are Supported by Level # Greater Multiple Projectiles","better":1,"matchers":[{"string":"장착된 젬에 #레벨 상위 다중 투사체 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_1","explicit.stat_359450079"]}}} +{"ref":"Socketed Gems are Supported by Level # Greater Spell Echo","better":1,"matchers":[{"string":"장착된 젬에 #레벨 상위 주문 메아리 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_3388448323"]}}} +{"ref":"Socketed Gems are Supported by Level # Greater Volley","better":1,"matchers":[{"string":"장착된 젬에 #레벨 상위 사격 공세 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_75","explicit.stat_2223565123"]}}} +{"ref":"Socketed Gems are Supported by Level # Guardian's Blessing","better":1,"matchers":[{"string":"장착된 젬에 #레벨 수호자의 축복 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_157","explicit.stat_3434296257"]}}} +{"ref":"Socketed Gems are Supported by Level # Hex Bloom","better":1,"matchers":[{"string":"장착된 젬에 #레벨 사술의 꽃 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_146","explicit.stat_3199084318"]}}} +{"ref":"Socketed Gems are Supported by Level # Hextouch","better":1,"matchers":[{"string":"장착된 젬에 #레벨 사술 손길 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_95","explicit.stat_2697741965"]}}} +{"ref":"Socketed Gems are Supported by Level # High-Impact Mine","better":1,"matchers":[{"string":"장착된 젬에 #레벨 고충격 지뢰 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_22","explicit.stat_2116100988"]}}} +{"ref":"Socketed Gems are Supported by Level # Hypothermia","better":1,"matchers":[{"string":"장착된 젬에 #레벨 체온저하 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_74","explicit.stat_13669281"],"fractured":["fractured.stat_13669281"]}}} +{"ref":"Socketed Gems are Supported by Level # Ice Bite","better":1,"matchers":[{"string":"장착된 젬에 #레벨 얼음 쐐기 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_73","explicit.stat_1384629003"]}}} +{"ref":"Socketed Gems are Supported by Level # Ignite Proliferation","better":1,"matchers":[{"string":"장착된 젬에 #레벨 점화 확산 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_72","explicit.stat_3593797653"]}}} +{"ref":"Socketed Gems are Supported by Level # Immolate","better":1,"matchers":[{"string":"장착된 젬에 #레벨 번제 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_71","explicit.stat_2420410470"],"fractured":["fractured.stat_2420410470"]}}} +{"ref":"Socketed Gems are Supported by Level # Impale","better":1,"matchers":[{"string":"장착된 젬에 #레벨 꿰뚫기 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_70","explicit.stat_1900098804"]}}} +{"ref":"Socketed Gems are Supported by Level # Impending Doom","better":1,"matchers":[{"string":"장착된 젬에 #레벨 임박한 멸망 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_133","explicit.stat_3227145554"]}}} +{"ref":"Socketed Gems are Supported by Level # Increased Area of Effect","better":1,"matchers":[{"string":"장착된 젬에 #레벨 효과 범위 증가 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_69","explicit.stat_3720936304"],"implicit":["implicit.stat_3720936304"],"fractured":["fractured.stat_3720936304"]}}} +{"ref":"Socketed Gems are supported by Level # Increased Critical Damage","better":1,"matchers":[{"string":"장착된 젬에 #레벨 치명타 피해 증가 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_67","explicit.stat_1108755349"],"implicit":["implicit.stat_1108755349"],"fractured":["fractured.stat_1108755349"]}}} +{"ref":"Socketed Gems are Supported by Level # Increased Critical Strikes","better":1,"matchers":[{"string":"장착된 젬에 #레벨 치명타 증가 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_66","explicit.stat_2259700079"],"fractured":["fractured.stat_2259700079"]}}} +{"ref":"Socketed Gems are Supported by Level # Infernal Legion","better":1,"matchers":[{"string":"장착된 젬에 #레벨 지옥불 군단 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_61","explicit.stat_2201102274"]}}} +{"ref":"Socketed Gems are Supported by Level # Infused Channelling","better":1,"matchers":[{"string":"장착된 젬에 #레벨 깊어지는 집중 유지 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_13","explicit.stat_4048257027"]}}} +{"ref":"Socketed Gems are Supported by Level # Innervate","better":1,"matchers":[{"string":"장착된 젬에 #레벨 자극 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_60","explicit.stat_1106668565"],"fractured":["fractured.stat_1106668565"]}}} +{"ref":"Socketed Gems are Supported by Level # Inspiration","better":1,"matchers":[{"string":"장착된 젬에 #레벨 영감 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_24","explicit.stat_1866911844","explicit.stat_749770518"],"implicit":["implicit.stat_1866911844"],"fractured":["fractured.stat_1866911844"]}}} +{"ref":"Socketed Gems are Supported by Level # Intensify","better":1,"matchers":[{"string":"장착된 젬에 #레벨 격화 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_16","explicit.stat_1876637240","explicit.stat_28821524"]}}} +{"ref":"Socketed Gems are Supported by Level # Iron Grip","better":1,"matchers":[{"string":"장착된 젬에 #레벨 강철 손아귀 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_59","explicit.stat_251446805"]}}} +{"ref":"Socketed Gems are Supported by Level # Iron Will","better":1,"matchers":[{"string":"장착된 젬에 #레벨 강철의 의지 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_58","explicit.stat_906997920"]}}} +{"ref":"Socketed Gems are Supported by Level # Item Quantity","better":1,"matchers":[{"string":"장착된 젬에 #레벨 아이템 수량 증가 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_248646071"]}}} +{"ref":"Socketed Gems are Supported by Level # Item Rarity","better":1,"matchers":[{"string":"장착된 젬에 #레벨 아이템 희귀도 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_57","explicit.stat_3587013273"],"fractured":["fractured.stat_3587013273"]}}} +{"ref":"Socketed Gems are Supported by Level # Knockback","better":1,"matchers":[{"string":"장착된 젬에 #레벨 밀어내기 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_56","explicit.stat_4066711249"]}}} +{"ref":"Socketed Gems are Supported by Level # Less Duration","better":1,"matchers":[{"string":"장착된 젬에 #레벨 지속시간 감소 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_25","explicit.stat_2487643588"],"fractured":["fractured.stat_2487643588"]}}} +{"ref":"Socketed Gems are Supported by Level # Lesser Multiple Projectiles","better":1,"matchers":[{"string":"장착된 젬에 #레벨 하위 다중 투사체 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_55","explicit.stat_584144941"],"fractured":["fractured.stat_584144941"]}}} +{"ref":"Socketed Gems are Supported by Level # Life Gain On Hit","better":1,"matchers":[{"string":"장착된 젬에 #레벨 명중 시 생명력 획득 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2032386732"],"implicit":["implicit.stat_2032386732"]}}} +{"ref":"Socketed Gems are supported by Level # Life Leech","better":1,"matchers":[{"string":"장착된 젬에 #레벨 생명력 흡수 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_891277550"],"implicit":["implicit.stat_891277550"],"fractured":["fractured.stat_891277550"]}}} +{"ref":"Socketed Gems are Supported by Level # Lifetap","better":1,"matchers":[{"string":"장착된 젬에 #레벨 생명력 전환 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_137","explicit.stat_1079239905"],"implicit":["implicit.stat_1079239905"],"crafted":["crafted.stat_1079239905"]}}} +{"ref":"Socketed Gems are Supported by Level # Lightning Penetration","better":1,"matchers":[{"string":"장착된 젬에 #레벨 번개 관통 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_51","explicit.stat_3354027870"],"fractured":["fractured.stat_3354027870"]}}} +{"ref":"Socketed Gems are Supported by Level # Locus Mine","better":1,"matchers":[{"string":"장착된 젬에 #레벨 궤적 지뢰 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_160"]}}} +{"ref":"Socketed Gems are Supported by Level # Maim","better":1,"matchers":[{"string":"장착된 젬에 #레벨 힘줄 절단 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_50","explicit.stat_3826977109"],"fractured":["fractured.stat_3826977109"]}}} +{"ref":"Socketed Gems are Supported by Level # Mana Leech","better":1,"matchers":[{"string":"장착된 젬에 #레벨 마나 흡수 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_49","explicit.stat_2608615082"],"fractured":["fractured.stat_2608615082"]}}} +{"ref":"Socketed Gems are Supported by Level # Manaforged Arrows","better":1,"matchers":[{"string":"장착된 젬에 #레벨 마나벼림 화살 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_147","explicit.stat_4022502578"]}}} +{"ref":"Socketed Gems are Supported by Level # Mark On Hit","better":1,"matchers":[{"string":"장착된 젬에 #레벨 명중 시 징표 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_141","explicit.stat_3485498591"]}}} +{"ref":"Socketed Gems are Supported by Level # Meat Shield","better":1,"matchers":[{"string":"장착된 젬에 #레벨 육탄 방어 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_48","explicit.stat_858460086"]}}} +{"ref":"Socketed Gems are Supported by Level # Melee Physical Damage","better":1,"matchers":[{"string":"장착된 젬에 #레벨 근접 물리 피해 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_46","explicit.stat_2985291457"],"fractured":["fractured.stat_2985291457"]}}} +{"ref":"Socketed Gems are supported by Level # Melee Splash","better":1,"matchers":[{"string":"장착된 젬에 #레벨 근접 범위 피해 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_1811422871"],"implicit":["implicit.stat_1811422871"],"fractured":["fractured.stat_1811422871"]}}} +{"ref":"Socketed Gems are Supported by Level # Minefield","better":1,"matchers":[{"string":"장착된 젬에 #레벨 지뢰밭 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_44","explicit.stat_2805586447"]}}} +{"ref":"Socketed Gems are Supported by Level # Minion Damage","better":1,"matchers":[{"string":"장착된 젬에 #레벨 소환수 피해 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_64","explicit.stat_808939569"],"fractured":["fractured.stat_808939569"]}}} +{"ref":"Socketed Gems are Supported by Level # Minion Life","better":1,"matchers":[{"string":"장착된 젬에 #레벨 소환수 생명력 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_63","explicit.stat_1337327984"],"fractured":["fractured.stat_1337327984"]}}} +{"ref":"Socketed Gems are Supported by Level # Minion Speed","better":1,"matchers":[{"string":"장착된 젬에 #레벨 소환수 속도 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_62","explicit.stat_995332031"]}}} +{"ref":"Socketed Gems are Supported by Level # Mirage Archer","better":1,"matchers":[{"string":"장착된 젬에 #레벨 신기루 궁수 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_43","explicit.stat_3239503729"]}}} +{"ref":"Socketed Gems are Supported by Level # Momentum","better":1,"matchers":[{"string":"장착된 젬에 #레벨 기세 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_37","explicit.stat_3237923082"],"implicit":["implicit.stat_3237923082"],"fractured":["fractured.stat_3237923082"]}}} +{"ref":"Socketed Gems are Supported by Level # More Duration","better":1,"matchers":[{"string":"장착된 젬에 #레벨 지속시간 증가 보조 효과 적용"},{"string":"장착된 젬에 #레벨 지속시간 증폭 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_65","explicit.stat_407317553"],"fractured":["fractured.stat_407317553"]}}} +{"ref":"Socketed Gems are Supported by Level # Multiple Totems","better":1,"matchers":[{"string":"장착된 젬에 #레벨 다중 토템 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_40","explicit.stat_807186595"]}}} +{"ref":"Socketed Gems are Supported by Level # Multiple Traps","better":1,"matchers":[{"string":"장착된 젬에 #레벨 다중 덫 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_39","explicit.stat_3016436615"]}}} +{"ref":"Socketed Gems are supported by Level # Multistrike","better":1,"matchers":[{"string":"장착된 젬에 #레벨 연속타격 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_2501237765"],"implicit":["implicit.stat_2501237765"],"fractured":["fractured.stat_2501237765"]}}} +{"ref":"Socketed Gems are Supported by Level # Nightblade","better":1,"matchers":[{"string":"장착된 젬에 #레벨 밤의 칼날 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_38","explicit.stat_2861649515"]}}} +{"ref":"Socketed Gems are Supported by Level # Overcharge","better":1,"matchers":[{"string":"장착된 젬에 #레벨 과충전 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_144","explicit.stat_3462081007"]}}} +{"ref":"Socketed Gems are Supported by Level # Overexertion","better":1,"matchers":[{"string":"장착된 젬에 #레벨 전심전력 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_139"]}}} +{"ref":"Socketed Gems are Supported by Level # Physical To Lightning","better":1,"matchers":[{"string":"장착된 젬에 #레벨 물리 번개 전환 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_3327487371"]}}} +{"ref":"Socketed Gems are supported by Level # Pierce","better":1,"matchers":[{"string":"장착된 젬에 #레벨 관통 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_33","explicit.stat_2433615566","explicit.stat_254728692"]}}} +{"ref":"Socketed Gems are Supported by Level # Pinpoint","better":1,"matchers":[{"string":"장착된 젬에 #레벨 핵심 조준 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_132","explicit.stat_1609369521"]}}} +{"ref":"Socketed Gems are Supported by Level # Point Blank","better":1,"matchers":[{"string":"장착된 젬에 #레벨 근접 사격 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_32","explicit.stat_3754129682"]}}} +{"ref":"Socketed Gems are Supported by Level # Power Charge On Critical Strike","better":1,"matchers":[{"string":"장착된 젬에 #레벨 치명타 시 권능 충전 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_4015918489"],"fractured":["fractured.stat_4015918489"]}}} +{"ref":"Socketed Gems are Supported by Level # Predator","better":1,"matchers":[{"string":"장착된 젬에 #레벨 포식자 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_93","explicit.stat_4082662318"]}}} +{"ref":"Socketed Gems are Supported by Level # Prismatic Burst","better":1,"matchers":[{"string":"장착된 젬에 #레벨 분광 격발 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_148","explicit.stat_2910545715"]}}} +{"ref":"Socketed Gems are Supported by Level # Pulverise","better":1,"matchers":[{"string":"장착된 젬에 #레벨 분쇄 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_29","explicit.stat_282757414"]}}} +{"ref":"Socketed Gems are Supported by Level # Rage","better":1,"matchers":[{"string":"장착된 젬에 #레벨 격노 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_28","explicit.stat_369650395"]}}} +{"ref":"Socketed Gems are Supported by Level # Returning Projectiles","better":1,"matchers":[{"string":"장착된 젬에 #레벨 돌아오는 투사체 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_149","explicit.stat_52197415"]}}} +{"ref":"Socketed Gems are Supported by Level # Rupture","better":1,"matchers":[{"string":"장착된 젬에 #레벨 파열 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_142"]}}} +{"ref":"Socketed Gems are Supported by Level # Ruthless","better":1,"matchers":[{"string":"장착된 젬에 #레벨 무자비 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_21","explicit.stat_3796013729"],"fractured":["fractured.stat_3796013729"]}}} +{"ref":"Socketed Gems are Supported by Level # Sacred Wisps","better":1,"matchers":[{"string":"장착된 젬에 #레벨 신성한 도깨비불 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_163"]}}} +{"ref":"Socketed Gems are Supported by Level # Sacrifice","better":1,"matchers":[{"string":"장착된 젬에 #레벨 희생 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_158","explicit.stat_2302807931"]}}} +{"ref":"Socketed Gems are Supported by Level # Sadism","better":1,"matchers":[{"string":"장착된 젬에 #레벨 가학증 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_161","explicit.stat_794471597"]}}} +{"ref":"Socketed Gems are Supported by Level # Second Wind","better":1,"matchers":[{"string":"장착된 젬에 #레벨 새로운 활력 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_20","explicit.stat_402499111"]}}} +{"ref":"Socketed Gems are Supported by Level # Shockwave","better":1,"matchers":[{"string":"장착된 젬에 #레벨 충격파 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_19","explicit.stat_1344789934"]}}} +{"ref":"Socketed Gems are Supported by Level # Slower Projectiles","better":1,"matchers":[{"string":"장착된 젬에 #레벨 투사체 속도 감소 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_18","explicit.stat_1390285657"],"fractured":["fractured.stat_1390285657"]}}} +{"ref":"Socketed Gems are Supported by Level # Spell Cascade","better":1,"matchers":[{"string":"장착된 젬에 #레벨 연속 주문 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_17","explicit.stat_503990161"],"fractured":["fractured.stat_503990161"]}}} +{"ref":"Socketed Gems are Supported by Level # Spell Echo","better":1,"matchers":[{"string":"장착된 젬에 #레벨 주문 메아리 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_42","explicit.stat_438778966","explicit.stat_913919528"],"fractured":["fractured.stat_913919528"]}}} +{"ref":"Socketed Gems are Supported by Level # Spell Totem","better":1,"matchers":[{"string":"장착된 젬에 #레벨 주문 토템 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_15","explicit.stat_2962840349"],"fractured":["fractured.stat_2962840349"]}}} +{"ref":"Socketed Gems are Supported by Level # Spellblade","better":1,"matchers":[{"string":"장착된 젬에 #레벨 주문칼날 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_151","explicit.stat_633235561"]}}} +{"ref":"Socketed Gems are supported by Level # Stun","better":1,"matchers":[{"string":"장착된 젬에 #레벨 기절 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_689720069"],"implicit":["implicit.stat_689720069"]}}} +{"ref":"Socketed Gems are Supported by Level # Summon Phantasm","better":1,"matchers":[{"string":"장착된 젬에 #레벨 환영 소환 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_10","explicit.stat_3155072742"]}}} +{"ref":"Socketed Gems are Supported by Level # Swift Affliction","better":1,"matchers":[{"string":"장착된 젬에 #레벨 고통 격화 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_26","explicit.stat_1636220212"]}}} +{"ref":"Socketed Gems are Supported by Level # Swift Assembly","better":1,"matchers":[{"string":"장착된 젬에 #레벨 재빠른 조립 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_9","explicit.stat_4021476585"]}}} +{"ref":"Socketed Gems are Supported by Level # Swiftbrand","better":1,"matchers":[{"string":"장착된 젬에 #레벨 재빠른 낙인 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_130","explicit.stat_2127532091"]}}} +{"ref":"Socketed Gems are Supported by Level # Trap","better":1,"matchers":[{"string":"장착된 젬에 #레벨 덫 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_8","explicit.stat_1122134690"],"fractured":["fractured.stat_1122134690"]}}} +{"ref":"Socketed Gems are Supported by Level # Trap And Mine Damage","better":1,"matchers":[{"string":"장착된 젬에 #레벨 덫 및 지뢰 피해 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_3814066599"],"fractured":["fractured.stat_3814066599"]}}} +{"ref":"Socketed Gems are Supported by Level # Trauma","better":1,"matchers":[{"string":"장착된 젬에 #레벨 외상 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_150","explicit.stat_1715139253"]}}} +{"ref":"Socketed Gems are Supported by Level # Trinity","better":1,"matchers":[{"string":"장착된 젬에 #레벨 삼위일체 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_134","explicit.stat_3111091501"]}}} +{"ref":"Socketed Gems are Supported by Level # Unbound Ailments","better":1,"matchers":[{"string":"장착된 젬에 #레벨 벌어지는 상처 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_5","explicit.stat_3699494172"],"fractured":["fractured.stat_3699494172"]}}} +{"ref":"Socketed Gems are Supported by Level # Unleash","better":1,"matchers":[{"string":"장착된 젬에 #레벨 촉발 보조 젬 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_4","explicit.stat_3356013982"]}}} +{"ref":"Socketed Gems are Supported by Level # Urgent Orders","better":1,"matchers":[{"string":"장착된 젬에 #레벨 긴급 명령 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_131","explicit.stat_1485525812"]}}} +{"ref":"Socketed Gems are Supported by Level # Vicious Projectiles","better":1,"matchers":[{"string":"장착된 젬에 #레벨 포악한 투사체 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_35","explicit.stat_2513293614"]}}} +{"ref":"Socketed Gems are Supported by Level # Vile Toxins","better":1,"matchers":[{"string":"장착된 젬에 #레벨 끔찍한 독소 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_3","explicit.stat_1002855537"]}}} +{"ref":"Socketed Gems are Supported by Level # Void Manipulation","better":1,"matchers":[{"string":"장착된 젬에 #레벨 공허 조작 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_2","explicit.stat_1866583932"]}}} +{"ref":"Socketed Gems are Supported by Level # Volatility","better":1,"matchers":[{"string":"장착된 젬에 #레벨 일촉즉발 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_156","explicit.stat_4184135167"]}}} +{"ref":"Socketed Gems are Supported by Level # Volley","better":1,"matchers":[{"string":"장착된 젬에 #레벨 사격 공세 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_36","explicit.stat_2696557965"],"fractured":["fractured.stat_2696557965"]}}} +{"ref":"Socketed Gems are Supported by Level # Withering Touch","better":1,"matchers":[{"string":"장착된 젬에 #레벨 위축의 손길 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.indexable_support_104","explicit.stat_3287477747"]}}} +{"ref":"Socketed Gems are Supported by Level 10 Intensify","better":1,"matchers":[{"string":"장착된 젬에 10레벨 격화 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_3561676020"]}}} +{"ref":"Socketed Gems Chain # additional times","better":1,"matchers":[{"string":"장착된 젬 연쇄 #회 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2788729902"],"fractured":["fractured.stat_2788729902"]}}} +{"ref":"Socketed Gems Cost and Reserve Life instead of Mana","better":1,"matchers":[{"string":"장착된 젬이 마나 대신 생명력 소모 및 점유"}],"trade":{"ids":{"explicit":["explicit.stat_1104246401"]}}} +{"ref":"Socketed Gems deal # to # Added Fire Damage","better":1,"matchers":[{"string":"장착된 젬 스킬이 화염 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1289910726"],"fractured":["fractured.stat_1289910726"]}}} +{"ref":"Socketed Gems deal #% more Damage over Time","better":1,"matchers":[{"string":"장착된 젬 스킬이 주는 지속 피해 #% 증폭"},{"string":"장착된 젬 스킬이 주는 지속 피해 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3846088475"],"fractured":["fractured.stat_3846088475"]}}} +{"ref":"Socketed Gems deal #% more Damage while on Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태일 때 장착된 젬 스킬로 주는 피해 #% 증폭"}],"trade":{"ids":{"explicit":["explicit.stat_1235873320"],"fractured":["fractured.stat_1235873320"]}}} +{"ref":"Socketed Gems deal #% more Elemental Damage","better":1,"matchers":[{"string":"장착된 젬 스킬이 주는 원소 피해 #% 증폭"}],"trade":{"ids":{"explicit":["explicit.stat_3835899275"],"fractured":["fractured.stat_3835899275"]}}} +{"ref":"Socketed Gems fire an additional Projectile","better":1,"matchers":[{"string":"장착된 젬이 투사체 #개를 추가 발사"},{"string":"장착된 젬이 투사체 추가 발사","value":1}],"trade":{"ids":{"explicit":["explicit.stat_4016885052"]}}} +{"ref":"Socketed Gems fire Projectiles in a circle","better":1,"matchers":[{"string":"장착된 젬이 원형으로 투사체 발사"}],"trade":{"ids":{"explicit":["explicit.stat_967556848"]}}} +{"ref":"Socketed Gems gain #% of Physical Damage as extra Lightning Damage","better":1,"matchers":[{"string":"장착된 젬이 물리 피해의 #%를 추가 번개 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1859937391"],"fractured":["fractured.stat_1859937391"]}}} +{"ref":"Socketed Gems have #% chance to cause Enemies to Flee on Hit","better":1,"matchers":[{"string":"장착된 젬 명중 시 #%의 확률로 적이 도망침"}],"trade":{"ids":{"explicit":["explicit.stat_3418772"]}}} +{"ref":"Socketed Gems have #% chance to Ignite","better":1,"matchers":[{"string":"장착된 젬이 #%의 확률로 점화 유발"},{"string":"장착된 젬이 항상 점화 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3984519770"]}}} +{"ref":"Socketed Gems have #% increased Reservation Efficiency","better":-1,"matchers":[{"string":"장착된 젬의 점유 효율 #% 감소"},{"string":"장착된 젬의 점유 효율 #% 증가","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3289633055"],"implicit":["implicit.stat_3289633055"],"fractured":["fractured.stat_3289633055"]},"inverted":true}} +{"ref":"Socketed Gems have #% more Attack and Cast Speed","better":1,"matchers":[{"string":"장착된 젬의 공격 및 시전 속도 #% 증폭"}],"trade":{"ids":{"explicit":["explicit.stat_346351023"],"fractured":["fractured.stat_346351023"]}}} +{"ref":"Socketed Gems have #% reduced Mana Cost","better":1,"matchers":[{"string":"장착된 젬의 마나 소모 #% 감소"},{"string":"장착된 젬의 마나 소모 #% 증가","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2816901897"]}}} +{"ref":"Socketed Gems have +#% Critical Strike Chance","dp":true,"better":1,"matchers":[{"string":"장착된 젬의 치명타 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1681904129"],"fractured":["fractured.stat_1681904129"]}}} +{"ref":"Socketed Gems have Elemental Equilibrium","better":1,"matchers":[{"string":"장착된 젬이 원소 균형 보유"}],"trade":{"ids":{"explicit":["explicit.stat_2605850929"]}}} +{"ref":"Socketed Gems have no Reservation\nYour Blessing Skills are Disabled","better":1,"matchers":[{"string":"장착된 젬으로 인한 점유 없음\n플레이어의 축복 스킬 사용 불가"}],"trade":{"ids":{"explicit":["explicit.stat_2497009514"]}}} +{"ref":"Socketed Gems have Secrets of Suffering","better":1,"matchers":[{"string":"장착된 젬이 고통의 비밀 보유"}],"trade":{"ids":{"explicit":["explicit.stat_4051493629"]}}} +{"ref":"Socketed Golem Skills gain #% of Maximum Life as Extra Maximum Energy Shield","better":1,"matchers":[{"string":"장착된 골렘 스킬이 최대 생명력의 #%를 추가 에너지 보호막 최대치로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1199118714"]}}} +{"ref":"Socketed Golem Skills have #% chance to Taunt on Hit","better":1,"matchers":[{"string":"장착된 골렘 스킬 명중 시 #%의 확률로 도발"}],"trade":{"ids":{"explicit":["explicit.stat_178057093"]}}} +{"ref":"Socketed Golem Skills have #% increased Attack and Cast Speed","better":1,"matchers":[{"string":"장착된 골렘 스킬의 공격 및 시전 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_706212417"]}}} +{"ref":"Socketed Golem Skills have Minions Regenerate #% of Life per second","better":1,"matchers":[{"string":"장착한 골렘 스킬이 1초마다 소환수 생명력의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_693460617"]}}} +{"ref":"Socketed Melee Gems have #% increased Area of Effect","better":1,"matchers":[{"string":"장착된 근접 젬의 효과 범위 #% 증가"},{"string":"장착된 근접 젬의 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2462976337"]}}} +{"ref":"Socketed Minion Gems are Supported by Level # Life Leech","better":1,"matchers":[{"string":"장착된 소환수 젬에 #레벨 생명력 흡수 보조 효과 적용"}],"trade":{"ids":{"explicit":["explicit.stat_4006301249"]}}} +{"ref":"Socketed Movement Skills Cost no Mana","better":1,"matchers":[{"string":"장착된 이동 스킬 사용 시 마나를 소모하지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_3263216405"],"fractured":["fractured.stat_3263216405"]}}} +{"ref":"Socketed Non-Channelling Bow Skills are Triggered by Snipe\nSocketed Triggered Bow Skills gain a 0.05 second Cooldown","better":1,"matchers":[{"string":"장착된 비-집중 유지 활 스킬이 저격에 의해 발동\n장착된 발동형 활 스킬이 0.05초의 재사용 대기시간을 얻음"}],"trade":{"ids":{"explicit":["explicit.stat_3282302743"]}}} +{"ref":"Socketed Projectile Spells deal #% more Damage with Hits","better":1,"matchers":[{"string":"장착된 투사체 주문이 명중 시 주는 피해 #% 감폭"},{"string":"장착된 투사체 주문이 명중 시 주는 피해 #% 증폭"}],"trade":{"ids":{"explicit":["explicit.stat_2443457281"]}}} +{"ref":"Socketed Projectile Spells fire an additional Projectile","better":1,"matchers":[{"string":"장착된 투사체 주문이 투사체 #개 추가 발사"},{"string":"장착된 투사체 주문이 투사체 1개 추가 발사","value":1}],"trade":{"ids":{"explicit":["explicit.stat_973574623"]}}} +{"ref":"Socketed Projectile Spells fire Projectiles in a circle","better":1,"matchers":[{"string":"장착된 투사체 주문이 원형으로 투사체 발사"}],"trade":{"ids":{"explicit":["explicit.stat_3235941702"]}}} +{"ref":"Socketed Projectile Spells have #% more Skill Effect Duration","better":1,"matchers":[{"string":"장착된 투사체 주문의 스킬 효과 지속시간 #% 증폭"},{"string":"장착된 투사체 주문의 스킬 효과 지속시간 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3104895675"]}}} +{"ref":"Socketed Projectile Spells have +# seconds to Cooldown","better":1,"matchers":[{"string":"장착된 투사체 주문의 재사용 대기시간 #초"}],"trade":{"ids":{"explicit":["explicit.stat_470459031"]}}} +{"ref":"Socketed Red Gems get #% Physical Damage as Extra Fire Damage","better":1,"matchers":[{"string":"장착된 붉은 젬으로 물리 피해의 #%를 추가 화염 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2629366488"]}}} +{"ref":"Socketed Skill Gems get a #% Cost & Reservation Multiplier","better":1,"matchers":[{"string":"장착된 스킬 젬이 #%의 소모 및 점유 배율 획득"}],"trade":{"ids":{"implicit":["implicit.stat_2865550257"]}}} +{"ref":"Socketed Skills apply Fire, Cold and Lightning Exposure on Hit","better":1,"matchers":[{"string":"장착한 스킬이 적중 시 화염, 냉기, 번개 노출 유발"}],"trade":{"ids":{"implicit":["implicit.stat_2192875806"]}}} +{"ref":"Socketed Skills deal #% more Attack Damage","better":1,"matchers":[{"string":"장착된 스킬로 주는 공격 피해 #% 증폭"},{"string":"장착된 스킬로 주는 공격 피해 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1970781345"],"fractured":["fractured.stat_1970781345"]}}} +{"ref":"Socketed Skills deal #% more Spell Damage","better":1,"matchers":[{"string":"장착된 스킬로 주는 주문 피해 #% 증폭"},{"string":"장착된 스킬로 주는 주문 피해 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2964800094"],"fractured":["fractured.stat_2964800094"]}}} +{"ref":"Socketed Skills deal Double Damage","better":1,"matchers":[{"string":"장착된 스킬이 2배의 피해를 줌"}],"trade":{"ids":{"explicit":["explicit.stat_2132884933"]}}} +{"ref":"Socketed Skills have #% increased Attack Speed","better":1,"matchers":[{"string":"장착된 스킬의 공격 속도 #% 증가"},{"string":"장착된 스킬의 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2881124988"]}}} +{"ref":"Socketed Skills have #% increased Cast Speed","better":1,"matchers":[{"string":"장착된 스킬의 시전 속도 #% 증가"},{"string":"장착된 스킬의 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3425934849"],"fractured":["fractured.stat_3425934849"]}}} +{"ref":"Socketed Slam Gems are Supported by Level 25 Earthbreaker","better":1,"matchers":[{"string":"장착된 젬에 #레벨 대지 분쇄자 보조 효과 적용"},{"string":"장착된 강타 젬에 25레벨 대지 분쇄자 보조 효과 적용","value":1}],"trade":{"ids":{"explicit":["explicit.stat_940684417"]}}} +{"ref":"Socketed Spells have #% reduced Mana Cost","better":-1,"matchers":[{"string":"장착된 주문의 마나 소모 #% 증가"},{"string":"장착된 주문의 마나 소모 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1688834903"]},"inverted":true}} +{"ref":"Socketed Spells have +#% to Critical Strike Chance","dp":true,"better":1,"matchers":[{"string":"장착된 주문의 치명타 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_135378852"],"fractured":["fractured.stat_135378852"]}}} +{"ref":"Socketed Spells have +#% to Critical Strike Multiplier","better":1,"matchers":[{"string":"장착된 주문의 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_2828710986"],"fractured":["fractured.stat_2828710986"]}}} +{"ref":"Socketed Support Gems can also Support Skills from Equipped Body Armour","better":1,"matchers":[{"string":"장착된 보조 젬이 갑옷으로 인한 스킬도 보조 가능"}],"trade":{"ids":{"explicit":["explicit.stat_591645420"]}}} +{"ref":"Socketed Support Gems can also Support Skills from your Main Hand","better":1,"matchers":[{"string":"장착된 보조 젬이 주 무기로 인한 스킬도 보조 가능"}],"trade":{"ids":{"explicit":["explicit.stat_806627038"]}}} +{"ref":"Socketed Travel Skills deal #% more Damage","better":1,"matchers":[{"string":"장착된 이동 전용 스킬로 주는 피해 #% 증폭"},{"string":"장착된 이동 전용 스킬로 주는 피해 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1020412108"]}}} +{"ref":"Socketed Vaal Skills deal #% more Damage","better":1,"matchers":[{"string":"장착된 바알 스킬로 주는 피해 #% 증폭"},{"string":"장착된 바알 스킬로 주는 피해 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3106951888"]}}} +{"ref":"Socketed Vaal Skills grant Elusive when Used","better":1,"matchers":[{"string":"장착된 바알 스킬 사용 시 도피 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1831825995"]}}} +{"ref":"Socketed Vaal Skills have #% increased Area of Effect","better":1,"matchers":[{"string":"장착된 바알 스킬의 효과 범위 #% 증가"},{"string":"장착된 바알 스킬의 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2505291583"]}}} +{"ref":"Socketed Vaal Skills have #% increased Aura Effect","better":1,"matchers":[{"string":"장착된 바알 스킬의 오라 효과 #% 증가"},{"string":"장착된 바알 스킬의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2932121832"]}}} +{"ref":"Socketed Vaal Skills have #% increased Projectile Speed","better":1,"matchers":[{"string":"장착된 바알 스킬의 투사체 속도 #% 증가"},{"string":"장착된 바알 스킬의 투사체 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2237174578"]}}} +{"ref":"Socketed Vaal Skills have #% increased Skill Effect Duration","better":1,"matchers":[{"string":"장착된 바알 스킬의 스킬 효과 지속시간 #% 증가"},{"string":"장착된 바알 스킬의 스킬 효과 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_476204410"]}}} +{"ref":"Socketed Vaal Skills have #% increased Soul Gain Prevention Duration","better":1,"matchers":[{"string":"장착된 바알 스킬의 영혼 획득 방지 지속시간 #% 증가"},{"string":"장착된 바알 스킬의 영혼 획득 방지 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2599305231"],"enchant":["enchant.stat_2599305231"]}}} +{"ref":"Socketed Vaal Skills have 20% chance to regain consumed Souls when used","better":1,"matchers":[{"string":"장착된 바알 스킬 사용 시 20%의 확률로 소모한 영혼을 돌려받음"}],"trade":{"ids":{"explicit":["explicit.stat_207863952"]}}} +{"ref":"Socketed Vaal Skills require #% more Souls per Use","better":1,"matchers":[{"string":"장착된 바알 스킬 사용 시 필요한 영혼 #% 증폭"},{"string":"장착된 바알 스킬 사용 시 필요한 영혼 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2198756560"]}}} +{"ref":"Socketed Warcry Skills have +# Cooldown Use","better":1,"matchers":[{"string":"장착된 함성 스킬의 재사용 횟수 #회"}],"trade":{"ids":{"explicit":["explicit.stat_3784504781"]}}} +{"ref":"Sockets cannot be modified","better":1,"matchers":[{"string":"홈 수정 불가"}],"trade":{"ids":{"explicit":["explicit.stat_3192592092"]}}} +{"ref":"Solipsism","better":1,"matchers":[{"string":"유아론"}],"trade":{"ids":{"explicit":["explicit.stat_112130960"],"scourge":["scourge.stat_112130960"]}}} +{"ref":"Soulrend also Hinders Enemies when applying its Debuff, with #% reduced Movement Speed","better":-1,"matchers":[{"string":"영혼 분리가 디버프 적용 시 적을 이동 방해하여 이동 속도 #% 증가"},{"string":"영혼 분리가 디버프 적용 시 적을 이동 방해하여 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_303359279"]},"inverted":true}} +{"ref":"Soulrend deals #% increased Damage","better":1,"matchers":[{"string":"영혼 분리로 주는 피해 #% 증가"},{"string":"영혼 분리로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4117042530"]}}} +{"ref":"Soulrend fires an additional Projectile","better":1,"matchers":[{"string":"영혼 분리가 투사체 #개 추가 발사"},{"string":"영혼 분리가 투사체 1개 추가 발사","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3371533847"]}}} +{"ref":"Spark fires an additional Projectile","better":1,"matchers":[{"string":"전기불꽃이 투사체 #개 추가 발사"},{"string":"전기불꽃이 투사체 1개 추가 발사","value":1}],"trade":{"ids":{"enchant":["enchant.stat_186513618"]}}} +{"ref":"Spark fires Projectiles in a circle","better":1,"matchers":[{"string":"전기불꽃이 원형으로 투사체 발사"}],"trade":{"ids":{"enchant":["enchant.stat_3803013948"]}}} +{"ref":"Spectral Helix Projectile spirals through +# rotations","dp":true,"better":1,"matchers":[{"string":"영체 나선 투사체가 나선 모양으로 회전 #회"}],"trade":{"ids":{"enchant":["enchant.stat_4175166318"]}}} +{"ref":"Spectral Shield Throw fires an additional Shard Projectile","better":1,"matchers":[{"string":"환영 방패 투척이 파편 투사체 #개 추가 발사"},{"string":"환영 방패 투척이 파편 투사체 1개 추가 발사","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3608981617"]}}} +{"ref":"Spectres have #% increased Attack and Cast Speed","better":1,"matchers":[{"string":"망령의 공격 및 시전 속도 #% 증가"},{"string":"망령의 공격 및 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4137556603"]}}} +{"ref":"Spectres have #% increased Critical Strike Chance","better":1,"matchers":[{"string":"망령의 치명타 확률 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1862097882"]}}} +{"ref":"Spectres have #% increased Damage","better":1,"matchers":[{"string":"망령의 피해 #% 증가"},{"string":"망령의 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3645693773"],"enchant":["enchant.stat_3645693773"]}}} +{"ref":"Spectres have #% increased maximum Life","better":1,"matchers":[{"string":"망령의 최대 생명력 #% 증가"},{"string":"망령의 최대 생명력 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3035514623"]}}} +{"ref":"Spectres have a Base Duration of # seconds\nSpectres do not travel between Areas","better":1,"matchers":[{"string":"망령의 기본 지속시간 #초\n망령이 지역을 넘어 이동하지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_1210937073"]}}} +{"ref":"Spell Hits have #% chance to Hinder you","better":1,"matchers":[{"string":"주문 명중 시 #%의 확률로 자신 이동 방해"},{"string":"주문 명중 시 자신 이동 방해","value":100}],"trade":{"ids":{"scourge":["scourge.stat_1533511331"]}}} +{"ref":"Spell Skills always deal Critical Strikes on final Repeat","better":1,"matchers":[{"string":"주문 스킬이 마지막 반복 시 항상 치명타 피해를 줌"}],"trade":{"ids":{"explicit":["explicit.stat_3738009328"]}}} +{"ref":"Spell Skills cannot deal Critical Strikes except on final Repeat","better":1,"matchers":[{"string":"주문 스킬이 마지막 반복 시를 제외하고 치명타 피해를 주지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_2516869940"]}}} +{"ref":"Spell Skills deal no Damage","better":1,"matchers":[{"string":"주문 스킬로 주는 피해 없음"}],"trade":{"ids":{"explicit":["explicit.stat_291644318"]}}} +{"ref":"Spells cause you to gain Energy Shield equal to their Upfront\nCost every fifth time you Pay it","better":1,"matchers":[{"string":"주문의 초기 비용을 5번 소모할 때마다\n해당 주문의 초기 비용과 동일한 에너지 보호막 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1357409216"]}}} +{"ref":"Spells deal added Chaos Damage equal to #% of your maximum Life","better":1,"matchers":[{"string":"주문이 생명력 최대치의 #%와 동일한 추가 카오스 피해를 줌"}],"trade":{"ids":{"explicit":["explicit.stat_3175648755"]}}} +{"ref":"Spells fire an additional Projectile","better":1,"matchers":[{"string":"주문이 투사체 #개 추가 발사"},{"string":"주문이 투사체 1개 추가 발사","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1011373762"]}}} +{"ref":"Spells have #% increased Critical Strike Chance per Intensity","better":1,"matchers":[{"string":"격렬함 하나당 주문의 치명타 확률 #% 증가"},{"string":"격렬함 하나당 주문의 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2923377613"]}}} +{"ref":"Spells have a #% chance to deal Double Damage","better":1,"matchers":[{"string":"#%의 확률로 주문 피해 2배"},{"string":"주문 피해 2배","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2813626504"],"implicit":["implicit.stat_2813626504"],"fractured":["fractured.stat_2813626504"]}}} +{"ref":"Spells inflict Intimidate on Critical Strike for 4 seconds","better":1,"matchers":[{"string":"주문이 치명타 명중 시 4초 동안 위협 유발"}],"trade":{"ids":{"explicit":["explicit.stat_181229988"]}}} +{"ref":"Spells Triggered by Arcanist Brand Unnerve enemies on Hit for 4 seconds","better":1,"matchers":[{"string":"신비학자 낙인으로 발동한 주문이 명중 시 4초 동안 적 낙담 유발"}],"trade":{"ids":{"enchant":["enchant.stat_1350243490"]}}} +{"ref":"Spells which have gained Intensity Recently gain 1 Intensity every # Seconds","dp":true,"better":1,"matchers":[{"string":"최근 4초 이내 격렬함을 획득한 주문이 #초마다 격렬함 1중첩 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2540626225"]}}} +{"ref":"Spells which have gained Intensity Recently lose 1 Intensity every # Seconds","dp":true,"better":1,"matchers":[{"string":"최근 4초 이내 격렬함을 획득한 주문이 #초마다 격렬함 1중첩 상실"}],"trade":{"ids":{"explicit":["explicit.stat_2122561670"]}}} +{"ref":"Spend Energy Shield before Mana for Costs of Socketed Skills","better":1,"matchers":[{"string":"장착된 스킬 사용 시 마나 대신 에너지 보호막 소모"}],"trade":{"ids":{"implicit":["implicit.stat_563547620"]}}} +{"ref":"Spirit Offering grants +#% to Critical Strike Multiplier","better":1,"matchers":[{"string":"영혼 공물 사용 시 치명타 피해 배율 #%"}],"trade":{"ids":{"enchant":["enchant.stat_1793005352"]}}} +{"ref":"Spirit Offering has #% increased Effect","better":1,"matchers":[{"string":"영혼 공물의 효과 #% 증가"},{"string":"영혼 공물의 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3544391750"]}}} +{"ref":"Split Arrow fires an additional Projectile","better":1,"matchers":[{"string":"분할 화살로 투사체 #개 추가 발사"},{"string":"분할 화살이 투사체 1개 추가 발사","value":1}],"trade":{"ids":{"enchant":["enchant.stat_2278715446"]}}} +{"ref":"Splitting Steel deals #% increased Damage","better":1,"matchers":[{"string":"강철 분할로 주는 피해 #% 증가"},{"string":"강철 분할로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_866725377"]}}} +{"ref":"Splitting Steel has #% chance to not consume Steel Shards","better":1,"matchers":[{"string":"강철 분할이 #%의 확률로 강철 조각을 소모하지 않음"}],"trade":{"ids":{"enchant":["enchant.stat_3367825241"]}}} +{"ref":"Splitting Steel has #% increased Area of Effect","better":1,"matchers":[{"string":"강철 분할의 효과 범위 #% 증가"},{"string":"강철 분할의 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1977935782"]}}} +{"ref":"Spreads Tar when you Block","better":1,"matchers":[{"string":"막아낼 시 타르 확산"}],"trade":{"ids":{"explicit":["explicit.stat_2894567787"]}}} +{"ref":"Spreads Tar when you take a Critical Strike","better":1,"matchers":[{"string":"치명타 피격 시 타르 확산"}],"trade":{"ids":{"explicit":["explicit.stat_927458676"]}}} +{"ref":"Static Strike has +# maximum Beam Targets","better":1,"matchers":[{"string":"정전기 타격의 최대 광선 대상 #"}],"trade":{"ids":{"enchant":["enchant.stat_2537202749"]}}} +{"ref":"Steelskin Buff can take #% increased amount of Damage","better":1,"matchers":[{"string":"강철피부 버프가 받는 피해량 #% 증가"},{"string":"강철피부 버프가 받는 피해량 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4102483123"]}}} +{"ref":"Steelskin grants #% additional Physical Damage Reduction","better":1,"matchers":[{"string":"강철피부 사용 시 받는 물리 피해 #% 추가 감소 제공"}],"trade":{"ids":{"enchant":["enchant.stat_680880155"]}}} +{"ref":"Stone Golems deal #% increased Damage","better":1,"matchers":[{"string":"돌 골렘이 주는 피해 #% 증가"},{"string":"돌 골렘이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1171483499"]}}} +{"ref":"Storm Brand Damage Penetrates #% of Branded Enemy's Lightning Resistance","better":1,"matchers":[{"string":"폭풍의 낙인 피해가 낙인이 부착된 적 번개 저항의 #%를 관통"}],"trade":{"ids":{"enchant":["enchant.stat_3318254108"]}}} +{"ref":"Storm Brand deals #% increased Damage","better":1,"matchers":[{"string":"폭풍의 낙인이 주는 피해 #% 증가"},{"string":"폭풍의 낙인이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_531461618"]}}} +{"ref":"Storm Brand has a #% chance to Chain an additional time","better":1,"matchers":[{"string":"#%의 확률로 폭풍의 낙인 추가 연쇄"}],"trade":{"ids":{"enchant":["enchant.stat_1510381560"]}}} +{"ref":"Storm Burst has a #% chance to create an additional Orb","better":1,"matchers":[{"string":"#%의 확률로 폭풍 점사가 추가 구체 생성"}],"trade":{"ids":{"enchant":["enchant.stat_1898356067"]}}} +{"ref":"Storm Rain fires an additional Arrow","better":1,"matchers":[{"string":"폭풍우가 화살 #개 추가 발사"},{"string":"폭풍우가 화살 1개 추가 발사","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3548112418"]}}} +{"ref":"Storm Rain has #% increased Beam frequency","better":1,"matchers":[{"string":"폭풍우의 광선 빈도 #% 증가"},{"string":"폭풍우의 광선 빈도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1799087078"]}}} +{"ref":"Stormbind deals #% increased Damage","better":1,"matchers":[{"string":"폭풍 연대로 주는 피해 #% 증가"},{"string":"폭풍 연대로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1235531589"]}}} +{"ref":"Stormbind has #% increased Area of Effect","better":1,"matchers":[{"string":"폭풍 연대의 효과 범위 #% 증가"},{"string":"폭풍 연대의 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3823033989"]}}} +{"ref":"Stormblast Mine deals #% increased Damage","better":1,"matchers":[{"string":"태풍 파열 지뢰가 주는 피해 #% 증가"},{"string":"태풍 파열 지뢰가 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_494231298"]}}} +{"ref":"Stormblast Mine has #% increased Aura Effect","better":1,"matchers":[{"string":"태풍 파열 지뢰의 오라 효과 #% 증가"},{"string":"태풍 파열 지뢰의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2718657160"]}}} +{"ref":"Stormblast Mine has #% increased Throwing Speed","better":1,"matchers":[{"string":"태풍 파열 지뢰의 투척 속도 #% 증가"},{"string":"태풍 파열 지뢰의 투척 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_321894708"]}}} +{"ref":"Strength from Passives in Radius is Transformed to Dexterity","better":1,"matchers":[{"string":"반경 내 패시브 스킬로 획득하는 힘을 민첩으로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_2237528173"],"fractured":["fractured.stat_2237528173"]}}} +{"ref":"Strength from Passives in Radius is Transformed to Intelligence","better":1,"matchers":[{"string":"반경 내 패시브 스킬로 획득하는 힘을 지능으로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_3771273420"]}}} +{"ref":"Strength provides no bonus to Maximum Life","better":1,"matchers":[{"string":"힘에 따른 생명력 최대치 보너스 없음"}],"trade":{"ids":{"explicit":["explicit.stat_2290031712"]}}} +{"ref":"Strength's Damage bonus also applies to Reeling Speed at 20% of its value","better":1,"matchers":[{"string":"힘의 피해 보너스가 줄 감기 속도에도 20%의 수치로 적용"}],"trade":{"ids":{"scourge":["scourge.stat_4039414411"]}}} +{"ref":"Strength's Damage Bonus instead grants 3% increased Melee\nPhysical Damage per 10 Strength","better":1,"matchers":[{"string":"힘의 피해 보너스가 힘 10당 근접 물리 피해\n3% 증가 효과로 대체"}],"trade":{"ids":{"explicit":["explicit.stat_1531241759"]}}} +{"ref":"Strike Skills also target the previous location they were Used","better":1,"matchers":[{"string":"타격 스킬이 이전 위치를 추가 대상으로 지정"}],"trade":{"ids":{"explicit":["explicit.stat_719626796"]}}} +{"ref":"Stun Threshold is based on #% of your Mana instead of Life","better":1,"matchers":[{"string":"기절 한계치가 자신의 생명력이 아닌 마나의 #%에 비례함"}],"trade":{"ids":{"explicit":["explicit.stat_2280488002"]}}} +{"ref":"Stun Threshold is based on Energy Shield instead of Life","better":1,"matchers":[{"string":"기절 한계치가 생명력이 아닌 에너지 보호막에 비례함"}],"trade":{"ids":{"explicit":["explicit.stat_2562665460"]}}} +{"ref":"Suffixes Cannot Be Changed","better":1,"matchers":[{"string":"접미어 변경 불가"}],"trade":{"ids":{"explicit":["explicit.stat_3464137628"],"fractured":["fractured.stat_3464137628"],"crafted":["crafted.stat_3464137628"]}}} +{"ref":"Summon an additional Skeleton with Summon Skeletons","better":1,"matchers":[{"string":"해골 소환으로 해골 #마리 추가 소환"},{"string":"해골 소환으로 해골 1마리 추가 소환","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1589090910"],"fractured":["fractured.stat_1589090910"]}}} +{"ref":"Summon Raging Spirit has #% chance to summon an extra Minion","better":1,"matchers":[{"string":"격노의 유령 소환 시 #%의 확률로 소환수 하나를 추가 소환"}],"trade":{"ids":{"enchant":["enchant.stat_1381908541"]}}} +{"ref":"Summon Raging Spirit has #% increased Duration","better":1,"matchers":[{"string":"격노의 유령 소환 지속시간 #% 증가"},{"string":"격노의 유령 소환 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_38715141"],"enchant":["enchant.stat_38715141"]}}} +{"ref":"Summon Skitterbots has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"원격 기폭 장치 소환의 마나 점유 효율 #% 증가"},{"string":"원격 기폭 장치 소환의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1695754537","enchant.stat_3818053347"]}}} +{"ref":"Summoned Agony Crawler fires # additional Projectile","better":1,"matchers":[{"string":"소환된 고통의 벌레가 투사체 #개 추가 발사"}],"trade":{"ids":{"enchant":["enchant.stat_155429578"]}}} +{"ref":"Summoned Arbalists Convert #% of Physical Damage to Cold Damage","better":1,"matchers":[{"string":"소환된 석궁병이 물리 피해의 #%를 냉기 피해로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_1094808741"]}}} +{"ref":"Summoned Arbalists Convert #% of Physical Damage to Fire Damage","better":1,"matchers":[{"string":"소환된 석궁병이 물리 피해의 #%를 화염 피해로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_2954406821"]}}} +{"ref":"Summoned Arbalists Convert #% of Physical Damage to Lightning Damage","better":1,"matchers":[{"string":"소환된 석궁병이 물리 피해의 #%를 번개 피해로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_2934219859"]}}} +{"ref":"Summoned Arbalists fire # additional Projectiles","better":1,"matchers":[{"string":"소환된 석궁병이 투사체 #개 추가 발사"}],"trade":{"ids":{"explicit":["explicit.stat_2087104263"]}}} +{"ref":"Summoned Arbalists gain #% of Physical Damage as Extra Cold Damage","better":1,"matchers":[{"string":"소환된 석궁병이 물리 피해의 #%를 추가 냉기 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_655918588"]}}} +{"ref":"Summoned Arbalists gain #% of Physical Damage as Extra Fire Damage","better":1,"matchers":[{"string":"소환된 석궁병이 물리 피해의 #%를 추가 화염 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1477474340"]}}} +{"ref":"Summoned Arbalists gain #% of Physical Damage as Extra Lightning Damage","better":1,"matchers":[{"string":"소환된 석궁병이 물리 피해의 #%를 추가 번개 피해로 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2631827343"]}}} +{"ref":"Summoned Arbalists have #% chance to Crush on Hit","better":1,"matchers":[{"string":"소환된 석궁병이 명중 시 #%의 확률로 타쇄"}],"trade":{"ids":{"explicit":["explicit.stat_1658936540"]}}} +{"ref":"Summoned Arbalists have #% chance to deal Double Damage","better":1,"matchers":[{"string":"소환된 석궁병이 #%의 확률로 2배의 피해를 줌"}],"trade":{"ids":{"explicit":["explicit.stat_3057722139"]}}} +{"ref":"Summoned Arbalists have #% chance to Freeze","better":1,"matchers":[{"string":"소환된 석궁병이 #%의 확률로 동결 유발"}],"trade":{"ids":{"explicit":["explicit.stat_2052458107"]}}} +{"ref":"Summoned Arbalists have #% chance to Freeze, Shock, and Ignite","better":1,"matchers":[{"string":"소환된 석궁병이 #%의 확률로 동결, 감전 및 점화 유발"}],"trade":{"ids":{"explicit":["explicit.stat_357325557"]}}} +{"ref":"Summoned Arbalists have #% chance to Ignite","better":1,"matchers":[{"string":"소환된 석궁병이 #%의 확률로 점화 유발"}],"trade":{"ids":{"explicit":["explicit.stat_831284309"]}}} +{"ref":"Summoned Arbalists have #% chance to inflict Cold Exposure on Hit","better":1,"matchers":[{"string":"소환된 석궁병이 명중 시 #%의 확률로 냉기 노출 유발"}],"trade":{"ids":{"explicit":["explicit.stat_157070900"]}}} +{"ref":"Summoned Arbalists have #% chance to inflict Fire Exposure on Hit","better":1,"matchers":[{"string":"소환된 석궁병이 명중 시 #%의 확률로 화염 노출 유발"}],"trade":{"ids":{"explicit":["explicit.stat_3327243369"]}}} +{"ref":"Summoned Arbalists have #% chance to inflict Lightning Exposure on Hit","better":1,"matchers":[{"string":"소환된 석궁병이 명중 시 #%의 확률로 번개 노출 유발"}],"trade":{"ids":{"explicit":["explicit.stat_223656429"]}}} +{"ref":"Summoned Arbalists have #% chance to Intimidate for 4 seconds on Hit","better":1,"matchers":[{"string":"소환된 석궁병이 명중 시 #%의 확률로 4초 동안 위협"}],"trade":{"ids":{"explicit":["explicit.stat_3964074505"]}}} +{"ref":"Summoned Arbalists have #% chance to Maim for 4 seconds on Hit","better":1,"matchers":[{"string":"소환된 석궁병이 명중 시 #%의 확률로 4초 동안 힘줄 절단"}],"trade":{"ids":{"explicit":["explicit.stat_3652224635"]}}} +{"ref":"Summoned Arbalists have #% chance to Poison","better":1,"matchers":[{"string":"소환된 석궁병이 #%의 확률로 중독 유발"}],"trade":{"ids":{"explicit":["explicit.stat_2894626576"]}}} +{"ref":"Summoned Arbalists have #% chance to Shock","better":1,"matchers":[{"string":"소환된 석궁병이 #%의 확률로 감전 유발"}],"trade":{"ids":{"explicit":["explicit.stat_2144847042"]}}} +{"ref":"Summoned Arbalists have #% chance to Unnerve for 4 seconds on Hit","better":1,"matchers":[{"string":"소환된 석궁병이 명중 시 #%의 확률로 4초 동안 낙담 유발"}],"trade":{"ids":{"explicit":["explicit.stat_3976916585"]}}} +{"ref":"Summoned Arbalists have #% increased Attack Speed","better":1,"matchers":[{"string":"소환된 석궁병의 공격 속도 #% 증가"},{"string":"소환된 석궁병의 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4054463312"]}}} +{"ref":"Summoned Arbalists' Attacks have #% chance to inflict Bleeding","better":1,"matchers":[{"string":"소환된 석궁병의 공격이 #%의 확률로 출혈 유발"}],"trade":{"ids":{"explicit":["explicit.stat_1841503755"]}}} +{"ref":"Summoned Arbalists' Projectiles Chain +# times","better":1,"matchers":[{"string":"소환된 석궁병의 투사체 연쇄 횟수 #"}],"trade":{"ids":{"explicit":["explicit.stat_3010688059"]}}} +{"ref":"Summoned Arbalists' Projectiles Fork","better":1,"matchers":[{"string":"소환된 석궁병의 투사체가 갈라짐"}],"trade":{"ids":{"explicit":["explicit.stat_2461270975"]}}} +{"ref":"Summoned Arbalists' Projectiles Pierce # additional Targets","better":1,"matchers":[{"string":"소환된 석궁병의 투사체가 대상 #개를 추가 관통"}],"trade":{"ids":{"explicit":["explicit.stat_3741465646"]}}} +{"ref":"Summoned Arbalists' Projectiles Split into #","better":1,"matchers":[{"string":"소환된 석궁병의 투사체가 #개로 분할"}],"trade":{"ids":{"explicit":["explicit.stat_1857935842"]}}} +{"ref":"Summoned Carrion Golems deal #% increased Damage","better":1,"matchers":[{"string":"소환된 부패 골렘이 주는 피해 #% 증가"},{"string":"소환된 부패 골렘이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3593547682"]}}} +{"ref":"Summoned Carrion Golems have +#% to all Elemental Resistances","better":1,"matchers":[{"string":"소환된 부패 골렘의 모든 원소 저항 #%"}],"trade":{"ids":{"enchant":["enchant.stat_59544006"]}}} +{"ref":"Summoned Golems are Aggressive","better":1,"matchers":[{"string":"소환된 골렘이 공격적으로 행동"}],"trade":{"ids":{"explicit":["explicit.stat_3630426972"]}}} +{"ref":"Summoned Golems have #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"소환된 골렘의 재사용 대기시간 회복 속도 #% 증가"},{"string":"소환된 골렘의 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3246099900"]}}} +{"ref":"Summoned Golems Regenerate #% of their Life per second","better":1,"matchers":[{"string":"소환된 골렘이 1초마다 생명력의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_2235163762"]}}} +{"ref":"Summoned Holy Relics deal #% increased Damage","better":1,"matchers":[{"string":"소환된 신성한 유물이 주는 피해 #% 증가"},{"string":"소환된 신성한 유물이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1152784934"]}}} +{"ref":"Summoned Holy Relics have #% increased Area of Effect","better":1,"matchers":[{"string":"소환된 신성한 유물의 효과 범위 #% 증가"},{"string":"소환된 신성한 유물의 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3026568825"]}}} +{"ref":"Summoned Holy Relics have #% increased Buff Effect","better":1,"matchers":[{"string":"소환된 신성한 유물의 버프 효과 #% 증가"}],"trade":{"ids":{"enchant":["enchant.stat_3080391193"]}}} +{"ref":"Summoned Holy Relics have #% reduced Cooldown Recovery Rate","better":-1,"matchers":[{"string":"소환된 신성한 유물의 재사용 대기시간 회복 속도 #% 증가"},{"string":"소환된 신성한 유물의 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1583498502"]},"inverted":true}} +{"ref":"Summoned Phantasms have #% chance to refresh their Duration when they Hit a Rare or Unique Enemy","better":1,"matchers":[{"string":"소환된 환영이 희귀 또는 고유 적을 명중시키면 #%의 확률로 환영의 지속시간 초기화"},{"string":"소환된 환영이 희귀 또는 고유 적을 명중시키면 환영의 지속시간 초기화","value":100}],"trade":{"ids":{"explicit":["explicit.stat_7847395"],"fractured":["fractured.stat_7847395"]}}} +{"ref":"Summoned Raging Spirits deal #% increased Damage","better":1,"matchers":[{"string":"소환된 격노의 유령이 주는 피해 #% 증가"},{"string":"소환된 격노의 유령이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2085855914"],"enchant":["enchant.stat_2085855914"]}}} +{"ref":"Summoned Raging Spirits have #% chance to refresh their Duration when they Hit a Rare or Unique Enemy","better":1,"matchers":[{"string":"소환된 격노의 유령이 희귀 또는 고유 적을 명중시키면 #%의 확률로 유령의 지속시간 초기화"},{"string":"소환된 격노의 유령이 희귀 또는 고유 적을 명중시키면 유령의 지속시간 초기화","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4070754804"],"fractured":["fractured.stat_4070754804"]}}} +{"ref":"Summoned Raging Spirits have #% increased maximum Life","better":1,"matchers":[{"string":"소환된 격노의 유령의 최대 생명력 #% 증가"},{"string":"소환된 격노의 유령의 최대 생명력 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3999870307"]}}} +{"ref":"Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy","better":1,"matchers":[{"string":"점화된 적 처치 시 소환된 격노의 유령 지속시간 초기화"}],"trade":{"ids":{"explicit":["explicit.stat_2761732967"]}}} +{"ref":"Summoned Raging Spirits take #% of their Maximum Life per second as Chaos Damage","better":1,"matchers":[{"string":"소환된 격노의 유령이 1초마다 최대 생명력의 #%를 카오스 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_1063920218"]}}} +{"ref":"Summoned Raging Spirits' Hits always Ignite","better":1,"matchers":[{"string":"소환된 격노의 유령이 적 명중 시 항상 점화 유발"}],"trade":{"ids":{"explicit":["explicit.stat_3954637034"]}}} +{"ref":"Summoned Raging Spirits' Melee Strikes deal Fire-only Splash\nDamage to Surrounding Targets","better":1,"matchers":[{"string":"소환된 격노의 유령의 근접 타격이\n주변 대상에게 화염으로만 범위 피해를 줌"}],"trade":{"ids":{"explicit":["explicit.stat_221328679"]}}} +{"ref":"Summoned Reaper deals #% increased Damage","better":1,"matchers":[{"string":"소환된 수확자가 주는 피해 #% 증가"},{"string":"소환된 수확자가 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2516903912"]}}} +{"ref":"Summoned Reaper has +#% to Physical Damage over Time Multiplier","better":1,"matchers":[{"string":"소환된 수확자의 지속 물리 피해 배율 #%"}],"trade":{"ids":{"enchant":["enchant.stat_1975621585"]}}} +{"ref":"Summoned Sentinels of Absolution have #% increased Area of Effect","better":1,"matchers":[{"string":"소환된 면죄의 파수꾼 효과 범위 #% 증가"},{"string":"소환된 면죄의 파수꾼 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_771292654"]}}} +{"ref":"Summoned Skeleton Warriors and Soldiers deal Triple Damage with this\nWeapon if you've Hit with this Weapon Recently","better":1,"matchers":[{"string":"이 무기로 최근 4초 이내 적 명중 시\n소환된 해골 전사와 병사가 이 무기로 3배의 피해를 줌"}],"trade":{"ids":{"explicit":["explicit.stat_697059777"]}}} +{"ref":"Summoned Skeleton Warriors and Soldiers wield this Weapon while in your Main Hand","better":1,"matchers":[{"string":"이 무기가 주 무기일 경우, 소환된 해골 전사와 병사가 이 무기의 복제품을 사용함"}],"trade":{"ids":{"explicit":["explicit.stat_2646007123"]}}} +{"ref":"Summoned Skeleton Warriors are Permanent and Follow you\nSummon Skeletons cannot Summon more than 1 Skeleton Warrior","better":1,"matchers":[{"string":"소환된 해골 전사가 영구적이며 플레이어를 따라다님\n해골 소환으로 해골 전사를 1마리 넘게 소환할 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_1021552211"]}}} +{"ref":"Summoned Skeletons have a #% chance to Cover Enemies in Ash on Hit","better":1,"matchers":[{"string":"소환된 해골이 명중 시#%의 확률로 적을 재로 덮음"},{"string":"소환된 해골이 명중 시 적을 재로 덮음","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3074608753"]}}} +{"ref":"Summoned Skeletons have Avatar of Fire","better":1,"matchers":[{"string":"소환된 해골이 불의 화신 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1958210928"]}}} +{"ref":"Summoned Skeletons take #% of their Maximum Life per second as Fire Damage","better":1,"matchers":[{"string":"소환된 해골이 1초마다 최대 생명력의 #%를 화염 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_2912438397"]}}} +{"ref":"Summoned Skitterbots have #% increased Area of Effect","better":1,"matchers":[{"string":"소환된 원격 기폭 장치의 효과 범위 #% 증가"},{"string":"소환된 원격 기폭 장치의 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2844839137"]}}} +{"ref":"Sunder has #% increased Area of Effect","better":1,"matchers":[{"string":"산산조각 효과 범위 #% 증가"},{"string":"산산조각 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3316767657"]}}} +{"ref":"Sunder has #% increased Damage","better":1,"matchers":[{"string":"산산조각 피해 #% 증가"},{"string":"산산조각 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4033078288"]}}} +{"ref":"Sunder has #% increased delay between Areas in the Wave","better":1,"matchers":[{"string":"산산조각의 파도 내 범위 사이의 지연시간 #% 증가"},{"string":"산산조각의 파도 내 범위 사이의 지연시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_40032620"]}}} +{"ref":"Supreme Decadence","better":1,"matchers":[{"string":"타락의 정점"}],"trade":{"ids":{"explicit":["explicit.stat_3215997147"]}}} +{"ref":"Supreme Ego","better":1,"matchers":[{"string":"자만의 정점"}],"trade":{"ids":{"explicit":["explicit.stat_1421267186"],"fractured":["fractured.stat_1421267186"],"scourge":["scourge.stat_1421267186"]}}} +{"ref":"Survival","better":1,"matchers":[{"string":"생존"}],"trade":{"ids":{"explicit":["explicit.stat_2995661301"]}}} +{"ref":"Sweep has a #% chance to grant an Endurance Charge on Hit","better":1,"matchers":[{"string":"휩쓸기로 명중 시 #%의 확률로 인내 충전 획득"},{"string":"휩쓸기로 명중 시 인내 충전 획득","value":100}],"trade":{"ids":{"enchant":["enchant.stat_609916976"]}}} +{"ref":"Take # Chaos Damage per Second during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 1초마다 # 카오스 피해를 받음"}],"trade":{"ids":{"explicit":["explicit.stat_308618188"]}}} +{"ref":"Take # Cold Damage on reaching Maximum Power Charges","better":1,"matchers":[{"string":"최대 권능 충전 도달 시 #의 냉기 피해 받음"}],"trade":{"ids":{"explicit":["explicit.stat_3664778308"]}}} +{"ref":"Take # Fire Damage per Second while Flame-Touched","better":1,"matchers":[{"string":"화염의 손길을 보유한 동안 1초당 #의 화염 피해를 받음"}],"trade":{"ids":{"explicit":["explicit.stat_3511992942"]}}} +{"ref":"Take # Fire Damage when you Ignite an Enemy","better":1,"matchers":[{"string":"적 점화 시 # 화염 피해를 받음"}],"trade":{"ids":{"explicit":["explicit.stat_2518598473"]}}} +{"ref":"Take # Lightning Damage when Herald of Thunder Hits an Enemy","better":1,"matchers":[{"string":"천둥의 전령으로 적 명중 시 #의 번개 피해 받음"}],"trade":{"ids":{"explicit":["explicit.stat_2007062029"]}}} +{"ref":"Take # Physical Damage per Second per Siphoning Charge if you've used a Skill Recently","better":1,"matchers":[{"string":"최근 4초 이내 스킬을 사용한 경우 착취 충전 하나당 1초마다 물리 피해 #를 받음"}],"trade":{"ids":{"explicit":["explicit.stat_2440172920"]}}} +{"ref":"Take # Physical Damage when you use a Movement Skill","better":1,"matchers":[{"string":"이동 스킬 사용 시 받는 물리 피해 #"}],"trade":{"ids":{"explicit":["explicit.stat_2590715472"]}}} +{"ref":"Take no Burning Damage if you've stopped taking Burning Damage Recently","better":1,"matchers":[{"string":"최근 4초 이내 받는 화상 피해가 끝난 경우 화상 피해를 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_2738190959"]}}} +{"ref":"Take no Extra Damage from Critical Strikes","better":1,"matchers":[{"string":"치명타로 받는 추가 피해 없음"}],"trade":{"ids":{"explicit":["explicit.stat_4294267596"]}}} +{"ref":"Take no Extra Damage from Critical Strikes if you have a Magic Ring in left slot","better":1,"matchers":[{"string":"왼쪽 슬롯에 마법 반지 장착 시 치명타로 받는 추가 피해 없음"}],"trade":{"ids":{"explicit":["explicit.stat_611839381"]}}} +{"ref":"Take no Extra Damage from Critical Strikes if you've cast Enfeeble in the past 10 seconds","better":1,"matchers":[{"string":"최근 10초 이내 쇠약화를 시전한 경우 치명타로 받는 추가 피해 없음"}],"trade":{"ids":{"explicit":["explicit.stat_4077357269"]}}} +{"ref":"Taking Chaos Damage over Time heals you instead while Leeching Life","better":1,"matchers":[{"string":"생명력 흡수 중 받는 지속 카오스 피해가 생명력 치유"}],"trade":{"ids":{"explicit":["explicit.stat_1971757986"]}}} +{"ref":"Taunts nearby Enemies on use","better":1,"matchers":[{"string":"사용 시 주변의 적 도발"}],"trade":{"ids":{"implicit":["implicit.stat_2005503156"]}}} +{"ref":"Tectonic Slam deals #% increased Damage","better":1,"matchers":[{"string":"지층 강타로 주는 피해 #% 증가"},{"string":"지층 강타로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3999206457"]}}} +{"ref":"Tectonic Slam has #% increased Area of Effect","better":1,"matchers":[{"string":"지층 강타의 효과 범위 #% 증가"},{"string":"지층 강타의 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_340193547"]}}} +{"ref":"Tectonic Slam has +#% fissure branching chance","better":1,"matchers":[{"string":"지층 강타의 균열 파생 확률 #%"}],"trade":{"ids":{"enchant":["enchant.stat_1522229796","enchant.stat_2462686988"]}}} +{"ref":"Tempest Shield chains an additional time","better":1,"matchers":[{"string":"폭풍의 방패 #회 추가 연쇄"},{"string":"폭풍의 방패 1회 추가 연쇄","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3096183736"]}}} +{"ref":"Tempest Shield has #% increased Buff Effect","better":1,"matchers":[{"string":"폭풍의 방패의 버프 효과 #% 증가"},{"string":"폭풍의 방패의 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2662416009"]}}} +{"ref":"Temporal Chains has #% reduced Effect on you","better":-1,"matchers":[{"string":"시간의 사슬이 플레이어에게 미치는 효과 #% 증가"},{"string":"시간의 사슬이 플레이어에게 미치는 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1152934561"]},"inverted":true}} +{"ref":"Temporal Chains has no Reservation if Cast as an Aura","better":1,"matchers":[{"string":"시간의 사슬이 오라의 형태로 시전되는 경우 점유 없음"}],"trade":{"ids":{"explicit":["explicit.stat_2100165275"]}}} +{"ref":"Temporal Rift has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"시간의 균열의 재사용 대기시간 회복 속도 #% 증가"}],"trade":{"ids":{"enchant":["enchant.stat_3614009195"]}}} +{"ref":"Temporal Rift has no Reservation","better":1,"matchers":[{"string":"시간의 균열로 인한 점유 없음"}],"trade":{"ids":{"explicit":["explicit.stat_2139238642"]}}} +{"ref":"The Agnostic","better":1,"matchers":[{"string":"불가지론자"}],"trade":{"ids":{"explicit":["explicit.stat_462691314"],"scourge":["scourge.stat_462691314"]}}} +{"ref":"The Effect of Chill on you is reversed","better":1,"matchers":[{"string":"플레이어에게 적용되는 냉각 효과 반전"}],"trade":{"ids":{"explicit":["explicit.stat_2955966707"]}}} +{"ref":"The Herald of the Scourge deals #% more Damage","better":1,"matchers":[{"string":"스컬지의 전령이 주는 피해 #% 증폭"},{"string":"스컬지의 전령이 주는 피해 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_2149490821"]}}} +{"ref":"The Herald of the Scourge drops an additional Forbidden Tome","better":1,"matchers":[{"string":"스컬지의 전령이 금지된 책 #개를 추가로 떨어뜨림"},{"string":"스컬지의 전령이 금지된 책 1개를 추가로 떨어뜨림","value":1}],"trade":{"ids":{"explicit":["sanctum.stat_3878191575"]}}} +{"ref":"The Herald of the Scourge drops Eternal Damnation","better":1,"matchers":[{"string":"스컬지의 전령이 영원한 지옥을 떨어뜨림"}],"trade":{"ids":{"explicit":["sanctum.stat_1059486105"]}}} +{"ref":"The Herald of the Scourge drops Sandstorm Visage","better":1,"matchers":[{"string":"스컬지의 전령이 모래 폭풍의 얼굴을 떨어뜨림"}],"trade":{"ids":{"explicit":["sanctum.stat_2995848279"]}}} +{"ref":"The Herald of the Scourge drops the Balance of Terror","better":1,"matchers":[{"string":"스컬지의 전령이 공포의 균형을 떨어뜨림"}],"trade":{"ids":{"explicit":["sanctum.stat_85125881"]}}} +{"ref":"The Herald of the Scourge drops the Original Sin","better":1,"matchers":[{"string":"스컬지의 전령이 원죄를 떨어뜨림"}],"trade":{"ids":{"explicit":["sanctum.stat_1133899331"]}}} +{"ref":"The Herald of the Scourge drops the Winds of Fate","better":1,"matchers":[{"string":"스컬지의 전령이 숙명의 바람을 떨어뜨림"}],"trade":{"ids":{"explicit":["sanctum.stat_4204412707"]}}} +{"ref":"The Herald of the Scourge takes #% more Damage","better":1,"matchers":[{"string":"스컬지의 전령이 받는 피해 #% 증폭"},{"string":"스컬지의 전령이 받는 피해 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_2226900052"]}}} +{"ref":"The Impaler","better":1,"matchers":[{"string":"꿰뚫는 자"}],"trade":{"ids":{"explicit":["explicit.stat_1441799693"],"fractured":["fractured.stat_1441799693"],"scourge":["scourge.stat_1441799693"]}}} +{"ref":"The Maven interferes with Players","better":1,"fromUberAreaMods":true,"matchers":[{"string":"메이븐이 플레이어를 방해함"}],"trade":{"ids":{"explicit":["explicit.stat_1594156261"],"fractured":["fractured.stat_1594156261"]}}} +{"ref":"The Merchant has an additional Choice","better":1,"matchers":[{"string":"상인이 선택지 #개 추가 보유"},{"string":"상인이 선택지 1개 추가 보유","value":1}],"trade":{"ids":{"explicit":["sanctum.stat_290775436"]}}} +{"ref":"The Ring takes no Cut","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"강탈단이 세금을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_616993076"],"fractured":["fractured.stat_616993076"]}}} +{"ref":"The Ring's Cut increased by #%","better":1,"matchers":[{"string":"강탈단 세금 #% 증가"},{"string":"강탈단 세금 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_293465345"],"fractured":["fractured.stat_293465345"]}}} +{"ref":"This item is destroyed when applied to a Sanctum","better":1,"matchers":[{"string":"이 아이템은 성역에 적용되면 파괴됨"}],"trade":{"ids":{"explicit":["sanctum.stat_3182333322"]}}} +{"ref":"This Jewel's Socket has #% increased effect per Allocated Passive Skill between\nit and your Class' starting location","better":1,"matchers":[{"string":"주얼 슬롯의 효과가 해당 슬롯과 직업의 시작 지점 사이에 할당된 패시브\n스킬 하나당 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_372478711"]}}} +{"ref":"This Weapon's Critical Strike Chance is 100%","better":1,"matchers":[{"string":"이 무기의 치명타 확률 100%"}],"trade":{"ids":{"explicit":["explicit.stat_1963540179"]}}} +{"ref":"Tora's Veiled","better":0,"matchers":[{"string":"토라의 장막의"}],"trade":{"ids":{"veiled":["veiled.mod_8541"]}}} +{"ref":"Tornado has #% increased Movement Speed","better":1,"matchers":[{"string":"회오리 이동 속도 #% 증가"},{"string":"회오리 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3713499406"]}}} +{"ref":"Total Recovery per second from Life Leech is Doubled","better":1,"matchers":[{"string":"생명력 흡수로 인한 초당 총 회복량 2배"}],"trade":{"ids":{"explicit":["explicit.stat_1277035917"]}}} +{"ref":"Totems cannot be Stunned","better":1,"matchers":[{"string":"토템 기절 면역"}],"trade":{"ids":{"explicit":["explicit.stat_335735137"]}}} +{"ref":"Totems fire # additional Projectile","better":1,"matchers":[{"string":"토템이 추가 투사체 #개 발사"}],"trade":{"ids":{"explicit":["explicit.stat_736847554"]}}} +{"ref":"Totems gain +#% to all Elemental Resistances","better":1,"matchers":[{"string":"토템의 모든 원소 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1809006367"],"implicit":["implicit.stat_1809006367"],"fractured":["fractured.stat_1809006367"],"scourge":["scourge.stat_1809006367"]}}} +{"ref":"Totems have #% additional Physical Damage Reduction","better":1,"matchers":[{"string":"토템이 받는 물리 피해 #% 추가 감소"}],"trade":{"ids":{"scourge":["scourge.stat_3616562963"]}}} +{"ref":"Totems Reflect #% of their maximum Life as Fire Damage to nearby Enemies when Hit","better":1,"matchers":[{"string":"피격 시 토템이 주변의 적에게 생명력 최대치의 #%를 화염 피해로 반사"}],"trade":{"ids":{"explicit":["explicit.stat_1723061251"]}}} +{"ref":"Totems Taunt Enemies around them for # second when Summoned","better":1,"matchers":[{"string":"토템 소환 시 토템이 주변의 적들을 #초 동안 도발"}],"trade":{"ids":{"explicit":["explicit.stat_2076876595"]}}} +{"ref":"Toxic Rain deals #% increased Damage","better":1,"matchers":[{"string":"맹독성 비가 주는 피해 #% 증가"},{"string":"맹독성 비가 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_865511246"]}}} +{"ref":"Toxic Rain fires # additional Arrow","better":1,"matchers":[{"string":"맹독성 비가 화살 #개 추가 발사"}],"trade":{"ids":{"enchant":["enchant.stat_2140127102"]}}} +{"ref":"Toxic Rain gains #% of Physical Damage as Extra Chaos Damage","better":1,"matchers":[{"string":"맹독성 비가 물리 피해의 #%를 추가 카오스 피해로 획득"}],"trade":{"ids":{"enchant":["enchant.stat_1798919988"]}}} +{"ref":"Transfiguration of Body","better":1,"matchers":[{"string":"육체의 변모"}],"trade":{"ids":{"explicit":["explicit.stat_881645355"]}}} +{"ref":"Transfiguration of Mind","better":1,"matchers":[{"string":"정신의 변모"}],"trade":{"ids":{"explicit":["explicit.stat_2571899044"]}}} +{"ref":"Transfiguration of Soul","better":1,"matchers":[{"string":"영혼의 변모"}],"trade":{"ids":{"explicit":["explicit.stat_3268519799"]}}} +{"ref":"Trap Skills have #% increased Skill Effect Duration","better":1,"matchers":[{"string":"덫 스킬의 스킬 효과 지속시간 #% 증가"},{"string":"덫 스킬의 스킬 효과 지속시간 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2546859843"]}}} +{"ref":"Traps and Mines deal # to # additional Physical Damage","better":1,"matchers":[{"string":"덫 및 지뢰가 주는 물리 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3391324703"]}}} +{"ref":"Traps and Mines have a #% chance to Poison on Hit","better":1,"matchers":[{"string":"덫 및 지뢰 명중 시 #%의 확률로 중독 유발"},{"string":"덫 및 지뢰 명중 시 중독 유발","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3192135716"]}}} +{"ref":"Traps cannot be triggered by Enemies","better":1,"matchers":[{"string":"덫이 적에 의해 발동되지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_1861759600"]}}} +{"ref":"Traps from Skills are thrown randomly around targeted location","better":1,"matchers":[{"string":"스킬의 덫이 목표 지점 주위에 무작위로 투척됨"}],"trade":{"ids":{"explicit":["explicit.stat_2727188901"]}}} +{"ref":"Traps from Socketed Skills create a Smoke Cloud when triggered","better":1,"matchers":[{"string":"발동 시 장착된 덫 스킬이 연막 생성"}],"trade":{"ids":{"explicit":["explicit.stat_1263384098"]}}} +{"ref":"Travel Skills other than Dash are Disabled","better":1,"matchers":[{"string":"질주 외의 이동 전용 스킬 비활성화"}],"trade":{"ids":{"explicit":["explicit.stat_3066073024"]}}} +{"ref":"Treats Enemy Monster Elemental Resistance values as inverted","better":1,"matchers":[{"string":"적 몬스터 원소 저항을 반대로 간주"}],"trade":{"ids":{"explicit":["explicit.stat_2750800428"]}}} +{"ref":"Trigger a Socketed Cold Spell on Melee Critical Strike, with a 0.25 second Cooldown","better":1,"matchers":[{"string":"근접 치명타 시 장착된 냉기 주문 발동, 재사용 대기시간 0.25초"}],"trade":{"ids":{"explicit":["explicit.stat_2295303426"]}}} +{"ref":"Trigger a Socketed Elemental Spell on Block, with a # second Cooldown","dp":true,"better":1,"matchers":[{"string":"막아낼 시 장착된 원소 주문 발동, 재사용 대기시간 #초"}],"trade":{"ids":{"explicit":["explicit.stat_3591112611"]}}} +{"ref":"Trigger a Socketed Fire Spell on Hit, with a # second Cooldown","dp":true,"better":1,"matchers":[{"string":"명중 시 장착된 화염 주문 발동, 재사용 대기시간 #초"}],"trade":{"ids":{"enchant":["enchant.stat_3676763995"]}}} +{"ref":"Trigger a Socketed Lightning Spell on Hit, with a 0.25 second Cooldown\nSocketed Lightning Spells have no Cost if Triggered","better":1,"matchers":[{"string":"명중 시 #의 확률로 장착된 번개 주문 발동, 재사용 대기시간 0.25초\n발동 시 장착된 번개 주문의 비용 소모 없음"},{"string":"명중 시 장착된 번개 주문 발동, 재사용 대기시간 0.25초\n발동 시 장착된 번개 주문의 비용 소모 없음","value":100}],"trade":{"ids":{"explicit":["explicit.stat_654971543"]}}} +{"ref":"Trigger a Socketed Spell on Using a Skill, with a # second Cooldown\nSpells Triggered this way have 150% more Cost","better":1,"matchers":[{"string":"스킬 사용 시 장착된 주문 발동, 재사용 대기시간 #초\n이렇게 발동된 주문의 비용 150% 증폭"}],"trade":{"ids":{"explicit":["explicit.stat_1582781759"],"fractured":["fractured.stat_1582781759"]}}} +{"ref":"Trigger Level # Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark","better":1,"matchers":[{"string":"징표가 없는 상태로 희귀 또는 고유 적 명중 시 #레벨 암살자의 징표 발동"}],"trade":{"ids":{"explicit":["explicit.stat_3382957283","explicit.stat_3924520095"]}}} +{"ref":"Trigger Level # Bone Nova when you Hit a Bleeding Enemy","better":1,"matchers":[{"string":"출혈 중인 적 명중 시 #레벨 뼈 폭발 발동"}],"trade":{"ids":{"explicit":["explicit.stat_2634885412"]}}} +{"ref":"Trigger Level # Bone Offering, Flesh Offering or Spirit Offering every 5 seconds\nOffering Skills Triggered this way also affect you","better":1,"matchers":[{"string":"5초마다 #레벨 뼈 공물, 살점 공물 또는 영혼 공물 발동\n이렇게 발동된 공물 스킬은 자신에게도 영향을 미침"}],"trade":{"ids":{"explicit":["explicit.stat_1663239249"]}}} +{"ref":"Trigger Level # Consecrate when you deal a Critical Strike","better":1,"matchers":[{"string":"치명타 명중 시 #레벨 신성화 발동"}],"trade":{"ids":{"explicit":["explicit.stat_899293871"]}}} +{"ref":"Trigger Level # Contaminate when you Kill an Enemy","better":1,"matchers":[{"string":"적 처치 시 #레벨 오염 발동"}],"trade":{"ids":{"explicit":["explicit.stat_3159312340"]}}} +{"ref":"Trigger Level # Death Aura when Equipped","better":1,"matchers":[{"string":"장착 시 #레벨 죽음의 오라 발동"}],"trade":{"ids":{"explicit":["explicit.stat_825352061"]}}} +{"ref":"Trigger Level # Elemental Warding on Melee Hit while Cursed","better":1,"matchers":[{"string":"저주에 걸린 동안 근접 명중 시 #레벨 원소의 수호 발동"}],"trade":{"ids":{"explicit":["explicit.stat_810166817"]}}} +{"ref":"Trigger Level # Feast of Flesh every 5 seconds","better":1,"matchers":[{"string":"5초마다 #레벨 육체의 연회 발동"}],"trade":{"ids":{"explicit":["explicit.stat_1024189516"]}}} +{"ref":"Trigger Level # Fiery Impact on Melee Hit with this Weapon","better":1,"matchers":[{"string":"이 무기로 근접 명중 시 #레벨 불타는 충격 발동"}],"trade":{"ids":{"implicit":["implicit.stat_1523888729"]}}} +{"ref":"Trigger Level # Flame Dash when you use a Socketed Skill","better":1,"matchers":[{"string":"장착된 스킬 사용 시 #레벨 화염 질주 발동"}],"trade":{"ids":{"implicit":["implicit.stat_1633778432"]}}} +{"ref":"Trigger Level # Fog of War when your Trap is triggered","better":1,"matchers":[{"string":"자신의 덫이 발동되면 #레벨 전장의 안개 발동"}],"trade":{"ids":{"explicit":["explicit.stat_208447205"]}}} +{"ref":"Trigger Level # Gore Shockwave on Melee Hit if you have at least 150 Strength","better":1,"matchers":[{"string":"힘이 150 이상인 경우 근접 명중 시 #레벨 선혈 충격파 발동"}],"trade":{"ids":{"explicit":["explicit.stat_252427115"]}}} +{"ref":"Trigger Level # Icicle Burst when you Hit a Frozen Enemy","better":1,"matchers":[{"string":"동결된 적 적중 시 #레벨 고드름 격발 발동"}],"trade":{"ids":{"explicit":["explicit.stat_1357672429"]}}} +{"ref":"Trigger Level # Intimidating Cry on Hit","better":1,"matchers":[{"string":"명중 시 #레벨 위협의 함성 발동"}],"trade":{"ids":{"explicit":["explicit.stat_1795756125"]}}} +{"ref":"Trigger Level # Intimidating Cry when you lose Cat's Stealth","better":1,"matchers":[{"string":"고양이의 은신 상실 시 #레벨 위협의 함성 발동"}],"trade":{"ids":{"explicit":["explicit.stat_3892608176"]}}} +{"ref":"Trigger Level # Lightning Bolt when you deal a Critical Strike","better":1,"matchers":[{"string":"치명타 명중 시 #레벨 낙뢰 발동"}],"trade":{"ids":{"explicit":["explicit.stat_3241494164"],"enchant":["enchant.stat_3241494164"]}}} +{"ref":"Trigger Level # Lightning Warp on Hit with this Weapon","better":1,"matchers":[{"string":"이 무기로 적 명중 시 #레벨 번개 차원 이동 발동"}],"trade":{"ids":{"explicit":["explicit.stat_1527893390"]}}} +{"ref":"Trigger Level # Rain of Arrows when you Attack with a Bow","better":1,"matchers":[{"string":"활 공격 시 #레벨 화살비 발동"}],"trade":{"ids":{"explicit":["explicit.stat_2935409762"]}}} +{"ref":"Trigger Level # Shield Shatter when you Block","better":1,"matchers":[{"string":"막아낼 시 #레벨 방패 파괴 발동"}],"trade":{"ids":{"explicit":["explicit.stat_401685616"]}}} +{"ref":"Trigger Level # Shock Ground on Hit","better":1,"matchers":[{"string":"명중 시 #레벨 충격 지면 발동"}],"trade":{"ids":{"enchant":["enchant.stat_2845525306"]}}} +{"ref":"Trigger Level # Shock Ground when Hit","better":1,"matchers":[{"string":"피격 시 #레벨 충격 지면 발동"}],"trade":{"ids":{"explicit":["explicit.stat_2668070396"]}}} +{"ref":"Trigger Level # Spirit Burst when you Use a Skill while you have a Spirit Charge","better":1,"matchers":[{"string":"혼백 충전이 있는 동안 스킬 사용 시 #레벨 혼백 격발 발동"}],"trade":{"ids":{"explicit":["explicit.stat_1992516007"]}}} +{"ref":"Trigger Level # Stalking Pustule on Kill","better":1,"matchers":[{"string":"처치 시 #레벨 농포 확산 발동"}],"trade":{"ids":{"explicit":["explicit.stat_1662669872"],"enchant":["enchant.stat_1662669872"]}}} +{"ref":"Trigger Level # Storm Cascade when you Attack","better":1,"matchers":[{"string":"공격 시 #레벨 태풍 폭포 발동"}],"trade":{"ids":{"explicit":["explicit.stat_818329660"]}}} +{"ref":"Trigger Level # Summon Phantasm Skill when you Consume a corpse","better":1,"matchers":[{"string":"시신 1구 소모 시 #레벨 환영 소환 스킬 발동"}],"trade":{"ids":{"explicit":["explicit.stat_3252082366"]}}} +{"ref":"Trigger Level # Summon Taunting Contraption when you use a Flask","better":1,"matchers":[{"string":"플라스크 사용 시 #레벨 도발 장치 소환 발동"}],"trade":{"ids":{"implicit":["implicit.stat_1774370437"]}}} +{"ref":"Trigger Level # Tawhoa's Chosen when you Attack with\na Non-Vaal Slam or Strike Skill near an Enemy","better":1,"matchers":[{"string":"플레이어가 적 주변에서 비-바알 강타 또는 타격 스킬로 공격 시 #레벨 타호아의 선택받은 자 발동"}],"trade":{"ids":{"explicit":["explicit.stat_3131535174"]}}} +{"ref":"Trigger Level # Toxic Rain when you Attack with a Bow","better":1,"matchers":[{"string":"활 공격 시 #레벨 맹독성 비 발동"}],"trade":{"ids":{"explicit":["explicit.stat_767464019"]}}} +{"ref":"Trigger Level # Unseen Strike every 0.5 seconds while Phasing","better":1,"matchers":[{"string":"차원 능력 상태에서 0.5초마다 #레벨 보이지 않는 일격 발동"}],"trade":{"ids":{"explicit":["explicit.stat_3165215973"]}}} +{"ref":"Trigger Level # Void Gaze when you use a Skill","better":1,"matchers":[{"string":"스킬 사용 시 #레벨 공허의 응시 발동"}],"trade":{"ids":{"explicit":["explicit.stat_1869144397"]}}} +{"ref":"Trigger Level 10 Summon Spectral Wolf on Kill","better":1,"matchers":[{"string":"처치 시 10레벨 영체 늑대 소환 발동"}],"trade":{"ids":{"explicit":["explicit.stat_1468606528"],"fractured":["fractured.stat_1468606528"],"enchant":["enchant.stat_1468606528"],"crafted":["crafted.stat_1468606528"]}}} +{"ref":"Trigger Level 20 Shade Form when Hit","better":1,"matchers":[{"string":"피격 시 #% 확률로 20레벨 그림자 형상 발동"},{"string":"피격 시 20레벨 그림자 형상 발동","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2603798371"]}}} +{"ref":"Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight","better":1,"matchers":[{"string":"새의 힘 또는 새의 비행 획득 시 20레벨 돌개바람 발동"}],"trade":{"ids":{"explicit":["explicit.stat_2554328719"]}}} +{"ref":"Trigger Socketed Minion Spells on Kill with this Weapon\nMinion Spells Triggered by this Item have a 0.25 second Cooldown with 5 Uses","better":1,"matchers":[{"string":"이 무기로 처치 시 #의 확률로 장착된 소환수 주문 발동\n이 아이템으로 발동되는 소환수 주문 5회 사용 시 재사용 대기시간 0.25초"},{"string":"이 무기로 처치 시 장착된 소환수 주문 발동\n이 아이템으로 발동되는 소환수 주문 5회 사용 시 재사용 대기시간 0.25초","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2816098341"]}}} +{"ref":"Triggered Spells deal #% increased Spell Damage","better":1,"matchers":[{"string":"발동형 주문으로 주는 주문 피해 #% 증가"},{"string":"발동형 주문으로 주는 주문 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3067892458"]}}} +{"ref":"Triggers Level # Abberath's Fury when Equipped","better":1,"matchers":[{"string":"장착 시 #레벨 아버라스의 광분 발동"}],"trade":{"ids":{"explicit":["explicit.stat_3250579936"]}}} +{"ref":"Triggers Level # Blinding Aura when Equipped","better":1,"matchers":[{"string":"장착 시 #레벨 실명의 오라 발동"}],"trade":{"ids":{"explicit":["explicit.stat_125312907"]}}} +{"ref":"Triggers Level # Cold Aegis when Equipped","better":1,"matchers":[{"string":"장착 시 #레벨 냉기의 비호 발동"}],"trade":{"ids":{"explicit":["explicit.stat_3918947537"]}}} +{"ref":"Triggers Level # Corpse Walk when Equipped","better":1,"matchers":[{"string":"장착 시 #레벨 시체 보행 발동"}],"trade":{"ids":{"explicit":["explicit.stat_779168081"],"fractured":["fractured.stat_779168081"]}}} +{"ref":"Triggers Level # Death Walk when Equipped","better":1,"matchers":[{"string":"장착 시 #레벨 죽음의 발걸음 발동"}],"trade":{"ids":{"explicit":["explicit.stat_651875072"]}}} +{"ref":"Triggers Level # Elemental Aegis when Equipped","better":1,"matchers":[{"string":"장착 시 #레벨 원소의 비호 발동"}],"trade":{"ids":{"explicit":["explicit.stat_2602585351"]}}} +{"ref":"Triggers Level # Fire Aegis when Equipped","better":1,"matchers":[{"string":"장착 시 #레벨 화염의 비호 발동"}],"trade":{"ids":{"explicit":["explicit.stat_1128763150"]}}} +{"ref":"Triggers Level # Lightning Aegis when Equipped","better":1,"matchers":[{"string":"장착 시 #레벨 번개의 비호 발동"}],"trade":{"ids":{"explicit":["explicit.stat_850729424"]}}} +{"ref":"Triggers Level # Manifest Dancing Dervishes on Rampage","better":1,"matchers":[{"string":"광란 시 #레벨 춤추는 수도승 출현 발동"}],"trade":{"ids":{"explicit":["explicit.stat_4007938693"]}}} +{"ref":"Triggers Level # Physical Aegis when Equipped","better":1,"matchers":[{"string":"장착 시 #레벨 물리 비호 발동"}],"trade":{"ids":{"explicit":["explicit.stat_1892084828"]}}} +{"ref":"Triggers Level # Reflection when Equipped","better":1,"matchers":[{"string":"장착 시 #레벨 투영 발동"}],"trade":{"ids":{"explicit":["explicit.stat_3451043685"]}}} +{"ref":"Triggers Level # Summon Arbalists when Equipped","better":1,"matchers":[{"string":"장착 시 #레벨 석궁병 소환 발동"}],"trade":{"ids":{"explicit":["explicit.stat_3664803307"]}}} +{"ref":"Triggers Level 20 Spectral Spirits when Equipped\n+# to maximum number of Spectral Spirits","better":1,"matchers":[{"string":"장착 시 20레벨 영체 혼백 발동\n영체 혼백의 최대 개수 #"}],"trade":{"ids":{"explicit":["explicit.stat_470688636"],"fractured":["fractured.stat_470688636"]}}} +{"ref":"Unaffected by Bleeding while affected by Malevolence","better":1,"matchers":[{"string":"악의의 영향을 받는 동안 출혈의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_4104891138"]}}} +{"ref":"Unaffected by Blind","better":1,"matchers":[{"string":"실명의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_4193902224"]}}} +{"ref":"Unaffected by Burning Ground","better":1,"matchers":[{"string":"용암 지대의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_1643688236"],"implicit":["implicit.stat_1643688236"],"fractured":["fractured.stat_1643688236"]}}} +{"ref":"Unaffected by Burning Ground while affected by Purity of Fire","better":1,"matchers":[{"string":"불의 순수함의 영향을 받는 동안 용암 지대의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_3308185931"]}}} +{"ref":"Unaffected by Chill","better":1,"matchers":[{"string":"냉각의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_937372143"]}}} +{"ref":"Unaffected by Chill while Leeching Mana","better":1,"matchers":[{"string":"마나를 흡수하는 동안 냉각의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_4014328139"]}}} +{"ref":"Unaffected by Chilled Ground","better":1,"matchers":[{"string":"얼음 지대의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_3653191834"],"implicit":["implicit.stat_3653191834"],"fractured":["fractured.stat_3653191834"]}}} +{"ref":"Unaffected by Chilled Ground while affected by Purity of Ice","better":1,"matchers":[{"string":"얼음의 순수함의 영향을 받는 동안 얼음 지대의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_2647344903"]}}} +{"ref":"Unaffected by Conductivity while affected by Purity of Lightning","better":1,"matchers":[{"string":"번개의 순수함의 영향을 받는 동안 전도성의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_1567542124"]}}} +{"ref":"Unaffected by Curses","better":1,"matchers":[{"string":"저주의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_3809896400"]}}} +{"ref":"Unaffected by Curses while affected by Zealotry","better":1,"matchers":[{"string":"열광의 영향을 받는 동안 저주의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_3403419549"]}}} +{"ref":"Unaffected by Damaging Ailments","better":1,"matchers":[{"string":"피해를 주는 상태 이상의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_1575046591"]}}} +{"ref":"Unaffected by Desecrated Ground","better":1,"matchers":[{"string":"훼손된 지대의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_4004298002"],"fractured":["fractured.stat_4004298002"]}}} +{"ref":"Unaffected by Elemental Weakness while affected by Purity of Elements","better":1,"matchers":[{"string":"원소의 순수함의 영향을 받는 동안 원소 약화의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_3223142064"]}}} +{"ref":"Unaffected by Enfeeble while affected by Grace","better":1,"matchers":[{"string":"은총의 영향을 받는 동안 쇠약화의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_2365917222"]}}} +{"ref":"Unaffected by Flammability while affected by Purity of Fire","better":1,"matchers":[{"string":"불의 순수함의 영향을 받는 동안 인화성의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_1173690938"]}}} +{"ref":"Unaffected by Frostbite while affected by Purity of Ice","better":1,"matchers":[{"string":"얼음의 순수함의 영향을 받는 동안 동상의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_4012281889"]}}} +{"ref":"Unaffected by Ignite","better":1,"matchers":[{"string":"점화의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_2635869389"]}}} +{"ref":"Unaffected by Ignite or Shock if Maximum Life and Maximum Mana are within 500","better":1,"matchers":[{"string":"최대 생명력과 최대 마나가 500 내일 경우 점화 또는 감전의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_2716882575"]}}} +{"ref":"Unaffected by Poison","better":1,"matchers":[{"string":"중독의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_1953432004"]}}} +{"ref":"Unaffected by Poison while affected by Malevolence","better":1,"matchers":[{"string":"악의의 영향을 받는 동안 중독의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_34059570"]}}} +{"ref":"Unaffected by Shock","better":1,"matchers":[{"string":"감전의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_1473289174"]}}} +{"ref":"Unaffected by Shock while Leeching Energy Shield","better":1,"matchers":[{"string":"에너지 보호막을 흡수하는 동안 감전의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_4102393882"]}}} +{"ref":"Unaffected by Shocked Ground","better":1,"matchers":[{"string":"감전 지대의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_2234049899"],"implicit":["implicit.stat_2234049899"],"fractured":["fractured.stat_2234049899"]}}} +{"ref":"Unaffected by Shocked Ground while affected by Purity of Lightning","better":1,"matchers":[{"string":"번개의 순수함의 영향을 받는 동안 감전 지대의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_2567659895"]}}} +{"ref":"Unaffected by Temporal Chains","better":1,"matchers":[{"string":"시간의 사슬의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_4212372504"]}}} +{"ref":"Unaffected by Temporal Chains while affected by Haste","better":1,"matchers":[{"string":"가속의 영향을 받는 동안 시간의 사슬의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_2806391472"]}}} +{"ref":"Unaffected by Vulnerability while affected by Determination","better":1,"matchers":[{"string":"결의의 영향을 받는 동안 취약성의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_3207781478"]}}} +{"ref":"Unearth Spawns corpses with +# Level","better":1,"matchers":[{"string":"발굴로 #레벨 시신 생성"}],"trade":{"ids":{"enchant":["enchant.stat_586167247"]}}} +{"ref":"Unholy Might","better":1,"matchers":[{"string":"불경한 힘"}],"trade":{"ids":{"explicit":["explicit.stat_1646760085"]}}} +{"ref":"Unholy Might during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 불경한 힘 획득"}],"trade":{"ids":{"explicit":["explicit.stat_207573834"]}}} +{"ref":"Unique Boss deals #% increased Damage","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"matchers":[{"string":"고유 보스가 주는 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_124877078"],"fractured":["fractured.stat_124877078"],"enchant":["enchant.stat_124877078"]}}} +{"ref":"Unique Boss drops an additional Harbinger Scroll","better":1,"matchers":[{"string":"고유 보스가 추가 선구자 주문서를 떨어뜨림"}],"trade":{"ids":{"explicit":["explicit.stat_1432093361"]}}} +{"ref":"Unique Boss has #% increased Area of Effect","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"matchers":[{"string":"고유 보스의 효과 범위 #% 증가"},{"string":"고유 보스의 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3040667106"],"fractured":["fractured.stat_3040667106"]}}} +{"ref":"Unique Boss has #% increased Attack and Cast Speed","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"matchers":[{"string":"고유 보스의 공격 및 시전 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2109106920"],"fractured":["fractured.stat_2109106920"]}}} +{"ref":"Unique Boss has #% increased Life","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"matchers":[{"string":"고유 보스의 생명력 #% 증가"},{"string":"고유 보스의 생명력 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1959158336"],"fractured":["fractured.stat_1959158336"],"enchant":["enchant.stat_1959158336"]}}} +{"ref":"Unique Bosses are Possessed","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"matchers":[{"string":"고유 보스가 사로잡힘"}],"trade":{"ids":{"explicit":["explicit.stat_2588474575"],"fractured":["fractured.stat_2588474575"]}}} +{"ref":"Unique Monsters drop Corrupted Items","better":1,"fromAreaMods":true,"matchers":[{"string":"고유 몬스터가 타락한 아이템을 떨어뜨림"}],"trade":{"ids":{"implicit":["implicit.stat_804187877"],"enchant":["enchant.stat_804187877"]}}} +{"ref":"Unique Monsters have a random Shrine Buff","better":1,"fromUberAreaMods":true,"matchers":[{"string":"고유 몬스터가 무작위 성소 버프 #개 보유"},{"string":"고유 몬스터가 무작위 성소 버프 1개 보유","value":1}],"trade":{"ids":{"explicit":["explicit.stat_872972810"],"fractured":["fractured.stat_872972810"]}}} +{"ref":"Unwavering Stance","better":1,"matchers":[{"string":"변함없는 자세"}],"trade":{"ids":{"explicit":["explicit.stat_1683578560"],"implicit":["implicit.stat_1683578560"],"scourge":["scourge.stat_1683578560"]}}} +{"ref":"Used when an adjacent Flask is used","better":1,"matchers":[{"string":"인접한 플라스크 사용 시 사용"}],"trade":{"ids":{"enchant":["enchant.stat_2219523244"]}}} +{"ref":"Used when Charges reach full","better":1,"matchers":[{"string":"충전이 가득 차면 사용"}],"trade":{"ids":{"enchant":["enchant.stat_3287581721"]}}} +{"ref":"Used when you become Chilled","better":1,"matchers":[{"string":"플레이어 냉각 시 사용"}],"trade":{"ids":{"enchant":["enchant.stat_3944779636"]}}} +{"ref":"Used when you become Frozen","better":1,"matchers":[{"string":"플레이어 동결 시 사용"}],"trade":{"ids":{"enchant":["enchant.stat_1691862754"]}}} +{"ref":"Used when you become Ignited","better":1,"matchers":[{"string":"플레이어 점화 시 사용"}],"trade":{"ids":{"enchant":["enchant.stat_585126960"]}}} +{"ref":"Used when you become Poisoned","better":1,"matchers":[{"string":"플레이어 중독 시 사용"}],"trade":{"ids":{"enchant":["enchant.stat_1412682799"]}}} +{"ref":"Used when you become Shocked","better":1,"matchers":[{"string":"플레이어 감전 시 사용"}],"trade":{"ids":{"enchant":["enchant.stat_3699444296"]}}} +{"ref":"Used when you Block","better":1,"matchers":[{"string":"막아낼 시 사용"}],"trade":{"ids":{"enchant":["enchant.stat_3831658908"]}}} +{"ref":"Used when you Hit a Rare or Unique Enemy, if not already in effect","better":1,"matchers":[{"string":"효과가 적용 중이지 않을 때 희귀 또는 고유 적 명중 시 사용"}],"trade":{"ids":{"enchant":["enchant.stat_2247138020"]}}} +{"ref":"Used when you start Bleeding","better":1,"matchers":[{"string":"출혈 시작 시 사용"}],"trade":{"ids":{"enchant":["enchant.stat_3676540188"]}}} +{"ref":"Used when you take a Savage Hit","better":1,"matchers":[{"string":"야만적인 타격에 피격 시 사용"}],"trade":{"ids":{"enchant":["enchant.stat_1914436944"]}}} +{"ref":"Used when you Use a Guard Skill","better":1,"matchers":[{"string":"수호 스킬 사용 시 사용"}],"trade":{"ids":{"enchant":["enchant.stat_3884539386"]}}} +{"ref":"Used when you use a Life Flask","better":1,"matchers":[{"string":"생명력 플라스크 사용 시 사용"}],"trade":{"ids":{"enchant":["enchant.stat_359574900"]}}} +{"ref":"Used when you Use a Travel Skill","better":1,"matchers":[{"string":"이동 전용 스킬 사용 시 사용"}],"trade":{"ids":{"enchant":["enchant.stat_1260843520"]}}} +{"ref":"Uses both hand slots","better":1,"matchers":[{"string":"무기 슬롯 양쪽 모두 사용"}],"trade":{"ids":{"explicit":["explicit.stat_2846730569"]}}} +{"ref":"Vaal Attack Skills you Use yourself Cost Rage instead of requiring Souls","better":1,"matchers":[{"string":"플레이어가 직접 사용하는 바알 공격 스킬이 영혼 대신 격노 소모"}],"trade":{"ids":{"explicit":["explicit.stat_1103075489"]}}} +{"ref":"Vaal Pact","better":1,"matchers":[{"string":"바알의 계약"}],"trade":{"ids":{"explicit":["explicit.stat_2257118425"],"scourge":["scourge.stat_2257118425"]}}} +{"ref":"Vaal Skills deal #% more Damage during Effect","better":1,"matchers":[{"string":"플라스크 효과를 받는 동안 바알 스킬로 주는 피해 #% 증폭"},{"string":"플라스크 효과를 받는 동안 바알 스킬로 주는 피해 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4147528862"]}}} +{"ref":"Vaal Skills have #% chance to regain consumed Souls when used","better":1,"matchers":[{"string":"바알 스킬 사용 시 #%의 확률로 소모한 영혼을 돌려받음"}],"trade":{"ids":{"explicit":["explicit.stat_2833218772"]}}} +{"ref":"Vaal Skills used during effect do not apply Soul Gain Prevention","better":1,"matchers":[{"string":"플라스크 효과를 받는 동안 바알 스킬의 영혼 획득 방지 미적용"}],"trade":{"ids":{"explicit":["explicit.stat_2344590267"]}}} +{"ref":"Vaal Skills used during effect have #% reduced Soul Gain Prevention Duration","better":-1,"matchers":[{"string":"플라스크 효과를 받는 동안 바알 스킬의 영혼 획득 방지 지속시간 #% 증가"},{"string":"플라스크 효과를 받는 동안 바알 스킬의 영혼 획득 방지 지속시간 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_902947445"]},"inverted":true}} +{"ref":"Vagan's Veiled","better":0,"matchers":[{"string":"베이건의 장막의"}],"trade":{"ids":{"veiled":["veiled.mod_14269"]}}} +{"ref":"Veiled","better":0,"matchers":[{"string":"장막"}],"trade":{"ids":{"veiled":["veiled.mod_65000"]}}} +{"ref":"Vengeance has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"복수의 재사용 대기시간 회복 속도 #% 증가"},{"string":"복수의 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1447427508"]}}} +{"ref":"Venom Gyre deals #% increased Damage","better":1,"matchers":[{"string":"독액 선회로 주는 피해 #% 증가"},{"string":"독액 선회로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1404787106"]}}} +{"ref":"Venom Gyre has a #% chance to inflict Withered for 2 seconds on Hit","better":1,"matchers":[{"string":"독액 선회 명중 시 #% 확률로 2초 동안 위축 유발"},{"string":"독액 선회 명중 시, 2초 동안 위축 유발","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2157671820"]}}} +{"ref":"Venom Gyre has a #% chance to keep each caught Projectile fired with Whirling Blades","better":1,"matchers":[{"string":"독액 선회의 붙잡은 투사체가 칼날 선회로 발사될 때 #% 확률로 유지됨"}],"trade":{"ids":{"enchant":["enchant.stat_2563177940"]}}} +{"ref":"Versatile Combatant","better":1,"matchers":[{"string":"유연한 전투원"}],"trade":{"ids":{"explicit":["explicit.stat_593845252"],"fractured":["fractured.stat_593845252"],"scourge":["scourge.stat_593845252"]}}} +{"ref":"Vigilant Strike has #% increased Fortification Duration","better":1,"matchers":[{"string":"경계 타격의 방어 상승 지속시간 #% 증가"},{"string":"경계 타격의 방어 상승 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2275055843"]}}} +{"ref":"Vitality has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"활력의 마나 점유 효율 #% 증가"},{"string":"활력의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1233806203","implicit.stat_3972739758"],"enchant":["enchant.stat_1233806203","enchant.stat_3972739758"]}}} +{"ref":"Vitality has no Reservation","better":1,"matchers":[{"string":"활력으로 인한 점유 없음"}],"trade":{"ids":{"explicit":["explicit.stat_438083873"]}}} +{"ref":"Void Sphere has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"공허 구체의 재사용 대기시간 회복 속도 #% 증가"}],"trade":{"ids":{"enchant":["enchant.stat_2690342765"]}}} +{"ref":"Void Sphere has #% increased Pulse Frequency","better":1,"matchers":[{"string":"공허 구체의 파동 빈도 #% 증가"},{"string":"공허 구체의 파동 빈도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2523663201"]}}} +{"ref":"Volatile Dead Consumes up to # additional corpse","better":1,"matchers":[{"string":"시체 불덩이가 시신 최대 #구 추가 소모"}],"trade":{"ids":{"enchant":["enchant.stat_3034788766"]}}} +{"ref":"Volcanic Fissure deals #% increased Damage","better":1,"matchers":[{"string":"화산 균열로 주는 피해 #% 증가"},{"string":"화산 균열로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1124690737"]}}} +{"ref":"Volcanic Fissure fires an additional Projectile","better":1,"matchers":[{"string":"화산 균열이 투사체 #개 추가 발사"},{"string":"화산 균열이 투사체 1개 추가 발사","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1460853241"]}}} +{"ref":"Volcanic Fissure travels #% faster","better":1,"matchers":[{"string":"화산 균열의 이동 속도 #% 가속"},{"string":"화산 균열의 이동 속도 #% 감속","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_373677479"]}}} +{"ref":"Voltaxic Burst deals #% increased Damage per 0.1 seconds of Duration","better":1,"matchers":[{"string":"전도성 격발이 지속시간 0.1초마다 주는 피해 #% 증가"},{"string":"전도성 격발이 지속시간 0.1초마다 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3472104870"]}}} +{"ref":"Vorici's Veiled","better":0,"matchers":[{"string":"보리치의 장막의"}],"trade":{"ids":{"veiled":["veiled.mod_47933"]}}} +{"ref":"Vortex has #% increased Area of Effect when Cast on Frostbolt","better":1,"matchers":[{"string":"서리 구체 시전 시 소용돌이의 효과 범위 #% 증가"},{"string":"서리 구체 시전 시 소용돌이의 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2295263113"]}}} +{"ref":"Vortex has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"소용돌이 재사용 대기시간 회복 속도 #% 증가"},{"string":"소용돌이 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2461424099"]}}} +{"ref":"Vulnerability has no Reservation if Cast as an Aura","better":1,"matchers":[{"string":"취약성이 오라의 형태로 시전되는 경우 점유 없음"}],"trade":{"ids":{"explicit":["explicit.stat_531868030"]}}} +{"ref":"War Banner has #% increased Aura Effect","better":1,"matchers":[{"string":"전쟁 깃발의 오라 효과 #% 증가"},{"string":"전쟁 깃발의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2592211591"]}}} +{"ref":"Warcries cannot Exert Travel Skills","better":1,"matchers":[{"string":"함성이 이동 전용 스킬을 전력 공격으로 사용하지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_2174134106"],"fractured":["fractured.stat_2174134106"],"crafted":["crafted.stat_2174134106"]}}} +{"ref":"Warcries Exert # additional Attack","better":1,"matchers":[{"string":"함성 사용 시 전력 공격 #회 추가"}],"trade":{"ids":{"implicit":["implicit.stat_1434716233"]}}} +{"ref":"Warcries grant # Rage per 5 Power if you have less than 25 Rage","better":1,"matchers":[{"string":"격노가 25 미만인 경우 함성이 위세 5당 #의 격노 생성"}],"trade":{"ids":{"explicit":["explicit.stat_3608339129"]}}} +{"ref":"Warcries grant Arcane Surge to you and Allies, with #% increased effect per 5 power, up to 50%","better":1,"matchers":[{"string":"함성이 플레이어와 동료들에게 비전 쇄도 부여, 비전 쇄도의 효과가 위세 5당 #% 증가, 최대 50%"}],"trade":{"ids":{"explicit":["explicit.stat_3399924348"]}}} +{"ref":"Warcries Knock Back and Interrupt Enemies in a smaller Area","better":1,"matchers":[{"string":"함성이 작은 범위에 있는 적을 밀어내고 시전을 방해함"}],"trade":{"ids":{"explicit":["explicit.stat_519622288"]}}} +{"ref":"Warcry Skills have #% increased Area of Effect","better":1,"matchers":[{"string":"함성 스킬의 효과 범위 #% 증가"},{"string":"함성 스킬의 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2567751411"],"fractured":["fractured.stat_2567751411"]}}} +{"ref":"Warcry Skills have +# seconds to Cooldown","better":1,"matchers":[{"string":"함성 스킬의 재사용 대기시간 #초"}],"trade":{"ids":{"implicit":["implicit.stat_1504905117"]}}} +{"ref":"Warcry Skills' Cooldown Time is 4 seconds","better":1,"matchers":[{"string":"함성 스킬의 재사용 대기시간 4초"}],"trade":{"ids":{"explicit":["explicit.stat_684268017"]}}} +{"ref":"Ward does not Break during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 수호가 깨지지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_80764074"]}}} +{"ref":"Wave of Conviction deals #% increased Damage","better":1,"matchers":[{"string":"신념의 파도로 주는 피해 #% 증가"},{"string":"신념의 파도로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_309198891"]}}} +{"ref":"Wave of Conviction has #% increased Duration","better":1,"matchers":[{"string":"신념의 파도 지속시간 #% 증가"},{"string":"신념의 파도 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2412561418"]}}} +{"ref":"Wave of Conviction's Exposure applies an extra +#% to Elemental Resistance","better":1,"matchers":[{"string":"신념의 파도의 노출이 원소 저항에 추가 #% 적용"}],"trade":{"ids":{"enchant":["enchant.stat_3139672534"]}}} +{"ref":"Weapons you Animate create an additional copy","better":1,"matchers":[{"string":"플레이어가 기동한 무기가 복제본 #개 추가 생성"},{"string":"플레이어가 기동한 무기가 복제본 1개 추가 생성","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1266553505"]}}} +{"ref":"When a fifth Impale is inflicted on a Player, Impales are removed to Reflect their Physical Damage multiplied by their remaining Hits to that Player and their Allies within 1.8 metres","better":1,"fromUberAreaMods":true,"matchers":[{"string":"플레이어에게 다섯 번째 꿰뚫기가 유발되면 꿰뚫기가 제거되고, 꿰뚫기의 물리 피해에 남은 명중 횟수를 곱한 만큼의 피해가 해당 플레이어 및 1.8미터 내의 동료들에게 반사됨"}],"trade":{"ids":{"explicit":["explicit.stat_1353527704"],"fractured":["fractured.stat_1353527704"]}}} +{"ref":"When an Enemy Hit deals Elemental Damage to you, their Resistance to those Elements becomes zero for 4 seconds","better":1,"matchers":[{"string":"적에게 피격되어 원소 피해를 받는 경우, 그 적의 해당 원소 저항이 4초 동안 0이 됨"}],"trade":{"ids":{"explicit":["explicit.stat_3714446071"]}}} +{"ref":"When Hit during effect, #% of Life loss from Damage taken occurs over 4 seconds instead","better":1,"matchers":[{"string":"효과를 받는 동안 피격 시, 받은 피해로 인한 생명력 상실량의 #%가 4초에 걸쳐 상실됨"}],"trade":{"ids":{"explicit":["explicit.stat_41860024"]}}} +{"ref":"When Hit, gain a random Movement Speed modifier from #% reduced to #% increased, until Hit again","better":-1,"matchers":[{"string":"피격 시 다시 피격당할 때까지 무작위 이동 속도 속성(#% 감소~#% 증가) 획득","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3281809492"]},"inverted":true}} +{"ref":"When used in the Synthesiser, the new item will have an additional Herald Modifier","better":1,"matchers":[{"string":"결합기에서 사용할 경우 새로운 아이템에 추가 전령 속성 부여"}],"trade":{"ids":{"explicit":["explicit.stat_3461563650"]}}} +{"ref":"When you Attack, take #% of Life as Physical Damage for\neach Warcry Exerting the Attack","better":1,"matchers":[{"string":"공격 시 해당 공격에 전력을 다하게 하는 함성 하나당 생명력의\n#%를 물리 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_1615324731"]}}} +{"ref":"When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage\nequal to #% of Sacrificed Mana for 4 seconds","better":1,"matchers":[{"string":"주문 시전 시, 모든 마나를 희생하여 번개 피해 최대치를 추가로 획득\n추가된 최대치는 4초 동안 희생된 마나의 #%와 동일"}],"trade":{"ids":{"explicit":["explicit.stat_820827484"]}}} +{"ref":"When you Kill a Magic Monster gain its Modifiers for 60 seconds","better":1,"matchers":[{"string":"마법 몬스터 처치 시 #%의 확률로 60초 동안 해당 몬스터의 속성 획득"},{"string":"마법 몬스터 처치 시 60초 동안 해당 몬스터의 속성 획득","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3976991498"]}}} +{"ref":"When you Kill a Rare Monster, #% chance to gain one of its Modifiers for 10 seconds","better":1,"matchers":[{"string":"희귀 몬스터 처치 시 #%의 확률로 10초 동안 해당 몬스터의 속성 중 1개 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2736829661"],"fractured":["fractured.stat_2736829661"]}}} +{"ref":"When you Kill a Rare monster, you gain its Modifiers for 60 seconds","better":1,"matchers":[{"string":"희귀 몬스터를 처치 시 60초 동안 해당 몬스터의 속성 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2913235441"]}}} +{"ref":"When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy","better":1,"matchers":[{"string":"감전된 적 처치 시 주변의 모든 적에게 동일한 감전 유발"}],"trade":{"ids":{"explicit":["explicit.stat_3462132936"]}}} +{"ref":"When you Kill an Enemy Cursed with a Non-Aura Hex, become Immune to\nCurses for remaining Hex Duration","better":1,"matchers":[{"string":"비-오라 사술 저주에 걸린 적 처치 시 사술의 남은 지속시간 동안\n저주에 면역"}],"trade":{"ids":{"explicit":["explicit.stat_1406092431"]}}} +{"ref":"When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy","better":1,"matchers":[{"string":"점화된 적 처치 시 주변의 모든 적에게 동일한 점화 피해"}],"trade":{"ids":{"explicit":["explicit.stat_2638352064"]}}} +{"ref":"When you leave your Banner's Area, recover #% of the Valour consumed for that Banner","better":1,"matchers":[{"string":"깃발의 범위를 떠날 시 해당 깃발에 소모한 기백의 #% 회복"}],"trade":{"ids":{"explicit":["explicit.stat_3906150898"]}}} +{"ref":"When you lose Temporal Chains you gain maximum Rage","better":1,"matchers":[{"string":"시간의 사슬이 사라질 때, 격노 최대치 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2174796794"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Aggravate Bleeding on targets you Hit with Attacks","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 공격 명중 시 #%의 확률로 대상의 출혈 가중"}],"trade":{"ids":{"implicit":["implicit.stat_466064970"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Frozen","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, #%의 확률로 동결 긴급회피"}],"trade":{"ids":{"implicit":["implicit.stat_2661498709"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Ignited","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, #%의 확률로 점화 긴급회피"}],"trade":{"ids":{"implicit":["implicit.stat_911929910"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Poisoned","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, #%의 확률로 중독 긴급회피"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 중독될 수 없음","value":100}],"trade":{"ids":{"implicit":["implicit.stat_2714750784"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Shocked","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, #%의 확률로 감전 긴급회피"}],"trade":{"ids":{"implicit":["implicit.stat_3823702653"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Stunned","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, #%의 확률로 기절 긴급회피"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 기절할 수 없음","value":100}],"trade":{"ids":{"implicit":["implicit.stat_990874979"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid Bleeding","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, #%의 확률로 출혈 긴급회피"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 출혈에 면역","value":100},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 출혈이 플레이어에게 유발될 수 없음","value":100}],"trade":{"ids":{"implicit":["implicit.stat_2610114836"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid Elemental Ailments","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, #%의 확률로 원소 상태 이상 긴급회피"}],"trade":{"ids":{"implicit":["implicit.stat_4241033239"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% Chance to Block Attack Damage","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, #%의 확률로 공격 피해를 막아냄"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 공격 피해 막기 확률 #%"}],"trade":{"ids":{"implicit":["implicit.stat_3326567914"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% Chance to Block Spell Damage","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, #%의 확률로 주문 피해를 막아냄"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 주문 피해 막기 확률 #%"}],"trade":{"ids":{"implicit":["implicit.stat_2996280658"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Extinguish Enemies on Hit","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 명중 시 #%의 확률로 적 소진 유발"}],"trade":{"ids":{"implicit":["implicit.stat_3854721949"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Freeze","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, #%의 확률로 동결 유발"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 명중 시 항상 동결 유발","value":100},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 항상 동결 유발","value":100}],"trade":{"ids":{"implicit":["implicit.stat_4146719724"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Hinder Enemies on Hit with Spells","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 주문 명중 시 #%의 확률로 적 이동 방해"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 주문 명중 시 적 이동 방해","value":100}],"trade":{"ids":{"implicit":["implicit.stat_604515066"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Ignite","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, #%의 확률로 점화 유발"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 항상 점화 유발","value":100}],"trade":{"ids":{"implicit":["implicit.stat_1030674088"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Impale Enemies on Hit with Attacks","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 공격 명중 시 #%의 확률로 적 꿰뚫음"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 공격 명중 시 적 꿰뚫음","value":100}],"trade":{"ids":{"implicit":["implicit.stat_2838459808"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Intimidate Enemies for 4 seconds on Hit","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 명중 시 #%의 확률로 4초 동안 적 위협"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 적중 시 #%의 확률로 4초 동안 적 위협"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 적중 시 4초 동안 적 위협","value":100}],"trade":{"ids":{"implicit":["implicit.stat_3004272949"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Poison on Hit","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 명중 시 #%의 확률로 중독 유발"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 명중 시 항상 중독 유발","value":100}],"trade":{"ids":{"implicit":["implicit.stat_532792006"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Shock","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, #%의 확률로 감전 유발"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 항상 감전 유발","value":100}],"trade":{"ids":{"implicit":["implicit.stat_2459490852"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Unnerve Enemies for 4 seconds on Hit","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 명중 시 #%의 확률로 4초 동안 적 낙담 유발"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 명중 시 4초 동안 적 낙담 유발","value":100}],"trade":{"ids":{"implicit":["implicit.stat_4018420421"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Action Speed","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 동작 속도 #% 감소"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 동작 속도 #% 증가","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2251857767"]},"inverted":true}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Arctic Armour Buff Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 한기의 방어구 버프 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 한기의 방어구 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3744585764"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Area of Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 효과 범위 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_568930056"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Armour","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 방어도 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 방어도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1371764251"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Armour from Equipped Helmet and Gloves","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 장착한 투구 및 장갑이 제공하는 방어도 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 장착한 투구 및 장갑이 제공하는 방어도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3330140563"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Attack Damage","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 공격 피해 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 공격 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3133935886"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Attack Speed","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 공격 속도 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2446980928"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Battlemage's Cry Buff Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 전투마법사의 함성 버프 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 전투마법사의 함성 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1455812442"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Blind Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 실명 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 실명 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4122616021"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Brand Attachment range","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 낙인 부착 범위 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 낙인 부착 범위 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2391109128"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Cast Speed","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 시전 속도 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4098747485"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Chaos Damage","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 카오스 피해 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 카오스 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2070979181"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Cold Damage","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 냉기 피해 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 냉기 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1576689223"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Conductivity Curse Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 전도성 저주 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 전도성 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2095999895"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 재사용 대기시간 회복 속도 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_668321613"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Cooldown Recovery Rate of Travel Skills","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 이동 전용 스킬의 재사용 대기시간 회복 속도 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 이동 전용 스킬의 재사용 대기시간 회복 속도#% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_850668052"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Critical Strike Chance for Attacks","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 공격 치명타 확률 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 공격 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1840069423"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per 100 Dexterity","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 민첩 100당 피해 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 민첩 100당 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1870591253"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per 100 Intelligence","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 지능 100당 피해 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 지능 100당 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2532279515"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per 100 Strength","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 힘 100당 피해 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 힘 100당 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3183308031"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per Endurance Charge","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 인내 충전 하나당 피해 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 인내 충전 하나당 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_740797388"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per Frenzy Charge","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 격분 충전 하나당 피해 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 격분 충전 하나당 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1855179125"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per Power Charge","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 권능 충전 하나당 피해 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 권능 충전 하나당 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2809284200"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Despair Curse Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 절망의 저주 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 절망의 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2775855429"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Duration of Ailments on Enemies","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 적에게 적용되는 상태 이상 지속시간 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 적에게 적용되는 상태 이상 지속시간 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_867827325"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Arcane Surge on you","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 자신에게 적용되는 비전 쇄도 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 자신에게 적용되는 비전 쇄도 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_664899091"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Buffs granted by your Golems","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 골렘이 제공하는 버프 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 골렘이 제공하는 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4128294206"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased effect of Non-Curse Auras from your Skills","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 자신의 비-저주 오라 스킬 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 자신의 비-저주 오라 스킬 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3788782813"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Non-Damaging Ailments","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 비-피해 상태 이상 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 비-피해 상태 이상 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1016769968"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Onslaught on you","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 플레이어에게 적용되는 맹공 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 플레이어에게 적용되는 맹공 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3209267362"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Carrion Golems","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 부패 골렘이 제공하는 버프 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 부패 골렘이 제공하는 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1080711147"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Chaos Golems","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 카오스 골렘의 버프 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 카오스 골렘의 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_510803146"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Flame Golems","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 화염 골렘이 제공하는 버프 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 화염 골렘이 제공하는 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_783010498"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Ice Golems","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 얼음 골렘이 제공하는 버프 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 얼음 골렘이 제공하는 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_168204696"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Lightning Golems","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 번개 골렘이 제공하는 버프 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 번개 골렘이 제공하는 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2527345629"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Stone Golems","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 돌 골렘이 제공하는 버프 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 돌 골렘이 제공하는 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_438468314"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of your Curses","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 플레이어가 시전하는 저주 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 플레이어가 시전하는 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1350472585"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of your Marks","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 플레이어의 징표 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 플레이어의 징표 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1138753695"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Elemental Weakness Curse Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 원소 약화 저주 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 원소 약화 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2029969019"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Elusive Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 도피 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 도피 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3173079195"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Energy Shield Recharge Rate","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 에너지 보호막 재충전 속도 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 에너지 보호막 재충전 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_26006636"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Energy Shield Recovery rate","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 에너지 보호막 회복 속도 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 에너지 보호막 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_92591094"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Enfeeble Curse Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 쇠약화 저주 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 쇠약화 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_38083709"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Evasion Rating","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 회피 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 회피 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2386062386"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Evasion Rating from Equipped Helmet and Boots","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 장착한 투구 및 장화가 제공하는 회피 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 장착한 투구 및 장화가 제공하는 회피 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2980409921"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Fire Damage","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 화염 피해 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 화염 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2782184338"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Flammability Curse Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 인화성 저주 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 인화성 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_323292443"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Frostbite Curse Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 동상 저주 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 동상 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2068042138"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Global Accuracy Rating","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 일반 정확도 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 일반 정확도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2086047206"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Global Physical Damage","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 일반 물리 피해 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 일반 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2545907302"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Life Recovery rate","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 생명력 회복 속도 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 생명력 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2761472996"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Life Regeneration rate","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 생명력 재생 속도 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 생명력 재생 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_498250787"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Lightning Damage","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 번개 피해 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 번개 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1328859059"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Recovery rate","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 마나 회복 속도 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 마나 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4117139221"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Regeneration Rate","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 마나 재생 속도 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 마나 재생 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4222133389"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Regeneration Rate per Power Charge","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 권능 충전 하나당 마나 재생 속도 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 권능 충전 하나당 마나 재생 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2425364074"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Reservation Efficiency of Skills","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 스킬의 마나 점유 효율 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 스킬의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4213793369"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased maximum Energy Shield","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 에너지 보호막 최대치 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 에너지 보호막 최대치 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1917716710"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Maximum Energy Shield from Equipped Gloves and Boots","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 장착한 장갑 및 장화가 제공하는 에너지 보호막 최대치 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 장착한 장갑 및 장화가 제공하는 에너지 보호막 최대치 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1388739249"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Mine Throwing Speed","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 지뢰 투척 속도 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 지뢰 투척 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3827973062"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Movement Speed","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 이동 속도 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1702124724"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Punishment Curse Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 응징 저주 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 응징 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_40584863"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Rallying Cry Buff Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 집결의 함성 버프 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 집결의 함성 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2063107864"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Skill Effect Duration","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 스킬 효과 지속시간 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 스킬 효과 지속시간 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2828309116"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Spell Critical Strike Chance","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 주문 치명타 확률 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 주문 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1412947753"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Spell Damage","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 주문 피해 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 주문 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_817495383"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Stun Threshold","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 기절 한계치 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 기절 한계치 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1513279759"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Temporal Chains Curse Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 시간의 사슬 저주 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 시간의 사슬 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3695602451"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Totem Placement speed","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 토템 설치 속도 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 토템 설치 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_100371300"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Trap Throwing Speed","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 덫 투척 속도 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 덫 투척 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_547463927"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Vulnerability Curse Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 취약성 저주 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 취약성 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1668340466"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Warcry Buff Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 함성 버프 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 함성 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_794753348"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Warcry Speed","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 함성 속도 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 함성 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2117066923"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Chaos Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 카오스 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"implicit":["implicit.stat_10259064"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Cold Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 냉기 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"implicit":["implicit.stat_339123312"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Cold Damage taken Recouped as Life","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 냉기 피해의 #%를 생명력으로 회생"}],"trade":{"ids":{"implicit":["implicit.stat_2181576428"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Damage is taken from Mana before Life","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 받는 피해의 #%를 생명력 대신 마나로 소모"}],"trade":{"ids":{"implicit":["implicit.stat_699673918"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Damage taken Recouped as Life","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 받은 피해의 #%를 생명력으로 회생"}],"trade":{"ids":{"implicit":["implicit.stat_2525287976"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Fire Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 화염 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"implicit":["implicit.stat_1954944666"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Fire Damage taken Recouped as Life","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 받은 화염 피해의 #%를 생명력으로 회생"}],"trade":{"ids":{"implicit":["implicit.stat_1613190388"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Lightning Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 번개 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"implicit":["implicit.stat_1896842319"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Lightning Damage taken Recouped as Life","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 받은 번개 피해의 #%를 생명력으로 회생"}],"trade":{"ids":{"implicit":["implicit.stat_3870554516"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Chaos Damage","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 물리 피해의 #%를 카오스 피해로 전환"}],"trade":{"ids":{"implicit":["implicit.stat_2204282073"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Cold Damage","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 물리 피해의 #%를 냉기 피해로 전환"}],"trade":{"ids":{"implicit":["implicit.stat_3567752586"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Fire Damage","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 물리 피해의 #%를 화염 피해로 전환"}],"trade":{"ids":{"implicit":["implicit.stat_3764409984"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Lightning Damage","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 물리 피해의 #%를 번개 피해로 전환"}],"trade":{"ids":{"implicit":["implicit.stat_3718361973"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Chaos Damage","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 피격 시 물리 피해의 #%를 카오스 피해로 받음"}],"trade":{"ids":{"implicit":["implicit.stat_3904394775"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Cold Damage","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 피격 시 물리 피해의 #%를 냉기 피해로 받음"}],"trade":{"ids":{"implicit":["implicit.stat_2466412811"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Fire Damage","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 피격 시 물리 피해의 #%를 화염 피해로 받음"}],"trade":{"ids":{"implicit":["implicit.stat_3995172058"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Lightning Damage","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 피격 시 물리 피해의 #%를 번개 피해로 받음"}],"trade":{"ids":{"implicit":["implicit.stat_3947691353"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 물리 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"implicit":["implicit.stat_2500914030"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage taken Recouped as Life","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 받은 물리 피해의 #%를 생명력으로 회생"}],"trade":{"ids":{"implicit":["implicit.stat_1300694383"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% reduced Effect of Shock on you","better":-1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 플레이어에게 적용되는 감전 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 플레이어에게 적용되는 감전 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_433740375"]},"inverted":true}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% reduced Enemy Stun Threshold","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 적 기절 한계치 #% 감소"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 적 기절 한계치 #% 증가","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2169620689"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% reduced Freeze Duration on you","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 플레이어에게 적용되는 동결 지속시간 #% 감소"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 플레이어에게 적용되는 동결 지속시간 #% 증가","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_928972227"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% reduced Ignite Duration on you","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 플레이어에게 적용되는 점화 지속시간 #% 감소"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 플레이어에게 적용되는 점화 지속시간 #% 증가","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3042217102"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% reduced Mana Cost of Attacks","better":-1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 공격의 마나 소모 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 공격의 마나 소모 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3671920033"]},"inverted":true}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% reduced Reflected Damage taken","better":-1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 받는 피해 반사 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 받는 피해 반사 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3178090061"]},"inverted":true}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +# to Accuracy Rating per Frenzy Charge","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 격분 충전 하나당 정확도 #"}],"trade":{"ids":{"implicit":["implicit.stat_490830332"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% chance to Suppress Spell Damage","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 주문 피해 억제 확률 #%"}],"trade":{"ids":{"implicit":["implicit.stat_2998245080"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to all Elemental Resistances","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 모든 원소 저항 #%"}],"trade":{"ids":{"implicit":["implicit.stat_2251516251"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to all maximum Resistances","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 모든 저항 최대치 #%"}],"trade":{"ids":{"implicit":["implicit.stat_673499528"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to Chaos Damage over Time Multiplier","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 지속 카오스 피해 배율 #%"}],"trade":{"ids":{"implicit":["implicit.stat_2163155983"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to Chaos Resistance","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 카오스 저항 #%"}],"trade":{"ids":{"implicit":["implicit.stat_74135418"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to Cold Damage over Time Multiplier","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 지속 냉기 피해 배율 #%"}],"trade":{"ids":{"implicit":["implicit.stat_2619970520"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to Cold Resistance","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 냉기 저항 #%"}],"trade":{"ids":{"implicit":["implicit.stat_3864103630"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to Critical Strike Multiplier for Attack Damage","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 공격 피해의 치명타 피해 배율 #%"}],"trade":{"ids":{"implicit":["implicit.stat_2825010848"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to Critical Strike Multiplier for Spell Damage","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 주문 피해의 치명타 피해 배율 #%"}],"trade":{"ids":{"implicit":["implicit.stat_2955927568"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to Fire Damage over Time Multiplier","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 지속 화염 피해 배율 #%"}],"trade":{"ids":{"implicit":["implicit.stat_1870961528"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to Fire Resistance","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 화염 저항 #%"}],"trade":{"ids":{"implicit":["implicit.stat_1299790658"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to Lightning Resistance","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 번개 저항 #%"}],"trade":{"ids":{"implicit":["implicit.stat_3980173235"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to maximum Chaos Resistance","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 카오스 저항 최대치 #%"}],"trade":{"ids":{"implicit":["implicit.stat_944522962"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to maximum Cold Resistance","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 냉기 저항 최대치 #%"}],"trade":{"ids":{"implicit":["implicit.stat_3415855998"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to maximum Fire Resistance","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 화염 저항 최대치 #%"}],"trade":{"ids":{"implicit":["implicit.stat_1133929401"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to maximum Lightning Resistance","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 번개 저항 최대치 #%"}],"trade":{"ids":{"implicit":["implicit.stat_4136085904"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to Physical Damage over Time Multiplier","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 지속 물리 피해 배율 #%"}],"trade":{"ids":{"implicit":["implicit.stat_4084536353"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per # Dexterity","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 민첩 #당 받는 피해 1% 감폭"}],"trade":{"ids":{"implicit":["implicit.stat_2216092051"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per # Intelligence","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 지능 #당 받는 피해 1% 감폭"}],"trade":{"ids":{"implicit":["implicit.stat_3801851872"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per # Strength","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 힘 #당 받는 피해 1% 감폭"}],"trade":{"ids":{"implicit":["implicit.stat_125264229"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Adds # to # Chaos Damage to Attacks","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 공격 시 카오스 피해 #~# 추가"}],"trade":{"ids":{"implicit":["implicit.stat_3953801646"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Adds # to # Chaos Damage to Spells","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 주문 시전 시 카오스 피해 #~# 추가"}],"trade":{"ids":{"implicit":["implicit.stat_3206883665"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Adds # to # Cold Damage to Attacks","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 공격 시 냉기 피해 #~# 추가"}],"trade":{"ids":{"implicit":["implicit.stat_1016130575"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Adds # to # Cold Damage to Spells","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 주문 시전 시 냉기 피해 #~# 추가"}],"trade":{"ids":{"implicit":["implicit.stat_3349767748"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Adds # to # Fire Damage to Attacks","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 공격 시 화염 피해 #~# 추가"}],"trade":{"ids":{"implicit":["implicit.stat_3972399670"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Adds # to # Fire Damage to Spells","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 주문 시전 시 화염 피해 #~# 추가"}],"trade":{"ids":{"implicit":["implicit.stat_3954869480"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Adds # to # Lightning Damage to Attacks","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 공격 시 번개 피해 #~# 추가"}],"trade":{"ids":{"implicit":["implicit.stat_2925105924"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Adds # to # Lightning Damage to Spells","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 주문 시전 시 번개 피해 #~# 추가"}],"trade":{"ids":{"implicit":["implicit.stat_3874289"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Adds # to # Physical Damage to Attacks","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 공격 시 물리 피해 #~# 추가"}],"trade":{"ids":{"implicit":["implicit.stat_3477311591"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Adds # to # Physical Damage to Spells","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 주문 시전 시 물리 피해 #~# 추가"}],"trade":{"ids":{"implicit":["implicit.stat_485268361"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Anger has #% increased Aura Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 분노의 오라 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 분노의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1167349834"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal #% increased Damage","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 선대의 함성으로 인한 전력 공격이 주는 피해 #% 증가"}],"trade":{"ids":{"implicit":["implicit.stat_1799586622"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal #% increased Damage","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 지진 함성으로 인한 전력 공격이 주는 피해 #% 증가"}],"trade":{"ids":{"implicit":["implicit.stat_1714653952"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Attacks have #% chance to cause Bleeding","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 공격으로 출혈 유발 불가","value":-1},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 공격 시 #%의 확률로 출혈 유발"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 공격 시 출혈 유발","value":100}],"trade":{"ids":{"implicit":["implicit.stat_4014428128"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Attacks have #% chance to Maim on Hit","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 공격 명중 시 #%의 확률로 힘줄 절단"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 명중 시 항상 힘줄 절단 유발","value":100}],"trade":{"ids":{"implicit":["implicit.stat_4065516297"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage #% faster","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 플레이어가 유발한 출혈이 피해 #% 가속"}],"trade":{"ids":{"implicit":["implicit.stat_4106235309"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Bone Offering has #% increased Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 뼈 공물의 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 뼈 공물의 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3774100463"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates #% Cold Resistance","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 피해가 냉기 저항 #% 관통"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 플레이어가 적중 시 냉기 저항을 실제 값보다 #% 높게 취급","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_403285636"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates #% Fire Resistance","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 피해가 화염 저항 #% 관통"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 플레이어가 명중 시 화염 저항을 실제 값보다 #% 높게 취급","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1175129684"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates #% Lightning Resistance","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 피해가 번개 저항 #% 관통"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 플레이어가 명중 시 번개 저항을 실제 값보다 #% 높게 취급","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_550672859"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Determination has #% increased Aura Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 결의의 오라 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 결의의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1324460486"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Discipline has #% increased Aura Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 단련의 오라 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 단련의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2752131673"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting # seconds","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 이동 중 #초 동안 지속되는 허약의 지대 생성"}],"trade":{"ids":{"implicit":["implicit.stat_235328972"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting # seconds","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 이동 중 #초 동안 지속되는 활력 감소의 지대 생성"}],"trade":{"ids":{"implicit":["implicit.stat_1296291315"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting # seconds","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 이동 중 #초 동안 지속되는 그을린 지대 생성"}],"trade":{"ids":{"implicit":["implicit.stat_4054012096"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 인내의 함성의 재사용 대기시간 회복 속도 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 인내의 함성의 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_906749304"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have #% reduced Life Regeneration rate","better":-1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 최근 4초 이내 명중한 적의 생명력 재생 속도 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 최근 4초 이내 명중한 적의 생명력 재생 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3407071583"]},"inverted":true}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal #% increased Damage","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 전력 공격이 주는 피해 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 전력 공격이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_376260015"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have #% increased Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 자신에게 적용된 플라스크의 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 자신에게 적용된 플라스크의 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4155771029"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Flasks gain # Charges every 3 seconds","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 3초마다 플라스크 # 충전"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 3초마다 플라스크 1 충전","value":1}],"trade":{"ids":{"implicit":["implicit.stat_1519845279"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has #% increased Area of Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 육체와 돌의 효과 범위 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 육체와 돌의 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3393490212"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has #% increased Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 살점 공물의 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 살점 공물의 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_862077496"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within # metre","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 플레이어가 유발한 동결이 #미터 내의 다른 적에게 확산"}],"trade":{"ids":{"implicit":["implicit.stat_1436051850"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Gain # Rage on Attack Hit","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 공격 명중 시 격노 # 획득"}],"trade":{"ids":{"implicit":["implicit.stat_3509416536"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Chaos Damage","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 물리 피해의 #%를 추가 카오스 피해로 획득"}],"trade":{"ids":{"implicit":["implicit.stat_3490650294"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Cold Damage","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 물리 피해의 #%를 추가 냉기 피해로 획득"}],"trade":{"ids":{"implicit":["implicit.stat_1425454108"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Fire Damage","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 물리 피해의 #%를 추가 화염 피해로 획득"}],"trade":{"ids":{"implicit":["implicit.stat_1335630001"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Lightning Damage","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 물리 피해의 #%를 추가 번개 피해로 획득"}],"trade":{"ids":{"implicit":["implicit.stat_632297605"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every # seconds","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, #초마다 격분 충전 획득"}],"trade":{"ids":{"implicit":["implicit.stat_560848642"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every # seconds","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, #초마다 권능 충전 획득"}],"trade":{"ids":{"implicit":["implicit.stat_2703923310"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every # seconds","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, #초마다 인내 충전 획득"}],"trade":{"ids":{"implicit":["implicit.stat_951862199"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, General's Cry has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 장군의 함성의 재사용 대기시간 회복 속도 #% 증가"}],"trade":{"ids":{"implicit":["implicit.stat_133006298"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Grace has #% increased Aura Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 은총의 오라 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 은총의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_81526858"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Haste has #% increased Aura Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 가속의 오라 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 가속의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1065477979"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Hatred has #% increased Aura Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 증오의 오라 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 증오의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1253537227"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has #% increased Buff Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 고통의 전령 버프 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 고통의 전령 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3001066983"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has #% increased Buff Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 재의 전령 버프 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 재의 전령 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3045509476"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has #% increased Buff Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 얼음의 전령 버프 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 얼음의 전령 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1609260458"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has #% increased Buff Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 순수의 전령 버프 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 순수의 전령 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3005679448"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has #% increased Buff Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 천둥의 전령 버프 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 천둥의 전령 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1553385903"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Hits have #% chance to ignore Enemy Physical Damage Reduction","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 명중 시 #%의 확률로 적 몬스터 물리 피해 감소를 무시"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 명중 시 적 몬스터 물리 피해 감소를 무시","value":100}],"trade":{"ids":{"implicit":["implicit.stat_4022700734"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage #% faster","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 플레이어가 유발한 점화가 피해 #% 가속"}],"trade":{"ids":{"implicit":["implicit.stat_1053495752"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within # metre","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 플레이어가 유발한 점화가 #미터 내의 다른 적에게 확산"}],"trade":{"ids":{"implicit":["implicit.stat_3343791355"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has #% increased Area of Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 지옥불 함성의 효과 범위 #% 증가"}],"trade":{"ids":{"implicit":["implicit.stat_1774377226"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying #% to Cold Resistance","better":-1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 명중 시 냉기 노출을 유발하여 냉기 저항 #% 적용"}],"trade":{"ids":{"implicit":["implicit.stat_3658662726"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying #% to Fire Resistance","better":-1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 명중 시 화염 노출을 유발하여 화염 저항 #% 적용"}],"trade":{"ids":{"implicit":["implicit.stat_1629531681"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying #% to Lightning Resistance","better":-1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 명중 시 번개 노출을 유발하여 번개 저항 #% 적용"}],"trade":{"ids":{"implicit":["implicit.stat_1762412317"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 위협의 함성의 재사용 대기시간 회복 속도 #% 증가"}],"trade":{"ids":{"implicit":["implicit.stat_3945581778"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Malevolence has #% increased Aura Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 악의의 오라 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 악의의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1033279468"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Melee Hits Fortify","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 근접 명중 시 #%의 확률로 방어 상승"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 근접 명중 시 방어 상승","value":100}],"trade":{"ids":{"implicit":["implicit.stat_298106626"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Minions deal #% increased Damage","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 소환수가 주는 피해 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 소환수가 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3141084961"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Minions have #% increased maximum Life","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 소환수의 최대 생명력 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 소환수의 최대 생명력 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4057257145"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Minions have #% increased Movement Speed","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 소환수의 이동 속도 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 소환수의 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2809900883"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Minions take #% reduced Reflected Damage","better":-1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 소환수가 받는 반사 피해 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 소환수가 받는 반사 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_505327219"]},"inverted":true}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target # additional nearby Enemy","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 비-바알 타격 스킬이 주변 적 #명을 추가 대상으로 삼음"}],"trade":{"ids":{"implicit":["implicit.stat_1884100040"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage #% faster","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 플레이어가 유발한 중독이 피해 #% 가속"}],"trade":{"ids":{"implicit":["implicit.stat_995369618"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Pride has #% increased Aura Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 자부심의 오라 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 자부심의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2163876658"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce # additional Targets","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 투사체가 대상 #개를 추가 관통"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 투사체가 대상을 추가 관통","value":1}],"trade":{"ids":{"implicit":["implicit.stat_4045839821"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has #% increased Aura Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 원소의 순수함의 오라 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 원소의 순수함의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_221690080"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has #% increased Aura Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 불의 순수함의 오라 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 불의 순수함의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2034940983"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has #% increased Aura Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 얼음의 순수함의 오라 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 얼음의 순수함의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3786274521"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has #% increased Aura Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 번개의 순수함의 오라 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 번개의 순수함의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1445513967"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Regenerate #% of Life per second per Endurance Charge","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 인내 충전 하나당 1초마다 생명력의 #% 재생"}],"trade":{"ids":{"implicit":["implicit.stat_3225230656"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within # metre","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 플레이어가 유발한 감전이 #미터 내의 다른 적에게 확산"}],"trade":{"ids":{"implicit":["implicit.stat_2218095219"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has #% increased Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 영혼 공물의 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 영혼 공물의 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2399066987"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has #% increased Buff Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 폭풍의 방패의 버프 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 폭풍의 방패의 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2601015548"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires #% faster","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 플레이어가 유발하는 위축의 만료 #% 가속"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 플레이어가 유발하는 위축의 만료 #% 감속","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3457821036"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Wrath has #% increased Aura Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 진노의 오라 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 진노의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1850144024"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Your Offerings have #% increased Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 공물 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 자신의 공물의 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 공물 효과 #% 감소","negate":true},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 자신의 공물의 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2526554500"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Zealotry has #% increased Aura Effect","better":1,"matchers":[{"string":"최종 아틀라스 보스가 접근해 있는 동안, 열광의 오라 효과 #% 증가"},{"string":"최종 아틀라스 보스가 접근해 있는 동안, 열광의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2293353005"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Aggravate Bleeding on targets you Hit with Attacks","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 공격 명중 시 #%의 확률로 대상의 출혈 가중"}],"trade":{"ids":{"implicit":["implicit.stat_2543125349"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Avoid being Frozen","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, #%의 확률로 동결 긴급회피"}],"trade":{"ids":{"implicit":["implicit.stat_3887072924"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Avoid being Ignited","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, #%의 확률로 점화 긴급회피"}],"trade":{"ids":{"implicit":["implicit.stat_2796083262"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Avoid being Poisoned","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, #%의 확률로 중독 긴급회피"},{"string":"고유 적이 접근해 있는 동안, 중독될 수 없음","value":100}],"trade":{"ids":{"implicit":["implicit.stat_3553907672"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Avoid being Shocked","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, #%의 확률로 감전 긴급회피"}],"trade":{"ids":{"implicit":["implicit.stat_3401199213"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Avoid being Stunned","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, #%의 확률로 기절 긴급회피"},{"string":"고유 적이 접근해 있는 동안, 기절할 수 없음","value":100}],"trade":{"ids":{"implicit":["implicit.stat_3322913142"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Avoid Bleeding","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, #%의 확률로 출혈 긴급회피"},{"string":"고유 적이 접근해 있는 동안, 출혈에 면역","value":100},{"string":"고유 적이 접근해 있는 동안, 출혈이 플레이어에게 유발될 수 없음","value":100}],"trade":{"ids":{"implicit":["implicit.stat_2651293339"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Avoid Elemental Ailments","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, #%의 확률로 원소 상태 이상 긴급회피"}],"trade":{"ids":{"implicit":["implicit.stat_3264420229"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% Chance to Block Attack Damage","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, #%의 확률로 공격 피해를 막아냄"},{"string":"고유 적이 접근해 있는 동안, 공격 피해 막기 확률 #%"}],"trade":{"ids":{"implicit":["implicit.stat_725501141"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% Chance to Block Spell Damage","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, #%의 확률로 주문 피해를 막아냄"},{"string":"고유 적이 접근해 있는 동안, 주문 피해 막기 확률 #%"}],"trade":{"ids":{"implicit":["implicit.stat_1358320252"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Extinguish Enemies on Hit","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 명중 시 #%의 확률로 적 소진 유발"}],"trade":{"ids":{"implicit":["implicit.stat_4163073767"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Freeze","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, #%의 확률로 동결 유발"},{"string":"고유 적이 접근해 있는 동안, 명중 시 항상 동결 유발","value":100},{"string":"고유 적이 접근해 있는 동안, 항상 동결 유발","value":100}],"trade":{"ids":{"implicit":["implicit.stat_1096728982"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Hinder Enemies on Hit with Spells","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 주문 명중 시 #%의 확률로 적 이동 방해"},{"string":"고유 적이 접근해 있는 동안, 주문 명중 시 적 이동 방해","value":100}],"trade":{"ids":{"implicit":["implicit.stat_3423886807"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Ignite","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, #%의 확률로 점화 유발"},{"string":"고유 적이 접근해 있는 동안, 항상 점화 유발","value":100}],"trade":{"ids":{"implicit":["implicit.stat_874990741"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Impale Enemies on Hit with Attacks","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 공격 명중 시 #%의 확률로 적 꿰뚫음"},{"string":"고유 적이 접근해 있는 동안, 공격 명중 시 적 꿰뚫음","value":100}],"trade":{"ids":{"implicit":["implicit.stat_2391907787"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Intimidate Enemies for 4 seconds on Hit","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 명중 시 #%의 확률로 4초 동안 적 위협"},{"string":"고유 적이 접근해 있는 동안, 적중 시 #%의 확률로 4초 동안 적 위협"},{"string":"고유 적이 접근해 있는 동안, 적중 시 4초 동안 적 위협","value":100}],"trade":{"ids":{"implicit":["implicit.stat_144453866"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Poison on Hit","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 명중 시 #%의 확률로 중독 유발"},{"string":"고유 적이 접근해 있는 동안, 명중 시 항상 중독 유발","value":100}],"trade":{"ids":{"implicit":["implicit.stat_2433754249"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Shock","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, #%의 확률로 감전 유발"},{"string":"고유 적이 접근해 있는 동안, 항상 감전 유발","value":100}],"trade":{"ids":{"implicit":["implicit.stat_2621869142"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Unnerve Enemies for 4 seconds on Hit","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 명중 시 #%의 확률로 4초 동안 적 낙담 유발"},{"string":"고유 적이 접근해 있는 동안, 명중 시 4초 동안 적 낙담 유발","value":100}],"trade":{"ids":{"implicit":["implicit.stat_1708506642"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Action Speed","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 동작 속도 #% 감소"},{"string":"고유 적이 접근해 있는 동안, 동작 속도 #% 증가","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1829486532"]},"inverted":true}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Arctic Armour Buff Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 한기의 방어구 버프 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 한기의 방어구 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4047779849"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Area of Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 효과 범위 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1847660463"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Armour","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 방어도 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 방어도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1980216452"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Armour from Equipped Helmet and Gloves","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 장착한 투구 및 장갑이 제공하는 방어도 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 장착한 투구 및 장갑이 제공하는 방어도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1586470077"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Attack Damage","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 공격 피해 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 공격 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4061200499"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Attack Speed","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 공격 속도 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3401410854"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Battlemage's Cry Buff Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 전투마법사의 함성 버프 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 전투마법사의 함성 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3173180145"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Blind Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 실명 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 실명 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_886650454"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Brand Attachment range","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 낙인 부착 범위 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 낙인 부착 범위 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_636616197"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Cast Speed","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 시전 속도 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2016247664"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Chaos Damage","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 카오스 피해 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 카오스 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2875239648"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Cold Damage","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 냉기 피해 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 냉기 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2127607252"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Conductivity Curse Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 전도성 저주 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 전도성 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3547319552"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 재사용 대기시간 회복 속도 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2491353340"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Cooldown Recovery Rate of Travel Skills","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 이동 전용 스킬의 재사용 대기시간 회복 속도 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 이동 전용 스킬의 재사용 대기시간 회복 속도#% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2986495340"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Critical Strike Chance for Attacks","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 공격 치명타 확률 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 공격 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3710240762"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Damage per 100 Dexterity","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 민첩 100당 피해 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 민첩 100당 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_535580777"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Damage per 100 Intelligence","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 지능 100당 피해 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 지능 100당 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1894390763"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Damage per 100 Strength","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 힘 100당 피해 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 힘 100당 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4224921626"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Damage per Endurance Charge","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 인내 충전 하나당 피해 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 인내 충전 하나당 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2193147166"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Damage per Frenzy Charge","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 격분 충전 하나당 피해 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 격분 충전 하나당 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2415020123"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Damage per Power Charge","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 권능 충전 하나당 피해 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 권능 충전 하나당 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1394771132"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Despair Curse Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 절망의 저주 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 절망의 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2909684383"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Duration of Ailments on Enemies","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 적에게 적용되는 상태 이상 지속시간 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 적에게 적용되는 상태 이상 지속시간 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3341892633"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of Arcane Surge on you","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 자신에게 적용되는 비전 쇄도 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 자신에게 적용되는 비전 쇄도 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3163099942"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of Buffs granted by your Golems","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 골렘이 제공하는 버프 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 골렘이 제공하는 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2159248495"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased effect of Non-Curse Auras from your Skills","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 자신의 비-저주 오라 스킬 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 자신의 비-저주 오라 스킬 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2558323947"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of Non-Damaging Ailments","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 비-피해 상태 이상 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 비-피해 상태 이상 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2950684886"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of Onslaught on you","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 플레이어에게 적용되는 맹공 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 플레이어에게 적용되는 맹공 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_491577732"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Carrion Golems","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 부패 골렘이 제공하는 버프 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 부패 골렘이 제공하는 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2917444195"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Chaos Golems","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 카오스 골렘의 버프 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 카오스 골렘의 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1807607778"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Flame Golems","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 화염 골렘이 제공하는 버프 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 화염 골렘이 제공하는 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3591219299"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Ice Golems","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 얼음 골렘이 제공하는 버프 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 얼음 골렘이 제공하는 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3588695478"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Lightning Golems","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 번개 골렘이 제공하는 버프 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 번개 골렘이 제공하는 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1747983672"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Stone Golems","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 돌 골렘이 제공하는 버프 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 돌 골렘이 제공하는 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1722486495"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of your Curses","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 플레이어가 시전하는 저주 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 플레이어가 시전하는 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2669364207"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of your Marks","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 플레이어의 징표 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 플레이어의 징표 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_505694848"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Elemental Weakness Curse Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 원소 약화 저주 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 원소 약화 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_771845579"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Elusive Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 도피 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 도피 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2413932980"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Energy Shield Recharge Rate","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 에너지 보호막 재충전 속도 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 에너지 보호막 재충전 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3806837783"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Energy Shield Recovery rate","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 에너지 보호막 회복 속도 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 에너지 보호막 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_587322642"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Enfeeble Curse Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 쇠약화 저주 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 쇠약화 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_937462392"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Evasion Rating","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 회피 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 회피 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3394288644"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Evasion Rating from Equipped Helmet and Boots","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 장착한 투구 및 장화가 제공하는 회피 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 장착한 투구 및 장화가 제공하는 회피 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2408490382"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Fire Damage","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 화염 피해 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 화염 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1590336483"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Flammability Curse Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 인화성 저주 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 인화성 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1394267723"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Frostbite Curse Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 동상 저주 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 동상 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3199183447"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Global Accuracy Rating","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 일반 정확도 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 일반 정확도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2423625781"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Global Physical Damage","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 일반 물리 피해 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 일반 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_604852150"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Life Recovery rate","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 생명력 회복 속도 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 생명력 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1481249164"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Life Regeneration rate","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 생명력 재생 속도 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 생명력 재생 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1916766878"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Lightning Damage","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 번개 피해 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 번개 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2668120423"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Mana Recovery rate","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 마나 회복 속도 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 마나 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1217759839"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Mana Regeneration Rate","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 마나 재생 속도 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 마나 재생 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_760444887"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Mana Regeneration Rate per Power Charge","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 권능 충전 하나당 마나 재생 속도 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 권능 충전 하나당 마나 재생 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1918872160"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Mana Reservation Efficiency of Skills","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 스킬의 마나 점유 효율 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 스킬의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2358903592"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased maximum Energy Shield","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 에너지 보호막 최대치 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 에너지 보호막 최대치 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1114962813"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Maximum Energy Shield from Equipped Gloves and Boots","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 장착한 장갑 및 장화가 제공하는 에너지 보호막 최대치 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 장착한 장갑 및 장화가 제공하는 에너지 보호막 최대치 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4288334466"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Mine Throwing Speed","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 지뢰 투척 속도 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 지뢰 투척 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1516326076"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Movement Speed","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 이동 속도 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3019083030"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Punishment Curse Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 응징 저주 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 응징 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4171615823"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Rallying Cry Buff Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 집결의 함성 버프 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 집결의 함성 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1381761351"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Skill Effect Duration","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 스킬 효과 지속시간 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 스킬 효과 지속시간 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_614709726"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Spell Critical Strike Chance","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 주문 치명타 확률 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 주문 치명타 확률 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4191234472"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Spell Damage","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 주문 피해 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 주문 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4136821316"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Stun Threshold","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 기절 한계치 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 기절 한계치 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_266654028"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Temporal Chains Curse Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 시간의 사슬 저주 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 시간의 사슬 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_485385046"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Totem Placement speed","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 토템 설치 속도 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 토템 설치 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2033289503"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Trap Throwing Speed","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 덫 투척 속도 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 덫 투척 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2479119864"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Vulnerability Curse Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 취약성 저주 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 취약성 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2638071469"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Warcry Buff Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 함성 버프 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 함성 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3611265227"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Warcry Speed","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 함성 속도 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 함성 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2255001736"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Chaos Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 카오스 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"implicit":["implicit.stat_1172401338"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Cold Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 냉기 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"implicit":["implicit.stat_3357881628"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Cold Damage taken Recouped as Life","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 냉기 피해의 #%를 생명력으로 회생"}],"trade":{"ids":{"implicit":["implicit.stat_1739741837"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Damage is taken from Mana before Life","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 받는 피해의 #%를 생명력 대신 마나로 소모"}],"trade":{"ids":{"implicit":["implicit.stat_1749598944"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Damage taken Recouped as Life","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 받은 피해의 #%를 생명력으로 회생"}],"trade":{"ids":{"implicit":["implicit.stat_2080582538"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Fire Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 화염 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"implicit":["implicit.stat_3430693940"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Fire Damage taken Recouped as Life","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 받은 화염 피해의 #%를 생명력으로 회생"}],"trade":{"ids":{"implicit":["implicit.stat_2143647966"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Lightning Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 번개 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"implicit":["implicit.stat_2824722288"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Lightning Damage taken Recouped as Life","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 받은 번개 피해의 #%를 생명력으로 회생"}],"trade":{"ids":{"implicit":["implicit.stat_1146717028"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Chaos Damage","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 물리 피해의 #%를 카오스 피해로 전환"}],"trade":{"ids":{"implicit":["implicit.stat_1623369100"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Cold Damage","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 물리 피해의 #%를 냉기 피해로 전환"}],"trade":{"ids":{"implicit":["implicit.stat_1153825002"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Fire Damage","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 물리 피해의 #%를 화염 피해로 전환"}],"trade":{"ids":{"implicit":["implicit.stat_380027104"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Lightning Damage","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 물리 피해의 #%를 번개 피해로 전환"}],"trade":{"ids":{"implicit":["implicit.stat_1516273114"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Chaos Damage","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 피격 시 물리 피해의 #%를 카오스 피해로 받음"}],"trade":{"ids":{"implicit":["implicit.stat_2393004388"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Cold Damage","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 피격 시 물리 피해의 #%를 냉기 피해로 받음"}],"trade":{"ids":{"implicit":["implicit.stat_848890513"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Fire Damage","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 피격 시 물리 피해의 #%를 화염 피해로 받음"}],"trade":{"ids":{"implicit":["implicit.stat_1283684786"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Lightning Damage","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 피격 시 물리 피해의 #%를 번개 피해로 받음"}],"trade":{"ids":{"implicit":["implicit.stat_196824923"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Physical Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 물리 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"implicit":["implicit.stat_2443166200"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Physical Damage taken Recouped as Life","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 받은 물리 피해의 #%를 생명력으로 회생"}],"trade":{"ids":{"implicit":["implicit.stat_3796902731"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% reduced Effect of Shock on you","better":-1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 플레이어에게 적용되는 감전 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 플레이어에게 적용되는 감전 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1343931641"]},"inverted":true}} +{"ref":"While a Unique Enemy is in your Presence, #% reduced Enemy Stun Threshold","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 적 기절 한계치 #% 감소"},{"string":"고유 적이 접근해 있는 동안, 적 기절 한계치 #% 증가","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_944211673"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% reduced Freeze Duration on you","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 플레이어에게 적용되는 동결 지속시간 #% 감소"},{"string":"고유 적이 접근해 있는 동안, 플레이어에게 적용되는 동결 지속시간 #% 증가","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3985862221"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% reduced Ignite Duration on you","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 플레이어에게 적용되는 점화 지속시간 #% 감소"},{"string":"고유 적이 접근해 있는 동안, 플레이어에게 적용되는 점화 지속시간 #% 증가","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2520245478"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% reduced Mana Cost of Attacks","better":-1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 공격의 마나 소모 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 공격의 마나 소모 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1116269888"]},"inverted":true}} +{"ref":"While a Unique Enemy is in your Presence, #% reduced Reflected Damage taken","better":-1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 받는 피해 반사 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 받는 피해 반사 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1941017392"]},"inverted":true}} +{"ref":"While a Unique Enemy is in your Presence, +# to Accuracy Rating per Frenzy Charge","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 격분 충전 하나당 정확도 #"}],"trade":{"ids":{"implicit":["implicit.stat_475859964"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% chance to Suppress Spell Damage","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 주문 피해 억제 확률 #%"}],"trade":{"ids":{"implicit":["implicit.stat_3998961962"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to all Elemental Resistances","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 모든 원소 저항 #%"}],"trade":{"ids":{"implicit":["implicit.stat_2358153166"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to all maximum Resistances","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 모든 저항 최대치 #%"}],"trade":{"ids":{"implicit":["implicit.stat_3062531896"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to Chaos Damage over Time Multiplier","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 지속 카오스 피해 배율 #%"}],"trade":{"ids":{"implicit":["implicit.stat_2634574895"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to Chaos Resistance","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 카오스 저항 #%"}],"trade":{"ids":{"implicit":["implicit.stat_744196525"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to Cold Damage over Time Multiplier","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 지속 냉기 피해 배율 #%"}],"trade":{"ids":{"implicit":["implicit.stat_621576159"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to Cold Resistance","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 냉기 저항 #%"}],"trade":{"ids":{"implicit":["implicit.stat_2240274773"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to Critical Strike Multiplier for Attack Damage","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 공격 피해의 치명타 피해 배율 #%"}],"trade":{"ids":{"implicit":["implicit.stat_26879978"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to Critical Strike Multiplier for Spell Damage","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 주문 피해의 치명타 피해 배율 #%"}],"trade":{"ids":{"implicit":["implicit.stat_865433929"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to Fire Damage over Time Multiplier","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 지속 화염 피해 배율 #%"}],"trade":{"ids":{"implicit":["implicit.stat_2112874376"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to Fire Resistance","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 화염 저항 #%"}],"trade":{"ids":{"implicit":["implicit.stat_3521653836"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to Lightning Resistance","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 번개 저항 #%"}],"trade":{"ids":{"implicit":["implicit.stat_3556129896"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to maximum Chaos Resistance","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 카오스 저항 최대치 #%"}],"trade":{"ids":{"implicit":["implicit.stat_575726461"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to maximum Cold Resistance","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 냉기 저항 최대치 #%"}],"trade":{"ids":{"implicit":["implicit.stat_3444931985"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to maximum Fire Resistance","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 화염 저항 최대치 #%"}],"trade":{"ids":{"implicit":["implicit.stat_475684070"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to maximum Lightning Resistance","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 번개 저항 최대치 #%"}],"trade":{"ids":{"implicit":["implicit.stat_789714862"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to Physical Damage over Time Multiplier","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 지속 물리 피해 배율 #%"}],"trade":{"ids":{"implicit":["implicit.stat_841219865"]}}} +{"ref":"While a Unique Enemy is in your Presence, 1% less Damage Taken per # Dexterity","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 민첩 #당 받는 피해 1% 감폭"}],"trade":{"ids":{"implicit":["implicit.stat_1682072497"]}}} +{"ref":"While a Unique Enemy is in your Presence, 1% less Damage Taken per # Intelligence","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 지능 #당 받는 피해 1% 감폭"}],"trade":{"ids":{"implicit":["implicit.stat_553122931"]}}} +{"ref":"While a Unique Enemy is in your Presence, 1% less Damage Taken per # Strength","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 힘 #당 받는 피해 1% 감폭"}],"trade":{"ids":{"implicit":["implicit.stat_3389591826"]}}} +{"ref":"While a Unique Enemy is in your Presence, Adds # to # Chaos Damage to Attacks","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 공격 시 카오스 피해 #~# 추가"}],"trade":{"ids":{"implicit":["implicit.stat_2444070126"]}}} +{"ref":"While a Unique Enemy is in your Presence, Adds # to # Chaos Damage to Spells","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 주문 시전 시 카오스 피해 #~# 추가"}],"trade":{"ids":{"implicit":["implicit.stat_1554912650"]}}} +{"ref":"While a Unique Enemy is in your Presence, Adds # to # Cold Damage to Attacks","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 공격 시 냉기 피해 #~# 추가"}],"trade":{"ids":{"implicit":["implicit.stat_4057155645"]}}} +{"ref":"While a Unique Enemy is in your Presence, Adds # to # Cold Damage to Spells","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 주문 시전 시 냉기 피해 #~# 추가"}],"trade":{"ids":{"implicit":["implicit.stat_1018817416"]}}} +{"ref":"While a Unique Enemy is in your Presence, Adds # to # Fire Damage to Attacks","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 공격 시 화염 피해 #~# 추가"}],"trade":{"ids":{"implicit":["implicit.stat_2067485824"]}}} +{"ref":"While a Unique Enemy is in your Presence, Adds # to # Fire Damage to Spells","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 주문 시전 시 화염 피해 #~# 추가"}],"trade":{"ids":{"implicit":["implicit.stat_661603414"]}}} +{"ref":"While a Unique Enemy is in your Presence, Adds # to # Lightning Damage to Attacks","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 공격 시 번개 피해 #~# 추가"}],"trade":{"ids":{"implicit":["implicit.stat_2111629859"]}}} +{"ref":"While a Unique Enemy is in your Presence, Adds # to # Lightning Damage to Spells","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 주문 시전 시 번개 피해 #~# 추가"}],"trade":{"ids":{"implicit":["implicit.stat_371531651"]}}} +{"ref":"While a Unique Enemy is in your Presence, Adds # to # Physical Damage to Attacks","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 공격 시 물리 피해 #~# 추가"}],"trade":{"ids":{"implicit":["implicit.stat_2521809744"]}}} +{"ref":"While a Unique Enemy is in your Presence, Adds # to # Physical Damage to Spells","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 주문 시전 시 물리 피해 #~# 추가"}],"trade":{"ids":{"implicit":["implicit.stat_4272276606"]}}} +{"ref":"While a Unique Enemy is in your Presence, Anger has #% increased Aura Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 분노의 오라 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 분노의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_778803098"]}}} +{"ref":"While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal #% increased Damage","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 선대의 함성으로 인한 전력 공격이 주는 피해 #% 증가"}],"trade":{"ids":{"implicit":["implicit.stat_3598887112"]}}} +{"ref":"While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal #% increased Damage","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 지진 함성으로 인한 전력 공격이 주는 피해 #% 증가"}],"trade":{"ids":{"implicit":["implicit.stat_1505297139"]}}} +{"ref":"While a Unique Enemy is in your Presence, Attacks have #% chance to cause Bleeding","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 공격으로 출혈 유발 불가","value":-1},{"string":"고유 적이 접근해 있는 동안, 공격 시 #%의 확률로 출혈 유발"},{"string":"고유 적이 접근해 있는 동안, 공격 시 출혈 유발","value":100}],"trade":{"ids":{"implicit":["implicit.stat_64193828"]}}} +{"ref":"While a Unique Enemy is in your Presence, Attacks have #% chance to Maim on Hit","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 공격 명중 시 #%의 확률로 힘줄 절단"},{"string":"고유 적이 접근해 있는 동안, 명중 시 항상 힘줄 절단 유발","value":100}],"trade":{"ids":{"implicit":["implicit.stat_720015764"]}}} +{"ref":"While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage #% faster","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 플레이어가 유발한 출혈이 피해 #% 가속"}],"trade":{"ids":{"implicit":["implicit.stat_738837643"]}}} +{"ref":"While a Unique Enemy is in your Presence, Bone Offering has #% increased Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 뼈 공물의 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 뼈 공물의 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2290911895"]}}} +{"ref":"While a Unique Enemy is in your Presence, Damage Penetrates #% Cold Resistance","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 피해가 냉기 저항 #% 관통"},{"string":"고유 적이 접근해 있는 동안, 플레이어가 적중 시 냉기 저항을 실제 값보다 #% 높게 취급","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1477049675"]}}} +{"ref":"While a Unique Enemy is in your Presence, Damage Penetrates #% Fire Resistance","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 피해가 화염 저항 #% 관통"},{"string":"고유 적이 접근해 있는 동안, 플레이어가 명중 시 화염 저항을 실제 값보다 #% 높게 취급","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3425675761"]}}} +{"ref":"While a Unique Enemy is in your Presence, Damage Penetrates #% Lightning Resistance","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 피해가 번개 저항 #% 관통"},{"string":"고유 적이 접근해 있는 동안, 플레이어가 명중 시 번개 저항을 실제 값보다 #% 높게 취급","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1598254831"]}}} +{"ref":"While a Unique Enemy is in your Presence, Determination has #% increased Aura Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 결의의 오라 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 결의의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2366356855"]}}} +{"ref":"While a Unique Enemy is in your Presence, Discipline has #% increased Aura Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 단련의 오라 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 단련의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_334238649"]}}} +{"ref":"While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting # seconds","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 이동 중 #초 동안 지속되는 허약의 지대 생성"}],"trade":{"ids":{"implicit":["implicit.stat_1771822543"]}}} +{"ref":"While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting # seconds","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 이동 중 #초 동안 지속되는 활력 감소의 지대 생성"}],"trade":{"ids":{"implicit":["implicit.stat_2220831041"]}}} +{"ref":"While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting # seconds","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 이동 중 #초 동안 지속되는 그을린 지대 생성"}],"trade":{"ids":{"implicit":["implicit.stat_493814995"]}}} +{"ref":"While a Unique Enemy is in your Presence, Enduring Cry has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 인내의 함성의 재사용 대기시간 회복 속도 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 인내의 함성의 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2792560229"]}}} +{"ref":"While a Unique Enemy is in your Presence, Enemies you've Hit Recently have #% reduced Life Regeneration rate","better":-1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 최근 4초 이내 명중한 적의 생명력 재생 속도 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 최근 4초 이내 명중한 적의 생명력 재생 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2570471069"]},"inverted":true}} +{"ref":"While a Unique Enemy is in your Presence, Exerted Attacks deal #% increased Damage","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 전력 공격이 주는 피해 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 전력 공격이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3291139981"]}}} +{"ref":"While a Unique Enemy is in your Presence, Flasks applied to you have #% increased Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 자신에게 적용된 플라스크의 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 자신에게 적용된 플라스크의 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3610955422"]}}} +{"ref":"While a Unique Enemy is in your Presence, Flasks gain # Charges every 3 seconds","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 3초마다 플라스크 # 충전"},{"string":"고유 적이 접근해 있는 동안, 3초마다 플라스크 1 충전","value":1}],"trade":{"ids":{"implicit":["implicit.stat_2150799098"]}}} +{"ref":"While a Unique Enemy is in your Presence, Flesh and Stone has #% increased Area of Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 육체와 돌의 효과 범위 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 육체와 돌의 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1472965536"]}}} +{"ref":"While a Unique Enemy is in your Presence, Flesh Offering has #% increased Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 살점 공물의 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 살점 공물의 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3599488608"]}}} +{"ref":"While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within # metre","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 플레이어가 유발한 동결이 #미터 내의 다른 적에게 확산"}],"trade":{"ids":{"implicit":["implicit.stat_2543269407"]}}} +{"ref":"While a Unique Enemy is in your Presence, Gain # Rage on Attack Hit","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 공격 명중 시 격노 # 획득"}],"trade":{"ids":{"implicit":["implicit.stat_3134649750"]}}} +{"ref":"While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Chaos Damage","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 물리 피해의 #%를 추가 카오스 피해로 획득"}],"trade":{"ids":{"implicit":["implicit.stat_620552892"]}}} +{"ref":"While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Cold Damage","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 물리 피해의 #%를 추가 냉기 피해로 획득"}],"trade":{"ids":{"implicit":["implicit.stat_3171354842"]}}} +{"ref":"While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Fire Damage","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 물리 피해의 #%를 추가 화염 피해로 획득"}],"trade":{"ids":{"implicit":["implicit.stat_3549954477"]}}} +{"ref":"While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Lightning Damage","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 물리 피해의 #%를 추가 번개 피해로 획득"}],"trade":{"ids":{"implicit":["implicit.stat_1918094957"]}}} +{"ref":"While a Unique Enemy is in your Presence, Gain a Frenzy Charge every # seconds","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, #초마다 격분 충전 획득"}],"trade":{"ids":{"implicit":["implicit.stat_2847070982"]}}} +{"ref":"While a Unique Enemy is in your Presence, Gain a Power Charge every # seconds","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, #초마다 권능 충전 획득"}],"trade":{"ids":{"implicit":["implicit.stat_46472075"]}}} +{"ref":"While a Unique Enemy is in your Presence, Gain an Endurance Charge every # seconds","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, #초마다 인내 충전 획득"}],"trade":{"ids":{"implicit":["implicit.stat_2441896589"]}}} +{"ref":"While a Unique Enemy is in your Presence, General's Cry has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 장군의 함성의 재사용 대기시간 회복 속도 #% 증가"}],"trade":{"ids":{"implicit":["implicit.stat_942266300"]}}} +{"ref":"While a Unique Enemy is in your Presence, Grace has #% increased Aura Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 은총의 오라 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 은총의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3303144948"]}}} +{"ref":"While a Unique Enemy is in your Presence, Haste has #% increased Aura Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 가속의 오라 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 가속의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1060820709"]}}} +{"ref":"While a Unique Enemy is in your Presence, Hatred has #% increased Aura Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 증오의 오라 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 증오의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4218330172"]}}} +{"ref":"While a Unique Enemy is in your Presence, Herald of Agony has #% increased Buff Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 고통의 전령 버프 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 고통의 전령 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_503887731"]}}} +{"ref":"While a Unique Enemy is in your Presence, Herald of Ash has #% increased Buff Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 재의 전령 버프 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 재의 전령 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_109112452"]}}} +{"ref":"While a Unique Enemy is in your Presence, Herald of Ice has #% increased Buff Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 얼음의 전령 버프 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 얼음의 전령 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3593717239"]}}} +{"ref":"While a Unique Enemy is in your Presence, Herald of Purity has #% increased Buff Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 순수의 전령 버프 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 순수의 전령 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4093169696"]}}} +{"ref":"While a Unique Enemy is in your Presence, Herald of Thunder has #% increased Buff Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 천둥의 전령 버프 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 천둥의 전령 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_649027123"]}}} +{"ref":"While a Unique Enemy is in your Presence, Hits have #% chance to ignore Enemy Physical Damage Reduction","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 명중 시 #%의 확률로 적 몬스터 물리 피해 감소를 무시"},{"string":"고유 적이 접근해 있는 동안, 명중 시 적 몬스터 물리 피해 감소를 무시","value":100}],"trade":{"ids":{"implicit":["implicit.stat_71573030"]}}} +{"ref":"While a Unique Enemy is in your Presence, Ignites you inflict deal Damage #% faster","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 플레이어가 유발한 점화가 피해 #% 가속"}],"trade":{"ids":{"implicit":["implicit.stat_2349328837"]}}} +{"ref":"While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within # metre","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 플레이어가 유발한 점화가 #미터 내의 다른 적에게 확산"}],"trade":{"ids":{"implicit":["implicit.stat_1698847655"]}}} +{"ref":"While a Unique Enemy is in your Presence, Infernal Cry has #% increased Area of Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 지옥불 함성의 효과 범위 #% 증가"}],"trade":{"ids":{"implicit":["implicit.stat_3199255605"]}}} +{"ref":"While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying #% to Cold Resistance","better":-1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 명중 시 냉기 노출을 유발하여 냉기 저항 #% 적용"}],"trade":{"ids":{"implicit":["implicit.stat_1699220089"]}}} +{"ref":"While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying #% to Fire Resistance","better":-1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 명중 시 화염 노출을 유발하여 화염 저항 #% 적용"}],"trade":{"ids":{"implicit":["implicit.stat_732411542"]}}} +{"ref":"While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying #% to Lightning Resistance","better":-1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 명중 시 번개 노출을 유발하여 번개 저항 #% 적용"}],"trade":{"ids":{"implicit":["implicit.stat_2876365933"]}}} +{"ref":"While a Unique Enemy is in your Presence, Intimidating Cry has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 위협의 함성의 재사용 대기시간 회복 속도 #% 증가"}],"trade":{"ids":{"implicit":["implicit.stat_3381588096"]}}} +{"ref":"While a Unique Enemy is in your Presence, Malevolence has #% increased Aura Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 악의의 오라 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 악의의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1327020319"]}}} +{"ref":"While a Unique Enemy is in your Presence, Melee Hits Fortify","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 근접 명중 시 #%의 확률로 방어 상승"},{"string":"고유 적이 접근해 있는 동안, 근접 명중 시 방어 상승","value":100}],"trade":{"ids":{"implicit":["implicit.stat_993223747"]}}} +{"ref":"While a Unique Enemy is in your Presence, Minions deal #% increased Damage","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 소환수가 주는 피해 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 소환수가 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4189960647"]}}} +{"ref":"While a Unique Enemy is in your Presence, Minions have #% increased maximum Life","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 소환수의 최대 생명력 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 소환수의 최대 생명력 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3044748809"]}}} +{"ref":"While a Unique Enemy is in your Presence, Minions have #% increased Movement Speed","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 소환수의 이동 속도 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 소환수의 이동 속도 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_93625449"]}}} +{"ref":"While a Unique Enemy is in your Presence, Minions take #% reduced Reflected Damage","better":-1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 소환수가 받는 반사 피해 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 소환수가 받는 반사 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1499657170"]},"inverted":true}} +{"ref":"While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target # additional nearby Enemy","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 비-바알 타격 스킬이 주변 적 #명을 추가 대상으로 삼음"}],"trade":{"ids":{"implicit":["implicit.stat_1524679549"]}}} +{"ref":"While a Unique Enemy is in your Presence, Poisons you inflict deal Damage #% faster","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 플레이어가 유발한 중독이 피해 #% 가속"}],"trade":{"ids":{"implicit":["implicit.stat_3828039449"]}}} +{"ref":"While a Unique Enemy is in your Presence, Pride has #% increased Aura Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 자부심의 오라 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 자부심의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4039774101"]}}} +{"ref":"While a Unique Enemy is in your Presence, Projectiles Pierce # additional Targets","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 투사체가 대상 #개를 추가 관통"},{"string":"고유 적이 접근해 있는 동안, 투사체가 대상을 추가 관통","value":1}],"trade":{"ids":{"implicit":["implicit.stat_3924473787"]}}} +{"ref":"While a Unique Enemy is in your Presence, Purity of Elements has #% increased Aura Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 원소의 순수함의 오라 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 원소의 순수함의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_348693938"]}}} +{"ref":"While a Unique Enemy is in your Presence, Purity of Fire has #% increased Aura Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 불의 순수함의 오라 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 불의 순수함의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1926772156"]}}} +{"ref":"While a Unique Enemy is in your Presence, Purity of Ice has #% increased Aura Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 얼음의 순수함의 오라 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 얼음의 순수함의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3499126604"]}}} +{"ref":"While a Unique Enemy is in your Presence, Purity of Lightning has #% increased Aura Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 번개의 순수함의 오라 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 번개의 순수함의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_908556575"]}}} +{"ref":"While a Unique Enemy is in your Presence, Regenerate #% of Life per second per Endurance Charge","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 인내 충전 하나당 1초마다 생명력의 #% 재생"}],"trade":{"ids":{"implicit":["implicit.stat_1123587207"]}}} +{"ref":"While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within # metre","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 플레이어가 유발한 감전이 #미터 내의 다른 적에게 확산"}],"trade":{"ids":{"implicit":["implicit.stat_2868404935"]}}} +{"ref":"While a Unique Enemy is in your Presence, Spirit Offering has #% increased Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 영혼 공물의 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 영혼 공물의 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2814835155"]}}} +{"ref":"While a Unique Enemy is in your Presence, Tempest Shield has #% increased Buff Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 폭풍의 방패의 버프 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 폭풍의 방패의 버프 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_942478380"]}}} +{"ref":"While a Unique Enemy is in your Presence, Withered you Inflict expires #% faster","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 플레이어가 유발하는 위축의 만료 #% 가속"},{"string":"고유 적이 접근해 있는 동안, 플레이어가 유발하는 위축의 만료 #% 감속","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3262721796"]}}} +{"ref":"While a Unique Enemy is in your Presence, Wrath has #% increased Aura Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 진노의 오라 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 진노의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_399528178"]}}} +{"ref":"While a Unique Enemy is in your Presence, Your Offerings have #% increased Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 공물 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 자신의 공물의 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 공물 효과 #% 감소","negate":true},{"string":"고유 적이 접근해 있는 동안, 자신의 공물의 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1132843482"]}}} +{"ref":"While a Unique Enemy is in your Presence, Zealotry has #% increased Aura Effect","better":1,"matchers":[{"string":"고유 적이 접근해 있는 동안, 열광의 오라 효과 #% 증가"},{"string":"고유 적이 접근해 있는 동안, 열광의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3550578554"]}}} +{"ref":"While at maximum Frenzy Charges, Attacks Poison Enemies","better":1,"matchers":[{"string":"최대 격분 충전 상태에서 공격 시 적 중독"}],"trade":{"ids":{"explicit":["explicit.stat_413362507"]}}} +{"ref":"While in Her Embrace, take #% of your total Maximum Life and Energy Shield as Fire Damage per second per Level","better":1,"matchers":[{"string":"여신의 포옹 상태가 되면 1레벨당 1초마다 최대 생명력과 에너지 보호막 합계의 #%만큼 화염 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_2442112158"]}}} +{"ref":"While Minions have Energy Shield, their Hits Ignore Monster Elemental Resistances","better":1,"matchers":[{"string":"소환수에게 에너지 보호막이 있을 경우 소환수가 적중 시 몬스터의 원소 저항을 무시"}],"trade":{"ids":{"explicit":["explicit.stat_1360359242"]}}} +{"ref":"While there are at least five nearby Allies, you and nearby Allies have Onslaught","better":1,"matchers":[{"string":"주변 동료들이 다섯 명 이상인 경우, 자신 및 주변 동료들이 맹공 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3730497630"]}}} +{"ref":"Wicked Ward","better":1,"matchers":[{"string":"사악한 수호(Wicked Ward)"}],"trade":{"ids":{"explicit":["explicit.stat_1109343199"],"scourge":["scourge.stat_1109343199"]}}} +{"ref":"Wild Strike's Beam Chains an additional time","better":1,"matchers":[{"string":"사나운 타격의 광선이 #회 추가 연쇄"},{"string":"사나운 타격의 광선이 1회 추가 연쇄","value":1}],"trade":{"ids":{"enchant":["enchant.stat_2447447843"]}}} +{"ref":"Wind Dancer","better":1,"matchers":[{"string":"바람의 무희"}],"trade":{"ids":{"explicit":["explicit.stat_4170338365"],"scourge":["scourge.stat_4170338365"]}}} +{"ref":"Winter Orb deals #% increased Damage","better":1,"matchers":[{"string":"겨울 보주로 주는 피해 #% 증가"},{"string":"겨울 보주로 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2200744772"]}}} +{"ref":"Winter Orb has #% increased Area of Effect per Stage","better":1,"matchers":[{"string":"겨울 보주 단계 하나당 효과 범위 #% 증가"},{"string":"겨울 보주 단계 하나당 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1017161280"]}}} +{"ref":"Winter Orb has +# Maximum Stages","better":1,"matchers":[{"string":"겨울 보주 최대 단계 #"}],"trade":{"ids":{"enchant":["enchant.stat_3734339018"]}}} +{"ref":"Wintertide Brand deals #% increased Damage","better":1,"matchers":[{"string":"겨울의 낙인이 주는 피해 #% 증가"},{"string":"겨울의 낙인이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_770334536"]}}} +{"ref":"Wintertide Brand has #% increased Chill Effect","better":1,"matchers":[{"string":"겨울의 낙인의 냉각 효과 #% 증가"},{"string":"겨울의 낙인의 냉각 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1831757355"],"enchant":["enchant.stat_1831757355"]}}} +{"ref":"Wintertide Brand has +# to maximum Stages","better":1,"matchers":[{"string":"겨울의 낙인의 단계 최대치 #"}],"trade":{"ids":{"enchant":["enchant.stat_35081783"]}}} +{"ref":"With # Corrupted Items Equipped: 50% of Chaos Damage taken does not bypass Energy Shield, and 50% of Physical Damage taken bypasses Energy Shield","better":1,"matchers":[{"string":"타락한 아이템 #개 장착: 받는 카오스 피해의 50%가 에너지 보호막에 막힘, 받는 물리 피해의 50%는 에너지 보호막에 막히지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_3225265684"]}}} +{"ref":"With # Corrupted Items Equipped: Life Leech recovers based on your Chaos Damage instead","better":1,"matchers":[{"string":"타락한 아이템 #개 장착: 자신에게 적용된 카오스 피해에 비례하여 생명력 흡수 회복"}],"trade":{"ids":{"explicit":["explicit.stat_4192058279"]}}} +{"ref":"With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain # of its Modifiers for 20 seconds","better":1,"matchers":[{"string":"반경 내 주요 스킬 4개가 할당된 상태에서 희귀 몬스터 처치 시 20초 동안 해당 몬스터의 속성 중 #개 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3807518091"]}}} +{"ref":"With 40 Intelligence in Radius, #% of Glacial Cascade Physical Damage\nConverted to Cold Damage","better":1,"matchers":[{"string":"반경 내 지능이 40 이상이면 빙하 폭포 물리 피해의 #%를\n냉기 피해로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_1478305007"]}}} +{"ref":"With 40 Intelligence in Radius, Glacial Cascade has an additional Burst","better":1,"matchers":[{"string":"반경 내 지능이 40 이상이면 빙하 폭포가 #회 추가 폭발"},{"string":"반경 내 지능이 40 이상이면 빙하 폭포가 1회 추가 폭발","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1367987042"]}}} +{"ref":"With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning","better":1,"matchers":[{"string":"반경 내 민첩과 힘의 합계가 40 이상인 경우 분광 스킬이 번개 선택 불가"}],"trade":{"ids":{"explicit":["explicit.stat_637033100"]}}} +{"ref":"With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage","better":1,"matchers":[{"string":"반경 내 민첩과 힘의 합계가 40 이상인 경우 분광 스킬로 주는 번개 피해 50% 감폭"}],"trade":{"ids":{"explicit":["explicit.stat_2053992416"]}}} +{"ref":"With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire","better":1,"matchers":[{"string":"반경 내 지능과 민첩의 합계가 40 이상인 경우 분광 스킬이 화염 선택 불가"}],"trade":{"ids":{"explicit":["explicit.stat_63111803"]}}} +{"ref":"With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage","better":1,"matchers":[{"string":"반경 내 지능과 민첩의 합계가 40 이상인 경우 분광 스킬로 주는 화염 피해 50% 감폭"}],"trade":{"ids":{"explicit":["explicit.stat_1813069390"]}}} +{"ref":"With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold","better":1,"matchers":[{"string":"반경 내 힘과 지능의 합계가 40 이상인 경우 분광 스킬이 냉기 선택 불가"}],"trade":{"ids":{"explicit":["explicit.stat_2864618930"]}}} +{"ref":"With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage","better":1,"matchers":[{"string":"반경 내 힘과 지능의 합계가 40 이상인 경우 분광 스킬로 주는 냉기 피해 50% 감폭"}],"trade":{"ids":{"explicit":["explicit.stat_3286480398"]}}} +{"ref":"With a Ghastly Eye Jewel Socketed, Minions have +# to Accuracy Rating","better":1,"matchers":[{"string":"무시무시한 눈 주얼을 장착 시 소환수 정확도 #"}],"trade":{"ids":{"explicit":["explicit.stat_2388362438"]}}} +{"ref":"With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells","better":1,"matchers":[{"string":"최면 거는 눈 주얼을 장착하면 주문 명중 시 비전 쇄도 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3153744598"]}}} +{"ref":"With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks","better":1,"matchers":[{"string":"살인적인 눈 주얼을 장착하면 공격 명중 시 4초 동안 적 위협"}],"trade":{"ids":{"explicit":["explicit.stat_642457541"]}}} +{"ref":"With a Murderous Eye Jewel Socketed, Melee Attacks grant # Rage on Hit","better":1,"matchers":[{"string":"살인적인 눈 주얼을 장착하면 근접 공격 명중 시 격노 # 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3892691596"]}}} +{"ref":"With a Murderous Eye Jewel Socketed, Melee Hits have #% chance to Fortify","better":1,"matchers":[{"string":"살인적인 눈 주얼을 장착하면 근접 명중 시 #%의 확률로 방어 상승"}],"trade":{"ids":{"explicit":["explicit.stat_186482813"]}}} +{"ref":"With a Searching Eye Jewel Socketed, Attacks have #% chance to grant Onslaught On Kill","better":1,"matchers":[{"string":"탐색하는 눈 주얼을 장착하면 공격이 처치 시 #%의 확률로 맹공 부여"}],"trade":{"ids":{"explicit":["explicit.stat_2863332749"]}}} +{"ref":"With a Searching Eye Jewel Socketed, Blind Enemies for 4 seconds on Hit with Attacks","better":1,"matchers":[{"string":"탐색하는 눈 주얼을 장착하면 공격 명중 시 4초 동안 적 실명 유발"}],"trade":{"ids":{"explicit":["explicit.stat_2044840211"]}}} +{"ref":"With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks","better":1,"matchers":[{"string":"탐색하는 눈 주얼을 장착하면 공격 명중 시 4초 동안 적 힘줄 절단 유발"}],"trade":{"ids":{"explicit":["explicit.stat_2750004091"]}}} +{"ref":"With at least 1000 Strength, #% of Damage dealt by your Raised Zombies is Leeched to you as Life","dp":true,"better":1,"matchers":[{"string":"힘이 1000 이상이면 소환한 좀비가 주는 피해의 #%를 생명력으로 흡수"}],"trade":{"ids":{"explicit":["explicit.stat_2802263253"]}}} +{"ref":"With at least 40 Dexterity in Radius, Animate Weapon can Animate up to # Ranged Weapons","better":1,"matchers":[{"string":"반경 내 민첩이 40 이상이면 무기 기동으로 원거리 무기 최대 #개 움직이기 가능"}],"trade":{"ids":{"explicit":["explicit.stat_3585572043"]}}} +{"ref":"With at least 40 Dexterity in Radius, Barrage fires an additional projectile simultaneously on the first and final attacks","better":1,"matchers":[{"string":"반경 내 민첩이 40 이상이면 첫 번째와 마지막 공격 시 연발 사격으로 추가 투사체 #개 동시 발사"},{"string":"반경 내 민첩이 40 이상이면 연발 사격의 첫 번째와 마지막 공격 시 추가 투사체를 동시에 발사","value":1}],"trade":{"ids":{"explicit":["explicit.stat_630867098"]}}} +{"ref":"With at least 40 Dexterity in Radius, Dual Strike deals Off-Hand Splash Damage\nto surrounding targets","better":1,"matchers":[{"string":"반경 내 민첩이 40 이상이면 쌍수 타격 시\n보조 장비로 주변 대상에게 범위 피해를 줌"}],"trade":{"ids":{"explicit":["explicit.stat_3603019813"]}}} +{"ref":"With at least 40 Dexterity in Radius, Dual Strike deals Splash Damage\nto surrounding targets while wielding a Mace","better":1,"matchers":[{"string":"반경 내 민첩이 40 이상이면 철퇴 장착 시\n쌍수 타격이 주변 대상에게 범위 피해를 줌"}],"trade":{"ids":{"explicit":["explicit.stat_2562474285"]}}} +{"ref":"With at least 40 Dexterity in Radius, Dual Strike has #% increased\nAccuracy Rating while wielding a Sword","better":1,"matchers":[{"string":"반경 내 민첩이 40 이상이면 검 장착 시\n쌍수 타격의 정확도 #% 증가"},{"string":"반경 내 민첩이 40 이상이면 검 장착 시\n쌍수 타격의 정확도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2869420801"]}}} +{"ref":"With at least 40 Dexterity in Radius, Dual Strike has #% increased Attack\nSpeed while wielding a Claw","better":1,"matchers":[{"string":"반경 내 민첩이 40 이상이면 클로 장착 시\n쌍수 타격의 공격 속도 #% 증가"},{"string":"반경 내 민첩이 40 이상이면 클로 장착 시\n쌍수 타격의 공격 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1795260970"]}}} +{"ref":"With at least 40 Dexterity in Radius, Dual Strike has +#% to Critical Strike\nMultiplier while wielding a Dagger","better":1,"matchers":[{"string":"반경 내 민첩이 40 이상이면 단검 장착 시\n쌍수 타격의 치명타 피해 배율 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1503812817"]}}} +{"ref":"With at least 40 Dexterity in Radius, Dual Strike has a #% chance\nto deal Double Damage with the Main-Hand Weapon","better":1,"matchers":[{"string":"반경 내 민첩이 40 이상이면 쌍수 타격 시 #%의 확률로\n주 무기로 2배의 피해를 줌"},{"string":"반경 내 민첩이 40 이상이면 쌍수 타격 시 주 무기로 주는 피해 2배","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3765671129"]}}} +{"ref":"With at least 40 Dexterity in Radius, Dual Strike Hits Intimidate Enemies for\n4 seconds while wielding an Axe","better":1,"matchers":[{"string":"반경 내 민첩이 40 이상이면 도끼 장착 시\n쌍수 타격이 적 명중 시 4초 동안 적 위협"}],"trade":{"ids":{"explicit":["explicit.stat_100088509"]}}} +{"ref":"With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains #% increased Damage each time it Hits","better":1,"matchers":[{"string":"반경 내 민첩이 40 이상이면 환영 무기 투척 투사체가 적중할 때마다 주는 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_811386429"]}}} +{"ref":"With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a circle","better":1,"matchers":[{"string":"반경 내 민첩이 40 이상이면 천상의 단도가 원형으로 투사체 발사"}],"trade":{"ids":{"explicit":["explicit.stat_2511280084"]}}} +{"ref":"With at least 40 Dexterity in Radius, Frost Blades has #% increased Projectile Speed","better":1,"matchers":[{"string":"반경 내 민첩이 40 이상이면 서리 칼날의 투사체 속도 #% 증가"},{"string":"반경 내 민첩이 40 이상이면 서리 칼날의 투사체 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2092708508"],"fractured":["fractured.stat_2092708508"]}}} +{"ref":"With at least 40 Dexterity in Radius, Galvanic Arrow deals #% increased Area Damage","better":1,"matchers":[{"string":"반경 내 민첩이 40 이상이면 충격 화살의 범위 피해 #% 증가"},{"string":"반경 내 민첩이 40 이상이면 충격 화살의 범위 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1170556324"]}}} +{"ref":"With at least 40 Dexterity in Radius, Galvanic Arrow has #% increased Area of Effect","better":1,"matchers":[{"string":"반경 내 민첩이 40 이상이면 충격 화살의 효과 범위 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3945934607"]}}} +{"ref":"With at least 40 Dexterity in Radius, Ice Shot has #% increased Area of Effect","better":1,"matchers":[{"string":"반경 내 민첩이 40 이상이면 얼음 화살의 효과 범위 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_3442130499"],"fractured":["fractured.stat_3442130499"]}}} +{"ref":"With at least 40 Dexterity in Radius, Ice Shot Pierces an additional Target","better":1,"matchers":[{"string":"반경 내 민첩이 40 이상이면 얼음 화살이 대상 #개를 추가 관통"},{"string":"반경 내 민첩이 40 이상이면 얼음 화살이 대상을 추가 관통","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3103494675"],"fractured":["fractured.stat_3103494675"]}}} +{"ref":"With at least 40 Dexterity in Radius, Melee Damage\ndealt by Frost Blades Penetrates #% Cold Resistance","better":1,"matchers":[{"string":"반경 내 민첩이 40 이상이면 서리 칼날로 주는 근접 피해가\n#%의 냉기 저항 관통"}],"trade":{"ids":{"explicit":["explicit.stat_2412100590"],"fractured":["fractured.stat_2412100590"]}}} +{"ref":"With at least 40 Dexterity in Radius, Viper Strike deals #% increased Damage with Hits and Poison for each Poison on the Enemy","better":1,"matchers":[{"string":"반경 내 민첩이 40 이상이면 적에게 중첩된 중독 하나당 맹독 타격이 명중 및 중독으로 주는 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_695031402"]}}} +{"ref":"With at least 40 Dexterity in Radius, Viper Strike has a #% chance per Poison on Enemy to grant Unholy Might for 4 seconds on Hit","better":1,"matchers":[{"string":"반경 내 민첩이 40 이상이면 맹독 타격 명중 시 적에게 중첩된 중독 하나당 #%의 확률로 4초 동안 불경한 힘 획득"}],"trade":{"ids":{"explicit":["explicit.stat_235847153"]}}} +{"ref":"With at least 40 Intelligence in Radius, #% increased Freezing Pulse Damage if\nyou've Shattered an Enemy Recently","better":1,"matchers":[{"string":"반경 내 지능이 40 이상이면\n최근 4초 이내 적을 산산이 조각낸 경우 동결 파동 피해 #% 증가"},{"string":"반경 내 지능이 40 이상이면\n최근 4초 이내 적을 산산이 조각낸 경우 동결 파동 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2074744008"],"fractured":["fractured.stat_2074744008"]}}} +{"ref":"With at least 40 Intelligence in Radius, #% of Damage taken Recouped as Mana if you've Warcried Recently","better":1,"matchers":[{"string":"반경 내 지능이 40 이상인 상태에서 최근 4초 이내 함성을 시전한 경우 받은 피해의 #%를 마나로 회생"}],"trade":{"ids":{"explicit":["explicit.stat_303219716"]}}} +{"ref":"With at least 40 Intelligence in Radius, Blight has #% increased Cast Speed","better":1,"matchers":[{"string":"반경 내 지능이 40 이상이면 황폐의 시전 속도 #% 증가"},{"string":"반경 내 지능이 40 이상이면 황폐의 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_222829382"]}}} +{"ref":"With at least 40 Intelligence in Radius, Blight has #% increased Hinder Duration","better":1,"matchers":[{"string":"반경 내 지능이 40 이상이면 황폐의 이동 방해 지속시간 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_2181499453"]}}} +{"ref":"With at least 40 Intelligence in Radius, Blight inflicts Withered for # seconds","better":1,"matchers":[{"string":"반경 내 지능이 40 이상이면 황폐가 #초 동안 위축 적용"}],"trade":{"ids":{"explicit":["explicit.stat_3881647885"]}}} +{"ref":"With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in its Area\nWith at least 40 Intelligence in Radius, Cold Snap's Cooldown can be bypassed by Power Charges instead of Frenzy Charges","better":1,"matchers":[{"string":"반경 내 지능이 40 이상이면 한파의 스킬 지역에서 적 사망 시, 격분 충전 대신 권능 충전 제공\n반경 내 지능이 40 이상이면 격분 충전이 아닌 권능 충전으로 한파의 재사용 대기시간 무시 가능"}],"trade":{"ids":{"explicit":["explicit.stat_2560038623"]}}} +{"ref":"With at least 40 Intelligence in Radius, Discharge Cooldown is # ms","better":1,"matchers":[{"string":"반경 내 지능이 40 이상이면 방출의 재사용 대기시간 #ms"}],"trade":{"ids":{"explicit":["explicit.stat_1213084913"]}}} +{"ref":"With at least 40 Intelligence in Radius, Discharge deals #% more Damage","better":1,"matchers":[{"string":"반경 내 지능이 40 이상이면 방출이 주는 피해 #% 증폭"},{"string":"반경 내 지능이 40 이상이면 방출이 주는 피해 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2818653316"]}}} +{"ref":"With at least 40 Intelligence in Radius, Discharge has #% more Area of Effect","better":1,"matchers":[{"string":"반경 내 지능이 40 이상이면 방출의 효과 범위 #% 증폭"},{"string":"반경 내 지능이 40 이상이면 방출의 효과 범위 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2045330446"]}}} +{"ref":"With at least 40 Intelligence in Radius, Fireball cannot ignite","better":1,"matchers":[{"string":"반경 내 지능이 40 이상이면 화염구가 점화할 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_480975218"]}}} +{"ref":"With at least 40 Intelligence in Radius, Fireball has +#% chance to inflict scorch","better":1,"matchers":[{"string":"반경 내 지능이 40 이상이면 화염구의 그을림 유발 확률 #%"}],"trade":{"ids":{"explicit":["explicit.stat_1482194094"]}}} +{"ref":"With at least 40 Intelligence in Radius, Fireball Projectiles gain Area as they travel farther, up to #% increased Area of Effect","better":1,"matchers":[{"string":"반경 내 지능이 40 이상이면 화염구 투사체 이동 거리가 증가할수록 효과 범위가 최대 #% 증가"},{"string":"반경 내 지능이 40 이상이면 화염구 투사체 이동 거리가 증가할수록 효과 범위가 최대 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_24977021"]}}} +{"ref":"With at least 40 Intelligence in Radius, Freezing Pulse fires an additional Projectile","better":1,"matchers":[{"string":"반경 내 지능이 40 이상이면 동결 파동이 투사체 #개 추가 발사"},{"string":"반경 내 지능이 40 이상이면 동결 파동이 투사체 1개 추가 발사","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2098320128"],"fractured":["fractured.stat_2098320128"]}}} +{"ref":"With at least 40 Intelligence in Radius, Frostbolt fires an additional Projectile","better":1,"matchers":[{"string":"반경 내 지능이 40 이상이면 서리 구체가 투사체 #개 추가 발사"},{"string":"반경 내 지능이 40 이상이면 서리 구체가 투사체 1개 추가 발사","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3790108551"],"fractured":["fractured.stat_3790108551"]}}} +{"ref":"With at least 40 Intelligence in Radius, Frostbolt Projectiles gain #% increased Projectile Speed per second","better":1,"matchers":[{"string":"반경 내 지능이 40 이상이면 서리 구체 투사체의 투사체 속도 1초마다 #% 증가"},{"string":"반경 내 지능이 40 이상이면 서리 구체 투사체의 투사체 속도 1초마다 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2727977666"],"fractured":["fractured.stat_2727977666"]}}} +{"ref":"With at least 40 Intelligence in Radius, Projectiles gain radius as they travel farther, up to a maximum of +# metre to radius","better":1,"matchers":[{"string":"반경 내 지능이 40 이상이면, 투사체 이동 거리가 증가할수록 폭발 반경 획득, 최대 #미터"}],"trade":{"ids":{"explicit":["explicit.stat_1351893427"]}}} +{"ref":"With at least 40 Intelligence in Radius, Raised\nZombies' Slam Attack has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"반경 내 지능이 40 이상이면 소환한 좀비의\n강타 공격 재사용 대기시간 회복 속도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1097026492"]}}} +{"ref":"With at least 40 Intelligence in Radius, Raised Spectres have a #% chance to gain Soul Eater for 20 seconds on Kill","better":1,"matchers":[{"string":"반경 내 지능이 40 이상이면 처치 시 소환한 망령이 #%의 확률로 20초 동안 영혼 포식자 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2390273715"]}}} +{"ref":"With at least 40 Intelligence in Radius, Raised Zombies' Slam\nAttack deals #% increased Damage","better":1,"matchers":[{"string":"반경 내 지능이 40 이상이면 소환한 좀비의\n강타 공격으로 주는 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_781633505"]}}} +{"ref":"With at least 40 Intelligence in Radius, Rolling Magma\nhas #% increased Area of Effect per Chain","better":1,"matchers":[{"string":"반경 내 지능이 40 이상이면 몰려오는 마그마\n연쇄 하나당 효과 범위 #% 증가"},{"string":"반경 내 지능이 40 이상이면 몰려오는 마그마\n연쇄 하나당 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_160933750"]}}} +{"ref":"With at least 40 Intelligence in Radius, Rolling Magma deals #% more Damage","better":1,"matchers":[{"string":"반경 내 지능이 40 이상이면 몰려오는 마그마가 주는 피해 #% 증폭"},{"string":"반경 내 지능이 40 이상이면 몰려오는 마그마가 주는 피해 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3131110290"]}}} +{"ref":"With at least 40 Intelligence in Radius, Rolling Magma deals #% more Damage per Chain","better":1,"matchers":[{"string":"반경 내 지능이 40 이상이면 몰려오는 마그마가 연쇄 하나당 주는 피해 #% 증폭"},{"string":"반경 내 지능이 40 이상이면 몰려오는 마그마가 연쇄 하나당 주는 피해 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1141756390"]}}} +{"ref":"With at least 40 Intelligence in Radius, Rolling Magma fires an additional Projectile","better":1,"matchers":[{"string":"반경 내 지능이 40 이상이면 몰려오는 마그마가 투사체 #개 추가 발사"},{"string":"반경 내 지능이 40 이상이면 몰려오는 마그마가 투사체 1개 추가 발사","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2542542825"]}}} +{"ref":"With at least 40 Intelligence in Radius, Spark fires Projectiles in a circle","better":1,"matchers":[{"string":"반경 내 지능이 40 이상이면 전기불꽃이 원형으로 투사체 발사"}],"trade":{"ids":{"explicit":["explicit.stat_935386993"]}}} +{"ref":"With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to # Skeleton Mages","better":1,"matchers":[{"string":"반경 내 지능이 40 이상이면 해골 소환으로 최대 #마리의 해골 마법사 소환 가능"}],"trade":{"ids":{"explicit":["explicit.stat_3088991881"]}}} +{"ref":"With at least 40 Strength in Radius, #% increased\nRarity of Items dropped by Enemies Shattered by Glacial Hammer","better":1,"matchers":[{"string":"반경 내 힘이 40 이상이면\n빙하 망치로 산산이 조각난 적이 떨어뜨리는 아이템의 희귀도 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1250317014"]}}} +{"ref":"With at least 40 Strength in Radius, #% of Glacial\nHammer Physical Damage Converted to Cold Damage","better":1,"matchers":[{"string":"반경 내 힘이 40 이상이면\n빙하 망치 물리 피해의 #%를 냉기 피해로 전환"}],"trade":{"ids":{"explicit":["explicit.stat_3738331820"],"fractured":["fractured.stat_3738331820"]}}} +{"ref":"With at least 40 Strength in Radius, Attacks Exerted by Infernal Cry deal #% more Damage with Ignite","better":1,"matchers":[{"string":"반경 내 힘이 40 이상이면 지옥불 함성으로 인한 전력 공격이 주는 점화 피해 #% 증폭"}],"trade":{"ids":{"explicit":["explicit.stat_2298311736"]}}} +{"ref":"With at least 40 Strength in Radius, Cleave has +0.1 metres to Radius per Nearby\nEnemy, up to a maximum of +1 metre","better":1,"matchers":[{"string":"반경 내 힘이 40 이상이면 주변의 적 하나당 회전베기의 반경 +0.1미터\n최대 +1미터"}],"trade":{"ids":{"explicit":["explicit.stat_1539696482"],"fractured":["fractured.stat_1539696482"]}}} +{"ref":"With at least 40 Strength in Radius, Combust is Disabled","better":1,"matchers":[{"string":"반경 내 힘이 40 이상이면 발화 불가"}],"trade":{"ids":{"explicit":["explicit.stat_2471517399"]}}} +{"ref":"With at least 40 Strength in Radius, Glacial Hammer deals\nCold-only Splash Damage to surrounding targets","better":1,"matchers":[{"string":"반경 내 힘이 40 이상이면\n빙하 망치로 주변 대상에게 냉기 범위 피해를 줌"}],"trade":{"ids":{"explicit":["explicit.stat_3565558422"],"fractured":["fractured.stat_3565558422"]}}} +{"ref":"With at least 40 Strength in Radius, Ground Slam\nhas a #% increased angle","better":1,"matchers":[{"string":"반경 내 힘이 40 이상이면\n대지 강타의 각도 #% 증가"},{"string":"반경 내 힘이 40 이상이면\n대지 강타의 각도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_156016608"],"fractured":["fractured.stat_156016608"]}}} +{"ref":"With at least 40 Strength in Radius, Ground Slam has a #% chance\nto grant an Endurance Charge when you Stun an Enemy","better":1,"matchers":[{"string":"반경 내 힘이 40 이상이면 대지 강타로 적 기절 시\n#%의 확률로 인내 충전 획득"},{"string":"반경 내 힘이 40 이상이면, 대지 강타로 적 기절 시 인내 충전 적용"}],"trade":{"ids":{"explicit":["explicit.stat_1559361866"]}}} +{"ref":"With at least 40 Strength in Radius, Heavy Strike has a \n#% chance to deal Double Damage","better":1,"matchers":[{"string":"반경 내 힘이 40 이상이면\n묵직한 타격이 #%의 확률로 2배의 피해를 줌"}],"trade":{"ids":{"explicit":["explicit.stat_1025503586"]}}} +{"ref":"With at least 40 Strength in Radius, Hits with Cleave Fortify","better":1,"matchers":[{"string":"반경 내 힘이 40 이상이면 회전베기 명중 시 방어 상승"}],"trade":{"ids":{"explicit":["explicit.stat_1248507170"],"fractured":["fractured.stat_1248507170"]}}} +{"ref":"With at least 40 Strength in Radius, Hits with Vigilant Strike Fortify you and Nearby Allies for # seconds","better":1,"matchers":[{"string":"반경 내 힘이 40 이상이면 경계 타격 명중 시 #초 동안 자신 및 주변 동료들의 방어 상승"}],"trade":{"ids":{"explicit":["explicit.stat_530280833"]}}} +{"ref":"With at least 40 Strength in Radius, Molten Strike fires #% more Projectiles","better":1,"matchers":[{"string":"반경 내 힘이 40 이상이면 용암 타격의 투사체 개수 #% 증폭"},{"string":"반경 내 힘이 40 이상이면 용암 타격의 투사체 개수 #% 감폭","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_786380548"]}}} +{"ref":"With at least 40 Strength in Radius, Molten Strike fires an additional Projectile","better":1,"matchers":[{"string":"반경 내 힘이 40 이상이면 용암 타격이 투사체 #개 추가 발사"},{"string":"반경 내 힘이 40 이상이면 용암 타격이 투사체 1개 추가 발사","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2845889407"]}}} +{"ref":"With at least 40 Strength in Radius, Molten Strike has #% increased Area of Effect","better":1,"matchers":[{"string":"반경 내 힘이 40 이상이면 용암 타격의 효과 범위 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1163758055"]}}} +{"ref":"With at least 40 Strength in Radius, Molten Strike Projectiles Chain +# time","better":1,"matchers":[{"string":"반경 내 힘이 40 이상이면 용암 타격의 투사체 연쇄 #회"}],"trade":{"ids":{"explicit":["explicit.stat_2295439133"]}}} +{"ref":"With at least 40 Strength in Radius, Molten Strike Projectiles Chain on impacting ground","better":1,"matchers":[{"string":"반경 내 힘이 40 이상이면 용암 타격의 투사체가 지면 충돌 시 연쇄"}],"trade":{"ids":{"explicit":["explicit.stat_670814047"]}}} +{"ref":"Wither has #% increased Area of Effect","better":1,"matchers":[{"string":"위축 효과 범위 #% 증가"},{"string":"위축 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1810898461"]}}} +{"ref":"Wither has #% increased Duration","better":1,"matchers":[{"string":"위축 지속시간 #% 증가"},{"string":"위축 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_447560345"]}}} +{"ref":"Withered does not expire on Enemies Ignited by you","better":1,"matchers":[{"string":"플레이어에 의해 점화된 적에게 적용되는 위축이 만료되지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_279110104"]}}} +{"ref":"Withered you Inflict expires #% faster","better":1,"matchers":[{"string":"플레이어가 유발하는 위축의 만료 #% 가속"},{"string":"플레이어가 유발하는 위축의 만료 #% 감속","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1625982517"]}}} +{"ref":"Withering Step has #% increased Elusive Effect","better":1,"matchers":[{"string":"고사시키는 걸음의 도피 효과 #% 증가"},{"string":"고사시키는 걸음의 도피 효과 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_281958409"]}}} +{"ref":"Withering Step inflicts # additional Withered Debuffs","better":1,"matchers":[{"string":"고사시키는 걸음이 위축 디버프 #개 추가 유발"}],"trade":{"ids":{"enchant":["enchant.stat_3782733370"]}}} +{"ref":"Wrath has #% increased Aura Effect","better":1,"matchers":[{"string":"진노의 오라 효과 #% 증가"},{"string":"진노의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2181791238"],"implicit":["implicit.stat_2181791238"],"fractured":["fractured.stat_2181791238"]}}} +{"ref":"Wrath has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"진노의 마나 점유 효율 #% 증가"},{"string":"진노의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1761642973","explicit.stat_3444518809"],"fractured":["fractured.stat_3444518809"],"enchant":["enchant.stat_1761642973","enchant.stat_3444518809"]}}} +{"ref":"Wrath has no Reservation","better":1,"matchers":[{"string":"진노로 인한 점유 없음"}],"trade":{"ids":{"explicit":["explicit.stat_1865987277"]}}} +{"ref":"You always Ignite while Burning","better":1,"matchers":[{"string":"불타는 상태에서 항상 점화 유발"}],"trade":{"ids":{"explicit":["explicit.stat_2636728487"]}}} +{"ref":"You and Enemies in your Presence count as moving while affected by Elemental Ailments","better":1,"matchers":[{"string":"접근해 있는 적들과 자신이 원소 상태 이상의 영향을 받는 동안 이동하는 것으로 간주"}],"trade":{"ids":{"explicit":["explicit.stat_113536037"]}}} +{"ref":"You and nearby Allies deal #% increased Damage","better":1,"matchers":[{"string":"자신 및 주변 동료들이 주는 피해 #% 증가"},{"string":"자신 및 주변 동료들이 주는 피해 #% 감소","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1419713278"]}}} +{"ref":"You and nearby allies gain #% increased Damage","better":1,"matchers":[{"string":"플레이어와 주변 동료들이 주는 피해 #% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_637766438"]}}} +{"ref":"You and Nearby Allies have # to # added Chaos Damage per White Socket","better":1,"matchers":[{"string":"하얀 홈 하나당 자신 및 주변 동료들에게 카오스 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3232695173"]}}} +{"ref":"You and Nearby Allies have # to # added Cold Damage per Green Socket","better":1,"matchers":[{"string":"초록 홈 하나당 자신 및 주변 동료들에게 냉기 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_2665149933"]}}} +{"ref":"You and Nearby Allies have # to # added Fire Damage per Red Socket","better":1,"matchers":[{"string":"빨간 홈 하나당 자신 및 주변 동료들이 주는 화염 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_1666896662"]}}} +{"ref":"You and Nearby Allies have # to # added Lightning Damage per Blue Socket","better":1,"matchers":[{"string":"파란 홈 하나당 자신 및 주변 동료들에게 번개 피해 #~# 추가"}],"trade":{"ids":{"explicit":["explicit.stat_3726585224"],"enchant":["enchant.stat_3726585224"]}}} +{"ref":"You and Nearby Allies have #% increased Item Rarity","better":1,"matchers":[{"string":"자신 및 주변 동료들이 발견하는 아이템 희귀도 #% 증가"},{"string":"자신 및 주변 동료들이 발견하는 아이템 희귀도 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_549203380"]}}} +{"ref":"You and nearby Allies have +#% to Elemental Resistances","better":1,"matchers":[{"string":"자신 및 주변 동료들의 원소 저항 #%"}],"trade":{"ids":{"explicit":["explicit.stat_319842716"]}}} +{"ref":"You and nearby Allies have 30% increased Mana Regeneration Rate","better":1,"matchers":[{"string":"자신 및 주변 동료들의 마나 재생 속도 30% 감소","value":-1},{"string":"자신 및 주변 동료들의 마나 재생 속도 30% 증가","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2936084533"]}}} +{"ref":"You and your Minions take #% reduced Reflected Damage","better":-1,"matchers":[{"string":"자신 및 소환수가 반사로 받는 피해 #% 증가"},{"string":"자신 및 소환수가 반사로 받는 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3577248251"],"implicit":["implicit.stat_3577248251"],"fractured":["fractured.stat_3577248251"]},"inverted":true}} +{"ref":"You and your Minions take #% reduced Reflected Elemental Damage","better":-1,"matchers":[{"string":"자신 및 소환수가 반사로 받는 원소 피해 #% 증가"},{"string":"자신 및 소환수가 반사로 받는 원소 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2160417795"],"fractured":["fractured.stat_2160417795"],"scourge":["scourge.stat_2160417795"]},"inverted":true}} +{"ref":"You and your Minions take #% reduced Reflected Physical Damage","better":-1,"matchers":[{"string":"자신 및 소환수가 반사로 받는 물리 피해 #% 증가"},{"string":"자신 및 소환수가 반사로 받는 물리 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_129035625"],"fractured":["fractured.stat_129035625"],"scourge":["scourge.stat_129035625"]},"inverted":true}} +{"ref":"You and your Totems Regenerate #% of Life per second for each Summoned Totem","better":1,"matchers":[{"string":"자신 및 자신의 토템이 소환된 토템 하나당 1초마다 생명력의 #% 재생"}],"trade":{"ids":{"explicit":["explicit.stat_1496370423"]}}} +{"ref":"You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently","better":1,"matchers":[{"string":"최근 4초 이내 피해를 막지 못한 경우 최대 확률로 공격 피해를 막아냄"}],"trade":{"ids":{"explicit":["explicit.stat_2584264074"]}}} +{"ref":"You are at Maximum Chance to Block Spell Damage if you have not Blocked Recently","better":1,"matchers":[{"string":"최근 4초 이내 피해를 막지 못한 경우 최대 확률로 주문 피해를 막아냄"}],"trade":{"ids":{"explicit":["explicit.stat_1817677817"]}}} +{"ref":"You are Chilled when you are Poisoned","better":1,"matchers":[{"string":"중독되면 냉각 상태 유발"}],"trade":{"ids":{"explicit":["explicit.stat_1802660259"]}}} +{"ref":"You are Chilled while you are Bleeding","better":1,"matchers":[{"string":"출혈이 지속되는 동안 냉각 상태"}],"trade":{"ids":{"explicit":["explicit.stat_67132951"]}}} +{"ref":"You are Crushed","better":1,"matchers":[{"string":"타쇄당함"}],"trade":{"ids":{"implicit":["implicit.stat_846313030"]}}} +{"ref":"You are Cursed with Conductivity","better":1,"matchers":[{"string":"전도성 저주에 걸림"}],"trade":{"ids":{"scourge":["scourge.stat_4256430383"]}}} +{"ref":"You are Cursed with Despair","better":1,"matchers":[{"string":"절망 저주에 걸림"}],"trade":{"ids":{"scourge":["scourge.stat_2177148618"]}}} +{"ref":"You are Cursed with Elemental Weakness","better":1,"matchers":[{"string":"원소 약화 저주에 걸림"}],"trade":{"ids":{"scourge":["scourge.stat_916233227"]}}} +{"ref":"You are Cursed with Enfeeble","better":1,"matchers":[{"string":"쇠약화 저주에 걸림"}],"trade":{"ids":{"scourge":["scourge.stat_2102270408"]}}} +{"ref":"You are Cursed with Flammability","better":1,"matchers":[{"string":"인화성 저주에 걸림"}],"trade":{"ids":{"scourge":["scourge.stat_469425157"]}}} +{"ref":"You are Cursed with Frostbite","better":1,"matchers":[{"string":"동상 저주에 걸림"}],"trade":{"ids":{"scourge":["scourge.stat_469418792"]}}} +{"ref":"You are Cursed with Temporal Chains","better":1,"matchers":[{"string":"시간의 사슬 저주에 걸림"}],"trade":{"ids":{"scourge":["scourge.stat_226443538"]}}} +{"ref":"You are Cursed with Vulnerability","better":1,"matchers":[{"string":"취약성 저주에 걸림"}],"trade":{"ids":{"explicit":["explicit.stat_694123963"],"scourge":["scourge.stat_3947740014"]}}} +{"ref":"You are Hexproof if you have a Magic Ring in right slot","better":1,"matchers":[{"string":"오른쪽 슬롯에 마법 반지 장착 시 사술 방지 상태가 됨"}],"trade":{"ids":{"explicit":["explicit.stat_165884462"]}}} +{"ref":"You are Immune to Ailments while Focused","better":1,"matchers":[{"string":"집중하는 동안 상태 이상에 면역"}],"trade":{"ids":{"explicit":["explicit.stat_1766730250"],"fractured":["fractured.stat_1766730250"],"crafted":["crafted.stat_1766730250"]}}} +{"ref":"You are Shocked during Effect, causing 50% increased Damage taken","better":1,"matchers":[{"string":"효과를 받는 동안 플레이어에게 감전이 유발되어 받는 피해 50% 증가"}],"trade":{"ids":{"explicit":["explicit.stat_1187803783"]}}} +{"ref":"You are Unaffected by Bleeding if you've cast Vulnerability in the past 10 seconds","better":1,"matchers":[{"string":"최근 10초 이내 취약성을 시전한 경우 출혈의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_971937289"]}}} +{"ref":"You are Unaffected by Bleeding while Leeching","better":1,"matchers":[{"string":"흡수의 영향을 받는 동안 출혈의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_2291122510"]}}} +{"ref":"You are Unaffected by Freeze if you've cast Frostbite in the past 10 seconds","better":1,"matchers":[{"string":"최근 10초 이내 동상을 시전한 경우 동결의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_4194606073"]}}} +{"ref":"You are Unaffected by Ignite if you've cast Flammability in the past 10 seconds","better":1,"matchers":[{"string":"최근 10초 이내 인화성을 시전한 경우 점화의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_40907696"]}}} +{"ref":"You are Unaffected by Shock if you've cast Conductivity in the past 10 seconds","better":1,"matchers":[{"string":"최근 10초 이내 전도성을 시전한 경우 감전의 영향을 받지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_2517037025"]}}} +{"ref":"You can apply # additional Curses","better":1,"matchers":[{"string":"적용 가능 저주 1개 감소","value":-1},{"string":"추가 저주 #개 적용 가능"},{"string":"추가 저주 1개 적용 가능","value":1}],"trade":{"ids":{"explicit":["explicit.stat_30642521"],"implicit":["implicit.stat_30642521"],"fractured":["fractured.stat_30642521"],"scourge":["scourge.stat_30642521"],"crafted":["crafted.stat_30642521"]}}} +{"ref":"You can apply an additional Curse while affected by Malevolence","better":1,"matchers":[{"string":"악의의 영향을 받는 동안 추가 저주 #개 적용 가능"},{"string":"악의의 영향을 받는 동안 추가 저주 1개 적용 가능","value":1}],"trade":{"ids":{"explicit":["explicit.stat_4102244881"]}}} +{"ref":"You can apply an additional Curse while at maximum Power Charges","better":1,"matchers":[{"string":"최대 권능 충전 상태에서 저주 #회 추가 적용 가능"},{"string":"최대 권능 충전 상태에서 저주 1회 추가 적용 가능","value":1}],"trade":{"ids":{"explicit":["explicit.stat_761598374"]}}} +{"ref":"You can be Touched by Tormented Spirits","better":1,"matchers":[{"string":"자신이 고통받는 혼백의 손길에 닿을 수 있음"}],"trade":{"ids":{"explicit":["explicit.stat_4197792189"]}}} +{"ref":"You can Cast an additional Brand","better":1,"matchers":[{"string":"낙인 #개 추가 시전 가능"},{"string":"낙인 1개 추가 시전 가능","value":1}],"trade":{"ids":{"explicit":["explicit.stat_708630863"]}}} +{"ref":"You can catch Corrupted Fish","better":1,"matchers":[{"string":"타락한 물고기 포획 가능"}],"trade":{"ids":{"implicit":["implicit.stat_2451060005"]}}} +{"ref":"You can catch Exotic Fish","better":1,"matchers":[{"string":"특이한 물고기 포획 가능"}],"trade":{"ids":{"explicit":["explicit.stat_1471580517"]}}} +{"ref":"You can have an additional Tincture active","better":1,"matchers":[{"string":"팅크 1개 추가로 활성화 가능"}],"trade":{"ids":{"explicit":["explicit.stat_3806798486"]}}} +{"ref":"You can have an Offering of each type","better":1,"matchers":[{"string":"각 유형의 공물 보유 가능"}],"trade":{"ids":{"explicit":["explicit.stat_230941555"]}}} +{"ref":"You can inflict an additional Ignite on each Enemy","better":1,"matchers":[{"string":"적에게 추가 점화 #회 가능"},{"string":"적에게 추가 점화 1회 가능","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2837603657"]}}} +{"ref":"You can only deal Damage with this Weapon or Ignite","better":1,"matchers":[{"string":"이 무기나 점화로만 적에게 피해를 줄 수 있음"}],"trade":{"ids":{"explicit":["explicit.stat_3128318472"]}}} +{"ref":"You can only Socket Corrupted Gems in this item","better":1,"matchers":[{"string":"이 아이템에는 타락한 젬만 장착 가능"}],"trade":{"ids":{"explicit":["explicit.stat_608438307"]}}} +{"ref":"You can't deal Damage with your Skills yourself","better":1,"matchers":[{"string":"스킬을 사용하여 직접 피해를 줄 수 없음"}],"trade":{"ids":{"scourge":["scourge.stat_2248945598"]}}} +{"ref":"You cannot be Chilled for # second after being Chilled","better":1,"matchers":[{"string":"냉각된 후 #초 동안 냉각 면역"}],"trade":{"ids":{"explicit":["explicit.stat_2306924373"]}}} +{"ref":"You cannot be Cursed with Silence","better":1,"matchers":[{"string":"침묵 저주 면역"}],"trade":{"ids":{"explicit":["explicit.stat_1654414582"],"implicit":["implicit.stat_1654414582"]}}} +{"ref":"You cannot be Frozen for # second after being Frozen","better":1,"matchers":[{"string":"동결된 후 #초 동안 동결 면역"}],"trade":{"ids":{"explicit":["explicit.stat_3612464552"]}}} +{"ref":"You cannot be Hindered","better":1,"matchers":[{"string":"이동 방해 면역"}],"trade":{"ids":{"explicit":["explicit.stat_721014846"],"implicit":["implicit.stat_721014846"]}}} +{"ref":"You cannot be Ignited for # second after being Ignited","better":1,"matchers":[{"string":"점화된 후 #초 동안 점화 면역"}],"trade":{"ids":{"explicit":["explicit.stat_947072590"]}}} +{"ref":"You cannot be Maimed","better":1,"matchers":[{"string":"#%의 확률로 힘줄 절단 긴급회피"},{"string":"힘줄 절단 면역","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1126826428"],"implicit":["implicit.stat_1126826428"]}}} +{"ref":"You cannot be Shocked for # second after being Shocked","better":1,"matchers":[{"string":"감전된 후 #초 동안 감전 면역"}],"trade":{"ids":{"explicit":["explicit.stat_215346464"]}}} +{"ref":"You cannot be Shocked while at maximum Endurance Charges","better":1,"matchers":[{"string":"최대 인내 충전 상태에서 감전 면역"}],"trade":{"ids":{"explicit":["explicit.stat_798111687"]}}} +{"ref":"You cannot be Shocked while Frozen","better":1,"matchers":[{"string":"동결 상태에서 감전 면역"}],"trade":{"ids":{"explicit":["explicit.stat_798853218"]}}} +{"ref":"You cannot be Stunned while at maximum Endurance Charges","better":1,"matchers":[{"string":"최대 인내 충전 상태에서 기절 면역"}],"trade":{"ids":{"explicit":["explicit.stat_3780437763"]}}} +{"ref":"You cannot gain Rage during Soul Gain Prevention","better":1,"matchers":[{"string":"영혼 획득 방지 중 격노 획득 불가"}],"trade":{"ids":{"explicit":["explicit.stat_683365179"]}}} +{"ref":"You cannot have non-Animated Minions","better":1,"matchers":[{"string":"기동된 소환수만 보유 가능"}],"trade":{"ids":{"explicit":["explicit.stat_1220105149"]}}} +{"ref":"You cannot have non-Golem Minions","better":1,"matchers":[{"string":"골렘 소환수만 보유 가능"}],"trade":{"ids":{"explicit":["explicit.stat_1826605755"]}}} +{"ref":"You cannot have Non-Spectre Minions","better":1,"matchers":[{"string":"망령 소환수만 보유 가능"}],"trade":{"ids":{"explicit":["explicit.stat_2836980154"]}}} +{"ref":"You cannot Recharge Energy Shield","better":1,"matchers":[{"string":"에너지 보호막 재충전 불가"}],"trade":{"ids":{"explicit":["explicit.stat_4164247992"],"scourge":["scourge.stat_4164247992"]}}} +{"ref":"You cannot Regenerate Energy Shield","better":1,"matchers":[{"string":"에너지 보호막 재생 불가"}],"trade":{"ids":{"explicit":["explicit.stat_1052583507"],"scourge":["scourge.stat_1052583507"]}}} +{"ref":"You count as on Full Life while you are Cursed with Vulnerability","better":1,"matchers":[{"string":"취약성 저주를 받는 동안 최대 생명력 상태로 간주"}],"trade":{"ids":{"explicit":["explicit.stat_3257374551"]}}} +{"ref":"You count as on Low Life while you are Cursed with Vulnerability","better":1,"matchers":[{"string":"취약성 저주를 받는 동안 낮은 생명력 상태로 간주"}],"trade":{"ids":{"explicit":["explicit.stat_2304300603"]}}} +{"ref":"You do not inherently take less Damage for having Fortification","better":1,"matchers":[{"string":"받는 피해가 방어 상승 보유로 인해 감폭되지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_3560157887"]}}} +{"ref":"You gain a Grasping Vine when you take a Critical Strike","better":1,"matchers":[{"string":"치명타 피격 시 탐욕스러운 덩굴 #개 획득"},{"string":"치명타 피격 시 탐욕스러운 덩굴 1개 획득","value":1}],"trade":{"ids":{"explicit":["explicit.stat_375932027"]}}} +{"ref":"You gain Divinity for # seconds on reaching maximum Divine Charges\nLose all Divine Charges when you gain Divinity","better":1,"matchers":[{"string":"최대 신성 충전 도달 시 #초 동안 신성 획득\n신성 획득 시 모든 신성 충전 상실"}],"trade":{"ids":{"explicit":["explicit.stat_1174243390"]}}} +{"ref":"You gain Onslaught for # second per Endurance Charge when Hit","better":1,"matchers":[{"string":"피격 시 인내 충전 하나당 #초 동안 맹공 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3714207489"]}}} +{"ref":"You gain Onslaught for # seconds on Critical Strike","better":1,"matchers":[{"string":"치명타 명중 시 #초 동안 맹공 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1055188639"]}}} +{"ref":"You gain Onslaught for # seconds on Culling Strike","better":1,"matchers":[{"string":"마무리 타격 시 #초 동안 맹공 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3818161429"]}}} +{"ref":"You gain Onslaught for # seconds on Hit","better":1,"matchers":[{"string":"명중 시 #초 동안 맹공 획득"}],"trade":{"ids":{"implicit":["implicit.stat_2514424018"]}}} +{"ref":"You gain Onslaught for # seconds on Kill","better":1,"matchers":[{"string":"처치 시 #초 동안 맹공 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1195849808"]}}} +{"ref":"You gain Onslaught for # seconds on Kill while affected by Haste","better":1,"matchers":[{"string":"가속의 영향을 받는 동안 적 처치 시 #초 동안 맹공 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1424006185"]}}} +{"ref":"You gain Onslaught for # seconds on Killing Taunted Enemies","better":1,"matchers":[{"string":"도발한 적 처치 시 #초 동안 맹공 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2580101523"]}}} +{"ref":"You gain Onslaught for # seconds on using a Vaal Skill","better":1,"matchers":[{"string":"바알 스킬 사용 시 #초 동안 맹공 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2654043939"]}}} +{"ref":"You gain Onslaught for # seconds when Hit","better":1,"matchers":[{"string":"피격 시 #초 동안 맹공 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2764164760"],"fractured":["fractured.stat_2764164760"],"scourge":["scourge.stat_2764164760"]}}} +{"ref":"You gain Phasing for # seconds on using a Vaal Skill","better":1,"matchers":[{"string":"바알 스킬 사용 시 #초 동안 차원 능력 획득"}],"trade":{"ids":{"explicit":["explicit.stat_4089413281"]}}} +{"ref":"You grant # Frenzy Charges to allies on Death","better":1,"matchers":[{"string":"사망 시 동료들에게 격분 충전 #개 제공"}],"trade":{"ids":{"explicit":["explicit.stat_2105456174"]}}} +{"ref":"You have # Conflux for 3 seconds every 8 seconds","better":1,"matchers":[{"string":"8초마다 3초 동안 냉각 융합 획득","value":1},{"string":"8초마다 3초 동안 감전 융합 획득","value":2},{"string":"8초마다 3초 동안 점화 융합 획득","value":3}],"trade":{"ids":{"explicit":["explicit.stat_1190121450"],"fractured":["fractured.stat_1190121450"]},"option":true}} +{"ref":"You have Consecrated Ground around you while\nstationary if Strength is your highest Attribute","better":1,"matchers":[{"string":"능력치 중 힘이 가장 높을 경우 정지 상태일 때 주변에 신성화 지대 생성"}],"trade":{"ids":{"explicit":["explicit.stat_1196333117"]}}} +{"ref":"You have Consecrated Ground around you while stationary","better":1,"matchers":[{"string":"정지 상태일 때 주변에 신성화 지대 생성"}],"trade":{"ids":{"explicit":["explicit.stat_880970200"],"fractured":["fractured.stat_880970200"]}}} +{"ref":"You have Crimson Dance if you have dealt a Critical Strike Recently","better":1,"matchers":[{"string":"최근 4초 이내 치명타 명중 시 진홍색 춤 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1756017808"]}}} +{"ref":"You have Crimson Dance while you have Cat's Stealth","better":1,"matchers":[{"string":"고양이의 은신 상태에서 진홍색 춤 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3492797685"]}}} +{"ref":"You have Culling Strike against Cursed Enemies","better":1,"matchers":[{"string":"저주받은 적에게 마무리 타격 가능"}],"trade":{"ids":{"explicit":["explicit.stat_2150694455"]}}} +{"ref":"You have Far Shot while you do not have Iron Reflexes","better":1,"matchers":[{"string":"철의 반사신경이 없는 동안 장거리 사격 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3284029342"]}}} +{"ref":"You have Fungal Ground around you while stationary","better":1,"matchers":[{"string":"정지 상태일 때 주변에 곰팡이 지대 생성"}],"trade":{"ids":{"explicit":["explicit.stat_799872465"]}}} +{"ref":"You have Igniting, Chilling and Shocking Conflux while affected by Glorious Madness","better":1,"matchers":[{"string":"찬란한 광기의 영향을 받는 동안 점화, 냉각 및 감전 융합 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3909952544"]}}} +{"ref":"You have Iron Reflexes while at maximum Frenzy Charges","better":1,"matchers":[{"string":"최대 격분 충전 상태에서 철의 반사신경 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1990354706"]}}} +{"ref":"You have Lesser Brutal Shrine Buff","better":1,"matchers":[{"string":"하위 난폭의 성소 버프 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2761538350"]}}} +{"ref":"You have Lesser Massive Shrine Buff","better":1,"matchers":[{"string":"하위 거대화의 성소 버프 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3779398176"]}}} +{"ref":"You have Mind over Matter while at maximum Power Charges","better":1,"matchers":[{"string":"최대 권능 충전 상태에서 물질보다 정신 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1876857497"]}}} +{"ref":"You have no Armour or Maximum Energy Shield","better":1,"matchers":[{"string":"방어도와 에너지 보호막 최대치 없음"}],"trade":{"ids":{"explicit":["explicit.stat_3591359751"]}}} +{"ref":"You have no Intelligence","better":1,"matchers":[{"string":"지능 없음"}],"trade":{"ids":{"explicit":["explicit.stat_2706175703"]}}} +{"ref":"You have no Life Regeneration","better":1,"matchers":[{"string":"생명력 재생 없음"}],"trade":{"ids":{"explicit":["explicit.stat_854225133"],"scourge":["scourge.stat_854225133"]}}} +{"ref":"You have no Mana Regeneration","better":1,"matchers":[{"string":"마나가 재생되지 않음"}],"trade":{"ids":{"scourge":["scourge.stat_1052246654"]}}} +{"ref":"You have Onslaught during Soul Gain Prevention","better":1,"matchers":[{"string":"영혼 획득 방지 중 맹공 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1572897579"],"fractured":["fractured.stat_1572897579"],"crafted":["crafted.stat_1572897579"]}}} +{"ref":"You have Onslaught while at maximum Endurance Charges","better":1,"matchers":[{"string":"최대 인내 충전 상태에서 맹공 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3101915418"]}}} +{"ref":"You have Onslaught while Fortified","better":1,"matchers":[{"string":"방어 상승 상태에서 맹공 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1493590317"]}}} +{"ref":"You have Onslaught while not on Low Mana","better":1,"matchers":[{"string":"낮은 마나 상태가 아닐 때 맹공 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1959256242"]}}} +{"ref":"You have Onslaught while on Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태일 때 맹공 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1871938116"]}}} +{"ref":"You have Onslaught while you have Cat's Agility","better":1,"matchers":[{"string":"고양이의 날렵함 상태일 때 맹공 획득"}],"trade":{"ids":{"explicit":["explicit.stat_4274075490"]}}} +{"ref":"You have Perfect Agony if you've dealt a Critical Strike recently","better":1,"matchers":[{"string":"최근 4초 이내 치명타 명중 시 완벽한 고통 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3058395672"]}}} +{"ref":"You have Phasing if Energy Shield Recharge has started Recently","better":1,"matchers":[{"string":"최근 4초 이내 에너지 보호막 재충전이 시작된 경우 차원 능력 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2632954025"]}}} +{"ref":"You have Phasing if you have Blocked Recently","better":1,"matchers":[{"string":"최근 4초 이내 막아낸 경우 차원 능력 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3492654051"]}}} +{"ref":"You have Phasing if you've Killed Recently","better":1,"matchers":[{"string":"최근 4초 이내 적을 처치한 경우 차원 능력 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3489372920"]}}} +{"ref":"You have Phasing while affected by Haste","better":1,"matchers":[{"string":"가속의 영향을 받는 동안 차원 능력 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1346311588"]}}} +{"ref":"You have Phasing while on Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태일 때 차원 능력 획득"}],"trade":{"ids":{"explicit":["explicit.stat_23466649"]}}} +{"ref":"You have Phasing while you have Cat's Stealth","better":1,"matchers":[{"string":"고양이의 은신 상태에서 차원 능력 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1834455446"]}}} +{"ref":"You have Resolute Technique while you do not have Elemental Overload","better":1,"matchers":[{"string":"원소 과부하가 끝나면 확고한 기술 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2905429068"]}}} +{"ref":"You have Scorching Conflux, Brittle Conflux and Sapping Conflux while your two highest Attributes are equal","better":1,"matchers":[{"string":"가장 높은 능력치 2개의 수치가 동일하면 작열하는 융합, 허약 융합, 활력 감소의 융합 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1518701332"]}}} +{"ref":"You have Tailwind if you have dealt a Critical Strike Recently","better":1,"matchers":[{"string":"최근 4초 이내 치명타 명중 시 순풍 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1085545682"],"fractured":["fractured.stat_1085545682"]}}} +{"ref":"You have Tailwind if you've used a Socketed Vaal Skill Recently","better":1,"matchers":[{"string":"최근 4초 이내 장착된 바알 스킬을 사용한 경우 순풍 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1678234826"]}}} +{"ref":"You have Unholy Might while you have no Energy Shield","better":1,"matchers":[{"string":"에너지 보호막이 없는 동안 불경한 힘 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2353201291"]}}} +{"ref":"You have Vaal Pact if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"최근 4초 이내 치명타 명중 시 바알의 계약 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1032751668"]}}} +{"ref":"You have Vaal Pact while all Socketed Gems are Red","better":1,"matchers":[{"string":"장착된 젬이 모두 빨간색일 때 바알의 계약 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3242537102"]}}} +{"ref":"You have Vaal Pact while at maximum Endurance Charges","better":1,"matchers":[{"string":"최대 인내 충전 상태에서 바알의 계약 획득"}],"trade":{"ids":{"explicit":["explicit.stat_1314418188"]}}} +{"ref":"You have Vaal Pact while Focused","better":1,"matchers":[{"string":"집중하는 동안 바알의 계약 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2022851697"],"fractured":["fractured.stat_2022851697"],"crafted":["crafted.stat_2022851697"]}}} +{"ref":"You have Zealot's Oath if you haven't been hit recently","better":1,"matchers":[{"string":"최근 4초 이내 피격되지 않은 경우 맹신자의 서약 획득"}],"trade":{"ids":{"explicit":["explicit.stat_2391255504"]}}} +{"ref":"You lose all Endurance Charges on reaching maximum Endurance Charges","better":1,"matchers":[{"string":"최대 인내 충전에 도달 시 모든 인내 충전 상실"}],"trade":{"ids":{"explicit":["explicit.stat_3590104875"]}}} +{"ref":"You lose all Endurance Charges when Hit","better":1,"matchers":[{"string":"피격 시 모든 인내 충전 상실"}],"trade":{"ids":{"explicit":["explicit.stat_2994477068"]}}} +{"ref":"You lose all Spirit Charges when taking a Savage Hit","better":1,"matchers":[{"string":"야만적인 타격을 받으면 모든 혼백 충전 상실"}],"trade":{"ids":{"explicit":["explicit.stat_2663792764"]}}} +{"ref":"You only lose # Crab Barriers when you take Physical Damage from a Hit","better":1,"matchers":[{"string":"피격 시 물리 피해를 받을 때 게의 방어막 #개만 상실"}],"trade":{"ids":{"explicit":["explicit.stat_455217103"]}}} +{"ref":"You take # Chaos Damage per second for # seconds on Kill","better":1,"matchers":[{"string":"처치 시 #초 동안 1초마다 # 카오스 피해를 받음"}],"trade":{"ids":{"explicit":["explicit.stat_4031081471"],"fractured":["fractured.stat_4031081471"]}}} +{"ref":"You take #% increased Extra Damage from Critical Strikes by Poisoned Enemies","better":1,"matchers":[{"string":"중독된 적에게 치명타로 받는 추가 피해 #% 증가"},{"string":"중독된 적에게 치명타로 받는 추가 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2070361501"]}}} +{"ref":"You take #% of Damage from Blocked Hits","better":1,"matchers":[{"string":"피격을 막아낼 시 피해의 #%를 받음"}],"trade":{"ids":{"explicit":["explicit.stat_2905515354"],"implicit":["implicit.stat_2905515354"]}}} +{"ref":"You take #% of Elemental Damage from Blocked Hits","better":1,"matchers":[{"string":"피격을 막아낼 시 원소 피해의 #%를 받음"}],"trade":{"ids":{"explicit":["explicit.stat_2393355605"]}}} +{"ref":"You take #% of your maximum Life as Chaos Damage on use","better":1,"matchers":[{"string":"사용 시 최대 생명력의 #%를 카오스 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_2301696196"]}}} +{"ref":"You take #% reduced Extra Damage from Critical Strikes","better":1,"matchers":[{"string":"치명타로 받는 추가 피해 #% 감소"},{"string":"치명타로 받는 추가 피해 #% 증가","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3855016469"],"implicit":["implicit.stat_3855016469"],"fractured":["fractured.stat_3855016469"],"scourge":["scourge.stat_3855016469"]}}} +{"ref":"You take #% reduced Extra Damage from Critical Strikes if you've taken a Critical Strike Recently","better":1,"matchers":[{"string":"최근 4초 이내 치명타를 맞은 경우 치명타로 받는 추가 피해 #% 감소"}],"trade":{"ids":{"enchant":["enchant.stat_2047590583"]}}} +{"ref":"You take #% reduced Extra Damage from Critical Strikes per Endurance Charge","better":1,"matchers":[{"string":"인내 충전 하나당 치명타로 받는 추가 피해 #% 감소"},{"string":"인내 충전 하나당 치명타로 받는 추가 피해 #% 증가","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2380848911"],"fractured":["fractured.stat_2380848911"]}}} +{"ref":"You take #% reduced Extra Damage from Critical Strikes while affected by Determination","better":-1,"matchers":[{"string":"결의의 영향을 받는 동안 치명타로 받는 추가 피해 #% 증가"},{"string":"결의의 영향을 받는 동안 치명타로 받는 추가 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_68410701"]},"inverted":true}} +{"ref":"You take #% reduced Extra Damage from Critical Strikes while you have no Power Charges","better":-1,"matchers":[{"string":"권능 충전이 없는 상태에서 치명타로 받는 추가 피해 #% 증가"},{"string":"권능 충전이 없는 상태에서 치명타로 받는 추가 피해 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3544527742"]},"inverted":true}} +{"ref":"You take Chaos Damage instead of Physical Damage from Bleeding","better":1,"matchers":[{"string":"출혈을 물리 피해 대신 카오스 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_1623397857"]}}} +{"ref":"You take no Extra Damage from Critical Strikes while Elusive","better":1,"matchers":[{"string":"도피 중 치명타로 받는 추가 피해 없음"}],"trade":{"ids":{"explicit":["explicit.stat_2953854044"]}}} +{"ref":"Your Arc Towers deal #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"4,4"}],"matchers":[{"string":"연쇄 번개 탑의 피해 #% 증가"},{"string":"연쇄 번개 탑의 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3011405513"]}}} +{"ref":"Your Arc Towers have # additional chains","better":1,"anointments":[{"roll":3,"oils":"3,13"}],"matchers":[{"string":"연쇄 번개 탑의 연쇄 반응 #회 추가"}],"trade":{"ids":{"enchant":["enchant.stat_6032025"]}}} +{"ref":"Your Arc Towers have #% chance to inflict Sap","better":1,"anointments":[{"roll":20,"oils":"3,7"}],"matchers":[{"string":"연쇄 번개 탑이 #% 확률로 활력 감소 유발"}],"trade":{"ids":{"enchant":["enchant.stat_441374889"]}}} +{"ref":"Your Arc Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"3,9"}],"matchers":[{"string":"연쇄 번개 탑의 사거리 #% 증가"},{"string":"연쇄 번개 탑의 사거리 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1572544406"]}}} +{"ref":"Your Arc Towers repeats # additional Times","better":1,"anointments":[{"roll":1,"oils":"1,12"}],"matchers":[{"string":"연쇄 번개 탑이 #회 추가 반복"}],"trade":{"ids":{"enchant":["enchant.stat_4173465567"]}}} +{"ref":"Your Aura Buffs do not affect allies","better":1,"matchers":[{"string":"자신의 오라 버프 효과가 동료들에게는 영향을 주지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_4196775867"]}}} +{"ref":"Your Chaos Damage can Chill","better":1,"matchers":[{"string":"카오스 피해가 냉각 유발"}],"trade":{"ids":{"explicit":["explicit.stat_3686066640"]}}} +{"ref":"Your Chaos Damage can Ignite","better":1,"matchers":[{"string":"카오스 피해가 점화 유발"}],"trade":{"ids":{"explicit":["explicit.stat_1139878780"]}}} +{"ref":"Your Chaos Damage can Shock","better":1,"matchers":[{"string":"카오스 피해가 감전 유발"}],"trade":{"ids":{"explicit":["explicit.stat_2418601510"]}}} +{"ref":"Your Chaos Damage cannot Poison","better":1,"matchers":[{"string":"카오스 피해로 중독 불가"}],"trade":{"ids":{"scourge":["scourge.stat_2578701544"]}}} +{"ref":"Your Chaos Damage has #% chance to Poison Enemies","better":1,"matchers":[{"string":"카오스 피해가 #%의 확률로 적 중독 유발"},{"string":"카오스 피해로 적 중독","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2894297982","explicit.stat_3549040753"]}}} +{"ref":"Your Chilling Towers deal #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"1,1"}],"matchers":[{"string":"냉각의 탑의 피해 #% 증가"},{"string":"냉각의 탑의 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_926530613"]}}} +{"ref":"Your Chilling Towers freeze enemies for # seconds while they are affected by chilling beams","better":1,"anointments":[{"roll":0.2,"oils":"11,12"}],"matchers":[{"string":"냉각의 탑이 냉각 광선에 영향을 받는 적을 #초 동안 동결"}],"trade":{"ids":{"enchant":["enchant.stat_1357120250"]}}} +{"ref":"Your Chilling Towers have #% increased Duration","better":1,"anointments":[{"roll":25,"oils":"8,10"}],"matchers":[{"string":"냉각의 탑 지속시간 #% 증가"},{"string":"냉각의 탑 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_889454763"]}}} +{"ref":"Your Chilling Towers have #% increased effect of Chill","better":1,"anointments":[{"roll":25,"oils":"8,8"}],"matchers":[{"string":"냉각의 탑의 냉각 효과 #% 증가"},{"string":"냉각의 탑의 냉각 효과 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1139911029"]}}} +{"ref":"Your Chilling Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"4,6"}],"matchers":[{"string":"냉각의 탑 사거리 #% 증가"},{"string":"냉각의 탑 사거리 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_27499777"]}}} +{"ref":"Your Cold Damage can Ignite","better":1,"matchers":[{"string":"냉기 피해가 점화 유발"}],"trade":{"ids":{"explicit":["explicit.stat_1888494262","explicit.stat_3573591118"],"fractured":["fractured.stat_1888494262"]}}} +{"ref":"Your Cold Damage can Ignite but not Freeze or Chill","better":1,"matchers":[{"string":"냉기 피해가 동결 및 냉각 대신 점화 유발"}],"trade":{"ids":{"explicit":["explicit.stat_1261612903"]}}} +{"ref":"Your Cold Damage can Poison","better":1,"matchers":[{"string":"냉기 피해가 중독 유발"}],"trade":{"ids":{"explicit":["explicit.stat_1917124426"]}}} +{"ref":"Your Cold Damage cannot Freeze","better":1,"matchers":[{"string":"냉기 피해로 동결 불가"}],"trade":{"ids":{"explicit":["explicit.stat_220932154"]}}} +{"ref":"Your Critical Strike Chance is Lucky while Focused","better":1,"matchers":[{"string":"집중하는 동안 치명타 확률에 불운 적용","value":-1},{"string":"집중하는 동안 치명타 확률에 행운 적용","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1349659520"],"fractured":["fractured.stat_1349659520"],"crafted":["crafted.stat_1349659520"]}}} +{"ref":"Your Critical Strike Chance is Lucky while on Low Life","better":1,"matchers":[{"string":"낮은 생명력 상태일 때 치명타 확률에 불운 적용","value":-1},{"string":"낮은 생명력 상태일 때 치명타 확률에 행운 적용","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2706122133"]}}} +{"ref":"Your Critical Strike Multiplier is 300%","better":1,"matchers":[{"string":"치명타 피해 배율 300%"}],"trade":{"ids":{"explicit":["explicit.stat_824024007"]}}} +{"ref":"Your Critical Strikes do not deal extra Damage","better":1,"matchers":[{"string":"치명타가 추가 피해를 주지 않음"}],"trade":{"ids":{"explicit":["explicit.stat_4058681894"],"scourge":["scourge.stat_4058681894"]}}} +{"ref":"Your Critical Strikes do not deal extra Damage during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 치명타로 주는 추가 피해 없음"}],"trade":{"ids":{"explicit":["explicit.stat_2893557981"]}}} +{"ref":"Your Curse Limit is equal to your maximum Power Charges","better":1,"matchers":[{"string":"저주 제한이 권능 충전 최대치와 동일"}],"trade":{"ids":{"explicit":["explicit.stat_973000407"]}}} +{"ref":"Your Curses have #% increased Effect if 50% of Curse Duration expired","better":1,"matchers":[{"string":"플레이어의 저주의 지속시간이 50% 경과하면 저주 효과 #% 증가"},{"string":"플레이어의 저주의 지속시간이 50% 경과하면 저주 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2339022735"]}}} +{"ref":"Your Elemental Damage can Shock","better":1,"matchers":[{"string":"원소 피해가 감전 유발"}],"trade":{"ids":{"explicit":["explicit.stat_2933625540"]}}} +{"ref":"Your Empowering Towers also grant #% increased Cast Speed","better":1,"anointments":[{"roll":20,"oils":"8,12"}],"matchers":[{"string":"강화의 탑의 시전 속도 또한 #% 증가"},{"string":"강화의 탑의 시전 속도 또한 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3564606017"]}}} +{"ref":"Your Empowering Towers also grant #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"10,12"}],"matchers":[{"string":"강화의 탑의 피해 또한 #% 증가"},{"string":"강화의 탑의 피해 또한 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2166020726"]}}} +{"ref":"Your Empowering Towers have #% increased Effect","better":1,"anointments":[{"roll":25,"oils":"2,6"}],"matchers":[{"string":"강화의 탑 효과 #% 증가"},{"string":"강화의 탑 효과 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_246356360"]}}} +{"ref":"Your Empowering Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"4,10"}],"matchers":[{"string":"강화의 탑 사거리 #% 증가"},{"string":"강화의 탑 사거리 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2097223452"]}}} +{"ref":"Your Energy Shield starts at zero","better":1,"matchers":[{"string":"불멸의 야망"},{"string":"에너지 보호막이 0에서 시작"}],"trade":{"ids":{"explicit":["explicit.stat_2413219096"]}}} +{"ref":"Your Fire Damage can Poison","better":1,"matchers":[{"string":"화염 피해가 중독 유발"}],"trade":{"ids":{"explicit":["explicit.stat_1985969957"]}}} +{"ref":"Your Fire Damage can Shock but not Ignite","better":1,"matchers":[{"string":"화염 피해가 점화 대신 감전 유발"}],"trade":{"ids":{"explicit":["explicit.stat_2949096603"]}}} +{"ref":"Your Fireball Towers deal #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"1,3"}],"matchers":[{"string":"화염구 탑의 피해 #% 증가"},{"string":"화염구 탑의 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3026109282"]}}} +{"ref":"Your Fireball Towers fire an additional Projectile","better":1,"anointments":[{"roll":2,"oils":"2,11"},{"roll":8,"oils":"11,13"}],"matchers":[{"string":"화염구 탑이 투사체 #개 추가 발사"},{"string":"화염구 탑이 투사체 1개 추가 발사","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1008350423"]}}} +{"ref":"Your Fireball Towers have #% increased Cast Speed","better":1,"anointments":[{"roll":15,"oils":"6,9"}],"matchers":[{"string":"화염구 탑 시전 속도 #% 증가"},{"string":"화염구 탑 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2410280305"]}}} +{"ref":"Your Fireball Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"2,8"}],"matchers":[{"string":"화염구 탑의 사거리 #% 증가"},{"string":"화염구 탑의 사거리 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_117905700"]}}} +{"ref":"Your Fireball Towers Projectiles fire in a circle","better":1,"matchers":[{"string":"화염구 탑이 원형으로 투사체 발사"}],"trade":{"ids":{"enchant":["enchant.stat_2685482716"]}}} +{"ref":"Your Flamethrower Towers deal #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"2,3"}],"matchers":[{"string":"화염방사기 탑의 피해 #% 증가"},{"string":"화염방사기 탑의 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1478321338"]}}} +{"ref":"Your Flamethrower Towers deal full damage to Fire Enemies","better":1,"anointments":[{"roll":1,"oils":"8,9"}],"matchers":[{"string":"화염방사기 탑이 화염 속성 적에게도 전체 피해를 줌"}],"trade":{"ids":{"enchant":["enchant.stat_3687716368"]}}} +{"ref":"Your Flamethrower Towers have #% chance to inflict Scorch","better":1,"anointments":[{"roll":20,"oils":"2,7"}],"matchers":[{"string":"화염방사기 탑이 #%의 확률로 그을림 유발"}],"trade":{"ids":{"enchant":["enchant.stat_1248361993"]}}} +{"ref":"Your Flamethrower Towers have #% increased Cast Speed","better":1,"anointments":[{"roll":15,"oils":"3,11"}],"matchers":[{"string":"화염방사기 탑의 시전 속도 #% 증가"},{"string":"화염방사기 탑의 시전 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4039396512"]}}} +{"ref":"Your Flamethrower Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"3,8"}],"matchers":[{"string":"화염방사기 탑의 사거리 #% 증가"},{"string":"화염방사기 탑의 사거리 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_665179774"]}}} +{"ref":"Your Freezebolt Tower deal full damage to Cold Enemies","better":1,"anointments":[{"roll":1,"oils":"4,9"}],"matchers":[{"string":"동결탄 탑이 냉기 속성 적에게도 전체 피해를 줌"}],"trade":{"ids":{"enchant":["enchant.stat_2541263647"]}}} +{"ref":"Your Freezebolt Towers deal #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"1,2"}],"matchers":[{"string":"동결탄 탑의 피해 #% 증가"},{"string":"동결탄 탑의 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2834109076"]}}} +{"ref":"Your Freezebolt Towers fire an additional Projectile","better":1,"anointments":[{"roll":2,"oils":"9,10"}],"matchers":[{"string":"동결탄 탑이 투사체 #개 추가 발사"},{"string":"동결탄 탑이 투사체 1개 추가 발사","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1797913614"]}}} +{"ref":"Your Freezebolt Towers have #% chance to inflict Brittle","better":1,"anointments":[{"roll":20,"oils":"4,7"}],"matchers":[{"string":"동결탄 탑이 #% 확률로 허약 유발"}],"trade":{"ids":{"enchant":["enchant.stat_3802588863"]}}} +{"ref":"Your Freezebolt Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"1,8"}],"matchers":[{"string":"동결탄 탑의 사거리 #% 증가"},{"string":"동결탄 탑의 사거리 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3434272371"]}}} +{"ref":"Your Glacial Cage Towers have #% increased Cooldown Recovery Rate","better":1,"anointments":[{"roll":20,"oils":"5,9"}],"matchers":[{"string":"빙하 창살 탑의 재사용 대기시간 회복 #% 증가"},{"string":"빙하 창살 탑의 재사용 대기시간 회복 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1035680542"]}}} +{"ref":"Your Glacial Cage Towers have #% increased Duration","better":1,"anointments":[{"roll":25,"oils":"2,2"}],"matchers":[{"string":"빙하 창살 탑의 지속시간 #% 증가"},{"string":"빙하 창살 탑의 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1056655244"]}}} +{"ref":"Your Glacial Cage Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"5,6"}],"matchers":[{"string":"빙하 창살 탑의 사거리 #% 증가"},{"string":"빙하 창살 탑의 사거리 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2454791895"]}}} +{"ref":"Your Hexes can affect Hexproof Enemies","better":1,"matchers":[{"string":"플레이어의 사술이 사술 방지 적에게 영향을 줌"}],"trade":{"ids":{"explicit":["explicit.stat_1367119630"]}}} +{"ref":"Your Hits can only Kill Frozen Enemies","better":1,"matchers":[{"string":"플레이어가 적중 시 동결된 적만 처치 가능"}],"trade":{"ids":{"explicit":["explicit.stat_2740359895"]}}} +{"ref":"Your hits can't be Evaded","better":1,"matchers":[{"string":"무조건 명중","value":1},{"string":"플레이어가 무조건 명중","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1165023334","explicit.stat_4126210832"],"fractured":["fractured.stat_4126210832"],"crafted":["crafted.stat_4126210832"]}}} +{"ref":"Your Hits can't be Evaded by Blinded Enemies","better":1,"matchers":[{"string":"플레이어가 실명된 적 무조건 명중"}],"trade":{"ids":{"explicit":["explicit.stat_90597215"]}}} +{"ref":"Your Hits cannot Penetrate or ignore Elemental Resistances","better":1,"matchers":[{"string":"명중 시 원소 저항을 관통하거나 무시할 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_3091072796"]}}} +{"ref":"Your Hits cannot Stun Enemies","better":1,"matchers":[{"string":"플레이어가 명중 시 적을 기절시킬 수 없음"}],"trade":{"ids":{"scourge":["scourge.stat_373932729"]}}} +{"ref":"Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds","better":1,"matchers":[{"string":"명중 시 8초 동안 1초마다 700 카오스 피해를 주는 부패 유발"}],"trade":{"ids":{"explicit":["explicit.stat_3322709337"],"fractured":["fractured.stat_3322709337"]}}} +{"ref":"Your Hits Intimidate Enemies for 4 seconds while you are using Pride","better":1,"matchers":[{"string":"자부심을 사용하는 동안 플레이어가 적 명중 시 4초 동안 적 위협"}],"trade":{"ids":{"explicit":["explicit.stat_3772848194"]}}} +{"ref":"Your Imbuing Towers also grant #% increased Critical Strike Chance","better":1,"anointments":[{"roll":50,"oils":"9,12"}],"matchers":[{"string":"부여의 탑의 치명타 확률 또한 #% 증가"},{"string":"부여의 탑의 치명타 확률 또한 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3891165938"]}}} +{"ref":"Your Imbuing Towers also grant #% increased Damage","better":1,"anointments":[{"roll":50,"oils":"8,13"}],"matchers":[{"string":"부여의 탑의 피해 또한 #% 증가"},{"string":"부여의 탑의 피해 또한 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_639766324"]}}} +{"ref":"Your Imbuing Towers also grant Onslaught","better":1,"anointments":[{"roll":1,"oils":"6,7"}],"matchers":[{"string":"부여의 탑이 맹공 적용"}],"trade":{"ids":{"enchant":["enchant.stat_1277406505"]}}} +{"ref":"Your Imbuing Towers have #% increased Effect","better":1,"anointments":[{"roll":25,"oils":"3,6"}],"matchers":[{"string":"부여의 탑의 효과 #% 증가"},{"string":"부여의 탑의 효과 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3346280197"]}}} +{"ref":"Your Imbuing Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"5,10"}],"matchers":[{"string":"부여의 탑 사거리 #% 증가"},{"string":"부여의 탑 사거리 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3044601282"]}}} +{"ref":"Your Lightning Damage can Freeze but not Shock","better":1,"matchers":[{"string":"번개 피해가 감전 대신 동결 유발"}],"trade":{"ids":{"explicit":["explicit.stat_1011772129"]}}} +{"ref":"Your Lightning Damage can Ignite","better":1,"matchers":[{"string":"번개 피해가 점화 유발"}],"trade":{"ids":{"explicit":["explicit.stat_3121133045"]}}} +{"ref":"Your Lightning Damage can Poison","better":1,"matchers":[{"string":"번개 피해가 중독 유발"}],"trade":{"ids":{"explicit":["explicit.stat_1604984482"]}}} +{"ref":"Your Lightning Storm Towers create Storms centred on Enemies","better":1,"anointments":[{"roll":1,"oils":"7,12"}],"matchers":[{"string":"번개 폭풍 탑이 적을 중심으로 태풍 생성"}],"trade":{"ids":{"enchant":["enchant.stat_3354028437"]}}} +{"ref":"Your Lightning Storm Towers deal #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"2,5"}],"matchers":[{"string":"번개 폭풍 탑의 피해 #% 증가"},{"string":"번개 폭풍 탑의 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1960580674"]}}} +{"ref":"Your Lightning Storm Towers have #% increased explosion Area of Effect","better":1,"anointments":[{"roll":25,"oils":"2,13"}],"matchers":[{"string":"번개 폭풍 탑의 폭발 효과 범위 #% 증가"},{"string":"번개 폭풍 탑의 폭발 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3849821286"]}}} +{"ref":"Your Lightning Storm Towers have #% increased Impact Delay","better":1,"anointments":[{"roll":-25,"oils":"10,10"}],"matchers":[{"string":"번개 폭풍 탑의 충격 지연시간 #% 증가"},{"string":"번개 폭풍 탑의 충격 지연시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_197351228"]}}} +{"ref":"Your Lightning Storm Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"2,9"}],"matchers":[{"string":"번개 폭풍 탑의 사거리 #% 증가"},{"string":"번개 폭풍 탑의 사거리 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1789548201"]}}} +{"ref":"Your Maps contain #","better":1,"matchers":[{"string":"지도에 아인하르 등장","value":2},{"string":"지역에 아인하르 등장","value":2},{"string":"지도에 알바 등장","value":3},{"string":"지역에 알바 등장","value":3},{"string":"지도에 니코 등장","value":5},{"string":"지역에 니코 등장","value":5},{"string":"지도에 준 등장","value":6},{"string":"지역에 준 등장","value":6},{"string":"지도에 자나 등장","value":7},{"string":"지역에 자나 등장","value":7}],"trade":{"ids":{"explicit":["explicit.stat_3187151138"],"enchant":["enchant.stat_3187151138"]},"option":true}} +{"ref":"Your Mark Transfers to another Enemy when Marked Enemy dies","better":1,"matchers":[{"string":"징표가 찍힌 적이 사망하면 #%의 확률로 징표가 다른 적에게 전이됨"},{"string":"징표가 찍힌 적이 사망하면 징표가 다른 적에게 전이됨","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1104120660"]}}} +{"ref":"Your Maximum Endurance Charges is equal to your Maximum Frenzy Charges","better":1,"matchers":[{"string":"인내 충전 최대치가 격분 충전 최대치와 동일"}],"trade":{"ids":{"explicit":["explicit.stat_3443585706"]}}} +{"ref":"Your Maximum Frenzy Charges is equal to your Maximum Power Charges","better":1,"matchers":[{"string":"격분 충전 최대치가 권능 충전 최대치와 동일"}],"trade":{"ids":{"explicit":["explicit.stat_2238831336"]}}} +{"ref":"Your Maximum Resistances are #%","better":1,"matchers":[{"string":"자신의 저항 최대치 #%"}],"trade":{"ids":{"explicit":["explicit.stat_798767971"]}}} +{"ref":"Your Meteor Towers always Stun","better":1,"anointments":[{"roll":1,"oils":"9,9"}],"matchers":[{"string":"유성 탑의 공격 적중 시 항시 기절 유발"}],"trade":{"ids":{"enchant":["enchant.stat_1819243251"]}}} +{"ref":"Your Meteor Towers create Burning Ground for # seconds on Hit","better":1,"anointments":[{"roll":3,"oils":"7,8"}],"matchers":[{"string":"유성 탑이 명중 시 #초 동안 용암 지대 생성"}],"trade":{"ids":{"enchant":["enchant.stat_3704937638"]}}} +{"ref":"Your Meteor Towers deal #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"1,4"}],"matchers":[{"string":"유성 탑의 피해 #% 증가"},{"string":"유성 탑의 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1084180630"]}}} +{"ref":"Your Meteor Towers drop an additional Meteor","better":1,"anointments":[{"roll":1,"oils":"4,11"}],"matchers":[{"string":"유성 탑이 유성 #개 추가 소환"},{"string":"유성 탑이 유성 1개 추가 소환","value":1}],"trade":{"ids":{"enchant":["enchant.stat_2396402660"]}}} +{"ref":"Your Meteor Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"4,8"}],"matchers":[{"string":"유성 탑의 사거리 #% 증가"},{"string":"유성 탑의 사거리 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1270423035"]}}} +{"ref":"Your Minions spread Burning Ground on Death, dealing #% of their maximum Life as Fire Damage per second","better":1,"matchers":[{"string":"소환수가 사망 시 용암 지대가 확산되어 1초마다 소환수 최대 생명력의 #%를 화염 피해로 줌"}],"trade":{"ids":{"explicit":["explicit.stat_4099989681"],"enchant":["enchant.stat_4099989681"]}}} +{"ref":"Your Minions spread Caustic Ground on Death, dealing #% of their maximum Life as Chaos Damage per second","better":1,"matchers":[{"string":"소환수가 사망 시 부식성 지대를 확산해 1초마다 최대 생명력의 #%를 카오스 피해로 줌"}],"trade":{"ids":{"explicit":["explicit.stat_688802590"]}}} +{"ref":"Your Minions use your Flasks when summoned","better":1,"matchers":[{"string":"소환될 때 소환수가 플레이어의 플라스크 사용"}],"trade":{"ids":{"explicit":["explicit.stat_1827636152"]}}} +{"ref":"Your Movement Skills are Disabled","better":1,"matchers":[{"string":"이동 스킬을 사용할 수 없음"}],"trade":{"ids":{"scourge":["scourge.stat_86000920"]}}} +{"ref":"Your Movement Speed is #% of its base value","better":1,"matchers":[{"string":"이동 속도가 기본 수치의 #%"}],"trade":{"ids":{"explicit":["explicit.stat_3945685369"]}}} +{"ref":"Your nearby party members maximum Endurance Charges is equal to yours","better":1,"matchers":[{"string":"주변 파티원의 인내 충전 최대치가 자신의 인내 충전 최대치와 동일"}],"trade":{"ids":{"explicit":["explicit.stat_598215770"]}}} +{"ref":"Your Offerings have #% increased Effect","better":1,"matchers":[{"string":"공물 효과 #% 증가"},{"string":"자신의 공물의 효과 #% 증가"},{"string":"공물 효과 #% 감소","negate":true},{"string":"자신의 공물의 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3191479793"],"implicit":["implicit.stat_3191479793"],"fractured":["fractured.stat_3191479793"]}}} +{"ref":"Your Offerings have #% increased Effect on you","better":1,"matchers":[{"string":"자신의 공물이 자신에게 미치는 효과 #% 증가"},{"string":"자신의 공물이 자신에게 미치는 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2071120096"]}}} +{"ref":"Your Physical Damage can Chill","better":1,"matchers":[{"string":"물리 피해가 냉각 유발"}],"trade":{"ids":{"explicit":["explicit.stat_2227042420"]}}} +{"ref":"Your Physical Damage can Freeze","better":1,"matchers":[{"string":"물리 피해가 동결 유발"}],"trade":{"ids":{"explicit":["explicit.stat_1526975429"]}}} +{"ref":"Your Physical Damage can Shock","better":1,"matchers":[{"string":"물리 피해가 감전 유발"}],"trade":{"ids":{"explicit":["explicit.stat_3848047105"]}}} +{"ref":"Your Physical Damage cannot Poison","better":1,"matchers":[{"string":"물리 피해로 중독 불가"}],"trade":{"ids":{"scourge":["scourge.stat_733138911"]}}} +{"ref":"Your Raised Spectres also gain Arcane Surge when you do","better":1,"matchers":[{"string":"비전 쇄도 획득 시 자신이 소환한 망령도 비전 쇄도 획득"}],"trade":{"ids":{"explicit":["explicit.stat_3462113315"]}}} +{"ref":"Your Raised Zombies count as corpses","better":1,"matchers":[{"string":"소환한 좀비를 시신으로 간주"}],"trade":{"ids":{"explicit":["explicit.stat_3951269079"]}}} +{"ref":"Your Scout Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"5,8"}],"matchers":[{"string":"정찰병 탑의 사거리 #% 증가"},{"string":"정찰병 탑의 사거리 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4048897123"]}}} +{"ref":"Your Scout Towers summon an additional minion","better":1,"anointments":[{"roll":1,"oils":"6,12"}],"matchers":[{"string":"정찰병 탑이 소환하는 소환수 #마리 추가"},{"string":"정찰병 탑이 소환하는 소환수 1마리 추가","value":1},{"string":"정찰병 탑이 소환하는 소환수 #마리 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1441906885"]}}} +{"ref":"Your Seismic Towers deal #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"3,5"}],"matchers":[{"string":"지진의 탑 피해 #% 증가"},{"string":"지진의 탑 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1582085030"]}}} +{"ref":"Your Seismic Towers have #% increased length and range of Cascades","better":1,"anointments":[{"roll":100,"oils":"12,13"}],"matchers":[{"string":"지진의 탑이 생성한 지진파의 너비와 사거리 #% 증가"},{"string":"지진의 탑이 생성한 지진파의 너비와 사거리 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3830917556"]}}} +{"ref":"Your Seismic Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"1,10"}],"matchers":[{"string":"지진의 탑 사거리 #% 증가"},{"string":"지진의 탑 사거리 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2410117075"]}}} +{"ref":"Your Seismic Towers have #% increased Stun Duration","better":1,"anointments":[{"roll":25,"oils":"2,12"}],"matchers":[{"string":"지진의 탑의 기절 지속시간 #% 증가"},{"string":"지진의 탑의 기절 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3006815533"]}}} +{"ref":"Your Seismic Towers have an additional Cascade","better":1,"anointments":[{"roll":1,"oils":"4,13"}],"matchers":[{"string":"지진의 탑이 지진파 #개 추가 생성"},{"string":"지진의 탑이 지진파 1개 추가 생성","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3094610721"]}}} +{"ref":"Your Sentinel Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"6,8"}],"matchers":[{"string":"파수꾼 탑의 사거리 #% 증가"},{"string":"파수꾼 탑의 사거리 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1843683045"]}}} +{"ref":"Your Shock Nova Towers deal #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"3,4"}],"matchers":[{"string":"충격 폭발 탑의 피해 #% 증가"},{"string":"충격 폭발 탑의 피해 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2882048906"]}}} +{"ref":"Your Shock Nova Towers deal full damage to Lightning Enemies","better":1,"anointments":[{"roll":1,"oils":"9,11"}],"matchers":[{"string":"충격 폭발 탑이 번개 속성 적에게도 전체 피해를 줌"}],"trade":{"ids":{"enchant":["enchant.stat_2242331554"]}}} +{"ref":"Your Shock Nova Towers have #% increased area of effect per repeat","better":1,"anointments":[{"roll":30,"oils":"10,13"}],"matchers":[{"string":"충격 폭발 탑이 반복할 때마다 효과 범위 #% 증가"},{"string":"충격 폭발 탑이 반복할 때마다 효과 범위 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_21144785"]}}} +{"ref":"Your Shock Nova Towers have #% increased effect of Shock","better":1,"anointments":[{"roll":25,"oils":"1,13"}],"matchers":[{"string":"충격 폭발 탑의 감전 지속시간 #%증가"},{"string":"충격 폭발 탑의 감전 지속시간 #%감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_439316158"]}}} +{"ref":"Your Shock Nova Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"1,9"}],"matchers":[{"string":"충격 폭발 탑의 사거리 #% 증가"},{"string":"충격 폭발 탑의 사거리 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2731937118"]}}} +{"ref":"Your Shock Nova Towers repeats # additional Times","better":1,"matchers":[{"string":"충격 폭발 탑 #회 추가 반복"}],"trade":{"ids":{"enchant":["enchant.stat_307092526"]}}} +{"ref":"Your Skills deal you #% of Mana Spent on Upfront Skill Mana Costs as Physical Damage","better":1,"matchers":[{"string":"스킬 사용 시 초기 비용으로 소모한 마나의 #%를 물리 피해로 받음"}],"trade":{"ids":{"explicit":["explicit.stat_99487834"]}}} +{"ref":"Your Smothering Towers also grant #% chance to be Frozen, Shocked and Ignited","better":1,"anointments":[{"roll":10,"oils":"1,7"}],"matchers":[{"string":"질식의 탑이 #% 확률로 동결, 감전, 점화 적용"}],"trade":{"ids":{"enchant":["enchant.stat_906949000"]}}} +{"ref":"Your Smothering Towers also grant #% increased Damage","better":1,"anointments":[{"roll":-10,"oils":"9,13"}],"matchers":[{"string":"질식의 탑의 피해 또한 #% 증가"},{"string":"질식의 탑의 피해 또한 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2563159607"]}}} +{"ref":"Your Smothering Towers also grant #% increased Movement Speed","better":1,"anointments":[{"roll":-20,"oils":"11,11"}],"matchers":[{"string":"질식의 탑의 이동 속도 또한 #% 증가"},{"string":"질식의 탑의 이동 속도 또한 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_118036057"]}}} +{"ref":"Your Smothering Towers have #% increased Effect","better":1,"anointments":[{"roll":25,"oils":"5,5"}],"matchers":[{"string":"질식의 탑의 효과 #% 증가"},{"string":"질식의 탑의 효과 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_726779274"]}}} +{"ref":"Your Smothering Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"6,10"}],"matchers":[{"string":"질식의 탑 사거리 #% 증가"},{"string":"질식의 탑 사거리 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2764047332"]}}} +{"ref":"Your Spells are disabled","better":1,"matchers":[{"string":"주문을 사용할 수 없음"}],"trade":{"ids":{"explicit":["explicit.stat_1981749265"]}}} +{"ref":"Your spells have #% chance to Shock against Frozen Enemies","better":1,"matchers":[{"string":"주문이 #%의 확률로 동결된 적 감전 유발"}],"trade":{"ids":{"explicit":["explicit.stat_288651645"]}}} +{"ref":"Your Spells have Culling Strike","better":1,"matchers":[{"string":"주문에 마무리 타격 적용"}],"trade":{"ids":{"explicit":["explicit.stat_3238189103"]}}} +{"ref":"Your Stone Gaze Cage Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"3,10"}],"matchers":[{"string":"돌의 응시 창살 탑 사거리 #% 증가"},{"string":"돌의 응시 창살 탑 사거리 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2911217910"]}}} +{"ref":"Your Stone Gaze Towers have #% increased Cooldown Recovery Rate","better":1,"anointments":[{"roll":20,"oils":"4,12"}],"matchers":[{"string":"돌의 응시 탑 재사용 대기시간 회복 속도 #% 증가"},{"string":"돌의 응시 탑 재사용 대기시간 회복 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1619284089"]}}} +{"ref":"Your Stone Gaze Towers have #% increased Duration","better":1,"anointments":[{"roll":25,"oils":"4,5"}],"matchers":[{"string":"돌의 응시 탑 지속시간 #% 증가"},{"string":"돌의 응시 탑 지속시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_573352991"]}}} +{"ref":"Your Stone Gaze Towers have #% increased Petrification Delay","better":1,"anointments":[{"roll":-20,"oils":"6,13"}],"matchers":[{"string":"돌의 응시 탑의 석화 지연시간 #% 증가"},{"string":"돌의 응시 탑의 석화 지연시간 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3352207460"]}}} +{"ref":"Your Summoning Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"6,6"}],"matchers":[{"string":"소환의 탑 사거리 #% 증가"},{"string":"소환의 탑 사거리 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2550660356"]}}} +{"ref":"Your Summoning Towers summon # additional Minions","better":1,"anointments":[{"roll":2,"oils":"12,12"}],"matchers":[{"string":"소환의 탑이 소환수 #마리 추가 소환"}],"trade":{"ids":{"enchant":["enchant.stat_1261917923"]}}} +{"ref":"Your Temporal Towers also grant Stun Immunity","better":1,"anointments":[{"roll":1,"oils":"5,7"}],"matchers":[{"string":"시간의 탑이 기절 면역 효과 또한 부여"}],"trade":{"ids":{"enchant":["enchant.stat_2538402671"]}}} +{"ref":"Your Temporal Towers also grant you #% reduced action speed","better":1,"anointments":[{"roll":-20,"oils":"5,13"}],"matchers":[{"string":"시간의 탑이 부여하는 플레이어의 동작 속도 또한 #% 감소"},{"string":"시간의 탑이 부여하는 플레이어의 동작 속도 또한 #% 증가","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3198887051"]}}} +{"ref":"Your Temporal Towers effects decay #% faster","better":1,"anointments":[{"roll":-25,"oils":"3,12"}],"matchers":[{"string":"시간의 탑이 부패 속도 #% 증가"},{"string":"시간의 탑이 부패 속도 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4024383498"]}}} +{"ref":"Your Temporal Towers have #% increased Effect","better":1,"anointments":[{"roll":25,"oils":"1,6"}],"matchers":[{"string":"시간의 탑의 효과 #% 증가"},{"string":"시간의 탑의 효과 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2109921176"]}}} +{"ref":"Your Temporal Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"2,10"}],"matchers":[{"string":"시간의 탑 사거리 #% 증가"},{"string":"시간의 탑 사거리 #% 감소","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4089551985"]}}} +{"ref":"Your Towers deal #% increased Damage per Type of Tower Active","better":1,"anointments":[{"roll":10,"oils":"7,13"}],"matchers":[{"string":"활성화된 탑 유형 하나당 탑이 주는 피해 #% 증가"}],"trade":{"ids":{"enchant":["enchant.stat_2125952342"]}}} +{"ref":"Your Warcries open Chests","better":1,"matchers":[{"string":"플레이어가 함성을 사용하면 상자가 열림"}],"trade":{"ids":{"explicit":["explicit.stat_3452963763"],"fractured":["fractured.stat_3452963763"]}}} +{"ref":"Zealot's Oath","better":1,"matchers":[{"string":"맹신자의 서약"}],"trade":{"ids":{"explicit":["explicit.stat_632761194"],"scourge":["scourge.stat_632761194"]}}} +{"ref":"Zealot's Oath during Effect","better":1,"matchers":[{"string":"효과를 받는 동안 맹신자의 서약 획득"}],"trade":{"ids":{"explicit":["explicit.stat_851224302"]}}} +{"ref":"Zealotry has #% increased Aura Effect","better":1,"matchers":[{"string":"열광의 오라 효과 #% 증가"},{"string":"열광의 오라 효과 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4096052153"],"implicit":["implicit.stat_4096052153"],"fractured":["fractured.stat_4096052153"]}}} +{"ref":"Zealotry has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"열광의 마나 점유 효율 #% 증가"},{"string":"열광의 마나 점유 효율 #% 감소","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_168308685","explicit.stat_4216444167"],"enchant":["enchant.stat_168308685","enchant.stat_4216444167"]}}} +{"ref":"Zealotry has no Reservation","better":1,"matchers":[{"string":"열광으로 인한 점유 없음"}],"trade":{"ids":{"explicit":["explicit.stat_1741242318"]}}} diff --git a/renderer/public/.DS_Store/data/ru/items.ndjson.old b/renderer/public/.DS_Store/data/ru/items.ndjson.old new file mode 100644 index 000000000..a39f38748 --- /dev/null +++ b/renderer/public/.DS_Store/data/ru/items.ndjson.old @@ -0,0 +1,4527 @@ +{"name":"Кислотный ползун","refName":"Acid Slitherer","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Рекс-детёныш","refName":"Adolescent Rhex","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Горный дьявол","refName":"Alpine Devil","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Горный шаман","refName":"Alpine Shaman","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Дочь Аракаали","refName":"Arakaali's Daughter","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Северный волк","refName":"Arctic Wolf","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Крушитель","refName":"Armour Cruncher","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Лавинный всадник","refName":"Avalanche Rider","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Пернатый рыгатель","refName":"Avian Retch","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Колючюй змей","refName":"Barb Serpent","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Холмовой примат","refName":"Barrow Ape","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Бородатый дьявол","refName":"Bearded Devil","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Бородатый шаман","refName":"Bearded Shaman","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Бородатый призыватель небес","refName":"Bearded Skycaller","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Чернокрылая Морриган","refName":"Black Mórrigan","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Чёрный скорпион","refName":"Black Scorpion","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Выбеленный ползун","refName":"Bleached Crawler","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Кровавый примат","refName":"Blood Ape","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Вожак кровавых обезьян","refName":"Blood Chieftain","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Костолом","refName":"Bone Cruncher","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Костяной роа","refName":"Bone Rhoa","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Игольчатая кобра","refName":"Bramble Cobra","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Морской слуга","refName":"Brine Vassal","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Мрачный птицеед","refName":"Brooding Tarantula","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Примат убийца","refName":"Carnage Ape","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Буйствующий вожак обезьян","refName":"Carnage Chieftain","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Мерзкий копатель","refName":"Carrion Burrower","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Матка трупоедов","refName":"Carrion Queen","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Мерзкий жук","refName":"Carrion Swarmer","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Пещерный зверь","refName":"Cave Beast","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Пещерный легколап","refName":"Cave Skitterer","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Пещерный плывун","refName":"Cavern Drifter","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Химеровый квакун","refName":"Chimeric Croaker","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Хромовый ящер","refName":"Chrome-infused Chimeral","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Хромовый квакун","refName":"Chrome-infused Croaker","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Хромовый исполин","refName":"Chrome-infused Goliath","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Зеркальный ящер","refName":"Chrome-touched Chimeral","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Зеркальный квакун","refName":"Chrome-touched Croaker","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Зеркальный исполин","refName":"Chrome-touched Goliath","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Гигантский крушитель","refName":"Colossus Crusher","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Заражённый арахнид","refName":"Corrupted Arach","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Искажённый зверь","refName":"Corrupted Beast","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Искажённый роа","refName":"Corrupted Rhoa","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Ядовитый плевун","refName":"Corrupted Spitter","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Краценн, Первый Глубин","refName":"Craiceann, First of the Deep","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Ящер Краценна","refName":"Craicic Chimeral","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Пасть Краценна","refName":"Craicic Maw","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Песчаный плевун Краценна","refName":"Craicic Sand Spitter","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Свирепый краб Краценна","refName":"Craicic Savage Crab","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Крепкий краб Краценна","refName":"Craicic Shield Crab","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Краб-паук Краценна","refName":"Craicic Spider Crab","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Кальмар Краценна","refName":"Craicic Squid","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Слуга Краценна","refName":"Craicic Vassal","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Смотритель Краценна","refName":"Craicic Watcher","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Рак-стрелок","refName":"Crustacean Sniper","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Могильный охотник","refName":"Crypt Ambusher","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Подземельный ткач","refName":"Crypt Weaver","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Проклятый ужас","refName":"Cursed Spawn","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Глубинный краб","refName":"Deep Crustacean","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Пожиратель","refName":"Devourer","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Грязевой норовик","refName":"Dirt Scrabbler","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Жуткий примат","refName":"Dread Primate","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Барханный адский лев","refName":"Dune Hellion","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Пыльный норовик","refName":"Dust Scrabbler","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Завороженный арахнид","refName":"Enraptured Arachnid","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Завороженный зверь","refName":"Enraptured Beast","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Завороженный краб","refName":"Enraptured Crab","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Порабощенный адский лев","refName":"Enslaved Hellion","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Беглый рекс","refName":"Escaped Rhex","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Примат Фаррул","refName":"Farric Ape","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Вождь Фаррул","refName":"Farric Chieftain","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Адский лев-альфа Фаррул","refName":"Farric Flame Hellion Alpha","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Морозный адский лев Фаррул","refName":"Farric Frost Hellion Alpha","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Громадина Фаррул","refName":"Farric Gargantuan","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Козерог Фаррул","refName":"Farric Goatman","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Исполин Фаррул","refName":"Farric Goliath","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Рысь-альфа Фаррул","refName":"Farric Lynx Alpha","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Магмовая гончая Фаррул","refName":"Farric Magma Hound","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Подземная гончая Фаррул","refName":"Farric Pit Hound","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Телец Фаррул","refName":"Farric Taurus","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Тигр-альфа Фаррул","refName":"Farric Tiger Alpha","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Медведь Фаррул","refName":"Farric Ursa","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Волк-альфа Фаррул","refName":"Farric Wolf Alpha","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Фаррул, Первая Равнин","refName":"Farrul, First of the Plains","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Пожиратель Фенумы","refName":"Fenumal Devourer","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Гибридный арахнид Фенумы","refName":"Fenumal Hybrid Arachnid","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Чумной арахнид Фенумы","refName":"Fenumal Plagued Arachnid","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Королева Фенумы","refName":"Fenumal Queen","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Скорпион Фенумы","refName":"Fenumal Scorpion","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Норовик Фенумы","refName":"Fenumal Scrabbler","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Вдова Фенумы","refName":"Fenumal Widow","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Фенума, Первая Ночи","refName":"Fenumus, First of the Night","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Одичавший ящер","refName":"Feral Chimeral","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Дикий кокатрикс","refName":"Feral Fowl","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Зловонная пасть","refName":"Fetid Maw","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Бойцовый бык","refName":"Fighting Bull","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Мерзкая пасть","refName":"Filth Maw","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Огненный адский лев","refName":"Flame Hellion","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Лесной зверь","refName":"Forest Beast","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Морозный волк","refName":"Freezing Wolf","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Огненный пёс","refName":"Fury Hound","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Лесной аспид","refName":"Glade Mamba","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Ненасытный падальщик","refName":"Gluttonous Gull","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Козерог","refName":"Goatman","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Козерог-заклинатель огня","refName":"Goatman Fire-raiser","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Шаман козерогов","refName":"Goatman Shaman","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Козерог-топтун","refName":"Goatman Stomper","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Гранитный плевун","refName":"Granite Eater","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Галечник","refName":"Gravel Eater","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Пасущийся телец","refName":"Grazing Taurus","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Лохматый костолом","refName":"Hairy Bonecruncher","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Малёк","refName":"Hatchling","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Дьявол холма","refName":"Hill Devil","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Уж-переносчик","refName":"Host Adder","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Вожак-переносчик","refName":"Host Chieftain","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Змей-переносчик","refName":"Host Cobra","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Гибридный арахнид","refName":"Hybrid Arachnid","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Заражённый примат","refName":"Infested Ape","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Заражённый краб","refName":"Infested Crab","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Заражённый ползун","refName":"Infested Crawler","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Заражённая пасть","refName":"Infested Maw","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Заражённый роа","refName":"Infested Rhoa","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Заражённый змей","refName":"Infested Serpent","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Заражённый легколап","refName":"Infested Skitterer","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Заражённый верхолаз","refName":"Infested Tunnelfiend","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Заражённый медведь","refName":"Infested Ursa","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Заражённый гриф","refName":"Infested Vulture","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Чернопряд","refName":"Ink Spinner","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Прыгающий паук","refName":"Leaping Spider","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Равнинный скакун","refName":"Lowlands Hopper","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Таящийся отравитель","refName":"Lurking Venom","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Созревший рекс","refName":"Maternal Rhex","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Свита Мервейл","refName":"Merveil's Attendant","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Блаженная Мервейл","refName":"Merveil's Blessed","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Избранник Мервейл","refName":"Merveil's Chosen","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Дочь Мервейл","refName":"Merveil's Daughter","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Приближенный Мервейл","refName":"Merveil's Favoured","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Слуга Мервейл","refName":"Merveil's Retainer","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Безмозглый мусорщик","refName":"Mindless Scavenger","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Горный адский лев","refName":"Mountain Hellion","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Горный адский лев-альфа","refName":"Mountain Hellion Alpha","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Горная рысь","refName":"Mountain Lynx","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Тёмный бегун","refName":"Murk Runner","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Изуродованный арахнид","refName":"Mutant Arach","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Ночной уж","refName":"Night Adder","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Ядовитый птицеед","refName":"Noxious Tarantula","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Обсидиановый плевун","refName":"Obsidian Eater","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Паразит","refName":"Parasite","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Демон-пёс","refName":"Pitbull Demon","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Чумной арахнид","refName":"Plagued Arachnid","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Пластинчатый паразит","refName":"Plated Parasite","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Пернатый ящер","refName":"Plumed Chimeral","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Падучий медведь","refName":"Plummeting Ursa","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Дикобразный исполин","refName":"Porcupine Goliath","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Хищный скорпион","refName":"Predatory Scorpion","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Первобытный клешнелом","refName":"Primal Crushclaw","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Первобытный наростень","refName":"Primal Cystcaller","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Первобытная рекс-матриарх","refName":"Primal Rhex Matriarch","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Гончая очищения","refName":"Purge Hound","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Голодный паразит","refName":"Ravenous Parasite","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Самка роа","refName":"Rhoa Mare","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Каменный плевун","refName":"Rock Spitter","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Исчадие-задира","refName":"Rooster Fiend","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Гниющий гриф","refName":"Rotting Vulture","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Адский лев из развалин","refName":"Ruins Hellion","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Песчаный прыгун","refName":"Sand Leaper","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Песчаный скорпион","refName":"Sand Scorpion","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Песчаный змей","refName":"Sand Serpent","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Песчаный быстроног","refName":"Sand Skitterer","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Сакаваль, Первый Неба","refName":"Saqawal, First of the Sky","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Кровавая гадюка Сакаваля","refName":"Saqawine Blood Viper","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Ящер Сакаваля","refName":"Saqawine Chimeral","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Кобра Сакаваля","refName":"Saqawine Cobra","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Рыгатель Сакаваля","refName":"Saqawine Retch","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Рекс Сакаваля","refName":"Saqawine Rhex","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Роа Сакаваля","refName":"Saqawine Rhoa","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Гриф Сакаваля","refName":"Saqawine Vulture","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Свирепый краб","refName":"Savage Crab","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Едкий арахнид","refName":"Scalding Arachnid","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Всеядный гриф","refName":"Scavenging Vulture","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Сточник","refName":"Scum Crawler","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Нечистотник","refName":"Sewage Crawler","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Сточный плывун","refName":"Sewer Drifter","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Пленённый адский лев","refName":"Shackled Hellion","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Косматая образина","refName":"Shaggy Monstrosity","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Поющая сирена","refName":"Singing Siren","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Костяк зверя","refName":"Skeletal Beast","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Мерзкий мститель","refName":"Slimy Nemesis","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Снежный волк","refName":"Snow Wolf","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Безучастный смотритель","refName":"Soulless Watcher","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Веретянщик","refName":"Spindle Spider","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Шипастый змей","refName":"Spine Serpent","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Паразит-плевун","refName":"Spitting Parasite","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Адский примат","refName":"Stygian Ape","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Вожак адских обезьян","refName":"Stygian Silverback","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Серный скорпион","refName":"Sulphuric Scorpion","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Серное отродье","refName":"Sulphurspawn","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Тёмный моллюск","refName":"Swarthy Mollusc","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Когтистый лучник","refName":"Talon Archer","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Роа-самец","refName":"Tercel Rhoa","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Чащобная громадина","refName":"Thicket Hulk","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Ядовитый нечистотник","refName":"Toxic Crawler","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Верхолаз","refName":"Tunnelfiend","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Отшельник ваал","refName":"Vaal Recluse","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Скачущий квакун","refName":"Vaulting Croaker","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Ядовитый выродок","refName":"Venomous Spawn","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Яростная гончая","refName":"Vicious Hound","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Ужасный паразит","refName":"Vicious Parasite","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Ядовитый паук","refName":"Virulent Spider","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Буйный арахнион","refName":"Vivid Abberarach","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Буйный стервятник","refName":"Vivid Vulture","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Буйный наблюдатель","refName":"Vivid Watcher","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Боевой пёс","refName":"War Hound","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Сточный ползун","refName":"Waste Lurcher","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Затянутый паутиной паук","refName":"Webbed Spider","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Дикий шипоспин","refName":"Wild Brambleback","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Дикая щетинистая матрона","refName":"Wild Bristle Matron","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Дикий адский лев-альфа","refName":"Wild Hellion Alpha","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Дикий рекс","refName":"Wild Rhex","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Лесной медведь","refName":"Woods Ursa","namespace":"CAPTURED_BEAST","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJGdWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3214b44360/BestiaryOrbFull.png"} +{"name":"Пронизывающий ветер","refName":"A Chilling Wind","namespace":"DIVINATION_CARD","tradeTag":"a-chilling-wind","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Капля чернил","refName":"A Dab of Ink","namespace":"DIVINATION_CARD","tradeTag":"a-dab-of-ink","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Пыльное воспоминание","refName":"A Dusty Memory","namespace":"DIVINATION_CARD","tradeTag":"a-dusty-memory","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Знакомый зов","refName":"A Familiar Call","namespace":"DIVINATION_CARD","tradeTag":"a-familiar-call","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Участь хуже смерти","refName":"A Fate Worse Than Death","namespace":"DIVINATION_CARD","tradeTag":"a-fate-worse-than-death","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Скромная просьба","refName":"A Modest Request","namespace":"DIVINATION_CARD","tradeTag":"a-modest-request","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Прощальный дар матери","refName":"A Mother's Parting Gift","namespace":"DIVINATION_CARD","tradeTag":"a-mothers-parting-gift","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Музыка на ветру","refName":"A Note in the Wind","namespace":"DIVINATION_CARD","tradeTag":"a-note-in-the-wind","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Синее море","refName":"A Sea of Blue","namespace":"DIVINATION_CARD","tradeTag":"a-sea-of-blue","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Совершенный камень","refName":"A Stone Perfected","namespace":"DIVINATION_CARD","tradeTag":"a-stone-perfected","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Забытое богатство","refName":"Abandoned Wealth","namespace":"DIVINATION_CARD","tradeTag":"abandoned-wealth","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Акклиматизация","refName":"Acclimatisation","namespace":"DIVINATION_CARD","tradeTag":"acclimatisation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Пророчество Акила","refName":"Akil's Prophecy","namespace":"DIVINATION_CARD","tradeTag":"akils-prophecy","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Доброта Аливии","refName":"Alivia's Grace","namespace":"DIVINATION_CARD","tradeTag":"alivias-grace","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Соблазнительная награда","refName":"Alluring Bounty","namespace":"DIVINATION_CARD","tradeTag":"alluring-bounty","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Один в темноте","refName":"Alone in the Darkness","namespace":"DIVINATION_CARD","tradeTag":"alone-in-the-darkness","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Изменённое восприятие","refName":"Altered Perception","namespace":"DIVINATION_CARD","tradeTag":"altered-perception","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Амбициозная одержимость","refName":"Ambitious Obsession","namespace":"DIVINATION_CARD","tradeTag":"ambitious-obsession","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Цена анархии","refName":"Anarchy's Price","namespace":"DIVINATION_CARD","tradeTag":"anarchys-price","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Высокомерие ваал","refName":"Arrogance of the Vaal","namespace":"DIVINATION_CARD","tradeTag":"arrogance-of-the-vaal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Услуга душегуба","refName":"Assassin's Favour","namespace":"DIVINATION_CARD","tradeTag":"assassins-favour","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Подарок убийцы","refName":"Assassin's Gift","namespace":"DIVINATION_CARD","tradeTag":"assassins-gift","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Астральная защита","refName":"Astral Protection","namespace":"DIVINATION_CARD","tradeTag":"astral-protection","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Арсенал Атзири","refName":"Atziri's Arsenal","namespace":"DIVINATION_CARD","tradeTag":"atziris-arsenal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Наглость","refName":"Audacity","namespace":"DIVINATION_CARD","tradeTag":"audacity","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Многообещающие амбиции","refName":"Auspicious Ambitions","namespace":"DIVINATION_CARD","tradeTag":"auspicious-ambitions","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Пернатая погоня","refName":"Avian Pursuit","namespace":"DIVINATION_CARD","tradeTag":"avian-pursuit","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Лазурная ярость","refName":"Azure Rage","namespace":"DIVINATION_CARD","tradeTag":"azure-rage","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Награда Азирана","refName":"Azyran's Reward","namespace":"DIVINATION_CARD","tradeTag":"azyrans-reward","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Искушающие ожидания","refName":"Baited Expectations","namespace":"DIVINATION_CARD","tradeTag":"baited-expectations","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Посмертная красота","refName":"Beauty Through Death","namespace":"DIVINATION_CARD","tradeTag":"beauty-through-death","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Драгоценности","refName":"Bijoux","namespace":"DIVINATION_CARD","tradeTag":"bijoux","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Рождение трёх","refName":"Birth of the Three","namespace":"DIVINATION_CARD","tradeTag":"birth-of-the-three","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Сделка вслепую","refName":"Blind Venture","namespace":"DIVINATION_CARD","tradeTag":"blind-venture","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Дар правосудия","refName":"Boon of Justice","namespace":"DIVINATION_CARD","tradeTag":"boon-of-justice","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Дар Первых","refName":"Boon of the First Ones","namespace":"DIVINATION_CARD","tradeTag":"boon-of-the-first-ones","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Бескрайние владения","refName":"Boundless Realms","namespace":"DIVINATION_CARD","tradeTag":"boundless-realms","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Мечта лучника","refName":"Bowyer's Dream","namespace":"DIVINATION_CARD","tradeTag":"bowyers-dream","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Нарушенные обещания","refName":"Broken Promises","namespace":"DIVINATION_CARD","tradeTag":"broken-promises","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Нарушенное перемирие","refName":"Broken Truce","namespace":"DIVINATION_CARD","tradeTag":"broken-truce","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Подарок брата","refName":"Brother's Gift","namespace":"DIVINATION_CARD","tradeTag":"brothers-gift","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Братские сбережения","refName":"Brother's Stash","namespace":"DIVINATION_CARD","tradeTag":"brothers-stash","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Собратья по изгнанию","refName":"Brotherhood in Exile","namespace":"DIVINATION_CARD","tradeTag":"brotherhood-in-exile","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Кисть, краска и палитра","refName":"Brush, Paint and Palette","namespace":"DIVINATION_CARD","tradeTag":"brush-paint-and-palette","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Спрятанное сокровище","refName":"Buried Treasure","namespace":"DIVINATION_CARD","tradeTag":"buried-treasure","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Горящая кровь","refName":"Burning Blood","namespace":"DIVINATION_CARD","tradeTag":"burning-blood","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Призыв Первых","refName":"Call to the First Ones","namespace":"DIVINATION_CARD","tradeTag":"call-to-the-first-ones","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Доля Камерии","refName":"Cameria's Cut","namespace":"DIVINATION_CARD","tradeTag":"camerias-cut","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Восторг картографа","refName":"Cartographer's Delight","namespace":"DIVINATION_CARD","tradeTag":"cartographers-delight","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Баламут","refName":"Chaotic Disposition","namespace":"DIVINATION_CARD","tradeTag":"chaotic-disposition","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"В погоне за риском","refName":"Chasing Risk","namespace":"DIVINATION_CARD","tradeTag":"chasing-risk","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Шах и мат","refName":"Checkmate","namespace":"DIVINATION_CARD","tradeTag":"checkmate","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Удушающая вина","refName":"Choking Guilt","namespace":"DIVINATION_CARD","tradeTag":"choking-guilt","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Ценный раритет","refName":"Costly Curio","namespace":"DIVINATION_CARD","tradeTag":"costly-curio","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Кошачий совет","refName":"Council of Cats","namespace":"DIVINATION_CARD","tradeTag":"council-of-cats","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Упоение","refName":"Coveted Possession","namespace":"DIVINATION_CARD","tradeTag":"coveted-possession","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Проклятые слова","refName":"Cursed Words","namespace":"DIVINATION_CARD","tradeTag":"cursed-words","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Тёмные мечты","refName":"Dark Dreams","namespace":"DIVINATION_CARD","tradeTag":"dark-dreams","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Тёмное искушение","refName":"Dark Temptation","namespace":"DIVINATION_CARD","tradeTag":"dark-temptation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Тёмная половина","refName":"Darker Half","namespace":"DIVINATION_CARD","tradeTag":"darker-half","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Смертоносное веселье","refName":"Deadly Joy","namespace":"DIVINATION_CARD","tradeTag":"deadly-joy","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Смерть","refName":"Death","namespace":"DIVINATION_CARD","tradeTag":"death","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Смертельные замыслы","refName":"Deathly Designs","namespace":"DIVINATION_CARD","tradeTag":"deathly-designs","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Дементофобия","refName":"Dementophobia","namespace":"DIVINATION_CARD","tradeTag":"dementophobia","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Пари полубога","refName":"Demigod's Wager","namespace":"DIVINATION_CARD","tradeTag":"demigods-wager","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Осквернённая добродетель","refName":"Desecrated Virtue","namespace":"DIVINATION_CARD","tradeTag":"desecrated-virtue","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Отчаянный поход","refName":"Desperate Crusade","namespace":"DIVINATION_CARD","tradeTag":"desperate-crusade","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Неизбежный крах","refName":"Destined to Crumble","namespace":"DIVINATION_CARD","tradeTag":"destined-to-crumble","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Подчинение Диаллы","refName":"Dialla's Subjugation","namespace":"DIVINATION_CARD","tradeTag":"diallas-subjugation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Презрение","refName":"Disdain","namespace":"DIVINATION_CARD","tradeTag":"disdain","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Божественная красота","refName":"Divine Beauty","namespace":"DIVINATION_CARD","tradeTag":"divine-beauty","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Безумие Доэдре","refName":"Doedre's Madness","namespace":"DIVINATION_CARD","tradeTag":"doedres-madness","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Облачённый в мечты","refName":"Draped in Dreams","namespace":"DIVINATION_CARD","tradeTag":"draped-in-dreams","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Двойственность","refName":"Duality","namespace":"DIVINATION_CARD","tradeTag":"duality","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Угасающий свет","refName":"Dying Light","namespace":"DIVINATION_CARD","tradeTag":"dying-light","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Пьющий землю","refName":"Earth Drinker","namespace":"DIVINATION_CARD","tradeTag":"earth-drinker","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Отголоски любви","refName":"Echoes of Love","namespace":"DIVINATION_CARD","tradeTag":"echoes-of-love","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Мистический идеал","refName":"Eldritch Perfection","namespace":"DIVINATION_CARD","tradeTag":"eldritch-perfection","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Император Чистоты","refName":"Emperor of Purity","namespace":"DIVINATION_CARD","tradeTag":"emperor-of-purity","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Удача императора","refName":"Emperor's Luck","namespace":"DIVINATION_CARD","tradeTag":"emperors-luck","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Бесконечная ночь","refName":"Endless Night","namespace":"DIVINATION_CARD","tradeTag":"endless-night","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Выгравированные в крови","refName":"Etched in Blood","namespace":"DIVINATION_CARD","tradeTag":"etched-in-blood","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Вечные узы","refName":"Eternal Bonds","namespace":"DIVINATION_CARD","tradeTag":"eternal-bonds","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Бесконечные перемены","refName":"Ever-Changing","namespace":"DIVINATION_CARD","tradeTag":"ever-changing","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Судьбоносная встреча","refName":"Fateful Meeting","namespace":"DIVINATION_CARD","tradeTag":"fateful-meeting","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Огонь незнамо откуда","refName":"Fire Of Unknown Origin","namespace":"DIVINATION_CARD","tradeTag":"fire-of-unknown-origin","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Запретная сила","refName":"Forbidden Power","namespace":"DIVINATION_CARD","tradeTag":"forbidden-power","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Дружба","refName":"Friendship","namespace":"DIVINATION_CARD","tradeTag":"friendship","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"От костей к пеплу","refName":"From Bone to Ashes","namespace":"DIVINATION_CARD","tradeTag":"from-bone-to-ashes","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Новое изобретение","refName":"Further Invention","namespace":"DIVINATION_CARD","tradeTag":"further-invention","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Счастье камнереза","refName":"Gemcutter's Mercy","namespace":"DIVINATION_CARD","tradeTag":"gemcutters-mercy","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Клятва камнерезчика","refName":"Gemcutter's Promise","namespace":"DIVINATION_CARD","tradeTag":"gemcutters-promise","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Подарок Азенат","refName":"Gift of Asenath","namespace":"DIVINATION_CARD","tradeTag":"gift-of-asenath","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Дары царицы каменитов","refName":"Gift of the Gemling Queen","namespace":"DIVINATION_CARD","tradeTag":"gift-of-the-gemling-queen","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Проблеск надежды","refName":"Glimmer of Hope","namespace":"DIVINATION_CARD","tradeTag":"glimmer-of-hope","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Загробное знание","refName":"Grave Knowledge","namespace":"DIVINATION_CARD","tradeTag":"grave-knowledge","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Испытание Хранителя","refName":"Guardian's Challenge","namespace":"DIVINATION_CARD","tradeTag":"guardians-challenge","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Гармония душ","refName":"Harmony of Souls","namespace":"DIVINATION_CARD","tradeTag":"harmony-of-souls","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Преследующие тени","refName":"Haunting Shadows","namespace":"DIVINATION_CARD","tradeTag":"haunting-shadows","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Её маска","refName":"Her Mask","namespace":"DIVINATION_CARD","tradeTag":"her-mask","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Гетерохромия","refName":"Heterochromia","namespace":"DIVINATION_CARD","tradeTag":"heterochromia","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Дом","refName":"Home","namespace":"DIVINATION_CARD","tradeTag":"home","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Надежда","refName":"Hope","namespace":"DIVINATION_CARD","tradeTag":"hope-card","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Зеркальный лабиринт","refName":"House of Mirrors","namespace":"DIVINATION_CARD","tradeTag":"house-of-mirrors","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Высокомерие","refName":"Hubris","namespace":"DIVINATION_CARD","tradeTag":"hubris","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Смирение","refName":"Humility","namespace":"DIVINATION_CARD","tradeTag":"humility","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Решение охотника","refName":"Hunter's Resolve","namespace":"DIVINATION_CARD","tradeTag":"hunters-resolve","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Трофей охотника","refName":"Hunter's Reward","namespace":"DIVINATION_CARD","tradeTag":"hunters-reward","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Я вижу братьев","refName":"I See Brothers","namespace":"DIVINATION_CARD","tradeTag":"i-see-brothers","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Бессмертная решимость","refName":"Immortal Resolve","namespace":"DIVINATION_CARD","tradeTag":"immortal-resolve","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Несовершенные воспоминания","refName":"Imperfect Memories","namespace":"DIVINATION_CARD","tradeTag":"imperfect-memories","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Имперское наследие","refName":"Imperial Legacy","namespace":"DIVINATION_CARD","tradeTag":"imperial-legacy","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Сюрприз","refName":"Jack in the Box","namespace":"DIVINATION_CARD","tradeTag":"jack-in-the-box","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Осуждающие голоса","refName":"Judging Voices","namespace":"DIVINATION_CARD","tradeTag":"judging-voices","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Оправданные амбиции","refName":"Justified Ambition","namespace":"DIVINATION_CARD","tradeTag":"justified-ambition","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Порочность хранителя","refName":"Keeper's Corruption","namespace":"DIVINATION_CARD","tradeTag":"keepers-corruption","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Бездушие","refName":"Lachrymal Necrosis","namespace":"DIVINATION_CARD","tradeTag":"lachrymal-necrosis","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Утраченная любовь Лантадора","refName":"Lantador's Lost Love","namespace":"DIVINATION_CARD","tradeTag":"lantadors-lost-love","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Последняя надежда","refName":"Last Hope","namespace":"DIVINATION_CARD","tradeTag":"last-hope","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"На произвол судьбы","refName":"Left to Fate","namespace":"DIVINATION_CARD","tradeTag":"left-to-fate","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Летейское искушение","refName":"Lethean Temptation","namespace":"DIVINATION_CARD","tradeTag":"lethean-temptation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Свет и правда","refName":"Light and Truth","namespace":"DIVINATION_CARD","tradeTag":"light-and-truth","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Пережитки прошлого","refName":"Lingering Remnants","namespace":"DIVINATION_CARD","tradeTag":"lingering-remnants","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Одинокий воин","refName":"Lonely Warrior","namespace":"DIVINATION_CARD","tradeTag":"lonely-warrior","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Затерянные миры","refName":"Lost Worlds","namespace":"DIVINATION_CARD","tradeTag":"lost-worlds","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Любовь сквозь лёд","refName":"Love Through Ice","namespace":"DIVINATION_CARD","tradeTag":"love-through-ice","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Верность","refName":"Loyalty","namespace":"DIVINATION_CARD","tradeTag":"loyalty","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Удача ваал","refName":"Luck of the Vaal","namespace":"DIVINATION_CARD","tradeTag":"luck-of-the-vaal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Удачная сделка","refName":"Lucky Connections","namespace":"DIVINATION_CARD","tradeTag":"lucky-connections","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Счастливая колода","refName":"Lucky Deck","namespace":"DIVINATION_CARD","tradeTag":"lucky-deck","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Светящийся клад","refName":"Luminous Trove","namespace":"DIVINATION_CARD","tradeTag":"luminous-trove","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Передышка Лисы","refName":"Lysah's Respite","namespace":"DIVINATION_CARD","tradeTag":"lysahs-respite","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Магнум опус","refName":"Magnum Opus","namespace":"DIVINATION_CARD","tradeTag":"magnum-opus","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Человек с медведем","refName":"Man With Bear","namespace":"DIVINATION_CARD","tradeTag":"man-with-bear","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Матрёшка","refName":"Matryoshka","namespace":"DIVINATION_CARD","tradeTag":"matryoshka","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Mawr Blaidd","refName":"Mawr Blaidd","namespace":"DIVINATION_CARD","tradeTag":"mawr-blaidd","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Безжалостное орудие","refName":"Merciless Armament","namespace":"DIVINATION_CARD","tradeTag":"merciless-armament","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Правда в силе","refName":"Might is Right","namespace":"DIVINATION_CARD","tradeTag":"might-is-right","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Страдания в темноте","refName":"Misery in Darkness","namespace":"DIVINATION_CARD","tradeTag":"misery-in-darkness","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Рукавички","refName":"Mitts","namespace":"DIVINATION_CARD","tradeTag":"mitts","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Монохромность","refName":"Monochrome","namespace":"DIVINATION_CARD","tradeTag":"monochrome","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Большего всегда мало","refName":"More is Never Enough","namespace":"DIVINATION_CARD","tradeTag":"more-is-never-enough","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Без следа","refName":"No Traces","namespace":"DIVINATION_CARD","tradeTag":"no-traces","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Корона Нука","refName":"Nook's Crown","namespace":"DIVINATION_CARD","tradeTag":"nooks-crown","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Паразитирующие пассажиры","refName":"Parasitic Passengers","namespace":"DIVINATION_CARD","tradeTag":"parasitic-passengers","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Безмятежные минуты","refName":"Peaceful Moments","namespace":"DIVINATION_CARD","tradeTag":"peaceful-moments","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Идеал","refName":"Perfection","namespace":"DIVINATION_CARD","tradeTag":"perfection","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Отравленная вера","refName":"Poisoned Faith","namespace":"DIVINATION_CARD","tradeTag":"poisoned-faith","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Предрассудки","refName":"Prejudice","namespace":"DIVINATION_CARD","tradeTag":"prejudice","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Гордыня","refName":"Pride Before the Fall","namespace":"DIVINATION_CARD","tradeTag":"pride-before-the-fall","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Гордость Первых","refName":"Pride of the First Ones","namespace":"DIVINATION_CARD","tradeTag":"pride-of-the-first-ones","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Кузня Прометея","refName":"Prometheus' Armoury","namespace":"DIVINATION_CARD","tradeTag":"prometheus-armoury","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Богатство","refName":"Prosperity","namespace":"DIVINATION_CARD","tradeTag":"prosperity","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Пришествие хаоса","refName":"Rain of Chaos","namespace":"DIVINATION_CARD","tradeTag":"rain-of-chaos","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Дождь-искуситель","refName":"Rain Tempter","namespace":"DIVINATION_CARD","tradeTag":"rain-tempter","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Крысы","refName":"Rats","namespace":"DIVINATION_CARD","tradeTag":"rats","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Перерождение","refName":"Rebirth","namespace":"DIVINATION_CARD","tradeTag":"rebirth","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Возрождение и обновление","refName":"Rebirth and Renewal","namespace":"DIVINATION_CARD","tradeTag":"rebirth-and-renewal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Дерзкие амбиции","refName":"Reckless Ambition","namespace":"DIVINATION_CARD","tradeTag":"reckless-ambition","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Поминовение","refName":"Remembrance","namespace":"DIVINATION_CARD","tradeTag":"remembrance","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Клятва Самбодхи","refName":"Sambodhi's Vow","namespace":"DIVINATION_CARD","tradeTag":"sambodhis-vow","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Мудрость Самбодхи","refName":"Sambodhi's Wisdom","namespace":"DIVINATION_CARD","tradeTag":"sambodhis-wisdom","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Мореплаватель","refName":"Scholar of the Seas","namespace":"DIVINATION_CARD","tradeTag":"scholar-of-the-seas","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Семь лет неудач","refName":"Seven Years Bad Luck","namespace":"DIVINATION_CARD","tradeTag":"seven-years-bad-luck","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Осколок рока","refName":"Shard of Fate","namespace":"DIVINATION_CARD","tradeTag":"shard-of-fate","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Молчание и хлад","refName":"Silence and Frost","namespace":"DIVINATION_CARD","tradeTag":"silence-and-frost","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Укоризна общества","refName":"Society's Remorse","namespace":"DIVINATION_CARD","tradeTag":"societys-remorse","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Нечто тёмное","refName":"Something Dark","namespace":"DIVINATION_CARD","tradeTag":"something-dark","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Насыщение душами","refName":"Soul Quenched","namespace":"DIVINATION_CARD","tradeTag":"soul-quenched","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Поражённый молнией","refName":"Struck by Lightning","namespace":"DIVINATION_CARD","tradeTag":"struck-by-lightning","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Помощь безгрешных","refName":"Succor of the Sinless","namespace":"DIVINATION_CARD","tradeTag":"succor-of-the-sinless","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Умеренность","refName":"Temperance","namespace":"DIVINATION_CARD","tradeTag":"temperance","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Академик","refName":"The Academic","namespace":"DIVINATION_CARD","tradeTag":"the-academic","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Поклонник","refName":"The Admirer","namespace":"DIVINATION_CARD","tradeTag":"the-admirer","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Дух приключений","refName":"The Adventuring Spirit","namespace":"DIVINATION_CARD","tradeTag":"the-adventuring-spirit","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Эстет","refName":"The Aesthete","namespace":"DIVINATION_CARD","tradeTag":"the-aesthete","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Аптекарь","refName":"The Apothecary","namespace":"DIVINATION_CARD","tradeTag":"the-apothecary","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Правая рука Архимага","refName":"The Archmage's Right Hand","namespace":"DIVINATION_CARD","tradeTag":"the-archmages-right-hand","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Чемпион Арены","refName":"The Arena Champion","namespace":"DIVINATION_CARD","tradeTag":"the-arena-champion","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Армия крови","refName":"The Army of Blood","namespace":"DIVINATION_CARD","tradeTag":"the-army-of-blood","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Художник","refName":"The Artist","namespace":"DIVINATION_CARD","tradeTag":"the-artist","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Претендент","refName":"The Aspirant","namespace":"DIVINATION_CARD","tradeTag":"the-aspirant","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Астромант","refName":"The Astromancer","namespace":"DIVINATION_CARD","tradeTag":"the-astromancer","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Мститель","refName":"The Avenger","namespace":"DIVINATION_CARD","tradeTag":"the-avenger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Пробуждённые","refName":"The Awakened","namespace":"DIVINATION_CARD","tradeTag":"the-awakened","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Воитель","refName":"The Battle Born","namespace":"DIVINATION_CARD","tradeTag":"the-battle-born","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Женщина-медведь","refName":"The Bear Woman","namespace":"DIVINATION_CARD","tradeTag":"the-bear-woman","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Зверь","refName":"The Beast","namespace":"DIVINATION_CARD","tradeTag":"the-beast","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Предательство","refName":"The Betrayal","namespace":"DIVINATION_CARD","tradeTag":"the-betrayal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Колючее соцветие","refName":"The Bitter Blossom","namespace":"DIVINATION_CARD","tradeTag":"the-bitter-blossom","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Пылающий огонь","refName":"The Blazing Fire","namespace":"DIVINATION_CARD","tradeTag":"the-blazing-fire","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Тело","refName":"The Body","namespace":"DIVINATION_CARD","tradeTag":"the-body","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Кости","refName":"The Bones","namespace":"DIVINATION_CARD","tradeTag":"the-bones","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Дюжий волшебник","refName":"The Brawny Battle Mage","namespace":"DIVINATION_CARD","tradeTag":"the-brawny-battle-mage","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Разлом","refName":"The Breach","namespace":"DIVINATION_CARD","tradeTag":"the-breach","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Хрупкий император","refName":"The Brittle Emperor","namespace":"DIVINATION_CARD","tradeTag":"the-brittle-emperor","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Тайник","refName":"The Cache","namespace":"DIVINATION_CARD","tradeTag":"the-cache","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Какофония","refName":"The Cacophony","namespace":"DIVINATION_CARD","tradeTag":"the-cacophony","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Призыв","refName":"The Calling","namespace":"DIVINATION_CARD","tradeTag":"the-calling","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Шулер","refName":"The Card Sharp","namespace":"DIVINATION_CARD","tradeTag":"the-card-sharp","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Чёрный ворон","refName":"The Carrion Crow","namespace":"DIVINATION_CARD","tradeTag":"the-carrion-crow","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Картограф","refName":"The Cartographer","namespace":"DIVINATION_CARD","tradeTag":"the-cartographer","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Катаклизм","refName":"The Cataclysm","namespace":"DIVINATION_CARD","tradeTag":"the-cataclysm","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Катализатор","refName":"The Catalyst","namespace":"DIVINATION_CARD","tradeTag":"the-catalyst","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Улов","refName":"The Catch","namespace":"DIVINATION_CARD","tradeTag":"the-catch","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Небесный судья","refName":"The Celestial Justicar","namespace":"DIVINATION_CARD","tradeTag":"the-celestial-justicar","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Небесный камень","refName":"The Celestial Stone","namespace":"DIVINATION_CARD","tradeTag":"the-celestial-stone","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Оковы","refName":"The Chains that Bind","namespace":"DIVINATION_CARD","tradeTag":"the-chains-that-bind","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Ловкач","refName":"The Cheater","namespace":"DIVINATION_CARD","tradeTag":"the-cheater","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Избранный","refName":"The Chosen","namespace":"DIVINATION_CARD","tradeTag":"the-chosen","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Канун бури","refName":"The Coming Storm","namespace":"DIVINATION_CARD","tradeTag":"the-coming-storm","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Проводник","refName":"The Conduit","namespace":"DIVINATION_CARD","tradeTag":"the-conduit","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Стремление","refName":"The Craving","namespace":"DIVINATION_CARD","tradeTag":"the-craving","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Проклятый монарх","refName":"The Cursed King","namespace":"DIVINATION_CARD","tradeTag":"the-cursed-king","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Проклятые","refName":"The Damned","namespace":"DIVINATION_CARD","tradeTag":"the-damned","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Одарённый франт","refName":"The Dapper Prodigy","namespace":"DIVINATION_CARD","tradeTag":"the-dapper-prodigy","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Тёмный маг","refName":"The Dark Mage","namespace":"DIVINATION_CARD","tradeTag":"the-dark-mage","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Темнейший сон","refName":"The Darkest Dream","namespace":"DIVINATION_CARD","tradeTag":"the-darkest-dream","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Соглашение","refName":"The Deal","namespace":"DIVINATION_CARD","tradeTag":"the-deal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Обманщик","refName":"The Deceiver","namespace":"DIVINATION_CARD","tradeTag":"the-deceiver","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Глубокие","refName":"The Deep Ones","namespace":"DIVINATION_CARD","tradeTag":"the-deep-ones","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Демон","refName":"The Demon","namespace":"DIVINATION_CARD","tradeTag":"the-demon","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Демоница","refName":"The Demoness","namespace":"DIVINATION_CARD","tradeTag":"the-demoness","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Цель путешествия","refName":"The Destination","namespace":"DIVINATION_CARD","tradeTag":"the-destination","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Разрушитель","refName":"The Devastator","namespace":"DIVINATION_CARD","tradeTag":"the-devastator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Доктор","refName":"The Doctor","namespace":"DIVINATION_CARD","tradeTag":"the-doctor","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Двойник","refName":"The Doppelganger","namespace":"DIVINATION_CARD","tradeTag":"the-doppelganger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Дракон","refName":"The Dragon","namespace":"DIVINATION_CARD","tradeTag":"the-dragon","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Сердце дракона","refName":"The Dragon's Heart","namespace":"DIVINATION_CARD","tradeTag":"the-dragons-heart","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Сновидец","refName":"The Dreamer","namespace":"DIVINATION_CARD","tradeTag":"the-dreamer","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Страна грёз","refName":"The Dreamland","namespace":"DIVINATION_CARD","tradeTag":"the-dreamland","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Пьяный патриций","refName":"The Drunken Aristocrat","namespace":"DIVINATION_CARD","tradeTag":"the-drunken-aristocrat","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Тюремщик","refName":"The Dungeon Master","namespace":"DIVINATION_CARD","tradeTag":"the-dungeon-master","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Лёгкая прогулка","refName":"The Easy Stroll","namespace":"DIVINATION_CARD","tradeTag":"the-easy-stroll","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Аномальное увядание","refName":"The Eldritch Decay","namespace":"DIVINATION_CARD","tradeTag":"the-eldritch-decay","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Пустота","refName":"The Emptiness","namespace":"DIVINATION_CARD","tradeTag":"the-emptiness","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Вездесущая тьма","refName":"The Encroaching Darkness","namespace":"DIVINATION_CARD","tradeTag":"the-encroaching-darkness","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Бесконечная тьма","refName":"The Endless Darkness","namespace":"DIVINATION_CARD","tradeTag":"the-endless-darkness","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Выносливость","refName":"The Endurance","namespace":"DIVINATION_CARD","tradeTag":"the-endurance","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Исполнитель","refName":"The Enforcer","namespace":"DIVINATION_CARD","tradeTag":"the-enforcer","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Просветлённый","refName":"The Enlightened","namespace":"DIVINATION_CARD","tradeTag":"the-enlightened","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Энтузиасты","refName":"The Enthusiasts","namespace":"DIVINATION_CARD","tradeTag":"the-enthusiasts","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Побег","refName":"The Escape","namespace":"DIVINATION_CARD","tradeTag":"the-escape","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Вечная война","refName":"The Eternal War","namespace":"DIVINATION_CARD","tradeTag":"the-eternal-war","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Эфемерность","refName":"The Ethereal","namespace":"DIVINATION_CARD","tradeTag":"the-ethereal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Исследователь","refName":"The Explorer","namespace":"DIVINATION_CARD","tradeTag":"the-explorer","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Око ужаса","refName":"The Eye of Terror","namespace":"DIVINATION_CARD","tradeTag":"the-eye-of-terror","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Глаз дракона","refName":"The Eye of the Dragon","namespace":"DIVINATION_CARD","tradeTag":"the-eye-of-the-dragon","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Бездонные глубины","refName":"The Fathomless Depths","namespace":"DIVINATION_CARD","tradeTag":"the-fathomless-depths","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Пир","refName":"The Feast","namespace":"DIVINATION_CARD","tradeTag":"the-feast","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Враг","refName":"The Fiend","namespace":"DIVINATION_CARD","tradeTag":"the-fiend","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Завершающий штрих","refName":"The Finishing Touch","namespace":"DIVINATION_CARD","tradeTag":"the-finishing-touch","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Торговец рыбой","refName":"The Fishmonger","namespace":"DIVINATION_CARD","tradeTag":"the-fishmonger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Пронзатель","refName":"The Fletcher","namespace":"DIVINATION_CARD","tradeTag":"the-fletcher","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Сила природы","refName":"The Flora's Gift","namespace":"DIVINATION_CARD","tradeTag":"the-floras-gift","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Дурак","refName":"The Fool","namespace":"DIVINATION_CARD","tradeTag":"the-fool","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Забытое сокровище","refName":"The Forgotten Treasure","namespace":"DIVINATION_CARD","tradeTag":"the-forgotten-treasure","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Бесформенное море","refName":"The Formless Sea","namespace":"DIVINATION_CARD","tradeTag":"the-formless-sea","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Забытые","refName":"The Forsaken","namespace":"DIVINATION_CARD","tradeTag":"the-forsaken","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Счастливец","refName":"The Fortunate","namespace":"DIVINATION_CARD","tradeTag":"the-fortunate","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Взгляд вперёд","refName":"The Forward Gaze","namespace":"DIVINATION_CARD","tradeTag":"the-forward-gaze","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Лиса","refName":"The Fox","namespace":"DIVINATION_CARD","tradeTag":"the-fox","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Лис в терновнике","refName":"The Fox in the Brambles","namespace":"DIVINATION_CARD","tradeTag":"the-fox-in-the-brambles","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Игрок","refName":"The Gambler","namespace":"DIVINATION_CARD","tradeTag":"the-gambler","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Крикливая мощь","refName":"The Garish Power","namespace":"DIVINATION_CARD","tradeTag":"the-garish-power","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Камнерезчик","refName":"The Gemcutter","namespace":"DIVINATION_CARD","tradeTag":"the-gemcutter","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Джентльмен","refName":"The Gentleman","namespace":"DIVINATION_CARD","tradeTag":"the-gentleman","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Гладиатор","refName":"The Gladiator","namespace":"DIVINATION_CARD","tradeTag":"the-gladiator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Золотой век","refName":"The Golden Era","namespace":"DIVINATION_CARD","tradeTag":"the-golden-era","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Величайшие намерения","refName":"The Greatest Intentions","namespace":"DIVINATION_CARD","tradeTag":"the-greatest-intentions","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Пропасть","refName":"The Gulf","namespace":"DIVINATION_CARD","tradeTag":"the-gulf","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Крепкое сердце","refName":"The Hale Heart","namespace":"DIVINATION_CARD","tradeTag":"the-hale-heart","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Жнец","refName":"The Harvester","namespace":"DIVINATION_CARD","tradeTag":"the-harvester","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Отшельник","refName":"The Hermit","namespace":"DIVINATION_CARD","tradeTag":"the-hermit","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Героическая попытка","refName":"The Heroic Shot","namespace":"DIVINATION_CARD","tradeTag":"the-heroic-shot","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Скопище знаний","refName":"The Hive of Knowledge","namespace":"DIVINATION_CARD","tradeTag":"the-hive-of-knowledge","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Скопидом","refName":"The Hoarder","namespace":"DIVINATION_CARD","tradeTag":"the-hoarder","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Крючок","refName":"The Hook","namespace":"DIVINATION_CARD","tradeTag":"the-hook","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Голод","refName":"The Hunger","namespace":"DIVINATION_CARD","tradeTag":"the-hunger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Бессмертный","refName":"The Immortal","namespace":"DIVINATION_CARD","tradeTag":"the-immortal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Песнопение","refName":"The Incantation","namespace":"DIVINATION_CARD","tradeTag":"the-incantation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Невинный","refName":"The Innocent","namespace":"DIVINATION_CARD","tradeTag":"the-innocent","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Инокулированный","refName":"The Inoculated","namespace":"DIVINATION_CARD","tradeTag":"the-inoculated","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Безумная кошка","refName":"The Insane Cat","namespace":"DIVINATION_CARD","tradeTag":"the-insane-cat","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Ненасытный","refName":"The Insatiable","namespace":"DIVINATION_CARD","tradeTag":"the-insatiable","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Изобретатель","refName":"The Inventor","namespace":"DIVINATION_CARD","tradeTag":"the-inventor","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Шут","refName":"The Jester","namespace":"DIVINATION_CARD","tradeTag":"the-jester","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Благо ювелира","refName":"The Jeweller's Boon","namespace":"DIVINATION_CARD","tradeTag":"the-jewellers-boon","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Журналист","refName":"The Journalist","namespace":"DIVINATION_CARD","tradeTag":"the-journalist","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Путешествие","refName":"The Journey","namespace":"DIVINATION_CARD","tradeTag":"the-journey","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Клинок Венценосца","refName":"The King's Blade","namespace":"DIVINATION_CARD","tradeTag":"the-kings-blade","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Сердце вождя","refName":"The King's Heart","namespace":"DIVINATION_CARD","tradeTag":"the-kings-heart","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Приземление","refName":"The Landing","namespace":"DIVINATION_CARD","tradeTag":"the-landing","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Последний воин","refName":"The Last One Standing","namespace":"DIVINATION_CARD","tradeTag":"the-last-one-standing","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Последний ужин","refName":"The Last Supper","namespace":"DIVINATION_CARD","tradeTag":"the-last-supper","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Левиафан","refName":"The Leviathan","namespace":"DIVINATION_CARD","tradeTag":"the-leviathan","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Лич","refName":"The Lich","namespace":"DIVINATION_CARD","tradeTag":"the-lich","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Похититель жизни","refName":"The Life Thief","namespace":"DIVINATION_CARD","tradeTag":"the-life-thief","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Лев","refName":"The Lion","namespace":"DIVINATION_CARD","tradeTag":"the-lion","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Долгое собрание","refName":"The Long Con","namespace":"DIVINATION_CARD","tradeTag":"the-long-con","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Долгий дозор","refName":"The Long Watch","namespace":"DIVINATION_CARD","tradeTag":"the-long-watch","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Господин в чёрном","refName":"The Lord in Black","namespace":"DIVINATION_CARD","tradeTag":"the-lord-in-black","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Владыка триумфа","refName":"The Lord of Celebration","namespace":"DIVINATION_CARD","tradeTag":"the-lord-of-celebration","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Любовник","refName":"The Lover","namespace":"DIVINATION_CARD","tradeTag":"the-lover","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Жрица Лунарис","refName":"The Lunaris Priestess","namespace":"DIVINATION_CARD","tradeTag":"the-lunaris-priestess","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Безумный царь","refName":"The Mad King","namespace":"DIVINATION_CARD","tradeTag":"the-mad-king","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Магмовый краб","refName":"The Magma Crab","namespace":"DIVINATION_CARD","tradeTag":"the-magma-crab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Хозяин","refName":"The Master","namespace":"DIVINATION_CARD","tradeTag":"the-master","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Мастер-ремесленник","refName":"The Master Artisan","namespace":"DIVINATION_CARD","tradeTag":"the-master-artisan","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Наёмник","refName":"The Mercenary","namespace":"DIVINATION_CARD","tradeTag":"the-mercenary","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Посланник","refName":"The Messenger","namespace":"DIVINATION_CARD","tradeTag":"the-messenger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Дар кузнеца","refName":"The Metalsmith's Gift","namespace":"DIVINATION_CARD","tradeTag":"the-metalsmiths-gift","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Глаза разума","refName":"The Mind's Eyes","namespace":"DIVINATION_CARD","tradeTag":"the-minds-eyes","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Гора","refName":"The Mountain","namespace":"DIVINATION_CARD","tradeTag":"the-mountain","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Медсестра","refName":"The Nurse","namespace":"DIVINATION_CARD","tradeTag":"the-nurse","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Клятва","refName":"The Oath","namespace":"DIVINATION_CARD","tradeTag":"the-oath","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Скрытный","refName":"The Obscured","namespace":"DIVINATION_CARD","tradeTag":"the-obscured","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Подношение","refName":"The Offering","namespace":"DIVINATION_CARD","tradeTag":"the-offering","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Потомство","refName":"The Offspring","namespace":"DIVINATION_CARD","tradeTag":"the-offspring","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Старик","refName":"The Old Man","namespace":"DIVINATION_CARD","tradeTag":"the-old-man","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Неуловимая добыча","refName":"The One That Got Away","namespace":"DIVINATION_CARD","tradeTag":"the-one-that-got-away","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Единство","refName":"The One With All","namespace":"DIVINATION_CARD","tradeTag":"the-one-with-all","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Толстосум","refName":"The Opulent","namespace":"DIVINATION_CARD","tradeTag":"the-opulent","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Вожак стаи","refName":"The Pack Leader","namespace":"DIVINATION_CARD","tradeTag":"the-pack-leader","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Пакт","refName":"The Pact","namespace":"DIVINATION_CARD","tradeTag":"the-pact","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Пациент","refName":"The Patient","namespace":"DIVINATION_CARD","tradeTag":"the-patient","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Кающийся","refName":"The Penitent","namespace":"DIVINATION_CARD","tradeTag":"the-penitent","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Поэт","refName":"The Poet","namespace":"DIVINATION_CARD","tradeTag":"the-poet","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Полимат","refName":"The Polymath","namespace":"DIVINATION_CARD","tradeTag":"the-polymath","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Дикобраз","refName":"The Porcupine","namespace":"DIVINATION_CARD","tradeTag":"the-porcupine","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Цена послушания","refName":"The Price of Devotion","namespace":"DIVINATION_CARD","tradeTag":"the-price-of-devotion","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Цена преданности","refName":"The Price of Loyalty","namespace":"DIVINATION_CARD","tradeTag":"the-price-of-loyalty","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Цена предвидения","refName":"The Price of Prescience","namespace":"DIVINATION_CARD","tradeTag":"the-price-of-prescience","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Цена защиты","refName":"The Price of Protection","namespace":"DIVINATION_CARD","tradeTag":"the-price-of-protection","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Первородный","refName":"The Primordial","namespace":"DIVINATION_CARD","tradeTag":"the-primordial","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Князь тьмы","refName":"The Prince of Darkness","namespace":"DIVINATION_CARD","tradeTag":"the-prince-of-darkness","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Профессор","refName":"The Professor","namespace":"DIVINATION_CARD","tradeTag":"the-professor","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Потомок Лунарис","refName":"The Progeny of Lunaris","namespace":"DIVINATION_CARD","tradeTag":"the-progeny-of-lunaris","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Головоломка","refName":"The Puzzle","namespace":"DIVINATION_CARD","tradeTag":"the-puzzle","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Царица","refName":"The Queen","namespace":"DIVINATION_CARD","tradeTag":"the-queen","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Кроличья лапка","refName":"The Rabbit's Foot","namespace":"DIVINATION_CARD","tradeTag":"the-rabbits-foot","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Бешеный Роа","refName":"The Rabid Rhoa","namespace":"DIVINATION_CARD","tradeTag":"the-rabid-rhoa","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Царство","refName":"The Realm","namespace":"DIVINATION_CARD","tradeTag":"the-realm","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Возвращение крысы","refName":"The Return of the Rat","namespace":"DIVINATION_CARD","tradeTag":"the-return-of-the-rat","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Риск","refName":"The Risk","namespace":"DIVINATION_CARD","tradeTag":"the-risk","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Ритуал стихий","refName":"The Rite of Elements","namespace":"DIVINATION_CARD","tradeTag":"the-rite-of-elements","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Путь к власти","refName":"The Road to Power","namespace":"DIVINATION_CARD","tradeTag":"the-road-to-power","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Ржавый бард","refName":"The Rusted Bard","namespace":"DIVINATION_CARD","tradeTag":"the-rusted-bard","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Беспощадный ремень","refName":"The Ruthless Ceinture","namespace":"DIVINATION_CARD","tradeTag":"the-ruthless-ceinture","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Жертвоприношение","refName":"The Sacrifice","namespace":"DIVINATION_CARD","tradeTag":"the-sacrifice","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Сокровище святоши","refName":"The Saint's Treasure","namespace":"DIVINATION_CARD","tradeTag":"the-saints-treasure","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Око самурая","refName":"The Samurai's Eye","namespace":"DIVINATION_CARD","tradeTag":"the-samurais-eye","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Выгоревший луг","refName":"The Scarred Meadow","namespace":"DIVINATION_CARD","tradeTag":"the-scarred-meadow","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Падальщик","refName":"The Scavenger","namespace":"DIVINATION_CARD","tradeTag":"the-scavenger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Учёный","refName":"The Scholar","namespace":"DIVINATION_CARD","tradeTag":"the-scholar","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Разведчик","refName":"The Scout","namespace":"DIVINATION_CARD","tradeTag":"the-scout","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Искатель","refName":"The Seeker","namespace":"DIVINATION_CARD","tradeTag":"the-seeker","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Сефирот","refName":"The Sephirot","namespace":"DIVINATION_CARD","tradeTag":"the-sephirot","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Сандалии пастуха","refName":"The Shepherd's Sandals","namespace":"DIVINATION_CARD","tradeTag":"the-shepherds-sandals","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Щитоносец","refName":"The Shieldbearer","namespace":"DIVINATION_CARD","tradeTag":"the-shieldbearer","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Кратчайший путь","refName":"The Shortcut","namespace":"DIVINATION_CARD","tradeTag":"the-shortcut","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Побочное задание","refName":"The Side Quest","namespace":"DIVINATION_CARD","tradeTag":"the-side-quest","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Печать","refName":"The Sigil","namespace":"DIVINATION_CARD","tradeTag":"the-sigil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Сирена","refName":"The Siren","namespace":"DIVINATION_CARD","tradeTag":"the-siren","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Скелет","refName":"The Skeleton","namespace":"DIVINATION_CARD","tradeTag":"the-skeleton","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Душа","refName":"The Soul","namespace":"DIVINATION_CARD","tradeTag":"the-soul","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Искра и пламя","refName":"The Spark and the Flame","namespace":"DIVINATION_CARD","tradeTag":"the-spark-and-the-flame","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Баловень","refName":"The Spoiled Prince","namespace":"DIVINATION_CARD","tradeTag":"the-spoiled-prince","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Противоборство","refName":"The Standoff","namespace":"DIVINATION_CARD","tradeTag":"the-standoff","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Призыватель бури","refName":"The Stormcaller","namespace":"DIVINATION_CARD","tradeTag":"the-stormcaller","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Стратег","refName":"The Strategist","namespace":"DIVINATION_CARD","tradeTag":"the-strategist","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Призыватель","refName":"The Summoner","namespace":"DIVINATION_CARD","tradeTag":"the-summoner","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Солнце","refName":"The Sun","namespace":"DIVINATION_CARD","tradeTag":"the-sun","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Хирург","refName":"The Surgeon","namespace":"DIVINATION_CARD","tradeTag":"the-surgeon","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Топограф","refName":"The Surveyor","namespace":"DIVINATION_CARD","tradeTag":"the-surveyor","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Выживший","refName":"The Survivalist","namespace":"DIVINATION_CARD","tradeTag":"the-survivalist","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Пропитание","refName":"The Sustenance","namespace":"DIVINATION_CARD","tradeTag":"the-sustenance","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Дань Венценосца мечей","refName":"The Sword King's Salute","namespace":"DIVINATION_CARD","tradeTag":"the-sword-kings-salute","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Чудотворец","refName":"The Thaumaturgist","namespace":"DIVINATION_CARD","tradeTag":"the-thaumaturgist","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Престол","refName":"The Throne","namespace":"DIVINATION_CARD","tradeTag":"the-throne","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Верстак умельца","refName":"The Tinkerer's Table","namespace":"DIVINATION_CARD","tradeTag":"the-tinkerers-table","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Безустанный экстрактор","refName":"The Tireless Extractor","namespace":"DIVINATION_CARD","tradeTag":"the-tireless-extractor","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Башня","refName":"The Tower","namespace":"DIVINATION_CARD","tradeTag":"the-tower","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Предатель","refName":"The Traitor","namespace":"DIVINATION_CARD","tradeTag":"the-traitor","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Преображение","refName":"The Transformation","namespace":"DIVINATION_CARD","tradeTag":"the-transformation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Испытание","refName":"The Trial","namespace":"DIVINATION_CARD","tradeTag":"the-trial","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Перекати-поле","refName":"The Tumbleweed","namespace":"DIVINATION_CARD","tradeTag":"the-tumbleweed","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Луна в сумерках","refName":"The Twilight Moon","namespace":"DIVINATION_CARD","tradeTag":"the-twilight-moon","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Близнецы","refName":"The Twins","namespace":"DIVINATION_CARD","tradeTag":"the-twins","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Тиран","refName":"The Tyrant","namespace":"DIVINATION_CARD","tradeTag":"the-tyrant","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Неустрашимый","refName":"The Undaunted","namespace":"DIVINATION_CARD","tradeTag":"the-undaunted","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Неоспоримый","refName":"The Undisputed","namespace":"DIVINATION_CARD","tradeTag":"the-undisputed","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Неожиданная награда","refName":"The Unexpected Prize","namespace":"DIVINATION_CARD","tradeTag":"the-unexpected-prize","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Союз","refName":"The Union","namespace":"DIVINATION_CARD","tradeTag":"the-union","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Валькирия","refName":"The Valkyrie","namespace":"DIVINATION_CARD","tradeTag":"the-valkyrie","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Простор","refName":"The Vast","namespace":"DIVINATION_CARD","tradeTag":"the-vast","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Провидец","refName":"The Visionary","namespace":"DIVINATION_CARD","tradeTag":"the-visionary","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Ничто","refName":"The Void","namespace":"DIVINATION_CARD","tradeTag":"the-void","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Смотритель","refName":"The Warden","namespace":"DIVINATION_CARD","tradeTag":"the-warden","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Воевода","refName":"The Warlord","namespace":"DIVINATION_CARD","tradeTag":"the-warlord","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Наблюдатель","refName":"The Watcher","namespace":"DIVINATION_CARD","tradeTag":"the-watcher","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Паутина","refName":"The Web","namespace":"DIVINATION_CARD","tradeTag":"the-web","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Подарок на свадьбу","refName":"The Wedding Gift","namespace":"DIVINATION_CARD","tradeTag":"the-wedding-gift","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Белый рыцарь","refName":"The White Knight","namespace":"DIVINATION_CARD","tradeTag":"the-white-knight","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Белая пелена","refName":"The Whiteout","namespace":"DIVINATION_CARD","tradeTag":"the-whiteout","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Увядшая роза","refName":"The Wilted Rose","namespace":"DIVINATION_CARD","tradeTag":"the-wilted-rose","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Ветер","refName":"The Wind","namespace":"DIVINATION_CARD","tradeTag":"the-wind","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Ведьма","refName":"The Witch","namespace":"DIVINATION_CARD","tradeTag":"the-witch","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Волк","refName":"The Wolf","namespace":"DIVINATION_CARD","tradeTag":"the-wolf","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Волчье наследие","refName":"The Wolf's Legacy","namespace":"DIVINATION_CARD","tradeTag":"the-wolfs-legacy","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Тень Волка","refName":"The Wolf's Shadow","namespace":"DIVINATION_CARD","tradeTag":"the-wolfs-shadow","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Укус Волчьего короля","refName":"The Wolven King's Bite","namespace":"DIVINATION_CARD","tradeTag":"the-wolven-kings-bite","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Росомаха","refName":"The Wolverine","namespace":"DIVINATION_CARD","tradeTag":"the-wolverine","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Пожиратель миров","refName":"The World Eater","namespace":"DIVINATION_CARD","tradeTag":"the-world-eater","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Гнев","refName":"The Wrath","namespace":"DIVINATION_CARD","tradeTag":"the-wrath","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Горемыка","refName":"The Wretched","namespace":"DIVINATION_CARD","tradeTag":"the-wretched","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Жажда знаний","refName":"Thirst for Knowledge","namespace":"DIVINATION_CARD","tradeTag":"thirst-for-knowledge","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Три лика в темноте","refName":"Three Faces in the Dark","namespace":"DIVINATION_CARD","tradeTag":"three-faces-in-the-dark","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Три голоса","refName":"Three Voices","namespace":"DIVINATION_CARD","tradeTag":"three-voices","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Небесный гром","refName":"Thunderous Skies","namespace":"DIVINATION_CARD","tradeTag":"thunderous-skies","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Утерянная реликвия","refName":"Time-Lost Relic","namespace":"DIVINATION_CARD","tradeTag":"time-lost-relic","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Токсичные вести","refName":"Toxic Tidings","namespace":"DIVINATION_CARD","tradeTag":"toxic-tidings","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Спокойствие","refName":"Tranquillity","namespace":"DIVINATION_CARD","tradeTag":"tranquillity","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Охотник за сокровищами","refName":"Treasure Hunter","namespace":"DIVINATION_CARD","tradeTag":"treasure-hunter","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Трискайдекафобия","refName":"Triskaidekaphobia","namespace":"DIVINATION_CARD","tradeTag":"triskaidekaphobia","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Подставь другую щёку","refName":"Turn the Other Cheek","namespace":"DIVINATION_CARD","tradeTag":"turn-the-other-cheek","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Освобождённый","refName":"Unchained","namespace":"DIVINATION_CARD","tradeTag":"unchained","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Подземный лес","refName":"Underground Forest","namespace":"DIVINATION_CARD","tradeTag":"underground-forest","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Безответная любовь","refName":"Unrequited Love","namespace":"DIVINATION_CARD","tradeTag":"unrequited-love","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Тщеславие","refName":"Vanity","namespace":"DIVINATION_CARD","tradeTag":"vanity","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Злая мощь","refName":"Vile Power","namespace":"DIVINATION_CARD","tradeTag":"vile-power","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Знак Винии","refName":"Vinia's Token","namespace":"DIVINATION_CARD","tradeTag":"vinias-token","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Стихийная пустота","refName":"Void of the Elements","namespace":"DIVINATION_CARD","tradeTag":"void-of-the-elements","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Изменчивая сила","refName":"Volatile Power","namespace":"DIVINATION_CARD","tradeTag":"volatile-power","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Богатство и власть","refName":"Wealth and Power","namespace":"DIVINATION_CARD","tradeTag":"wealth-and-power","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Просители","refName":"Who Asked","namespace":"DIVINATION_CARD","tradeTag":"who-asked","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Объятья зимы","refName":"Winter's Embrace","namespace":"DIVINATION_CARD","tradeTag":"winters-embrace","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png"} +{"name":"Отпущение","refName":"Absolution","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BYnNvbHV0aW9uQmxhc3RHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/11111dec89/AbsolutionBlastGem.png","gem":{}} +{"name":"Отпущение вдохновения","refName":"Absolution of Inspiring","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BYnNvbHV0aW9uQmxhc3RHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/11111dec89/AbsolutionBlastGem.png","gem":{"transfigured":true,"normalVariant":"Absolution"}} +{"name":"Урон хаосом","refName":"Added Chaos Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0FkZGVkQ2hhb3NEYW1hZ2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a89e2281e4/AddedChaosDamage.png","gem":{}} +{"name":"Урон холодом","refName":"Added Cold Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0FkZGVkQ29sZERhbWFnZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/2da648ff1b/AddedColdDamage.png","gem":{}} +{"name":"Урон огнём","refName":"Added Fire Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0FkZGVkRmlyZURhbWFnZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/021b8c80d0/AddedFireDamage.png","gem":{}} +{"name":"Урон молнией","refName":"Added Lightning Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0FkZGVkTGlnaHRuaW5nRGFtYWdlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2d0e496d25/AddedLightningDamage.png","gem":{}} +{"name":"Меткость","refName":"Additional Accuracy Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0luY3JlYXNlZEFjY3VyYWN5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6c436c2a7c/IncreasedAccuracy.png","gem":{}} +{"name":"Улучшенные ловушки","refName":"Advanced Traps Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1RyYXBDb29sZG93blJlY292ZXJ5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/30ba703ddf/TrapCooldownRecovery.png","gem":{}} +{"name":"Метка алхимика","refName":"Alchemist's Mark","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BbGNoZW1pc3RzTWFya1NraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2edd055957/AlchemistsMarkSkillGem.png","gem":{}} +{"name":"Засада","refName":"Ambush","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BbWJ1c2hTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/92a4cb4028/AmbushSkillGem.png","gem":{}} +{"name":"Зов предков","refName":"Ancestral Call Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01pcmFnZVN0cmlrZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e51b75463c/MirageStrike.png","gem":{}} +{"name":"Клич предков","refName":"Ancestral Cry","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BbmNlc3RyYWxDcnkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/50bc6a58db/AncestralCry.png","gem":{}} +{"name":"Жгучая злоба","refName":"Anger","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BbmdlciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e0cd2d4f3a/Anger.png","gem":{}} +{"name":"Аниматрон","refName":"Animate Guardian","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BbmltYXRlQXJtb3VyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d6eff6fc81/AnimateArmour.png","gem":{}} +{"name":"Аниматрон кары","refName":"Animate Guardian of Smiting","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BbmltYXRlQXJtb3VyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d6eff6fc81/AnimateArmour.png","gem":{"transfigured":true,"normalVariant":"Animate Guardian"}} +{"name":"Живое оружие","refName":"Animate Weapon","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BbmltYXRlV2VhcG9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/739caf7508/AnimateWeapon.png","gem":{}} +{"name":"Живое оружие дальнего боя","refName":"Animate Weapon of Ranged Arms","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BbmltYXRlV2VhcG9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/739caf7508/AnimateWeapon.png","gem":{"transfigured":true,"normalVariant":"Animate Weapon"}} +{"name":"Живое оружие отражения","refName":"Animate Weapon of Self Reflection","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BbmltYXRlV2VhcG9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/739caf7508/AnimateWeapon.png","gem":{"transfigured":true,"normalVariant":"Animate Weapon"}} +{"name":"Цепь молний","refName":"Arc","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BcmMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3778fcf505/Arc.png","gem":{}} +{"name":"Цепь колеблющихся молний","refName":"Arc of Oscillating","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BcmMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3778fcf505/Arc.png","gem":{"transfigured":true,"normalVariant":"Arc"}} +{"name":"Цепь бушующих молний","refName":"Arc of Surging","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BcmMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3778fcf505/Arc.png","gem":{"transfigured":true,"normalVariant":"Arc"}} +{"name":"Чародейский покров","refName":"Arcane Cloak","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BcmNhbmVDbG9hayIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7660cd542e/ArcaneCloak.png","gem":{}} +{"name":"Колдовской выброс","refName":"Arcane Surge Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0FyY2FuZVN1cmdlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d3d0499c29/ArcaneSurge.png","gem":{}} +{"name":"Клеймо чаротворца","refName":"Arcanist Brand","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BcmNhbmlzdEJyYW5kR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/13599bc515/ArcanistBrandGem.png","gem":{}} +{"name":"Архимаг","refName":"Archmage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01hbmF3ZWF2ZVN1cHBvcnRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/26b9a98b33/ManaweaveSupportGem.png","gem":{}} +{"name":"Северная броня","refName":"Arctic Armour","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTaGllbGQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/22044364a7/IceShield.png","gem":{}} +{"name":"Клеймо Армагеддона","refName":"Armageddon Brand","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Bcm1hZ2VkZG9uQnJhbmQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/743223e101/ArmageddonBrand.png","gem":{}} +{"name":"Клеймо Армагеддона возврата","refName":"Armageddon Brand of Recall","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Bcm1hZ2VkZG9uQnJhbmQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/743223e101/ArmageddonBrand.png","gem":{"transfigured":true,"normalVariant":"Armageddon Brand"}} +{"name":"Клеймо Армагеддона нестабильности","refName":"Armageddon Brand of Volatility","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Bcm1hZ2VkZG9uQnJhbmQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/743223e101/ArmageddonBrand.png","gem":{"transfigured":true,"normalVariant":"Armageddon Brand"}} +{"name":"Заносчивость","refName":"Arrogance Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Jsb29kTWFnaWMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f90e23f319/BloodMagic.png","gem":{}} +{"name":"Кольцо стрел","refName":"Arrow Nova Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0dyZWVuUmFpblN1cHBvcnRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/127eda6207/GreenRainSupportGem.png","gem":{}} +{"name":"Артиллерийская баллиста","refName":"Artillery Ballista","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Nb3J0YXJUb3RlbUJvd1NraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5636ae404e/MortarTotemBowSkillGem.png","gem":{}} +{"name":"Артиллерийская баллиста перекрестного огня","refName":"Artillery Ballista of Cross Strafe","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Nb3J0YXJUb3RlbUJvd1NraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5636ae404e/MortarTotemBowSkillGem.png","gem":{"transfigured":true,"normalVariant":"Artillery Ballista"}} +{"name":"Артиллерийская баллиста прицельного огня","refName":"Artillery Ballista of Focus Fire","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Nb3J0YXJUb3RlbUJvd1NraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5636ae404e/MortarTotemBowSkillGem.png","gem":{"transfigured":true,"normalVariant":"Artillery Ballista"}} +{"name":"Метка убийцы","refName":"Assassin's Mark","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Bc3Nhc3NpbnNNYXJrIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/bddd6aa693/AssassinsMark.png","gem":{}} +{"name":"Автоусиление","refName":"Autoexertion","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzMwLDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BdXRvQ2FzdEluc3RhbnRXYXJjcnkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ffc975c2b7/AutoCastInstantWarcry.png","gem":{}} +{"name":"Автоматизация","refName":"Automation","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzMwLDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BdXRvQ2FzdEluc3RhbnRTa2lsbHMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ec5d94a83e/AutoCastInstantSkills.png","gem":{}} +{"name":"Пробужденный: Урон хаосом","refName":"Awakened Added Chaos Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0FkZGVkQ2hhb3NEYW1hZ2VQbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/61d2d11bfb/AddedChaosDamagePlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Урон холодом","refName":"Awakened Added Cold Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0FkZGVkQ29sZERhbWFnZVBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8fef150dd7/AddedColdDamagePlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Урон огнем","refName":"Awakened Added Fire Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0FkZGVkRmlyZURhbWFnZVBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c1135da118/AddedFireDamagePlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Урон молнией","refName":"Awakened Added Lightning Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0FkZGVkTGlnaHRuaW5nRGFtYWdlUGx1cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/12f4edd322/AddedLightningDamagePlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Зов предков","refName":"Awakened Ancestral Call Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL01pcmFnZVN0cmlrZVBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f7a05689d9/MirageStrikePlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Кольцо стрел","refName":"Awakened Arrow Nova Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0dyZWVuUmFpblBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/84da19af8c/GreenRainPlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Богохульство","refName":"Awakened Blasphemy Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0F1cmlmeVBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/fbdc11b158/AurifyPlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Жестокость","refName":"Awakened Brutality Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0JydXRhbGl0eVBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9553670260/BrutalityPlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Урон от горения","refName":"Awakened Burning Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0luY3JlYXNlZEJ1cm5EdXJhdGlvblBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/021c221c69/IncreasedBurnDurationPlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Сотворение чар при критическом ударе","refName":"Awakened Cast On Critical Strike Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0Nhc3RPbkNyaXRQbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/928b624b08/CastOnCritPlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Сотворение чар при поддержании","refName":"Awakened Cast While Channelling Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0Nhc3RXaGlsZUNoYW5uZWxpbmdQbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b6365df6cb/CastWhileChannelingPlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Цепь","refName":"Awakened Chain Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0NoYWluUGx1cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b328b4615c/ChainPlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Пронизывающий холод","refName":"Awakened Cold Penetration Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0NvbGRQZW5ldHJhdGlvblBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/52ac74cbd4/ColdPenetrationPlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Контролируемое разрушение","refName":"Awakened Controlled Destruction Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0NvbnRyb2xsZWREZXN0cnVjdGlvblBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e545c985d0/ControlledDestructionPlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Смертельные состояния","refName":"Awakened Deadly Ailments Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0RlYWRseUFpbG1lbnRzUGx1cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/68c620c3dc/DeadlyAilmentsPlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Урон от стихий атаками","refName":"Awakened Elemental Damage with Attacks Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL1dlYXBvbkVsZW1lbnRhbERhbWFnZVBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/2d6aa43759/WeaponElementalDamagePlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Концентрация стихий","refName":"Awakened Elemental Focus Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0VsZW1lbnRhbEZvY3VzUGx1cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a84d493e28/ElementalFocusPlus.png","gem":{"awakened":true}} +{"name":"Пробуждённый: Усилитель","refName":"Awakened Empower Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0VtcG93ZXJQbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/eb0e6f91ed/EmpowerPlus.png","gem":{"awakened":true}} +{"name":"Пробуждённый: Улучшитель","refName":"Awakened Enhance Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL2VuaGFuY2VwbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d3de7b3bd1/enhanceplus.png","gem":{"awakened":true}} +{"name":"Пробуждённый: Наставник","refName":"Awakened Enlighten Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0VubGlnaHRlbnBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/7ec7d0544d/Enlightenplus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Пронизывающий жар","refName":"Awakened Fire Penetration Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0ZpcmVQZW5ldHJhdGlvblBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b1308cf253/FirePenetrationPlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Разветвление","refName":"Awakened Fork Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0ZvcmtQbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/664ffa6acd/ForkPlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Щедрость","refName":"Awakened Generosity Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0dlbmVyb3NpdHlQbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/14d887c794/GenerosityPlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Много дополнительных снарядов","refName":"Awakened Greater Multiple Projectiles Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0dyZWF0ZXJNdWx0aXBsZVByb2plY3RpbGVzUGx1cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/720eb18ad1/GreaterMultipleProjectilesPlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Касание порчи","refName":"Awakened Hextouch Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0N1cnNlT25IaXRQbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/bae0341d74/CurseOnHitPlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Расширенная область действия","refName":"Awakened Increased Area of Effect Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0luY3JlYXNlZEFPRVBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/360e9e4ed5/IncreasedAOEPlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Пронизывающие молнии","refName":"Awakened Lightning Penetration Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0xpZ2h0bmluZ1BlbmV0cmF0aW9uUGx1cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/163f40e5e5/LightningPenetrationPlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Физический урон ближнего боя","refName":"Awakened Melee Physical Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0luY3JlYXNlZFBoeXNjaWFsRGFtYWdlUGx1cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b5d08a6777/IncreasedPhyscialDamagePlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Раскатистый удар","refName":"Awakened Melee Splash Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL1NwbGFzaFBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8c6dd76bf4/SplashPlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Урон приспешников","refName":"Awakened Minion Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL01pbmlvbkRhbWFnZVBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5a905affec/MinionDamagePlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Град ударов","refName":"Awakened Multistrike Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL011bHRpcGxlQXR0YWNrc1BsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c32ddc2121/MultipleAttacksPlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Каскад чар","refName":"Awakened Spell Cascade Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL1NwZWxsQ2FzY2FkZVBsdXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/7a316ceb5c/SpellCascadePlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Эхо магии","refName":"Awakened Spell Echo Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL0VjaG9QbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9cccabda03/EchoPlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Стремительный недуг","refName":"Awakened Swift Affliction Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL1N1cHBvcnRSYXBpZERlY2F5UGx1cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/275f8da8d1/SupportRapidDecayPlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Безграничные состояния","refName":"Awakened Unbound Ailments Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL1VuYm91bmRBaWxtZW50UGx1cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/41b8082cb4/UnboundAilmentPlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Высвобождение","refName":"Awakened Unleash Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL1VubGVhc2hQbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/107949fc2b/UnleashPlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Яростные снаряды","refName":"Awakened Vicious Projectiles Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL1JhbmdlZFBoeXNpY2FsQXR0YWNrRGFtYWdlUGx1cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/982ca84dbe/RangedPhysicalAttackDamagePlus.png","gem":{"awakened":true}} +{"name":"Пробужденный: Манипуляция пустотой","refName":"Awakened Void Manipulation Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRQbHVzL1ZvaWRNYW5pcHVsYXRpb25QbHVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9223d42a35/VoidManipulationPlus.png","gem":{"awakened":true}} +{"name":"Шаровая молния","refName":"Ball Lightning","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CYWxsTGlnaHRuaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6c73d5c555/BallLightning.png","gem":{}} +{"name":"Шаровая молния орбиты","refName":"Ball Lightning of Orbiting","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CYWxsTGlnaHRuaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6c73d5c555/BallLightning.png","gem":{"transfigured":true,"normalVariant":"Ball Lightning"}} +{"name":"Шаровая молния неподвижности","refName":"Ball Lightning of Static","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CYWxsTGlnaHRuaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6c73d5c555/BallLightning.png","gem":{"transfigured":true,"normalVariant":"Ball Lightning"}} +{"name":"Тотем-баллиста","refName":"Ballista Totem Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1JhbmdlZEF0dGFja1RvdGVtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b7ee0c564e/RangedAttackTotem.png","gem":{}} +{"name":"Погибель","refName":"Bane","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EYXJrUml0dWFsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/c59eb9d27b/DarkRitualGem.png","gem":{}} +{"name":"Погибель осуждения","refName":"Bane of Condemnation","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EYXJrUml0dWFsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/c59eb9d27b/DarkRitualGem.png","gem":{"transfigured":true,"normalVariant":"Bane"}} +{"name":"Очередь","refName":"Barrage","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CYXJyYWdlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/0669bef74e/Barrage.png","gem":{}} +{"name":"Очередь залпов","refName":"Barrage of Volley Fire","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CYXJyYWdlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/0669bef74e/Barrage.png","gem":{"transfigured":true,"normalVariant":"Barrage"}} +{"name":"Стрельба очередями","refName":"Barrage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0dyZWVuQmFycmFnZVN1cHBvcnRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9c04b6b337/GreenBarrageSupportGem.png","gem":{}} +{"name":"Клич боевого мага","refName":"Battlemage's Cry","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXZpbmVDcnlHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6948014a56/DivineCryGem.png","gem":{}} +{"name":"Медвежий капкан","refName":"Bear Trap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CZWFyVHJhcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a6ad2b45cf/BearTrap.png","gem":{}} +{"name":"Медвежий капкан пронзания","refName":"Bear Trap of Skewers","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CZWFyVHJhcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a6ad2b45cf/BearTrap.png","gem":{"transfigured":true,"normalVariant":"Bear Trap"}} +{"name":"Обезглавливание","refName":"Behead Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0V4ZWN1dGlvbmVyU3VwcG9ydEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5a4440c4e7/ExecutionerSupportGem.png","gem":{}} +{"name":"Боевое безумие","refName":"Berserk","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CZXNlcmtHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/fb31554c78/BeserkGem.png","gem":{}} +{"name":"Взрыв клинков","refName":"Blade Blast","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFkZUJ1cnN0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/599beedaf4/BladeBurst.png","gem":{}} +{"name":"Взрыв клинков кинжалов","refName":"Blade Blast of Dagger Detonation","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFkZUJ1cnN0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/599beedaf4/BladeBurst.png","gem":{"transfigured":true,"normalVariant":"Blade Blast"}} +{"name":"Взрыв клинков разрядки","refName":"Blade Blast of Unloading","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFkZUJ1cnN0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/599beedaf4/BladeBurst.png","gem":{"transfigured":true,"normalVariant":"Blade Blast"}} +{"name":"Порыв клинков","refName":"Blade Flurry","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFyZ2VkQXR0YWNrIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b55acf2e90/ChargedAttack.png","gem":{}} +{"name":"Порыв клинков надреза","refName":"Blade Flurry of Incision","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFyZ2VkQXR0YWNrIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b55acf2e90/ChargedAttack.png","gem":{"transfigured":true,"normalVariant":"Blade Flurry"}} +{"name":"Ловушка лезвий","refName":"Blade Trap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFkZVRyYXBTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b4ce2d5dc5/BladeTrapSkillGem.png","gem":{}} +{"name":"Ловушка лезвий с большими мечами","refName":"Blade Trap of Greatswords","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFkZVRyYXBTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b4ce2d5dc5/BladeTrapSkillGem.png","gem":{"transfigured":true,"normalVariant":"Blade Trap"}} +{"name":"Ловушка лезвий разрубания","refName":"Blade Trap of Laceration","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFkZVRyYXBTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b4ce2d5dc5/BladeTrapSkillGem.png","gem":{"transfigured":true,"normalVariant":"Blade Trap"}} +{"name":"Вихрь клинков","refName":"Blade Vortex","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGlubmluZ0V0aGVyZWFsQmxhZGVzR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8f7a7d7b81/SpinningEtherealBladesGem.png","gem":{}} +{"name":"Вихрь клинков косы","refName":"Blade Vortex of the Scythe","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGlubmluZ0V0aGVyZWFsQmxhZGVzR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8f7a7d7b81/SpinningEtherealBladesGem.png","gem":{"transfigured":true,"normalVariant":"Blade Vortex"}} +{"name":"Мечепад","refName":"Bladefall","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWluT2ZCbGFkZXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0c68403963/RainOfBlades.png","gem":{}} +{"name":"Мечепад пронзания","refName":"Bladefall of Impaling","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWluT2ZCbGFkZXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0c68403963/RainOfBlades.png","gem":{"transfigured":true,"normalVariant":"Bladefall"}} +{"name":"Мечепад града","refName":"Bladefall of Volleys","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWluT2ZCbGFkZXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0c68403963/RainOfBlades.png","gem":{"transfigured":true,"normalVariant":"Bladefall"}} +{"name":"Ураган лезвий","refName":"Bladestorm","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFkZXN0b3JtR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6b216c693a/BladestormGem.png","gem":{}} +{"name":"Ураган лезвий неопределённости","refName":"Bladestorm of Uncertainty","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFkZXN0b3JtR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6b216c693a/BladestormGem.png","gem":{"transfigured":true,"normalVariant":"Bladestorm"}} +{"name":"Богохульство","refName":"Blasphemy Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0F1cmlmeSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ac2d013ed8/Aurify.png","gem":{}} +{"name":"Дождь взрывов","refName":"Blast Rain","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFzdFJhaW5HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1bc0aca8d7/BlastRainGem.png","gem":{}} +{"name":"Цепной подрыв","refName":"Blastchain Mine Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1JlbW90ZU1pbmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6a62456c74/RemoteMine.png","gem":{}} +{"name":"Пылающий залп","refName":"Blazing Salvo","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbWJlciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/dce0125adf/Ember.png","gem":{}} +{"name":"Мор","refName":"Blight","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGlnaHRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/63c4ea3534/BlightGem.png","gem":{}} +{"name":"Мор атрофии","refName":"Blight of Atrophy","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGlnaHRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/63c4ea3534/BlightGem.png","gem":{"transfigured":true,"normalVariant":"Blight"}} +{"name":"Мор инфекции","refName":"Blight of Contagion","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGlnaHRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/63c4ea3534/BlightGem.png","gem":{"transfigured":true,"normalVariant":"Blight"}} +{"name":"Ослепление","refName":"Blind Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0JsaW5kIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/06f95114ae/Blind.png","gem":{}} +{"name":"Стрела-телепорт","refName":"Blink Arrow","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGlua0Fycm93IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2836299d6e/BlinkArrow.png","gem":{}} +{"name":"Стрела-телепорт бомбардирующих клонов","refName":"Blink Arrow of Bombarding Clones","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGlua0Fycm93IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2836299d6e/BlinkArrow.png","gem":{"transfigured":true,"normalVariant":"Blink Arrow"}} +{"name":"Стрела-телепорт радужных клонов","refName":"Blink Arrow of Prismatic Clones","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGlua0Fycm93IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2836299d6e/BlinkArrow.png","gem":{"transfigured":true,"normalVariant":"Blink Arrow"}} +{"name":"Затруднение блока","refName":"Block Chance Reduction Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0JyZWFrQmxvY2siLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/18132535a7/BreakBlock.png","gem":{}} +{"name":"Кровь и песок","refName":"Blood and Sand","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZFNhbmRTdGFuY2VHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/91016572ac/BloodSandStanceGem.png","gem":{}} +{"name":"Кровавый угар","refName":"Blood Rage","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZFJhZ2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0a98a6bf95/BloodRage.png","gem":{}} +{"name":"Кровожадность","refName":"Bloodlust Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Jsb29kbHVzdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0f21ba16fe/Bloodlust.png","gem":{}} +{"name":"Кровавое зверство","refName":"Bloodthirst Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Jsb29kUHJpY2VTdXBwb3J0R2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4ea8419360/BloodPriceSupportGem.png","gem":{}} +{"name":"Обмен телами","refName":"Bodyswap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db3Jwc2VXYXJwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/93895fd56c/CorpseWarp.png","gem":{}} +{"name":"Обмен телами жертвоприношения","refName":"Bodyswap of Sacrifice","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db3Jwc2VXYXJwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/93895fd56c/CorpseWarp.png","gem":{"transfigured":true,"normalVariant":"Bodyswap"}} +{"name":"Подношение костей","refName":"Bone Offering","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Cb25lT2ZmZXJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9918a40b8a/BoneOffering.png","gem":{}} +{"name":"Леденящее охлаждение","refName":"Bonechill Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0JvbmVDaGlsbFN1cHBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9aa30460fd/BoneChillSupport.png","gem":{}} +{"name":"Дробление костей","refName":"Boneshatter","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Cb25lc2hhdHRlclNraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9c37514f07/BoneshatterSkillGem.png","gem":{}} +{"name":"Дробление костей бойни","refName":"Boneshatter of Carnage","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Cb25lc2hhdHRlclNraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9c37514f07/BoneshatterSkillGem.png","gem":{"transfigured":true,"normalVariant":"Boneshatter"}} +{"name":"Дробление костей сложного перелома","refName":"Boneshatter of Complex Trauma","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Cb25lc2hhdHRlclNraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9c37514f07/BoneshatterSkillGem.png","gem":{"transfigured":true,"normalVariant":"Boneshatter"}} +{"name":"Возврат клейм","refName":"Brand Recall","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SZWNhbGxTaWdpbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ee8b0c8fd2/RecallSigil.png","gem":{}} +{"name":"Жестокость","refName":"Brutality Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0JydXRhbGl0eSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/62f8d5318d/Brutality.png","gem":{}} +{"name":"Горящая стрела","refName":"Burning Arrow","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CdXJuaW5nQXJyb3ciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4cc118dd2c/BurningArrow.png","gem":{}} +{"name":"Горящая стрела мощи","refName":"Burning Arrow of Vigour","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CdXJuaW5nQXJyb3ciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4cc118dd2c/BurningArrow.png","gem":{"transfigured":true,"normalVariant":"Burning Arrow"}} +{"name":"Урон от горения","refName":"Burning Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0luY3JlYXNlZEJ1cm5EdXJhdGlvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/46900a1f5b/IncreasedBurnDuration.png","gem":{}} +{"name":"Сотворение чар при критическом ударе","refName":"Cast On Critical Strike Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Nhc3RPbkNyaXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8ebad1afae/CastOnCrit.png","gem":{}} +{"name":"Сотворение чар при смерти","refName":"Cast on Death Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Nhc3RPbkRlYXRoIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/7a8f023bcf/CastOnDeath.png","gem":{}} +{"name":"Сотворение чар при убийстве в ближнем бою","refName":"Cast on Melee Kill Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Nhc3RPbk1lbGVlS2lsbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/cbebb42cbc/CastOnMeleeKill.png","gem":{}} +{"name":"Сотворение чар при получении урона","refName":"Cast when Damage Taken Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Nhc3RPbkRtZ1Rha2VuIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2f075f5964/CastOnDmgTaken.png","gem":{}} +{"name":"Сотворение чар при оглушении","refName":"Cast when Stunned Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Nhc3RPblN0dW4iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/12b3b0fdfc/CastOnStun.png","gem":{}} +{"name":"Сотворение чар при поддержании","refName":"Cast while Channelling Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Nhc3RXaGlsZUNoYW5uZWxpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/7a6045467d/CastWhileChanneling.png","gem":{}} +{"name":"Едкая стрела","refName":"Caustic Arrow","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb2lzb25BcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8aa59b2327/PoisonArrow.png","gem":{}} +{"name":"Едкая стрела яда","refName":"Caustic Arrow of Poison","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb2lzb25BcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8aa59b2327/PoisonArrow.png","gem":{"transfigured":true,"normalVariant":"Caustic Arrow"}} +{"name":"Цепной крюк","refName":"Chain Hook","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFpblN0cmlrZUdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fa737225f6/ChainStrikeGem.png","gem":{}} +{"name":"Цепь","refName":"Chain Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L2NoYWluIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/812e47f631/chain.png","gem":{}} +{"name":"Шанс кровотечения","refName":"Chance to Bleed Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0NoYW5jZVRvQmxlZWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/51506e2da6/ChanceToBleed.png","gem":{}} +{"name":"Паника","refName":"Chance to Flee Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0NoYW5jZXRvRmxlZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ae4e560cd8/ChancetoFlee.png","gem":{}} +{"name":"Шанс отравить","refName":"Chance to Poison Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0xlc3NlclBvaXNvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9cce1eb7ef/LesserPoison.png","gem":{}} +{"name":"Заряженный рывок","refName":"Charged Dash","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFyZ2VkRGFzaEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/2e78031cd6/ChargedDashGem.png","gem":{}} +{"name":"Заряженные мины","refName":"Charged Mines Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ludGVsbGlnZW5jZVBvd2VyRnJlbnp5Q2hhcmdlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/af11e7653b/IntelligencePowerFrenzyCharge.png","gem":{}} +{"name":"Заряженные ловушки","refName":"Charged Traps Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1Bvd2VyRnJlbnp5Q2hhcmdlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/50c4a0b8e0/PowerFrenzyCharge.png","gem":{}} +{"name":"Ясность ума","refName":"Clarity","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DbGFyaXR5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/30046e480b/Clarity.png","gem":{}} +{"name":"Рассечение","refName":"Cleave","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DbGVhdmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/7d4382b5e9/Cleave.png","gem":{}} +{"name":"Рассечение свирепости","refName":"Cleave of Rage","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DbGVhdmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/7d4382b5e9/Cleave.png","gem":{"transfigured":true,"normalVariant":"Cleave"}} +{"name":"Бой вплотную","refName":"Close Combat Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Nsb3NlQ29tYmF0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/812599bf67/CloseCombat.png","gem":{}} +{"name":"Кассетные ловушки","refName":"Cluster Traps Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0NsdXN0ZXJUcmFwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/91000f9475/ClusterTrap.png","gem":{}} +{"name":"Бросок кобры","refName":"Cobra Lash","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db2JyYUxhc2giLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9aaa5c123a/CobraLash.png","gem":{}} +{"name":"Пронизывающий холод","refName":"Cold Penetration Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0NvbGRQZW5ldHJhdGlvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/bf21e6828c/ColdPenetration.png","gem":{}} +{"name":"Укус стужи","refName":"Cold Snap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db2xkU25hcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/889f6cb1fd/ColdSnap.png","gem":{}} +{"name":"Укус стужи энергии","refName":"Cold Snap of Power","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db2xkU25hcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/889f6cb1fd/ColdSnap.png","gem":{"transfigured":true,"normalVariant":"Cold Snap"}} +{"name":"Холод в огонь","refName":"Cold to Fire Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0NvbGR0b0ZpcmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cc186488fc/ColdtoFire.png","gem":{}} +{"name":"Воспламенение","refName":"Combustion Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0NoYW5jZXRvSWduaXRlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b24521e59a/ChancetoIgnite.png","gem":{}} +{"name":"Средоточие","refName":"Concentrated Effect Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0NvbmNlbnRyYXRlZEFPRSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/4db641d292/ConcentratedAOE.png","gem":{}} +{"name":"Проводимость","refName":"Conductivity","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db25kdWN0aXZpdHkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1d64a0439e/Conductivity.png","gem":{}} +{"name":"Освящённый путь","refName":"Consecrated Path","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ib2x5UGF0aEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ee190dd4e1/HolyPathGem.png","gem":{}} +{"name":"Освящённый путь выносливости","refName":"Consecrated Path of Endurance","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ib2x5UGF0aEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ee190dd4e1/HolyPathGem.png","gem":{"transfigured":true,"normalVariant":"Consecrated Path"}} +{"name":"Инфекция","refName":"Contagion","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db250YWdpb25HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a93197f89a/ContagionGem.png","gem":{}} +{"name":"Инфекция угасания","refName":"Contagion of Subsiding","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db250YWdpb25HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a93197f89a/ContagionGem.png","gem":{"transfigured":true,"normalVariant":"Contagion"}} +{"name":"Инфекция перенесения","refName":"Contagion of Transference","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db250YWdpb25HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a93197f89a/ContagionGem.png","gem":{"transfigured":true,"normalVariant":"Contagion"}} +{"name":"Управляемое горение","refName":"Controlled Blaze Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0NvbnRyb2xsZWRCbGF6ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/da0249157e/ControlledBlaze.png","gem":{}} +{"name":"Контролируемое разрушение","refName":"Controlled Destruction Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0NvbnRyb2xsZWREZXN0cnVjdGlvbkdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0fca4292bb/ControlledDestructionGem.png","gem":{}} +{"name":"Ловушка переманивания","refName":"Conversion Trap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db252ZXJzaW9uVHJhcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/15f3ca7d18/ConversionTrap.png","gem":{}} +{"name":"Сбор","refName":"Convocation","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db252b2NhdGlvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/429e3e480f/Convocation.png","gem":{}} +{"name":"Оскверняющий клич","refName":"Corrupting Cry Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0NvcnJ1cHRpbmdDcnkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/27dd12964c/CorruptingCry.png","gem":{}} +{"name":"Разлагающая лихорадка","refName":"Corrupting Fever","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db3JydXB0ZWRCbG9vZFN0cmVhbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fdc2a5d375/CorruptedBloodStream.png","gem":{}} +{"name":"Искрящееся копьё","refName":"Crackling Lance","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXNlbnRlZ3JhdGVHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/89788eeb5b/DisentegrateGem.png","gem":{}} +{"name":"Искрящееся копьё ветвления","refName":"Crackling Lance of Branching","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXNlbnRlZ3JhdGVHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/89788eeb5b/DisentegrateGem.png","gem":{"transfigured":true,"normalVariant":"Crackling Lance"}} +{"name":"Искрящееся копьё расщепления","refName":"Crackling Lance of Disintegration","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXNlbnRlZ3JhdGVHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/89788eeb5b/DisentegrateGem.png","gem":{"transfigured":true,"normalVariant":"Crackling Lance"}} +{"name":"Ползучий мороз","refName":"Creeping Frost","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BcmN0aWNCcmVhdGgiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0102d0ec76/ArcticBreath.png","gem":{}} +{"name":"Кремация","refName":"Cremation","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db3Jwc2VFcnVwdGlvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/83bc1fdffa/CorpseEruption.png","gem":{}} +{"name":"Кремация эксгумации","refName":"Cremation of Exhuming","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db3Jwc2VFcnVwdGlvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/83bc1fdffa/CorpseEruption.png","gem":{"transfigured":true,"normalVariant":"Cremation"}} +{"name":"Кремация вулкана","refName":"Cremation of the Volcano","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db3Jwc2VFcnVwdGlvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/83bc1fdffa/CorpseEruption.png","gem":{"transfigured":true,"normalVariant":"Cremation"}} +{"name":"Критические удары состояниями","refName":"Critical Strike Affliction Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1BvaXNvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/93b5718773/Poison.png","gem":{}} +{"name":"Злость","refName":"Cruelty Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ZyYWdpbGl0eSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/85392d054c/Fragility.png","gem":{}} +{"name":"Сокрушающий кулак","refName":"Crushing Fist","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzMwLDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DcnVzaGluZ0Zpc3RTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f941a48bca/CrushingFistSkillGem.png","gem":{}} +{"name":"Добивание","refName":"Culling Strike Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0N1bGxpbmdTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/328a156075/CullingStrike.png","gem":{}} +{"name":"Проклятая земля","refName":"Cursed Ground Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0hleFpvbmVTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/63e77cc4ae/HexZoneSupport.png","gem":{}} +{"name":"Вихрь","refName":"Cyclone","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DeWNsb25lIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f97bf2f477/Cyclone.png","gem":{}} +{"name":"Вихрь буйства","refName":"Cyclone of Tumult","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DeWNsb25lIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f97bf2f477/Cyclone.png","gem":{"transfigured":true,"normalVariant":"Cyclone"}} +{"name":"Урон при полном здоровье","refName":"Damage on Full Life Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01lbGVlRGFtYWdlb25GdWxsTGlmZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/487b8dcafd/MeleeDamageonFullLife.png","gem":{}} +{"name":"Тёмный договор","refName":"Dark Pact","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ta2VsZXRhbENoYWlucyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5976d42537/SkeletalChains.png","gem":{}} +{"name":"Рывок","refName":"Dash","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9RdWlja0Rhc2hHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9b7d6a4128/QuickDashGem.png","gem":{}} +{"name":"Смертельные состояния","refName":"Deadly Ailments Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0RlYWRseUFpbG1lbnRzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/04acd7af7d/DeadlyAilments.png","gem":{}} +{"name":"Разложение","refName":"Decay Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0RlY2F5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/a88201c7c2/Decay.png","gem":{}} +{"name":"Тотем-приманка","refName":"Decoy Totem","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZWNveVRvdGVtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/7a5edf8963/DecoyTotem.png","gem":{}} +{"name":"Знамя непокорности","refName":"Defiance Banner","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Bcm1vdXJhbmRFdmFzaW9uQmFubmVyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b1f3dcfaa6/ArmourandEvasionBanner.png","gem":{}} +{"name":"Осквернение","refName":"Desecrate","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZXNlY3JhdGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/25ac841d64/Desecrate.png","gem":{}} +{"name":"Отчаяние","refName":"Despair","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZXNwYWlyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b4dbf071cd/Despair.png","gem":{}} +{"name":"Разрушительная связь","refName":"Destructive Link","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Dcml0aWNhbExpbmtHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/78c8139685/CriticalLinkGem.png","gem":{}} +{"name":"Решимость","refName":"Determination","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZXRlcm1pbmF0aW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/64c8ca9798/Determination.png","gem":{}} +{"name":"Подрыв трупа","refName":"Detonate Dead","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZXRvbmF0ZURlYWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/109199fc84/DetonateDead.png","gem":{}} +{"name":"Подрыв трупа цепной реакции","refName":"Detonate Dead of Chain Reaction","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZXRvbmF0ZURlYWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/109199fc84/DetonateDead.png","gem":{"transfigured":true,"normalVariant":"Detonate Dead"}} +{"name":"Подрыв трупа поглощения","refName":"Detonate Dead of Scavenging","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZXRvbmF0ZURlYWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/109199fc84/DetonateDead.png","gem":{"transfigured":true,"normalVariant":"Detonate Dead"}} +{"name":"Подрыв мин","refName":"Detonate Mines","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZXRvbmF0ZU1pbmVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/01399d507f/DetonateMines.png","gem":{}} +{"name":"Пожирание","refName":"Devour Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Rldm91ciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/3c8b4acc1b/Devour.png","gem":{}} +{"name":"Поглощающий тотем","refName":"Devouring Totem","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZXZvdXJpbmdUb3RlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9aca73deb3/DevouringTotem.png","gem":{}} +{"name":"Разряд","refName":"Discharge","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXNjaGFyZ2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cedc22eeb5/Discharge.png","gem":{}} +{"name":"Разряд страданий","refName":"Discharge of Misery","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXNjaGFyZ2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cedc22eeb5/Discharge.png","gem":{"transfigured":true,"normalVariant":"Discharge"}} +{"name":"Дисциплина","refName":"Discipline","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXNjaXBsaW5lIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8fb38b53f4/Discipline.png","gem":{}} +{"name":"Божественное благословение","refName":"Divine Blessing Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0JsZXNzaW5nU3VwcG9ydCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/99fba49d0f/BlessingSupport.png","gem":{}} +{"name":"Божественный гнев","refName":"Divine Ire","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXZpbmVUZW1wZXN0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4b8cb33523/DivineTempest.png","gem":{}} +{"name":"Божественный гнев расщепления","refName":"Divine Ire of Disintegration","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXZpbmVUZW1wZXN0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4b8cb33523/DivineTempest.png","gem":{"transfigured":true,"normalVariant":"Divine Ire"}} +{"name":"Божественный гнев священной молнии","refName":"Divine Ire of Holy Lightning","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXZpbmVUZW1wZXN0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4b8cb33523/DivineTempest.png","gem":{"transfigured":true,"normalVariant":"Divine Ire"}} +{"name":"Божественное возмездие","refName":"Divine Retribution","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzMwLDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SZXRhbGlhdGlvbkhvbHlTcGVsbFNraWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/e0e8279ec8/RetaliationHolySpellSkill.png","gem":{}} +{"name":"Удар власти","refName":"Dominating Blow","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb21pbmF0aW5nQmxvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c0a344a783/DominatingBlow.png","gem":{}} +{"name":"Удар власти вдохновения","refName":"Dominating Blow of Inspiring","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb21pbmF0aW5nQmxvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c0a344a783/DominatingBlow.png","gem":{"transfigured":true,"normalVariant":"Dominating Blow"}} +{"name":"Двойной удар","refName":"Double Strike","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb3VibGVTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/408f3e4fa9/DoubleStrike.png","gem":{}} +{"name":"Двойной удар прокола","refName":"Double Strike of Impaling","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb3VibGVTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/408f3e4fa9/DoubleStrike.png","gem":{"transfigured":true,"normalVariant":"Double Strike"}} +{"name":"Двойной удар импульса","refName":"Double Strike of Momentum","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb3VibGVTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/408f3e4fa9/DoubleStrike.png","gem":{"transfigured":true,"normalVariant":"Double Strike"}} +{"name":"Знамя страха","refName":"Dread Banner","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EcmVhZEJhbm5lciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/cbb87b80fb/DreadBanner.png","gem":{}} +{"name":"Парный удар","refName":"Dual Strike","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EdWFsU3RyaWtlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f5112d91e4/DualStrike.png","gem":{}} +{"name":"Парный удар амбидекстрии","refName":"Dual Strike of Ambidexterity","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EdWFsU3RyaWtlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f5112d91e4/DualStrike.png","gem":{"transfigured":true,"normalVariant":"Dual Strike"}} +{"name":"Землетрясение","refName":"Earthquake","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9RdWFrZVNsYW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3a3c0f1c46/QuakeSlam.png","gem":{}} +{"name":"Землетрясение усиления","refName":"Earthquake of Amplification","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9RdWFrZVNsYW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3a3c0f1c46/QuakeSlam.png","gem":{"transfigured":true,"normalVariant":"Earthquake"}} +{"name":"Разлом земли","refName":"Earthshatter","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGlrZVNsYW1HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f366aab2cf/SpikeSlamGem.png","gem":{}} +{"name":"Разлом земли хрупкости","refName":"Earthshatter of Fragility","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGlrZVNsYW1HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f366aab2cf/SpikeSlamGem.png","gem":{"transfigured":true,"normalVariant":"Earthshatter"}} +{"name":"Разлом земли влияния","refName":"Earthshatter of Prominence","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGlrZVNsYW1HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f366aab2cf/SpikeSlamGem.png","gem":{"transfigured":true,"normalVariant":"Earthshatter"}} +{"name":"Эффективность","refName":"Efficacy Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0VmZmljYWN5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/90381ee91a/Efficacy.png","gem":{}} +{"name":"Стихийное войско","refName":"Elemental Army Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1bW1vbnNFbGVtZW50YWxSZXNpc3RzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/db4dac7400/SummonsElementalResists.png","gem":{}} +{"name":"Урон от стихий атаками","refName":"Elemental Damage with Attacks Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1dlYXBvbkVsZW1lbnRhbERhbWFnZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/2cfbdc80b2/WeaponElementalDamage.png","gem":{}} +{"name":"Концентрация стихий","refName":"Elemental Focus Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0VsZW1lbnRhbEZvY3VzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/89a3556bad/ElementalFocus.png","gem":{}} +{"name":"Удар стихии","refName":"Elemental Hit","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbGVtZW50YWxoaXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/498f9dcd1e/Elementalhit.png","gem":{}} +{"name":"Спектральный удар стихии","refName":"Elemental Hit of the Spectrum","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbGVtZW50YWxoaXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/498f9dcd1e/Elementalhit.png","gem":{"transfigured":true,"normalVariant":"Elemental Hit"}} +{"name":"Пронизывающие стихии","refName":"Elemental Penetration Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0VsZW1lbnRhbFBlbmV0cmF0aW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/36b75b1496/ElementalPenetration.png","gem":{}} +{"name":"Разгул стихий","refName":"Elemental Proliferation Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0VsZW1lbnRhbFByb2xpZmVyYXRpb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/820a3ee1f5/ElementalProliferation.png","gem":{}} +{"name":"Уязвимость к стихиям","refName":"Elemental Weakness","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbGVtZW50YWxXZWFrbmVzcyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b639dd2650/ElementalWeakness.png","gem":{}} +{"name":"Усилитель","refName":"Empower Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0VtcG93ZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c2b1b38b15/Empower.png","gem":{}} +{"name":"Заряд выносливости при оглушении в ближнем бою","refName":"Endurance Charge on Melee Stun Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0VuZHVyYW5jZUNoYXJnZVN0dW4iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e3b4ca1900/EnduranceChargeStun.png","gem":{}} +{"name":"Клич стойкости","refName":"Enduring Cry","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbmR1cmluZ0NyeSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/4c160bac55/EnduringCry.png","gem":{}} +{"name":"Клинок энергии","refName":"Energy Blade","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdG9ybUJsYWRlR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/387697170b/StormBladeGem.png","gem":{}} +{"name":"Похищение энергетического щита","refName":"Energy Leech Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0VuZXJneVNoaWVsZExlZWNoc3VwcG9ydCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/691b0c6570/EnergyShieldLeechsupport.png","gem":{}} +{"name":"Слабость","refName":"Enfeeble","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbmZlZWJsZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e85edd0ad5/Enfeeble.png","gem":{}} +{"name":"Улучшитель","refName":"Enhance Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L2VuaGFuY2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9f8df30377/enhance.png","gem":{}} +{"name":"Наставник","refName":"Enlighten Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0VubGlnaHRlbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/05a949e270/Enlighten.png","gem":{}} +{"name":"Стрела ловчего","refName":"Ensnaring Arrow","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbnNuYXJpbmdBcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d73b324dd3/EnsnaringArrow.png","gem":{}} +{"name":"Похищение сущности","refName":"Essence Drain","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaXBob25HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/97ff6075bf/SiphonGem.png","gem":{}} +{"name":"Похищение сущности отчаяния","refName":"Essence Drain of Desperation","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaXBob25HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/97ff6075bf/SiphonGem.png","gem":{"transfigured":true,"normalVariant":"Essence Drain"}} +{"name":"Похищение сущности злобы","refName":"Essence Drain of Wickedness","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaXBob25HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/97ff6075bf/SiphonGem.png","gem":{"transfigured":true,"normalVariant":"Essence Drain"}} +{"name":"Вечное благословение","refName":"Eternal Blessing Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01vcnRhbENvbnZpY3Rpb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/39ae65a638/MortalConviction.png","gem":{}} +{"name":"Бесплотные ножи","refName":"Ethereal Knives","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FdGhlcmVhbEtuaXZlcyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/67d0809c7c/EtherealKnives.png","gem":{}} +{"name":"Бесплотные ножи остаточных клинков","refName":"Ethereal Knives of Lingering Blades","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FdGhlcmVhbEtuaXZlcyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/67d0809c7c/EtherealKnives.png","gem":{"transfigured":true,"normalVariant":"Ethereal Knives"}} +{"name":"Бесплотные ножи резни","refName":"Ethereal Knives of the Massacre","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FdGhlcmVhbEtuaXZlcyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/67d0809c7c/EtherealKnives.png","gem":{"transfigured":true,"normalVariant":"Ethereal Knives"}} +{"name":"Потрошение","refName":"Eviscerate","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzMwLDE0LHsiZiI6IjJESXRlbXMvR2Vtcy8xSGFuZFNoaWVsZENvdW50ZXJhdHRhY2tTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/18612cf0b3/1HandShieldCounterattackSkillGem.png","gem":{}} +{"name":"Искусная расплата","refName":"Expert Retaliation Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0V4cGVydFJldGFsaWF0aW9uU3VwcG9ydCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7897b090f1/ExpertRetaliationSupport.png","gem":{}} +{"name":"Взрывная стрела","refName":"Explosive Arrow","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FeHBsb3NpdmVBcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a9cd35adfb/ExplosiveArrow.png","gem":{}} +{"name":"Взрывная смесь","refName":"Explosive Concoction","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FeHBsb3NpdmVGbGFza1NraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9114018038/ExplosiveFlaskSkillGem.png","gem":{}} +{"name":"Взрывная смесь разрушения","refName":"Explosive Concoction of Destruction","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FeHBsb3NpdmVGbGFza1NraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9114018038/ExplosiveFlaskSkillGem.png","gem":{"transfigured":true,"normalVariant":"Explosive Concoction"}} +{"name":"Взрывная ловушка","refName":"Explosive Trap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaHJhcG5lbFRyYXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/77d643292b/ShrapnelTrap.png","gem":{}} +{"name":"Взрывная ловушка интенсивности","refName":"Explosive Trap of Magnitude","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaHJhcG5lbFRyYXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/77d643292b/ShrapnelTrap.png","gem":{"transfigured":true,"normalVariant":"Explosive Trap"}} +{"name":"Взрывная ловушка осколков","refName":"Explosive Trap of Shrapnel","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaHJhcG5lbFRyYXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/77d643292b/ShrapnelTrap.png","gem":{"transfigured":true,"normalVariant":"Explosive Trap"}} +{"name":"Обескровливание","refName":"Exsanguinate","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZFRlbmRyaWxzU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d421c5c70e/BloodTendrilsSkillGem.png","gem":{}} +{"name":"Заражающее обескровливание","refName":"Exsanguinate of Transmission","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZFRlbmRyaWxzU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d421c5c70e/BloodTendrilsSkillGem.png","gem":{"transfigured":true,"normalVariant":"Exsanguinate"}} +{"name":"Око зимы","refName":"Eye of Winter","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm96ZW5TcGhlcmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b51924877e/FrozenSphereSkillGem.png","gem":{}} +{"name":"Око зимы необратимости","refName":"Eye of Winter of Finality","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm96ZW5TcGhlcmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b51924877e/FrozenSphereSkillGem.png","gem":{"transfigured":true,"normalVariant":"Eye of Winter"}} +{"name":"Око зимы бренности","refName":"Eye of Winter of Transience","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm96ZW5TcGhlcmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b51924877e/FrozenSphereSkillGem.png","gem":{"transfigured":true,"normalVariant":"Eye of Winter"}} +{"name":"Ускорение атак","refName":"Faster Attacks Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Zhc3RlckF0dGFja3MiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c3e1544a95/FasterAttacks.png","gem":{}} +{"name":"Ускоренное сотворение чар","refName":"Faster Casting Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Zhc3RlckNhc3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4a65f03270/FasterCast.png","gem":{}} +{"name":"Ускорение снарядов","refName":"Faster Projectiles Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Zhc3RlclByb2plY3RpbGVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/a6517119dd/FasterProjectiles.png","gem":{}} +{"name":"Голодное остервенение","refName":"Feeding Frenzy Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L09mZmVuc2l2ZU1pbmlvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f90cd05483/OffensiveMinion.png","gem":{}} +{"name":"Пронизывающий жар","refName":"Fire Penetration Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ZpcmVQZW5ldHJhdGlvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/191dcc704c/FirePenetration.png","gem":{}} +{"name":"Огненная ловушка","refName":"Fire Trap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlVHJhcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9d94f9ce06/FireTrap.png","gem":{}} +{"name":"Огненная ловушка взрывов","refName":"Fire Trap of Blasting","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlVHJhcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9d94f9ce06/FireTrap.png","gem":{"transfigured":true,"normalVariant":"Fire Trap"}} +{"name":"Огненный шар","refName":"Fireball","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlYmFsbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8f374db219/Fireball.png","gem":{}} +{"name":"Огненный шторм","refName":"Firestorm","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlc3Rvcm0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/86d85233c1/Firestorm.png","gem":{}} +{"name":"Огненный шторм метеоров","refName":"Firestorm of Meteors","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlc3Rvcm0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/86d85233c1/Firestorm.png","gem":{"transfigured":true,"normalVariant":"Firestorm"}} +{"name":"Огненный шторм проливного огня","refName":"Firestorm of Pelting","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlc3Rvcm0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/86d85233c1/Firestorm.png","gem":{"transfigured":true,"normalVariant":"Firestorm"}} +{"name":"Кулак войны","refName":"Fist of War Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0Zpc3RPZldhckdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6ba67a3963/FistOfWarGem.png","gem":{}} +{"name":"Огненный рывок","refName":"Flame Dash","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZURhc2giLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6816a20975/FlameDash.png","gem":{}} +{"name":"Огненный рывок возвращения","refName":"Flame Dash of Return","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZURhc2giLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6816a20975/FlameDash.png","gem":{"transfigured":true,"normalVariant":"Flame Dash"}} +{"name":"Пламенная связь","refName":"Flame Link","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZUxpbmtHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/fee913312b/FlameLinkGem.png","gem":{}} +{"name":"Выброс пламени","refName":"Flame Surge","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZXdoaXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/005ce2aecc/Flamewhip.png","gem":{}} +{"name":"Выброс пламени возгорания","refName":"Flame Surge of Combusting","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZXdoaXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/005ce2aecc/Flamewhip.png","gem":{"transfigured":true,"normalVariant":"Flame Surge"}} +{"name":"Стена пламени","refName":"Flame Wall","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJld2FsbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d3c69ec0a3/Firewall.png","gem":{}} +{"name":"Пламенный взрыв","refName":"Flameblast","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFyZ2VkQmxhc3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/90adc64f44/ChargedBlast.png","gem":{}} +{"name":"Пламенный взрыв проворства","refName":"Flameblast of Celerity","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFyZ2VkQmxhc3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/90adc64f44/ChargedBlast.png","gem":{"transfigured":true,"normalVariant":"Flameblast"}} +{"name":"Пламенный взрыв сжатия","refName":"Flameblast of Contraction","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFyZ2VkQmxhc3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/90adc64f44/ChargedBlast.png","gem":{"transfigured":true,"normalVariant":"Flameblast"}} +{"name":"Ловушка-огнемёт","refName":"Flamethrower Trap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZXRocm93ZXJUcmFwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/11e6f1dd04/FlamethrowerTrap.png","gem":{}} +{"name":"Лучина","refName":"Flamewood Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ZsYW1ld29vZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/83ebdeea1c/Flamewood.png","gem":{}} +{"name":"Горючесть","refName":"Flammability","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtbWFiaWxpdHkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ba43e87752/Flammability.png","gem":{}} +{"name":"Камень и плоть","refName":"Flesh and Stone","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZFNhbmRBcm1vdXJHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a66b8062e9/BloodSandArmourGem.png","gem":{}} +{"name":"Подношение плоти","refName":"Flesh Offering","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGVzaE9mZmVyaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d0a2e49abe/FleshOffering.png","gem":{}} +{"name":"Внезапный удар","refName":"Flicker Strike","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGlja2VyU3RyaWtlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4d16009413/FlickerStrike.png","gem":{}} +{"name":"Внезапный удар энергии","refName":"Flicker Strike of Power","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGlja2VyU3RyaWtlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4d16009413/FlickerStrike.png","gem":{"transfigured":true,"normalVariant":"Flicker Strike"}} +{"name":"Прицельная баллиста","refName":"Focused Ballista Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ZvY3Vzc2VkQmFsbGlzdGFTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/7fe5aa6d93/FocussedBallistaSupport.png","gem":{}} +{"name":"Запретный ритуал","refName":"Forbidden Rite","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Tb3VsZmVhc3RHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b4fd5ae750/SoulfeastGem.png","gem":{}} +{"name":"Запретный ритуал жертвоприношения души","refName":"Forbidden Rite of Soul Sacrifice","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Tb3VsZmVhc3RHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b4fd5ae750/SoulfeastGem.png","gem":{"transfigured":true,"normalVariant":"Forbidden Rite"}} +{"name":"Разветвление","refName":"Fork Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ZvcmsiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9de72b6ab9/Fork.png","gem":{}} +{"name":"Укрепление","refName":"Fortify Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ZvcnRpZnlHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0f54034785/FortifyGem.png","gem":{}} +{"name":"Волна холода","refName":"Freezing Pulse","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GcmVlemluZ1B1bHNlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d62582b397/FreezingPulse.png","gem":{}} +{"name":"Бешенство","refName":"Frenzy","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GcmVuenkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cd16439994/Frenzy.png","gem":{}} +{"name":"Бешенство боевого ража","refName":"Frenzy of Onslaught","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GcmVuenkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cd16439994/Frenzy.png","gem":{"transfigured":true,"normalVariant":"Frenzy"}} +{"name":"Свежее мясо","refName":"Fresh Meat Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ZyZXNoTWVhdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/aad1cf4139/FreshMeat.png","gem":{}} +{"name":"Морозные узы","refName":"Frigid Bond Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ZyaWdpZEJvbmQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e595841550/FrigidBond.png","gem":{}} +{"name":"Ледяные клинки","refName":"Frost Blades","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d5e5a05831/IceStrike.png","gem":{}} +{"name":"Ледяные клинки катабасиса","refName":"Frost Blades of Katabasis","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d5e5a05831/IceStrike.png","gem":{"transfigured":true,"normalVariant":"Frost Blades"}} +{"name":"Морозная бомба","refName":"Frost Bomb","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdEJvbWIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c8aeb75684/FrostBomb.png","gem":{}} +{"name":"Морозная бомба наступления","refName":"Frost Bomb of Forthcoming","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdEJvbWIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c8aeb75684/FrostBomb.png","gem":{"transfigured":true,"normalVariant":"Frost Bomb"}} +{"name":"Морозная бомба нестабильности","refName":"Frost Bomb of Instability","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdEJvbWIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c8aeb75684/FrostBomb.png","gem":{"transfigured":true,"normalVariant":"Frost Bomb"}} +{"name":"Морозный щит","refName":"Frost Shield","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdEdsb2JlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/e7020ad872/FrostGlobe.png","gem":{}} +{"name":"Стена льда","refName":"Frost Wall","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdFdhbGwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6b6d630e19/FrostWall.png","gem":{}} +{"name":"Обморожение","refName":"Frostbite","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdEJpdGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b858d8016a/FrostBite.png","gem":{}} +{"name":"Ледяной скачок","refName":"Frostblink","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdGJsaW5rU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5d0c50f5e4/FrostblinkSkillGem.png","gem":{}} +{"name":"Ледяной скачок зимней вьюги","refName":"Frostblink of Wintry Blast","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdGJsaW5rU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5d0c50f5e4/FrostblinkSkillGem.png","gem":{"transfigured":true,"normalVariant":"Frostblink"}} +{"name":"Морозный шар","refName":"Frostbolt","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdEJvbHQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/33202c1f22/FrostBolt.png","gem":{}} +{"name":"Замёрзший легион","refName":"Frozen Legion","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm96ZW5MZWdpb25Ta2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f177c9b520/FrozenLegionSkillGem.png","gem":{}} +{"name":"Замёрзший легион сплочения","refName":"Frozen Legion of Rallying","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm96ZW5MZWdpb25Ta2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f177c9b520/FrozenLegionSkillGem.png","gem":{"transfigured":true,"normalVariant":"Frozen Legion"}} +{"name":"Электризующая стрела","refName":"Galvanic Arrow","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaHJhcG5lbFNob3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6efbafb70a/ShrapnelShot.png","gem":{}} +{"name":"Электризующая стрела энергии","refName":"Galvanic Arrow of Energy","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaHJhcG5lbFNob3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6efbafb70a/ShrapnelShot.png","gem":{"transfigured":true,"normalVariant":"Galvanic Arrow"}} +{"name":"Бушующая электризующая стрела","refName":"Galvanic Arrow of Surging","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaHJhcG5lbFNob3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6efbafb70a/ShrapnelShot.png","gem":{"transfigured":true,"normalVariant":"Galvanic Arrow"}} +{"name":"Электризующее поле","refName":"Galvanic Field","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HYWx2YW5pY0ZpZWxkU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8aa27ccb46/GalvanicFieldSkillGem.png","gem":{}} +{"name":"Электризующее поле интенсивности","refName":"Galvanic Field of Intensity","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HYWx2YW5pY0ZpZWxkU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8aa27ccb46/GalvanicFieldSkillGem.png","gem":{"transfigured":true,"normalVariant":"Galvanic Field"}} +{"name":"Клич полководца","refName":"General's Cry","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HZW5lcmFsc0NyeSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8f89442969/GeneralsCry.png","gem":{}} +{"name":"Щедрость","refName":"Generosity Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0dlbmVyb3NpdHlTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/a32a095b6b/GenerositySupport.png","gem":{}} +{"name":"Ледяной каскад","refName":"Glacial Cascade","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9VcGhlYXZhbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e29730bc66/Upheaval.png","gem":{}} +{"name":"Ледяной каскад разлома","refName":"Glacial Cascade of the Fissure","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9VcGhlYXZhbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e29730bc66/Upheaval.png","gem":{"transfigured":true,"normalVariant":"Glacial Cascade"}} +{"name":"Леденящий молот","refName":"Glacial Hammer","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HbGFjaWFsSGFtbWVyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ff8c64eae7/GlacialHammer.png","gem":{}} +{"name":"Леденящий молот разбивания","refName":"Glacial Hammer of Shattering","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HbGFjaWFsSGFtbWVyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ff8c64eae7/GlacialHammer.png","gem":{"transfigured":true,"normalVariant":"Glacial Hammer"}} +{"name":"Взмах ледяного щита","refName":"Glacial Shield Swipe","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzMwLDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VXYXZlc1NraWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/37c0c2b118/IceWavesSkill.png","gem":{}} +{"name":"Грация","refName":"Grace","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HcmFjZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e98082048a/Grace.png","gem":{}} +{"name":"Много дополнительных снарядов","refName":"Greater Multiple Projectiles Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0dyZWF0ZXJNdWx0aXBsZVByb2plY3RpbGVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/c157c4f1e9/GreaterMultipleProjectiles.png","gem":{}} +{"name":"Большой залп","refName":"Greater Volley Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0dyZWF0ZXJWb2xsZXlTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/bb821215f4/GreaterVolleySupport.png","gem":{}} +{"name":"Сотрясение","refName":"Ground Slam","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Hcm91bmRzbGFtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/fe4a163a74/Groundslam.png","gem":{}} +{"name":"Сотрясение земли","refName":"Ground Slam of Earthshaking","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Hcm91bmRzbGFtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/fe4a163a74/Groundslam.png","gem":{"transfigured":true,"normalVariant":"Ground Slam"}} +{"name":"Благословение защитника","refName":"Guardian's Blessing Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0d1YXJkaWFuc0JsZXNzaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/bd80e27bb7/GuardiansBlessing.png","gem":{}} +{"name":"Спешка","refName":"Haste","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IYXN0ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/151b5aa85b/Haste.png","gem":{}} +{"name":"Холодная ненависть","refName":"Hatred","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IYXRyZWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/432bfae70e/Hatred.png","gem":{}} +{"name":"Тяжёлый удар","refName":"Heavy Strike","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IZWF2eVN0cmlrZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6139e85fcd/HeavyStrike.png","gem":{}} +{"name":"Вестник агонии","refName":"Herald of Agony","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IZXJhbGRPZkFnb255R2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/0e95349c4d/HeraldOfAgonyGem.png","gem":{}} +{"name":"Вестник пепла","refName":"Herald of Ash","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IZXJhbGRvZkFzaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/10697bcbfe/HeraldofAsh.png","gem":{}} +{"name":"Вестник льда","refName":"Herald of Ice","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IZXJhbGRvZkljZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ce4dc073c8/HeraldofIce.png","gem":{}} +{"name":"Вестник чистоты","refName":"Herald of Purity","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IZXJhbGRPZkxpZ2h0IEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8e500098c1/HeraldOfLight%20Gem.png","gem":{}} +{"name":"Вестник грома","refName":"Herald of Thunder","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IZXJhbGRvZlRodW5kZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/567f7d8ad4/HeraldofThunder.png","gem":{}} +{"name":"Расцвет порчи","refName":"Hex Bloom Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IZXhTcHJlYWRpbmdTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/873fa8ef65/HexSpreadingSupport.png","gem":{}} +{"name":"Взрыв порчи","refName":"Hexblast","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb29tQmxhc3RTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1866f44c9d/DoomBlastSkillGem.png","gem":{}} +{"name":"Взрыв порчи противоречия","refName":"Hexblast of Contradiction","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb29tQmxhc3RTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1866f44c9d/DoomBlastSkillGem.png","gem":{"transfigured":true,"normalVariant":"Hexblast"}} +{"name":"Взрыв порчи разорения","refName":"Hexblast of Havoc","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb29tQmxhc3RTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1866f44c9d/DoomBlastSkillGem.png","gem":{"transfigured":true,"normalVariant":"Hexblast"}} +{"name":"Касание порчи","refName":"Hextouch Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0N1cnNlT25IaXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/da0ae156c5/CurseOnHit.png","gem":{}} +{"name":"Усиленная мина","refName":"High-Impact Mine Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0FsdFJlbW90ZU1pbmVTdXBwb3J0R2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/22c3e66b67/AltRemoteMineSupportGem.png","gem":{}} +{"name":"Тотем священного огня","refName":"Holy Flame Totem","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZVRvdGVtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b622628c3c/FlameTotem.png","gem":{}} +{"name":"Гневный тотем священного огня","refName":"Holy Flame Totem of Ire","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZVRvdGVtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b622628c3c/FlameTotem.png","gem":{"transfigured":true,"normalVariant":"Holy Flame Totem"}} +{"name":"Гидросфера","refName":"Hydrosphere","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IeWRyb3NwaGVyZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8602dc0a80/Hydrosphere.png","gem":{}} +{"name":"Переохлаждение","refName":"Hypothermia Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0RhbWFnZUFnYWluc3RDaGlsbGVkIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/97f8b88dfa/DamageAgainstChilled.png","gem":{}} +{"name":"Укус льда","refName":"Ice Bite Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ZyZW56eUNoYXJnZU9uU2hhdHRlciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d172bfc06a/FrenzyChargeOnShatter.png","gem":{}} +{"name":"Ледяное сокрушение","refName":"Ice Crash","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VDcmFzaEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/23f3dc49b4/IceCrashGem.png","gem":{}} +{"name":"Ритмичное ледяное сокрушение","refName":"Ice Crash of Cadence","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VDcmFzaEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/23f3dc49b4/IceCrashGem.png","gem":{"transfigured":true,"normalVariant":"Ice Crash"}} +{"name":"Кольцо льда","refName":"Ice Nova","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VOb3ZhIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/65f9588dac/IceNova.png","gem":{}} +{"name":"Кольцо льда замораживания","refName":"Ice Nova of Deep Freeze","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VOb3ZhIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/65f9588dac/IceNova.png","gem":{"transfigured":true,"normalVariant":"Ice Nova"}} +{"name":"Кольцо льда морозных шаров","refName":"Ice Nova of Frostbolts","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VOb3ZhIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/65f9588dac/IceNova.png","gem":{"transfigured":true,"normalVariant":"Ice Nova"}} +{"name":"Ледяной выстрел","refName":"Ice Shot","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTaG90IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6ebe439727/IceShot.png","gem":{}} +{"name":"Ледяной выстрел пронзания","refName":"Ice Shot of Penetration","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTaG90IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6ebe439727/IceShot.png","gem":{"transfigured":true,"normalVariant":"Ice Shot"}} +{"name":"Ледяное копьё","refName":"Ice Spear","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTcGVhciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1ba7d15d5d/IceSpear.png","gem":{}} +{"name":"Ледяное копьё раскалывания","refName":"Ice Spear of Splitting","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTcGVhciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1ba7d15d5d/IceSpear.png","gem":{"transfigured":true,"normalVariant":"Ice Spear"}} +{"name":"Ледяная ловушка","refName":"Ice Trap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VUcmFwUnVuZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5211666f1b/IceTrapRune.png","gem":{}} +{"name":"Ледяная ловушка пустоты","refName":"Ice Trap of Hollowness","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VUcmFwUnVuZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5211666f1b/IceTrapRune.png","gem":{"transfigured":true,"normalVariant":"Ice Trap"}} +{"name":"Шквальная мина","refName":"Icicle Mine","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db2xkUHJvamVjdGlsZU1pbmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a7c134082a/ColdProjectileMineSkillGem.png","gem":{}} +{"name":"Шквальная мина рассеяния","refName":"Icicle Mine of Fanning","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db2xkUHJvamVjdGlsZU1pbmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a7c134082a/ColdProjectileMineSkillGem.png","gem":{"transfigured":true,"normalVariant":"Icicle Mine"}} +{"name":"Шквальная мина диверсии","refName":"Icicle Mine of Sabotage","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db2xkUHJvamVjdGlsZU1pbmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a7c134082a/ColdProjectileMineSkillGem.png","gem":{"transfigured":true,"normalVariant":"Icicle Mine"}} +{"name":"Распространение поджога","refName":"Ignite Proliferation Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0lnbml0ZVByb2xpZmVyYXRpb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e6a337b58f/IgniteProliferation.png","gem":{}} +{"name":"Жертвенность","refName":"Immolate Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0ltbW9sYXRlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/af3f7bc354/Immolate.png","gem":{}} +{"name":"Призыв к бессмертию","refName":"Immortal Call","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JbW1vcnRhbENhbGwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ef38147c94/ImmortalCall.png","gem":{}} +{"name":"Прокол","refName":"Impale Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L2ltcGFsZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a974bd1dc1/impale.png","gem":{}} +{"name":"Обречённость","refName":"Impending Doom Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1ZpY2lvdXNIZXhTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ca0675bd9c/ViciousHexSupport.png","gem":{}} +{"name":"Испепеление","refName":"Incinerate","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZXRocm93ZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d7c85f1aa4/Flamethrower.png","gem":{}} +{"name":"Массивное испепеление","refName":"Incinerate of Expanse","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZXRocm93ZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d7c85f1aa4/Flamethrower.png","gem":{"transfigured":true,"normalVariant":"Incinerate"}} +{"name":"Испепеление выброса","refName":"Incinerate of Venting","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZXRocm93ZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d7c85f1aa4/Flamethrower.png","gem":{"transfigured":true,"normalVariant":"Incinerate"}} +{"name":"Расширенная область действия","refName":"Increased Area of Effect Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0luY3JlYXNlZEFPRSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a4111d2154/IncreasedAOE.png","gem":{}} +{"name":"Усиление критических ударов","refName":"Increased Critical Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0luY3JlYXNlZENyaXRpY2FsRGFtYWdlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/74164474d1/IncreasedCriticalDamage.png","gem":{}} +{"name":"Учащение критических ударов","refName":"Increased Critical Strikes Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0luY3JlYXNlZENyaXRpY2FsU3RyaWtlcyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/afc7a604cf/IncreasedCriticalStrikes.png","gem":{}} +{"name":"Удар преисподней","refName":"Infernal Blow","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JbmZlcm5hbEJsb3ciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d016d5b5a1/InfernalBlow.png","gem":{}} +{"name":"Удар преисподней самосожжения","refName":"Infernal Blow of Immolation","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JbmZlcm5hbEJsb3ciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d016d5b5a1/InfernalBlow.png","gem":{"transfigured":true,"normalVariant":"Infernal Blow"}} +{"name":"Клич преисподней","refName":"Infernal Cry","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JbmZlcm5hbENyeSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/dccf976e24/InfernalCry.png","gem":{}} +{"name":"Пылающий легион","refName":"Infernal Legion Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0luZmVybmFsTGVnaW9uU3VwcG9ydEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/461a9b10aa/InfernalLegionSupportGem.png","gem":{}} +{"name":"Усиленное поддержание","refName":"Infused Channelling Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N0b3JtQmFycmllciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7db72233e9/StormBarrier.png","gem":{}} +{"name":"Возбуждение","refName":"Innervate Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L09uc2xhdWdodE9uU2xheWluZ1Nob2NrZWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0780d91964/OnslaughtOnSlayingShocked.png","gem":{}} +{"name":"Вдохновение","refName":"Inspiration Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1JlZHVjZWRNYW5hQ29zdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f9f7503054/ReducedManaCost.png","gem":{}} +{"name":"Интенсивность","refName":"Intensify Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1NwZWxsRm9jdXNTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f1143120cd/SpellFocusSupport.png","gem":{}} +{"name":"Устрашающий клич","refName":"Intimidating Cry","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JbnRpbWlkYXRpbmdDcnkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d208dc6bb5/IntimidatingCry.png","gem":{}} +{"name":"Подсознательная связь","refName":"Intuitive Link","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9UcmlnZ2VyTGlua0dlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/726a29e3ef/TriggerLinkGem.png","gem":{}} +{"name":"Железная хватка","refName":"Iron Grip Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0lyb25HcmlwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/e4644c9b8b/IronGrip.png","gem":{}} +{"name":"Железная воля","refName":"Iron Will Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0lyb25XaWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/fe7bad1137/IronWill.png","gem":{}} +{"name":"Редкость предметов","refName":"Item Rarity Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0luY3JlYXNlZFF1YWxpdHkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3419db9edf/IncreasedQuality.png","gem":{}} +{"name":"Кинетический взрыв","refName":"Kinetic Blast","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DbHVzdGVyQnVyc3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1b7aff0832/ClusterBurst.png","gem":{}} +{"name":"Кинетический взрыв скопления","refName":"Kinetic Blast of Clustering","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DbHVzdGVyQnVyc3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1b7aff0832/ClusterBurst.png","gem":{"transfigured":true,"normalVariant":"Kinetic Blast"}} +{"name":"Кинетический заряд","refName":"Kinetic Bolt","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9aaWdaYWdXYW5kU2tpbGwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/461e91bc97/ZigZagWandSkill.png","gem":{}} +{"name":"Дробящий кинетический заряд","refName":"Kinetic Bolt of Fragmentation","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9aaWdaYWdXYW5kU2tpbGwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/461e91bc97/ZigZagWandSkill.png","gem":{"transfigured":true,"normalVariant":"Kinetic Bolt"}} +{"name":"Отбрасывание","refName":"Knockback Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0tub2NrYmFjayIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/682a61d0bb/Knockback.png","gem":{}} +{"name":"Разрубание","refName":"Lacerate","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb3VibGVTbGFzaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fb44a829bd/DoubleSlash.png","gem":{}} +{"name":"Разрубание туш","refName":"Lacerate of Butchering","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb3VibGVTbGFzaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fb44a829bd/DoubleSlash.png","gem":{"transfigured":true,"normalVariant":"Lacerate"}} +{"name":"Разрубание кровоизлияния","refName":"Lacerate of Haemorrhage","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb3VibGVTbGFzaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fb44a829bd/DoubleSlash.png","gem":{"transfigured":true,"normalVariant":"Lacerate"}} +{"name":"Пронзающая сталь","refName":"Lancing Steel","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MYW5jaW5nU3RlZWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8ed78ceb39/LancingSteel.png","gem":{}} +{"name":"Пронзающая сталь разброса","refName":"Lancing Steel of Spraying","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MYW5jaW5nU3RlZWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8ed78ceb39/LancingSteel.png","gem":{"transfigured":true,"normalVariant":"Lancing Steel"}} +{"name":"Наскок","refName":"Leap Slam","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MZWFwU2xhbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f65891de7a/LeapSlam.png","gem":{}} +{"name":"Наскок сотрясения","refName":"Leap Slam of Groundbreaking","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MZWFwU2xhbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f65891de7a/LeapSlam.png","gem":{"transfigured":true,"normalVariant":"Leap Slam"}} +{"name":"Сокращение","refName":"Less Duration Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1JlZHVjZUR1cmF0aW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ab88044f5f/ReduceDuration.png","gem":{}} +{"name":"Дополнительные снаряды","refName":"Lesser Multiple Projectiles Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0xlc3Nlck11bHRpcGxlUHJvamVjdGlsZXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/db32a787d3/LesserMultipleProjectiles.png","gem":{}} +{"name":"Здоровье за удар","refName":"Life Gain on Hit Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0xpZmVvbkhpdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7f577bed88/LifeonHit.png","gem":{}} +{"name":"Вытягивание здоровья","refName":"Life Leech Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0xpZmVMZWVjaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/56a5e21d58/LifeLeech.png","gem":{}} +{"name":"Жизнеотвод","refName":"Lifetap Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0xpZmVUYXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9cef38ae47/LifeTap.png","gem":{}} +{"name":"Стрела молнии","refName":"Lightning Arrow","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdBcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f5ad901f20/LightningArrow.png","gem":{}} +{"name":"Стрела молнии проводимости","refName":"Lightning Arrow of Electrocution","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdBcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f5ad901f20/LightningArrow.png","gem":{"transfigured":true,"normalVariant":"Lightning Arrow"}} +{"name":"Проводник молнии","refName":"Lightning Conduit","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbmVyZ3lSZWxlYXNlU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5a89cebfb0/EnergyReleaseSkillGem.png","gem":{}} +{"name":"Проводник молнии небес","refName":"Lightning Conduit of the Heavens","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbmVyZ3lSZWxlYXNlU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5a89cebfb0/EnergyReleaseSkillGem.png","gem":{"transfigured":true,"normalVariant":"Lightning Conduit"}} +{"name":"Пронизывающие молнии","refName":"Lightning Penetration Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0xpZ2h0bmluZ1BlbmV0cmF0aW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4fcb8dce90/LightningPenetration.png","gem":{}} +{"name":"Ловушка шпиля молний","refName":"Lightning Spire Trap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdTcGlyZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/701078aee5/LightningSpire.png","gem":{}} +{"name":"Ловушка шпиля молний перегрузки","refName":"Lightning Spire Trap of Overloading","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdTcGlyZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/701078aee5/LightningSpire.png","gem":{"transfigured":true,"normalVariant":"Lightning Spire Trap"}} +{"name":"Ловушка шпиля молний искристости","refName":"Lightning Spire Trap of Zapping","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdTcGlyZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/701078aee5/LightningSpire.png","gem":{"transfigured":true,"normalVariant":"Lightning Spire Trap"}} +{"name":"Удар молнии","refName":"Lightning Strike","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e593a52f90/LightningStrike.png","gem":{}} +{"name":"Удар цепной молнии","refName":"Lightning Strike of Arcing","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e593a52f90/LightningStrike.png","gem":{"transfigured":true,"normalVariant":"Lightning Strike"}} +{"name":"Побеги молний","refName":"Lightning Tendrils","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodGVuaW5nVG91Y2giLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/418fa752e4/LighteningTouch.png","gem":{}} +{"name":"Эксцентричные побеги молний","refName":"Lightning Tendrils of Eccentricity","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodGVuaW5nVG91Y2giLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/418fa752e4/LighteningTouch.png","gem":{"transfigured":true,"normalVariant":"Lightning Tendrils"}} +{"name":"Нагнетающие побеги молний","refName":"Lightning Tendrils of Escalation","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodGVuaW5nVG91Y2giLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/418fa752e4/LighteningTouch.png","gem":{"transfigured":true,"normalVariant":"Lightning Tendrils"}} +{"name":"Ловушка молний","refName":"Lightning Trap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdUcmFwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/18365fa604/LightningTrap.png","gem":{}} +{"name":"Ловушка молний искрения","refName":"Lightning Trap of Sparking","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdUcmFwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/18365fa604/LightningTrap.png","gem":{"transfigured":true,"normalVariant":"Lightning Trap"}} +{"name":"Грозовой переход","refName":"Lightning Warp","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdXYXJwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5f79874aa8/LightningWarp.png","gem":{}} +{"name":"Направленная мина","refName":"Locus Mine Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0xvY3VzTWluZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/81e9dcb0a5/LocusMine.png","gem":{}} +{"name":"Увечье","refName":"Maim Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01haW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/dc8062db46/Maim.png","gem":{}} +{"name":"Злорадство","refName":"Malevolence","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZWxpcml1bUdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/68eb889340/DeliriumGem.png","gem":{}} +{"name":"Вытягивание маны","refName":"Mana Leech Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01hbmFMZWVjaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d7f54dd2b1/ManaLeech.png","gem":{}} +{"name":"Узы маны","refName":"Manabond","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9NYW5hVm9pZEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ce344fd0e1/ManaVoidGem.png","gem":{}} +{"name":"Стрелы маны","refName":"Manaforged Arrows Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0FyY2FuZUFyY2hlclN1cHBvcnRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5258fad72b/ArcaneArcherSupportGem.png","gem":{}} +{"name":"Метка при попадании","refName":"Mark On Hit Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01hcmtPbkhpdHRpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/082becefa3/MarkOnHitting.png","gem":{}} +{"name":"Живой щит","refName":"Meat Shield Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0RlZmVuc2l2ZU1pbmlvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/604a531a0b/DefensiveMinion.png","gem":{}} +{"name":"Физический урон ближнего боя","refName":"Melee Physical Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0luY3JlYXNlZFBoeXNpY2FsRGFtYWdlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/99e02beaac/IncreasedPhysicalDamage.png","gem":{}} +{"name":"Раскатистый удар","refName":"Melee Splash Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1NwbGFzaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/739d21a3fc/Splash.png","gem":{}} +{"name":"Минное поле","refName":"Minefield Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01pbmVmaWVsZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/04b0f0d1e0/Minefield.png","gem":{}} +{"name":"Урон приспешников","refName":"Minion Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01pbmlvbkRhbWFnZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9bf4329029/MinionDamage.png","gem":{}} +{"name":"Здоровье приспешников","refName":"Minion Life Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01pbmlvbkxpZmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/efcc549806/MinionLife.png","gem":{}} +{"name":"Скорость приспешников","refName":"Minion Speed Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01pbmlvblNwZWVkIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/83f397f71b/MinionSpeed.png","gem":{}} +{"name":"Призрачный лучник","refName":"Mirage Archer Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01pcmFnZUFyY2hlciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/4f37cfb6a7/MirageArcher.png","gem":{}} +{"name":"Стрела-двойник","refName":"Mirror Arrow","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9NaXJyb3JBcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/73b6c24402/MirrorArrow.png","gem":{}} +{"name":"Стрела-двойник бомбардирующих клонов","refName":"Mirror Arrow of Bombarding Clones","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9NaXJyb3JBcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/73b6c24402/MirrorArrow.png","gem":{"transfigured":true,"normalVariant":"Mirror Arrow"}} +{"name":"Стрела-двойник радужных клонов","refName":"Mirror Arrow of Prismatic Clones","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9NaXJyb3JBcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/73b6c24402/MirrorArrow.png","gem":{"transfigured":true,"normalVariant":"Mirror Arrow"}} +{"name":"Расплавленный панцирь","refName":"Molten Shell","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Nb2x0ZW5TaGVsbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9d2618a44a/MoltenShell.png","gem":{}} +{"name":"Магмовый удар","refName":"Molten Strike","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Nb2x0ZW5TdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3493f9e016/MoltenStrike.png","gem":{}} +{"name":"Магмовый удар зенита","refName":"Molten Strike of the Zenith","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Nb2x0ZW5TdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3493f9e016/MoltenStrike.png","gem":{"transfigured":true,"normalVariant":"Molten Strike"}} +{"name":"Импульс","refName":"Momentum Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01vbWVudHVtU3VwcG9ydEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ccdd57e05a/MomentumSupportGem.png","gem":{}} +{"name":"Продление","refName":"More Duration Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0luY3JlYXNlZER1cmF0aW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/a5db7ae0bd/IncreasedDuration.png","gem":{}} +{"name":"Множество тотемов","refName":"Multiple Totems Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L011bHRpcGxlVG90ZW1zIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/dc8f032f0b/MultipleTotems.png","gem":{}} +{"name":"Дополнительные ловушки","refName":"Multiple Traps Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L011bHRpVHJhcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/40a7787dff/MultiTrap.png","gem":{}} +{"name":"Град ударов","refName":"Multistrike Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L211bHRpcGxlYXR0YWNrcyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/49bb71ab5f/multipleattacks.png","gem":{}} +{"name":"Клинок во тьме","refName":"Nightblade Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L05pZ2h0YmxhZGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ffa3ac8f49/Nightblade.png","gem":{}} +{"name":"Сфера бурь","refName":"Orb of Storms","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdG9ybUNsb3VkR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5b77e4b3b2/StormCloudGem.png","gem":{}} +{"name":"Перегрузка","refName":"Overcharge Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1B1cmVTaG9ja1N1cHBvcnRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/161c06a8d4/PureShockSupportGem.png","gem":{}} +{"name":"Переусиление","refName":"Overexertion Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L092ZXJleGVydGlvbldhcmNyeVN1cHBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/2f39285834/OverexertionWarcrySupport.png","gem":{}} +{"name":"Клеймо покаяния","refName":"Penance Brand","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QZW5hbmNlQnJhbmRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/72054bdbca/PenanceBrandGem.png","gem":{}} +{"name":"Клеймо покаяния проводимости","refName":"Penance Brand of Conduction","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QZW5hbmNlQnJhbmRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/72054bdbca/PenanceBrandGem.png","gem":{"transfigured":true,"normalVariant":"Penance Brand"}} +{"name":"Рассеивающее клеймо покаяния","refName":"Penance Brand of Dissipation","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QZW5hbmNlQnJhbmRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/72054bdbca/PenanceBrandGem.png","gem":{"transfigured":true,"normalVariant":"Penance Brand"}} +{"name":"Пронзающие шипы","refName":"Perforate","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZFNhbmRTcGVhcnNTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c39a8a0fbb/BloodSandSpearsSkillGem.png","gem":{}} +{"name":"Пронзающие шипы резни","refName":"Perforate of Bloodshed","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZFNhbmRTcGVhcnNTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c39a8a0fbb/BloodSandSpearsSkillGem.png","gem":{"transfigured":true,"normalVariant":"Perforate"}} +{"name":"Пронзающие шипы двойственности","refName":"Perforate of Duality","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZFNhbmRTcGVhcnNTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c39a8a0fbb/BloodSandSpearsSkillGem.png","gem":{"transfigured":true,"normalVariant":"Perforate"}} +{"name":"Моровой удар","refName":"Pestilent Strike","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9NYW1iYVN0cmlrZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/456033ff00/MambaStrike.png","gem":{}} +{"name":"Окаменелая кровь","refName":"Petrified Blood","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QZXRyaWZpZWRCbG9vZEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9221d2458d/PetrifiedBloodGem.png","gem":{}} +{"name":"Призрачный бег","refName":"Phase Run","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QaGFzZVJ1biIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0f3a780d1f/PhaseRun.png","gem":{}} +{"name":"Физический урон в молнии","refName":"Physical to Lightning Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1BoeXNpY2FsVG9MaWdodG5pbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5f0b03c090/PhysicalToLightning.png","gem":{}} +{"name":"Пронзание","refName":"Pierce Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1BpZXJjZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9cceecca83/Pierce.png","gem":{}} +{"name":"Сосредоточение","refName":"Pinpoint Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1Byb2plY3RpbGVJbnRlbnNpdHkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ee6ee305b9/ProjectileIntensity.png","gem":{}} +{"name":"Носитель чумы","refName":"Plague Bearer","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QbGFndWVCZWFyZXJHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9b3e8e4025/PlagueBearerGem.png","gem":{}} +{"name":"Метка браконьера","refName":"Poacher's Mark","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb2FjaGVyc01hcmsiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4a716d544e/PoachersMark.png","gem":{}} +{"name":"Стрельба в упор","refName":"Point Blank Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1BvaW50QmxhbmsiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/23dd6314d7/PointBlank.png","gem":{}} +{"name":"Ядовитая смесь","refName":"Poisonous Concoction","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb2lzb25vdXNDb25jb2N0aW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b1cde568a6/PoisonousConcoction.png","gem":{}} +{"name":"Отскакивающая ядовитая смесь","refName":"Poisonous Concoction of Bouncing","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb2lzb25vdXNDb25jb2N0aW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b1cde568a6/PoisonousConcoction.png","gem":{"transfigured":true,"normalVariant":"Poisonous Concoction"}} +{"name":"Портал","refName":"Portal","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb3J0YWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/179ddc4cbd/Portal.png","gem":{}} +{"name":"Заряд энергии при критическом ударе","refName":"Power Charge On Critical Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1Bvd2VyQ2hhcmdlcyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d65c84e89f/PowerCharges.png","gem":{}} +{"name":"Перелив энергии","refName":"Power Siphon","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb3dlclNpcGhvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8c00738194/PowerSiphon.png","gem":{}} +{"name":"Перелив энергии архимага","refName":"Power Siphon of the Archmage","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb3dlclNpcGhvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8c00738194/PowerSiphon.png","gem":{"transfigured":true,"normalVariant":"Power Siphon"}} +{"name":"Точность","refName":"Precision","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BY2N1cmFjeWFuZENyaXRpY2FsQ2hhbmNlQXVyYSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/3996a0a9cf/AccuracyandCriticalChanceAura.png","gem":{}} +{"name":"Хищник","refName":"Predator Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L01pbmlvbkZvY3VzRmlyZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/84babeb963/MinionFocusFire.png","gem":{}} +{"name":"Гордость","refName":"Pride","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QcmlkZUF1cmFHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/115cf1f969/PrideAuraGem.png","gem":{}} +{"name":"Радужная вспышка","refName":"Prismatic Burst Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0VsZW1lbnRhbEJ1cnN0U3VwcG9ydEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/717e468ab8/ElementalBurstSupportGem.png","gem":{}} +{"name":"Ограждающая связь","refName":"Protective Link","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9ja0xpbmtHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a459f4b2b0/BlockLinkGem.png","gem":{}} +{"name":"Распыление","refName":"Pulverise Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1B1bHZlcml6ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f6e9b6cedb/Pulverize.png","gem":{}} +{"name":"Надрез","refName":"Puncture","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QdW5jdHVyZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5c16efd68b/Puncture.png","gem":{}} +{"name":"Надрез свежевания","refName":"Puncture of Shanking","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QdW5jdHVyZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5c16efd68b/Puncture.png","gem":{"transfigured":true,"normalVariant":"Puncture"}} +{"name":"Наказание","refName":"Punishment","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QdW5pc2htZW50IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4bffb6422c/Punishment.png","gem":{}} +{"name":"Очищающее пламя","refName":"Purifying Flame","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QdXJpZnlpbmdGbGFtZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/3f5689d6e1/PurifyingFlame.png","gem":{}} +{"name":"Очищающее пламя откровения","refName":"Purifying Flame of Revelations","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QdXJpZnlpbmdGbGFtZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/3f5689d6e1/PurifyingFlame.png","gem":{"transfigured":true,"normalVariant":"Purifying Flame"}} +{"name":"Спасение от стихий","refName":"Purity of Elements","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QdXJpdHkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/44bd765302/Purity.png","gem":{}} +{"name":"Спасение от огня","refName":"Purity of Fire","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlUmVzaXN0QXVyYSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/973e94bf0a/FireResistAura.png","gem":{}} +{"name":"Спасение от холода","refName":"Purity of Ice","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db2xkUmVzaXN0QXVyYSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0ebc7da568/ColdResistAura.png","gem":{}} +{"name":"Спасение от молний","refName":"Purity of Lightning","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdSZXNpc3RBdXJhIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4c883997e3/LightningResistAura.png","gem":{}} +{"name":"Пирокластовая мина","refName":"Pyroclast Mine","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlTW9ydGFyQmFycmFnZU1pbmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0dbce41c29/FireMortarBarrageMineSkillGem.png","gem":{}} +{"name":"Пирокластовая мина диверсии","refName":"Pyroclast Mine of Sabotage","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlTW9ydGFyQmFycmFnZU1pbmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0dbce41c29/FireMortarBarrageMineSkillGem.png","gem":{"transfigured":true,"normalVariant":"Pyroclast Mine"}} +{"name":"Свирепость","refName":"Rage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1JhZ2VTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ed66060764/RageSupport.png","gem":{}} +{"name":"Свирепый вихрь","refName":"Rage Vortex","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWdlVm9ydGV4IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/31794f9875/RageVortex.png","gem":{}} +{"name":"Свирепый вихрь неистовства","refName":"Rage Vortex of Berserking","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWdlVm9ydGV4IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/31794f9875/RageVortex.png","gem":{"transfigured":true,"normalVariant":"Rage Vortex"}} +{"name":"Ливень стрел","refName":"Rain of Arrows","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlub2ZBcnJvd3MiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a7e02c03ad/RainofArrows.png","gem":{}} +{"name":"Артиллерийский ливень стрел","refName":"Rain of Arrows of Artillery","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlub2ZBcnJvd3MiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a7e02c03ad/RainofArrows.png","gem":{"transfigured":true,"normalVariant":"Rain of Arrows"}} +{"name":"Ливень стрел насыщения","refName":"Rain of Arrows of Saturation","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlub2ZBcnJvd3MiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a7e02c03ad/RainofArrows.png","gem":{"transfigured":true,"normalVariant":"Rain of Arrows"}} +{"name":"Сотворение призрака","refName":"Raise Spectre","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlzZVNwZWN0cmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8b97da3ff6/RaiseSpectre.png","gem":{}} +{"name":"Сотворение бренного призрака","refName":"Raise Spectre of Transience","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlzZVNwZWN0cmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8b97da3ff6/RaiseSpectre.png","gem":{"transfigured":true,"normalVariant":"Raise Spectre"}} +{"name":"Поднятие зомби","refName":"Raise Zombie","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlzZVpvbWJpZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/91518203be/RaiseZombie.png","gem":{}} +{"name":"Поднятие падающего зомби","refName":"Raise Zombie of Falling","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlzZVpvbWJpZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/91518203be/RaiseZombie.png","gem":{"transfigured":true,"normalVariant":"Raise Zombie"}} +{"name":"Поднятие мощного зомби","refName":"Raise Zombie of Slamming","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlzZVpvbWJpZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/91518203be/RaiseZombie.png","gem":{"transfigured":true,"normalVariant":"Raise Zombie"}} +{"name":"Клич сплочения","refName":"Rallying Cry","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWxseWluZ0NyeVNraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1baf6b0602/RallyingCrySkillGem.png","gem":{}} +{"name":"Кровавая жатва","refName":"Reap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZHJlYXBHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a57bea32ba/BloodreapGem.png","gem":{}} +{"name":"Опустошение","refName":"Reave","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SZWF2ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/cdfa67890f/Reave.png","gem":{}} +{"name":"Преломляющее опустошение","refName":"Reave of Refraction","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SZWF2ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/cdfa67890f/Reave.png","gem":{"transfigured":true,"normalVariant":"Reave"}} +{"name":"Восполняющий тотем","refName":"Rejuvenation Totem","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SZWp1dmluYXRpb25Ub3RlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5dd895cd90/RejuvinationTotem.png","gem":{}} +{"name":"Возвращающиеся снаряды","refName":"Returning Projectiles Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1JldHVyblByb2plY3RpbGVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/76e59b7e35/ReturnProjectiles.png","gem":{}} +{"name":"Праведный огонь","refName":"Righteous Fire","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SaWdodGVvdXNGaXJlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/da7c97a11c/RighteousFire.png","gem":{}} +{"name":"Праведный огонь колдовского благочестия","refName":"Righteous Fire of Arcane Devotion","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SaWdodGVvdXNGaXJlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/da7c97a11c/RighteousFire.png","gem":{"transfigured":true,"normalVariant":"Righteous Fire"}} +{"name":"Ползучая магма","refName":"Rolling Magma","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlTW9ydGFyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9339ca9a6b/FireMortar.png","gem":{}} +{"name":"Разрывание","refName":"Rupture Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1J1cHR1cmVTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/38a8e54b96/RuptureSupport.png","gem":{}} +{"name":"Беспощадность","refName":"Ruthless Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1J1dGhsZXNzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d8a9bf875d/Ruthless.png","gem":{}} +{"name":"Священные огоньки","refName":"Sacred Wisps Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1dhbmRXaXNwU3VwcG9ydCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/20976859e1/WandWispSupport.png","gem":{}} +{"name":"Жертвоприношение","refName":"Sacrifice Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1NhY3JpZmljZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7797a594a9/Sacrifice.png","gem":{}} +{"name":"Садизм","refName":"Sadism Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1NhZGlzbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/13cc734252/Sadism.png","gem":{}} +{"name":"Опаляющий луч","refName":"Scorching Ray","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlQmVhbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/daf2631e95/FireBeam.png","gem":{}} +{"name":"Опаляющий луч сожжения","refName":"Scorching Ray of Immolation","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlQmVhbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/daf2631e95/FireBeam.png","gem":{"transfigured":true,"normalVariant":"Scorching Ray"}} +{"name":"Стрела скверны","refName":"Scourge Arrow","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9WaXJ1bGVudEFycm93IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/e633045dfb/VirulentArrow.png","gem":{}} +{"name":"Стрела скверны угрозы","refName":"Scourge Arrow of Menace","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9WaXJ1bGVudEFycm93IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/e633045dfb/VirulentArrow.png","gem":{"transfigured":true,"normalVariant":"Scourge Arrow"}} +{"name":"Обжигающие узы","refName":"Searing Bond","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TZWFyaW5nQm9uZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1bc968cafb/SearingBond.png","gem":{}} +{"name":"Второе дыхание","refName":"Second Wind Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1NlY29uZFdpbmRTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ccfc5c7b25/SecondWindSupport.png","gem":{}} +{"name":"Сейсмический клич","refName":"Seismic Cry","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TZWlzbWljQ3J5U2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f15f5c64ff/SeismicCrySkillGem.png","gem":{}} +{"name":"Сейсмическая ловушка","refName":"Seismic Trap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdWJ0ZXJyYW5lYW5UcmFwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/592e94541c/SubterraneanTrap.png","gem":{}} +{"name":"Сейсмическая ловушка волн","refName":"Seismic Trap of Swells","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdWJ0ZXJyYW5lYW5UcmFwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/592e94541c/SubterraneanTrap.png","gem":{"transfigured":true,"normalVariant":"Seismic Trap"}} +{"name":"Дробящая сталь","refName":"Shattering Steel","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaGF0dGVyaW5nU3RlZWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f2f0ff3d2b/ShatteringSteel.png","gem":{}} +{"name":"Дробящая сталь боезапаса","refName":"Shattering Steel of Ammunition","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaGF0dGVyaW5nU3RlZWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f2f0ff3d2b/ShatteringSteel.png","gem":{"transfigured":true,"normalVariant":"Shattering Steel"}} +{"name":"Удар щитом","refName":"Shield Charge","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaGllbGRDaGFyZ2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1749dcaa1d/ShieldCharge.png","gem":{}} +{"name":"Сокрушающий щит","refName":"Shield Crush","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaGllbGRDcnVzaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/920a5e462f/ShieldCrush.png","gem":{}} +{"name":"Сокрушающий щит вождя","refName":"Shield Crush of the Chieftain","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaGllbGRDcnVzaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/920a5e462f/ShieldCrush.png","gem":{"transfigured":true,"normalVariant":"Shield Crush"}} +{"name":"Кольцо молний","refName":"Shock Nova","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaG9ja05vdmEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/671a5ad79a/ShockNova.png","gem":{}} +{"name":"Ударная волна","refName":"Shockwave Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1Nob2Nrd2F2ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/891f9888bb/Shockwave.png","gem":{}} +{"name":"Сотрясающий тотем","refName":"Shockwave Totem","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaG9ja3dhdmVUb3RlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/406bc8da09/ShockwaveTotem.png","gem":{}} +{"name":"Осколочная баллиста","refName":"Shrapnel Ballista","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaG90Z3VuVG90ZW1Cb3dTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c52d90f33e/ShotgunTotemBowSkillGem.png","gem":{}} +{"name":"Стальная осколочная баллиста","refName":"Shrapnel Ballista of Steel","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaG90Z3VuVG90ZW1Cb3dTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c52d90f33e/ShotgunTotemBowSkillGem.png","gem":{"transfigured":true,"normalVariant":"Shrapnel Ballista"}} +{"name":"Осадная баллиста","refName":"Siege Ballista","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Dcm9zc0Jvd1RvdGVtR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/90dbc7b7ca/CrossBowTotemGem.png","gem":{}} +{"name":"Осадная баллиста осколков","refName":"Siege Ballista of Splintering","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Dcm9zc0Jvd1RvdGVtR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/90dbc7b7ca/CrossBowTotemGem.png","gem":{"transfigured":true,"normalVariant":"Siege Ballista"}} +{"name":"Печать силы","refName":"Sigil of Power","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaXJjbGVvZlBvd2VyU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b47a71c6bf/CircleofPowerSkillGem.png","gem":{}} +{"name":"Ловушка переливания","refName":"Siphoning Trap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTaXBob24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b04d5c8c56/IceSiphon.png","gem":{}} +{"name":"Замедленные снаряды","refName":"Slower Projectiles Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1Nsb3dlclByb2plY3RpbGVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2192faa440/SlowerProjectiles.png","gem":{}} +{"name":"Кара","refName":"Smite","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TbWl0ZUdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7c84ed15fc/SmiteGem.png","gem":{}} +{"name":"Кара божественного правосудия","refName":"Smite of Divine Judgement","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TbWl0ZUdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7c84ed15fc/SmiteGem.png","gem":{"transfigured":true,"normalVariant":"Smite"}} +{"name":"Дымовая мина","refName":"Smoke Mine","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TbW9rZUJvbWIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b002b08d2d/SmokeBomb.png","gem":{}} +{"name":"Прицельный выстрел","refName":"Snipe","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TbmlwZXJTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ae5061110b/SniperSkillGem.png","gem":{}} +{"name":"Метка снайпера","refName":"Sniper's Mark","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qcm9qZWN0aWxlV2Vha25lc3MiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3dd2dfcc61/ProjectileWeakness.png","gem":{}} +{"name":"Духовная связь","refName":"Soul Link","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Tb3VsTGlua0dlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/77a2f86ddb/SoulLinkGem.png","gem":{}} +{"name":"Разрыв души","refName":"Soulrend","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Tb3VscmVuZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ff1bb335b0/Soulrend.png","gem":{}} +{"name":"Разрыв души кровавой жатвы","refName":"Soulrend of Reaping","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Tb3VscmVuZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ff1bb335b0/Soulrend.png","gem":{"transfigured":true,"normalVariant":"Soulrend"}} +{"name":"Спиральный разрыв души","refName":"Soulrend of the Spiral","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Tb3VscmVuZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ff1bb335b0/Soulrend.png","gem":{"transfigured":true,"normalVariant":"Soulrend"}} +{"name":"Искра","refName":"Spark","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGFyayIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/60a5c0ff13/Spark.png","gem":{}} +{"name":"Кольцо искр","refName":"Spark of the Nova","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGFyayIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/60a5c0ff13/Spark.png","gem":{"transfigured":true,"normalVariant":"Spark"}} +{"name":"Непредсказуемая искра","refName":"Spark of Unpredictability","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGFyayIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/60a5c0ff13/Spark.png","gem":{"transfigured":true,"normalVariant":"Spark"}} +{"name":"Призрачная спираль","refName":"Spectral Helix","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGVjdHJhbFNwaXJhbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a4324285be/SpectralSpiralGem.png","gem":{}} +{"name":"Бросок призрачного щита","refName":"Spectral Shield Throw","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9UaHJvd24gU2hpZWxkIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f6b7871386/Thrown%20Shield.png","gem":{}} +{"name":"Призрачный бросок щита разбивания","refName":"Spectral Shield Throw of Shattering","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9UaHJvd24gU2hpZWxkIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f6b7871386/Thrown%20Shield.png","gem":{"transfigured":true,"normalVariant":"Spectral Shield Throw"}} +{"name":"Призрачный бросок","refName":"Spectral Throw","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HaG9zdGx5VGhyb3ciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c3b7611261/GhostlyThrow.png","gem":{}} +{"name":"Призрачный бросок воплощения","refName":"Spectral Throw of Materialising","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HaG9zdGx5VGhyb3ciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c3b7611261/GhostlyThrow.png","gem":{"transfigured":true,"normalVariant":"Spectral Throw"}} +{"name":"Каскад чар","refName":"Spell Cascade Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1NwZWxsQ2FzY2FkZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c72a3fbf82/SpellCascade.png","gem":{}} +{"name":"Эхо магии","refName":"Spell Echo Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L0VjaG8iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1868afbf2e/Echo.png","gem":{}} +{"name":"Колдующий тотем","refName":"Spell Totem Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1RvdGVtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/e168c87ee6/Totem.png","gem":{}} +{"name":"Чародейский клинок","refName":"Spellblade Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1NwZWxsQmxhZGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6f4a6cf751/SpellBlade.png","gem":{}} +{"name":"Чароплёт","refName":"Spellslinger","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGVsbHNsaW5nZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/2417fd6a3c/Spellslinger.png","gem":{}} +{"name":"Подношение духа","refName":"Spirit Offering","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGlyaXRPZmZlcmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/3ba85cdc49/SpiritOffering.png","gem":{}} +{"name":"Расколотая стрела","refName":"Split Arrow","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGxpdEFycm93IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3107527c8d/SplitArrow.png","gem":{}} +{"name":"Расколотая стрела раскалывания","refName":"Split Arrow of Splitting","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGxpdEFycm93IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3107527c8d/SplitArrow.png","gem":{"transfigured":true,"normalVariant":"Split Arrow"}} +{"name":"Раскалывающая сталь","refName":"Splitting Steel","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JbXBhY3RpbmdTdGVlbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/67462b2579/ImpactingSteelGem.png","gem":{}} +{"name":"Раскалывающая сталь боезапаса","refName":"Splitting Steel of Ammunition","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JbXBhY3RpbmdTdGVlbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/67462b2579/ImpactingSteelGem.png","gem":{"transfigured":true,"normalVariant":"Splitting Steel"}} +{"name":"Статичный разряд","refName":"Static Strike","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdGF0aWNHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6eee72093c/StaticGem.png","gem":{}} +{"name":"Стальная кожа","refName":"Steelskin","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9RdWlja0d1YXJkR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/7dcb756463/QuickGuardGem.png","gem":{}} +{"name":"Клеймо бури","refName":"Storm Brand","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db25kdWl0U2lnaWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8f4eb9be01/ConduitSigil.png","gem":{}} +{"name":"Клеймо бури неопределенности","refName":"Storm Brand of Indecision","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db25kdWl0U2lnaWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8f4eb9be01/ConduitSigil.png","gem":{"transfigured":true,"normalVariant":"Storm Brand"}} +{"name":"Грозовой взрыв","refName":"Storm Burst","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdG9ybUJ1cnN0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6ce2215dff/StormBurst.png","gem":{}} +{"name":"Призыв бури","refName":"Storm Call","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdG9ybWNhbGwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/eb3168564d/Stormcall.png","gem":{}} +{"name":"Грозовой дождь","refName":"Storm Rain","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QcmlzbWF0aWNSYWluIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/576ba4b47b/PrismaticRain.png","gem":{}} +{"name":"Грозовой дождь проводника","refName":"Storm Rain of the Conduit","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QcmlzbWF0aWNSYWluIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/576ba4b47b/PrismaticRain.png","gem":{"transfigured":true,"normalVariant":"Storm Rain"}} +{"name":"Заградительный грозовой дождь","refName":"Storm Rain of the Fence","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QcmlzbWF0aWNSYWluIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/576ba4b47b/PrismaticRain.png","gem":{"transfigured":true,"normalVariant":"Storm Rain"}} +{"name":"Грозовые руны","refName":"Stormbind","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdG9ybWJpbmRTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/30ae7dcd24/StormbindSkillGem.png","gem":{}} +{"name":"Грозовые руны переноса","refName":"Stormbind of Teleportation","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdG9ybWJpbmRTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/30ae7dcd24/StormbindSkillGem.png","gem":{"transfigured":true,"normalVariant":"Stormbind"}} +{"name":"Штормовая мина","refName":"Stormblast Mine","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdFeHBsb3Npb25NaW5lU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4722363740/LightningExplosionMineSkillGem.png","gem":{}} +{"name":"Оглушение","refName":"Stun Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N0dW4iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/38371dbefc/Stun.png","gem":{}} +{"name":"Призыв трупного голема","refName":"Summon Carrion Golem","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25DYXJyaW9uR29sZW1HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/01dce8b537/SummonCarrionGolemGem.png","gem":{}} +{"name":"Призыв трупного голема орды","refName":"Summon Carrion Golem of Hordes","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25DYXJyaW9uR29sZW1HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/01dce8b537/SummonCarrionGolemGem.png","gem":{"transfigured":true,"normalVariant":"Summon Carrion Golem"}} +{"name":"Призыв трупного голема-падальщика","refName":"Summon Carrion Golem of Scavenging","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25DYXJyaW9uR29sZW1HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/01dce8b537/SummonCarrionGolemGem.png","gem":{"transfigured":true,"normalVariant":"Summon Carrion Golem"}} +{"name":"Призыв голема хаоса","refName":"Summon Chaos Golem","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFvc0VsZW1lbnRhbFN1bW1vbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e735374a53/ChaosElementalSummon.png","gem":{}} +{"name":"Призыв голема хаоса орды","refName":"Summon Chaos Golem of Hordes","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFvc0VsZW1lbnRhbFN1bW1vbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e735374a53/ChaosElementalSummon.png","gem":{"transfigured":true,"normalVariant":"Summon Chaos Golem"}} +{"name":"Призыв голема хаоса водоворота","refName":"Summon Chaos Golem of the Maelström","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFvc0VsZW1lbnRhbFN1bW1vbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e735374a53/ChaosElementalSummon.png","gem":{"transfigured":true,"normalVariant":"Summon Chaos Golem"}} +{"name":"Призыв голема огня","refName":"Summon Flame Golem","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlRWxlbWVudGFsU3VtbW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/cca9edd8f9/FireElementalSummon.png","gem":{}} +{"name":"Призыв голема огня орды","refName":"Summon Flame Golem of Hordes","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlRWxlbWVudGFsU3VtbW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/cca9edd8f9/FireElementalSummon.png","gem":{"transfigured":true,"normalVariant":"Summon Flame Golem"}} +{"name":"Призыв голема огня метеора","refName":"Summon Flame Golem of the Meteor","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlRWxlbWVudGFsU3VtbW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/cca9edd8f9/FireElementalSummon.png","gem":{"transfigured":true,"normalVariant":"Summon Flame Golem"}} +{"name":"Призыв священной реликвии","refName":"Summon Holy Relic","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ib2x5UmVsaWMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b624fd0cda/HolyRelic.png","gem":{}} +{"name":"Призыв священной реликвии убеждения","refName":"Summon Holy Relic of Conviction","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ib2x5UmVsaWMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b624fd0cda/HolyRelic.png","gem":{"transfigured":true,"normalVariant":"Summon Holy Relic"}} +{"name":"Призыв голема льда","refName":"Summon Ice Golem","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VFbGVtZW50YWxTdW1tb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1b7a06245a/IceElementalSummon.png","gem":{}} +{"name":"Призыв голема льда орды","refName":"Summon Ice Golem of Hordes","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VFbGVtZW50YWxTdW1tb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1b7a06245a/IceElementalSummon.png","gem":{"transfigured":true,"normalVariant":"Summon Ice Golem"}} +{"name":"Призыв голема льда разбивания","refName":"Summon Ice Golem of Shattering","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VFbGVtZW50YWxTdW1tb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1b7a06245a/IceElementalSummon.png","gem":{"transfigured":true,"normalVariant":"Summon Ice Golem"}} +{"name":"Призыв голема молнии","refName":"Summon Lightning Golem","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdHb2xlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5dbb993d49/LightningGolem.png","gem":{}} +{"name":"Призыв голема молнии орды","refName":"Summon Lightning Golem of Hordes","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdHb2xlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5dbb993d49/LightningGolem.png","gem":{"transfigured":true,"normalVariant":"Summon Lightning Golem"}} +{"name":"Призыв фантома","refName":"Summon Phantasm Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1bW1vblBoYW50YXNtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/beef708237/SummonPhantasm.png","gem":{}} +{"name":"Призыв неистового духа","refName":"Summon Raging Spirit","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25FbGVtZW50YWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/65322c4405/SummonElemental.png","gem":{}} +{"name":"Чудовищный призыв неистового духа","refName":"Summon Raging Spirit of Enormity","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25FbGVtZW50YWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/65322c4405/SummonElemental.png","gem":{"transfigured":true,"normalVariant":"Summon Raging Spirit"}} +{"name":"Призыв Жнеца","refName":"Summon Reaper","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25SZWFwZXJTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/24f147e638/SummonReaperSkillGem.png","gem":{}} +{"name":"Призыв Жнеца-потрошителя","refName":"Summon Reaper of Eviscerating","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25SZWFwZXJTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/24f147e638/SummonReaperSkillGem.png","gem":{"transfigured":true,"normalVariant":"Summon Reaper"}} +{"name":"Призыв Жнеца-призрака","refName":"Summon Reaper of Revenants","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25SZWFwZXJTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/24f147e638/SummonReaperSkillGem.png","gem":{"transfigured":true,"normalVariant":"Summon Reaper"}} +{"name":"Сотворение скелетов","refName":"Summon Skeletons","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25Ta2VsZXRvbnMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d686d7dd8a/SummonSkeletons.png","gem":{}} +{"name":"Сотворение скелетов-лучников","refName":"Summon Skeletons of Archers","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25Ta2VsZXRvbnMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d686d7dd8a/SummonSkeletons.png","gem":{"transfigured":true,"normalVariant":"Summon Skeletons"}} +{"name":"Сотворение скелетов-магов","refName":"Summon Skeletons of Mages","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25Ta2VsZXRvbnMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d686d7dd8a/SummonSkeletons.png","gem":{"transfigured":true,"normalVariant":"Summon Skeletons"}} +{"name":"Призыв мехаботов","refName":"Summon Skitterbots","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ta2l0dGVyYm90U2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d6f39b50a5/SkitterbotSkillGem.png","gem":{}} +{"name":"Призыв каменного голема","refName":"Summon Stone Golem","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Sb2NrR29sZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6a504c60d3/RockGolem.png","gem":{}} +{"name":"Призыв каменного голема орды","refName":"Summon Stone Golem of Hordes","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Sb2NrR29sZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6a504c60d3/RockGolem.png","gem":{"transfigured":true,"normalVariant":"Summon Stone Golem"}} +{"name":"Призыв каменного голема охраны","refName":"Summon Stone Golem of Safeguarding","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Sb2NrR29sZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6a504c60d3/RockGolem.png","gem":{"transfigured":true,"normalVariant":"Summon Stone Golem"}} +{"name":"Раскол","refName":"Sunder","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaG9ja3dhdmVTbGFtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6e2b0e71d5/ShockwaveSlam.png","gem":{}} +{"name":"Сокрушающий раскол","refName":"Sunder of Earthbreaking","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaG9ja3dhdmVTbGFtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6e2b0e71d5/ShockwaveSlam.png","gem":{"transfigured":true,"normalVariant":"Sunder"}} +{"name":"Круговой взмах","refName":"Sweep","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Td2VlcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/dcad278e28/Sweep.png","gem":{}} +{"name":"Стремительный недуг","refName":"Swift Affliction Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N1cHBvcnRSYXBpZERlY2F5R2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/bed2b2a224/SupportRapidDecayGem.png","gem":{}} +{"name":"Быстрая сборка","refName":"Swift Assembly Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1RyYXBNaW5lU3VwcG9ydEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/809e461b30/TrapMineSupportGem.png","gem":{}} +{"name":"Быстрое клеймение","refName":"Swiftbrand Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1N3aWZ0YnJhbmRTdXBwb3J0R2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/18dcd7a075/SwiftbrandSupportGem.png","gem":{}} +{"name":"Буря мечей","refName":"Swordstorm","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzMwLDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9XZWFwb25TdG9ybVNraWxsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/be6f64c9c5/WeaponStormSkill.png","gem":{}} +{"name":"Тектонический удар","refName":"Tectonic Slam","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9UZWN0b25pY1NsYW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f19a11009f/TectonicSlam.png","gem":{}} +{"name":"Тектонический удар катаклизма","refName":"Tectonic Slam of Cataclysm","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9UZWN0b25pY1NsYW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f19a11009f/TectonicSlam.png","gem":{"transfigured":true,"normalVariant":"Tectonic Slam"}} +{"name":"Щит бури","refName":"Tempest Shield","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9UZW1wZXN0U2hpZWxkIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/bfe0750738/TempestShield.png","gem":{}} +{"name":"Путы времени","refName":"Temporal Chains","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9UZW1wb3JhbENoYWlucyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9746170624/TemporalChains.png","gem":{}} +{"name":"Временной разрыв","refName":"Temporal Rift","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaHJvbm9tYW5jZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9977b27b7c/Chronomancer.png","gem":{}} +{"name":"Торнадо","refName":"Tornado","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ub3JuYWRvR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6ff8d3b903/TornadoGem.png","gem":{}} +{"name":"Торнадо стихийной хаотичности","refName":"Tornado of Elemental Turbulence","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ub3JuYWRvR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6ff8d3b903/TornadoGem.png","gem":{"transfigured":true,"normalVariant":"Tornado"}} +{"name":"Вихрь стрел","refName":"Tornado Shot","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ub3JuYWRvU2hvdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7299d3edf8/TornadoShot.png","gem":{}} +{"name":"Вихрь стрел раскатов","refName":"Tornado Shot of Cloudburst","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ub3JuYWRvU2hvdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7299d3edf8/TornadoShot.png","gem":{"transfigured":true,"normalVariant":"Tornado Shot"}} +{"name":"Токсичный дождь","refName":"Toxic Rain","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlub2ZTcG9yZXNHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/968913d716/RainofSporesGem.png","gem":{}} +{"name":"Токсичный дождь выброса спор","refName":"Toxic Rain of Sporeburst","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlub2ZTcG9yZXNHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/968913d716/RainofSporesGem.png","gem":{"transfigured":true,"normalVariant":"Toxic Rain"}} +{"name":"Токсичный дождь увядания","refName":"Toxic Rain of Withering","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlub2ZTcG9yZXNHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/968913d716/RainofSporesGem.png","gem":{"transfigured":true,"normalVariant":"Toxic Rain"}} +{"name":"Урон ловушек и мин","refName":"Trap and Mine Damage Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1RyYXBBbmRNaW5lRGFtYWdlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/83b5eac9be/TrapAndMineDamage.png","gem":{}} +{"name":"Ловушка","refName":"Trap Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1RyYXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8893adb50f/Trap.png","gem":{}} +{"name":"Травма","refName":"Trauma Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1RyYXVtYSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f1642bf8e3/Trauma.png","gem":{}} +{"name":"Триединство","refName":"Trinity Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1RyaW5pdHlTdXBwb3J0R2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f547899752/TrinitySupportGem.png","gem":{}} +{"name":"Безграничные состояния","refName":"Unbound Ailments Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1VuYm91bmRBaWxtZW50cyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a5ce74c4dc/UnboundAilments.png","gem":{}} +{"name":"Эксгумация","refName":"Unearth","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Cb25lTGFuY2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ba9f4da647/BoneLance.png","gem":{}} +{"name":"Высвобождение","refName":"Unleash Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1VubGVhc2hTdXBwb3J0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9c92c88f3e/UnleashSupport.png","gem":{}} +{"name":"Срочные приказы","refName":"Urgent Orders Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1VyZ2VudE9yZGVyc1N1cHBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/dfa6ae426c/UrgentOrdersSupport.png","gem":{}} +{"name":"Отпущение ваал","refName":"Vaal Absolution","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BYnNvbHV0aW9uQmxhc3RHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/11111dec89/AbsolutionBlastGem.png","gem":{"vaal":true}} +{"name":"Живое оружие ваал","refName":"Vaal Animate Weapon","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BbmltYXRlV2VhcG9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/739caf7508/AnimateWeapon.png","gem":{"vaal":true}} +{"name":"Цепь молний ваал","refName":"Vaal Arc","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BcmMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3778fcf505/Arc.png","gem":{"vaal":true}} +{"name":"Северная броня ваал","refName":"Vaal Arctic Armour","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTaGllbGQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/22044364a7/IceShield.png","gem":{"vaal":true}} +{"name":"Порыв клинков ваал","refName":"Vaal Blade Flurry","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFyZ2VkQXR0YWNrIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b55acf2e90/ChargedAttack.png","gem":{"vaal":true}} +{"name":"Вихрь клинков ваал","refName":"Vaal Blade Vortex","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGlubmluZ0V0aGVyZWFsQmxhZGVzR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8f7a7d7b81/SpinningEtherealBladesGem.png","gem":{"vaal":true}} +{"name":"Мор ваал","refName":"Vaal Blight","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGlnaHRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/63c4ea3534/BlightGem.png","gem":{"vaal":true}} +{"name":"Разлом ваал","refName":"Vaal Breach","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9WYWFsR2Vtcy9WYWFsQnJlYWNoUG9ydGFsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/99b58a9a68/VaalBreachPortal.png","gem":{}} +{"name":"Горящая стрела ваал","refName":"Vaal Burning Arrow","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CdXJuaW5nQXJyb3ciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4cc118dd2c/BurningArrow.png","gem":{"vaal":true}} +{"name":"Едкая стрела ваал","refName":"Vaal Caustic Arrow","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb2lzb25BcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8aa59b2327/PoisonArrow.png","gem":{"vaal":true}} +{"name":"Ясность ума ваал","refName":"Vaal Clarity","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DbGFyaXR5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/30046e480b/Clarity.png","gem":{"vaal":true}} +{"name":"Рассечение ваал","refName":"Vaal Cleave","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DbGVhdmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/7d4382b5e9/Cleave.png","gem":{"vaal":true}} +{"name":"Укус стужи ваал","refName":"Vaal Cold Snap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db2xkU25hcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/889f6cb1fd/ColdSnap.png","gem":{"vaal":true}} +{"name":"Вихрь ваал","refName":"Vaal Cyclone","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DeWNsb25lIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f97bf2f477/Cyclone.png","gem":{"vaal":true}} +{"name":"Подрыв трупа ваал","refName":"Vaal Detonate Dead","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZXRvbmF0ZURlYWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/109199fc84/DetonateDead.png","gem":{"vaal":true}} +{"name":"Дисциплина ваал","refName":"Vaal Discipline","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXNjaXBsaW5lIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8fb38b53f4/Discipline.png","gem":{"vaal":true}} +{"name":"Господство ваал","refName":"Vaal Domination","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb21pbmF0aW5nQmxvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c0a344a783/DominatingBlow.png","gem":{"vaal":true}} +{"name":"Двойной удар ваал","refName":"Vaal Double Strike","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb3VibGVTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/408f3e4fa9/DoubleStrike.png","gem":{"vaal":true}} +{"name":"Землетрясение ваал","refName":"Vaal Earthquake","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9RdWFrZVNsYW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3a3c0f1c46/QuakeSlam.png","gem":{"vaal":true}} +{"name":"Огненный шар ваал","refName":"Vaal Fireball","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlYmFsbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8f374db219/Fireball.png","gem":{"vaal":true}} +{"name":"Огненный шторм ваал","refName":"Vaal Firestorm","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlc3Rvcm0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/86d85233c1/Firestorm.png","gem":{"vaal":true}} +{"name":"Пламенный взрыв ваал","refName":"Vaal Flameblast","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFyZ2VkQmxhc3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/90adc64f44/ChargedBlast.png","gem":{"vaal":true}} +{"name":"Внезапный удар ваал","refName":"Vaal Flicker Strike","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGlja2VyU3RyaWtlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4d16009413/FlickerStrike.png","gem":{"vaal":true}} +{"name":"Леденящий молот ваал","refName":"Vaal Glacial Hammer","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HbGFjaWFsSGFtbWVyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ff8c64eae7/GlacialHammer.png","gem":{"vaal":true}} +{"name":"Грация ваал","refName":"Vaal Grace","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HcmFjZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e98082048a/Grace.png","gem":{"vaal":true}} +{"name":"Сотрясение ваал","refName":"Vaal Ground Slam","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Hcm91bmRzbGFtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/fe4a163a74/Groundslam.png","gem":{"vaal":true}} +{"name":"Спешка ваал","refName":"Vaal Haste","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IYXN0ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/151b5aa85b/Haste.png","gem":{"vaal":true}} +{"name":"Кольцо льда ваал","refName":"Vaal Ice Nova","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VOb3ZhIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/65f9588dac/IceNova.png","gem":{"vaal":true}} +{"name":"Ледяной выстрел ваал","refName":"Vaal Ice Shot","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTaG90IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6ebe439727/IceShot.png","gem":{"vaal":true}} +{"name":"Погибель от огня ваал","refName":"Vaal Impurity of Fire","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlUmVzaXN0QXVyYSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/973e94bf0a/FireResistAura.png","gem":{"vaal":true}} +{"name":"Погибель от холода ваал","refName":"Vaal Impurity of Ice","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db2xkUmVzaXN0QXVyYSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0ebc7da568/ColdResistAura.png","gem":{"vaal":true}} +{"name":"Погибель от молнии ваал","refName":"Vaal Impurity of Lightning","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdSZXNpc3RBdXJhIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4c883997e3/LightningResistAura.png","gem":{"vaal":true}} +{"name":"Стрела молнии ваал","refName":"Vaal Lightning Arrow","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdBcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f5ad901f20/LightningArrow.png","gem":{"vaal":true}} +{"name":"Удар молнии ваал","refName":"Vaal Lightning Strike","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e593a52f90/LightningStrike.png","gem":{"vaal":true}} +{"name":"Ловушка молний ваал","refName":"Vaal Lightning Trap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdUcmFwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/18365fa604/LightningTrap.png","gem":{"vaal":true}} +{"name":"Расплавленный панцирь ваал","refName":"Vaal Molten Shell","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Nb2x0ZW5TaGVsbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9d2618a44a/MoltenShell.png","gem":{"vaal":true}} +{"name":"Магмовый удар ваал","refName":"Vaal Molten Strike","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Nb2x0ZW5TdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3493f9e016/MoltenStrike.png","gem":{"vaal":true}} +{"name":"Перелив энергии ваал","refName":"Vaal Power Siphon","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb3dlclNpcGhvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8c00738194/PowerSiphon.png","gem":{"vaal":true}} +{"name":"Ливень стрел ваал","refName":"Vaal Rain of Arrows","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlub2ZBcnJvd3MiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a7e02c03ad/RainofArrows.png","gem":{"vaal":true}} +{"name":"Кровавая жатва ваал","refName":"Vaal Reap","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZHJlYXBHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a57bea32ba/BloodreapGem.png","gem":{"vaal":true}} +{"name":"Опустошение ваал","refName":"Vaal Reave","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SZWF2ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/cdfa67890f/Reave.png","gem":{"vaal":true}} +{"name":"Восполняющий тотем ваал","refName":"Vaal Rejuvenation Totem","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SZWp1dmluYXRpb25Ub3RlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5dd895cd90/RejuvinationTotem.png","gem":{"vaal":true}} +{"name":"Праведный огонь ваал","refName":"Vaal Righteous Fire","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SaWdodGVvdXNGaXJlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/da7c97a11c/RighteousFire.png","gem":{"vaal":true}} +{"name":"Кара ваал","refName":"Vaal Smite","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TbWl0ZUdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7c84ed15fc/SmiteGem.png","gem":{"vaal":true}} +{"name":"Искра ваал","refName":"Vaal Spark","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGFyayIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/60a5c0ff13/Spark.png","gem":{"vaal":true}} +{"name":"Призрачный бросок ваал","refName":"Vaal Spectral Throw","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HaG9zdGx5VGhyb3ciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c3b7611261/GhostlyThrow.png","gem":{"vaal":true}} +{"name":"Призыв бури ваал","refName":"Vaal Storm Call","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdG9ybWNhbGwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/eb3168564d/Stormcall.png","gem":{"vaal":true}} +{"name":"Сотворение скелетов ваал","refName":"Vaal Summon Skeletons","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdW1tb25Ta2VsZXRvbnMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d686d7dd8a/SummonSkeletons.png","gem":{"vaal":true}} +{"name":"Круг яда ваал","refName":"Vaal Venom Gyre","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TbmFwcGluZ0FkZGVyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d3f9a31aac/SnappingAdder.png","gem":{"vaal":true}} +{"name":"Вулканический разлом ваал","refName":"Vaal Volcanic Fissure","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Wb2xjYW5pY0Zpc3N1cmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b12b9ef422/VolcanicFissureSkillGem.png","gem":{"vaal":true}} +{"name":"Иссушающая связь","refName":"Vampiric Link","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MZWVjaExpbmtHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cb9c98d9f4/LeechLinkGem.png","gem":{}} +{"name":"Клич отмщения","refName":"Vengeful Cry","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzMwLDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SZXRhbGlhdGlvblJhZ2VXYXJlY3J5V2FyY3J5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/963303d35a/RetaliationRageWarecryWarcry.png","gem":{}} +{"name":"Круг яда","refName":"Venom Gyre","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TbmFwcGluZ0FkZGVyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d3f9a31aac/SnappingAdder.png","gem":{}} +{"name":"Яростные снаряды","refName":"Vicious Projectiles Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1JhbmdlZFBoeXNpY2FsQXR0YWNrRGFtYWdlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ad10efb4f6/RangedPhysicalAttackDamage.png","gem":{}} +{"name":"Расчётливый удар","refName":"Vigilant Strike","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9WaWdpbGFudFN0cmlrZUdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/14cfefd50c/VigilantStrikeGem.png","gem":{}} +{"name":"Едкие токсины","refName":"Vile Toxins Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1ZpbGVUb3hpbnMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f63c48d4b1/VileToxins.png","gem":{}} +{"name":"Удар гадюки","refName":"Viper Strike","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9WaXBlclN0cmlrZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/185f7013c7/ViperStrike.png","gem":{}} +{"name":"Удар гадюки Мамбы","refName":"Viper Strike of the Mamba","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9WaXBlclN0cmlrZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/185f7013c7/ViperStrike.png","gem":{"transfigured":true,"normalVariant":"Viper Strike"}} +{"name":"Живучесть","refName":"Vitality","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9WaXRhbGl0eSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/125dbe04db/Vitality.png","gem":{}} +{"name":"Манипуляция пустотой","refName":"Void Manipulation Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1ZvaWRNYW5pcHVsYXRpb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d43a79f597/VoidManipulation.png","gem":{}} +{"name":"Сфера пустоты","refName":"Void Sphere","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFja0hvbGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5a522c3871/BlackHole.png","gem":{}} +{"name":"Сфера пустоты раздирания","refName":"Void Sphere of Rending","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbGFja0hvbGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5a522c3871/BlackHole.png","gem":{"transfigured":true,"normalVariant":"Void Sphere"}} +{"name":"Нестабильный труп","refName":"Volatile Dead","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Wb2xhdGlsZURlYWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/75c543dab5/VolatileDead.png","gem":{}} +{"name":"Заточенный нестабильный труп","refName":"Volatile Dead of Confinement","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Wb2xhdGlsZURlYWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/75c543dab5/VolatileDead.png","gem":{"transfigured":true,"normalVariant":"Volatile Dead"}} +{"name":"Бурлящий нестабильный труп","refName":"Volatile Dead of Seething","namespace":"GEM","tradeDisc":"alt_y","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Wb2xhdGlsZURlYWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/75c543dab5/VolatileDead.png","gem":{"transfigured":true,"normalVariant":"Volatile Dead"}} +{"name":"Нестабильность","refName":"Volatility Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1ZvbGF0aWxpdHkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/89efd990e3/Volatility.png","gem":{}} +{"name":"Вулканический разлом","refName":"Volcanic Fissure","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Wb2xjYW5pY0Zpc3N1cmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b12b9ef422/VolcanicFissureSkillGem.png","gem":{}} +{"name":"Вулканический разлом зигзагов","refName":"Volcanic Fissure of Snaking","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Wb2xjYW5pY0Zpc3N1cmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b12b9ef422/VolcanicFissureSkillGem.png","gem":{"transfigured":true,"normalVariant":"Volcanic Fissure"}} +{"name":"Залп","refName":"Volley Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1BhcmFsbGVsUHJvamVjdGlsZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/814ab0a18f/ParallelProjectile.png","gem":{}} +{"name":"Вольтаксовая вспышка","refName":"Voltaxic Burst","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Wb2lkYnVyc3RTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ba291fb033/VoidburstSkillGem.png","gem":{}} +{"name":"Пурга","refName":"Vortex","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdFZvcnRleCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/13869ff5ca/FrostVortex.png","gem":{}} +{"name":"Пурга проекции","refName":"Vortex of Projection","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdFZvcnRleCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/13869ff5ca/FrostVortex.png","gem":{"transfigured":true,"normalVariant":"Vortex"}} +{"name":"Беззащитность","refName":"Vulnerability","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9WdWxuZXJhYmlsaXR5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1235ccd6b3/Vulnerability.png","gem":{}} +{"name":"Знамя войны","refName":"War Banner","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9XYXJiYW5uZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/bad44cab15/Warbanner.png","gem":{}} +{"name":"Метка вождя","refName":"Warlord's Mark","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9XYXJsb3Jkc01hcmsiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a51e4dbcb5/WarlordsMark.png","gem":{}} +{"name":"Волна осуждения","refName":"Wave of Conviction","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QdXJnZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/773530e679/Purge.png","gem":{}} +{"name":"Шквал клинков","refName":"Whirling Blades","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9XaGlybGluZ0JsYWRlcyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c2fc108c55/WhirlingBlades.png","gem":{}} +{"name":"Шальной удар","refName":"Wild Strike","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbGVtZW50YWxTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3d431c517c/ElementalStrike.png","gem":{}} +{"name":"Шальной удар полярности","refName":"Wild Strike of Extremes","namespace":"GEM","tradeDisc":"alt_x","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbGVtZW50YWxTdHJpa2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3d431c517c/ElementalStrike.png","gem":{"transfigured":true,"normalVariant":"Wild Strike"}} +{"name":"Зимняя сфера","refName":"Winter Orb","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdEZ1cnkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/89ef86a052/FrostFury.png","gem":{}} +{"name":"Клеймо зимы","refName":"Wintertide Brand","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9XaW50ZXJ0aWRlQnJhbmRHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/21a236e3c7/WintertideBrandGem.png","gem":{}} +{"name":"Увядание","refName":"Wither","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9XaXRoZXJHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f4a77cf6bc/WitherGem.png","gem":{}} +{"name":"Губительный шаг","refName":"Withering Step","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9XaXRoZXJpbmdTdGVwR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6f949bee1e/WitheringStepGem.png","gem":{}} +{"name":"Губительное прикосновение","refName":"Withering Touch Support","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdXBwb3J0L1dpdGhlckdlbVN1cHBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/214e5fcb53/WitherGemSupport.png","gem":{}} +{"name":"Грозный гнев","refName":"Wrath","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9XcmF0aCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6646c27a1b/Wrath.png","gem":{}} +{"name":"Фанатизм","refName":"Zealotry","namespace":"GEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGVsbERhbWFnZUdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f36b77014f/SpellDamageGem.png","gem":{}} +{"name":"Искажённое ископаемое","refName":"Aberrant Fossil","namespace":"ITEM","tradeTag":"aberrant-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvQWJiZXJhbnRGb3NzaWwiLCJzY2FsZSI6MX1d/0ebc664beb/AbberantFossil.png"} +{"name":"Карта гнезда отродий","refName":"Abomination Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{}} +{"name":"Абразивный катализатор","refName":"Abrasive Catalyst","namespace":"ITEM","tradeTag":"abrasive-catalyst","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL0FicmFzaXZlQ2F0YWx5c3QiLCJzY2FsZSI6MX1d/aca49c3cc0/AbrasiveCatalyst.png"} +{"name":"Скарабей Бездны","refName":"Abyss Scarab","namespace":"ITEM","tradeTag":"abyss-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJBYnlzcyIsInNjYWxlIjoxfV0/05f3ac3c5c/LesserScarabAbyss.png"} +{"name":"Скарабей Бездны строений","refName":"Abyss Scarab of Edifice","namespace":"ITEM","tradeTag":"abyss-scarab-of-edifice","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiQWJ5c3MiLCJzY2FsZSI6MX1d/84851bd122/GreaterScarabAbyss.png"} +{"name":"Скарабей Бездны пустоты","refName":"Abyss Scarab of Emptiness","namespace":"ITEM","tradeTag":"abyss-scarab-of-emptiness","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHROb3JtYWxTY2FyYWJBYnlzcyIsInNjYWxlIjoxfV0/1dbd071787/AltNormalScarabAbyss.png"} +{"name":"Скарабей Бездны множеств","refName":"Abyss Scarab of Multitudes","namespace":"ITEM","tradeTag":"abyss-scarab-of-multitudes","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJBYnlzcyIsInNjYWxlIjoxfV0/e28a53e1a0/NormalScarabAbyss.png"} +{"name":"Скарабей Бездны бездонности","refName":"Abyss Scarab of Profound Depth","namespace":"ITEM","tradeTag":"abyss-scarab-of-profound-depth","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRUaWVyNFNjYXJhYkFieXNzIiwic2NhbGUiOjF9XQ/b40fb2422b/AltTier4ScarabAbyss.png"} +{"name":"Топор кромешной тьмы","refName":"Abyssal Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNyIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/931ad5cc29/TwoHandAxe7.png","w":2,"h":4} +{"name":"Бездонная сфера Делириума","refName":"Abyssal Delirium Orb","namespace":"ITEM","tradeTag":"abyssal-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJBYnlzcyIsInNjYWxlIjoxfV0/7434403ff2/DeliriumOrbAbyss.png"} +{"name":"Инкубатор Бездны","refName":"Abyssal Incubator","namespace":"ITEM","tradeTag":"abyssal-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQWJ5c3MiLCJzY2FsZSI6MX1d/f3c36d1eb4/IncubationAbyss.png"} +{"name":"Скипетр кромешной тьмы","refName":"Abyssal Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyOCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/6644b94336/scepter8.png","w":2,"h":3} +{"name":"Карта академии","refName":"Academy Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{}} +{"name":"Ускоряющий катализатор","refName":"Accelerating Catalyst","namespace":"ITEM","tradeTag":"accelerating-catalyst","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL1NwZWVkTW9kaWZpZXJDYXRhbHlzdCIsInNjYWxlIjoxfV0/6493f34e78/SpeedModifierCatalyst.png"} +{"name":"Аккумулирующий жезл","refName":"Accumulator Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9IZWlzdFdhbmQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/4499b00066/HeistWand.png","h":3} +{"name":"Карта едких пещер","refName":"Acid Caverns Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/vISJftF.jpg"}} +{"name":"Эфирное ископаемое","refName":"Aetheric Fossil","namespace":"ITEM","tradeTag":"aetheric-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvQWV0aGVyaWNGb3NzaWwiLCJzY2FsZSI6MX1d/4c874e6fa9/AethericFossil.png"} +{"name":"Перчатки эфирного ветра","refName":"Aetherwind Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[28,32]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUml0dWFsSW50R2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/b698da54ed/RitualIntGloves.png","w":2,"h":2} +{"name":"Амулет с агатом","refName":"Agate Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BZ2F0ZUFtdWxldCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/710a5a8ec4/AgateAmulet.png"} +{"name":"Накопительный оберег","refName":"Aggregator Charm","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQWdncmVnYXRvckNoYXJtTWFnaWNTdG9uZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/18dabef4ca/AggregatorCharmMagicStone.png","w":2,"h":2} +{"name":"Герб Аль-Хезмина","refName":"Al-Hezmin's Crest","namespace":"ITEM","tradeTag":"al-hezmins-crest","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9IdW50ZXJGcmFnbWVudCIsInNjYWxlIjoxfV0/3ad268c533/HunterFragment.png"} +{"name":"Перо белого роа","refName":"Albino Rhoa Feather","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lSaG9hRmVhdGhlciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a6c81de02d/CurrencyRhoaFeather.png"} +{"name":"Ольховый колючий щит","refName":"Alder Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[209,240],"es":[43,49]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/db9355404e/ShieldDexInt2.png","w":2,"h":2} +{"name":"Карта переулка","refName":"Alleyways Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/m21vNCp.jpg"}} +{"name":"Бронзовый колючий щит","refName":"Alloyed Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[56,70],"es":[13,16]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/36d311e1dc/ShieldDexInt3.png","w":2,"h":2} +{"name":"Альтернирующий скипетр","refName":"Alternating Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9IZWlzdFNjZXB0cmVFbGVtZW50YWwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/34e5d78ab3/HeistSceptreElemental.png","w":2,"h":3} +{"name":"Воспоминание Альвы","refName":"Alva's Memory","namespace":"ITEM","craftable":{"category":"Memory Line"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWVtb3J5TGluZS9BbHZhTWVtb3J5SXRlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5adc01981d/AlvaMemoryItem.png"} +{"name":"Амулет с янтарём","refName":"Amber Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/abb6811fa1/Amulet3.png"} +{"name":"Янтарное масло","refName":"Amber Oil","namespace":"ITEM","tradeTag":"amber-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9BbWJlck9pbCIsInNjYWxlIjoxfV0/bd5ce1adfa/AmberOil.png"} +{"name":"Сандалеты разбойника","refName":"Ambush Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[85,95],"es":[18,20]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0c80b843d0/BootsDexInt3.png","w":2,"h":2} +{"name":"Перчатки разбойника","refName":"Ambush Mitts","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[81,91],"es":[17,19]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/e18b986979/GlovesDexInt2.png","w":2,"h":2} +{"name":"Скарабей Засады","refName":"Ambush Scarab","namespace":"ITEM","tradeTag":"ambush-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJTdHJvbmdib3hlcyIsInNjYWxlIjoxfV0/137917584a/LesserScarabStrongboxes.png"} +{"name":"Скарабей Засады содержания","refName":"Ambush Scarab of Containment","namespace":"ITEM","tradeTag":"ambush-scarab-of-containment","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYlN0cm9uZ2JveGVzIiwic2NhbGUiOjF9XQ/da665a65ee/Tier4ScarabStrongboxes.png"} +{"name":"Скарабей Засады разборчивости","refName":"Ambush Scarab of Discernment","namespace":"ITEM","tradeTag":"ambush-scarab-of-discernment","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRUaWVyNFNjYXJhYlN0cm9uZ2JveGVzIiwic2NhbGUiOjF9XQ/72722370df/AltTier4ScarabStrongboxes.png"} +{"name":"Скарабей Засады потайных отсеков","refName":"Ambush Scarab of Hidden Compartments","namespace":"ITEM","tradeTag":"ambush-scarab-of-hidden-compartments","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJTdHJvbmdib3hlcyIsInNjYWxlIjoxfV0/2654dacfee/NormalScarabStrongboxes.png"} +{"name":"Скарабей Засады могущества","refName":"Ambush Scarab of Potency","namespace":"ITEM","tradeTag":"ambush-scarab-of-potency","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiU3Ryb25nYm94ZXMiLCJzY2FsZSI6MX1d/c2cb4efc18/GreaterScarabStrongboxes.png"} +{"name":"Рондел","refName":"Ambusher","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/954af836f7/Dagger4.png","h":3} +{"name":"Аметистовый флакон","refName":"Amethyst Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvQW1ldGh5c3QiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/0f93f9050a/Amethyst.png","h":2} +{"name":"Кольцо с аметистом","refName":"Amethyst Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQW1ldGh5c3RSaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/804d781735/AmethystRing.png"} +{"name":"Встреча с Хозяином","refName":"An Audience With The King","namespace":"ITEM","tradeTag":"an-audience-with-the-king","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb0tpbmdFZmZpZ3kiLCJzY2FsZSI6MX1d/55e8fd8f34/VoodooKingEffigy.png"} +{"name":"Сумбурный меч духа","refName":"Anarchic Spiritblade","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0hlaXN0T25lSGFuZFN3b3JkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/6b56c4c406/HeistOneHandSword.png","w":2,"h":3} +{"name":"Скарабей Анархии","refName":"Anarchy Scarab","namespace":"ITEM","tradeTag":"anarchy-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJBbmFyY2h5Iiwic2NhbGUiOjF9XQ/73d1ee9b23/LesserScarabAnarchy.png"} +{"name":"Скарабей Анархии исполинства","refName":"Anarchy Scarab of Gigantification","namespace":"ITEM","tradeTag":"anarchy-scarab-of-gigantification","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJBbmFyY2h5Iiwic2NhbGUiOjF9XQ/d391e90e68/NormalScarabAnarchy.png"} +{"name":"Скарабей Анархии партнёрства","refName":"Anarchy Scarab of Partnership","namespace":"ITEM","tradeTag":"anarchy-scarab-of-partnership","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiQW5hcmNoeSIsInNjYWxlIjoxfV0/4697e57871/GreaterScarabAnarchy.png"} +{"name":"Дубинка предков","refName":"Ancestral Club","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2UyIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/75d926bb65/OneHandMace2.png","h":3} +{"name":"Карта древнего города","refName":"Ancient City Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/MThKML2.jpg"}} +{"name":"Древние перчатки","refName":"Ancient Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[154,173]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyMyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f5896830bf/GlovesStr3.png","w":2,"h":2} +{"name":"Древние поножи","refName":"Ancient Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[151,174]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/56efa25c50/BootsStr3.png","w":2,"h":2} +{"name":"Древняя маска","refName":"Ancient Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[308,355],"es":[62,71]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDEwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/62018602df/HelmetDexInt10.png","w":2,"h":2} +{"name":"Древняя сфера","refName":"Ancient Orb","namespace":"ITEM","tradeTag":"ancient-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jaWVudE9yYiIsInNjYWxlIjoxfV0/83015d0dc9/AncientOrb.png"} +{"name":"Ключ от Древнего Реликвария","refName":"Ancient Reliquary Key","namespace":"ITEM","tradeTag":"ancient-reliquary-key","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYXVsdE1hcCIsInNjYWxlIjoxfV0/e1342052dd/VaultMap.png"} +{"name":"Древний осколок","refName":"Ancient Shard","namespace":"ITEM","tradeTag":"ancient-shard","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jaWVudFNoYXJkIiwic2NhbGUiOjF9XQ/3695589639/AncientShard.png"} +{"name":"Древний щит духа","refName":"Ancient Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[38,45]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/2fcc8b522c/ShieldInt4.png","w":2,"h":2} +{"name":"Древний меч","refName":"Ancient Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDYiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/c12083d6b6/OneHandSword6.png","w":2,"h":3} +{"name":"Каплевидный щит ангела","refName":"Angelic Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[124,142],"es":[25,29]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/92beb951d5/ShieldStrInt5.png","w":2,"h":3} +{"name":"Осколок отмены","refName":"Annulment Shard","namespace":"ITEM","tradeTag":"annulment-shard","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5udWxsU2hhcmQiLCJzY2FsZSI6MX1d/1cf9962d97/AnnullShard.png"} +{"name":"Старинные перчатки","refName":"Antique Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[129,154]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyMiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/557280e2c8/GlovesStr2.png","w":2,"h":2} +{"name":"Старинные поножи","refName":"Antique Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[122,144]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c55db774a6/BootsStr2.png","w":2,"h":2} +{"name":"Старинная рапира","refName":"Antique Rapier","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjYiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/f9bc0a5aa1/Rapier6.png","h":4} +{"name":"Острейший секач","refName":"Apex Cleaver","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9IZWlzdFR3b0hhbmRBeGUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/4aef1881cc/HeistTwoHandAxe.png","w":2,"h":4} +{"name":"Острая рапира","refName":"Apex Rapier","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjgiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/1f11ed5e87/Rapier8.png","h":4} +{"name":"Перчатки аптекаря","refName":"Apothecary's Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[108,124],"es":[29,33]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQ2hlbWlzdEdsb3ZlcyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/b6fad295a2/ChemistGloves.png","w":2,"h":2} +{"name":"Перчатки подмастерья","refName":"Apprentice Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[132,152]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUml0dWFsRGV4R2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/2785fe1c37/RitualDexGloves.png","w":2,"h":2} +{"name":"Аквамариновый флакон","refName":"Aquamarine Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvYXF1YW1hcmluZSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/b48851db23/aquamarine.png","h":2} +{"name":"Карта гнезда пауков","refName":"Arachnid Nest Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/Ljh7mDh.jpg"}} +{"name":"Карта паучьей гробницы","refName":"Arachnid Tomb Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/1IAVUXr.jpg"}} +{"name":"Карта агоры","refName":"Arcade Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/mTl4tTm.jpg"}} +{"name":"Халат колдуна","refName":"Arcane Vestment","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[196,225]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9ea39de510/BodyInt1C.png","w":2,"h":3} +{"name":"Перчатки тайнописца","refName":"Arcanist Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[45,52]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/abe163b992/GlovesInt3.png","w":2,"h":2} +{"name":"Сапоги тайнописца","refName":"Arcanist Slippers","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[47,55]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/036cf97e61/BootsInt3.png","w":2,"h":2} +{"name":"Корона архидемона","refName":"Archdemon Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[185,212],"es":[38,43]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01hc2tDcm93biIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/dbad72643e/MaskCrown.png","w":2,"h":2} +{"name":"Ключ от Архивного Реликвария","refName":"Archive Reliquary Key","namespace":"ITEM","tradeTag":"archive-reliquary-key","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TZWFyaW5nRXhhcmNoRm9pbCIsInNjYWxlIjoxfV0/76bce43f6c/SearingExarchFoil.png"} +{"name":"Каплевидный щит архонта","refName":"Archon Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[156,179],"es":[32,37]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/92beb951d5/ShieldStrInt5.png","w":2,"h":3} +{"name":"Часть каплевидного щита архонта","refName":"Archon Kite Shield Piece","namespace":"ITEM","craftable":{"category":"Unique Fragment","uniqueOnly":true},"icon":"","w":1,"h":2} +{"name":"Карта арены","refName":"Arena Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/EaTICR6.jpg"}} +{"name":"Доспех драчуна","refName":"Arena Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[324,389]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/429eee131d/BodyStr2C.png","w":2,"h":3} +{"name":"Карта высохшего озера","refName":"Arid Lake Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/9gm7OPL.jpg"}} +{"name":"Боевой топор","refName":"Arming Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/01f0e16494/OneHandAxe6.png","w":2,"h":3} +{"name":"Деталь доспеха","refName":"Armourer's Scrap","namespace":"ITEM","tradeTag":"scrap","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lBcm1vdXJRdWFsaXR5Iiwic2NhbGUiOjF9XQ/fc4e26afbc/CurrencyArmourQuality.png"} +{"name":"Латная сфера Делириума","refName":"Armoursmith's Delirium Orb","namespace":"ITEM","tradeTag":"armoursmiths-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJBcm1vdXIiLCJzY2FsZSI6MX1d/c00fa9e1a3/DeliriumOrbArmour.png"} +{"name":"Карта оружейной","refName":"Armoury Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/d5Y7MBu.jpg"}} +{"name":"Карта арсенала","refName":"Arsenal Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/5iGxpEn.jpg"}} +{"name":"Артиллерийский колчан","refName":"Artillery Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9DaGlzZWxRdWl2ZXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e316e63433/ChiselQuiver.png","w":2,"h":3} +{"name":"Микстура из коры ясеня","refName":"Ashbark Tincture","namespace":"ITEM","craftable":{"category":"Tincture"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL0lnbml0ZVNhcCIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/deba37a1a1/IgniteSap.png","h":2} +{"name":"Карта пепельного леса","refName":"Ashen Wood Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/kHvVFYI.jpg"}} +{"name":"Талисман пепельного чешуйника","refName":"Ashscale Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbldoaXRlOCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/2554d58070/TalismanWhite8.png"} +{"name":"Лук убийцы","refName":"Assassin Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/2c90c93faf/Bow5.png","w":2,"h":4} +{"name":"Калиги убийцы","refName":"Assassin's Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[121,139],"es":[25,28]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0c80b843d0/BootsDexInt3.png","w":2,"h":2} +{"name":"Облачение убийцы","refName":"Assassin's Garb","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[737,811]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8f1d1cfaa9/BodyDex2C.png","w":2,"h":3} +{"name":"Перчатки убийцы","refName":"Assassin's Mitts","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[104,123],"es":[21,25]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/e18b986979/GlovesDexInt2.png","w":2,"h":2} +{"name":"Собирающий жезл","refName":"Assembler Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9IZWlzdFdhbmQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/4499b00066/HeistWand.png","h":3} +{"name":"Таранные кости","refName":"Astragali","namespace":"ITEM","tradeTag":"astragali","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXhwZWRpdGlvbi9HYW1ibGVyUmVmcmVzaEN1cnJlbmN5Iiwic2NhbGUiOjF9XQ/ff5640db4c/GamblerRefreshCurrency.png"} +{"name":"Звёздная кожа","refName":"Astral Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[1037,1193]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4M0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e30de2c7a6/BodyDex3C.png","w":2,"h":3} +{"name":"Звёздные латы","refName":"Astral Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[711,782]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/94a3d5d98e/BodyStr1C.png","w":2,"h":3} +{"name":"Амулет-астролябия","refName":"Astrolabe Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9IZWlzdEFtdWxldDEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MSwiZWxkZXIiOnRydWUsInNoYXBlciI6dHJ1ZX1d/8dcc0d5883/HeistAmulet1.png"} +{"name":"Карта атолла","refName":"Atoll Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/ynKNdxR.jpg"}} +{"name":"Маска искупления","refName":"Atonement Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[122,140],"ev":[122,140]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleFIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f63493ca95/HelmetStrDexR.png","w":2,"h":2} +{"name":"Золотая булава","refName":"Auric Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U3IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/84402507d1/OneHandMace7.png","w":2,"h":3} +{"name":"Шлем с бармицей","refName":"Aventail Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[101,119],"es":[21,25]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/6ec3ce7dae/HelmetStrInt5.png","w":2,"h":2} +{"name":"Талисман пернатых близнецов","refName":"Avian Twins Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbkJsYWNrMiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/51fd60eedf/TalismanBlack2.png"} +{"name":"Сфера Пробудителя","refName":"Awakener's Orb","namespace":"ITEM","tradeTag":"awakeners-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVHJhbnNmZXJPcmIiLCJzY2FsZSI6MX1d/f3b1c1566f/TransferOrb.png"} +{"name":"Пробуждающий фрагмент","refName":"Awakening Fragment","namespace":"ITEM","tradeTag":"awakening-fragment","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyQm9zc0tleVNpcnVzIiwic2NhbGUiOjF9XQ/094681ee85/UberBossKeySirus.png"} +{"name":"Шило","refName":"Awl","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ac6e7ab61d/Claw3.png","w":2,"h":2} +{"name":"Лазурное масло","refName":"Azure Oil","namespace":"ITEM","tradeTag":"azure-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9BenVyZU9pbCIsInNjYWxlIjoxfV0/a68235e8e8/AzureOil.png"} +{"name":"Азуритовый порох","refName":"Azurite Flashpowder","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQXp1cml0ZUZsYXNocG93ZGVyIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/b8addc416a/AzuriteFlashpowder.png","w":2,"h":2} +{"name":"Изгоняющий клинок","refName":"Banishing Blade","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL0hlaXN0VHdvSGFuZFN3b3JkIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/9757ea88b2/HeistTwoHandSword.png","w":2,"h":4} +{"name":"Герб Бэрана","refName":"Baran's Crest","namespace":"ITEM","tradeTag":"barans-crest","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9DcnVzYWRlckZyYWdtZW50Iiwic2NhbGUiOjF9XQ/3e2fecf3bc/CrusaderFragment.png"} +{"name":"Колючая дубинка","refName":"Barbed Club","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2UzIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/a3a1dace2a/OneHandMace3.png","h":3} +{"name":"Барбют","refName":"Barbute Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[92,115]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/38b7aedad1/HelmetStr3.png","w":2,"h":2} +{"name":"Вычурный круглый щит","refName":"Baroque Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[122,140],"ev":[122,140]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/b81ab44241/ShieldStrDex5.png","w":2,"h":3} +{"name":"Карта кургана","refName":"Barrows Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/SwZdc6q.jpg"}} +{"name":"Базальтовый флакон","refName":"Basalt Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3Mvc3RvbmUiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/00261d09db/stone.png","h":2} +{"name":"Короткий меч","refName":"Baselard","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/936e00e3e6/OneHandSword4.png","w":2,"h":3} +{"name":"Сапоги из чёрного металла","refName":"Basemetal Treads","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[68,78]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SaXR1YWxTdHJCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/fa0ce420ed/RitualStrBoots.png","w":2,"h":2} +{"name":"Базовый маскировочный набор","refName":"Basic Disguise Kit","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmFzaWNEaXNndWlzZUtpdCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7be5d4947a/BasicDisguiseKit.png","w":2,"h":2} +{"name":"Карта базилики","refName":"Basilica Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/G6ySvIu.jpg"}} +{"name":"Рапира с чашей","refName":"Basket Rapier","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjQiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/dc28604809/Rapier4.png","h":4} +{"name":"Полуторный меч","refName":"Bastard Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/28f44a7a0c/TwoHandSword3.png","w":2,"h":4} +{"name":"Тупая шпага","refName":"Battered Foil","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjMiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/11f4a8b0d0/Rapier3.png","h":4} +{"name":"Пробитый шлем","refName":"Battered Helm","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[13,18],"ev":[13,18]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/00af4cd199/HelmetStrDex1.png","w":2,"h":2} +{"name":"Гальванический посох","refName":"Battery Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGVpc3RTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/5e852184f5/HeistStaff.png","w":2,"h":4} +{"name":"Боевой баклер","refName":"Battle Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[287,330]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5a38d58259/ShieldDex5.png","w":2,"h":2} +{"name":"Боевой молот","refName":"Battle Hammer","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U1IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/7a42346f2b/OneHandMace5.png","w":2,"h":3} +{"name":"Боевой пластинчатый доспех","refName":"Battle Lamellar","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[297,341],"ev":[297,341]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyNEEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/7e1c29aacf/BodyStr4A.png","w":2,"h":3} +{"name":"Доспех воина","refName":"Battle Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[412,474]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/c62bd1159e/BodyStr2B.png","w":2,"h":3} +{"name":"Боевой меч","refName":"Battle Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/38536bcafb/OneHandSword5.png","w":2,"h":3} +{"name":"Карта базара","refName":"Bazaar Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/bo5223u.jpg"}} +{"name":"Карта пляжа","refName":"Beach Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/qZNQGdD.jpg"}} +{"name":"Булава исполина","refName":"Behemoth Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U5IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f2a493ef7a/OneHandMace9.png","w":2,"h":3} +{"name":"Карта колокольни","refName":"Belfry Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/7zjdJvN.jpg"}} +{"name":"Сфера Бестиария","refName":"Bestiary Orb","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJFbXB0eSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/023527ca4e/BestiaryOrbEmpty.png"} +{"name":"Скарабей Бестиария","refName":"Bestiary Scarab","namespace":"ITEM","tradeTag":"bestiary-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJCZWFzdHMiLCJzY2FsZSI6MX1d/a13711c8ed/LesserScarabBeasts.png"} +{"name":"Скарабей Бестиария удвоения","refName":"Bestiary Scarab of Duplicating","namespace":"ITEM","tradeTag":"bestiary-scarab-of-duplicating","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiQmVhc3RzIiwic2NhbGUiOjF9XQ/09caa391c6/GreaterScarabBeasts.png"} +{"name":"Скарабей Бестиария стаи","refName":"Bestiary Scarab of the Herd","namespace":"ITEM","tradeTag":"bestiary-scarab-of-the-herd","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJCZWFzdHMiLCJzY2FsZSI6MX1d/0d5c9d2d30/NormalScarabBeasts.png"} +{"name":"Скарабей Бестиария тёмной вороны","refName":"Bestiary Scarab of the Shadowed Crow","namespace":"ITEM","tradeTag":"bestiary-scarab-of-the-shadowed-crow","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkJlYXN0cyIsInNjYWxlIjoxfV0/c8a03d1108/Tier4ScarabBeasts.png"} +{"name":"Скарабей Предательства","refName":"Betrayal Scarab","namespace":"ITEM","tradeTag":"betrayal-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJCZXRyYXlhbCIsInNjYWxlIjoxfV0/d53970be47/LesserScarabBetrayal.png"} +{"name":"Скарабей Предательства разведки","refName":"Betrayal Scarab of Intelligence","namespace":"ITEM","tradeTag":"betrayal-scarab-of-intelligence","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJCZXRyYXlhbCIsInNjYWxlIjoxfV0/3e4a843098/NormalScarabBetrayal.png"} +{"name":"Скарабей Предательства увековечения","refName":"Betrayal Scarab of Perpetuation","namespace":"ITEM","tradeTag":"betrayal-scarab-of-perpetuation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkJldHJheWFsIiwic2NhbGUiOjF9XQ/4290457e94/Tier4ScarabBetrayal.png"} +{"name":"Скарабей Предательства подкреплений","refName":"Betrayal Scarab of Reinforcements","namespace":"ITEM","tradeTag":"betrayal-scarab-of-reinforcements","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiQmV0cmF5YWwiLCJzY2FsZSI6MX1d/7dd831f857/GreaterScarabBetrayal.png"} +{"name":"Скарабей Иномирья","refName":"Beyond Scarab","namespace":"ITEM","tradeTag":"beyond-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJCZXlvbmQiLCJzY2FsZSI6MX1d/28f0c03cf7/LesserScarabBeyond.png"} +{"name":"Скарабей Иномирья осквернения","refName":"Beyond Scarab of Corruption","namespace":"ITEM","tradeTag":"beyond-scarab-of-corruption","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiQmV5b25kIiwic2NhbGUiOjF9XQ/a7736e43ae/GreaterScarabBeyond.png"} +{"name":"Скарабей Иномирья кровопотери","refName":"Beyond Scarab of Haemophilia","namespace":"ITEM","tradeTag":"beyond-scarab-of-haemophilia","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJCZXlvbmQiLCJzY2FsZSI6MX1d/6d3487e108/NormalScarabBeyond.png"} +{"name":"Скарабей Иномирья возрождения","refName":"Beyond Scarab of Resurgence","namespace":"ITEM","tradeTag":"beyond-scarab-of-resurgence","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRHcmVhdGVyU2NhcmFiQmV5b25kIiwic2NhbGUiOjF9XQ/4e3cafe44b/AltGreaterScarabBeyond.png"} +{"name":"Скарабей Иномирья вторжения","refName":"Beyond Scarab of the Invasion","namespace":"ITEM","tradeTag":"beyond-scarab-of-the-invasion","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkJleW9uZCIsInNjYWxlIjoxfV0/a1d0b3e27b/Tier4ScarabBeyond.png"} +{"name":"Осколок сплетения","refName":"Binding Shard","namespace":"ITEM","tradeTag":"binding-shard","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmluZGluZ1NoYXJkIiwic2NhbGUiOjF9XQ/569d09ac86/BindingShard.png"} +{"name":"Висмутовый флакон","refName":"Bismuth Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvYmlzbXV0aCIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MSwiZmkiOnRydWV9XQ/d8294b3822/bismuth.png","h":2} +{"name":"Талисман чёрной пасти","refName":"Black Maw Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbldoaXRlMyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a0b3d42186/TalismanWhite3.png"} +{"name":"Чёрное масло","refName":"Black Oil","namespace":"ITEM","tradeTag":"black-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9CbGFja09pbCIsInNjYWxlIjoxfV0/ce6830b309/BlackOil.png"} +{"name":"Кузнечная сфера Делириума","refName":"Blacksmith's Delirium Orb","namespace":"ITEM","tradeTag":"blacksmiths-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJXZWFwb25zIiwic2NhbGUiOjF9XQ/eaa6f85f6c/DeliriumOrbWeapons.png"} +{"name":"Точильный камень","refName":"Blacksmith's Whetstone","namespace":"ITEM","tradeTag":"whetstone","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lXZWFwb25RdWFsaXR5Iiwic2NhbGUiOjF9XQ/c9cd72719e/CurrencyWeaponQuality.png"} +{"name":"Булава с пластинами","refName":"Bladed Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U2IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/a2a18837d4/OneHandMace6.png","w":2,"h":3} +{"name":"Богохульник","refName":"Blasphemer","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0dlb2ZyaUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/c8c02e1c54/GeofriCorpse.png","w":3,"h":2} +{"name":"Проклинающий клинок","refName":"Blasting Blade","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL0hlaXN0VHdvSGFuZFN3b3JkIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/9757ea88b2/HeistTwoHandSword.png","w":2,"h":4} +{"name":"Колчан пылающих стрел","refName":"Blazing Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJGaXJlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/0537b8437d/QuiverFire.png","w":2,"h":3} +{"name":"Пылающий фрагмент","refName":"Blazing Fragment","namespace":"ITEM","tradeTag":"blazing-fragment","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyQm9zc0tleVNlYXJpbmdFeGFyY2giLCJzY2FsZSI6MX1d/cc2f3bce1b/UberBossKeySearingExarch.png"} +{"name":"Благодатная сфера","refName":"Blessed Orb","namespace":"ITEM","tradeTag":"blessed","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lJbXBsaWNpdE1vZCIsInNjYWxlIjoxfV0/48e700cc20/CurrencyImplicitMod.png"} +{"name":"Благословение Чаюлы","refName":"Blessing of Chayula","namespace":"ITEM","tradeTag":"blessing-chayula","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFVwZ3JhZGVyQ2hhb3MiLCJzY2FsZSI6MX1d/45e8da717e/BreachUpgraderChaos.png"} +{"name":"Благословение Иш","refName":"Blessing of Esh","namespace":"ITEM","tradeTag":"blessing-esh","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFVwZ3JhZGVyTGlnaHRuaW5nIiwic2NhbGUiOjF9XQ/3d1db83ad2/BreachUpgraderLightning.png"} +{"name":"Благословение Тул","refName":"Blessing of Tul","namespace":"ITEM","tradeTag":"blessing-tul","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFVwZ3JhZGVyQ29sZCIsInNjYWxlIjoxfV0/3573fedbf3/BreachUpgraderCold.png"} +{"name":"Благословение Уул-Нетол","refName":"Blessing of Uul-Netol","namespace":"ITEM","tradeTag":"blessing-uul-netol","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFVwZ3JhZGVyUGh5c2ljYWwiLCJzY2FsZSI6MX1d/f230a19a13/BreachUpgraderPhysical.png"} +{"name":"Благословение Ксофа","refName":"Blessing of Xoph","namespace":"ITEM","tradeTag":"blessing-xoph","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFVwZ3JhZGVyRmlyZSIsInNjYWxlIjoxfV0/16a58db13d/BreachUpgraderFire.png"} +{"name":"Скарабей Скверны","refName":"Blight Scarab","namespace":"ITEM","tradeTag":"blight-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJCbGlnaHQiLCJzY2FsZSI6MX1d/401222e4f4/LesserScarabBlight.png"} +{"name":"Скарабей Скверны цветения","refName":"Blight Scarab of Blooming","namespace":"ITEM","tradeTag":"blight-scarab-of-blooming","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkJsaWdodCIsInNjYWxlIjoxfV0/7ecd3dcebc/Tier4ScarabBlight.png"} +{"name":"Скарабей Скверны щедрости","refName":"Blight Scarab of Bounty","namespace":"ITEM","tradeTag":"blight-scarab-of-bounty","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJCbGlnaHQiLCJzY2FsZSI6MX1d/de78905e90/NormalScarabBlight.png"} +{"name":"Скарабей Скверны воодушевления","refName":"Blight Scarab of Invigoration","namespace":"ITEM","tradeTag":"blight-scarab-of-invigoration","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRUaWVyNFNjYXJhYkJsaWdodCIsInNjYWxlIjoxfV0/34e07da01c/AltTier4ScarabBlight.png"} +{"name":"Скарабей Скверны сердцевины","refName":"Blight Scarab of the Blightheart","namespace":"ITEM","tradeTag":"blight-scarab-of-the-blightheart","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiQmxpZ2h0Iiwic2NhbGUiOjF9XQ/d0aa6a6d55/GreaterScarabBlight.png"} +{"name":"Blight-ravaged Map","refName":"Blight-ravaged Map","namespace":"ITEM","icon":"https://i.imgur.com/FpyXU1v.png"} +{"name":"Заражённая сфера Делириума","refName":"Blighted Delirium Orb","namespace":"ITEM","tradeTag":"blighted-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJCbGlnaHQiLCJzY2FsZSI6MX1d/e65965e8bd/DeliriumOrbBlight.png"} +{"name":"Заражённый инкубатор","refName":"Blighted Incubator","namespace":"ITEM","tradeTag":"blighted-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQmxpZ2h0Iiwic2NhbGUiOjF9XQ/0f1872598d/IncubationBlight.png"} +{"name":"Blighted Map","refName":"Blighted Map","namespace":"ITEM","icon":"https://i.imgur.com/CRmwRkA.png"} +{"name":"Заражённый доклад разведки","refName":"Blighted Scouting Report","namespace":"ITEM","tradeTag":"blighted-scouting-report","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png"} +{"name":"Ослепитель","refName":"Blinder","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/1d5586ea56/Claw5.png","w":2,"h":2} +{"name":"Корона метели","refName":"Blizzard Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[185,212],"es":[38,43]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludFIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/9da7af13c1/HelmetDexIntR.png","w":2,"h":2} +{"name":"Кровавый демон","refName":"Blood Demon","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0hlbGxzY2FwZURlbW9uQm9zc0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/9bcd7bb5b8/HellscapeDemonBossCorpse.png","w":3,"h":2} +{"name":"Кровавый камзол","refName":"Blood Raiment","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[436,501],"es":[73,84]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/95329b265f/BodyDexInt1C.png","w":2,"h":3} +{"name":"Микстура из кровавой живицы","refName":"Blood Sap Tincture","namespace":"ITEM","craftable":{"category":"Tincture"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL0JsZWVkU2FwIiwidyI6MSwiaCI6Miwic2NhbGUiOjF9XQ/853d2bf5b5/BleedSap.png","h":2} +{"name":"Багряный скипетр","refName":"Blood Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/35e149f5cf/scepter6.png","w":2,"h":3} +{"name":"Наполненный кровью сосуд","refName":"Blood-filled Vessel","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUml0dWFsL0Jsb29kU29ha2VkRWZmaWd5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1adc81c853/BloodSoakedEffigy.png"} +{"name":"Окровавленное ископаемое","refName":"Bloodstained Fossil","namespace":"ITEM","tradeTag":"bloodstained-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvQmxvb2RzdGFpbmVkRm9zc2lsIiwic2NhbGUiOjF9XQ/91236983e9/BloodstainedFossil.png"} +{"name":"Амулет с голубой жемчужиной","refName":"Blue Pearl Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9CbHVlUGVhcmxBbXVsZXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e71aeafbd3/BluePearlAmulet.png"} +{"name":"Чертёж: Бункер","refName":"Blueprint: Bunker","namespace":"ITEM","craftable":{"category":"Heist Blueprint"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/03e0a85e57/BlueprintNotApproved.png"} +{"name":"Чертёж: Лаборатория","refName":"Blueprint: Laboratory","namespace":"ITEM","craftable":{"category":"Heist Blueprint"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/fd4cd3685e/BlueprintNotApproved3.png"} +{"name":"Чертёж: Особняк","refName":"Blueprint: Mansion","namespace":"ITEM","craftable":{"category":"Heist Blueprint"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQ5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/c6b8f5dbc2/BlueprintNotApproved9.png"} +{"name":"Чертёж: Запретная библиотека","refName":"Blueprint: Prohibited Library","namespace":"ITEM","craftable":{"category":"Heist Blueprint"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQ1IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/78c1f7c667/BlueprintNotApproved5.png"} +{"name":"Чертёж: Референтура","refName":"Blueprint: Records Office","namespace":"ITEM","craftable":{"category":"Heist Blueprint"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQ4IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/cc90ce9113/BlueprintNotApproved8.png"} +{"name":"Чертёж: Хранилище","refName":"Blueprint: Repository","namespace":"ITEM","craftable":{"category":"Heist Blueprint"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQ0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2705c5829f/BlueprintNotApproved4.png"} +{"name":"Чертёж: Притон контрабандистов","refName":"Blueprint: Smuggler's Den","namespace":"ITEM","craftable":{"category":"Heist Blueprint"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/cbd577605e/BlueprintNotApproved2.png"} +{"name":"Чертёж: Тоннели","refName":"Blueprint: Tunnels","namespace":"ITEM","craftable":{"category":"Heist Blueprint"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQ2IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f2e3a9ec0f/BlueprintNotApproved6.png"} +{"name":"Чертёж: Подполье","refName":"Blueprint: Underbelly","namespace":"ITEM","craftable":{"category":"Heist Blueprint"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQ3IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/bafd718e24/BlueprintNotApproved7.png"} +{"name":"Колчан промысловых стрел","refName":"Blunt Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJCbHVudCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/435539df0f/QuiverBlunt.png","w":2,"h":3} +{"name":"Часть колчана промысловых стрел","refName":"Blunt Arrow Quiver Piece","namespace":"ITEM","craftable":{"category":"Unique Fragment","uniqueOnly":true},"icon":"","w":1,"h":2} +{"name":"Накопитель грубой силы","refName":"Blunt Force Condenser","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvSGVpc3RUd29IYW5kTWFjZSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/ecc9c2724b/HeistTwoHandMace.png","w":2,"h":4} +{"name":"Абордажный топор","refName":"Boarding Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlMyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/126bb32028/OneHandAxe3.png","w":2,"h":3} +{"name":"Карта трясины","refName":"Bog Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/cPWmdWr.jpg"}} +{"name":"Костяной доспех","refName":"Bone Armour","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[194,233],"es":[41,49]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50NEMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/99efce2041/BodyDexInt4C.png","w":2,"h":3} +{"name":"Костяной лук","refName":"Bone Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/6642f8922a/Bow6.png","w":2,"h":4} +{"name":"Обруч с костью","refName":"Bone Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[36,40]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/6edb78065a/HelmetInt5.png","w":2,"h":2} +{"name":"Карта гробницы","refName":"Bone Crypt Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/NVVVCOt.jpg"}} +{"name":"Костяной шлем","refName":"Bone Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[197,227],"es":[40,46]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0JvbmVIZWxtIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/81dc21096f/BoneHelm.png","w":2,"h":2} +{"name":"Костяное кольцо","refName":"Bone Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQm9uZVJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4ed569fff9/BoneRing.png"} +{"name":"Щит духа из костей","refName":"Bone Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[15,19]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f0b78ea97c/ShieldInt3.png","w":2,"h":2} +{"name":"Талисман костешипа","refName":"Bonespire Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbldoaXRlNyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d1c13039a9/TalismanWhite7.png"} +{"name":"Грохочущая булава","refName":"Boom Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvSGVpc3RPbmVIYW5kTWFjZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/48ff9d9c4c/HeistOneHandMace.png","w":2,"h":3} +{"name":"Засапожный клинок","refName":"Boot Blade","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjUiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/3431875aaf/Dagger5.png","h":3} +{"name":"Засапожный нож","refName":"Boot Knife","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjUiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/3431875aaf/Dagger5.png","h":3} +{"name":"Микстура из северной древесины","refName":"Borealwood Tincture","namespace":"ITEM","craftable":{"category":"Tincture"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL0ZyZWV6ZVNhcCIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/3d546137f5/FreezeSap.png","h":2} +{"name":"Связующее ископаемое","refName":"Bound Fossil","namespace":"ITEM","tradeTag":"bound-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUmVzb25hdGluZ0Zvc3NpbCIsInNjYWxlIjoxfV0/9db0326ecc/ResonatingFossil.png"} +{"name":"Руна Единства","refName":"Bound Rune","namespace":"ITEM","tradeTag":"bound-rune","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2V0dGxlcnMvVmlsbGFnZVJ1bmUzIiwic2NhbGUiOjF9XQ/7e7fa2cc52/VillageRune3.png"} +{"name":"Руна Щедрости","refName":"Bounty Rune","namespace":"ITEM","tradeTag":"bounty-rune","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2V0dGxlcnMvVmlsbGFnZVJ1bmU2Iiwic2NhbGUiOjF9XQ/2eed968220/VillageRune6.png"} +{"name":"Карта колючей долины","refName":"Bramble Valley Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/1HM5ro5.jpg"}} +{"name":"Каплевидный щит с символом","refName":"Branded Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[186,208],"es":[38,43]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/996436dc6d/ShieldStrInt2.png","w":2,"h":3} +{"name":"Латунный молот","refName":"Brass Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U2IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/a114ad5617/TwoHandMace6.png","w":2,"h":4} +{"name":"Бронзовый щит духа","refName":"Brass Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[35,40]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/404ef29c87/ShieldInt6.png","w":2,"h":2} +{"name":"Кольцо Разлома","refName":"Breach Ring","namespace":"ITEM","craftable":{"category":"Ring","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQnJlYWNoUmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c21b912df7/BreachRing.png"} +{"name":"Скарабей Разлома","refName":"Breach Scarab","namespace":"ITEM","tradeTag":"breach-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJCcmVhY2giLCJzY2FsZSI6MX1d/769139d13b/LesserScarabBreach.png"} +{"name":"Скарабей Разлома владений","refName":"Breach Scarab of Lordship","namespace":"ITEM","tradeTag":"breach-scarab-of-lordship","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiQnJlYWNoIiwic2NhbGUiOjF9XQ/b129897f73/GreaterScarabBreach.png"} +{"name":"Скарабей Разлома резонирующего каскада","refName":"Breach Scarab of Resonant Cascade","namespace":"ITEM","tradeTag":"breach-scarab-of-resonant-cascade","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRUaWVyNFNjYXJhYkJyZWFjaCIsInNjYWxlIjoxfV0/d6fe5cdce6/AltTier4ScarabBreach.png"} +{"name":"Скарабей Разлома ловушек","refName":"Breach Scarab of Snares","namespace":"ITEM","tradeTag":"breach-scarab-of-snares","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkJyZWFjaCIsInNjYWxlIjoxfV0/2e4da41035/Tier4ScarabBreach.png"} +{"name":"Скарабей Разлома расщепления","refName":"Breach Scarab of Splintering","namespace":"ITEM","tradeTag":"breach-scarab-of-splintering","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRHcmVhdGVyU2NhcmFiQnJlYWNoIiwic2NhbGUiOjF9XQ/99f8bb0c06/AltGreaterScarabBreach.png"} +{"name":"Скарабей Разлома мечтателя","refName":"Breach Scarab of the Dreamer","namespace":"ITEM","tradeTag":"breach-scarab-of-the-dreamer","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJCcmVhY2giLCJzY2FsZSI6MX1d/d8bc60711f/NormalScarabBreach.png"} +{"name":"Талисман ребролома","refName":"Breakrib Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbldoaXRlMSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8f8a4eaa88/TalismanWhite1.png"} +{"name":"Серные сапоги","refName":"Brimstone Treads","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[236,271]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SaXR1YWxTdHJCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/fa0ce420ed/RitualStrBoots.png","w":2,"h":2} +{"name":"Плотничий топор","refName":"Broad Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/9cdefe9de4/OneHandAxe5.png","w":2,"h":3} +{"name":"Широкий меч","refName":"Broad Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/936e00e3e6/OneHandSword4.png","w":2,"h":3} +{"name":"Колчан охотничьих стрел","refName":"Broadhead Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJCcm9hZGhlYWQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5265402022/QuiverBroadhead.png","w":2,"h":3} +{"name":"Бронзовые перчатки","refName":"Bronze Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[77,96]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyMyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f5896830bf/GlovesStr3.png","w":2,"h":2} +{"name":"Бронзовые латы","refName":"Bronze Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[373,429]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/ca9e30f668/BodyStr1B.png","w":2,"h":3} +{"name":"Бронзовый скипетр","refName":"Bronze Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyMyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/366212755a/scepter3.png","w":2,"h":3} +{"name":"Бронзовый ростовой щит","refName":"Bronze Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[290,324]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/ee43ed9cee/ShieldStr5.png","w":2,"h":4} +{"name":"Бронзовые ботинки","refName":"Bronzescale Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[55,63],"ev":[55,63]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3418ad050e/BootsStrDex3.png","w":2,"h":2} +{"name":"Чешуйчатые бронзовые перчатки","refName":"Bronzescale Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[50,62],"ev":[50,62]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyRGV4MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/01471b423e/GlovesStrDex3.png","w":2,"h":2} +{"name":"Кожаный ростовой щит","refName":"Buckskin Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[177,209]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8d8c4e161f/ShieldStr3.png","w":2,"h":4} +{"name":"Шерстяной полукафтан","refName":"Buckskin Tunic","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[176,221]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/57409a1844/BodyDex1B.png","w":2,"h":3} +{"name":"Карта погребальных камер","refName":"Burial Chambers Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/Wp5GF44.jpg"}} +{"name":"Погребальный медальон","refName":"Burial Medallion","namespace":"ITEM","tradeTag":"burial-medallion","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXhwZWRpdGlvbi9EYW5uaWdSZXJvbGxDdXJyZW5jeSIsInNjYWxlIjoxfV0/58eed604a2/DannigRerollCurrency.png"} +{"name":"Полированная шпага","refName":"Burnished Foil","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjMiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/11f4a8b0d0/Rapier3.png","h":4} +{"name":"Воронёный колючий щит","refName":"Burnished Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[62,73],"es":[13,16]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/53a98ddeac/ShieldDexInt4.png","w":2,"h":2} +{"name":"Высвобождающее ожерелье","refName":"Burst Band","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQnVyc3RCYW5kTWFnaWNTdG9uZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/01e87b79d4/BurstBandMagicStone.png","w":2,"h":2} +{"name":"Топор мясника","refName":"Butcher Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/9cdefe9de4/OneHandAxe5.png","w":2,"h":3} +{"name":"Нож мясника","refName":"Butcher Knife","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjMiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/fbc18a1b4f/Dagger3.png","h":3} +{"name":"Меч мясника","refName":"Butcher Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDIiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/fcaf050e0f/TwoHandSword2.png","w":2,"h":4} +{"name":"Наряд мистика","refName":"Cabalist Regalia","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[75,88]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e6eb42b23a/BodyStrDexInt1C.png","w":2,"h":3} +{"name":"Карта клетки","refName":"Cage Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/r20ygP0.jpg"}} +{"name":"Карта кальдеры","refName":"Caldera Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/dAFd7cQ.jpg"}} +{"name":"Жезл зова","refName":"Calling Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9Db252b2tpbmdXYW5kIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/fc10997b84/ConvokingWand.png","h":3} +{"name":"Маска равнодушия","refName":"Callous Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[122,137],"es":[25,28]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/49d89bccdb/HelmetDexInt7.png","w":2,"h":2} +{"name":"Часть маски равнодушия","refName":"Callous Mask Piece","namespace":"ITEM","craftable":{"category":"Unique Fragment","uniqueOnly":true},"icon":"","w":1,"h":1} +{"name":"Подсвечник","refName":"Candlestick Relic","namespace":"ITEM","craftable":{"category":"Sanctum Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljQmFzZTF4NCIsInciOjEsImgiOjQsInNjYWxlIjoxfV0/160debfe1b/RelicBase1x4.png","h":4} +{"name":"Карта ущелья","refName":"Canyon Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/8BSd3du.jpg"}} +{"name":"Стержень способности","refName":"Capacity Rod","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGVpc3RXYXJTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/c9454891da/HeistWarStaff.png","w":2,"h":4} +{"name":"Своенравный меч духа","refName":"Capricious Spiritblade","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0hlaXN0T25lSGFuZFN3b3JkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/6b56c4c406/HeistOneHandSword.png","w":2,"h":3} +{"name":"Карта остова","refName":"Carcass Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/bANX02j.jpg"}} +{"name":"Червлёный круглый щит","refName":"Cardinal Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[209,240],"ev":[209,240]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/f50adf0569/ShieldStrDex4.png","w":2,"h":3} +{"name":"Кровожадный доспех","refName":"Carnal Armour","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[353,388],"es":[103,113]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50NEMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/99efce2041/BodyDexInt4C.png","w":2,"h":3} +{"name":"Сапоги крови","refName":"Carnal Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[99,117],"es":[20,24]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/bad1ba72df/BootsDexInt4.png","w":2,"h":2} +{"name":"Перчатки крови","refName":"Carnal Mitts","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[90,101],"es":[19,21]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/060b6ea395/GlovesDexInt3.png","w":2,"h":2} +{"name":"Кровавый скипетр","refName":"Carnal Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/6b9c62e4c3/scepter7.png","w":2,"h":3} +{"name":"Резец картографа","refName":"Cartographer's Chisel","namespace":"ITEM","tradeTag":"chisel","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lNYXBRdWFsaXR5Iiwic2NhbGUiOjF9XQ/0246313b99/CurrencyMapQuality.png"} +{"name":"Картографическая сфера Делириума","refName":"Cartographer's Delirium Orb","namespace":"ITEM","tradeTag":"cartographers-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJNYXBzIiwic2NhbGUiOjF9XQ/0e2be34e49/DeliriumOrbMaps.png"} +{"name":"Инкубатор картографа","refName":"Cartographer's Incubator","namespace":"ITEM","tradeTag":"cartographers-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uTWFwcyIsInNjYWxlIjoxfV0/3d07c20be0/IncubationMaps.png"} +{"name":"Скарабей картографии осквернения","refName":"Cartography Scarab of Corruption","namespace":"ITEM","tradeTag":"cartography-scarab-of-corruption","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiTWFwcyIsInNjYWxlIjoxfV0/7c589dbe02/GreaterScarabMaps.png"} +{"name":"Скарабей картографии эскалации","refName":"Cartography Scarab of Escalation","namespace":"ITEM","tradeTag":"cartography-scarab-of-escalation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJNYXBzIiwic2NhbGUiOjF9XQ/e7d11bcc5b/LesserScarabMaps.png"} +{"name":"Скарабей картографии риска","refName":"Cartography Scarab of Risk","namespace":"ITEM","tradeTag":"cartography-scarab-of-risk","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJNYXBzIiwic2NhbGUiOjF9XQ/b41df1ff07/NormalScarabMaps.png"} +{"name":"Скарабей картографии неповторимости","refName":"Cartography Scarab of Singularity","namespace":"ITEM","tradeTag":"cartography-scarab-of-singularity","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHROb3JtYWxTY2FyYWJNYXBzIiwic2NhbGUiOjF9XQ/41c689bbef/AltNormalScarabMaps.png"} +{"name":"Скарабей картографии множеств","refName":"Cartography Scarab of the Multitude","namespace":"ITEM","tradeTag":"cartography-scarab-of-the-multitude","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHROb3JtYWxTY2FyYWJNYXBzIiwic2NhbGUiOjF9XQ/41c689bbef/AltNormalScarabMaps.png"} +{"name":"Оструганный жезл","refName":"Carved Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kMyIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/6322bd53f5/Wand3.png","h":3} +{"name":"Разделочный нож","refName":"Carving Knife","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjMiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/fbc18a1b4f/Dagger3.png","h":3} +{"name":"Карта развалин замка","refName":"Castle Ruins Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/aFT1RlG.jpg"}} +{"name":"Кошачья лапа","refName":"Cat's Paw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0a98c635d3/Claw4.png","w":2,"h":2} +{"name":"Кедровый ростовой щит","refName":"Cedar Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[94,113]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d95a5bfcf0/ShieldStr4.png","w":2,"h":4} +{"name":"Небесный инкубатор бронника","refName":"Celestial Armoursmith's Incubator","namespace":"ITEM","tradeTag":"celestial-armoursmiths-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQXJtb3VyIiwic2NhbGUiOjF9XQ/8cd6cd0531/IncubationArmour.png"} +{"name":"Небесный инкубатор кузнеца","refName":"Celestial Blacksmith's Incubator","namespace":"ITEM","tradeTag":"celestial-blacksmiths-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uV2VhcG9ucyIsInNjYWxlIjoxfV0/4c2bb7d249/IncubationWeapons.png"} +{"name":"Небесный инкубатор ювелира","refName":"Celestial Jeweller's Incubator","namespace":"ITEM","tradeTag":"celestial-jewellers-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uVHJpbmtldHMiLCJzY2FsZSI6MX1d/74b5811007/IncubationTrinkets.png"} +{"name":"Карта камер","refName":"Cells Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/ks4E8Cs.jpg"}} +{"name":"Карта погоста","refName":"Cemetery Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/j9OPnMf.jpg"}} +{"name":"Курительница","refName":"Censer Relic","namespace":"ITEM","craftable":{"category":"Sanctum Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljQmFzZTF4MiIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/95a2dfd60b/RelicBase1x2.png","h":2} +{"name":"Церемониальный топор","refName":"Ceremonial Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/5bbf95c3b4/OneHandAxe7.png","w":2,"h":3} +{"name":"Церемониальный каплевидный щит","refName":"Ceremonial Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[77,89],"es":[16,19]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/92beb951d5/ShieldStrInt5.png","w":2,"h":3} +{"name":"Церемониальная булава","refName":"Ceremonial Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U3IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/84402507d1/OneHandMace7.png","w":2,"h":3} +{"name":"Кольцо с аквамарином","refName":"Cerulean Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQ2VydWxlYW5SaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/c5fe3e533c/CeruleanRing.png"} +{"name":"Цепочка","refName":"Chain Belt","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdDIiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/3a6ece4e40/Belt2.png","w":2} +{"name":"Кольчужные башмаки","refName":"Chain Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[11,15],"es":[3,5]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckludDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0519faf993/BootsStrInt1.png","w":2,"h":2} +{"name":"Кольчужные перчатки","refName":"Chain Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[14,20],"es":[4,6]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RySW50MSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/5d45f8da8f/GlovesStrInt1.png","w":2,"h":2} +{"name":"Хауберг","refName":"Chain Hauberk","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[281,314],"es":[58,65]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5a1804c81b/BodyStrInt2C.png","w":2,"h":3} +{"name":"Кольчужный дублет","refName":"Chainmail Doublet","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[119,140],"es":[27,31]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2cea5723dd/BodyStrInt2B.png","w":2,"h":3} +{"name":"Кольчужный жилет с пластинами","refName":"Chainmail Tunic","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[48,63],"es":[13,17]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MkEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9f12486d42/BodyStrInt2A.png","w":2,"h":3} +{"name":"Кольчужный жилет","refName":"Chainmail Vest","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[27,38],"es":[9,13]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MUEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5cc435caff/BodyStrInt1A.png","w":2,"h":3} +{"name":"Испытующая сфера Делириума","refName":"Challenging Delirium Orb","namespace":"ITEM","tradeTag":"challenging-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJVbHRpbWF0dW0iLCJzY2FsZSI6MX1d/3e820d9958/DeliriumOrbUltimatum.png"} +{"name":"Испытующий инкубатор","refName":"Challenging Incubator","namespace":"ITEM","tradeTag":"challenging-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uVWx0aW1hdHVtIiwic2NhbGUiOjF9XQ/ea6dbbb27e/IncubationUltimatum.png"} +{"name":"Каплевидный щит триумфатора","refName":"Champion Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[215,247],"es":[44,50]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8d673b3a1f/ShieldStrInt4.png","w":2,"h":3} +{"name":"Карта канала","refName":"Channel Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/qNjNqND.jpg"}} +{"name":"Сфера хаоса","refName":"Chaos Orb","namespace":"ITEM","tradeTag":"chaos","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lSZXJvbGxSYXJlIiwic2NhbGUiOjF9XQ/46a2347805/CurrencyRerollRare.png"} +{"name":"Осколок хаоса","refName":"Chaos Shard","namespace":"ITEM","tradeTag":"chaos-shard","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2hhb3NTaGFyZCIsInNjYWxlIjoxfV0/db7041e193/ChaosShard.png"} +{"name":"Меч Чарана","refName":"Charan's Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1RoZUdvZGRlc3NVbmxlYXNoZWQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/37ecd7541b/TheGoddessUnleashed.png","w":2,"h":3} +{"name":"Карта усадьбы","refName":"Chateau Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/9K7IyE3.jpg"}} +{"name":"Камень Разлома Чаюлы","refName":"Chayula's Breachstone","namespace":"ITEM","tradeTag":"chayulas-breachstone","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaEZyYWdtZW50c0NoYW9zIiwic2NhbGUiOjF9XQ/4c99b7dd49/BreachFragmentsChaos.png"} +{"name":"Безупречный камень Разлома Чаюлы","refName":"Chayula's Flawless Breachstone","namespace":"ITEM","tradeTag":"chayulas-flawless-breachstone","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0NoYXl1bGFzRmxhd2xlc3NCcmVhY2hzdG9uZSIsInNjYWxlIjoxfV0/daa631766b/ChayulasFlawlessBreachstone.png"} +{"name":"Рассекатель рёбер","refName":"Chest Splitter","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/01f0e16494/OneHandAxe6.png","w":2,"h":3} +{"name":"Нагрудник","refName":"Chestplate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[68,89]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMkEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/33a8fe3c3f/BodyStr2A.png","w":2,"h":3} +{"name":"Ботинки из чешуи химеры","refName":"Chimerascale Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[176,203],"ev":[176,203]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/d5b5430d4c/BootsStrDex2.png","w":2,"h":2} +{"name":"Перчатки из чешуи химеры","refName":"Chimerascale Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[176,176],"ev":[176,176]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyRGV4MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0bb5dd1e50/GlovesStrDex2.png","w":2,"h":2} +{"name":"Мелодичный щит духа","refName":"Chiming Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[42,48]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4bf20f79d1/ShieldInt5.png","w":2,"h":2} +{"name":"Цветная сфера","refName":"Chromatic Orb","namespace":"ITEM","tradeTag":"chrome","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lSZXJvbGxTb2NrZXRDb2xvdXJzIiwic2NhbGUiOjF9XQ/19c8ddae20/CurrencyRerollSocketColours.png"} +{"name":"Хроники Ацоатля","refName":"Chronicle of Atzoatl","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UZW1wbGVNYXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9be10cc6b3/TempleMap.png"} +{"name":"Талисман кокона","refName":"Chrysalis Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9OZXdUYWxpc21hbjIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/bf3f4938da/NewTalisman2.png"} +{"name":"Осадный лук","refName":"Citadel Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/c064c479fa/Bow3.png","w":2,"h":4} +{"name":"Карта цитадели","refName":"Citadel Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{}} +{"name":"Амулет с цитрином","refName":"Citrine Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9DaXRyaW5lQW11bGV0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/95804f838b/CitrineAmulet.png"} +{"name":"Карта городской площади","refName":"City Square Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/dpMpwdP.jpg"}} +{"name":"Калиги","refName":"Clasped Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[50,57],"es":[11,12]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0c80b843d0/BootsDexInt3.png","w":2,"h":2} +{"name":"Перчатки оков","refName":"Clasped Mitts","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[57,65],"es":[12,14]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/060b6ea395/GlovesDexInt3.png","w":2,"h":2} +{"name":"Прозрачное масло","refName":"Clear Oil","namespace":"ITEM","tradeTag":"clear-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9DbGVhck9pbCIsInNjYWxlIjoxfV0/0a7f30cc3b/ClearOil.png"} +{"name":"Секач","refName":"Cleaver","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/451ba2cadb/OneHandAxe4.png","w":2,"h":3} +{"name":"Закрытый шлем","refName":"Close Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[130,150]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0a862ec4b2/HelmetStr4.png","w":2,"h":2} +{"name":"Матерчатый пояс","refName":"Cloth Belt","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdDQiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/fce1729448/Belt4.png","w":2} +{"name":"Часть матерчатого пояса","refName":"Cloth Belt Piece","namespace":"ITEM","craftable":{"category":"Unique Fragment","uniqueOnly":true},"icon":""} +{"name":"Башмаки облачного шёпота","refName":"Cloudwhisper Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[68,78]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SaXR1YWxEZXhCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7172feff67/RitualDexBoots.png","w":2,"h":2} +{"name":"Сжимающий талисман","refName":"Clutching Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbkJsYWNrMyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1cd5ee74f4/TalismanBlack3.png"} +{"name":"Кобальтовый самоцвет","refName":"Cobalt Jewel","namespace":"ITEM","craftable":{"category":"Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL2Jhc2ljaW50IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/510013aec2/basicint.png"} +{"name":"Ларец","refName":"Coffer Relic","namespace":"ITEM","craftable":{"category":"Sanctum Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljQmFzZTJ4MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/4d7c38a2ac/RelicBase2x2.png","w":2,"h":2} +{"name":"Шестерёнчатое кольцо","refName":"Cogwork Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvSGVpc3RSaW5nMSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/23b3000b81/HeistRing1.png"} +{"name":"Кручёный посох","refName":"Coiled Staff","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY1IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/53f1a6b438/Staff5.png","w":2,"h":4} +{"name":"Кручёный жезл","refName":"Coiled Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/a28035d7c4/Wand5.png","h":3} +{"name":"Карта холодной реки","refName":"Cold River Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/ld3HPg6.jpg"}} +{"name":"Ледяной баклер","refName":"Cold-attuned Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[206,237]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0RleEhlaXN0U2hpZWxkIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/484b5bba00/DexHeistShield.png","w":2,"h":2} +{"name":"Карта колоннады","refName":"Colonnade Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/5uaNQwH.jpg"}} +{"name":"Великий флакон равновесия","refName":"Colossal Hybrid Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvaHlicmlkZmxhc2sxIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/88dca03c78/hybridflask1.png","h":2} +{"name":"Великий флакон жизни","refName":"Colossal Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrNyIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/a3a05678ea/lifeflask7.png","h":2} +{"name":"Великий флакон маны","refName":"Colossal Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrNyIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/da16d2d8c3/manaflask7.png","h":2} +{"name":"Массивный ростовой щит","refName":"Colossal Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[522,601]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d883ad1ca2/ShieldStr6.png","w":2,"h":4} +{"name":"Карта колизея","refName":"Colosseum Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/LYXkjl8.jpg"}} +{"name":"Доспех поединщика","refName":"Colosseum Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[491,589]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/429eee131d/BodyStr2C.png","w":2,"h":3} +{"name":"Громадная колотушка","refName":"Colossus Mallet","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2UzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/5e536c19aa/TwoHandMace3.png","w":2,"h":4} +{"name":"Бригандина командира","refName":"Commander's Brigandine","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[275,325],"ev":[275,325]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/60a6d7b58c/BodyStrDex2C.png","w":2,"h":3} +{"name":"Составной лук","refName":"Composite Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d7cd8910cc/Bow4.png","w":2,"h":4} +{"name":"Составное кольцо","refName":"Composite Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvSGVpc3RSaW5nMlNpbHZlciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/717c7a2c50/HeistRing2Silver.png"} +{"name":"Сложный лук","refName":"Compound Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d7cd8910cc/Bow4.png","w":2,"h":4} +{"name":"Латунный колючий щит","refName":"Compound Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[122,144],"es":[25,30]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/36d311e1dc/ShieldDexInt3.png","w":2,"h":2} +{"name":"Подробный доклад разведки","refName":"Comprehensive Scouting Report","namespace":"ITEM","tradeTag":"comprehensive-scouting-report","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png"} +{"name":"Проводящая цепочка","refName":"Conduit Line","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29uZHVpdExpbmVNYWdpY1N0b25lIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/a7c30a541b/ConduitLineMagicStone.png","w":2,"h":2} +{"name":"Кабассет","refName":"Cone Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[38,50]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/fdb5370ecb/HelmetStr2.png","w":2,"h":2} +{"name":"Накопляющий жезл","refName":"Congregator Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9IZWlzdFdhbmQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/4499b00066/HeistWand.png","h":3} +{"name":"Сапоги чародея","refName":"Conjurer Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[36,42]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5589419509/BootsInt4.png","w":2,"h":2} +{"name":"Перчатки чародея","refName":"Conjurer Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[37,44]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/484e9bd879/GlovesInt4.png","w":2,"h":2} +{"name":"Халат чародея","refName":"Conjurer's Vestment","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[94,105]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9ea39de510/BodyInt1C.png","w":2,"h":3} +{"name":"Шлем завоевателя","refName":"Conqueror's Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[501,576]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjEwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/b1e95342a8/HelmetStr10.png","w":2,"h":2} +{"name":"Кольчуга завоевателя","refName":"Conquest Chainmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[387,445],"es":[79,91]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2cea5723dd/BodyStrInt2B.png","w":2,"h":3} +{"name":"Шлем покорителя","refName":"Conquest Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[308,355],"ev":[308,355]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0884b27765/HelmetStrDex7.png","w":2,"h":2} +{"name":"Пластинчатый доспех покорителя","refName":"Conquest Lamellar","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[723,831],"ev":[723,831]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyNEEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MSwic2VhcmluZyI6dHJ1ZSwidGFuZ2xlZCI6dHJ1ZX1d/b732d8618c/BodyStr4A.png","w":2,"h":3} +{"name":"Карта зимнего сада","refName":"Conservatory Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/VfVUpKT.jpg"}} +{"name":"Контракт: Бункер","refName":"Contract: Bunker","namespace":"ITEM","craftable":{"category":"Heist Contract"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8262f2ca0e/ContractItem.png"} +{"name":"Контракт: Лаборатория","refName":"Contract: Laboratory","namespace":"ITEM","craftable":{"category":"Heist Contract"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtMyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8838f281b6/ContractItem3.png"} +{"name":"Контракт: Особняк","refName":"Contract: Mansion","namespace":"ITEM","craftable":{"category":"Heist Contract"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtOSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/24220667d4/ContractItem9.png"} +{"name":"Контракт: Запретная библиотека","refName":"Contract: Prohibited Library","namespace":"ITEM","craftable":{"category":"Heist Contract"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtNSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fd1a9eb91f/ContractItem5.png"} +{"name":"Контракт: Референтура","refName":"Contract: Records Office","namespace":"ITEM","craftable":{"category":"Heist Contract"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtOCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d28f52922a/ContractItem8.png"} +{"name":"Контракт: Хранилище","refName":"Contract: Repository","namespace":"ITEM","craftable":{"category":"Heist Contract"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtNCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d555dbf890/ContractItem4.png"} +{"name":"Контракт: Притон контрабандистов","refName":"Contract: Smuggler's Den","namespace":"ITEM","craftable":{"category":"Heist Contract"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtMiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f755c71433/ContractItem2.png"} +{"name":"Контракт: Тоннели","refName":"Contract: Tunnels","namespace":"ITEM","craftable":{"category":"Heist Contract"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtNiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fda76bd516/ContractItem6.png"} +{"name":"Контракт: Подполье","refName":"Contract: Underbelly","namespace":"ITEM","craftable":{"category":"Heist Contract"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtNyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/aa8fd5bde5/ContractItem7.png"} +{"name":"Жезл вызова","refName":"Convening Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9Db252b2tpbmdXYW5kIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/fc10997b84/ConvokingWand.png","h":3} +{"name":"Жезл призыва","refName":"Convoking Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9Db252b2tpbmdXYW5kIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/fc10997b84/ConvokingWand.png","h":3} +{"name":"Медный крис","refName":"Copper Kris","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjYiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/5dcee0019c/Dagger6.png","h":3} +{"name":"Медные латы","refName":"Copper Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[176,221]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/ca9e30f668/BodyStr1B.png","w":2,"h":3} +{"name":"Медный меч","refName":"Copper Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDIiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/606dae9ce9/OneHandSword2.png","h":3} +{"name":"Медный ростовой щит","refName":"Copper Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[151,173]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/ee43ed9cee/ShieldStr5.png","w":2,"h":4} +{"name":"Амулет с кораллом","refName":"Coral Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/fe19a0a686/Amulet2.png"} +{"name":"Кольцо с кораллом","refName":"Coral Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6e12710920/Ring2.png"} +{"name":"Карта коралловых руин","refName":"Coral Ruins Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/YI4jsqt.jpg"}} +{"name":"Карта сердца","refName":"Core Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/SCCsOxV.jpg"}} +{"name":"Кожаный доспех короны","refName":"Coronal Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[491,579]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4M0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e30de2c7a6/BodyDex3C.png","w":2,"h":3} +{"name":"Венечный молот","refName":"Coronal Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U4IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/d7f01f7a37/TwoHandMace8.png","w":2,"h":4} +{"name":"Ржавый клинок","refName":"Corroded Blade","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDEiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/1ba03c111f/TwoHandSword1.png","h":4} +{"name":"Пористое ископаемое","refName":"Corroded Fossil","namespace":"ITEM","tradeTag":"corroded-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvQ29ycm9kZWRGb3NzaWwiLCJzY2FsZSI6MX1d/7578bf6bab/CorrodedFossil.png"} +{"name":"Ржавый ростовой щит","refName":"Corroded Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[36,47]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjIiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/b2c0ccc044/ShieldStr2.png","w":2,"h":4} +{"name":"Рифлёный баклер","refName":"Corrugated Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[227,272]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/60c6c83831/ShieldDex4.png","w":2,"h":2} +{"name":"Пиратский тесак","refName":"Corsair Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDMiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/0aa55ff7a1/OneHandSword3.png","h":3} +{"name":"Корундовый флакон","refName":"Corundum Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvQW50aVN0dW5GbGFzayIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/4df2dac26a/AntiStunFlask.png","h":2} +{"name":"Космический фрагмент","refName":"Cosmic Fragment","namespace":"ITEM","tradeTag":"cosmic-fragment","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyQm9zc0tleVNoYXBlciIsInNjYWxlIjoxfV0/719e96a82a/UberBossKeyShaper.png"} +{"name":"Ключ от Космического Реликвария","refName":"Cosmic Reliquary Key","namespace":"ITEM","tradeTag":"cosmic-reliquary-key","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TaGFwZXJGb2lsIiwic2NhbGUiOjF9XQ/5c88f39bc3/ShaperFoil.png"} +{"name":"Меч кокотки","refName":"Courtesan Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjkiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/e409e11584/Rapier9.png","h":4} +{"name":"Карта здания суда","refName":"Courthouse Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/zg9qN4K.jpg"}} +{"name":"Карта подворья","refName":"Courtyard Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/rRYcncq.jpg"}} +{"name":"Карта бухты","refName":"Coves Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/NB7i3Mu.jpg"}} +{"name":"Трескучая булава","refName":"Crack Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvSGVpc3RPbmVIYW5kTWFjZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/48ff9d9c4c/HeistOneHandMace.png","w":2,"h":3} +{"name":"Карта кратера","refName":"Crater Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/ffRs5qU.jpg"}} +{"name":"Серповидный осколок","refName":"Crescent Splinter","namespace":"ITEM","tradeTag":"crescent-splinter","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXRsYXMvTWF2ZW5LZXlGcmFnbWVudCIsInNjYWxlIjoxfV0/014d46c630/MavenKeyFragment.png"} +{"name":"Посох с полумесяцем","refName":"Crescent Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY4IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/edbdbaa9ba/Staff8.png","w":2,"h":4} +{"name":"Ростовой щит с гербом","refName":"Crested Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[293,337]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/80f9f1abea/ShieldStr7.png","w":2,"h":4} +{"name":"Багровый самоцвет","refName":"Crimson Jewel","namespace":"ITEM","craftable":{"category":"Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL2Jhc2ljc3RyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8129ab1f4d/basicstr.png"} +{"name":"Алое масло","refName":"Crimson Oil","namespace":"ITEM","tradeTag":"crimson-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9Dcmltc29uT2lsIiwic2NhbGUiOjF9XQ/5e5f62ac0e/CrimsonOil.png"} +{"name":"Багряный камзол","refName":"Crimson Raiment","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[264,304],"es":[55,63]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/95329b265f/BodyDexInt1C.png","w":2,"h":3} +{"name":"Багряный круглый щит","refName":"Crimson Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[155,178],"ev":[155,178]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/f50adf0569/ShieldStrDex4.png","w":2,"h":3} +{"name":"Карта кровавого храма","refName":"Crimson Temple Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/4731HPd.jpg"}} +{"name":"Карта кровавой общины","refName":"Crimson Township Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/OOugfbm.jpg"}} +{"name":"Грубый лук","refName":"Crude Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/50dd0fd6ac/Bow1.png","w":2,"h":3} +{"name":"Грубый чуящий амулет","refName":"Crude Sensing Charm","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ3J1ZGVTZW5zaW5nQ2hhcm0iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/207cf61525/CrudeSensingCharm.png","w":2,"h":2} +{"name":"Грубый оберег","refName":"Crude Ward","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ3J1ZGVXYXJkIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/0308021b23/CrudeWard.png","w":2,"h":2} +{"name":"Сапоги ревнителя веры","refName":"Crusader Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[121,139],"es":[25,28]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e75ade3184/BootsStrInt3.png","w":2,"h":2} +{"name":"Баклер подвижника","refName":"Crusader Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[385,442]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5a38d58259/ShieldDex5.png","w":2,"h":2} +{"name":"Кольчуга святого воина","refName":"Crusader Chainmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[237,266],"es":[50,55]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2cea5723dd/BodyStrInt2B.png","w":2,"h":3} +{"name":"Перчатки поборника","refName":"Crusader Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[121,139],"es":[25,28]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RySW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7adc65bac6/GlovesStrInt3.png","w":2,"h":2} +{"name":"Шлем подвижника","refName":"Crusader Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[85,95],"es":[18,20]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f6a9c01543/HelmetStrInt4.png","w":2,"h":2} +{"name":"Доспех поборника","refName":"Crusader Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[601,691]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/c62bd1159e/BodyStr2B.png","w":2,"h":3} +{"name":"Сфера возвышения крестоносца","refName":"Crusader's Exalted Orb","namespace":"ITEM","tradeTag":"crusaders-exalted-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5mbHVlbmNlIEV4YWx0cy9DcnVzYWRlck9yYiIsInNjYWxlIjoxfV0/8b48230188/CrusaderOrb.png"} +{"name":"Усилитель разрушения","refName":"Crushing Force Magnifier","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvSGVpc3RUd29IYW5kTWFjZSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/ecc9c2724b/HeistTwoHandMace.png","w":2,"h":4} +{"name":"Могильный доспех","refName":"Crypt Armour","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[308,369],"es":[63,76]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50NEMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/99efce2041/BodyDexInt4C.png","w":2,"h":3} +{"name":"Кристальный пояс","refName":"Crystal Belt","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQ3J5c3RhbEJlbHQiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/1e9174ec8f/CrystalBelt.png","w":2} +{"name":"Карта кристальной шахты","refName":"Crystal Ore Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/ff3kcZI.jpg"}} +{"name":"Кристальный скипетр","refName":"Crystal Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/c986bafb78/scepter4.png","w":2,"h":3} +{"name":"Кристальный жезл","refName":"Crystal Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNCIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/b505ad92e7/Wand4.png","h":3} +{"name":"Карта проклятого склепа","refName":"Cursed Crypt Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/hz8a9Ea.jpg"}} +{"name":"Кривой клинок","refName":"Curved Blade","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDgiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/decb6a0e86/TwoHandSword8.png","w":2,"h":4} +{"name":"Абордажная сабля","refName":"Cutlass","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDMiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/0aa55ff7a1/OneHandSword3.png","h":3} +{"name":"Облачение головореза","refName":"Cutthroat's Garb","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[530,594]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8f1d1cfaa9/BodyDex2C.png","w":2,"h":3} +{"name":"Топор-кинжал","refName":"Dagger Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlOCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/ba1d6734bb/TwoHandAxe8.png","w":2,"h":4} +{"name":"Танцующий меч","refName":"Dancing Sword","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0FuaW1hdGVkV2VhcG9uQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/2720caa383/AnimatedWeaponCorpse.png","w":3,"h":2} +{"name":"Карта мрачного леса","refName":"Dark Forest Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/ayyUVDP.jpg"}} +{"name":"Тёмная марионетка","refName":"Dark Marionette","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JvYm90TWFubmVxdWluQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/2ad85223a4/RobotMannequinCorpse.png","w":3,"h":2} +{"name":"Тёмный жнец","refName":"Dark Reaper","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JlYXBlckJvc3NDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/d6c81d82f9/ReaperBossCorpse.png","w":3,"h":2} +{"name":"Сапоги из тёмной стали","refName":"Darksteel Treads","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[164,189]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SaXR1YWxTdHJCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/fa0ce420ed/RitualStrBoots.png","w":2,"h":2} +{"name":"Прогнивший скипетр","refName":"Darkwood Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyMiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/e3e72321e0/scepter2.png","w":2,"h":3} +{"name":"Талисман смерторука","refName":"Deadhand Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbldoaXRlNCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5c187331d9/TalismanWhite4.png"} +{"name":"Оглушающая сущность злобы","refName":"Deafening Essence of Anger","namespace":"ITEM","tradeTag":"deafening-essence-of-anger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9BbmdlcjciLCJzY2FsZSI6MX1d/4af31038e6/Anger7.png"} +{"name":"Оглушающая сущность горя","refName":"Deafening Essence of Anguish","namespace":"ITEM","tradeTag":"deafening-essence-of-anguish","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Bbmd1aXNoNyIsInNjYWxlIjoxfV0/b7bb2fa059/Anguish7.png"} +{"name":"Оглушающая сущность презрения","refName":"Deafening Essence of Contempt","namespace":"ITEM","tradeTag":"deafening-essence-of-contempt","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Db250ZW1wdDciLCJzY2FsZSI6MX1d/b8be130237/Contempt7.png"} +{"name":"Оглушающая сущность сомнения","refName":"Deafening Essence of Doubt","namespace":"ITEM","tradeTag":"deafening-essence-of-doubt","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Eb3VidDciLCJzY2FsZSI6MX1d/663b299868/Doubt7.png"} +{"name":"Оглушающая сущность жути","refName":"Deafening Essence of Dread","namespace":"ITEM","tradeTag":"deafening-essence-of-dread","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9EcmVhZDciLCJzY2FsZSI6MX1d/5f5d022b78/Dread7.png"} +{"name":"Оглушающая сущность зависти","refName":"Deafening Essence of Envy","namespace":"ITEM","tradeTag":"deafening-essence-of-envy","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9FbnZ5NyIsInNjYWxlIjoxfV0/83c7610bca/Envy7.png"} +{"name":"Оглушающая сущность страха","refName":"Deafening Essence of Fear","namespace":"ITEM","tradeTag":"deafening-essence-of-fear","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9GZWFyNyIsInNjYWxlIjoxfV0/0b0dcd4320/Fear7.png"} +{"name":"Оглушающая сущность жадности","refName":"Deafening Essence of Greed","namespace":"ITEM","tradeTag":"deafening-essence-of-greed","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVlZDciLCJzY2FsZSI6MX1d/9d7e9a3b11/Greed7.png"} +{"name":"Оглушающая сущность ненависти","refName":"Deafening Essence of Hatred","namespace":"ITEM","tradeTag":"deafening-essence-of-hatred","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9IYXRyZWQ3Iiwic2NhbGUiOjF9XQ/a69c5c06cc/Hatred7.png"} +{"name":"Оглушающая сущность отвращения","refName":"Deafening Essence of Loathing","namespace":"ITEM","tradeTag":"deafening-essence-of-loathing","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Mb2F0aGluZzciLCJzY2FsZSI6MX1d/67a47325e8/Loathing7.png"} +{"name":"Оглушающая сущность тоски","refName":"Deafening Essence of Misery","namespace":"ITEM","tradeTag":"deafening-essence-of-misery","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9NaXNlcnk3Iiwic2NhbGUiOjF9XQ/a86e9a3359/Misery7.png"} +{"name":"Оглушающая сущность ярости","refName":"Deafening Essence of Rage","namespace":"ITEM","tradeTag":"deafening-essence-of-rage","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9SYWdlNyIsInNjYWxlIjoxfV0/6567f7bb78/Rage7.png"} +{"name":"Оглушающая сущность насмешки","refName":"Deafening Essence of Scorn","namespace":"ITEM","tradeTag":"deafening-essence-of-scorn","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TY29ybjciLCJzY2FsZSI6MX1d/ac4ec5f480/Scorn7.png"} +{"name":"Оглушающая сущность печали","refName":"Deafening Essence of Sorrow","namespace":"ITEM","tradeTag":"deafening-essence-of-sorrow","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Tb3Jyb3c3Iiwic2NhbGUiOjF9XQ/db24a92da3/Sorrow7.png"} +{"name":"Оглушающая сущность неприязни","refName":"Deafening Essence of Spite","namespace":"ITEM","tradeTag":"deafening-essence-of-spite","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TcGl0ZTciLCJzY2FsZSI6MX1d/c26296fbeb/Spite7.png"} +{"name":"Оглушающая сущность страдания","refName":"Deafening Essence of Suffering","namespace":"ITEM","tradeTag":"deafening-essence-of-suffering","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TdWZmZXJpbmc3Iiwic2NhbGUiOjF9XQ/e48c276341/Suffering7.png"} +{"name":"Оглушающая сущность мучения","refName":"Deafening Essence of Torment","namespace":"ITEM","tradeTag":"deafening-essence-of-torment","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Ub3JtZW50NyIsInNjYWxlIjoxfV0/4c9779fe15/Torment7.png"} +{"name":"Оглушающая сущность скорби","refName":"Deafening Essence of Woe","namespace":"ITEM","tradeTag":"deafening-essence-of-woe","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Xb2U3Iiwic2NhbGUiOjF9XQ/6bb5af5409/Woe7.png"} +{"name":"Оглушающая сущность гнева","refName":"Deafening Essence of Wrath","namespace":"ITEM","tradeTag":"deafening-essence-of-wrath","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9XcmF0aDciLCJzY2FsZSI6MX1d/c2d8ad83fc/Wrath7.png"} +{"name":"Оглушающая сущность усердия","refName":"Deafening Essence of Zeal","namespace":"ITEM","tradeTag":"deafening-essence-of-zeal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9aZWFsNyIsInNjYWxlIjoxfV0/27ff3b63ea/Zeal7.png"} +{"name":"Лук смерти","refName":"Death Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzgiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8d079c60ed/Bow8.png","w":2,"h":4} +{"name":"Разлагающий фрагмент","refName":"Decaying Fragment","namespace":"ITEM","tradeTag":"decaying-fragment","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyQm9zc0tleUVsZGVyIiwic2NhbGUiOjF9XQ/42d1e96e4e/UberBossKeyElder.png"} +{"name":"Ключ от Разлагающегося Реликвария","refName":"Decaying Reliquary Key","namespace":"ITEM","tradeTag":"decaying-reliquary-key","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FbGRlckZvaWwiLCJzY2FsZSI6MX1d/cbb24273c1/ElderFoil.png"} +{"name":"Лук палача","refName":"Decimation Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzgiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8d079c60ed/Bow8.png","w":2,"h":4} +{"name":"Украшенный топор","refName":"Decorative Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/5bbf95c3b4/OneHandAxe7.png","w":2,"h":3} +{"name":"Мощный лук","refName":"Decurve Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/c064c479fa/Bow3.png","w":2,"h":4} +{"name":"Посвящение богине","refName":"Dedication to the Goddess","namespace":"ITEM","tradeTag":"offer-dedication","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9MYWJ5cmludGhIYXJ2ZXN0SW5mdXNlZDIiLCJzY2FsZSI6MX1d/31d582aac1/LabyrinthHarvestInfused2.png"} +{"name":"Талисман глубинника","refName":"Deep One Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbldoaXRlNSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fbd475431a/TalismanWhite5.png"} +{"name":"Юфтевые ботинки","refName":"Deerskin Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[74,92]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f2e9a30d4a/BootsDex3.png","w":2,"h":2} +{"name":"Юфтевые перчатки","refName":"Deerskin Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[71,88]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/445d038f1d/GlovesDex3.png","w":2,"h":2} +{"name":"Карта осквернённого собора","refName":"Defiled Cathedral Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/rSqf91M.jpg"}} +{"name":"Проворное ископаемое","refName":"Deft Fossil","namespace":"ITEM","tradeTag":"deft-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvRW5jaGFudGVkRm9zc2lsIiwic2NhbGUiOjF9XQ/299ee9bcb8/EnchantedFossil.png"} +{"name":"Маска богоубийцы","refName":"Deicide Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[190,219],"es":[47,54]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDExIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/ff51fc2e8c/HelmetDexInt11.png","w":2,"h":2} +{"name":"Бредовый доклад разведки","refName":"Delirious Scouting Report","namespace":"ITEM","tradeTag":"delirious-scouting-report","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png"} +{"name":"Скарабей Делириума","refName":"Delirium Scarab","namespace":"ITEM","tradeTag":"delirium-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJEZWxpcml1bSIsInNjYWxlIjoxfV0/0b8b887e88/LesserScarabDelirium.png"} +{"name":"Скарабей Делириума галлюцинаций","refName":"Delirium Scarab of Delusions","namespace":"ITEM","tradeTag":"delirium-scarab-of-delusions","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkRlbGlyaXVtIiwic2NhbGUiOjF9XQ/aa8241bb6c/Tier4ScarabDelirium.png"} +{"name":"Скарабей Делириума мании","refName":"Delirium Scarab of Mania","namespace":"ITEM","tradeTag":"delirium-scarab-of-mania","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJEZWxpcml1bSIsInNjYWxlIjoxfV0/9de6ce65c5/NormalScarabDelirium.png"} +{"name":"Скарабей Делириума неврозов","refName":"Delirium Scarab of Neuroses","namespace":"ITEM","tradeTag":"delirium-scarab-of-neuroses","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRHcmVhdGVyU2NhcmFiRGVsaXJpdW0iLCJzY2FsZSI6MX1d/5690762715/AltGreaterScarabDelirium.png"} +{"name":"Скарабей Делириума паранойи","refName":"Delirium Scarab of Paranoia","namespace":"ITEM","tradeTag":"delirium-scarab-of-paranoia","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiRGVsaXJpdW0iLCJzY2FsZSI6MX1d/e6730494ae/GreaterScarabDelirium.png"} +{"name":"Корона демона","refName":"Demon Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[122,140],"es":[25,29]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01hc2tDcm93biIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/dbad72643e/MaskCrown.png","w":2,"h":2} +{"name":"Кинжал демона","refName":"Demon Dagger","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjgiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/e0bade03f8/Dagger8.png","h":3} +{"name":"Рог демона","refName":"Demon's Horn","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kMiIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/896948eee2/Wand2.png","h":3} +{"name":"Плотное ископаемое","refName":"Dense Fossil","namespace":"ITEM","tradeTag":"dense-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvRGVuc2VGb3NzaWwiLCJzY2FsZSI6MX1d/ac39aaf3cd/DenseFossil.png"} +{"name":"Свиток дерегуляции","refName":"Deregulation Scroll","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9IYXJiaW5nZXJUb2tlbkhlbG0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ee0bd282eb/HarbingerTokenHelm.png"} +{"name":"Бригандина кочевника","refName":"Desert Brigandine","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[376,451],"ev":[376,451]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/cd52e7b841/BodyStrDex2B.png","w":2,"h":3} +{"name":"Карта пустыни","refName":"Desert Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/BcaiqlN.jpg"}} +{"name":"Карта пустынного источника","refName":"Desert Spring Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/aDop71B.jpg"}} +{"name":"Топор деспота","refName":"Despot Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/e2c34a0fb2/TwoHandAxe6.png","w":2,"h":4} +{"name":"Кожанка призвания","refName":"Destiny Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[601,721]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4M0IiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/db900972c7/BodyDex3B.png","w":2,"h":3} +{"name":"Наряд разрушителя","refName":"Destroyer Regalia","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[109,129]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e6eb42b23a/BodyStrDexInt1C.png","w":2,"h":3} +{"name":"Пожирающий фрагмент","refName":"Devouring Fragment","namespace":"ITEM","tradeTag":"devouring-fragment","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyQm9zc0tleUVhdGVyT2ZXb3JsZHMiLCJzY2FsZSI6MX1d/6022aa0897/UberBossKeyEaterOfWorlds.png"} +{"name":"Кольчуга праведника","refName":"Devout Chainmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[302,363],"es":[62,74]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50M0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/900b4f2c03/BodyStrInt3C.png","w":2,"h":3} +{"name":"Алмазный флакон","refName":"Diamond Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvZGlhbW9uZCIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/98bf48b8dd/diamond.png","h":2} +{"name":"Кольцо с бриллиантом","refName":"Diamond Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvRGlhbW9uZFJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d07e3dfbb6/DiamondRing.png"} +{"name":"Карта развалин","refName":"Dig Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/E8Z9yPz.jpg"}} +{"name":"Жуткая морда","refName":"Dire Pelt","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[431,496]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/549bc86dd9/HelmetDex4.png","w":2,"h":2} +{"name":"Осуждающий топор","refName":"Disapprobation Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9IZWlzdE9uZWhhbmRBeGUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5ba95d3930/HeistOnehandAxe.png","w":2,"h":3} +{"name":"Скарабей предсказания расхищения","refName":"Divination Scarab of Pilfering","namespace":"ITEM","tradeTag":"divination-scarab-of-pilfering","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiRGl2aW5hdGlvbiIsInNjYWxlIjoxfV0/73ab11f6bd/GreaterScarabDivination.png"} +{"name":"Скарабей предсказания изобилия","refName":"Divination Scarab of Plenty","namespace":"ITEM","tradeTag":"divination-scarab-of-plenty","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJEaXZpbmF0aW9uIiwic2NhbGUiOjF9XQ/acb5d1754a/NormalScarabDivination.png"} +{"name":"Скарабей предсказания тлетворности","refName":"Divination Scarab of The Cloister","namespace":"ITEM","tradeTag":"divination-scarab-of-the-cloister","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJEaXZpbmF0aW9uIiwic2NhbGUiOjF9XQ/20ff060a8d/LesserScarabDivination.png"} +{"name":"Корона божества","refName":"Divine Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[355,409],"es":[71,82]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/6ad7c513a8/HelmetStrInt9.png","w":2,"h":2} +{"name":"Божественный флакон жизни","refName":"Divine Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrMTEiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/54ba3c70ae/lifeflask11.png","h":2} +{"name":"Божественный флакон маны","refName":"Divine Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrMTEiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/9313e55ff4/manaflask11.png","h":2} +{"name":"Божественная сфера","refName":"Divine Orb","namespace":"ITEM","tradeTag":"divine","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lNb2RWYWx1ZXMiLCJzY2FsZSI6MX1d/ec48896769/CurrencyModValues.png"} +{"name":"Божественный сосуд","refName":"Divine Vessel","namespace":"ITEM","tradeTag":"divine-vessel","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TaW5GbGFza0VtcHR5Iiwic2NhbGUiOjF9XQ/3a2d49608a/SinFlaskEmpty.png"} +{"name":"Предсказательная сфера Делириума","refName":"Diviner's Delirium Orb","namespace":"ITEM","tradeTag":"diviners-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJEaXZpbmF0aW9uQ2FyZHMiLCJzY2FsZSI6MX1d/9ab37abc47/DeliriumOrbDivinationCards.png"} +{"name":"Инкубатор предсказателя","refName":"Diviner's Incubator","namespace":"ITEM","tradeTag":"diviners-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRGl2aW5hdGlvbkNhcmRzIiwic2NhbGUiOjF9XQ/e14c3ef7f9/IncubationDivinationCards.png"} +{"name":"Скарабей Господства","refName":"Domination Scarab","namespace":"ITEM","tradeTag":"domination-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJEb21pbmF0aW9uIiwic2NhbGUiOjF9XQ/76cedf832c/LesserScarabDomination.png"} +{"name":"Скарабей Господства призраков","refName":"Domination Scarab of Apparitions","namespace":"ITEM","tradeTag":"domination-scarab-of-apparitions","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJEb21pbmF0aW9uIiwic2NhbGUiOjF9XQ/c907d44dec/NormalScarabDomination.png"} +{"name":"Скарабей Господства эволюции","refName":"Domination Scarab of Evolution","namespace":"ITEM","tradeTag":"domination-scarab-of-evolution","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiRG9taW5hdGlvbiIsInNjYWxlIjoxfV0/8913234164/GreaterScarabDomination.png"} +{"name":"Скарабей Господства ужасов","refName":"Domination Scarab of Terrors","namespace":"ITEM","tradeTag":"domination-scarab-of-terrors","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkRvbWluYXRpb24iLCJzY2FsZSI6MX1d/0d55e72414/Tier4ScarabDomination.png"} +{"name":"Секира","refName":"Double Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/4b3fbfcd65/TwoHandAxe5.png","w":2,"h":4} +{"name":"Двойной коготь","refName":"Double Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3OSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/84eab7e6ba/Claw9.png","w":2,"h":2} +{"name":"Булава дракона","refName":"Dragon Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U5IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f2a493ef7a/OneHandMace9.png","w":2,"h":3} +{"name":"Рапира из кости дракона","refName":"Dragonbone Rapier","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjIiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/481efcada5/Rapier2.png","h":4} +{"name":"Ботинки из чешуи дракона","refName":"Dragonscale Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[121,139],"ev":[121,139]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3418ad050e/BootsStrDex3.png","w":2,"h":2} +{"name":"Дублет из чешуи дракона","refName":"Dragonscale Doublet","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[313,351],"ev":[313,351]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/d9b2da2bce/BodyStrDex1B.png","w":2,"h":3} +{"name":"Перчатки из чешуи дракона","refName":"Dragonscale Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[121,139],"ev":[121,139]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyRGV4MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/01471b423e/GlovesStrDex3.png","w":2,"h":2} +{"name":"Сабля драгуна","refName":"Dragoon Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjkiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/e409e11584/Rapier9.png","h":4} +{"name":"Ужасающий молот","refName":"Dread Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U3IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/d7e632f004/TwoHandMace7.png","w":2,"h":4} +{"name":"Булава видений","refName":"Dream Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U4IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/57786131bb/OneHandMace8.png","w":2,"h":3} +{"name":"Тапочки погони за мечтой","refName":"Dreamquest Slippers","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[50,57]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SaXR1YWxJbnRCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/dfe31cc493/RitualIntBoots.png","w":2,"h":2} +{"name":"Дубинка из плавника","refName":"Driftwood Club","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2UxIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/e51d4ef68d/OneHandMace1.png","h":3} +{"name":"Дубина из плавника","refName":"Driftwood Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2UxIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/5977f27334/TwoHandMace1.png","w":2,"h":4} +{"name":"Скипетр из плавника","refName":"Driftwood Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyMSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/4b2438446d/scepter1.png","h":3} +{"name":"Колючий щит из плавника","refName":"Driftwood Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[46,60],"es":[11,15]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/db9355404e/ShieldDexInt2.png","w":2,"h":2} +{"name":"Жезл из плавника","refName":"Driftwood Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kMSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/899dabeaf1/Wand1.png","h":3} +{"name":"Герб Дрокса","refName":"Drox's Crest","namespace":"ITEM","tradeTag":"droxs-crest","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9XYXJsb3JkRnJhZ21lbnQiLCJzY2FsZSI6MX1d/3d735a8303/WarlordFragment.png"} +{"name":"Друидский алхимик","refName":"Druidic Alchemist","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Rhd2hvYU1lZGljaW5lV29tYW5Db3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/a446a2f4d0/TawhoaMedicineWomanCorpse.png","w":3,"h":2} +{"name":"Карта высохшего моря","refName":"Dry Sea Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/JGfVZsB.jpg"}} +{"name":"Карта дюн","refName":"Dunes Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/88Gm4iq.jpg"}} +{"name":"Карта подземелья","refName":"Dungeon Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/GRI8xIf.jpg"}} +{"name":"Закатный клинок","refName":"Dusk Blade","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDgiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/406f7aec97/OneHandSword8.png","w":2,"h":3} +{"name":"Тапочки закатного шага","refName":"Duskwalk Slippers","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[15,18]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SaXR1YWxJbnRCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/dfe31cc493/RitualIntBoots.png","w":2,"h":2} +{"name":"Орлиный коготь","refName":"Eagle Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3OCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/3cc3260177/Claw8.png","w":2,"h":2} +{"name":"Эбеновый ростовой щит","refName":"Ebony Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[357,411]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d95a5bfcf0/ShieldStr4.png","w":2,"h":4} +{"name":"Посох затмения","refName":"Eclipse Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY4IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/edbdbaa9ba/Staff8.png","w":2,"h":4} +{"name":"Щучьи ботинки","refName":"Eelskin Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[129,148]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/37d9d4d590/BootsDex2.png","w":2,"h":2} +{"name":"Щучьи перчатки","refName":"Eelskin Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[125,148]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/b051b2c9f5/GlovesDex2.png","w":2,"h":2} +{"name":"Щучьи подошвы","refName":"Eelskin Sole","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRWVsc2tpblNvbGUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/38cd92718b/EelskinSole.png","w":2,"h":2} +{"name":"Щучий полукафтан","refName":"Eelskin Tunic","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[373,429]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/57409a1844/BodyDex1B.png","w":2,"h":3} +{"name":"Воспоминание Эйнара","refName":"Einhar's Memory","namespace":"ITEM","craftable":{"category":"Memory Line"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWVtb3J5TGluZS9FaW5oYXJNZW1vcnlJdGVtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5e4c7a8f89/EinharMemoryItem.png"} +{"name":"Меч старейшины","refName":"Elder Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDYiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/c12083d6b6/OneHandSword6.png","w":2,"h":3} +{"name":"Мистическая сфера хаоса","refName":"Eldritch Chaos Orb","namespace":"ITEM","tradeTag":"eldritch-chaos-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRWxkcml0Y2hDaGFvc09yYiIsInNjYWxlIjoxfV0/98091fc653/EldritchChaosOrb.png"} +{"name":"Мистическая сфера возвышения","refName":"Eldritch Exalted Orb","namespace":"ITEM","tradeTag":"eldritch-exalted-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRWxkcml0Y2hFeGFsdGVkT3JiIiwic2NhbGUiOjF9XQ/2da131e652/EldritchExaltedOrb.png"} +{"name":"Жуткий глаз","refName":"Eldritch Eye","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0VsZGVyVGVudGFjbGVNaW5pb25MYXJnZUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/19b67ee9a1/ElderTentacleMinionLargeCorpse.png","w":3,"h":2} +{"name":"Мистический инкубатор","refName":"Eldritch Incubator","namespace":"ITEM","tradeTag":"eldritch-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uTWFwcyIsInNjYWxlIjoxfV0/3d07c20be0/IncubationMaps.png"} +{"name":"Мистическая сфера отмены","refName":"Eldritch Orb of Annulment","namespace":"ITEM","tradeTag":"eldritch-orb-of-annulment","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRWxkcml0Y2hBbm51bG1lbnRPcmIiLCJzY2FsZSI6MX1d/b58add03eb/EldritchAnnulmentOrb.png"} +{"name":"Свиток электрошока","refName":"Electroshock Scroll","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9IYXJiaW5nZXJUb2tlblN3b3JkIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/e3cec18702/HarbingerTokenSword.png"} +{"name":"Элегантная шпага","refName":"Elegant Foil","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjciLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/97d714e903/Rapier7.png","h":4} +{"name":"Изящный кольчатый доспех","refName":"Elegant Ringmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[377,433],"es":[92,105]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/3247afb396/BodyStrInt1C.png","w":2,"h":3} +{"name":"Элегантный круглый щит","refName":"Elegant Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[148,170],"ev":[148,170]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/b81ab44241/ShieldStrDex5.png","w":2,"h":3} +{"name":"Элегантный меч","refName":"Elegant Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDciLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9ac21989c5/OneHandSword7.png","w":2,"h":3} +{"name":"Расшитые перчатки","refName":"Embroidered Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[25,28]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/484e9bd879/GlovesInt4.png","w":2,"h":2} +{"name":"Глянцевая брошь","refName":"Enamel Brooch","namespace":"ITEM","craftable":{"category":"Heist Brooch"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRW5hbWVsQnJvb2NoIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/0d1e9c956e/EnamelBrooch.png"} +{"name":"Стальной баклер","refName":"Enameled Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[311,349]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/10a005f978/ShieldDex3.png","w":2,"h":2} +{"name":"Зачарованный инкубатор","refName":"Enchanted Incubator","namespace":"ITEM","tradeTag":"enchanted-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uTGFieXJpbnRoIiwic2NhbGUiOjF9XQ/755a289f04/IncubationLabyrinth.png"} +{"name":"Эндотермический баклер","refName":"Endothermic Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[75,86]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0RleEhlaXN0U2hpZWxkIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/484b5bba00/DexHeistShield.png","w":2,"h":2} +{"name":"Сфера инженера","refName":"Engineer's Orb","namespace":"ITEM","tradeTag":"engineers","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRW5naW5lZXJzT3JiIiwic2NhbGUiOjF9XQ/114b671d41/EngineersOrb.png"} +{"name":"Инженерный осколок","refName":"Engineer's Shard","namespace":"ITEM","tradeTag":"engineers-shard","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRW5naW5lZXJzU2hhcmQiLCJzY2FsZSI6MX1d/9fe1384ff9/EngineersShard.png"} +{"name":"Большой меч с чеканкой","refName":"Engraved Greatsword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/828ca9e450/TwoHandSword5.png","w":2,"h":4} +{"name":"Гравированный топорик","refName":"Engraved Hatchet","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlOSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/8f1da4998f/OneHandAxe9.png","w":2,"h":3} +{"name":"Гравированный ультиматум","refName":"Engraved Ultimatum","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{}} +{"name":"Резной жезл","refName":"Engraved Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kMyIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/6322bd53f5/Wand3.png","h":3} +{"name":"Растопляющая сфера","refName":"Enkindling Orb","namespace":"ITEM","tradeTag":"enkindling-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXhwZWRpdGlvbi9GbGFza1BsYXRlIiwic2NhbGUiOjF9XQ/7c1a584a8d/FlaskPlate.png"} +{"name":"Камень Разлома Иш","refName":"Esh's Breachstone","namespace":"ITEM","tradeTag":"eshs-breachstone","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaEZyYWdtZW50c0xpZ2h0bmluZyIsInNjYWxlIjoxfV0/a281438d22/BreachFragmentsLightning.png"} +{"name":"Безупречный камень Разлома Иш","refName":"Esh's Flawless Breachstone","namespace":"ITEM","tradeTag":"eshs-flawless-breachstone","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0VzaHNGbGF3bGVzc0JyZWFjaHN0b25lIiwic2NhbGUiOjF9XQ/bd6b28f988/EshsFlawlessBreachstone.png"} +{"name":"Шпионский маскировочный набор","refName":"Espionage Disguise Kit","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvUmVnaWNpZGVEaXNndWlzZUtpdCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/e52bff7d39/RegicideDisguiseKit.png","w":2,"h":2} +{"name":"Сущность бреда","refName":"Essence of Delirium","namespace":"ITEM","tradeTag":"essence-of-delirium","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9NYWRuZXNzMSIsInNjYWxlIjoxfV0/e7a9b32a18/Madness1.png"} +{"name":"Сущность ужаса","refName":"Essence of Horror","namespace":"ITEM","tradeTag":"essence-of-horror","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Ib3Jyb3IxIiwic2NhbGUiOjF9XQ/8be6722c5e/Horror1.png"} +{"name":"Сущность истерии","refName":"Essence of Hysteria","namespace":"ITEM","tradeTag":"essence-of-hysteria","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9UZXJyb3IxIiwic2NhbGUiOjF9XQ/10ab1f6037/Terror1.png"} +{"name":"Сущность безумия","refName":"Essence of Insanity","namespace":"ITEM","tradeTag":"essence-of-insanity","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9JbnNhbml0eTEiLCJzY2FsZSI6MX1d/8086f1f3e5/Insanity1.png"} +{"name":"Скарабей Сущности","refName":"Essence Scarab","namespace":"ITEM","tradeTag":"essence-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJFc3NlbmNlIiwic2NhbGUiOjF9XQ/4c99af0610/LesserScarabEssence.png"} +{"name":"Скарабей Сузности адаптации","refName":"Essence Scarab of Adaptation","namespace":"ITEM","tradeTag":"essence-scarab-of-adaptation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRUaWVyNFNjYXJhYkVzc2VuY2UiLCJzY2FsZSI6MX1d/56560d691e/AltTier4ScarabEssence.png"} +{"name":"Скарабей Сущности восхождения","refName":"Essence Scarab of Ascent","namespace":"ITEM","tradeTag":"essence-scarab-of-ascent","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJFc3NlbmNlIiwic2NhbGUiOjF9XQ/3a091b8052/NormalScarabEssence.png"} +{"name":"Скарабей Сущности окостенения","refName":"Essence Scarab of Calcification","namespace":"ITEM","tradeTag":"essence-scarab-of-calcification","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkVzc2VuY2UiLCJzY2FsZSI6MX1d/d7e7534a07/Tier4ScarabEssence.png"} +{"name":"Скарабей Сущности стабильности","refName":"Essence Scarab of Stability","namespace":"ITEM","tradeTag":"essence-scarab-of-stability","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiRXNzZW5jZSIsInNjYWxlIjoxfV0/28e74041a5/GreaterScarabEssence.png"} +{"name":"Cвязка типовых ключей","refName":"Essential Keyring","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRXNzZW50aWFsS2V5cmluZyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/03fd96aa15/EssentialKeyring.png","w":2,"h":2} +{"name":"Короткая шпага","refName":"Estoc","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjQiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/dc28604809/Rapier4.png","h":4} +{"name":"Карта устья реки","refName":"Estuary Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/LNLcK2Z.jpg"}} +{"name":"Большой меч с травлением","refName":"Etched Greatsword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/828ca9e450/TwoHandSword5.png","w":2,"h":4} +{"name":"Травлёный топорик","refName":"Etched Hatchet","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlOSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/8f1da4998f/OneHandAxe9.png","w":2,"h":3} +{"name":"Каплевидный щит с рисунком","refName":"Etched Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[127,142],"es":[27,30]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/996436dc6d/ShieldStrInt2.png","w":2,"h":3} +{"name":"Полный шлем вечного","refName":"Eternal Burgonet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[373,429]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjExIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/d288bbe11b/HelmetStr11.png","w":2,"h":2} +{"name":"Вечный флакон жизни","refName":"Eternal Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrMTIiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/7be2c09015/lifeflask12.png","h":2} +{"name":"Вечный флакон маны","refName":"Eternal Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrMTIiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/6146902646/manaflask12.png","h":2} +{"name":"Меч вечного","refName":"Eternal Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDciLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9ac21989c5/OneHandSword7.png","w":2,"h":3} +{"name":"Стержень допустимости","refName":"Eventuality Rod","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGVpc3RXYXJTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/c9454891da/HeistWarStaff.png","w":2,"h":4} +{"name":"Сфера возвышения","refName":"Exalted Orb","namespace":"ITEM","tradeTag":"exalted","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lBZGRNb2RUb1JhcmUiLCJzY2FsZSI6MX1d/33f2656aea/CurrencyAddModToRare.png"} +{"name":"Осколок возвышения","refName":"Exalted Shard","namespace":"ITEM","tradeTag":"exalted-shard","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXhhbHRlZFNoYXJkIiwic2NhbGUiOjF9XQ/b9e4013af5/ExaltedShard.png"} +{"name":"Карта раскопок","refName":"Excavation Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/A3E80Du.jpg"}} +{"name":"Превосходный древний уголёк","refName":"Exceptional Eldritch Ember","namespace":"ITEM","tradeTag":"exceptional-eldritch-ember","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2xlYW5zaW5nRmlyZU9yYlJhbms0Iiwic2NhbGUiOjF9XQ/c2c828fa16/CleansingFireOrbRank4.png"} +{"name":"Превосходный зловещий ихор","refName":"Exceptional Eldritch Ichor","namespace":"ITEM","tradeTag":"exceptional-eldritch-ichor","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVGFuZ2xlT3JiUmFuazQiLCJzY2FsZSI6MX1d/dcf73ecd8e/TangleOrbRank4.png"} +{"name":"Истощающий щит духа","refName":"Exhausting Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[16,19]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0ludEhlaXN0U2hpZWxkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f58639d2f4/IntHeistShield.png","w":2,"h":3} +{"name":"Экзотермический ростовой щит","refName":"Exothermic Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[87,100]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0hlaXN0U2hpZWxkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/e65fb9efea/HeistShield.png","w":2,"h":3} +{"name":"Диковинные монеты","refName":"Exotic Coinage","namespace":"ITEM","tradeTag":"exotic-coinage","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXhwZWRpdGlvbi9CYXJ0ZXJSZWZyZXNoQ3VycmVuY3kiLCJzY2FsZSI6MX1d/0542d74d3c/BarterRefreshCurrency.png"} +{"name":"Журнал экспедиции","refName":"Expedition Logbook","namespace":"ITEM","craftable":{"category":"Expedition Logbook"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FeHBlZGl0aW9uQ2hyb25pY2xlMyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/2802fe605e/ExpeditionChronicle3.png"} +{"name":"Скарабей Экспедиции","refName":"Expedition Scarab","namespace":"ITEM","tradeTag":"expedition-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJFeHBlZGl0aW9uIiwic2NhbGUiOjF9XQ/fa49f53ac8/LesserScarabExpedition.png"} +{"name":"Скарабей Экспедиции археологии","refName":"Expedition Scarab of Archaeology","namespace":"ITEM","tradeTag":"expedition-scarab-of-archaeology","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkV4cGVkaXRpb24iLCJzY2FsZSI6MX1d/6bd03eec75/Tier4ScarabExpedition.png"} +{"name":"Скарабей Экспедиции поиска рун","refName":"Expedition Scarab of Runefinding","namespace":"ITEM","tradeTag":"expedition-scarab-of-runefinding","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJFeHBlZGl0aW9uIiwic2NhbGUiOjF9XQ/a751f91a8e/NormalScarabExpedition.png"} +{"name":"Скарабей Экспедиции скальда","refName":"Expedition Scarab of the Skald","namespace":"ITEM","tradeTag":"expedition-scarab-of-the-skald","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRHcmVhdGVyU2NhcmFiRXhwZWRpdGlvbiIsInNjYWxlIjoxfV0/cbeb3c974b/AltGreaterScarabExpedition.png"} +{"name":"Скарабей Экспедиции веризиевой пыли","refName":"Expedition Scarab of Verisium Powder","namespace":"ITEM","tradeTag":"expedition-scarab-of-verisium-powder","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiRXhwZWRpdGlvbiIsInNjYWxlIjoxfV0/1bf78dd20a/GreaterScarabExpedition.png"} +{"name":"Исследовательский доклад разведки","refName":"Explorer's Scouting Report","namespace":"ITEM","tradeTag":"explorers-scouting-report","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png"} +{"name":"Изысканный клинок","refName":"Exquisite Blade","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDgiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/decb6a0e86/TwoHandSword8.png","w":2,"h":4} +{"name":"Превосходный кожаный доспех","refName":"Exquisite Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[704,810]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/47360dcc4a/BodyDex1C.png","w":2,"h":3} +{"name":"Выкалыватель","refName":"Eye Gouger","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/1d5586ea56/Claw5.png","w":2,"h":2} +{"name":"Топор эзомита","refName":"Ezomyte Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/24ac93d9cd/TwoHandAxe4.png","w":2,"h":4} +{"name":"Клинок эзомита","refName":"Ezomyte Blade","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/294bd80312/TwoHandSword4.png","w":2,"h":4} +{"name":"Полный шлем эзомита","refName":"Ezomyte Burgonet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[346,381]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/b814dc309a/HelmetStr9.png","w":2,"h":2} +{"name":"Кинжал эзомита","refName":"Ezomyte Dagger","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjUiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/3431875aaf/Dagger5.png","h":3} +{"name":"Колючий щит эзомита","refName":"Ezomyte Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[181,209],"es":[37,43]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/36d311e1dc/ShieldDexInt3.png","w":2,"h":2} +{"name":"Посох эзомита","refName":"Ezomyte Staff","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY0IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/85c22bd16b/Staff4.png","w":2,"h":4} +{"name":"Ростовой щит эзомита","refName":"Ezomyte Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[412,474]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/ee43ed9cee/ShieldStr5.png","w":2,"h":4} +{"name":"Гранёное ископаемое","refName":"Faceted Fossil","namespace":"ITEM","tradeTag":"faceted-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvRmFjZXRlZEZvc3NpbCIsInNjYWxlIjoxfV0/473889cafb/FacetedFossil.png"} +{"name":"Линза награнения","refName":"Facetor's Lens","namespace":"ITEM","tradeTag":"facetors","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lHZW1FeHBlcmllbmNlIiwic2NhbGUiOjF9XQ/7011b1ed48/CurrencyGemExperience.png"} +{"name":"Карта фактории","refName":"Factory Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/zOsCvpG.jpg"}} +{"name":"Шлем веры","refName":"Faithful Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[268,308],"es":[54,62]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f6a9c01543/HelmetStrInt4.png","w":2,"h":2} +{"name":"Семейный контракт","refName":"Familial Contract","namespace":"ITEM","craftable":{"uniqueOnly":true,"category":"Heist Contract"},"icon":""} +{"name":"Вычурная шпага","refName":"Fancy Foil","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjciLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/97d714e903/Rapier7.png","h":4} +{"name":"Талисман клыкастика","refName":"Fangjaw Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbkJsYWNrNSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/48fab16b73/TalismanBlack5.png"} +{"name":"Рог фавна","refName":"Faun's Horn","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kMiIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/896948eee2/Wand2.png","h":3} +{"name":"Колчан оперённых стрел","refName":"Feathered Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9GZWF0aGVyZWRBcnJvd1F1aXZlciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/76aab0d0b0/FeatheredArrowQuiver.png","w":2,"h":3} +{"name":"Шлем фехтовальщика","refName":"Fencer Helm","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[117,134],"ev":[117,134]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/07fb25d634/HelmetStrDex6.png","w":2,"h":2} +{"name":"Дикий инкубатор","refName":"Feral Incubator","namespace":"ITEM","tradeTag":"feral-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQmVzdGlhcnkiLCJzY2FsZSI6MX1d/7c98be601d/IncubationBestiary.png"} +{"name":"Насыщенный катализатор","refName":"Fertile Catalyst","namespace":"ITEM","tradeTag":"fertile-catalyst","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL0ZlcnRpbGVDYXRhbHlzdCIsInNjYWxlIjoxfV0/74603722ac/FertileCatalyst.png"} +{"name":"Карнавальная маска","refName":"Festival Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[77,88],"es":[17,19]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/bfdfda111a/HelmetDexInt4.png","w":2,"h":2} +{"name":"Изменчивый меч духа","refName":"Fickle Spiritblade","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0hlaXN0T25lSGFuZFN3b3JkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/6b56c4c406/HeistOneHandSword.png","w":2,"h":3} +{"name":"Пластинчатый доспех","refName":"Field Lamellar","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[194,223],"ev":[194,223]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyNEEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/7e1c29aacf/BodyStr4A.png","w":2,"h":3} +{"name":"Карта полей","refName":"Fields Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/ZBYW0jj.jpg"}} +{"name":"Кинжал изверга","refName":"Fiend Dagger","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjgiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/e0bade03f8/Dagger8.png","h":3} +{"name":"Огненный людоед","refName":"Fiery Cannibal","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0ZpcmVGdXJ5Q29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/458c4ab871/FireFuryCorpse.png","w":3,"h":2} +{"name":"Прекрасная сфера Делириума","refName":"Fine Delirium Orb","namespace":"ITEM","tradeTag":"fine-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJDdXJyZW5jeSIsInNjYWxlIjoxfV0/a0ccb93233/DeliriumOrbCurrency.png"} +{"name":"Прекрасный инкубатор","refName":"Fine Incubator","namespace":"ITEM","tradeTag":"fine-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQ3VycmVuY3kiLCJzY2FsZSI6MX1d/e8a6d32623/IncubationCurrency.png"} +{"name":"Тонкая отмычка","refName":"Fine Lockpick","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRmluZUxvY2twaWNrIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/c894ea53b2/FineLockpick.png","w":2,"h":2} +{"name":"Тонкий чуящий амулет","refName":"Fine Sensing Charm","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRmluZVNlbnNpbmdDaGFybSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/5725075134/FineSensingCharm.png","w":2,"h":2} +{"name":"Мелкий оселок","refName":"Fine Sharpening Stone","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRmluZVNoYXJwZW5pbmdTdG9uZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/eee568b5c8/FineSharpeningStone.png","w":2,"h":2} +{"name":"Шёлковые митенки","refName":"Fingerless Silk Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[45,52]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRmluZ2VybGVzc1NpbGtHbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/8853f1e934/FingerlessSilkGloves.png","w":2,"h":2} +{"name":"Пихтовый круглый щит","refName":"Fir Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[29,37],"ev":[29,37]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9cccab30a2/ShieldStrDex2.png","w":2,"h":3} +{"name":"Колчан огненных стрел","refName":"Fire Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJGaXJlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/0537b8437d/QuiverFire.png","w":2,"h":3} +{"name":"Удочка","refName":"Fishing Rod","namespace":"ITEM","craftable":{"category":"Fishing Rod"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9GaXNoaW5nUm9kcy9GaXNoaW5nUm9kMSIsInciOjEsImgiOjQsInNjYWxlIjoxfV0/d2a4a8b57a/FishingRod1.png","h":4} +{"name":"Чешуйчатые перчатки","refName":"Fishscale Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[9,12],"ev":[9,12]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyRGV4MSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ba243000da/GlovesStrDex1.png","w":2,"h":2} +{"name":"Рубчатый наконечник","refName":"Flanged Arrowhead","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQXJyb3doZWFkRmxhbmdlZCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/2f2fd20710/ArrowheadFlanged.png","w":2,"h":2} +{"name":"Звездообразная дрель","refName":"Flanged Drill","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRHJpbGxBZHYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/bf2c8d3b0b/DrillAdv.png","w":2,"h":2} +{"name":"Шестопёр","refName":"Flanged Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U2IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/a2a18837d4/OneHandMace6.png","w":2,"h":3} +{"name":"Cверкающая булава","refName":"Flare Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvSGVpc3RPbmVIYW5kTWFjZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/48ff9d9c4c/HeistOneHandMace.png","w":2,"h":3} +{"name":"Вспышечный клинок","refName":"Flashfire Blade","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0hlaXN0UnVuZURhZ2dlciIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/1760d17051/HeistRuneDagger.png","h":3} +{"name":"Нож свежевателя","refName":"Flaying Knife","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjIiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/c2c0a06eec/Dagger2.png","h":3} +{"name":"Раздиратель","refName":"Fleshripper","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlOCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/ba1d6734bb/TwoHandAxe8.png","w":2,"h":4} +{"name":"Мерцающий клинок","refName":"Flickerflame Blade","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0hlaXN0UnVuZURhZ2dlciIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/1760d17051/HeistRuneDagger.png","h":3} +{"name":"Карта затопленной шахты","refName":"Flooded Mine Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/RYNfkXJ.jpg"}} +{"name":"Волнистый бацинет","refName":"Fluted Bascinet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[160,189],"ev":[160,189]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/cc388acb00/HelmetStrDex8.png","w":2,"h":2} +{"name":"Фокусирующий камень","refName":"Focal Stone","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRm9jYWxNYWdpY1N0b25lIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/65ffdbcd59/FocalMagicStone.png","w":2,"h":2} +{"name":"Направленный амулет","refName":"Focused Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9IZWlzdEFtdWxldDFTaWx2ZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MSwiZWxkZXIiOnRydWV9XQ/2795ad9a97/HeistAmulet1Silver.png"} +{"name":"Амальгамированная брошь","refName":"Foliate Brooch","namespace":"ITEM","craftable":{"category":"Heist Brooch"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRm9saWF0ZUJyb29jaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/72a57eb200/FoliateBrooch.png"} +{"name":"Меч пехотинца","refName":"Footman Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/28f44a7a0c/TwoHandSword3.png","w":2,"h":4} +{"name":"Запретный контракт","refName":"Forbidden Contract","namespace":"ITEM","craftable":{"uniqueOnly":true,"category":"Heist Contract"},"icon":""} +{"name":"Запретный том","refName":"Forbidden Tome","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2FuY3R1bS9TYW5jdHVtS2V5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d0326cac9a/SanctumKey.png"} +{"name":"Карта запретных лесов","refName":"Forbidden Woods Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/5Jl2OoA.jpg"}} +{"name":"Таинственная сфера Делириума","refName":"Foreboding Delirium Orb","namespace":"ITEM","tradeTag":"foreboding-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJIYXJiaW5nZXIiLCJzY2FsZSI6MX1d/a10060782a/DeliriumOrbHarbinger.png"} +{"name":"Таинственный инкубатор","refName":"Foreboding Incubator","namespace":"ITEM","tradeTag":"foreboding-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uSGFyYmluZ2VyIiwic2NhbGUiOjF9XQ/11f4bcf0ee/IncubationHarbinger.png"} +{"name":"Лесной тигр","refName":"Forest Tiger","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1RpZ2VyQmVzdGlhcnlTcGlyaXRCb3NzQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/6a46a7dc19/TigerBestiarySpiritBossCorpse.png","w":3,"h":2} +{"name":"Воин леса","refName":"Forest Warrior","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zpa2luZ01hcEJvc3NDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/cc6f33141d/VikingMapBossCorpse.png","w":3,"h":2} +{"name":"Карта кузницы Феникса","refName":"Forge of the Phoenix Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhczJNYXBzL05ldy9QaG9lbml4IiwidyI6MSwiaCI6MSwic2NhbGUiOjEsIm1uIjoxNCwibXQiOjAsIm1pIjoxfV0/b71e695513/Phoenix.png","map":{"screenshot":"https://i.imgur.com/Oiqrl9M.jpg"}} +{"name":"Ключ от Забытого Реликвария","refName":"Forgotten Reliquary Key","namespace":"ITEM","tradeTag":"forgotten-reliquary-key","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WZW5hcml1c0ZvaWwiLCJzY2FsZSI6MX1d/ba2d66a470/VenariusFoil.png"} +{"name":"Карта речной развилки","refName":"Forking River Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/KLlqoMv.jpg"}} +{"name":"Карта крепости","refName":"Fortress Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{}} +{"name":"Ископаемая сфера Делириума","refName":"Fossilised Delirium Orb","namespace":"ITEM","tradeTag":"fossilised-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJGb3NzaWxzIiwic2NhbGUiOjF9XQ/ce824132c2/DeliriumOrbFossils.png"} +{"name":"Ископаемый инкубатор","refName":"Fossilised Incubator","namespace":"ITEM","tradeTag":"fossilised-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRm9zc2lscyIsInNjYWxlIjoxfV0/bb7663432d/IncubationFossils.png"} +{"name":"Щит духа из окаменелостей","refName":"Fossilised Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[49,55]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f0b78ea97c/ShieldInt3.png","w":2,"h":2} +{"name":"Посох падшего","refName":"Foul Staff","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY3IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/c1ded974d5/Staff7.png","w":2,"h":4} +{"name":"Литой лук","refName":"Foundry Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0hlaXN0Qm93RmlyZSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/30526435da/HeistBowFire.png","w":2,"h":4} +{"name":"Карта литейной","refName":"Foundry Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/EeefLOA.jpg"}} +{"name":"Лисьи подошвы","refName":"Foxhide Sole","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRm94aGlkZVNvbGUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/55215f9d79/FoxhideSole.png","w":2,"h":2} +{"name":"Треснувшее ископаемое","refName":"Fractured Fossil","namespace":"ITEM","tradeTag":"fractured-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvRnJhY3R1cmVkRm9zc2lsIiwic2NhbGUiOjF9XQ/328d2256ce/FracturedFossil.png"} +{"name":"Раскалывающая сфера","refName":"Fracturing Orb","namespace":"ITEM","tradeTag":"fracturing-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRnJhY3R1cmluZ09yYkNvbWJpbmVkIiwic2NhbGUiOjF9XQ/3fb18e8a5b/FracturingOrbCombined.png"} +{"name":"Раскалывающий осколок","refName":"Fracturing Shard","namespace":"ITEM","tradeTag":"fracturing-shard","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRnJhY3R1cmluZ09yYlNoYXJkIiwic2NhbGUiOjF9XQ/34fdc6a813/FracturingOrbShard.png"} +{"name":"Фрагмент угнетения","refName":"Fragment of Constriction","namespace":"ITEM","tradeTag":"fragment-of-constriction","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcEd1YXJkaWFuSG9seSIsInNjYWxlIjoxfV0/b9ef66f983/AtlasMapGuardianHoly.png"} +{"name":"Фрагмент пустоты","refName":"Fragment of Emptiness","namespace":"ITEM","tradeTag":"fragment-of-emptiness","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyRWxkZXIwMiIsInNjYWxlIjoxfV0/085f7abd0b/UberElder02.png"} +{"name":"Фрагмент порабощения","refName":"Fragment of Enslavement","namespace":"ITEM","tradeTag":"fragment-of-enslavement","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcEd1YXJkaWFuRmlyZSIsInNjYWxlIjoxfV0/7497ffd64d/AtlasMapGuardianFire.png"} +{"name":"Фрагмент искоренения","refName":"Fragment of Eradication","namespace":"ITEM","tradeTag":"fragment-of-eradication","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcEd1YXJkaWFuTGlnaHRuaW5nIiwic2NhbGUiOjF9XQ/e6e792e80e/AtlasMapGuardianLightning.png"} +{"name":"Фрагмент знания","refName":"Fragment of Knowledge","namespace":"ITEM","tradeTag":"fragment-of-knowledge","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyRWxkZXIwNCIsInNjYWxlIjoxfV0/096ec774b0/UberElder04.png"} +{"name":"Фрагмент искупления","refName":"Fragment of Purification","namespace":"ITEM","tradeTag":"fragment-of-purification","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcEd1YXJkaWFuQ2hhb3MiLCJzY2FsZSI6MX1d/7938e7a7ee/AtlasMapGuardianChaos.png"} +{"name":"Фрагмент формы","refName":"Fragment of Shape","namespace":"ITEM","tradeTag":"fragment-of-shape","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyRWxkZXIwMyIsInNjYWxlIjoxfV0/4a8c196777/UberElder03.png"} +{"name":"Фрагмент ужаса","refName":"Fragment of Terror","namespace":"ITEM","tradeTag":"fragment-of-terror","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyRWxkZXIwMSIsInNjYWxlIjoxfV0/322988dd38/UberElder01.png"} +{"name":"Фрагмент Химеры","refName":"Fragment of the Chimera","namespace":"ITEM","tradeTag":"chimer","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcHMvRnJhZ21lbnRDaGltZXJhIiwic2NhbGUiOjF9XQ/191b838e55/FragmentChimera.png"} +{"name":"Фрагмент Гидры","refName":"Fragment of the Hydra","namespace":"ITEM","tradeTag":"hydra","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcHMvRnJhZ21lbnRIeWRyYSIsInNjYWxlIjoxfV0/975dcd6b1c/FragmentHydra.png"} +{"name":"Фрагмент Минотавра","refName":"Fragment of the Minotaur","namespace":"ITEM","tradeTag":"minot","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcHMvRnJhZ21lbnRNaW5vdGF1ciIsInNjYWxlIjoxfV0/e976236f7a/FragmentMinotaur.png"} +{"name":"Фрагмент Феникса","refName":"Fragment of the Phoenix","namespace":"ITEM","tradeTag":"phoenix","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcHMvRnJhZ21lbnRQaG9lbml4Iiwic2NhbGUiOjF9XQ/3091d971ad/FragmentPhoenix.png"} +{"name":"Свиток фрагментации","refName":"Fragmentation Scroll","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9IYXJiaW5nZXJUb2tlblF1aXZlciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a6017fd37d/HarbingerTokenQuiver.png"} +{"name":"Раздробленная сфера Делириума","refName":"Fragmented Delirium Orb","namespace":"ITEM","tradeTag":"fragmented-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJGcmFnbWVudHMiLCJzY2FsZSI6MX1d/a0b9780684/DeliriumOrbFragments.png"} +{"name":"Раздробленный инкубатор","refName":"Fragmented Incubator","namespace":"ITEM","tradeTag":"fragmented-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRnJhZ21lbnRzIiwic2NhbGUiOjF9XQ/a3cf9d4a10/IncubationFragments.png"} +{"name":"Раскалывающий наконечник","refName":"Fragmenting Arrowhead","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQXJyb3doZWFkRnJhZ21lbnRpbmciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/14b9a9dba3/ArrowheadFragmenting.png","w":2,"h":2} +{"name":"Пугающий коготь","refName":"Fright Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3OCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/3cc3260177/Claw8.png","w":2,"h":2} +{"name":"Пугающий молот","refName":"Fright Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U3IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/d7e632f004/TwoHandMace7.png","w":2,"h":4} +{"name":"Ледяное ископаемое","refName":"Frigid Fossil","namespace":"ITEM","tradeTag":"frigid-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvQW1iZXJGYW5nIiwic2NhbGUiOjF9XQ/2e63199a3e/AmberFang.png"} +{"name":"Кожанка разведчика","refName":"Frontier Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[412,495]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4M0IiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/db900972c7/BodyDex3B.png","w":2,"h":3} +{"name":"Карта замёрзших хижин","refName":"Frozen Cabins Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/eAML7S2.jpg"}} +{"name":"Мёрзлый людоед","refName":"Frozen Cannibal","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0hhaWxyYWtlQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/a3828d3005/HailrakeCorpse.png","w":3,"h":2} +{"name":"Сапоги беглеца","refName":"Fugitive Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[112,129],"es":[32,37]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9IYWxmVG9uZWRCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/3bfd47b73a/HalfTonedBoots.png","w":2,"h":2} +{"name":"Микстура из фульгурита","refName":"Fulgurite Tincture","namespace":"ITEM","craftable":{"category":"Tincture"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL1Nob2NrU2FwIiwidyI6MSwiaCI6Miwic2NhbGUiOjF9XQ/b5365ad256/ShockSap.png","h":2} +{"name":"Полная кольчуга","refName":"Full Chainmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[178,199],"es":[38,43]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5a1804c81b/BodyStrInt2C.png","w":2,"h":3} +{"name":"Полный доспех из чешуи дракона","refName":"Full Dragonscale","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[470,541],"ev":[373,429]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/769e4eedeb/BodyStrDex1C.png","w":2,"h":3} +{"name":"Полный кожаный доспех","refName":"Full Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[284,327]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/47360dcc4a/BodyDex1C.png","w":2,"h":3} +{"name":"Полные латы","refName":"Full Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[284,319]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/94a3d5d98e/BodyStr1C.png","w":2,"h":3} +{"name":"Полный кольчатый доспех","refName":"Full Ringmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[156,180],"es":[34,39]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/3247afb396/BodyStrInt1C.png","w":2,"h":3} +{"name":"Полный чешуйчатый доспех","refName":"Full Scale Armour","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[156,180],"ev":[156,180]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/769e4eedeb/BodyStrDex1C.png","w":2,"h":3} +{"name":"Полный доспех из чешуи змея","refName":"Full Wyrmscale","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[254,292],"ev":[254,292]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/769e4eedeb/BodyStrDex1C.png","w":2,"h":3} +{"name":"Полный доспех из чешуи виверны","refName":"Full Wyvernscale","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[545,627],"ev":[545,627]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/769e4eedeb/BodyStrDex1C.png","w":2,"h":3} +{"name":"Фундаментальное ископаемое","refName":"Fundamental Fossil","namespace":"ITEM","tradeTag":"fundamental-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvRW5jcnVzdGVkRm9zc2lsIiwic2NhbGUiOjF9XQ/17b85500f2/EncrustedFossil.png"} +{"name":"Карта грибковой впадины","refName":"Fungal Hollow Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/D4HiW8x.jpg"}} +{"name":"Корона ветра","refName":"Gale Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[42,49],"es":[10,12]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludFIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/9da7af13c1/HelmetDexIntR.png","w":2,"h":2} +{"name":"Карта садов","refName":"Gardens Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/nnb6Fss.jpg"}} +{"name":"Камнетёс","refName":"Gavel","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U0IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/b0b1a18a0c/OneHandMace4.png","w":2,"h":3} +{"name":"Инкубатор камнереза","refName":"Gemcutter's Incubator","namespace":"ITEM","tradeTag":"gemcutters-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uR2VtcyIsInNjYWxlIjoxfV0/7df785d740/IncubationGems.png"} +{"name":"Призма камнереза","refName":"Gemcutter's Prism","namespace":"ITEM","tradeTag":"gcp","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lHZW1RdWFsaXR5Iiwic2NhbGUiOjF9XQ/dbe9678a28/CurrencyGemQuality.png"} +{"name":"Коготь-близнец","refName":"Gemini Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3OSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/84eab7e6ba/Claw9.png","w":2,"h":2} +{"name":"Самоцветный меч","refName":"Gemstone Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDIiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/606dae9ce9/OneHandSword2.png","h":3} +{"name":"Бригандина легата","refName":"General's Brigandine","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[415,465],"ev":[415,465]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/60a6d7b58c/BodyStrDex2C.png","w":2,"h":3} +{"name":"Шлем генерала","refName":"General's Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[431,496]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/b814dc309a/HelmetStr9.png","w":2,"h":2} +{"name":"Карта жеоды","refName":"Geode Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/iGJ0Ohk.jpg"}} +{"name":"Геодезическое кольцо","refName":"Geodesic Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvSGVpc3RSaW5nMiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ef30e9565e/HeistRing2.png"} +{"name":"Инкубатор геоманта","refName":"Geomancer's Incubator","namespace":"ITEM","tradeTag":"geomancers-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQXJtb3VyIiwic2NhbGUiOjF9XQ/8cd6cd0531/IncubationArmour.png"} +{"name":"Самоцвет призрачного глаза","refName":"Ghastly Eye Jewel","namespace":"ITEM","craftable":{"category":"Abyss Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0doYXN0bHlFeWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ed72511412/GhastlyEye.png"} +{"name":"Карта хибар","refName":"Ghetto Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/I8onB4N.jpg"}} +{"name":"Гигантский флакон жизни","refName":"Giant Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrNiIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/13cd1c8a08/lifeflask6.png","h":2} +{"name":"Гигантский флакон маны","refName":"Giant Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrNiIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/61993fdd4b/manaflask6.png","h":2} +{"name":"Шлем грозы великанов","refName":"Giantslayer Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[582,669]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjExIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/d288bbe11b/HelmetStr11.png","w":2,"h":2} +{"name":"Дар богине","refName":"Gift to the Goddess","namespace":"ITEM","tradeTag":"offer-gift","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9MYWJ5cmludGhIYXJ2ZXN0SW5mdXNlZDEiLCJzY2FsZSI6MX1d/a5254d7933/LabyrinthHarvestInfused1.png"} +{"name":"Золочёный топор","refName":"Gilded Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/e2c34a0fb2/TwoHandAxe6.png","w":2,"h":4} +{"name":"Позолоченный баклер","refName":"Gilded Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[225,259]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/ad59b083a6/ShieldDex6.png","w":2,"h":2} +{"name":"Позолоченное ископаемое","refName":"Gilded Fossil","namespace":"ITEM","tradeTag":"gilded-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvU2FuY3RpZmllZEZvc3NpbCIsInNjYWxlIjoxfV0/7240f907f2/SanctifiedFossil.png"} +{"name":"Позолоченный салад","refName":"Gilded Sallet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[90,97],"ev":[90,97]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e013d5e90a/HelmetStrDex4.png","w":2,"h":2} +{"name":"Ростовой щит с умбоном","refName":"Girded Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[397,437]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d883ad1ca2/ShieldStr6.png","w":2,"h":4} +{"name":"Карта ледника","refName":"Glacier Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/t3Arfep.jpg"}} +{"name":"Шлем гладиатора","refName":"Gladiator Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[174,195]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/38bfc94781/HelmetStr5.png","w":2,"h":2} +{"name":"Доспех гладиатора","refName":"Gladiator Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[738,848]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/429eee131d/BodyStr2C.png","w":2,"h":3} +{"name":"Гладиус","refName":"Gladius","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/936e00e3e6/OneHandSword4.png","w":2,"h":3} +{"name":"Осколок стекла","refName":"Glass Shank","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjEiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/aeb581e270/Dagger1.png","h":3} +{"name":"Стекольная масса","refName":"Glassblower's Bauble","namespace":"ITEM","tradeTag":"bauble","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lGbGFza1F1YWxpdHkiLCJzY2FsZSI6MX1d/59e57027e5/CurrencyFlaskQuality.png"} +{"name":"Великолепный кожаный доспех","refName":"Glorious Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[451,519]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/47360dcc4a/BodyDex1C.png","w":2,"h":3} +{"name":"Великолепные латы","refName":"Glorious Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[776,892]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyM0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/09903268a5/BodyStr3C.png","w":2,"h":3} +{"name":"Резное ископаемое","refName":"Glyphic Fossil","namespace":"ITEM","tradeTag":"glyphic-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvR2x5cGhpY0Zvc3NpbCIsInNjYWxlIjoxfV0/3e6fb90b9d/GlyphicFossil.png"} +{"name":"Сучковатая ветка","refName":"Gnarled Branch","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmYxIiwidyI6MSwiaCI6NCwic2NhbGUiOjF9XQ/c4f884eb64/Staff1.png","h":4} +{"name":"Козий рог","refName":"Goat's Horn","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kMiIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/896948eee2/Wand2.png","h":3} +{"name":"Сафьяновые ботинки","refName":"Goathide Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[42,54]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/37d9d4d590/BootsDex2.png","w":2,"h":2} +{"name":"Кожаный баклер","refName":"Goathide Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[14,20]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f5469d2393/ShieldDex1.png","w":2,"h":2} +{"name":"Сафьяновые перчатки","refName":"Goathide Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[32,42]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/b051b2c9f5/GlovesDex2.png","w":2,"h":2} +{"name":"Золотой амулет","refName":"Gold Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQ2IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9c1412b6dd/Amulet6.png"} +{"name":"Золотой флакон","refName":"Gold Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvR29sZEZsYXNrIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/0669496bc6/GoldFlask.png","h":2} +{"name":"Золотое кольцо","refName":"Gold Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/2164e44179/Ring4.png"} +{"name":"Золотой клинок","refName":"Golden Blade","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0RlbWlnb2RzQXV0aG9yaXR5IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/be10fa5951/DemigodsAuthority.png","w":2,"h":3} +{"name":"Золотые перчатки","refName":"Golden Bracers","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRGVtaWdvZHNUb3VjaCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f0cc5eee0b/DemigodsTouch.png","w":2,"h":2} +{"name":"Золотая брошь","refName":"Golden Brooch","namespace":"ITEM","craftable":{"category":"Heist Brooch"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvR29sZGVuQnJvb2NoIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ef48504f78/GoldenBrooch.png"} +{"name":"Золотой баклер","refName":"Golden Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[354,407]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/ad59b083a6/ShieldDex6.png","w":2,"h":2} +{"name":"Золотые калиги","refName":"Golden Caligae","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9EZW1pZ29kc1N0cmlkZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/b58f10a704/DemigodsStride.png","w":2,"h":2} +{"name":"Золотое пламя","refName":"Golden Flame","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0RlbWlnb2RzU2hpZWxkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/c838c8c4a7/DemigodsShield.png","w":2,"h":3} +{"name":"Золотой обруч","refName":"Golden Hoop","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvRGVtaWdvZHNCYW5kIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ed7fdf1fb6/DemigodsBand.png"} +{"name":"Золотой крис","refName":"Golden Kris","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjYiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/5dcee0019c/Dagger6.png","h":3} +{"name":"Золотая мантия","refName":"Golden Mantle","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[75,86],"ev":[75,86],"es":[17,19]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9EZW1pZ29kc0FybW91ciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/c491aef3bb/DemigodsArmour.png","w":2,"h":3} +{"name":"Золотая маска","refName":"Golden Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[96,103],"es":[20,22]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/445c130e44/HelmetDexInt5.png","w":2,"h":2} +{"name":"Шитый золотом пояс","refName":"Golden Obi","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvRGVtaWJlbHQxIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/aff71be0d1/Demibelt1.png","w":2} +{"name":"Золотое масло","refName":"Golden Oil","namespace":"ITEM","tradeTag":"golden-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9Hb2xkZW5PaWwiLCJzY2FsZSI6MX1d/263a5d73da/GoldenOil.png"} +{"name":"Золотые латы","refName":"Golden Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[559,643]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/ca9e30f668/BodyStr1B.png","w":2,"h":3} +{"name":"Золотой лик","refName":"Golden Visage","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0RlbWlnb2RzSW1tb3J0YWxpdHkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/49ce309a2f/DemigodsImmortality.png","w":2,"h":2} +{"name":"Золотой венок","refName":"Golden Wreath","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0RlbWlnb2RzdHJpdW1waCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/4af6a35515/Demigodstriumph.png","w":2,"h":2} +{"name":"Перчатки гиганта","refName":"Goliath Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[174,200]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyNCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/468f466568/GlovesStr4.png","w":2,"h":2} +{"name":"Поножи великана","refName":"Goliath Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[177,209]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/82bedfd1e0/BootsStr4.png","w":2,"h":2} +{"name":"Тычок","refName":"Gouger","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ac6e7ab61d/Claw3.png","w":2,"h":2} +{"name":"Изящный меч","refName":"Graceful Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDciLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9ac21989c5/OneHandSword7.png","w":2,"h":3} +{"name":"Великий древний уголёк","refName":"Grand Eldritch Ember","namespace":"ITEM","tradeTag":"grand-eldritch-ember","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2xlYW5zaW5nRmlyZU9yYlJhbmszIiwic2NhbGUiOjF9XQ/0486f1ac82/CleansingFireOrbRank3.png"} +{"name":"Великий зловещий ихор","refName":"Grand Eldritch Ichor","namespace":"ITEM","tradeTag":"grand-eldritch-ichor","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVGFuZ2xlT3JiUmFuazMiLCJzY2FsZSI6MX1d/199f3b36f3/TangleOrbRank3.png"} +{"name":"Огромный флакон жизни","refName":"Grand Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrNSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/52f0b42c56/lifeflask5.png","h":2} +{"name":"Огромный флакон маны","refName":"Grand Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrNSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/035910bcbc/manaflask5.png","h":2} +{"name":"Великолепный кольчатый доспех","refName":"Grand Ringmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[545,627],"es":[110,127]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/3247afb396/BodyStrInt1C.png","w":2,"h":3} +{"name":"Связка великого мастера ключей","refName":"Grandmaster Keyring","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvR3JhbmRtYXN0ZXJLZXlyaW5nIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/0c53c85ef3/GrandmasterKeyring.png","w":2,"h":2} +{"name":"Гранитный флакон","refName":"Granite Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvZ3Jhbml0ZSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/101bce8899/granite.png","h":2} +{"name":"Хвататель","refName":"Grappler","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDkiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/d11450350f/OneHandSword9.png","w":2,"h":3} +{"name":"Цепкая кольчуга","refName":"Grasping Mail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[217,250],"ev":[217,250],"es":[44,51]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9HcmFzcGluZ01haWwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/ec1ff98d3c/GraspingMail.png","w":2,"h":3} +{"name":"Карта могильной низины","refName":"Grave Trough Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/ee5davj.jpg"}} +{"name":"Карта кладбища","refName":"Graveyard Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/gm0UolB.jpg"}} +{"name":"Большая корона","refName":"Great Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[143,161],"es":[29,33]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/607b69e687/HelmetStrInt7.png","w":2,"h":2} +{"name":"Большой шлем","refName":"Great Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[61,76],"es":[14,17]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/b4ec7dbe33/HelmetStrInt3.png","w":2,"h":2} +{"name":"Большая колотушка","refName":"Great Mallet","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2UzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/5e536c19aa/TwoHandMace3.png","w":2,"h":4} +{"name":"Большой белый коготь","refName":"Great White Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/8b8d9559cd/Claw2.png","w":2,"h":2} +{"name":"Крупный древний уголёк","refName":"Greater Eldritch Ember","namespace":"ITEM","tradeTag":"greater-eldritch-ember","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2xlYW5zaW5nRmlyZU9yYlJhbmsyIiwic2NhbGUiOjF9XQ/698817b93d/CleansingFireOrbRank2.png"} +{"name":"Крупный зловещий ихор","refName":"Greater Eldritch Ichor","namespace":"ITEM","tradeTag":"greater-eldritch-ichor","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVGFuZ2xlT3JiUmFuazIiLCJzY2FsZSI6MX1d/689d1897c7/TangleOrbRank2.png"} +{"name":"Вместительный флакон жизни","refName":"Greater Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrNCIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/2601beea57/lifeflask4.png","h":2} +{"name":"Вместительный флакон маны","refName":"Greater Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrNCIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/54e8624da7/manaflask4.png","h":2} +{"name":"Талисман Великого волка","refName":"Greatwolf Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UNFRhbGlzbWFuIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/92e5669fe8/T4Talisman.png"} +{"name":"Оскаленный фетиш","refName":"Grinning Fetish","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyMiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/e3e72321e0/scepter2.png","w":2,"h":3} +{"name":"Крепкие перчатки","refName":"Gripped Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[220,253]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR3JpcEdsb3Zlc0Jhc2VUeXBlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/905e5572e6/GripGlovesBaseType.png","w":2,"h":2} +{"name":"Морда гризли","refName":"Grizzly Pelt","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[501,576]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e2b3ccec11/HelmetDex7.png","w":2,"h":2} +{"name":"Карта грота","refName":"Grotto Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/N7P59cb.jpg"}} +{"name":"Лесной лук","refName":"Grove Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/0fcc51afcd/Bow2.png","w":2,"h":3} +{"name":"Охраняющая черепаха","refName":"Guardian Turtle","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Jvbmdva3VyYWlTcGlyaXRUb3J0b2lzZUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/5cdaded7da/RongokuraiSpiritTortoiseCorpse.png","w":3,"h":2} +{"name":"Ограждающие перчатки","refName":"Guarding Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[132,152]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUml0dWFsU3RyR2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/254b8a0066/RitualStrGloves.png","w":2,"h":2} +{"name":"Вспарыватель","refName":"Gut Ripper","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/1d5586ea56/Claw5.png","w":2,"h":2} +{"name":"Нож потрошителя","refName":"Gutting Knife","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjIiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/c2c0a06eec/Dagger2.png","h":3} +{"name":"Свиток кровосожжения","refName":"Haemocombustion Scroll","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9IYXJiaW5nZXJUb2tlblN0YWZmIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3bac452156/HarbingerTokenStaff.png"} +{"name":"Полузабытый исполин","refName":"Half-remembered Goliath","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1N5bnRoZXNpc0dvbGVtQm9zc0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/aed2848215/SynthesisGolemBossCorpse.png","w":3,"h":2} +{"name":"Благодатный флакон равновесия","refName":"Hallowed Hybrid Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvaHlicmlkZmxhc2s0IiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/541bb93a64/hybridflask4.png","h":2} +{"name":"Благодатный флакон жизни","refName":"Hallowed Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrOSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/67262f06f5/lifeflask9.png","h":2} +{"name":"Благодатный флакон маны","refName":"Hallowed Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrOSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/8ef0a39c9d/manaflask9.png","h":2} +{"name":"Кованый баклер","refName":"Hammered Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[116,139]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/60c6c83831/ShieldDex4.png","w":2,"h":2} +{"name":"Лук предвестника","refName":"Harbinger Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzgiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8d079c60ed/Bow8.png","w":2,"h":4} +{"name":"Карта Предвестника","refName":"Harbinger Map","namespace":"ITEM","craftable":{"uniqueOnly":true,"category":"Map"},"icon":"","map":{}} +{"name":"Скарабей Предвестника","refName":"Harbinger Scarab","namespace":"ITEM","tradeTag":"harbinger-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJIYXJiaW5nZXJzIiwic2NhbGUiOjF9XQ/cc33d9f639/LesserScarabHarbingers.png"} +{"name":"Скарабей Предвестника обелисков","refName":"Harbinger Scarab of Obelisks","namespace":"ITEM","tradeTag":"harbinger-scarab-of-obelisks","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJIYXJiaW5nZXJzIiwic2NhbGUiOjF9XQ/dc5f44e261/NormalScarabHarbingers.png"} +{"name":"Скарабей Предвестника регентства","refName":"Harbinger Scarab of Regency","namespace":"ITEM","tradeTag":"harbinger-scarab-of-regency","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiSGFyYmluZ2VycyIsInNjYWxlIjoxfV0/335df4321f/GreaterScarabHarbingers.png"} +{"name":"Скарабей Предвестника военных запасов","refName":"Harbinger Scarab of Warhoards","namespace":"ITEM","tradeTag":"harbinger-scarab-of-warhoards","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkhhcmJpbmdlcnMiLCJzY2FsZSI6MX1d/58a4c0d3f8/Tier4ScarabHarbingers.png"} +{"name":"Сфера Предвестника","refName":"Harbinger's Orb","namespace":"ITEM","tradeTag":"harbingers-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFyYmluZ2VyT3JiIiwic2NhbGUiOjF9XQ/0a26e01f15/HarbingerOrb.png"} +{"name":"Осколок Предвестника","refName":"Harbinger's Shard","namespace":"ITEM","tradeTag":"harbingers-shard","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFyYmluZ2VyU2hhcmQiLCJzY2FsZSI6MX1d/ad19e27b2f/HarbingerShard.png"} +{"name":"Шутовская маска","refName":"Harlequin Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[157,185],"es":[32,38]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c006f13480/HelmetDexInt9.png","w":2,"h":2} +{"name":"Поющий щит духа","refName":"Harmonic Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[58,66]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4bf20f79d1/ShieldInt5.png","w":2,"h":2} +{"name":"Рапира гарпии","refName":"Harpy Rapier","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjgiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/1f11ed5e87/Rapier8.png","h":4} +{"name":"Гарпиевые ботинки","refName":"Harpyskin Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[307,353]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f2e9a30d4a/BootsDex3.png","w":2,"h":2} +{"name":"Гарпиевые перчатки","refName":"Harpyskin Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[307,353]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/445d038f1d/GlovesDex3.png","w":2,"h":2} +{"name":"Скарабей Жатвы","refName":"Harvest Scarab","namespace":"ITEM","tradeTag":"harvest-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJIYXJ2ZXN0Iiwic2NhbGUiOjF9XQ/976dcf6526/LesserScarabHarvest.png"} +{"name":"Скарабей Жатвы изобилия","refName":"Harvest Scarab of Cornucopia","namespace":"ITEM","tradeTag":"harvest-scarab-of-cornucopia","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkhhcnZlc3QiLCJzY2FsZSI6MX1d/35e8847de2/Tier4ScarabHarvest.png"} +{"name":"Скарабей Жатвы удвоения","refName":"Harvest Scarab of Doubling","namespace":"ITEM","tradeTag":"harvest-scarab-of-doubling","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiSGFydmVzdCIsInNjYWxlIjoxfV0/6077972903/GreaterScarabHarvest.png"} +{"name":"Одержимый бацинет","refName":"Haunted Bascinet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[355,409],"ev":[355,409]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDEwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/4c9ea10e7c/HelmetStrDex10.png","w":2,"h":2} +{"name":"Карта дома с привидениями","refName":"Haunted Mansion Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/TyBueyN.jpg"}} +{"name":"Меч палача","refName":"Headman's Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDIiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/fcaf050e0f/TwoHandSword2.png","w":2,"h":4} +{"name":"Топор палача","refName":"Headsman Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/24ac93d9cd/TwoHandAxe4.png","w":2,"h":4} +{"name":"Пламенный ростовой щит","refName":"Heat-attuned Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[220,253]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0hlaXN0U2hpZWxkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/e65fb9efea/HeistShield.png","w":2,"h":3} +{"name":"Жезл варвара","refName":"Heathen Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNyIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/84ced52bef/Wand7.png","h":3} +{"name":"Колчан тяжёлых стрел","refName":"Heavy Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJCbHVudCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/435539df0f/QuiverBlunt.png","w":2,"h":3} +{"name":"Широкий ремень","refName":"Heavy Belt","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdDUiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MSwiZWxkZXIiOnRydWV9XQ/440fb77647/Belt5.png","w":2} +{"name":"Лук с гранями","refName":"Hedron Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0hlaXN0Qm93RmlyZSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/30526435da/HeistBowFire.png","w":2,"h":4} +{"name":"Спиральное кольцо","refName":"Helical Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvSGVpc3RSaW5nMURhcmsiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/50914baa93/HeistRing1Dark.png"} +{"name":"Лапа волкодава","refName":"Hellion's Paw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0a98c635d3/Claw4.png","w":2,"h":2} +{"name":"Талисман ведьмокогтя","refName":"Hexclaw Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbkJsYWNrNiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6885b449d4/TalismanBlack6.png"} +{"name":"Лук патриция","refName":"Highborn Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/1e6a3da9aa/Bow7.png","w":2,"h":4} +{"name":"Посох патриция","refName":"Highborn Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY2IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/5e3de6f391/Staff6.png","w":2,"h":4} +{"name":"Клинок горца","refName":"Highland Blade","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/294bd80312/TwoHandSword4.png","w":2,"h":4} +{"name":"Прядь Хинекоры","refName":"Hinekora's Lock","namespace":"ITEM","tradeTag":"hinekoras-lock","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGluZWtvcmFzTG9jayIsInNjYWxlIjoxfV0/b188026e7f/HinekorasLock.png"} +{"name":"Пустое ископаемое","refName":"Hollow Fossil","namespace":"ITEM","tradeTag":"hollow-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvQW1iZXJFeWUiLCJzY2FsZSI6MX1d/542a2b7b0a/AmberEye.png"} +{"name":"Сминающий наконечник","refName":"Hollowpoint Arrowhead","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQXJyb3doZWFkSG9sbG93cG9pbnQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/517705408e/ArrowheadHollowpoint.png","w":2,"h":2} +{"name":"Экспансивный кинжал","refName":"Hollowpoint Dagger","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0hlaXN0RGFnZ2VyIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/d484666b70/HeistDagger.png","h":3} +{"name":"Кольчуга послушника","refName":"Holy Chainmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[194,233],"es":[41,49]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50M0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/900b4f2c03/BodyStrInt3C.png","w":2,"h":3} +{"name":"Заточенный секач","refName":"Honed Cleaver","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9IZWlzdFR3b0hhbmRBeGUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/4aef1881cc/HeistTwoHandAxe.png","w":2,"h":4} +{"name":"Накидка с капюшоном","refName":"Hooded Cloak","namespace":"ITEM","craftable":{"category":"Heist Cloak"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvSG9vZGVkQ2xvYWsiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/cc1771375c/HoodedCloak.png","w":2,"h":2} +{"name":"Меч-крюк","refName":"Hook Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDkiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/d11450350f/OneHandSword9.png","w":2,"h":3} +{"name":"Осколок горизонтов","refName":"Horizon Shard","namespace":"ITEM","tradeTag":"horizon-shard","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSG9yaXpvblNoYXJkIiwic2NhbGUiOjF9XQ/627ae5f273/HorizonShard.png"} +{"name":"Рогатый скарабей пробуждения","refName":"Horned Scarab of Awakening","namespace":"ITEM","tradeTag":"horned-scarab-of-awakening","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9TdXBlclNjYXJhYjQiLCJzY2FsZSI6MX1d/c939905663/SuperScarab4.png"} +{"name":"Рогатый скарабей Родословных","refName":"Horned Scarab of Bloodlines","namespace":"ITEM","tradeTag":"horned-scarab-of-bloodlines","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9TdXBlclNjYXJhYjEiLCJzY2FsZSI6MX1d/acc1b258a3/SuperScarab1.png"} +{"name":"Рогатый скарабей переливов","refName":"Horned Scarab of Glittering","namespace":"ITEM","tradeTag":"horned-scarab-of-glittering","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9TdXBlclNjYXJhYjYiLCJzY2FsZSI6MX1d/f74c2fdd4f/SuperScarab6.png"} +{"name":"Рогатый скарабей Немезиды","refName":"Horned Scarab of Nemeses","namespace":"ITEM","tradeTag":"horned-scarab-of-nemeses","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9TdXBlclNjYXJhYjIiLCJzY2FsZSI6MX1d/c4f92c444d/SuperScarab2.png"} +{"name":"Рогатый скарабей Пандемониума","refName":"Horned Scarab of Pandemonium","namespace":"ITEM","tradeTag":"horned-scarab-of-pandemonium","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9TdXBlclNjYXJhYjciLCJzY2FsZSI6MX1d/28b95bae7b/SuperScarab7.png"} +{"name":"Рогатый скарабей сохранения","refName":"Horned Scarab of Preservation","namespace":"ITEM","tradeTag":"horned-scarab-of-preservation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9TdXBlclNjYXJhYjMiLCJzY2FsZSI6MX1d/64d9f06e78/SuperScarab3.png"} +{"name":"Рогатый скарабей традиций","refName":"Horned Scarab of Tradition","namespace":"ITEM","tradeTag":"horned-scarab-of-tradition","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9TdXBlclNjYXJhYjUiLCJzY2FsZSI6MX1d/cbdd57fa7e/SuperScarab5.png"} +{"name":"Рогатый скипетр","refName":"Horned Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyOSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/151820601e/scepter9.png","w":2,"h":3} +{"name":"Талисман рогов","refName":"Horned Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9OZXdUYWxpc21hbjciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/98ae73297c/NewTalisman7.png"} +{"name":"Венец гордыни","refName":"Hubris Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[80,92]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDExIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/4588b92597/HelmetInt11.png","w":2,"h":2} +{"name":"Сотворённый увалень","refName":"Hulking Miscreation","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JvYm90QXJndXNNaW5pYm9zc0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/b72efcb93e/RobotArgusMinibossCorpse.png","w":3,"h":2} +{"name":"Капюшон охотника","refName":"Hunter Hood","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[203,227]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/00026e167c/HelmetDex5.png","w":2,"h":2} +{"name":"Сфера возвышения охотника","refName":"Hunter's Exalted Orb","namespace":"ITEM","tradeTag":"hunters-exalted-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5mbHVlbmNlIEV4YWx0cy9CYXNpbGlza09yYiIsInNjYWxlIjoxfV0/cd2131d564/BasiliskOrb.png"} +{"name":"Бригандина всадника","refName":"Hussar Brigandine","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[232,278],"ev":[232,278]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/cd52e7b841/BodyStrDex2B.png","w":2,"h":3} +{"name":"Гидра","refName":"Hydra","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0h5ZHJhQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/cd848db11b/HydraCorpse.png","w":3,"h":2} +{"name":"Ботинки из чешуи гидры","refName":"Hydrascale Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[106,122],"ev":[106,122]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/d5b5430d4c/BootsStrDex2.png","w":2,"h":2} +{"name":"Перчатки из чешуи гидры","refName":"Hydrascale Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[106,122],"ev":[106,122]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyRGV4MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0bb5dd1e50/GlovesStrDex2.png","w":2,"h":2} +{"name":"Самоцвет гипнотического глаза","refName":"Hypnotic Eye Jewel","namespace":"ITEM","craftable":{"category":"Abyss Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JpdmV0ZWRFeWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a17c4bcc60/RivetedEye.png"} +{"name":"Карта айсберга","refName":"Iceberg Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/9g2hpKu.jpg"}} +{"name":"Волшебный катализатор","refName":"Imbued Catalyst","namespace":"ITEM","tradeTag":"imbued-catalyst","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL0ltYnVlZENhdGFseXN0Iiwic2NhbGUiOjF9XQ/cce071aa45/ImbuedCatalyst.png"} +{"name":"Волшебный жезл","refName":"Imbued Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kMyIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/6322bd53f5/Wand3.png","h":3} +{"name":"Корона беса","refName":"Imp Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[42,49],"es":[10,12]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01hc2tDcm93biIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/dbad72643e/MaskCrown.png","w":2,"h":2} +{"name":"Кинжал беса","refName":"Imp Dagger","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjgiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/e0bade03f8/Dagger8.png","h":3} +{"name":"Распространитель удара","refName":"Impact Force Propagator","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvSGVpc3RUd29IYW5kTWFjZSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/ecc9c2724b/HeistTwoHandMace.png","w":2,"h":4} +{"name":"Несовершенный богохульник","refName":"Imperfect Blasphemer","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0dlb2ZyaUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/c8c02e1c54/GeofriCorpse.png","w":3,"h":2} +{"name":"Несовершенный кровавый демон","refName":"Imperfect Blood Demon","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0hlbGxzY2FwZURlbW9uQm9zc0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/9bcd7bb5b8/HellscapeDemonBossCorpse.png","w":3,"h":2} +{"name":"Несовершенный танцующий меч","refName":"Imperfect Dancing Sword","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0FuaW1hdGVkV2VhcG9uQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/2720caa383/AnimatedWeaponCorpse.png","w":3,"h":2} +{"name":"Несовершенная тёмная марионетка","refName":"Imperfect Dark Marionette","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JvYm90TWFubmVxdWluQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/2ad85223a4/RobotMannequinCorpse.png","w":3,"h":2} +{"name":"Несовершенный тёмный жнец","refName":"Imperfect Dark Reaper","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JlYXBlckJvc3NDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/d6c81d82f9/ReaperBossCorpse.png","w":3,"h":2} +{"name":"Несовершенный друидский алхимик","refName":"Imperfect Druidic Alchemist","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Rhd2hvYU1lZGljaW5lV29tYW5Db3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/a446a2f4d0/TawhoaMedicineWomanCorpse.png","w":3,"h":2} +{"name":"Несовершенный жуткий глаз","refName":"Imperfect Eldritch Eye","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0VsZGVyVGVudGFjbGVNaW5pb25MYXJnZUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/19b67ee9a1/ElderTentacleMinionLargeCorpse.png","w":3,"h":2} +{"name":"Несовершенный огненный людоед","refName":"Imperfect Fiery Cannibal","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0ZpcmVGdXJ5Q29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/458c4ab871/FireFuryCorpse.png","w":3,"h":2} +{"name":"Несовершенный лесной тигр","refName":"Imperfect Forest Tiger","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1RpZ2VyQmVzdGlhcnlTcGlyaXRCb3NzQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/6a46a7dc19/TigerBestiarySpiritBossCorpse.png","w":3,"h":2} +{"name":"Несовершенный воин леса","refName":"Imperfect Forest Warrior","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zpa2luZ01hcEJvc3NDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/cc6f33141d/VikingMapBossCorpse.png","w":3,"h":2} +{"name":"Несовершенный мёрзлый людоед","refName":"Imperfect Frozen Cannibal","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0hhaWxyYWtlQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/a3828d3005/HailrakeCorpse.png","w":3,"h":2} +{"name":"Несовершенная охраняющая черепаха","refName":"Imperfect Guardian Turtle","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Jvbmdva3VyYWlTcGlyaXRUb3J0b2lzZUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/5cdaded7da/RongokuraiSpiritTortoiseCorpse.png","w":3,"h":2} +{"name":"Несовершенный полузабытый исполин","refName":"Imperfect Half-remembered Goliath","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1N5bnRoZXNpc0dvbGVtQm9zc0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/aed2848215/SynthesisGolemBossCorpse.png","w":3,"h":2} +{"name":"Несовершенный сотворённый увалень","refName":"Imperfect Hulking Miscreation","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JvYm90QXJndXNNaW5pYm9zc0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/b72efcb93e/RobotArgusMinibossCorpse.png","w":3,"h":2} +{"name":"Несовершенная гидра","refName":"Imperfect Hydra","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0h5ZHJhQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/cd848db11b/HydraCorpse.png","w":3,"h":2} +{"name":"Несовершенный Дух суда","refName":"Imperfect Judgemental Spirit","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0dvZGRlc3NPZkp1c3RpY2VDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/e674a594ff/GoddessOfJusticeCorpse.png","w":3,"h":2} +{"name":"Несовершенный кусок мяса","refName":"Imperfect Meatsack","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0Z1bmd1c1pvbWJpZUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/4da2b7756d/FungusZombieCorpse.png","w":3,"h":2} +{"name":"Несовершенный морской офицер","refName":"Imperfect Naval Officer","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0FkbWlyYWxEYXJuYXdDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/ccfa254872/AdmiralDarnawCorpse.png","w":3,"h":2} +{"name":"Несовершенный игольчатый ужас","refName":"Imperfect Needle Horror","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0RlbW9uQm9zczNDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/6abaea26f2/DemonBoss3Corpse.png","w":3,"h":2} +{"name":"Несовершенный художник боли","refName":"Imperfect Pain Artist","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0FmZmxpY3Rpb25NaW5pb24yQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/afa1eaea1c/AfflictionMinion2Corpse.png","w":3,"h":2} +{"name":"Несовершенный первобытный демиург","refName":"Imperfect Primal Demiurge","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0NydXNhZGVyTWFuYVBoYW50YXNtQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/66bb067c9b/CrusaderManaPhantasmCorpse.png","w":3,"h":2} +{"name":"Несовершенная первобытная громовая птица","refName":"Imperfect Primal Thunderbird","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JhdmVuQm9zc0JsdWVDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/1a1ed30e2f/RavenBossBlueCorpse.png","w":3,"h":2} +{"name":"Несовершенный рунический скелет","refName":"Imperfect Runic Skeleton","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1N3b3JkU2tlbGV0b25Db3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/171f40accf/SwordSkeletonCorpse.png","w":3,"h":2} +{"name":"Несовершенный демон-кровомант","refName":"Imperfect Sanguimancer Demon","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0hlbGxzY2FwZURlbW9uRWxpdGUyQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/a795ad40fa/HellscapeDemonElite2Corpse.png","w":3,"h":2} +{"name":"Несовершенный пилорукий ужас","refName":"Imperfect Sawblade Horror","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0RlbW9uQm9zczFDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/27f61146a0/DemonBoss1Corpse.png","w":3,"h":2} +{"name":"Несовершенный змеевоин","refName":"Imperfect Serpent Warrior","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0F0bGFzRXhpbGUzQXBwYXJpdGlvbkNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/127b613caf/AtlasExile3ApparitionCorpse.png","w":3,"h":2} +{"name":"Несовершенный тёмный берсерк","refName":"Imperfect Shadow Berserker","namespace":"ITEM","icon":"%NOT_FOUND%","w":3,"h":2} +{"name":"Несовершенный тёмный механизм","refName":"Imperfect Shadow Construct","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0luY2FTaGFkb3dCb3NzQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/acddc4a119/IncaShadowBossCorpse.png","w":3,"h":2} +{"name":"Несовершенный секущий ужас","refName":"Imperfect Slashing Horror","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0RlbW9uQm9zczJDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/211195cd4d/DemonBoss2Corpse.png","w":3,"h":2} +{"name":"Несовершенная паучиха-матриарх","refName":"Imperfect Spider Matriarch","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0JsYWNrRGVhdGhCb3NzQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/658153825a/BlackDeathBossCorpse.png","w":3,"h":2} +{"name":"Несовершенный Дух удачи","refName":"Imperfect Spirit of Fortune","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0t1ZHVrdVRvdGVtQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/7faf1de77b/KudukuTotemCorpse.png","w":3,"h":2} +{"name":"Несовершенный вождь","refName":"Imperfect Warlord","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL09ha0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/9a9c4d9ada/OakCorpse.png","w":3,"h":2} +{"name":"Императорский лук","refName":"Imperial Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/1e6a3da9aa/Bow7.png","w":2,"h":4} +{"name":"Императорский баклер","refName":"Imperial Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[440,506]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/ad59b083a6/ShieldDex6.png","w":2,"h":2} +{"name":"Имперский коготь","refName":"Imperial Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/9efad90cdb/Claw7.png","w":2,"h":2} +{"name":"Имперская сфера Делириума","refName":"Imperial Delirium Orb","namespace":"ITEM","tradeTag":"imperial-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJMYWJ5cmludGgiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/50340fc6c8/DeliriumOrbLabyrinth.png"} +{"name":"Императорский молот","refName":"Imperial Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U2IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/a114ad5617/TwoHandMace6.png","w":2,"h":4} +{"name":"Кинжал императора","refName":"Imperial Skean","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjciLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/61e8f27cc5/Dagger7.png","h":3} +{"name":"Императорский посох","refName":"Imperial Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY2IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/5e3de6f391/Staff6.png","w":2,"h":4} +{"name":"Часть императорского посоха","refName":"Imperial Staff Piece","namespace":"ITEM","craftable":{"category":"Unique Fragment","uniqueOnly":true},"icon":"","w":1,"h":2} +{"name":"Сияющее приглашение","refName":"Incandescent Invitation","namespace":"ITEM","craftable":{"category":"Invitation"},"tradeTag":"incandescent-invitation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVlc3RJdGVtcy9DbGVhbnNpbmdGaXJlT3JiUXVlc3Q1Iiwic2NhbGUiOjF9XQ/d5ac505898/CleansingFireOrbQuest5.png"} +{"name":"Скарабей Вмешательства","refName":"Incursion Scarab","namespace":"ITEM","tradeTag":"incursion-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJJbmN1cnNpb24iLCJzY2FsZSI6MX1d/4afd758a13/LesserScarabIncursion.png"} +{"name":"Скарабей Вмешательства чемпионов","refName":"Incursion Scarab of Champions","namespace":"ITEM","tradeTag":"incursion-scarab-of-champions","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiSW5jdXJzaW9uIiwic2NhbGUiOjF9XQ/ff92bda004/GreaterScarabIncursion.png"} +{"name":"Скарабей Вмешательства вторжения","refName":"Incursion Scarab of Invasion","namespace":"ITEM","tradeTag":"incursion-scarab-of-invasion","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJJbmN1cnNpb24iLCJzY2FsZSI6MX1d/a38b517f35/NormalScarabIncursion.png"} +{"name":"Скарабей Вмешательства хроник","refName":"Incursion Scarab of Timelines","namespace":"ITEM","tradeTag":"incursion-scarab-of-timelines","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkluY3Vyc2lvbiIsInNjYWxlIjoxfV0/748b10e2cf/Tier4ScarabIncursion.png"} +{"name":"Масло индиго","refName":"Indigo Oil","namespace":"ITEM","tradeTag":"indigo-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9JbmRpZ29PaWwiLCJzY2FsZSI6MX1d/d11c298ca8/IndigoOil.png"} +{"name":"Бригандина ауксилария","refName":"Infantry Brigandine","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[119,142],"ev":[119,142]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/cd52e7b841/BodyStrDex2B.png","w":2,"h":3} +{"name":"Бесовской топор","refName":"Infernal Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlOCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/1c9ff58159/OneHandAxe8.png","w":2,"h":3} +{"name":"Инфернальный клинок","refName":"Infernal Blade","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0hlaXN0UnVuZURhZ2dlciIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/1760d17051/HeistRuneDagger.png","h":3} +{"name":"Меч подземного царства","refName":"Infernal Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/cba6615b1a/TwoHandSword7.png","w":2,"h":4} +{"name":"Карта заражённой долины","refName":"Infested Valley Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/9FiIb93.jpg"}} +{"name":"Сандалеты лазутчика","refName":"Infiltrator Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[176,203],"es":[35,41]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0c80b843d0/BootsDexInt3.png","w":2,"h":2} +{"name":"Перчатки лазутчика","refName":"Infiltrator Mitts","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[176,203],"es":[35,41]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/e18b986979/GlovesDexInt2.png","w":2,"h":2} +{"name":"Влиятельный доклад разведки","refName":"Influenced Scouting Report","namespace":"ITEM","tradeTag":"influenced-scouting-report","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png"} +{"name":"Влиятельный скарабей превращения","refName":"Influencing Scarab of Conversion","namespace":"ITEM","tradeTag":"influencing-scarab-of-conversion","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYlNoYXBlciIsInNjYWxlIjoxfV0/320c05daeb/Tier4ScarabShaper.png"} +{"name":"Влиятельный скарабей орд","refName":"Influencing Scarab of Hordes","namespace":"ITEM","tradeTag":"influencing-scarab-of-hordes","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiRWxkZXIiLCJzY2FsZSI6MX1d/660528eb40/GreaterScarabElder.png"} +{"name":"Влиятельный скарабей Древнего","refName":"Influencing Scarab of the Elder","namespace":"ITEM","tradeTag":"influencing-scarab-of-the-elder","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJFbGRlciIsInNjYWxlIjoxfV0/8828d3f4eb/LesserScarabElder.png"} +{"name":"Влиятельный скарабей Создателя","refName":"Influencing Scarab of the Shaper","namespace":"ITEM","tradeTag":"influencing-scarab-of-the-shaper","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJTaGFwZXIiLCJzY2FsZSI6MX1d/caf0ac9307/LesserScarabShaper.png"} +{"name":"Заряженный инкубатор","refName":"Infused Incubator","namespace":"ITEM","tradeTag":"infused-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRXNzZW5jZSIsInNjYWxlIjoxfV0/839bf6cef9/IncubationEssence.png"} +{"name":"Начертанный Ультиматум","refName":"Inscribed Ultimatum","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VbHRpbWF0dW1UcmlhbEJhc2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b65f1edffb/UltimatumTrialBase.png"} +{"name":"Вливающая сфера","refName":"Instilling Orb","namespace":"ITEM","tradeTag":"instilling-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXhwZWRpdGlvbi9GbGFza0luamVjdG9yIiwic2NhbGUiOjF9XQ/efc518b1be/FlaskInjector.png"} +{"name":"Истинный катализатор","refName":"Intrinsic Catalyst","namespace":"ITEM","tradeTag":"intrinsic-catalyst","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL0ludHJpbnNpY0NhdGFseXN0Iiwic2NhbGUiOjF9XQ/cea67fbce2/IntrinsicCatalyst.png"} +{"name":"Иолитовое кольцо","refName":"Iolite Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQ2hhb3NEbWdSaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/41236019f8/ChaosDmgRing.png"} +{"name":"Железный обруч","refName":"Iron Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[12,15]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/64cde8f674/HelmetInt2.png","w":2,"h":2} +{"name":"Железный флакон","refName":"Iron Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvV2FyZGZsYXNrMDEiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/19bbf3a214/Wardflask01.png","h":2} +{"name":"Железные рукавицы","refName":"Iron Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[6,9]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyMSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/413116fb67/GlovesStr1.png","w":2,"h":2} +{"name":"Железные поножи","refName":"Iron Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[6,9]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/10332346d1/BootsStr1.png","w":2,"h":2} +{"name":"Железная шапка","refName":"Iron Hat","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[9,13]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/a114c1308e/HelmetStr1.png","w":2,"h":2} +{"name":"Железная маска","refName":"Iron Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[48,60],"es":[11,14]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/a56694476d/HelmetDexInt3.png","w":2,"h":2} +{"name":"Железное кольцо","refName":"Iron Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/bf29c9d45e/Ring1.png"} +{"name":"Железный скипетр","refName":"Iron Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/4b16d71d85/scepter5.png","w":2,"h":3} +{"name":"Крепкий посох","refName":"Iron Staff","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY0IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/85c22bd16b/Staff4.png","w":2,"h":4} +{"name":"Железные ботинки","refName":"Ironscale Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[34,44],"ev":[34,44]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/d5b5430d4c/BootsStrDex2.png","w":2,"h":2} +{"name":"Чешуйчатые железные перчатки","refName":"Ironscale Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[28,37],"ev":[28,37]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyRGV4MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0bb5dd1e50/GlovesStrDex2.png","w":2,"h":2} +{"name":"Самшитовый баклер","refName":"Ironwood Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[327,385]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/cffdb4477e/ShieldDex2.png","w":2,"h":2} +{"name":"Микстура из железного дерева","refName":"Ironwood Tincture","namespace":"ITEM","craftable":{"category":"Tincture"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL1N0dW5TYXAiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MX1d/d28b324f64/StunSap.png","h":2} +{"name":"Лук из бивня","refName":"Ivory Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/6642f8922a/Bow6.png","w":2,"h":4} +{"name":"Щит духа из старых костей","refName":"Ivory Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[35,40]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f0b78ea97c/ShieldInt3.png","w":2,"h":2} +{"name":"Карта храма из слоновой кости","refName":"Ivory Temple Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/gl7ODl5.jpg"}} +{"name":"Амулет с нефритом","refName":"Jade Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQ0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ffc5888355/Amulet4.png"} +{"name":"Нефритовое рубило","refName":"Jade Chopper","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlMiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/bc8072f8c3/TwoHandAxe2.png","w":2,"h":4} +{"name":"Нефритовый флакон","refName":"Jade Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvZXZhc2lvbmZsYXNrMDEiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/8ead4435df/evasionflask01.png","h":2} +{"name":"Нефритовый топор","refName":"Jade Hatchet","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlMiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/2bb7df0078/OneHandAxe2.png","w":2,"h":3} +{"name":"Зазубренная шпага","refName":"Jagged Foil","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjUiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/ccce0178cc/Rapier5.png","h":4} +{"name":"Шероховатое ископаемое","refName":"Jagged Fossil","namespace":"ITEM","tradeTag":"jagged-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvSmFnZ2VkRm9zc2lsIiwic2NhbGUiOjF9XQ/ca9c17d7d9/JaggedFossil.png"} +{"name":"Зубастый молот","refName":"Jagged Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U1IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/88d16a9600/TwoHandMace5.png","w":2,"h":4} +{"name":"Яшмовый топор","refName":"Jasper Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlMiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/2bb7df0078/OneHandAxe2.png","w":2,"h":3} +{"name":"Яшмовое рубило","refName":"Jasper Chopper","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlMiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/bc8072f8c3/TwoHandAxe2.png","w":2,"h":4} +{"name":"Маска паяца","refName":"Jester Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[268,308],"es":[54,62]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c006f13480/HelmetDexInt9.png","w":2,"h":2} +{"name":"Инкрустированная шпага","refName":"Jewelled Foil","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjciLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/97d714e903/Rapier7.png","h":4} +{"name":"Ювелирная сфера Делириума","refName":"Jeweller's Delirium Orb","namespace":"ITEM","tradeTag":"jewellers-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJUcmlua2V0cyIsInNjYWxlIjoxfV0/165e84bd2a/DeliriumOrbTrinkets.png"} +{"name":"Сфера златокузнеца","refName":"Jeweller's Orb","namespace":"ITEM","tradeTag":"jewellers","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lSZXJvbGxTb2NrZXROdW1iZXJzIiwic2NhbGUiOjF9XQ/ba411ff58a/CurrencyRerollSocketNumbers.png"} +{"name":"Звенящий щит духа","refName":"Jingling Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[25,29]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4bf20f79d1/ShieldInt5.png","w":2,"h":2} +{"name":"Руна Странствия","refName":"Journey Rune","namespace":"ITEM","tradeTag":"journey-rune","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2V0dGxlcnMvVmlsbGFnZVJ1bmU3Iiwic2NhbGUiOjF9XQ/953733102b/VillageRune7.png"} +{"name":"Татуировка странствия тела","refName":"Journey Tattoo of the Body","namespace":"ITEM","tradeTag":"journey-tattoo-of-the-body","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL1VuaXF1ZTNUYXR0dG9vRXF1aXBtZW50Iiwic2NhbGUiOjF9XQ/f83d9c508a/Unique3TatttooEquipment.png"} +{"name":"Татуировка странствия разума","refName":"Journey Tattoo of the Mind","namespace":"ITEM","tradeTag":"journey-tattoo-of-the-mind","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL1VuaXF1ZTNUYXR0dG9vRXF1aXBtZW50Iiwic2NhbGUiOjF9XQ/f83d9c508a/Unique3TatttooEquipment.png"} +{"name":"Татуировка странствия души","refName":"Journey Tattoo of the Soul","namespace":"ITEM","tradeTag":"journey-tattoo-of-the-soul","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL1VuaXF1ZTNUYXR0dG9vRXF1aXBtZW50Iiwic2NhbGUiOjF9XQ/f83d9c508a/Unique3TatttooEquipment.png"} +{"name":"Посох судьи","refName":"Judgement Staff","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY3IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/c1ded974d5/Staff7.png","w":2,"h":4} +{"name":"Дух суда","refName":"Judgemental Spirit","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0dvZGRlc3NPZkp1c3RpY2VDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/e674a594ff/GoddessOfJusticeCorpse.png","w":3,"h":2} +{"name":"Карта долины джунглей","refName":"Jungle Valley Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/O4q6Op8.jpg"}} +{"name":"Калгууранская сфера Делириума","refName":"Kalguuran Delirium Orb","namespace":"ITEM","tradeTag":"kalguuran-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJFeHBlZGl0aW9uIiwic2NhbGUiOjF9XQ/486dcec31d/DeliriumOrbExpedition.png"} +{"name":"Калгууранский инкубатор","refName":"Kalguuran Incubator","namespace":"ITEM","tradeTag":"kalguuran-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRXhwZWRpdGlvbiIsInNjYWxlIjoxfV0/2916070090/IncubationExpedition.png"} +{"name":"Топор каруи","refName":"Karui Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlMiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/2bb7df0078/OneHandAxe2.png","w":2,"h":3} +{"name":"Рубило каруи","refName":"Karui Chopper","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlMiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/bc8072f8c3/TwoHandAxe2.png","w":2,"h":4} +{"name":"Дубина каруи","refName":"Karui Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2UyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/36201397ff/TwoHandMace2.png","w":2,"h":4} +{"name":"Скипетр каруи","refName":"Karui Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyMiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/e3e72321e0/scepter2.png","w":2,"h":3} +{"name":"Воспоминание Кирака","refName":"Kirac's Memory","namespace":"ITEM","craftable":{"category":"Memory Line"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWVtb3J5TGluZS9LaXJhY01lbW9yeUl0ZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/def36e7b78/KiracMemoryItem.png"} +{"name":"Шлем рыцаря","refName":"Knight Helm","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[268,308],"ev":[268,308]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/07fb25d634/HelmetStrDex6.png","w":2,"h":2} +{"name":"Карта лаборатории","refName":"Laboratory Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/3wlWzSX.jpg"}} +{"name":"Лабрис","refName":"Labrys","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/4b3fbfcd65/TwoHandAxe5.png","w":2,"h":4} +{"name":"Платановый щит духа","refName":"Lacewood Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[47,55]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/99b47eb1fa/ShieldInt2.png","w":2,"h":2} +{"name":"Многослойный баклер","refName":"Lacquered Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[477,549]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/10a005f978/ShieldDex3.png","w":2,"h":2} +{"name":"Лакированное облачение","refName":"Lacquered Garb","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[286,329],"es":[59,68]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/6744d2d486/BodyDexInt2C.png","w":2,"h":3} +{"name":"Шлем командира","refName":"Lacquered Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[138,155],"ev":[138,155]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0884b27765/HelmetStrDex7.png","w":2,"h":2} +{"name":"Карта логова","refName":"Lair Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/Uj6Ef71.jpg"}} +{"name":"Карта логова Гидры","refName":"Lair of the Hydra Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhczJNYXBzL05ldy9IeWRyYSIsInciOjEsImgiOjEsInNjYWxlIjoxLCJtbiI6MTQsIm10IjowLCJtaSI6MX1d/c0a42dd7bc/Hydra.png","map":{"screenshot":"https://i.imgur.com/eOWrITq.jpg"}} +{"name":"Проклеенный каплевидный щит","refName":"Laminated Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[113,133],"es":[23,27]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/23fbb47426/ShieldStrInt3.png","w":2,"h":3} +{"name":"Амулет с лазуритом","refName":"Lapis Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQ1IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/998c42287b/Amulet5.png"} +{"name":"Большой кластерный самоцвет","refName":"Large Cluster Jewel","namespace":"ITEM","craftable":{"category":"Cluster Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL05ld0dlbUJhc2UzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/db35e60885/NewGemBase3.png"} +{"name":"Большой флакон равновесия","refName":"Large Hybrid Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvaHlicmlkZmxhc2s0IiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/541bb93a64/hybridflask4.png","h":2} +{"name":"Большой флакон жизни","refName":"Large Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrMyIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/35b22b6cc3/lifeflask3.png","h":2} +{"name":"Большой флакон маны","refName":"Large Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrMyIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/36c890e698/manaflask3.png","h":2} +{"name":"Бамбуковый посох","refName":"Lathi","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmYzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/9bc79ef01c/Staff3.png","w":2,"h":4} +{"name":"Усиленная байдана","refName":"Latticed Ringmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[216,248],"es":[45,52]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/61293d71af/BodyStrInt1B.png","w":2,"h":3} +{"name":"Карта лавовой тюрьмы","refName":"Lava Chamber Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/XR1YVVq.jpg"}} +{"name":"Карта лавового озера","refName":"Lava Lake Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/G85TEg5.jpg"}} +{"name":"Многослойный каплевидный щит","refName":"Layered Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[62,73],"es":[13,16]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/23fbb47426/ShieldStrInt3.png","w":2,"h":3} +{"name":"Скипетр командира","refName":"Lead Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/4b16d71d85/scepter5.png","w":2,"h":3} +{"name":"Ремень","refName":"Leather Belt","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdDMiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/93af17affd/Belt3.png","w":2} +{"name":"Кожаные наручи","refName":"Leather Bracers","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQnJhY2VyQmFzZVR5cGVfbGVhdGhlciIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/863a42f603/BracerBaseType_leather.png","w":2,"h":2} +{"name":"Кожаный чепец","refName":"Leather Cap","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[19,27]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/765e9b75f1/HelmetDex1.png","w":2,"h":2} +{"name":"Кожаный капюшон","refName":"Leather Hood","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[101,127]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/636c0ab999/HelmetDex3.png","w":2,"h":2} +{"name":"Башмаки из варёной кожи","refName":"Leatherscale Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[12,17],"ev":[12,17]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/bae77b3a2c/BootsStrDex1.png","w":2,"h":2} +{"name":"Сапоги легионера","refName":"Legion Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[104,120],"es":[21,25]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/742e5a15d7/BootsStrInt2.png","w":2,"h":2} +{"name":"Перчатки легионера","refName":"Legion Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[103,121],"es":[21,25]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RySW50MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f09ae395f5/GlovesStrInt2.png","w":2,"h":2} +{"name":"Молот легионера","refName":"Legion Hammer","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U1IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/7a42346f2b/OneHandMace5.png","w":2,"h":3} +{"name":"Латы легионера","refName":"Legion Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[1018,1171]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/429eee131d/BodyStr2C.png","w":2,"h":3} +{"name":"Скарабей Легиона","refName":"Legion Scarab","namespace":"ITEM","tradeTag":"legion-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJMZWdpb24iLCJzY2FsZSI6MX1d/e7b6e5659c/LesserScarabLegion.png"} +{"name":"Скарабей Легиона командования","refName":"Legion Scarab of Command","namespace":"ITEM","tradeTag":"legion-scarab-of-command","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHROb3JtYWxTY2FyYWJMZWdpb24iLCJzY2FsZSI6MX1d/5d88c1f891/AltNormalScarabLegion.png"} +{"name":"Скарабей Легиона вечной войны","refName":"Legion Scarab of Eternal Conflict","namespace":"ITEM","tradeTag":"legion-scarab-of-eternal-conflict","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYkxlZ2lvbiIsInNjYWxlIjoxfV0/4a56211137/Tier4ScarabLegion.png"} +{"name":"Скарабей Легиона офицеров","refName":"Legion Scarab of Officers","namespace":"ITEM","tradeTag":"legion-scarab-of-officers","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJMZWdpb24iLCJzY2FsZSI6MX1d/986b842d3f/NormalScarabLegion.png"} +{"name":"Скарабей Легиона Сехемы","refName":"Legion Scarab of The Sekhema","namespace":"ITEM","tradeTag":"legion-scarab-of-the-sekhema","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiTGVnaW9uIiwic2NhbGUiOjF9XQ/d687801212/GreaterScarabLegion.png"} +{"name":"Меч всадника","refName":"Legion Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/38536bcafb/OneHandSword5.png","w":2,"h":3} +{"name":"Часть меча всадника","refName":"Legion Sword Piece","namespace":"ITEM","craftable":{"category":"Unique Fragment","uniqueOnly":true},"icon":"","w":1,"h":2} +{"name":"Мелкий древний уголёк","refName":"Lesser Eldritch Ember","namespace":"ITEM","tradeTag":"lesser-eldritch-ember","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2xlYW5zaW5nRmlyZU9yYlJhbmsxIiwic2NhbGUiOjF9XQ/c7df0e0316/CleansingFireOrbRank1.png"} +{"name":"Мелкий зловещий ихор","refName":"Lesser Eldritch Ichor","namespace":"ITEM","tradeTag":"lesser-eldritch-ichor","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVGFuZ2xlT3JiUmFuazEiLCJzY2FsZSI6MX1d/70e5e53590/TangleOrbRank1.png"} +{"name":"Перчатки исполина","refName":"Leviathan Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[359,413]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyNCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/468f466568/GlovesStr4.png","w":2,"h":2} +{"name":"Поножи исполина","refName":"Leviathan Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[359,413]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/82bedfd1e0/BootsStr4.png","w":2,"h":2} +{"name":"Перчатки лучей","refName":"Leyline Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[9,10]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUml0dWFsSW50R2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/b698da54ed/RitualIntGloves.png","w":2,"h":2} +{"name":"Карта тропы","refName":"Leyline Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/5UjUxso.jpg"}} +{"name":"Обруч лича","refName":"Lich's Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[117,134]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4bb6b31cbe/HelmetInt8.png","w":2,"h":2} +{"name":"Руна Жизни","refName":"Life Rune","namespace":"ITEM","tradeTag":"life-rune","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2V0dGxlcnMvVmlsbGFnZVJ1bmUxIiwic2NhbGUiOjF9XQ/98d663edbd/VillageRune1.png"} +{"name":"Лёгкая бригандина","refName":"Light Brigandine","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[48,63],"ev":[48,63]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MkEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/c9df1157d4/BodyStrDex2A.png","w":2,"h":3} +{"name":"Карта навигационной башни","refName":"Lighthouse Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/40gXcr4.jpg"}} +{"name":"Липовый каплевидный щит","refName":"Linden Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[43,56],"es":[11,14]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/996436dc6d/ShieldStrInt2.png","w":2,"h":3} +{"name":"Львиная морда","refName":"Lion Pelt","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[380,437]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDEwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/ea03257436/HelmetDex10.png","w":2,"h":2} +{"name":"Меч льва","refName":"Lion Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d69254d0a6/TwoHandSword6.png","w":2,"h":4} +{"name":"Гибкий клинок","refName":"Lithe Blade","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDgiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/decb6a0e86/TwoHandSword8.png","w":2,"h":4} +{"name":"Талисман оленерога-одиночки","refName":"Lone Antler Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbldoaXRlMiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/21377608a3/TalismanWhite2.png"} +{"name":"Длинный лук","refName":"Long Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/c064c479fa/Bow3.png","w":2,"h":4} +{"name":"Длинный посох","refName":"Long Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmYzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/9bc79ef01c/Staff3.png","w":2,"h":4} +{"name":"Длинный меч","refName":"Longsword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDIiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/fcaf050e0f/TwoHandSword2.png","w":2,"h":4} +{"name":"Талисман длиннозуба","refName":"Longtooth Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hblJlZDQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/47b8c0e94f/TalismanRed4.png"} +{"name":"Карта обзорной площадки","refName":"Lookout Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/QNuOzHT.jpg"}} +{"name":"Роскошные латы","refName":"Lordly Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[353,417]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyM0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/09903268a5/BodyStr3C.png","w":2,"h":3} +{"name":"Калантарь","refName":"Loricated Ringmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[325,374],"es":[66,76]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/61293d71af/BodyStrInt1B.png","w":2,"h":3} +{"name":"Светлое ископаемое","refName":"Lucent Fossil","namespace":"ITEM","tradeTag":"lucent-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvTHVjZW50Rm9zc2lsIiwic2NhbGUiOjF9XQ/0cf6de72d4/LucentFossil.png"} +{"name":"Диадема Лунарис","refName":"Lunaris Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[41,48]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/558833af02/HelmetInt6.png","w":2,"h":2} +{"name":"Блестящий оберег","refName":"Lustrous Ward","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvTHVtaW5vdXNXYXJkIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/0be7aaf163/LuminousWard.png","w":2,"h":2} +{"name":"Одержимый инкубатор","refName":"Maddening Incubator","namespace":"ITEM","tradeTag":"maddening-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRGVsaXJpdW0iLCJzY2FsZSI6MX1d/74f49a934c/IncubationDelirium.png"} +{"name":"Посох вихрей","refName":"Maelström Staff","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY1IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/53f1a6b438/Staff5.png","w":2,"h":4} +{"name":"Халат мага","refName":"Mage's Vestment","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[62,69]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9ea39de510/BodyInt1C.png","w":2,"h":3} +{"name":"Корона правителя","refName":"Magistrate Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[160,189],"es":[33,39]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/cf727943d2/HelmetStrInt8.png","w":2,"h":2} +{"name":"Магматический ростовой щит","refName":"Magmatic Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[144,165]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0hlaXN0U2hpZWxkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/e65fb9efea/HeistShield.png","w":2,"h":3} +{"name":"Палисандровый ростовой щит","refName":"Mahogany Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[230,265]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d95a5bfcf0/ShieldStr4.png","w":2,"h":4} +{"name":"Величавая морда","refName":"Majestic Pelt","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[582,669]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDEwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/ea03257436/HelmetDex10.png","w":2,"h":2} +{"name":"Величественные латы","refName":"Majestic Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[530,625]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyM0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/09903268a5/BodyStr3C.png","w":2,"h":3} +{"name":"Карта недр","refName":"Malformation Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/bVcvxGD.jpg"}} +{"name":"Чёрные клыки","refName":"Malign Fangs","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9IZWlzdENsYXciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/7ebe8140fa/HeistClaw.png","w":2,"h":2} +{"name":"Колотушка","refName":"Mallet","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2UzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/5e536c19aa/TwoHandMace3.png","w":2,"h":4} +{"name":"Жестокий топор","refName":"Maltreatment Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9IZWlzdE9uZWhhbmRBeGUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5ba95d3930/HeistOnehandAxe.png","w":2,"h":3} +{"name":"Талисман мандибулы","refName":"Mandible Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9OZXdUYWxpc21hbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c548be9ed4/NewTalisman.png"} +{"name":"Клапанное кольцо","refName":"Manifold Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvSGVpc3RSaW5nMkRhcmsiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/087a05ad4a/HeistRing2Dark.png"} +{"name":"Кленовый круглый щит","refName":"Maple Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[88,99],"ev":[88,99]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9cccab30a2/ShieldStrDex2.png","w":2,"h":3} +{"name":"Лук маракета","refName":"Maraketh Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzkiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/aa9bf2b0d1/Bow9.png","w":2,"h":4} +{"name":"Мраморный амулет","refName":"Marble Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9NYXJibGVBbXVsZXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3dee478d8d/MarbleAmulet.png"} +{"name":"Бригандина маршала","refName":"Marshall's Brigandine","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[627,721],"ev":[627,721]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/60a6d7b58c/BodyStrDex2C.png","w":2,"h":3} +{"name":"Карта болот","refName":"Marshes Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/25Oc1GQ.jpg"}} +{"name":"Сапоги мученика","refName":"Martyr Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[176,203],"es":[35,41]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/742e5a15d7/BootsStrInt2.png","w":2,"h":2} +{"name":"Перчатки мученика","refName":"Martyr Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[176,203],"es":[35,41]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RySW50MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f09ae395f5/GlovesStrInt2.png","w":2,"h":2} +{"name":"Образцовая отмычка","refName":"Master Lockpick","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvTWFzdGVyTG9ja3BpY2siLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c0ac4addef/MasterLockpick.png","w":2,"h":2} +{"name":"Карта мавзолея","refName":"Mausoleum Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/lppiQiQ.jpg"}} +{"name":"Резец Мейвен алчности","refName":"Maven's Chisel of Avarice","namespace":"ITEM","tradeTag":"mavens-chisel-of-avarice","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWF2ZW5DaGlzZWw0Iiwic2NhbGUiOjF9XQ/d878502dc7/MavenChisel4.png"} +{"name":"Резец Мейвен предсказания","refName":"Maven's Chisel of Divination","namespace":"ITEM","tradeTag":"mavens-chisel-of-divination","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWF2ZW5DaGlzZWw1Iiwic2NhbGUiOjF9XQ/ff3e7f02eb/MavenChisel5.png"} +{"name":"Резец Мейвен добычи","refName":"Maven's Chisel of Procurement","namespace":"ITEM","tradeTag":"mavens-chisel-of-procurement","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWF2ZW5DaGlzZWwxIiwic2NhbGUiOjF9XQ/a21d7d73da/MavenChisel1.png"} +{"name":"Резец Мейвен размножения","refName":"Maven's Chisel of Proliferation","namespace":"ITEM","tradeTag":"mavens-chisel-of-proliferation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWF2ZW5DaGlzZWwyIiwic2NhbGUiOjF9XQ/bb82bb4150/MavenChisel2.png"} +{"name":"Резец Мейвен скарабеев","refName":"Maven's Chisel of Scarabs","namespace":"ITEM","tradeTag":"mavens-chisel-of-scarabs","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWF2ZW5DaGlzZWwzIiwic2NhbGUiOjF9XQ/a7a9ac8f01/MavenChisel3.png"} +{"name":"Карта лабиринта","refName":"Maze Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/vPKZUFI.jpg"}} +{"name":"Карта лабиринта Минотавра","refName":"Maze of the Minotaur Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhczJNYXBzL05ldy9NaW5vdGF1ciIsInciOjEsImgiOjEsInNjYWxlIjoxLCJtbiI6MTQsIm10IjowLCJtaSI6MX1d/6bee7d5ef7/Minotaur.png","map":{"screenshot":"https://i.imgur.com/rMcvBGP.jpg"}} +{"name":"Мясодёр","refName":"Meatgrinder","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U1IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/88d16a9600/TwoHandMace5.png","w":2,"h":4} +{"name":"Кусок мяса","refName":"Meatsack","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0Z1bmd1c1pvbWJpZUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/4da2b7756d/FungusZombieCorpse.png","w":3,"h":2} +{"name":"Меха-сигнальный пояс","refName":"Mechalarm Belt","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSGVpc3RCZWx0MiIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/21286700c8/HeistBelt2.png","w":2} +{"name":"Механический пояс","refName":"Mechanical Belt","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSGVpc3RCZWx0MiIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/21286700c8/HeistBelt2.png","w":2} +{"name":"Средний кластерный самоцвет","refName":"Medium Cluster Jewel","namespace":"ITEM","craftable":{"category":"Cluster Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL05ld0dlbUJhc2UyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/78f6bf8356/NewGemBase2.png"} +{"name":"Средний флакон равновесия","refName":"Medium Hybrid Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvaHlicmlkZmxhc2syIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/7ac2158cdf/hybridflask2.png","h":2} +{"name":"Средний флакон жизни","refName":"Medium Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrMiIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/c06020a713/lifeflask2.png","h":2} +{"name":"Средний флакон маны","refName":"Medium Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrMiIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/3c612edd38/manaflask2.png","h":2} +{"name":"Карта плоского холма","refName":"Mesa Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/gvpYUBQ.jpg"}} +{"name":"Полукольчужные сапоги","refName":"Mesh Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[51,64],"es":[11,14]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e75ade3184/BootsStrInt3.png","w":2,"h":2} +{"name":"Усиленные кольчужные перчатки","refName":"Mesh Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[58,67],"es":[12,14]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RySW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7adc65bac6/GlovesStrInt3.png","w":2,"h":2} +{"name":"Металлическое ископаемое","refName":"Metallic Fossil","namespace":"ITEM","tradeTag":"metallic-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvTWV0YWxsaWNGb3NzaWwiLCJzY2FsZSI6MX1d/5a8a5bd1b1/MetallicFossil.png"} +{"name":"Микро-перегонный пояс","refName":"Micro-Distillery Belt","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSGVpc3RCZWx0MSIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/1f77620811/HeistBelt1.png","w":2} +{"name":"Полуночный меч","refName":"Midnight Blade","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDgiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/406f7aec97/OneHandSword8.png","w":2,"h":3} +{"name":"Боевой посох","refName":"Military Staff","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY0IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/85c22bd16b/Staff4.png","w":2,"h":4} +{"name":"Клеть разума","refName":"Mind Cage","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[73,84]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDEwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/79abe1a202/HelmetInt10.png","w":2,"h":2} +{"name":"Карта минеральных озёр","refName":"Mineral Pools Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/AvgBb6c.jpg"}} +{"name":"Зеркало Каландры","refName":"Mirror of Kalandra","namespace":"ITEM","tradeTag":"mirror","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lEdXBsaWNhdGUiLCJzY2FsZSI6MX1d/8d7fea29d1/CurrencyDuplicate.png"} +{"name":"Осколок зеркала","refName":"Mirror Shard","namespace":"ITEM","tradeTag":"mirror-shard","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWlycm9yU2hhcmQiLCJzY2FsZSI6MX1d/698183ea2b/MirrorShard.png"} +{"name":"Зеркальный колючий щит","refName":"Mirrored Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[151,174],"es":[31,35]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/53a98ddeac/ShieldDexInt4.png","w":2,"h":2} +{"name":"Талисман обезьяньей лапки","refName":"Monkey Paw Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Nb25rZXlQYXdUYWxpc21hbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/4eb5202fe4/MonkeyPawTalisman.png"} +{"name":"Талисман близнецов-обезьян","refName":"Monkey Twins Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hblJlZDYiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/2cd96aba6e/TalismanRed6.png"} +{"name":"Лунный посох","refName":"Moon Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY4IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/edbdbaa9ba/Staff8.png","w":2,"h":4} +{"name":"Карта храма Луны","refName":"Moon Temple Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/WoUgaQp.jpg"}} +{"name":"Диадема лунного света","refName":"Moonlit Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[87,100]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/558833af02/HelmetInt6.png","w":2,"h":2} +{"name":"Кольцо с лунным камнем","refName":"Moonstone Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTW9vbnN0b25lUmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6dbab29358/MoonstoneRing.png"} +{"name":"Моргенштерн","refName":"Morning Star","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U4IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/d7f01f7a37/TwoHandMace8.png","w":2,"h":4} +{"name":"Смертное уныние","refName":"Mortal Grief","namespace":"ITEM","tradeTag":"grie","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyVmFhbDA0Iiwic2NhbGUiOjF9XQ/fa8dd8fea2/UberVaal04.png"} +{"name":"Смертная надежда","refName":"Mortal Hope","namespace":"ITEM","tradeTag":"hope","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyVmFhbDAyIiwic2NhbGUiOjF9XQ/9f6c126c9e/UberVaal02.png"} +{"name":"Смертное невежество","refName":"Mortal Ignorance","namespace":"ITEM","tradeTag":"ign","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyVmFhbDAzIiwic2NhbGUiOjF9XQ/3d126fe51b/UberVaal03.png"} +{"name":"Смертный гнев","refName":"Mortal Rage","namespace":"ITEM","tradeTag":"rage","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyVmFhbDAxIiwic2NhbGUiOjF9XQ/9dca208434/UberVaal01.png"} +{"name":"Мозаичный каплевидный щит","refName":"Mosaic Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[147,169],"es":[30,34]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/23fbb47426/ShieldStrInt3.png","w":2,"h":3} +{"name":"Руна Горы","refName":"Mountain Rune","namespace":"ITEM","tradeTag":"mountain-rune","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2V0dGxlcnMvVmlsbGFnZVJ1bmU4Iiwic2NhbGUiOjF9XQ/f5ea7b3aa9/VillageRune8.png"} +{"name":"Карта грязевого гейзера","refName":"Mud Geyser Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/qVVPlhi.jpg"}} +{"name":"Сапоги смерти","refName":"Murder Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[185,213],"es":[18,21]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/bad1ba72df/BootsDexInt4.png","w":2,"h":2} +{"name":"Перчатки смерти","refName":"Murder Mitts","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[121,139],"es":[25,28]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/060b6ea395/GlovesDexInt3.png","w":2,"h":2} +{"name":"Самоцвет кровожадного глаза","refName":"Murderous Eye Jewel","namespace":"ITEM","craftable":{"category":"Abyss Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL011cmRlcm91c0V5ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/439da96896/MurderousEye.png"} +{"name":"Карта музея","refName":"Museum Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/oOrFsgt.jpg"}} +{"name":"Бормочущая сущность злобы","refName":"Muttering Essence of Anger","namespace":"ITEM","tradeTag":"muttering-essence-of-anger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9BbmdlcjIiLCJzY2FsZSI6MX1d/3963f7ecaf/Anger2.png"} +{"name":"Бормочущая сущность презрения","refName":"Muttering Essence of Contempt","namespace":"ITEM","tradeTag":"muttering-essence-of-contempt","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Db250ZW1wdDIiLCJzY2FsZSI6MX1d/13a5416e7b/Contempt2.png"} +{"name":"Бормочущая сущность страха","refName":"Muttering Essence of Fear","namespace":"ITEM","tradeTag":"muttering-essence-of-fear","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9GZWFyMiIsInNjYWxlIjoxfV0/e65af458a0/Fear2.png"} +{"name":"Бормочущая сущность жадности","refName":"Muttering Essence of Greed","namespace":"ITEM","tradeTag":"muttering-essence-of-greed","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVlZDIiLCJzY2FsZSI6MX1d/66dcbcfe6c/Greed2.png"} +{"name":"Бормочущая сущность ненависти","refName":"Muttering Essence of Hatred","namespace":"ITEM","tradeTag":"muttering-essence-of-hatred","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9IYXRyZWQyIiwic2NhbGUiOjF9XQ/cb37284b43/Hatred2.png"} +{"name":"Бормочущая сущность печали","refName":"Muttering Essence of Sorrow","namespace":"ITEM","tradeTag":"muttering-essence-of-sorrow","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Tb3Jyb3cyIiwic2NhbGUiOjF9XQ/d4fa234cf8/Sorrow2.png"} +{"name":"Бормочущая сущность мучения","refName":"Muttering Essence of Torment","namespace":"ITEM","tradeTag":"muttering-essence-of-torment","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Ub3JtZW50MiIsInNjYWxlIjoxfV0/e2ca4c066f/Torment2.png"} +{"name":"Бормочущая сущность скорби","refName":"Muttering Essence of Woe","namespace":"ITEM","tradeTag":"muttering-essence-of-woe","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Xb2UyIiwic2NhbGUiOjF9XQ/de9769c922/Woe2.png"} +{"name":"Загадочный инкубатор","refName":"Mysterious Incubator","namespace":"ITEM","tradeTag":"mysterious-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uR2VuZXJpYyIsInNjYWxlIjoxfV0/9476a818a5/IncubationGeneric.png"} +{"name":"Шипастый кулак","refName":"Nailed Fist","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3MSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/22e3c62f0d/Claw1.png","w":2,"h":2} +{"name":"Безымянное кольцо","refName":"Nameless Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUml0dWFsUmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1213b9959b/RitualRing.png"} +{"name":"Морской контракт","refName":"Naval Contract","namespace":"ITEM","craftable":{"uniqueOnly":true,"category":"Heist Contract"},"icon":""} +{"name":"Морской офицер","refName":"Naval Officer","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0FkbWlyYWxEYXJuYXdDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/ccfa254872/AdmiralDarnawCorpse.png","w":3,"h":2} +{"name":"Обруч некроманта","refName":"Necromancer Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[55,64]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4bb6b31cbe/HelmetInt8.png","w":2,"h":2} +{"name":"Шелка некроманта","refName":"Necromancer Silks","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[123,147]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/3689be0ddd/BodyInt2B.png","w":2,"h":3} +{"name":"Карта некрополя","refName":"Necropolis Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/6cNUs2I.jpg"}} +{"name":"Бледный доспех","refName":"Necrotic Armour","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[723,831],"es":[145,167]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50NEMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/99efce2041/BodyDexInt4C.png","w":2,"h":3} +{"name":"Игольчатый ужас","refName":"Needle Horror","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0RlbW9uQm9zczNDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/6abaea26f2/DemonBoss3Corpse.png","w":3,"h":2} +{"name":"Перчатки нексуса","refName":"Nexus Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[47,54]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUml0dWFsSW50R2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/b698da54ed/RitualIntGloves.png","w":2,"h":2} +{"name":"Кошмарный бацинет","refName":"Nightmare Bascinet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[162,187],"ev":[233,268]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDEwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/4c9ea10e7c/HelmetStrDex10.png","w":2,"h":2} +{"name":"Кошмарная булава","refName":"Nightmare Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U4IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/57786131bb/OneHandMace8.png","w":2,"h":3} +{"name":"Одеяние покрова ночи","refName":"Nightweave Robe","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[227,260]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8b200fbbb5/BodyInt2C.png","w":2,"h":3} +{"name":"Тапочки ночного ветра","refName":"Nightwind Slippers","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[34,39]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SaXR1YWxJbnRCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/dfe31cc493/RitualIntBoots.png","w":2,"h":2} +{"name":"Воспоминание Нико","refName":"Niko's Memory","namespace":"ITEM","craftable":{"category":"Memory Line"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWVtb3J5TGluZS9OaWtvTWVtb3J5SXRlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5c560ea8fd/NikoMemoryItem.png"} +{"name":"Топор вельможи","refName":"Noble Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/e2c34a0fb2/TwoHandAxe6.png","w":2,"h":4} +{"name":"Коготь патриция","refName":"Noble Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/9efad90cdb/Claw7.png","w":2,"h":2} +{"name":"Парадная треуголка","refName":"Noble Tricorne","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[232,266]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/545e1905b3/HelmetDex6.png","w":2,"h":2} +{"name":"Ядовитый катализатор","refName":"Noxious Catalyst","namespace":"ITEM","tradeTag":"noxious-catalyst","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL0NoYW9zUGh5c2ljYWxDYXRhbHlzdCIsInNjYWxlIjoxfV0/2b886f8343/ChaosPhysicalCatalyst.png"} +{"name":"Нубуковые ботинки","refName":"Nubuck Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[113,126]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/76eb290c9b/BootsDex4.png","w":2,"h":2} +{"name":"Нубуковые перчатки","refName":"Nubuck Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[109,122]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/05a8c03e95/GlovesDex4.png","w":2,"h":2} +{"name":"Дубовый баклер","refName":"Oak Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[220,259]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/cffdb4477e/ShieldDex2.png","w":2,"h":2} +{"name":"Микстура из дубовой ветви","refName":"Oakbranch Tincture","namespace":"ITEM","craftable":{"category":"Tincture"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL0NyaXRpY2FsU3RyaWtlU2FwIiwidyI6MSwiaCI6Miwic2NhbGUiOjF9XQ/d7d5d7ef19/CriticalStrikeSap.png","h":2} +{"name":"Затемнённая Сфера Делириума","refName":"Obscured Delirium Orb","namespace":"ITEM","tradeTag":"obscured-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJCcmVhY2giLCJzY2FsZSI6MX1d/0b320eec66/DeliriumOrbBreach.png"} +{"name":"Затемнённый инкубатор","refName":"Obscured Incubator","namespace":"ITEM","tradeTag":"obscured-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQnJlYWNoIiwic2NhbGUiOjF9XQ/e9b256aff0/IncubationBreach.png"} +{"name":"Обсидиановый оселок","refName":"Obsidian Sharpening Stone","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvT2JzaWRpYW5TaGFycGVuaW5nU3RvbmUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3b585d05fe/ObsidianSharpeningStone.png","w":2,"h":2} +{"name":"Халат волшебника","refName":"Occultist's Vestment","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[137,151]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9ea39de510/BodyInt1C.png","w":2,"h":3} +{"name":"Бурый скипетр","refName":"Ochre Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/35e149f5cf/scepter6.png","w":2,"h":3} +{"name":"Подношение богине","refName":"Offering to the Goddess","namespace":"ITEM","tradeTag":"offer","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9MYWJ5cmludGgiLCJzY2FsZSI6MX1d/24fe6dc261/Labyrinth.png"} +{"name":"Экстрактор масел","refName":"Oil Extractor","namespace":"ITEM","tradeTag":"oil-extractor","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9JY2hvckV4dHJhY3RvciIsInNjYWxlIjoxfV0/e020224caf/IchorExtractor.png"} +{"name":"Доспех из дублёной кожи","refName":"Oiled Coat","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[124,146],"es":[28,33]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/360c5ce7d4/BodyDexInt2B.png","w":2,"h":3} +{"name":"Жилет из дублёной кожи","refName":"Oiled Vest","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[54,70],"es":[14,18]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MkEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2b44daac92/BodyDexInt2A.png","w":2,"h":3} +{"name":"Предсказание адреналина","refName":"Omen of Adrenaline","namespace":"ITEM","tradeTag":"omen-of-adrenaline","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zM1llbGxvdyIsInNjYWxlIjoxfV0/3713d430a2/VoodooOmens3Yellow.png"} +{"name":"Предсказание избавления","refName":"Omen of Amelioration","namespace":"ITEM","tradeTag":"omen-of-amelioration","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zMUJsdWUiLCJzY2FsZSI6MX1d/7af7f24083/VoodooOmens1Blue.png"} +{"name":"Предсказание обеления","refName":"Omen of Blanching","namespace":"ITEM","tradeTag":"omen-of-blanching","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zNFB1cnBsZSIsInNjYWxlIjoxfV0/cc40d87dcb/VoodooOmens4Purple.png"} +{"name":"Предсказание великолепия","refName":"Omen of Brilliance","namespace":"ITEM","tradeTag":"omen-of-brilliance","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zNEJsdWUiLCJzY2FsZSI6MX1d/0fb19e3399/VoodooOmens4Blue.png"} +{"name":"Предсказание связей","refName":"Omen of Connections","namespace":"ITEM","tradeTag":"omen-of-connections","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zM1B1cnBsZSIsInNjYWxlIjoxfV0/ef5b7d0a85/VoodooOmens3Purple.png"} +{"name":"Предсказание танца со смертью","refName":"Omen of Death-dancing","namespace":"ITEM","tradeTag":"omen-of-death-dancing","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zMVllbGxvdyIsInNjYWxlIjoxfV0/cbc6367481/VoodooOmens1Yellow.png"} +{"name":"Предсказание Врат Смерти","refName":"Omen of Death's Door","namespace":"ITEM","tradeTag":"omen-of-deaths-door","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zNFllbGxvdyIsInNjYWxlIjoxfV0/6e22195c5b/VoodooOmens4Yellow.png"} +{"name":"Предсказание удачи","refName":"Omen of Fortune","namespace":"ITEM","tradeTag":"omen-of-fortune","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zMVB1cnBsZSIsInNjYWxlIjoxfV0/f7558b6e48/VoodooOmens1Purple.png"} +{"name":"Предсказание восполнения","refName":"Omen of Refreshment","namespace":"ITEM","tradeTag":"omen-of-refreshment","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zMlllbGxvdyIsInNjYWxlIjoxfV0/292381414c/VoodooOmens2Yellow.png"} +{"name":"Предсказание возвращения","refName":"Omen of Return","namespace":"ITEM","tradeTag":"omen-of-return","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zMkJsdWUiLCJzY2FsZSI6MX1d/bd2fd8bf5b/VoodooOmens2Blue.png"} +{"name":"Предсказание златокузнеца","refName":"Omen of the Jeweller","namespace":"ITEM","tradeTag":"omen-of-the-jeweller","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zMlB1cnBsZSIsInNjYWxlIjoxfV0/220fd7098d/VoodooOmens2Purple.png"} +{"name":"Предсказание Пожирателя душ","refName":"Omen of the Soul Devourer","namespace":"ITEM","tradeTag":"omen-of-the-soul-devourer","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zvb2Rvb09tZW5zM0JsdWUiLCJzY2FsZSI6MX1d/00f28b94e2/VoodooOmens3Blue.png"} +{"name":"Жезл предвестия","refName":"Omen Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNiIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/30763e0fe7/Wand6.png","h":3} +{"name":"Амулет с ониксом","refName":"Onyx Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQ3IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/58942b1ab3/Amulet7.png"} +{"name":"Кольцо с опалом","refName":"Opal Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvT3BhbFJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8c87f65b28/OpalRing.png"} +{"name":"Опаловый скипетр","refName":"Opal Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/c986bafb78/scepter4.png","w":2,"h":3} +{"name":"Опаловый жезл","refName":"Opal Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNCIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/b505ad92e7/Wand4.png","h":3} +{"name":"Перламутровое масло","refName":"Opalescent Oil","namespace":"ITEM","tradeTag":"opalescent-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9PcGFsZXNjZW50T2lsIiwic2NhbGUiOjF9XQ/abd419a154/OpalescentOil.png"} +{"name":"Оперативный доклад разведки","refName":"Operative's Scouting Report","namespace":"ITEM","tradeTag":"operatives-scouting-report","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png"} +{"name":"Богатое ископаемое","refName":"Opulent Fossil","namespace":"ITEM","tradeTag":"opulent-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUGVyZmVjdEZvc3NpbCIsInNjYWxlIjoxfV0/f9e43ecadb/PerfectFossil.png"} +{"name":"Сфера алхимии","refName":"Orb of Alchemy","namespace":"ITEM","tradeTag":"alch","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lVcGdyYWRlVG9SYXJlIiwic2NhbGUiOjF9XQ/0c72cd1d44/CurrencyUpgradeToRare.png"} +{"name":"Сфера перемен","refName":"Orb of Alteration","namespace":"ITEM","tradeTag":"alt","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lSZXJvbGxNYWdpYyIsInNjYWxlIjoxfV0/6308fc8ca2/CurrencyRerollMagic.png"} +{"name":"Сфера отмены","refName":"Orb of Annulment","namespace":"ITEM","tradeTag":"annul","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5udWxsT3JiIiwic2NhbGUiOjF9XQ/0858a418ac/AnnullOrb.png"} +{"name":"Сфера усиления","refName":"Orb of Augmentation","namespace":"ITEM","tradeTag":"aug","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lBZGRNb2RUb01hZ2ljIiwic2NhbGUiOjF9XQ/d879c15321/CurrencyAddModToMagic.png"} +{"name":"Сфера сплетения","refName":"Orb of Binding","namespace":"ITEM","tradeTag":"orb-of-binding","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmluZGluZ09yYiIsInNjYWxlIjoxfV0/aac9579bd2/BindingOrb.png"} +{"name":"Сфера удачи","refName":"Orb of Chance","namespace":"ITEM","tradeTag":"chance","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lVcGdyYWRlUmFuZG9tbHkiLCJzY2FsZSI6MX1d/a3f9bf0917/CurrencyUpgradeRandomly.png"} +{"name":"Сфера вражды","refName":"Orb of Conflict","namespace":"ITEM","tradeTag":"orb-of-conflict","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ29uZmxpY3RPcmJSYW5rMSIsInNjYWxlIjoxfV0/7e02c990fc/ConflictOrbRank1.png"} +{"name":"Сфера господства","refName":"Orb of Dominance","namespace":"ITEM","tradeTag":"mavens-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWF2ZW5PcmIiLCJzY2FsZSI6MX1d/f307d80bfd/MavenOrb.png"} +{"name":"Сфера соединения","refName":"Orb of Fusing","namespace":"ITEM","tradeTag":"fusing","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lSZXJvbGxTb2NrZXRMaW5rcyIsInNjYWxlIjoxfV0/c5e1959880/CurrencyRerollSocketLinks.png"} +{"name":"Сфера горизонтов","refName":"Orb of Horizons","namespace":"ITEM","tradeTag":"orb-of-horizons","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSG9yaXpvbk9yYiIsInNjYWxlIjoxfV0/0891338fb0/HorizonOrb.png"} +{"name":"Сфера раскаяния","refName":"Orb of Regret","namespace":"ITEM","tradeTag":"regret","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lQYXNzaXZlU2tpbGxSZWZ1bmQiLCJzY2FsZSI6MX1d/32d499f562/CurrencyPassiveSkillRefund.png"} +{"name":"Сфера очищения","refName":"Orb of Scouring","namespace":"ITEM","tradeTag":"scour","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lDb252ZXJ0VG9Ob3JtYWwiLCJzY2FsZSI6MX1d/a0981d67fe/CurrencyConvertToNormal.png"} +{"name":"Сфера превращения","refName":"Orb of Transmutation","namespace":"ITEM","tradeTag":"transmute","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lVcGdyYWRlVG9NYWdpYyIsInNjYWxlIjoxfV0/ded9e8ee63/CurrencyUpgradeToMagic.png"} +{"name":"Сфера небытия","refName":"Orb of Unmaking","namespace":"ITEM","tradeTag":"orb-of-unmaking","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUmVncmV0T3JiIiwic2NhbGUiOjF9XQ/beae1b00c7/RegretOrb.png"} +{"name":"Карта фруктовых садов","refName":"Orchard Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/S5wxemk.jpg"}} +{"name":"Изысканный инкубатор","refName":"Ornate Incubator","namespace":"ITEM","tradeTag":"ornate-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQ3VycmVuY3kiLCJzY2FsZSI6MX1d/e8a6d32623/IncubationCurrency.png"} +{"name":"Украшенная булава","refName":"Ornate Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U3IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/84402507d1/OneHandMace7.png","w":2,"h":3} +{"name":"Витиеватый колчан","refName":"Ornate Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9UcmlnZ2VyUXVpdmVyVW5pcXVlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/925018d4b5/TriggerQuiverUnique.png","w":2,"h":3} +{"name":"Парадный кольчатый доспех","refName":"Ornate Ringmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[259,298],"es":[54,62]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/3247afb396/BodyStrInt1C.png","w":2,"h":3} +{"name":"Украшенный колючий щит","refName":"Ornate Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[120,135],"es":[26,29]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3f3c95a49a/ShieldDexInt5.png","w":2,"h":2} +{"name":"Украшенный меч","refName":"Ornate Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d69254d0a6/TwoHandSword6.png","w":2,"h":4} +{"name":"Дрожащий скипетр","refName":"Oscillating Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9IZWlzdFNjZXB0cmVFbGVtZW50YWwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/34e5d78ab3/HeistSceptreElemental.png","w":2,"h":3} +{"name":"Потусторонний инкубатор","refName":"Otherworldly Incubator","namespace":"ITEM","tradeTag":"otherworldly-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uTWFwcyIsInNjYWxlIjoxfV0/3d07c20be0/IncubationMaps.png"} +{"name":"Потусторонний доклад разведки","refName":"Otherworldly Scouting Report","namespace":"ITEM","tradeTag":"otherworldly-scouting-report","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png"} +{"name":"Ключ от Реликвария забвения","refName":"Oubliette Reliquary Key","namespace":"ITEM","tradeTag":"oubliette-reliquary-key","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TaXJ1c0ZvaWwiLCJzY2FsZSI6MX1d/1ada8ca2a7/SirusFoil.png"} +{"name":"Карта заросших руин","refName":"Overgrown Ruin Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/U1gMZhT.jpg"}} +{"name":"Карта заросшей обители","refName":"Overgrown Shrine Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/vXh4QKk.jpg"}} +{"name":"Набивной доспех","refName":"Padded Jacket","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[102,128],"es":[24,29]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/333216677b/BodyDexInt1B.png","w":2,"h":3} +{"name":"Стёганый доспех","refName":"Padded Vest","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[27,38],"es":[9,13]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MUEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/4e0c88b753/BodyDexInt1A.png","w":2,"h":3} +{"name":"Жезл язычника","refName":"Pagan Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNyIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/84ced52bef/Wand7.png","h":3} +{"name":"Художник боли","refName":"Pain Artist","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0FmZmxpY3Rpb25NaW5pb24yQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/afa1eaea1c/AfflictionMinion2Corpse.png","w":3,"h":2} +{"name":"Железный баклер","refName":"Painted Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[123,154]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/10a005f978/ShieldDex3.png","w":2,"h":2} +{"name":"Расписной ростовой щит","refName":"Painted Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[188,216]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/80f9f1abea/ShieldStr7.png","w":2,"h":4} +{"name":"Карта дворца","refName":"Palace Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/U7ABlGw.jpg"}} +{"name":"Сапоги паладина","refName":"Paladin Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[205,236],"es":[41,47]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e75ade3184/BootsStrInt3.png","w":2,"h":2} +{"name":"Корона паладина","refName":"Paladin Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[308,355],"es":[62,71]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/607b69e687/HelmetStrInt7.png","w":2,"h":2} +{"name":"Перчатки паладина","refName":"Paladin Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[205,236],"es":[41,47]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RySW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7adc65bac6/GlovesStrInt3.png","w":2,"h":2} +{"name":"Хауберг паладина","refName":"Paladin's Hauberk","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[627,721],"es":[126,145]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5a1804c81b/BodyStrInt2C.png","w":2,"h":3} +{"name":"Папирус","refName":"Papyrus Relic","namespace":"ITEM","craftable":{"category":"Sanctum Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljQmFzZTR4MSIsInciOjQsImgiOjEsInNjYWxlIjoxfV0/978c0b6ab9/RelicBase4x1.png","w":4} +{"name":"Карта парка","refName":"Park Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/HlFwmtM.jpg"}} +{"name":"Амулет из ракушек","refName":"Paua Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQxIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/aa977ebe43/Amulet1.png"} +{"name":"Кольцо с ракушкой","refName":"Paua Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4f08d18365/Ring3.png"} +{"name":"Сабля пекораро","refName":"Pecoraro","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjQiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/dc28604809/Rapier4.png","h":4} +{"name":"Карта загона","refName":"Pen Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/FYax6WD.jpg"}} +{"name":"Колчан боевых стрел","refName":"Penetrating Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJQZW5ldHJhdGluZyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/7db7561558/QuiverPenetrating.png","w":2,"h":3} +{"name":"Карта мыса","refName":"Peninsula Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/5YycEWs.jpg"}} +{"name":"Маска кающегося","refName":"Penitent Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[185,212],"ev":[185,212]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleFIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f63493ca95/HelmetStrDexR.png","w":2,"h":2} +{"name":"Совершенный богохульник","refName":"Perfect Blasphemer","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0dlb2ZyaUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/c8c02e1c54/GeofriCorpse.png","w":3,"h":2} +{"name":"Совершенный кровавый демон","refName":"Perfect Blood Demon","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0hlbGxzY2FwZURlbW9uQm9zc0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/9bcd7bb5b8/HellscapeDemonBossCorpse.png","w":3,"h":2} +{"name":"Совершенный танцующий меч","refName":"Perfect Dancing Sword","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0FuaW1hdGVkV2VhcG9uQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/2720caa383/AnimatedWeaponCorpse.png","w":3,"h":2} +{"name":"Совершенная тёмная марионетка","refName":"Perfect Dark Marionette","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JvYm90TWFubmVxdWluQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/2ad85223a4/RobotMannequinCorpse.png","w":3,"h":2} +{"name":"Совершенный тёмный жнец","refName":"Perfect Dark Reaper","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JlYXBlckJvc3NDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/d6c81d82f9/ReaperBossCorpse.png","w":3,"h":2} +{"name":"Совершенный друидский алхимик","refName":"Perfect Druidic Alchemist","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Rhd2hvYU1lZGljaW5lV29tYW5Db3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/a446a2f4d0/TawhoaMedicineWomanCorpse.png","w":3,"h":2} +{"name":"Совершенный жуткий глаз","refName":"Perfect Eldritch Eye","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0VsZGVyVGVudGFjbGVNaW5pb25MYXJnZUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/19b67ee9a1/ElderTentacleMinionLargeCorpse.png","w":3,"h":2} +{"name":"Совершенный огненный людоед","refName":"Perfect Fiery Cannibal","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0ZpcmVGdXJ5Q29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/458c4ab871/FireFuryCorpse.png","w":3,"h":2} +{"name":"Совершенный лесной тигр","refName":"Perfect Forest Tiger","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1RpZ2VyQmVzdGlhcnlTcGlyaXRCb3NzQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/6a46a7dc19/TigerBestiarySpiritBossCorpse.png","w":3,"h":2} +{"name":"Совершенный воин леса","refName":"Perfect Forest Warrior","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Zpa2luZ01hcEJvc3NDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/cc6f33141d/VikingMapBossCorpse.png","w":3,"h":2} +{"name":"Совершенный мёрзлый людоед","refName":"Perfect Frozen Cannibal","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0hhaWxyYWtlQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/a3828d3005/HailrakeCorpse.png","w":3,"h":2} +{"name":"Совершенная охраняющая черепаха","refName":"Perfect Guardian Turtle","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1Jvbmdva3VyYWlTcGlyaXRUb3J0b2lzZUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/5cdaded7da/RongokuraiSpiritTortoiseCorpse.png","w":3,"h":2} +{"name":"Совершенный полузабытый исполин","refName":"Perfect Half-remembered Goliath","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1N5bnRoZXNpc0dvbGVtQm9zc0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/aed2848215/SynthesisGolemBossCorpse.png","w":3,"h":2} +{"name":"Совершенный сотворённый увалень","refName":"Perfect Hulking Miscreation","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JvYm90QXJndXNNaW5pYm9zc0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/b72efcb93e/RobotArgusMinibossCorpse.png","w":3,"h":2} +{"name":"Совершенная гидра","refName":"Perfect Hydra","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0h5ZHJhQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/cd848db11b/HydraCorpse.png","w":3,"h":2} +{"name":"Совершенный Дух суда","refName":"Perfect Judgemental Spirit","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0dvZGRlc3NPZkp1c3RpY2VDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/e674a594ff/GoddessOfJusticeCorpse.png","w":3,"h":2} +{"name":"Совершенный кусок мяса","refName":"Perfect Meatsack","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0Z1bmd1c1pvbWJpZUNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/4da2b7756d/FungusZombieCorpse.png","w":3,"h":2} +{"name":"Совершенный морской офицер","refName":"Perfect Naval Officer","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0FkbWlyYWxEYXJuYXdDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/ccfa254872/AdmiralDarnawCorpse.png","w":3,"h":2} +{"name":"Совершенный игольчатый ужас","refName":"Perfect Needle Horror","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0RlbW9uQm9zczNDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/6abaea26f2/DemonBoss3Corpse.png","w":3,"h":2} +{"name":"Совершенный художник боли","refName":"Perfect Pain Artist","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0FmZmxpY3Rpb25NaW5pb24yQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/afa1eaea1c/AfflictionMinion2Corpse.png","w":3,"h":2} +{"name":"Совершенный первобытный демиург","refName":"Perfect Primal Demiurge","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0NydXNhZGVyTWFuYVBoYW50YXNtQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/66bb067c9b/CrusaderManaPhantasmCorpse.png","w":3,"h":2} +{"name":"Совершенная первобытная громовая птица","refName":"Perfect Primal Thunderbird","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JhdmVuQm9zc0JsdWVDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/1a1ed30e2f/RavenBossBlueCorpse.png","w":3,"h":2} +{"name":"Совершенный рунический скелет","refName":"Perfect Runic Skeleton","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1N3b3JkU2tlbGV0b25Db3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/171f40accf/SwordSkeletonCorpse.png","w":3,"h":2} +{"name":"Совершенный демон-кровомант","refName":"Perfect Sanguimancer Demon","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0hlbGxzY2FwZURlbW9uRWxpdGUyQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/a795ad40fa/HellscapeDemonElite2Corpse.png","w":3,"h":2} +{"name":"Совершенный пилорукий ужас","refName":"Perfect Sawblade Horror","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0RlbW9uQm9zczFDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/27f61146a0/DemonBoss1Corpse.png","w":3,"h":2} +{"name":"Совершенный змеевоин","refName":"Perfect Serpent Warrior","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0F0bGFzRXhpbGUzQXBwYXJpdGlvbkNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/127b613caf/AtlasExile3ApparitionCorpse.png","w":3,"h":2} +{"name":"Совершенный тёмный берсерк","refName":"Perfect Shadow Berserker","namespace":"ITEM","icon":"%NOT_FOUND%","w":3,"h":2} +{"name":"Совершенный тёмный механизм","refName":"Perfect Shadow Construct","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0luY2FTaGFkb3dCb3NzQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/acddc4a119/IncaShadowBossCorpse.png","w":3,"h":2} +{"name":"Совершенный секущий ужас","refName":"Perfect Slashing Horror","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0RlbW9uQm9zczJDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/211195cd4d/DemonBoss2Corpse.png","w":3,"h":2} +{"name":"Совершенная паучиха-матриарх","refName":"Perfect Spider Matriarch","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0JsYWNrRGVhdGhCb3NzQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/658153825a/BlackDeathBossCorpse.png","w":3,"h":2} +{"name":"Совершенный Дух удачи","refName":"Perfect Spirit of Fortune","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0t1ZHVrdVRvdGVtQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/7faf1de77b/KudukuTotemCorpse.png","w":3,"h":2} +{"name":"Совершенный вождь","refName":"Perfect Warlord","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL09ha0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/9a9c4d9ada/OakCorpse.png","w":3,"h":2} +{"name":"Пернач","refName":"Pernach","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U2IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/a2a18837d4/OneHandMace6.png","w":2,"h":3} +{"name":"Окаменелая дубинка","refName":"Petrified Club","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2UyIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/75d926bb65/OneHandMace2.png","h":3} +{"name":"Карта фантасмагории","refName":"Phantasmagoria Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/yCDYKxA.jpg"}} +{"name":"Сапоги призрака","refName":"Phantom Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[205,236],"es":[41,47]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/bad1ba72df/BootsDexInt4.png","w":2,"h":2} +{"name":"Призрачная булава","refName":"Phantom Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U4IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/57786131bb/OneHandMace8.png","w":2,"h":3} +{"name":"Перчатки призрака","refName":"Phantom Mitts","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[205,236],"es":[41,47]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/060b6ea395/GlovesDexInt3.png","w":2,"h":2} +{"name":"Карта причала","refName":"Pier Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/rZMXMj1.jpg"}} +{"name":"Клювастый бацинет","refName":"Pig-Faced Bascinet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[229,263],"ev":[159,183]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f0313fc805/HelmetStrDex9.png","w":2,"h":2} +{"name":"Забиватель","refName":"Piledriver","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U0IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/8c1f2059d0/TwoHandMace4.png","w":2,"h":4} +{"name":"Сосновый баклер","refName":"Pine Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[51,66]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/cffdb4477e/ShieldDex2.png","w":2,"h":2} +{"name":"Лучший ростовой щит","refName":"Pinnacle Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[467,537]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/80f9f1abea/ShieldStr7.png","w":2,"h":4} +{"name":"Карта ямы","refName":"Pit Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/PkwpOv0.jpg"}} +{"name":"Карта ямы Химеры","refName":"Pit of the Chimera Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhczJNYXBzL05ldy9DaGltZXJhIiwidyI6MSwiaCI6MSwic2NhbGUiOjEsIm1uIjoxNCwibXQiOjAsIm1pIjoxfV0/c48b6d1b55/Chimera.png","map":{"screenshot":"https://i.imgur.com/ey3258Y.jpg"}} +{"name":"Чумная маска","refName":"Plague Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[29,38],"es":[7,10]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/1bcda70f31/HelmetDexInt2.png","w":2,"h":2} +{"name":"Дощатый каплевидный щит","refName":"Plank Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[18,25],"es":[5,7]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/beeb773dcf/ShieldStrInt1.png","w":2,"h":3} +{"name":"Панцирь","refName":"Plate Vest","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[19,27]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMUEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/027d388361/BodyStr1A.png","w":2,"h":3} +{"name":"Карта плоскогорья","refName":"Plateau Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/0t2NnqI.jpg"}} +{"name":"Латные перчатки","refName":"Plated Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[39,50]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyMiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/557280e2c8/GlovesStr2.png","w":2,"h":2} +{"name":"Латные поножи","refName":"Plated Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[77,96]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/56efa25c50/BootsStr3.png","w":2,"h":2} +{"name":"Позолоченный молот","refName":"Plated Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U2IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/a114ad5617/TwoHandMace6.png","w":2,"h":4} +{"name":"Платиновый крис","refName":"Platinum Kris","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjYiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/5dcee0019c/Dagger6.png","h":3} +{"name":"Платиновый скипетр","refName":"Platinum Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/4b16d71d85/scepter5.png","w":2,"h":3} +{"name":"Карта площади","refName":"Plaza Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/kYGkNDs.jpg"}} +{"name":"Пневматический кинжал","refName":"Pneumatic Dagger","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0hlaXN0RGFnZ2VyIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/d484666b70/HeistDagger.png","h":3} +{"name":"Дага","refName":"Poignard","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/954af836f7/Dagger4.png","h":3} +{"name":"Микстура из паслёна","refName":"Poisonberry Tincture","namespace":"ITEM","craftable":{"category":"Tincture"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL1BvaXNvblNhcCIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/d8e5f6cbdc/PoisonSap.png","h":2} +{"name":"Полярный баклер","refName":"Polar Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[123,142]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0RleEhlaXN0U2hpZWxkIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/484b5bba00/DexHeistShield.png","w":2,"h":2} +{"name":"Полярное приглашение","refName":"Polaric Invitation","namespace":"ITEM","craftable":{"category":"Invitation"},"tradeTag":"polaric-invitation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVlc3RJdGVtcy9DbGVhbnNpbmdGaXJlT3JiUXVlc3QwIiwic2NhbGUiOjF9XQ/b5b962d0c8/CleansingFireOrbQuest0.png"} +{"name":"Алебарда","refName":"Poleaxe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/24ac93d9cd/TwoHandAxe4.png","w":2,"h":4} +{"name":"Гладкий чуящий амулет","refName":"Polished Sensing Charm","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvUG9saXNoZWRTZW5zaW5nQ2hhcm0iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/395f37968e/PolishedSensingCharm.png","w":2,"h":2} +{"name":"Полированный колючий щит","refName":"Polished Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[111,131],"es":[23,27]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/53a98ddeac/ShieldDexInt4.png","w":2,"h":2} +{"name":"Карта порта","refName":"Port Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/9KprAxq.jpg"}} +{"name":"Свиток портала","refName":"Portal Scroll","namespace":"ITEM","tradeTag":"portal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lQb3J0YWwiLCJzY2FsZSI6MX1d/d92d3478a0/CurrencyPortal.png"} +{"name":"Активный алхимический резонатор","refName":"Potent Alchemical Resonator","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvVXBncmFkZTJ4MUIiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MX1d/0a97cfef85/Upgrade2x1B.png","h":2} +{"name":"Активный хаотический резонатор","refName":"Potent Chaotic Resonator","namespace":"ITEM","tradeTag":"potent-chaotic-resonator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUmVyb2xsMngxQSIsInNjYWxlIjoxfV0/bee1bcfe36/Reroll2x1A.png","h":2} +{"name":"Стержень потенциала","refName":"Potentiality Rod","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGVpc3RXYXJTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/c9454891da/HeistWarStaff.png","w":2,"h":4} +{"name":"Руна Силы","refName":"Power Rune","namespace":"ITEM","tradeTag":"power-rune","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2V0dGxlcnMvVmlsbGFnZVJ1bmUxMCIsInNjYWxlIjoxfV0/7a75e42c42/VillageRune10.png"} +{"name":"Мощный алхимический резонатор","refName":"Powerful Alchemical Resonator","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvVXBncmFkZTJ4MkEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/30b32cdb00/Upgrade2x2A.png","w":2,"h":2} +{"name":"Мощный хаотический резонатор","refName":"Powerful Chaotic Resonator","namespace":"ITEM","tradeTag":"powerful-chaotic-resonator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUmVyb2xsMngyQSIsInNjYWxlIjoxfV0/80b90b6b94/Reroll2x2A.png","w":2,"h":2} +{"name":"Корона претора","refName":"Praetor Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[161,185],"es":[51,58]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDEwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/6eed6bbe8e/HelmetStrInt10.png","w":2,"h":2} +{"name":"Карта окрестностей","refName":"Precinct Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/fAJ8DcM.jpg"}} +{"name":"Точный наконечник","refName":"Precise Arrowhead","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQXJyb3doZWFkUHJlY2lzZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/6cb3029c66/ArrowheadPrecise.png","w":2,"h":2} +{"name":"Перчатки предтечи","refName":"Precursor Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[307,353]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyMyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f5896830bf/GlovesStr3.png","w":2,"h":2} +{"name":"Поножи предтечи","refName":"Precursor Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[307,353]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/56efa25c50/BootsStr3.png","w":2,"h":2} +{"name":"Доисторический кастет","refName":"Prehistoric Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ae1fb6dddd/Claw6.png","w":2,"h":2} +{"name":"Оберегающие перчатки","refName":"Preserving Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[35,41]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUml0dWFsU3RyR2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/254b8a0066/RitualStrGloves.png","w":2,"h":2} +{"name":"Герметизированный кинжал","refName":"Pressurised Dagger","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0hlaXN0RGFnZ2VyIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/d484666b70/HeistDagger.png","h":3} +{"name":"Превентивный контракт","refName":"Preventative Contract","namespace":"ITEM","craftable":{"uniqueOnly":true,"category":"Heist Contract"},"icon":""} +{"name":"Колчан первозданных стрел","refName":"Primal Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9SaWtlclJpblF1aXZlciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/8f01e6977f/RikerRinQuiver.png","w":2,"h":3} +{"name":"Первобытная кристализованная жизненная сила","refName":"Primal Crystallised Lifeforce","namespace":"ITEM","tradeTag":"primal-lifeforce","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9QcmltYWxMaWZlZm9yY2UiLCJzY2FsZSI6MX1d/c498cdfd7f/PrimalLifeforce.png"} +{"name":"Первобытная сфера Делириума","refName":"Primal Delirium Orb","namespace":"ITEM","tradeTag":"primal-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJUYWxpc21hbnMiLCJzY2FsZSI6MX1d/7fd8a5c64e/DeliriumOrbTalismans.png"} +{"name":"Первобытный демиург","refName":"Primal Demiurge","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0NydXNhZGVyTWFuYVBoYW50YXNtQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/66bb067c9b/CrusaderManaPhantasmCorpse.png","w":3,"h":2} +{"name":"Первобытный инкубатор","refName":"Primal Incubator","namespace":"ITEM","tradeTag":"primal-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uVGFsaXNtYW5zIiwic2NhbGUiOjF9XQ/994245860e/IncubationTalismans.png"} +{"name":"Талисман первочерепа","refName":"Primal Skull Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbkJsYWNrNyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c02ff6ddaf/TalismanBlack7.png"} +{"name":"Первобытная громовая птица","refName":"Primal Thunderbird","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1JhdmVuQm9zc0JsdWVDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/1a1ed30e2f/RavenBossBlueCorpse.png","w":3,"h":2} +{"name":"Превосходный алхимический резонатор","refName":"Prime Alchemical Resonator","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvVXBncmFkZTJ4MkMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5192b134c8/Upgrade2x2C.png","w":2,"h":2} +{"name":"Превосходный хаотический резонатор","refName":"Prime Chaotic Resonator","namespace":"ITEM","tradeTag":"prime-chaotic-resonator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUmVyb2xsMngyQyIsInNjYWxlIjoxfV0/c624d45072/Reroll2x2C.png","w":2,"h":2} +{"name":"Превосходный секач","refName":"Prime Cleaver","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9IZWlzdFR3b0hhbmRBeGUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/4aef1881cc/HeistTwoHandAxe.png","w":2,"h":4} +{"name":"Древняя рапира","refName":"Primeval Rapier","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjYiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/f9bc0a5aa1/Rapier6.png","h":4} +{"name":"Простейший алхимический резонатор","refName":"Primitive Alchemical Resonator","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvVXBncmFkZTF4MUEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/bf5a71a635/Upgrade1x1A.png"} +{"name":"Простейший хаотический резонатор","refName":"Primitive Chaotic Resonator","namespace":"ITEM","tradeTag":"primitive-chaotic-resonator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUmVyb2xsMXgxQSIsInNjYWxlIjoxfV0/9c7dcd6158/Reroll1x1A.png"} +{"name":"Простейший посох","refName":"Primitive Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmYyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/69ff746d86/Staff2.png","w":2,"h":4} +{"name":"Карта первобытного поселения","refName":"Primordial Blocks Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/TtaIepR.jpg"}} +{"name":"Первобытный фрагмент","refName":"Primordial Fragment","namespace":"ITEM","craftable":{"category":"Unique Fragment","uniqueOnly":true},"icon":""} +{"name":"Карта древнего озера","refName":"Primordial Pool Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/Fxl9Naf.jpg"}} +{"name":"Древний посох","refName":"Primordial Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmYyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/69ff746d86/Staff2.png","w":2,"h":4} +{"name":"Радужный катализатор","refName":"Prismatic Catalyst","namespace":"ITEM","tradeTag":"prismatic-catalyst","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL1ByaXNtYXRpY0NhdGFseXN0Iiwic2NhbGUiOjF9XQ/1e725fd26d/PrismaticCatalyst.png"} +{"name":"Радужное ископаемое","refName":"Prismatic Fossil","namespace":"ITEM","tradeTag":"prismatic-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUHJpc21hdGljRm9zc2lsIiwic2NhbGUiOjF9XQ/af5347946f/PrismaticFossil.png"} +{"name":"Радужный самоцвет","refName":"Prismatic Jewel","namespace":"ITEM","craftable":{"category":"Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL01hc3RlcnkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/eb1cf5699e/Mastery.png"} +{"name":"Радужное масло","refName":"Prismatic Oil","namespace":"ITEM","tradeTag":"prismatic-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9QcmlzbWF0aWNPaWwiLCJzY2FsZSI6MX1d/271183afbe/PrismaticOil.png"} +{"name":"Радужное кольцо","refName":"Prismatic Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzEyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/51db874b5c/Ring12.png"} +{"name":"Микстура из цветных ягод","refName":"Prismatic Tincture","namespace":"ITEM","craftable":{"category":"Tincture"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL1ByaXNtYXRpY1NhcCIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/81563db8c1/PrismaticSap.png","h":2} +{"name":"Чистое ископаемое","refName":"Pristine Fossil","namespace":"ITEM","tradeTag":"pristine-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUHJpc3RpbmVGb3NzaWwiLCJzY2FsZSI6MX1d/bc91a1b44b/PristineFossil.png"} +{"name":"Кадило","refName":"Processional Relic","namespace":"ITEM","craftable":{"category":"Sanctum Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljQmFzZTF4MyIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/d1a161fb4d/RelicBase1x3.png","h":3} +{"name":"Жезл отступника","refName":"Profane Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNyIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/84ced52bef/Wand7.png","h":3} +{"name":"Карта прогулочного парка","refName":"Promenade Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/Q8E3SQ5.jpg"}} +{"name":"Жало","refName":"Prong Dagger","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjkiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/ac5b740611/Dagger9.png","h":3} +{"name":"Жезл пророчества","refName":"Prophecy Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNiIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/30763e0fe7/Wand6.png","h":3} +{"name":"Корона провидца","refName":"Prophet Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[224,258],"es":[32,37]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/6ad7c513a8/HelmetStrInt9.png","w":2,"h":2} +{"name":"Психотический топор","refName":"Psychotic Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9IZWlzdE9uZWhhbmRBeGUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5ba95d3930/HeistOnehandAxe.png","w":2,"h":3} +{"name":"Окованный посох","refName":"Quarterstaff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmYzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/9bc79ef01c/Staff3.png","w":2,"h":4} +{"name":"Кварцевый флакон","refName":"Quartz Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvcGhhc2VmbGFzazAxIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/6266d738e1/phaseflask01.png","h":2} +{"name":"Кварцевый скипетр","refName":"Quartz Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/c986bafb78/scepter4.png","w":2,"h":3} +{"name":"Кварцевый жезл","refName":"Quartz Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNCIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/b505ad92e7/Wand4.png","h":3} +{"name":"Ртутный флакон","refName":"Quicksilver Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3Mvc3ByaW50IiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/aa66be180b/sprint.png","h":2} +{"name":"Стёганая куртка","refName":"Quilted Jacket","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[221,248],"es":[46,52]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/333216677b/BodyDexInt1B.png","w":2,"h":3} +{"name":"Карта ипподрома","refName":"Racecourse Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/tKH5lyG.jpg"}} +{"name":"Карта бастиона","refName":"Ramparts Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/Yx5UIDO.jpg"}} +{"name":"Лук охотника","refName":"Ranger Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d7cd8910cc/Bow4.png","w":2,"h":4} +{"name":"Зубчатое кольцо","refName":"Ratcheting Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvSGVpc3RSaW5nMVNpbHZlciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/3ea47de609/HeistRing1Silver.png"} +{"name":"Воронья маска","refName":"Raven Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[104,119],"es":[22,25]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/39565b89de/HelmetDexInt6.png","w":2,"h":2} +{"name":"Сыромятные ботинки","refName":"Rawhide Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[13,18]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/d9494fc647/BootsDex1.png","w":2,"h":2} +{"name":"Сыромятные перчатки","refName":"Rawhide Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[13,18]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4MSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/9d9390ed4a/GlovesDex1.png","w":2,"h":2} +{"name":"Сыромятный ростовой щит","refName":"Rawhide Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[53,66]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8d8c4e161f/ShieldStr3.png","w":2,"h":4} +{"name":"Фрагмент реальности","refName":"Reality Fragment","namespace":"ITEM","tradeTag":"reality-fragment","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyQm9zc0tleU1hdmVuIiwic2NhbGUiOjF9XQ/20e155ad7d/UberBossKeyMaven.png"} +{"name":"Разбойничий топор","refName":"Reaver Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/451ba2cadb/OneHandAxe4.png","w":2,"h":3} +{"name":"Полный шлем","refName":"Reaver Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[198,233]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/497b497cd5/HelmetStr6.png","w":2,"h":2} +{"name":"Меч наёмника","refName":"Reaver Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/28f44a7a0c/TwoHandSword3.png","w":2,"h":4} +{"name":"Обличающий клинок","refName":"Rebuking Blade","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL0hlaXN0VHdvSGFuZFN3b3JkIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/9757ea88b2/HeistTwoHandSword.png","w":2,"h":4} +{"name":"Посох сопряжения","refName":"Reciprocation Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGVpc3RTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/5e852184f5/HeistStaff.png","w":2,"h":4} +{"name":"Загнутый лук","refName":"Recurve Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/2c90c93faf/Bow5.png","w":2,"h":4} +{"name":"Сфера возвышения избавителя","refName":"Redeemer's Exalted Orb","namespace":"ITEM","tradeTag":"redeemers-exalted-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5mbHVlbmNlIEV4YWx0cy9FeXJpZU9yYiIsInNjYWxlIjoxfV0/8ec9b52d65/EyrieOrb.png"} +{"name":"Сандаловый колючий щит","refName":"Redwood Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[142,163],"es":[30,34]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/db9355404e/ShieldDexInt2.png","w":2,"h":2} +{"name":"Карта рифа","refName":"Reef Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/pVdQXl9.jpg"}} +{"name":"Отражающий туман","refName":"Reflecting Mist","namespace":"ITEM","tradeTag":"reflecting-mist","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUmVmbGVjdGl2ZU1pc3QiLCJzY2FsZSI6MX1d/26956f795e/ReflectiveMist.png"} +{"name":"Зеркальное масло","refName":"Reflective Oil","namespace":"ITEM","tradeTag":"reflective-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9NaXJyb3JPaWwiLCJzY2FsZSI6MX1d/eca4a49588/MirrorOil.png"} +{"name":"Лук прыти","refName":"Reflex Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzkiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/aa9bf2b0d1/Bow9.png","w":2,"h":4} +{"name":"Сфера царей","refName":"Regal Orb","namespace":"ITEM","tradeTag":"regal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lVcGdyYWRlTWFnaWNUb1JhcmUiLCJzY2FsZSI6MX1d/0ded706f57/CurrencyUpgradeMagicToRare.png"} +{"name":"Осколок царей","refName":"Regal Shard","namespace":"ITEM","tradeTag":"regal-shard","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUmVnYWxTaGFyZCIsInNjYWxlIjoxfV0/6f7fc44a91/RegalShard.png"} +{"name":"Маскировочный набор цареубийцы","refName":"Regicide Disguise Kit","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVGhlYXRyZURpc2d1aXNlS2l0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/5a52352c52/TheatreDisguiseKit.png","w":2,"h":2} +{"name":"Маска цареубийцы","refName":"Regicide Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[141,158],"es":[29,32]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/03d255fadc/HelmetDexInt8.png","w":2,"h":2} +{"name":"Усиленные поножи","refName":"Reinforced Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[109,120]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/82bedfd1e0/BootsStr4.png","w":2,"h":2} +{"name":"Укреплённый каплевидный щит","refName":"Reinforced Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[65,81],"es":[15,18]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8d673b3a1f/ShieldStrInt4.png","w":2,"h":3} +{"name":"Укреплённый ростовой щит","refName":"Reinforced Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[237,260]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d883ad1ca2/ShieldStr6.png","w":2,"h":4} +{"name":"Карта палаты древностей","refName":"Relic Chambers Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/jsNHNa1.jpg"}} +{"name":"След Порчи","refName":"Remnant of Corruption","namespace":"ITEM","tradeTag":"remnant-of-corruption","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Fc3NlbmNlQ29ycnVwdCIsInNjYWxlIjoxfV0/e0e8a57a15/EssenceCorrupt.png"} +{"name":"Карта резиденции","refName":"Residence Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/FF5qpbI.jpg"}} +{"name":"Кольцо","refName":"Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"%NOT_FOUND%"} +{"name":"Кольчужные сапоги","refName":"Ringmail Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[25,32],"es":[6,8]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/742e5a15d7/BootsStrInt2.png","w":2,"h":2} +{"name":"Байдана","refName":"Ringmail Coat","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[97,121],"es":[22,28]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/61293d71af/BodyStrInt1B.png","w":2,"h":3} +{"name":"Кольчатые перчатки","refName":"Ringmail Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[35,46],"es":[8,10]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RySW50MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f09ae395f5/GlovesStrInt2.png","w":2,"h":2} +{"name":"Ритуальный скарабей изобилия","refName":"Ritual Scarab of Abundance","namespace":"ITEM","tradeTag":"ritual-scarab-of-abundance","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiUml0dWFsIiwic2NhbGUiOjF9XQ/a990c91de5/GreaterScarabRitual.png"} +{"name":"Ритуальный скарабей избранности","refName":"Ritual Scarab of Selectiveness","namespace":"ITEM","tradeTag":"ritual-scarab-of-selectiveness","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJSaXR1YWwiLCJzY2FsZSI6MX1d/08f82dab28/LesserScarabRitual.png"} +{"name":"Ритуальный скарабей огоньков","refName":"Ritual Scarab of Wisps","namespace":"ITEM","tradeTag":"ritual-scarab-of-wisps","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJSaXR1YWwiLCJzY2FsZSI6MX1d/f2c3231213/NormalScarabRitual.png"} +{"name":"Ритуальный скипетр","refName":"Ritual Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/6b9c62e4c3/scepter7.png","w":2,"h":3} +{"name":"Ритуальный осколок","refName":"Ritual Splinter","namespace":"ITEM","tradeTag":"ritual-splinter","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUml0dWFsL1JpdHVhbFNwbGludGVyIiwic2NhbGUiOjF9XQ/702c7441d8/RitualSplinter.png"} +{"name":"Ритуальный сосуд","refName":"Ritual Vessel","namespace":"ITEM","tradeTag":"ritual-vessel","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUml0dWFsL0VmZmlneSIsInNjYWxlIjoxfV0/1686de4490/Effigy.png"} +{"name":"Руна Реки","refName":"River Rune","namespace":"ITEM","tradeTag":"river-rune","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2V0dGxlcnMvVmlsbGFnZVJ1bmU1Iiwic2NhbGUiOjF9XQ/239b52bb4d/VillageRune5.png"} +{"name":"Клёпаные башмаки","refName":"Riveted Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[65,71],"es":[14,15]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckludDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0519faf993/BootsStrInt1.png","w":2,"h":2} +{"name":"Клёпаные кольчужные перчатки","refName":"Riveted Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[67,77],"es":[14,16]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RySW50MSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/5d45f8da8f/GlovesStrInt1.png","w":2,"h":2} +{"name":"Камнедробитель","refName":"Rock Breaker","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U0IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/b0b1a18a0c/OneHandMace4.png","w":2,"h":3} +{"name":"Разбойничий жетон","refName":"Rogue's Marker","namespace":"ITEM","tradeTag":"rogues-marker","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvSGVpc3RDb2luQ3VycmVuY3kiLCJzY2FsZSI6MX1d/335e66630d/HeistCoinCurrency.png"} +{"name":"Микстура из розового шипа","refName":"Rosethorn Tincture","namespace":"ITEM","craftable":{"category":"Tincture"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL0N1bGxpbmdTdHJpa2VTYXAiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MX1d/a0158b364e/CullingStrikeSap.png","h":2} +{"name":"Талисман гнилой головы","refName":"Rot Head Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9GaXNoVGFsaXNtYW4iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/dec3900c32/FishTalisman.png"} +{"name":"Талисман перогнильца","refName":"Rotfeather Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hblJlZDEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/7d856182d7/TalismanRed1.png"} +{"name":"Прогнивший круглый щит","refName":"Rotted Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[13,18],"ev":[13,18]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/a6a71ad77b/ShieldStrDex1.png","w":2,"h":3} +{"name":"Грубый оселок","refName":"Rough Sharpening Stone","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvUm91Z2hTaGFycGVuaW5nU3RvbmUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/16a700882f/RoughSharpeningStone.png","w":2,"h":2} +{"name":"Царский топор","refName":"Royal Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/5bbf95c3b4/OneHandAxe7.png","w":2,"h":3} +{"name":"Царский лук","refName":"Royal Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/1e6a3da9aa/Bow7.png","w":2,"h":4} +{"name":"Полный шлем царя","refName":"Royal Burgonet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[377,434]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjEwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/b1e95342a8/HelmetStr10.png","w":2,"h":2} +{"name":"Царские латы","refName":"Royal Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[1183,1360]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyM0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/09903268a5/BodyStr3C.png","w":2,"h":3} +{"name":"Царский скипетр","refName":"Royal Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/6b9c62e4c3/scepter7.png","w":2,"h":3} +{"name":"Кинжал царя","refName":"Royal Skean","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjciLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/61e8f27cc5/Dagger7.png","h":3} +{"name":"Царский посох","refName":"Royal Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY2IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/5e3de6f391/Staff6.png","w":2,"h":4} +{"name":"Амулет с рубином","refName":"Ruby Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9SdWJ5QW11bGV0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/55c35f60fe/RubyAmulet.png"} +{"name":"Рубиновый флакон","refName":"Ruby Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvcnVieSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/0d582b3f83/ruby.png","h":2} +{"name":"Кольцо с рубином","refName":"Ruby Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0e04df86a3/Ring7.png"} +{"name":"Рунные наручи","refName":"Runed Bracers","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQnJhY2VyQmFzZVR5cGVfcnVuZWQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/7fedd82771/BracerBaseType_runed.png","w":2,"h":2} +{"name":"Рунический венец","refName":"Runic Crest","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ward":[97,112]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1NwaXJpdEhlbG1ldEJhc2VUeXBlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/53e1ae7954/SpiritHelmetBaseType.png","w":2,"h":2} +{"name":"Руническая корона","refName":"Runic Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ward":[164,189]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1NwaXJpdEhlbG1ldEJhc2VUeXBlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/53e1ae7954/SpiritHelmetBaseType.png","w":2,"h":2} +{"name":"Рунические краги","refName":"Runic Gages","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ward":[62,71]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3Bpcml0R2xvdmVzQmFzZVR5cGUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c6f6ccf94f/SpiritGlovesBaseType.png","w":2,"h":2} +{"name":"Рунические рукавицы","refName":"Runic Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ward":[102,117]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3Bpcml0R2xvdmVzQmFzZVR5cGUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c6f6ccf94f/SpiritGlovesBaseType.png","w":2,"h":2} +{"name":"Рунические перчатки","refName":"Runic Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ward":[24,28]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3Bpcml0R2xvdmVzQmFzZVR5cGUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c6f6ccf94f/SpiritGlovesBaseType.png","w":2,"h":2} +{"name":"Рунические поножи","refName":"Runic Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ward":[24,28]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TcGlyaXRCb290c0Jhc2VUeXBlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/c6826fae52/SpiritBootsBaseType.png","w":2,"h":2} +{"name":"Рунический топорик","refName":"Runic Hatchet","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlOSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/8f1da4998f/OneHandAxe9.png","w":2,"h":3} +{"name":"Рунический шлем","refName":"Runic Helm","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ward":[41,47]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1NwaXJpdEhlbG1ldEJhc2VUeXBlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/53e1ae7954/SpiritHelmetBaseType.png","w":2,"h":2} +{"name":"Рунические сабатоны","refName":"Runic Sabatons","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ward":[102,117]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TcGlyaXRCb290c0Jhc2VUeXBlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/c6826fae52/SpiritBootsBaseType.png","w":2,"h":2} +{"name":"Рунический скелет","refName":"Runic Skeleton","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL1N3b3JkU2tlbGV0b25Db3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/171f40accf/SwordSkeletonCorpse.png","w":3,"h":2} +{"name":"Рунические солереты","refName":"Runic Sollerets","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ward":[62,71]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TcGlyaXRCb290c0Jhc2VUeXBlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/c6826fae52/SpiritBootsBaseType.png","w":2,"h":2} +{"name":"Ржавый койф","refName":"Rusted Coif","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[16,22],"es":[5,7]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/9987324e35/HelmetStrInt1.png","w":2,"h":2} +{"name":"Ржавый топорик","refName":"Rusted Hatchet","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlMSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/0e8f6203f2/OneHandAxe1.png","h":3} +{"name":"Ржавый шип","refName":"Rusted Spike","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjEiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/feb0e7f8d8/Rapier1.png","h":4} +{"name":"Ржавый меч","refName":"Rusted Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDEiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/ae6e9dda13/OneHandSword1.png","h":3} +{"name":"Кушак","refName":"Rustic Sash","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdDEiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/6b67d971e8/Belt1.png","w":2} +{"name":"Сабля","refName":"Sabre","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDMiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/0aa55ff7a1/OneHandSword3.png","h":3} +{"name":"Священное соцветие","refName":"Sacred Blossom","namespace":"ITEM","tradeTag":"sacred-blossom","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9Pc2hhYmlNYXAiLCJzY2FsZSI6MX1d/ae20ec4d5f/OshabiMap.png"} +{"name":"Освящённая кольчуга","refName":"Sacred Chainmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[723,831],"es":[145,167]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50M0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/900b4f2c03/BodyStrInt3C.png","w":2,"h":3} +{"name":"Священная кристализованная жизненная сила","refName":"Sacred Crystallised Lifeforce","namespace":"ITEM","tradeTag":"sacred-lifeforce","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9TYWNyZWRMaWZlZm9yY2UiLCJzY2FsZSI6MX1d/edfba3c893/SacredLifeforce.png"} +{"name":"Освящённый флакон равновесия","refName":"Sacred Hybrid Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvaHlicmlkZmxhc2syIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/7ac2158cdf/hybridflask2.png","h":2} +{"name":"Освящённый флакон жизни","refName":"Sacred Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrOCIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/1c24a51fc4/lifeflask8.png","h":2} +{"name":"Освящённый флакон маны","refName":"Sacred Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrOCIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/52e82c502f/manaflask8.png","h":2} +{"name":"Священная сфера","refName":"Sacred Orb","namespace":"ITEM","tradeTag":"sacred-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2FjcmVkT3JiIiwic2NhbGUiOjF9XQ/0380fd0dba/SacredOrb.png"} +{"name":"Жертва на рассвете","refName":"Sacrifice at Dawn","namespace":"ITEM","tradeTag":"dawn","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYWFsMDIiLCJzY2FsZSI6MX1d/3516d95235/Vaal02.png"} +{"name":"Жертва на закате","refName":"Sacrifice at Dusk","namespace":"ITEM","tradeTag":"dusk","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYWFsMDQiLCJzY2FsZSI6MX1d/3be8311430/Vaal04.png"} +{"name":"Жертва в полночь","refName":"Sacrifice at Midnight","namespace":"ITEM","tradeTag":"mid","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYWFsMDEiLCJzY2FsZSI6MX1d/c7cd8058f6/Vaal01.png"} +{"name":"Жертва в полдень","refName":"Sacrifice at Noon","namespace":"ITEM","tradeTag":"noon","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYWFsMDMiLCJzY2FsZSI6MX1d/55524425f4/Vaal03.png"} +{"name":"Жертвенное облачение","refName":"Sacrificial Garb","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[329,378],"ev":[329,378],"es":[67,77]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9TYWNyaWZpY2lhbEdhcmIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/fa818f4ae3/SacrificialGarb.png","w":2,"h":3} +{"name":"Облачение мучителя","refName":"Sadist Garb","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[427,491],"es":[93,107]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/6744d2d486/BodyDexInt2C.png","w":2,"h":3} +{"name":"Перчатки мудреца","refName":"Sage Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[62,71]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/abe163b992/GlovesInt3.png","w":2,"h":2} +{"name":"Сапоги мудреца","refName":"Sage Slippers","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[62,71]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/036cf97e61/BootsInt3.png","w":2,"h":2} +{"name":"Жезл провидца","refName":"Sage Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNiIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/30763e0fe7/Wand6.png","h":3} +{"name":"Одеяние мудреца","refName":"Sage's Robe","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[79,90]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/906a100c16/BodyInt1B.png","w":2,"h":3} +{"name":"Сай","refName":"Sai","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjkiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/ac5b740611/Dagger9.png","h":3} +{"name":"Хауберг святого","refName":"Saint's Hauberk","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[443,496],"es":[76,85]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5a1804c81b/BodyStrInt2C.png","w":2,"h":3} +{"name":"Кольчуга святого","refName":"Saintly Chainmail","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[401,461],"es":[96,110]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RySW50M0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/900b4f2c03/BodyStrInt3C.png","w":2,"h":3} +{"name":"Салад","refName":"Sallet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[37,48],"ev":[37,48]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0dc199afb2/HelmetStrDex2.png","w":2,"h":2} +{"name":"Скипетр замбара","refName":"Sambar Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyOSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/151820601e/scepter9.png","w":2,"h":3} +{"name":"Атласные перчатки","refName":"Samite Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[32,37]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/abe163b992/GlovesInt3.png","w":2,"h":2} +{"name":"Атласные сапоги","refName":"Samite Slippers","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[30,35]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/036cf97e61/BootsInt3.png","w":2,"h":2} +{"name":"Шлем самнита","refName":"Samnite Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[276,325]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/8bd91531d0/HelmetStr8.png","w":2,"h":2} +{"name":"Освящённое ископаемое","refName":"Sanctified Fossil","namespace":"ITEM","tradeTag":"sanctified-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvR2lsZGVkRm9zc2lsIiwic2NhbGUiOjF9XQ/fc2d3fdf51/GildedFossil.png"} +{"name":"Святой флакон жизни","refName":"Sanctified Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrMTAiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/c32c443453/lifeflask10.png","h":2} +{"name":"Святой флакон маны","refName":"Sanctified Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrMTAiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/437e6be59d/manaflask10.png","h":2} +{"name":"Карта святилища","refName":"Sanctuary Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{}} +{"name":"Демон-кровомант","refName":"Sanguimancer Demon","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0hlbGxzY2FwZURlbW9uRWxpdGUyQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/a795ad40fa/HellscapeDemonElite2Corpse.png","w":3,"h":2} +{"name":"Червлёный камзол","refName":"Sanguine Raiment","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[545,627],"es":[110,127]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/95329b265f/BodyDexInt1C.png","w":2,"h":3} +{"name":"Сапфировый флакон","refName":"Sapphire Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3Mvc2FwcGhpcmUiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjEsImZpIjp0cnVlfV0/7762dad209/sapphire.png","h":2} +{"name":"Кольцо с сапфиром","refName":"Sapphire Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzYiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/74a5d719fd/Ring6.png"} +{"name":"Сатиновые перчатки","refName":"Satin Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[28,33]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/cb34a7c551/GlovesInt2.png","w":2,"h":2} +{"name":"Сатиновые тапочки","refName":"Satin Slippers","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[26,30]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/efece2ca68/BootsInt2.png","w":2,"h":2} +{"name":"Одеяние эрудита","refName":"Savant's Robe","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[115,132]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/906a100c16/BodyInt1B.png","w":2,"h":3} +{"name":"Пилорукий ужас","refName":"Sawblade Horror","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0RlbW9uQm9zczFDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/27f61146a0/DemonBoss1Corpse.png","w":3,"h":2} +{"name":"Чешуйчатый дублет","refName":"Scale Doublet","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[97,121],"ev":[97,121]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/d9b2da2bce/BodyStrDex1B.png","w":2,"h":3} +{"name":"Чешуйчатый нагрудник","refName":"Scale Vest","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[27,38],"ev":[27,38]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MUEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/171496c8b0/BodyStrDex1A.png","w":2,"h":3} +{"name":"Скарабей антагонистов","refName":"Scarab of Adversaries","namespace":"ITEM","tradeTag":"scarab-of-adversaries","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRMZXNzZXJTY2FyYWJNaXNjIiwic2NhbGUiOjF9XQ/ab24a34cd1/AltLesserScarabMisc.png"} +{"name":"Скарабей божественности","refName":"Scarab of Divinity","namespace":"ITEM","tradeTag":"scarab-of-divinity","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJNaXNjIiwic2NhbGUiOjF9XQ/6d4755a692/NormalScarabMisc.png"} +{"name":"Скарабей затравленных предателей","refName":"Scarab of Hunted Traitors","namespace":"ITEM","tradeTag":"scarab-of-hunted-traitors","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiTWlzYyIsInNjYWxlIjoxfV0/7a40f7ea9f/GreaterScarabMisc.png"} +{"name":"Скарабей чудовищных поколений","refName":"Scarab of Monstrous Lineage","namespace":"ITEM","tradeTag":"scarab-of-monstrous-lineage","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJNaXNjIiwic2NhbGUiOjF9XQ/9196715e8d/LesserScarabMisc.png"} +{"name":"Скарабей сияющих бурь","refName":"Scarab of Radiant Storms","namespace":"ITEM","tradeTag":"scarab-of-radiant-storms","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYk1pc2MyIiwic2NhbGUiOjF9XQ/d19b59b6b8/Tier4ScarabMisc2.png"} +{"name":"Скарабей стабильности","refName":"Scarab of Stability","namespace":"ITEM","tradeTag":"scarab-of-stability","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYk1pc2MiLCJzY2FsZSI6MX1d/c80f553284/Tier4ScarabMisc.png"} +{"name":"Скарабей огоньков","refName":"Scarab of Wisps","namespace":"ITEM","tradeTag":"scarab-of-wisps","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiTWlzYzEiLCJzY2FsZSI6MX1d/303001a475/GreaterScarabMisc1.png"} +{"name":"Пугающая маска","refName":"Scare Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[13,18],"es":[4,6]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f1a4b7abd8/HelmetDexInt1.png","w":2,"h":2} +{"name":"Алый камзол","refName":"Scarlet Raiment","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[156,180],"es":[34,39]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/95329b265f/BodyDexInt1C.png","w":2,"h":3} +{"name":"Алый круглый щит","refName":"Scarlet Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[87,100],"ev":[87,100]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/f50adf0569/ShieldStrDex4.png","w":2,"h":3} +{"name":"Сапоги ученика","refName":"Scholar Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[23,25]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5589419509/BootsInt4.png","w":2,"h":2} +{"name":"Одеяние учёного","refName":"Scholar's Robe","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[43,53]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/906a100c16/BodyInt1B.png","w":2,"h":3} +{"name":"Опалённое ископаемое","refName":"Scorched Fossil","namespace":"ITEM","tradeTag":"scorched-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvQW1iZXJGaXJlRmx5Iiwic2NhbGUiOjF9XQ/0954934026/AmberFireFly.png"} +{"name":"Металлолом","refName":"Scrap Metal","namespace":"ITEM","tradeTag":"scrap-metal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXhwZWRpdGlvbi9EZWFsZXJSZWZyZXNoQ3VycmVuY3kiLCJzY2FsZSI6MX1d/7c2be64768/DealerRefreshCurrency.png"} +{"name":"Кричащая сущность злобы","refName":"Screaming Essence of Anger","namespace":"ITEM","tradeTag":"screaming-essence-of-anger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9BbmdlcjUiLCJzY2FsZSI6MX1d/495b51bb22/Anger5.png"} +{"name":"Кричащая сущность горя","refName":"Screaming Essence of Anguish","namespace":"ITEM","tradeTag":"screaming-essence-of-anguish","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Bbmd1aXNoNSIsInNjYWxlIjoxfV0/f1577676f8/Anguish5.png"} +{"name":"Кричащая сущность презрения","refName":"Screaming Essence of Contempt","namespace":"ITEM","tradeTag":"screaming-essence-of-contempt","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Db250ZW1wdDUiLCJzY2FsZSI6MX1d/57f3c59876/Contempt5.png"} +{"name":"Кричащая сущность сомнения","refName":"Screaming Essence of Doubt","namespace":"ITEM","tradeTag":"screaming-essence-of-doubt","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Eb3VidDUiLCJzY2FsZSI6MX1d/3411e349a4/Doubt5.png"} +{"name":"Кричащая сущность жути","refName":"Screaming Essence of Dread","namespace":"ITEM","tradeTag":"screaming-essence-of-dread","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9EcmVhZDUiLCJzY2FsZSI6MX1d/089502a0ef/Dread5.png"} +{"name":"Кричащая сущность зависти","refName":"Screaming Essence of Envy","namespace":"ITEM","tradeTag":"screaming-essence-of-envy","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9FbnZ5NSIsInNjYWxlIjoxfV0/19657c80a1/Envy5.png"} +{"name":"Кричащая сущность страха","refName":"Screaming Essence of Fear","namespace":"ITEM","tradeTag":"screaming-essence-of-fear","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9GZWFyNSIsInNjYWxlIjoxfV0/1032005927/Fear5.png"} +{"name":"Кричащая сущность жадности","refName":"Screaming Essence of Greed","namespace":"ITEM","tradeTag":"screaming-essence-of-greed","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVlZDUiLCJzY2FsZSI6MX1d/f78130ca89/Greed5.png"} +{"name":"Кричащая сущность ненависти","refName":"Screaming Essence of Hatred","namespace":"ITEM","tradeTag":"screaming-essence-of-hatred","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9IYXRyZWQ1Iiwic2NhbGUiOjF9XQ/79d7666969/Hatred5.png"} +{"name":"Кричащая сущность отвращения","refName":"Screaming Essence of Loathing","namespace":"ITEM","tradeTag":"screaming-essence-of-loathing","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Mb2F0aGluZzUiLCJzY2FsZSI6MX1d/b72c845694/Loathing5.png"} +{"name":"Кричащая сущность тоски","refName":"Screaming Essence of Misery","namespace":"ITEM","tradeTag":"screaming-essence-of-misery","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9NaXNlcnk1Iiwic2NhbGUiOjF9XQ/f9d69650b9/Misery5.png"} +{"name":"Кричащая сущность ярости","refName":"Screaming Essence of Rage","namespace":"ITEM","tradeTag":"screaming-essence-of-rage","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9SYWdlNSIsInNjYWxlIjoxfV0/e59a378e12/Rage5.png"} +{"name":"Кричащая сущность насмешки","refName":"Screaming Essence of Scorn","namespace":"ITEM","tradeTag":"screaming-essence-of-scorn","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TY29ybjUiLCJzY2FsZSI6MX1d/0325ed7212/Scorn5.png"} +{"name":"Кричащая сущность печали","refName":"Screaming Essence of Sorrow","namespace":"ITEM","tradeTag":"screaming-essence-of-sorrow","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Tb3Jyb3c1Iiwic2NhbGUiOjF9XQ/c4e14310c9/Sorrow5.png"} +{"name":"Кричащая сущность неприязни","refName":"Screaming Essence of Spite","namespace":"ITEM","tradeTag":"screaming-essence-of-spite","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TcGl0ZTUiLCJzY2FsZSI6MX1d/5e2c82ccb4/Spite5.png"} +{"name":"Кричащая сущность страдания","refName":"Screaming Essence of Suffering","namespace":"ITEM","tradeTag":"screaming-essence-of-suffering","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TdWZmZXJpbmc1Iiwic2NhbGUiOjF9XQ/08db350c33/Suffering5.png"} +{"name":"Кричащая сущность мучения","refName":"Screaming Essence of Torment","namespace":"ITEM","tradeTag":"screaming-essence-of-torment","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Ub3JtZW50NSIsInNjYWxlIjoxfV0/46f5990204/Torment5.png"} +{"name":"Кричащая сущность скорби","refName":"Screaming Essence of Woe","namespace":"ITEM","tradeTag":"screaming-essence-of-woe","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Xb2U1Iiwic2NhbGUiOjF9XQ/685579dedd/Woe5.png"} +{"name":"Кричащая сущность гнева","refName":"Screaming Essence of Wrath","namespace":"ITEM","tradeTag":"screaming-essence-of-wrath","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9XcmF0aDUiLCJzY2FsZSI6MX1d/47601c9382/Wrath5.png"} +{"name":"Кричащая сущность усердия","refName":"Screaming Essence of Zeal","namespace":"ITEM","tradeTag":"screaming-essence-of-zeal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9aZWFsNSIsInNjYWxlIjoxfV0/27f4023314/Zeal5.png"} +{"name":"Кричащее приглашение","refName":"Screaming Invitation","namespace":"ITEM","craftable":{"category":"Invitation"},"tradeTag":"screaming-invitation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVlc3RJdGVtcy9UYW5nbGVkT3JiUXVlc3Q1Iiwic2NhbGUiOjF9XQ/aad87e6738/TangledOrbQuest5.png"} +{"name":"Карта скриптория","refName":"Scriptorium Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{}} +{"name":"Свиток мудрости","refName":"Scroll of Wisdom","namespace":"ITEM","tradeTag":"wisdom","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lJZGVudGlmaWNhdGlvbiIsInNjYWxlIjoxfV0/c2d03ed3fd/CurrencyIdentification.png"} +{"name":"Амулет из морского стекла","refName":"Seaglass Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9DcmVzY2VudEFtdWxldCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ef6f218ca4/CrescentAmulet.png"} +{"name":"Самоцвет пытливого глаза","refName":"Searching Eye Jewel","namespace":"ITEM","craftable":{"category":"Abyss Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1NlYXJjaGluZ0V5ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ff2df16522/SearchingEye.png"} +{"name":"Шлем секутора","refName":"Secutor Helm","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[98,116],"ev":[98,116]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/b609cfed8b/HelmetStrDex5.png","w":2,"h":2} +{"name":"Сехем","refName":"Sekhem","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyMyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/366212755a/scepter3.png","w":2,"h":3} +{"name":"Куртка стража","refName":"Sentinel Jacket","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[330,370],"es":[67,76]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/333216677b/BodyDexInt1B.png","w":2,"h":3} +{"name":"Коричневое масло","refName":"Sepia Oil","namespace":"ITEM","tradeTag":"sepia-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9TZXBpYU9pbCIsInNjYWxlIjoxfV0/9114927bcc/SepiaOil.png"} +{"name":"Карта усыпальницы","refName":"Sepulchre Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/I8et20T.jpg"}} +{"name":"Змеевоин","refName":"Serpent Warrior","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0F0bGFzRXhpbGUzQXBwYXJpdGlvbkNvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/127b613caf/AtlasExile3ApparitionCorpse.png","w":3,"h":2} +{"name":"Змеиный посох","refName":"Serpentine Staff","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY1IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/53f1a6b438/Staff5.png","w":2,"h":4} +{"name":"Ботинки из чешуи гадюки","refName":"Serpentscale Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[76,90],"ev":[76,90]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/d5b5430d4c/BootsStrDex2.png","w":2,"h":2} +{"name":"Перчатки из чешуи гадюки","refName":"Serpentscale Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[78,87],"ev":[78,87]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyRGV4MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0bb5dd1e50/GlovesStrDex2.png","w":2,"h":2} +{"name":"Колчан зазубренных стрел","refName":"Serrated Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJTZXJyYXRlZCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/3660315ba6/QuiverSerrated.png","w":2,"h":3} +{"name":"Шпага с зубцами","refName":"Serrated Foil","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjUiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/ccce0178cc/Rapier5.png","h":4} +{"name":"Зубчатое ископаемое","refName":"Serrated Fossil","namespace":"ITEM","tradeTag":"serrated-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvU2VycmF0ZWRGb3NzaWwiLCJzY2FsZSI6MX1d/227ff121c8/SerratedFossil.png"} +{"name":"Рваная кожанка","refName":"Shabby Jerkin","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[29,41]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MUEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/693fc9456c/BodyDex1A.png","w":2,"h":3} +{"name":"Сапоги оков","refName":"Shackled Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[62,71],"es":[13,15]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/bad1ba72df/BootsDexInt4.png","w":2,"h":2} +{"name":"Топор тени","refName":"Shadow Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNyIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/931ad5cc29/TwoHandAxe7.png","w":2,"h":4} +{"name":"Тёмный берсерк","refName":"Shadow Berserker","namespace":"ITEM","icon":"%NOT_FOUND%","w":3,"h":2} +{"name":"Тёмный механизм","refName":"Shadow Construct","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0luY2FTaGFkb3dCb3NzQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/acddc4a119/IncaShadowBossCorpse.png","w":3,"h":2} +{"name":"Теневые клыки","refName":"Shadow Fangs","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9IZWlzdENsYXciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/7ebe8140fa/HeistClaw.png","w":2,"h":2} +{"name":"Скипетр тени","refName":"Shadow Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyOCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/6644b94336/scepter8.png","w":2,"h":3} +{"name":"Шагреневые ботинки","refName":"Shagreen Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[180,216]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/76eb290c9b/BootsDex4.png","w":2,"h":2} +{"name":"Шагреневые перчатки","refName":"Shagreen Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[177,212]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/05a8c03e95/GlovesDex4.png","w":2,"h":2} +{"name":"Ростовой щит из акульей кожи","refName":"Shagreen Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[261,308]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8d8c4e161f/ShieldStr3.png","w":2,"h":4} +{"name":"Акульи ботинки","refName":"Sharkskin Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[145,171]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f2e9a30d4a/BootsDex3.png","w":2,"h":2} +{"name":"Акульи перчатки","refName":"Sharkskin Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[148,163]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/445d038f1d/GlovesDex3.png","w":2,"h":2} +{"name":"Акулий полукафтан","refName":"Sharkskin Tunic","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[559,643]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/57409a1844/BodyDex1B.png","w":2,"h":3} +{"name":"Колчан акульих стрел","refName":"Sharktooth Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJTaGFya3Rvb3RoIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/da7b4cd60a/QuiverSharktooth.png","w":2,"h":3} +{"name":"Кастет с зубами акулы","refName":"Sharktooth Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/8b8d9559cd/Claw2.png","w":2,"h":2} +{"name":"Сияющий оберег","refName":"Shining Ward","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvU2hpbmluZ1dhcmQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/275019d027/ShiningWard.png","w":2,"h":2} +{"name":"Ключ от Сверкающего Реликвария","refName":"Shiny Reliquary Key","namespace":"ITEM","tradeTag":"shiny-reliquary-key","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9NYXZlbkZvaWwiLCJzY2FsZSI6MX1d/09cccd8ddb/MavenFoil.png"} +{"name":"Карта верфи","refName":"Shipyard Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/J5hM5mR.jpg"}} +{"name":"Карта берега","refName":"Shore Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/HNPAnu9.jpg"}} +{"name":"Короткий лук","refName":"Short Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/0fcc51afcd/Bow2.png","w":2,"h":3} +{"name":"Визжащая сущность злобы","refName":"Shrieking Essence of Anger","namespace":"ITEM","tradeTag":"shrieking-essence-of-anger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9BbmdlcjYiLCJzY2FsZSI6MX1d/e3c71c9c4d/Anger6.png"} +{"name":"Визжащая сущность горя","refName":"Shrieking Essence of Anguish","namespace":"ITEM","tradeTag":"shrieking-essence-of-anguish","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Bbmd1aXNoNiIsInNjYWxlIjoxfV0/080db712a7/Anguish6.png"} +{"name":"Визжащая сущность презрения","refName":"Shrieking Essence of Contempt","namespace":"ITEM","tradeTag":"shrieking-essence-of-contempt","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Db250ZW1wdDYiLCJzY2FsZSI6MX1d/fd0dfb89ba/Contempt6.png"} +{"name":"Визжащая сущность сомнения","refName":"Shrieking Essence of Doubt","namespace":"ITEM","tradeTag":"shrieking-essence-of-doubt","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Eb3VidDYiLCJzY2FsZSI6MX1d/6972865109/Doubt6.png"} +{"name":"Визжащая сущность жути","refName":"Shrieking Essence of Dread","namespace":"ITEM","tradeTag":"shrieking-essence-of-dread","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9EcmVhZDYiLCJzY2FsZSI6MX1d/7a5c6cc4be/Dread6.png"} +{"name":"Визжащая сущность зависти","refName":"Shrieking Essence of Envy","namespace":"ITEM","tradeTag":"shrieking-essence-of-envy","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9FbnZ5NiIsInNjYWxlIjoxfV0/58075e71ff/Envy6.png"} +{"name":"Визжащая сущность страха","refName":"Shrieking Essence of Fear","namespace":"ITEM","tradeTag":"shrieking-essence-of-fear","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9GZWFyNiIsInNjYWxlIjoxfV0/f5a1ac133b/Fear6.png"} +{"name":"Визжащая сущность жадности","refName":"Shrieking Essence of Greed","namespace":"ITEM","tradeTag":"shrieking-essence-of-greed","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVlZDYiLCJzY2FsZSI6MX1d/ec10f707ab/Greed6.png"} +{"name":"Визжащая сущность ненависти","refName":"Shrieking Essence of Hatred","namespace":"ITEM","tradeTag":"shrieking-essence-of-hatred","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9IYXRyZWQ2Iiwic2NhbGUiOjF9XQ/f55a53e6f4/Hatred6.png"} +{"name":"Визжащая сущность отвращения","refName":"Shrieking Essence of Loathing","namespace":"ITEM","tradeTag":"shrieking-essence-of-loathing","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Mb2F0aGluZzYiLCJzY2FsZSI6MX1d/7ffe10ffb7/Loathing6.png"} +{"name":"Визжащая сущность тоски","refName":"Shrieking Essence of Misery","namespace":"ITEM","tradeTag":"shrieking-essence-of-misery","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9NaXNlcnk2Iiwic2NhbGUiOjF9XQ/00f76e01d2/Misery6.png"} +{"name":"Визжащая сущность ярости","refName":"Shrieking Essence of Rage","namespace":"ITEM","tradeTag":"shrieking-essence-of-rage","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9SYWdlNiIsInNjYWxlIjoxfV0/387d05ebf5/Rage6.png"} +{"name":"Визжащая сущность насмешки","refName":"Shrieking Essence of Scorn","namespace":"ITEM","tradeTag":"shrieking-essence-of-scorn","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TY29ybjYiLCJzY2FsZSI6MX1d/e168e93dcc/Scorn6.png"} +{"name":"Визжащая сущность печали","refName":"Shrieking Essence of Sorrow","namespace":"ITEM","tradeTag":"shrieking-essence-of-sorrow","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Tb3Jyb3c2Iiwic2NhbGUiOjF9XQ/33a6bbf50d/Sorrow6.png"} +{"name":"Визжащая сущность неприязни","refName":"Shrieking Essence of Spite","namespace":"ITEM","tradeTag":"shrieking-essence-of-spite","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TcGl0ZTYiLCJzY2FsZSI6MX1d/4afdf2e61f/Spite6.png"} +{"name":"Визжащая сущность страдания","refName":"Shrieking Essence of Suffering","namespace":"ITEM","tradeTag":"shrieking-essence-of-suffering","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TdWZmZXJpbmc2Iiwic2NhbGUiOjF9XQ/521d87c5a2/Suffering6.png"} +{"name":"Визжащая сущность мучения","refName":"Shrieking Essence of Torment","namespace":"ITEM","tradeTag":"shrieking-essence-of-torment","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Ub3JtZW50NiIsInNjYWxlIjoxfV0/fba7f2005f/Torment6.png"} +{"name":"Визжащая сущность скорби","refName":"Shrieking Essence of Woe","namespace":"ITEM","tradeTag":"shrieking-essence-of-woe","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Xb2U2Iiwic2NhbGUiOjF9XQ/89ba32200e/Woe6.png"} +{"name":"Визжащая сущность гнева","refName":"Shrieking Essence of Wrath","namespace":"ITEM","tradeTag":"shrieking-essence-of-wrath","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9XcmF0aDYiLCJzY2FsZSI6MX1d/792a6dca01/Wrath6.png"} +{"name":"Визжащая сущность усердия","refName":"Shrieking Essence of Zeal","namespace":"ITEM","tradeTag":"shrieking-essence-of-zeal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9aZWFsNiIsInNjYWxlIjoxfV0/e949dfa6e3/Zeal6.png"} +{"name":"Карта святыни","refName":"Shrine Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/wDK8KBW.jpg"}} +{"name":"Дрожащее ископаемое","refName":"Shuddering Fossil","namespace":"ITEM","tradeTag":"shuddering-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvU2h1ZGRlcmluZ0Zvc3NpbCIsInNjYWxlIjoxfV0/ecd4122277/ShudderingFossil.png"} +{"name":"Осадный топор","refName":"Siege Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlMyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/126bb32028/OneHandAxe3.png","w":2,"h":3} +{"name":"Осадный шлем","refName":"Siege Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[237,272]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0cjciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/2844841911/HelmetStr7.png","w":2,"h":2} +{"name":"Карта осаждённого города","refName":"Siege Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/vOwwEDe.jpg"}} +{"name":"Шёлковые перчатки","refName":"Silk Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[18,23]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/abe163b992/GlovesInt3.png","w":2,"h":2} +{"name":"Шёлковое одеяние","refName":"Silk Robe","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[69,80]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8b200fbbb5/BodyInt2C.png","w":2,"h":3} +{"name":"Шёлковые сапоги","refName":"Silk Slippers","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[17,21]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/036cf97e61/BootsInt3.png","w":2,"h":2} +{"name":"Шёлковое облачение","refName":"Silken Garb","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[56,64]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/3689be0ddd/BodyInt2B.png","w":2,"h":3} +{"name":"Шёлковый капюшон","refName":"Silken Hood","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[346,381]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5e6f2df960/HelmetDex8.png","w":2,"h":2} +{"name":"Шёлковый нагрудник","refName":"Silken Vest","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[30,38]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MkEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/ca22533d0a/BodyInt2A.png","w":2,"h":3} +{"name":"Шёлковая одежда","refName":"Silken Wrap","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[86,104]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/3689be0ddd/BodyInt2B.png","w":2,"h":3} +{"name":"Шелкопрядные подошвы","refName":"Silkweave Sole","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvU2lsa3dlYXZlU29sZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0139320677/SilkweaveSole.png","w":2,"h":2} +{"name":"Карта зернохранилища","refName":"Silo Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/hk740NA.jpg"}} +{"name":"Серебряная брошь","refName":"Silver Brooch","namespace":"ITEM","craftable":{"category":"Heist Brooch"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvU2lsdmVyQnJvb2NoIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6601ca4fe0/SilverBrooch.png"} +{"name":"Серебряный флакон","refName":"Silver Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3Mvc2lsdmVyIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/a2143b575d/silver.png","h":2} +{"name":"Серебряное масло","refName":"Silver Oil","namespace":"ITEM","tradeTag":"silver-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9TaWx2ZXJPaWwiLCJzY2FsZSI6MX1d/d6ad829c2f/SilverOil.png"} +{"name":"Базовая отмычка","refName":"Simple Lockpick","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvU2ltcGxlTG9ja3BpY2siLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/6dbc6c1463/SimpleLockpick.png","w":2,"h":2} +{"name":"Матерчатая безрукавка","refName":"Simple Robe","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[14,20]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MUEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/7c925b445f/BodyInt1A.png","w":2,"h":3} +{"name":"Простой амулет","refName":"Simplex Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9IZWlzdEFtdWxldDIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MSwic2hhcGVyIjp0cnVlfV0/8f62b43742/HeistAmulet2.png"} +{"name":"Симулякр","refName":"Simulacrum","namespace":"ITEM","tradeTag":"simulacrum","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9EZWxpcml1bUZyYWdtZW50Iiwic2NhbGUiOjF9XQ/7f29157183/DeliriumFragment.png"} +{"name":"Осколок Симулякра","refName":"Simulacrum Splinter","namespace":"ITEM","tradeTag":"simulacrum-splinter","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9EZWxpcml1bVNwbGludGVyIiwic2NhbGUiOjF9XQ/b36d2fcff6/DeliriumSplinter.png"} +{"name":"Необычная сфера Делириума","refName":"Singular Delirium Orb","namespace":"ITEM","tradeTag":"singular-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJVbmlxdWVzIiwic2NhbGUiOjF9XQ/f8eb9f0b63/DeliriumOrbUniques.png"} +{"name":"Необычный инкубатор","refName":"Singular Incubator","namespace":"ITEM","tradeTag":"singular-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uVW5pcXVlcyIsInNjYWxlIjoxfV0/72b48d1f1b/IncubationUniques.png"} +{"name":"Необычный доклад разведки","refName":"Singular Scouting Report","namespace":"ITEM","tradeTag":"singular-scouting-report","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png"} +{"name":"Треуголка грешника","refName":"Sinner Tricorne","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[369,425]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f348f6138b/HelmetDex9.png","w":2,"h":2} +{"name":"Гаэльский кинжал","refName":"Skean","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjciLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/61e8f27cc5/Dagger7.png","h":3} +{"name":"Связка универсальных ключей","refName":"Skeleton Keyring","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvTWFzdGVyS2V5cmluZyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/d43f92c4ad/MasterKeyring.png","w":2,"h":2} +{"name":"Нож скорняка","refName":"Skinning Knife","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjIiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/c2c0a06eec/Dagger2.png","h":3} +{"name":"Дёргающаяся сфера Делириума","refName":"Skittering Delirium Orb","namespace":"ITEM","tradeTag":"skittering-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJTY2FyYWJzIiwic2NhbGUiOjF9XQ/ca1dcdc38b/DeliriumOrbScarabs.png"} +{"name":"Дергающийся инкубатор","refName":"Skittering Incubator","namespace":"ITEM","tradeTag":"skittering-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uU2NhcmFicyIsInNjYWxlIjoxfV0/1627db84fb/IncubationScarabs.png"} +{"name":"Секущий ужас","refName":"Slashing Horror","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0RlbW9uQm9zczJDb3Jwc2UiLCJ3IjozLCJoIjoyLCJzY2FsZSI6MX1d/211195cd4d/DemonBoss2Corpse.png","w":3,"h":2} +{"name":"Кинжал душегуба","refName":"Slaughter Knife","namespace":"ITEM","craftable":{"category":"Rune Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjMiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/fbc18a1b4f/Dagger3.png","h":3} +{"name":"Кувалда","refName":"Sledgehammer","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U0IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/8c1f2059d0/TwoHandMace4.png","w":2,"h":4} +{"name":"Модный жакет","refName":"Sleek Coat","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[243,287],"es":[51,60]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/360c5ce7d4/BodyDexInt2B.png","w":2,"h":3} +{"name":"Замшевые ботинки","refName":"Slink Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[246,283]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/76eb290c9b/BootsDex4.png","w":2,"h":2} +{"name":"Замшевые перчатки","refName":"Slink Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[242,278]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/05a8c03e95/GlovesDex4.png","w":2,"h":2} +{"name":"Малый кластерный самоцвет","refName":"Small Cluster Jewel","namespace":"ITEM","craftable":{"category":"Cluster Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL05ld0dlbUJhc2UxIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/0eb1a9d981/NewGemBase1.png"} +{"name":"Малый флакон равновесия","refName":"Small Hybrid Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvaHlicmlkZmxhc2sxIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/88dca03c78/hybridflask1.png","h":2} +{"name":"Малый флакон жизни","refName":"Small Life Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrMSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/a7ca6503d9/lifeflask1.png","h":2} +{"name":"Малый флакон маны","refName":"Small Mana Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrMSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/b764885739/manaflask1.png","h":2} +{"name":"Малый меч","refName":"Smallsword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjkiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/e409e11584/Rapier9.png","h":4} +{"name":"Лук птицебоя","refName":"Sniper Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/2c90c93faf/Bow5.png","w":2,"h":4} +{"name":"Молот светила","refName":"Solar Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U4IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/d7f01f7a37/TwoHandMace8.png","w":2,"h":4} +{"name":"Солнечный лук","refName":"Solarine Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0hlaXN0Qm93RmlyZSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/30526435da/HeistBowFire.png","w":2,"h":4} +{"name":"Диадема Солярис","refName":"Solaris Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[60,68]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e5e3144056/HelmetInt9.png","w":2,"h":2} +{"name":"Сапоги ауксилария","refName":"Soldier Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[88,99],"es":[18,20]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e75ade3184/BootsStrInt3.png","w":2,"h":2} +{"name":"Перчатки ауксилария","refName":"Soldier Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[92,103],"es":[19,21]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RySW50MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7adc65bac6/GlovesStrInt3.png","w":2,"h":2} +{"name":"Шлем солдата","refName":"Soldier Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[34,45],"es":[8,11]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/8e5221f23d/HelmetStrInt2.png","w":2,"h":2} +{"name":"Бригандина солдата","refName":"Soldier's Brigandine","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[178,210],"ev":[178,210]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/60a6d7b58c/BodyStrDex2C.png","w":2,"h":3} +{"name":"Сапоги волшебника","refName":"Sorcerer Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[51,59]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5589419509/BootsInt4.png","w":2,"h":2} +{"name":"Перчатки волшебника","refName":"Sorcerer Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[49,57]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/484e9bd879/GlovesInt4.png","w":2,"h":2} +{"name":"Маска скорби","refName":"Sorrow Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[42,49],"ev":[42,49]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleFIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f63493ca95/HelmetStrDexR.png","w":2,"h":2} +{"name":"Царский колючий щит","refName":"Sovereign Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[195,218],"es":[40,45]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3f3c95a49a/ShieldDexInt5.png","w":2,"h":2} +{"name":"Блестящий коготь","refName":"Sparkling Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/9efad90cdb/Claw7.png","w":2,"h":2} +{"name":"Призрачный топор","refName":"Spectral Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlOCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/1c9ff58159/OneHandAxe8.png","w":2,"h":3} +{"name":"Призрачный меч","refName":"Spectral Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/cba6615b1a/TwoHandSword7.png","w":2,"h":4} +{"name":"Свиток зеркальности","refName":"Specularity Scroll","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9IYXJiaW5nZXJUb2tlblNoaWVsZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7e0479ea6e/HarbingerTokenShield.png"} +{"name":"Карта паучьего леса","refName":"Spider Forest Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/HkKHFTB.jpg"}} +{"name":"Карта паучьего логова","refName":"Spider Lair Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/s2WAMm5.jpg"}} +{"name":"Паучиха-матриарх","refName":"Spider Matriarch","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0JsYWNrRGVhdGhCb3NzQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/658153825a/BlackDeathBossCorpse.png","w":3,"h":2} +{"name":"Одеяние из паучьего шёлка","refName":"Spidersilk Robe","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[101,117]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8b200fbbb5/BodyInt2C.png","w":2,"h":3} +{"name":"Колчан точных стрел","refName":"Spike-Point Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJTcGlrZS1Qb2ludCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/e420070f35/QuiverSpike-Point.png","w":2,"h":3} +{"name":"Колючая повязка","refName":"Spiked Bundle","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[13,18],"es":[4,6]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/76037de1f6/ShieldDexInt1.png","w":2,"h":2} +{"name":"Шипастая дубинка","refName":"Spiked Club","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2UzIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/a3a1dace2a/OneHandMace3.png","h":3} +{"name":"Колючие перчатки","refName":"Spiked Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[220,253]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3Bpa2VkR2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/d98a3475e1/SpikedGloves.png","w":2,"h":2} +{"name":"Усиленный круглый щит","refName":"Spiked Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[102,120],"ev":[102,120]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5839b7b6f4/ShieldStrDex3.png","w":2,"h":3} +{"name":"Лук из рога","refName":"Spine Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/6642f8922a/Bow6.png","w":2,"h":4} +{"name":"Талисман хребтоплава","refName":"Spinefuse Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hblJlZDMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/25b4056f52/TalismanRed3.png"} +{"name":"Колючая дубина","refName":"Spiny Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U1IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/88d16a9600/TwoHandMace5.png","w":2,"h":4} +{"name":"Укреплённый круглый щит","refName":"Spiny Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[154,177],"ev":[154,177]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5839b7b6f4/ShieldStrDex3.png","w":2,"h":3} +{"name":"Витая шпага","refName":"Spiraled Foil","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjUiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/ccce0178cc/Rapier5.png","h":4} +{"name":"Витой жезл","refName":"Spiraled Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/a28035d7c4/Wand5.png","h":3} +{"name":"Дух удачи","refName":"Spirit of Fortune","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL0t1ZHVrdVRvdGVtQ29ycHNlIiwidyI6MywiaCI6Miwic2NhbGUiOjF9XQ/7faf1de77b/KudukuTotemCorpse.png","w":3,"h":2} +{"name":"Украшенный круглый щит","refName":"Splendid Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[75,86],"ev":[75,86]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/b81ab44241/ShieldStrDex5.png","w":2,"h":3} +{"name":"Осколок Чаюлы","refName":"Splinter of Chayula","namespace":"ITEM","tradeTag":"splinter-chayula","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFNoYXJkQ2hhb3MiLCJzY2FsZSI6MX1d/14332eaec8/BreachShardChaos.png"} +{"name":"Осколок Иш","refName":"Splinter of Esh","namespace":"ITEM","tradeTag":"splinter-esh","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFNoYXJkTGlnaHRuaW5nIiwic2NhbGUiOjF9XQ/38665f5bda/BreachShardLightning.png"} +{"name":"Осколок Тул","refName":"Splinter of Tul","namespace":"ITEM","tradeTag":"splinter-tul","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFNoYXJkQ29sZCIsInNjYWxlIjoxfV0/6fb888d0e1/BreachShardCold.png"} +{"name":"Осколок Уул-Нетол","refName":"Splinter of Uul-Netol","namespace":"ITEM","tradeTag":"splinter-uul","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFNoYXJkUGh5c2ljYWwiLCJzY2FsZSI6MX1d/3919f62b2a/BreachShardPhysical.png"} +{"name":"Осколок Ксофа","refName":"Splinter of Xoph","namespace":"ITEM","tradeTag":"splinter-xoph","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFNoYXJkRmlyZSIsInNjYWxlIjoxfV0/b53a90ea19/BreachShardFire.png"} +{"name":"Разбитый ростовой щит","refName":"Splintered Tower Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[9,12]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjEiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/3c332a170f/ShieldStr1.png","w":2,"h":4} +{"name":"Талисман колотритона","refName":"Splitnewt Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbkJsYWNrNCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9ef3586829/TalismanBlack4.png"} +{"name":"Микстура из споровика","refName":"Sporebloom Tincture","namespace":"ITEM","craftable":{"category":"Tincture"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL1Nwb3JlYmxvb21TYXAiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MX1d/1d33094e39/SporebloomSap.png","h":2} +{"name":"Стабилизующий скипетр","refName":"Stabilising Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9IZWlzdFNjZXB0cmVFbGVtZW50YWwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/34e5d78ab3/HeistSceptreElemental.png","w":2,"h":3} +{"name":"Колода карт","refName":"Stacked Deck","namespace":"ITEM","tradeTag":"stacked-deck","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9EZWNrIiwic2NhbGUiOjF9XQ/8e83aea79a/Deck.png"} +{"name":"Олений скипетр","refName":"Stag Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyOSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/151820601e/scepter9.png","w":2,"h":3} +{"name":"Карта застоя","refName":"Stagnation Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/OJbjzlG.jpg"}} +{"name":"Стандартная отмычка","refName":"Standard Lockpick","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvU3RhbmRhcmRMb2NrcGljayIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/c07ad566fa/StandardLockpick.png","w":2,"h":2} +{"name":"Обычный оселок","refName":"Standard Sharpening Stone","namespace":"ITEM","craftable":{"category":"Heist Gear"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvU3RhbmRhcmRTaGFycGVuaW5nU3RvbmUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/451be8e369/StandardSharpeningStone.png","w":2,"h":2} +{"name":"Шевровые ботинки","refName":"Stealth Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[220,253]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f2e9a30d4a/BootsDex3.png","w":2,"h":2} +{"name":"Шевровые перчатки","refName":"Stealth Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[231,265]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/445d038f1d/GlovesDex3.png","w":2,"h":2} +{"name":"Стальные наручи","refName":"Steel Bracers","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQnJhY2VyQmFzZVR5cGVfbWV0YWwiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/9922db6069/BracerBaseType_metal.png","w":2,"h":2} +{"name":"Стальной обруч","refName":"Steel Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[49,55]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/52f5eb243a/HelmetInt7.png","w":2,"h":2} +{"name":"Стальная дрель","refName":"Steel Drill","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRHJpbGxTdGQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/918de329aa/DrillStd.png","w":2,"h":2} +{"name":"Стальные перчатки","refName":"Steel Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[116,127]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyNCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/468f466568/GlovesStr4.png","w":2,"h":2} +{"name":"Стальные поножи","refName":"Steel Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[32,42]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c55db774a6/BootsStr2.png","w":2,"h":2} +{"name":"Стальной каплевидный щит","refName":"Steel Kite Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[146,167],"es":[30,35]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludDQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8d673b3a1f/ShieldStrInt4.png","w":2,"h":3} +{"name":"Стальное кольцо","refName":"Steel Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQWRhbWFudGluZVJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/04d7eaa12e/AdamantineRing.png"} +{"name":"Стальной молот","refName":"Steelhead","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U0IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/8c1f2059d0/TwoHandMace4.png","w":2,"h":4} +{"name":"Стальные башмаки","refName":"Steelscale Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[65,75],"ev":[65,75]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/bae77b3a2c/BootsStrDex1.png","w":2,"h":2} +{"name":"Чешуйчатые стальные перчатки","refName":"Steelscale Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[65,75],"ev":[65,75]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyRGV4MSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ba243000da/GlovesStrDex1.png","w":2,"h":2} +{"name":"Железный лук","refName":"Steelwood Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzkiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/aa9bf2b0d1/Bow9.png","w":2,"h":4} +{"name":"Стибнитовый флакон","refName":"Stibnite Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3Mvc3RpYm5pdGUiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/35fbc2f198/stibnite.png","h":2} +{"name":"Стилет","refName":"Stiletto","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/954af836f7/Dagger4.png","h":3} +{"name":"Каменный топор","refName":"Stone Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlMSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/fd3d66a367/TwoHandAxe1.png","w":2,"h":4} +{"name":"Каменный молот","refName":"Stone Hammer","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U0IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/b0b1a18a0c/OneHandMace4.png","w":2,"h":3} +{"name":"Башмаки наездника бури","refName":"Stormrider Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[236,271]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SaXR1YWxEZXhCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7172feff67/RitualDexBoots.png","w":2,"h":2} +{"name":"Карта взморья","refName":"Strand Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/7aE4Xzp.jpg"}} +{"name":"Сандалеты","refName":"Strapped Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[30,39],"es":[7,9]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/2f86a773a5/BootsDexInt2.png","w":2,"h":2} +{"name":"Ременной кожаный доспех","refName":"Strapped Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[98,127]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4M0EiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e725e99b1b/BodyDex3A.png","w":2,"h":3} +{"name":"Ременные перчатки","refName":"Strapped Mitts","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[30,39],"es":[7,9]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/e18b986979/GlovesDexInt2.png","w":2,"h":2} +{"name":"Клёпаный ремень","refName":"Studded Belt","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdDYiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/7ae25523b2/Belt6.png","w":2} +{"name":"Клёпаные наручи","refName":"Studded Bracers","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQnJhY2VyQmFzZVR5cGVfc3R1ZGRlZCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/1dc4ea1d4c/BracerBaseType_studded.png","w":2,"h":2} +{"name":"Клёпаный круглый щит","refName":"Studded Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[46,58],"ev":[46,58]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5839b7b6f4/ShieldStrDex3.png","w":2,"h":3} +{"name":"Тёмные тиски","refName":"Stygian Vise","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQWJ5c3NCZWx0IiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/973fb5fe7a/AbyssBelt.png","w":2} +{"name":"Поглощающий щит духа","refName":"Subsuming Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[25,29]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0ludEhlaXN0U2hpZWxkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f58639d2f4/IntHeistShield.png","w":2,"h":3} +{"name":"Сульфитовый скарабей","refName":"Sulphite Scarab","namespace":"ITEM","tradeTag":"sulphite-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJTdWxwaGl0ZSIsInNjYWxlIjoxfV0/9bdde2cec0/LesserScarabSulphite.png"} +{"name":"Сульфитовый скарабей испарений","refName":"Sulphite Scarab of Fumes","namespace":"ITEM","tradeTag":"sulphite-scarab-of-fumes","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiU3VscGhpdGUiLCJzY2FsZSI6MX1d/55c0fed4b6/GreaterScarabSulphite.png"} +{"name":"Сульфитовый скарабей алчности","refName":"Sulphite Scarab of Greed","namespace":"ITEM","tradeTag":"sulphite-scarab-of-greed","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJTdWxwaGl0ZSIsInNjYWxlIjoxfV0/8121093ec0/NormalScarabSulphite.png"} +{"name":"Серная горелка","refName":"Sulphur Blowtorch","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVG9yY2hTdGQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/9291e5d539/TorchStd.png","w":2,"h":2} +{"name":"Серный флакон","refName":"Sulphur Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvZ29sZCIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/74568fc9b9/gold.png","h":2} +{"name":"Карта серного озера","refName":"Sulphur Vents Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/D3sc6Dg.jpg"}} +{"name":"Карта вершины","refName":"Summit Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/6aL5NhS.jpg"}} +{"name":"Солнечный кожаный доспех","refName":"Sun Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[324,382]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4M0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e30de2c7a6/BodyDex3C.png","w":2,"h":3} +{"name":"Солнечные латы","refName":"Sun Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[451,506]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/94a3d5d98e/BodyStr1C.png","w":2,"h":3} +{"name":"Руна Солнца","refName":"Sun Rune","namespace":"ITEM","tradeTag":"sun-rune","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2V0dGxlcnMvVmlsbGFnZVJ1bmUyIiwic2NhbGUiOjF9XQ/c0bfc39082/VillageRune2.png"} +{"name":"Раскалыватель","refName":"Sundering Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlMyIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/7d35a55caa/TwoHandAxe3.png","w":2,"h":4} +{"name":"Диадема пламени солнца","refName":"Sunfire Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[101,116]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e5e3144056/HelmetInt9.png","w":2,"h":2} +{"name":"Карта затонувшего города","refName":"Sunken City Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/QAoHzcR.jpg"}} +{"name":"Императорский кожаный доспех","refName":"Supreme Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[894,1028]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/47360dcc4a/BodyDex1C.png","w":2,"h":3} +{"name":"Императорский колючий щит","refName":"Supreme Spiked Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[242,278],"es":[49,57]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleEludDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3f3c95a49a/ShieldDexInt5.png","w":2,"h":2} +{"name":"Облачение синдиката","refName":"Syndicate's Garb","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[1205,1386]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8f1d1cfaa9/BodyDex2C.png","w":2,"h":3} +{"name":"Синтезированная карта","refName":"Synthesised Map","namespace":"ITEM","craftable":{"uniqueOnly":true,"category":"Map"},"icon":"","map":{}} +{"name":"Синтезирующий фрагмент","refName":"Synthesising Fragment","namespace":"ITEM","tradeTag":"synthesising-fragment","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyQm9zc0tleUNvcnRleCIsInNjYWxlIjoxfV0/f97fadd4b1/UberBossKeyCortex.png"} +{"name":"Сфера подгонки","refName":"Tailoring Orb","namespace":"ITEM","tradeTag":"tailoring-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGl2aW5lRW5jaGFudFdlYXBvbkN1cnJlbmN5Iiwic2NhbGUiOjF9XQ/d417654a23/DivineEnchantWeaponCurrency.png"} +{"name":"Порочная деталь доспеха","refName":"Tainted Armourer's Scrap","namespace":"ITEM","tradeTag":"tainted-armourers-scrap","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZUFybW91cmVyc1NjcmFwIiwic2NhbGUiOjF9XQ/9ee0a10625/HellscapeArmourersScrap.png"} +{"name":"Порочный точильный камень","refName":"Tainted Blacksmith's Whetstone","namespace":"ITEM","tradeTag":"tainted-blacksmiths-whetstone","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZUJsYWNrc21pdGhXaGV0c3RvbmUiLCJzY2FsZSI6MX1d/0309648ccb/HellscapeBlacksmithWhetstone.png"} +{"name":"Порочный катализатор","refName":"Tainted Catalyst","namespace":"ITEM","tradeTag":"tainted-catalyst","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL1RhaW50ZWRDYXRhbHlzdCIsInNjYWxlIjoxfV0/5ce364bd70/TaintedCatalyst.png"} +{"name":"Порочная сфера хаоса","refName":"Tainted Chaos Orb","namespace":"ITEM","tradeTag":"tainted-chaos-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZUNoYW9zT3JiIiwic2NhbGUiOjF9XQ/64d1f4db99/HellscapeChaosOrb.png"} +{"name":"Порочная цветная сфера","refName":"Tainted Chromatic Orb","namespace":"ITEM","tradeTag":"tainted-chromatic-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZUNocm9tYXRpY09yYiIsInNjYWxlIjoxfV0/702d29c7ab/HellscapeChromaticOrb.png"} +{"name":"Порочная божественная слеза","refName":"Tainted Divine Teardrop","namespace":"ITEM","tradeTag":"tainted-divine-teardrop","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZVRlYXJkcm9wT3JiIiwic2NhbGUiOjF9XQ/0d251b9d52/HellscapeTeardropOrb.png"} +{"name":"Порочная сфера возвышения","refName":"Tainted Exalted Orb","namespace":"ITEM","tradeTag":"tainted-exalted-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZUV4YWx0ZWRPcmIiLCJzY2FsZSI6MX1d/68a0ea3020/HellscapeExaltedOrb.png"} +{"name":"Порочная сфера златокузнеца","refName":"Tainted Jeweller's Orb","namespace":"ITEM","tradeTag":"tainted-jewellers-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZUpld2VsbGVyc09yYiIsInNjYWxlIjoxfV0/f146c29db2/HellscapeJewellersOrb.png"} +{"name":"Порочная мифическая сфера","refName":"Tainted Mythic Orb","namespace":"ITEM","tradeTag":"tainted-mythic-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZU15dGhpY09yYiIsInNjYWxlIjoxfV0/72ba97d1a8/HellscapeMythicOrb.png"} +{"name":"Заражённое масло","refName":"Tainted Oil","namespace":"ITEM","tradeTag":"tainted-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9WYWFsT2lsIiwic2NhbGUiOjF9XQ/ac4ceb0430/VaalOil.png"} +{"name":"Порочная сфера соединения","refName":"Tainted Orb of Fusing","namespace":"ITEM","tradeTag":"tainted-orb-of-fusing","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZU9yYk9mRnVzaW5nIiwic2NhbGUiOjF9XQ/845f3c20ed/HellscapeOrbOfFusing.png"} +{"name":"Топор когтя","refName":"Talon Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlOCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/ba1d6734bb/TwoHandAxe8.png","w":2,"h":4} +{"name":"Замысловатое ископаемое","refName":"Tangled Fossil","namespace":"ITEM","tradeTag":"tangled-fossil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvVGFuZ2xlZEZvc3NpbCIsInNjYWxlIjoxfV0/b96bdfe155/TangledFossil.png"} +{"name":"Потёртый щит духа","refName":"Tarnished Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[21,25]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/2fcc8b522c/ShieldInt4.png","w":2,"h":2} +{"name":"Истрёпанная накидка","refName":"Tattered Cloak","namespace":"ITEM","craftable":{"category":"Heist Cloak"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVGF0dGVyZWRDbG9hayIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/9c3ef0c0c4/TatteredCloak.png","w":2,"h":2} +{"name":"Татуировка Хранителя луны Арохонгуи","refName":"Tattoo of the Arohongui Moonwarden","namespace":"ITEM","tradeTag":"tattoo-of-the-arohongui-moonwarden","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"Татуировка Разведчика Арохонгуи","refName":"Tattoo of the Arohongui Scout","namespace":"ITEM","tradeTag":"tattoo-of-the-arohongui-scout","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"Татуировка Шамана Арохонгуи","refName":"Tattoo of the Arohongui Shaman","namespace":"ITEM","tradeTag":"tattoo-of-the-arohongui-shaman","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"Татуировка Зачинщика войны Арохонгуи","refName":"Tattoo of the Arohongui Warmonger","namespace":"ITEM","tradeTag":"tattoo-of-the-arohongui-warmonger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"Татуировка Воина Арохонгуи","refName":"Tattoo of the Arohongui Warrior","namespace":"ITEM","tradeTag":"tattoo-of-the-arohongui-warrior","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"Татуировка Стража смерти Хинекоры","refName":"Tattoo of the Hinekora Deathwarden","namespace":"ITEM","tradeTag":"tattoo-of-the-hinekora-deathwarden","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"Татуировка Шамана Хинекоры","refName":"Tattoo of the Hinekora Shaman","namespace":"ITEM","tradeTag":"tattoo-of-the-hinekora-shaman","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"Татуировка Сказителя Хинекоры","refName":"Tattoo of the Hinekora Storyteller","namespace":"ITEM","tradeTag":"tattoo-of-the-hinekora-storyteller","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"Татуировка Зачинщика войны Хинекоры","refName":"Tattoo of the Hinekora Warmonger","namespace":"ITEM","tradeTag":"tattoo-of-the-hinekora-warmonger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"Татуировка Воина Хинекоры","refName":"Tattoo of the Hinekora Warrior","namespace":"ITEM","tradeTag":"tattoo-of-the-hinekora-warrior","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"Татуировка Кровопийцы Китавы","refName":"Tattoo of the Kitava Blood Drinker","namespace":"ITEM","tradeTag":"tattoo-of-the-kitava-blood-drinker","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"Татуировка Пожирателя сердец Китавы","refName":"Tattoo of the Kitava Heart Eater","namespace":"ITEM","tradeTag":"tattoo-of-the-kitava-heart-eater","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"Татуировка Смутьяна Китавы","refName":"Tattoo of the Kitava Rebel","namespace":"ITEM","tradeTag":"tattoo-of-the-kitava-rebel","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"Татуировка Шамана Китавы","refName":"Tattoo of the Kitava Shaman","namespace":"ITEM","tradeTag":"tattoo-of-the-kitava-shaman","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"Татуировка Воина Китавы","refName":"Tattoo of the Kitava Warrior","namespace":"ITEM","tradeTag":"tattoo-of-the-kitava-warrior","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"Татуировка Огненного ходока Нгамаху","refName":"Tattoo of the Ngamahu Firewalker","namespace":"ITEM","tradeTag":"tattoo-of-the-ngamahu-firewalker","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"Татуировка Шамана Нгамаху","refName":"Tattoo of the Ngamahu Shaman","namespace":"ITEM","tradeTag":"tattoo-of-the-ngamahu-shaman","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"Татуировка Зачинщика войны Нгамаху","refName":"Tattoo of the Ngamahu Warmonger","namespace":"ITEM","tradeTag":"tattoo-of-the-ngamahu-warmonger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"Татуировка Воина Нгамаху","refName":"Tattoo of the Ngamahu Warrior","namespace":"ITEM","tradeTag":"tattoo-of-the-ngamahu-warrior","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"Татуировка Резчика по дереву Нгамаху","refName":"Tattoo of the Ngamahu Woodcarver","namespace":"ITEM","tradeTag":"tattoo-of-the-ngamahu-woodcarver","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"Татуировка Лучника Рамако","refName":"Tattoo of the Ramako Archer","namespace":"ITEM","tradeTag":"tattoo-of-the-ramako-archer","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"Татуировка Гонца Рамако","refName":"Tattoo of the Ramako Fleetfoot","namespace":"ITEM","tradeTag":"tattoo-of-the-ramako-fleetfoot","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"Татуировка Разведчика Рамако","refName":"Tattoo of the Ramako Scout","namespace":"ITEM","tradeTag":"tattoo-of-the-ramako-scout","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"Татуировка Шамана Рамако","refName":"Tattoo of the Ramako Shaman","namespace":"ITEM","tradeTag":"tattoo-of-the-ramako-shaman","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"Татуировка Снайпера Рамако","refName":"Tattoo of the Ramako Sniper","namespace":"ITEM","tradeTag":"tattoo-of-the-ramako-sniper","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"Татуировка Громилы Ронгокураи","refName":"Tattoo of the Rongokurai Brute","namespace":"ITEM","tradeTag":"tattoo-of-the-rongokurai-brute","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"Татуировка Голиафа Ронгокураи","refName":"Tattoo of the Rongokurai Goliath","namespace":"ITEM","tradeTag":"tattoo-of-the-rongokurai-goliath","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"Татуировка Стражника Ронгокураи","refName":"Tattoo of the Rongokurai Guard","namespace":"ITEM","tradeTag":"tattoo-of-the-rongokurai-guard","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"Татуировка Черепахи Ронгокураи","refName":"Tattoo of the Rongokurai Turtle","namespace":"ITEM","tradeTag":"tattoo-of-the-rongokurai-turtle","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"Татуировка Воина Ронгокураи","refName":"Tattoo of the Rongokurai Warrior","namespace":"ITEM","tradeTag":"tattoo-of-the-rongokurai-warrior","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"Татуировка Танцующего с клинками Тасалио","refName":"Tattoo of the Tasalio Bladedancer","namespace":"ITEM","tradeTag":"tattoo-of-the-tasalio-bladedancer","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"Татуировка Разведчика Тасалио","refName":"Tattoo of the Tasalio Scout","namespace":"ITEM","tradeTag":"tattoo-of-the-tasalio-scout","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"Татуировка Шамана Тасалио","refName":"Tattoo of the Tasalio Shaman","namespace":"ITEM","tradeTag":"tattoo-of-the-tasalio-shaman","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"Татуировка Волнореза Тасалио","refName":"Tattoo of the Tasalio Tideshifter","namespace":"ITEM","tradeTag":"tattoo-of-the-tasalio-tideshifter","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"Татуировка Воина Тасалио","refName":"Tattoo of the Tasalio Warrior","namespace":"ITEM","tradeTag":"tattoo-of-the-tasalio-warrior","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"Татуировка Травника Тахоа","refName":"Tattoo of the Tawhoa Herbalist","namespace":"ITEM","tradeTag":"tattoo-of-the-tawhoa-herbalist","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"Татуировка Натуралиста Тахоа","refName":"Tattoo of the Tawhoa Naturalist","namespace":"ITEM","tradeTag":"tattoo-of-the-tawhoa-naturalist","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"Татуировка Разведчика Тахоа","refName":"Tattoo of the Tawhoa Scout","namespace":"ITEM","tradeTag":"tattoo-of-the-tawhoa-scout","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkRleFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/de9fca75ad/CommonDexTatttooEquipment.png"} +{"name":"Татуировка Шамана Тахоа","refName":"Tattoo of the Tawhoa Shaman","namespace":"ITEM","tradeTag":"tattoo-of-the-tawhoa-shaman","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"Татуировка Воина Тахоа","refName":"Tattoo of the Tawhoa Warrior","namespace":"ITEM","tradeTag":"tattoo-of-the-tawhoa-warrior","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"Татуировка Поединщика Тукохамы","refName":"Tattoo of the Tukohama Brawler","namespace":"ITEM","tradeTag":"tattoo-of-the-tukohama-brawler","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"Татуировка Шамана Тукохамы","refName":"Tattoo of the Tukohama Shaman","namespace":"ITEM","tradeTag":"tattoo-of-the-tukohama-shaman","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"Татуировка Глашатая войны Тукохамы","refName":"Tattoo of the Tukohama Warcaller","namespace":"ITEM","tradeTag":"tattoo-of-the-tukohama-warcaller","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"Татуировка Зачинщика войны Тукохамы","refName":"Tattoo of the Tukohama Warmonger","namespace":"ITEM","tradeTag":"tattoo-of-the-tukohama-warmonger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"Татуировка Воина Тукохамы","refName":"Tattoo of the Tukohama Warrior","namespace":"ITEM","tradeTag":"tattoo-of-the-tukohama-warrior","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"Татуировка Разведчика Валако","refName":"Tattoo of the Valako Scout","namespace":"ITEM","tradeTag":"tattoo-of-the-valako-scout","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"Татуировка Шамана Валако","refName":"Tattoo of the Valako Shaman","namespace":"ITEM","tradeTag":"tattoo-of-the-valako-shaman","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"Татуировка Щитоносца Валако","refName":"Tattoo of the Valako Shieldbearer","namespace":"ITEM","tradeTag":"tattoo-of-the-valako-shieldbearer","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vblN0clRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/5cf69ce758/CommonStrTatttooEquipment.png"} +{"name":"Татуировка Наездника бури Валако","refName":"Tattoo of the Valako Stormrider","namespace":"ITEM","tradeTag":"tattoo-of-the-valako-stormrider","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"Татуировка Воина Валако","refName":"Tattoo of the Valako Warrior","namespace":"ITEM","tradeTag":"tattoo-of-the-valako-warrior","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jZXN0b3JzL0NvbW1vbkludFRhdHR0b29FcXVpcG1lbnQiLCJzY2FsZSI6MX1d/ccfb032651/CommonIntTatttooEquipment.png"} +{"name":"Тиковый круглый щит","refName":"Teak Round Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ar":[131,146],"ev":[131,146]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleDIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9cccab30a2/ShieldStrDex2.png","w":2,"h":3} +{"name":"Бирюзовое масло","refName":"Teal Oil","namespace":"ITEM","tradeTag":"teal-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9UZWFsT2lsIiwic2NhbGUiOjF9XQ/d90d65a90b/TealOil.png"} +{"name":"Закалённая шпага","refName":"Tempered Foil","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjMiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/11f4a8b0d0/Rapier3.png","h":4} +{"name":"Закаляющий катализатор","refName":"Tempering Catalyst","namespace":"ITEM","tradeTag":"tempering-catalyst","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL1RlbXBlcmluZ0NhdGFseXN0Iiwic2NhbGUiOjF9XQ/6bf69c356e/TemperingCatalyst.png"} +{"name":"Сфера закалки","refName":"Tempering Orb","namespace":"ITEM","tradeTag":"tempering-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGl2aW5lRW5jaGFudEJvZHlBcm1vdXJDdXJyZW5jeSIsInNjYWxlIjoxfV0/37681eda1c/DivineEnchantBodyArmourCurrency.png"} +{"name":"Карта храма","refName":"Temple Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/g3LZ4zC.jpg"}} +{"name":"Палица","refName":"Tenderizer","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2UzIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/a3a1dace2a/OneHandMace3.png","h":3} +{"name":"Карта террасы","refName":"Terrace Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/dZZGyRt.jpg"}} +{"name":"Жуткий коготь","refName":"Terror Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3OCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/3cc3260177/Claw8.png","w":2,"h":2} +{"name":"Чудовищный молот","refName":"Terror Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U3IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/d7e632f004/TwoHandMace7.png","w":2,"h":4} +{"name":"Волшебная сфера Делириума","refName":"Thaumaturge's Delirium Orb","namespace":"ITEM","tradeTag":"thaumaturges-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJHZW1zIiwic2NhbGUiOjF9XQ/027802e844/DeliriumOrbGems.png"} +{"name":"Инкубатор волшебника","refName":"Thaumaturge's Incubator","namespace":"ITEM","tradeTag":"thaumaturges-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uR2VtcyIsInNjYWxlIjoxfV0/7df785d740/IncubationGems.png"} +{"name":"Волшебный чуящий амулет","refName":"Thaumaturgical Sensing Charm","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVGhhdW1hdHVyZ2ljYWxTZW5zaW5nQ2hhcm0iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/7717c977a0/ThaumaturgicalSensingCharm.png","w":2,"h":2} +{"name":"Волшебный оберег","refName":"Thaumaturgical Ward","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVGhhdW1hdHVyZ2ljYWxXYXJkIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/5c04225225/ThaumaturgicalWard.png","w":2,"h":2} +{"name":"Волшебная горелка","refName":"Thaumetic Blowtorch","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVG9yY2hBZHYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/56e93dd6de/TorchAdv.png","w":2,"h":2} +{"name":"Волшебный порох","refName":"Thaumetic Flashpowder","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVGhhdW1ldGljRmxhc2hwb3dkZXIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/1544d0cf33/ThaumeticFlashpowder.png","w":2,"h":2} +{"name":"Веление Мейвен","refName":"The Maven's Writ","namespace":"ITEM","tradeTag":"the-mavens-writ","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXRsYXMvTWF2ZW5LZXkiLCJzY2FsZSI6MX1d/40683e487b/MavenKey.png"} +{"name":"Театральный маскировочный набор","refName":"Theatre Disguise Kit","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRXNwaW9uYWdlRGlzZ3Vpc2VLaXQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e450ea475f/EspionageDisguiseKit.png","w":2,"h":2} +{"name":"Чащобный лук","refName":"Thicket Bow","namespace":"ITEM","craftable":{"category":"Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/0fcc51afcd/Bow2.png","w":2,"h":3} +{"name":"Карта чащи","refName":"Thicket Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/rlY2iPC.jpg"}} +{"name":"Облачение вора","refName":"Thief's Garb","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[353,396]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8f1d1cfaa9/BodyDex2C.png","w":2,"h":3} +{"name":"Воровское украшение","refName":"Thief's Trinket","namespace":"ITEM","craftable":{"category":"Trinket","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvTHVja0NoYXJtMSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/3641828a4f/LuckCharm1.png"} +{"name":"Орихалковый щит духа","refName":"Thorium Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[54,62]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/404ef29c87/ShieldInt6.png","w":2,"h":2} +{"name":"Колючая рапира","refName":"Thorn Rapier","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjgiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/1f11ed5e87/Rapier8.png","h":4} +{"name":"Талисман трёх рук","refName":"Three Hands Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hblJlZDgiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4606db8db3/TalismanRed8.png"} +{"name":"Талисман трёх крыс","refName":"Three Rat Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hblJlZDciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ebaea93f2d/TalismanRed7.png"} +{"name":"Кастет молотильщика","refName":"Thresher Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/8b8d9559cd/Claw2.png","w":2,"h":2} +{"name":"Затыкатель","refName":"Throat Stabber","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ac6e7ab61d/Claw3.png","w":2,"h":2} +{"name":"Предотвращающие перчатки","refName":"Thwarting Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[236,271]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUml0dWFsU3RyR2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/254b8a0066/RitualStrGloves.png","w":2,"h":2} +{"name":"Тигровый крюк","refName":"Tiger Hook","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDkiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/d11450350f/OneHandSword9.png","w":2,"h":3} +{"name":"Меч тигра","refName":"Tiger Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d69254d0a6/TwoHandSword6.png","w":2,"h":4} +{"name":"Тигриная лапа","refName":"Tiger's Paw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0a98c635d3/Claw4.png","w":2,"h":2} +{"name":"Топор лесоруба","refName":"Timber Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlMyIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/7d35a55caa/TwoHandAxe3.png","w":2,"h":4} +{"name":"Руна Времени","refName":"Time Rune","namespace":"ITEM","tradeTag":"time-rune","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2V0dGxlcnMvVmlsbGFnZVJ1bmU5Iiwic2NhbGUiOjF9XQ/d6a60dbfc9/VillageRune9.png"} +{"name":"Свиток времени и света","refName":"Time-light Scroll","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9IYXJiaW5nZXJUb2tlbkJlbHQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cd4f70a070/HarbingerTokenBelt.png"} +{"name":"Затерянный во времени инкубатор","refName":"Time-Lost Incubator","namespace":"ITEM","tradeTag":"time-lost-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uVW5pcXVlcyIsInNjYWxlIjoxfV0/72b48d1f1b/IncubationUniques.png"} +{"name":"Вневременная сфера Делириума","refName":"Timeless Delirium Orb","namespace":"ITEM","tradeTag":"timeless-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJMZWdpb24iLCJzY2FsZSI6MX1d/b61cc0e1f6/DeliriumOrbLegion.png"} +{"name":"Вневременной знак Вечных","refName":"Timeless Eternal Emblem","namespace":"ITEM","tradeTag":"timeless-eternal-emblem","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FdGVybmFsRW1waXJlRnJhZ21lbnQiLCJzY2FsZSI6MX1d/974fcca603/EternalEmpireFragment.png"} +{"name":"Вневременной осколок Вечной Империи","refName":"Timeless Eternal Empire Splinter","namespace":"ITEM","tradeTag":"timeless-eternal-empire-splinter","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FdGVybmFsRW1waXJlU2hhcmQiLCJzY2FsZSI6MX1d/f404e7925c/EternalEmpireShard.png"} +{"name":"Вневременной самоцвет","refName":"Timeless Jewel","namespace":"ITEM","craftable":{"category":"Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RpbWVsZXNzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2cc52f22d7/Timeless.png"} +{"name":"Вневременной знак каруи","refName":"Timeless Karui Emblem","namespace":"ITEM","tradeTag":"timeless-karui-emblem","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9LYXJ1aUZyYWdtZW50Iiwic2NhbGUiOjF9XQ/c616b0ee65/KaruiFragment.png"} +{"name":"Вневременной осколок каруи","refName":"Timeless Karui Splinter","namespace":"ITEM","tradeTag":"timeless-karui-splinter","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9LYXJ1aVNoYXJkIiwic2NhbGUiOjF9XQ/dd21055148/KaruiShard.png"} +{"name":"Вневременной знак маракетов","refName":"Timeless Maraketh Emblem","namespace":"ITEM","tradeTag":"timeless-maraketh-emblem","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9NYXJha2V0aEZyYWdtZW50Iiwic2NhbGUiOjF9XQ/a81c4968ab/MarakethFragment.png"} +{"name":"Вневременной осколок маракетов","refName":"Timeless Maraketh Splinter","namespace":"ITEM","tradeTag":"timeless-maraketh-splinter","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9NYXJha2V0aFNoYXJkIiwic2NhbGUiOjF9XQ/04ec0d80fe/MarakethShard.png"} +{"name":"Вневременной знак храмовников","refName":"Timeless Templar Emblem","namespace":"ITEM","tradeTag":"timeless-templar-emblem","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UZW1wbGFyRnJhZ21lbnQiLCJzY2FsZSI6MX1d/e7ede9f816/TemplarFragment.png"} +{"name":"Вневременной осколок храмовников","refName":"Timeless Templar Splinter","namespace":"ITEM","tradeTag":"timeless-templar-splinter","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UZW1wbGFyU2hhcmQiLCJzY2FsZSI6MX1d/fd3d766dd5/TemplarShard.png"} +{"name":"Вневременной знак ваал","refName":"Timeless Vaal Emblem","namespace":"ITEM","tradeTag":"timeless-vaal-emblem","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYWFsRnJhZ21lbnQiLCJzY2FsZSI6MX1d/1f8bc8f5ad/VaalFragment.png"} +{"name":"Вневременной осколок ваал","refName":"Timeless Vaal Splinter","namespace":"ITEM","tradeTag":"timeless-vaal-splinter","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYWFsU2hhcmQiLCJzY2FsZSI6MX1d/6b356215ac/VaalShard.png"} +{"name":"Истёртый кастет","refName":"Timeworn Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ae1fb6dddd/Claw6.png","w":2,"h":2} +{"name":"Ключ от Ветхого Реликвария","refName":"Timeworn Reliquary Key","namespace":"ITEM","tradeTag":"timeworn-reliquary-key","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYXVsdE1hcDMiLCJzY2FsZSI6MX1d/b7e8aacbaa/VaultMap3.png"} +{"name":"Перчатки умельца","refName":"Tinker Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[35,41]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUml0dWFsRGV4R2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/2785fe1c37/RitualDexGloves.png","w":2,"h":2} +{"name":"Перчатки титана","refName":"Titan Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[242,278]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyNCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/468f466568/GlovesStr4.png","w":2,"h":2} +{"name":"Поножи титана","refName":"Titan Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[241,278]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/82bedfd1e0/BootsStr4.png","w":2,"h":2} +{"name":"Доспех титана","refName":"Titan Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[877,1009]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/94a3d5d98e/BodyStr1C.png","w":2,"h":3} +{"name":"Титанический скарабей","refName":"Titanic Scarab","namespace":"ITEM","tradeTag":"titanic-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJVbmlxdWUiLCJzY2FsZSI6MX1d/9ed658ddba/LesserScarabUnique.png"} +{"name":"Титанический скарабей легенды","refName":"Titanic Scarab of Legend","namespace":"ITEM","tradeTag":"titanic-scarab-of-legend","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiVW5pcXVlIiwic2NhbGUiOjF9XQ/0194f878a0/GreaterScarabUnique.png"} +{"name":"Титанический скарабей сокровищ","refName":"Titanic Scarab of Treasures","namespace":"ITEM","tradeTag":"titanic-scarab-of-treasures","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJVbmlxdWUiLCJzY2FsZSI6MX1d/e2945f5878/NormalScarabUnique.png"} +{"name":"Адамантиевый щит духа","refName":"Titanium Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[67,77]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/404ef29c87/ShieldInt6.png","w":2,"h":2} +{"name":"Томагавк","refName":"Tomahawk","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlMyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/126bb32028/OneHandAxe3.png","w":2,"h":3} +{"name":"Фолиант","refName":"Tome Relic","namespace":"ITEM","craftable":{"category":"Sanctum Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljQmFzZTN4MSIsInciOjMsImgiOjEsInNjYWxlIjoxfV0/7463c2ce89/RelicBase3x1.png","w":3} +{"name":"Топазовый флакон","refName":"Topaz Flask","namespace":"ITEM","craftable":{"category":"Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvdG9wYXoiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/2a6d920bc1/topaz.png","h":2} +{"name":"Кольцо с топазом","refName":"Topaz Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6f90cd3c4b/Ring5.png"} +{"name":"Скарабей Мучения","refName":"Torment Scarab","namespace":"ITEM","tradeTag":"torment-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJUb3JtZW50Iiwic2NhbGUiOjF9XQ/8c43bf8c64/LesserScarabTorment.png"} +{"name":"Скарабей Мучения своеобразия","refName":"Torment Scarab of Peculiarity","namespace":"ITEM","tradeTag":"torment-scarab-of-peculiarity","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJUb3JtZW50Iiwic2NhbGUiOjF9XQ/4c94a84fd8/NormalScarabTorment.png"} +{"name":"Скарабей Мучения одержимости","refName":"Torment Scarab of Possession","namespace":"ITEM","tradeTag":"torment-scarab-of-possession","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYlRvcm1lbnQiLCJzY2FsZSI6MX1d/5b3bed9d3d/Tier4ScarabTorment.png"} +{"name":"Скарабей Мучения освобождения","refName":"Torment Scarab of Release","namespace":"ITEM","tradeTag":"torment-scarab-of-release","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiVG9ybWVudCIsInNjYWxlIjoxfV0/548c57abc3/GreaterScarabTorment.png"} +{"name":"Оторванная накидка","refName":"Torn Cloak","namespace":"ITEM","craftable":{"category":"Heist Cloak"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVG9ybkNsb2FrIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/8857eabe4c/TornCloak.png","w":2,"h":2} +{"name":"Жезл торнадо","refName":"Tornado Wand","namespace":"ITEM","craftable":{"category":"Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kNSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/a28035d7c4/Wand5.png","h":3} +{"name":"Клеть мучений","refName":"Torture Cage","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[20,25]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/bdf765283d/HelmetInt3.png","w":2,"h":2} +{"name":"Облачение истязателя","refName":"Torturer Garb","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[627,721],"es":[126,145]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/6744d2d486/BodyDexInt2C.png","w":2,"h":3} +{"name":"Маска истязателя","refName":"Torturer's Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[355,409],"es":[71,82]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDExIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/ff51fc2e8c/HelmetDexInt11.png","w":2,"h":2} +{"name":"Тотемная дубина","refName":"Totemic Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2UyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/36201397ff/TwoHandMace2.png","w":2,"h":4} +{"name":"Карта башни","refName":"Tower Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/LqSPV6K.jpg"}} +{"name":"Карта клоаки","refName":"Toxic Sewer Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/CgSpbBl.jpg"}} +{"name":"Переливающий щит духа","refName":"Transfer-attuned Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[39,45]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0ludEhlaXN0U2hpZWxkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f58639d2f4/IntHeistShield.png","w":2,"h":3} +{"name":"Трансформирующий посох","refName":"Transformer Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGVpc3RTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/5e852184f5/HeistStaff.png","w":2,"h":4} +{"name":"Ботинки капканщика","refName":"Trapper Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[74,85],"es":[16,18]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/2f86a773a5/BootsDexInt2.png","w":2,"h":2} +{"name":"Перчатки капканщика","refName":"Trapper Mitts","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[65,77],"es":[14,16]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50MSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/983aa9c9fc/GlovesDexInt1.png","w":2,"h":2} +{"name":"Перчатки ловчего","refName":"Trapsetter Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[236,271]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUml0dWFsRGV4R2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/2785fe1c37/RitualDexGloves.png","w":2,"h":2} +{"name":"Тератновый порох","refName":"Trarthan Flashpowder","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVHJhcnRocmFuRmxhc2hwb3dkZXIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/8f197f178c/TrarthranFlashpowder.png","w":2,"h":2} +{"name":"Обруч аборигена","refName":"Tribal Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[28,33]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/ce784f5b72/HelmetInt4.png","w":2,"h":2} +{"name":"Дубинка аборигена","refName":"Tribal Club","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2UyIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/75d926bb65/OneHandMace2.png","h":3} +{"name":"Дубина аборигена","refName":"Tribal Maul","namespace":"ITEM","craftable":{"category":"Two-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2UyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/36201397ff/TwoHandMace2.png","w":2,"h":4} +{"name":"Дань богине","refName":"Tribute to the Goddess","namespace":"ITEM","tradeTag":"offer-tribute","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9MYWJ5cmludGhIYXJ2ZXN0Iiwic2NhbGUiOjF9XQ/81054ff374/LabyrinthHarvest.png"} +{"name":"Треуголка","refName":"Tricorne","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[53,69]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c4c9b53e80/HelmetDex2.png","w":2,"h":2} +{"name":"Трезубец","refName":"Trisula","namespace":"ITEM","craftable":{"category":"Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjkiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/ac5b740611/Dagger9.png","h":3} +{"name":"Пластинчатый доспех триумфатора","refName":"Triumphant Lamellar","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[380,437],"ev":[477,549]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyNEEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/7e1c29aacf/BodyStr4A.png","w":2,"h":3} +{"name":"Карта тропического острова","refName":"Tropical Island Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/wraPtBT.jpg"}} +{"name":"Камень Разлома Тул","refName":"Tul's Breachstone","namespace":"ITEM","tradeTag":"tuls-breachstone","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaEZyYWdtZW50c0NvbGQiLCJzY2FsZSI6MX1d/d1a2906729/BreachFragmentsCold.png"} +{"name":"Безупречный камень Разлома Тул","refName":"Tul's Flawless Breachstone","namespace":"ITEM","tradeTag":"tuls-flawless-breachstone","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL1R1bHNGbGF3bGVzc0JyZWFjaHN0b25lIiwic2NhbGUiOjF9XQ/f238a20f9a/TulsFlawlessBreachstone.png"} +{"name":"Бурный катализатор","refName":"Turbulent Catalyst","namespace":"ITEM","tradeTag":"turbulent-catalyst","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL1R1cmJ1bGVudENhdGFseXN0Iiwic2NhbGUiOjF9XQ/1f49d03e58/TurbulentCatalyst.png"} +{"name":"Амулет с бирюзой","refName":"Turquoise Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UdXJxdW9pc2VBbXVsZXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/605b4da0e1/TurquoiseAmulet.png"} +{"name":"Сучковатый щит духа","refName":"Twig Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[6,8]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/26dafd13bc/ShieldInt1.png","w":2,"h":2} +{"name":"Сумрачный клинок","refName":"Twilight Blade","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDgiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/406f7aec97/OneHandSword8.png","w":2,"h":3} +{"name":"Наряд сумрака","refName":"Twilight Regalia","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[262,302]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e6eb42b23a/BodyStrDexInt1C.png","w":2,"h":3} +{"name":"Парный коготь","refName":"Twin Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3OSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/84eab7e6ba/Claw9.png","w":2,"h":2} +{"name":"Двуручный меч","refName":"Two-Handed Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/294bd80312/TwoHandSword4.png","w":2,"h":4} +{"name":"Колчан двуглавых стрел","refName":"Two-Point Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJUd28tUG9pbnQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5a4772c3db/QuiverTwo-Point.png","w":2,"h":3} +{"name":"Кольцо с двумя камнями","refName":"Two-Stone Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVG9wYXpSdWJ5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8878077651/TopazRuby.png","disc":{"hasImplicit":{"ref":"+#% to Fire and Lightning Resistances"}}} +{"name":"Кольцо с двумя камнями","refName":"Two-Stone Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVG9wYXpTYXBwaGlyZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0c211c12b4/TopazSapphire.png","disc":{"hasImplicit":{"ref":"+#% to Cold and Lightning Resistances"}}} +{"name":"Кольцо с двумя камнями","refName":"Two-Stone Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU2FwcGhpcmVSdWJ5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/7df6d65dfd/SapphireRuby.png","disc":{"hasImplicit":{"ref":"+#% to Fire and Cold Resistances"}}} +{"name":"Двухцветные ботинки","refName":"Two-Toned Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[126,145],"es":[26,30]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Ud29Ub25lZEJvb3RzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/93a61b5672/TwoTonedBoots.png","w":2,"h":2,"disc":{"propEV":true,"propES":true}} +{"name":"Двухцветные ботинки","refName":"Two-Toned Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[126,145],"ev":[126,145]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Ud29Ub25lZEJvb3RzMkIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c046f556ab/TwoTonedBoots2B.png","w":2,"h":2,"disc":{"propAR":true,"propEV":true}} +{"name":"Двухцветные ботинки","refName":"Two-Toned Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[126,145],"es":[26,30]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Ud29Ub25lZEJvb3RzM0IiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e3271c5de1/TwoTonedBoots3B.png","w":2,"h":2,"disc":{"propAR":true,"propES":true}} +{"name":"Сехем тирана","refName":"Tyrant's Sekhem","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyMyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/366212755a/scepter3.png","w":2,"h":3} +{"name":"Скарабей Ультиматума","refName":"Ultimatum Scarab","namespace":"ITEM","tradeTag":"ultimatum-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9MZXNzZXJTY2FyYWJVbHRpbWF0dW0iLCJzY2FsZSI6MX1d/b1b423625d/LesserScarabUltimatum.png"} +{"name":"Скарабей Ультиматума подкупа","refName":"Ultimatum Scarab of Bribing","namespace":"ITEM","tradeTag":"ultimatum-scarab-of-bribing","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9Ob3JtYWxTY2FyYWJVbHRpbWF0dW0iLCJzY2FsZSI6MX1d/d688264f91/NormalScarabUltimatum.png"} +{"name":"Скарабей Ультиматума катализа","refName":"Ultimatum Scarab of Catalysing","namespace":"ITEM","tradeTag":"ultimatum-scarab-of-catalysing","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9UaWVyNFNjYXJhYlVsdGltYXR1bSIsInNjYWxlIjoxfV0/abfc80cf45/Tier4ScarabUltimatum.png"} +{"name":"Скарабей Ультиматума поединка","refName":"Ultimatum Scarab of Dueling","namespace":"ITEM","tradeTag":"ultimatum-scarab-of-dueling","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9HcmVhdGVyU2NhcmFiVWx0aW1hdHVtIiwic2NhbGUiOjF9XQ/be3b513bfe/GreaterScarabUltimatum.png"} +{"name":"Скарабей Ультиматума начертания","refName":"Ultimatum Scarab of Inscription","namespace":"ITEM","tradeTag":"ultimatum-scarab-of-inscription","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9BbHRUaWVyNFNjYXJhYlVsdGltYXR1bSIsInNjYWxlIjoxfV0/080e60e969/AltTier4ScarabUltimatum.png"} +{"name":"Карта подземной реки","refName":"Underground River Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/8k4Dug4.jpg"}} +{"name":"Карта подземного моря","refName":"Underground Sea Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/ELUmbfz.jpg"}} +{"name":"Талисман бессмертной плоти","refName":"Undying Flesh Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hbldoaXRlNiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b59ac8a156/TalismanWhite6.png"} +{"name":"Непримиримый вневременной знак Вечных","refName":"Unrelenting Timeless Eternal Emblem","namespace":"ITEM","tradeTag":"uber-timeless-eternal-emblem","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UaW1lbGVzc0NvbmZsaWN0S2FydWkiLCJzY2FsZSI6MX1d/48dd647843/TimelessConflictKarui.png"} +{"name":"Непримиримый вневременной знак каруи","refName":"Unrelenting Timeless Karui Emblem","namespace":"ITEM","tradeTag":"uber-timeless-karui-emblem","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UaW1lbGVzc0NvbmZsaWN0RXRlcm5hbCIsInNjYWxlIjoxfV0/f96320f889/TimelessConflictEternal.png"} +{"name":"Непримиримый вневременной знак маракетов","refName":"Unrelenting Timeless Maraketh Emblem","namespace":"ITEM","tradeTag":"uber-timeless-maraketh-emblem","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UaW1lbGVzc0NvbmZsaWN0TWFyYWtldGgiLCJzY2FsZSI6MX1d/8eca6f27b3/TimelessConflictMaraketh.png"} +{"name":"Непримиримый вневременной знак храмовников","refName":"Unrelenting Timeless Templar Emblem","namespace":"ITEM","tradeTag":"uber-timeless-templar-emblem","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UaW1lbGVzc0NvbmZsaWN0VGVtcGxhciIsInNjYWxlIjoxfV0/b0a76a5f78/TimelessConflictTemplar.png"} +{"name":"Непримиримый вневременной знак ваал","refName":"Unrelenting Timeless Vaal Emblem","namespace":"ITEM","tradeTag":"uber-timeless-vaal-emblem","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UaW1lbGVzc0NvbmZsaWN0VmFhbCIsInNjYWxlIjoxfV0/895e0137f2/TimelessConflictVaal.png"} +{"name":"Амулет без камня","refName":"Unset Amulet","namespace":"ITEM","craftable":{"category":"Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9VbnNldEFtdWxldCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/19b70eaa5b/UnsetAmulet.png"} +{"name":"Кольцо без камня","refName":"Unset Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvRW1wdHktU29ja2V0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/82146b3aa4/Empty-Socket.png"} +{"name":"Сфера разрушения","refName":"Unshaping Orb","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXRsYXNEb3duZ3JhZGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0f3716b72b/AtlasDowngrade.png"} +{"name":"Нестабильный катализатор","refName":"Unstable Catalyst","namespace":"ITEM","tradeTag":"unstable-catalyst","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2F0YWx5c3RzL0NyaXRpY2FsTW9kaWZpZXJDYXRhbHlzdCIsInNjYWxlIjoxfV0/eebe548a38/CriticalModifierCatalyst.png"} +{"name":"Урна","refName":"Urn Relic","namespace":"ITEM","craftable":{"category":"Sanctum Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljQmFzZTJ4MSIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/676ca95b04/RelicBase2x1.png","w":2} +{"name":"Медвежья морда","refName":"Ursine Pelt","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[276,325]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e2b3ccec11/HelmetDex7.png","w":2,"h":2} +{"name":"Камень Разлома Уул-Нетол","refName":"Uul-Netol's Breachstone","namespace":"ITEM","tradeTag":"uul-breachstone","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaEZyYWdtZW50c1BoeXNpY2FsIiwic2NhbGUiOjF9XQ/2b4821437a/BreachFragmentsPhysical.png"} +{"name":"Безупречный камень Разлома Уул-Нетол","refName":"Uul-Netol's Flawless Breachstone","namespace":"ITEM","tradeTag":"uul-flawless-breachstone","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL1V1bE5ldG9sc0ZsYXdsZXNzQnJlYWNoc3RvbmUiLCJzY2FsZSI6MX1d/afcbb96429/UulNetolsFlawlessBreachstone.png"} +{"name":"Аспект ваал","refName":"Vaal Aspect","namespace":"ITEM","craftable":{"category":"Unique Fragment","uniqueOnly":true},"icon":"","w":1,"h":2} +{"name":"Топор ваал","refName":"Vaal Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/4b3fbfcd65/TwoHandAxe5.png","w":2,"h":4} +{"name":"Клинок ваал","refName":"Vaal Blade","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDYiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/c12083d6b6/OneHandSword6.png","w":2,"h":3} +{"name":"Баклер ваал","refName":"Vaal Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[330,379]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/60c6c83831/ShieldDex4.png","w":2,"h":2} +{"name":"Коготь ваал","refName":"Vaal Claw","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ae1fb6dddd/Claw6.png","w":2,"h":2} +{"name":"Перчатки ваал","refName":"Vaal Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[232,266]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyMyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f5896830bf/GlovesStr3.png","w":2,"h":2} +{"name":"Большой меч ваал","refName":"Vaal Greatsword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/828ca9e450/TwoHandSword5.png","w":2,"h":4} +{"name":"Поножи ваал","refName":"Vaal Greaves","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[220,253]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/56efa25c50/BootsStr3.png","w":2,"h":2} +{"name":"Топорик ваал","refName":"Vaal Hatchet","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/01f0e16494/OneHandAxe6.png","w":2,"h":3} +{"name":"Маска ваал","refName":"Vaal Mask","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[207,239],"es":[37,43]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDEwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/62018602df/HelmetDexInt10.png","w":2,"h":2} +{"name":"Сфера ваал","refName":"Vaal Orb","namespace":"ITEM","tradeTag":"vaal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lWYWFsIiwic2NhbGUiOjF9XQ/593fe2e22e/CurrencyVaal.png"} +{"name":"Карта пирамиды ваал","refName":"Vaal Pyramid Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/RM2CNDk.jpg"}} +{"name":"Рапира ваал","refName":"Vaal Rapier","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjYiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/f9bc0a5aa1/Rapier6.png","h":4} +{"name":"Наряд ваал","refName":"Vaal Regalia","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[171,197]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4SW50MUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e6eb42b23a/BodyStrDexInt1C.png","w":2,"h":3} +{"name":"Ключ от Реликвария ваал","refName":"Vaal Reliquary Key","namespace":"ITEM","tradeTag":"vaal-reliquary-key","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYXVsdE1hcDQiLCJzY2FsZSI6MX1d/7d798c8941/VaultMap4.png"} +{"name":"Скипетр ваал","refName":"Vaal Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/35e149f5cf/scepter6.png","w":2,"h":3} +{"name":"Осквернённый доклад разведки","refName":"Vaal Scouting Report","namespace":"ITEM","tradeTag":"vaal-scouting-report","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png"} +{"name":"Щит духа ваал","refName":"Vaal Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[56,64]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/2fcc8b522c/ShieldInt4.png","w":2,"h":2} +{"name":"Карта храма ваал","refName":"Vaal Temple Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhczJNYXBzL05ldy9WYWFsVGVtcGxlQmFzZSIsInciOjEsImgiOjEsInNjYWxlIjoxLCJtbiI6MTQsIm10IjowfV0/129c5f8ca8/VaalTempleBase.png","map":{"screenshot":"https://i.imgur.com/zgJl9NF.jpg"}} +{"name":"Куб загадок Валдо","refName":"Valdo's Puzzle Box","namespace":"ITEM","tradeTag":"valdos-puzzle-box","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmFsZG9zUHV6emxlQm94Iiwic2NhbGUiOjF9XQ/bed9b1b28b/ValdosPuzzleBox.png"} +{"name":"Ремень гастата","refName":"Vanguard Belt","namespace":"ITEM","craftable":{"category":"Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdDciLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/98bc736db6/Belt7.png","w":2} +{"name":"Варисцитовый меч","refName":"Variscite Blade","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDIiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/606dae9ce9/OneHandSword2.png","h":3} +{"name":"Франтоватый жакет","refName":"Varnished Coat","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[387,434],"es":[79,89]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/360c5ce7d4/BodyDexInt2B.png","w":2,"h":3} +{"name":"Карта хранилища","refName":"Vault Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/zdIUUwN.jpg"}} +{"name":"Скрытая сфера","refName":"Veiled Orb","namespace":"ITEM","tradeTag":"veiled-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmVpbGVkQ2hhb3NPcmIiLCJzY2FsZSI6MX1d/fd913b89d0/VeiledChaosOrb.png"} +{"name":"Скрытый скарабей","refName":"Veiled Scarab","namespace":"ITEM","tradeTag":"veiled-scarab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NhcmFicy9TdGFja2VkU2NhcmFiIiwic2NhbGUiOjF9XQ/4674c86ff2/StackedScarab.png"} +{"name":"Велюровые ботинки","refName":"Velour Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[359,413]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/76eb290c9b/BootsDex4.png","w":2,"h":2} +{"name":"Велюровые перчатки","refName":"Velour Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[359,413]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/05a8c03e95/GlovesDex4.png","w":2,"h":2} +{"name":"Бархатные перчатки","refName":"Velvet Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[10,13]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/cb34a7c551/GlovesInt2.png","w":2,"h":2} +{"name":"Бархатные тапочки","refName":"Velvet Slippers","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[8,11]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/efece2ca68/BootsInt2.png","w":2,"h":2} +{"name":"Мстительный контракт","refName":"Vengeful Contract","namespace":"ITEM","craftable":{"uniqueOnly":true,"category":"Heist Contract"},"icon":""} +{"name":"Изумрудное масло","refName":"Verdant Oil","namespace":"ITEM","tradeTag":"verdant-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9WZXJkYW50T2lsIiwic2NhbGUiOjF9XQ/efeac217c1/VerdantOil.png"} +{"name":"Герб Веритании","refName":"Veritania's Crest","namespace":"ITEM","tradeTag":"veritanias-crest","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9SZWRlZW1lckZyYWdtZW50Iiwic2NhbGUiOjF9XQ/86d22a34cc/RedeemerFragment.png"} +{"name":"Кольцо с киноварью","refName":"Vermillion Ring","namespace":"ITEM","craftable":{"category":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVmVybWlsbGlvblJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b0570b8efc/VermillionRing.png"} +{"name":"Связка разнообразных ключей","refName":"Versatile Keyring","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVmVyc2F0aWxlS2V5cmluZyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/eda0c08359/VersatileKeyring.png","w":2,"h":2} +{"name":"Фиал пробуждения","refName":"Vial of Awakening","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbFNsdW1iZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/153f99e185/VialSlumber.png"} +{"name":"Фиал последствий","refName":"Vial of Consequence","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbENvd2FyZHNDaGFpbnMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/49367d5e04/VialCowardsChains.png"} +{"name":"Фиал господства","refName":"Vial of Dominance","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbEFyY2hpdGVjdHNIYW5kIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/dbe46fb20c/VialArchitectsHand.png"} +{"name":"Фиал судьбы","refName":"Vial of Fate","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbFN0b3J5VmFhbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5cc747026e/VialStoryVaal.png"} +{"name":"Фиал жертвоприношения","refName":"Vial of Sacrifice","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbFNhY3JpZmljaWFsSGVhcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/7f68150b22/VialSacrificialHeart.png"} +{"name":"Фиал призыва","refName":"Vial of Summoning","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbFNwaXJpdERyaW5rZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b4c71ef906/VialSpiritDrinker.png"} +{"name":"Фиал призрака","refName":"Vial of the Ghost","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbFNvdWxDYXRjaGVyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/41cbc9ed1d/VialSoulCatcher.png"} +{"name":"Фиал ритуала","refName":"Vial of the Ritual","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbERhbmNlT2ZmZXJlZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a21fb783fd/VialDanceOffered.png"} +{"name":"Фиал превосходства","refName":"Vial of Transcendence","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbFRlbXBlcmVkRmxlc2giLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ff6f1f931e/VialTemperedFlesh.png"} +{"name":"Карательный контракт","refName":"Vigilante Contract","namespace":"ITEM","craftable":{"uniqueOnly":true,"category":"Heist Contract"},"icon":""} +{"name":"Колчан отравленных стрел","refName":"Vile Arrow Quiver","namespace":"ITEM","craftable":{"category":"Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9WaWxlQXJyb3dRdWl2ZXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MSwic2hhcGVyIjp0cnVlfV0/ffa143a8d8/VileArrowQuiver.png","w":2,"h":3} +{"name":"Посох нечистого","refName":"Vile Staff","namespace":"ITEM","craftable":{"category":"Warstaff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY3IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/c1ded974d5/Staff7.png","w":2,"h":4} +{"name":"Карта поместья","refName":"Villa Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/EB0wTDF.jpg"}} +{"name":"Венок из лозы","refName":"Vine Circlet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"es":[7,10]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldEludDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/78dd152257/HelmetInt1.png","w":2,"h":2} +{"name":"Фиолетовое масло","refName":"Violet Oil","namespace":"ITEM","tradeTag":"violet-oil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9WaW9sZXRPaWwiLCJzY2FsZSI6MX1d/76c3dc06f8/VioletOil.png"} +{"name":"Бирюзовый самоцвет","refName":"Viridian Jewel","namespace":"ITEM","craftable":{"category":"Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL2Jhc2ljZGV4IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9ed22a2b94/basicdex.png"} +{"name":"Ключ от Внутриутробного Реликвария","refName":"Visceral Reliquary Key","namespace":"ITEM","tradeTag":"visceral-reliquary-key","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FYXRlck9mV29ybGRzRm9pbCIsInNjYWxlIjoxfV0/9b4e8c2e7c/EaterOfWorldsFoil.png"} +{"name":"Салад с забралом","refName":"Visored Sallet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[64,80],"ev":[64,80]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/12db09a4ce/HelmetStrDex3.png","w":2,"h":2} +{"name":"Буйная кристализованная жизненная сила","refName":"Vivid Crystallised Lifeforce","namespace":"ITEM","tradeTag":"vivid-lifeforce","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9WaXZpZExpZmVmb3JjZSIsInNjYWxlIjoxfV0/a355b8a5a2/VividLifeforce.png"} +{"name":"Топор пустоты","refName":"Void Axe","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlNyIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/931ad5cc29/TwoHandAxe7.png","w":2,"h":4} +{"name":"Пустотные клыки","refName":"Void Fangs","namespace":"ITEM","craftable":{"category":"Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9IZWlzdENsYXciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/7ebe8140fa/HeistClaw.png","w":2,"h":2} +{"name":"Скипетр пустоты","refName":"Void Sceptre","namespace":"ITEM","craftable":{"category":"Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyOCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/6644b94336/scepter8.png","w":2,"h":3} +{"name":"Ключ от Пустотного Реликвария","refName":"Voidborn Reliquary Key","namespace":"ITEM","tradeTag":"voidborn-reliquary-key","icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9Db3NtaWNDb3JlU3VwcG9ydGVyVmF1bHRLZXkiLCJzY2FsZSI6MX1d/1f2d34a36d/CosmicCoreSupporterVaultKey.png"} +{"name":"Карта вулкана","refName":"Volcano Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/kNQfYSd.jpg"}} +{"name":"Вольтаксовый порох","refName":"Voltaxic Flashpowder","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVm9sdGF4aWNGbGFzaHBvd2RlciIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/2df5470ba8/VoltaxicFlashpowder.png","w":2,"h":2} +{"name":"Вопящая сущность злобы","refName":"Wailing Essence of Anger","namespace":"ITEM","tradeTag":"wailing-essence-of-anger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9BbmdlcjQiLCJzY2FsZSI6MX1d/193cf26944/Anger4.png"} +{"name":"Вопящая сущность горя","refName":"Wailing Essence of Anguish","namespace":"ITEM","tradeTag":"wailing-essence-of-anguish","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Bbmd1aXNoNCIsInNjYWxlIjoxfV0/b0116a21e3/Anguish4.png"} +{"name":"Вопящая сущность презрения","refName":"Wailing Essence of Contempt","namespace":"ITEM","tradeTag":"wailing-essence-of-contempt","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Db250ZW1wdDQiLCJzY2FsZSI6MX1d/8ab6b81ea8/Contempt4.png"} +{"name":"Вопящая сущность сомнения","refName":"Wailing Essence of Doubt","namespace":"ITEM","tradeTag":"wailing-essence-of-doubt","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Eb3VidDQiLCJzY2FsZSI6MX1d/b9bda2f648/Doubt4.png"} +{"name":"Вопящая сущность страха","refName":"Wailing Essence of Fear","namespace":"ITEM","tradeTag":"wailing-essence-of-fear","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9GZWFyNCIsInNjYWxlIjoxfV0/f5a9ea67a9/Fear4.png"} +{"name":"Вопящая сущность жадности","refName":"Wailing Essence of Greed","namespace":"ITEM","tradeTag":"wailing-essence-of-greed","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVlZDQiLCJzY2FsZSI6MX1d/a390d6d853/Greed4.png"} +{"name":"Вопящая сущность ненависти","refName":"Wailing Essence of Hatred","namespace":"ITEM","tradeTag":"wailing-essence-of-hatred","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9IYXRyZWQ0Iiwic2NhbGUiOjF9XQ/7bc001e2dd/Hatred4.png"} +{"name":"Вопящая сущность отвращения","refName":"Wailing Essence of Loathing","namespace":"ITEM","tradeTag":"wailing-essence-of-loathing","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Mb2F0aGluZzQiLCJzY2FsZSI6MX1d/77278edd37/Loathing4.png"} +{"name":"Вопящая сущность ярости","refName":"Wailing Essence of Rage","namespace":"ITEM","tradeTag":"wailing-essence-of-rage","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9SYWdlNCIsInNjYWxlIjoxfV0/c5fa73b85f/Rage4.png"} +{"name":"Вопящая сущность печали","refName":"Wailing Essence of Sorrow","namespace":"ITEM","tradeTag":"wailing-essence-of-sorrow","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Tb3Jyb3c0Iiwic2NhbGUiOjF9XQ/3264cd0f60/Sorrow4.png"} +{"name":"Вопящая сущность неприязни","refName":"Wailing Essence of Spite","namespace":"ITEM","tradeTag":"wailing-essence-of-spite","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TcGl0ZTQiLCJzY2FsZSI6MX1d/b0d6219d6b/Spite4.png"} +{"name":"Вопящая сущность страдания","refName":"Wailing Essence of Suffering","namespace":"ITEM","tradeTag":"wailing-essence-of-suffering","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TdWZmZXJpbmc0Iiwic2NhbGUiOjF9XQ/98885460cb/Suffering4.png"} +{"name":"Вопящая сущность мучения","refName":"Wailing Essence of Torment","namespace":"ITEM","tradeTag":"wailing-essence-of-torment","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Ub3JtZW50NCIsInNjYWxlIjoxfV0/7f54171175/Torment4.png"} +{"name":"Вопящая сущность скорби","refName":"Wailing Essence of Woe","namespace":"ITEM","tradeTag":"wailing-essence-of-woe","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Xb2U0Iiwic2NhbGUiOjF9XQ/7d06629499/Woe4.png"} +{"name":"Вопящая сущность гнева","refName":"Wailing Essence of Wrath","namespace":"ITEM","tradeTag":"wailing-essence-of-wrath","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9XcmF0aDQiLCJzY2FsZSI6MX1d/24ec8dd88b/Wrath4.png"} +{"name":"Вопящая сущность усердия","refName":"Wailing Essence of Zeal","namespace":"ITEM","tradeTag":"wailing-essence-of-zeal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9aZWFsNCIsInNjYWxlIjoxfV0/a4af1958b7/Zeal4.png"} +{"name":"Ореховый щит духа","refName":"Walnut Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[32,38]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/99b47eb1fa/ShieldInt2.png","w":2,"h":2} +{"name":"Воинский топор","refName":"War Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/9cdefe9de4/OneHandAxe5.png","w":2,"h":3} +{"name":"Воинский баклер","refName":"War Buckler","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"ev":[169,194]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5a38d58259/ShieldDex5.png","w":2,"h":2} +{"name":"Воинский молот","refName":"War Hammer","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U1IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/7a42346f2b/OneHandMace5.png","w":2,"h":3} +{"name":"Доспех бойца","refName":"War Plate","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[216,248]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMkIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/c62bd1159e/BodyStr2B.png","w":2,"h":3} +{"name":"Руна Войны","refName":"War Rune","namespace":"ITEM","tradeTag":"war-rune","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2V0dGxlcnMvVmlsbGFnZVJ1bmU0Iiwic2NhbGUiOjF9XQ/81bdd89a32/VillageRune4.png"} +{"name":"Воинский меч","refName":"War Sword","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/38536bcafb/OneHandSword5.png","w":2,"h":3} +{"name":"Сапоги колдуна","refName":"Warlock Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[72,83]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5589419509/BootsInt4.png","w":2,"h":2} +{"name":"Перчатки колдуна","refName":"Warlock Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[72,83]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/484e9bd879/GlovesInt4.png","w":2,"h":2} +{"name":"Вождь","refName":"Warlord","namespace":"ITEM","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXptZXJpL09ha0NvcnBzZSIsInciOjMsImgiOjIsInNjYWxlIjoxfV0/9a9c4d9ada/OakCorpse.png","w":3,"h":2} +{"name":"Сфера возвышения вождя","refName":"Warlord's Exalted Orb","namespace":"ITEM","tradeTag":"warlords-exalted-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5mbHVlbmNlIEV4YWx0cy9Db25xdWVyb3JPcmIiLCJzY2FsZSI6MX1d/57f0d85951/ConquerorOrb.png"} +{"name":"Карта помойного пруда","refName":"Waste Pool Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/fEvrcih.jpg"}} +{"name":"Карта пустоши","refName":"Wasteland Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/ywddRfu.jpg"}} +{"name":"Карта водотоков","refName":"Waterways Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/qAEf4WS.jpg"}} +{"name":"Лощёное облачение","refName":"Waxed Garb","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[178,205],"es":[38,44]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4SW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/6744d2d486/BodyDexInt2C.png","w":2,"h":3} +{"name":"Плачущая сущность злобы","refName":"Weeping Essence of Anger","namespace":"ITEM","tradeTag":"weeping-essence-of-anger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9BbmdlcjMiLCJzY2FsZSI6MX1d/d873f23914/Anger3.png"} +{"name":"Плачущая сущность презрения","refName":"Weeping Essence of Contempt","namespace":"ITEM","tradeTag":"weeping-essence-of-contempt","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Db250ZW1wdDMiLCJzY2FsZSI6MX1d/843175cf8e/Contempt3.png"} +{"name":"Плачущая сущность сомнения","refName":"Weeping Essence of Doubt","namespace":"ITEM","tradeTag":"weeping-essence-of-doubt","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Eb3VidDMiLCJzY2FsZSI6MX1d/f4e471aadd/Doubt3.png"} +{"name":"Плачущая сущность страха","refName":"Weeping Essence of Fear","namespace":"ITEM","tradeTag":"weeping-essence-of-fear","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9GZWFyMyIsInNjYWxlIjoxfV0/9d1b4909f4/Fear3.png"} +{"name":"Плачущая сущность жадности","refName":"Weeping Essence of Greed","namespace":"ITEM","tradeTag":"weeping-essence-of-greed","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVlZDMiLCJzY2FsZSI6MX1d/4b4549da17/Greed3.png"} +{"name":"Плачущая сущность ненависти","refName":"Weeping Essence of Hatred","namespace":"ITEM","tradeTag":"weeping-essence-of-hatred","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9IYXRyZWQzIiwic2NhbGUiOjF9XQ/27bb7480f9/Hatred3.png"} +{"name":"Плачущая сущность ярости","refName":"Weeping Essence of Rage","namespace":"ITEM","tradeTag":"weeping-essence-of-rage","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9SYWdlMyIsInNjYWxlIjoxfV0/7e03c21483/Rage3.png"} +{"name":"Плачущая сущность печали","refName":"Weeping Essence of Sorrow","namespace":"ITEM","tradeTag":"weeping-essence-of-sorrow","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Tb3Jyb3czIiwic2NhbGUiOjF9XQ/93f2e30be4/Sorrow3.png"} +{"name":"Плачущая сущность страдания","refName":"Weeping Essence of Suffering","namespace":"ITEM","tradeTag":"weeping-essence-of-suffering","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TdWZmZXJpbmczIiwic2NhbGUiOjF9XQ/2f8350590a/Suffering3.png"} +{"name":"Плачущая сущность мучения","refName":"Weeping Essence of Torment","namespace":"ITEM","tradeTag":"weeping-essence-of-torment","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Ub3JtZW50MyIsInNjYWxlIjoxfV0/437e50ebd4/Torment3.png"} +{"name":"Плачущая сущность скорби","refName":"Weeping Essence of Woe","namespace":"ITEM","tradeTag":"weeping-essence-of-woe","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Xb2UzIiwic2NhbGUiOjF9XQ/982d6149c8/Woe3.png"} +{"name":"Плачущая сущность гнева","refName":"Weeping Essence of Wrath","namespace":"ITEM","tradeTag":"weeping-essence-of-wrath","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9XcmF0aDMiLCJzY2FsZSI6MX1d/6d2ea95b65/Wrath3.png"} +{"name":"Талисман когтистого оборотня","refName":"Wereclaw Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9EaXJlQ2xhd1RhbGlzbWFuIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5c57893c7c/DireClawTalisman.png"} +{"name":"Рапира из китовой кости","refName":"Whalebone Rapier","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjIiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/481efcada5/Rapier2.png","h":4} +{"name":"Карта пристани","refName":"Wharf Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{"screenshot":"https://i.imgur.com/JirgJcM.jpg"}} +{"name":"Шелестящая накидка","refName":"Whisper-woven Cloak","namespace":"ITEM","craftable":{"category":"Heist Cloak"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvV2hpc3BlcldvdmVuQ2xvYWsiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5d44c09a37/WhisperWovenCloak.png","w":2,"h":2} +{"name":"Шепчущая сфера Делириума","refName":"Whispering Delirium Orb","namespace":"ITEM","tradeTag":"whispering-delirium-orb","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsaXJpdW0vRGVsaXJpdW1PcmJFc3NlbmNlIiwic2NhbGUiOjF9XQ/e9f784c467/DeliriumOrbEssence.png"} +{"name":"Шепчущая сущность презрения","refName":"Whispering Essence of Contempt","namespace":"ITEM","tradeTag":"whispering-essence-of-contempt","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Db250ZW1wdDEiLCJzY2FsZSI6MX1d/20e306f652/Contempt1.png"} +{"name":"Шепчущая сущность жадности","refName":"Whispering Essence of Greed","namespace":"ITEM","tradeTag":"whispering-essence-of-greed","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVlZDEiLCJzY2FsZSI6MX1d/e2fe787fba/Greed1.png"} +{"name":"Шепчущая сущность ненависти","refName":"Whispering Essence of Hatred","namespace":"ITEM","tradeTag":"whispering-essence-of-hatred","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9IYXRyZWQxIiwic2NhbGUiOjF9XQ/b22aed8024/Hatred1.png"} +{"name":"Шепчущая сущность скорби","refName":"Whispering Essence of Woe","namespace":"ITEM","tradeTag":"whispering-essence-of-woe","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Xb2UxIiwic2NhbGUiOjF9XQ/bccf321620/Woe1.png"} +{"name":"Шепчущий инкубатор","refName":"Whispering Incubator","namespace":"ITEM","tradeTag":"whispering-incubator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRXNzZW5jZSIsInNjYWxlIjoxfV0/839bf6cef9/IncubationEssence.png"} +{"name":"Одеяние чёрной вдовы","refName":"Widowsilk Robe","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"es":[157,181]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8b200fbbb5/BodyInt2C.png","w":2,"h":3} +{"name":"Дикая кристализованная жизненная сила","refName":"Wild Crystallised Lifeforce","namespace":"ITEM","tradeTag":"wild-lifeforce","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9XaWxkTGlmZWZvcmNlIiwic2NhbGUiOjF9XQ/e3d0b372b0/WildLifeforce.png"} +{"name":"Охотничья кожанка","refName":"Wild Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[255,306]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4M0IiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/db900972c7/BodyDex3B.png","w":2,"h":3} +{"name":"Башмаки противления ветру","refName":"Windbreak Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[164,189]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SaXR1YWxEZXhCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7172feff67/RitualDexBoots.png","w":2,"h":2} +{"name":"Крылатые подошвы","refName":"Winged Sole","namespace":"ITEM","craftable":{"category":"Heist Tool"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvV2luZ2VkU29sZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/6b844e2bd0/WingedSole.png","w":2,"h":2} +{"name":"Корона зимы","refName":"Winter Crown","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[122,140],"es":[25,29]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludFIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/9da7af13c1/HelmetDexIntR.png","w":2,"h":2} +{"name":"Волчья морда","refName":"Wolf Pelt","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ev":[150,172]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/549bc86dd9/HelmetDex4.png","w":2,"h":2} +{"name":"Старинный посох","refName":"Woodful Staff","namespace":"ITEM","craftable":{"category":"Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmYyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/69ff746d86/Staff2.png","w":2,"h":4} +{"name":"Колун","refName":"Woodsplitter","namespace":"ITEM","craftable":{"category":"Two-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlMyIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/7d35a55caa/TwoHandAxe3.png","w":2,"h":4} +{"name":"Шерстяные перчатки","refName":"Wool Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"es":[5,7]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50MSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f279ba86df/GlovesInt1.png","w":2,"h":2} +{"name":"Шерстяные башмаки","refName":"Wool Shoes","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"es":[5,7]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/68affe41bc/BootsInt1.png","w":2,"h":2} +{"name":"Потусторонний топор","refName":"Wraith Axe","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlOCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/1c9ff58159/OneHandAxe8.png","w":2,"h":3} +{"name":"Потусторонний меч","refName":"Wraith Sword","namespace":"ITEM","craftable":{"category":"Two-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/cba6615b1a/TwoHandSword7.png","w":2,"h":4} +{"name":"Сандалии","refName":"Wrapped Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ev":[12,17],"es":[4,5]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5106be74b2/BootsDexInt1.png","w":2,"h":2} +{"name":"Тканевые перчатки","refName":"Wrapped Mitts","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ev":[11,15],"es":[3,5]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50MSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/983aa9c9fc/GlovesDexInt1.png","w":2,"h":2} +{"name":"Рукоруб","refName":"Wrist Chopper","namespace":"ITEM","craftable":{"category":"One-Handed Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9PbmVIYW5kQXhlNCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/451ba2cadb/OneHandAxe4.png","w":2,"h":3} +{"name":"Извивающееся приглашение","refName":"Writhing Invitation","namespace":"ITEM","craftable":{"category":"Invitation"},"tradeTag":"writhing-invitation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVlc3RJdGVtcy9UYW5nbGVkT3JiUXVlc3QwIiwic2NhbGUiOjF9XQ/7a2f21c33e/TangledOrbQuest0.png"} +{"name":"Талисман личинок","refName":"Writhing Talisman","namespace":"ITEM","craftable":{"category":"Amulet","corrupted":true},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9OZXdUYWxpc21hbjMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e015e2d7cc/NewTalisman3.png"} +{"name":"Булава червя","refName":"Wyrm Mace","namespace":"ITEM","craftable":{"category":"One-Handed Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U5IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f2a493ef7a/OneHandMace9.png","w":2,"h":3} +{"name":"Рапира из кости змея","refName":"Wyrmbone Rapier","namespace":"ITEM","craftable":{"category":"One-Handed Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1JhcGllcjIiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/481efcada5/Rapier2.png","h":4} +{"name":"Ботинки из чешуи змея","refName":"Wyrmscale Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[92,103],"ev":[92,103]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3418ad050e/BootsStrDex3.png","w":2,"h":2} +{"name":"Дублет из чешуи змея","refName":"Wyrmscale Doublet","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ar":[210,236],"ev":[210,236]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyRGV4MUIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/d9b2da2bce/BodyStrDex1B.png","w":2,"h":3} +{"name":"Перчатки из чешуи змея","refName":"Wyrmscale Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[88,104],"ev":[88,104]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyRGV4MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/01471b423e/GlovesStrDex3.png","w":2,"h":2} +{"name":"Ботинки из чешуи виверны","refName":"Wyvernscale Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[205,236],"ev":[205,236]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3418ad050e/BootsStrDex3.png","w":2,"h":2} +{"name":"Перчатки из чешуи виверны","refName":"Wyvernscale Gauntlets","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[205,205],"ev":[205,205]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyRGV4MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/01471b423e/GlovesStrDex3.png","w":2,"h":2} +{"name":"Камень Разлома Ксофа","refName":"Xoph's Breachstone","namespace":"ITEM","tradeTag":"xophs-breachstone","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaEZyYWdtZW50c0ZpcmUiLCJzY2FsZSI6MX1d/2fc9d593d6/BreachFragmentsFire.png"} +{"name":"Безупречный камень Разлома Ксофа","refName":"Xoph's Flawless Breachstone","namespace":"ITEM","tradeTag":"xophs-flawless-breachstone","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL1hvcGhzRmxhd2xlc3NCcmVhY2hzdG9uZSIsInNjYWxlIjoxfV0/a9d5100ceb/XophsFlawlessBreachstone.png"} +{"name":"Тисовый щит духа","refName":"Yew Spirit Shield","namespace":"ITEM","craftable":{"category":"Shield"},"armour":{"es":[11,14]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/99b47eb1fa/ShieldInt2.png","w":2,"h":2} +{"name":"Сапоги фанатика","refName":"Zealot Boots","namespace":"ITEM","craftable":{"category":"Boots"},"armour":{"ar":[73,87],"es":[15,18]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckludDIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/742e5a15d7/BootsStrInt2.png","w":2,"h":2} +{"name":"Перчатки фанатика","refName":"Zealot Gloves","namespace":"ITEM","craftable":{"category":"Gloves"},"armour":{"ar":[78,92],"es":[16,19]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RySW50MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f09ae395f5/GlovesStrInt2.png","w":2,"h":2} +{"name":"Шлем фанатика","refName":"Zealot Helmet","namespace":"ITEM","craftable":{"category":"Helmet"},"armour":{"ar":[119,137],"es":[25,29]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckludDYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/cff363f9cb/HelmetStrInt6.png","w":2,"h":2} +{"name":"Карта зиккурата","refName":"Ziggurat Map","namespace":"ITEM","craftable":{"category":"Map"},"icon":"https://i.imgur.com/MjSuZQw.png","map":{}} +{"name":"Кожаный доспех зодиака","refName":"Zodiac Leather","namespace":"ITEM","craftable":{"category":"Body Armour"},"armour":{"ev":[854,982]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4M0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e30de2c7a6/BodyDex3C.png","w":2,"h":3} +{"name":"Копыта Абберата","refName":"Abberath's Hooves","namespace":"UNIQUE","unique":{"base":"Goathide Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9BYmJlcmF0aHNIb292ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/445b84d83c/AbberathsHooves.png"} +{"name":"Рог Абберата","refName":"Abberath's Horn","namespace":"UNIQUE","unique":{"base":"Goat's Horn"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XeWNodmVyZ2UiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/ea4dd8a801/Wychverge.png"} +{"name":"Омерзительный допрос","refName":"Abhorrent Interrogation","namespace":"UNIQUE","unique":{"base":"Ambush Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRGVjYXlpbmdHcmlwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/fa04f8c987/DecayingGrip.png"} +{"name":"Бездна","refName":"Abyssus","namespace":"UNIQUE","unique":{"base":"Ezomyte Burgonet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0FieXNzdXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/a12f5424c8/Abyssus.png"} +{"name":"Кошмар Актоны","refName":"Acton's Nightmare","namespace":"UNIQUE","unique":{"base":"Overgrown Shrine Map"},"map":{"screenshot":"https://i.imgur.com/WNGS7TW.jpg"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9tdXNpY2JveCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/765ebfd00f/musicbox.png"} +{"name":"Делатель","refName":"Actum","namespace":"UNIQUE","unique":{"base":"Butcher Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9IYW5sb25zUmF6b3IiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/a81f0f6259/HanlonsRazor.png"} +{"name":"Адмиральский апломб","refName":"Admiral's Arrogance","namespace":"UNIQUE","unique":{"base":"Antique Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvSG9ybmVkT25lR2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/0d26e3c415/HornedOneGloves.png"} +{"name":"Ходячая крепость","refName":"Advancing Fortress","namespace":"UNIQUE","unique":{"base":"Gut Ripper"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3c2hpZWxkMyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/a04190ca2b/Clawshield3.png"} +{"name":"Эгида Авроры","refName":"Aegis Aurora","namespace":"UNIQUE","unique":{"base":"Champion Kite Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludFVuaXF1ZTd1bmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/ae1ec0f5d1/ShieldStrIntUnique7unique.png"} +{"name":"Агнерод востока","refName":"Agnerod East","namespace":"UNIQUE","unique":{"base":"Imperial Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY2dW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/8b60f5a033/Staff6unique.png"} +{"name":"Агнерод севера","refName":"Agnerod North","namespace":"UNIQUE","unique":{"base":"Imperial Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY2dW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/8b60f5a033/Staff6unique.png"} +{"name":"Агнерод юга","refName":"Agnerod South","namespace":"UNIQUE","unique":{"base":"Imperial Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY2dW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/8b60f5a033/Staff6unique.png"} +{"name":"Агнерод запада","refName":"Agnerod West","namespace":"UNIQUE","unique":{"base":"Imperial Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY2dW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/8b60f5a033/Staff6unique.png"} +{"name":"Луг Ахкели","refName":"Ahkeli's Meadow","namespace":"UNIQUE","unique":{"base":"Ruby Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmVkQ29tcG9uZW50MiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0c950dc560/RedComponent2.png"} +{"name":"Гора Ахкели","refName":"Ahkeli's Mountain","namespace":"UNIQUE","unique":{"base":"Ruby Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmVkQ29tcG9uZW50IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4c8c42f98b/RedComponent.png"} +{"name":"Долина Ахкели","refName":"Ahkeli's Valley","namespace":"UNIQUE","unique":{"base":"Ruby Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmVkQ29tcG9uZW50MyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fe1c0d1513/RedComponent3.png"} +{"name":"Презрение Ахна","refName":"Ahn's Contempt","namespace":"UNIQUE","unique":{"base":"Praetor Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0FobnNDb250ZW1wdCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/a946d28e48/AhnsContempt.png"} +{"name":"Наследие Ахна","refName":"Ahn's Heritage","namespace":"UNIQUE","unique":{"base":"Colossal Tower Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0FobnNIZXJpdGFnZSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/5a4ca9d54a/AhnsHeritage.png"} +{"name":"Мощь Ахна","refName":"Ahn's Might","namespace":"UNIQUE","unique":{"base":"Midnight Blade"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0FobnNNaWdodCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/ee9d3b45a4/AhnsMight.png"} +{"name":"Укус Ахваны","refName":"Ahuana's Bite","namespace":"UNIQUE","unique":{"base":"Sharktooth Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9BaHVhbmFRdWl2ZXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/4cc0ef813d/AhuanaQuiver.png"} +{"name":"Взгляд Акойи","refName":"Akoya's Gaze","namespace":"UNIQUE","unique":{"base":"Regicide Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Frb3lhTWFzayIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/bee9827a02/AkoyaMask.png"} +{"name":"Аль-Дих","refName":"Al Dhih","namespace":"UNIQUE","unique":{"base":"Timeworn Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9BbGRoaWgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5af625fdd1/Aldhih.png"} +{"name":"Тропа войны Алберона","refName":"Alberon's Warpath","namespace":"UNIQUE","unique":{"base":"Soldier Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9BbGJlcm9uc3dhcnBhdGgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/be7b089ef3/Alberonswarpath.png"} +{"name":"Посмертное охлаждение","refName":"Algor Mortis","namespace":"UNIQUE","unique":{"base":"Carnal Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvVGFuZ21henVhcm1vdXJnbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/fff14c8039/Tangmazuarmourgloves.png"} +{"name":"Аллелопатия","refName":"Allelopathy","namespace":"UNIQUE","unique":{"base":"Satin Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRW1iYWxtZXJzR2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/62148488f8/EmbalmersGloves.png"} +{"name":"Соблазн","refName":"Allure","namespace":"UNIQUE","unique":{"base":"Vaal Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9BbGx1cmUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/ff5311676c/Allure.png"} +{"name":"Вой Альфы","refName":"Alpha's Howl","namespace":"UNIQUE","unique":{"base":"Sinner Tricorne"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1dvbGZoZWFkIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/2acc10e593/Wolfhead.png"} +{"name":"Изменённое отдалённое воспоминание","refName":"Altered Distant Memory","namespace":"UNIQUE","unique":{"base":"Synthesised Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TeW50aGVzaXNDb2xkR3VhcmRpYW5NYXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5800fc91db/SynthesisColdGuardianMap.png"} +{"name":"Взгляд Аманаму","refName":"Amanamu's Gaze","namespace":"UNIQUE","unique":{"base":"Ghastly Eye Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0doYXN0bHlFeWVVbmlxdWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/301d98e6cb/GhastlyEyeUnique.png"} +{"name":"Стремление","refName":"Ambition","namespace":"UNIQUE","unique":{"base":"Vaal Aspect"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UcmlhbG1hc3Rlck1pZGRsZUZyYWdtZW50IiwidyI6MSwiaCI6Miwic2NhbGUiOjF9XQ/ce938362fd/TrialmasterMiddleFragment.png"} +{"name":"Раж Амбу","refName":"Ambu's Charge","namespace":"UNIQUE","unique":{"base":"Crusader Chainmail"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9TdHJJbnQzQVVuaXF1ZTIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9928614b24/StrInt3AUnique2.png"} +{"name":"Анафема","refName":"Anathema","namespace":"UNIQUE","unique":{"base":"Moonstone Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVW5pcXVlQ3Vyc2VSaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/db99b5c4d2/UniqueCurseRing.png"} +{"name":"Дальновидность предков","refName":"Ancestral Vision","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1ByaXN0aW5lQ29uZGl0aW9uaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5ad58d3a2e/PristineConditioning.png"} +{"name":"Древний череп","refName":"Ancient Skull","namespace":"UNIQUE","unique":{"base":"Bone Helmet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRWZmZWN0cy9IYXRzL0NodWh1dGx1c1NrdWxsIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/65537c5ac3/ChuhutlusSkull.png"} +{"name":"Андвариус","refName":"Andvarius","namespace":"UNIQUE","unique":{"base":"Gold Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzRVbmlxdWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/eea4645cf2/Ring4Unique.png"} +{"name":"Приближение истребления","refName":"Annihilation's Approach","namespace":"UNIQUE","unique":{"base":"Dragonscale Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9VYmVyU2VhcmluZ0V4YXJjaEJvb3QiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/705e9f657f/UberSearingExarchBoot.png"} +{"name":"Бешенство Апепа","refName":"Apep's Rage","namespace":"UNIQUE","unique":{"base":"Omen Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9BcGVwc1JhZ2UiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/074c66dadc/ApepsRage.png"} +{"name":"Забытьё Апепа","refName":"Apep's Slumber","namespace":"UNIQUE","unique":{"base":"Vaal Spirit Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0FwZXBzU2x1bWJlciIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/334298da3d/ApepsSlumber.png"} +{"name":"Главенство Апепа","refName":"Apep's Supremacy","namespace":"UNIQUE","unique":{"base":"Vaal Spirit Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0FwZXBzU3VwcmVtYWN5IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/e97426b026/ApepsSupremacy.png"} +{"name":"Пиковый режим","refName":"Apex Mode","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0ludGVuc2l0eUpld2VsMSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/2b116c20d2/IntensityJewel1.png"} +{"name":"Клык Аракаали","refName":"Arakaali's Fang","namespace":"UNIQUE","unique":{"base":"Fiend Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0ZhbmdVbmlxdWUiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/de6e51652e/FangUnique.png"} +{"name":"Араку Тики","refName":"Araku Tiki","namespace":"UNIQUE","unique":{"base":"Coral Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQyVW5pcXVlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6468b95d6b/Amulet2Unique.png"} +{"name":"Арборикс","refName":"Arborix","namespace":"UNIQUE","unique":{"base":"Assassin Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL1ZlcmRhbnRHdWFyZGlhbkJvdyIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/9008310cc7/VerdantGuardianBow.png"} +{"name":"Длань архитектора","refName":"Architect's Hand","namespace":"UNIQUE","unique":{"base":"Ambush Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQXJjaGl0ZWN0c0hhbmQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/8f303b6f98/ArchitectsHand.png"} +{"name":"Муки Арна","refName":"Arn's Anguish","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQWx0Q2hhcmdlU3RyIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/c07eed602e/AltChargeStr.png"} +{"name":"Вознесение над плотью","refName":"Ascent From Flesh","namespace":"UNIQUE","unique":{"base":"Chain Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvVHVybmNvYXRzZm9ydHVuZSIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/3adba0ad35/Turncoatsfortune.png"} +{"name":"Мягкое касание Азенат","refName":"Asenath's Gentle Touch","namespace":"UNIQUE","unique":{"base":"Silk Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQXNlbmF0aHNHZW50bGVUb3VjaCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ea6e822bbe/AsenathsGentleTouch.png"} +{"name":"Отметина Азенат","refName":"Asenath's Mark","namespace":"UNIQUE","unique":{"base":"Iron Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0h5cnJpc01hcmsiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4e0f1cc6a8/HyrrisMark.png"} +{"name":"Призывающий пепел","refName":"Ashcaller","namespace":"UNIQUE","unique":{"base":"Carved Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9Bc2h3YWtlciIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/a36e60acf6/Ashwaker.png"} +{"name":"Пепел звёзд","refName":"Ashes of the Stars","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9NYXN0ZXJPZkdlbXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f6497cbdfe/MasterOfGems.png"} +{"name":"Пепел","refName":"Ashrend","namespace":"UNIQUE","unique":{"base":"Buckskin Tunic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Bc2hyZW5kIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/9755e9fe99/Ashrend.png"} +{"name":"Гнев Асфиксии","refName":"Asphyxia's Wrath","namespace":"UNIQUE","unique":{"base":"Feathered Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9Bc3BoeXhpYXNXcmF0aCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/e33bd46903/AsphyxiasWrath.png"} +{"name":"Приют агрессора","refName":"Assailum","namespace":"UNIQUE","unique":{"base":"Sinner Tricorne"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RhbmdtYXp1YXJtb3VyaGVsbWV0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/6e327593b9/Tangmazuarmourhelmet.png"} +{"name":"Астральный фонарь","refName":"Astral Projector","namespace":"UNIQUE","unique":{"base":"Topaz Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQXN0cmFsUHJvamVjdG9yIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/92eca463f2/AstralProjector.png"} +{"name":"Астраментис","refName":"Astramentis","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQzNiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/95da0d04a4/Amulet36.png"} +{"name":"Проницательность Атзири","refName":"Atziri's Acuity","namespace":"UNIQUE","unique":{"base":"Vaal Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQXR6aXJpc0FjdWl0eSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/2c0f04ae47/AtzirisAcuity.png"} +{"name":"Немилость Атзири","refName":"Atziri's Disfavour","namespace":"UNIQUE","unique":{"base":"Vaal Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9BdHppcmlzRGlzZmF2b3VyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/1ffab716f8/AtzirisDisfavour.png"} +{"name":"Причуда Атзири","refName":"Atziri's Foible","namespace":"UNIQUE","unique":{"base":"Paua Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9RdWlkIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/00c2b3a588/Quid.png"} +{"name":"Обещание Атзири","refName":"Atziri's Promise","namespace":"UNIQUE","unique":{"base":"Amethyst Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvQXR6aXJpc1Byb21pc2UiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/8a5f4f13b4/AtzirisPromise.png"} +{"name":"Отражение Атзири","refName":"Atziri's Reflection","namespace":"UNIQUE","unique":{"base":"Golden Buckler"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleDVVbmlxdWUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/78fb81c375/ShieldDex5Unique.png"} +{"name":"Правление Атзири","refName":"Atziri's Reign","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JlZENvcnJ1cHQxIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b14eb2eeb7/RedCorrupt1.png"} +{"name":"Закон Атзири","refName":"Atziri's Rule","namespace":"UNIQUE","unique":{"base":"Judgement Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvUG9ydGVudE9mQUZhbHNlR29kIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/a3949ac141/PortentOfAFalseGod.png"} +{"name":"Величие Атзири","refName":"Atziri's Splendour","namespace":"UNIQUE","unique":{"base":"Sacrificial Garb"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9BdHppcmlzU3BsZW5kb3VyIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/24c910e168/AtzirisSplendour.png"} +{"name":"Поступь Атзири","refName":"Atziri's Step","namespace":"UNIQUE","unique":{"base":"Slink Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9BdHppcmlzU3RlcCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ec85575514/AtzirisStep.png"} +{"name":"Дополненное отдалённое воспоминание","refName":"Augmented Distant Memory","namespace":"UNIQUE","unique":{"base":"Synthesised Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TeW50aGVzaXNGaXJlR3VhcmRpYW5NYXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/924cb164d0/SynthesisFireGuardianMap.png"} +{"name":"Златоворот","refName":"Augyre","namespace":"UNIQUE","unique":{"base":"Void Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9FbGRlclNjZXB0cmUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/325c7b1591/ElderSceptre.png"} +{"name":"Воля Аукуны","refName":"Aukuna's Will","namespace":"UNIQUE","unique":{"base":"Clasped Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQXVrdW5hc1dpbGwiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/b3a94fe874/AukunasWill.png"} +{"name":"Бунт Ола","refName":"Aul's Uprising","namespace":"UNIQUE","unique":{"base":"Onyx Amulet","fixedStats":["Grants Level # Envy Skill","Nearby Enemies grant #% increased Flask Charges","Hits against Nearby Enemies have #% increased Critical Strike Chance","Nearby Enemies have #% reduced Stun and Block Recovery"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BaG4gQXJ0aWZhY3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5234506d57/Ahn%20Artifact.png"} +{"name":"Златохваты","refName":"Aurseize","namespace":"UNIQUE","unique":{"base":"Steelscale Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQXVyc2VpemUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4c0d010425/Aurseize.png"} +{"name":"Аурумворакс","refName":"Aurumvorax","namespace":"UNIQUE","unique":{"base":"Basket Rapier"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL0F1cnVtdm9yYXgiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/64b63c7413/Aurumvorax.png"} +{"name":"Ауксиум","refName":"Auxium","namespace":"UNIQUE","unique":{"base":"Crystal Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQXV4aXVtIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/acf784e82e/Auxium.png"} +{"name":"Вечность Аксиомы","refName":"Axiom Perpetuum","namespace":"UNIQUE","unique":{"base":"Bronze Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9BeGlvbVBlcnBldHV1bSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/da686b937b/AxiomPerpetuum.png"} +{"name":"Знак Братства","refName":"Badge of the Brotherhood","namespace":"UNIQUE","unique":{"base":"Turquoise Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Bc3Nhc3NpblVuaXF1ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/3616219d7d/AssassinUnique.png"} +{"name":"Костёр","refName":"Balefire","namespace":"UNIQUE","unique":{"base":"Opal Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9CYWVsZmlyZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/082c0ee423/Baelfire.png"} +{"name":"Затаённое дыхание","refName":"Bated Breath","namespace":"UNIQUE","unique":{"base":"Chain Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmF0ZWRCcmVhdGgiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/0a8cc4529f/BatedBreath.png"} +{"name":"Светоч безумия","refName":"Beacon of Madness","namespace":"UNIQUE","unique":{"base":"Two-Toned Boots","fixedStats":["Grants Level # Embrace Madness Skill","#% increased Movement Speed"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9UYW5nbWF6dWFybW91cmJvb3RzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/664521517c/Tangmazuarmourboots.png"} +{"name":"Медвежий кушак","refName":"Bear's Girdle","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVhcnNDbHV0Y2giLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/31930452e4/BearsClutch.png"} +{"name":"Красота","refName":"Beauty","namespace":"UNIQUE","unique":{"base":"Vaal Aspect"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UcmlhbG1hc3RlckxlZnRGcmFnbWVudCIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/ec9e7257ef/TrialmasterLeftFragment.png"} +{"name":"Брюхо Зверя","refName":"Belly of the Beast","namespace":"UNIQUE","unique":{"base":"Full Wyrmscale"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9iZWxseW9mdGhlYmVhc3QiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/d38723f8b9/bellyofthebeast.png"} +{"name":"Пояс обманщика","refName":"Belt of the Deceiver","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdE9mVGhlRGVjaWV2ZXIiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/914fb37e8c/BeltOfTheDeciever.png"} +{"name":"Клинок Белдрева","refName":"Beltimber Blade","namespace":"UNIQUE","unique":{"base":"Eternal Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL1ZlcmRhbnRHdWFyZGlhblN3b3JkMiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/3f09536952/VerdantGuardianSword2.png"} +{"name":"Уловка Берека","refName":"Berek's Grip","namespace":"UNIQUE","unique":{"base":"Two-Stone Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmVyZWtzR3JpcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7abb06d839/BereksGrip.png"} +{"name":"Прыть Берека","refName":"Berek's Pass","namespace":"UNIQUE","unique":{"base":"Two-Stone Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmVyZWtzUGFzcyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/efb7743eeb/BereksPass.png"} +{"name":"Передышка Берека","refName":"Berek's Respite","namespace":"UNIQUE","unique":{"base":"Two-Stone Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmVyZWtzUmVzcGl0ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/82b228798a/BereksRespite.png"} +{"name":"Кухонный нож Бино","refName":"Bino's Kitchen Knife","namespace":"UNIQUE","unique":{"base":"Slaughter Knife"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0Jpbm9zS2l0Y2hlbktuaWZlIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/499d39d615/BinosKitchenKnife.png"} +{"name":"Ошейник Биско","refName":"Bisco's Collar","namespace":"UNIQUE","unique":{"base":"Gold Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9CaXNjb3NDb2xsYXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8aa730c40e/BiscosCollar.png"} +{"name":"Привязь Биско","refName":"Bisco's Leash","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmlzY29zTGVhc2giLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/87b17c98e7/BiscosLeash.png"} +{"name":"Узел горьких уз","refName":"Bitterbind Point","namespace":"UNIQUE","unique":{"base":"Titanium Spirit Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL01hc3RlcnNGb2N1cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/1b2e5df5a6/MastersFocus.png"} +{"name":"Горькая мечта","refName":"Bitterdream","namespace":"UNIQUE","unique":{"base":"Shadow Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyOHVuaXF1ZTIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/085f7726de/scepter8unique2.png"} +{"name":"Гребень чёрного солнца","refName":"Black Sun Crest","namespace":"UNIQUE","unique":{"base":"Lacquered Helmet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0JsYWNrc3VuY3Jlc3QiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/d5c3617a52/Blacksuncrest.png"} +{"name":"Чёрный зенит","refName":"Black Zenith","namespace":"UNIQUE","unique":{"base":"Fingerless Silk Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRWJiQW5kRmxvdyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/3e5e1a62ea/EbbAndFlow.png"} +{"name":"Чёрное пламя","refName":"Blackflame","namespace":"UNIQUE","unique":{"base":"Amethyst Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmxhY2tGbGFtZUZpcmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d8cb90fe20/BlackFlameFire.png"} +{"name":"Отсвет мрака","refName":"Blackgleam","namespace":"UNIQUE","unique":{"base":"Blazing Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJVbmlxdWUxIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/797ce777ed/QuiverUnique1.png"} +{"name":"Чёрное сердце","refName":"Blackheart","namespace":"UNIQUE","unique":{"base":"Iron Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzFVbmlxdWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/40666e2827/Ring1Unique.png"} +{"name":"Хватка нечестивца","refName":"Blasphemer's Grasp","namespace":"UNIQUE","unique":{"base":"Assassin's Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRWxkZXJHbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MSwiZWxkZXIiOnRydWV9XQ/b07fd0eac2/ElderGloves.png"} +{"name":"Отравленный колодец","refName":"Blightwell","namespace":"UNIQUE","unique":{"base":"Clutching Talisman"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWludGVkU3ByaW5ncyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a95bad91d3/TaintedSprings.png"} +{"name":"Кровь порчи","refName":"Blood of Corruption","namespace":"UNIQUE","unique":{"base":"Amber Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9IZWFydE9mQ29ycnVwdGlvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ded3d6446f/HeartOfCorruption.png"} +{"name":"Кровь каруи","refName":"Blood of the Karui","namespace":"UNIQUE","unique":{"base":"Sanctified Life Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvQmxvb2RPZlRoZUthcnVpIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/f70bd57e9f/BloodOfTheKarui.png"} +{"name":"Кровавая цена","refName":"Blood Price","namespace":"UNIQUE","unique":{"base":"Reaver Helmet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Jsb29kUHJpY2VIZWxtVW5pcXVlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/ae8ee271e3/BloodPriceHelmUnique.png"} +{"name":"Общая плоть","refName":"Bloodbond","namespace":"UNIQUE","unique":{"base":"Bone Armour"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Db21tdW5hbEZsZXNoIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/ad6a787fcf/CommunalFlesh.png"} +{"name":"Власть крови","refName":"Bloodgrip","namespace":"UNIQUE","unique":{"base":"Marble Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9CbG9vZEFtdWxldCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/546826e52b/BloodAmulet.png"} +{"name":"Кровавый рубец","refName":"Bloodnotch","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0lnbm9yZVBhaW4iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/191f378925/IgnorePain.png"} +{"name":"Игра крови","refName":"Bloodplay","namespace":"UNIQUE","unique":{"base":"Stiletto"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0Jsb29kUGxheSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/3c8258f393/BloodPlay.png"} +{"name":"Кровопийца","refName":"Bloodseeker","namespace":"UNIQUE","unique":{"base":"Hellion's Paw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9CbG9vZHNlZWtlciIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0b888c4189/Bloodseeker.png"} +{"name":"Окровавленный медальон","refName":"Bloodsoaked Medallion","namespace":"UNIQUE","unique":{"base":"Amber Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9CbG9vZFNvYWtlZF9NZWRhbGxpb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/2160ca2460/BloodSoaked_Medallion.png"} +{"name":"Блендербор","refName":"Blunderbore","namespace":"UNIQUE","unique":{"base":"Astral Plate"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9CbHVuZGVyYm9yZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/4b34ebf3fe/Blunderbore.png"} +{"name":"Кости Уллра","refName":"Bones of Ullr","namespace":"UNIQUE","unique":{"base":"Silk Slippers"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9ib290dW5pcXVlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/1dfabe3358/bootunique.png"} +{"name":"Вера в бутылке","refName":"Bottled Faith","namespace":"UNIQUE","unique":{"base":"Sulphur Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvQm90dGxlZFB1cml0eSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/b2ef237bf3/BottledPurity.png"} +{"name":"Связанная судьба","refName":"Bound Fate","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSGluZWtvcmFCZWx0IiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/0ffa60853d/HinekoraBelt.png"} +{"name":"Мозготряс","refName":"Brain Rattler","namespace":"UNIQUE","unique":{"base":"Meatgrinder"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvQnJhaW5TY3JhbWJsZXIiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/0749c07fa6/BrainScrambler.png"} +{"name":"Колючий панцирь","refName":"Bramblejack","namespace":"UNIQUE","unique":{"base":"Plate Vest"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9CcmFtYmxlamFjayIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/d2e07d1ed8/Bramblejack.png"} +{"name":"Дыхание Совета","refName":"Breath of the Council","namespace":"UNIQUE","unique":{"base":"Carnal Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9QbGFndWVicmluZ2VyIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/c22a70dd6e/Plaguebringer.png"} +{"name":"Крадущий дыханье","refName":"Breathstealer","namespace":"UNIQUE","unique":{"base":"Hydrascale Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3VwcG9ydGVyMWdsb3ZlQSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0cbf141437/Supporter1gloveA.png"} +{"name":"Сияющий клюв","refName":"Brightbeak","namespace":"UNIQUE","unique":{"base":"War Hammer"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U1VW5pcXVlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/d3f763cad7/OneHandMace5Unique.png"} +{"name":"Флаг Морской гнили","refName":"Brinerot Flag","namespace":"UNIQUE","unique":{"base":"Tarnished Spirit Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0JyaW5lcm90RmxhZyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/4645154405/BrinerotFlag.png"} +{"name":"Знак Морской гнили","refName":"Brinerot Mark","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQnJpbmVyb3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c1d39c178d/Brinerot.png"} +{"name":"Китобои Морской гнили","refName":"Brinerot Whalers","namespace":"UNIQUE","unique":{"base":"Trapper Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SZWVmc2NvdXJnZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/6f72714c8f/Reefscourge.png"} +{"name":"Ремни проворства","refName":"Briskwrap","namespace":"UNIQUE","unique":{"base":"Sun Leather"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Ccmlza3dyYXAiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/4a3c7d71e6/Briskwrap.png"} +{"name":"Сломленная вера","refName":"Broken Faith","namespace":"UNIQUE","unique":{"base":"Archon Kite Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NhbnRvbmlzRmFpdGgiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/82ea2899a8/SantonisFaith.png"} +{"name":"Гибкость Бронна","refName":"Bronn's Lithe","namespace":"UNIQUE","unique":{"base":"Cutthroat's Garb"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Ccm9ubnNsaXRoZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/80b9cf6b0b/Bronnslithe.png"} +{"name":"Жестокая сдержанность","refName":"Brutal Restraint","namespace":"UNIQUE","unique":{"base":"Timeless Jewel","fixedStats":["Historic"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL01hcmFrZXRoQ2l2aWxpemF0aW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8e18d378b4/MarakethCivilization.png"} +{"name":"Силовой подход","refName":"Brute Force Solution","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1NUUnRvSU5UIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d8b66f795b/STRtoINT.png"} +{"name":"Крапило Изувера","refName":"Brutus' Lead Sprinkler","namespace":"UNIQUE","unique":{"base":"Ritual Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvVGhlTGVhZFNwcmlua2xlciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/9a9217f832/TheLeadSprinkler.png"} +{"name":"Бубонный след","refName":"Bubonic Trail","namespace":"UNIQUE","unique":{"base":"Murder Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9BYnlzc0Jvb3RzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/61dd23f86c/AbyssBoots.png"} +{"name":"Корона Кадигана","refName":"Cadigan's Crown","namespace":"UNIQUE","unique":{"base":"Runic Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0FkYXB0YXRpb25IZWxtZXRVbmlxdWUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/693ad15174/AdaptationHelmetUnique.png"} +{"name":"Caer Blaidd, логово стаи","refName":"Caer Blaidd, Wolfpack's Den","namespace":"UNIQUE","unique":{"base":"Underground River Map"},"map":{"screenshot":"https://i.imgur.com/5BwJouH.jpg"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9Xb2xmTWFwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/db94bff258/WolfMap.png"} +{"name":"Катастрофические видения","refName":"Calamitous Visions","namespace":"UNIQUE","unique":{"base":"Small Cluster Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0xvbmVNZXNzZW5nZXJKZXdlbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/46f8de709e/LoneMessengerJewel.png"} +{"name":"Зов братьев","refName":"Call of the Brotherhood","namespace":"UNIQUE","unique":{"base":"Two-Stone Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQnJvdGhlcmhvb2QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/956d645be0/Brotherhood.png"} +{"name":"Зов пустоты","refName":"Call of the Void","namespace":"UNIQUE","unique":{"base":"Sapphire Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvRnJvc3RHbGF6ZWRFeWVSaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjEsImVsZGVyIjp0cnVlLCJzaGFwZXIiOnRydWV9XQ/ed288bc494/FrostGlazedEyeRing.png"} +{"name":"Молоток Каллинелия","refName":"Callinellus Malleus","namespace":"UNIQUE","unique":{"base":"Auric Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvQ2FsbGluZWxsdXNNYWxsZXVzIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/54da9946c9/CallinellusMalleus.png"} +{"name":"Корысть Камерии","refName":"Cameria's Avarice","namespace":"UNIQUE","unique":{"base":"Gavel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvQW1lcmljc01hdWwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e1b9d35ca3/AmericsMaul.png"} +{"name":"Молот Камерии","refName":"Cameria's Maul","namespace":"UNIQUE","unique":{"base":"Gavel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvQW1lcmljc01hdWwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e1b9d35ca3/AmericsMaul.png"} +{"name":"Трость Кулемака","refName":"Cane of Kulemak","namespace":"UNIQUE","unique":{"base":"Serpentine Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvQ2F0YXJpbmFTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/9e79ed63e5/CatarinaStaff.png"} +{"name":"Трость познания","refName":"Cane of Unravelling","namespace":"UNIQUE","unique":{"base":"Ezomyte Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvQ2FuZU9mVW5yYXZlbGxpbmciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/99b4e7e44e/CaneOfUnravelling.png"} +{"name":"Стёганый труп","refName":"Carcass Jack","namespace":"UNIQUE","unique":{"base":"Varnished Coat"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9DYXJjYXNzSmFjayIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/e496ea8e6e/CarcassJack.png"} +{"name":"Осторожное планирование","refName":"Careful Planning","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0lOVHRvREVYIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/e30df474e0/INTtoDEX.png"} +{"name":"Сердце бойни","refName":"Carnage Heart","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQzNyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/451ac32a56/Amulet37.png"} +{"name":"Несмолкающий пир","refName":"Ceaseless Feast","namespace":"UNIQUE","unique":{"base":"Spiked Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvVG91Y2hPZlJ1c3QiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/a9b7f33bdf/TouchOfRust.png"} +{"name":"Пояс благодати","refName":"Ceinture of Benevolence","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvTGlua21hc3RlcnNDb2lsIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/19af94314e/LinkmastersCoil.png"} +{"name":"Лапа Цербера","refName":"Cerberus Limb","namespace":"UNIQUE","unique":{"base":"Blood Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9DZXJlYnVzIExpbWIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/abffc5b395/Cerebus%20Limb.png"} +{"name":"Цепь выносливости","refName":"Chain of Endurance","namespace":"UNIQUE","unique":{"base":"Chain Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvVW5oZWFsdGh5QnVyZGVuIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/d59c2c2bc9/UnhealthyBurden.png"} +{"name":"Цепи подчинения","refName":"Chains of Command","namespace":"UNIQUE","unique":{"base":"Saintly Chainmail"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9DaGFpbnNPZkNvbW1hbmQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/3919d27d1b/ChainsOfCommand.png"} +{"name":"Цепи освобождения","refName":"Chains of Emancipation","namespace":"UNIQUE","unique":{"base":"Chain Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvU2xhdmVyc0JlbHQiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/0b8d818fbb/SlaversBelt.png"} +{"name":"Чаша ужасов","refName":"Chalice of Horrors","namespace":"UNIQUE","unique":{"base":"War Buckler"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0NoYWxpY2VvZmhvcnJvcnMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/532f7ec81c/Chaliceofhorrors.png"} +{"name":"Столп Чернобога","refName":"Chernobog's Pillar","namespace":"UNIQUE","unique":{"base":"Ebony Tower Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0NoZXJub2JvZ3NwaWxsYXIiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8868d6add1/Chernobogspillar.png"} +{"name":"Пагуба Черрубимы","refName":"Cherrubim's Maleficence","namespace":"UNIQUE","unique":{"base":"Triumphant Lamellar"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9DaGVycnViaW1zQ3JhdmUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/90d81e1e5b/CherrubimsCrave.png"} +{"name":"Холод скверны","refName":"Chill of Corruption","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dyZWVuQ29ycnVwdDIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/567ed38e5d/GreenCorrupt2.png"} +{"name":"Чин Сол","refName":"Chin Sol","namespace":"UNIQUE","unique":{"base":"Assassin Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzV1bmlxdWUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/199f28ea8d/Bow5unique.png"} +{"name":"Венец Титуса","refName":"Chitus' Apex","namespace":"UNIQUE","unique":{"base":"Necromancer Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0NoaXR1c0FwZXgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/65697b1d09/ChitusApex.png"} +{"name":"Стук-Постук","refName":"Chober Chaber","namespace":"UNIQUE","unique":{"base":"Great Mallet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvQ2hvYmVyQ2hhYmVyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/77d9d3e30a/ChoberChaber.png"} +{"name":"Хор бури","refName":"Choir of the Storm","namespace":"UNIQUE","unique":{"base":"Lapis Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Wb2ljZU9mVGhlU3Rvcm1VcGdyYWRlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/50b59f1123/VoiceOfTheStormUpgrade.png"} +{"name":"Урна глотателя пепла","refName":"Cinderswallow Urn","namespace":"UNIQUE","unique":{"base":"Silver Flask","fixedStats":["+# to Maximum Charges","Recharges # Charge when you Consume an Ignited corpse","#% increased Charges per use","Enemies Ignited by you during Effect take #% increased Damage"]},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvVmlhbG9mVW5saWZlIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/9911226887/VialofUnlife.png"} +{"name":"Круг устремлений","refName":"Circle of Ambition","namespace":"UNIQUE","unique":{"base":"Prismatic Ring","fixedStats":["#% increased Mana Reservation Efficiency of Herald Skills"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVWJlckNpcmNsZUhlcmFsZCIsInciOjEsImgiOjEsInNjYWxlIjoxLCJzeW50aGVzaXNlZCI6dHJ1ZX1d/77050fa01b/UberCircleHerald.png"} +{"name":"Обод страдания","refName":"Circle of Anguish","namespace":"UNIQUE","unique":{"base":"Ruby Ring","fixedStats":["Adds # to # Fire Damage"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU3ludGhlc2lzRmlyZSIsInciOjEsImgiOjEsInNjYWxlIjoxLCJzeW50aGVzaXNlZCI6dHJ1ZX1d/f64b382150/SynthesisFire.png"} +{"name":"Обод страха","refName":"Circle of Fear","namespace":"UNIQUE","unique":{"base":"Sapphire Ring","fixedStats":["Adds # to # Cold Damage"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU3ludGhlc2lzQ29sZCIsInciOjEsImgiOjEsInNjYWxlIjoxLCJzeW50aGVzaXNlZCI6dHJ1ZX1d/f2a949365a/SynthesisCold.png"} +{"name":"Обод вины","refName":"Circle of Guilt","namespace":"UNIQUE","unique":{"base":"Iron Ring","fixedStats":["Adds # to # Physical Damage","+# to Armour"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU3ludGhlc2lzUGh5c2ljYWwyIiwidyI6MSwiaCI6MSwic2NhbGUiOjEsInN5bnRoZXNpc2VkIjp0cnVlfV0/9345ce30d7/SynthesisPhysical2.png"} +{"name":"Обод тоски","refName":"Circle of Nostalgia","namespace":"UNIQUE","unique":{"base":"Amethyst Ring","fixedStats":["Adds # to # Chaos Damage","+#% to Chaos Resistance"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU3ludGhlc2lzUGh5c2ljYWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MSwic3ludGhlc2lzZWQiOnRydWV9XQ/91f50b535b/SynthesisPhysical.png"} +{"name":"Обод сожаления","refName":"Circle of Regret","namespace":"UNIQUE","unique":{"base":"Topaz Ring","fixedStats":["Adds # to # Lightning Damage"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU3ludGhlc2lzTGlnaHRuaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjEsInN5bnRoZXNpc2VkIjp0cnVlfV0/ce810e2fcc/SynthesisLightning.png"} +{"name":"Скульптор","refName":"Clayshaper","namespace":"UNIQUE","unique":{"base":"Rock Breaker"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvQ2xheVNoYXBlciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/9224ab6497/ClayShaper.png"} +{"name":"Накидка непокорности","refName":"Cloak of Defiance","namespace":"UNIQUE","unique":{"base":"Lacquered Garb"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9DbG9ha09mRGVmaWFuY2UiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/87997e3b8a/CloakOfDefiance.png"} +{"name":"Накидка пламени","refName":"Cloak of Flame","namespace":"UNIQUE","unique":{"base":"Scholar's Robe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MUF1bmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/41c15c6511/BodyInt1Aunique.png"} +{"name":"Накидка Томора Айли","refName":"Cloak of Tawm'r Isley","namespace":"UNIQUE","unique":{"base":"Savant's Robe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Ub21PUmVpbGx5Q2xvYWsiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/595ee9c868/TomOReillyCloak.png"} +{"name":"Острие холодного железа","refName":"Cold Iron Point","namespace":"UNIQUE","unique":{"base":"Ezomyte Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0NvbGRJcm9uUG9pbnQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/1a4002957b/ColdIronPoint.png"} +{"name":"Мысли о бое","refName":"Combat Focus","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0VsZW1lbnRhbEhpdExpZ2h0ZW5pbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e913bb8301/ElementalHitLightening.png"} +{"name":"Мысли о бое","refName":"Combat Focus","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0VsZW1lbnRhbEhpdENvbGQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/2d08fbc4ec/ElementalHitCold.png"} +{"name":"Мысли о бое","refName":"Combat Focus","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0VsZW1lbnRhbEhpdEZpcmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/7dac7ceff8/ElementalHitFire.png"} +{"name":"Приказ Бездны","refName":"Command of the Pit","namespace":"UNIQUE","unique":{"base":"Riveted Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQ29tbWFuZG9mdGhlUGl0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/cc7772a880/CommandofthePit.png"} +{"name":"Контракт: Разрушение Нерушимого","refName":"Contract: Breaking the Unbreakable","namespace":"UNIQUE","unique":{"base":"Preventative Contract"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVW5icmVha2FibGVGaWdodENvbnRyYWN0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4e50a5f0ae/UnbreakableFightContract.png"} +{"name":"Контракт: Смерть Дарнау","refName":"Contract: Death to Darnaw","namespace":"UNIQUE","unique":{"base":"Naval Contract"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQWRtaXJhbERhcm5hd0ZpZ2h0Q29udHJhY3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d3d9bf5da6/AdmiralDarnawFightContract.png"} +{"name":"Контракт: Гордое сердце","refName":"Contract: Heart of Glory","namespace":"UNIQUE","unique":{"base":"Familial Contract"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVXN1cnBlckZpZ2h0Q29udHJhY3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/46d7ba4bf9/UsurperFightContract.png"} +{"name":"Контракт: Король работорговцев","refName":"Contract: The Slaver King","namespace":"UNIQUE","unique":{"base":"Vigilante Contract"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvU2xhdmVNZXJjaGFudEZpZ2h0Q29udHJhY3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/05c788361c/SlaveMerchantFightContract.png"} +{"name":"Контракт: Близнецы","refName":"Contract: The Twins","namespace":"UNIQUE","unique":{"base":"Vengeful Contract"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVm94RmFtaWx5RmlnaHRDb250cmFjdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/28f9230b0b/VoxFamilyFightContract.png"} +{"name":"Сотрудничество","refName":"Cooperation","namespace":"UNIQUE","unique":{"base":"Vaal Aspect"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UcmlhbG1hc3RlclJpZ2h0RnJhZ21lbnQiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MX1d/923a1f4d20/TrialmasterRightFragment.png"} +{"name":"Почерк Коралито","refName":"Coralito's Signature","namespace":"UNIQUE","unique":{"base":"Diamond Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvR29yZ29uc0ZsYXNrIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/8fa50a1974/GorgonsFlask.png"} +{"name":"Трупоход","refName":"Corpsewalker","namespace":"UNIQUE","unique":{"base":"Carnal Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9EaXN0dXJiVGhlRGVhZCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/fabb05d84e/DisturbTheDead.png"} +{"name":"Кора","refName":"Cortex","namespace":"UNIQUE","unique":{"base":"Synthesised Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TeW50aGVzaXNCb3NzR3VhcmRpYW5NYXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/542f2635c7/SynthesisBossGuardianMap.png"} +{"name":"Сверкающий эликсир","refName":"Coruscating Elixir","namespace":"UNIQUE","unique":{"base":"Ruby Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvQ29ydXNFbGl4aXIiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/26769c58f3/CorusElixir.png"} +{"name":"Беда Коспри","refName":"Cospri's Malice","namespace":"UNIQUE","unique":{"base":"Jewelled Foil"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL0Nvc3ByaXNNYWxpY2UiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/e9e517220b/CosprisMalice.png"} +{"name":"Воля Коспри","refName":"Cospri's Will","namespace":"UNIQUE","unique":{"base":"Assassin's Garb"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Db3NwcmlzV2lsbCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/e7801b1322/CosprisWill.png"} +{"name":"Оковы труса","refName":"Coward's Chains","namespace":"UNIQUE","unique":{"base":"Chain Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQ293YXJkJ3MgQ2hhaW5zIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/b1cb3d3a26/Coward%27s%20Chains.png"} +{"name":"Наследие труса","refName":"Coward's Legacy","namespace":"UNIQUE","unique":{"base":"Chain Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQ293YXJkJ3MgTGVnYWN5IiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/2325fc7213/Coward%27s%20Legacy.png"} +{"name":"Капюшон кераунофила","refName":"Cowl of the Ceraunophile","namespace":"UNIQUE","unique":{"base":"Solaris Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1N1cHBvcnRlcjFoZWxtZXRDIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/9455b25c23/Supporter1helmetC.png"} +{"name":"Капюшон криофила","refName":"Cowl of the Cryophile","namespace":"UNIQUE","unique":{"base":"Silken Hood"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1N1cHBvcnRlcjFoZWxtZXRBIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/5283e1920d/Supporter1helmetA.png"} +{"name":"Капюшон термофила","refName":"Cowl of the Thermophile","namespace":"UNIQUE","unique":{"base":"Ezomyte Burgonet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1N1cHBvcnRlcjFoZWxtZXRCIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/3a31f05cd3/Supporter1helmetB.png"} +{"name":"Разбиватель голов","refName":"Craghead","namespace":"UNIQUE","unique":{"base":"Serrated Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9RdWl2ZXJVbmlxdWU0IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/dfccecb2ae/QuiverUnique4.png"} +{"name":"Панцирь Краценна","refName":"Craiceann's Carapace","namespace":"UNIQUE","unique":{"base":"Golden Plate"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9DcmFiVW5pcXVlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/b6db96049a/CrabUnique.png"} +{"name":"Хитин Краценна","refName":"Craiceann's Chitin","namespace":"UNIQUE","unique":{"base":"Magistrate Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0NyYWJVbmlxdWVIZWxtZXQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/70715aae61/CrabUniqueHelmet.png"} +{"name":"Клешни Краценна","refName":"Craiceann's Pincers","namespace":"UNIQUE","unique":{"base":"Titan Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQ3JhYlVuaXF1ZUdsb3ZlcyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/c5811ae4bd/CrabUniqueGloves.png"} +{"name":"Следы Краценна","refName":"Craiceann's Tracks","namespace":"UNIQUE","unique":{"base":"Goliath Greaves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9DcmFiVW5pcXVlQm9vdHMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/65740a31fd/CrabUniqueBoots.png"} +{"name":"Гребень страсти","refName":"Crest of Desire","namespace":"UNIQUE","unique":{"base":"Fluted Bascinet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01hZ25pZmljYXRpb24iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/1c4139ef41/Magnification.png"} +{"name":"Щит семьи Перандус","refName":"Crest of Perandus","namespace":"UNIQUE","unique":{"base":"Pine Buckler"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleFVuaXF1ZTUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e85f672678/ShieldDexUnique5.png"} +{"name":"Корона глаз","refName":"Crown of Eyes","namespace":"UNIQUE","unique":{"base":"Hubris Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Nyb3dub2ZFeWVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/778182e367/CrownofEyes.png"} +{"name":"Венец внутреннего ока","refName":"Crown of the Inward Eye","namespace":"UNIQUE","unique":{"base":"Prophet Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Nyb3duT2ZUaGVJbndhcmRFeWUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/fdb20856e4/CrownOfTheInwardEye.png"} +{"name":"Корона Бледного царя","refName":"Crown of the Pale King","namespace":"UNIQUE","unique":{"base":"Regicide Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Nyb3dub2Z0aGVQYWxlS2luZyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/a2cd2b0900/CrownofthePaleKing.png"} +{"name":"Корона тирана","refName":"Crown of the Tyrant","namespace":"UNIQUE","unique":{"base":"Magistrate Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RoZUltcG9zaW5nIENyb3duIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/e9e915daa7/TheImposing%20Crown.png"} +{"name":"Терновый венец","refName":"Crown of Thorns","namespace":"UNIQUE","unique":{"base":"Vine Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Nyb3dub2ZUaG9ybnMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/23054b0443/CrownofThorns.png"} +{"name":"Кристаллизованное всезнание","refName":"Crystallised Omniscience","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Bc2NlbmRhbmNlQW11bGV0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/60368620d5/AscendanceAmulet.png"} +{"name":"Диковинка усвоения","refName":"Curio of Absorption","namespace":"UNIQUE","unique":{"base":"Primordial Fragment"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9QaW5uYWNsZUZyYWdtZW50RXhhcmNoIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/0da90fe2d1/PinnacleFragmentExarch.png"} +{"name":"Диковинка поглощения","refName":"Curio of Consumption","namespace":"UNIQUE","unique":{"base":"Primordial Fragment"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9QaW5uYWNsZUZyYWdtZW50RWF0ZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a386f18599/PinnacleFragmentEater.png"} +{"name":"Диковинка разложения","refName":"Curio of Decay","namespace":"UNIQUE","unique":{"base":"Primordial Fragment"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9QaW5uYWNsZUZyYWdtZW50RWxkZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/40544dbcfb/PinnacleFragmentElder.png"} +{"name":"Диковинка потенциала","refName":"Curio of Potential","namespace":"UNIQUE","unique":{"base":"Primordial Fragment"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9QaW5uYWNsZUZyYWdtZW50TWF2ZW4iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/53c751ef5d/PinnacleFragmentMaven.png"} +{"name":"Любопытство","refName":"Curiosity","namespace":"UNIQUE","unique":{"base":"Vaal Aspect"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UcmlhbG1hc3RlckJvdHRvbUZyYWdtZW50IiwidyI6MywiaCI6MSwic2NhbGUiOjF9XQ/78cddd2ad4/TrialmasterBottomFragment.png"} +{"name":"Выход на поклон","refName":"Curtain Call","namespace":"UNIQUE","unique":{"base":"Plague Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0N1cnRhaW5DYWxsIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/5f3eb95031/CurtainCall.png"} +{"name":"Лапка Сибелы","refName":"Cybil's Paw","namespace":"UNIQUE","unique":{"base":"Thresher Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DeWJpbHNDbGF3IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/6da52a7519/CybilsClaw.png"} +{"name":"Обод гиганта","refName":"Cyclopean Coil","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvRWxkZXJCZWx0IiwidyI6MiwiaCI6MSwic2NhbGUiOjEsImVsZGVyIjp0cnVlfV0/e933baf49d/ElderBelt.png"} +{"name":"Танец преподносимых","refName":"Dance of the Offered","namespace":"UNIQUE","unique":{"base":"Carnal Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9EYW5jZU9mVGhlT2ZmZXJlZCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ca6a0319e6/DanceOfTheOffered.png"} +{"name":"Отвага Дарессо","refName":"Daresso's Courage","namespace":"UNIQUE","unique":{"base":"Baroque Round Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleFVuaXF1ZTEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/320f1e78fa/ShieldStrDexUnique1.png"} +{"name":"Непокорность Дарессо","refName":"Daresso's Defiance","namespace":"UNIQUE","unique":{"base":"Full Dragonscale"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9EYXJlc3Nvc0RlZmlhbmNlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/2e5802be5f/DaressosDefiance.png"} +{"name":"Страсть Дарессо","refName":"Daresso's Passion","namespace":"UNIQUE","unique":{"base":"Estoc"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL0RhcmVzc29zIiwidyI6MSwiaCI6NCwic2NhbGUiOjF9XQ/d698c36c19/Daressos.png"} +{"name":"Салют Дарессо","refName":"Daresso's Salute","namespace":"UNIQUE","unique":{"base":"Citrine Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9DaXRyaW5lQW11bGV0VW5pcXVlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ea232d0123/CitrineAmuletUnique.png"} +{"name":"Воцарившаяся тьма","refName":"Darkness Enthroned","namespace":"UNIQUE","unique":{"base":"Stygian Vise"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvRGFya25lc3NFbnRocm9uZWQiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/2e418e2c4d/DarknessEnthroned.png"} +{"name":"Несущие тьму","refName":"Darkray Vectors","namespace":"UNIQUE","unique":{"base":"Dragonscale Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9EYXJrcmF5VmVjdG9ycyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/e96f134d02/DarkrayVectors.png"} +{"name":"Чёрная насмешка","refName":"Darkscorn","namespace":"UNIQUE","unique":{"base":"Assassin Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0RhcmtzY29ybiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/5145b7feef/Darkscorn.png"} +{"name":"Рассветный прорыв","refName":"Dawnbreaker","namespace":"UNIQUE","unique":{"base":"Colossal Tower Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1N1cGVyaGVhdGVkU2hpZWxkIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/59e3552a9b/SuperheatedShield.png"} +{"name":"Странник рассвета","refName":"Dawnstrider","namespace":"UNIQUE","unique":{"base":"Vaal Greaves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9JbmZlY3Rpb3VzQ29uc3RydWN0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/bf1cb0a5b4/InfectiousConstruct.png"} +{"name":"Возмездие мёртвых","refName":"Dead Reckoning","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0FkZGl0aW9uYWxTa2VsZXRvbk1hZ2VzTW9kaWZpZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/64b5aa8a03/AdditionalSkeletonMagesModifier.png"} +{"name":"Смерть и налоги","refName":"Death and Taxes","namespace":"UNIQUE","unique":{"base":"Necropolis Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9EZWF0aGFuZFRheGVzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/0cc72adc19/DeathandTaxes.png"} +{"name":"Смертельная спешка","refName":"Death Rush","namespace":"UNIQUE","unique":{"base":"Amethyst Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQW1ldGh5c3RSaW5nVW5pcXVlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1ade97e0ac/AmethystRingUnique.png"} +{"name":"Порог смерти","refName":"Death's Door","namespace":"UNIQUE","unique":{"base":"Crusader Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9EZWF0aHNkb29yIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/49384091d3/Deathsdoor.png"} +{"name":"Рука смерти","refName":"Death's Hand","namespace":"UNIQUE","unique":{"base":"Karui Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9FbmRPZkVyYSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/fbfd20f658/EndOfEra.png"} +{"name":"Арфа смерти","refName":"Death's Harp","namespace":"UNIQUE","unique":{"base":"Death Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0RlYXRoc2hhcnAiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/488e5f6267/Deathsharp.png"} +{"name":"Клятва смерти","refName":"Death's Oath","namespace":"UNIQUE","unique":{"base":"Astral Plate"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9EZWF0aHNvYXRoIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f81375e335/Deathsoath.png"} +{"name":"Панихида Дибиона","refName":"Debeon's Dirge","namespace":"UNIQUE","unique":{"base":"Despot Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9TdHJpbmdBeGUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/c3289a678a/StringAxe.png"} +{"name":"Капканщики","refName":"Deerstalker","namespace":"UNIQUE","unique":{"base":"Deerskin Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleFVuaXF1ZTEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/8d8725b395/BootsDexUnique1.png"} +{"name":"Противление судьбе","refName":"Defiance of Destiny","namespace":"UNIQUE","unique":{"base":"Paua Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9IaW5la29yYUFtdWxldCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d26f80f9c7/HinekoraAmulet.png"} +{"name":"Колокол мёртвых","refName":"Deidbell","namespace":"UNIQUE","unique":{"base":"Gilded Sallet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0RlaWRiZWxsIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/fd66b0b28f/Deidbell.png"} +{"name":"Сшиватель демонов","refName":"Demon Stitcher","namespace":"UNIQUE","unique":{"base":"Satin Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRGVtb25TdGljaGVyIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/0269893a5c/DemonSticher.png"} +{"name":"Дендрогнев","refName":"Dendrobate","namespace":"UNIQUE","unique":{"base":"Sentinel Jacket"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9EZW5kcm9iYXRpcyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/7c2d6dd5ce/Dendrobatis.png"} +{"name":"Благочестие Девото","refName":"Devoto's Devotion","namespace":"UNIQUE","unique":{"base":"Nightmare Bascinet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldFN0ckRleDJ1bmlxdWUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/65fa7daa88/HelmetStrDex2unique.png"} +{"name":"Злодеяние Диаллы","refName":"Dialla's Malefaction","namespace":"UNIQUE","unique":{"base":"Sage's Robe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9EaWFsbGFzTWFsZWZhY3Rpb24iLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/842ace4d64/DiallasMalefaction.png"} +{"name":"Расщепитель","refName":"Disintegrator","namespace":"UNIQUE","unique":{"base":"Maelström Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvRWxkZXJTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxLCJlbGRlciI6dHJ1ZX1d/b01af8c2ff/ElderStaff.png"} +{"name":"Растворение плоти","refName":"Dissolution of the Flesh","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1Jlc2VydmVkQmxvb2RKZXdlbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1a4688f335/ReservedBloodJewel.png"} +{"name":"Дивинариус","refName":"Divinarius","namespace":"UNIQUE","unique":{"base":"Imperial Skean"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjd1bmlxdWUiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/3deec3773b/Dagger7unique.png"} +{"name":"Чистое прорицание","refName":"Divination Distillate","namespace":"UNIQUE","unique":{"base":"Large Hybrid Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MveUZsYXNrczE3IiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/df28fc612b/yFlasks17.png"} +{"name":"Проклятие Доэдре","refName":"Doedre's Damning","namespace":"UNIQUE","unique":{"base":"Paua Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzNVbmlxdWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d06b386d73/Ring3Unique.png"} +{"name":"Эликсир Доэдре","refName":"Doedre's Elixir","namespace":"UNIQUE","unique":{"base":"Greater Mana Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MveUZsYXNrNCIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/59c415efed/yFlask4.png"} +{"name":"Презрение Доэдре","refName":"Doedre's Scorn","namespace":"UNIQUE","unique":{"base":"Lunaris Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0RvZWRyZXNTY29ybiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/16c4d034ee/DoedresScorn.png"} +{"name":"Кожа Доэдре","refName":"Doedre's Skin","namespace":"UNIQUE","unique":{"base":"Widowsilk Robe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Eb2VkcmVzU2tpbiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/a04f3c7a0a/DoedresSkin.png"} +{"name":"Власть Доэдре","refName":"Doedre's Tenure","namespace":"UNIQUE","unique":{"base":"Velvet Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRG9lZHJlc1RlbnVyZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/052a57aabd/DoedresTenure.png"} +{"name":"Язык Доэдре","refName":"Doedre's Tongue","namespace":"UNIQUE","unique":{"base":"Lapis Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Eb2VkcmVzVG9uZ3VlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/434403db05/DoedresTongue.png"} +{"name":"Стрелы рока","refName":"Doomfletch","namespace":"UNIQUE","unique":{"base":"Royal Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0Rvb21GbGV0Y2giLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/a284f1cdab/DoomFletch.png"} +{"name":"Сеятель гибели","refName":"Doomsower","namespace":"UNIQUE","unique":{"base":"Lion Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL0Rvb21Tb3dlciIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/7d9d914b75/DoomSower.png"} +{"name":"Дун Кьюбияри","refName":"Doon Cuebiyari","namespace":"UNIQUE","unique":{"base":"Vaal Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvRG9vbkN1ZWJpeWFyaSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/8a4a0ccb6b/DoonCuebiyari.png"} +{"name":"Одеяние доппельгангера","refName":"Doppelgänger Guise","namespace":"UNIQUE","unique":{"base":"Sadist Garb"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Db2xsZWN0b3JzR2FyYkRpZmYiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/eb8a6d36ef/CollectorsGarbDiff.png"} +{"name":"Катализатор Дориани","refName":"Doryani's Catalyst","namespace":"UNIQUE","unique":{"base":"Vaal Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9Eb3J5YW5pc0NhdGFseXN0IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/aa54cbb507/DoryanisCatalyst.png"} +{"name":"Наваждение Дориани","refName":"Doryani's Delusion","namespace":"UNIQUE","unique":{"base":"Sorcerer Boots","fixedStats":["#% increased Movement Speed"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Eb3JpeWFuaXNCbHVlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/0288b52fee/DoriyanisBlue.png"} +{"name":"Наваждение Дориани","refName":"Doryani's Delusion","namespace":"UNIQUE","unique":{"base":"Titan Greaves","fixedStats":["#% increased Movement Speed"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Eb3JpeWFuaXNSZWQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/10255d4b05/DoriyanisRed.png"} +{"name":"Наваждение Дориани","refName":"Doryani's Delusion","namespace":"UNIQUE","unique":{"base":"Slink Boots","fixedStats":["#% increased Movement Speed"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Eb3JpeWFuaXNHcmVlbiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ef81cb1e57/DoriyanisGreen.png"} +{"name":"Кулак Дориани","refName":"Doryani's Fist","namespace":"UNIQUE","unique":{"base":"Vaal Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRG9yeWFuaXNGaXN0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/92cfa78e4d/DoryanisFist.png"} +{"name":"Приглашение Дориани","refName":"Doryani's Invitation","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvRG9yeWFuaXNJbnZpdGF0aW9uIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/d0085639cc/DoryanisInvitation.png"} +{"name":"Машинариум Дориани","refName":"Doryani's Machinarium","namespace":"UNIQUE","unique":{"base":"Maze Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9Eb3J5YW5pcyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/581444be53/Doryanis.png"} +{"name":"Прототип Дориани","refName":"Doryani's Prototype","namespace":"UNIQUE","unique":{"base":"Saint's Hauberk"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9TaG9ja0Nsb2FrIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/44e73cc73c/ShockCloak.png"} +{"name":"Изгиб ужаса","refName":"Dreadarc","namespace":"UNIQUE","unique":{"base":"Cleaver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9EcmVhZGFyYyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/fd1e188ee3/Dreadarc.png"} +{"name":"Осколки снов","refName":"Dream Fragments","namespace":"UNIQUE","unique":{"base":"Sapphire Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzZVbmlxdWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0c74ddd77c/Ring6Unique.png"} +{"name":"Перо грёз","refName":"Dreamfeather","namespace":"UNIQUE","unique":{"base":"Eternal Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0RyZWFtZmVhdGhlciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/89a3a7588c/Dreamfeather.png"} +{"name":"Пронзатель шей","refName":"Drillneck","namespace":"UNIQUE","unique":{"base":"Penetrating Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9EcmlsbG5lY2siLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2e0770a7b1/Drillneck.png"} +{"name":"Сумеречный рассвет","refName":"Duskdawn","namespace":"UNIQUE","unique":{"base":"Maelström Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU29sYXJpc0x1bmFyaXNTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/e5e9df18a4/SolarisLunarisStaff.png"} +{"name":"Башмаки сумерек","refName":"Dusktoe","namespace":"UNIQUE","unique":{"base":"Ironscale Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0ckRleFVuaXF1ZTMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/39b842cf85/BootsStrDexUnique3.png"} +{"name":"Дядианская заря","refName":"Dyadian Dawn","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvTW90aGVyRHlhZHVzIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/ca299e5015/MotherDyadus.png"} +{"name":"Диадус","refName":"Dyadus","namespace":"UNIQUE","unique":{"base":"Infernal Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9EeWFkdXMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e1b1cf2439/Dyadus.png"} +{"name":"Дыхание увядания","refName":"Dying Breath","namespace":"UNIQUE","unique":{"base":"Iron Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvRHlpbmdCcmVhdGgiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/3b7be0c935/DyingBreath.png"} +{"name":"Умирающее солнце","refName":"Dying Sun","namespace":"UNIQUE","unique":{"base":"Ruby Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvU2hhcGVyc0ZsYXNrIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/c6e2f8118d/ShapersFlask.png"} +{"name":"Объятия Эарендила","refName":"Earendel's Embrace","namespace":"UNIQUE","unique":{"base":"Grinning Fetish"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9FYXJlbmRlbHNFbWJyYWNlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/7fbecdb2b3/EarendelsEmbrace.png"} +{"name":"Сплочение Эвера","refName":"Eber's Unification","namespace":"UNIQUE","unique":{"base":"Hubris Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1BhbGVDb3VuY2lsSGVsbWV0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/4415fd6474/PaleCouncilHelmet.png"} +{"name":"Отголоски сотворения","refName":"Echoes of Creation","namespace":"UNIQUE","unique":{"base":"Royal Burgonet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RoZVR3aXN0aW5nU2NyZWFtIiwidyI6MiwiaCI6Miwic2NhbGUiOjEsInNoYXBlciI6dHJ1ZX1d/a52bc6cab0/TheTwistingScream.png"} +{"name":"Горн хаоса","refName":"Echoforge","namespace":"UNIQUE","unique":{"base":"Infernal Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL0Nvc21pY0ZvcmdlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/df82c06267/CosmicForge.png"} +{"name":"Затмение Солярис","refName":"Eclipse Solaris","namespace":"UNIQUE","unique":{"base":"Engraved Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kVW5pcXVlMSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/e1734b812d/WandUnique1.png"} +{"name":"Грань безумия","refName":"Edge of Madness","namespace":"UNIQUE","unique":{"base":"Etched Greatsword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL0VkZ2VPZk1hZG5lc3MiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/5ab6c808b5/EdgeOfMadness.png"} +{"name":"Упорное обучение","refName":"Efficient Training","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0lOVHRvU1RSIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3631faae6d/INTtoSTR.png"} +{"name":"Изящный эготизм","refName":"Elegant Hubris","namespace":"UNIQUE","unique":{"base":"Timeless Jewel","fixedStats":["Historic"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0V0ZXJuYWxFbXBpcmVDaXZpbGl6YXRpb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8d1d098584/EternalEmpireCivilization.png"} +{"name":"Поедатель стихий","refName":"Elevore","namespace":"UNIQUE","unique":{"base":"Wolf Pelt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1dpbGRjYWxsIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/bf0a462a3a/Wildcall.png"} +{"name":"Эликсир сомкнутого круга","refName":"Elixir of the Unbroken Circle","namespace":"UNIQUE","unique":{"base":"Iron Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvV2FyZEZsYXNrMDMiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/d78b003b9a/WardFlask03.png"} +{"name":"Огненный след","refName":"Emberwake","namespace":"UNIQUE","unique":{"base":"Ruby Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzEwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/55c8711fd7/Ring10.png"} +{"name":"Коварство императора","refName":"Emperor's Cunning","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0N1bm5pbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4b5d857ef3/Cunning.png"} +{"name":"Господство императора","refName":"Emperor's Mastery","namespace":"UNIQUE","unique":{"base":"Prismatic Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL01hc3RlcnkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/eb1cf5699e/Mastery.png"} +{"name":"Могущество императора","refName":"Emperor's Might","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL01pZ2h0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d1507b1ec4/Might.png"} +{"name":"Бдительность Императора","refName":"Emperor's Vigilance","namespace":"UNIQUE","unique":{"base":"Steel Kite Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0hpZ2hQcmllc3RTaGllbGQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/4c24c383b8/HighPriestShield.png"} +{"name":"Остроумие императора","refName":"Emperor's Wit","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1dpdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/bc537c241b/Wit.png"} +{"name":"Имперская хватка","refName":"Empire's Grasp","namespace":"UNIQUE","unique":{"base":"Goliath Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvSGl0aGVyIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/c23bccbc39/Hither.png"} +{"name":"Энергетическая броня","refName":"Energised Armour","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JlZEpld2VsNSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5d09a69cbc/RedJewel5.png"} +{"name":"Внутренние силы","refName":"Energy From Within","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0JsdWVKZXdlbDYiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/43c313a2c4/BlueJewel6.png"} +{"name":"Энтропийное опустошение","refName":"Entropic Devastation","namespace":"UNIQUE","unique":{"base":"Assassin's Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvVWJlclNoYXBlckdsb3ZlcyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/50bd7171bf/UberShaperGloves.png"} +{"name":"Эфемерное острие","refName":"Ephemeral Edge","namespace":"UNIQUE","unique":{"base":"Dusk Blade"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDhVbmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/d2fdb4e56e/OneHandSword8Unique.png"} +{"name":"Зеркало Иш","refName":"Esh's Mirror","namespace":"UNIQUE","unique":{"base":"Vaal Spirit Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0VzaHNNaXJyb3IiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/983cf91bf4/EshsMirror.png"} +{"name":"Личина Иш","refName":"Esh's Visage","namespace":"UNIQUE","unique":{"base":"Vaal Spirit Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0VzaHNNaXJyb3JVcGdyYWRlZCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f965a13213/EshsMirrorUpgraded.png"} +{"name":"Личинка сущности","refName":"Essence Worm","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvRXNzZW5jZVdvcm0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/4455cc009b/EssenceWorm.png"} +{"name":"Эссентия Сангиус","refName":"Essentia Sanguis","namespace":"UNIQUE","unique":{"base":"Vaal Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3NVVuaXF1ZTIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/8041876a9e/Claw5Unique2.png"} +{"name":"Вечное проклятье","refName":"Eternal Damnation","namespace":"UNIQUE","unique":{"base":"Agate Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbndlbnNBbXVsZXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1d40745e7d/AnwensAmulet.png"} +{"name":"Морок Ивара","refName":"Ewar's Mirage","namespace":"UNIQUE","unique":{"base":"Antique Rapier"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL0V3YXJzTWlyYWdlIiwidyI6MSwiaCI6NCwic2NhbGUiOjF9XQ/c7b916c7f4/EwarsMirage.png"} +{"name":"Конец экспедиции","refName":"Expedition's End","namespace":"UNIQUE","unique":{"base":"Sentinel Jacket"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9BZG1pcmFsc0phY2tldCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/8c204b4c87/AdmiralsJacket.png"} +{"name":"Умоизвлекатель","refName":"Extractor Mentis","namespace":"UNIQUE","unique":{"base":"Agate Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9FeHRyYWN0b3JNZW50aXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/af5684bd74/ExtractorMentis.png"} +{"name":"Глаз Чаюлы","refName":"Eye of Chayula","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQ3VW5pcXVlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6b059ec15d/Amulet7Unique.png"} +{"name":"Око Невинности","refName":"Eye of Innocence","namespace":"UNIQUE","unique":{"base":"Citrine Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9FeWVPZklubm9jZW5jZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9544014b69/EyeOfInnocence.png"} +{"name":"Око злобы","refName":"Eye of Malice","namespace":"UNIQUE","unique":{"base":"Callous Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0V5ZU9mRGVzaXJlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/4218c3cc66/EyeOfDesire.png"} +{"name":"Глаза Великого волка","refName":"Eyes of the Greatwolf","namespace":"UNIQUE","unique":{"base":"Greatwolf Talisman"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9SaWd3YWxkc1RhbGlzbWFuIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4936fcad86/RigwaldsTalisman.png"} +{"name":"Триумф эзомита","refName":"Ezomyte Peak","namespace":"UNIQUE","unique":{"base":"Iron Hat"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0V6b215dGVQZWFrIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/058b75e4e0/EzomytePeak.png"} +{"name":"Мордобои","refName":"Facebreaker","namespace":"UNIQUE","unique":{"base":"Strapped Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzRGV4SW50VW5pcXVlMSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/b97dda23b0/GlovesDexIntUnique1.png"} +{"name":"Треуголка Фейргрейвса","refName":"Fairgraves' Tricorne","namespace":"UNIQUE","unique":{"base":"Tricorne"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0ZhaXJncmF2ZXNUcmljb3JuZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/6a828c8150/FairgravesTricorne.png"} +{"name":"Страж веры","refName":"Faithguard","namespace":"UNIQUE","unique":{"base":"Runic Helm"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1NwaXJpdEhlbG1ldFVuaXF1ZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0921dc17df/SpiritHelmetUnique.png"} +{"name":"Путы голода","refName":"Faminebind","namespace":"UNIQUE","unique":{"base":"Rustic Sash"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvRmFtaW5lYmluZCIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/a790722613/Faminebind.png"} +{"name":"Укус Фаррул","refName":"Farrul's Bite","namespace":"UNIQUE","unique":{"base":"Harlequin Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RpZ2VySGVsbWV0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/c056a59c62/TigerHelmet.png"} +{"name":"Гон Фаррул","refName":"Farrul's Chase","namespace":"UNIQUE","unique":{"base":"Slink Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9UaWdlckJvb3RzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/640a42e82a/TigerBoots.png"} +{"name":"Мех Фаррул","refName":"Farrul's Fur","namespace":"UNIQUE","unique":{"base":"Triumphant Lamellar"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaWdlckJvZHlBcm1vdXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/1cfa248b9b/TigerBodyArmour.png"} +{"name":"Лапы Фаррул","refName":"Farrul's Pounce","namespace":"UNIQUE","unique":{"base":"Hydrascale Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvVGlnZXJHbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/294e636cf1/TigerGloves.png"} +{"name":"Судьба ваал","refName":"Fate of the Vaal","namespace":"UNIQUE","unique":{"base":"Gemstone Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0ZhdGVPZlRoZVZhYWwiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/0a4128aace/FateOfTheVaal.png"} +{"name":"Неизбежный конец","refName":"Fated End","namespace":"UNIQUE","unique":{"base":"Paua Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvRm9yYmlkZGVuU2VhbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f402209b8f/ForbiddenSeal.png"} +{"name":"Путы пира","refName":"Feastbind","namespace":"UNIQUE","unique":{"base":"Rustic Sash"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvRmVhc3RiaW5kIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/f5d1f232d6/Feastbind.png"} +{"name":"Мощи святых","refName":"Femurs of the Saints","namespace":"UNIQUE","unique":{"base":"Primordial Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvRmVtdXJzb2Z0aGVTYWludHMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/e275f87366/FemursoftheSaints.png"} +{"name":"Болотная коряга","refName":"Fencoil","namespace":"UNIQUE","unique":{"base":"Gnarled Branch"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmYxdW5pcXVlIiwidyI6MSwiaCI6NCwic2NhbGUiOjF9XQ/cff9022931/Staff1unique.png"} +{"name":"Покров Фенумы","refName":"Fenumus' Shroud","namespace":"UNIQUE","unique":{"base":"Widowsilk Robe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9TcGlkZXJBcm1vdXJCb2R5IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f48eff23e8/SpiderArmourBody.png"} +{"name":"Пряжа Фенумы","refName":"Fenumus' Spinnerets","namespace":"UNIQUE","unique":{"base":"Assassin's Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TcGlkZXJBcm1vdXJCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ba3f1e4f2a/SpiderArmourBoots.png"} +{"name":"Яд Фенумы","refName":"Fenumus' Toxins","namespace":"UNIQUE","unique":{"base":"Necromancer Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1NwaWRlckFybW91ckhlbG1ldCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/da7582cbf6/SpiderArmourHelmet.png"} +{"name":"Плетение Фенумы","refName":"Fenumus' Weave","namespace":"UNIQUE","unique":{"base":"Carnal Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3BpZGVyQXJtb3VyIEdsb3ZlcyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/cb4ae94f6d/SpiderArmour%20Gloves.png"} +{"name":"Изобретательность","refName":"Fertile Mind","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0RFWHRvSU5UIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b363fdbd52/DEXtoINT.png"} +{"name":"Горячечный бред","refName":"Fevered Mind","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0JsdWVDb3JydXB0NCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ad8d514185/BlueCorrupt4.png"} +{"name":"Шип Фиделиса","refName":"Fidelitas' Spike","namespace":"UNIQUE","unique":{"base":"Jagged Foil"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0ZpZGVsaXRhc1NwaWtlIiwidyI6MSwiaCI6NCwic2NhbGUiOjF9XQ/de1d15ceb1/FidelitasSpike.png"} +{"name":"Песть Пламени","refName":"Firesong","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JlZEpld2VsNyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/dd6b13c77c/RedJewel7.png"} +{"name":"Первая часть жестокости","refName":"First Piece of Brutality","namespace":"UNIQUE","unique":{"base":"Imperial Staff Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGFyYmluZ2VyU2hhcmRzL1NoYXJkMSIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/4dec967e18/Shard1.png"} +{"name":"Первая часть направлений","refName":"First Piece of Directions","namespace":"UNIQUE","unique":{"base":"Blunt Arrow Quiver Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9TaGFyZHMvU2hhcmQxIiwidyI6MSwiaCI6Miwic2NhbGUiOjF9XQ/3e8a036316/Shard1.png"} +{"name":"Первая часть концентрации","refName":"First Piece of Focus","namespace":"UNIQUE","unique":{"base":"Archon Kite Shield Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoYXJkcy9DaGFubmVsaW5nU2hpZWxkU2hhcmQxIiwidyI6MSwiaCI6Miwic2NhbGUiOjF9XQ/37cf3313be/ChannelingShieldShard1.png"} +{"name":"Первая часть бурь","refName":"First Piece of Storms","namespace":"UNIQUE","unique":{"base":"Callous Mask Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hhcmJpbmdlclNoYXJkcy9TaGFyZDEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/571346519c/Shard1.png"} +{"name":"Первая часть колдовства","refName":"First Piece of the Arcane","namespace":"UNIQUE","unique":{"base":"Legion Sword Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0hhcmJpbmdlckxlYWd1ZVNoYXJkcy9IYXJiaW5nZXJTd29yZFNoYXJkMSIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/34740b6337/HarbingerSwordShard1.png"} +{"name":"Первая часть времени","refName":"First Piece of Time","namespace":"UNIQUE","unique":{"base":"Cloth Belt Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvU2hhcmRzL0hhcmJpbmdlckJlbHRTaGFyZDEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/59ab81025f/HarbingerBeltShard1.png"} +{"name":"Пламенный взор","refName":"Flamesight","namespace":"UNIQUE","unique":{"base":"Solaris Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0V4cGxvcmVyc1Zpc2lvbkZpcmUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/972275807c/ExplorersVisionFire.png"} +{"name":"Дух и плоть","refName":"Flesh and Spirit","namespace":"UNIQUE","unique":{"base":"Ironscale Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRmxlc2hBbmRTcGlyaXQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/cff8e05a60/FleshAndSpirit.png"} +{"name":"Пожиратель плоти","refName":"Flesh-Eater","namespace":"UNIQUE","unique":{"base":"Dream Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2U2VW5pcXVlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/2db8b10771/OneHandMace6Unique.png"} +{"name":"Ваятель плоти","refName":"Fleshcrafter","namespace":"UNIQUE","unique":{"base":"Necromancer Silks"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Fc3NlbmNlR2lmdGVyIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/3b3446e019/EssenceGifter.png"} +{"name":"Плавность движений","refName":"Fluid Motion","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1NUUnRvREVYIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f5a4ea844d/STRtoDEX.png"} +{"name":"Купель грома","refName":"Font of Thunder","namespace":"UNIQUE","unique":{"base":"Mirrored Spiked Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0ZvbnRPZlRodW5kZXIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/dec53fec0c/FontOfThunder.png"} +{"name":"Запретное пламя","refName":"Forbidden Flame","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1B1enpsZVBpZWNlSmV3ZWxfQ2xlYW5zaW5nRmlyZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ddfe57ac90/PuzzlePieceJewel_CleansingFire.png"} +{"name":"Запретная плоть","refName":"Forbidden Flesh","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1B1enpsZVBpZWNlSmV3ZWxfR3JlYXRUYW5nbGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9035b9ffd4/PuzzlePieceJewel_GreatTangle.png"} +{"name":"Запрещённый кивер","refName":"Forbidden Shako","namespace":"UNIQUE","unique":{"base":"Great Crown","fixedStats":["+# to all Attributes"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RoZUVwaXBoYW55IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/e8e44ba854/TheEpiphany.png"} +{"name":"Запретный вкус","refName":"Forbidden Taste","namespace":"UNIQUE","unique":{"base":"Quartz Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvUGhhbnRvbUJsb29kIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/d04fc2ce16/PhantomBlood.png"} +{"name":"Крепостное обязательство","refName":"Fortress Covenant","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0JsdWVKZXdlbDQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5801f4441d/BlueJewel4.png"} +{"name":"Четвёртая часть концентрации","refName":"Fourth Piece of Focus","namespace":"UNIQUE","unique":{"base":"Archon Kite Shield Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoYXJkcy9DaGFubmVsaW5nU2hpZWxkU2hhcmQ0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/dd368f0f34/ChannelingShieldShard4.png"} +{"name":"Лисья тень","refName":"Foxshade","namespace":"UNIQUE","unique":{"base":"Wild Leather"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Gb3hzaGFkZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/bf15e97218/Foxshade.png"} +{"name":"Фрактальные мысли","refName":"Fractal Thoughts","namespace":"UNIQUE","unique":{"base":"Vaal Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0ZyYWN0YWx0aG91Z2h0cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/64d44c7c52/Fractalthoughts.png"} +{"name":"Немощь","refName":"Fragility","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JlZENvcnJ1cHQ2IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/161d0c411c/RedCorrupt6.png"} +{"name":"Ледяное дыхание","refName":"Frostbreath","namespace":"UNIQUE","unique":{"base":"Ornate Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvRnJvc3RCcmVhdGgiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8a6b305388/FrostBreath.png"} +{"name":"Вентиль гнева","refName":"Fury Valve","namespace":"UNIQUE","unique":{"base":"Turquoise Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9NZXRhbW9ycGhvc2lzQW11bGV0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f8bdb14091/MetamorphosisAmulet.png"} +{"name":"Ледяной взор","refName":"Galesight","namespace":"UNIQUE","unique":{"base":"Solaris Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0V4cGxvcmVyc1Zpc2lvbkNvbGQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/702f0515fb/ExplorersVisionCold.png"} +{"name":"Дух азарта","refName":"Gamblesprint","namespace":"UNIQUE","unique":{"base":"Hydrascale Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9VbHRpbWF0dW1Cb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/2e5d0d7dc7/UltimatumBoots.png"} +{"name":"Кураж Ганга","refName":"Gang's Momentum","namespace":"UNIQUE","unique":{"base":"Legion Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9HYW5nc0Jvb3RzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/4443459d14/GangsBoots.png"} +{"name":"Облачение Эфемерного","refName":"Garb of the Ephemeral","namespace":"UNIQUE","unique":{"base":"Savant's Robe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaGVUZW1wbGFyc1JvYmVzIiwidyI6MiwiaCI6Mywic2NhbGUiOjEsInN5bnRoZXNpc2VkIjp0cnVlfV0/bd9f49e4b4/TheTemplarsRobes.png"} +{"name":"Полет Гарухан","refName":"Garukhan's Flight","namespace":"UNIQUE","unique":{"base":"Stealth Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Ud29Ub25lZEJvb3RzQUxUIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/4e0bb109ae/TwoTonedBootsALT.png"} +{"name":"Благословение Джофри","refName":"Geofri's Baptism","namespace":"UNIQUE","unique":{"base":"Brass Maul"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U3VW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/378419527e/TwoHandMace7Unique.png"} +{"name":"Шлем Джофри","refName":"Geofri's Crest","namespace":"UNIQUE","unique":{"base":"Great Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0dlb2ZyaXNDcmVzdCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/4daae52cf5/GeofrisCrest.png"} +{"name":"Прибежище Джофри","refName":"Geofri's Sanctuary","namespace":"UNIQUE","unique":{"base":"Elegant Ringmail"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9HZW9mcmlTYW5jdHVhcnkiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/6f94f74244/GeofriSanctuary.png"} +{"name":"Призрачные изгибы","refName":"Ghostwrithe","namespace":"UNIQUE","unique":{"base":"Silken Vest"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9HaG9zdHdlYXZlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/95d1911033/Ghostweave.png"} +{"name":"Гроза гигантов","refName":"Giantsbane","namespace":"UNIQUE","unique":{"base":"Bronze Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRGVhdGhmb3JnZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/88c0b6908a/Deathforge.png"} +{"name":"Дары небес","refName":"Gifts from Above","namespace":"UNIQUE","unique":{"base":"Diamond Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvRGlhbW9uZFJpbmdVbmlxdWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8edaf6655a/DiamondRingUnique.png"} +{"name":"Взгляд хаоса","refName":"Glimpse of Chaos","namespace":"UNIQUE","unique":{"base":"Vaal Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1ZhYWxDb3JydXB0aW9uSGVsbWV0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/3476e5818d/VaalCorruptionHelmet.png"} +{"name":"Клык мрака","refName":"Gloomfang","namespace":"UNIQUE","unique":{"base":"Blue Pearl Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9TaGFkb3dSYXkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9c05fb0b03/ShadowRay.png"} +{"name":"Блистательное тщеславие","refName":"Glorious Vanity","namespace":"UNIQUE","unique":{"base":"Timeless Jewel","fixedStats":["Historic"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1ZhYWxDaXZpbGl6YXRpb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/568c0e7c98/VaalCivilization.png"} +{"name":"Ненасытность","refName":"Gluttony","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvR2x1dHRvbnkiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/850a3a646d/Gluttony.png"} +{"name":"Гоблинский резак","refName":"Goblinedge","namespace":"UNIQUE","unique":{"base":"Ambusher"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0dvYmxpbkVkZ2UiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/61d1382d07/GoblinEdge.png"} +{"name":"Золотой колпак","refName":"Goldrim","namespace":"UNIQUE","unique":{"base":"Leather Cap"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleFVuaXF1ZTIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/7f4908ef2f/HelmetDexUnique2.png"} +{"name":"Золотые полозы","refName":"Goldwyrm","namespace":"UNIQUE","unique":{"base":"Nubuck Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleFVuaXF1ZTIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/548228175c/BootsDexUnique2.png"} +{"name":"Кровавый крушитель","refName":"Gorebreaker","namespace":"UNIQUE","unique":{"base":"Spiked Club"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2UzVW5pcXVlIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/c3ca02cad8/OneHandMace3Unique.png"} +{"name":"Кровопускатель","refName":"Goredrill","namespace":"UNIQUE","unique":{"base":"Skinning Knife"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0dvcmVkcmlsbCIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/e61d6f038e/Goredrill.png"} +{"name":"Взгляд Горгоны","refName":"Gorgon's Gaze","namespace":"UNIQUE","unique":{"base":"Regicide Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1BpbGxhcnNPZkFydW4iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/49ec219fc5/PillarsOfArun.png"} +{"name":"Благосклонность богини","refName":"Grace of the Goddess","namespace":"UNIQUE","unique":{"base":"Prophecy Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9VYmVyTWF2ZW5XYW5kIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/1e06b23a5b/UberMavenWand.png"} +{"name":"Великий образ","refName":"Grand Spectrum","namespace":"UNIQUE","unique":{"base":"Viridian Jewel","fixedStats":[]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dyZWVuR3JhbmRTcGVjdHJ1bSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/df87965e3f/GreenGrandSpectrum.png"} +{"name":"Великий образ","refName":"Grand Spectrum","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel","fixedStats":[]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0JsdWVHcmFuZFNwZWN0cnVtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b1282ca004/BlueGrandSpectrum.png"} +{"name":"Великий образ","refName":"Grand Spectrum","namespace":"UNIQUE","unique":{"base":"Crimson Jewel","fixedStats":[]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JlZEdyYW5kU3BlY3RydW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3e6789a065/RedGrandSpectrum.png"} +{"name":"Цепкая белладонна","refName":"Grasping Nightshade","namespace":"UNIQUE","unique":{"base":"Sporebloom Tincture"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL1VuaXF1ZVNwb3JlYmxvb20iLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MX1d/7b26d28408/UniqueSporebloom.png"} +{"name":"Печатка Граттусов","refName":"Grattus Signet","namespace":"UNIQUE","unique":{"base":"Diamond Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvR3JhdHR1c1JpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/230a414e3d/GrattusRing.png"} +{"name":"Могильные узы","refName":"Gravebind","namespace":"UNIQUE","unique":{"base":"Hydrascale Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRGVhdGhHcmlwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/371752d95c/DeathGrip.png"} +{"name":"Секрет Грейвена","refName":"Graven's Secret","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQWx0Q2hhcmdlSW50IiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/1300aed2ac/AltChargeInt.png"} +{"name":"Щупальца Великого старца","refName":"Great Old One's Tentacles","namespace":"UNIQUE","unique":{"base":"Eelskin Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvSW1wYWxlR2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/37dd8738f8/ImpaleGloves.png"} +{"name":"Опека Великого старца","refName":"Great Old One's Ward","namespace":"UNIQUE","unique":{"base":"Corrugated Buckler"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0dyZWF0T2xkT25lc1dhcmQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3c0efbf6be/GreatOldOnesWard.png"} +{"name":"Объятия жадности","refName":"Greed's Embrace","namespace":"UNIQUE","unique":{"base":"Golden Plate"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9HcmVlZHNFbWJyYWNlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/0e8984128f/GreedsEmbrace.png"} +{"name":"Шип Грелесья","refName":"Grelwood Shank","namespace":"UNIQUE","unique":{"base":"Eternal Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL1ZlcmRhbnRHdWFyZGlhblN3b3JkMSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/b085f741a5/VerdantGuardianSword1.png"} +{"name":"Хватка Совета","refName":"Grip of the Council","namespace":"UNIQUE","unique":{"base":"Arcanist Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50M1VuaXF1ZTIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/88338fac41/GlovesInt3Unique2.png"} +{"name":"Шкура Граткул","refName":"Gruthkul's Pelt","namespace":"UNIQUE","unique":{"base":"Wyrmscale Doublet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9XaWxlZmFuZ3NQZWx0IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/e393dbd9af/WilefangsPelt.png"} +{"name":"Гемофилия","refName":"Haemophilia","namespace":"UNIQUE","unique":{"base":"Serpentscale Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvYmxlZWRnbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/005045bec7/bleedgloves.png"} +{"name":"Извратитель","refName":"Hale Negator","namespace":"UNIQUE","unique":{"base":"Mind Cage"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hhbGVOZWdhdG9yIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/f1a292f713/HaleNegator.png"} +{"name":"Зал великих мастеров","refName":"Hall of Grandmasters","namespace":"UNIQUE","unique":{"base":"Promenade Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9IYWxsT2ZHcmFuZG1hc3RlcnMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/73778c0f28/HallOfGrandmasters.png"} +{"name":"Священная земля","refName":"Hallowed Ground","namespace":"UNIQUE","unique":{"base":"Cemetery Map"},"map":{"screenshot":"https://i.imgur.com/CvyxLuI.jpg"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9IYWxsb3dlZEdyb3VuZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0dfbdc7da9/HallowedGround.png"} +{"name":"Рукавицы истовых","refName":"Hand of the Fervent","namespace":"UNIQUE","unique":{"base":"Zealot Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR3JpcG9mU2FjcmlmaWNlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/9ac4073c28/GripofSacrifice.png"} +{"name":"Длань мысли и движения","refName":"Hand of Thought and Motion","namespace":"UNIQUE","unique":{"base":"Imperial Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9UaG91Z2h0TW90aW9uMSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/cc443b5108/ThoughtMotion1.png"} +{"name":"Длань мудрости и деяния","refName":"Hand of Wisdom and Action","namespace":"UNIQUE","unique":{"base":"Imperial Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9UaG91Z2h0TW90aW9uMiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/69f2b430d0/ThoughtMotion2.png"} +{"name":"Длань Верховного жреца","refName":"Hands of the High Templar","namespace":"UNIQUE","unique":{"base":"Crusader Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvSGFuZHNPZlRoZUhpZ2hUZW1wbGFyIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/239b2df5cf/HandsOfTheHighTemplar.png"} +{"name":"Кузня ненависти","refName":"Hateforge","namespace":"UNIQUE","unique":{"base":"Ancient Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvVmFhbFJhZ2VHbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/fbc53ac89d/VaalRageGloves.png"} +{"name":"Охотник за головами","refName":"Headhunter","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSGVhZGh1bnRlciIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/e9542ec6ee/Headhunter.png"} +{"name":"Здоровый дух","refName":"Healthy Mind","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0JsdWVKZXdlbDciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/73584bc29e/BlueJewel7.png"} +{"name":"Сердечная связь","refName":"Heartbound Loop","namespace":"UNIQUE","unique":{"base":"Moonstone Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvSGVhcnRib3VuZFJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c214aff507/HeartboundRing.png"} +{"name":"Губитель сердец","refName":"Heartbreaker","namespace":"UNIQUE","unique":{"base":"Royal Skean"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0hlYXJ0YnJlYWtlciIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/fa73c4d5b4/Heartbreaker.png"} +{"name":"Лёд и пламень","refName":"Heatshiver","namespace":"UNIQUE","unique":{"base":"Leather Hood"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlYXRzaGl2ZXIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/b1860c890e/Heatshiver.png"} +{"name":"Эра господства","refName":"Hegemony's Era","namespace":"UNIQUE","unique":{"base":"Judgement Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGVnZW1vbnlzRXJhIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/85929506ae/HegemonysEra.png"} +{"name":"Покров еретика","refName":"Heretic's Veil","namespace":"UNIQUE","unique":{"base":"Deicide Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0ZhY2VPZkRpdmluaXR5IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/dcefc8975e/FaceOfDivinity.png"} +{"name":"Кровожадность Хезманы","refName":"Hezmana's Bloodlust","namespace":"UNIQUE","unique":{"base":"Vaal Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9IZXptYW5hc0Jsb29kbHVzdCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/fdbd48147f/HezmanasBloodlust.png"} +{"name":"Скрытый потенциал","refName":"Hidden Potential","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL3VuaXF1ZTE3IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/c445828c50/unique17.png"} +{"name":"Сплошное лезвие","refName":"Hiltless","namespace":"UNIQUE","unique":{"base":"Reaver Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL0hpbHRsZXNzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/04689b7d41/Hiltless.png"} +{"name":"Взгляд Хинекоры","refName":"Hinekora's Sight","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9IaW5la29yYXNTaWdodCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/13820d857f/HinekorasSight.png"} +{"name":"Чертог чести","refName":"Honourhome","namespace":"UNIQUE","unique":{"base":"Soldier Helmet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hvbm91cmhvbWUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/11382c25e9/Honourhome.png"} +{"name":"Разрыватель надежд","refName":"Hopeshredder","namespace":"UNIQUE","unique":{"base":"Ranger Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0VsZGVyQm93IiwidyI6MiwiaCI6NCwic2NhbGUiOjEsImVsZGVyIjp0cnVlfV0/0dcd0422ae/ElderBow.png"} +{"name":"Гимн Гримнора","refName":"Hrimnor's Hymn","namespace":"UNIQUE","unique":{"base":"Sledgehammer"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U2VW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/31ad6258ac/TwoHandMace6Unique.png"} +{"name":"Решимость Гримнора","refName":"Hrimnor's Resolve","namespace":"UNIQUE","unique":{"base":"Samnite Helmet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hyaW1ub3JzUmVzb2x2ZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/cb3ab90132/HrimnorsResolve.png"} +{"name":"Скорбь Хрима","refName":"Hrimsorrow","namespace":"UNIQUE","unique":{"base":"Goathide Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvSHJpbXNvcnJvdyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/bc13b3487c/Hrimsorrow.png"} +{"name":"Ярость Хьяона","refName":"Hyaon's Fury","namespace":"UNIQUE","unique":{"base":"Legion Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0h5YW9uc0Z1cnkiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/1abaf6507b/HyaonsFury.png"} +{"name":"Гиперборея","refName":"Hyperboreus","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmV0cmF5YWxfVW5pcXVlX1RyYW5zcG9ydF9CZWx0IiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/52b9b09a12/Betrayal_Unique_Transport_Belt.png"} +{"name":"Укус Хайрри","refName":"Hyrri's Bite","namespace":"UNIQUE","unique":{"base":"Sharktooth Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9Icnl5aXNCaXRlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/91937737c4/HryyisBite.png"} +{"name":"Ярость Хайрри","refName":"Hyrri's Ire","namespace":"UNIQUE","unique":{"base":"Zodiac Leather"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4M0NVbmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/fb532d6c21/BodyDex3CUnique.png"} +{"name":"Правда Хайрри","refName":"Hyrri's Truth","namespace":"UNIQUE","unique":{"base":"Jade Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9TeW50aGVzaXNBY2N1cmFjeUFtdWxldCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6062fd361e/SynthesisAccuracyAmulet.png"} +{"name":"Перстень ледяного клыка","refName":"Icefang Orbit","namespace":"UNIQUE","unique":{"base":"Iron Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvSWNlZmFuZ09yYml0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/da6e5eb5aa/IcefangOrbit.png"} +{"name":"Ледяной склеп","refName":"Icetomb","namespace":"UNIQUE","unique":{"base":"Latticed Ringmail"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9JY2V0b21iIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/956a92a3fd/Icetomb.png"} +{"name":"Ичимондзи","refName":"Ichimonji","namespace":"UNIQUE","unique":{"base":"Corsair Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0JsYWRlT2ZWYXN0cmkiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/a01d200e74/BladeOfVastri.png"} +{"name":"Обещание Икиао","refName":"Ikiaho's Promise","namespace":"UNIQUE","unique":{"base":"Coral Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Ja2lhaG9BbXVsZXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/119e919299/IkiahoAmulet.png"} +{"name":"Бессмертная плоть","refName":"Immortal Flesh","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSW1tb3J0YWxGbGVzaCIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/fceb1b8f8c/ImmortalFlesh.png"} +{"name":"Незыблемая сила","refName":"Immutable Force","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JlZEpld2VsMiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/87ba4f5e53/RedJewel2.png"} +{"name":"Фантастическое спасение","refName":"Impossible Escape","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL01pbmRib3JlUGVhcmwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/367683a1bb/MindborePearl.png"} +{"name":"Отсутствие","refName":"Impresence","namespace":"UNIQUE","unique":{"base":"Onyx Amulet","fixedStats":["Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy","Regenerate #% of Life per second","Regenerate #% of Energy Shield per second","#% increased Stun and Block Recovery","Adds # to # Cold Damage","Adds # to # Fire Damage","Adds # to # Lightning Damage","Adds # to # Physical Damage"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9FbGRlckZpcmUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MSwiZWxkZXIiOnRydWV9XQ/e46ce6b266/ElderFire.png"} +{"name":"Сияющее сердце","refName":"Incandescent Heart","namespace":"UNIQUE","unique":{"base":"Saintly Chainmail"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9JbGx1bWluYXRpcyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/da0dbbc10a/Illuminatis.png"} +{"name":"Индигон","refName":"Indigon","namespace":"UNIQUE","unique":{"base":"Hubris Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1ViZXJFbGRlckhlbG1ldCIsInciOjIsImgiOjIsInNjYWxlIjoxLCJzaGFwZXIiOnRydWV9XQ/3ba8eceecd/UberElderHelmet.png"} +{"name":"Инерция","refName":"Inertia","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0RFWHRvU1RSIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2fc9d85725/DEXtoSTR.png"} +{"name":"Запутанная судьба","refName":"Inextricable Fate","namespace":"UNIQUE","unique":{"base":"Fugitive Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9WaW5lZ3Jhc3BCb290c1VuaXF1ZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/4f56e4bdb0/VinegraspBootsUnique.png"} +{"name":"Проклятая мантия","refName":"Infernal Mantle","namespace":"UNIQUE","unique":{"base":"Widowsilk Robe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9JbmZlcm5hbG1hbnRsZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/ea1b86d7f9/Infernalmantle.png"} +{"name":"Инфрактам","refName":"Infractem","namespace":"UNIQUE","unique":{"base":"Decimation Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0luZnJhY3RlbSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/ea06e13fb8/Infractem.png"} +{"name":"Усиленный Плацдарм","refName":"Infused Beachhead","namespace":"UNIQUE","unique":{"base":"Harbinger Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9IYXJiaW5nZXJVYmVyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/91398360e4/HarbingerUber.png"} +{"name":"Клинок Иннсбери","refName":"Innsbury Edge","namespace":"UNIQUE","unique":{"base":"Elder Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0VsZGVyU3dvcmQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2bd26d4bf6/ElderSword.png"} +{"name":"Разбитое сердце Инпульсы","refName":"Inpulsa's Broken Heart","namespace":"UNIQUE","unique":{"base":"Sadist Garb"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9PblNob2NrZWQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/ce499f7b0b/OnShocked.png"} +{"name":"Перенятый опыт","refName":"Inspired Learning","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL3VuaXF1ZTciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/05e61f124f/unique7.png"} +{"name":"Озарение","refName":"Intuitive Leap","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL3VuaXF1ZTYiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f2dc5c37a5/unique6.png"} +{"name":"Инвиктус Солярис","refName":"Invictus Solaris","namespace":"UNIQUE","unique":{"base":"Archon Kite Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0ludmljdHVzIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/98194c56fe/Invictus.png"} +{"name":"Прозрение Иньи","refName":"Inya's Epiphany","namespace":"UNIQUE","unique":{"base":"Arcanist Slippers"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9QYWxlQ291bmNpbEJvb3RzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/78e277875f/PaleCouncilBoots.png"} +{"name":"Суровый командир","refName":"Iron Commander","namespace":"UNIQUE","unique":{"base":"Death Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0lyb25Db21tZW5kYW50IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/001ca245e3/IronCommendant.png"} +{"name":"Соблазн Ишчейла","refName":"Ixchel's Temptation","namespace":"UNIQUE","unique":{"base":"Gold Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQWx0QnJlYWNoIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b2c5201c70/AltBreach.png"} +{"name":"Топор Джек","refName":"Jack, the Axe","namespace":"UNIQUE","unique":{"base":"Vaal Hatchet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9KYWNrdGhlYXhlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f1f813fe9f/Jacktheaxe.png"} +{"name":"Челюсти агонии","refName":"Jaws of Agony","namespace":"UNIQUE","unique":{"base":"Supreme Spiked Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0JlYXJUcmFwU2hpZWxkMiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/4d66593647/BearTrapShield2.png"} +{"name":"Чёрная сталь Йоррхаста","refName":"Jorrhast's Blacksteel","namespace":"UNIQUE","unique":{"base":"Steelhead"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvSm9ycmhhc3RzQmxhY2tzdGVlbCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/a1ee3a6a3c/JorrhastsBlacksteel.png"} +{"name":"Убеждённость Кахутуруа","refName":"Kahuturoa's Certainty","namespace":"UNIQUE","unique":{"base":"Ancient Greaves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9LYWh1dHVyb2FCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/1453ec94bb/KahuturoaBoots.png"} +{"name":"Касание Каландры","refName":"Kalandra's Touch","namespace":"UNIQUE","unique":{"base":"Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTWlycm9yUmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxLCJkdXBsaWNhdGVkIjp0cnVlfV0/2cbd02eced/MirrorRing.png"} +{"name":"Благодать Калисы","refName":"Kalisa's Grace","namespace":"UNIQUE","unique":{"base":"Samite Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvS2FsaXNhc0dyYWNlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/b165e39eff/KalisasGrace.png"} +{"name":"Кальтенхалт","refName":"Kaltenhalt","namespace":"UNIQUE","unique":{"base":"Painted Buckler"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleFVuaXF1ZTYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/543c4a2444/ShieldDexUnique6.png"} +{"name":"Путы Каома","refName":"Kaom's Binding","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvS2FvbUJlbHQiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/94edbfb12d/KaomBelt.png"} +{"name":"Сердце Каома","refName":"Kaom's Heart","namespace":"UNIQUE","unique":{"base":"Glorious Plate"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyM0NVbmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/1027cdf1ad/BodyStr3CUnique.png"} +{"name":"Первенство Каома","refName":"Kaom's Primacy","namespace":"UNIQUE","unique":{"base":"Karui Chopper"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlMTFVbmlxdWUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/544409d7f6/TwoHandAxe11Unique.png"} +{"name":"Корни Каома","refName":"Kaom's Roots","namespace":"UNIQUE","unique":{"base":"Titan Greaves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9LYW9tc1Jvb3RzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/23b569d35e/KaomsRoots.png"} +{"name":"Знак Каома","refName":"Kaom's Sign","namespace":"UNIQUE","unique":{"base":"Coral Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzJVbmlxdWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/15ce180809/Ring2Unique.png"} +{"name":"Дух Каома","refName":"Kaom's Spirit","namespace":"UNIQUE","unique":{"base":"Titan Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvS2FvbXNTcGlyaXQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/eefa7c48f9/KaomsSpirit.png"} +{"name":"Оберег каруи","refName":"Karui Ward","namespace":"UNIQUE","unique":{"base":"Jade Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQ0VW5pcXVlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/069e4f76ea/Amulet4Unique.png"} +{"name":"Решимость Киары","refName":"Kiara's Determination","namespace":"UNIQUE","unique":{"base":"Silver Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvS2lhcmFzRGV0ZXJtaW5hdGlvbiIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/591dcd7979/KiarasDetermination.png"} +{"name":"Киказару","refName":"Kikazaru","namespace":"UNIQUE","unique":{"base":"Topaz Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvS2lrYXphcnUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/911affa06b/Kikazaru.png"} +{"name":"Бахвальство Килоавы","refName":"Kiloava's Bluster","namespace":"UNIQUE","unique":{"base":"Ironwood Buckler"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0tpbG9hdmFTaGllbGQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/b1ec2a922a/KiloavaShield.png"} +{"name":"Царетворец","refName":"Kingmaker","namespace":"UNIQUE","unique":{"base":"Despot Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9BbGV4YXhlYW5kaGVhcnRicmVha2VyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/fb47351eee/Alexaxeandheartbreaker.png"} +{"name":"Хранитель царей","refName":"Kingsguard","namespace":"UNIQUE","unique":{"base":"Conquest Chainmail"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9LaW5nc2d1YXJkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/28d6e7ff11/Kingsguard.png"} +{"name":"Кинцуги","refName":"Kintsugi","namespace":"UNIQUE","unique":{"base":"Exquisite Leather"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9LaW50c3VnaSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/8fcd7ea593/Kintsugi.png"} +{"name":"Пир Китавы","refName":"Kitava's Feast","namespace":"UNIQUE","unique":{"base":"Void Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9LaXRhdmFzSHVuZ2VyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/7e0b7ac41a/KitavasHunger.png"} +{"name":"Учение Китавы","refName":"Kitava's Teachings","namespace":"UNIQUE","unique":{"base":"Small Cluster Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0Rpc2NpcGxlT2ZLaXRhdmFKZXdlbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/43d818445c/DiscipleOfKitavaJewel.png"} +{"name":"Жажда Китавы","refName":"Kitava's Thirst","namespace":"UNIQUE","unique":{"base":"Zealot Helmet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0tpdGF2YXNUaGlyc3QiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/585034f884/KitavasThirst.png"} +{"name":"Гордыня Кондо","refName":"Kondo's Pride","namespace":"UNIQUE","unique":{"base":"Ezomyte Blade"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL0tvbmRvc1ByaWRlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/59f41a868c/KondosPride.png"} +{"name":"Стратегема Конмина","refName":"Kongming's Stratagem","namespace":"UNIQUE","unique":{"base":"Ancient Spirit Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0tvbmdtaW5nc1N0cmF0YWdlbSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/b7f1e57399/KongmingsStratagem.png"} +{"name":"Вечная ярость Конгора","refName":"Kongor's Undying Rage","namespace":"UNIQUE","unique":{"base":"Terror Maul"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvS29uZ29yc1VuZHlpbmdSYWdlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/5fa26110bc/KongorsUndyingRage.png"} +{"name":"Взгляд Кургала","refName":"Kurgal's Gaze","namespace":"UNIQUE","unique":{"base":"Hypnotic Eye Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0h5cG5vdGljRXllVW5pcXVlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f909ca8b69/HypnoticEyeUnique.png"} +{"name":"Клинок Лакишу","refName":"Lakishu's Blade","namespace":"UNIQUE","unique":{"base":"Elegant Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDVVbmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5a5771852b/OneHandSword5Unique.png"} +{"name":"Последнее средство","refName":"Last Resort","namespace":"UNIQUE","unique":{"base":"Nailed Fist"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9OZXJhc0xhc3RSZXNvcnQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5f5a6bd205/NerasLastResort.png"} +{"name":"Дух Лавианги","refName":"Lavianga's Spirit","namespace":"UNIQUE","unique":{"base":"Sanctified Mana Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvTGF2aWFuZ2FzT2lsIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/44f064d737/LaviangasOil.png"} +{"name":"Мудрость Лавианги","refName":"Lavianga's Wisdom","namespace":"UNIQUE","unique":{"base":"War Hammer"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2UzYSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/3c0044c7be/OneHandMace3a.png"} +{"name":"Закон дикой природы","refName":"Law of the Wilds","namespace":"UNIQUE","unique":{"base":"Hellion's Paw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9Xb2xmQ2xhdyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/8dd39cb98e/WolfClaw.png"} +{"name":"Ле Хоп Всеобщий","refName":"Le Heup of All","namespace":"UNIQUE","unique":{"base":"Iron Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTGVoZXVwb2ZhbGwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6ea73cc7e4/Leheupofall.png"} +{"name":"Цена лидерства","refName":"Leadership's Price","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9LdXJhaXNNYXN0ZXJ5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/bf33f8013a/KuraisMastery.png"} +{"name":"Поводок жертвоприношения","refName":"Leash of Oblation","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvTGVhc2hPZk9ibGF0aW9uIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/f865c7f643/LeashOfOblation.png"} +{"name":"Маска труппы хитрецов","refName":"Leer Cast","namespace":"UNIQUE","unique":{"base":"Festival Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDl4IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/6693f97fdf/HelmetDexInt9x.png"} +{"name":"Наследие ярости","refName":"Legacy of Fury","namespace":"UNIQUE","unique":{"base":"Wyrmscale Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TY29yY2hlZEVhcnRoIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/fda63f7588/ScorchedEarth.png"} +{"name":"Подаяние парии","refName":"Leper's Alms","namespace":"UNIQUE","unique":{"base":"Mirrored Spiked Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0xlcGVyc0FsbXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3f9c2a1cec/LepersAlms.png"} +{"name":"Смертельная гордость","refName":"Lethal Pride","namespace":"UNIQUE","unique":{"base":"Timeless Jewel","fixedStats":["Historic"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0thcnVpQ2l2aWxpemF0aW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/04aefd20e6/KaruiCivilization.png"} +{"name":"Живой побег","refName":"Lifesprig","namespace":"UNIQUE","unique":{"base":"Driftwood Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9MaWZlU3ByaWciLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/8e97a1d808/LifeSprig.png"} +{"name":"Свет Лунарис","refName":"Light of Lunaris","namespace":"UNIQUE","unique":{"base":"Jingling Spirit Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0x1bmFyaXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/a684af2793/Lunaris.png"} +{"name":"Ряса отступника","refName":"Lightbane Raiment","namespace":"UNIQUE","unique":{"base":"Ornate Ringmail"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9MaWdodGJhbmVyYWlubWVudCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/016757db31/Lightbanerainment.png"} +{"name":"Электрошок","refName":"Lightning Coil","namespace":"UNIQUE","unique":{"base":"Desert Brigandine"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9MaWdodG5pbmdDb2lsIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/1b36c39f5a/LightningCoil.png"} +{"name":"Ловец света","refName":"Lightpoacher","namespace":"UNIQUE","unique":{"base":"Great Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0FieXNzSGVsbWV0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/45c869b05c/AbyssHelmet.png"} +{"name":"Отсекатель","refName":"Limbsplit","namespace":"UNIQUE","unique":{"base":"Woodsplitter"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlX3NwYXJlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/6cc29798f1/TwoHandAxe_spare.png"} +{"name":"Львиный рёв","refName":"Lion's Roar","namespace":"UNIQUE","unique":{"base":"Granite Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MveUZsYXNrNSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/69fe070e32/yFlask5.png"} +{"name":"Падение Львиного глаза","refName":"Lioneye's Fall","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0xpb25leWVzRmFsbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/164c5c1080/LioneyesFall.png"} +{"name":"Взор Львиного глаза","refName":"Lioneye's Glare","namespace":"UNIQUE","unique":{"base":"Imperial Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0Jvdzh1bmlxdWUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/29fc966523/Bow8unique.png"} +{"name":"Лапы Львиного глаза","refName":"Lioneye's Paws","namespace":"UNIQUE","unique":{"base":"Bronzescale Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9MaW9uZXllc1Bhd3MiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/550a8f59d4/LioneyesPaws.png"} +{"name":"Раскаяние Львиного глаза","refName":"Lioneye's Remorse","namespace":"UNIQUE","unique":{"base":"Pinnacle Tower Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0clVuaXF1ZTYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/dd7ee8e1a0/ShieldStrUnique6.png"} +{"name":"Взгляд Львиного глаза","refName":"Lioneye's Vision","namespace":"UNIQUE","unique":{"base":"Crusader Plate"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9MaW9uZXllc0FybW91ciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/b6e10a9216/LioneyesArmour.png"} +{"name":"Ласка Локтона","refName":"Lochtonial Caress","namespace":"UNIQUE","unique":{"base":"Iron Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvTG9jaHRvbmlhbENhcmVzcyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/4609116291/LochtonialCaress.png"} +{"name":"Плетение преданий","refName":"Loreweave","namespace":"UNIQUE","unique":{"base":"Elegant Ringmail"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Mb3Jld2VhdmUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/fd11495220/Loreweave.png"} +{"name":"Светильник Лори","refName":"Lori's Lantern","namespace":"UNIQUE","unique":{"base":"Prismatic Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTG9yaXNMYW50ZXJuIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/7abe3ca54f/LorisLantern.png"} +{"name":"Паук-волк","refName":"Lycosidae","namespace":"UNIQUE","unique":{"base":"Rawhide Tower Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0x5Y29zaWRhZSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/ec38e32a56/Lycosidae.png"} +{"name":"Учение Мааты","refName":"Maata's Teaching","namespace":"UNIQUE","unique":{"base":"Karui Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9NYWF0YVNjZXB0cmUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/27dd9da5a6/MaataSceptre.png"} +{"name":"Руки машины","refName":"Machina Mitts","namespace":"UNIQUE","unique":{"base":"Murder Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvODU0NzkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/360a5df732/85479.png"} +{"name":"Вихрь хаоса","refName":"Maelström of Chaos","namespace":"UNIQUE","unique":{"base":"Atoll Map"},"map":{"screenshot":"https://i.imgur.com/Y7V6E2k.jpg"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9NYWVsc3Ryb21vZkNoYW9zIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/7772c4e971/MaelstromofChaos.png"} +{"name":"Волшебная кровь","refName":"Mageblood","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSW5qZWN0b3JCZWx0IiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/21ec0269de/InjectorBelt.png"} +{"name":"Магна Эклипсис","refName":"Magna Eclipsis","namespace":"UNIQUE","unique":{"base":"Pinnacle Tower Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL01hZ25pc0VjbGlwc2lzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/1e76b68e1a/MagnisEclipsis.png"} +{"name":"Махинации Махушотля","refName":"Mahuxotl's Machination","namespace":"UNIQUE","unique":{"base":"Steel Kite Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL01haHV4b3RsU2hpZWxkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/b39b6fe011/MahuxotlShield.png"} +{"name":"Уловка Малахая","refName":"Malachai's Artifice","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTWFsYWNoYWlzQXJ0aWZpY2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/dfbb52ebfe/MalachaisArtifice.png"} +{"name":"Виток Малахая","refName":"Malachai's Loop","namespace":"UNIQUE","unique":{"base":"Harmonic Spirit Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL01hbGFjaGFpTG9vcCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/8c38fb6a4e/MalachaiLoop.png"} +{"name":"Метка Малахая","refName":"Malachai's Mark","namespace":"UNIQUE","unique":{"base":"Murder Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvTWFsYWNoYWlzTWFyayIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/2f2a8c0dff/MalachaisMark.png"} +{"name":"Личина Малахая","refName":"Malachai's Simula","namespace":"UNIQUE","unique":{"base":"Iron Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01hbGFjaGFpc1NpbXVsYSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/8bf83455f4/MalachaisSimula.png"} +{"name":"Замысел Малахая","refName":"Malachai's Vision","namespace":"UNIQUE","unique":{"base":"Praetor Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01hbGFjaGFpc1Zpc2lvbiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/bbdd9c241f/MalachaisVision.png"} +{"name":"Жестокость Малигаро","refName":"Maligaro's Cruelty","namespace":"UNIQUE","unique":{"base":"Turquoise Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQxNSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f1b938bbd1/Amulet15.png"} +{"name":"Линза Малигаро","refName":"Maligaro's Lens","namespace":"UNIQUE","unique":{"base":"Compound Spiked Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL01hbGlnYXJvc0xlbnMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/514791cb42/MaligarosLens.png"} +{"name":"Сдержанность Малигаро","refName":"Maligaro's Restraint","namespace":"UNIQUE","unique":{"base":"Chain Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvTWFsaWdhcm9zUmVzdHJhaW50IiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/17a500cb6f/MaligarosRestraint.png"} +{"name":"Виртуозность Малигаро","refName":"Maligaro's Virtuosity","namespace":"UNIQUE","unique":{"base":"Deerskin Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvTWFsaWdhcm9zVmlydG91c2l0eSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7cdbba458f/MaligarosVirtousity.png"} +{"name":"Механизм Мэлоуни","refName":"Maloney's Mechanism","namespace":"UNIQUE","unique":{"base":"Ornate Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9UcmlnZ2VyUXVpdmVyQmFzZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/1f3958bdb3/TriggerQuiverBase.png"} +{"name":"Сумерки Мэлоуни","refName":"Maloney's Nightfall","namespace":"UNIQUE","unique":{"base":"Vile Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9NYWxvbmV5c05pZ2h0ZmFsbCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/aad4bc5b10/MaloneysNightfall.png"} +{"name":"Шторм маны","refName":"Manastorm","namespace":"UNIQUE","unique":{"base":"Lacewood Spirit Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL01hbmFzdG9ybSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/d816fe3053/Manastorm.png"} +{"name":"Мао Кун","refName":"Mao Kun","namespace":"UNIQUE","unique":{"base":"Shore Map"},"map":{"screenshot":"https://i.imgur.com/EceJCHQ.jpg"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9GYWlyZ3JhdmVzTWFwMDEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e1c1de7d51/FairgravesMap01.png"} +{"name":"Марш легиона","refName":"March of the Legion","namespace":"UNIQUE","unique":{"base":"Legion Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9BdXJhQm9vdHMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/736eee69a4/AuraBoots.png"} +{"name":"Метка покорности","refName":"Mark of Submission","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmVkQnJhbmRSaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8f15300177/RedBrandRing.png"} +{"name":"Метка Сомневающегося рыцаря","refName":"Mark of the Doubting Knight","namespace":"UNIQUE","unique":{"base":"Platinum Kris"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RvdWJ0aW5nS25pZ2h0IiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/a71d0de38e/DoubtingKnight.png"} +{"name":"Метка Древнего","refName":"Mark of the Elder","namespace":"UNIQUE","unique":{"base":"Steel Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVWJlckVsZGVyUmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxLCJlbGRlciI6dHJ1ZX1d/02f45acdfb/UberElderRing.png"} +{"name":"Метка Красного завета","refName":"Mark of the Red Covenant","namespace":"UNIQUE","unique":{"base":"Tribal Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1BoYW50YXNtbGFGbGFtZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0d222d092f/PhantasmlaFlame.png"} +{"name":"Метка Создателя","refName":"Mark of the Shaper","namespace":"UNIQUE","unique":{"base":"Opal Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVWJlclNoYXBlclJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MSwic2hhcGVyIjp0cnVlfV0/d856526767/UberShaperRing.png"} +{"name":"Марохи Эрки","refName":"Marohi Erqi","namespace":"UNIQUE","unique":{"base":"Karui Maul"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2UydW5pcXVlMiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/6ae0a56923/TwoHandMace2unique2.png"} +{"name":"Мученик Невинности","refName":"Martyr of Innocence","namespace":"UNIQUE","unique":{"base":"Highborn Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvTWFydHlySW5ub2NlbmNlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/6fd4eee9df/MartyrInnocence.png"} +{"name":"Заблуждение Марлены","refName":"Marylene's Fallacy","namespace":"UNIQUE","unique":{"base":"Lapis Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9NYXJ5bGVuZXNGYWxsYWN5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1665e40d51/MarylenesFallacy.png"} +{"name":"Маска Духопийцы","refName":"Mask of the Spirit Drinker","namespace":"UNIQUE","unique":{"base":"Magistrate Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01hc2tvZnRoZVNwaXJpdERyaW5rZXIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/7a9bcf5886/MaskoftheSpiritDrinker.png"} +{"name":"Маска Сшитого Демона","refName":"Mask of the Stitched Demon","namespace":"UNIQUE","unique":{"base":"Magistrate Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01hc2tvZnRoZVN0aXRjaGVkRGVtb24iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0e24c9f156/MaskoftheStitchedDemon.png"} +{"name":"Маска трибунала","refName":"Mask of the Tribunal","namespace":"UNIQUE","unique":{"base":"Magistrate Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldE9mRG9taW5hbmNlMiIsInciOjIsImgiOjIsInNjYWxlIjoxLCJzeW50aGVzaXNlZCI6dHJ1ZX1d/7cac104f3e/HelmetOfDominance2.png"} +{"name":"Матуа Тапуна","refName":"Matua Tupuna","namespace":"UNIQUE","unique":{"base":"Tarnished Spirit Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL01hdHVhdHVwdW5hIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/db1b66f81d/Matuatupuna.png"} +{"name":"Пасть завоевания","refName":"Maw of Conquest","namespace":"UNIQUE","unique":{"base":"Steel Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01hd09mQ29ucXVlc3QiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4d335be1c6/MawOfConquest.png"} +{"name":"Озорная пасть","refName":"Maw of Mischief","namespace":"UNIQUE","unique":{"base":"Bone Helmet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01hd09mTWlzY2hpZWYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/1e970a0f36/MawOfMischief.png"} +{"name":"Вызов Медведя","refName":"Medved's Challenge","namespace":"UNIQUE","unique":{"base":"Runic Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQWRhcHRhdGlvbkdsb3Zlc1VuaXF1ZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/865b871153/AdaptationGlovesUnique.png"} +{"name":"Мания величия","refName":"Megalomaniac","namespace":"UNIQUE","unique":{"base":"Medium Cluster Jewel","fixedStats":["Adds # Passive Skills","Added Small Passive Skills grant Nothing"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1VuaXF1ZUpld2VsQmFzZTIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/659b3e6b90/UniqueJewelBase2.png"} +{"name":"Ремень Мегинорда","refName":"Meginord's Girdle","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdDdVbmlxdWUiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/59718aca01/Belt7Unique.png"} +{"name":"Напутствие Мегинорда","refName":"Meginord's Vise","namespace":"UNIQUE","unique":{"base":"Steel Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyNSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/2aaf87839e/GlovesStr5.png"} +{"name":"Слияние плоти","refName":"Melding of the Flesh","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0VudGFuZ2xlZEVsZW1lbnRzSmV3ZWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/781ab651c4/EntangledElementsJewel.png"} +{"name":"Хранилище памяти","refName":"Memory Vault","namespace":"UNIQUE","unique":{"base":"Praetor Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0VsZGVyR3VhcmRpYW4iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/efcf4a9c86/ElderGuardian.png"} +{"name":"Удел наёмника","refName":"Mercenary's Lot","namespace":"UNIQUE","unique":{"base":"Slink Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3RyaWtlVHJ1ZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/4a73ba7bf5/StrikeTrue.png"} +{"name":"Полуночная сделка","refName":"Midnight Bargain","namespace":"UNIQUE","unique":{"base":"Engraved Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kVW5pcXVlMyIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/1db4fb5dbf/WandUnique3.png"} +{"name":"Сила кротких","refName":"Might of the Meek","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1BvdGVuY3lPZlRoZVVucmVtYXJrYWJsZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/10117c9173/PotencyOfTheUnremarkable.png"} +{"name":"Бурлящий гнев","refName":"Mightblood Ire","namespace":"UNIQUE","unique":{"base":"Ironwood Tincture"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL1VuaXF1ZUlyb253b29kIiwidyI6MSwiaCI6Miwic2NhbGUiOjF9XQ/204dc321f7/UniqueIronwood.png"} +{"name":"Свежеватель","refName":"Mightflay","namespace":"UNIQUE","unique":{"base":"Flaying Knife"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjJ1bmlxdWUiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/831b56800f/Dagger2unique.png"} +{"name":"Воинственная вера","refName":"Militant Faith","namespace":"UNIQUE","unique":{"base":"Timeless Jewel","fixedStats":["Historic"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RlbXBsYXJDaXZpbGl6YXRpb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/09ecf8ac86/TemplarCivilization.png"} +{"name":"Разум Совета","refName":"Mind of the Council","namespace":"UNIQUE","unique":{"base":"Harlequin Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RodW5kZXJpbmdXaGlzcGVycyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/dd96346bfc/ThunderingWhispers.png"} +{"name":"Виток разума","refName":"Mindspiral","namespace":"UNIQUE","unique":{"base":"Aventail Helmet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01pbmRzcGlyYWwiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e4b2c14ad7/Mindspiral.png"} +{"name":"Сердце Мина","refName":"Ming's Heart","namespace":"UNIQUE","unique":{"base":"Amethyst Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTWluZ3NIZWFydCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7395d98bba/MingsHeart.png"} +{"name":"Стена тумана","refName":"Mistwall","namespace":"UNIQUE","unique":{"base":"Lacquered Buckler"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL01pc3R3YWxsIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/d81f034c2d/Mistwall.png"} +{"name":"Мьёльнир","refName":"Mjölner","namespace":"UNIQUE","unique":{"base":"Gavel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvTWpvbG5lciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/3e6fc15b26/Mjolner.png"} +{"name":"Объятия Мокоу","refName":"Mokou's Embrace","namespace":"UNIQUE","unique":{"base":"Ruby Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTW9rb3VzRW1icmFjZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b3bd556d83/MokousEmbrace.png"} +{"name":"Хватка Мон'Трегула","refName":"Mon'tregul's Grasp","namespace":"UNIQUE","unique":{"base":"Void Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9Nb250cmVndWxzR3Jhc3AiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/c94034110b/MontregulsGrasp.png"} +{"name":"Крыло заклинателя луны","refName":"Moonbender's Wing","namespace":"UNIQUE","unique":{"base":"Tomahawk"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9Nb29uYmVuZGVyc1dpbmciLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/68a04ccc3f/MoonbendersWing.png"} +{"name":"Тоска луны","refName":"Moonsorrow","namespace":"UNIQUE","unique":{"base":"Imbued Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kVW5pcXVlMiIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/7a5458ab50/WandUnique2.png"} +{"name":"Укус смерти","refName":"Mortem Morsu","namespace":"UNIQUE","unique":{"base":"Fright Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3OHVuaXF1ZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7294efb794/Claw8unique.png"} +{"name":"Материнские объятия","refName":"Mother's Embrace","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvTW90aGVyc0VtYnJhY2UiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/e576fccc3e/MothersEmbrace.png"} +{"name":"Вымпел Немого ветра","refName":"Mutewind Pennant","namespace":"UNIQUE","unique":{"base":"Enameled Buckler"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL011dGV3aW5kUGVubmFudCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/a3efaf0921/MutewindPennant.png"} +{"name":"Печать Немого ветра","refName":"Mutewind Seal","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTXV0ZXdpbmQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3c7eee1d2b/Mutewind.png"} +{"name":"Тихоходы Немого ветра","refName":"Mutewind Whispersteps","namespace":"UNIQUE","unique":{"base":"Serpentscale Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9UYXJnZW10YWJpIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/fb8815a6bd/Targemtabi.png"} +{"name":"Низший режим","refName":"Nadir Mode","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0ludGVuc2l0eUpld2VsMiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/dd6952365a/IntensityJewel2.png"} +{"name":"Собиратель имён","refName":"Nametaker","namespace":"UNIQUE","unique":{"base":"Graceful Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0FmZmxpY3Rpb25Td29yZCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/7b5d4f7c22/AfflictionSword.png"} +{"name":"Природное родство","refName":"Natural Affinity","namespace":"UNIQUE","unique":{"base":"Small Cluster Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL05hdHVyZXNQYXRpZW5jZUpld2VsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1f4e80dd70/NaturesPatienceJewel.png"} +{"name":"Естественная иерархия","refName":"Natural Hierarchy","namespace":"UNIQUE","unique":{"base":"Rotfeather Talisman"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWxpc21hblVuaXF1ZTIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3783a100bf/TalismanUnique2.png"} +{"name":"Небулис","refName":"Nebulis","namespace":"UNIQUE","unique":{"base":"Void Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9TY2VwdHJlT2ZNZW1vcmllcyIsInciOjIsImgiOjMsInNjYWxlIjoxLCJzeW50aGVzaXNlZCI6dHJ1ZX1d/42c37f31d6/SceptreOfMemories.png"} +{"name":"Туманность","refName":"Nebuloch","namespace":"UNIQUE","unique":{"base":"Nightmare Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvRWxkZXJNYWNlIiwidyI6MiwiaCI6Mywic2NhbGUiOjEsImVsZGVyIjp0cnVlfV0/84e6532c8a/ElderMace.png"} +{"name":"Наследство Невалиев","refName":"Nevalius Inheritance","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvTmV2YWxpdXNCZWx0IiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/db57602cd1/NevaliusBelt.png"} +{"name":"Пламя Нгамаху","refName":"Ngamahu's Flame","namespace":"UNIQUE","unique":{"base":"Abyssal Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvUmlyaVRlTmdhbWFodSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/55c2a170af/RiriTeNgamahu.png"} +{"name":"Знак Нгамаху","refName":"Ngamahu's Sign","namespace":"UNIQUE","unique":{"base":"Ruby Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTmdhbWFodXNTaWduIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4323574c5a/NgamahusSign.png"} +{"name":"Логово ночи","refName":"Night's Hold","namespace":"UNIQUE","unique":{"base":"Black Maw Talisman"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Tb2NrZXRlZFRhbGlzbWFuIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/89ef47ed1c/SocketedTalisman.png"} +{"name":"Хватка ночи","refName":"Nightgrip","namespace":"UNIQUE","unique":{"base":"Runic Gages"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3Bpcml0R2xvdmVzVW5pcXVlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/c40058de12/SpiritGlovesUnique.png"} +{"name":"Нимис","refName":"Nimis","namespace":"UNIQUE","unique":{"base":"Topaz Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVWJlckVhdGVyb2ZXb3JsZHMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6dbfb1baea/UberEaterofWorlds.png"} +{"name":"Ураган Номика","refName":"Nomic's Storm","namespace":"UNIQUE","unique":{"base":"Strapped Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Ob21pY3NTdG9ybSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/33fedc8e3d/NomicsStorm.png"} +{"name":"Ничто и Пустота","refName":"Null and Void","namespace":"UNIQUE","unique":{"base":"Legion Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvTnVsbEFuZFZvaWQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4f851f97fc/NullAndVoid.png"} +{"name":"Порыв Налла","refName":"Null's Inclination","namespace":"UNIQUE","unique":{"base":"Ranger Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL051bGxCb3ciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/067d0e5884/NullBow.png"} +{"name":"Арфа Нуро","refName":"Nuro's Harp","namespace":"UNIQUE","unique":{"base":"Harbinger Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL051cm9zUHVyaWZ5aW5nSGFycCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/36ac89806c/NurosPurifyingHarp.png"} +{"name":"Фонарь Нюкты","refName":"Nycta's Lantern","namespace":"UNIQUE","unique":{"base":"Crystal Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9MeWNobnVzbHlhZWkiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/c69b77ef8a/Lychnuslyaei.png"} +{"name":"Проклятый клад Обы","refName":"Oba's Cursed Trove","namespace":"UNIQUE","unique":{"base":"Underground Sea Map"},"map":{"screenshot":"https://i.imgur.com/pqbFnju.jpg"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9vYmEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c94e09c1a8/oba.png"} +{"name":"Изничтожение","refName":"Obliteration","namespace":"UNIQUE","unique":{"base":"Imbued Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9NYWxlZGljdCIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/2ddc131782/Maledict.png"} +{"name":"Мракобес","refName":"Obscurantis","namespace":"UNIQUE","unique":{"base":"Lion Pelt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL09ic2N1cmFudGlzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/95ebfbbef1/Obscurantis.png"} +{"name":"Подношение Змею","refName":"Offering to the Serpent","namespace":"UNIQUE","unique":{"base":"Legion Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR3JpcE9mVGhlQ29icmEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MSwic3ludGhlc2lzZWQiOnRydWV9XQ/f77051c363/GripOfTheCobra.png"} +{"name":"Восторг Олесии","refName":"Olesya's Delight","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQWx0Q2hhcmdlRGV4IiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/caa418edee/AltChargeDex.png"} +{"name":"Святилище Ольмека","refName":"Olmec's Sanctum","namespace":"UNIQUE","unique":{"base":"Bone Crypt Map"},"map":{"screenshot":"https://i.imgur.com/UnrLWC4.jpg"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9vbG1lYyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/844fea2e54/olmec.png"} +{"name":"Натиск Олрота","refName":"Olroth's Charge","namespace":"UNIQUE","unique":{"base":"Runic Sollerets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9BZGFwdGF0aW9uQm9vdHNVbmlxdWUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/a0b7d6e35c/AdaptationBootsUnique.png"} +{"name":"Решительность Олрота","refName":"Olroth's Resolve","namespace":"UNIQUE","unique":{"base":"Iron Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvV2FyZEZsYXNrMDIiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/b6f390075a/WardFlask02.png"} +{"name":"Омейокан","refName":"Omeyocan","namespace":"UNIQUE","unique":{"base":"Carnal Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9PbWV5b2NhbiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f72f6a000d/Omeyocan.png"} +{"name":"Объятия Ондара","refName":"Ondar's Clasp","namespace":"UNIQUE","unique":{"base":"Wrapped Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvT25kYXJzQ2xhc3AiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/029ff8ad2d/OndarsClasp.png"} +{"name":"Без ничего","refName":"One With Nothing","namespace":"UNIQUE","unique":{"base":"Small Cluster Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0RyYWdvblN0eWxlSmV3ZWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/fa9a94b12e/DragonStyleJewel.png"} +{"name":"Они-Гороси","refName":"Oni-Goroshi","namespace":"UNIQUE","unique":{"base":"Charan's Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1RoZUdvZGRlc3NVbmxlYXNoZWQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/37ecd7541b/TheGoddessUnleashed.png"} +{"name":"Поединок Орбалы","refName":"Orbala's Stand","namespace":"UNIQUE","unique":{"base":"Eelskin Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SdWdnZWRTdGVwQm9vdHMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/d3af99e8fe/RuggedStepBoots.png"} +{"name":"Исход Ориата","refName":"Oriath's End","namespace":"UNIQUE","unique":{"base":"Bismuth Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvVWJlclNpcnVzRmxhc2siLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/8758d70627/UberSirusFlask.png"} +{"name":"Первородный грех","refName":"Original Sin","namespace":"UNIQUE","unique":{"base":"Amethyst Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU2FuY3R1bVNwZWNpYWxVbmlxdWVSaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/e0ff1c1c6b/SanctumSpecialUniqueRing.png"} +{"name":"Восточный орнамент","refName":"Ornament of the East","namespace":"UNIQUE","unique":{"base":"Gut Ripper"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9Pcm5hbWVudE9mVGhlRWFzdCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/5bea7643a2/OrnamentOfTheEast.png"} +{"name":"Жертва Оро","refName":"Oro's Sacrifice","namespace":"UNIQUE","unique":{"base":"Infernal Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL09yb3NTYWNyaWZpY2UiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/82b813f27d/OrosSacrifice.png"} +{"name":"Оскарм","refName":"Oskarm","namespace":"UNIQUE","unique":{"base":"Nubuck Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvWmVub0dsb3ZlcyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/a0056936c7/ZenoGloves.png"} +{"name":"Миролюбие","refName":"Pacifism","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dyZWVuQ29ycnVwdDYiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1b1c1912b2/GreenCorrupt6.png"} +{"name":"Искатель боли","refName":"Painseeker","namespace":"UNIQUE","unique":{"base":"Shagreen Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR3JpcE9mVW5tYWtpbmciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/9a6348dc81/GripOfUnmaking.png"} +{"name":"Парадоксика","refName":"Paradoxica","namespace":"UNIQUE","unique":{"base":"Vaal Rapier"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL0Fzc2Fzc2luYXRpb25VbmlxdWUyIiwidyI6MSwiaCI6NCwic2NhbGUiOjF9XQ/b84147fcbd/AssassinationUnique2.png"} +{"name":"Герб рода Перандус","refName":"Perandus Blazon","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQnVja2xlZEJlbHRVbmlxdWUyIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/b67e6fa4a9/BuckledBeltUnique2.png"} +{"name":"Печатка Перандусов","refName":"Perandus Signet","namespace":"UNIQUE","unique":{"base":"Paua Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTGFkeVJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d696be5b25/LadyRing.png"} +{"name":"Перипетия","refName":"Perepiteia","namespace":"UNIQUE","unique":{"base":"Ezomyte Spiked Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0xpZ2h0bmluZ1NoaWVsZCIsInciOjIsImgiOjIsInNjYWxlIjoxLCJzeW50aGVzaXNlZCI6dHJ1ZX1d/05aa542efd/LightningShield.png"} +{"name":"Вероломство","refName":"Perfidy","namespace":"UNIQUE","unique":{"base":"Glorious Plate","fixedStats":["#% increased Melee Damage","+# to maximum Life","You can have two different Banners at the same time","Banners you are carrying gain 1 Stage on Melee Hit, up to 5 per second"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UYW5nbWF6dWFybW91cmJvZHlhcm1vdXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2170370e8f/Tangmazuarmourbodyarmour.png"} +{"name":"Палец Перквила","refName":"Perquil's Toe","namespace":"UNIQUE","unique":{"base":"Gold Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9QZXJxdWlsc1RvZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7509c4517f/PerquilsToe.png"} +{"name":"Упорство","refName":"Perseverance","namespace":"UNIQUE","unique":{"base":"Vanguard Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvUGVyc2VydmVyYW5jZSIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/1ff634248a/Perserverance.png"} +{"name":"Опора пленённого бога","refName":"Pillar of the Caged God","namespace":"UNIQUE","unique":{"base":"Iron Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvUGlsbGFyb2Z0aGVDYWdlZEdvZCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/0451281624/PillaroftheCagedGod.png"} +{"name":"Столпы Арун","refName":"Pillars of Arun","namespace":"UNIQUE","unique":{"base":"Dunes Map"},"map":{"screenshot":"https://i.imgur.com/yitkSnN.jpg"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9QaWxsYXJzT2ZWYXN0aXJpIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f030aac473/PillarsOfVastiri.png"} +{"name":"Бдение рыбака","refName":"Piscator's Vigil","namespace":"UNIQUE","unique":{"base":"Imbued Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9QaXNjYXRvcnNWaWdpbCIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/332f80f7ac/PiscatorsVigil.png"} +{"name":"Рука помощи","refName":"Pledge of Hands","namespace":"UNIQUE","unique":{"base":"Judgement Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvUGxlZGdlb2ZIYW5kcyIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/1da7239060/PledgeofHands.png"} +{"name":"Завеса погони","refName":"Plume of Pursuit","namespace":"UNIQUE","unique":{"base":"Bone Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1JhdmVuc0Nyb3duIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/dc40362912/RavensCrown.png"} +{"name":"Полюс опустошения","refName":"Polaric Devastation","namespace":"UNIQUE","unique":{"base":"Opal Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQXNoQW5kRnJvc3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/70630a6e17/AshAndFrost.png"} +{"name":"Богадельня Паршута","refName":"Poorjoy's Asylum","namespace":"UNIQUE","unique":{"base":"Temple Map"},"map":{"screenshot":"https://i.imgur.com/ZPJdcfs.jpg"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9Qb29yam95c0FzeWx1bSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d7e9aba922/PoorjoysAsylum.png"} +{"name":"Бессилие","refName":"Powerlessness","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0JsdWVDb3JydXB0NiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/281293a0c5/BlueCorrupt6.png"} +{"name":"Прагматизм","refName":"Pragmatism","namespace":"UNIQUE","unique":{"base":"Colosseum Plate"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9HcmVlbmV5ZXNBcm1vdXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/bef792208d/GreeneyesArmour.png"} +{"name":"Праксис","refName":"Praxis","namespace":"UNIQUE","unique":{"base":"Paua Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUHJheGlzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5098474fb7/Praxis.png"} +{"name":"Знак предтечи","refName":"Precursor's Emblem","namespace":"UNIQUE","unique":{"base":"Sapphire Ring","fixedStats":["#% increased maximum Energy Shield","#% increased maximum Life"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQ29tYmluZWRHcmVlblJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/76c5b311f3/CombinedGreenRing.png"} +{"name":"Знак предтечи","refName":"Precursor's Emblem","namespace":"UNIQUE","unique":{"base":"Topaz Ring","fixedStats":["#% increased maximum Energy Shield","#% increased maximum Life"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQ29tYmluZWRCbHVlUmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8d07d0d3bb/CombinedBlueRing.png"} +{"name":"Знак предтечи","refName":"Precursor's Emblem","namespace":"UNIQUE","unique":{"base":"Ruby Ring","fixedStats":["#% increased maximum Energy Shield","#% increased maximum Life"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQ29tYmluZWRSZWRSaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ca98bb7e51/CombinedRedRing.png"} +{"name":"Знак предтечи","refName":"Precursor's Emblem","namespace":"UNIQUE","unique":{"base":"Two-Stone Ring","fixedStats":["#% increased maximum Energy Shield","#% increased maximum Life"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQ29tYmluZWRSZWRCbHVlUmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6f6c0766b4/CombinedRedBlueRing.png"} +{"name":"Знак предтечи","refName":"Precursor's Emblem","namespace":"UNIQUE","unique":{"base":"Prismatic Ring","fixedStats":["#% increased maximum Energy Shield","#% increased maximum Life"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQ29tYmluZWRQcmlzbWF0aWNSaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5dd23ff6ad/CombinedPrismaticRing.png"} +{"name":"Присутствие Чаюлы","refName":"Presence of Chayula","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9QcmVzZW5jZU9mQ2hheXVsYSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6460da7c94/PresenceOfChayula.png"} +{"name":"Первородное господство","refName":"Primordial Eminence","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dvbGVtQXJjdGljIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8461900064/GolemArctic.png"} +{"name":"Первородная гармония","refName":"Primordial Harmony","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dvbGVtVGVtcGVzdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/aac7579ae7/GolemTempest.png"} +{"name":"Первородная мощь","refName":"Primordial Might","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dvbGVtSW5mZXJuYWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a50b1917f5/GolemInfernal.png"} +{"name":"Призматический страж","refName":"Prism Guardian","namespace":"UNIQUE","unique":{"base":"Archon Kite Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1RoZUNvcnVuZHVtIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f9ca50a663/TheCorundum.png"} +{"name":"Многоцветное затмение","refName":"Prismatic Eclipse","namespace":"UNIQUE","unique":{"base":"Twilight Blade"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1ByaXNtYXRpY0VjbGlwc2UiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/d6243ca476/PrismaticEclipse.png"} +{"name":"Сплетение цвета","refName":"Prismweave","namespace":"UNIQUE","unique":{"base":"Rustic Sash"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvUHJpc213ZWF2ZSIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/822582fe24/Prismweave.png"} +{"name":"Осквернённое доверие","refName":"Profane Proxy","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU2tpdHRlcmJvdFJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/20b7d215dd/SkitterbotRing.png"} +{"name":"Прогенез","refName":"Progenesis","namespace":"UNIQUE","unique":{"base":"Amethyst Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvVWJlck1hdmVuRmxhc2siLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/b82c247a54/UberMavenFlask.png"} +{"name":"Чистый талант","refName":"Pure Talent","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1B1cmVUYWxlbnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/64b53e536e/PureTalent.png"} +{"name":"Луг Путембо","refName":"Putembo's Meadow","namespace":"UNIQUE","unique":{"base":"Topaz Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmx1ZUNvbXBvbmVudDIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e8d0f426fe/BlueComponent2.png"} +{"name":"Гора Путембо","refName":"Putembo's Mountain","namespace":"UNIQUE","unique":{"base":"Topaz Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmx1ZUNvbXBvbmVudCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/086886e893/BlueComponent.png"} +{"name":"Долина Путембо","refName":"Putembo's Valley","namespace":"UNIQUE","unique":{"base":"Topaz Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmx1ZUNvbXBvbmVudDMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cd1b931996/BlueComponent3.png"} +{"name":"Погребальный костёр","refName":"Pyre","namespace":"UNIQUE","unique":{"base":"Sapphire Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQ2hlcnVmZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/08c38718a4/Cherufe.png"} +{"name":"Пряжка огненного шока","refName":"Pyroshock Clasp","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvUHlyb3Nob2NrQ2xhc3AiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/42b1bcc3c8/PyroshockClasp.png"} +{"name":"Регулятор Куотры","refName":"Qotra's Regulator","namespace":"UNIQUE","unique":{"base":"Sovereign Spiked Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0Fnb255T2ZEZWNheSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/025ae438c5/AgonyOfDecay.png"} +{"name":"Кечолли","refName":"Quecholli","namespace":"UNIQUE","unique":{"base":"Jagged Maul"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U1VW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/9361b8eb61/TwoHandMace5Unique.png"} +{"name":"Царица леса","refName":"Queen of the Forest","namespace":"UNIQUE","unique":{"base":"Destiny Leather"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9RdWVlbm9mdGhlRm9yZXN0IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/bd3ec993e7/QueenoftheForest.png"} +{"name":"Царский указ","refName":"Queen's Decree","namespace":"UNIQUE","unique":{"base":"Ornate Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZFVuaXF1ZTMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/a79e04039c/TwoHandSwordUnique3.png"} +{"name":"Оживляющее обязательство","refName":"Quickening Covenant","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL3VuaXF1ZTEwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/46d92a634d/unique10.png"} +{"name":"Ливень перьев","refName":"Quill Rain","namespace":"UNIQUE","unique":{"base":"Short Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzJ1bmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5c5cad82e8/Bow2unique.png"} +{"name":"Град обломков","refName":"Rain of Splinters","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JlZEthcnVpIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/283aad3d25/RedKarui.png"} +{"name":"Радужная поступь","refName":"Rainbowstride","namespace":"UNIQUE","unique":{"base":"Conjurer Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9yYWluYm93c3RyaWRlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/bf663baf47/rainbowstride.png"} +{"name":"Танец Ракиаты","refName":"Rakiata's Dance","namespace":"UNIQUE","unique":{"base":"Engraved Greatsword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1Jha2lhdGFTd29yZCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/ec593eeaa8/RakiataSword.png"} +{"name":"Нетерпение Ралакеша","refName":"Ralakesh's Impatience","namespace":"UNIQUE","unique":{"base":"Riveted Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SYWxha2VzaHNJbXBhdGllbmNlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/54540f0f3d/RalakeshsImpatience.png"} +{"name":"Терпение Рашкальдора","refName":"Rashkaldor's Patience","namespace":"UNIQUE","unique":{"base":"Jade Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9SYXNoa2FsZG9yc1BhdGllbmNlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/336e3419f4/RashkaldorsPatience.png"} +{"name":"Крысиное гнездо","refName":"Rat's Nest","namespace":"UNIQUE","unique":{"base":"Ursine Pelt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1JhdHNOZXN0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/857976167e/RatsNest.png"} +{"name":"Сфера мёртвых","refName":"Rathpith Globe","namespace":"UNIQUE","unique":{"base":"Titanium Spirit Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZEludDZ1bmlxdWUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5f2434a635/ShieldInt6unique.png"} +{"name":"Рациональная доктрина","refName":"Rational Doctrine","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1ViZXJDb3J0ZXhKZXdlbCIsInciOjEsImgiOjEsInNjYWxlIjoxLCJzeW50aGVzaXNlZCI6dHJ1ZX1d/75a97b9ff9/UberCortexJewel.png"} +{"name":"Ненасытная страсть","refName":"Ravenous Passion","namespace":"UNIQUE","unique":{"base":"Zealot Helmet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1ViZXJFYXRlcm9mV29ybGRzSGVsbWV0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/2215119a51/UberEaterofWorldsHelmet.png"} +{"name":"Лезвие Седьмого солнца","refName":"Razor of the Seventh Sun","namespace":"UNIQUE","unique":{"base":"Midnight Blade"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1Jhem9yT2ZUaGVTZXZlbnRoU3VuIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/ef21dd7f97/RazorOfTheSeventhSun.png"} +{"name":"Охват Совета","refName":"Reach of the Council","namespace":"UNIQUE","unique":{"base":"Spine Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0Jvd09mVGhlQ291bmNpbCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/55dc65893e/BowOfTheCouncil.png"} +{"name":"Исказитель бытия","refName":"Realmshaper","namespace":"UNIQUE","unique":{"base":"Iron Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY1dW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/33929e1979/Staff5unique.png"} +{"name":"Погоня жнеца","refName":"Reaper's Pursuit","namespace":"UNIQUE","unique":{"base":"Shadow Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlVW5pcXVlMSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/d39a181d8d/TwoHandAxeUnique1.png"} +{"name":"Закрытая спина","refName":"Rearguard","namespace":"UNIQUE","unique":{"base":"Blunt Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9SZWFyZ3VhcmQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9b285161a6/Rearguard.png"} +{"name":"Отпор ваал","refName":"Rebuke of the Vaal","namespace":"UNIQUE","unique":{"base":"Vaal Blade"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDdVbmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/90312b1e4a/OneHandSword7Unique.png"} +{"name":"Дерзкая защита","refName":"Reckless Defence","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JlY2tsZXNzRGVmZW5zZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/923e6cb6b5/RecklessDefense.png"} +{"name":"Красный клюв","refName":"Redbeak","namespace":"UNIQUE","unique":{"base":"Rusted Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDFVbmlxdWUiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/a3010a69f5/OneHandSword1Unique.png"} +{"name":"Перстень Красных сабель","refName":"Redblade Band","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmVkYmxhZGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cf85c48dff/Redblade.png"} +{"name":"Знамя Красных сабель","refName":"Redblade Banner","namespace":"UNIQUE","unique":{"base":"Painted Tower Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1JlZGJsYWRlQmFubmVyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/33221fb3e1/RedbladeBanner.png"} +{"name":"Топтуны Красных сабель","refName":"Redblade Tramplers","namespace":"UNIQUE","unique":{"base":"Ancient Greaves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9SdW1ibGVzdGVwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/7ebd8e4a3e/Rumblestep.png"} +{"name":"Неумолимый гнев","refName":"Relentless Fury","namespace":"UNIQUE","unique":{"base":"Decorative Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9SZWxlbnRsZXNzRnVyeSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/8013c33f55/RelentlessFury.png"} +{"name":"Реликвия соглашения","refName":"Relic of the Pact","namespace":"UNIQUE","unique":{"base":"Sage Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9JcG9jaG90bFdhbmQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MSwicmVsaWMiOjN9XQ/42065b29d1/IpochotlWand.png"} +{"name":"Покаяние","refName":"Repentance","namespace":"UNIQUE","unique":{"base":"Crusader Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUmVwZW50YW5jZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/20af664d44/Repentance.png"} +{"name":"Копия Бездны","refName":"Replica Abyssus","namespace":"UNIQUE","unique":{"base":"Ezomyte Burgonet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0FieXNzdXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/a12f5424c8/Abyssus.png"} +{"name":"Копия Ходячей крепости","refName":"Replica Advancing Fortress","namespace":"UNIQUE","unique":{"base":"Gut Ripper"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3c2hpZWxkMyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/a04190ca2b/Clawshield3.png"} +{"name":"Копия Тропы войны Алберона","refName":"Replica Alberon's Warpath","namespace":"UNIQUE","unique":{"base":"Soldier Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9BbGJlcm9uc3dhcnBhdGgiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/be7b089ef3/Alberonswarpath.png"} +{"name":"Копия Аллелопатии","refName":"Replica Allelopathy","namespace":"UNIQUE","unique":{"base":"Satin Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRW1iYWxtZXJzR2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/62148488f8/EmbalmersGloves.png"} +{"name":"Копия Соблазна","refName":"Replica Allure","namespace":"UNIQUE","unique":{"base":"Vaal Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9BbGx1cmUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/ff5311676c/Allure.png"} +{"name":"Копия Воя Альфы","refName":"Replica Alpha's Howl","namespace":"UNIQUE","unique":{"base":"Sinner Tricorne"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1dvbGZoZWFkIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/2acc10e593/Wolfhead.png"} +{"name":"Копия Ража Амбу","refName":"Replica Ambu's Charge","namespace":"UNIQUE","unique":{"base":"Crusader Chainmail"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9TdHJJbnQzQVVuaXF1ZTIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9928614b24/StrInt3AUnique2.png"} +{"name":"Копия Проницательности Атзири","refName":"Replica Atziri's Acuity","namespace":"UNIQUE","unique":{"base":"Vaal Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQXR6aXJpc0FjdWl0eSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/2c0f04ae47/AtzirisAcuity.png"} +{"name":"Копия Причуды Атзири","refName":"Replica Atziri's Foible","namespace":"UNIQUE","unique":{"base":"Paua Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9RdWlkIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/00c2b3a588/Quid.png"} +{"name":"Копия Знака Братства","refName":"Replica Badge of the Brotherhood","namespace":"UNIQUE","unique":{"base":"Turquoise Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Bc3Nhc3NpblVuaXF1ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/3616219d7d/AssassinUnique.png"} +{"name":"Копия Затаённого дыхания","refName":"Replica Bated Breath","namespace":"UNIQUE","unique":{"base":"Chain Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmF0ZWRCcmVhdGgiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/0a8cc4529f/BatedBreath.png"} +{"name":"Копия Горькой мечты","refName":"Replica Bitterdream","namespace":"UNIQUE","unique":{"base":"Shadow Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyOHVuaXF1ZTIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/085f7726de/scepter8unique2.png"} +{"name":"Копия Кровавого шипа","refName":"Replica Blood Thorn","namespace":"UNIQUE","unique":{"base":"Gnarled Branch"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvVGhlQmxvb2RUaG9ybiIsInciOjEsImgiOjQsInNjYWxlIjoxfV0/3dac5ee34b/TheBloodThorn.png"} +{"name":"Копия Игры крови","refName":"Replica Bloodplay","namespace":"UNIQUE","unique":{"base":"Stiletto"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0Jsb29kUGxheSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/3c8258f393/BloodPlay.png"} +{"name":"Копия Костей Уллра","refName":"Replica Bones of Ullr","namespace":"UNIQUE","unique":{"base":"Silk Slippers"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9ib290dW5pcXVlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/1dfabe3358/bootunique.png"} +{"name":"Копия Острия холодного железа","refName":"Replica Cold Iron Point","namespace":"UNIQUE","unique":{"base":"Ezomyte Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0NvbGRJcm9uUG9pbnQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/1a4002957b/ColdIronPoint.png"} +{"name":"Копия Коры","refName":"Replica Cortex","namespace":"UNIQUE","unique":{"base":"Synthesised Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TeW50aGVzaXNCb3NzR3VhcmRpYW5NYXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/542f2635c7/SynthesisBossGuardianMap.png"} +{"name":"Копия Договора","refName":"Replica Covenant","namespace":"UNIQUE","unique":{"base":"Spidersilk Robe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9FbWJyYWNlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/d0110e7660/Embrace.png"} +{"name":"Копия Проклятия Доэдре","refName":"Replica Doedre's Damning","namespace":"UNIQUE","unique":{"base":"Paua Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzNVbmlxdWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d06b386d73/Ring3Unique.png"} +{"name":"Копия Полёта Драконьего клыка","refName":"Replica Dragonfang's Flight","namespace":"UNIQUE","unique":{"base":"Onyx Amulet","fixedStats":["+#% to all Elemental Resistances","#% increased Reservation Efficiency of Skills","Items and Gems have #% increased Attribute Requirements"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9NYWxhY2hhaSdzIEJyaWxsaWFuY2VBbXVsZXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a1548914e0/Malachai%27s%20BrillianceAmulet.png"} +{"name":"Копия Пера грёз","refName":"Replica Dreamfeather","namespace":"UNIQUE","unique":{"base":"Eternal Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0RyZWFtZmVhdGhlciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/89a3a7588c/Dreamfeather.png"} +{"name":"Копия Сумеречного рассвета","refName":"Replica Duskdawn","namespace":"UNIQUE","unique":{"base":"Maelström Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU29sYXJpc0x1bmFyaXNTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/e5e9df18a4/SolarisLunarisStaff.png"} +{"name":"Копия Объятий Эарендила","refName":"Replica Earendel's Embrace","namespace":"UNIQUE","unique":{"base":"Grinning Fetish"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9FYXJlbmRlbHNFbWJyYWNlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/7fbecdb2b3/EarendelsEmbrace.png"} +{"name":"Копия Огненного следа","refName":"Replica Emberwake","namespace":"UNIQUE","unique":{"base":"Ruby Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzEwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/55c8711fd7/Ring10.png"} +{"name":"Копия Покрова вечности","refName":"Replica Eternity Shroud","namespace":"UNIQUE","unique":{"base":"Blood Raiment"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9NYW50bGVPZkRpc21hbnRsaW5nIiwidyI6MiwiaCI6Mywic2NhbGUiOjEsImVsZGVyIjp0cnVlfV0/7c6af4d6f5/MantleOfDismantling.png"} +{"name":"Копия Меха Фаррул","refName":"Replica Farrul's Fur","namespace":"UNIQUE","unique":{"base":"Triumphant Lamellar"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaWdlckJvZHlBcm1vdXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/1cfa248b9b/TigerBodyArmour.png"} +{"name":"Копия Болотной коряги","refName":"Replica Fencoil","namespace":"UNIQUE","unique":{"base":"Gnarled Branch"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmYxdW5pcXVlIiwidyI6MSwiaCI6NCwic2NhbGUiOjF9XQ/cff9022931/Staff1unique.png"} +{"name":"Копия Немощи","refName":"Replica Fragility","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JlZENvcnJ1cHQ2IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/161d0c411c/RedCorrupt6.png"} +{"name":"Копия Ледяного дыхания","refName":"Replica Frostbreath","namespace":"UNIQUE","unique":{"base":"Ornate Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvRnJvc3RCcmVhdGgiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8a6b305388/FrostBreath.png"} +{"name":"Копия Хватки Совета","refName":"Replica Grip of the Council","namespace":"UNIQUE","unique":{"base":"Arcanist Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50M1VuaXF1ZTIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/88338fac41/GlovesInt3Unique2.png"} +{"name":"Копия Жатвы","refName":"Replica Harvest","namespace":"UNIQUE","unique":{"base":"Jasper Chopper"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9UaGVFeHRyYWN0b3IiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8452349a24/TheExtractor.png"} +{"name":"Копия Охотника за головами","refName":"Replica Headhunter","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSGVhZGh1bnRlciIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/e9542ec6ee/Headhunter.png"} +{"name":"Копия Губителя сердец","refName":"Replica Heartbreaker","namespace":"UNIQUE","unique":{"base":"Royal Skean"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0hlYXJ0YnJlYWtlciIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/fa73c4d5b4/Heartbreaker.png"} +{"name":"Копия Льда и пламени","refName":"Replica Heatshiver","namespace":"UNIQUE","unique":{"base":"Leather Hood"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlYXRzaGl2ZXIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/b1860c890e/Heatshiver.png"} +{"name":"Копия Взгляда Хинекоры","refName":"Replica Hinekora's Sight","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9IaW5la29yYXNTaWdodCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/13820d857f/HinekorasSight.png"} +{"name":"Копия Ярости Хайрри","refName":"Replica Hyrri's Ire","namespace":"UNIQUE","unique":{"base":"Zodiac Leather"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5RGV4M0NVbmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/fb532d6c21/BodyDex3CUnique.png"} +{"name":"Копия Правды Хайрри","refName":"Replica Hyrri's Truth","namespace":"UNIQUE","unique":{"base":"Jade Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9TeW50aGVzaXNBY2N1cmFjeUFtdWxldCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6062fd361e/SynthesisAccuracyAmulet.png"} +{"name":"Копия Инфрактама","refName":"Replica Infractem","namespace":"UNIQUE","unique":{"base":"Decimation Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0luZnJhY3RlbSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/ea06e13fb8/Infractem.png"} +{"name":"Копия Клинка Иннсбери","refName":"Replica Innsbury Edge","namespace":"UNIQUE","unique":{"base":"Elder Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0VsZGVyU3dvcmQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2bd26d4bf6/ElderSword.png"} +{"name":"Копия Прозрения Иньи","refName":"Replica Inya's Epiphany","namespace":"UNIQUE","unique":{"base":"Arcanist Slippers"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9QYWxlQ291bmNpbEJvb3RzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/78e277875f/PaleCouncilBoots.png"} +{"name":"Копия Сурового командира","refName":"Replica Iron Commander","namespace":"UNIQUE","unique":{"base":"Death Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0lyb25Db21tZW5kYW50IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/001ca245e3/IronCommendant.png"} +{"name":"Копия Благодати Калисы","refName":"Replica Kalisa's Grace","namespace":"UNIQUE","unique":{"base":"Samite Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvS2FsaXNhc0dyYWNlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/b165e39eff/KalisasGrace.png"} +{"name":"Копия Сердца Каома","refName":"Replica Kaom's Heart","namespace":"UNIQUE","unique":{"base":"Glorious Plate"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyM0NVbmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/1027cdf1ad/BodyStr3CUnique.png"} +{"name":"Копия Оберега каруи","refName":"Replica Karui Ward","namespace":"UNIQUE","unique":{"base":"Jade Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQ0VW5pcXVlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/069e4f76ea/Amulet4Unique.png"} +{"name":"Копия Вечной ярости Конгора","refName":"Replica Kongor's Undying Rage","namespace":"UNIQUE","unique":{"base":"Terror Maul"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvS29uZ29yc1VuZHlpbmdSYWdlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/5fa26110bc/KongorsUndyingRage.png"} +{"name":"Копия Последнего средства","refName":"Replica Last Resort","namespace":"UNIQUE","unique":{"base":"Nailed Fist"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9OZXJhc0xhc3RSZXNvcnQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5f5a6bd205/NerasLastResort.png"} +{"name":"Копия Духа Лавианги","refName":"Replica Lavianga's Spirit","namespace":"UNIQUE","unique":{"base":"Sanctified Mana Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvTGF2aWFuZ2FzT2lsIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/44f064d737/LaviangasOil.png"} +{"name":"Копия Маски труппы хитрецов","refName":"Replica Leer Cast","namespace":"UNIQUE","unique":{"base":"Festival Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludDl4IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/6693f97fdf/HelmetDexInt9x.png"} +{"name":"Копия Лап Львиного глаза","refName":"Replica Lioneye's Paws","namespace":"UNIQUE","unique":{"base":"Bronzescale Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9MaW9uZXllc1Bhd3MiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/550a8f59d4/LioneyesPaws.png"} +{"name":"Копия Плетения преданий","refName":"Replica Loreweave","namespace":"UNIQUE","unique":{"base":"Elegant Ringmail"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Mb3Jld2VhdmUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/fd11495220/Loreweave.png"} +{"name":"Копия Уловки Малахая","refName":"Replica Malachai's Artifice","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTWFsYWNoYWlzQXJ0aWZpY2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/dfbb52ebfe/MalachaisArtifice.png"} +{"name":"Копия Механизма Мэлоуни","refName":"Replica Maloney's Mechanism","namespace":"UNIQUE","unique":{"base":"Ornate Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9UcmlnZ2VyUXVpdmVyQmFzZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/1f3958bdb3/TriggerQuiverBase.png"} +{"name":"Копия Полуночной сделки","refName":"Replica Midnight Bargain","namespace":"UNIQUE","unique":{"base":"Engraved Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kVW5pcXVlMyIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/1db4fb5dbf/WandUnique3.png"} +{"name":"Копия Стены тумана","refName":"Replica Mistwall","namespace":"UNIQUE","unique":{"base":"Lacquered Buckler"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL01pc3R3YWxsIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/d81f034c2d/Mistwall.png"} +{"name":"Копия Небулиса","refName":"Replica Nebulis","namespace":"UNIQUE","unique":{"base":"Void Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9TY2VwdHJlT2ZNZW1vcmllcyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/a627a19fc4/SceptreOfMemories.png"} +{"name":"Копия Жертвы Оро","refName":"Replica Oro's Sacrifice","namespace":"UNIQUE","unique":{"base":"Infernal Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL09yb3NTYWNyaWZpY2UiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/82b813f27d/OrosSacrifice.png"} +{"name":"Копия Миролюбия","refName":"Replica Pacifism","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dyZWVuQ29ycnVwdDYiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1b1c1912b2/GreenCorrupt6.png"} +{"name":"Копия Парадоксики","refName":"Replica Paradoxica","namespace":"UNIQUE","unique":{"base":"Vaal Rapier"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL0Fzc2Fzc2luYXRpb25VbmlxdWUyIiwidyI6MSwiaCI6NCwic2NhbGUiOjF9XQ/b84147fcbd/AssassinationUnique2.png"} +{"name":"Копия Идеальной формы","refName":"Replica Perfect Form","namespace":"UNIQUE","unique":{"base":"Zodiac Leather"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaGVQZXJmZWN0Rm9ybSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/b149b68ecb/ThePerfectForm.png"} +{"name":"Копия Столпов Арун","refName":"Replica Pillars of Arun","namespace":"UNIQUE","unique":{"base":"Dunes Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9QaWxsYXJzT2ZWYXN0aXJpIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f030aac473/PillarsOfVastiri.png"} +{"name":"Копия Богадельни Паршута","refName":"Replica Poorjoy's Asylum","namespace":"UNIQUE","unique":{"base":"Temple Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9Qb29yam95c0FzeWx1bSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d7e9aba922/PoorjoysAsylum.png"} +{"name":"Копия Бессилия","refName":"Replica Powerlessness","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0JsdWVDb3JydXB0NiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/281293a0c5/BlueCorrupt6.png"} +{"name":"Копия Первородной мощи","refName":"Replica Primordial Might","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dvbGVtSW5mZXJuYWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a50b1917f5/GolemInfernal.png"} +{"name":"Копия Сплетения цвета","refName":"Replica Prismweave","namespace":"UNIQUE","unique":{"base":"Rustic Sash"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvUHJpc213ZWF2ZSIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/822582fe24/Prismweave.png"} +{"name":"Копия Ливня перьев","refName":"Replica Quill Rain","namespace":"UNIQUE","unique":{"base":"Short Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzJ1bmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/5c5cad82e8/Bow2unique.png"} +{"name":"Копия Дерзкой защиты","refName":"Replica Reckless Defence","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1JlY2tsZXNzRGVmZW5zZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/923e6cb6b5/RecklessDefense.png"} +{"name":"Копия Красного следа","refName":"Replica Red Trail","namespace":"UNIQUE","unique":{"base":"Titan Greaves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9UaGVJbmZpbml0ZVB1cnN1aXQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/518d10f12f/TheInfinitePursuit.png"} +{"name":"Копия Неусыпной опеки","refName":"Replica Restless Ward","namespace":"UNIQUE","unique":{"base":"Carnal Armour"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaGVSZXN0bGVzc1dhcmQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2508832517/TheRestlessWard.png"} +{"name":"Копия Отвара Руми","refName":"Replica Rumi's Concoction","namespace":"UNIQUE","unique":{"base":"Granite Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvQmxvY2tGbGFzayIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/3bc27f19d5/BlockFlask.png"} +{"name":"Копия Савана бессветных","refName":"Replica Shroud of the Lightless","namespace":"UNIQUE","unique":{"base":"Carnal Armour"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9BYnlzc0JvZHkiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/cd67f9b5d3/AbyssBody.png"} +{"name":"Копия Конца осаде","refName":"Replica Siegebreaker","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvODU0ODIiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/ee893f3cb8/85482.png"} +{"name":"Копия Печали божества","refName":"Replica Sorrow of the Divine","namespace":"UNIQUE","unique":{"base":"Sulphur Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvU29ycm93T2ZUaGVEaXZpbmUiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/5d9eb26bd6/SorrowOfTheDivine.png"} +{"name":"Копия Удара души","refName":"Replica Soul Strike","namespace":"UNIQUE","unique":{"base":"Spike-Point Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9Tb3Vsc3RyaWtlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/ecea242a12/Soulstrike.png"} +{"name":"Копия Оков души","refName":"Replica Soul Tether","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvU291bFRldGhlciIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/a2b7447a4a/SoulTether.png"} +{"name":"Копия Бегства","refName":"Replica Stampede","namespace":"UNIQUE","unique":{"base":"Assassin's Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TdXBwb3J0ZXIxYm9vdEEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f0b4c611d1/Supporter1bootA.png"} +{"name":"Копия Знака Тасалио","refName":"Replica Tasalio's Sign","namespace":"UNIQUE","unique":{"base":"Sapphire Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVGFzYWxpb3NTaWduIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1e73f81099/TasaliosSign.png"} +{"name":"Копия Буйной стали","refName":"Replica Tempestuous Steel","namespace":"UNIQUE","unique":{"base":"War Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1RlbXBlc3R1b3VzU3RlZWwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/72078201f9/TempestuousSteel.png"} +{"name":"Копия Продуманного штурма","refName":"Replica Three-step Assault","namespace":"UNIQUE","unique":{"base":"Shagreen Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9UaHJlZVN0ZXBBc3NhdWx0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/56daf8a36a/ThreeStepAssault.png"} +{"name":"Копия Трепанатора","refName":"Replica Trypanon","namespace":"UNIQUE","unique":{"base":"Great Mallet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHJ5cGFub24iLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/3152ab4124/Trypanon.png"} +{"name":"Копия Твердыни Тукохамы","refName":"Replica Tukohama's Fortress","namespace":"UNIQUE","unique":{"base":"Ebony Tower Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1R1a29oYW1hc0ZvcnRyZXNzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/e502c4bcf2/TukohamasFortress.png"} +{"name":"Копия Падения Тул","refName":"Replica Tulfall","namespace":"UNIQUE","unique":{"base":"Opal Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9UdWxib3JuVXBncmFkZWQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/575d6058a2/TulbornUpgraded.png"} +{"name":"Копия Твизела","refName":"Replica Twyzel","namespace":"UNIQUE","unique":{"base":"Sage Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kMVVuaXF1ZSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/086aeb214c/Wand1Unique.png"} +{"name":"Копия Кинжала Ангила","refName":"Replica Ungil's Gauche","namespace":"UNIQUE","unique":{"base":"Boot Knife"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjN1bmlxdWUiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/ec0e6a82fb/Dagger3unique.png"} +{"name":"Копия Покрова ночи","refName":"Replica Veil of the Night","namespace":"UNIQUE","unique":{"base":"Great Helmet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1ZlaWxPZlRoZU5pZ2h0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/809ee0994f/VeilOfTheNight.png"} +{"name":"Копия Милосердия Виктарио","refName":"Replica Victario's Charity","namespace":"UNIQUE","unique":{"base":"Laminated Kite Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1ZpY3Rhcm9zQ2hhcml0eSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/baf0e57fb2/VictarosCharity.png"} +{"name":"Копия Глаза пустоты","refName":"Replica Voideye","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvdW51c2VkNCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6f0e76fbbb/unused4.png"} +{"name":"Копия Пустохода","refName":"Replica Voidwalker","namespace":"UNIQUE","unique":{"base":"Murder Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Dcm9zc2luZ1RoZVZvaWQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MSwic2hhcGVyIjp0cnVlfV0/97df35ca87/CrossingTheVoid.png"} +{"name":"Копия Провидения Волкуур","refName":"Replica Volkuur's Guidance","namespace":"UNIQUE","unique":{"base":"Zealot Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUGFsZUNvdW5jaWxHbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3271f5441a/PaleCouncilGloves.png"} +{"name":"Копия Рассекателя ветра","refName":"Replica Windripper","namespace":"UNIQUE","unique":{"base":"Imperial Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0VhZ2xlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/01fdf37ac0/Eagle.png"} +{"name":"Копия Крыльев энтропии","refName":"Replica Wings of Entropy","namespace":"UNIQUE","unique":{"base":"Ezomyte Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9FbnRyb3B5d2luZ3MiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/86e128789a/Entropywings.png"} +{"name":"Копия Сердца зимы","refName":"Replica Winterheart","namespace":"UNIQUE","unique":{"base":"Gold Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9XaW50ZXJIZWFydEFMVCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ff8c8c67f2/WinterHeartALT.png"} +{"name":"Копия Отвара ведьмовского огня","refName":"Replica Witchfire Brew","namespace":"UNIQUE","unique":{"base":"Stibnite Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvV2l0Y2hGaXJlQnJldyIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/1696a739f5/WitchFireBrew.png"} +{"name":"Амулет расплаты","refName":"Retaliation Charm","namespace":"UNIQUE","unique":{"base":"Citrine Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9TaGFyZWRVbnNpZ2h0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d12260a7ac/SharedUnsight.png"} +{"name":"Стержень реверберации","refName":"Reverberation Rod","namespace":"UNIQUE","unique":{"base":"Spiraled Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9SZXZlcmJlcmF0aW9uUm9kIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/676a395a5f/ReverberationRod.png"} +{"name":"Переписанное отдалённое воспоминание","refName":"Rewritten Distant Memory","namespace":"UNIQUE","unique":{"base":"Synthesised Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TeW50aGVzaXNHb2xlbUd1YXJkaWFuTWFwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f4fd693221/SynthesisGolemGuardianMap.png"} +{"name":"Клич Ригвальда","refName":"Rigwald's Charge","namespace":"UNIQUE","unique":{"base":"Highland Blade"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDVVbmlxdWUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/ce7492e94d/TwoHandSword5Unique.png"} +{"name":"Приказ Ригвальда","refName":"Rigwald's Command","namespace":"UNIQUE","unique":{"base":"Midnight Blade"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1JpZ3dhcmxTd29yZCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/90114046a7/RigwarlSword.png"} +{"name":"Герб Ригвальда","refName":"Rigwald's Crest","namespace":"UNIQUE","unique":{"base":"Two-Stone Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmlnd2FsZHNDcmVzdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ba5e5c58a3/RigwaldsCrest.png"} +{"name":"Проклятие Ригвальда","refName":"Rigwald's Curse","namespace":"UNIQUE","unique":{"base":"Wereclaw Talisman"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9VbmlxdWVEaXJlQ2xhd1RhbGlzbWFuIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/e8cd3f0898/UniqueDireClawTalisman.png"} +{"name":"Иглы Ригвальда","refName":"Rigwald's Quills","namespace":"UNIQUE","unique":{"base":"Two-Point Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9SaWd3YWxkc1F1aWxscyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/b8325e5214/RigwaldsQuills.png"} +{"name":"Свирепость Ригвальда","refName":"Rigwald's Savagery","namespace":"UNIQUE","unique":{"base":"Royal Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9SaWd3YXJsQXhlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/e2ee95737e/RigwarlAxe.png"} +{"name":"Ледяной взгляд","refName":"Rime Gaze","namespace":"UNIQUE","unique":{"base":"Mind Cage"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleEludFVuaXF1ZTEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/607641b0c2/HelmetDexIntUnique1.png"} +{"name":"Возрождение Феникса","refName":"Rise of the Phoenix","namespace":"UNIQUE","unique":{"base":"Mosaic Kite Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1Jpc2VvZnRoZXBob2VuaXgiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/965404630a/Riseofthephoenix.png"} +{"name":"Разрыв","refName":"Rive","namespace":"UNIQUE","unique":{"base":"Terror Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9CbGVlZENsYXciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/085844fb05/BleedClaw.png"} +{"name":"Пир Ромиры","refName":"Romira's Banquet","namespace":"UNIQUE","unique":{"base":"Diamond Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUm9taXJhc0JhbnF1ZXQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/aa054b3ccd/RomirasBanquet.png"} +{"name":"Обет гнилой крови","refName":"Rotblood Promise","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQ3Vyc2VkRXllIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6f6b42ce7e/CursedEye.png"} +{"name":"Пойло","refName":"Rotgut","namespace":"UNIQUE","unique":{"base":"Quicksilver Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvUm90Z3V0IiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/80c2799242/Rotgut.png"} +{"name":"Предел Рота","refName":"Roth's Reach","namespace":"UNIQUE","unique":{"base":"Recurve Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL1NhcmtoYW1zUmVhY2giLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/89bf0cff0b/SarkhamsReach.png"} +{"name":"Отвар Руми","refName":"Rumi's Concoction","namespace":"UNIQUE","unique":{"base":"Granite Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvQmxvY2tGbGFzayIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/3bc27f19d5/BlockFlask.png"} +{"name":"Моток Рюслаты","refName":"Ryslatha's Coil","namespace":"UNIQUE","unique":{"base":"Studded Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvUnl1c2xhdGhhc0NsdXRjaGVzIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/5b990decd3/RyuslathasClutches.png"} +{"name":"Жертвенное сердце","refName":"Sacrificial Heart","namespace":"UNIQUE","unique":{"base":"Paua Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9TYWNyaWZpY2lhbF9IZWFydCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e3daa4cd32/Sacrificial_Heart.png"} +{"name":"Касание Садимы","refName":"Sadima's Touch","namespace":"UNIQUE","unique":{"base":"Wool Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU2FkaW1hc1RvdWNoIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/751c14cb9c/SadimasTouch.png"} +{"name":"Дар Сейма","refName":"Saemus' Gift","namespace":"UNIQUE","unique":{"base":"Feathered Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9TZWFtdXNHaWZ0IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/7da61eeb8e/SeamusGift.png"} +{"name":"Самоделка Саффелла","refName":"Saffell's Frame","namespace":"UNIQUE","unique":{"base":"Branded Kite Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludFVuaXF1ZTYiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/89281a7dc3/ShieldStrIntUnique6.png"} +{"name":"Образ песчаной бури","refName":"Sandstorm Visage","namespace":"UNIQUE","unique":{"base":"Necromancer Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Fud2Vuc1RpYXJhIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/db74af1ed2/AnwensTiara.png"} +{"name":"Сезонная смола","refName":"Sap of the Seasons","namespace":"UNIQUE","unique":{"base":"Prismatic Tincture"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL1VuaXF1ZVByaXNtYXRpYyIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/9aaf6a2505/UniquePrismatic.png"} +{"name":"Стая Сакаваля","refName":"Saqawal's Flock","namespace":"UNIQUE","unique":{"base":"Silken Hood"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0F2aWFuSGVsbWV0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/29e7c95170/AvianHelmet.png"} +{"name":"Гнездо Сакаваля","refName":"Saqawal's Nest","namespace":"UNIQUE","unique":{"base":"Blood Raiment"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9BdmlhbkJvZHlBcm1vdXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/260410472f/AvianBodyArmour.png"} +{"name":"Когти Сакаваля","refName":"Saqawal's Talons","namespace":"UNIQUE","unique":{"base":"Hydrascale Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9BdmlhbkJvb3RzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/4ea544616e/AvianBoots.png"} +{"name":"Ветра Сакаваля","refName":"Saqawal's Winds","namespace":"UNIQUE","unique":{"base":"Soldier Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQXZpYW5HbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/eff17664b9/AvianGloves.png"} +{"name":"Левша","refName":"Scaeva","namespace":"UNIQUE","unique":{"base":"Gladius"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1NjYWV2YSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/320c7247e3/Scaeva.png"} +{"name":"Уздечка ворчуньи","refName":"Scold's Bridle","namespace":"UNIQUE","unique":{"base":"Mind Cage"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1Njb2xkc0JyaWRsZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/d8277c58aa/ScoldsBridle.png"} +{"name":"Зов скорпиона","refName":"Scorpion's Call","namespace":"UNIQUE","unique":{"base":"Heavy Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9CbG9vZFNhbmRRdWl2ZXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/57b1387b43/BloodSandQuiver.png"} +{"name":"Вторая часть жестокости","refName":"Second Piece of Brutality","namespace":"UNIQUE","unique":{"base":"Imperial Staff Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGFyYmluZ2VyU2hhcmRzL1NoYXJkMiIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/992359550f/Shard2.png"} +{"name":"Вторая часть направлений","refName":"Second Piece of Directions","namespace":"UNIQUE","unique":{"base":"Blunt Arrow Quiver Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9TaGFyZHMvU2hhcmQyIiwidyI6MSwiaCI6Miwic2NhbGUiOjF9XQ/b992cd2275/Shard2.png"} +{"name":"Вторая часть концентрации","refName":"Second Piece of Focus","namespace":"UNIQUE","unique":{"base":"Archon Kite Shield Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoYXJkcy9DaGFubmVsaW5nU2hpZWxkU2hhcmQyIiwidyI6MSwiaCI6Miwic2NhbGUiOjF9XQ/d68b3e42b7/ChannelingShieldShard2.png"} +{"name":"Вторая часть бурь","refName":"Second Piece of Storms","namespace":"UNIQUE","unique":{"base":"Callous Mask Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hhcmJpbmdlclNoYXJkcy9TaGFyZDIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/931375a2c0/Shard2.png"} +{"name":"Вторая часть колдовства","refName":"Second Piece of the Arcane","namespace":"UNIQUE","unique":{"base":"Legion Sword Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0hhcmJpbmdlckxlYWd1ZVNoYXJkcy9IYXJiaW5nZXJTd29yZFNoYXJkMiIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/244c6caa1e/HarbingerSwordShard2.png"} +{"name":"Вторая часть времени","refName":"Second Piece of Time","namespace":"UNIQUE","unique":{"base":"Cloth Belt Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvU2hhcmRzL0hhcmJpbmdlckJlbHRTaGFyZDIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/65a4798357/HarbingerBeltShard2.png"} +{"name":"Бурлящая ярость","refName":"Seething Fury","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1NwZWN0cmFsVGhyb3dUaHJlc2hvbGQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6de1cd92c9/SpectralThrowThreshold.png"} +{"name":"Самобичевание","refName":"Self-Flagellation","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dyZWVuQ29ycnVwdDUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6aa93279b6/GreenCorrupt5.png"} +{"name":"Решение Сентари","refName":"Sentari's Answer","namespace":"UNIQUE","unique":{"base":"Brass Spirit Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NhbnRhcmlzQW5zd2VyIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/f4438d618f/SantarisAnswer.png"} +{"name":"Шедевр Серли","refName":"Serle's Masterwork","namespace":"UNIQUE","unique":{"base":"Phantom Mace"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvS2FsZ0ZvcmdlR3VhcmRNYWNlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/9b638e20ea/KalgForgeGuardMace.png"} +{"name":"Скороходы","refName":"Seven-League Step","namespace":"UNIQUE","unique":{"base":"Rawhide Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleFVuaXF1ZTMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/23e4614336/BootsDexUnique3.png"} +{"name":"Разорванные во сне","refName":"Severed in Sleep","namespace":"UNIQUE","unique":{"base":"Cutlass"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0V0ZXJuYWxTbGVlcDEiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/60deeaccc5/EternalSleep1.png"} +{"name":"Оковы убогих","refName":"Shackles of the Wretched","namespace":"UNIQUE","unique":{"base":"Chain Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUmVjYWxsaW5ndGhlV3JldGNoZWQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/faf70b1bf0/RecallingtheWretched.png"} +{"name":"Тень Солярис","refName":"Shade of Solaris","namespace":"UNIQUE","unique":{"base":"Sage Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9Tb2xhcmlzV2FuZCIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/8f2f75ad2e/SolarisWand.png"} +{"name":"Тени и прах","refName":"Shadows and Dust","namespace":"UNIQUE","unique":{"base":"Clasped Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU2hhZG93c0FuZER1c3QiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/80cb67dfe9/ShadowsAndDust.png"} +{"name":"Кружево тени","refName":"Shadowstitch","namespace":"UNIQUE","unique":{"base":"Sacrificial Garb"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9TaGFkb3dTdGl0Y2giLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2f847b36bd/ShadowStitch.png"} +{"name":"Семя Создателя","refName":"Shaper's Seed","namespace":"UNIQUE","unique":{"base":"Agate Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9TaGFwZXJzU2VlZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/99265d5594/ShapersSeed.png"} +{"name":"Касание Создателя","refName":"Shaper's Touch","namespace":"UNIQUE","unique":{"base":"Crusader Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU2hhcGVyc0dsb3ZlcyIsInciOjIsImgiOjIsInNjYWxlIjoxLCJzaGFwZXIiOnRydWV9XQ/7f4c45d53e/ShapersGloves.png"} +{"name":"Колкие осколки","refName":"Shattershard","namespace":"UNIQUE","unique":{"base":"Crimson Round Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0V2ZXJnbGFzc0JhcnJpZXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/179a505595/EverglassBarrier.png"} +{"name":"Бег Шавронн","refName":"Shavronne's Pace","namespace":"UNIQUE","unique":{"base":"Scholar Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TaGF2cm9ubmVzUGFjZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/065a61276a/ShavronnesPace.png"} +{"name":"Откровение Шавронн","refName":"Shavronne's Revelation","namespace":"UNIQUE","unique":{"base":"Moonstone Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvTW9vbnN0b25lUmluZ1VuaXF1ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d8c1823da5/MoonstoneRingUnique.png"} +{"name":"Наряд Шавронн","refName":"Shavronne's Wrappings","namespace":"UNIQUE","unique":{"base":"Occultist's Vestment"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MUNVbmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/4f3e22a163/BodyInt1CUnique.png"} +{"name":"Звёздный блеск","refName":"Shimmeron","namespace":"UNIQUE","unique":{"base":"Tornado Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9FbGRlcldhbmQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MSwiZWxkZXIiOnRydWV9XQ/cfca0aa1f1/ElderWand.png"} +{"name":"Дрожащее жало","refName":"Shiversting","namespace":"UNIQUE","unique":{"base":"Bastard Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZDZVbmlxdWUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/084a248453/TwoHandSword6Unique.png"} +{"name":"Саван бессветных","refName":"Shroud of the Lightless","namespace":"UNIQUE","unique":{"base":"Carnal Armour"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9BYnlzc0JvZHkiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/cd67f9b5d3/AbyssBody.png"} +{"name":"Стенания Сибелы","refName":"Sibyl's Lament","namespace":"UNIQUE","unique":{"base":"Coral Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU2lieWxzTGFtZW50IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/73ccf7d7c4/SibylsLament.png"} +{"name":"Дыхание Ши","refName":"Sidhebreath","namespace":"UNIQUE","unique":{"base":"Paua Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQxVW5pcXVlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2a0f1c86cc/Amulet1Unique.png"} +{"name":"Конец осаде","refName":"Siegebreaker","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvODU0ODIiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/ee893f3cb8/85482.png"} +{"name":"Знак поедателя грехов","refName":"Sign of the Sin Eater","namespace":"UNIQUE","unique":{"base":"Tyrant's Sekhem"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9TY2VwdGVyT2ZTdWZmZXJpbmciLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/49a06d1a23/ScepterOfSuffering.png"} +{"name":"Серебряная ветвь","refName":"Silverbranch","namespace":"UNIQUE","unique":{"base":"Crude Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzFVbmlxdWUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/73d6f96075/Bow1Unique.png"} +{"name":"Поход Греха","refName":"Sin Trek","namespace":"UNIQUE","unique":{"base":"Stealth Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TaW5UcmVrIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/84281e0f84/SinTrek.png"} +{"name":"Возрождение Греха","refName":"Sin's Rebirth","namespace":"UNIQUE","unique":{"base":"Stibnite Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvU2luIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/897bffaad1/Sin.png"} +{"name":"Сингулярность","refName":"Singularity","namespace":"UNIQUE","unique":{"base":"Platinum Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9HbG9vbWV5ZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/12d7027e18/Gloomeye.png"} +{"name":"Пыл Синвикты","refName":"Sinvicta's Mettle","namespace":"UNIQUE","unique":{"base":"Ezomyte Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9TaW52aWN0YXNNZXR0bGUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/f1eaf2346b/SinvictasMettle.png"} +{"name":"Повелитель осколков","refName":"Sire of Shards","namespace":"UNIQUE","unique":{"base":"Serpentine Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvUmFkaWVuY2UiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/229388b736/Radience.png"} +{"name":"Кожа Повелителей","refName":"Skin of the Lords","namespace":"UNIQUE","unique":{"base":"Simple Robe","fixedStats":["Sockets cannot be modified","+# to Level of Socketed Gems","#% increased Global Defences","You can only Socket Corrupted Gems in this item"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9NeXJpYWRHcmFzcEdyYW5kIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/a4525f8d94/MyriadGraspGrand.png"} +{"name":"Кожа верных","refName":"Skin of the Loyal","namespace":"UNIQUE","unique":{"base":"Simple Robe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9NeXJpYWRHcmFzcCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/03d7746f71/MyriadGrasp.png"} +{"name":"Стычка","refName":"Skirmish","namespace":"UNIQUE","unique":{"base":"Two-Point Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9UaGVTa2lybWlzaCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/9fe8813a15/TheSkirmish.png"} +{"name":"Черепоголов","refName":"Skullhead","namespace":"UNIQUE","unique":{"base":"Secutor Helm"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1NrdWxsaGVhZCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/55adeb7e35/Skullhead.png"} +{"name":"Небесная даль","refName":"Skyforth","namespace":"UNIQUE","unique":{"base":"Sorcerer Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Ta3lmb3J0aCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/56fee4545a/Skyforth.png"} +{"name":"Длань надзирателя","refName":"Slavedriver's Hand","namespace":"UNIQUE","unique":{"base":"Ambush Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU2xhdmVkcml2ZXJzSGFuZCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/96ae934cf8/SlavedriversHand.png"} +{"name":"Ползучий хват","refName":"Slitherpinch","namespace":"UNIQUE","unique":{"base":"Bronzescale Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU2xpdGhlcnBpbmNoIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/8f23a9535d/Slitherpinch.png"} +{"name":"Змеиный язык","refName":"Slivertongue","namespace":"UNIQUE","unique":{"base":"Harbinger Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL1NpbHZlclRvbmd1ZSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/15c7237f48/SilverTongue.png"} +{"name":"Укус змеи","refName":"Snakebite","namespace":"UNIQUE","unique":{"base":"Assassin's Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvZnJlbnp5Z2xvdmVzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/2d25853f41/frenzygloves.png"} +{"name":"Серпентарий","refName":"Snakepit","namespace":"UNIQUE","unique":{"base":"Sapphire Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU2VycGVudHNlZWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/634a5c8913/Serpentseed.png"} +{"name":"Лорика Солярис","refName":"Solaris Lorica","namespace":"UNIQUE","unique":{"base":"Copper Plate"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy90b3JuZmxlc2hvZmdvZHMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/420988ec91/tornfleshofgods.png"} +{"name":"Канун солнцестояния","refName":"Solstice Vigil","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9TaGFwZXJzUHJlc2VuY2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MSwic2hhcGVyIjp0cnVlfV0/5881f1f025/ShapersPresence.png"} +{"name":"Вознесение души","refName":"Soul Ascension","namespace":"UNIQUE","unique":{"base":"Carnal Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU291bEFzY2Vuc2lvbiIsInciOjIsImgiOjIsInNjYWxlIjoxLCJlbGRlciI6dHJ1ZX1d/261dad7419/SoulAscension.png"} +{"name":"Душелов","refName":"Soul Catcher","namespace":"UNIQUE","unique":{"base":"Quartz Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvU291bENhdGNoZXIiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/00e2d0f2b5/SoulCatcher.png"} +{"name":"Покров духа","refName":"Soul Mantle","namespace":"UNIQUE","unique":{"base":"Spidersilk Robe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Tb3VsTWFudGxlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/19bb017ce4/SoulMantle.png"} +{"name":"Жнец душ","refName":"Soul Ripper","namespace":"UNIQUE","unique":{"base":"Quartz Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvU291bFJpcHBlciIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/f74d277e1d/SoulRipper.png"} +{"name":"Удар души","refName":"Soul Strike","namespace":"UNIQUE","unique":{"base":"Spike-Point Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9Tb3Vsc3RyaWtlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/ecea242a12/Soulstrike.png"} +{"name":"Сборщик душ","refName":"Soul Taker","namespace":"UNIQUE","unique":{"base":"Siege Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9BbGV4YXhlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/647bb8bb63/Alexaxe.png"} +{"name":"Оковы души","refName":"Soul Tether","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvU291bFRldGhlciIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/a2b7447a4a/SoulTether.png"} +{"name":"Единодушие","refName":"Soulbound","namespace":"UNIQUE","unique":{"base":"Paua Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQm9uZGVkTGlmZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/2ee06d14a2/BondedLife.png"} +{"name":"Жажда душ","refName":"Soulthirst","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvU291bHRoaXJzdCIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/ee53d9c1ef/Soulthirst.png"} +{"name":"Вырыватель душ","refName":"Soulwrest","namespace":"UNIQUE","unique":{"base":"Ezomyte Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvVG9wRG93blN0YXZlSWNvbiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/f62cfea775/TopDownStaveIcon.png"} +{"name":"Южане","refName":"Southbound","namespace":"UNIQUE","unique":{"base":"Soldier Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvTm9ydGhib3VuZCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7b4cbc713d/Northbound.png"} +{"name":"Венец Говорящего","refName":"Speaker's Wreath","namespace":"UNIQUE","unique":{"base":"Prophet Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01pbmlvbkhlbG1ldCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7cf5db368e/MinionHelmet.png"} +{"name":"Раздвоение личности","refName":"Split Personality","namespace":"UNIQUE","unique":{"base":"Crimson Jewel","fixedStats":["This Jewel's Socket has #% increased effect per Allocated Passive Skill between\nit and your Class' starting location"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1VuaXF1ZUpld2VsQmFzZTEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/166fecc863/UniqueJewelBase1.png"} +{"name":"Споровый страж","refName":"Sporeguard","namespace":"UNIQUE","unique":{"base":"Saint's Hauberk"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9TdXBwb3J0ZXIxYm9keUEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2eeb350e76/Supporter1bodyA.png"} +{"name":"Весенний лист","refName":"Springleaf","namespace":"UNIQUE","unique":{"base":"Plank Kite Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckludFVuaXF1ZTIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/def84c6e93/ShieldStrIntUnique2.png"} +{"name":"Звезда Рэкласта","refName":"Star of Wraeclast","namespace":"UNIQUE","unique":{"base":"Ruby Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9EaXJnZU9mVmljdG9yeSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e30fe7839f/DirgeOfVictory.png"} +{"name":"Звёздный горн","refName":"Starforge","namespace":"UNIQUE","unique":{"base":"Infernal Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1N0YXJmb3JnZSIsInciOjIsImgiOjQsInNjYWxlIjoxLCJzaGFwZXIiOnRydWV9XQ/ed81eb98fb/Starforge.png"} +{"name":"Голова Старконжи","refName":"Starkonja's Head","namespace":"UNIQUE","unique":{"base":"Silken Hood"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Z1cnJ5aGVhZG9mc3RhcmtvbmphIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/ba13fa5202/Furryheadofstarkonja.png"} +{"name":"Чаша звёздного света","refName":"Starlight Chalice","namespace":"UNIQUE","unique":{"base":"Iron Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvQWRhcHRhdGlvbkZsYXNrMDIiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/e2a95fa6e6/AdaptationFlask02.png"} +{"name":"Статическая тюрьма","refName":"Stasis Prison","namespace":"UNIQUE","unique":{"base":"Carnal Armour"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9DaHJvbm9tYW5jZXJBcm1vdXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/12a9d49478/ChronomancerArmour.png"} +{"name":"Стальной червь","refName":"Steelworm","namespace":"UNIQUE","unique":{"base":"Broadhead Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9TaGFyZFF1aXZlciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/f531e46359/ShardQuiver.png"} +{"name":"Скитальцы","refName":"Steppan Eard","namespace":"UNIQUE","unique":{"base":"Sorcerer Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Bc3NlZGFpc2ZlcnZvciIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/6758b977d2/Assedaisfervor.png"} +{"name":"Камень Лазвара","refName":"Stone of Lazhwar","namespace":"UNIQUE","unique":{"base":"Lapis Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQ1VW5pcXVlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/c7c2e9bfcf/Amulet5Unique.png"} +{"name":"Грозовая туча","refName":"Storm Cloud","namespace":"UNIQUE","unique":{"base":"Long Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL1N0b3JtY2xvdWQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/003957da0c/Stormcloud.png"} +{"name":"Штормовая тюрьма","refName":"Storm Prison","namespace":"UNIQUE","unique":{"base":"Spiraled Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9TdG9ybVByaXNvbiIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/0fc4811c94/StormPrison.png"} +{"name":"Разгадка бури","refName":"Storm Secret","namespace":"UNIQUE","unique":{"base":"Topaz Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVGh1bmRlckxvb3AiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1322cee671/ThunderLoop.png"} +{"name":"Дар бури","refName":"Storm's Gift","namespace":"UNIQUE","unique":{"base":"Assassin's Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3Rvcm1HbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MSwic3ludGhlc2lzZWQiOnRydWV9XQ/11d9bac786/StormGloves.png"} +{"name":"Натиск бури","refName":"Stormcharger","namespace":"UNIQUE","unique":{"base":"Plated Greaves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TdG9ybWNoYXJnZXIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4f1fe9a640/Stormcharger.png"} +{"name":"Пламя бури","refName":"Stormfire","namespace":"UNIQUE","unique":{"base":"Opal Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU3Rvcm1GaXJlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6b3db4e8df/StormFire.png"} +{"name":"Ищущий бурю","refName":"Stormseeker","namespace":"UNIQUE","unique":{"base":"Ambush Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3Rvcm1zZWVrZXJHbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5f70258b38/StormseekerGloves.png"} +{"name":"Грозовой покров","refName":"Stormshroud","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dyZWVuSmV3ZWwyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/75f171fff6/GreenJewel2.png"} +{"name":"История ваал","refName":"Story of the Vaal","namespace":"UNIQUE","unique":{"base":"Gemstone Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1N0b3J5T2ZUaGVWYWFsIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/b83d2c0b68/StoryOfTheVaal.png"} +{"name":"Подавленный вздох","refName":"Stranglegasp","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9HaWZ0T2ZHbG9waCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/babc794c98/GiftOfGloph.png"} +{"name":"Узы служения","refName":"String of Servitude","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvU3RyaW5nX29mX1NlcnZpdHVkZSIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/a19be8cb67/String_of_Servitude.png"} +{"name":"Возвышенный образ","refName":"Sublime Vision","namespace":"UNIQUE","unique":{"base":"Prismatic Jewel","fixedStats":["Auras from your Skills have #% increased Effect on you","#% increased Effect of Non-Curse Auras from your Skills on Enemies"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1N1YmxpbWVWaXNpb24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MSwic2hhcGVyIjp0cnVlfV0/c2fd05d3b6/SublimeVision.png"} +{"name":"Резкий рассвет","refName":"Sudden Dawn","namespace":"UNIQUE","unique":{"base":"Steel Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1NvdWxsZXNzRWxlZ2FuY2UiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/9c572a99fe/SoullessElegance.png"} +{"name":"Солнечный удар","refName":"Sunblast","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdDgiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/c50a807f09/Belt8.png"} +{"name":"Танец солнца","refName":"Sundance","namespace":"UNIQUE","unique":{"base":"Clasped Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TdW5kYW5jZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/b3a611197c/Sundance.png"} +{"name":"Кователи уз","refName":"Surgebinders","namespace":"UNIQUE","unique":{"base":"Dragonscale Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvU3VyZ2VCaW5kZXJzIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/c0b8d5494e/SurgeBinders.png"} +{"name":"Вина выжившего","refName":"Survivor's Guilt","namespace":"UNIQUE","unique":{"base":"Heavy Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSW1iYWxhbmNlZENvcmQiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/0560075a4c/ImbalancedCord.png"} +{"name":"Свалинн","refName":"Svalinn","namespace":"UNIQUE","unique":{"base":"Girded Tower Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0xheWVyZWRCYXJyaWVyU2hpZWxkIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/54079c2263/LayeredBarrierShield.png"} +{"name":"Табула раса","refName":"Tabula Rasa","namespace":"UNIQUE","unique":{"base":"Simple Robe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UYWJ1bGFSYXNhIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/3bdbff0756/TabulaRasa.png"} +{"name":"Порочный пакт","refName":"Tainted Pact","namespace":"UNIQUE","unique":{"base":"Coral Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYWludGVkUGFjdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/77ad55d4dd/TaintedPact.png"} +{"name":"Тану Аи","refName":"Tanu Ahi","namespace":"UNIQUE","unique":{"base":"Wyrmscale Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR29yZWZpc3RHbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/4c11aafeb7/GorefistGloves.png"} +{"name":"Главный корень","refName":"Taproot","namespace":"UNIQUE","unique":{"base":"Ambusher"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL01hcnJvd0dhc2hlciIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/22be181636/MarrowGasher.png"} +{"name":"Дрожь Тарина","refName":"Taryn's Shiver","namespace":"UNIQUE","unique":{"base":"Maelström Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvVGFyeW5zc2hpdmVyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/b11b3dffb7/Tarynsshiver.png"} +{"name":"Знак Тасалио","refName":"Tasalio's Sign","namespace":"UNIQUE","unique":{"base":"Sapphire Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVGFzYWxpb3NTaWduIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1e73f81099/TasaliosSign.png"} +{"name":"Вкус ненависти","refName":"Taste of Hate","namespace":"UNIQUE","unique":{"base":"Sapphire Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvVGFzdGVPZkhhdGUiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/37ff43c7ff/TasteOfHate.png"} +{"name":"Тавукаи","refName":"Tavukai","namespace":"UNIQUE","unique":{"base":"Coral Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UYXZ1a2FpIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/86cc756de2/Tavukai.png"} +{"name":"Точность Тавануку","refName":"Tawhanuku's Timing","namespace":"UNIQUE","unique":{"base":"Moonstone Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVGF3aGFudWt1UmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/024958a572/TawhanukuRing.png"} +{"name":"Падение Тахоа","refName":"Tawhoa's Felling","namespace":"UNIQUE","unique":{"base":"Piledriver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvSmFkZU1hcm9oaUVycWlIYW1tZXIiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/c0c1952927/JadeMarohiErqiHammer.png"} +{"name":"Слеза чистоты","refName":"Tear of Purity","namespace":"UNIQUE","unique":{"base":"Lapis Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UZWFyT2ZQdXJpdHkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8a2e6d3c61/TearOfPurity.png"} +{"name":"Взгляд Текрода","refName":"Tecrod's Gaze","namespace":"UNIQUE","unique":{"base":"Murderous Eye Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL011cmRlcm91c0V5ZVVuaXF1ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f54f211029/MurderousEyeUnique.png"} +{"name":"Закалённая плоть","refName":"Tempered Flesh","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RlbXBlcmVkUmVkIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/66e750a720/TemperedRed.png"} +{"name":"Закалённый разум","refName":"Tempered Mind","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RlbXBlcmVkQmx1ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/995f6d4810/TemperedBlue.png"} +{"name":"Закалённый дух","refName":"Tempered Spirit","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RlbXBlcmVkR3JlZW4iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/29ecf43831/TemperedGreen.png"} +{"name":"Искушающий шаг","refName":"Temptation Step","namespace":"UNIQUE","unique":{"base":"Shagreen Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9BdGFpdG9sQm9vdHMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/dd0d386124/AtaitolBoots.png"} +{"name":"Терминус Эст","refName":"Terminus Est","namespace":"UNIQUE","unique":{"base":"Tiger Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1R3b0hhbmRTd29yZFVuaXF1ZTIiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/c5d5843861/TwoHandSwordUnique2.png"} +{"name":"Присвоенное","refName":"That Which Was Taken","namespace":"UNIQUE","unique":{"base":"Crimson Jewel","fixedStats":[]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0FmZmxpY3Rpb25KZXdlbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0794886e1c/AfflictionJewel.png"} +{"name":"Адмирал","refName":"The Admiral","namespace":"UNIQUE","unique":{"base":"Varnished Coat"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9IZWFydG9mdGhlRWxlbWVudHMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/f211c99b10/HeartoftheElements.png"} +{"name":"Былой блеск","refName":"The Adorned","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RyaWFsbWFzdGVySmV3IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f04386d454/TrialmasterJew.png"} +{"name":"Камень внутренней сути","refName":"The Anima Stone","namespace":"UNIQUE","unique":{"base":"Prismatic Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0dvbGVtQ2hhb3MiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/2daa0c1149/GolemChaos.png"} +{"name":"Расщепляющий свет","refName":"The Annihilating Light","namespace":"UNIQUE","unique":{"base":"Quarterstaff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSW50cmVwaWR1c0RvbG9yZW0iLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8244c5f079/IntrepidusDolorem.png"} +{"name":"Предвкушение","refName":"The Anticipation","namespace":"UNIQUE","unique":{"base":"Ezomyte Tower Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0xvbmdpbmcxIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/50fbf4d6ba/Longing1.png"} +{"name":"Наковальня","refName":"The Anvil","namespace":"UNIQUE","unique":{"base":"Amber Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbnZpbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8d05280077/Anvil.png"} +{"name":"Отступник","refName":"The Apostate","namespace":"UNIQUE","unique":{"base":"Cabalist Regalia"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9VYmVyQ29ydGV4QXJtb3VyIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/aa4ef867a8/UberCortexArmour.png"} +{"name":"Аскет","refName":"The Ascetic","namespace":"UNIQUE","unique":{"base":"Gold Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQxMyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8dd083062d/Amulet13.png"} +{"name":"Айлардекс","refName":"The Aylardex","namespace":"UNIQUE","unique":{"base":"Agate Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9YZWRyYWx5YXMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d9ae7f380f/Xedralyas.png"} +{"name":"Равновесие ужаса","refName":"The Balance of Terror","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel","fixedStats":["+#% to all Elemental Resistances"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL3VuaXF1ZTE5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/72dbd8bd3d/unique19.png"} +{"name":"Барон","refName":"The Baron","namespace":"UNIQUE","unique":{"base":"Close Helmet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RoZUJhcm9uIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/7a7ba87170/TheBaron.png"} +{"name":"Внутренний конфликт","refName":"The Battle Within","namespace":"UNIQUE","unique":{"base":"Oakbranch Tincture"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL1VuaXF1ZU9ha2JyYW5jaCIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/3200ef2d9b/UniqueOakbranch.png"} +{"name":"Плацдарм","refName":"The Beachhead","namespace":"UNIQUE","unique":{"base":"Harbinger Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9IYXJiaW5nZXJXaGl0ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/4a6302065c/HarbingerWhite.png","disc":{"mapTier":"W"}} +{"name":"Плацдарм","refName":"The Beachhead","namespace":"UNIQUE","unique":{"base":"Harbinger Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9IYXJiaW5nZXJZZWxsb3ciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/e98c7f846e/HarbingerYellow.png","disc":{"mapTier":"Y"}} +{"name":"Плацдарм","refName":"The Beachhead","namespace":"UNIQUE","unique":{"base":"Harbinger Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9IYXJiaW5nZXJSZWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1321ebcec0/HarbingerRed.png","disc":{"mapTier":"R"}} +{"name":"Звериная шкура","refName":"The Beast Fur Shawl","namespace":"UNIQUE","unique":{"base":"Vaal Regalia"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9CZWFzdEZ1clNoYXdsIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/f2a30a7f0c/BeastFurShawl.png"} +{"name":"Чёрная трость","refName":"The Black Cane","namespace":"UNIQUE","unique":{"base":"Royal Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9UaGVCbGFja0NhbmUiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/b2aa96460e/TheBlackCane.png"} +{"name":"Танец крови","refName":"The Blood Dance","namespace":"UNIQUE","unique":{"base":"Sharkskin Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Hb3JlRnJlbnp5IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/db5eeb8b01/GoreFrenzy.png"} +{"name":"Кровь Невинности","refName":"The Blood of Innocence","namespace":"UNIQUE","unique":{"base":"Censer Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL0NvcmVSZWxpY1VuaXF1ZTF4MiIsInciOjEsImgiOjIsInNjYWxlIjoxfV0/a9230e3b96/CoreRelicUnique1x2.png"} +{"name":"Кровавый жнец","refName":"The Blood Reaper","namespace":"UNIQUE","unique":{"base":"Headsman Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9Ud29IYW5kQXhlVW5pcXVlMiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/3f8b59ec70/TwoHandAxeUnique2.png"} +{"name":"Кровавый шип","refName":"The Blood Thorn","namespace":"UNIQUE","unique":{"base":"Gnarled Branch"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvVGhlQmxvb2RUaG9ybiIsInciOjEsImgiOjQsInNjYWxlIjoxfV0/3dac5ee34b/TheBloodThorn.png"} +{"name":"Синий сон","refName":"The Blue Dream","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RoZUJsdWVEcmVhbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1cb1c74958/TheBlueDream.png"} +{"name":"Синий кошмар","refName":"The Blue Nightmare","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RoZUJsdWVEcmVhbVVwZ3JhZGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MSwicmVsaWMiOnRydWV9XQ/6b097a58d9/TheBlueDreamUpgrade.png"} +{"name":"Латунный свод","refName":"The Brass Dome","namespace":"UNIQUE","unique":{"base":"Gladiator Plate"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Eb21lT2ZCcmFzcyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/41f06694f2/DomeOfBrass.png"} +{"name":"Солёная корона","refName":"The Brine Crown","namespace":"UNIQUE","unique":{"base":"Prophet Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RoZUJyaW5lQ3Jvd24iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/785aa5f630/TheBrineCrown.png"} +{"name":"Несущий дождь","refName":"The Bringer of Rain","namespace":"UNIQUE","unique":{"base":"Nightmare Bascinet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RoZUJyaW5nZXJvZlJhaW4iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3878572958/TheBringerofRain.png"} +{"name":"Разбитая курительница","refName":"The Broken Censer","namespace":"UNIQUE","unique":{"base":"Tome Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljVW5pcXVlM3gxIiwidyI6MywiaCI6MSwic2NhbGUiOjF9XQ/97c059a9f1/RelicUnique3x1.png"} +{"name":"Разбитая корона","refName":"The Broken Crown","namespace":"UNIQUE","unique":{"base":"Prophet Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Jyb2tlbkNyb3duIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/98b19a6cfb/BrokenCrown.png"} +{"name":"Гнёт теней","refName":"The Burden of Shadows","namespace":"UNIQUE","unique":{"base":"Primordial Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvVm9vZG9vS2luZ1N0YWZmIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/295f49d20f/VoodooKingStaff.png"} +{"name":"Бремя правды","refName":"The Burden of Truth","namespace":"UNIQUE","unique":{"base":"Crystal Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvU2lydXNCZWx0IiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/757f213691/SirusBelt.png"} +{"name":"Небесный хват","refName":"The Celestial Brace","namespace":"UNIQUE","unique":{"base":"Goliath Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvVWJlclNlYXJpbmdFeGFyY2hHbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/47d365fea7/UberSearingExarchGloves.png"} +{"name":"Цепи порицания","refName":"The Chains of Castigation","namespace":"UNIQUE","unique":{"base":"Processional Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL0NvcmVSZWxpY1VuaXF1ZTF4MyIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/0640b266e6/CoreRelicUnique1x3.png"} +{"name":"Грядущее бедствие","refName":"The Coming Calamity","namespace":"UNIQUE","unique":{"base":"Destroyer Regalia"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9TcGlyaXRIYXJuZXNzIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/69c0a6780d/SpiritHarness.png"} +{"name":"Всепоглощающая тьма","refName":"The Consuming Dark","namespace":"UNIQUE","unique":{"base":"Fiend Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0NvbnN1bWluZ3RoZURhcmsiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/71882cbd42/ConsumingtheDark.png"} +{"name":"Договор","refName":"The Covenant","namespace":"UNIQUE","unique":{"base":"Spidersilk Robe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9FbWJyYWNlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/d0110e7660/Embrace.png"} +{"name":"Испытание труса","refName":"The Coward's Trial","namespace":"UNIQUE","unique":{"base":"Cursed Crypt Map"},"map":{"screenshot":"https://i.imgur.com/BCOsIS2.jpg"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VbmRlYWRTaWVnZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/53f1dbdcb4/UndeadSiege.png"} +{"name":"Багровый шторм","refName":"The Crimson Storm","namespace":"UNIQUE","unique":{"base":"Steelwood Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0ZvcnRpZmljYXRpb25zVW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/b95b104d3e/FortificationsUnique.png"} +{"name":"Танцующий дервиш","refName":"The Dancing Dervish","namespace":"UNIQUE","unique":{"base":"Reaver Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1JoeXNibGFkZSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/3ed974e708/Rhysblade.png"} +{"name":"Тёмный провидец","refName":"The Dark Seer","namespace":"UNIQUE","unique":{"base":"Shadow Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9Wb2lkR2F6ZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/e24a55cd27/VoidGaze.png"} +{"name":"Панцирь обитателя глубин","refName":"The Deep One's Hide","namespace":"UNIQUE","unique":{"base":"Studded Round Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0NoaXRpbmh1bGwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/90921c2a19/Chitinhull.png"} +{"name":"Пожиратель умов","refName":"The Devourer of Minds","namespace":"UNIQUE","unique":{"base":"Pig-Faced Bascinet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1ViZXJFbGRlckhlbG0iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MSwiZWxkZXIiOnRydWV9XQ/c701291b5a/UberElderHelm.png"} +{"name":"Пожирающая диадема","refName":"The Devouring Diadem","namespace":"UNIQUE","unique":{"base":"Necromancer Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RoZURldm91cmluZ0RpYWRlbSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/8bc93d2104/TheDevouringDiadem.png"} +{"name":"Аптекарский пояс","refName":"The Druggery","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvVGhlRHJ1Z2dlcnkiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/136b59f839/TheDruggery.png"} +{"name":"Бальзамировщик","refName":"The Embalmer","namespace":"UNIQUE","unique":{"base":"Carnal Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQWxsZWxvcGF0aHkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/bcf128d770/Allelopathy.png"} +{"name":"Небесная вражда","refName":"The Enmity Divine","namespace":"UNIQUE","unique":{"base":"Imperial Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvUmFnZSBTdGFmZiIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/7c95713fe7/Rage%20Staff.png"} +{"name":"Эфемерная связь","refName":"The Ephemeral Bond","namespace":"UNIQUE","unique":{"base":"Lapis Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9DaGFyZ2UgQW1wbGlmaWVyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/a285d4c77a/Charge%20Amplifier.png"} +{"name":"Вечное яблоко","refName":"The Eternal Apple","namespace":"UNIQUE","unique":{"base":"Chiming Spirit Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1RoZUV0ZXJuYWxBcHBsZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0f1033587d/TheEternalApple.png"} +{"name":"Вечная борьба","refName":"The Eternal Struggle","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Wb2lkY29yZUFtdWxldCIsInciOjEsImgiOjEsInNjYWxlIjoxLCJzZWFyaW5nIjp0cnVlLCJ0YW5nbGVkIjp0cnVlfV0/3ca1f8ecb5/VoidcoreAmulet.png"} +{"name":"Покров вечности","refName":"The Eternity Shroud","namespace":"UNIQUE","unique":{"base":"Blood Raiment"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9NYW50bGVPZkRpc21hbnRsaW5nIiwidyI6MiwiaCI6Mywic2NhbGUiOjEsInNoYXBlciI6dHJ1ZX1d/bd0c9d1646/MantleOfDismantling.png"} +{"name":"Клык Фелбога","refName":"The Felbog Fang","namespace":"UNIQUE","unique":{"base":"Citrine Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9TYWJlcnRvb3Roc1BlbmRhbnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/bbb6f80324/SabertoothsPendant.png"} +{"name":"Первый щит","refName":"The First Crest","namespace":"UNIQUE","unique":{"base":"Coffer Relic","fixedStats":["This item is destroyed when applied to a Sanctum"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljVW5pcXVlMngyIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/15bd9eec94/RelicUnique2x2.png"} +{"name":"Приют с изъяном","refName":"The Flawed Refuge","namespace":"UNIQUE","unique":{"base":"Maple Round Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0FmZmxpY3Rpb25TaGllbGQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/e24ff32b75/AfflictionShield.png"} +{"name":"Юнец","refName":"The Fledgling","namespace":"UNIQUE","unique":{"base":"Lacquered Helmet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0V4dHJlbWVGb2N1cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/d900d9764f/ExtremeFocus.png"} +{"name":"Безграничный поток","refName":"The Flow Untethered","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSGFyYmluZ2VyQmVsdCIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/805aeb48f1/HarbingerBelt.png"} +{"name":"Бесформенное пламя","refName":"The Formless Flame","namespace":"UNIQUE","unique":{"base":"Royal Burgonet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Zvcm1sZXNzSW5GbGFtZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/baa0d0009b/FormlessInFlames.png"} +{"name":"Бесформенное пекло","refName":"The Formless Inferno","namespace":"UNIQUE","unique":{"base":"Royal Burgonet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0Zvcm1sZXNzSW5GbGFtZXNVUEdSQURFIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/3ac12068fd/FormlessInFlamesUPGRADE.png"} +{"name":"Четвёртый завет","refName":"The Fourth Vow","namespace":"UNIQUE","unique":{"base":"Devout Chainmail"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9DbGVyaWNzU2FuY3R1YXJ5IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/447f6b17b1/ClericsSanctuary.png"} +{"name":"Дробящая пряха","refName":"The Fracturing Spinner","namespace":"UNIQUE","unique":{"base":"Blunt Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9IYXJiaW5nZXJRdWl2ZXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/288bd960f9/HarbingerQuiver.png"} +{"name":"Авангард","refName":"The Front Line","namespace":"UNIQUE","unique":{"base":"Small Cluster Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1ZldGVyYW4nc0F3YXJlbmVzc0pld2VsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/7912a0c702/Veteran%27sAwarenessJewel.png"} +{"name":"Центр вращения","refName":"The Fulcrum","namespace":"UNIQUE","unique":{"base":"Ezomyte Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvRWxlbWVudGFsSGFybW9ueSIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/912f60acd7/ElementalHarmony.png"} +{"name":"Театр призраков","refName":"The Ghastly Theatre","namespace":"UNIQUE","unique":{"base":"Teak Round Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1Ntb2tlQW5kTWlycm9ycyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/95eb622489/SmokeAndMirrors.png"} +{"name":"Позолоченная чаша","refName":"The Gilded Chalice","namespace":"UNIQUE","unique":{"base":"Processional Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljVW5pcXVlMXgzIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/7a0ff8a041/RelicUnique1x3.png"} +{"name":"Ненасытная волна","refName":"The Gluttonous Tide","namespace":"UNIQUE","unique":{"base":"Citadel Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0ZyZW56aWVkVGVudGFjbGVzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/6dc3218af0/FrenziedTentacles.png"} +{"name":"Запрет богини","refName":"The Goddess Bound","namespace":"UNIQUE","unique":{"base":"Whalebone Rapier"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9SYXBpZXJzL1VuaXF1ZVJhcGllcjYiLCJ3IjoxLCJoIjo0LCJzY2FsZSI6MX1d/b9f0cc5e60/UniqueRapier6.png"} +{"name":"Презрение богини","refName":"The Goddess Scorned","namespace":"UNIQUE","unique":{"base":"Elegant Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1RoZUdvZGRlc3NzY29ybmVkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/65470d38e9/TheGoddessscorned.png"} +{"name":"Золотое правило","refName":"The Golden Rule","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RoZUdvbGRlblJ1bGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3c5f6382fc/TheGoldenRule.png"} +{"name":"Зеленый сон","refName":"The Green Dream","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RoZUdyZWVuRHJlYW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1a25683711/TheGreenDream.png"} +{"name":"Зеленый кошмар","refName":"The Green Nightmare","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RoZUdyZWVuRHJlYW1VcGdyYWRlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2a2234606a/TheGreenDreamUpgrade.png"} +{"name":"Серая игла","refName":"The Grey Spire","namespace":"UNIQUE","unique":{"base":"Judgement Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvVGhlR3JleVNwaXJlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/6e3a1c2c79/TheGreySpire.png"} +{"name":"Чайка","refName":"The Gull","namespace":"UNIQUE","unique":{"base":"Raven Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RoZUd1bGwiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/ca1678efd9/TheGull.png"} +{"name":"Алкион","refName":"The Halcyon","namespace":"UNIQUE","unique":{"base":"Jade Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9HbGFjaWVyQ2Fjb29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9bb08197c4/GlacierCacoon.png"} +{"name":"Десница Фрекии","refName":"The Hand of Phrecia","namespace":"UNIQUE","unique":{"base":"Mesh Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUGhyZWNpYUdsb3ZlcyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/29b76be04c/PhreciaGloves.png"} +{"name":"Жатва","refName":"The Harvest","namespace":"UNIQUE","unique":{"base":"Jasper Chopper"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9UaGVFeHRyYWN0b3IiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8452349a24/TheExtractor.png"} +{"name":"Злобный обличитель","refName":"The Hateful Accuser","namespace":"UNIQUE","unique":{"base":"Nameless Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUml0dWFsUGhhbnRhc21SaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/cba7f7e493/RitualPhantasmRing.png"} +{"name":"Спрятанный клинок","refName":"The Hidden Blade","namespace":"UNIQUE","unique":{"base":"Ambusher"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL1NlY3JldEJsYWRlIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/a82388d924/SecretBlade.png"} +{"name":"Бандит с большой дороги","refName":"The Highwayman","namespace":"UNIQUE","unique":{"base":"Gold Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmFuZGl0UmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e08cd25657/BanditRing.png"} +{"name":"Час божественности","refName":"The Hour of Divinity","namespace":"UNIQUE","unique":{"base":"Censer Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljVW5pcXVlMXgyIiwidyI6MSwiaCI6Miwic2NhbGUiOjF9XQ/f39ebcc337/RelicUnique1x2.png"} +{"name":"Голодная петля","refName":"The Hungry Loop","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVGhlSHVuZ3J5TG9vcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/2225980dc6/TheHungryLoop.png"} +{"name":"Гномон","refName":"The Ignomon","namespace":"UNIQUE","unique":{"base":"Gold Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQ2VW5pcXVlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/41a964dea4/Amulet6Unique.png"} +{"name":"Бессмертная воля","refName":"The Immortal Will","namespace":"UNIQUE","unique":{"base":"Archon Kite Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0hhcmJpbmdlclNoaWVsZFVwZ3JhZGVkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/a259d55fe1/HarbingerShieldUpgraded.png"} +{"name":"Бесконечная погоня","refName":"The Infinite Pursuit","namespace":"UNIQUE","unique":{"base":"Titan Greaves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Ud29Ub25lZEJvb3RzQUxUMyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/ce68366000/TwoTonedBootsALT3.png"} +{"name":"Допрос","refName":"The Interrogation","namespace":"UNIQUE","unique":{"base":"Small Cluster Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1NlY3JldHNPZkFnb255SmV3ZWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/fbc829657e/SecretsOfAgonyJewel.png"} +{"name":"Железная крепость","refName":"The Iron Fortress","namespace":"UNIQUE","unique":{"base":"Crusader Plate"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Jcm9uSGVhcnQgRmluYWwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/113c4e83b6/IronHeart%20Final.png"} +{"name":"Железная масса","refName":"The Iron Mass","namespace":"UNIQUE","unique":{"base":"Gladius"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1NrZWxldG9uU3dvcmQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/f3b8e5c988/SkeletonSword.png"} +{"name":"Башня из слоновой кости","refName":"The Ivory Tower","namespace":"UNIQUE","unique":{"base":"Saint's Hauberk"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaGVJdm9yeVRvd2VyIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/26d71eb965/TheIvoryTower.png"} +{"name":"Дурной джу-джу","refName":"The Jinxed Juju","namespace":"UNIQUE","unique":{"base":"Citrine Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9KdWp1c1NvdWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6d30276e6f/JujusSoul.png"} +{"name":"Свет смысла","refName":"The Light of Meaning","namespace":"UNIQUE","unique":{"base":"Prismatic Jewel","fixedStats":[]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0FmZmxpY3Rpb25KZXdlbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0794886e1c/AfflictionJewel.png"} +{"name":"Живой меч","refName":"The Living Blade","namespace":"UNIQUE","unique":{"base":"Ezomyte Blade"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL0dyZWVuZXllc1N3b3JkIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/f9c9d0d265/GreeneyesSword.png"} +{"name":"Великан","refName":"The Magnate","namespace":"UNIQUE","unique":{"base":"Studded Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQnVja2xlZEJlbHRVbmlxdWUiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/10d87b7baf/BuckledBeltUnique.png"} +{"name":"Ночная лампа","refName":"The Night Lamp","namespace":"UNIQUE","unique":{"base":"Urn Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljVW5pcXVlMngxIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/2a6a7e317d/RelicUnique2x1.png"} +{"name":"Угнетатель","refName":"The Oppressor","namespace":"UNIQUE","unique":{"base":"Elegant Round Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1RoZVN1cHByZXNzb3IiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/c8dcd744a2/TheSuppressor.png"} +{"name":"Первое писание","refName":"The Original Scripture","namespace":"UNIQUE","unique":{"base":"Papyrus Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljVW5pcXVlNHgxIiwidyI6NCwiaCI6MSwic2NhbGUiOjF9XQ/e6e8bfb6e4/RelicUnique4x1.png"} +{"name":"Переполненная чаша","refName":"The Overflowing Chalice","namespace":"UNIQUE","unique":{"base":"Sulphur Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvT3ZlcmZsb3dpbmdDaGFsaWNlIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/ff0069d957/OverflowingChalice.png"} +{"name":"Обитель демонов","refName":"The Pandemonius","namespace":"UNIQUE","unique":{"base":"Jade Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9HbGFjaWVyQ2Fjb29uVXBncmFkZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f54aa988e2/GlacierCacoonUpgrade.png"} +{"name":"Пария","refName":"The Pariah","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVGhlUGFyaWFoIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/778fe35c1e/ThePariah.png"} +{"name":"Идеальная форма","refName":"The Perfect Form","namespace":"UNIQUE","unique":{"base":"Zodiac Leather"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaGVQZXJmZWN0Rm9ybSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/b149b68ecb/ThePerfectForm.png"} +{"name":"Перо поэта","refName":"The Poet's Pen","namespace":"UNIQUE","unique":{"base":"Carved Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9Qb2V0c1BlbiIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/f6f0645739/PoetsPen.png"} +{"name":"Равновесная призма","refName":"The Poised Prism","namespace":"UNIQUE","unique":{"base":"Primal Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9QcmlzbWF0aWNHbGVhbSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/25341c4e59/PrismaticGleam.png"} +{"name":"Власть и обещание","refName":"The Power and the Promise","namespace":"UNIQUE","unique":{"base":"Tome Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL0NvcmVSZWxpY1VuaXF1ZTN4MSIsInciOjMsImgiOjEsInNjYWxlIjoxfV0/b7de2a9095/CoreRelicUnique3x1.png"} +{"name":"Первородная цепь","refName":"The Primordial Chain","namespace":"UNIQUE","unique":{"base":"Coral Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UaGVQcmltb3JkaWFsQ2hhaW4iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cd566defdb/ThePrimordialChain.png"} +{"name":"Царевна","refName":"The Princess","namespace":"UNIQUE","unique":{"base":"Sabre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDNVbmlxdWUiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/2ffa300730/OneHandSword3Unique.png"} +{"name":"Тлетворная обитель","refName":"The Putrid Cloister","namespace":"UNIQUE","unique":{"base":"Museum Map"},"map":{"screenshot":"https://i.imgur.com/s3LKUtm.jpg"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9QdXRyaWRDbG9pc3RlciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/4113992f12/PutridCloister.png"} +{"name":"Жажда царицы","refName":"The Queen's Hunger","namespace":"UNIQUE","unique":{"base":"Vaal Regalia"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaGVRdWVlbnNIdW5nZXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9dd0ea5e00/TheQueensHunger.png"} +{"name":"Усмиритель умов","refName":"The Queller of Minds","namespace":"UNIQUE","unique":{"base":"Nameless Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUml0dWFsU2lsZW5jZVJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5e33a5eefb/RitualSilenceRing.png"} +{"name":"Крысиная клетка","refName":"The Rat Cage","namespace":"UNIQUE","unique":{"base":"Sharkskin Tunic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaGVSYXRDYWdlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/585313cc27/TheRatCage.png"} +{"name":"Красный сон","refName":"The Red Dream","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RoZVJlZERyZWFtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5fc736ec75/TheRedDream.png"} +{"name":"Красный кошмар","refName":"The Red Nightmare","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RoZVJlZERyZWFtVXBncmFkZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/69a20aa6e0/TheRedDreamUpgrade.png"} +{"name":"Красный след","refName":"The Red Trail","namespace":"UNIQUE","unique":{"base":"Titan Greaves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9UaGVJbmZpbml0ZVB1cnN1aXQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/518d10f12f/TheInfinitePursuit.png"} +{"name":"Неусыпная опека","refName":"The Restless Ward","namespace":"UNIQUE","unique":{"base":"Carnal Armour"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaGVSZXN0bGVzc1dhcmQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/2508832517/TheRestlessWard.png"} +{"name":"Отрыжка","refName":"The Retch","namespace":"UNIQUE","unique":{"base":"Rustic Sash"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvVGhlUmV0Y2giLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/4d93673157/TheRetch.png"} +{"name":"Струящиеся мысли","refName":"The Rippling Thoughts","namespace":"UNIQUE","unique":{"base":"Legion Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0hhcmJpbmdlckxlYWd1ZVN3b3JkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/e8a974a73b/HarbingerLeagueSword.png"} +{"name":"Спаситель","refName":"The Saviour","namespace":"UNIQUE","unique":{"base":"Legion Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL01pcmFnZUJsYWRlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/c84975781c/MirageBlade.png"} +{"name":"Весы правосудия","refName":"The Scales of Justice","namespace":"UNIQUE","unique":{"base":"Chiming Spirit Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0dvZGRlc3NTY2FsZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e4ddbd93f5/GoddessScales.png"} +{"name":"Иго","refName":"The Scourge","namespace":"UNIQUE","unique":{"base":"Terror Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9UaGVTY291cmdlIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/598a9f9893/TheScourge.png"} +{"name":"Клекочущий орел","refName":"The Screaming Eagle","namespace":"UNIQUE","unique":{"base":"Jade Hatchet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9TY3JlYW1pbmdlYWdsZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/1fd02e9312/Screamingeagle.png"} +{"name":"Опаляющее касание","refName":"The Searing Touch","namespace":"UNIQUE","unique":{"base":"Lathi"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY0dW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/5c7ddd5550/Staff4unique.png"} +{"name":"Второе причастие","refName":"The Second Sacrament","namespace":"UNIQUE","unique":{"base":"Candlestick Relic"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljVW5pcXVlMXg0IiwidyI6MSwiaCI6NCwic2NhbGUiOjF9XQ/adaa7ec07c/RelicUnique1x4.png"} +{"name":"Эгоистичный пастырь","refName":"The Selfish Shepherd","namespace":"UNIQUE","unique":{"base":"Nameless Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUml0dWFsTGlmZWRyYWluUmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0ce3466499/RitualLifedrainRing.png"} +{"name":"Расколотая божественность","refName":"The Shattered Divinity","namespace":"UNIQUE","unique":{"base":"Blunt Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9IYXJiaW5nZXJRdWl2ZXJVcGdyYWRlZCIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/866d1ab1b7/HarbingerQuiverUpgraded.png"} +{"name":"Осада","refName":"The Siege","namespace":"UNIQUE","unique":{"base":"Small Cluster Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0tpbmV0aWNpc21KZXdlbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d748a39b2e/KineticismJewel.png"} +{"name":"Дар снежной слепоты","refName":"The Snowblind Grace","namespace":"UNIQUE","unique":{"base":"Zodiac Leather"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaGVTbm93YmxpbmRHcmFjZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/1f9378f004/TheSnowblindGrace.png"} +{"name":"Печаль божества","refName":"The Sorrow of the Divine","namespace":"UNIQUE","unique":{"base":"Sulphur Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvU29ycm93T2ZUaGVEaXZpbmUiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/5d9eb26bd6/SorrowOfTheDivine.png"} +{"name":"Оруженосец","refName":"The Squire","namespace":"UNIQUE","unique":{"base":"Elegant Round Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0Nhc3Bpcm9zUmVzb25hbmNlIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/94531d2461/CaspirosResonance.png"} +{"name":"Бегство","refName":"The Stampede","namespace":"UNIQUE","unique":{"base":"Assassin's Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TdXBwb3J0ZXIxYm9vdEEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/f0b4c611d1/Supporter1bootA.png"} +{"name":"Сердце бури","refName":"The Stormheart","namespace":"UNIQUE","unique":{"base":"Royal Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY4dW5pcXVlWCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/fa0b46bc0c/Staff8uniqueX.png"} +{"name":"Высшая истина","refName":"The Supreme Truth","namespace":"UNIQUE","unique":{"base":"Crystal Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9UaGVzdXByZW1ldHJ1dGgiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/1f03434324/Thesupremetruth.png"} +{"name":"Буйные мысли","refName":"The Surging Thoughts","namespace":"UNIQUE","unique":{"base":"Legion Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0hhcmJpbmdlclN3b3JkVXBncmFkZWQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/bf1d1647f5/HarbingerSwordUpgraded.png"} +{"name":"Отречение","refName":"The Surrender","namespace":"UNIQUE","unique":{"base":"Ezomyte Tower Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0xvbmdpbmcyIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/c97882a68e/Longing2.png"} +{"name":"Укрощение","refName":"The Taming","namespace":"UNIQUE","unique":{"base":"Prismatic Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVGhlVGFtaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/17c5d3d74b/TheTaming.png"} +{"name":"Надвигающаяся буря","refName":"The Tempest Rising","namespace":"UNIQUE","unique":{"base":"Goliath Greaves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9VYmVyU2lydXNCb290cyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/587f0ef638/UberSirusBoots.png"} +{"name":"Грозовые оковы","refName":"The Tempest's Binding","namespace":"UNIQUE","unique":{"base":"Callous Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0NoaWxsU2hvY2tIYXJiaW5nZXJNYXNrIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/9a113d997b/ChillShockHarbingerMask.png"} +{"name":"Освобождение бури","refName":"The Tempest's Liberation","namespace":"UNIQUE","unique":{"base":"Callous Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hhcmJpbmdlckhlbG1VcGdyYWRlZCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f4b2c70b07/HarbingerHelmUpgraded.png"} +{"name":"Буйная сталь","refName":"The Tempestuous Steel","namespace":"UNIQUE","unique":{"base":"War Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1RlbXBlc3R1b3VzU3RlZWwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/72078201f9/TempestuousSteel.png"} +{"name":"Три дракона","refName":"The Three Dragons","namespace":"UNIQUE","unique":{"base":"Golden Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RocmVlRHJhZ29ucyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/50afe0768b/ThreeDragons.png"} +{"name":"Волны времён","refName":"The Tides of Time","namespace":"UNIQUE","unique":{"base":"Vanguard Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvVWJlclNoYXBlckJlbHQiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MSwic2hhcGVyIjp0cnVlfV0/40da4c8de9/UberShaperBelt.png"} +{"name":"Осушение потока","refName":"The Torrent's Reclamation","namespace":"UNIQUE","unique":{"base":"Cloth Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvSGFyYmluZ2VyQmVsdFVwZ3JhZGVkIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/0c8b942a94/HarbingerBeltUpgraded.png"} +{"name":"Улыбка плута","refName":"The Trickster's Smile","namespace":"UNIQUE","unique":{"base":"Visored Sallet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0F6bWVyaUhlbG1ldCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/8f7af19434/AzmeriHelmet.png"} +{"name":"Сумеречный храм","refName":"The Twilight Temple","namespace":"UNIQUE","unique":{"base":"Moon Temple Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9DZWxlc3RpYWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/2b43e37784/Celestial.png"} +{"name":"Нерушимая воля","refName":"The Unshattered Will","namespace":"UNIQUE","unique":{"base":"Archon Kite Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0NoYW5uZWxpbmcgU2hpZWxkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/95b237ca78/Channeling%20Shield.png"} +{"name":"Нетронутая душа","refName":"The Untouched Soul","namespace":"UNIQUE","unique":{"base":"Gold Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9TdHJpbmdPZlJpbmdzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/a79e77693d/StringOfRings.png"} +{"name":"Предел возможного","refName":"The Utmost","namespace":"UNIQUE","unique":{"base":"Gold Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9QaW5uYWNsZUFtdWxldCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9e3b1529fa/PinnacleAmulet.png"} +{"name":"Вертекс","refName":"The Vertex","namespace":"UNIQUE","unique":{"base":"Vaal Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1RoZVZlcnRleCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/e4cca2929d/TheVertex.png"} +{"name":"Площадь Винктара","refName":"The Vinktar Square","namespace":"UNIQUE","unique":{"base":"Courtyard Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UaGVWaW5rdGFyU3F1YXJlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/d26b82ca56/TheVinktarSquare.png"} +{"name":"Клеймо смотрителя","refName":"The Warden's Brand","namespace":"UNIQUE","unique":{"base":"Iron Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVGhlV2FyZGVuc0JhbmQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5d3830d11d/TheWardensBand.png"} +{"name":"Осиное гнездо","refName":"The Wasp Nest","namespace":"UNIQUE","unique":{"base":"Throat Stabber"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9MZXZpYXRoYW5pdm9yeSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/8d31776c34/Leviathanivory.png"} +{"name":"Шепчущий лёд","refName":"The Whispering Ice","namespace":"UNIQUE","unique":{"base":"Vile Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY4dW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/04e7459f43/Staff8unique.png"} +{"name":"Ветра судьбы","refName":"The Winds of Fate","namespace":"UNIQUE","unique":{"base":"Foul Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvQW53ZW5zU3RhZmYiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/e26a5d3c65/AnwensStaff.png"} +{"name":"Мудрый дуб","refName":"The Wise Oak","namespace":"UNIQUE","unique":{"base":"Bismuth Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvVGhlV2lzZU9hayIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/80a47134d5/TheWiseOak.png"} +{"name":"Сосуд страданий","refName":"The Writhing Jar","namespace":"UNIQUE","unique":{"base":"Hallowed Hybrid Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvV3JpdGhpbmdKYXIiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/6d3e384036/WrithingJar.png"} +{"name":"Уступчивая бренность","refName":"The Yielding Mortality","namespace":"UNIQUE","unique":{"base":"Imperial Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGFyYmluZ2VyU3RhZmZVcGdyYWRlZCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/76cf7c8cb7/HarbingerStaffUpgraded.png"} +{"name":"Воровская мука","refName":"Thief's Torment","namespace":"UNIQUE","unique":{"base":"Prismatic Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVGhpZWZzVG9ybWVudCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1c182176dc/ThiefsTorment.png"} +{"name":"Третья часть жестокости","refName":"Third Piece of Brutality","namespace":"UNIQUE","unique":{"base":"Imperial Staff Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvSGFyYmluZ2VyU2hhcmRzL1NoYXJkMyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/b2ec5375d5/Shard3.png"} +{"name":"Третья часть направлений","refName":"Third Piece of Directions","namespace":"UNIQUE","unique":{"base":"Blunt Arrow Quiver Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9TaGFyZHMvU2hhcmQzIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/d577e203a5/Shard3.png"} +{"name":"Третья часть концентрации","refName":"Third Piece of Focus","namespace":"UNIQUE","unique":{"base":"Archon Kite Shield Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoYXJkcy9DaGFubmVsaW5nU2hpZWxkU2hhcmQzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/c50183e0b2/ChannelingShieldShard3.png"} +{"name":"Третья часть бурь","refName":"Third Piece of Storms","namespace":"UNIQUE","unique":{"base":"Callous Mask Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hhcmJpbmdlclNoYXJkcy9TaGFyZDMiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/130f12073c/Shard3.png"} +{"name":"Третья часть колдовства","refName":"Third Piece of the Arcane","namespace":"UNIQUE","unique":{"base":"Legion Sword Piece"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0hhcmJpbmdlckxlYWd1ZVNoYXJkcy9IYXJiaW5nZXJTd29yZFNoYXJkMyIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/b0044b38e9/HarbingerSwordShard3.png"} +{"name":"Тысяча лент","refName":"Thousand Ribbons","namespace":"UNIQUE","unique":{"base":"Simple Robe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UaG91c2FuZHJpYmJvbnMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/65a99640e9/Thousandribbons.png"} +{"name":"Тысячезубый Тему","refName":"Thousand Teeth Temu","namespace":"UNIQUE","unique":{"base":"Vaal Buckler"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZERleFVuaXF1ZTEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c466a1eb2a/ShieldDexUnique1.png"} +{"name":"Нить надежды","refName":"Thread of Hope","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0Nvbm5lY3RlZEpld2VsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1d2c1f698a/ConnectedJewel.png"} +{"name":"Продуманный штурм","refName":"Three-step Assault","namespace":"UNIQUE","unique":{"base":"Shagreen Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9UaHJlZVN0ZXBBc3NhdWx0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/56daf8a36a/ThreeStepAssault.png"} +{"name":"Стальной раж","refName":"Thrillsteel","namespace":"UNIQUE","unique":{"base":"Barbute Helmet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1vZldhciIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/887e20115c/HelmofWar.png"} +{"name":"Кулаки грома","refName":"Thunderfist","namespace":"UNIQUE","unique":{"base":"Murder Mitts"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvdGh1bmRlcmNsYXciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c566a6b7aa/thunderclaw.png"} +{"name":"Громовой взор","refName":"Thundersight","namespace":"UNIQUE","unique":{"base":"Solaris Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0V4cGxvcmVyc1Zpc2lvbkxpZ2h0bmluZyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/56f2f88c51/ExplorersVisionLightning.png"} +{"name":"Волнолом","refName":"Tidebreaker","namespace":"UNIQUE","unique":{"base":"Imperial Maul"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVGlkZWJyZWFrZXIiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/25b69a132f/Tidebreaker.png"} +{"name":"Объятие времени","refName":"Timeclasp","namespace":"UNIQUE","unique":{"base":"Moonstone Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVGltZWNsYXNwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b0c1b94ad1/Timeclasp.png"} +{"name":"Кожа лудильщика","refName":"Tinkerskin","namespace":"UNIQUE","unique":{"base":"Sadist Garb"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9UcmFwcGVyQXJtb3VyIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/3e6bd8eefe/TrapperArmour.png"} +{"name":"Стена Титуция","refName":"Titucius' Span","namespace":"UNIQUE","unique":{"base":"Reinforced Tower Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0clVuaXF1ZTciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8dd443976b/ShieldStrUnique7.png"} +{"name":"В прах","refName":"To Dust","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL3VuaXF1ZTgiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/50417e8914/unique8.png"} +{"name":"Могильные кулаки","refName":"Tombfist","namespace":"UNIQUE","unique":{"base":"Steelscale Gauntlets","fixedStats":["#% increased Attack Speed"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvQWJ5c3NHbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/d0d174823c/AbyssGloves.png"} +{"name":"Поступь древесного факела","refName":"Torchoak Step","namespace":"UNIQUE","unique":{"base":"Antique Greaves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy84NTQ4MyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/5d406f4285/85483.png"} +{"name":"Касание страданий","refName":"Touch of Anguish","namespace":"UNIQUE","unique":{"base":"Imperial Claw"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9Ub3VjaE9mQW5ndWlzaCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/c3b67bc0c2/TouchOfAnguish.png"} +{"name":"Запредельная плоть","refName":"Transcendent Flesh","namespace":"UNIQUE","unique":{"base":"Crimson Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RyYW5zY2VuZGVudFJlZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7dcf8933ad/TranscendentRed.png"} +{"name":"Запредельный разум","refName":"Transcendent Mind","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RyYW5zY2VuZGVudEJsdWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d02c69b7dc/TranscendentBlue.png"} +{"name":"Запредельный дух","refName":"Transcendent Spirit","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RyYW5zY2VuZGVudEdyZWVuIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6eb091ee7a/TranscendentGreen.png"} +{"name":"Скипетр сотрясения","refName":"Tremor Rod","namespace":"UNIQUE","unique":{"base":"Military Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvTWluZVN0YWZmIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/51a69e0959/MineStaff.png"} +{"name":"Хватка триады","refName":"Triad Grip","namespace":"UNIQUE","unique":{"base":"Mesh Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvTWluaW9uQ29udmVyc2lvbkdsb3ZlcyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/6b9b027d0f/MinionConversionGloves.png"} +{"name":"Власть Триумвирата","refName":"Triumvirate Authority","namespace":"UNIQUE","unique":{"base":"Unset Ring","fixedStats":["+# to Level of Socketed Vaal Gems"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVmFhbFVuc2V0UmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/21c7f71af2/VaalUnsetRing.png"} +{"name":"Росток тролльего дерева","refName":"Trolltimber Spire","namespace":"UNIQUE","unique":{"base":"Cedar Tower Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0clVuaXF1ZTMiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/062f3d11c8/ShieldStrUnique3.png"} +{"name":"Трепанатор","refName":"Trypanon","namespace":"UNIQUE","unique":{"base":"Great Mallet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHJ5cGFub24iLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/3152ab4124/Trypanon.png"} +{"name":"Твердыня Тукохамы","refName":"Tukohama's Fortress","namespace":"UNIQUE","unique":{"base":"Ebony Tower Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1R1a29oYW1hc0ZvcnRyZXNzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/e502c4bcf2/TukohamasFortress.png"} +{"name":"Узы Тул","refName":"Tulborn","namespace":"UNIQUE","unique":{"base":"Opal Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9UdWxib3JuIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/7c7cf3e1f2/Tulborn.png"} +{"name":"Падение Тул","refName":"Tulfall","namespace":"UNIQUE","unique":{"base":"Opal Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9UdWxib3JuVXBncmFkZWQiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/575d6058a2/TulbornUpgraded.png"} +{"name":"Искаженное отдалённое воспоминание","refName":"Twisted Distant Memory","namespace":"UNIQUE","unique":{"base":"Synthesised Map"},"map":{},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TeW50aGVzaXNMaWdodG5pbmdHdWFyZGlhbk1hcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/30f4dc76de/SynthesisLightningGuardianMap.png"} +{"name":"Твизел","refName":"Twyzel","namespace":"UNIQUE","unique":{"base":"Sage Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9XYW5kMVVuaXF1ZSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/086aeb214c/Wand1Unique.png"} +{"name":"Взгляд Уламана","refName":"Ulaman's Gaze","namespace":"UNIQUE","unique":{"base":"Searching Eye Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1NlYXJjaGluZ0V5ZVVuaXF1ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fd2beeb2ad/SearchingEyeUnique.png"} +{"name":"Умбиликус Имморталис","refName":"Umbilicus Immortalis","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvVW1iaWxpY3VzSW1tb3J0YWxpcyIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/822946a168/UmbilicusImmortalis.png"} +{"name":"Неутолимый голод","refName":"Unending Hunger","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1NwZWN0cmVKZXdlbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/4e2d72df55/SpectreJewel.png"} +{"name":"Кинжал Ангила","refName":"Ungil's Gauche","namespace":"UNIQUE","unique":{"base":"Boot Knife"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjN1bmlxdWUiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/ec0e6a82fb/Dagger3unique.png"} +{"name":"Гармония Ангила","refName":"Ungil's Harmony","namespace":"UNIQUE","unique":{"base":"Turquoise Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9VbmdpbHNIYXJtb255IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/dfdaf30e66/UngilsHarmony.png"} +{"name":"Слившиеся во сне","refName":"United in Dream","namespace":"UNIQUE","unique":{"base":"Cutlass"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0V0ZXJuYWxTbGVlcDIiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/8d706ed435/EternalSleep2.png"} +{"name":"Неестественный инстинкт","refName":"Unnatural Instinct","namespace":"UNIQUE","unique":{"base":"Viridian Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1VubmF0dXJhbEluc3RpbmN0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/c37fa5c2b6/UnnaturalInstinct.png"} +{"name":"Вечное проклятье","refName":"Unyielding Flame","namespace":"UNIQUE","unique":{"base":"Archon Kite Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0RhbW5hdGlvQWV0ZXJuYSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/755ec1c5d8/DamnatioAeterna.png"} +{"name":"Покаяние Узурпатора","refName":"Usurper's Penance","namespace":"UNIQUE","unique":{"base":"Eternal Burgonet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1VuYnJpZGxlZFJhZ2UiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3d6a6901bb/UnbridledRage.png"} +{"name":"Голод Утулы","refName":"Utula's Hunger","namespace":"UNIQUE","unique":{"base":"Majestic Plate"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9VdGFsYUJvZHlBcm1vdXIiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/4a4891f3f3/UtalaBodyArmour.png"} +{"name":"Объятия Уул-Нетол","refName":"Uul-Netol's Embrace","namespace":"UNIQUE","unique":{"base":"Vaal Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9VdWxOZXRvbHNLaXNzVXBncmFkZWQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/8c4738c8a9/UulNetolsKissUpgraded.png"} +{"name":"Поцелуй Уул-Нетол","refName":"Uul-Netol's Kiss","namespace":"UNIQUE","unique":{"base":"Vaal Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9VdWxOZXRvbHNLaXNzIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/300d5ffe23/UulNetolsKiss.png"} +{"name":"Клятва Уул-Нетол","refName":"Uul-Netol's Vow","namespace":"UNIQUE","unique":{"base":"Unset Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9HaWZ0b2ZVdWxOZXRvbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6cabe4da33/GiftofUulNetol.png"} +{"name":"Луг Узазы","refName":"Uzaza's Meadow","namespace":"UNIQUE","unique":{"base":"Sapphire Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvR3JlZW5Db21wb25lbnQyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/c5f02c50a6/GreenComponent2.png"} +{"name":"Гора Узазы","refName":"Uzaza's Mountain","namespace":"UNIQUE","unique":{"base":"Sapphire Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvR3JlZW5Db21wb25lbnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f6e55e6800/GreenComponent.png"} +{"name":"Долина Узазы","refName":"Uzaza's Valley","namespace":"UNIQUE","unique":{"base":"Sapphire Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvR3JlZW5Db21wb25lbnQzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/7e3d39e9a7/GreenComponent3.png"} +{"name":"Ласка ваал","refName":"Vaal Caress","namespace":"UNIQUE","unique":{"base":"Bronzescale Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvVmFhbENhcmVzcyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/1caec1617d/VaalCaress.png"} +{"name":"Знак Валако","refName":"Valako's Sign","namespace":"UNIQUE","unique":{"base":"Topaz Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVmFsYWtvc1NpZ24iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cd646c8c54/ValakosSign.png"} +{"name":"Валириум","refName":"Valyrium","namespace":"UNIQUE","unique":{"base":"Moonstone Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvVmFseXJpdW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/dd9261042f/Valyrium.png"} +{"name":"Варунастра","refName":"Varunastra","namespace":"UNIQUE","unique":{"base":"Vaal Blade"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL1ZhcnVuYXN0cmEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/ce779b1e41/Varunastra.png"} +{"name":"Сокровищница Атзири","refName":"Vaults of Atziri","namespace":"UNIQUE","unique":{"base":"Vaal Pyramid Map"},"map":{"screenshot":"https://i.imgur.com/O60qvAb.jpg"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VbmlxdWVNYXAxIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/7612528d07/UniqueMap1.png"} +{"name":"Покров ночи","refName":"Veil of the Night","namespace":"UNIQUE","unique":{"base":"Great Helmet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1ZlaWxPZlRoZU5pZ2h0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/809ee0994f/VeilOfTheNight.png"} +{"name":"Ядовитый надрез","refName":"Venopuncture","namespace":"UNIQUE","unique":{"base":"Iron Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmxvb2RmcmVlemUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8873778384/Bloodfreeze.png"} +{"name":"Игра Вентора","refName":"Ventor's Gamble","namespace":"UNIQUE","unique":{"base":"Gold Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvRGllT2ZEZXN0aW55IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1470dfcdce/DieOfDestiny.png"} +{"name":"Амбиции Верузо","refName":"Veruso's Ambition","namespace":"UNIQUE","unique":{"base":"Shackled Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9WZXJzdXNvQm9vdHMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/0b431567c7/VersusoBoots.png"} +{"name":"Тараны Верузо","refName":"Veruso's Battering Rams","namespace":"UNIQUE","unique":{"base":"Titan Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvVmVydXNvc0JhdHRlcmluZ1JhbXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e6727320e2/VerusosBatteringRams.png"} +{"name":"Сосуд Винктара","refName":"Vessel of Vinktar","namespace":"UNIQUE","unique":{"base":"Topaz Flask","fixedStats":["#% increased Charges used","Shocks nearby Enemies during Effect, causing 10% increased Damage taken","You are Shocked during Effect, causing 50% increased Damage taken","#% of Lightning Damage Leeched as Life during Effect"]},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvVmlua3RhckZsYXNrIiwidyI6MSwiaCI6Miwic2NhbGUiOjEsImxldmVsIjoxfV0/caf5220901/VinktarFlask.png"} +{"name":"Проницательность Виктарио","refName":"Victario's Acuity","namespace":"UNIQUE","unique":{"base":"Turquoise Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9UdXJxdW9pc2VBbXVsZXRVbmlxdWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8ba340b31f/TurquoiseAmuletUnique.png"} +{"name":"Милосердие Виктарио","refName":"Victario's Charity","namespace":"UNIQUE","unique":{"base":"Laminated Kite Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1ZpY3Rhcm9zQ2hhcml0eSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/baf0e57fb2/VictarosCharity.png"} +{"name":"Бегство Виктарио","refName":"Victario's Flight","namespace":"UNIQUE","unique":{"base":"Goathide Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleEludFVuaXF1ZTIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/11ab397d3d/BootsDexIntUnique2.png"} +{"name":"Влияние Виктарио","refName":"Victario's Influence","namespace":"UNIQUE","unique":{"base":"Lacquered Garb"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9WaWN0YXJpb3NKYWNrZXQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/b50998d963/VictariosJacket.png"} +{"name":"Вуаль Вириди","refName":"Viridi's Veil","namespace":"UNIQUE","unique":{"base":"Praetor Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0NvbnN0cmljdGluZ0Nyb3duIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/04ee655ca5/ConstrictingCrown.png"} +{"name":"Сила смерти","refName":"Vis Mortis","namespace":"UNIQUE","unique":{"base":"Necromancer Silks"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9WaXNNb3J0aXMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/771efa547e/VisMortis.png"} +{"name":"Вивинсекция","refName":"Vivinsect","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmV0cmF5YWxFeHBlcmltZW50YXRpb25SaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/0131f81491/BetrayalExperimentationRing.png"} +{"name":"Викс Лунарис","refName":"Vix Lunaris","namespace":"UNIQUE","unique":{"base":"Cardinal Round Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0ckRleFVuaXF1ZTQiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/24175c8ffb/ShieldStrDexUnique4.png"} +{"name":"Западня Виксена","refName":"Vixen's Entrapment","namespace":"UNIQUE","unique":{"base":"Embroidered Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvVml4ZW5zRW50cmFwbWVudCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/e2d77223f8/VixensEntrapment.png"} +{"name":"Глас бури","refName":"Voice of the Storm","namespace":"UNIQUE","unique":{"base":"Lapis Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Wb2ljZU9mVGhlU3Rvcm0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c5fb24dbbe/VoiceOfTheStorm.png"} +{"name":"Голоса","refName":"Voices","namespace":"UNIQUE","unique":{"base":"Large Cluster Jewel","fixedStats":["Adds # Jewel Socket Passive Skills"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1VuaXF1ZUpld2VsQmFzZTMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/314c9905c8/UniqueJewelBase3.png"} +{"name":"Накопитель пустоты","refName":"Void Battery","namespace":"UNIQUE","unique":{"base":"Prophecy Wand"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9XYW5kcy9Wb2lkQmF0dGVyeSIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/71a0fdc8db/VoidBattery.png"} +{"name":"Вестники пустоты","refName":"Voidbringer","namespace":"UNIQUE","unique":{"base":"Conjurer Gloves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvSGVsbGJyaW5nZXIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/d82eb1cc3f/Hellbringer.png"} +{"name":"Глаз пустоты","refName":"Voideye","namespace":"UNIQUE","unique":{"base":"Unset Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvdW51c2VkNCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/6f0e76fbbb/unused4.png"} +{"name":"Пустострел","refName":"Voidfletcher","namespace":"UNIQUE","unique":{"base":"Primal Arrow Quiver"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVpdmVycy9FbGRhclF1aXZlciIsInciOjIsImgiOjMsInNjYWxlIjoxLCJlbGRlciI6dHJ1ZX1d/49051164a3/EldarQuiver.png"} +{"name":"Горн пустоты","refName":"Voidforge","namespace":"UNIQUE","unique":{"base":"Infernal Sword"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kU3dvcmRzL1N0YXJmb3JnZSIsInciOjIsImgiOjQsInNjYWxlIjoxLCJlbGRlciI6dHJ1ZX1d/7adc9ae2a1/Starforge.png"} +{"name":"Дом пустоты","refName":"Voidhome","namespace":"UNIQUE","unique":{"base":"Dread Maul"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVm9pZGhvbWUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/0122c9dcf4/Voidhome.png"} +{"name":"Пустоход","refName":"Voidwalker","namespace":"UNIQUE","unique":{"base":"Murder Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Dcm9zc2luZ1RoZVZvaWQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MSwic2hhcGVyIjp0cnVlfV0/97df35ca87/CrossingTheVoid.png"} +{"name":"Провидение Волкуур","refName":"Volkuur's Guidance","namespace":"UNIQUE","unique":{"base":"Zealot Gloves","fixedStats":["#% less Poison Duration","Cold Skills have #% chance to Poison on Hit","Fire Skills have #% chance to Poison on Hit","Lightning Skills have #% chance to Poison on Hit"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvUGFsZUNvdW5jaWxHbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3271f5441a/PaleCouncilGloves.png"} +{"name":"Благочестие Волла","refName":"Voll's Devotion","namespace":"UNIQUE","unique":{"base":"Agate Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BZ2F0ZUFtdWxldFVuaXF1ZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a67e002c89/AgateAmuletUnique.png"} +{"name":"Защитник Волла","refName":"Voll's Protector","namespace":"UNIQUE","unique":{"base":"Holy Chainmail"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9TdHJJbnQzQVVuaXF1ZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/d79c6d5644/StrInt3AUnique.png"} +{"name":"Замысел Волла","refName":"Voll's Vision","namespace":"UNIQUE","unique":{"base":"Praetor Crown"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1ZvbGxzVmlzaW9uIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/c8dd3f6cf3/VollsVision.png"} +{"name":"Раскаты хаоса","refName":"Voltaxic Rift","namespace":"UNIQUE","unique":{"base":"Spine Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL1ZvaWRzaGFmdCIsInciOjIsImgiOjQsInNjYWxlIjoxfV0/aaa5cfdba1/Voidshaft.png"} +{"name":"Марш Вораны","refName":"Vorana's March","namespace":"UNIQUE","unique":{"base":"Runic Sabatons","fixedStats":["Has no Sockets","Triggers Level # Summon Arbalists when Equipped","#% increased Movement Speed"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9TcGlyaXRCb290c1VuaXF1ZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/90177dcbec/SpiritBootsUnique.png"} +{"name":"Подготовка Вораны","refName":"Vorana's Preparation","namespace":"UNIQUE","unique":{"base":"Iron Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvQWRhcHRhdGlvbkZsYXNrMDMiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/f67d3bf6f2/AdaptationFlask03.png"} +{"name":"Вулконус","refName":"Vulconus","namespace":"UNIQUE","unique":{"base":"Demon Dagger"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL1Z1bGNvbnVzIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/aefa0a977b/Vulconus.png"} +{"name":"Зачинщики разрушений","refName":"Wake of Destruction","namespace":"UNIQUE","unique":{"base":"Mesh Boots"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9XYWtlT2ZEZXN0cnVjdGlvbiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/5964f215f5/WakeOfDestruction.png"} +{"name":"Странники","refName":"Wanderlust","namespace":"UNIQUE","unique":{"base":"Wool Shoes"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9XYW5kZXJsdXN0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/c83c1c3bdc/Wanderlust.png"} +{"name":"Искажённые часы","refName":"Warped Timepiece","namespace":"UNIQUE","unique":{"base":"Turquoise Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9XYXJwZWRUaW1lcGllY2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/abee67f17d/WarpedTimepiece.png"} +{"name":"Наследие воина","refName":"Warrior's Legacy","namespace":"UNIQUE","unique":{"base":"Ruby Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvV2FycmlvcnNMZWdhY3kiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/80c16ee4e7/WarriorsLegacy.png"} +{"name":"Глаз хранителя","refName":"Watcher's Eye","namespace":"UNIQUE","unique":{"base":"Prismatic Jewel","fixedStats":["#% increased maximum Energy Shield","#% increased maximum Life","#% increased maximum Mana"]},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL0VsZGVySmV3ZWwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/278c673716/ElderJewel.png"} +{"name":"Вакаваируа Туаху","refName":"Whakawairua Tuahu","namespace":"UNIQUE","unique":{"base":"Strand Map"},"map":{"screenshot":"https://i.imgur.com/EhrYM8w.jpg"},"icon":"https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VbmlxdWVNYXBFeWUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/7c20a66814/UniqueMapEye.png"} +{"name":"Штурвал Бурехода","refName":"Wheel of the Stormsail","namespace":"UNIQUE","unique":{"base":"Rotted Round Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1doZWVsb2Z0aGVzdG9ybXNhaWwiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/9ff4153db8/Wheelofthestormsail.png"} +{"name":"Белый ветер","refName":"White Wind","namespace":"UNIQUE","unique":{"base":"Imperial Skean"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL1doaXRlV2luZCIsInciOjEsImgiOjMsInNjYWxlIjoxfV0/48866b1c7f/WhiteWind.png"} +{"name":"Размашистый удар","refName":"Wideswing","namespace":"UNIQUE","unique":{"base":"Poleaxe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kQXhlcy9XaWRlc3dpbmciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/e9dfcf58df/Wideswing.png"} +{"name":"Вдовья доля","refName":"Widowhail","namespace":"UNIQUE","unique":{"base":"Crude Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL1dpZG93aGFpbEJvdyIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/1f31742277/WidowhailBow.png"} +{"name":"Вдоводел","refName":"Widowmaker","namespace":"UNIQUE","unique":{"base":"Boot Blade"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL1dpZG93bWFrZXIiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/c581a2aec4/Widowmaker.png"} +{"name":"Флоэма Лесного Огня","refName":"Wildfire Phloem","namespace":"UNIQUE","unique":{"base":"Ashbark Tincture"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRmxhc2tzL1VuaXF1ZUFzaGJhcmsiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MX1d/2805cb697f/UniqueAshbark.png"} +{"name":"Свирепый удар","refName":"Wildslash","namespace":"UNIQUE","unique":{"base":"Awl"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9XaWxkc2xhc2giLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/9dc7260a86/Wildslash.png"} +{"name":"Конфликт воли","refName":"Willclash","namespace":"UNIQUE","unique":{"base":"Golden Mask"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL01pbmRCbG9ja01hc2siLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/aeb4a78ada/MindBlockMask.png"} +{"name":"Дар ивы","refName":"Willowgift","namespace":"UNIQUE","unique":{"base":"Jade Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9TdGFybGlnaHRNYXJrIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b956123acc/StarlightMark.png"} +{"name":"Возмездие Вильмы","refName":"Wilma's Requital","namespace":"UNIQUE","unique":{"base":"Solaris Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1dpbG1hc1JlcXVpdGFsIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/32cf26ca5b/WilmasRequital.png"} +{"name":"Рассекатель ветра","refName":"Windripper","namespace":"UNIQUE","unique":{"base":"Imperial Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0VhZ2xlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/01fdf37ac0/Eagle.png"} +{"name":"Ветра перемен","refName":"Winds of Change","namespace":"UNIQUE","unique":{"base":"Ancient Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzU3RyNiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/d66854dd65/GlovesStr6.png"} +{"name":"Вопли ветра","refName":"Windscream","namespace":"UNIQUE","unique":{"base":"Reinforced Greaves"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9XaW5kc2NyZWFtIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/7cc293769c/Windscream.png"} +{"name":"Крылья энтропии","refName":"Wings of Entropy","namespace":"UNIQUE","unique":{"base":"Ezomyte Axe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kQXhlcy9FbnRyb3B5d2luZ3MiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/86e128789a/Entropywings.png"} +{"name":"Сердце зимы","refName":"Winterheart","namespace":"UNIQUE","unique":{"base":"Gold Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9XaW50ZXJIZWFydEFMVCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ff8c8c67f2/WinterHeartALT.png"} +{"name":"Зимний узор","refName":"Winterweave","namespace":"UNIQUE","unique":{"base":"Coral Ring"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQmxvb2RCb2lsIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8335c22285/BloodBoil.png"} +{"name":"Ведьмина погибель","refName":"Witchbane","namespace":"UNIQUE","unique":{"base":"Cobalt Jewel"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL3VuaXF1ZTEzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9cc73bdf26/unique13.png"} +{"name":"Отвар ведьмовского огня","refName":"Witchfire Brew","namespace":"UNIQUE","unique":{"base":"Stibnite Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvV2l0Y2hGaXJlQnJldyIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/1696a739f5/WitchFireBrew.png"} +{"name":"Правосудие охотника на ведьм","refName":"Witchhunter's Judgment","namespace":"UNIQUE","unique":{"base":"Highborn Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvQnJhbmREZXRvbmF0ZVN0YWZmIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/07d64ef02c/BrandDetonateStaff.png"} +{"name":"Ведущие к чудесам","refName":"Wondertrap","namespace":"UNIQUE","unique":{"base":"Velvet Slippers"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Xb25kZXJ0cmFwIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/6af24f543f/Wondertrap.png"} +{"name":"Владыка теней","refName":"Wraithlord","namespace":"UNIQUE","unique":{"base":"Bone Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1dyYWl0aGxvcmQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/090d3d6bb3/Wraithlord.png"} +{"name":"Венец Фрекии","refName":"Wreath of Phrecia","namespace":"UNIQUE","unique":{"base":"Iron Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1dyZWF0aF9vZl9QaHJlY2lhIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/7ae5bac7c5/Wreath_of_Phrecia.png"} +{"name":"Кожа Змия","refName":"Wurm's Molt","namespace":"UNIQUE","unique":{"base":"Leather Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdDZVbmlxdWUiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/3307668b96/Belt6Unique.png"} +{"name":"Знак змея","refName":"Wyrmsign","namespace":"UNIQUE","unique":{"base":"Wyrmscale Gauntlets"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvV3lybXNpZ25HbG92ZXMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/fe7ef54102/WyrmsignGloves.png"} +{"name":"Рычаг Ксергилия","refName":"Xirgil's Crank","namespace":"UNIQUE","unique":{"base":"Coiled Staff"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9TdGF2ZXMvU3RhZmY3dW5pcXVlIiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/2437d7498a/Staff7unique.png"} +{"name":"Кровь Ксофа","refName":"Xoph's Blood","namespace":"UNIQUE","unique":{"base":"Amber Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9ZcGhldGhha2tzSGVhcnRVcGdyYWRlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/259f2be84d/YphethakksHeartUpgrade.png"} +{"name":"Сердце Ксофа","refName":"Xoph's Heart","namespace":"UNIQUE","unique":{"base":"Amber Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9ZcGhldGhha2tzSGVhcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8fce3ec78f/YphethakksHeart.png"} +{"name":"Начинание Ксофа","refName":"Xoph's Inception","namespace":"UNIQUE","unique":{"base":"Citadel Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0Jsb29kUGVyaWdyZWUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/7856c171f7/BloodPerigree.png"} +{"name":"Взращение Ксофа","refName":"Xoph's Nurture","namespace":"UNIQUE","unique":{"base":"Citadel Bow"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0Jsb29kUGVyaWdyZWVCUkVBQ0giLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/c1e05d8e31/BloodPerigreeBREACH.png"} +{"name":"Согласие Яомака","refName":"Yaomac's Accord","namespace":"UNIQUE","unique":{"base":"Vaal Sceptre"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9PbmF0emxpU2NlcHRyZSIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/49dafc0859/OnatzliSceptre.png"} +{"name":"Обманка Илфебана","refName":"Ylfeban's Trickery","namespace":"UNIQUE","unique":{"base":"Hubris Circlet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL1lsZmViYW4iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c40f798e46/Ylfeban.png"} +{"name":"Рубеж Инды","refName":"Ynda's Stand","namespace":"UNIQUE","unique":{"base":"Studded Belt"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvS2FsZ3V1cmFuV2FyZEJlbHQiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MX1d/07e1a52bf3/KalguuranWardBelt.png"} +{"name":"Бремя страданий","refName":"Yoke of Suffering","namespace":"UNIQUE","unique":{"base":"Onyx Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9Zb2tlT2ZTdWZmZXJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/80cc716213/YokeOfSuffering.png"} +{"name":"Воспитание Ириэла","refName":"Yriel's Fostering","namespace":"UNIQUE","unique":{"base":"Exquisite Leather"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9QYWxlQ291bmNpbEFybW91ciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/f3c31cf6b4/PaleCouncilArmour.png"} +{"name":"Сутана Зандитуса","refName":"Zahndethus' Cassock","namespace":"UNIQUE","unique":{"base":"Sage's Robe"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9aYWhuZGV0aHVzY2Fzc29jayIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/6de1273e49/Zahndethuscassock.png"} +{"name":"Усилитель Зиила","refName":"Zeel's Amplifier","namespace":"UNIQUE","unique":{"base":"Polished Spiked Shield"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1plYWxzQW1wbGlmaWVyIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/d1e9af3da7/ZealsAmplifier.png"} +{"name":"Сердце Зерфи","refName":"Zerphi's Heart","namespace":"UNIQUE","unique":{"base":"Paua Amulet"},"icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9aZXJwaGlzSGVhcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3e35140dfe/ZerphisHeart.png"} +{"name":"Последний вздох Зерфи","refName":"Zerphi's Last Breath","namespace":"UNIQUE","unique":{"base":"Grand Mana Flask"},"icon":"https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvWmVycGhpc0xhc3RCcmVhdGgiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MSwibGV2ZWwiOjF9XQ/bf8cb7b943/ZerphisLastBreath.png"} diff --git a/renderer/public/.DS_Store/data/ru/stats.ndjson.old b/renderer/public/.DS_Store/data/ru/stats.ndjson.old new file mode 100644 index 000000000..49533076d --- /dev/null +++ b/renderer/public/.DS_Store/data/ru/stats.ndjson.old @@ -0,0 +1,6681 @@ +{"ref":"# Added Passive Skills are Jewel Sockets","better":1,"matchers":[{"string":"# добавленных пассивных умений - гнезда для самоцветов"},{"string":"1 добавленное пассивное умение - гнездо для самоцветов","value":1}],"trade":{"ids":{"explicit":["explicit.stat_4079888060"],"fractured":["fractured.stat_4079888060"],"enchant":["enchant.stat_4079888060"]}}} +{"ref":"# Cold Damage taken per second per Frenzy Charge while moving","better":1,"matchers":[{"string":"При передвижении вы получаете # урона от холода в секунду за заряд ярости"}],"trade":{"ids":{"explicit":["explicit.stat_1528823952"]}}} +{"ref":"# Crafted Modifiers","better":1,"matchers":[{"string":"# ремесленных свойств "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_crafted_mods"]}}} +{"ref":"# Crafted Prefix Modifiers","better":1,"matchers":[{"string":"# ремесленных свойств-префиксов "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_crafted_prefix_mods"]}}} +{"ref":"# Crafted Suffix Modifiers","better":1,"matchers":[{"string":"# ремесленных свойств-суффиксов "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_crafted_suffix_mods"]}}} +{"ref":"# Dexterity per 1 Dexterity on Allocated Passives in Radius","better":1,"matchers":[{"string":"# ловкости за каждую 1 ловкости на выбранных пассивных умениях в радиусе"}],"trade":{"ids":{"explicit":["explicit.stat_172076472"]}}} +{"ref":"# Empty Modifiers","better":1,"matchers":[{"string":"# Пустые свойства "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_empty_affix_mods"]}}} +{"ref":"# Empty Prefix Modifiers","better":1,"matchers":[{"string":"# Пустые свойства-префиксы "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_empty_prefix_mods"]}}} +{"ref":"# Empty Suffix Modifiers","better":1,"matchers":[{"string":"# Пустые свойства-суффиксы "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_empty_suffix_mods"]}}} +{"ref":"# Enchant Modifiers","better":1,"matchers":[{"string":"# зачарованных свойств "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_enchant_mods"]}}} +{"ref":"# Fire Damage taken per second per Endurance Charge if you've been Hit Recently","better":1,"matchers":[{"string":"Вы получаете # урона от огня в секунду за заряд выносливости, если вы недавно получали удар"}],"trade":{"ids":{"explicit":["explicit.stat_1920234902"]}}} +{"ref":"# Fractured Modifiers","better":1,"matchers":[{"string":"# Расколотые свойства "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_fractured_mods"]}}} +{"ref":"# Implicit Modifiers","better":1,"matchers":[{"string":"# собственных свойств "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_implicit_mods"]}}} +{"ref":"# Intelligence per 1 Intelligence on Allocated Passives in Radius","better":1,"matchers":[{"string":"# интеллекта за каждую 1 интеллекта на выбранных пассивных умениях в радиусе"}],"trade":{"ids":{"explicit":["explicit.stat_1070347065"]}}} +{"ref":"# Life gained on Kill per Frenzy Charge","better":1,"matchers":[{"string":"# здоровья за убийство за заряд ярости"}],"trade":{"ids":{"explicit":["explicit.stat_1269609669"]}}} +{"ref":"# Life gained when you Block","better":1,"matchers":[{"string":"Дает # здоровья, когда вы блокируете удар"},{"string":"Теряет # здоровья, когда вы блокируете удар","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_762600725"],"implicit":["implicit.stat_762600725"],"fractured":["fractured.stat_762600725"],"scourge":["scourge.stat_762600725"]}}} +{"ref":"# Life Regenerated per Second","better":1,"matchers":[{"string":"Регенерация # здоровья в секунду "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_life_regen"]}}} +{"ref":"# Lightning Damage taken per second per Power Charge if\nyour Skills have dealt a Critical Strike Recently","better":1,"matchers":[{"string":"Вы получаете # урона от молнии за заряд энергии,\nесли ваши умения недавно наносили критический удар"}],"trade":{"ids":{"explicit":["explicit.stat_1964333391"]}}} +{"ref":"# Mana gained when you Block","better":1,"matchers":[{"string":"Дает # маны, когда вы блокируете удар"},{"string":"Теряет # маны, когда вы блокируете удар","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2122183138"],"implicit":["implicit.stat_2122183138"],"fractured":["fractured.stat_2122183138"],"scourge":["scourge.stat_2122183138"]}}} +{"ref":"# Maximum Void Charges","better":1,"matchers":[{"string":"Максимум зарядов пустоты: #"}],"trade":{"ids":{"explicit":["explicit.stat_1209237645"]}}} +{"ref":"# Modifiers","better":1,"matchers":[{"string":"# Свойств "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_affix_mods"]}}} +{"ref":"# Notable Passive Skills","better":1,"matchers":[{"string":"# Значимое пассивное умение "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_notable_passive_skills"]}}} +{"ref":"# Physical Damage taken on Minion Death","better":1,"matchers":[{"string":"Получение # физического урона при смерти приспешника"}],"trade":{"ids":{"explicit":["explicit.stat_4176970656"]}}} +{"ref":"# Prefix Modifiers","better":1,"matchers":[{"string":"# Свойств-префиксов "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_prefix_mods"]}}} +{"ref":"# Strength per 1 Strength on Allocated Passives in Radius","better":1,"matchers":[{"string":"# силы за каждую 1 силы на выбранных пассивных умениях в радиусе"}],"trade":{"ids":{"explicit":["explicit.stat_552705983"]}}} +{"ref":"# Suffix Modifiers","better":1,"matchers":[{"string":"# Свойств-суффиксов "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_number_of_suffix_mods"]}}} +{"ref":"# to # Added Attack Lightning Damage per 200 Accuracy Rating","better":1,"matchers":[{"string":"Добавляет от # до # урона от атак от молнии за 200 меткости"}],"trade":{"ids":{"implicit":["implicit.stat_4139229725"]}}} +{"ref":"# to # Added Chaos Damage with Bow Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона хаосом к атакам луками"}],"trade":{"ids":{"explicit":["explicit.stat_3478075311"],"implicit":["implicit.stat_3478075311"],"fractured":["fractured.stat_3478075311"]}}} +{"ref":"# to # Added Chaos Damage with Claw Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона хаосом к атакам когтями"}],"trade":{"ids":{"explicit":["explicit.stat_4191067677"],"fractured":["fractured.stat_4191067677"]}}} +{"ref":"# to # Added Chaos Damage with Dagger Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона хаосом к атакам кинжалами"}],"trade":{"ids":{"explicit":["explicit.stat_3248691197"],"fractured":["fractured.stat_3248691197"]}}} +{"ref":"# to # added Cold Damage\nPlayers and their Minions have # to # added Cold Damage","better":1,"matchers":[{"string":"Добавляет от # до # урона от холода\nИгроки и их приспешники имеют от # до # добавленного урона от холода"}],"trade":{"ids":{"explicit":["explicit.stat_3938603844"],"fractured":["fractured.stat_3938603844"]}}} +{"ref":"# to # Added Cold Damage per Frenzy Charge","better":1,"matchers":[{"string":"Добавляет от # до # урона от холода за заряд ярости"}],"trade":{"ids":{"explicit":["explicit.stat_3648858570"],"implicit":["implicit.stat_3648858570"],"fractured":["fractured.stat_3648858570"]}}} +{"ref":"# to # Added Cold Damage with Axe Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона от холода к атакам топорами"}],"trade":{"ids":{"explicit":["explicit.stat_1782176131"],"fractured":["fractured.stat_1782176131"]}}} +{"ref":"# to # Added Cold Damage with Bow Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона от холода к атакам луками"}],"trade":{"ids":{"explicit":["explicit.stat_215124030"],"implicit":["implicit.stat_215124030"],"fractured":["fractured.stat_215124030"]}}} +{"ref":"# to # Added Cold Damage with Claw Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона от холода к атакам когтями"}],"trade":{"ids":{"explicit":["explicit.stat_2848646243"],"fractured":["fractured.stat_2848646243"]}}} +{"ref":"# to # Added Cold Damage with Dagger Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона от холода к атакам кинжалами"}],"trade":{"ids":{"explicit":["explicit.stat_1263342750"],"fractured":["fractured.stat_1263342750"]}}} +{"ref":"# to # Added Cold Damage with Mace or Sceptre Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона от холода к атакам булавами и скипетрами"}],"trade":{"ids":{"explicit":["explicit.stat_187418672"],"fractured":["fractured.stat_187418672"]}}} +{"ref":"# to # Added Cold Damage with Staff Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона от холода к атакам посохами"}],"trade":{"ids":{"explicit":["explicit.stat_1261958804"],"fractured":["fractured.stat_1261958804"]}}} +{"ref":"# to # Added Cold Damage with Sword Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона от холода к атакам мечами"}],"trade":{"ids":{"explicit":["explicit.stat_972201717"],"fractured":["fractured.stat_972201717"]}}} +{"ref":"# to # Added Cold Damage with Wand Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона от холода к атакам жезлами"}],"trade":{"ids":{"explicit":["explicit.stat_2383797932"],"fractured":["fractured.stat_2383797932"]}}} +{"ref":"# to # added Fire Damage\nPlayers and their Minions have # to # added Fire Damage","better":1,"matchers":[{"string":"Добавляет от # до # урона от огня\nИгроки и их приспешники имеют от # до # добавленного урона от огня"}],"trade":{"ids":{"explicit":["explicit.stat_190652296"],"fractured":["fractured.stat_190652296"]}}} +{"ref":"# to # added Fire Damage against Burning Enemies","better":1,"matchers":[{"string":"От # до # дополнительного урона от огня по горящим врагам"}],"trade":{"ids":{"explicit":["explicit.stat_165402179"],"fractured":["fractured.stat_165402179"]}}} +{"ref":"# to # added Fire Damage per 100 of Maximum Life or Maximum Mana, whichever is lower","better":1,"matchers":[{"string":"Добавляет от # до # урона от огня за 100 максимума здоровья или максимума маны, смотря что ниже"}],"trade":{"ids":{"explicit":["explicit.stat_753801406"]}}} +{"ref":"# to # Added Fire Damage with Axe Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона от огня к атакам топорами"}],"trade":{"ids":{"explicit":["explicit.stat_2461965653"],"fractured":["fractured.stat_2461965653"]}}} +{"ref":"# to # Added Fire Damage with Bow Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона от огня к атакам луками"}],"trade":{"ids":{"explicit":["explicit.stat_3120164895"],"implicit":["implicit.stat_3120164895"],"fractured":["fractured.stat_3120164895"]}}} +{"ref":"# to # Added Fire Damage with Claw Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона от огня к атакам когтями"}],"trade":{"ids":{"explicit":["explicit.stat_2154290807"],"fractured":["fractured.stat_2154290807"]}}} +{"ref":"# to # Added Fire Damage with Dagger Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона от огня к атакам кинжалами"}],"trade":{"ids":{"explicit":["explicit.stat_1910361436"],"fractured":["fractured.stat_1910361436"]}}} +{"ref":"# to # Added Fire Damage with Mace or Sceptre Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона от огня к атакам булавами и скипетрами"}],"trade":{"ids":{"explicit":["explicit.stat_3146788701"],"fractured":["fractured.stat_3146788701"]}}} +{"ref":"# to # Added Fire Damage with Staff Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона от огня к атакам посохами"}],"trade":{"ids":{"explicit":["explicit.stat_3220927448"],"fractured":["fractured.stat_3220927448"]}}} +{"ref":"# to # Added Fire Damage with Sword Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона от огня к атакам мечами"}],"trade":{"ids":{"explicit":["explicit.stat_601249293"],"fractured":["fractured.stat_601249293"]}}} +{"ref":"# to # Added Fire Damage with Wand Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона от огня к атакам жезлами"}],"trade":{"ids":{"explicit":["explicit.stat_87098247"],"fractured":["fractured.stat_87098247"]}}} +{"ref":"# to # added Lightning Damage\nPlayers and their Minions have # to # added Lightning Damage","better":1,"matchers":[{"string":"Добавляет от # до # урона от молнии\nИгроки и их приспешники имеют от # до # добавленного урона от молнии"}],"trade":{"ids":{"explicit":["explicit.stat_2697534676"],"fractured":["fractured.stat_2697534676"]}}} +{"ref":"# to # Added Lightning Damage with Axe Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона от молнии к атакам топорами"}],"trade":{"ids":{"explicit":["explicit.stat_1582068183"],"fractured":["fractured.stat_1582068183"]}}} +{"ref":"# to # Added Lightning Damage with Bow Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона от молнии к атакам луками"}],"trade":{"ids":{"explicit":["explicit.stat_1040269876"],"implicit":["implicit.stat_1040269876"],"fractured":["fractured.stat_1040269876"]}}} +{"ref":"# to # Added Lightning Damage with Claw Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона от молнии к атакам когтями"}],"trade":{"ids":{"explicit":["explicit.stat_4231842891"],"fractured":["fractured.stat_4231842891"]}}} +{"ref":"# to # Added Lightning Damage with Dagger Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона от молнии к атакам кинжалами"}],"trade":{"ids":{"explicit":["explicit.stat_3479683016"],"fractured":["fractured.stat_3479683016"]}}} +{"ref":"# to # Added Lightning Damage with Mace or Sceptre Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона от молнии к атакам булавами и скипетрами"}],"trade":{"ids":{"explicit":["explicit.stat_2096159630"],"fractured":["fractured.stat_2096159630"]}}} +{"ref":"# to # Added Lightning Damage with Staff Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона от молнии к атакам посохами"}],"trade":{"ids":{"explicit":["explicit.stat_3212481075"],"fractured":["fractured.stat_3212481075"]}}} +{"ref":"# to # Added Lightning Damage with Sword Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона от молнии к атакам мечами"}],"trade":{"ids":{"explicit":["explicit.stat_1237708713"],"fractured":["fractured.stat_1237708713"]}}} +{"ref":"# to # Added Lightning Damage with Wand Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона от молнии к атакам жезлами"}],"trade":{"ids":{"explicit":["explicit.stat_2787733863"],"fractured":["fractured.stat_2787733863"]}}} +{"ref":"# to # added Physical Damage\nPlayers and their Minions have # to # added Physical Damage","better":1,"matchers":[{"string":"Добавляет от # до # физического урона\nИгроки и их приспешники имеют от # до # добавленного физического урона"}],"trade":{"ids":{"explicit":["explicit.stat_1563396443"],"fractured":["fractured.stat_1563396443"]}}} +{"ref":"# to # Added Physical Damage with Axe Attacks","better":1,"matchers":[{"string":"Добавляет от # до # физического урона к атакам топорами"}],"trade":{"ids":{"explicit":["explicit.stat_311030839"],"fractured":["fractured.stat_311030839"]}}} +{"ref":"# to # Added Physical Damage with Bow Attacks","better":1,"matchers":[{"string":"Добавляет от # до # физического урона к атакам луками"}],"trade":{"ids":{"explicit":["explicit.stat_1760576992"],"implicit":["implicit.stat_1760576992"],"fractured":["fractured.stat_1760576992"]}}} +{"ref":"# to # Added Physical Damage with Claw Attacks","better":1,"matchers":[{"string":"Добавляет от # до # физического урона к атакам когтями"}],"trade":{"ids":{"explicit":["explicit.stat_3303015"],"fractured":["fractured.stat_3303015"]}}} +{"ref":"# to # Added Physical Damage with Dagger Attacks","better":1,"matchers":[{"string":"Добавляет от # до # физического урона к атакам кинжалами"}],"trade":{"ids":{"explicit":["explicit.stat_1298238534"],"fractured":["fractured.stat_1298238534"]}}} +{"ref":"# to # Added Physical Damage with Mace or Sceptre Attacks","better":1,"matchers":[{"string":"Добавляет от # до # физического урона к атакам булавами и скипетрами"}],"trade":{"ids":{"explicit":["explicit.stat_3882662078"],"fractured":["fractured.stat_3882662078"]}}} +{"ref":"# to # Added Physical Damage with Staff Attacks","better":1,"matchers":[{"string":"Добавляет от # до # физического урона к атакам посохами"}],"trade":{"ids":{"explicit":["explicit.stat_69898010"],"fractured":["fractured.stat_69898010"]}}} +{"ref":"# to # Added Physical Damage with Sword Attacks","better":1,"matchers":[{"string":"Добавляет от # до # физического урона к атакам мечами"}],"trade":{"ids":{"explicit":["explicit.stat_1040189894"],"fractured":["fractured.stat_1040189894"]}}} +{"ref":"# to # Added Physical Damage with Wand Attacks","better":1,"matchers":[{"string":"Добавляет от # до # физического урона к атакам жезлами"}],"trade":{"ids":{"explicit":["explicit.stat_133683091"],"fractured":["fractured.stat_133683091"]}}} +{"ref":"# to # Added Spell Chaos Damage while Dual Wielding","better":1,"matchers":[{"string":"Добавляет от # до # урона хаосом к чарам с парным оружием в руках"}],"trade":{"ids":{"explicit":["explicit.stat_1865428306"],"fractured":["fractured.stat_1865428306"]}}} +{"ref":"# to # Added Spell Chaos Damage while holding a Shield","better":1,"matchers":[{"string":"Добавляет от # до # урона хаосом к чарам со щитом в руках"}],"trade":{"ids":{"explicit":["explicit.stat_1181129483"],"fractured":["fractured.stat_1181129483"]}}} +{"ref":"# to # Added Spell Chaos Damage while wielding a Two Handed Weapon","better":1,"matchers":[{"string":"Добавляет от # до # урона хаосом к чарам с двуручным оружием в руках"}],"trade":{"ids":{"explicit":["explicit.stat_1743759111"],"fractured":["fractured.stat_1743759111"]}}} +{"ref":"# to # Added Spell Cold Damage while Dual Wielding","better":1,"matchers":[{"string":"Добавляет от # до # урона от холода к чарам с парным оружием в руках"}],"trade":{"ids":{"explicit":["explicit.stat_3376452528"],"fractured":["fractured.stat_3376452528"]}}} +{"ref":"# to # Added Spell Cold Damage while holding a Shield","better":1,"matchers":[{"string":"Добавляет от # до # урона от холода к чарам со щитом в руках"}],"trade":{"ids":{"explicit":["explicit.stat_2671663397"],"fractured":["fractured.stat_2671663397"]}}} +{"ref":"# to # Added Spell Cold Damage while wielding a Two Handed Weapon","better":1,"matchers":[{"string":"Добавляет от # до # урона от холода к чарам с двуручным оружием в руках"}],"trade":{"ids":{"explicit":["explicit.stat_2464689927"],"fractured":["fractured.stat_2464689927"]}}} +{"ref":"# to # Added Spell Fire Damage while Dual Wielding","better":1,"matchers":[{"string":"Добавляет от # до # урона от огня к чарам с парным оружием в руках"}],"trade":{"ids":{"explicit":["explicit.stat_662691280"],"fractured":["fractured.stat_662691280"]}}} +{"ref":"# to # Added Spell Fire Damage while holding a Shield","better":1,"matchers":[{"string":"Добавляет от # до # урона от огня к чарам со щитом в руках"}],"trade":{"ids":{"explicit":["explicit.stat_44182350"],"fractured":["fractured.stat_44182350"]}}} +{"ref":"# to # Added Spell Fire Damage while wielding a Two Handed Weapon","better":1,"matchers":[{"string":"Добавляет от # до # урона от огня к чарам с двуручным оружием в руках"}],"trade":{"ids":{"explicit":["explicit.stat_2135335407"],"fractured":["fractured.stat_2135335407"]}}} +{"ref":"# to # Added Spell Lightning Damage while Dual Wielding","better":1,"matchers":[{"string":"Добавляет от # до # урона от молнии к чарам с парным оружием в руках"}],"trade":{"ids":{"explicit":["explicit.stat_3352373076"],"fractured":["fractured.stat_3352373076"]}}} +{"ref":"# to # Added Spell Lightning Damage while holding a Shield","better":1,"matchers":[{"string":"Добавляет от # до # урона от молнии к чарам со щитом в руках"}],"trade":{"ids":{"explicit":["explicit.stat_1801889979"],"fractured":["fractured.stat_1801889979"]}}} +{"ref":"# to # Added Spell Lightning Damage while wielding a Two Handed Weapon","better":1,"matchers":[{"string":"Добавляет от # до # урона от молнии к чарам с двуручным оружием в руках"}],"trade":{"ids":{"explicit":["explicit.stat_2398198236"],"fractured":["fractured.stat_2398198236"]}}} +{"ref":"# to # Added Spell Physical Damage while Dual Wielding","better":1,"matchers":[{"string":"Добавляет от # до # физического урона к чарам с парным оружием в руках"}],"trade":{"ids":{"explicit":["explicit.stat_4255924189"],"fractured":["fractured.stat_4255924189"]}}} +{"ref":"# to # Added Spell Physical Damage while holding a Shield","better":1,"matchers":[{"string":"Добавляет от # до # физического урона к чарам со щитом в руках"}],"trade":{"ids":{"explicit":["explicit.stat_3954157711"],"fractured":["fractured.stat_3954157711"]}}} +{"ref":"# to # Added Spell Physical Damage while wielding a Two Handed Weapon","better":1,"matchers":[{"string":"Добавляет от # до # физического урона к чарам с двуручным оружием в руках"}],"trade":{"ids":{"explicit":["explicit.stat_2921084940"],"fractured":["fractured.stat_2921084940"]}}} +{"ref":"# to # Fire Damage per Endurance Charge","better":1,"matchers":[{"string":"От # до # урона от огня за заряд выносливости"}],"trade":{"ids":{"explicit":["explicit.stat_1073447019"],"fractured":["fractured.stat_1073447019"]}}} +{"ref":"# to # Lightning Damage per Power Charge","better":1,"matchers":[{"string":"От # до # урона от молнии за заряд энергии"}],"trade":{"ids":{"explicit":["explicit.stat_1917107159"],"fractured":["fractured.stat_1917107159"]}}} +{"ref":"# total Elemental Resistances","better":1,"matchers":[{"string":"всего # сопротивления стихиям "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_count_elemental_resistances"]}}} +{"ref":"# total Resistances","better":1,"matchers":[{"string":"всего # сопротивления "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_count_resistances"]}}} +{"ref":"#% additional Elemental Resistances during Effect","better":1,"matchers":[{"string":"#% дополнительного сопротивления стихиям во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_962725504"],"fractured":["fractured.stat_962725504"]}}} +{"ref":"#% additional Physical Damage Reduction","better":1,"matchers":[{"string":"#% дополнительного уменьшения получаемого физического урона"}],"trade":{"ids":{"explicit":["explicit.stat_3771516363"],"implicit":["implicit.stat_3771516363"],"fractured":["fractured.stat_3771516363"],"crafted":["crafted.stat_3771516363"]}}} +{"ref":"#% additional Physical Damage Reduction against Abyssal Monsters","better":1,"matchers":[{"string":"#% дополнительного уменьшения получаемого физического урона от монстров Бездны"}],"trade":{"ids":{"explicit":["explicit.stat_287491423"],"implicit":["implicit.stat_287491423"],"fractured":["fractured.stat_287491423"]}}} +{"ref":"#% additional Physical Damage Reduction during any Flask Effect","better":1,"matchers":[{"string":"#% дополнительного уменьшения получаемого физического урона во время действия эффекта любого флакона"}],"trade":{"ids":{"explicit":["explicit.stat_2693266036"],"fractured":["fractured.stat_2693266036"]}}} +{"ref":"#% additional Physical Damage Reduction from Hits per Siphoning Charge","better":1,"matchers":[{"string":"#% дополнительного уменьшения получаемого физического урона от ударов за заряд переливания"}],"trade":{"ids":{"explicit":["explicit.stat_3837366401"]}}} +{"ref":"#% additional Physical Damage Reduction if you weren't Damaged by a Hit Recently","better":1,"matchers":[{"string":"#% дополнительного уменьшения получаемого физического урона, если недавно вы не получали урон от ударов"}],"trade":{"ids":{"explicit":["explicit.stat_3603666270"],"fractured":["fractured.stat_3603666270"]}}} +{"ref":"#% additional Physical Damage Reduction per 10 Strength on Allocated Passives in Radius","better":1,"matchers":[{"string":"#% дополнительного уменьшения получаемого физического урона за каждые 10 силы на выбранных пассивных умениях в радиусе"}],"trade":{"ids":{"explicit":["explicit.stat_2519848087"]}}} +{"ref":"#% additional Physical Damage Reduction per Frenzy Charge","better":1,"matchers":[{"string":"#% дополнительного уменьшения получаемого физического урона за заряд ярости"}],"trade":{"ids":{"explicit":["explicit.stat_1226049915"]}}} +{"ref":"#% additional Physical Damage Reduction per Power Charge","better":1,"matchers":[{"string":"#% дополнительного уменьшения получаемого физического урона за заряд энергии"}],"trade":{"ids":{"explicit":["explicit.stat_3986347319"]}}} +{"ref":"#% additional Physical Damage Reduction while affected by Determination","better":1,"matchers":[{"string":"#% дополнительного уменьшения получаемого физического урона под действием Решимости"}],"trade":{"ids":{"explicit":["explicit.stat_1873457881"],"implicit":["implicit.stat_1873457881"]}}} +{"ref":"#% additional Physical Damage Reduction while affected by Herald of Purity","better":1,"matchers":[{"string":"#% дополнительного уменьшения получаемого физического урона под действием Вестника чистоты"}],"trade":{"ids":{"explicit":["explicit.stat_3163114700"]}}} +{"ref":"#% additional Physical Damage Reduction while Focused","better":1,"matchers":[{"string":"#% дополнительного уменьшения получаемого физического урона, пока вы сфокусированы"}],"trade":{"ids":{"explicit":["explicit.stat_3753650187"],"fractured":["fractured.stat_3753650187"],"crafted":["crafted.stat_3753650187"]}}} +{"ref":"#% additional Physical Damage Reduction while moving","better":1,"matchers":[{"string":"#% дополнительного уменьшения получаемого физического урона во время передвижения"}],"trade":{"ids":{"explicit":["explicit.stat_2713357573"]}}} +{"ref":"#% additional Physical Damage Reduction while stationary","better":1,"matchers":[{"string":"#% уменьшение получаемого физического урона при нахождении на одном месте"},{"string":"#% дополнительного уменьшения получаемого физического урона при нахождении на одном месте"}],"trade":{"ids":{"explicit":["explicit.stat_2181129193"],"implicit":["implicit.stat_2181129193"],"fractured":["fractured.stat_2181129193"]}}} +{"ref":"#% Base Defence Percentile","better":1,"matchers":[{"string":"#% процента базовой защиты "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_base_defence_percentile"]}}} +{"ref":"#% chance for Bleeding inflicted with this Weapon to deal 100% more Damage","better":1,"matchers":[{"string":"#% шанс, что кровотечение, наложенное этим оружием, нанесет на 100% больше урона"}],"trade":{"ids":{"explicit":["explicit.stat_1560880986"],"fractured":["fractured.stat_1560880986"]}}} +{"ref":"#% chance for Discharge to deal Damage without removing Charges","better":1,"matchers":[{"string":"#% шанс, что Разряд нанесет урон, не снимая заряды"},{"string":"Разряд наносит урон, не снимая заряды","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1833626118"]}}} +{"ref":"#% chance for dropped Maps to convert to Atlas Memories","better":1,"matchers":[{"string":"#% шанс преобразования выпавших карт в воспоминания Атласа "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_conversion_memory_line"]}}} +{"ref":"#% chance for dropped Maps to convert to Conqueror Maps","better":1,"matchers":[{"string":"#% шанс преобразования выпавших карт в карты Завоевателей "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_conversion_conqueror_map"]}}} +{"ref":"#% chance for dropped Maps to convert to Elder Maps","better":1,"matchers":[{"string":"#% шанс преобразования выпавших карт в карты Древнего "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_conversion_elder_map"]}}} +{"ref":"#% chance for dropped Maps to convert to Maven Invitations","better":1,"matchers":[{"string":"#% шанс преобразования выпавших карт в приглашения Мейвен "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_conversion_maven_invitation"]}}} +{"ref":"#% chance for dropped Maps to convert to Scarabs","better":1,"matchers":[{"string":"#% шанс выпадения карт в виде скарабеев "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_conversion_scarab"]}}} +{"ref":"#% chance for dropped Maps to convert to Shaper Maps","better":1,"matchers":[{"string":"#% шанс преобразования выпавших карт в карты Создателя "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_conversion_shaper_map"]}}} +{"ref":"#% chance for dropped Maps to convert to Unique Maps","better":1,"matchers":[{"string":"#% шанс преобразования выпавших карт в уникальные карты "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_conversion_unique_map"]}}} +{"ref":"#% chance for Elemental Resistances to count as being 90% against Enemy Hits","better":1,"matchers":[{"string":"Значение сопротивлений стихиям с #% шансом может считаться равным 90% при получении ударов от врага"},{"string":"Значение сопротивлений стихиям считается равным 90% при получении ударов от врага","value":100}],"trade":{"ids":{"explicit":["explicit.stat_204458505"]}}} +{"ref":"#% chance for Energy Shield Recharge to start when you Block","better":1,"matchers":[{"string":"#% шанс начала перезарядки энергетического щита при блоке"}],"trade":{"ids":{"explicit":["explicit.stat_762154651"]}}} +{"ref":"#% chance for Energy Shield Recharge to start when you Kill an Enemy","better":1,"matchers":[{"string":"#% шанс начать перезарядку энергетического щита когда вы убиваете врага"}],"trade":{"ids":{"explicit":["explicit.stat_1618482990"]}}} +{"ref":"#% chance for Energy Shield Recharge to start when you Suppress Spell Damage","better":1,"matchers":[{"string":"#% начать перезарядку энергетического щита, когда вы подавляете урон от чар"},{"string":"Начинает перезарядку энергетического щита, когда вы подавляете урон от чар","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3410306164"]}}} +{"ref":"#% chance for Energy Shield Recharge to start when you use a Skill","better":1,"matchers":[{"string":"#% шанс, что энергетический щит начнет перезаряжаться, когда вы используете умение"}],"trade":{"ids":{"explicit":["explicit.stat_3853996752"]}}} +{"ref":"#% chance for Flasks you use to not consume Charges","better":1,"matchers":[{"string":"#% шанс сохранить заряды флаконов при их использовании"}],"trade":{"ids":{"explicit":["explicit.stat_311641062"],"fractured":["fractured.stat_311641062"],"scourge":["scourge.stat_311641062"],"crafted":["crafted.stat_311641062"]}}} +{"ref":"#% chance for Impales on Enemies you Kill to Reflect Damage to surrounding Enemies","better":1,"matchers":[{"string":"#% шанс отразить на окружающих врагов урон от Проколов, полученный убитыми вами монстрами"},{"string":"Отражает на окружающих врагов урон от Проколов, полученный убитыми вами монстрами","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3927388937"]}}} +{"ref":"#% chance for Phase Run to increase Duration without removing Frenzy Charges","better":1,"matchers":[{"string":"#% шанс, что Призрачный бег увеличит длительность, не снимая заряды ярости"},{"string":"Призрачный бег увеличивает длительность, не снимая заряды ярости","value":100}],"trade":{"ids":{"enchant":["enchant.stat_4259029320"]}}} +{"ref":"#% chance for Poisons inflicted with this Weapon to deal 100% more Damage","better":1,"matchers":[{"string":"#% шанс, что яд, наложенный этим оружием, нанесет на 100% больше урона"}],"trade":{"ids":{"explicit":["explicit.stat_2523146878"],"fractured":["fractured.stat_2523146878"]}}} +{"ref":"#% chance for Poisons inflicted with this Weapon to deal 300% more Damage","better":1,"matchers":[{"string":"#% шанс, что яд, наложенный этим оружием, нанесёт на 300% больше урона"}],"trade":{"ids":{"explicit":["explicit.stat_768124628"]}}} +{"ref":"#% Chance for Puncture to Maim on hit","better":1,"matchers":[{"string":"Надрез имеет #% шанс изувечить при нанесении удара"}],"trade":{"ids":{"enchant":["enchant.stat_244125450"]}}} +{"ref":"#% chance for Rare Monsters to Fracture on death","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Редкие монстры с #% шансом могут расколоться при смерти"}],"trade":{"ids":{"explicit":["explicit.stat_3097694855"]}}} +{"ref":"#% chance for Resolve Mitigation to be doubled when Hit by an Enemy","better":1,"matchers":[{"string":"Защита Решимости с #% шансом может быть удвоена при получении удара от врага"}],"trade":{"ids":{"explicit":["sanctum.stat_774484840"]}}} +{"ref":"#% chance for Slain monsters to drop an additional Scroll of Wisdom","better":1,"matchers":[{"string":"Из поверженных врагов с #% шансом может выпасть дополнительный свиток мудрости"}],"trade":{"ids":{"explicit":["explicit.stat_2920230984"]}}} +{"ref":"#% chance for Spell Hits against you to inflict Poison","better":1,"matchers":[{"string":"#% шанс для ударов чарами по вам наложить отравление"},{"string":"Удары чарами по вам накладывают отравление","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2043747322"]}}} +{"ref":"#% Chance for Traps to Trigger an additional time","better":1,"matchers":[{"string":"#% шанс, что ловушки взорвутся ещё 1 раз"},{"string":"Ловушки взрываются ещё 1 раз","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1087710344"]}}} +{"ref":"#% chance in Heists for Basic Currency drops to be Duplicated","better":1,"matchers":[{"string":"#% шанс для обычной валюты в Кражах выпасть продублированной"},{"string":"Обычная валюта в Кражах выпадает продублированной","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2966079414"]}}} +{"ref":"#% chance in Heists for Chaos Orbs to drop as Divine Orbs instead","better":1,"matchers":[{"string":"Выпадающие во время краж сферы хаоса имеют #% шанс стать божественными сферами"},{"string":"Выпадающие во время краж сферы хаоса становятся божественными сферами","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2106095595"]}}} +{"ref":"#% chance in Heists for Chaos Orbs to drop as Exalted Orbs instead","better":1,"matchers":[{"string":"Выпадающие во время краж сферы хаоса имеют #% шанс стать сферами возвышения"},{"string":"Выпадающие во время краж сферы хаоса становятся сферами возвышения","value":100}],"trade":{"ids":{"explicit":["explicit.stat_779592324"]}}} +{"ref":"#% chance in Heists for Chromatic Orbs to drop as Jeweller's Orbs instead","better":1,"matchers":[{"string":"Выпадающие во время краж цветные сферы имеют #% шанс стать сферами златокузнеца"},{"string":"Выпадающие во время краж цветные сферы становятся сферами златокузнеца","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1545361315"]}}} +{"ref":"#% chance in Heists for Chromatic Orbs to drop as Orbs of Fusing instead","better":1,"matchers":[{"string":"Выпадающие во время краж цветные сферы имеют #% шанс стать сферами соединения"},{"string":"Выпадающие во время краж цветные сферы становятся сферами соединения","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3213734550"]}}} +{"ref":"#% chance in Heists for Items to drop Corrupted","better":1,"matchers":[{"string":"Найденные во время краж предметы имеют #% шанс выпасть оскверненными"},{"string":"Найденные во время краж предметы выпадают оскверненными","value":100}],"trade":{"ids":{"explicit":["explicit.stat_530889264"]}}} +{"ref":"#% chance in Heists for Items to drop fully linked","better":1,"matchers":[{"string":"Найденные во время краж предметы имеют #% шанс выпасть с соединенными между собой гнездами"},{"string":"Найденные во время краж предметы выпадают с соединенными между собой гнездами","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3892832319"]}}} +{"ref":"#% chance in Heists for Items to drop Identified","better":1,"matchers":[{"string":"Найденные во время краж предметы имеют #% шанс выпасть опознанными"},{"string":"Найденные во время краж предметы выпадают опознанными","value":100}],"trade":{"ids":{"explicit":["explicit.stat_701843516"]}}} +{"ref":"#% chance in Heists for Items to drop with an additional Socket","better":1,"matchers":[{"string":"Найденные во время краж предметы имеют #% шанс выпасть с дополнительным гнездом"},{"string":"Найденные во время краж предметы выпадают с дополнительным гнездом","value":100}],"trade":{"ids":{"explicit":["explicit.stat_986381677"]}}} +{"ref":"#% chance in Heists for Items to drop with Elder Influence","better":1,"matchers":[{"string":"Найденные во время краж предметы имеют #% шанс выпасть с влиянием Древнего"},{"string":"Найденные во время краж предметы выпадают с влиянием Древнего","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3733808322"]}}} +{"ref":"#% chance in Heists for Items to drop with Shaper Influence","better":1,"matchers":[{"string":"Найденные во время краж предметы имеют #% шанс выпасть с влиянием Создателя"},{"string":"Найденные во время краж предметы выпадают с влиянием Создателя","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1494306466"]}}} +{"ref":"#% chance in Heists for Jeweller's Orbs to drop as Orbs of Fusing instead","better":1,"matchers":[{"string":"Выпадающие во время краж сферы златокузнеца имеют #% шанс стать сферами соединения"},{"string":"Выпадающие во время краж сферы златокузнеца становятся сферами соединения","value":100}],"trade":{"ids":{"explicit":["explicit.stat_533969887"]}}} +{"ref":"#% chance in Heists for Orbs of Alteration to drop as Chaos Orbs instead","better":1,"matchers":[{"string":"Выпадающие во время краж сферы перемен имеют #% шанс стать сферами хаоса"},{"string":"Выпадающие во время краж сферы перемен становятся сферами хаоса","value":100}],"trade":{"ids":{"explicit":["explicit.stat_844812352"]}}} +{"ref":"#% chance in Heists for Orbs of Alteration to drop as Orbs of Alchemy instead","better":1,"matchers":[{"string":"Выпадающие во время краж сферы перемен имеют #% шанс стать сферами алхимии"},{"string":"Выпадающие во время краж сферы перемен становятся сферами алхимии","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1122682019"]}}} +{"ref":"#% chance in Heists for Orbs of Alteration to drop as Regal Orbs instead","better":1,"matchers":[{"string":"Выпадающие во время краж сферы перемен имеют #% шанс стать сферами царей"},{"string":"Выпадающие во время краж сферы перемен становятся сферами царей","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1290611485"]}}} +{"ref":"#% chance in Heists for Orbs of Augmentation to drop as Chaos Orbs instead","better":1,"matchers":[{"string":"Выпадающие во время краж сферы усиления имеют #% шанс стать сферами хаоса"},{"string":"Выпадающие во время краж сферы усиления становятся сферами хаоса","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2559492014"]}}} +{"ref":"#% chance in Heists for Orbs of Augmentation to drop as Orbs of Alchemy instead","better":1,"matchers":[{"string":"Выпадающие во время краж сферы усиления имеют #% шанс стать сферами алхимии"},{"string":"Выпадающие во время краж сферы усиления становятся сферами алхимии","value":100}],"trade":{"ids":{"explicit":["explicit.stat_306037665"]}}} +{"ref":"#% chance in Heists for Orbs of Augmentation to drop as Regal Orbs instead","better":1,"matchers":[{"string":"Выпадающие во время краж сферы усиления имеют #% шанс стать сферами царей"},{"string":"Выпадающие во время краж сферы усиления становятся сферами царей","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1071676747"]}}} +{"ref":"#% chance in Heists for Orbs of Regret to drop as Orbs of Annulment instead","better":1,"matchers":[{"string":"Выпадающие во время краж сферы раскаяния имеют #% шанс стать сферами отмены"},{"string":"Выпадающие во время краж сферы раскаяния становятся сферами отмены","value":100}],"trade":{"ids":{"explicit":["explicit.stat_559827707"]}}} +{"ref":"#% chance in Heists for Orbs of Scouring to drop as Orbs of Annulment instead","better":1,"matchers":[{"string":"Выпадающие во время краж сферы очищения имеют #% шанс стать сферами отмены"},{"string":"Выпадающие во время краж сферы очищения становятся сферами отмены","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2845459668"]}}} +{"ref":"#% chance in Heists for Orbs of Scouring to drop as Orbs of Regret instead","better":1,"matchers":[{"string":"Выпадающие во время краж сферы очищения имеют #% шанс стать сферами раскаяния"},{"string":"Выпадающие во время краж сферы очищения становятся сферами раскаяния","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1824085933"]}}} +{"ref":"#% chance in Heists for Orbs of Transmutation to drop as Chaos Orbs instead","better":1,"matchers":[{"string":"Выпадающие во время краж сферы превращения имеют #% шанс стать сферами хаоса"},{"string":"Выпадающие во время краж сферы превращения становятся сферами хаоса","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3265666559"]}}} +{"ref":"#% chance in Heists for Orbs of Transmutation to drop as Orbs of Alchemy instead","better":1,"matchers":[{"string":"Выпадающие во время краж сферы превращения имеют #% шанс стать сферами алхимии"},{"string":"Выпадающие во время краж сферы превращения становятся сферами алхимии","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2532905418"]}}} +{"ref":"#% chance in Heists for Regal Orbs to drop as Divine Orbs instead","better":1,"matchers":[{"string":"Выпадающие во время краж сферы царей имеют #% шанс стать божественными сферами"},{"string":"Выпадающие во время краж сферы царей становятся божественными сферами","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2766470009"]}}} +{"ref":"#% chance in Heists for Regal Orbs to drop as Exalted Orbs instead","better":1,"matchers":[{"string":"Выпадающие во время краж сферы царей имеют #% шанс стать сферами возвышения"},{"string":"Выпадающие во время краж сферы царей становятся сферами возвышения","value":100}],"trade":{"ids":{"explicit":["explicit.stat_866391849"]}}} +{"ref":"#% chance on completing a Heist to generate an additional Reveal with Whakano","better":1,"matchers":[{"string":"#% шанс сделать дополнительное открытие с помощью Вакано при удачном завершении Кражи"}],"trade":{"ids":{"explicit":["explicit.stat_3107439245"],"fractured":["fractured.stat_3107439245"]}}} +{"ref":"#% Chance on Frenzy to gain an additional Frenzy Charge","better":1,"matchers":[{"string":"Бешенство имеет #% шанс получить дополнительный заряд ярости"}],"trade":{"ids":{"enchant":["enchant.stat_4243904146"]}}} +{"ref":"#% Chance on Hit to Taunt an Enemy","better":1,"matchers":[{"string":"#% шанс провокации при нанесении удара"},{"string":"#% шанс спровоцировать врага при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_3272283603"]}}} +{"ref":"#% chance on opening a Chest to not generate Alert Level","better":1,"matchers":[{"string":"#% шанс не поднять уровень тревоги при открытии сундука"}],"trade":{"ids":{"explicit":["explicit.stat_3844152269"],"fractured":["fractured.stat_3844152269"]}}} +{"ref":"#% chance that if you would gain a Crab Barrier, you instead gain up to\nyour maximum number of Crab Barriers","better":1,"matchers":[{"string":"#% шанс, что при получении Крабьей преграды вы получите\nмаксимальное число Крабьих преград"}],"trade":{"ids":{"explicit":["explicit.stat_1829869055"]}}} +{"ref":"#% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges","better":1,"matchers":[{"string":"#% шанс, что при получении зарядов выносливости, вы получите максимум зарядов выносливости"}],"trade":{"ids":{"explicit":["explicit.stat_2713233613"]}}} +{"ref":"#% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges","better":1,"matchers":[{"string":"#% шанс, что при получении зарядов ярости, вы получите максимум зарядов ярости"}],"trade":{"ids":{"explicit":["explicit.stat_2119664154"]}}} +{"ref":"#% chance that if you would gain Power Charges, you instead gain up to\nyour maximum number of Power Charges","better":1,"matchers":[{"string":"#% шанс, что при получении зарядов энергии, вы получите максимум зарядов энергии"}],"trade":{"ids":{"explicit":["explicit.stat_1232004574"]}}} +{"ref":"#% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage","better":1,"matchers":[{"string":"При получении свирепости от удара, вы с #% шансом можете получить ваш максимум свирепости"}],"trade":{"ids":{"explicit":["explicit.stat_2710292678"]}}} +{"ref":"#% chance to Aggravate Bleeding on targets you Hit with Attacks","better":1,"matchers":[{"string":"#% шанс усугубить кровотечение на врагах ударами атак"}],"trade":{"ids":{"implicit":["implicit.stat_2705185939"]}}} +{"ref":"#% chance to Avoid being Chilled","better":1,"matchers":[{"string":"#% шанс избежать охлаждения"}],"trade":{"ids":{"explicit":["explicit.stat_3483999943"],"implicit":["implicit.stat_3483999943"],"fractured":["fractured.stat_3483999943"],"enchant":["enchant.stat_3483999943"],"scourge":["scourge.stat_3483999943"],"crafted":["crafted.stat_3483999943"]}}} +{"ref":"#% chance to Avoid being Chilled during Effect","better":1,"matchers":[{"string":"#% шанс избежать охлаждения во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_1053326368","explicit.stat_1619168299"],"fractured":["fractured.stat_1619168299"]}}} +{"ref":"#% chance to Avoid being Chilled during Onslaught","better":1,"matchers":[{"string":"#% шанс избежать охлаждения во время действия Боевого ража"}],"trade":{"ids":{"explicit":["explicit.stat_2872105818"]}}} +{"ref":"#% chance to Avoid being Chilled or Frozen if you have used a Fire Skill Recently","better":1,"matchers":[{"string":"#% шанс избежать охлаждения или заморозки, если недавно вы использовали умение огня"}],"trade":{"ids":{"explicit":["explicit.stat_3706656107"]}}} +{"ref":"#% chance to Avoid being Frozen","better":1,"matchers":[{"string":"#% шанс избежать заморозки"}],"trade":{"ids":{"explicit":["explicit.stat_1514829491"],"implicit":["implicit.stat_1514829491"],"fractured":["fractured.stat_1514829491"],"enchant":["enchant.stat_1514829491"],"scourge":["scourge.stat_1514829491"],"crafted":["crafted.stat_1514829491"]}}} +{"ref":"#% chance to Avoid being Frozen during Effect","better":1,"matchers":[{"string":"#% шанс избежать заморозки во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_2872815301","explicit.stat_475518267"],"fractured":["fractured.stat_475518267"]}}} +{"ref":"#% chance to Avoid being Ignited","better":1,"matchers":[{"string":"#% шанс избежать поджога"}],"trade":{"ids":{"explicit":["explicit.stat_1783006896"],"implicit":["implicit.stat_1783006896"],"fractured":["fractured.stat_1783006896"],"enchant":["enchant.stat_1783006896"],"scourge":["scourge.stat_1783006896"],"crafted":["crafted.stat_1783006896"]}}} +{"ref":"#% chance to Avoid being Ignited during Effect","better":1,"matchers":[{"string":"#% шанс избежать поджога во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_20251177"],"fractured":["fractured.stat_20251177"]}}} +{"ref":"#% chance to Avoid being Ignited while on Low Life","better":1,"matchers":[{"string":"#% шанс избежать поджога при малом количестве здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_4271082039"]}}} +{"ref":"#% chance to Avoid being Ignited, Chilled or Frozen with Her Blessing","better":1,"matchers":[{"string":"#% шанс избежать поджога, охлаждения и заморозки во время действия Её благословения"}],"trade":{"ids":{"explicit":["explicit.stat_1093704472"]}}} +{"ref":"#% chance to Avoid being Interrupted","better":1,"matchers":[{"string":"#% шанс избежать прерывания"}],"trade":{"ids":{"explicit":["explicit.stat_3313284037"],"fractured":["fractured.stat_3313284037"]}}} +{"ref":"#% chance to Avoid being Poisoned","better":1,"matchers":[{"string":"#% шанс избежать отравления"},{"string":"Не может быть отравлен","value":100},{"string":"Невозможно отравить","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3835551335","explicit.stat_4053951709"],"implicit":["implicit.stat_3835551335","implicit.stat_4053951709"],"fractured":["fractured.stat_3835551335","fractured.stat_4053951709"],"enchant":["enchant.stat_4053951709"],"scourge":["scourge.stat_4053951709"]}}} +{"ref":"#% chance to Avoid being Shocked","better":1,"matchers":[{"string":"#% шанс избежать шока"}],"trade":{"ids":{"explicit":["explicit.stat_1871765599"],"implicit":["implicit.stat_1871765599"],"fractured":["fractured.stat_1871765599"],"enchant":["enchant.stat_1871765599"],"scourge":["scourge.stat_1871765599"],"crafted":["crafted.stat_1871765599"]}}} +{"ref":"#% chance to Avoid being Shocked during Effect","better":1,"matchers":[{"string":"#% шанс избежать шока во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_3642618258"],"fractured":["fractured.stat_3642618258"]}}} +{"ref":"#% chance to Avoid being Shocked while Chilled","better":1,"matchers":[{"string":"#% шанс избежать шока будучи охлажденным"}],"trade":{"ids":{"explicit":["explicit.stat_3981960937"]}}} +{"ref":"#% chance to Avoid being Stunned","better":1,"matchers":[{"string":"#% шанс избежать оглушения"},{"string":"Не может быть оглушен","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1694106311","explicit.stat_4262448838"],"implicit":["implicit.stat_4262448838"],"fractured":["fractured.stat_4262448838"],"enchant":["enchant.stat_4262448838"],"scourge":["scourge.stat_4262448838"],"crafted":["crafted.stat_4262448838"]}}} +{"ref":"#% Chance to Avoid being Stunned during Effect","better":1,"matchers":[{"string":"#% шанс избежать оглушения во время действия эффекта"},{"string":"Не может быть оглушен во время действия эффекта","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2312652600"],"fractured":["fractured.stat_2312652600"],"crafted":["crafted.stat_2312652600"]}}} +{"ref":"#% chance to Avoid being Stunned if you've Killed Recently","better":1,"matchers":[{"string":"#% шанс избежать оглушения, если недавно вы совершили убийство"}],"trade":{"ids":{"enchant":["enchant.stat_412905518"]}}} +{"ref":"#% chance to Avoid being Stunned while Channelling Snipe","better":1,"matchers":[{"string":"#% шанс избежать оглушения при поддержании Прицельного выстрела"}],"trade":{"ids":{"enchant":["enchant.stat_3024408350"]}}} +{"ref":"#% chance to Avoid Bleeding","better":1,"matchers":[{"string":"#% шанс избежать кровотечения"},{"string":"Кровотечение не может быть наложено на вас","value":100},{"string":"На вас нельзя наложить кровотечение","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1618589784","explicit.stat_1901158930"],"implicit":["implicit.stat_1618589784","implicit.stat_1901158930"],"fractured":["fractured.stat_1618589784"],"scourge":["scourge.stat_1618589784"],"crafted":["crafted.stat_1618589784"]}}} +{"ref":"#% chance to Avoid Cold Damage from Hits","better":1,"matchers":[{"string":"#% шанс избежать урона от холода от ударов"},{"string":"Избегает получения урона от холода от ударов","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3743375737"],"implicit":["implicit.stat_3743375737"],"fractured":["fractured.stat_3743375737"]}}} +{"ref":"#% chance to Avoid Elemental Ailments","better":1,"matchers":[{"string":"#% шанс избежать стихийных состояний"}],"trade":{"ids":{"explicit":["explicit.stat_3005472710"],"implicit":["implicit.stat_3005472710"],"fractured":["fractured.stat_3005472710"],"scourge":["scourge.stat_3005472710"],"crafted":["crafted.stat_3005472710"]}}} +{"ref":"#% chance to Avoid Elemental Ailments per Grand Spectrum","better":1,"matchers":[{"string":"#% шанс избежать стихийные состояния за каждый Великий образ"}],"trade":{"ids":{"explicit":["explicit.stat_611279043"]}}} +{"ref":"#% chance to Avoid Elemental Ailments while Phasing","better":1,"matchers":[{"string":"#% шанс избежать стихийных состояний в форме призрака"}],"trade":{"ids":{"explicit":["explicit.stat_115351487"]}}} +{"ref":"#% chance to Avoid Elemental Ailments while you have Elusive","better":1,"matchers":[{"string":"#% шанс избежать стихийных состояний, пока на вас действует Неуловимость"}],"trade":{"ids":{"explicit":["explicit.stat_2662268382"],"fractured":["fractured.stat_2662268382"],"enchant":["enchant.stat_2662268382"]}}} +{"ref":"#% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention","better":1,"matchers":[{"string":"#% шанс избежать стихийных состояний ударов во время предотвращения получения душ"}],"trade":{"ids":{"explicit":["explicit.stat_720398262"],"fractured":["fractured.stat_720398262"],"crafted":["crafted.stat_720398262"]}}} +{"ref":"#% chance to Avoid Elemental Damage from Hits per Frenzy Charge","better":1,"matchers":[{"string":"#% шанс избежать урона от стихий от ударов за заряд ярости"},{"string":"Избегает получения урона от стихий от ударов, пока у вас есть заряды ярости","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1649883131"]}}} +{"ref":"#% chance to Avoid Fire Damage from Hits","better":1,"matchers":[{"string":"#% шанс избежать урона от огня от ударов"},{"string":"Избегает получения урона от огня от ударов","value":100}],"trade":{"ids":{"explicit":["explicit.stat_42242677"],"implicit":["implicit.stat_42242677"],"fractured":["fractured.stat_42242677"]}}} +{"ref":"#% chance to Avoid gaining an Affliction","better":1,"matchers":[{"string":"#% шанс избежать получения проклятия"},{"string":"Не может получить проклятие","value":100}],"trade":{"ids":{"explicit":["sanctum.stat_1960517795"]}}} +{"ref":"#% chance to Avoid Lightning Damage from Hits","better":1,"matchers":[{"string":"#% шанс избежать урона от молнии от ударов"},{"string":"Избегает получения урона от молнии от ударов","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2889664727"],"implicit":["implicit.stat_2889664727"],"fractured":["fractured.stat_2889664727"]}}} +{"ref":"#% chance to Avoid Physical Damage from Hits","better":1,"matchers":[{"string":"#% шанс избежать физического урона от ударов"},{"string":"Избегает получения физического урона от ударов","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2415497478"],"fractured":["fractured.stat_2415497478"]}}} +{"ref":"#% chance to avoid Projectiles","better":1,"matchers":[{"string":"#% шанс избежать снаряда"},{"string":"Избегает снаряды","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3452269808"],"fractured":["fractured.stat_3452269808"]}}} +{"ref":"#% chance to avoid Projectiles if you've taken Projectile Damage Recently","better":1,"matchers":[{"string":"#% шанс избежать снарядов если недавно вы получали урон от снарядов"}],"trade":{"ids":{"explicit":["explicit.stat_3114696875"]}}} +{"ref":"#% chance to Avoid Projectiles while Phasing","better":1,"matchers":[{"string":"#% шанс избежать снарядов в Форме призрака"}],"trade":{"ids":{"explicit":["explicit.stat_3635120731"]}}} +{"ref":"#% chance to Avoid Resolve loss from Enemy Hits if you've been Hit recently","better":1,"matchers":[{"string":"#% шанс избежать потерю Решимости от ударов врага, если недавно вы получали удар"}],"trade":{"ids":{"explicit":["sanctum.stat_2284543592"]}}} +{"ref":"#% chance to be inflicted with Bleeding when Hit by an Attack","better":1,"matchers":[{"string":"#% шанс получить кровотечение при получении удара от атаки"}],"trade":{"ids":{"explicit":["explicit.stat_2155467472"]}}} +{"ref":"#% chance to Blind Enemies on Critical Strike","better":1,"matchers":[{"string":"#% шанс ослепить врагов при нанесении критического удара"}],"trade":{"ids":{"explicit":["explicit.stat_3983981705"]}}} +{"ref":"#% chance to Blind Enemies on hit","better":1,"matchers":[{"string":"#% шанс ослепить врагов при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_2301191210"],"fractured":["fractured.stat_2301191210"],"crafted":["crafted.stat_2301191210"]}}} +{"ref":"#% chance to Blind Enemies on Hit with Attacks","better":1,"matchers":[{"string":"#% шанс ослепить врагов при нанесении удара атаками"},{"string":"Ослепляет врагов при нанесении удара атаками","value":100}],"trade":{"ids":{"explicit":["explicit.stat_318953428"],"implicit":["implicit.stat_318953428"],"fractured":["fractured.stat_318953428"]}}} +{"ref":"#% chance to Blind Enemies on Hit with Melee Weapons","better":1,"matchers":[{"string":"#% шанс ослепить врагов ударами оружием ближнего боя"}],"trade":{"ids":{"implicit":["implicit.stat_2795267150"]}}} +{"ref":"#% chance to Blind Enemies when they Hit you","better":1,"matchers":[{"string":"#% шанс ослепить врагов, когда они наносят по вам удар"}],"trade":{"ids":{"scourge":["scourge.stat_26216403"]}}} +{"ref":"#% chance to Blind Enemies which Hit you while affected by Grace","better":1,"matchers":[{"string":"Под действием Грации вы получаете #% шанс ослепить врагов, которые нанесли вам удар"},{"string":"Под действием Грации вы ослепляете врагов, которые нанесли вам удар","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2548097895"]}}} +{"ref":"#% chance to Blind nearby Enemies when gaining Her Blessing","better":1,"matchers":[{"string":"#% шанс ослепить ближайших врагов при получении Её благословления"},{"string":"Всегда ослепляет ближайших врагов при получении Её благословления","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2327728343"]}}} +{"ref":"#% Chance to Block Attack Damage","better":1,"matchers":[{"string":"#% шанс блокировать урон от атак"}],"trade":{"ids":{"explicit":["explicit.stat_1702195217","explicit.stat_2530372417"],"implicit":["implicit.stat_1702195217","implicit.stat_2530372417"],"fractured":["fractured.stat_2530372417"],"scourge":["scourge.stat_1702195217"],"crafted":["crafted.stat_1702195217","crafted.stat_2530372417"]}}} +{"ref":"#% Chance to Block Spell Damage","better":1,"matchers":[{"string":"#% шанс блокировать урон от чар"}],"trade":{"ids":{"explicit":["explicit.stat_19803471","explicit.stat_2881111359","explicit.stat_561307714"],"implicit":["implicit.stat_2881111359","implicit.stat_561307714"],"fractured":["fractured.stat_561307714"],"scourge":["scourge.stat_19803471"],"crafted":["crafted.stat_561307714"]}}} +{"ref":"#% Chance to cause Bleeding Enemies to Flee on hit","better":1,"matchers":[{"string":"#% шанс испугать истекающих кровью врагов при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_2072206041"]}}} +{"ref":"#% chance to Cause Bleeding on Critical Strike","better":1,"matchers":[{"string":"#% шанс наложить кровотечение при критическом ударе"},{"string":"Накладывает кровотечение при критическом ударе","value":100},{"string":"50% шанс наложить кровотечение при критическом ударе","value":50}],"trade":{"ids":{"explicit":["explicit.stat_513681673"]}}} +{"ref":"#% chance to cause Bleeding on Hit","better":1,"matchers":[{"string":"#% шанс наложить кровотечение при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_1519615863"],"implicit":["implicit.stat_1519615863"],"fractured":["fractured.stat_1519615863"],"enchant":["enchant.stat_1519615863"],"crafted":["crafted.stat_1519615863"]}}} +{"ref":"#% chance to cause Bleeding with Melee Weapons","better":1,"matchers":[{"string":"#% шанс вызвать кровотечение оружием ближнего боя"}],"trade":{"ids":{"implicit":["implicit.stat_1630041051"]}}} +{"ref":"#% chance to cause Enemies to Flee on use","better":1,"matchers":[{"string":"#% шанс испугать врагов при использовании"}],"trade":{"ids":{"explicit":["explicit.stat_1457911472"]}}} +{"ref":"#% Chance to Cause Monster to Flee on Block","better":1,"matchers":[{"string":"#% шанс испугать врагов при блоке"}],"trade":{"ids":{"explicit":["explicit.stat_3212461220"]}}} +{"ref":"#% chance to Cause Monsters to Flee","better":1,"matchers":[{"string":"#% шанс испугать врагов"}],"trade":{"ids":{"explicit":["explicit.stat_3181974858"],"implicit":["implicit.stat_3181974858"]}}} +{"ref":"#% chance to Cause Poison on Critical Strike","better":1,"matchers":[{"string":"#% шанс отравить при критическом ударе"},{"string":"Отравляет при критическом ударе","value":100}],"trade":{"ids":{"explicit":["explicit.stat_374737750"]}}} +{"ref":"#% chance to Chill Attackers for 4 seconds on Block","better":1,"matchers":[{"string":"#% шанс наложить охлаждение на 4 секунды на атакующих врагов при блоке"},{"string":"Накладывает охлаждение на 4 секунды на атакующих врагов при блоке","value":100}],"trade":{"ids":{"explicit":["explicit.stat_864879045"],"fractured":["fractured.stat_864879045"],"scourge":["scourge.stat_864879045"]}}} +{"ref":"#% chance to Cover Enemies in Ash on Hit","better":1,"matchers":[{"string":"#% шанс покрыть врагов пеплом при нанесении удара"},{"string":"Покрывает врагов пеплом при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_324460247"]}}} +{"ref":"#% chance to cover Enemies in Ash when they Hit you","better":1,"matchers":[{"string":"#% шанс покрыть врагов пеплом при получении удара"},{"string":"При получении удара покрывает врагов пеплом","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3748879662"],"fractured":["fractured.stat_3748879662"]}}} +{"ref":"#% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit","better":1,"matchers":[{"string":"#% шанс на 10 секунд покрыть пеплом редких или уникальных врагов при нанесении удара по ним"},{"string":"Покрывает пеплом редких или уникальных врагов на 10 секунд при нанесении удара по ним","value":100}],"trade":{"ids":{"explicit":["explicit.stat_240642724"]}}} +{"ref":"#% chance to create a Smoke Cloud when Hit","better":1,"matchers":[{"string":"#% шанс создать облако дыма при получении удара"},{"string":"Создаёт облако дыма при получении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_953314356"]}}} +{"ref":"#% chance to create an additional Animate Weapon copy","better":1,"matchers":[{"string":"Живое оружие имеет #% шанс создать дополнительную копию"}],"trade":{"ids":{"enchant":["enchant.stat_3711386843"]}}} +{"ref":"#% chance to create Chilled Ground when Hit with an Attack","better":1,"matchers":[{"string":"#% шанс создать замерзшую землю при нанесении удара атакой"},{"string":"Создает замерзшую землю при нанесении удара атакой","value":100}],"trade":{"ids":{"explicit":["explicit.stat_358040686"]}}} +{"ref":"#% chance to create Chilled Ground when you Freeze an Enemy","better":1,"matchers":[{"string":"#% шанс создать замерзшую землю при заморозке врага"},{"string":"Создает замерзшую землю при заморозке врага","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2901262227"],"enchant":["enchant.stat_2901262227"]}}} +{"ref":"#% chance to create Consecrated Ground when Hit, lasting 8 seconds","better":1,"matchers":[{"string":"#% шанс на 8 секунд создать освящённую землю при получении удара"},{"string":"На 8 секунд создаёт освящённую землю при получении удара","value":100}],"trade":{"ids":{"scourge":["scourge.stat_1968872681"]}}} +{"ref":"#% chance to create Consecrated Ground when you Block","better":1,"matchers":[{"string":"#% шанс создать освящённую землю при блоке"}],"trade":{"ids":{"explicit":["explicit.stat_573884683"]}}} +{"ref":"#% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds","better":1,"matchers":[{"string":"#% шанс на 8 секунд создать освящённую землю при нанесении удара по редкому или уникальному врагу"}],"trade":{"ids":{"explicit":["explicit.stat_3135669941"]}}} +{"ref":"#% chance to create Consecrated Ground when you Shatter an Enemy","better":1,"matchers":[{"string":"#% шанс создать освящённую землю, когда вы разбиваете врага"},{"string":"Создаёт освящённую землю, когда вы разбиваете врага","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4148932984"]}}} +{"ref":"#% chance to create Desecrated Ground when you Block","better":1,"matchers":[{"string":"#% шанс при блоке создать осквернённую землю"}],"trade":{"ids":{"explicit":["explicit.stat_3685028559"]}}} +{"ref":"#% chance to create Profane Ground on Critical\nStrike if Intelligence is your highest Attribute","better":1,"matchers":[{"string":"#% шанс создать нечестивую землю при нанесении критического удара, если интеллект является вашей наивысшей характеристикой"}],"trade":{"ids":{"explicit":["explicit.stat_2047846165"]}}} +{"ref":"#% chance to create Shocked Ground when Hit","better":1,"matchers":[{"string":"#% шанс создать заряженную землю при получении удара"},{"string":"Создаёт заряженную землю при получении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3355479537"]}}} +{"ref":"#% chance to Crush on Hit","better":1,"matchers":[{"string":"#% шанс сокрушить при нанесении удара"},{"string":"Сокрушает при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2228892313"],"fractured":["fractured.stat_2228892313"]}}} +{"ref":"#% chance to Curse Enemies which Hit you with a random Hex, ignoring Curse Limit","better":1,"matchers":[{"string":"#% шанс проклясть врагов случайной порчей при получении от них удара, игнорируя лимит проклятий"},{"string":"Проклинает врагов случайной порчей при получении от них удара, игнорируя лимит проклятий","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2674214144"]}}} +{"ref":"#% chance to Curse Enemies with Socketed Hex Curse Gem on Hit","better":1,"matchers":[{"string":"#% шанс проклясть врагов размещенным камнем проклятия порчи при нанесении удара"},{"string":"Проклинает врагов размещенным камнем проклятия порчи при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1352418057"],"fractured":["fractured.stat_1352418057"]}}} +{"ref":"#% chance to Curse non-Cursed Enemies with a random Hex on Hit","better":1,"matchers":[{"string":"#% шанс проклясть непроклятых врагов случайной порчей при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_1726444796"]}}} +{"ref":"#% chance to Curse you with Silence when Hit","better":1,"matchers":[{"string":"#% шанс получить Молчание при получении удара"},{"string":"Получает Молчание при получении удара","value":100}],"trade":{"ids":{"scourge":["scourge.stat_3370064078"]}}} +{"ref":"#% chance to deal Double Damage","better":1,"matchers":[{"string":"#% шанс нанести двойной урон"}],"trade":{"ids":{"explicit":["explicit.stat_1172810729"],"implicit":["implicit.stat_1172810729"],"fractured":["fractured.stat_1172810729"],"crafted":["crafted.stat_1172810729"]}}} +{"ref":"#% chance to deal Double Damage if you have Stunned an Enemy Recently","better":1,"matchers":[{"string":"#% шанс нанести двойной урон, если недавно вы оглушали врага"}],"trade":{"ids":{"explicit":["explicit.stat_4224978303"],"fractured":["fractured.stat_4224978303"]}}} +{"ref":"#% chance to deal Double Damage if you've cast Vulnerability in the past 10 seconds","better":1,"matchers":[{"string":"#% шанс нанести двойной урон, если вы сотворяли Беззащитность за последние 10 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_2304988974"]}}} +{"ref":"#% chance to deal Double Damage while affected by Glorious Madness","better":1,"matchers":[{"string":"#% шанс нанести двойной урон под действием Великолепного безумия"}],"trade":{"ids":{"explicit":["explicit.stat_1299868012"]}}} +{"ref":"#% chance to deal Double Damage while Focused","better":1,"matchers":[{"string":"#% шанс нанести двойной урон, пока вы сфокусированы"},{"string":"Вы наносите двойной урон, пока сфокусированы","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2908886986"],"fractured":["fractured.stat_2908886986"],"crafted":["crafted.stat_2908886986"]}}} +{"ref":"#% chance to deal Double Damage while using Pride","better":1,"matchers":[{"string":"#% шанс нанести двойной урон под действием Гордости"}],"trade":{"ids":{"explicit":["explicit.stat_3371719014"]}}} +{"ref":"#% chance to deal Double Damage while you have at least 200 Strength","better":1,"matchers":[{"string":"#% шанс нанести двойной урон, пока у вас есть минимум 200 силы"}],"trade":{"ids":{"explicit":["explicit.stat_1535606605"]}}} +{"ref":"#% chance to deal Triple Damage","better":1,"matchers":[{"string":"#% шанс нанести тройной урон"},{"string":"Наносит тройной урон","value":100}],"trade":{"ids":{"scourge":["scourge.stat_2445189705"]}}} +{"ref":"#% chance to deal Triple Damage while you have at least 400 Strength","better":1,"matchers":[{"string":"#% шанс нанести тройной урон, пока у вас есть минимум 400 силы"}],"trade":{"ids":{"explicit":["explicit.stat_147155654"]}}} +{"ref":"#% chance to Defend with 200% of Armour","better":1,"matchers":[{"string":"#% шанс на защиту с удвоенной броней"}],"trade":{"ids":{"explicit":["explicit.stat_327253797"],"implicit":["implicit.stat_327253797"],"fractured":["fractured.stat_327253797"]}}} +{"ref":"#% chance to double Stun Duration","better":1,"matchers":[{"string":"#% шанс удвоить длительность оглушения"}],"trade":{"ids":{"explicit":["explicit.stat_2622251413"],"implicit":["implicit.stat_2622251413"]}}} +{"ref":"#% chance to Extinguish Enemies on Hit","better":1,"matchers":[{"string":"#% шанс наложить Усмирение на врагов при нанесении удара"}],"trade":{"ids":{"implicit":["implicit.stat_49183689"]}}} +{"ref":"#% chance to Freeze","better":1,"matchers":[{"string":"#% шанс заморозить"},{"string":"Всегда замораживает","value":100},{"string":"Всегда замораживает врагов при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2309614417"],"implicit":["implicit.stat_2309614417"],"fractured":["fractured.stat_2309614417"],"enchant":["enchant.stat_2309614417"],"scourge":["scourge.stat_2309614417"],"crafted":["crafted.stat_2309614417"]}}} +{"ref":"#% chance to Freeze during any Flask Effect","better":1,"matchers":[{"string":"#% шанс наложить заморозку во время действия эффекта любого флакона"}],"trade":{"ids":{"explicit":["explicit.stat_2332726055"]}}} +{"ref":"#% chance to Freeze Enemies for 1 second when they Hit you","better":1,"matchers":[{"string":"#% шанс заморозить врагов на 1 секунду, когда они наносят по вам удар"}],"trade":{"ids":{"explicit":["explicit.stat_2168861013"]}}} +{"ref":"#% chance to Freeze with Melee Weapons","better":1,"matchers":[{"string":"#% шанс заморозить оружием ближнего боя"}],"trade":{"ids":{"implicit":["implicit.stat_1858426568"]}}} +{"ref":"#% chance to Freeze, Shock and Ignite","better":1,"matchers":[{"string":"#% шанс наложить заморозку, шок и поджог"},{"string":"Всегда накладывает заморозку, шок и поджог","value":100}],"trade":{"ids":{"explicit":["explicit.stat_800141891"],"implicit":["implicit.stat_800141891"],"fractured":["fractured.stat_800141891"]}}} +{"ref":"#% chance to Freeze, Shock and Ignite during Effect","better":1,"matchers":[{"string":"#% шанс заморозить, наложить шок или поджечь во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_97064873"],"fractured":["fractured.stat_97064873"]}}} +{"ref":"#% chance to Freeze, Shock and Ignite if you haven't Crit Recently","better":1,"matchers":[{"string":"#% шанс заморозить, наложить шок или поджечь, если недавно вы не наносили критических ударов"}],"trade":{"ids":{"enchant":["enchant.stat_3915210550"]}}} +{"ref":"#% chance to gain 25% of Non-Chaos Damage with Hits as Extra Chaos Damage","better":1,"matchers":[{"string":"Ваши удары имеют #% шанс нанести 25% от урона не-хаосом в виде дополнительного урона хаосом"}],"trade":{"ids":{"explicit":["explicit.stat_1741279188"]}}} +{"ref":"#% chance to gain a Divine Charge on Hit","better":1,"matchers":[{"string":"#% шанс получить божественный заряд при нанесении удара"},{"string":"Дарует божественный заряд при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_108334292"]}}} +{"ref":"#% chance to gain a Flask Charge when you deal a Critical Strike","better":1,"matchers":[{"string":"#% шанс получить заряд флакона, когда вы наносите критический удар"},{"string":"Дарует заряд флакона, когда вы наносите критический удар","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1546046884","explicit.stat_2858921304","explicit.stat_3738001379"],"fractured":["fractured.stat_3738001379"]}}} +{"ref":"#% chance to gain a Flask Charge when you deal a Critical Strike while at maximum Frenzy Charges","better":1,"matchers":[{"string":"#% шанс получить заряд флакона, когда вы наносите критический удар при максимуме зарядов ярости"},{"string":"Дарует заряд флакона, когда вы наносите критический удар при максимуме зарядов ярости","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3371432622"]}}} +{"ref":"#% chance to gain a Frenzy Charge for each Enemy you hit with a Critical Strike","better":1,"matchers":[{"string":"#% шанс получить заряд ярости за каждого врага, по которому вы наносите критический удар"},{"string":"Дарует заряд ярости за каждого врага, по которому вы наносите критический удар","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1302845655"]}}} +{"ref":"#% chance to gain a Frenzy Charge on Critical Strike","better":1,"matchers":[{"string":"#% шанс получить заряд ярости при нанесении критического удара"},{"string":"Дарует заряд ярости при нанесении критического удара","value":100},{"string":"Заряд ярости при нанесении критического удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3032585258","explicit.stat_398702949"],"fractured":["fractured.stat_3032585258"],"crafted":["crafted.stat_3032585258"]}}} +{"ref":"#% chance to gain a Frenzy Charge on Critical Strike at Close Range","better":1,"matchers":[{"string":"#% шанс получить заряд ярости при нанесении критического удара с близкого расстояния"}],"trade":{"ids":{"explicit":["explicit.stat_911695185"]}}} +{"ref":"#% chance to gain a Frenzy Charge on Hit","better":1,"matchers":[{"string":"#% шанс получить заряд ярости при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_2323242761"],"implicit":["implicit.stat_2323242761"],"fractured":["fractured.stat_2323242761"]}}} +{"ref":"#% chance to gain a Frenzy Charge on Hit while Blinded","better":1,"matchers":[{"string":"#% шанс получить заряд ярости при нанесении удара будучи ослепленным"}],"trade":{"ids":{"explicit":["explicit.stat_2478268100"]}}} +{"ref":"#% chance to gain a Frenzy Charge on Hitting an Enemy with no Evasion Rating","better":1,"matchers":[{"string":"#% шанс получить заряд ярости при нанесении удара по врагу без уклонения"}],"trade":{"ids":{"explicit":["explicit.stat_471924383"]}}} +{"ref":"#% chance to gain a Frenzy Charge on Kill","better":1,"matchers":[{"string":"#% шанс получить заряд ярости при убийстве"},{"string":"Дарует заряд ярости при убийстве","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1826802197"],"implicit":["implicit.stat_1826802197"],"fractured":["fractured.stat_1826802197"],"enchant":["enchant.stat_1826802197"],"scourge":["scourge.stat_1826802197"]}}} +{"ref":"#% chance to gain a Frenzy Charge on Killing a Frozen Enemy","better":1,"matchers":[{"string":"#% шанс получить заряд ярости при убийстве замороженного врага"},{"string":"Заряд ярости при убийстве замороженного врага","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2230931659"]}}} +{"ref":"#% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons","better":1,"matchers":[{"string":"#% шанс получить заряд ярости при убийстве врага с 5 или более зарядами яда"}],"trade":{"ids":{"explicit":["explicit.stat_496822696"]}}} +{"ref":"#% chance to gain a Frenzy Charge when Hit","better":1,"matchers":[{"string":"#% шанс получить заряд ярости при получении удара"}],"trade":{"ids":{"explicit":["explicit.stat_881914531"]}}} +{"ref":"#% chance to gain a Frenzy Charge when you Block","better":1,"matchers":[{"string":"#% шанс получить заряд ярости при блоке"},{"string":"Дарует заряд ярости при блоке","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3769211656"],"fractured":["fractured.stat_3769211656"]}}} +{"ref":"#% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy","better":1,"matchers":[{"string":"#% шанс получить заряд ярости при нанесении удара по редкому или уникальному врагу"}],"trade":{"ids":{"explicit":["explicit.stat_4179663748"],"fractured":["fractured.stat_4179663748"]}}} +{"ref":"#% chance to gain a Frenzy Charge when you Stun an Enemy","better":1,"matchers":[{"string":"#% шанс получить заряд ярости при оглушении врага"}],"trade":{"ids":{"explicit":["explicit.stat_1695720239"]}}} +{"ref":"#% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy","better":1,"matchers":[{"string":"#% шанс получить заряд ярости, если враг вызвал срабатывание вашей ловушки"},{"string":"Получает заряд ярости, если враг вызвал срабатывание вашей ловушки","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3738335639"]}}} +{"ref":"#% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage","better":1,"matchers":[{"string":"#% шанс получить заряд энергии, при отбрасывании врага уроном в ближнем бою"},{"string":"Заряд энергии при отбрасывании врага уроном в ближнем бою","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2179619644"]}}} +{"ref":"#% chance to gain a Power Charge on Critical Strike","better":1,"matchers":[{"string":"#% шанс получить заряд энергии при нанесении критического удара"},{"string":"Заряд энергии при нанесении критического удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3814876985"],"implicit":["implicit.stat_3814876985"],"fractured":["fractured.stat_3814876985"]}}} +{"ref":"#% Chance to gain a Power Charge on Critical Strike with Ice Spear","better":1,"matchers":[{"string":"#% шанс получить заряд энергии при нанесении критического удара Ледяным копьем"}],"trade":{"ids":{"enchant":["enchant.stat_3232905239"]}}} +{"ref":"#% chance to gain a Power Charge on Hit","better":1,"matchers":[{"string":"#% шанс получить заряд энергии при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_1453197917"]}}} +{"ref":"#% chance to Gain a Power Charge on Hit while Poisoned","better":1,"matchers":[{"string":"#% шанс получить заряд энергии при нанесении удара пока вы отравлены"},{"string":"Дарует заряд энергии при нанесении удара пока вы отравлены","value":100}],"trade":{"ids":{"explicit":["explicit.stat_800598487"]}}} +{"ref":"#% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web","better":1,"matchers":[{"string":"#% шанс получить заряд энергии при нанесении удара по врагу, на которого действует Паучья паутина"}],"trade":{"ids":{"explicit":["explicit.stat_273206351"]}}} +{"ref":"#% chance to gain a Power Charge on Kill","better":1,"matchers":[{"string":"#% шанс получить заряд энергии при убийстве"},{"string":"Дарует заряд энергии при убийстве","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2483795307"],"implicit":["implicit.stat_2483795307"],"fractured":["fractured.stat_2483795307"],"enchant":["enchant.stat_2483795307"],"scourge":["scourge.stat_2483795307"]}}} +{"ref":"#% chance to gain a Power Charge on Killing a Frozen Enemy","better":1,"matchers":[{"string":"#% шанс получить заряд энергии при убийстве замороженного врага"},{"string":"Получает заряд энергии при убийстве замороженного врага","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3607154250"],"fractured":["fractured.stat_3607154250"]}}} +{"ref":"#% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons","better":1,"matchers":[{"string":"#% шанс получить заряд энергии при убийстве врага с 5 или менее зарядами яда"}],"trade":{"ids":{"explicit":["explicit.stat_352612932"]}}} +{"ref":"#% chance to gain a Power Charge when you Block","better":1,"matchers":[{"string":"#% шанс получить заряд энергии при блоке"}],"trade":{"ids":{"explicit":["explicit.stat_3945147290"],"fractured":["fractured.stat_3945147290"]}}} +{"ref":"#% chance to gain a Power Charge when you Cast a Curse Spell","better":1,"matchers":[{"string":"#% шанс получить заряд энергии, когда вы сотворяете чары проклятий"}],"trade":{"ids":{"explicit":["explicit.stat_322835727"]}}} +{"ref":"#% chance to gain a Power Charge when you Stun","better":1,"matchers":[{"string":"#% шанс получить заряд энергии если вы оглушаете"}],"trade":{"ids":{"explicit":["explicit.stat_3470535775"]}}} +{"ref":"#% chance to gain a Power Charge when you Throw a Trap","better":1,"matchers":[{"string":"#% шанс получить заряд энергии при броске ловушки"},{"string":"Заряд энергии при броске ловушки","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1936544447"]}}} +{"ref":"#% chance to gain a Power Charge when you use a Vaal Skill","better":1,"matchers":[{"string":"#% шанс получить заряд энергии, когда вы используете умение ваал"},{"string":"Дарует заряд энергии, когда вы используете умение ваал","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2383388829"]}}} +{"ref":"#% chance to gain a Power, Frenzy or Endurance Charge on Kill","better":1,"matchers":[{"string":"#% шанс получить заряд ярости, энергии или выносливости при убийстве"},{"string":"Дарует заряд ярости, энергии или выносливости при убийстве","value":100}],"trade":{"ids":{"explicit":["explicit.stat_498214257"],"fractured":["fractured.stat_498214257"]}}} +{"ref":"#% chance to gain a Siphoning Charge when you use a Skill","better":1,"matchers":[{"string":"#% шанс получить заряд переливания при использовании умения"},{"string":"Дарует заряд переливания при использовании умения","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2922737717"]}}} +{"ref":"#% chance to gain a Spirit Charge on Kill","better":1,"matchers":[{"string":"#% шанс получить заряд души при убийстве"},{"string":"Дарует заряд души при убийстве","value":100}],"trade":{"ids":{"explicit":["explicit.stat_570644802"]}}} +{"ref":"#% chance to gain Adrenaline for 2 Seconds when Leech is\nremoved by Filling Unreserved Life","better":1,"matchers":[{"string":"#% шанс получить Адреналин на 2 секунды, когда похищение удаляется в результате заполнения неудержанного здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_414749123"]}}} +{"ref":"#% chance to gain Alchemist's Genius when you use a Flask","better":1,"matchers":[{"string":"#% шанс получить Гениальность алхимика при использовании флакона"},{"string":"Вы получаете Гениальность алхимика при использовании флакона","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2989883253"],"fractured":["fractured.stat_2989883253"]}}} +{"ref":"#% Chance to gain an additional Power Charge on Kill with Power Siphon","better":1,"matchers":[{"string":"#% шанс получить дополнительный заряд энергии при убийстве Переливом энергии"}],"trade":{"ids":{"enchant":["enchant.stat_3609207587"]}}} +{"ref":"#% chance to gain an additional Vaal Soul on Kill","better":1,"matchers":[{"string":"#% шанс на получение дополнительной души ваал при убийстве"}],"trade":{"ids":{"explicit":["explicit.stat_1962922582"],"implicit":["implicit.stat_1962922582"],"fractured":["fractured.stat_1962922582"]}}} +{"ref":"#% chance to gain an additional Vaal Soul per Enemy Shattered","better":1,"matchers":[{"string":"#% шанс на получение дополнительной души ваал за каждого разбитого врага"}],"trade":{"ids":{"explicit":["explicit.stat_1633381214"]}}} +{"ref":"#% chance to gain an Endurance Charge on Critical Strike","better":1,"matchers":[{"string":"#% шанс получить заряд выносливости при нанесении критического удара"},{"string":"Заряд выносливости при нанесении критического удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2542650946"],"fractured":["fractured.stat_2542650946"]}}} +{"ref":"#% chance to gain an Endurance Charge on Hitting an Enemy with no Armour","better":1,"matchers":[{"string":"#% шанс получить заряд выносливости при нанесении удара по врагу без брони"}],"trade":{"ids":{"explicit":["explicit.stat_3488208924"]}}} +{"ref":"#% chance to gain an Endurance Charge on Kill","better":1,"matchers":[{"string":"#% шанс получить заряд выносливости при убийстве"},{"string":"Заряд выносливости при убийстве","value":100},{"string":"Получает заряд выносливости при убийстве","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1054322244","explicit.stat_2064503808"],"implicit":["implicit.stat_1054322244"],"fractured":["fractured.stat_1054322244"],"enchant":["enchant.stat_1054322244"],"scourge":["scourge.stat_1054322244"]}}} +{"ref":"#% chance to gain an Endurance Charge when you are Hit","better":1,"matchers":[{"string":"#% шанс получить заряд выносливости при получении удара"},{"string":"Заряд выносливости при получении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1514657588"]}}} +{"ref":"#% chance to gain an Endurance Charge when you Block","better":1,"matchers":[{"string":"#% шанс получить заряд выносливости при блоке"},{"string":"Заряд выносливости при блоке","value":100}],"trade":{"ids":{"explicit":["explicit.stat_417188801"],"fractured":["fractured.stat_417188801"]}}} +{"ref":"#% chance to gain an Endurance Charge when you Hit a Bleeding Enemy","better":1,"matchers":[{"string":"#% шанс получить заряд выносливости при нанесении удара по истекающему кровью врагу"}],"trade":{"ids":{"explicit":["explicit.stat_1536266147"],"fractured":["fractured.stat_1536266147"]}}} +{"ref":"#% chance to gain an Endurance Charge when you Stun an Enemy","better":1,"matchers":[{"string":"#% шанс получить заряд выносливости при оглушении врага"}],"trade":{"ids":{"explicit":["explicit.stat_1582887649"],"implicit":["implicit.stat_1582887649"]}}} +{"ref":"#% chance to gain an Endurance Charge when you Taunt an Enemy","better":1,"matchers":[{"string":"#% шанс получить заряд выносливости, когда вы провоцируете врага"}],"trade":{"ids":{"explicit":["explicit.stat_1657549833"]}}} +{"ref":"#% chance to gain an Endurance, Frenzy or Power Charge when any\nof your Traps are Triggered by an Enemy","better":1,"matchers":[{"string":"#% шанс получить заряд выносливости, ярости или энергии,\nесли враг вызвал срабатывание любой из ваших ловушек"}],"trade":{"ids":{"explicit":["explicit.stat_710805027"]}}} +{"ref":"#% chance to Gain Arcane Surge on Hit with Spells","better":1,"matchers":[{"string":"#% шанс получить Колдовской выброс при нанесении удара чарами"},{"string":"Дарует Колдовской выброс при нанесении удара чарами","value":100}],"trade":{"ids":{"implicit":["implicit.stat_4208096430"]}}} +{"ref":"#% chance to Gain Arcane Surge on Hit with Spells while at maximum Power Charges","better":1,"matchers":[{"string":"#% шанс получить Колдовской выброс при нанесении удара чарами при максимуме зарядов энергии"},{"string":"Дарует Колдовской выброс при нанесении удара чарами при максимуме зарядов энергии","value":100}],"trade":{"ids":{"explicit":["explicit.stat_813119588"]}}} +{"ref":"#% chance to Gain Arcane Surge when you deal a Critical Strike","better":1,"matchers":[{"string":"#% шанс получить Колдовской выброс, когда вы наносите критический удар"},{"string":"Дарует Колдовской выброс, когда вы наносите критический удар","value":100}],"trade":{"ids":{"explicit":["explicit.stat_446027070"],"fractured":["fractured.stat_446027070"]}}} +{"ref":"#% chance to gain Arcane Surge when you Kill an Enemy","better":1,"matchers":[{"string":"#% шанс получить Колдовской выброс, когда вы убиваете врага"},{"string":"Дарует Колдовской выброс, когда вы убиваете врага","value":100}],"trade":{"ids":{"explicit":["explicit.stat_573223427"],"fractured":["fractured.stat_573223427"],"crafted":["crafted.stat_573223427"]}}} +{"ref":"#% chance to gain Chaotic Might for 10 seconds on Kill","better":1,"matchers":[{"string":"#% шанс получить Мощь Хаоса на 10 секунд при убийстве"},{"string":"Дарует Мощь Хаоса на 10 секунд при убийстве","value":100}],"trade":{"ids":{"explicit":["explicit.stat_562371749"],"enchant":["enchant.stat_562371749"]}}} +{"ref":"#% chance to gain Elusive on Critical Strike","better":1,"matchers":[{"string":"#% шанс получить Неуловимость при нанесении критического удара"},{"string":"Дарует Неуловимость при нанесении критического удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2896192589"],"fractured":["fractured.stat_2896192589"]}}} +{"ref":"#% chance to gain Her Blessing for 3 seconds when you Ignite an Enemy","better":1,"matchers":[{"string":"#% шанс получить Её благословление на три секунды при поджоге врага"},{"string":"Её благословление на три секунды при поджоге врага","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4203400545"]}}} +{"ref":"#% chance to gain Onslaught for 10 seconds on Kill","better":1,"matchers":[{"string":"#% шанс получить эффект Боевой раж на 10 секунд при убийстве"},{"string":"Эффект Боевой раж на 10 секунд при убийстве","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2453026567"]}}} +{"ref":"#% chance to gain Onslaught for 3 seconds when Hit","better":1,"matchers":[{"string":"#% шанс получить эффект Боевой раж на 3 секунды при получении удара"},{"string":"Эффект Боевой раж на 3 секунды при получении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3049760680"],"fractured":["fractured.stat_3049760680"]}}} +{"ref":"#% chance to Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges","better":1,"matchers":[{"string":"#% шанс получить эффект Боевой раж на 4 секунды при нанесении удара при максимуме зарядов ярости"},{"string":"Дарует эффект Боевой раж на 4 секунды при нанесении удара при максимуме зарядов ярости","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2408544213"]}}} +{"ref":"#% chance to gain Onslaught for 4 seconds on Kill","better":1,"matchers":[{"string":"#% шанс получить эффект Боевого ража на 4 секунды при убийстве"},{"string":"#% шанс получить эффект Боевой раж на 4 секунды при убийстве"},{"string":"Боевой раж на 4 секунды при убийстве","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3023957681","explicit.stat_665823128"],"implicit":["implicit.stat_3023957681"],"fractured":["fractured.stat_3023957681","fractured.stat_665823128"],"scourge":["scourge.stat_3023957681"],"crafted":["crafted.stat_3023957681"]}}} +{"ref":"#% chance to gain Onslaught for 4 Seconds when Leech is\nremoved by Filling Unreserved Life","better":1,"matchers":[{"string":"#% шанс получить Боевой раж на 4 секунды, когда похищение удаляется в результате заполнения неудержанного здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_3106724907"]}}} +{"ref":"#% chance to gain Onslaught when you use a Flask","better":1,"matchers":[{"string":"#% шанс получить эффект Боевой раж при использовании флакона"}],"trade":{"ids":{"explicit":["explicit.stat_1324450398"]}}} +{"ref":"#% chance to gain Phasing for 4 seconds on Kill","better":1,"matchers":[{"string":"#% шанс войти в Форму призрака на 4 секунды при убийстве"},{"string":"Форма призрака на 4 секунды при убийстве","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2918708827"],"fractured":["fractured.stat_2918708827"],"scourge":["scourge.stat_2918708827"]}}} +{"ref":"#% chance to gain Unholy Might for 3 seconds on Kill","better":1,"matchers":[{"string":"#% шанс получить Нечестивое могущество на 3 секунды при убийстве"},{"string":"Получает Нечестивое могущество на 3 секунды при убийстве","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3562211447"],"implicit":["implicit.stat_3562211447"],"fractured":["fractured.stat_3562211447"],"scourge":["scourge.stat_3562211447"]}}} +{"ref":"#% chance to Gain Unholy Might for 4 seconds on Melee Kill","better":1,"matchers":[{"string":"#% шанс получить Нечестивое могущество на 4 секунды при убийстве в ближнем бою"}],"trade":{"ids":{"explicit":["explicit.stat_3166317791"],"fractured":["fractured.stat_3166317791"]}}} +{"ref":"#% chance to grant a Frenzy Charge to nearby Allies on Hit","better":1,"matchers":[{"string":"#% шанс даровать ближайшим союзникам заряд ярости при нанесении удара"},{"string":"Ближайшие союзники получают заряд ярости при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_991168463"]}}} +{"ref":"#% chance to grant a Power Charge to nearby Allies on Kill","better":1,"matchers":[{"string":"#% шанс даровать ближайшим союзникам заряд энергии при убийстве"},{"string":"Ближайшие союзники получают заряд энергии при убийстве","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2367680009"]}}} +{"ref":"#% chance to grant Chaotic Might to nearby Enemies on Kill","better":1,"matchers":[{"string":"#% шанс даровать ближайшим врагам Мощь Хаоса на 10 секунд при убийстве"},{"string":"Дарует ближайшим врагам Мощь Хаоса на 10 секунд при убийстве","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3607444087"]}}} +{"ref":"#% chance to grant Onslaught to nearby Enemies on Kill","better":1,"matchers":[{"string":"#% шанс наложить эффект Боевой раж на ближайших врагов при убийстве"},{"string":"Накладывает эффект Боевой раж на ближайших врагов при убийстве","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1924591908"]}}} +{"ref":"#% chance to Hinder Enemies on Hit with Spells","better":1,"matchers":[{"string":"#% шанс сковать врагов при нанесении удара чарами"},{"string":"Сковывает врагов при нанесении удара чарами","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3002506763"],"implicit":["implicit.stat_3002506763"],"fractured":["fractured.stat_3002506763"],"scourge":["scourge.stat_3002506763"]}}} +{"ref":"#% chance to Ignite","better":1,"matchers":[{"string":"#% шанс поджечь"},{"string":"Всегда поджигает","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1335054179"],"implicit":["implicit.stat_1335054179"],"fractured":["fractured.stat_1335054179"],"enchant":["enchant.stat_1335054179"],"scourge":["scourge.stat_1335054179"],"crafted":["crafted.stat_1335054179"]}}} +{"ref":"#% chance to Ignite during any Flask Effect","better":1,"matchers":[{"string":"#% шанс наложить поджог во время действия эффекта любого флакона"}],"trade":{"ids":{"explicit":["explicit.stat_3888064854"]}}} +{"ref":"#% chance to Ignite when in Main Hand","better":1,"matchers":[{"string":"#% шанс поджечь, если в правой руке"},{"string":"Всегда поджигает цель, если в правой руке","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2919089822"]}}} +{"ref":"#% chance to Ignite with Melee Weapons","better":1,"matchers":[{"string":"#% шанс поджечь оружием ближнего боя"}],"trade":{"ids":{"implicit":["implicit.stat_4206255461"]}}} +{"ref":"#% chance to Ignore Stuns while Casting","better":1,"matchers":[{"string":"#% шанс игнорировать оглушения при сотворении чар"},{"string":"Игнорирует оглушения при сотворении чар","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1916706958"],"implicit":["implicit.stat_1916706958"],"fractured":["fractured.stat_1916706958"]}}} +{"ref":"#% chance to Ignore Stuns while using Socketed Attack Skills","better":1,"matchers":[{"string":"#% шанс игнорировать оглушения при использовании размещенных умений атак"},{"string":"Игнорирует оглушения при использовании размещенных умений атак","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1439818705"]}}} +{"ref":"#% chance to Impale Enemies on Hit with Attacks","better":1,"matchers":[{"string":"#% шанс наложить на врагов Прокол при нанесении удара атаками"},{"string":"Накладывает на врагов Прокол при нанесении удара атаками","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3739863694","explicit.stat_725880290"],"implicit":["implicit.stat_3739863694"],"fractured":["fractured.stat_3739863694","fractured.stat_725880290"],"scourge":["scourge.stat_3739863694"],"crafted":["crafted.stat_725880290"]}}} +{"ref":"#% chance to Impale Enemies on Hit with Attacks while using Pride","better":1,"matchers":[{"string":"#% шанс наложить Прокол на врагов при нанесении удара атаками под действием Гордости"},{"string":"Накладывает Прокол на врагов при нанесении удара атаками под действием Гордости","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4173751044"]}}} +{"ref":"#% chance to Impale on Spell Hit","better":1,"matchers":[{"string":"#% шанс наложить Прокол при нанесении удара чарами"}],"trade":{"ids":{"explicit":["explicit.stat_3094222195"]}}} +{"ref":"#% chance to inflict a Grasping Vine on Melee Weapon Hit","better":1,"matchers":[{"string":"#% шанс наложить Цепкую лиану при нанесении удара оружием ближнего боя"},{"string":"Накладывает Цепкую лиану при нанесении удара оружием ближнего боя","value":100}],"trade":{"ids":{"explicit":["explicit.stat_19313391"]}}} +{"ref":"#% chance to inflict Bleeding on Critical Strike with Attacks","better":1,"matchers":[{"string":"#% шанс наложить кровотечение при нанесении критического удара атаками"}],"trade":{"ids":{"explicit":["explicit.stat_2054257693"]}}} +{"ref":"#% chance to inflict Brittle","better":1,"matchers":[{"string":"#% шанс наложить Хрупкость"},{"string":"Всегда накладывает Хрупкость","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2238174408"]}}} +{"ref":"#% chance to inflict Brittle on Enemies when you Block their Damage","better":1,"matchers":[{"string":"#% шанс наложить Хрупкость на врагов когда вы блокируете их урон"},{"string":"Накладывает Хрупкость на врагов когда вы блокируете их урон","value":100}],"trade":{"ids":{"implicit":["implicit.stat_1749278976"]}}} +{"ref":"#% chance to inflict Cold Exposure on Hit","better":1,"matchers":[{"string":"#% шанс наложить восприимчивость к холоду при нанесении удара"},{"string":"Накладывает восприимчивость к холоду при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2630708439"],"fractured":["fractured.stat_2630708439"],"scourge":["scourge.stat_2630708439"]}}} +{"ref":"#% chance to inflict Corrosion on Hit with Attacks","better":1,"matchers":[{"string":"#% шанс наложить Коррозию при нанесении удара атаками"}],"trade":{"ids":{"explicit":["explicit.stat_2523122963"]}}} +{"ref":"#% chance to inflict Fire Exposure on Hit","better":1,"matchers":[{"string":"#% шанс наложить восприимчивость к огню при нанесении удара"},{"string":"Накладывает восприимчивость к огню при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3602667353"],"fractured":["fractured.stat_3602667353"],"scourge":["scourge.stat_3602667353"]}}} +{"ref":"#% chance to inflict Lightning Exposure on Hit","better":1,"matchers":[{"string":"#% шанс наложить восприимчивость к молнии при нанесении удара"},{"string":"Накладывает восприимчивость к молнии при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4265906483"],"fractured":["fractured.stat_4265906483"],"enchant":["enchant.stat_4265906483"],"scourge":["scourge.stat_4265906483"]}}} +{"ref":"#% chance to inflict Withered for 2 seconds on Hit","better":1,"matchers":[{"string":"#% шанс наложить Истощение на 2 секунды при нанесении удара"},{"string":"Накладывает Истощение на 2 секунды при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1957711555"]}}} +{"ref":"#% chance to inflict Withered for 2 seconds on Hit with this Weapon","better":1,"matchers":[{"string":"#% шанс наложить Истощение на 2 секунды при нанесении удара этим оружием"},{"string":"Накладывает Истощение на 2 секунды при нанесении удара этим оружием","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1226121733"]}}} +{"ref":"#% chance to Intimidate Enemies for 4 seconds on Hit","better":1,"matchers":[{"string":"#% шанс при нанесении удара устрашить врагов на 4 секунды"},{"string":"#% шанс устрашить врагов на 4 секунды при нанесении удара"},{"string":"Устрашает врагов на 4 секунды при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2089652545","explicit.stat_78985352"],"implicit":["implicit.stat_2089652545","implicit.stat_78985352"],"fractured":["fractured.stat_2089652545","fractured.stat_78985352"],"scourge":["scourge.stat_78985352"]}}} +{"ref":"#% chance to Intimidate Enemies for 4 seconds on Hit with Attacks","better":1,"matchers":[{"string":"#% шанс устрашить врагов на 4 секунды при нанесении удара атаками"},{"string":"Устрашает врагов на 4 секунды при нанесении удара атаками","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3438201750"],"implicit":["implicit.stat_3438201750"],"fractured":["fractured.stat_3438201750"]}}} +{"ref":"#% chance to Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges","better":1,"matchers":[{"string":"#% шанс устрашить врагов на 4 секунды при нанесении удара атаками при максимуме зарядов выносливости"},{"string":"Устрашает врагов на 4 секунды при нанесении удара атаками при максимуме зарядов выносливости","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2877370216"]}}} +{"ref":"#% chance to Knock Enemies Back on hit","better":1,"matchers":[{"string":"#% шанс отбросить врагов при нанесении удара"},{"string":"Отбрасывает врагов при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_977908611"],"implicit":["implicit.stat_977908611"],"fractured":["fractured.stat_977908611"],"scourge":["scourge.stat_977908611"]}}} +{"ref":"#% chance to lose a Frenzy Charge when you use a Travel Skill","better":1,"matchers":[{"string":"#% шанс потерять заряд ярости, когда вы используете умение смещения"},{"string":"Теряет заряд ярости, когда вы используете умение смещения","value":100}],"trade":{"ids":{"explicit":["explicit.stat_445906009"]}}} +{"ref":"#% chance to lose a Power Charge when you gain Elusive","better":1,"matchers":[{"string":"#% шанс потерять заряд энергии, когда вы получаете Неуловимость"},{"string":"Теряет заряд энергии, когда вы получаете Неуловимость","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1819086604"]}}} +{"ref":"#% chance to lose an Endurance Charge when you gain Fortification","better":1,"matchers":[{"string":"#% шанс потерять заряд выносливости, когда вы получаете заряд Укрепления"},{"string":"Теряет заряд выносливости, когда вы получаете заряд Укрепления","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1087146228"]}}} +{"ref":"#% chance to Maim Enemies on Critical Strike with Attacks","better":1,"matchers":[{"string":"#% шанс наложить на врагов увечья при нанесении критического удара атаками"}],"trade":{"ids":{"explicit":["explicit.stat_996483959"]}}} +{"ref":"#% chance to Maim on Hit","better":1,"matchers":[{"string":"#% шанс изувечить при нанесении удара"},{"string":"Накладывает увечье при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2763429652"],"implicit":["implicit.stat_2763429652"],"fractured":["fractured.stat_2763429652"]}}} +{"ref":"#% chance to not Activate Lockdown in Grand Heists","better":1,"matchers":[{"string":"#% шанс не активировать процесс изоляции в Больших кражах"}],"trade":{"ids":{"explicit":["explicit.stat_2438099615"],"fractured":["fractured.stat_2438099615"]}}} +{"ref":"#% chance to not generate Alert Level on opening a Chest using Agility","better":1,"matchers":[{"string":"#% шанс не поднять уровень угрозы при открытии сундука с помощью Проворства"}],"trade":{"ids":{"explicit":["explicit.stat_277930304"],"fractured":["fractured.stat_277930304"]}}} +{"ref":"#% chance to not generate Alert Level on opening a Chest using Brute Force","better":1,"matchers":[{"string":"#% шанс не поднять уровень тревоги при открытии сундука с помощью Грубой силы"}],"trade":{"ids":{"explicit":["explicit.stat_1195895224"],"fractured":["fractured.stat_1195895224"]}}} +{"ref":"#% chance to not generate Alert Level on opening a Chest using Counter-Thaumaturgy","better":1,"matchers":[{"string":"#% шанс не поднять уровень тревоги при открытии сундука с помощью Контрмагии"}],"trade":{"ids":{"explicit":["explicit.stat_2232609651"],"fractured":["fractured.stat_2232609651"]}}} +{"ref":"#% chance to not generate Alert Level on opening a Chest using Deception","better":1,"matchers":[{"string":"#% шанс не поднять уровень тревоги при открытии сундука с помощью Маскировки"}],"trade":{"ids":{"explicit":["explicit.stat_3146356577"],"fractured":["fractured.stat_3146356577"]}}} +{"ref":"#% chance to not generate Alert Level on opening a Chest using Demolition","better":1,"matchers":[{"string":"#% шанс не поднять уровень тревоги при открытии сундука с помощью Взрывного дела"}],"trade":{"ids":{"explicit":["explicit.stat_581152495"],"fractured":["fractured.stat_581152495"]}}} +{"ref":"#% chance to not generate Alert Level on opening a Chest using Engineering","better":1,"matchers":[{"string":"#% шанс не поднять уровень тревоги при открытии сундука с помощью Инженерного дела"}],"trade":{"ids":{"explicit":["explicit.stat_316122366"],"fractured":["fractured.stat_316122366"]}}} +{"ref":"#% chance to not generate Alert Level on opening a Chest using Lockpicking","better":1,"matchers":[{"string":"#% шанс не поднять уровень тревоги при открытии сундука с помощью Взлома"}],"trade":{"ids":{"explicit":["explicit.stat_647064288"],"fractured":["fractured.stat_647064288"]}}} +{"ref":"#% chance to not generate Alert Level on opening a Chest using Perception","better":1,"matchers":[{"string":"#% шанс не поднять уровень тревоги при открытии сундука с помощью Восприятия"}],"trade":{"ids":{"explicit":["explicit.stat_397829245"],"fractured":["fractured.stat_397829245"]}}} +{"ref":"#% chance to not generate Alert Level on opening a Chest using Trap Disarmament","better":1,"matchers":[{"string":"#% шанс не поднять уровень тревоги при открытии сундука с помощью Разминирования"}],"trade":{"ids":{"explicit":["explicit.stat_3015749212"],"fractured":["fractured.stat_3015749212"]}}} +{"ref":"#% chance to Poison on Hit","better":1,"matchers":[{"string":"#% шанс отравить при нанесении удара"},{"string":"Всегда отравляет при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3885634897","explicit.stat_795138349"],"implicit":["implicit.stat_3885634897","implicit.stat_795138349"],"fractured":["fractured.stat_3885634897","fractured.stat_795138349"],"enchant":["enchant.stat_3885634897"],"scourge":["scourge.stat_795138349"],"crafted":["crafted.stat_3885634897"]}}} +{"ref":"#% chance to Poison on Hit against Cursed Enemies","better":1,"matchers":[{"string":"#% шанс отравить при нанесении ударов по проклятым врагам"},{"string":"Всегда отравляет при нанесении ударов по проклятым врагам","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2208857094"]}}} +{"ref":"#% chance to Poison on Hit during Effect","better":1,"matchers":[{"string":"#% шанс отравить при нанесении удара во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_2777278657"]}}} +{"ref":"#% chance to Poison on Hit with Attacks","better":1,"matchers":[{"string":"#% шанс отравить при нанесении удара атаками"},{"string":"Всегда отравляет при нанесении удара атаками","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3954735777"]}}} +{"ref":"#% chance to Poison per Power Charge","better":1,"matchers":[{"string":"#% шанс отравить за заряд энергии"}],"trade":{"ids":{"explicit":["explicit.stat_2992087211"]}}} +{"ref":"#% chance to Poison with Melee Weapons","better":1,"matchers":[{"string":"#% шанс отравить оружием ближнего боя"}],"trade":{"ids":{"implicit":["implicit.stat_1168985596"]}}} +{"ref":"#% chance to receive additional Abyss items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"#% шанс получить дополнительные предметы Бездны при открытии сундука с наградой в Краже"}],"trade":{"ids":{"explicit":["explicit.stat_1361025326"]}}} +{"ref":"#% chance to receive additional Armour items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"#% шанс получить дополнительные доспехи при открытии сундука с наградой в Краже"}],"trade":{"ids":{"explicit":["explicit.stat_3835470471"]}}} +{"ref":"#% chance to receive additional Blight items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"#% шанс получить дополнительные предметы Скверны при открытии сундука с наградой в Краже"}],"trade":{"ids":{"explicit":["explicit.stat_2581419165"]}}} +{"ref":"#% chance to receive additional Breach items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"#% шанс получить дополнительные предметы Разлома при открытии сундука с наградой в Краже"}],"trade":{"ids":{"explicit":["explicit.stat_4146386957"]}}} +{"ref":"#% chance to receive additional Delirium items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"#% шанс получить дополнительные предметы Делириума при открытии сундука с наградой в Краже"}],"trade":{"ids":{"explicit":["explicit.stat_3876876906"]}}} +{"ref":"#% chance to receive additional Delve items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"#% шанс получить дополнительные предметы Спуска при открытии сундука с наградой в Краже"}],"trade":{"ids":{"explicit":["explicit.stat_1852069308"]}}} +{"ref":"#% chance to receive additional Divination Card items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"#% шанс получить дополнительные гадальные карты при открытии сундука с наградой в Краже"}],"trade":{"ids":{"explicit":["explicit.stat_3099138455"]}}} +{"ref":"#% chance to receive additional Essences when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"#% шанс получить дополнительные Сущности при открытии сундука с наградой в Краже"}],"trade":{"ids":{"explicit":["explicit.stat_2454528473"]}}} +{"ref":"#% chance to receive additional Gem items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"#% шанс получить дополнительные камни при открытии сундука с наградой в Краже"}],"trade":{"ids":{"explicit":["explicit.stat_2610785454"]}}} +{"ref":"#% chance to receive additional Harbinger items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"#% шанс получить дополнительные предметы Предвестника при открытии сундука с наградой в Краже"}],"trade":{"ids":{"explicit":["explicit.stat_73487979"]}}} +{"ref":"#% chance to receive additional Jewellery when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"#% шанс получить дополнительную бижутерию при открытии сундука с наградой в Краже"}],"trade":{"ids":{"explicit":["explicit.stat_1323476506"]}}} +{"ref":"#% chance to receive additional Legion items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"#% шанс получить дополнительные предметы Легиона при открытии сундука с наградой в Краже"}],"trade":{"ids":{"explicit":["explicit.stat_1463604143"]}}} +{"ref":"#% chance to receive additional Talismans when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"#% шанс получить дополнительные талисманы при открытии сундука с наградой в Краже"}],"trade":{"ids":{"explicit":["explicit.stat_2917742181"]}}} +{"ref":"#% chance to receive additional Ultimatum items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"#% шанс получить дополнительные предметы Ультиматума при открытии сундука с наградами в Краже"}],"trade":{"ids":{"explicit":["explicit.stat_1485150248"]}}} +{"ref":"#% chance to receive additional Unique items when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"#% шанс получить дополнительные уникальные предметы при открытии сундука с наградой в Краже"}],"trade":{"ids":{"explicit":["explicit.stat_3145607602"]}}} +{"ref":"#% chance to receive additional Weapons when opening a Reward Chest in a Heist","better":1,"matchers":[{"string":"#% шанс получить дополнительное оружие при открытии сундука с наградой в Краже"}],"trade":{"ids":{"explicit":["explicit.stat_953018841"]}}} +{"ref":"#% chance to Recover 10% of Mana when you use a Skill","better":1,"matchers":[{"string":"#% шанс восстановить 10% маны, когда вы используете умение"}],"trade":{"ids":{"explicit":["explicit.stat_308309328"],"fractured":["fractured.stat_308309328"]}}} +{"ref":"#% chance to Recover 10% of Mana when you use a Skill while affected by Clarity","better":1,"matchers":[{"string":"#% шанс восстановить 10% от максимума маны при использовании умения под действием Ясности ума"}],"trade":{"ids":{"explicit":["explicit.stat_1699077932"]}}} +{"ref":"#% chance to refresh Ignite Duration on Melee Weapon Hit","better":1,"matchers":[{"string":"#% шанс обновить длительность поджога при нанесении удара оружием ближнего боя"}],"trade":{"ids":{"explicit":["explicit.stat_93054948"]}}} +{"ref":"#% chance to remove 1 Mana Burn on Kill","better":1,"matchers":[{"string":"#% шанс удалить 1 заряд Сжигания маны при убийстве"}],"trade":{"ids":{"explicit":["explicit.stat_545355339"]}}} +{"ref":"#% chance to Sap Enemies","better":1,"matchers":[{"string":"#% шанс наложить Ошеломление на врагов"},{"string":"Всегда накладывает Ошеломление на врагов","value":100}],"trade":{"ids":{"explicit":["explicit.stat_532324017"]}}} +{"ref":"#% chance to Sap Enemies in Chilling Areas","better":1,"matchers":[{"string":"#% шанс ошеломить врагов на охлажденных областях"},{"string":"Всегда ошеломляет врагов на охлажденных областях","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3057853352"]}}} +{"ref":"#% chance to Sap Enemies when you Block their Damage","better":1,"matchers":[{"string":"#% шанс наложить Ошеломление на врагов когда вы блокируете их урон"},{"string":"Накладывает Ошеломление на врагов когда вы блокируете их урон","value":100}],"trade":{"ids":{"implicit":["implicit.stat_2113677718"]}}} +{"ref":"#% chance to Scorch Enemies","better":1,"matchers":[{"string":"#% шанс наложить Опаление на врагов"},{"string":"Всегда накладывает Опаление на врагов","value":100}],"trade":{"ids":{"explicit":["explicit.stat_606940191"]}}} +{"ref":"#% chance to Scorch Enemies when you Block their Damage","better":1,"matchers":[{"string":"#% шанс наложить Опаление на врагов когда вы блокируете их урон"},{"string":"Накладывает Опаление на врагов когда вы блокируете их урон","value":100}],"trade":{"ids":{"implicit":["implicit.stat_779391868"]}}} +{"ref":"#% chance to Shock","better":1,"matchers":[{"string":"#% шанс наложить шок"},{"string":"Всегда накладывает шок","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1538773178"],"implicit":["implicit.stat_1538773178"],"fractured":["fractured.stat_1538773178"],"enchant":["enchant.stat_1538773178"],"scourge":["scourge.stat_1538773178"],"crafted":["crafted.stat_1538773178"]}}} +{"ref":"#% chance to Shock Attackers for 4 seconds on Block","better":1,"matchers":[{"string":"#% шанс наложить шок на атакующих на 4 секунды при блоке"},{"string":"Накладывает шок на атакующих на 4 секунды при блоке","value":100}],"trade":{"ids":{"explicit":["explicit.stat_575111651"],"fractured":["fractured.stat_575111651"],"scourge":["scourge.stat_575111651"]}}} +{"ref":"#% chance to Shock Chilled Enemies","better":1,"matchers":[{"string":"#% шанс наложить шок на охлаждённых врагов"}],"trade":{"ids":{"explicit":["explicit.stat_4069101408"]}}} +{"ref":"#% chance to Shock during any Flask Effect","better":1,"matchers":[{"string":"#% шанс наложить шок во время действия эффекта любого флакона"}],"trade":{"ids":{"explicit":["explicit.stat_796406325"]}}} +{"ref":"#% chance to Shock with Melee Weapons","better":1,"matchers":[{"string":"#% шанс наложить шок оружием ближнего боя"}],"trade":{"ids":{"implicit":["implicit.stat_2313961828"]}}} +{"ref":"#% chance to Steal Power, Frenzy, and Endurance Charges on Hit","better":1,"matchers":[{"string":"#% шанс похитить заряд энергии, ярости или выносливости при нанесении удара"},{"string":"Похищение заряда энергии, ярости или выносливости при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_875143443"]}}} +{"ref":"#% chance to Summon an additional Skeleton with Summon Skeletons","better":1,"matchers":[{"string":"#% шанс призвать дополнительного скелета с помощью Сотворения скелетов"}],"trade":{"ids":{"enchant":["enchant.stat_1040958896"]}}} +{"ref":"#% chance to take 50% less Area Damage from Hits","better":1,"matchers":[{"string":"#% шанс получить на 50% меньше урона от ударов по области"}],"trade":{"ids":{"explicit":["explicit.stat_4253777805"]}}} +{"ref":"#% chance to Taunt Enemies on Hit with Attacks","better":1,"matchers":[{"string":"#% шанс спровоцировать врагов при нанесении удара атаками"},{"string":"Провоцирует врагов при нанесении удара атаками","value":100}],"trade":{"ids":{"explicit":["explicit.stat_280213220"],"implicit":["implicit.stat_280213220"],"fractured":["fractured.stat_280213220"],"scourge":["scourge.stat_280213220"]}}} +{"ref":"#% chance to throw up to 4 additional Traps","better":1,"matchers":[{"string":"#% шанс бросить вплоть до 4 дополнительных ловушек"}],"trade":{"ids":{"explicit":["explicit.stat_3132227798"]}}} +{"ref":"#% chance to Trigger a Socketed Bow Skill when you Attack with a Bow, with a 1 second Cooldown","better":1,"matchers":[{"string":"#% шанс вызывать срабатывание размещенных умений лука при атаке луком, время перезарядки - 1 секунда"},{"string":"Вызывает срабатывание размещенных умений лука при атаке луком, время перезарядки - 1 секунда","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3171958921"]}}} +{"ref":"#% chance to Trigger a Socketed Bow Skill when you Cast a Spell while wielding a Bow, with a 1 second Cooldown","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание размещенных умений лука, когда вы сотворяете чары с луком в руках, время перезарядки - 1 секунда"},{"string":"Вызывает срабатывание размещенных умений лука, когда вы сотворяете чары с луком в руках, время перезарядки - 1 секунда","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1378815167"]}}} +{"ref":"#% chance to Trigger a Socketed Spell on Using a Skill, with a 8 second Cooldown\nSpells Triggered this way have 150% more Cost","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание размещенных чар при использовании умения, время перезарядки - 8 секунд\nСработавшие таким образом чары расходуют на 150% больше ресурсов"},{"string":"Вызывает срабатывание размещенных чар при использовании умения, время перезарядки - 8 секунд\nСработавшие таким образом чары расходуют на 150% больше ресурсов","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3079007202"],"fractured":["fractured.stat_3079007202"],"crafted":["crafted.stat_3079007202"]}}} +{"ref":"#% chance to Trigger a Socketed Spell when you Attack with a Bow, with a 0.3 second Cooldown","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание размещенных чар при атаке луком, время перезарядки - 0.3 секунды"},{"string":"Вызывает срабатывание размещенных чар при атаке луком, время перезарядки - 0.3 секунды","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3302736916"]}}} +{"ref":"#% chance to Trigger a Socketed Spell when you Attack with this Weapon, with a 0.25 second Cooldown","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание размещенных чар при атаке этим оружием, время перезарядки - 0.25 секунды"},{"string":"Вызывает срабатывание размещенных чар при атаке этим оружием, время перезарядки - 0.25 секунды","value":100}],"trade":{"ids":{"explicit":["explicit.stat_209056835"]}}} +{"ref":"#% chance to Trigger a Socketed Warcry Skill when you lose Endurance Charges, with a 0.25 second Cooldown","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание размещенного умения боевого клича при потере зарядов выносливости, время перезарядки - 0.25 секунды"},{"string":"Вызывает срабатывание размещенного умения боевого клича при потере зарядов выносливости, время перезарядки - 0.25 секунды","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1112135314"]}}} +{"ref":"#% chance to Trigger Commandment of Blades on Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Приказа клинков при нанесении удара"},{"string":"Вызывает срабатывание Приказа клинков при нанесении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_147952811"]}}} +{"ref":"#% chance to Trigger Commandment of Flames on Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Приказа огня при нанесении удара"},{"string":"Вызывает срабатывание Приказа огня при нанесении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3703722637"]}}} +{"ref":"#% chance to Trigger Commandment of Force on Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Приказа силы при нанесении удара"},{"string":"Вызывает срабатывание Приказа силы при нанесении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2666843091"]}}} +{"ref":"#% chance to Trigger Commandment of Frost on Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Приказа холода при убийстве"},{"string":"Вызывает срабатывание Приказа холода при убийстве","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1877374369"]}}} +{"ref":"#% chance to Trigger Commandment of Fury on Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Приказа ярости при нанесении удара"},{"string":"Вызывает срабатывание Приказа ярости при нанесении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1554500307"]}}} +{"ref":"#% chance to Trigger Commandment of Inferno on Critical Strike","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Приказа ада при нанесении критического удара"},{"string":"Вызывает срабатывание Приказа ада при нанесении критического удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3251948367"]}}} +{"ref":"#% chance to Trigger Commandment of Inferno on Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Приказа ада при убийстве"},{"string":"Вызывает срабатывание Приказа ада при убийстве","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2020183428"]}}} +{"ref":"#% chance to Trigger Commandment of Ire when Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Приказа гнева при получении удара"},{"string":"Вызывает срабатывание Приказа гнева при получении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_620045439"]}}} +{"ref":"#% chance to Trigger Commandment of Light when you take a Critical Strike","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Приказа света при получении критического удара"},{"string":"Вызывает срабатывание Приказа света при получении критического удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3109915337"]}}} +{"ref":"#% chance to Trigger Commandment of Reflection when Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Приказа отражения при получении удара"},{"string":"Вызывает срабатывание Приказа отражения при получении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3036365740"]}}} +{"ref":"#% chance to Trigger Commandment of Spite when Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Приказа злобы при получении удара"},{"string":"Вызывает срабатывание Приказа злобы при получении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1259277978"]}}} +{"ref":"#% chance to Trigger Commandment of the Grave when your Skills or Minions Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Приказа смерти при убийстве вашими умениями или приспешниками"},{"string":"Вызывает срабатывание Приказа смерти при убийстве вашими умениями или приспешниками","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1374371477"]}}} +{"ref":"#% chance to Trigger Commandment of the Tempest on Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Приказа бури при нанесении удара"},{"string":"Вызывает срабатывание Приказа бури при нанесении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_4203647216"]}}} +{"ref":"#% chance to Trigger Commandment of Thunder on Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Приказа грома при убийстве"},{"string":"Вызывает срабатывание Приказа грома при убийстве","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1988467615"]}}} +{"ref":"#% chance to Trigger Commandment of War on Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Приказа войны при убийстве"},{"string":"Вызывает срабатывание Приказа войны при убийстве","value":100}],"trade":{"ids":{"enchant":["enchant.stat_494477497"]}}} +{"ref":"#% chance to Trigger Commandment of Winter when Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Приказа зимы при получении удара"},{"string":"Вызывает срабатывание Приказа зимы при получении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3222886961"]}}} +{"ref":"#% chance to Trigger Decree of Blades on Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Указа клинков при нанесении удара"},{"string":"Вызывает срабатывание Указа клинков при нанесении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_165958462"]}}} +{"ref":"#% chance to Trigger Decree of Flames on Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Указа огня при нанесении удара"},{"string":"Вызывает срабатывание Указа огня при нанесении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_990408262"]}}} +{"ref":"#% chance to Trigger Decree of Force on Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Указа силы при нанесении удара"},{"string":"Вызывает срабатывание Указа силы при нанесении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2925650365"]}}} +{"ref":"#% chance to Trigger Decree of Frost on Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Указа холода при убийстве"},{"string":"Вызывает срабатывание Указа холода при убийстве","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1268512925"]}}} +{"ref":"#% chance to Trigger Decree of Fury on Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Указа ярости при нанесении удара"},{"string":"Вызывает срабатывание Указа ярости при нанесении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2252338738"]}}} +{"ref":"#% chance to Trigger Decree of Inferno on Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Указа ада при убийстве"},{"string":"Вызывает срабатывание Указа ада при убийстве","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1366391108"]}}} +{"ref":"#% chance to Trigger Decree of Ire when Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Указа гнева при получении удара"},{"string":"Вызывает срабатывание Указа гнева при получении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1818525360"]}}} +{"ref":"#% chance to Trigger Decree of Light when you take a Critical Strike","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Указа света при получении критического удара"},{"string":"Вызывает срабатывание Указа света при получении критического удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3641868987"]}}} +{"ref":"#% chance to Trigger Decree of Reflection when Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Указа отражения при получении удара"},{"string":"Вызывает срабатывание Указа отражения при получении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1792647120"]}}} +{"ref":"#% chance to Trigger Decree of Spite when Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Указа злобы при получении удара"},{"string":"Вызывает срабатывание Указа злобы при получении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_889695873"]}}} +{"ref":"#% chance to Trigger Decree of the Grave when your Skills or Minions Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Указа смерти при убийстве вашими умениями или приспешниками"},{"string":"Вызывает срабатывание Указа смерти при убийстве вашими умениями или приспешниками","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2187415468"]}}} +{"ref":"#% chance to Trigger Decree of the Tempest on Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Указа бури при нанесении удара"},{"string":"Вызывает срабатывание Указа бури при нанесении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1671985305"]}}} +{"ref":"#% chance to Trigger Decree of Thunder on Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Указа грома при убийстве"},{"string":"Вызывает срабатывание Указа грома при убийстве","value":100}],"trade":{"ids":{"enchant":["enchant.stat_4152292551"]}}} +{"ref":"#% chance to Trigger Decree of War on Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Указа войны при убийстве"},{"string":"Вызывает срабатывание Указа войны при убийстве","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1106926438"]}}} +{"ref":"#% chance to Trigger Decree of Winter when Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Указа зимы при получении удара"},{"string":"Вызывает срабатывание Указа зимы при получении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2515273888"]}}} +{"ref":"#% chance to Trigger Edict of Blades on Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Эдикта клинков при нанесении удара"},{"string":"Вызывает срабатывание Эдикта клинков при нанесении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2160886943"]}}} +{"ref":"#% chance to Trigger Edict of Flames on Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Эдикта огня при нанесении удара"},{"string":"Вызывает срабатывание Эдикта огня при нанесении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_786149615"]}}} +{"ref":"#% chance to Trigger Edict of Force on Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Эдикта силы при нанесении удара"},{"string":"Вызывает срабатывание Эдикта силы при нанесении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2760193888"]}}} +{"ref":"#% chance to Trigger Edict of Frost on Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Эдикта холода при убийстве"},{"string":"Вызывает срабатывание Эдикта холода при убийстве","value":100}],"trade":{"ids":{"enchant":["enchant.stat_90942364"]}}} +{"ref":"#% chance to Trigger Edict of Fury on Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Эдикта ярости при нанесении удара"},{"string":"Вызывает срабатывание Эдикта ярости при нанесении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1153637043"]}}} +{"ref":"#% chance to Trigger Edict of Inferno on Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Эдикта ада при убийстве"},{"string":"Вызывает срабатывание Эдикта ада при убийстве","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2246143608"]}}} +{"ref":"#% chance to Trigger Edict of Ire when Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Эдикта гнева при получении удара"},{"string":"Вызывает срабатывание Эдикта гнева при получении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3285719520"]}}} +{"ref":"#% chance to Trigger Edict of Light when you take a Critical Strike","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Эдикта света при получении критического удара"},{"string":"Вызывает срабатывание Эдикта света при получении критического удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_271342637"]}}} +{"ref":"#% chance to Trigger Edict of Reflection when Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Эдикта отражения при получении удара"},{"string":"Вызывает срабатывание Эдикта отражения при получении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_4228580629"]}}} +{"ref":"#% chance to Trigger Edict of Spite when Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Эдикта злобы при получении удара"},{"string":"Вызывает срабатывание Эдикта злобы при получении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_257027296"]}}} +{"ref":"#% chance to Trigger Edict of the Grave when your Skills or Minions Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Эдикта смерти при убийстве вашими умениями или приспешниками"},{"string":"Вызывает срабатывание Эдикта смерти при убийстве вашими умениями или приспешниками","value":100}],"trade":{"ids":{"enchant":["enchant.stat_308154324"]}}} +{"ref":"#% chance to Trigger Edict of the Tempest on Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Эдикта бури при нанесении удара"},{"string":"Вызывает срабатывание Эдикта бури при нанесении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1711789839"]}}} +{"ref":"#% chance to Trigger Edict of Thunder on Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Эдикта грома при убийстве"},{"string":"Вызывает срабатывание Эдикта грома при убийстве","value":100}],"trade":{"ids":{"enchant":["enchant.stat_603658709"]}}} +{"ref":"#% chance to Trigger Edict of War on Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Эдикта войны при убийстве"},{"string":"Вызывает срабатывание Эдикта войны при убийстве","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2033463878"]}}} +{"ref":"#% chance to Trigger Edict of Winter when Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Эдикта зимы при получении удара"},{"string":"Вызывает срабатывание Эдикта зимы при получении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_147678606"]}}} +{"ref":"#% chance to Trigger Level 1 Blood Rage when you Kill an Enemy","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Кровавого угара 1 уровня, когда вы убиваете врага"},{"string":"Вызывает срабатывание Кровавого угара 1 уровня, когда вы убиваете врага","value":100}],"trade":{"ids":{"explicit":["explicit.stat_205619502"],"fractured":["fractured.stat_205619502"],"crafted":["crafted.stat_205619502"]}}} +{"ref":"#% chance to Trigger Level 1 Create Lesser Shrine when you Kill an Enemy","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Создания малого алтаря 1 уровня при убийстве врага"},{"string":"Вызывает срабатывание Создания малого алтаря 1 уровня при убийстве врага","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1010340836"]}}} +{"ref":"#% chance to Trigger Level 1 Raise Spiders on Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Призыва пауков 1 уровня при убийстве"}],"trade":{"ids":{"explicit":["explicit.stat_3844016207"]}}} +{"ref":"#% chance to Trigger Level 10 Summon Raging Spirit on Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Призыва неистового духа 8 уровня при убийстве"},{"string":"Вызывает срабатывание Призыва неистового духа 8 уровня при убийстве","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3751996449"],"enchant":["enchant.stat_3751996449"]}}} +{"ref":"#% chance to Trigger Level 16 Molten Burst on Melee Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Взрыва лавы 16 уровня при нанесении удара в ближнем бою"}],"trade":{"ids":{"explicit":["explicit.stat_4125471110"]}}} +{"ref":"#% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy","better":1,"matchers":[{"string":"#% шанс использовать Живое оружие 18 уровня на оружие Аниматрона, когда ваше оживлённое оружие убивает врага"},{"string":"Использует Живое оружие 18 уровня на оружие Аниматрона, когда ваше оживлённое оружие убивает врага","value":100}],"trade":{"ids":{"explicit":["explicit.stat_919960234"]}}} +{"ref":"#% chance to Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy","better":1,"matchers":[{"string":"#% шанс использовать Живое оружие 20 уровня на оружие Аниматрона, когда ваше оживлённое оружие убивает врага"},{"string":"Использует Живое оружие 20 уровня на оружие Аниматрона, когда ваше оживлённое оружие убивает врага","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3682009780"]}}} +{"ref":"#% chance to Trigger Level 20 Animate Weapon on Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Живого оружия 20 уровня при убийстве"}],"trade":{"ids":{"explicit":["explicit.stat_1973890509"]}}} +{"ref":"#% chance to Trigger Level 20 Arcane Wake after Spending a total of 200 Mana","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Колдовской волны 20 уровня после расхода 200 маны"},{"string":"Вызывает срабатывание Колдовской волны 20 уровня после расхода 200 маны","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3344568504"]}}} +{"ref":"#% chance to Trigger Level 20 Glimpse of Eternity when Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Проблеска вечности 20 уровня при получении удара"},{"string":"Вызывает срабатывание Проблеска вечности 20 уровня при получении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3141831683"]}}} +{"ref":"#% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Формы тени 20 уровня при использовании умения"}],"trade":{"ids":{"explicit":["explicit.stat_3308936917"]}}} +{"ref":"#% chance to Trigger Level 20 Summon Volatile Anomaly on Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание умения Призыв Нестабильной аномалии при убийстве 20 уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2143990571"]}}} +{"ref":"#% chance to Trigger Level 20 Tentacle Whip on Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Удара щупальцами 20 уровня при убийстве"}],"trade":{"ids":{"explicit":["explicit.stat_1350938937"]}}} +{"ref":"#% chance to Trigger Level 25 Summon Spectral Wolf on Critical Strike with this Weapon","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Призыва призрачного волка 25 уровня при нанесении критического удара этим оружием"},{"string":"Вызывает срабатывание Призыва призрачного волка 25 уровня при нанесении критического удара этим оружием","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4221489692"]}}} +{"ref":"#% chance to Trigger Socketed Curse Spell when you Cast a Curse Spell, with a 0.25 second Cooldown","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание размещенных чар проклятий, когда вы сотворяете чары проклятий, время перезарядки - 0.25 секунды"},{"string":"Вызывает срабатывание размещенных чар проклятий, когда вы сотворяете чары проклятий, время перезарядки - 0.25 секунды","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3657377047"]}}} +{"ref":"#% chance to Trigger Socketed Spells when you Focus, with a 0.25 second Cooldown","better":1,"matchers":[{"string":"#%шанс вызвать срабатывание размещенных чар в момент получения Фокуса, время перезарядки - 0.25 секунды"},{"string":"Вызывает срабатывание размещенных чар в момент получения Фокуса, время перезарядки - 0.25 секунды","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2062792091"],"fractured":["fractured.stat_2062792091"],"crafted":["crafted.stat_2062792091"]}}} +{"ref":"#% chance to Trigger Socketed Spells when you Spend at least # Mana on an\nUpfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown","better":1,"matchers":[{"string":"#% шанс вызывать срабатывание размещенных умений, когда вы расходуете как минимум # маны на единовременные затраты на использование или срабатывание умения, время перезарядки - 0.1 секунды"},{"string":"Вызывает срабатывание размещенных умений, когда вы расходуете как минимум # маны на единовременные затраты на использование или срабатывание умения, время перезарядки - 0.1 секунды"}],"trade":{"ids":{"explicit":["explicit.stat_723388324"]}}} +{"ref":"#% chance to Trigger Summon Spirit of Ahuana on Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Призыва духа Ахваны при убийстве"}],"trade":{"ids":{"explicit":["explicit.stat_31336590"]}}} +{"ref":"#% chance to Trigger Summon Spirit of Akoya on Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Призыва духа Акойи при убийстве"}],"trade":{"ids":{"explicit":["explicit.stat_3888707953"]}}} +{"ref":"#% chance to Trigger Summon Spirit of Ikiaho on Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Призыва духа Икиао при убийстве"}],"trade":{"ids":{"explicit":["explicit.stat_1163205473"]}}} +{"ref":"#% chance to Trigger Summon Spirit of Kahuturoa on Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Призыва духа Кахутуруа при убийстве"}],"trade":{"ids":{"explicit":["explicit.stat_264841388"]}}} +{"ref":"#% chance to Trigger Summon Spirit of Kaom on Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Призыва духа Каома при убийстве"}],"trade":{"ids":{"explicit":["explicit.stat_817287945"]}}} +{"ref":"#% chance to Trigger Summon Spirit of Kiloava on Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Призыва духа Килоавы при убийстве"}],"trade":{"ids":{"explicit":["explicit.stat_999837849"]}}} +{"ref":"#% chance to Trigger Summon Spirit of Maata on Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Призыва духа Мааты при убийстве"}],"trade":{"ids":{"explicit":["explicit.stat_3572665414"]}}} +{"ref":"#% chance to Trigger Summon Spirit of Rakiata on Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Призыва духа Ракиаты при убийстве"}],"trade":{"ids":{"explicit":["explicit.stat_1630969195"]}}} +{"ref":"#% chance to Trigger Summon Spirit of Tawhanuku on Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Призыва духа Тавануку при убийстве"}],"trade":{"ids":{"explicit":["explicit.stat_4217417523"]}}} +{"ref":"#% chance to Trigger Summon Spirit of Utula on Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Призыва духа Утулы при убийстве"}],"trade":{"ids":{"explicit":["explicit.stat_272515409"]}}} +{"ref":"#% chance to Trigger Word of Blades on Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Слова клинков при нанесении удара"},{"string":"Вызывает срабатывание Слова клинков при нанесении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_756653426"]}}} +{"ref":"#% chance to Trigger Word of Flames on Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Слова огня при нанесении удара"},{"string":"Вызывает срабатывание Слова огня при нанесении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_891161612"]}}} +{"ref":"#% chance to Trigger Word of Force on Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Слова силы при нанесении удара"},{"string":"Вызывает срабатывание Слова силы при нанесении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1162506883"]}}} +{"ref":"#% chance to Trigger Word of Frost on Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Слова холода при убийстве"},{"string":"Вызывает срабатывание Слова холода при убийстве","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3302747233"]}}} +{"ref":"#% chance to Trigger Word of Fury on Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Слова ярости при нанесении удара"},{"string":"Вызывает срабатывание Слова ярости при нанесении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3012437250"]}}} +{"ref":"#% chance to Trigger Word of Inferno on Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Слова ада при убийстве"},{"string":"Вызывает срабатывание Слова ада при убийстве","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3901337328"]}}} +{"ref":"#% chance to Trigger Word of Ire when Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Слова гнева при получении удара"},{"string":"Вызывает срабатывание Слова гнева при получении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2472584898"]}}} +{"ref":"#% chance to Trigger Word of Light when you take a Critical Strike","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Слова света при получении критического удара"},{"string":"Вызывает срабатывание Слова света при получении критического удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3111060801"]}}} +{"ref":"#% chance to Trigger Word of Reflection when Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Слова отражения при получении удара"},{"string":"Вызывает срабатывание Слова отражения при получении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2634094270"]}}} +{"ref":"#% chance to Trigger Word of Spite when Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Слова злобы при получении удара"},{"string":"Вызывает срабатывание Слова злобы при получении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3992962185"]}}} +{"ref":"#% chance to Trigger Word of the Grave when your Skills or Minions Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Слова смерти при убийстве вашими умениями или приспешниками"},{"string":"Вызывает срабатывание Слова смерти при убийстве вашими умениями или приспешниками","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2527140156"]}}} +{"ref":"#% chance to Trigger Word of the Tempest on Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Слова бури при нанесении удара"},{"string":"Вызывает срабатывание Слова бури при нанесении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3610104224"]}}} +{"ref":"#% chance to Trigger Word of Thunder on Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Слова грома при убийстве"},{"string":"Вызывает срабатывание Слова грома при убийстве","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1350605126"]}}} +{"ref":"#% chance to Trigger Word of War on Kill","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Слова войны при убийстве"},{"string":"Вызывает срабатывание Слова войны при убийстве","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1906144841"]}}} +{"ref":"#% chance to Trigger Word of Winter when Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Слова зимы при получении удара"},{"string":"Вызывает срабатывание Слова зимы при получении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1354248411"]}}} +{"ref":"#% chance to Unnerve Enemies for 4 seconds on Hit","better":1,"matchers":[{"string":"#% шанс обескуражить врагов на 4 секунды при нанесении удара"},{"string":"Обескураживает врагов на 4 секунды при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_763611529"],"implicit":["implicit.stat_763611529"],"fractured":["fractured.stat_763611529"],"scourge":["scourge.stat_763611529"]}}} +{"ref":"#% chance to Unnerve Enemies for 4 seconds on Hit with Spells","better":1,"matchers":[{"string":"#% шанс обескуражить врагов на 4 секунды при нанесении удара чарами"},{"string":"Обескураживает врагов на 4 секунды при нанесении удара чарами","value":100}],"trade":{"ids":{"explicit":["explicit.stat_220991810"],"fractured":["fractured.stat_220991810"]}}} +{"ref":"#% chance when you Kill a Scorched Enemy to Burn Each surrounding\nEnemy for 4 seconds, dealing 8% of the Killed Enemy's Life as Fire Damage per second","better":1,"matchers":[{"string":"#% шанс при убийстве вами опаленного врага поджечь всех\nврагов вокруг на 4 секунды, нанося 8% от здоровья убитого врага в виде урона от огня в секунду"}],"trade":{"ids":{"explicit":["explicit.stat_3717165313"]}}} +{"ref":"#% chance when you pay a Skill's Cost to gain that much Mana","better":1,"matchers":[{"string":"#% шанс при расходе вами ресурсов на умение получить такое же количество маны"}],"trade":{"ids":{"implicit":["implicit.stat_1915414884"]}}} +{"ref":"#% faster Restoration of Ward","better":1,"matchers":[{"string":"#% ускорение восстановления барьера"},{"string":"#% замедление восстановления барьера","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1130670241"],"fractured":["fractured.stat_1130670241"]}}} +{"ref":"#% faster start of Energy Shield Recharge","better":1,"matchers":[{"string":"#% ускорение начала перезарядки энергетического щита"},{"string":"#% замедление начала перезарядки энергетического щита","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1782086450"],"implicit":["implicit.stat_1782086450"],"fractured":["fractured.stat_1782086450"],"crafted":["crafted.stat_1782086450"]}}} +{"ref":"#% faster start of Energy Shield Recharge while affected by Discipline","better":1,"matchers":[{"string":"#% ускорение начала перезарядки энергетического щита под действием Дисциплины"},{"string":"#% замедление начала перезарядки энергетического щита под действием Дисциплины","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1016185292"]}}} +{"ref":"#% Global chance to Blind Enemies on hit","better":1,"matchers":[{"string":"#% глобальный шанс ослепить врага при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_2221570601"],"implicit":["implicit.stat_2221570601"],"fractured":["fractured.stat_2221570601"],"scourge":["scourge.stat_2221570601"]}}} +{"ref":"#% increased Absolution Cast Speed","better":1,"matchers":[{"string":"#% повышение скорости сотворения Отпущения"},{"string":"#% снижение скорости сотворения Отпущения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2558170600"]}}} +{"ref":"#% increased Accuracy Rating if you've dealt a Critical Strike in the past 8 seconds","better":1,"matchers":[{"string":"#% повышение меткости, если за последние 8 секунд вы наносили критический удар"},{"string":"#% снижение меткости, если за последние 8 секунд вы наносили критический удар","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1381557885"]}}} +{"ref":"#% increased Accuracy Rating per Frenzy Charge","better":1,"matchers":[{"string":"#% повышение меткости за заряд ярости"},{"string":"#% снижение меткости за заряд ярости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3700381193"],"fractured":["fractured.stat_3700381193"]}}} +{"ref":"#% increased Accuracy Rating when on Low Life","better":1,"matchers":[{"string":"#% повышение меткости при малом количестве здоровья"},{"string":"#% снижение меткости при малом количестве здоровья","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_347697569"]}}} +{"ref":"#% increased Accuracy Rating while you have Onslaught","better":1,"matchers":[{"string":"#% повышение меткости под эффектом Боевой раж"},{"string":"#% снижение меткости под эффектом Боевой раж","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2593021351"]}}} +{"ref":"#% increased Accuracy Rating with Axes","better":1,"matchers":[{"string":"#% повышение меткости топорами"},{"string":"#% снижение меткости топорами","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2538120572"]}}} +{"ref":"#% increased Accuracy Rating with Bows","better":1,"matchers":[{"string":"#% повышение меткости луками"},{"string":"#% снижение меткости луками","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_169946467"]}}} +{"ref":"#% increased Accuracy Rating with Claws","better":1,"matchers":[{"string":"#% повышение меткости когтями"},{"string":"#% снижение меткости когтями","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1297965523"]}}} +{"ref":"#% increased Accuracy Rating with Daggers","better":1,"matchers":[{"string":"#% повышение меткости кинжалами"},{"string":"#% снижение меткости кинжалами","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2054715690"]}}} +{"ref":"#% increased Accuracy Rating with Maces or Sceptres","better":1,"matchers":[{"string":"#% повышение меткости булавами и скипетрами"},{"string":"#% снижение меткости булавами и скипетрами","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3208450870"]}}} +{"ref":"#% increased Accuracy Rating with Staves","better":1,"matchers":[{"string":"#% повышение меткости посохами"},{"string":"#% снижение меткости посохами","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1617235962"]}}} +{"ref":"#% increased Accuracy Rating with Swords","better":1,"matchers":[{"string":"#% повышение меткости мечами"},{"string":"#% снижение меткости мечами","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2090868905"]}}} +{"ref":"#% increased Accuracy Rating with Wands","better":1,"matchers":[{"string":"#% повышение меткости жезлами"},{"string":"#% снижение меткости жезлами","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2150183156"]}}} +{"ref":"#% increased Action Speed","better":1,"matchers":[{"string":"#% снижение скорости действий"},{"string":"#% повышение скорости действий","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2878959938"]},"inverted":true}} +{"ref":"#% increased Action Speed while affected by Haste","better":1,"matchers":[{"string":"#% повышение скорости действий под действием Спешки"},{"string":"#% снижение скорости действий под действием Спешки","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1960426186"]}}} +{"ref":"#% increased Agility Experience gained","better":1,"matchers":[{"string":"#% увеличение получаемого Проворством опыта"},{"string":"#% уменьшение получаемого Проворством опыта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_245401622"],"fractured":["fractured.stat_245401622"]}}} +{"ref":"#% increased Agility speed","better":1,"matchers":[{"string":"#% повышение скорости использования Проворства"},{"string":"#% снижение скорости использования Проворства","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3422638915"],"implicit":["implicit.stat_3422638915"],"fractured":["fractured.stat_3422638915"]}}} +{"ref":"#% increased Alchemist's Mark Curse Effect","better":1,"matchers":[{"string":"#% усиление эффекта проклятия Метки Алхимика"},{"string":"#% ослабление эффекта проклятия Метки Алхимика","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3583185303"]}}} +{"ref":"#% increased Ambush Cooldown Recovery Rate","better":1,"matchers":[{"string":"#% увеличение скорости перезарядки Засады"},{"string":"#% уменьшение скорости перезарядки Засады","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2977107166"]}}} +{"ref":"#% increased Amount Recovered","better":1,"matchers":[{"string":"#% увеличение объёма восстановления"},{"string":"#% уменьшение объёма восстановления","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_700317374"],"fractured":["fractured.stat_700317374"]}}} +{"ref":"#% increased Ancestral Protector Totem Placement Speed","better":1,"matchers":[{"string":"#% повышение скорости установки Защитника предков"},{"string":"#% снижение скорости установки Защитника предков","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_592861938"]}}} +{"ref":"#% increased Ancestral Warchief Totem Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Вождя предков"},{"string":"#% уменьшение области действия Вождя предков","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3320271130"]}}} +{"ref":"#% increased Ancestral Warchief Totem Damage","better":1,"matchers":[{"string":"#% увеличение урона Вождя предков"},{"string":"#% уменьшение урона Вождя предков","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_78239163"]}}} +{"ref":"#% increased Animate Weapon Duration","better":1,"matchers":[{"string":"#% увеличение длительности действия живого оружия"},{"string":"#% уменьшение длительности действия живого оружия","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3338074370"]}}} +{"ref":"#% increased Arc Damage","better":1,"matchers":[{"string":"#% увеличение урона Цепи молний"},{"string":"#% уменьшение урона Цепи молний","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2740567252"]}}} +{"ref":"#% increased Arctic Armour Buff Effect","better":1,"matchers":[{"string":"#% усиление положительного эффекта Северной брони"},{"string":"#% ослабление положительного эффекта Северной брони","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3995612171"],"implicit":["implicit.stat_3995612171"],"enchant":["enchant.stat_3995612171"]}}} +{"ref":"#% increased Area Damage","better":1,"matchers":[{"string":"#% увеличение урона по области"},{"string":"#% уменьшение урона по области","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4251717817"],"implicit":["implicit.stat_4251717817"],"fractured":["fractured.stat_4251717817"],"scourge":["scourge.stat_4251717817"],"crafted":["crafted.stat_4251717817"]}}} +{"ref":"#% increased Area Damage per 10 Devotion","better":1,"matchers":[{"string":"#% увеличение урона по области за каждые 10 набожности"},{"string":"#% уменьшение урона по области за каждые 10 набожности","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1724614884"]}}} +{"ref":"#% increased Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия"},{"string":"#% уменьшение области действия","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_280731498"],"implicit":["implicit.stat_280731498"],"fractured":["fractured.stat_280731498"],"scourge":["scourge.stat_280731498"],"crafted":["crafted.stat_280731498"]}}} +{"ref":"#% increased Area of Effect during Effect","better":1,"matchers":[{"string":"#% увеличение области действия во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_215882879"]}}} +{"ref":"#% increased Area of Effect for Attacks","better":1,"matchers":[{"string":"#% увеличение области действия атак"},{"string":"#% уменьшение области действия атак","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1840985759"]}}} +{"ref":"#% increased Area of Effect for Skills used by Totems","better":1,"matchers":[{"string":"#% увеличение области действия умений, используемых тотемами"}],"trade":{"ids":{"explicit":["explicit.stat_869436347"]}}} +{"ref":"#% increased Area of Effect if you have Stunned an Enemy Recently","better":1,"matchers":[{"string":"#% увеличение области действия, если вы недавно оглушали врага"},{"string":"#% уменьшение области действия, если вы недавно оглушали врага","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_430248187"],"implicit":["implicit.stat_430248187"],"fractured":["fractured.stat_430248187"]}}} +{"ref":"#% increased Area of Effect if you've dealt a Culling Strike Recently","better":1,"matchers":[{"string":"#% увеличение области действия если недавно вы наносили добивающий удар"},{"string":"#% уменьшение области действия если недавно вы наносили добивающий удар","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1785568076"]}}} +{"ref":"#% increased Area of Effect if you've Killed Recently","better":1,"matchers":[{"string":"#% увеличение области действия, если вы недавно совершали убийство"},{"string":"#% уменьшение области действия, если вы недавно совершали убийство","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3481736410"]}}} +{"ref":"#% increased Area of Effect of Aura Skills","better":1,"matchers":[{"string":"#% увеличение области действия умений аур"},{"string":"#% уменьшение области действия умений аур","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_895264825"],"implicit":["implicit.stat_895264825"],"enchant":["enchant.stat_895264825"]}}} +{"ref":"#% increased Area of Effect of Hex Skills","better":1,"matchers":[{"string":"#% увеличение области действия умений порчи"},{"string":"#% уменьшение области действия умений порчи","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_153777645"],"fractured":["fractured.stat_153777645"]}}} +{"ref":"#% increased Area of Effect per 20 Intelligence","better":1,"matchers":[{"string":"#% увеличение области действия за каждые 20 интеллекта"},{"string":"#% уменьшение области действия за каждые 20 интеллекта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1307972622"]}}} +{"ref":"#% increased Area of Effect per 25 Rampage Kills","better":1,"matchers":[{"string":"#% увеличение области действия за каждые 25 убийств во время Буйства"},{"string":"#% уменьшение области действия за каждые 25 убийств во время Буйства","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4119032338"]}}} +{"ref":"#% increased Area of Effect per 50 Strength","better":1,"matchers":[{"string":"#% увеличение области действия за каждые 50 силы"},{"string":"#% уменьшение области действия за каждые 50 силы","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2611023406"],"fractured":["fractured.stat_2611023406"]}}} +{"ref":"#% increased Area of Effect per Endurance Charge","better":1,"matchers":[{"string":"#% увеличение области действия за заряд выносливости"},{"string":"#% уменьшение области действия за заряд выносливости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2448279015"]}}} +{"ref":"#% increased Area of Effect per Enemy killed recently, up to 50%","better":1,"matchers":[{"string":"#% увеличение области действия за каждого недавно убитого врага, вплоть до 50%"},{"string":"#% уменьшение области действия за каждого недавно убитого врага","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4070157876"]}}} +{"ref":"#% increased Area of Effect per Power Charge","better":1,"matchers":[{"string":"#% увеличение области действия за заряд энергии"}],"trade":{"ids":{"explicit":["explicit.stat_3094501804"]}}} +{"ref":"#% increased Area of Effect while in Sand Stance","better":1,"matchers":[{"string":"#% увеличение области действия в стойке песка"},{"string":"#% уменьшение области действия в стойке песка","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1647746883"]}}} +{"ref":"#% increased Area of Effect while Unarmed","better":1,"matchers":[{"string":"#% увеличение области действия без оружия"},{"string":"#% уменьшение области действия без оружия","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2216127021"]}}} +{"ref":"#% increased Area of Effect while you have Arcane Surge","better":1,"matchers":[{"string":"#% увеличение области действия, пока на вас действует Колдовской выброс"},{"string":"#% уменьшение области действия, пока на вас действует Колдовской выброс","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1406617410"]}}} +{"ref":"#% increased Armour","better":1,"matchers":[{"string":"#% повышение брони"},{"string":"#% снижение брони","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1062208444","explicit.stat_2866361420"],"implicit":["implicit.stat_1062208444","implicit.stat_2866361420"],"fractured":["fractured.stat_1062208444","fractured.stat_2866361420"],"crafted":["crafted.stat_1062208444","crafted.stat_2866361420"]}}} +{"ref":"#% increased Armour against Projectiles","better":1,"matchers":[{"string":"#% повышение брони против снарядов"},{"string":"#% снижение брони против снарядов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_706246936"]}}} +{"ref":"#% increased Armour and Energy Shield","better":1,"matchers":[{"string":"#% повышение брони и энергетического щита"},{"string":"#% снижение брони и энергетического щита","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3321629045"],"fractured":["fractured.stat_3321629045"],"crafted":["crafted.stat_3321629045"]}}} +{"ref":"#% increased Armour and Evasion","better":1,"matchers":[{"string":"#% повышение брони и уклонения"},{"string":"#% снижение брони и уклонения","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2451402625"],"fractured":["fractured.stat_2451402625"],"crafted":["crafted.stat_2451402625"]}}} +{"ref":"#% increased Armour during Effect","better":1,"matchers":[{"string":"#% повышение брони во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_1693613464"],"fractured":["fractured.stat_1693613464"]}}} +{"ref":"#% increased Armour from Equipped Helmet and Gloves","better":1,"matchers":[{"string":"#% увеличение брони, полученной от шлема и перчаток"},{"string":"#% уменьшение брони, полученной от шлема и перчаток","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_791154540"]}}} +{"ref":"#% increased Armour if you haven't Killed Recently","better":1,"matchers":[{"string":"#% увеличение брони, если вы недавно не совершали убийство"},{"string":"#% уменьшение брони, если вы недавно не совершали убийство","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2424133568"],"fractured":["fractured.stat_2424133568"]}}} +{"ref":"#% increased Armour per 50 Reserved Mana","better":1,"matchers":[{"string":"#% увеличение брони за каждые 50 удержанной маны"}],"trade":{"ids":{"explicit":["explicit.stat_2574337583"]}}} +{"ref":"#% increased Armour per 50 Strength","better":1,"matchers":[{"string":"#% увеличение брони за каждые 50 силы"},{"string":"#% уменьшение брони за каждые 50 силы","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3621706946"]}}} +{"ref":"#% increased Armour per Endurance Charge","better":1,"matchers":[{"string":"#% повышение брони за заряд выносливости"}],"trade":{"ids":{"explicit":["explicit.stat_1447080724"]}}} +{"ref":"#% increased Armour while Bleeding","better":1,"matchers":[{"string":"#% увеличение брони во время кровотечения"}],"trade":{"ids":{"explicit":["explicit.stat_2466912132"]}}} +{"ref":"#% increased Armour while not Ignited, Frozen or Shocked","better":1,"matchers":[{"string":"#% повышение брони, если не наложены поджог, заморозка или шок"},{"string":"#% снижение брони, если не наложены поджог, заморозка или шок","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1164767410"]}}} +{"ref":"#% increased Armour while stationary","better":1,"matchers":[{"string":"#% увеличение брони при нахождении на одном месте"},{"string":"#% уменьшение брони при нахождении на одном месте","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3184053924"]}}} +{"ref":"#% increased Armour, Evasion and Energy Shield","better":1,"matchers":[{"string":"#% повышение брони, уклонения и энергетического щита"},{"string":"#% снижение брони, уклонения и энергетического щита","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3523867985"],"fractured":["fractured.stat_3523867985"],"scourge":["scourge.stat_3523867985"],"crafted":["crafted.stat_3523867985"]}}} +{"ref":"#% increased Aspect of the Avian Buff Effect","better":1,"matchers":[{"string":"#% усиление положительного эффекта Духа птицы"},{"string":"#% ослабление положительного эффекта Духа птицы","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1746347097"]}}} +{"ref":"#% increased Aspect of the Spider Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Духа паука"},{"string":"#% уменьшение области действия Духа паука","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3686780108"]}}} +{"ref":"#% increased Aspect of the Spider Debuff Duration","better":1,"matchers":[{"string":"#% увеличение длительности отрицательного эффекта Духа паука"},{"string":"#% уменьшение длительности отрицательного эффекта Духа паука","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_332854027"]}}} +{"ref":"#% increased Assassin's Mark Curse Effect","better":1,"matchers":[{"string":"#% усиление эффекта проклятия Метки убийцы"},{"string":"#% ослабление эффекта проклятия Метки убийцы","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1961975107"]}}} +{"ref":"#% increased Attack and Cast Speed","better":1,"matchers":[{"string":"#% повышение скорости атаки и сотворения чар"},{"string":"#% снижение скорости атаки и сотворения чар","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2672805335"],"implicit":["implicit.stat_2672805335"],"fractured":["fractured.stat_2672805335"],"crafted":["crafted.stat_2672805335"]}}} +{"ref":"#% increased Attack and Cast Speed during Onslaught","better":1,"matchers":[{"string":"#% повышение скорости атаки и сотворения чар во время Боевого ража"},{"string":"#% снижение скорости атаки и сотворения чар во время Боевого ража","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2320884914"]}}} +{"ref":"#% increased Attack and Cast Speed if Corrupted","better":1,"matchers":[{"string":"#% повышение скорости атаки и сотворения чар, если предмет осквернён"},{"string":"#% снижение скорости атаки и сотворения чар, если предмет осквернён","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_26867112"]}}} +{"ref":"#% increased Attack and Cast Speed if you haven't been Hit Recently","better":1,"matchers":[{"string":"#% повышение скорости атаки и сотворения чар, если недавно вы не получали удар"},{"string":"#% снижение скорости атаки и сотворения чар, если недавно вы не получали удар","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_223937937"]}}} +{"ref":"#% increased Attack and Cast Speed if you've Hit an Enemy Recently","better":1,"matchers":[{"string":"#% повышение скорости атаки и сотворения чар, если вы недавно наносили удар по врагу"},{"string":"#% снижение скорости атаки и сотворения чар, если вы недавно наносили удар по врагу","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1483753325"],"fractured":["fractured.stat_1483753325"]}}} +{"ref":"#% increased Attack and Cast Speed if you've Killed Recently","better":1,"matchers":[{"string":"#% повышение скорости атаки и сотворения чар, если недавно вы совершили убийство"}],"trade":{"ids":{"enchant":["enchant.stat_4135304575"]}}} +{"ref":"#% increased Attack and Cast Speed if you've used a Movement Skill Recently","better":1,"matchers":[{"string":"#% повышение скорости атаки и сотворения чар, если недавно вы использовали умения передвижения"},{"string":"#% снижение скорости атаки и сотворения чар, если недавно вы использовали умения передвижения","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2831922878"]}}} +{"ref":"#% increased Attack and Cast Speed per Endurance Charge","better":1,"matchers":[{"string":"#% повышение скорости атаки и сотворения чар за заряд выносливости"},{"string":"#% снижение скорости атаки и сотворения чар за заряд выносливости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3618888098"]}}} +{"ref":"#% increased Attack and Cast Speed per Power Charge","better":1,"matchers":[{"string":"#% повышение скорости атаки и сотворения чар за заряд энергии"},{"string":"#% снижение скорости атаки и сотворения чар за заряд энергии","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_987588151"]}}} +{"ref":"#% increased Attack and Cast Speed per Summoned Raging Spirit","better":1,"matchers":[{"string":"#% повышение скорости атаки и сотворения чар за каждого призванного неистового духа"},{"string":"#% снижение скорости атаки и сотворения чар за каждого призванного неистового духа","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3133579934"]}}} +{"ref":"#% increased Attack and Cast Speed while at maximum Fortification","better":1,"matchers":[{"string":"#% повышение скорости атаки и сотворения чар при максимуме зарядов Укрепления"},{"string":"#% снижение скорости атаки и сотворения чар при максимуме зарядов Укрепления","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1473444150"]}}} +{"ref":"#% increased Attack and Cast Speed while Focused","better":1,"matchers":[{"string":"#% повышение скорости атаки и сотворения чар, пока вы сфокусированы"},{"string":"#% снижение скорости атаки и сотворения чар, пока вы сфокусированы","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2628163981"],"fractured":["fractured.stat_2628163981"],"crafted":["crafted.stat_2628163981"]}}} +{"ref":"#% increased Attack and Cast Speed while Physical Aegis is depleted","better":1,"matchers":[{"string":"#% повышение скорости атаки и сотворения чар, пока Физическая Эгида истощена"},{"string":"#% снижение скорости атаки и сотворения чар, пока Физическая Эгида истощена","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_232331266"]}}} +{"ref":"#% increased Attack and Movement Speed while you have a Bestial Minion","better":1,"matchers":[{"string":"#% повышение скорости атаки и передвижения, пока у вас есть приспешник-зверь"}],"trade":{"ids":{"explicit":["explicit.stat_3597737983"]}}} +{"ref":"#% increased Attack and Movement Speed with Her Blessing","better":1,"matchers":[{"string":"#% повышение скорости атаки и передвижения во время действия Её благословления"},{"string":"#% снижение скорости атаки и передвижения во время действия Её благословления","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2968804751"]}}} +{"ref":"#% increased Attack Critical Strike Chance per 200 Accuracy Rating","better":1,"matchers":[{"string":"#% повышение шанса критического удара атаками за каждые 200 меткости"},{"string":"#% снижение шанса критического удара атаками за каждые 200 меткости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2196695640"]}}} +{"ref":"#% increased Attack Critical Strike Chance while Dual Wielding","better":1,"matchers":[{"string":"#% повышение шанса критического удара от атак с парным оружием в руках"},{"string":"#% снижение шанса критического удара от атак с парным оружием в руках","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3702513529"],"fractured":["fractured.stat_3702513529"]}}} +{"ref":"#% increased Attack Damage","better":1,"matchers":[{"string":"#% увеличение урона от атак"},{"string":"#% уменьшение урона от атак","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2843214518"],"implicit":["implicit.stat_2843214518"],"fractured":["fractured.stat_2843214518"]}}} +{"ref":"#% increased Attack Damage against Bleeding Enemies","better":1,"matchers":[{"string":"#% увеличение урона от атак по истекающим кровью врагам"},{"string":"#% уменьшение урона от атак по истекающим кровью врагам","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3944782785"],"implicit":["implicit.stat_3944782785"]}}} +{"ref":"#% increased Attack Damage for each Map Item Modifier affecting the Area","better":1,"matchers":[{"string":"#% увеличение урона от атак за каждое свойство карты, действующее на область"}],"trade":{"ids":{"explicit":["explicit.stat_698336758"]}}} +{"ref":"#% increased Attack Damage if Corrupted","better":1,"matchers":[{"string":"#% увеличение урона от атак, если предмет осквернён"},{"string":"#% уменьшение урона от атак, если предмет осквернён","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2347923784"]}}} +{"ref":"#% increased Attack Damage if your other Ring is a Shaper Item","better":1,"matchers":[{"string":"#% увеличение урона от атак, если ваше второе кольцо - предмет Создателя"},{"string":"#% уменьшение урона от атак, если ваше второе кольцо - предмет Создателя","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1555962658"]}}} +{"ref":"#% increased Attack Damage per 450 Armour","better":1,"matchers":[{"string":"#% увеличение урона от атак за каждые 450 брони"}],"trade":{"ids":{"explicit":["explicit.stat_192842973"]}}} +{"ref":"#% increased Attack Damage per 450 Evasion Rating","better":1,"matchers":[{"string":"#% увеличение урона от атак за каждые 450 уклонения"},{"string":"#% уменьшение урона от атак за каждые 450 уклонения","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_93696421"]}}} +{"ref":"#% increased Attack Damage per 500 Maximum Mana","better":1,"matchers":[{"string":"#% увеличение урона от атак за каждые 500 максимума маны"},{"string":"#% уменьшение урона от атак за каждые 500 максимума маны","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4134865890"]}}} +{"ref":"#% increased Attack Damage while affected by Precision","better":1,"matchers":[{"string":"#% увеличение урона от атак под действием Точности"},{"string":"#% уменьшение урона от атак под действием Точности","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2048747572"]}}} +{"ref":"#% increased Attack Damage while Dual Wielding","better":1,"matchers":[{"string":"#% увеличение урона от атак с парным оружием в руках"}],"trade":{"ids":{"explicit":["explicit.stat_444174528"],"fractured":["fractured.stat_444174528"]}}} +{"ref":"#% increased Attack Damage while holding a Shield","better":1,"matchers":[{"string":"#% увеличение урона от атак со щитом в руках"},{"string":"#% уменьшение урона от атак со щитом в руках","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1393393937"],"fractured":["fractured.stat_1393393937"]}}} +{"ref":"#% increased Attack Damage with Main Hand","better":1,"matchers":[{"string":"#% увеличение урона от атак правой рукой"},{"string":"#% уменьшение урона от атак правой рукой","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2696701853"]}}} +{"ref":"#% increased Attack Damage with Off Hand","better":1,"matchers":[{"string":"#% увеличение урона от атак левой рукой"},{"string":"#% уменьшение урона от атак левой рукой","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2924279089"]}}} +{"ref":"#% increased Attack Speed","better":1,"matchers":[{"string":"#% повышение скорости атаки"},{"string":"#% снижение скорости атаки","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_210067635","explicit.stat_681332047"],"implicit":["implicit.stat_210067635","implicit.stat_681332047"],"fractured":["fractured.stat_210067635","fractured.stat_681332047"],"enchant":["enchant.stat_210067635"],"scourge":["scourge.stat_681332047"],"crafted":["crafted.stat_210067635","crafted.stat_681332047"]}}} +{"ref":"#% increased Attack Speed during any Flask Effect","better":1,"matchers":[{"string":"#% повышение скорости атаки во время действия эффекта любого флакона"},{"string":"#% снижение скорости атаки во время действия эффекта любого флакона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1365052901"],"implicit":["implicit.stat_1365052901"],"fractured":["fractured.stat_1365052901"]}}} +{"ref":"#% increased Attack Speed during Effect","better":1,"matchers":[{"string":"#% повышение скорости атаки во время действия эффекта"},{"string":"#% снижение скорости атаки во время действия эффекта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_968369591"],"fractured":["fractured.stat_968369591"]}}} +{"ref":"#% increased Attack Speed for each Map Item Modifier affecting the Area","better":1,"matchers":[{"string":"#% повышение скорости атаки за каждое свойство карты, действующее на область"}],"trade":{"ids":{"explicit":["explicit.stat_2025297472"]}}} +{"ref":"#% increased Attack Speed if you haven't Cast Dash recently","better":1,"matchers":[{"string":"#% повышение скорости атаки, если вы не использовали Рывок недавно"},{"string":"#% снижение скорости атаки, если вы не использовали Рывок недавно","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1003608257"]}}} +{"ref":"#% increased Attack Speed if you haven't gained a Frenzy Charge Recently","better":1,"matchers":[{"string":"#% повышение скорости атаки если недавно вы не получали заряд ярости"},{"string":"#% снижение скорости атаки если недавно вы не получали заряд ярости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_749465463"]}}} +{"ref":"#% increased Attack Speed if you've been Hit Recently","better":1,"matchers":[{"string":"#% повышение скорости атаки, если вы недавно получали удар"},{"string":"#% снижение скорости атаки, если вы недавно получали удар","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4137521191"],"fractured":["fractured.stat_4137521191"]}}} +{"ref":"#% increased Attack Speed if you've changed Stance Recently","better":1,"matchers":[{"string":"#% повышение скорости атаки, если недавно вы меняли стойку"},{"string":"#% снижение скорости атаки, если недавно вы меняли стойку","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2188905761"]}}} +{"ref":"#% increased Attack Speed if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"#% повышение скорости атаки, если вы недавно наносили критический удар"},{"string":"#% снижение скорости атаки, если вы недавно наносили критический удар","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1585344030"],"fractured":["fractured.stat_1585344030"]}}} +{"ref":"#% increased Attack Speed if you've Killed Recently","better":1,"matchers":[{"string":"#% повышение скорости атаки, если вы недавно совершали убийство"},{"string":"#% снижение скорости атаки, если вы недавно совершали убийство","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1507059769"],"fractured":["fractured.stat_1507059769"]}}} +{"ref":"#% increased Attack Speed if you've taken a Savage Hit Recently","better":1,"matchers":[{"string":"#% повышение скорости атаки, если недавно вы получали Жестокий удар"}],"trade":{"ids":{"explicit":["explicit.stat_3842406602"]}}} +{"ref":"#% increased Attack Speed per 10 Dexterity","better":1,"matchers":[{"string":"#% повышение скорости атаки за 10 ловкости"},{"string":"#% снижение скорости атаки за 10 ловкости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_889691035"]}}} +{"ref":"#% increased Attack Speed per 25 Dexterity","better":1,"matchers":[{"string":"#% повышение скорости атаки за каждые 25 ловкости"}],"trade":{"ids":{"explicit":["explicit.stat_2241560081"],"fractured":["fractured.stat_2241560081"]}}} +{"ref":"#% increased Attack Speed per 8% Quality","better":1,"matchers":[{"string":"#% повышение скорости атаки за 8% качества"}],"trade":{"ids":{"enchant":["enchant.stat_3331111689"]}}} +{"ref":"#% increased Attack Speed per Fortification","better":1,"matchers":[{"string":"#% повышение скорости атаки за заряд Укрепления"},{"string":"#% снижение скорости атаки за заряд Укрепления","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1039149869"]}}} +{"ref":"#% increased Attack Speed per Frenzy Charge","better":1,"matchers":[{"string":"#% повышение скорости атаки за заряд ярости"},{"string":"#% снижение скорости атаки за заряд ярости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3548561213"]}}} +{"ref":"#% increased Attack Speed when on Full Life","better":1,"matchers":[{"string":"#% повышение скорости атаки при полном здоровье"},{"string":"#% снижение скорости атаки при полном здоровье","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4268321763"]}}} +{"ref":"#% increased Attack Speed when on Low Life","better":1,"matchers":[{"string":"#% повышение скорости атаки при малом количестве здоровья"},{"string":"#% снижение скорости атаки при малом количестве здоровья","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1921572790"]}}} +{"ref":"#% increased Attack Speed while a Rare or Unique Enemy is Nearby","better":1,"matchers":[{"string":"#% повышение скорости атаки, пока поблизости находится редкий или уникальный враг"},{"string":"#% снижение скорости атаки, пока поблизости находится редкий или уникальный враг","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_314741699"],"fractured":["fractured.stat_314741699"],"crafted":["crafted.stat_314741699"]}}} +{"ref":"#% increased Attack Speed while affected by Precision","better":1,"matchers":[{"string":"#% повышение скорости атаки под действием Точности"},{"string":"#% снижение скорости атаки под действием Точности","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3375743050"]}}} +{"ref":"#% increased Attack Speed while Chilled","better":1,"matchers":[{"string":"#% повышение скорости атаки пока вы охлаждены"},{"string":"#% снижение скорости атаки пока вы охлаждены","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3935294261"]}}} +{"ref":"#% increased Attack Speed while Dual Wielding","better":1,"matchers":[{"string":"#% повышение скорости атаки с парным оружием в руках"},{"string":"#% снижение скорости атаки с парным оружием в руках","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4249220643"],"fractured":["fractured.stat_4249220643"]}}} +{"ref":"#% increased Attack Speed while Fortified","better":1,"matchers":[{"string":"#% повышение скорости атаки под действием Укрепления"},{"string":"#% снижение скорости атаки под действием Укрепления","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_122450405"],"fractured":["fractured.stat_122450405"]}}} +{"ref":"#% increased Attack Speed while holding a Shield","better":1,"matchers":[{"string":"#% повышение скорости атаки со щитом в руках"},{"string":"#% снижение скорости атаки со щитом в руках","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3805075944"],"fractured":["fractured.stat_3805075944"]}}} +{"ref":"#% increased Attack Speed while Ignited","better":1,"matchers":[{"string":"#% повышение скорости атаки, если подожжён"},{"string":"#% снижение скорости атаки, если подожжён","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2047819517"],"fractured":["fractured.stat_2047819517"]}}} +{"ref":"#% increased Attack Speed while not on Low Mana","better":1,"matchers":[{"string":"#% повышение скорости атаки если мана не на низком уровне"},{"string":"#% снижение скорости атаки если мана не на низком уровне","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_779663446"]}}} +{"ref":"#% increased Attack Speed while Phasing","better":1,"matchers":[{"string":"#% повышение скорости атаки в Форме призрака"},{"string":"#% снижение скорости атаки в Форме призрака","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2752264922"]}}} +{"ref":"#% increased Attack Speed with Axes","better":1,"matchers":[{"string":"#% повышение скорости атаки топорами"},{"string":"#% снижение скорости атаки топорами","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3550868361"],"implicit":["implicit.stat_3550868361"],"fractured":["fractured.stat_3550868361"]}}} +{"ref":"#% increased Attack Speed with Bows","better":1,"matchers":[{"string":"#% повышение скорости атаки луками"},{"string":"#% снижение скорости атаки луками","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3759735052"],"implicit":["implicit.stat_3759735052"],"fractured":["fractured.stat_3759735052"]}}} +{"ref":"#% increased Attack Speed with Claws","better":1,"matchers":[{"string":"#% повышение скорости атаки когтями"},{"string":"#% снижение скорости атаки когтями","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1421645223"],"implicit":["implicit.stat_1421645223"],"fractured":["fractured.stat_1421645223"]}}} +{"ref":"#% increased Attack Speed with Daggers","better":1,"matchers":[{"string":"#% повышение скорости атаки кинжалами"},{"string":"#% снижение скорости атаки кинжалами","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2538566497"],"implicit":["implicit.stat_2538566497"],"fractured":["fractured.stat_2538566497"]}}} +{"ref":"#% increased Attack Speed with Maces or Sceptres","better":1,"matchers":[{"string":"#% повышение скорости атаки булавами и скипетрами"},{"string":"#% снижение скорости атаки булавами и скипетрами","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2515515064"],"implicit":["implicit.stat_2515515064"],"fractured":["fractured.stat_2515515064"]}}} +{"ref":"#% increased Attack Speed with Movement Skills","better":1,"matchers":[{"string":"#% повышение скорости атаки от умений передвижения"},{"string":"#% снижение скорости атаки от умений передвижения","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3683134121"]}}} +{"ref":"#% increased Attack Speed with One Handed Melee Weapons","better":1,"matchers":[{"string":"#% повышение скорости атаки одноручным оружием ближнего боя"},{"string":"#% снижение скорости атаки одноручным оружием ближнего боя","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1813451228"],"fractured":["fractured.stat_1813451228"]}}} +{"ref":"#% increased Attack Speed with Snipe","better":1,"matchers":[{"string":"#% повышение скорости атаки Прицельным выстрелом"},{"string":"#% снижение скорости атаки Прицельным выстрелом","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2513745555"]}}} +{"ref":"#% increased Attack Speed with Staves","better":1,"matchers":[{"string":"#% повышение скорости атаки посохами"},{"string":"#% снижение скорости атаки посохами","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1394963553"],"implicit":["implicit.stat_1394963553"],"fractured":["fractured.stat_1394963553"]}}} +{"ref":"#% increased Attack Speed with Swords","better":1,"matchers":[{"string":"#% повышение скорости атаки мечами"},{"string":"#% снижение скорости атаки мечами","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3293699237"],"implicit":["implicit.stat_3293699237"],"fractured":["fractured.stat_3293699237"]}}} +{"ref":"#% increased Attack Speed with Two Handed Melee Weapons","better":1,"matchers":[{"string":"#% повышение скорости атаки двуручным оружием ближнего боя"},{"string":"#% снижение скорости атаки двуручным оружием ближнего боя","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1917910910"],"fractured":["fractured.stat_1917910910"]}}} +{"ref":"#% increased Attack Speed with Wands","better":1,"matchers":[{"string":"#% повышение скорости атаки жезлами"},{"string":"#% снижение скорости атаки жезлами","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3720627346"],"implicit":["implicit.stat_3720627346"],"fractured":["fractured.stat_3720627346"]}}} +{"ref":"#% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes","better":1,"matchers":[{"string":"#% повышение скорости атаки, сотворения чар и передвижения, пока на вас не действуют Стальные нервы"},{"string":"#% снижение скорости атаки, сотворения чар и передвижения, пока на вас не действуют Стальные нервы","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3476327198"]}}} +{"ref":"#% increased Attack, Cast and Movement Speed while you have Onslaught","better":1,"matchers":[{"string":"#% повышение скорости атаки, сотворения чар и передвижения пока на вас действует Боевой раж"},{"string":"#% снижение скорости атаки, сотворения чар и передвижения пока на вас действует Боевой раж","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_879520319"]}}} +{"ref":"#% increased Attribute Requirements","better":-1,"matchers":[{"string":"#% увеличение требований к характеристикам"},{"string":"#% снижение требований к характеристикам","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3639275092"],"fractured":["fractured.stat_3639275092"],"enchant":["enchant.stat_3639275092"],"scourge":["scourge.stat_3639275092"]}}} +{"ref":"#% increased Attributes","better":1,"matchers":[{"string":"#% увеличение характеристик"},{"string":"#% уменьшение характеристик","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3143208761"],"implicit":["implicit.stat_3143208761"],"fractured":["fractured.stat_3143208761"],"crafted":["crafted.stat_3143208761"]}}} +{"ref":"#% increased Ball Lightning Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Шаровой молнии"},{"string":"#% уменьшение области действия Шаровой молнии","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_788307702"]}}} +{"ref":"#% increased Ball Lightning Damage","better":1,"matchers":[{"string":"#% увеличение урона Шаровой молнии"},{"string":"#% уменьшение урона Шаровой молнии","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3152812191"]}}} +{"ref":"#% increased Barrage Attack Speed","better":1,"matchers":[{"string":"#% повышение скорости атаки Очереди"},{"string":"#% снижение скорости атаки Очереди","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2523298357"]}}} +{"ref":"#% increased Barrage Damage","better":1,"matchers":[{"string":"#% увеличение урона Очереди"},{"string":"#% уменьшение урона Очереди","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3685345485"]}}} +{"ref":"#% increased Battlemage's Cry Buff Effect","better":1,"matchers":[{"string":"#% усиление эффекта Клича боевого мага"},{"string":"#% ослабление эффекта Клича боевого мага","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2426838124"],"enchant":["enchant.stat_2426838124"]}}} +{"ref":"#% increased Bear Trap Damage","better":1,"matchers":[{"string":"#% увеличение урона Медвежьего капкана"},{"string":"#% уменьшение урона Медвежьего капкана","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1877863115"]}}} +{"ref":"#% increased Blade Flurry Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Порыва клинков"},{"string":"#% уменьшение области действия Порыва клинков","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2746213081"]}}} +{"ref":"#% increased Blade Flurry Damage","better":1,"matchers":[{"string":"#% увеличение урона Порыва клинков"},{"string":"#% уменьшение урона Порыва клинков","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_754797886"]}}} +{"ref":"#% increased Blade Trap Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Ловушки лезвий"},{"string":"#% уменьшение области действия Ловушки лезвий","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1502095380"]}}} +{"ref":"#% increased Blade Trap Damage","better":1,"matchers":[{"string":"#% увеличение урона Ловушки лезвий"},{"string":"#% уменьшение урона Ловушки лезвий","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3676486210"]}}} +{"ref":"#% increased Blade Vortex Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Вихря клинков"},{"string":"#% уменьшение области действия Вихря клинков","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2748553775"]}}} +{"ref":"#% increased Blade Vortex Duration","better":1,"matchers":[{"string":"#% увеличение длительности Вихря клинков"},{"string":"#% уменьшение длительности Вихря клинков","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3024867180"]}}} +{"ref":"#% increased Blade Vortex Spell Damage","better":1,"matchers":[{"string":"#% увеличение урона от чар Вихря клинков"},{"string":"#% уменьшение урона от чар Вихря клинков","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4221797807"]}}} +{"ref":"#% increased Bladefall Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Мечепада"},{"string":"#% уменьшение области действия Мечепада","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2413715772"]}}} +{"ref":"#% increased Bladefall Critical Strike Chance","better":1,"matchers":[{"string":"#% повышение шанса критического удара Мечепада"},{"string":"#% снижение шанса критического удара Мечепада","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2833482311"]}}} +{"ref":"#% increased Bladefall Damage","better":1,"matchers":[{"string":"#% увеличение урона Мечепада"},{"string":"#% уменьшение урона Мечепада","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3069740560"]}}} +{"ref":"#% increased Bleed Duration on you","better":1,"matchers":[{"string":"#% увеличение длительности кровотечения на вас"},{"string":"#% уменьшение длительности кровотечения на вас","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1692879867"],"implicit":["implicit.stat_1692879867"],"fractured":["fractured.stat_1692879867"]}}} +{"ref":"#% increased Bleeding Duration","better":1,"matchers":[{"string":"#% увеличение длительности кровотечения"},{"string":"#% уменьшение длительности кровотечения","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1459321413"],"implicit":["implicit.stat_1459321413"],"fractured":["fractured.stat_1459321413"]}}} +{"ref":"#% increased Bleeding Duration per 12 Intelligence","better":1,"matchers":[{"string":"#% увеличение длительности кровотечения за 12 интеллекта"},{"string":"#% уменьшение длительности кровотечения за 12 интеллекта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1030835421"]}}} +{"ref":"#% increased Blight Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Мора"},{"string":"#% уменьшение области действия Мора","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2511915418"]}}} +{"ref":"#% increased Blight Damage","better":1,"matchers":[{"string":"#% увеличение урона Мора"},{"string":"#% уменьшение урона Мора","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1623552446"]}}} +{"ref":"#% increased Blind Effect","better":1,"matchers":[{"string":"#% усиление эффекта ослепления"},{"string":"#% ослабление эффекта ослепления","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1585769763"]}}} +{"ref":"#% increased Block and Stun Recovery during Effect","better":1,"matchers":[{"string":"#% ускорение восстановления после оглушения и блока во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_3479987487"],"fractured":["fractured.stat_3479987487"]}}} +{"ref":"#% increased Block Recovery","better":1,"matchers":[{"string":"#% ускорение восстановления блока"},{"string":"#% замедление восстановления блока","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_369183568"]}}} +{"ref":"#% increased Bodyswap Cast Speed","better":1,"matchers":[{"string":"#% повышение скорости сотворения Обмена телами"},{"string":"#% снижение скорости сотворения Обмена телами","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_397438226"]}}} +{"ref":"#% increased Bodyswap Damage","better":1,"matchers":[{"string":"#% увеличение урона Обмена телами"},{"string":"#% уменьшение урона Обмена теламиe","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_341054435"]}}} +{"ref":"#% increased Bone Offering Duration","better":1,"matchers":[{"string":"#% увеличение длительности Подношения костей"},{"string":"#% уменьшение длительности Подношения костей","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1607493537"]}}} +{"ref":"#% increased Boneshatter Damage","better":1,"matchers":[{"string":"#% увеличение урона Дробления костей"},{"string":"#% уменьшение урона Дробления костей","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2384264970"]}}} +{"ref":"#% increased Boneshatter Stun Duration","better":1,"matchers":[{"string":"#% увеличение длительности оглушения Дробления костей"},{"string":"#% уменьшение длительности оглушения Дробления костей","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2742093846"]}}} +{"ref":"#% increased bonuses gained from Equipped Quiver","better":1,"matchers":[{"string":"#% увеличение бонусов, полученных от надетого колчана"},{"string":"#% уменьшение бонусов, полученных от надетого колчана","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1200678966"]}}} +{"ref":"#% increased Brand Attachment range","better":1,"matchers":[{"string":"#% увеличение дальности прикрепления клейма"},{"string":"#% уменьшение дальности прикрепления клейма","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4223377453"],"implicit":["implicit.stat_4223377453"],"fractured":["fractured.stat_4223377453"],"scourge":["scourge.stat_4223377453"],"crafted":["crafted.stat_4223377453"]}}} +{"ref":"#% increased Brand Damage","better":1,"matchers":[{"string":"#% увеличение урона клеймами"},{"string":"#% уменьшение урона клеймами","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1323465399"]}}} +{"ref":"#% increased Brand Damage per 10 Devotion","better":1,"matchers":[{"string":"#% увеличение урона клеймами за каждые 10 набожности"},{"string":"#% уменьшение урона клеймами за каждые 10 набожности","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2697019412"]}}} +{"ref":"#% increased Brute Force Experience gained","better":1,"matchers":[{"string":"#% увеличение получаемого Грубой силой опыта"},{"string":"#% уменьшение получаемого Грубой силой опыта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2377447058"],"fractured":["fractured.stat_2377447058"]}}} +{"ref":"#% increased Brute Force speed","better":1,"matchers":[{"string":"#% повышение скорости использования Грубой силы"},{"string":"#% снижение скорости использования Грубой силы","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3095027077"],"implicit":["implicit.stat_3095027077"],"fractured":["fractured.stat_3095027077"]}}} +{"ref":"#% increased Burning Arrow Damage","better":1,"matchers":[{"string":"#% увеличение урона Горящей стрелы"},{"string":"#% уменьшение урона Горящей стрелы","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_696995312"]}}} +{"ref":"#% increased Burning Damage","better":1,"matchers":[{"string":"#% увеличение урона от горения"},{"string":"#% уменьшение урона от горения","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_burning_damage"],"explicit":["explicit.stat_1175385867"],"implicit":["implicit.stat_1175385867"],"fractured":["fractured.stat_1175385867"]}}} +{"ref":"#% increased Burning Damage for each time you have Shocked a Non-Shocked Enemy Recently, up to a maximum of 120%","better":1,"matchers":[{"string":"#% увеличение урона от горения за каждый раз, когда вы недавно накладывали шок на врага без шока, вплоть до максимума в 120%"},{"string":"#% уменьшение урона от горения за каждый раз, когда вы недавно накладывали шок на врага без шока, вплоть до максимума в 120%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3285748758"]}}} +{"ref":"#% increased Burning Damage if you've Ignited an Enemy Recently","better":1,"matchers":[{"string":"#% увеличение урона от горения, если вы недавно подожгли врага"},{"string":"#% уменьшение урона от горения, если вы недавно подожгли врага","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3919557483"]}}} +{"ref":"#% increased Cast Speed","better":1,"matchers":[{"string":"#% повышение скорости сотворения чар"},{"string":"#% снижение скорости сотворения чар","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2891184298"],"implicit":["implicit.stat_2891184298"],"fractured":["fractured.stat_2891184298"],"enchant":["enchant.stat_2891184298"],"scourge":["scourge.stat_2891184298"],"crafted":["crafted.stat_2891184298"]}}} +{"ref":"#% increased Cast Speed during any Flask Effect","better":1,"matchers":[{"string":"#% повышение скорости сотворения чар во время действия эффекта любого флакона"},{"string":"#% снижение скорости сотворения чар во время действия эффекта любого флакона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_252194507"],"implicit":["implicit.stat_252194507"],"fractured":["fractured.stat_252194507"]}}} +{"ref":"#% increased Cast Speed during Effect","better":1,"matchers":[{"string":"#% повышение скорости сотворения чар во время действия эффекта"},{"string":"#% снижение скорости сотворения чар во время действия эффекта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3256116097"],"fractured":["fractured.stat_3256116097"]}}} +{"ref":"#% increased Cast Speed if a Minion has been Killed Recently","better":1,"matchers":[{"string":"#% повышение скорости сотворения чар, если приспешник недавно был убит"},{"string":"#% снижение скорости сотворения чар, если приспешник недавно был убит","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3110907148"],"fractured":["fractured.stat_3110907148"]}}} +{"ref":"#% increased Cast Speed if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"#% повышение скорости сотворения чар, если вы недавно наносили критический удар"},{"string":"#% снижение скорости сотворения чар, если вы недавно наносили критический удар","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1174076861"],"fractured":["fractured.stat_1174076861"]}}} +{"ref":"#% increased Cast Speed if you've Killed Recently","better":1,"matchers":[{"string":"#% повышение скорости сотворения чар, если недавно вы совершали убийство"},{"string":"#% снижение скорости сотворения чар, если недавно вы совершали убийство","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2072625596"],"fractured":["fractured.stat_2072625596"]}}} +{"ref":"#% increased Cast Speed per Power Charge","better":1,"matchers":[{"string":"#% повышение скорости сотворения чар за заряд энергии"}],"trade":{"ids":{"explicit":["explicit.stat_1604393896"]}}} +{"ref":"#% increased Cast Speed while affected by Zealotry","better":1,"matchers":[{"string":"#% повышение скорости сотворения чар под действием Фанатизма"},{"string":"#% снижение скорости сотворения чар под действием Фанатизма","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2444534954"]}}} +{"ref":"#% increased Cast Speed while Chilled","better":1,"matchers":[{"string":"#% повышение скорости сотворения чар пока вы охлаждены"},{"string":"#% снижение скорости сотворения чар пока вы охлаждены","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_778552242"]}}} +{"ref":"#% increased Cast Speed while Dual Wielding","better":1,"matchers":[{"string":"#% повышение скорости сотворения чар с парным оружием в руках"},{"string":"#% снижение скорости сотворения чар с парным оружием в руках","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2382196858"],"implicit":["implicit.stat_2382196858"],"fractured":["fractured.stat_2382196858"]}}} +{"ref":"#% increased Cast Speed while holding a Shield","better":1,"matchers":[{"string":"#% повышение скорости сотворения чар со щитом в руках"},{"string":"#% снижение скорости сотворения чар со щитом в руках","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1612163368"],"implicit":["implicit.stat_1612163368"],"fractured":["fractured.stat_1612163368"]}}} +{"ref":"#% increased Cast Speed while Ignited","better":1,"matchers":[{"string":"#% повышение скорости сотворения чар, если подожжён"},{"string":"#% снижение скорости сотворения чар, если подожжён","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3660039923"]}}} +{"ref":"#% increased Cast Speed while wielding a Staff","better":1,"matchers":[{"string":"#% повышение скорости сотворения чар с посохом в руках"},{"string":"#% снижение скорости сотворения чар с посохом в руках","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2066542501"],"implicit":["implicit.stat_2066542501"],"fractured":["fractured.stat_2066542501"]}}} +{"ref":"#% increased Cast Speed with Cold Skills","better":1,"matchers":[{"string":"#% повышение скорости сотворения чар для умений холода"},{"string":"#% снижение скорости сотворения чар для умений холода","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_928238845"],"fractured":["fractured.stat_928238845"]}}} +{"ref":"#% increased Cast Speed with Fire Skills","better":1,"matchers":[{"string":"#% повышение скорости сотворения чар для умений огня"},{"string":"#% снижение скорости сотворения чар для умений огня","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1476643878"],"fractured":["fractured.stat_1476643878"]}}} +{"ref":"#% increased Cast Speed with Lightning Skills","better":1,"matchers":[{"string":"#% повышение скорости сотворения чар для умений молнии"},{"string":"#% снижение скорости сотворения чар для умений молнии","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1788635023"],"fractured":["fractured.stat_1788635023"]}}} +{"ref":"#% increased Caustic Arrow Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Едкой стрелы"},{"string":"#% уменьшение области действия Едкой стрелы","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3854556792"]}}} +{"ref":"#% increased Caustic Arrow Damage","better":1,"matchers":[{"string":"#% увеличение урона Едкой стрелы"},{"string":"#% уменьшение урона Едкой стрелы","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1496334795"]}}} +{"ref":"#% increased Caustic Arrow Duration","better":1,"matchers":[{"string":"#% увеличение длительности Едкой стрелы"},{"string":"#% уменьшение длительности Едкой стрелы","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_387490713"]}}} +{"ref":"#% increased chance to Avoid Resolve Loss from Enemy Melee Hits","better":1,"matchers":[{"string":"#% увеличение шанса избежать потерю Решимости от ударов врага в ближнем бою"}],"trade":{"ids":{"explicit":["sanctum.stat_3134588943"]}}} +{"ref":"#% increased chance to Avoid Resolve Loss from Enemy Projectile Hits","better":1,"matchers":[{"string":"#% увеличение шанса избежать потерю Решимости от ударов врага снарядами"}],"trade":{"ids":{"explicit":["sanctum.stat_1798691236"]}}} +{"ref":"#% increased Chance to Block","better":1,"matchers":[{"string":"#% увеличение шанса блока"},{"string":"#% уменьшение шанса блока","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2481353198"],"fractured":["fractured.stat_2481353198"],"crafted":["crafted.stat_2481353198"]}}} +{"ref":"#% increased Chaos Damage","better":1,"matchers":[{"string":"#% увеличение урона хаосом"},{"string":"#% уменьшение урона хаосом","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_736967255"],"implicit":["implicit.stat_736967255"],"fractured":["fractured.stat_736967255"],"scourge":["scourge.stat_736967255"],"crafted":["crafted.stat_736967255"]}}} +{"ref":"#% increased Chaos Damage over Time","better":1,"matchers":[{"string":"#% увеличение постепенного урона хаосом"},{"string":"#% уменьшение постепенного урона хаосом","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_601272515"],"fractured":["fractured.stat_601272515"]}}} +{"ref":"#% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius","better":1,"matchers":[{"string":"#% увеличение урона хаосом за каждые 10 интеллекта от выбранных пассивных умений в радиусе"},{"string":"#% уменьшение урона хаосом за каждые 10 интеллекта от выбранных пассивных умений в радиусе","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2582360791"]}}} +{"ref":"#% increased Chaos Damage per Level","better":1,"matchers":[{"string":"#% увеличение урона хаосом за уровень"},{"string":"#% уменьшение урона хаосом за уровень","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4084331136"]}}} +{"ref":"#% increased Chaos Damage while affected by Herald of Agony","better":1,"matchers":[{"string":"#% увеличение урона хаосом под действием Вестника агонии"},{"string":"#% уменьшение урона хаосом под действием Вестника агонии","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_739274558"]}}} +{"ref":"#% increased Chaos Damage with Attack Skills","better":1,"matchers":[{"string":"#% увеличение урона хаосом от умений атак"},{"string":"#% уменьшение урона хаосом от умений атак","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1959092146"]}}} +{"ref":"#% increased Chaos Damage with Spell Skills","better":1,"matchers":[{"string":"#% увеличение урона хаосом от умений чар"},{"string":"#% уменьшение урона хаосом от умений чар","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3761858151"]}}} +{"ref":"#% increased Character Size","better":1,"matchers":[{"string":"#% увеличение размера персонажа"},{"string":"#% уменьшение размера персонажа","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1408638732"],"implicit":["implicit.stat_1408638732"]}}} +{"ref":"#% increased Charge Duration","better":1,"matchers":[{"string":"#% увеличение длительности заряда"},{"string":"#% уменьшение длительности заряда","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2171629017"]}}} +{"ref":"#% increased Charge Recovery","better":1,"matchers":[{"string":"#% увеличение восстановления зарядов"},{"string":"#% уменьшение восстановления зарядов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3196823591"],"fractured":["fractured.stat_3196823591"],"enchant":["enchant.stat_3196823591"]}}} +{"ref":"#% increased Charged Dash Damage","better":1,"matchers":[{"string":"#% увеличение урона Заряженного рывка"},{"string":"#% уменьшение урона Заряженного рывка","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1265055278"]}}} +{"ref":"#% increased Charges gained by Other Flasks during Effect","better":1,"matchers":[{"string":"#% увеличение количества зарядов, получаемых другими флаконами, во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_1085359447"]}}} +{"ref":"#% increased Charges per use","better":-1,"matchers":[{"string":"#% увеличение количества используемых зарядов"},{"string":"#% уменьшение количества используемых зарядов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_388617051"],"fractured":["fractured.stat_388617051"],"enchant":["enchant.stat_388617051"]}}} +{"ref":"#% increased Chill Duration on Enemies","better":1,"matchers":[{"string":"#% увеличение длительности охлаждения на врагах"},{"string":"#% уменьшение длительности охлаждения на врагах","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3485067555"],"implicit":["implicit.stat_3485067555"],"crafted":["crafted.stat_3485067555"]}}} +{"ref":"#% increased Chill Duration on Enemies when in Off Hand","better":1,"matchers":[{"string":"#% увеличение длительности охлаждения врагов, если в левой руке"},{"string":"#% уменьшение длительности охлаждения врагов, если в левой руке","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4199402748"]}}} +{"ref":"#% increased Claw Physical Damage when on Low Life","better":1,"matchers":[{"string":"#% увеличение физического урона когтями при малом количестве здоровья"},{"string":"#% уменьшение физического урона когтями при малом количестве здоровья","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1081444608"]}}} +{"ref":"#% increased Cleave Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Рассечения"},{"string":"#% уменьшение области действия Рассечения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3172519570"]}}} +{"ref":"#% increased Cleave Attack Speed","better":1,"matchers":[{"string":"#% повышение скорости атаки Рассечения"},{"string":"#% снижение скорости атаки Рассечения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3106577499"]}}} +{"ref":"#% increased Cleave Damage","better":1,"matchers":[{"string":"#% увеличение урона Рассечения"},{"string":"#% уменьшение урона Рассечения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1359058534"]}}} +{"ref":"#% increased Cold Damage","better":1,"matchers":[{"string":"#% увеличение урона от холода"},{"string":"#% уменьшение урона от холода","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_cold_damage"],"explicit":["explicit.stat_3291658075"],"implicit":["implicit.stat_3291658075"],"fractured":["fractured.stat_3291658075"],"scourge":["scourge.stat_3291658075"],"crafted":["crafted.stat_3291658075"]}}} +{"ref":"#% increased Cold Damage if you have used a Fire Skill Recently","better":1,"matchers":[{"string":"#% увеличение урона от холода, если вы недавно использовали умение огня"},{"string":"#% уменьшение урона от холода, если вы недавно использовали умение огня","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3612256591"]}}} +{"ref":"#% increased Cold Damage per 1% Cold Resistance above 75%","better":1,"matchers":[{"string":"#% увеличение урона от холода за каждый 1% сопротивления холоду свыше 75%"}],"trade":{"ids":{"explicit":["explicit.stat_2517031897"]}}} +{"ref":"#% increased Cold Damage per 1% Missing Cold Resistance, up to a maximum of 300%","better":1,"matchers":[{"string":"#% увеличение урона от холода за 1% недостающего сопротивления холоду, вплоть до максимума в 300%"},{"string":"#% уменьшение урона от холода за 1% недостающего сопротивления холоду, вплоть до максимума в 300%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2859664487"]}}} +{"ref":"#% increased Cold Damage per Frenzy Charge","better":1,"matchers":[{"string":"#% увеличение урона от холода за заряд ярости"},{"string":"#% уменьшение урона от холода за заряд ярости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_329974315"]}}} +{"ref":"#% increased Cold Damage while affected by Hatred","better":1,"matchers":[{"string":"#% увеличение урона от холода под действием Холодной ненависти"},{"string":"#% уменьшение урона от холода под действием Холодной ненависти","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1413864591"]}}} +{"ref":"#% increased Cold Damage while affected by Herald of Ice","better":1,"matchers":[{"string":"#% увеличение урона от холода под действием Вестника льда"},{"string":"#% уменьшение урона от холода под действием Вестника льда","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1970606344"]}}} +{"ref":"#% increased Cold Damage while your Off Hand is empty","better":1,"matchers":[{"string":"#% увеличение урона от холода, если в левой руке ничего нет"},{"string":"#% уменьшение урона от холода, если в левой руке ничего нет","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3520048646"]}}} +{"ref":"#% increased Cold Damage with Attack Skills","better":1,"matchers":[{"string":"#% увеличение урона от холода от умений атак"},{"string":"#% уменьшение урона от холода от умений атак","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_cold_damage_with_attack_skills"],"explicit":["explicit.stat_860668586"],"implicit":["implicit.stat_860668586"]}}} +{"ref":"#% increased Cold Damage with Spell Skills","better":1,"matchers":[{"string":"#% увеличение урона от холода умениями чар"},{"string":"#% уменьшение урона от холода умениями чар","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2186994986"]}}} +{"ref":"#% increased Cold Resistance","better":1,"matchers":[{"string":"#% повышение сопротивления холоду"},{"string":"#% снижение сопротивления холоду","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4252311791"]}}} +{"ref":"#% increased Cold Snap Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Укуса стужи"},{"string":"#% уменьшение области действия Укуса стужи","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3371538704"]}}} +{"ref":"#% increased Cold Snap Damage","better":1,"matchers":[{"string":"#% увеличение урона Укуса стужи"},{"string":"#% уменьшение урона Укуса стужи","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3729006707"]}}} +{"ref":"#% increased Cold Spell Damage","better":1,"matchers":[{"string":"#% увеличение урона от холода чарами "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_cold_spell_damage"]}}} +{"ref":"#% increased Conductivity Curse Effect","better":1,"matchers":[{"string":"#% усиление эффекта проклятия Проводимости"},{"string":"#% ослабление эффекта проклятия Проводимости","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3395908304"],"enchant":["enchant.stat_3395908304"]}}} +{"ref":"#% increased Conductivity Duration","better":1,"matchers":[{"string":"#% увеличение длительности Проводимости"},{"string":"#% уменьшение длительности Проводимости","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_819890745"]}}} +{"ref":"#% increased Contagion Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Инфекции"},{"string":"#% уменьшение области действия Инфекции","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1056396846"]}}} +{"ref":"#% increased Contagion Damage","better":1,"matchers":[{"string":"#% увеличение урона Инфекции"},{"string":"#% уменьшение урона Инфекции","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_277116504"]}}} +{"ref":"#% increased Contagion Duration","better":1,"matchers":[{"string":"#% увеличение длительности Инфекции"},{"string":"#% уменьшение длительности Инфекции","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2565809961"]}}} +{"ref":"#% increased Convocation Buff Effect","better":1,"matchers":[{"string":"#% усиление положительного эффекта Сбора"},{"string":"#% ослабление положительного эффекта Сбора","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2054059315"]}}} +{"ref":"#% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"#% повышение скорости перезарядки"},{"string":"#% повышение скорости перезарядки умений"},{"string":"#% снижение скорости перезарядки","negate":true},{"string":"#% снижение скорости перезарядки умений","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1004011302","explicit.stat_239144"],"implicit":["implicit.stat_1004011302"],"fractured":["fractured.stat_1004011302"],"scourge":["scourge.stat_1004011302"],"crafted":["crafted.stat_1004011302"]}}} +{"ref":"#% increased Cooldown Recovery Rate for throwing Traps","better":1,"matchers":[{"string":"#% повышение скорости перезарядки броска ловушек"},{"string":"#% снижение скорости перезарядки броска ловушек","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3417757416"],"implicit":["implicit.stat_3417757416"],"fractured":["fractured.stat_3417757416"]}}} +{"ref":"#% increased Cooldown Recovery Rate if you've cast Temporal Chains in the past 10 seconds","better":1,"matchers":[{"string":"#% повышение скорости перезарядки, если вы сотворяли Путы времени за последние 10 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_2954796309"]}}} +{"ref":"#% increased Cooldown Recovery Rate of Movement Skills","better":1,"matchers":[{"string":"#% повышение скорости перезарядки умений передвижения"},{"string":"#% снижение скорости перезарядки умений передвижения","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1124980805"]}}} +{"ref":"#% increased Cooldown Recovery Rate of Movement Skills used while affected by Haste","better":1,"matchers":[{"string":"#% повышение скорости перезарядки умений передвижения, используемых во время действия Спешки"},{"string":"#% снижение скорости перезарядки умений передвижения, используемых во время действия Спешки","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3332055899"]}}} +{"ref":"#% increased Cooldown Recovery Rate of Travel Skills","better":1,"matchers":[{"string":"#% повышение скорости перезарядки умений смещения"},{"string":"#% снижение скорости перезарядки умений смещения","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2308278768"],"implicit":["implicit.stat_2308278768"]}}} +{"ref":"#% increased Cooldown Recovery Rate of Travel Skills per Frenzy Charge","better":1,"matchers":[{"string":"#% повышение скорости перезарядки умений смещения за заряд ярости"},{"string":"#% снижение скорости перезарядки умений смещения за заряд ярости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3083201633"]}}} +{"ref":"#% increased Corrupting Fever Duration","better":1,"matchers":[{"string":"#% увеличение длительности Разлагающей лихорадки"},{"string":"#% уменьшение длительности Разлагающей лихорадки","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3529090048"]}}} +{"ref":"#% increased Cost of Skills for each 200 total Mana Spent Recently","better":1,"matchers":[{"string":"#% повышение стоимости умений за каждые недавно потраченные 200 маны"},{"string":"#% снижение стоимости умений за каждые недавно потраченные 200 маны","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2650053239"]}}} +{"ref":"#% increased Counter-Thaumaturgy Experience gained","better":1,"matchers":[{"string":"#% увеличение получаемого Контрмагией опыта"},{"string":"#% уменьшение получаемого Контрмагией опыта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1237550112"],"fractured":["fractured.stat_1237550112"]}}} +{"ref":"#% increased Counter-Thaumaturgy speed","better":1,"matchers":[{"string":"#% повышение скорости использования Контрмагии"},{"string":"#% снижение скорости использования Контрмагии","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2888942321"],"implicit":["implicit.stat_2888942321"],"fractured":["fractured.stat_2888942321"]}}} +{"ref":"#% increased Creeping Frost Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Ползучего мороза"},{"string":"#% уменьшение области действия Ползучего мороза","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3816022821"]}}} +{"ref":"#% increased Creeping Frost Damage","better":1,"matchers":[{"string":"#% увеличение урона Ползучего мороза"},{"string":"#% уменьшение урона Ползучего мороза","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2846773529"]}}} +{"ref":"#% increased Creeping Frost Duration","better":1,"matchers":[{"string":"#% увеличение длительности Ползучего мороза"},{"string":"#% уменьшение длительности Ползучего мороза","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3804575865"]}}} +{"ref":"#% increased Cremation Cast Speed","better":1,"matchers":[{"string":"#% повышение скорости сотворения Кремации"},{"string":"#% снижение скорости сотворения Кремации","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2938856716"]}}} +{"ref":"#% increased Cremation Damage","better":1,"matchers":[{"string":"#% увеличение урона Кремации"},{"string":"#% уменьшение урона Кремации","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4175469673"]}}} +{"ref":"#% increased Critical Strike Chance","better":1,"matchers":[{"string":"#% повышение шанса критического удара"},{"string":"#% снижение шанса критического удара","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2375316951"],"implicit":["implicit.stat_2375316951"],"fractured":["fractured.stat_2375316951"],"enchant":["enchant.stat_2375316951"],"crafted":["crafted.stat_2375316951"]}}} +{"ref":"#% increased Critical Strike Chance against Bleeding Enemies","better":1,"matchers":[{"string":"#% повышение шанса критического удара по истекающим кровью врагам"},{"string":"#% снижение шанса критического удара по истекающим кровью врагам","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2282705842"]}}} +{"ref":"#% increased Critical Strike Chance against Blinded Enemies","better":1,"matchers":[{"string":"#% повышение шанса критического удара по ослепленным врагам"},{"string":"#% снижение шанса критического удара по ослепленным врагам","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1939202111"],"fractured":["fractured.stat_1939202111"]}}} +{"ref":"#% increased Critical Strike Chance against Chilled Enemies","better":1,"matchers":[{"string":"#% повышение шанса критического удара по охлаждённым врагам"},{"string":"#% снижение шанса критического удара по охлаждённым врагам","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3699490848"]}}} +{"ref":"#% increased Critical Strike Chance against Enemies on Consecrated Ground during Effect","better":1,"matchers":[{"string":"#% увеличение шанса критического удара по врагам на освященной земле во время действия эффекта"},{"string":"#% уменьшение шанса критического удара по врагам на освященной земле во время действия эффекта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3278399103"]}}} +{"ref":"#% increased Critical Strike Chance against Enemies on Consecrated Ground while affected by Zealotry","better":1,"matchers":[{"string":"#% повышение шанса критического удара по врагам на освящённой земле под действием Фанатизма"}],"trade":{"ids":{"explicit":["explicit.stat_214835567"]}}} +{"ref":"#% increased Critical Strike Chance against Enemies that are on Full Life","better":1,"matchers":[{"string":"#% повышение шанса критического удара по врагам с полным здоровьем"},{"string":"#% снижение шанса критического удара по врагам с полным здоровьем","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_47954913"]}}} +{"ref":"#% increased Critical Strike Chance against Poisoned Enemies","better":1,"matchers":[{"string":"#% повышение шанса критического удара по отравленным врагам"},{"string":"#% снижение шанса критического удара по отравленным врагам","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1345659139"],"fractured":["fractured.stat_1345659139"]}}} +{"ref":"#% increased Critical Strike Chance against Shocked Enemies","better":1,"matchers":[{"string":"#% повышение шанса критического удара по поражённым шоком врагам"},{"string":"#% снижение шанса критического удара по поражённым шоком врагам","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_276103140"],"fractured":["fractured.stat_276103140"]}}} +{"ref":"#% increased Critical Strike Chance during any Flask Effect","better":1,"matchers":[{"string":"#% повышение шанса критического удара во время действия эффекта любого флакона"},{"string":"#% снижение шанса критического удара во время действия эффекта любого флакона","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2898434123"]}}} +{"ref":"#% increased Critical Strike Chance during Effect","better":1,"matchers":[{"string":"#% повышение шанса критического удара во время действия эффекта"},{"string":"#% снижение шанса критического удара во время действия эффекта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2008255263"],"fractured":["fractured.stat_2008255263"],"crafted":["crafted.stat_2008255263"]}}} +{"ref":"#% increased Critical Strike Chance for Attacks","better":1,"matchers":[{"string":"#% повышение шанса критического удара атаками"},{"string":"#% снижение шанса критического удара атаками","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2194114101"]}}} +{"ref":"#% increased Critical Strike Chance for Spells if you've Killed Recently","better":1,"matchers":[{"string":"#% повышение шанса критического удара чарами, если недавно вы совершали убийство"},{"string":"#% снижение шанса критического удара чарами, если недавно вы совершали убийство","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1243114410"]}}} +{"ref":"#% increased Critical Strike Chance for Spells while Dual Wielding","better":1,"matchers":[{"string":"#% повышение шанса критического удара чарами с парным оружием в руках"},{"string":"#% снижение шанса критического удара чарами с парным оружием в руках","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1218939541"]}}} +{"ref":"#% increased Critical Strike Chance for Spells while holding a Shield","better":1,"matchers":[{"string":"#% повышение шанса критического удара чарами со щитом в руках"},{"string":"#% снижение шанса критического удара чарами со щитом в руках","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_952509814"]}}} +{"ref":"#% increased Critical Strike Chance for Spells while wielding a Staff","better":1,"matchers":[{"string":"#% повышение шанса критического удара чарами с посохом в руках"},{"string":"#% снижение шанса критического удара чарами с посохом в руках","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_140429540"]}}} +{"ref":"#% increased Critical Strike Chance if you have Killed Recently","better":1,"matchers":[{"string":"#% повышение шанса критического удара, если вы недавно совершали убийство"},{"string":"#% снижение шанса критического удара, если вы недавно совершали убийство","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3914638685"],"fractured":["fractured.stat_3914638685"]}}} +{"ref":"#% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently","better":1,"matchers":[{"string":"#% повышение шанса критического удара, если вы недавно не наносили критический удар"},{"string":"#% повышение шанса критического удара, если недавно вы не наносили критический удар"},{"string":"#% снижение шанса критического удара, если вы недавно не наносили критический удар","negate":true},{"string":"#% снижение шанса критического удара, если недавно вы не наносили критический удар","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2856328513"],"fractured":["fractured.stat_2856328513"],"enchant":["enchant.stat_3010587200"]}}} +{"ref":"#% increased Critical Strike Chance if you haven't gained a Power Charge Recently","better":1,"matchers":[{"string":"#% повышение шанса критического удара если недавно вы не получали заряд энергии"},{"string":"#% снижение шанса критического удара если недавно вы не получали заряд энергии","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_151106430"]}}} +{"ref":"#% increased Critical Strike Chance if you've been Shocked Recently","better":1,"matchers":[{"string":"#% повышение шанса критического удара если недавно на вас накладывали шок"},{"string":"#% снижение шанса критического удара если недавно на вас накладывали шок","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1434381067"]}}} +{"ref":"#% increased Critical Strike Chance per 10 Strength","better":1,"matchers":[{"string":"#% повышение шанса критического удара за каждые 10 силы"},{"string":"#% снижение шанса критического удара за каждые 10 силы","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2511370818"]}}} +{"ref":"#% increased Critical Strike Chance per 25 Intelligence","better":1,"matchers":[{"string":"#% увеличение шанса критического удара за каждые 25 интеллекта"}],"trade":{"ids":{"explicit":["explicit.stat_1861913998"]}}} +{"ref":"#% increased Critical Strike Chance per 4% Quality","better":1,"matchers":[{"string":"#% повышение шанса критического удара за 4% качества"}],"trade":{"ids":{"enchant":["enchant.stat_3103053611"]}}} +{"ref":"#% increased Critical Strike Chance per Brand","better":1,"matchers":[{"string":"#% повышение шанса критического удара за каждое клеймо"},{"string":"#% снижение шанса критического удара за каждое клеймо","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2409504914"]}}} +{"ref":"#% increased Critical Strike Chance per Endurance Charge","better":1,"matchers":[{"string":"#% повышение шанса критического удара за заряд выносливости"},{"string":"#% снижение шанса критического удара за заряд выносливости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2547511866"]}}} +{"ref":"#% increased Critical Strike Chance per Frenzy Charge","better":1,"matchers":[{"string":"#% повышение шанса критического удара за заряд ярости"},{"string":"#% снижение шанса критического удара за заряд ярости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_707887043"]}}} +{"ref":"#% increased Critical Strike Chance per Grand Spectrum","better":1,"matchers":[{"string":"#% повышение шанса критического удара за Великий образ"}],"trade":{"ids":{"explicit":["explicit.stat_2948375275"]}}} +{"ref":"#% increased Critical Strike Chance while affected by Wrath","better":1,"matchers":[{"string":"#% повышение шанса критического удара под действием Грозного гнева"},{"string":"#% снижение шанса критического удара под действием Грозного гнева","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3357049845"]}}} +{"ref":"#% increased Critical Strike Chance while area is not in Lockdown\nPlayers have #% increased Critical Strike Chance while area is not in Lockdown","better":1,"matchers":[{"string":"#% повышение шанса критического удара, пока область не изолирована\nИгроки имеют #% повышение шанса критического удара, пока область не изолирована"},{"string":"#% снижение шанса критического удара, пока область не изолирована\nИгроки имеют #% снижение шанса критического удара, пока область не изолирована","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1051688002"],"fractured":["fractured.stat_1051688002"]}}} +{"ref":"#% increased Critical Strike Chance while Physical Aegis is depleted","better":1,"matchers":[{"string":"#% повышение шанса критического удара, пока Физическая Эгида истощена"},{"string":"#% снижение шанса критического удара, пока Физическая Эгида истощена","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2620656067"]}}} +{"ref":"#% increased Critical Strike Chance while you have at least 200 Intelligence","better":1,"matchers":[{"string":"#% повышение шанса критического удара, если у вас минимум 200 интеллекта"},{"string":"#% снижение шанса критического удара, если у вас минимум 200 интеллекта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_578121324"]}}} +{"ref":"#% increased Critical Strike Chance while you have Avatar of Fire","better":1,"matchers":[{"string":"#% повышение шанса критического удара, пока на вас действует Воплощение огня"},{"string":"#% снижение шанса критического удара, пока на вас действует Воплощение огня","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2815652613"]}}} +{"ref":"#% increased Critical Strike Chance with arrows that Fork","better":1,"matchers":[{"string":"#% повышение шанса критического удара разветвляющимися стрелами"},{"string":"#% снижение шанса критического удара разветвляющимися стрелами","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4169623196"]}}} +{"ref":"#% increased Critical Strike Chance with Bows","better":1,"matchers":[{"string":"#% повышение шанса критического удара луками"},{"string":"#% снижение шанса критического удара луками","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2091591880"],"implicit":["implicit.stat_2091591880"],"fractured":["fractured.stat_2091591880"],"scourge":["scourge.stat_2091591880"]}}} +{"ref":"#% increased Critical Strike Chance with Cold Skills","better":1,"matchers":[{"string":"#% повышение шанса критического удара умениями холода"},{"string":"#% снижение шанса критического удара умениями холода","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3337344042"],"fractured":["fractured.stat_3337344042"]}}} +{"ref":"#% increased Critical Strike Chance with Elemental Skills","better":1,"matchers":[{"string":"#% повышение шанса критического удара умениями стихий"},{"string":"#% снижение шанса критического удара умениями стихий","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_439950087"],"fractured":["fractured.stat_439950087"]}}} +{"ref":"#% increased Critical Strike Chance with Fire Skills","better":1,"matchers":[{"string":"#% повышение шанса критического удара умениями огня"},{"string":"#% снижение шанса критического удара умениями огня","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1104796138"],"fractured":["fractured.stat_1104796138"]}}} +{"ref":"#% increased Critical Strike Chance with Lightning Skills","better":1,"matchers":[{"string":"#% повышение шанса критического удара умениями молнии"},{"string":"#% снижение шанса критического удара умениями молнии","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1186596295"],"fractured":["fractured.stat_1186596295"]}}} +{"ref":"#% increased Critical Strike Chance with Melee Weapons","better":1,"matchers":[{"string":"#% увеличение шанса критического удара оружием ближнего боя"},{"string":"#% уменьшениее шанса критического удара оружием ближнего боя","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3678828098"]}}} +{"ref":"#% increased Critical Strike Chance with One Handed Melee Weapons","better":1,"matchers":[{"string":"#% повышение шанса критического удара одноручным оружием ближнего боя"},{"string":"#% снижение шанса критического удара одноручным оружием ближнего боя","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2381842786"],"fractured":["fractured.stat_2381842786"]}}} +{"ref":"#% increased Critical Strike Chance with Spells which remove the maximum number of Seals","better":1,"matchers":[{"string":"#% повышение шанса критического удара для чар, которые снимают максимальное количество печатей"},{"string":"#% снижение шанса критического удара для чар, которые снимают максимальное количество печатей","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2897207025"]}}} +{"ref":"#% increased Critical Strike Chance with Traps","better":1,"matchers":[{"string":"#% повышение шанса критического удара ловушками"},{"string":"#% снижение шанса критического удара ловушками","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1192661666"]}}} +{"ref":"#% increased Critical Strike Chance with Two Handed Melee Weapons","better":1,"matchers":[{"string":"#% повышение шанса критического удара двуручным оружием ближнего боя"},{"string":"#% снижение шанса критического удара двуручным оружием ближнего боя","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_764295120"],"fractured":["fractured.stat_764295120"]}}} +{"ref":"#% increased Critical Strike Chance with Vaal Skills during effect","better":1,"matchers":[{"string":"#% увеличение шанса критического удара умениями ваал во время действия эффекта"},{"string":"#% уменьшение шанса критического удара умениями ваал во время действия эффекта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_778036553"]}}} +{"ref":"#% increased Cyclone Attack Speed","better":1,"matchers":[{"string":"#% повышение скорости атаки Вихря"},{"string":"#% снижение скорости атаки Вихря","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_835592326"]}}} +{"ref":"#% increased Cyclone Damage","better":1,"matchers":[{"string":"#% увеличение урона Вихря"},{"string":"#% уменьшение урона Вихря","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1454162553"]}}} +{"ref":"#% increased Damage","better":1,"matchers":[{"string":"#% увеличение урона"},{"string":"#% уменьшение урона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2154246560"],"implicit":["implicit.stat_2154246560"],"fractured":["fractured.stat_2154246560"],"crafted":["crafted.stat_2154246560"]}}} +{"ref":"#% increased Damage during any Flask Effect","better":1,"matchers":[{"string":"#% увеличение урона во время действия эффекта любого флакона"},{"string":"#% уменьшение урона во время действия эффекта любого флакона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2947215268"],"implicit":["implicit.stat_2947215268"],"fractured":["fractured.stat_2947215268"],"crafted":["crafted.stat_2947215268"]}}} +{"ref":"#% increased Damage for each Magic Item Equipped","better":1,"matchers":[{"string":"#% увеличение урона за надетый волшебный предмет"},{"string":"#% уменьшение урона за надетый волшебный предмет","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_886366428"],"fractured":["fractured.stat_886366428"]}}} +{"ref":"#% increased Damage for each Poison on you up to a maximum of 75%","better":1,"matchers":[{"string":"#% увеличение урона за каждый действующий на вас яд, вплоть до максимума в 75%"},{"string":"#% уменьшение урона за каждый действующий на вас яд, вплоть до максимума в 75%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1034580601"]}}} +{"ref":"#% increased Damage for each type of Abyss Jewel affecting you","better":1,"matchers":[{"string":"#% увеличение урона за каждый тип действующих на вас самоцветов Бездны"},{"string":"#% уменьшение урона за каждый тип действующих на вас самоцветов Бездны","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_154272030"]}}} +{"ref":"#% increased Damage if Corrupted","better":1,"matchers":[{"string":"#% увеличение урона, если предмет осквернён"},{"string":"#% уменьшение урона, если предмет осквернён","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_767196662"]}}} +{"ref":"#% increased Damage if you have Consumed a corpse Recently","better":1,"matchers":[{"string":"#% увеличение урона, если вы недавно поглотили труп"},{"string":"#% уменьшение урона, если вы недавно поглотили труп","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2118708619"]}}} +{"ref":"#% increased Damage if you have Shocked an Enemy Recently","better":1,"matchers":[{"string":"#% увеличение урона, если недавно вы накладывали шок на врага"},{"string":"#% уменьшение урона, если недавно вы накладывали шок на врага","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_908650225"]}}} +{"ref":"#% increased Damage if you Summoned a Golem in the past 8 seconds","better":1,"matchers":[{"string":"#% увеличение урона, если за последние 8 секунд вы призывали голема"},{"string":"#% уменьшение урона, если за последние 8 секунд вы призывали голема","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3384291300"]}}} +{"ref":"#% increased Damage if you've been Ignited Recently","better":1,"matchers":[{"string":"#% увеличение урона если недавно на вас накладывали поджог"},{"string":"#% уменьшение урона если недавно на вас накладывали поджог","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_430821956"]}}} +{"ref":"#% increased Damage if you've Frozen an Enemy Recently","better":1,"matchers":[{"string":"#% увеличение урона, если недавно вы заморозили врага"},{"string":"#% уменьшение урона, если недавно вы заморозили врага","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1064477264"]}}} +{"ref":"#% increased Damage if you've Killed Recently","better":1,"matchers":[{"string":"#% увеличение урона, если вы недавно совершали убийство"},{"string":"#% уменьшение урона, если вы недавно совершали убийство","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1072119541"],"fractured":["fractured.stat_1072119541"]}}} +{"ref":"#% increased Damage on Burning Ground","better":1,"matchers":[{"string":"#% увеличение урона на горящей земле"}],"trade":{"ids":{"explicit":["explicit.stat_3098087057"]}}} +{"ref":"#% increased Damage over Time","better":1,"matchers":[{"string":"#% увеличение постепенного урона"},{"string":"#% уменьшение постепенного урона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_967627487"],"implicit":["implicit.stat_967627487"],"fractured":["fractured.stat_967627487"],"crafted":["crafted.stat_967627487"]}}} +{"ref":"#% increased Damage over Time while Dual Wielding","better":1,"matchers":[{"string":"#% увеличение постепенного урона с парным оружием в руках"}],"trade":{"ids":{"explicit":["explicit.stat_214001793"],"fractured":["fractured.stat_214001793"]}}} +{"ref":"#% increased Damage over Time while holding a Shield","better":1,"matchers":[{"string":"#% увеличение постепенного урона со щитом в руках"}],"trade":{"ids":{"explicit":["explicit.stat_1244360317"],"fractured":["fractured.stat_1244360317"]}}} +{"ref":"#% increased Damage over Time while wielding a Two Handed Weapon","better":1,"matchers":[{"string":"#% увеличение постепенного урона с двуручным оружием в руках"}],"trade":{"ids":{"explicit":["explicit.stat_4193088553"],"fractured":["fractured.stat_4193088553"]}}} +{"ref":"#% increased Damage per 1% Chance to Block Attack Damage","better":1,"matchers":[{"string":"#% увеличение урона за каждый 1% шанса блокировать урон от атак"},{"string":"#% уменьшение урона за каждый 1% шанса блокировать урон от атак","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3400437584"],"fractured":["fractured.stat_3400437584"]}}} +{"ref":"#% increased Damage per 100 Dexterity","better":1,"matchers":[{"string":"#% увеличение урона за каждые 100 ловкости"},{"string":"#% уменьшение урона за каждые 100 ловкости","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_342670903"]}}} +{"ref":"#% increased Damage per 100 Intelligence","better":1,"matchers":[{"string":"#% увеличение урона за каждые 100 интеллекта"},{"string":"#% уменьшение урона за каждые 100 интеллекта","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3966666111"]}}} +{"ref":"#% increased Damage per 100 Strength","better":1,"matchers":[{"string":"#% увеличение урона за каждые 100 силы"},{"string":"#% уменьшение урона за каждые 100 силы","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4274080377"]}}} +{"ref":"#% increased Damage per 15 Dexterity","better":1,"matchers":[{"string":"#% увеличение урона за каждые 15 ловкости"}],"trade":{"ids":{"explicit":["explicit.stat_2062174346"],"implicit":["implicit.stat_2062174346"],"fractured":["fractured.stat_2062174346"]}}} +{"ref":"#% increased Damage per 15 Intelligence","better":1,"matchers":[{"string":"#% увеличение урона за каждые 15 интеллекта"}],"trade":{"ids":{"explicit":["explicit.stat_3801128794"],"implicit":["implicit.stat_3801128794"],"fractured":["fractured.stat_3801128794"]}}} +{"ref":"#% increased Damage per 15 Strength","better":1,"matchers":[{"string":"#% увеличение урона за каждые 15 силы"}],"trade":{"ids":{"explicit":["explicit.stat_3948776386"],"implicit":["implicit.stat_3948776386"],"fractured":["fractured.stat_3948776386"]}}} +{"ref":"#% increased Damage per 5 of your lowest Attribute","better":1,"matchers":[{"string":"#% увеличение урона за каждые 5 вашей наименьшей характеристики"},{"string":"#% уменьшение урона за каждые 5 вашей наименьшей характеристики","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_35476451"]}}} +{"ref":"#% increased Damage per Crab Barrier","better":1,"matchers":[{"string":"#% увеличение урона за каждую Крабью преграду"}],"trade":{"ids":{"explicit":["explicit.stat_1019038967"]}}} +{"ref":"#% increased Damage per Curse on you","better":1,"matchers":[{"string":"#% увеличение урона за каждое проклятие на вас"},{"string":"#% уменьшение урона за каждое проклятие на вас","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1019020209"]}}} +{"ref":"#% increased Damage per Endurance Charge","better":1,"matchers":[{"string":"#% увеличение урона за заряд выносливости"},{"string":"#% уменьшение урона за заряд выносливости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3515686789"],"implicit":["implicit.stat_3515686789"],"fractured":["fractured.stat_3515686789"],"crafted":["crafted.stat_3515686789"]}}} +{"ref":"#% increased Damage per Frenzy Charge","better":1,"matchers":[{"string":"#% увеличение урона за заряд ярости"},{"string":"#% уменьшение урона за заряд ярости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_902747843"],"implicit":["implicit.stat_902747843"],"fractured":["fractured.stat_902747843"],"crafted":["crafted.stat_902747843"]}}} +{"ref":"#% increased Damage per Frenzy Charge with Hits against Enemies on Low Life","better":1,"matchers":[{"string":"#% увеличение урона от ударов по врагам с малым количеством здоровья за заряд ярости"},{"string":"#% уменьшение урона от ударов по врагам с малым количеством здоровья за заряд ярости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1696792323"]}}} +{"ref":"#% increased Damage per Power Charge","better":1,"matchers":[{"string":"#% увеличение урона за заряд энергии"},{"string":"#% уменьшение урона за заряд энергии","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2034658008"],"implicit":["implicit.stat_2034658008"],"fractured":["fractured.stat_2034658008"],"crafted":["crafted.stat_2034658008"]}}} +{"ref":"#% increased Damage per Raised Zombie","better":1,"matchers":[{"string":"#% увеличение урона за каждого поднятого зомби"},{"string":"#% уменьшение урона за каждого поднятого зомби","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3868443508"]}}} +{"ref":"#% increased Damage taken","better":1,"matchers":[{"string":"#% увеличение получаемого урона"},{"string":"#% уменьшение получаемого урона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3691641145"]}}} +{"ref":"#% increased Damage taken from Ghosts","better":1,"matchers":[{"string":"#% увеличение урона, получаемого от призраков"},{"string":"#% уменьшение урона, получаемого от призраков","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2156764291"]}}} +{"ref":"#% increased Damage taken from Skeletons","better":1,"matchers":[{"string":"#% увеличение урона, получаемого от скелетов"},{"string":"#% уменьшение урона, получаемого от скелетов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_705686721"]}}} +{"ref":"#% increased Damage taken if you've been Frozen Recently","better":1,"matchers":[{"string":"#% увеличение получаемого урона если недавно на вас накладывали заморозку"},{"string":"#% уменьшение получаемого урона если недавно на вас накладывали заморозку","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3616645755"]}}} +{"ref":"#% increased Damage taken per 250 Dexterity","better":1,"matchers":[{"string":"#% увеличение получаемого урона за каждые 250 ловкости"},{"string":"#% уменьшение получаемого урона за каждые 250 ловкости","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2477636501"]}}} +{"ref":"#% increased Damage taken per 250 Intelligence","better":1,"matchers":[{"string":"#% увеличение получаемого урона за каждые 250 интеллекта"},{"string":"#% уменьшение получаемого урона за каждые 250 интеллекта","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3522931817"]}}} +{"ref":"#% increased Damage taken per 250 Strength","better":1,"matchers":[{"string":"#% увеличение получаемого урона за каждые 250 силы"},{"string":"#% уменьшение получаемого урона за каждые 250 силы","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1443108510"]}}} +{"ref":"#% increased Damage taken per Frenzy Charge","better":1,"matchers":[{"string":"#% увеличение получаемого урона за заряд ярости"},{"string":"#% уменьшение получаемого урона за заряд ярости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1625103793"]}}} +{"ref":"#% increased Damage taken while on Full Energy Shield","better":1,"matchers":[{"string":"#% увеличение получаемого урона при полном энергетическом щите"},{"string":"#% уменьшение получаемого урона при полном энергетическом щите","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_969865219"]}}} +{"ref":"#% increased Damage taken while on Full Life","better":1,"matchers":[{"string":"#% увеличение получаемого урона при полном здоровье"},{"string":"#% уменьшение получаемого урона при полном здоровье","negate":true}],"trade":{"ids":{"scourge":["scourge.stat_4091521421"]}}} +{"ref":"#% increased Damage taken while Phasing","better":1,"matchers":[{"string":"#% увеличение получаемого урона в Форме призрака"},{"string":"#% уменьшение получаемого урона в Форме призрака","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_146268648"]}}} +{"ref":"#% increased Damage when on Full Life","better":1,"matchers":[{"string":"#% увеличение урона при полном здоровье"},{"string":"#% уменьшение урона при полном здоровье","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_592020238"],"fractured":["fractured.stat_592020238"]}}} +{"ref":"#% increased Damage when on Low Life","better":1,"matchers":[{"string":"#% увеличение урона при малом количестве здоровья"},{"string":"#% уменьшение урона при малом количестве здоровья","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1513447578"]}}} +{"ref":"#% increased Damage while area is not in Lockdown\nPlayers deal #% increased Damage while area is not in Lockdown","better":1,"matchers":[{"string":"#% увеличение урона пока область не изолирована\nИгроки наносят увеличенный на #% урон пока область не изолирована"},{"string":"#% уменьшение урона пока область не изолирована\nИгроки наносят уменьшенный на #% урон пока область не изолирована","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1312481589"],"fractured":["fractured.stat_1312481589"]}}} +{"ref":"#% increased Damage while Ignited","better":1,"matchers":[{"string":"#% увеличение урона, если подожжён"},{"string":"#% уменьшение урона, если подожжён","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1686122637"]}}} +{"ref":"#% increased Damage while Leeching","better":1,"matchers":[{"string":"#% увеличение урона во время похищения"},{"string":"#% уменьшение урона во время похищения","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_310246444"],"implicit":["implicit.stat_310246444"],"fractured":["fractured.stat_310246444"],"crafted":["crafted.stat_310246444"]}}} +{"ref":"#% increased Damage while Leeching Life","better":1,"matchers":[{"string":"Увеличенный на #% урон при похищении здоровья"},{"string":"Уменьшенный на #% урон при похищении здоровья","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3591306273"]}}} +{"ref":"#% increased Damage while Leeching Mana","better":1,"matchers":[{"string":"Увеличенный на #% урон при похищении маны"},{"string":"Уменьшенный на #% урон при похищении маны","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1994684426"]}}} +{"ref":"#% increased Damage while on Consecrated Ground","better":1,"matchers":[{"string":"#% увеличение урона при нахождении на освящённой земле"},{"string":"#% уменьшение урона при нахождении на освящённой земле","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1704905020"]}}} +{"ref":"#% increased Damage while Shocked","better":1,"matchers":[{"string":"#% увеличение урона во время шока"},{"string":"#% уменьшение урона во время шока","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_529432426"]}}} +{"ref":"#% increased Damage while you have no Energy Shield","better":1,"matchers":[{"string":"#% увеличение урона при отсутствии энергетического щита"}],"trade":{"ids":{"explicit":["explicit.stat_414379784"]}}} +{"ref":"#% increased Damage while you have no Frenzy Charges","better":1,"matchers":[{"string":"#% увеличение урона при отсутствии зарядов ярости"},{"string":"#% уменьшение урона при отсутствии зарядов ярости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3905661226"]}}} +{"ref":"#% increased Damage with Ailments","better":1,"matchers":[{"string":"#% увеличение урона от состояний"},{"string":"#% уменьшение урона от состояний","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_690707482"],"implicit":["implicit.stat_690707482"],"fractured":["fractured.stat_690707482"]}}} +{"ref":"#% increased Damage with Ailments per Elder Item Equipped","better":1,"matchers":[{"string":"#% увеличение урона от состояний за каждый надетый Древний предмет"},{"string":"#% уменьшение урона от состояний за каждый надетый Древний предмет","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2418574586"]}}} +{"ref":"#% increased Damage with Axes","better":1,"matchers":[{"string":"#% увеличение урона топорами"},{"string":"#% уменьшение урона топорами","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3314142259"],"fractured":["fractured.stat_3314142259"]}}} +{"ref":"#% increased Damage with Bleeding","better":1,"matchers":[{"string":"#% увеличение урона от кровотечения"},{"string":"#% уменьшение урона от кровотечения","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1294118672"],"implicit":["implicit.stat_1294118672"],"fractured":["fractured.stat_1294118672"]}}} +{"ref":"#% increased Damage with Bleeding from Melee Weapons","better":1,"matchers":[{"string":"#% увеличение урона от кровотечения, вызванного оружием ближнего боя"},{"string":"#% уменьшение урона от кровотечения, вызванного оружием ближнего боя","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3660450649"]}}} +{"ref":"#% increased Damage with Bow Skills","better":1,"matchers":[{"string":"#% увеличение урона умениями лука"},{"string":"#% уменьшение урона умениями лука","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1241625305"],"fractured":["fractured.stat_1241625305"]}}} +{"ref":"#% increased Damage with Bows","better":1,"matchers":[{"string":"#% увеличение урона луками"},{"string":"#% уменьшение урона луками","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4188894176"],"fractured":["fractured.stat_4188894176"]}}} +{"ref":"#% increased Damage with Claws","better":1,"matchers":[{"string":"#% увеличение урона когтями"},{"string":"#% уменьшение урона когтями","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1069260037"],"fractured":["fractured.stat_1069260037"]}}} +{"ref":"#% increased Damage with Claws while on Low Life","better":1,"matchers":[{"string":"#% увеличение урона когтями при малом количестве здоровья"},{"string":"#% уменьшение урона когтями при малом количестве здоровья","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1629782265"]}}} +{"ref":"#% increased Damage with Daggers","better":1,"matchers":[{"string":"#% увеличение урона кинжалами"},{"string":"#% уменьшение урона кинжалами","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3586984690"],"fractured":["fractured.stat_3586984690"]}}} +{"ref":"#% increased Damage with Hits against Chilled Enemies","better":1,"matchers":[{"string":"#% увеличение урона от ударов по охлаждённым врагам"},{"string":"#% уменьшение урона от ударов по охлаждённым врагам","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2805714016"],"fractured":["fractured.stat_2805714016"]}}} +{"ref":"#% increased Damage with Hits against Enemies on Full Life","better":1,"matchers":[{"string":"#% увеличение урона от ударов и состояний по врагам с полным здоровьем\nИгроки наносят увеличенный на #% урон от ударов и состояний по врагам с полным здоровьем"},{"string":"#% увеличение урона от ударов по врагам с полным здоровьем"},{"string":"#% уменьшение урона от ударов и состояний по врагам с полным здоровьем\nИгроки наносят уменьшенный на #% урон от ударов и состояний по врагам с полным здоровьем","negate":true},{"string":"#% уменьшение урона от ударов по врагам с полным здоровьем","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3708045494"],"fractured":["fractured.stat_3708045494"]}}} +{"ref":"#% increased Damage with Hits against Frozen Enemies","better":1,"matchers":[{"string":"#% увеличение урона от ударов по замороженным врагам"},{"string":"#% уменьшение урона от ударов по замороженным врагам","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1196902248"]}}} +{"ref":"#% increased Damage with Hits against Magic monsters","better":1,"matchers":[{"string":"#% увеличение урона от ударов по волшебным врагам"},{"string":"#% уменьшение урона от ударов по волшебным врагам","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1278047991"]}}} +{"ref":"#% increased Damage with Hits against Rare monsters","better":1,"matchers":[{"string":"#% увеличение урона от ударов по редким монстрам"},{"string":"#% уменьшение урона от ударов по редким монстрам","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2137878565"]}}} +{"ref":"#% increased Damage with Hits against Shocked Enemies","better":1,"matchers":[{"string":"#% увеличение урона от ударов по врагам, поражённых шоком"},{"string":"#% уменьшение урона от ударов по врагам, поражённых шоком","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4194900521"]}}} +{"ref":"#% increased Damage with Hits and Ailments against Abyssal Monsters","better":1,"matchers":[{"string":"#% увеличение урона от ударов и состояний по монстрам Бездны"},{"string":"#% уменьшение урона от ударов и состояний по монстрам Бездны","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3257279374"],"implicit":["implicit.stat_3257279374"],"fractured":["fractured.stat_3257279374"]}}} +{"ref":"#% increased Damage with Hits and Ailments against Bleeding Enemies","better":1,"matchers":[{"string":"#% увеличение урона от ударов и состояний по истекающим кровью врагам"},{"string":"#% уменьшение урона от ударов и состояний по истекающим кровью врагам","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1790172543"]}}} +{"ref":"#% increased Damage with Hits and Ailments against Blinded Enemies","better":1,"matchers":[{"string":"#% увеличение урона от ударов и состояний по ослеплённым врагам"},{"string":"#% уменьшение урона от ударов и состояний по ослеплённым врагам","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3503466234","explicit.stat_3565956680"]}}} +{"ref":"#% increased Damage with Hits and Ailments against Chilled Enemies","better":1,"matchers":[{"string":"#% увеличение урона от ударов и состояний по охлаждённым врагам"},{"string":"#% уменьшение урона от ударов и состояний по охлаждённым врагам","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3747189159"]}}} +{"ref":"#% increased Damage with Hits and Ailments against Cursed Enemies","better":1,"matchers":[{"string":"#% увеличение урона от ударов и состояний по проклятым врагам"},{"string":"#% уменьшение урона от ударов и состояний по проклятым врагам","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_539970476"],"fractured":["fractured.stat_539970476"]}}} +{"ref":"#% increased Damage with Hits and Ailments against Enemies affected by 3 Spider's Webs","better":1,"matchers":[{"string":"#% увеличение урона от ударов и состояний по врагам, на которых действуют 3 Паучьих паутины"},{"string":"#% уменьшение урона от ударов и состояний по врагам, на которых действуют 3 Паучьих паутины","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_103928310"]}}} +{"ref":"#% increased Damage with Hits and Ailments against Hindered Enemies","better":1,"matchers":[{"string":"#% увеличение урона от ударов и состояний по скованным врагам"},{"string":"#% уменьшение урона от ударов и состояний по скованным врагам","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_528422616"]}}} +{"ref":"#% increased Damage with Hits and Ailments against Ignited Enemies","better":1,"matchers":[{"string":"#% увеличение урона от ударов и состояний по подожжённым врагам"},{"string":"#% уменьшение урона от ударов и состояний по подожжённым врагам","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_485151258"]}}} +{"ref":"#% increased Damage with Hits and Ailments against Marked Enemy","better":1,"matchers":[{"string":"#% увеличение урона от ударов и состояний по помеченным врагам"},{"string":"#% уменьшение урона от ударов и состояний по помеченным врагам","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2001747092"]}}} +{"ref":"#% increased Damage with Hits and Ailments per Curse on Enemy","better":1,"matchers":[{"string":"#% увеличение урона от ударов и состояний за каждое проклятие на враге"},{"string":"#% уменьшение урона от ударов и состояний за каждое проклятие на враге","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1818773442"],"fractured":["fractured.stat_1818773442"]}}} +{"ref":"#% increased Damage with Ignite from Melee Weapons","better":1,"matchers":[{"string":"#% увеличение урона от поджога, наложенного оружием ближнего боя"},{"string":"#% уменьшение урона от поджога, наложенного оружием ближнего боя","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3935936274"]}}} +{"ref":"#% increased Damage with Ignite inflicted on Chilled Enemies","better":1,"matchers":[{"string":"#% увеличение урона от поджога, наложенного на охлаждённых врагов"},{"string":"#% уменьшение урона от поджога, наложенного на охлаждённых врагов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1891782369"]}}} +{"ref":"#% increased Damage with Maces or Sceptres","better":1,"matchers":[{"string":"#% увеличение урона булавами и скипетрами"},{"string":"#% уменьшение урона булавами и скипетрами","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1181419800"],"fractured":["fractured.stat_1181419800"]}}} +{"ref":"#% increased Damage with Movement Skills","better":1,"matchers":[{"string":"#% увеличение урона от умений передвижения"},{"string":"#% уменьшение урона от умений передвижения","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_856021430"]}}} +{"ref":"#% increased Damage with Non-Vaal Skills during Soul Gain Prevention","better":1,"matchers":[{"string":"#% увеличение урона умениями не-ваал во время предотвращения получения душ"},{"string":"#% уменьшение урона умениями не-ваал во время предотвращения получения душ","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1583385065"],"fractured":["fractured.stat_1583385065"],"crafted":["crafted.stat_1583385065"]}}} +{"ref":"#% increased Damage with One Handed Weapons","better":1,"matchers":[{"string":"#% увеличение урона одноручным оружием"},{"string":"#% уменьшение урона одноручным оружием","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1010549321"],"fractured":["fractured.stat_1010549321"]}}} +{"ref":"#% increased Damage with Poison","better":1,"matchers":[{"string":"#% увеличение урона от яда"},{"string":"#% уменьшение урона от яда","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1290399200"],"implicit":["implicit.stat_1290399200"],"fractured":["fractured.stat_1290399200"]}}} +{"ref":"#% increased Damage with Poison from Melee Weapons","better":1,"matchers":[{"string":"#% увеличение урона от яда, наложенного оружием ближнего боя"},{"string":"#% уменьшение урона от яда, наложенного оружием ближнего боя","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_776174407"]}}} +{"ref":"#% increased Damage with Poison if you have at least 300 Dexterity","better":1,"matchers":[{"string":"Если у вас минимум 300 ловкости, урон от яда увеличивается на #%"},{"string":"Если у вас минимум 300 ловкости, урон от яда уменьшается на #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_256730087"]}}} +{"ref":"#% increased Damage with Poison per Frenzy Charge","better":1,"matchers":[{"string":"#% увеличение урона от яда за заряд ярости"},{"string":"#% уменьшение урона от яда за заряд ярости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1221011086"]}}} +{"ref":"#% increased Damage with Poison per Power Charge","better":1,"matchers":[{"string":"#% увеличение урона от яда за заряд энергии"},{"string":"#% уменьшение урона от яда за заряд энергии","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4230767876"]}}} +{"ref":"#% increased Damage with Staves","better":1,"matchers":[{"string":"#% увеличение урона посохами"},{"string":"#% уменьшение урона посохами","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4087089130"],"fractured":["fractured.stat_4087089130"]}}} +{"ref":"#% increased Damage with Swords","better":1,"matchers":[{"string":"#% увеличение урона мечами"},{"string":"#% уменьшение урона мечами","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_83050999"],"fractured":["fractured.stat_83050999"]}}} +{"ref":"#% increased Damage with Two Handed Weapons","better":1,"matchers":[{"string":"#% увеличение урона двуручным оружием"},{"string":"#% уменьшение урона двуручным оружием","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1836374041"],"fractured":["fractured.stat_1836374041"]}}} +{"ref":"#% increased Damage with Vaal Skills","better":1,"matchers":[{"string":"#% увеличение урона умениями ваал"},{"string":"#% уменьшение урона умениями ваал","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2257141320"],"implicit":["implicit.stat_2257141320"],"fractured":["fractured.stat_2257141320"],"crafted":["crafted.stat_2257141320"]}}} +{"ref":"#% increased Damage with Vaal Skills during effect","better":1,"matchers":[{"string":"#% увеличение урона умениями ваал во время действия эффекта"},{"string":"#% уменьшение урона умениями ваал во время действия эффекта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4067144129"]}}} +{"ref":"#% increased Damage with Wands","better":1,"matchers":[{"string":"#% увеличение урона жезлами"},{"string":"#% уменьшение урона жезлами","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_379328644"],"fractured":["fractured.stat_379328644"]}}} +{"ref":"#% increased Dark Pact Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Тёмного договора"},{"string":"#% уменьшение области действия Тёмного договора","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_957864706"]}}} +{"ref":"#% increased Dark Pact Cast Speed","better":1,"matchers":[{"string":"#% повышение скорости сотворения Тёмного договора"},{"string":"#% снижение скорости сотворения Тёмного договора","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1549594869"]}}} +{"ref":"#% increased Dark Pact Damage","better":1,"matchers":[{"string":"#% увеличение урона Тёмного договора"},{"string":"#% уменьшение урона Тёмного договора","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1573799461"]}}} +{"ref":"#% increased Deception Experience gained","better":1,"matchers":[{"string":"#% увеличение получаемого Маскировкой опыта"},{"string":"#% уменьшение получаемого Маскировкой опыта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2678065384"],"fractured":["fractured.stat_2678065384"]}}} +{"ref":"#% increased Deception speed","better":1,"matchers":[{"string":"#% повышение скорости использования Маскировки"},{"string":"#% снижение скорости использования Маскировки","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2520458995"],"implicit":["implicit.stat_2520458995"],"fractured":["fractured.stat_2520458995"]}}} +{"ref":"#% increased Decoy Totem Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Тотема-приманки"},{"string":"#% уменьшение области действия Тотема-приманки","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1686675991"]}}} +{"ref":"#% increased Decoy Totem Life","better":1,"matchers":[{"string":"#% увеличение здоровья тотема-приманки"},{"string":"#% уменьшение здоровья тотема-приманки","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1631824124"]}}} +{"ref":"#% increased Defences from Equipped Shield","better":1,"matchers":[{"string":"#% повышение защиты от щита в руках"},{"string":"#% снижение защиты от щита в руках","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1215155013"]}}} +{"ref":"#% increased Defences from Equipped Shield per 10 Devotion","better":1,"matchers":[{"string":"#% повышение защиты от щита в руках за каждые 10 набожности"},{"string":"#% снижение защиты от щита в руках за каждые 10 набожности","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2803981661"]}}} +{"ref":"#% increased Demolition Experience gained","better":1,"matchers":[{"string":"#% увеличение получаемого Взрывным делом опыта"},{"string":"#% уменьшение получаемого Взрывным делом опыта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1492314881"],"fractured":["fractured.stat_1492314881"]}}} +{"ref":"#% increased Demolition speed","better":1,"matchers":[{"string":"#% повышение скорости использования Взрывного дела"},{"string":"#% снижение скорости использования Взрывного дела","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2847917427"],"implicit":["implicit.stat_2847917427"],"fractured":["fractured.stat_2847917427"]}}} +{"ref":"#% increased Despair Curse Effect","better":1,"matchers":[{"string":"#% усиление эффекта проклятия Отчаяния"},{"string":"#% ослабление эффекта проклятия Отчаяния","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3185156108"],"enchant":["enchant.stat_3185156108"]}}} +{"ref":"#% increased Despair Duration","better":1,"matchers":[{"string":"#% увеличение длительности Отчаяния"},{"string":"#% уменьшение длительности Отчаяния","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_683073695"]}}} +{"ref":"#% increased Destructive Link Duration","better":1,"matchers":[{"string":"#% увеличение длительности Разрушительной связи"},{"string":"#% уменьшение длительности Разрушительной связи","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_728213819"]}}} +{"ref":"#% increased Detonate Dead Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Подрыва трупа"},{"string":"#% уменьшение области действия Подрыва трупа","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_482660590"]}}} +{"ref":"#% increased Detonate Dead Damage","better":1,"matchers":[{"string":"#% увеличение урона Подрыва трупа"},{"string":"#% уменьшение урона Подрыва трупа","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3087527696"]}}} +{"ref":"#% increased Devouring Totem Leech per second","better":1,"matchers":[{"string":"#% увеличение похищения Поглощающего тотема в секунду"},{"string":"#% уменьшение похищения Поглощающего тотема в секунду","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3317752680"]}}} +{"ref":"#% increased Dexterity","better":1,"matchers":[{"string":"#% повышение ловкости"},{"string":"#% снижение ловкости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4139681126"],"implicit":["implicit.stat_4139681126"],"fractured":["fractured.stat_4139681126"],"scourge":["scourge.stat_4139681126"]}}} +{"ref":"#% increased Dexterity if Strength is higher than Intelligence","better":1,"matchers":[{"string":"#% повышение ловкости, если силы больше, чем интеллекта"},{"string":"#% снижение ловкости, если силы больше, чем интеллекта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2022724400"]}}} +{"ref":"#% increased Discharge Damage","better":1,"matchers":[{"string":"Урон Разряда увеличен на #%"},{"string":"Урон Разряда уменьшен на #%","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1935930829"]}}} +{"ref":"#% increased Double Strike Attack Speed","better":1,"matchers":[{"string":"#% повышение скорости атаки Двойного удара"},{"string":"#% снижение скорости атаки Двойного удара","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2779309910"]}}} +{"ref":"#% increased Double Strike Critical Strike Chance","better":1,"matchers":[{"string":"Двойной удар имеет #% повышение шанса критического удара"},{"string":"Двойной удар имеет #% снижение шанса критического удара","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1201942540"]}}} +{"ref":"#% increased Double Strike Damage","better":1,"matchers":[{"string":"#% увеличение урона Двойного удара"},{"string":"#% уменьшение урона Двойного удара","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1809965314"]}}} +{"ref":"#% increased Dual Strike Attack Speed","better":1,"matchers":[{"string":"#% повышение скорости атаки Парного удара"},{"string":"#% снижение скорости атаки Парного удара","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1917107304"]}}} +{"ref":"#% increased Dual Strike Critical Strike Chance","better":1,"matchers":[{"string":"Парный удар имеет #% повышение шанса критического удара"},{"string":"Парный удар имеет #% снижение шанса критического удара","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2729530556"]}}} +{"ref":"#% increased Dual Strike Damage","better":1,"matchers":[{"string":"#% увеличение урона Парного удара"},{"string":"#% уменьшение урона Парного удара","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2094069860"]}}} +{"ref":"#% increased Duration","better":1,"matchers":[{"string":"#% увеличение длительности"},{"string":"#% уменьшение длительности","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1256719186"],"fractured":["fractured.stat_1256719186"],"enchant":["enchant.stat_1256719186"]}}} +{"ref":"#% increased Duration of Ailments on Enemies","better":1,"matchers":[{"string":"#% увеличение длительности состояний на врагах"},{"string":"#% уменьшение длительности состояний на врагах","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2419712247"],"implicit":["implicit.stat_2419712247"],"fractured":["fractured.stat_2419712247"],"scourge":["scourge.stat_2419712247"]}}} +{"ref":"#% increased Duration of Ailments you inflict while Focused","better":1,"matchers":[{"string":"#% увеличение длительности накладываемых вами состояний, пока вы сфокусированы"},{"string":"#% уменьшение длительности накладываемых вами состояний, пока вы сфокусированы","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1840751341"],"fractured":["fractured.stat_1840751341"],"crafted":["crafted.stat_1840751341"]}}} +{"ref":"#% increased Duration of Cold Ailments","better":1,"matchers":[{"string":"#% увеличение длительности состояний холода"},{"string":"#% уменьшение длительности состояний холода","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3571964448"],"fractured":["fractured.stat_3571964448"]}}} +{"ref":"#% increased Duration of Curses on you","better":1,"matchers":[{"string":"#% увеличение длительности проклятий на вас"},{"string":"#% уменьшение длительности проклятий на вас","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2920970371"]}}} +{"ref":"#% increased Duration of Curses on you per 10 Devotion","better":1,"matchers":[{"string":"#% увеличение длительности проклятий на вас за каждые 10 набожности"},{"string":"#% уменьшение длительности проклятий на вас за каждые 10 набожности","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4235333770"]}}} +{"ref":"#% increased Duration of Elemental Ailments from Melee Weapon Attacks","better":1,"matchers":[{"string":"#% увеличение длительности стихийных состояний от атак оружием ближнего боя"},{"string":"#% уменьшение длительности стихийных состояний от атак оружием ближнего боя","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3284469689"]}}} +{"ref":"#% increased Duration of Elemental Ailments on Enemies","better":1,"matchers":[{"string":"#% увеличение длительности стихийных состояний на врагах"},{"string":"#% уменьшение длительности стихийных состояний на врагах","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2604619892"]}}} +{"ref":"#% increased Duration of Elemental Ailments on You while affected by a Rare Abyss Jewel","better":1,"matchers":[{"string":"#% увеличение длительности стихийных состояний на вас, пока на вас действует редкий самоцвет Бездны"},{"string":"#% уменьшение длительности стихийных состояний на вас, пока на вас действует редкий самоцвет Бездны","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_287112619"]}}} +{"ref":"#% increased Duration of Lightning Ailments","better":1,"matchers":[{"string":"#% увеличение длительности состояний молнии"},{"string":"#% уменьшение длительности состояний молнии","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1484471543"]}}} +{"ref":"#% increased Duration of Poisons you inflict during Effect","better":1,"matchers":[{"string":"#% увеличение длительности зарядов яда, наложенных во время действия эффекта"},{"string":"#% уменьшение длительности зарядов яда, наложенных во время действия эффекта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_510304734"]}}} +{"ref":"#% increased Duration of Shrine Effects on you","better":1,"matchers":[{"string":"#% увеличение длительности эффектов алтарей на вас"},{"string":"#% уменьшение длительности эффектов алтарей на вас","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1877661946"]}}} +{"ref":"#% increased Earthquake Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Землетрясения"},{"string":"#% уменьшение области действия Землетрясения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_684174846"]}}} +{"ref":"#% increased Earthquake Damage","better":1,"matchers":[{"string":"#% увеличение урона Землетрясения"},{"string":"#% уменьшение урона Землетрясения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1697080607"]}}} +{"ref":"#% increased effect","better":1,"matchers":[{"string":"#% усиление эффекта"},{"string":"#% ослабление эффекта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2448920197","explicit.stat_3529940209"],"fractured":["fractured.stat_2448920197"],"enchant":["enchant.stat_2448920197"]}}} +{"ref":"#% increased Effect of Arcane Surge on you","better":1,"matchers":[{"string":"#% усиление эффекта Колдовского выброса на вас"},{"string":"#% ослабление эффекта Колдовского выброса на вас","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3015437071"],"implicit":["implicit.stat_3015437071"],"fractured":["fractured.stat_3015437071"]}}} +{"ref":"#% increased Effect of Arcane Surge on you per\nHypnotic Eye Jewel affecting you, up to a maximum of 40%","better":1,"matchers":[{"string":"#% усиление эффекта Колдовского выброса на вас за каждый\nвлияющий на вас самоцвет гипнотического глаза, вплоть до максимума в 40%"},{"string":"#% ослабление эффекта Колдовского выброса на вас за каждый\nвлияющий на вас самоцвет гипнотического глаза, вплоть до максимума в 40%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1012072406"]}}} +{"ref":"#% increased Effect of Arcane Surge on you while affected by Clarity","better":1,"matchers":[{"string":"#% усиление эффекта Колдовского выброса на вас под действием Ясности ума"},{"string":"#% ослабление эффекта Колдовского выброса на вас под действием Ясности ума","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1808477254"]}}} +{"ref":"#% increased Effect of Auras from Mines","better":1,"matchers":[{"string":"#% усиление эффекта аур мин"},{"string":"#% ослабление эффекта аур мин","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2121424530"]}}} +{"ref":"#% increased Effect of Blind from Melee Weapons","better":1,"matchers":[{"string":"#% усиление эффекта ослепления от оружия ближнего боя"},{"string":"#% ослабление эффекта ослепления от оружия ближнего боя","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1808507379"]}}} +{"ref":"#% increased Effect of Buffs granted by Socketed Golem Skills","better":1,"matchers":[{"string":"#% усиление положительных эффектов от размещённых камней умений големов"}],"trade":{"ids":{"explicit":["explicit.stat_2813516522"]}}} +{"ref":"#% increased Effect of Buffs granted by your Golems","better":1,"matchers":[{"string":"#% усиление положительных эффектов, полученных от ваших големов"},{"string":"#% ослабление положительных эффектов, полученных от ваших големов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2109043683"],"implicit":["implicit.stat_2109043683"]}}} +{"ref":"#% increased Effect of Buffs on you","better":1,"matchers":[{"string":"#% усиление положительных эффектов на вас"}],"trade":{"ids":{"explicit":["explicit.stat_306104305"]}}} +{"ref":"#% increased Effect of Chill and Shock on you","better":-1,"matchers":[{"string":"#% усиление эффектов охлаждения и шока на вас"},{"string":"#% ослабление эффектов охлаждения и шока на вас","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1984113628"],"fractured":["fractured.stat_1984113628"],"crafted":["crafted.stat_1984113628"]}}} +{"ref":"#% increased Effect of Chill from Melee Weapons","better":1,"matchers":[{"string":"#% усиление эффекта охлаждения от оружия ближнего боя"},{"string":"#% ослабление эффекта охлаждения от оружия ближнего боя","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3296814491"]}}} +{"ref":"#% increased Effect of Chilled Ground","better":1,"matchers":[{"string":"#% усиление эффекта замерзшей земли"},{"string":"#% ослабление эффекта замерзшей земли","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2134166669"]}}} +{"ref":"#% increased Effect of Chills you inflict while Leeching Mana","better":1,"matchers":[{"string":"#% усиление эффекта накладываемого вами охлаждения, пока вы похищаете ману"},{"string":"#% ослабление эффекта накладываемого вами охлаждения, пока вы похищаете ману","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_898270877"]}}} +{"ref":"#% increased Effect of Cold Ailments","better":1,"matchers":[{"string":"#% усиление эффектов состояний холода"},{"string":"#% ослабление эффектов состояний холода","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1793818220"],"implicit":["implicit.stat_1793818220"],"fractured":["fractured.stat_1793818220"]}}} +{"ref":"#% increased Effect of Curses applied by Bane","better":1,"matchers":[{"string":"#% усиление эффекта проклятий, наложенных Погибелью"},{"string":"#% ослабление эффекта проклятий, наложенных Погибелью","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2843908086"]}}} +{"ref":"#% increased Effect of Curses on Monsters","better":1,"fromUberAreaMods":true,"matchers":[{"string":"#% усиление эффекта проклятий на монстрах"},{"string":"#% ослабление эффекта проклятий на монстрах","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1661698405"],"fractured":["fractured.stat_1661698405"]}}} +{"ref":"#% increased Effect of Curses on you while on Consecrated Ground","better":-1,"matchers":[{"string":"#% усиление эффектов проклятий на вас при нахождении на освящённой земле"},{"string":"#% ослабление эффектов проклятий на вас при нахождении на освящённой земле","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3444629796"],"fractured":["fractured.stat_3444629796"],"enchant":["enchant.stat_3444629796"]}}} +{"ref":"#% increased Effect of Elusive on you per Power Charge","better":1,"matchers":[{"string":"#% усиление эффекта Неуловимости на вас за заряд энергии"},{"string":"#% ослабление эффекта Неуловимости на вас за заряд энергии","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3545269928"]}}} +{"ref":"#% increased Effect of Freeze on you","better":-1,"matchers":[{"string":"#% усиление эффекта заморозки на вас"},{"string":"#% ослабление эффекта заморозки на вас","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2069161757"],"crafted":["crafted.stat_2069161757"]}}} +{"ref":"#% increased Effect of Impales inflicted with Spells","better":1,"matchers":[{"string":"#% усиление эффекта Проколов, наложенных чарами"},{"string":"#% ослабление эффекта Проколов, наложенных чарами","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1480595847"]}}} +{"ref":"#% increased Effect of Lightning Ailments","better":1,"matchers":[{"string":"#% усиление эффектов состояний молнии"},{"string":"#% ослабление эффектов состояний молнии","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3081816887"],"fractured":["fractured.stat_3081816887"]}}} +{"ref":"#% increased effect of Non-Curse Auras from your Skills","better":1,"matchers":[{"string":"#% усиление эффекта аур не-проклятий от ваших умений"},{"string":"#% ослабление эффекта аур не-проклятий от ваших умений","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1880071428"],"implicit":["implicit.stat_1880071428"],"fractured":["fractured.stat_1880071428"],"scourge":["scourge.stat_1880071428"]}}} +{"ref":"#% increased Effect of Non-Curse Auras from your Skills on Enemies","better":1,"matchers":[{"string":"#% усиление эффекта аур не-проклятий от ваших умений на врагах"},{"string":"#% ослабление эффекта аур не-проклятий от ваших умений на врагах","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1636209393"],"fractured":["fractured.stat_1636209393"]}}} +{"ref":"#% increased effect of Non-Curse Auras from your Skills on your Minions","better":1,"matchers":[{"string":"#% усиление эффекта аур не-проклятий от ваших умений на ваших приспешниках"},{"string":"#% ослабление эффекта аур не-проклятий от ваших умений на ваших приспешниках","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_634031003"]}}} +{"ref":"#% increased Effect of Non-Curse Auras from your Skills while you have a Linked Target","better":1,"matchers":[{"string":"#% усиление эффекта аур не-проклятий от ваших умений, пока у вас есть связанная цель"},{"string":"#% ослабление эффекта аур не-проклятий от ваших умений, пока у вас есть связанная цель","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3995650818"]}}} +{"ref":"#% increased effect of Non-Curse Auras per 10 Devotion","better":1,"matchers":[{"string":"#% усиление эффекта аур не-проклятий за каждые 10 набожности"},{"string":"#% ослабление эффекта аур не-проклятий за каждые 10 набожности","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2585926696"]}}} +{"ref":"#% increased Effect of Non-Damaging Ailments","better":1,"matchers":[{"string":"#% усиление эффекта не наносящих урон состояний"},{"string":"#% ослабление эффекта не наносящих урон состояний","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_782230869"],"implicit":["implicit.stat_782230869"],"fractured":["fractured.stat_782230869"],"scourge":["scourge.stat_782230869"],"crafted":["crafted.stat_782230869"]}}} +{"ref":"#% increased Effect of non-Damaging Ailments on Enemies per 10 Devotion","better":1,"matchers":[{"string":"#% усиление эффекта не наносящих урон состояний на врагах за каждые 10 набожности"},{"string":"#% ослабление эффекта не наносящих урон состояний на врагах за каждые 10 набожности","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1810368194"]}}} +{"ref":"#% increased Effect of Non-Damaging Ailments per Elder Item Equipped","better":1,"matchers":[{"string":"#% усиление эффекта не наносящих урон состояний за каждый надетый Древний предмет"},{"string":"#% ослабление эффекта не наносящих урон состояний за каждый надетый Древний предмет","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4133552694"]}}} +{"ref":"#% increased Effect of Non-Damaging Ailments you inflict during Effect","better":1,"matchers":[{"string":"#% ослабление эффекта не-наносящих урон состояний, накладываемых вами во время действия эффекта"},{"string":"#% усиление эффекта не-наносящих урон состояний, накладываемых вами во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_1122693835"]}}} +{"ref":"#% increased Effect of non-Damaging Ailments you inflict with Critical Strikes","better":1,"matchers":[{"string":"#% усиление эффекта не наносящих урон состояний, накладываемых вашими критическими ударами"},{"string":"#% ослабление эффекта не наносящих урон состояний, накладываемых вашими критическими ударами","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3772078232"]}}} +{"ref":"#% increased Effect of non-Keystone Passive Skills in Radius","better":1,"matchers":[{"string":"#% усиление эффекта неключевых пассивных умений в радиусе"},{"string":"#% ослабление эффекта неключевых пассивных умений в радиусе","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_607548408"]}}} +{"ref":"#% increased Effect of Onslaught on you","better":1,"matchers":[{"string":"#% усиление эффекта Боевого ража на вас"},{"string":"#% ослабление эффекта Боевого ража на вас","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3151397056"],"implicit":["implicit.stat_3151397056"],"fractured":["fractured.stat_3151397056"]}}} +{"ref":"#% increased Effect of Scorch","better":1,"matchers":[{"string":"#% усиление эффекта Опаления"},{"string":"#% ослабление эффекта Опаления","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_344570534"]}}} +{"ref":"#% increased Effect of Shock","better":1,"matchers":[{"string":"#% усиление эффекта шока"},{"string":"#% ослабление эффекта шока","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2527686725"],"implicit":["implicit.stat_2527686725"],"fractured":["fractured.stat_2527686725"]}}} +{"ref":"#% increased Effect of Shock from Melee Weapons","better":1,"matchers":[{"string":"#% усиление эффекта шока от оружия ближнего боя"},{"string":"#% ослабление эффекта шока от оружия ближнего боя","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2245266924"]}}} +{"ref":"#% increased Effect of Shock on you during Effect","better":-1,"matchers":[{"string":"#% усиление эффекта шока на вас во время действия эффекта"},{"string":"#% ослабление эффекта шока на вас во время действия эффекта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1878455805"],"fractured":["fractured.stat_1878455805"]}}} +{"ref":"#% increased Effect of Shocks you inflict during Effect","better":1,"matchers":[{"string":"#% усиление эффекта накладываемого вами шока во время действия эффекта"},{"string":"#% ослабление эффекта накладываемого вами шока во время действия эффекта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3338065776"]}}} +{"ref":"#% increased Effect of Shocks you inflict while Leeching Energy Shield","better":1,"matchers":[{"string":"#% усиление эффекта накладываемых вами шоков, пока вы похищаете энергетический щит"},{"string":"#% ослабление эффекта накладываемых вами шоков, пока вы похищаете энергетический щит","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3578946428"]}}} +{"ref":"#% increased Effect of Shrine Buffs on you","better":1,"matchers":[{"string":"#% усиление эффектов алтарей на вас"},{"string":"#% ослабление эффектов алтарей на вас","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1939175721"]}}} +{"ref":"#% increased Effect of Socketed Abyss Jewels","better":1,"matchers":[{"string":"#% усиление эффекта размещённых самоцветов Бездны"},{"string":"#% ослабление эффекта размещённых самоцветов Бездны","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1482572705"],"implicit":["implicit.stat_1482572705"]}}} +{"ref":"#% increased Effect of Tailwind on you","better":1,"matchers":[{"string":"#% усиление эффекта Попутного ветра на вас"},{"string":"#% ослабление эффекта Попутного ветра на вас","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2172944497"]}}} +{"ref":"#% increased effect of Tattoos in Radius","better":1,"matchers":[{"string":"#% усиление эффекта татуировок в радиусе"},{"string":"#% ослабление эффекта татуировок в радиусе","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4149388787"]}}} +{"ref":"#% increased Effect of the Buff granted by your Carrion Golems","better":1,"matchers":[{"string":"#% усиление положительного эффекта, даруемого вашими трупными големами"},{"string":"#% ослабление положительного эффекта, даруемого вашими трупными големами","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2420972973"],"enchant":["enchant.stat_2420972973"]}}} +{"ref":"#% increased Effect of the Buff granted by your Chaos Golems","better":1,"matchers":[{"string":"#% усиление эффекта, даруемого вашими големами хаоса"},{"string":"#% ослабление эффекта, даруемого вашими големами хаоса","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1648511635"],"enchant":["enchant.stat_1648511635"]}}} +{"ref":"#% increased Effect of the Buff granted by your Flame Golems","better":1,"matchers":[{"string":"#% усиление эффекта, даруемого вашими големами огня"},{"string":"#% ослабление эффекта, даруемого вашими големами огня","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_269930125"],"enchant":["enchant.stat_269930125"]}}} +{"ref":"#% increased Effect of the Buff granted by your Ice Golems","better":1,"matchers":[{"string":"#% усиление эффекта, даруемого вашими големами льда"},{"string":"#% ослабление эффекта, даруемого вашими големами льда","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2250111474"],"enchant":["enchant.stat_2250111474"]}}} +{"ref":"#% increased Effect of the Buff granted by your Lightning Golems","better":1,"matchers":[{"string":"#% усиление эффекта, даруемого вашими големами молнии"},{"string":"#% ослабление эффекта, даруемого вашими големами молнии","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2527931375"],"enchant":["enchant.stat_2527931375"]}}} +{"ref":"#% increased Effect of the Buff granted by your Stone Golems","better":1,"matchers":[{"string":"#% усиление эффекта, даруемого вашими каменными големами"},{"string":"#% ослабление эффекта, даруемого вашими каменными големами","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2284801675"],"enchant":["enchant.stat_2284801675"]}}} +{"ref":"#% increased Effect of Withered","better":1,"matchers":[{"string":"#% усиление эффекта Истощения"},{"string":"#% ослабление эффекта Истощения","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2545584555"]}}} +{"ref":"#% increased Effect of your Curses","better":1,"matchers":[{"string":"#% усиление эффекта ваших проклятий"},{"string":"#% ослабление эффекта ваших проклятий","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2353576063"],"implicit":["implicit.stat_2353576063"],"fractured":["fractured.stat_2353576063"],"scourge":["scourge.stat_2353576063"],"crafted":["crafted.stat_2353576063"]}}} +{"ref":"#% increased Effect of your Marks","better":1,"matchers":[{"string":"#% усиление эффекта ваших меток"},{"string":"#% ослабление эффекта ваших меток","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_803185500"],"implicit":["implicit.stat_803185500"],"fractured":["fractured.stat_803185500"]}}} +{"ref":"#% increased Elemental Damage","better":1,"matchers":[{"string":"#% увеличение урона от стихий"},{"string":"#% уменьшение урона от стихий","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_elemental_damage"],"explicit":["explicit.stat_3141070085"],"implicit":["implicit.stat_3141070085"],"fractured":["fractured.stat_3141070085"],"enchant":["enchant.stat_692420067"],"scourge":["scourge.stat_3141070085"]}}} +{"ref":"#% increased Elemental Damage during any Flask Effect","better":1,"matchers":[{"string":"#% увеличение урона от стихий во время действия эффекта любого флакона"},{"string":"#% уменьшение урона от стихий во время действия эффекта любого флакона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3150967823"]}}} +{"ref":"#% increased Elemental Damage if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"#% увеличение урона от стихий, если вы недавно наносили критический удар"},{"string":"#% уменьшение урона от стихий, если вы недавно наносили критический удар","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2379781920"],"fractured":["fractured.stat_2379781920"],"crafted":["crafted.stat_2379781920"]}}} +{"ref":"#% increased Elemental Damage if you've Warcried Recently","better":1,"matchers":[{"string":"#% увеличение урона от стихий, если недавно вы применяли боевой клич"}],"trade":{"ids":{"explicit":["explicit.stat_2803182108"]}}} +{"ref":"#% increased Elemental Damage per 10 Devotion","better":1,"matchers":[{"string":"#% увеличение урона от стихий за каждые 10 набожности"},{"string":"#% уменьшение урона от стихий за каждые 10 набожности","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3103189267"]}}} +{"ref":"#% increased Elemental Damage per 10 Dexterity","better":1,"matchers":[{"string":"#% увеличение урона от стихий за каждые 10 ловкости"},{"string":"#% уменьшение урона от стихий за каждые 10 ловкости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_963261439"]}}} +{"ref":"#% increased Elemental Damage per Frenzy Charge","better":1,"matchers":[{"string":"#% увеличение урона от стихий за заряд ярости"}],"trade":{"ids":{"explicit":["explicit.stat_1586440250"]}}} +{"ref":"#% increased Elemental Damage per Grand Spectrum","better":1,"matchers":[{"string":"#% увеличение урона от стихий за Великий образ"}],"trade":{"ids":{"explicit":["explicit.stat_3163738488"]}}} +{"ref":"#% increased Elemental Damage per Level","better":1,"matchers":[{"string":"#% увеличение урона от стихий за уровень"},{"string":"#% уменьшение урона от стихий за уровень","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2094646950"]}}} +{"ref":"#% increased Elemental Damage per Power charge","better":1,"matchers":[{"string":"#% увеличение урона от стихий за заряд энергии"},{"string":"#% уменьшение урона от стихий за заряд энергии","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1482070333"]}}} +{"ref":"#% increased Elemental Damage taken","better":-1,"matchers":[{"string":"#% увеличение получаемого урона от стихий"},{"string":"#% уменьшение получаемого урона от стихий","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2734809852"]}}} +{"ref":"#% increased Elemental Damage with Attack Skills","better":1,"matchers":[{"string":"#% увеличение урона от стихий от умений атак"},{"string":"#% уменьшение урона от стихий от умений атак","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_elemental_damage_with_attack_skills"],"explicit":["explicit.stat_387439868"],"implicit":["implicit.stat_387439868"],"fractured":["fractured.stat_387439868"],"scourge":["scourge.stat_387439868"],"crafted":["crafted.stat_387439868"]}}} +{"ref":"#% increased Elemental Damage with Attack Skills during any Flask Effect","better":1,"matchers":[{"string":"#% увеличение урона от стихий умениями атак во время действия эффекта любого флакона"}],"trade":{"ids":{"explicit":["explicit.stat_782323220"]}}} +{"ref":"#% increased Elemental Damage with Attack Skills per Power Charge","better":1,"matchers":[{"string":"#% увеличение урона от стихий умениями атак за заряд энергии"},{"string":"#% уменьшение урона от стихий умениями атак за заряд энергии","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4116409626"]}}} +{"ref":"#% increased Elemental Damage with Hits and Ailments for\neach type of Elemental Ailment on Enemy","better":1,"matchers":[{"string":"#% увеличение урона от стихий от ударов и состояний за каждый тип стихийного состояния на враге"},{"string":"#% уменьшение урона от стихий от ударов и состояний за каждый тип стихийного состояния на враге","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2605663324"]}}} +{"ref":"#% increased Elemental Damage with Melee Weapons","better":1,"matchers":[{"string":"#% увеличение урона от стихий оружием ближнего боя"},{"string":"#% уменьшение урона от стихий оружием ближнего боя","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_503138266"]}}} +{"ref":"#% increased Elemental Hit Attack Speed","better":1,"matchers":[{"string":"#% повышение скорости атаки Удара стихии"},{"string":"#% снижение скорости атаки Удара стихии","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1151217691"]}}} +{"ref":"#% increased Elemental Weakness Curse Effect","better":1,"matchers":[{"string":"#% усиление эффекта проклятия Уязвимости к стихиям"},{"string":"#% ослабление эффекта проклятия Уязвимости к стихиям","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3348324479"],"enchant":["enchant.stat_3348324479"]}}} +{"ref":"#% increased Elemental Weakness Duration","better":1,"matchers":[{"string":"#% увеличение длительности Уязвимости к стихиям"},{"string":"#% уменьшение длительности Уязвимости к стихиям","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2690620076"]}}} +{"ref":"#% increased Elusive Effect","better":1,"matchers":[{"string":"#% усиление эффекта Неуловимости"},{"string":"#% ослабление эффекта Неуловимости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_240857668"],"implicit":["implicit.stat_240857668"],"scourge":["scourge.stat_240857668"]}}} +{"ref":"#% increased Endurance Charge Duration","better":1,"matchers":[{"string":"#% увеличение длительности заряда выносливости"},{"string":"#% уменьшение длительности заряда выносливости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1170174456"],"implicit":["implicit.stat_1170174456"],"enchant":["enchant.stat_1170174456"]}}} +{"ref":"#% increased Endurance, Frenzy and Power Charge Duration","better":1,"matchers":[{"string":"#% увеличение длительности зарядов энергии, ярости и выносливости"},{"string":"#% уменьшение длительности зарядов энергии, ярости и выносливости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2839036860"],"implicit":["implicit.stat_2839036860"]}}} +{"ref":"#% increased Energy Shield","better":1,"matchers":[{"string":"#% увеличение энергетического щита"},{"string":"#% уменьшение энергетического щита","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4015621042"],"implicit":["implicit.stat_4015621042"],"fractured":["fractured.stat_4015621042"],"crafted":["crafted.stat_4015621042"]}}} +{"ref":"#% increased Energy Shield from Equipped Body Armour","better":1,"matchers":[{"string":"#% увеличение энергетического щита от надетого нательного доспеха"}],"trade":{"ids":{"explicit":["explicit.stat_1195319608"],"fractured":["fractured.stat_1195319608"]}}} +{"ref":"#% increased Energy Shield per 10 Strength","better":1,"matchers":[{"string":"#% увеличение энергетического щита за каждые 10 силы"}],"trade":{"ids":{"explicit":["explicit.stat_506942497"]}}} +{"ref":"#% increased Energy Shield per Power Charge","better":1,"matchers":[{"string":"#% увеличение энергетического щита за заряд энергии"}],"trade":{"ids":{"explicit":["explicit.stat_2189382346"]}}} +{"ref":"#% increased Energy Shield Recharge Rate","better":1,"matchers":[{"string":"#% повышение скорости перезарядки энергетического щита"},{"string":"#% снижение скорости перезарядки энергетического щита","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2339757871"],"implicit":["implicit.stat_2339757871"],"fractured":["fractured.stat_2339757871"],"enchant":["enchant.stat_2339757871"],"scourge":["scourge.stat_2339757871"],"crafted":["crafted.stat_2339757871"]}}} +{"ref":"#% increased Energy Shield Recharge Rate during any Flask Effect","better":1,"matchers":[{"string":"#% повышение скорости перезарядки энергетического щита во время действия эффекта любого флакона"},{"string":"#% снижение скорости перезарядки энергетического щита во время действия эффекта любого флакона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1827657795"]}}} +{"ref":"#% increased Energy Shield Recovery rate","better":1,"matchers":[{"string":"#% повышение скорости восстановления энергетического щита"},{"string":"#% снижение скорости восстановления энергетического щита","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_988575597"],"implicit":["implicit.stat_988575597"],"fractured":["fractured.stat_988575597"],"scourge":["scourge.stat_988575597"]}}} +{"ref":"#% increased Energy Shield Recovery Rate if you haven't Killed Recently","better":1,"matchers":[{"string":"#% повышение скорости восстановления энергетического щита если недавно вы не совершали убийство"},{"string":"#% снижение скорости восстановления энергетического щита если недавно вы не совершали убийство","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2698606393"]}}} +{"ref":"#% increased Energy Shield Recovery Rate while affected by Discipline","better":1,"matchers":[{"string":"#% повышение скорости восстановления энергетического щита под действием Дисциплины"},{"string":"#% снижение скорости восстановления энергетического щита под действием Дисциплины","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_80470845"]}}} +{"ref":"#% increased Enfeeble Curse Effect","better":1,"matchers":[{"string":"#% усиление эффекта проклятия Слабости"},{"string":"#% ослабление эффекта проклятия Слабости","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3293830776"],"enchant":["enchant.stat_3293830776"]}}} +{"ref":"#% increased Enfeeble Duration","better":1,"matchers":[{"string":"#% увеличение длительности Слабости"},{"string":"#% уменьшение длительности Слабости","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_516587640"]}}} +{"ref":"#% increased Engineering Experience gained","better":1,"matchers":[{"string":"#% увеличение получаемого Инженерным делом опыта"},{"string":"#% уменьшение получаемого Инженерным делом опыта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1372426763"],"fractured":["fractured.stat_1372426763"]}}} +{"ref":"#% increased Engineering speed","better":1,"matchers":[{"string":"#% повышение скорости использования Инженерного дела"},{"string":"#% снижение скорости использования Инженерного дела","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3211817426"],"implicit":["implicit.stat_3211817426"],"fractured":["fractured.stat_3211817426"]}}} +{"ref":"#% increased Essence Drain Damage","better":1,"matchers":[{"string":"#% увеличение урона Похищения сущности"},{"string":"#% уменьшение урона Похищения сущности","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3469967347"]}}} +{"ref":"#% increased Essence Drain Duration","better":1,"matchers":[{"string":"#% увеличение длительности Похищения сущности"},{"string":"#% уменьшение длительности Похищения сущности","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3698833303"]}}} +{"ref":"#% increased Ethereal Knives Damage","better":1,"matchers":[{"string":"#% увеличение урона Бесплотных ножей"},{"string":"#% уменьшение урона Бесплотных ножей","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3514973342"]}}} +{"ref":"#% increased Ethereal Knives Projectile Speed","better":1,"matchers":[{"string":"#% повышение скорости снарядов Бесплотных ножей"},{"string":"#% снижение скорости снарядов Бесплотных ножей","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_760994068"]}}} +{"ref":"#% increased Evasion and Energy Shield","better":1,"matchers":[{"string":"#% увеличение уклонения и энергетического щита"},{"string":"#% уменьшение уклонения и энергетического щита","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1999113824"],"fractured":["fractured.stat_1999113824"],"crafted":["crafted.stat_1999113824"]}}} +{"ref":"#% increased Evasion Rating","better":1,"matchers":[{"string":"#% увеличение уклонения"},{"string":"#% уменьшение уклонения","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_124859000","explicit.stat_2106365538"],"implicit":["implicit.stat_124859000","implicit.stat_2106365538"],"fractured":["fractured.stat_124859000","fractured.stat_2106365538"],"crafted":["crafted.stat_124859000","crafted.stat_2106365538"]}}} +{"ref":"#% increased Evasion Rating and Armour","better":1,"matchers":[{"string":"#% увеличение уклонения и брони"},{"string":"#% уменьшение уклонения и брони","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3366029652"]}}} +{"ref":"#% increased Evasion Rating during Effect","better":1,"matchers":[{"string":"#% увеличение уклонения во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_299054775"],"fractured":["fractured.stat_299054775"]}}} +{"ref":"#% increased Evasion Rating during Onslaught","better":1,"matchers":[{"string":"#% увеличение уклонения при Боевом раже"},{"string":"#% уменьшение уклонения при Боевом раже","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_156734303"]}}} +{"ref":"#% increased Evasion Rating from Equipped Helmet and Boots","better":1,"matchers":[{"string":"#% увеличение уклонения, полученного от шлема и сапог"},{"string":"#% уменьшение уклонения, полученного от шлема и сапог","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_623823763"]}}} +{"ref":"#% increased Evasion Rating if you have been Hit Recently","better":1,"matchers":[{"string":"#% увеличение уклонения, если вы недавно получали удар"},{"string":"#% уменьшение уклонения, если вы недавно получали удар","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1073310669"]}}} +{"ref":"#% increased Evasion Rating if you've Cast Dash recently","better":1,"matchers":[{"string":"#% увеличение уклонения, если недавно вы использовали Рывок"},{"string":"#% уменьшение уклонения, если недавно вы использовали Рыво","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_237513297"]}}} +{"ref":"#% increased Evasion Rating per 10 Intelligence","better":1,"matchers":[{"string":"#% увеличение уклонения за каждые 10 интеллекта"}],"trade":{"ids":{"explicit":["explicit.stat_810772344"]}}} +{"ref":"#% increased Evasion Rating per 500 Maximum Mana, up to 100%","better":1,"matchers":[{"string":"#% увеличение уклонения за каждые 500 максимума маны, вплоть до 100%"}],"trade":{"ids":{"explicit":["explicit.stat_1687962297"]}}} +{"ref":"#% increased Evasion Rating per Frenzy Charge","better":1,"matchers":[{"string":"#% увеличение уклонения за заряд ярости"},{"string":"#% уменьшение уклонения за заряд ярости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_660404777"],"implicit":["implicit.stat_660404777"]}}} +{"ref":"#% increased Evasion Rating while Focused","better":1,"matchers":[{"string":"#% увеличение уклонения, пока вы сфокусированы"}],"trade":{"ids":{"explicit":["explicit.stat_3839620417"],"fractured":["fractured.stat_3839620417"],"crafted":["crafted.stat_3839620417"]}}} +{"ref":"#% increased Evasion Rating while moving","better":1,"matchers":[{"string":"#% увеличение уклонения во время передвижения"},{"string":"#% уменьшение уклонения во время передвижения","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_734823525"],"fractured":["fractured.stat_734823525"]}}} +{"ref":"#% increased Evasion Rating while Phasing","better":1,"matchers":[{"string":"#% увеличение уклонения в форме призрака"}],"trade":{"ids":{"explicit":["explicit.stat_402176724"]}}} +{"ref":"#% increased Experience gain","better":1,"fromAreaMods":true,"matchers":[{"string":"#% увеличение получаемого опыта"},{"string":"#% уменьшение получаемого опыта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3666934677","explicit.stat_57434274"],"implicit":["implicit.stat_3666934677"],"fractured":["fractured.stat_3666934677"],"enchant":["enchant.stat_57434274"]}}} +{"ref":"#% increased Experience Gain for Corrupted Gems","better":1,"matchers":[{"string":"#% увеличение получаемого опыта осквернёнными камнями умений"},{"string":"#% уменьшение получаемого опыта осквернёнными камнями умений","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_47271484"]}}} +{"ref":"#% increased Experience Gain of Gems","better":1,"matchers":[{"string":"#% увеличение опыта, получаемого камнями"},{"string":"#% снижение опыта, получаемого камнями","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3808869043"]}}} +{"ref":"#% increased Explicit Ailment Modifier magnitudes","better":1,"matchers":[{"string":"#% повышение значений добавленных свойств состояний"},{"string":"#% снижение значений добавленных свойств состояний","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3086446674"]}}} +{"ref":"#% increased Explicit Attribute Modifier magnitudes","better":1,"matchers":[{"string":"#% повышение значений добавленных свойств характеристик"},{"string":"#% снижение значений добавленных свойств характеристик","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3243861579"]}}} +{"ref":"#% increased Explicit Caster Damage Modifier magnitudes","better":1,"matchers":[{"string":"#% повышение значений добавленных свойств урона от чар"},{"string":"#% снижение значений добавленных свойств урона от чар","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1498186316"]}}} +{"ref":"#% increased Explicit Chaos Modifier magnitudes","better":1,"matchers":[{"string":"#% повышение значений добавленных свойств хаоса"},{"string":"#% снижение значений добавленных свойств хаоса","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3196512240"]}}} +{"ref":"#% increased Explicit Cold Modifier magnitudes","better":1,"matchers":[{"string":"#% повышение значений добавленных свойств холода"},{"string":"#% снижение значений добавленных свойств холода","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3206904707"]}}} +{"ref":"#% increased Explicit Critical Modifier magnitudes","better":1,"matchers":[{"string":"#% повышение значений добавленных свойств критических ударов"},{"string":"#% снижение значений добавленных свойств критических ударов","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2393315299"]}}} +{"ref":"#% increased Explicit Damage Modifier magnitudes","better":1,"matchers":[{"string":"#% повышение значений добавленных свойств урона"},{"string":"#% снижение значений добавленных свойств урона","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2979443822"]}}} +{"ref":"#% increased Explicit Defence Modifier magnitudes","better":1,"matchers":[{"string":"#% повышение значений добавленных свойств защиты"},{"string":"#% снижение значений добавленных свойств защиты","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3300369861"]}}} +{"ref":"#% increased Explicit Fire Modifier magnitudes","better":1,"matchers":[{"string":"#% повышение значений добавленных свойств огня"},{"string":"#% снижение значений добавленных свойств огня","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3574578302"]}}} +{"ref":"#% increased Explicit Life Modifier magnitudes","better":1,"matchers":[{"string":"#% повышение значений добавленных свойств здоровья"},{"string":"#% снижение значений добавленных свойств здоровья","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1308141466"]}}} +{"ref":"#% increased Explicit Lightning Modifier magnitudes","better":1,"matchers":[{"string":"#% повышение значений добавленных свойств молнии"},{"string":"#% снижение значений добавленных свойств молнии","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3624940721"]}}} +{"ref":"#% increased Explicit Mana Modifier magnitudes","better":1,"matchers":[{"string":"#% повышение значений добавленных свойств маны"},{"string":"#% снижение значений добавленных свойств маны","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3514984677"]}}} +{"ref":"#% increased Explicit Modifier magnitudes","better":1,"fromAreaMods":true,"matchers":[{"string":"#% повышение значений добавленных свойств"},{"string":"#% снижение значений добавленных свойств","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1581907402"]}}} +{"ref":"#% increased Explicit Physical Modifier magnitudes","better":1,"matchers":[{"string":"#% повышение значений добавленных физических свойств"},{"string":"#% снижение значений добавленных физических свойств","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1335369947"]}}} +{"ref":"#% increased Explicit Resistance Modifier magnitudes","better":1,"matchers":[{"string":"#% повышение значений добавленных свойств сопротивлений"},{"string":"#% снижение значений добавленных свойств сопротивлений","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1972391381"]}}} +{"ref":"#% increased Explicit Speed Modifier magnitudes","better":1,"matchers":[{"string":"#% повышение значений добавленных свойств скорости"},{"string":"#% снижение значений добавленных свойств скорости","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_363924732"]}}} +{"ref":"#% increased Explosive Concoction Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Взрывной смеси"},{"string":"#% уменьшение области действия Взрывной смеси","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4100281103"]}}} +{"ref":"#% increased Explosive Concoction Damage","better":1,"matchers":[{"string":"#% увеличение урона Взрывной смеси"},{"string":"#% уменьшение урона Взрывной смеси","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_383710904"]}}} +{"ref":"#% increased Explosive Placement Range","better":1,"fromAreaMods":true,"matchers":[{"string":"#% увеличение радиуса размещения взрывчатки"},{"string":"#% уменьшение радиуса размещения взрывчатки"}],"trade":{"ids":{"explicit":["explicit.stat_1539368271"],"implicit":["implicit.stat_1539368271"]}}} +{"ref":"#% increased Explosive Radius","better":1,"fromAreaMods":true,"matchers":[{"string":"#% увеличение радиуса взрыва"}],"trade":{"ids":{"implicit":["implicit.stat_3289828378"]}}} +{"ref":"#% increased Exsanguinate Duration","better":1,"matchers":[{"string":"#% увеличение длительности Обескровливания"},{"string":"#% уменьшение длительности Обескровливания","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_292721070"]}}} +{"ref":"#% increased Eye of Winter Damage","better":1,"matchers":[{"string":"#% увеличение урона Ока зимы"},{"string":"#% уменьшение урона Ока зимы","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1015388938"]}}} +{"ref":"#% increased Eye of Winter Projectile Speed","better":1,"matchers":[{"string":"#% повышение скорости снаряда Ока зимы"},{"string":"#% снижение скорости снаряда Ока зимы","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1739537617"]}}} +{"ref":"#% increased Fire Damage","better":1,"matchers":[{"string":"#% увеличение урона от огня"},{"string":"#% уменьшение урона от огня","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_fire_damage"],"explicit":["explicit.stat_3962278098"],"implicit":["implicit.stat_3962278098"],"fractured":["fractured.stat_3962278098"],"scourge":["scourge.stat_3962278098"],"crafted":["crafted.stat_3962278098"]}}} +{"ref":"#% increased Fire Damage if you have used a Cold Skill Recently","better":1,"matchers":[{"string":"#% увеличение урона от огня, если вы недавно использовали умение холода"},{"string":"#% уменьшение урона от огня, если вы недавно использовали умение холода","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4167600809"]}}} +{"ref":"#% increased Fire Damage per 1% Fire Resistance above 75%","better":1,"matchers":[{"string":"#% увеличение урона от огня за 1% сопротивления огню выше 75%"},{"string":"#% уменьшение урона от огня за 1% сопротивления огню выше 75%","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3013187834"]}}} +{"ref":"#% increased Fire Damage per 1% Missing Fire Resistance, up to a maximum of 300%","better":1,"matchers":[{"string":"#% увеличение урона от огня за 1% недостающего сопротивления огню, вплоть до максимума в 300%"},{"string":"#% уменьшение урона от огня за 1% недостающего сопротивления огню, вплоть до максимума в 300%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1060236362"]}}} +{"ref":"#% increased Fire Damage per 20 Strength","better":1,"matchers":[{"string":"#% увеличение урона от огня за каждые 20 силы"},{"string":"#% уменьшение урона от огня за каждые 20 силы","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2241902512"],"implicit":["implicit.stat_2241902512"]}}} +{"ref":"#% increased Fire Damage taken","better":1,"matchers":[{"string":"#% увеличение получаемого урона от огня"},{"string":"#% уменьшение получаемого урона от огня","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3743301799"],"implicit":["implicit.stat_3743301799"],"fractured":["fractured.stat_3743301799"],"scourge":["scourge.stat_3743301799"]}}} +{"ref":"#% increased Fire Damage while affected by Anger","better":1,"matchers":[{"string":"#% увеличение урона от огня под действием Жгучей злобы"},{"string":"#% уменьшение урона от огня под действием Жгучей злобы","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3337107517"]}}} +{"ref":"#% increased Fire Damage while affected by Herald of Ash","better":1,"matchers":[{"string":"#% увеличение урона от огня под действием Вестника пепла"},{"string":"#% уменьшение урона от огня под действием Вестника пепла","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2775776604"]}}} +{"ref":"#% increased Fire Damage with Attack Skills","better":1,"matchers":[{"string":"#% увеличение урона от огня от умений атак"},{"string":"#% уменьшение урона от огня от умений атак","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_fire_damage_with_attack_skills"],"implicit":["implicit.stat_2468413380"]}}} +{"ref":"#% increased Fire Damage with Hits and Ailments against Bleeding Enemies","better":1,"matchers":[{"string":"#% увеличение урона от огня от ударов и состояний по истекающим кровью врагам"},{"string":"#% уменьшение урона от огня от ударов и состояний по истекающим кровью врагам","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3703926412"]}}} +{"ref":"#% increased Fire Damage with Hits and Ailments against Blinded Enemies","better":1,"matchers":[{"string":"#% увеличение урона от огня от ударов и состояний по ослеплённым врагам"},{"string":"#% уменьшение урона от огня от ударов и состояний по ослеплённым врагам","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1601181226"]}}} +{"ref":"#% increased Fire Damage with Spell Skills","better":1,"matchers":[{"string":"#% увеличение урона от огня умениями чар"},{"string":"#% уменьшение урона от огня умениями чар","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_361162316"]}}} +{"ref":"#% increased Fire Resistance","better":1,"matchers":[{"string":"#% повышение сопротивления огню"},{"string":"#% снижение сопротивления огню","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1680060098"]}}} +{"ref":"#% increased Fire Spell Damage","better":1,"matchers":[{"string":"#% увеличение урона от огня чарами "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_fire_spell_damage"]}}} +{"ref":"#% increased Fire Trap Burning Damage","better":1,"matchers":[{"string":"Огненная ловушка имеет #% увеличение урона от горения"},{"string":"Огненная ловушка имеет #% уменьшение урона от горения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_345703394"]}}} +{"ref":"#% increased Fire Trap Burning Ground Duration","better":1,"matchers":[{"string":"#% увеличение длительности горящей земли от Огненной ловушки"},{"string":"#% уменьшение длительности горящей земли от Огненной ловушки","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3279786746"]}}} +{"ref":"#% increased Fire Trap Damage","better":1,"matchers":[{"string":"#% увеличение урона Огненной ловушки"},{"string":"#% уменьшение урона Огненной ловушки","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_181307038"]}}} +{"ref":"#% increased Fireball Cast Speed","better":1,"matchers":[{"string":"#% повышение скорости сотворения чар Огненного шара"},{"string":"#% снижение скорости сотворения чар Огненного шара","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2231403318"]}}} +{"ref":"#% increased Fireball Damage","better":1,"matchers":[{"string":"#% увеличение урона Огненного шара"},{"string":"#% уменьшение урона Огненного шара","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2600498881"]}}} +{"ref":"#% increased Firestorm Damage","better":1,"matchers":[{"string":"#% увеличение урона Огненного шторма"},{"string":"#% уменьшение урона Огненного шторма","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2201904285"]}}} +{"ref":"#% increased Firestorm Duration","better":1,"matchers":[{"string":"#% увеличение длительности Огненного шторма"},{"string":"#% уменьшение длительности Огненного шторма","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1691710359"]}}} +{"ref":"#% increased Firestorm explosion Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия взрыва Огненного шторма"},{"string":"#% уменьшение области действия взрыва Огненного шторма","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3931013900"]}}} +{"ref":"#% increased Fish Bite Sensitivity","better":1,"matchers":[{"string":"#% повышение чувствительности поклёвки рыбы"}],"trade":{"ids":{"explicit":["explicit.stat_1296614065"],"implicit":["implicit.stat_1296614065"]}}} +{"ref":"#% increased Fishing Line Strength","better":1,"matchers":[{"string":"#% увеличение силы лески"},{"string":"#% снижение силы лески","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1842038569"],"fractured":["fractured.stat_1842038569"],"scourge":["scourge.stat_1842038569"]}}} +{"ref":"#% increased Fishing Range","better":1,"matchers":[{"string":"#% увеличение дальности заброса"},{"string":"#% снижение дальности заброса","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_170497091"],"fractured":["fractured.stat_170497091"],"scourge":["scourge.stat_170497091"]}}} +{"ref":"#% increased Flame Dash Damage","better":1,"matchers":[{"string":"#% увеличение урона Огненного рывка"},{"string":"#% уменьшение урона Огненного рывка","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3013068851"]}}} +{"ref":"#% increased Flame Link Duration","better":1,"matchers":[{"string":"#% увеличение длительности Пламенной связи"},{"string":"#% уменьшение длительности Пламенной связи","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3996051430"]}}} +{"ref":"#% increased Flame Surge Critical Strike Chance","better":1,"matchers":[{"string":"#% повышение шанса критического удара Выброса пламени"},{"string":"#% снижение шанса критического удара Выброса пламени","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1030003515"]}}} +{"ref":"#% increased Flame Surge Damage","better":1,"matchers":[{"string":"#% увеличение урона Выброса пламени"},{"string":"#% уменьшение урона Выброса пламени","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1491182794"]}}} +{"ref":"#% increased Flame Surge Damage with Hits and Ailments against Burning Enemies","better":1,"matchers":[{"string":"#% увеличение урона Выброса пламени от ударов и состояний по горящим врагам"},{"string":"#% уменьшение урона Выброса пламени от ударов и состояний по горящим врагам","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_430890565"]}}} +{"ref":"#% increased Flameblast Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Пламенного взрыва"},{"string":"#% уменьшение области действия Пламенного взрыва","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1532964880"]}}} +{"ref":"#% increased Flameblast Critical Strike Chance","better":1,"matchers":[{"string":"#% повышение шанса критического удара Пламенного взрыва"},{"string":"#% снижение шанса критического удара Пламенного взрыва","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3053448465"]}}} +{"ref":"#% increased Flameblast Damage","better":1,"matchers":[{"string":"#% увеличение урона Пламенного взрыва"},{"string":"#% уменьшение урона Пламенного взрыва","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_169405468"]}}} +{"ref":"#% increased Flammability Curse Effect","better":1,"matchers":[{"string":"#% усиление эффекта проклятия Горючести"},{"string":"#% ослабление эффекта проклятия Горючести","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_282417259"],"enchant":["enchant.stat_282417259"]}}} +{"ref":"#% increased Flammability Duration","better":1,"matchers":[{"string":"#% увеличение длительности Горючести"},{"string":"#% уменьшение длительности Горючести","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2166622264"]}}} +{"ref":"#% increased Flask Charges gained","better":1,"matchers":[{"string":"#% увеличение получаемого количества зарядов флакона"},{"string":"Игроки имеют #% увеличение количества получаемых зарядов флакона"},{"string":"#% уменьшение получаемого количества зарядов флакона","negate":true},{"string":"Игроки имеют #% уменьшение количества получаемых зарядов флакона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1452809865"],"implicit":["implicit.stat_1452809865"],"fractured":["fractured.stat_1452809865"],"scourge":["scourge.stat_1452809865"],"crafted":["crafted.stat_1452809865"]}}} +{"ref":"#% increased Flask Charges gained during any Flask Effect","better":1,"matchers":[{"string":"#% увеличение получаемого количества зарядов флакона во время действия эффекта любого флакона"},{"string":"#% уменьшение получаемого количества зарядов флакона во время действия эффекта любого флакона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_662803072"]}}} +{"ref":"#% increased Flask Charges gained from Kills with Melee Weapons","better":1,"matchers":[{"string":"#% увеличение количества зарядов флакона, получаемых при убийстве оружием ближнего боя"},{"string":"#% уменьшение количества зарядов флакона, получаемых при убийстве оружием ближнего боя","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_6637015"]}}} +{"ref":"#% increased Flask Effect Duration","better":1,"matchers":[{"string":"#% увеличение длительности эффекта флакона"},{"string":"#% уменьшение длительности эффекта флакона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3741323227"],"implicit":["implicit.stat_3741323227"],"fractured":["fractured.stat_3741323227"],"enchant":["enchant.stat_3741323227"],"crafted":["crafted.stat_3741323227"]}}} +{"ref":"#% increased Flask Effect Duration per Level","better":1,"matchers":[{"string":"#% увеличение длительности эффекта флакона за уровень"},{"string":"#% уменьшение длительности эффекта флакона за уровень","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_981878473"]}}} +{"ref":"#% increased Flask Life Recovery rate","better":1,"matchers":[{"string":"#% повышение скорости восстановления здоровья от флакона"},{"string":"#% снижение скорости восстановления здоровья от флакона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_51994685"],"fractured":["fractured.stat_51994685"],"scourge":["scourge.stat_51994685"],"crafted":["crafted.stat_51994685"]}}} +{"ref":"#% increased Flask Mana Recovery rate","better":1,"matchers":[{"string":"#% повышение скорости восстановления маны от флакона"},{"string":"#% снижение скорости восстановления маны от флакона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1412217137"],"fractured":["fractured.stat_1412217137"],"scourge":["scourge.stat_1412217137"],"crafted":["crafted.stat_1412217137"]}}} +{"ref":"#% increased Flesh Offering Duration","better":1,"matchers":[{"string":"#% увеличение длительности Подношения плоти"},{"string":"#% уменьшение длительности Подношения плоти","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_101788216"]}}} +{"ref":"#% increased Flicker Strike Damage","better":1,"matchers":[{"string":"#% увеличение урона Внезапного удара"},{"string":"#% уменьшение урона Внезапного удара","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_464448327"]}}} +{"ref":"#% increased Flicker Strike Damage per Frenzy Charge","better":1,"matchers":[{"string":"#% увеличение урона Внезапного удара за заряд ярости"},{"string":"#% уменьшение урона Внезапного удара за заряд ярости","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3701991680"]}}} +{"ref":"#% increased Forbidden Rite Damage","better":1,"matchers":[{"string":"#% увеличение урона Запретного ритуала"},{"string":"#% уменьшение урона Запретного ритуала","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3383175526"]}}} +{"ref":"#% increased Forbidden Rite Projectile Speed","better":1,"matchers":[{"string":"#% повышение скорости снаряда Запретного ритуала"},{"string":"#% снижение скорости снаряда Запретного ритуала","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3316480899"]}}} +{"ref":"#% increased Freeze Duration on Enemies","better":1,"matchers":[{"string":"#% увеличение длительности заморозки на врагах"},{"string":"#% уменьшение длительности заморозки на врагах","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1073942215"],"implicit":["implicit.stat_1073942215"],"fractured":["fractured.stat_1073942215"],"crafted":["crafted.stat_1073942215"]}}} +{"ref":"#% increased Freeze Duration on you during Effect","better":-1,"matchers":[{"string":"#% увеличение длительности заморозки на вас во время действия эффекта"},{"string":"#% уменьшение длительности заморозки на вас во время действия эффекта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_774474440"],"fractured":["fractured.stat_774474440"]}}} +{"ref":"#% increased Freezing Pulse Cast Speed","better":1,"matchers":[{"string":"#% повышение скорости сотворения чар Волны холода"},{"string":"#% снижение скорости сотворения чар Волны холода","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1894493605"]}}} +{"ref":"#% increased Freezing Pulse Damage","better":1,"matchers":[{"string":"#% увеличение урона Волны холода"},{"string":"#% уменьшение урона Волны холода","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_819852672"]}}} +{"ref":"#% increased Freezing Pulse Projectile Speed","better":1,"matchers":[{"string":"#% повышение скорости снарядов Волны холода"},{"string":"#% снижение скорости снарядов Волны холода","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2003026405"]}}} +{"ref":"#% increased Frenzy Charge Duration","better":1,"matchers":[{"string":"#% увеличение длительности заряда ярости"},{"string":"#% уменьшение длительности заряда ярости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3338298622"],"implicit":["implicit.stat_3338298622"],"enchant":["enchant.stat_3338298622"]}}} +{"ref":"#% increased Frenzy Damage","better":1,"matchers":[{"string":"#% увеличение урона Бешенства"},{"string":"#% уменьшение урона Бешенства","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_522780692"]}}} +{"ref":"#% increased Frenzy Damage per Frenzy Charge","better":1,"matchers":[{"string":"#% увеличение урона Бешенства за заряд ярости"},{"string":"#% уменьшение урона Бешенства за заряд ярости","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1255310381"]}}} +{"ref":"#% increased Frost Blades Damage","better":1,"matchers":[{"string":"#% увеличение урона ледяных клинков"},{"string":"#% уменьшение урона ледяных клинков","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3449510470"]}}} +{"ref":"#% increased Frost Blades Projectile Speed","better":1,"matchers":[{"string":"#% повышение скорости снарядов ледяных клинков"},{"string":"#% снижение скорости снарядов ледяных клинков","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1087923932"]}}} +{"ref":"#% increased Frost Bomb Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Морозной бомбы"},{"string":"#% уменьшение области действия Морозной бомбы","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1451372148"]}}} +{"ref":"#% increased Frost Bomb Damage","better":1,"matchers":[{"string":"#% увеличение урона Морозной бомбы"},{"string":"#% уменьшение урона Морозной бомбы","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2380598805"]}}} +{"ref":"#% increased Frost Wall Duration","better":1,"matchers":[{"string":"#% увеличение длительности Стены льда"},{"string":"#% уменьшение длительности Стены льда","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_775034903"]}}} +{"ref":"#% increased Frostbite Curse Effect","better":1,"matchers":[{"string":"#% усиление эффекта проклятия Обморожения"},{"string":"#% ослабление эффекта проклятия Обморожения","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1443215722"],"enchant":["enchant.stat_1443215722"]}}} +{"ref":"#% increased Frostbite Duration","better":1,"matchers":[{"string":"#% увеличение длительности Обморожения"},{"string":"#% уменьшение длительности Обморожения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1783696476"]}}} +{"ref":"#% increased Frostbolt Cast Speed","better":1,"matchers":[{"string":"#% повышение скорости сотворения Морозного шара"},{"string":"#% снижение скорости сотворения Морозного шара","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4231484190"]}}} +{"ref":"#% increased Frostbolt Damage","better":1,"matchers":[{"string":"#% увеличение урона Морозного шара"},{"string":"#% уменьшение урона Морозного шара","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2078274993"]}}} +{"ref":"#% increased Galvanic Arrow Damage","better":1,"matchers":[{"string":"#% увеличение урона Электризующей стрелы"},{"string":"#% уменьшение урона Электризующей стрелы","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2634945088"]}}} +{"ref":"#% increased Glacial Cascade Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Ледяного каскада"},{"string":"#% уменьшение области действия Ледяного каскада","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_88796379"]}}} +{"ref":"#% increased Glacial Cascade Damage","better":1,"matchers":[{"string":"#% увеличение урона Ледяного каскада"},{"string":"#% уменьшение урона Ледяного каскада","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_451037529"]}}} +{"ref":"#% increased Glacial Hammer Damage","better":1,"matchers":[{"string":"#% увеличение урона Леденящего молота"},{"string":"#% уменьшение урона Леденящего молота","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2732675053"]}}} +{"ref":"#% increased Global Accuracy Rating","better":1,"matchers":[{"string":"#% повышение глобальной меткости"},{"string":"#% снижение глобальной меткости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_624954515"],"implicit":["implicit.stat_624954515"],"fractured":["fractured.stat_624954515"],"scourge":["scourge.stat_624954515"]}}} +{"ref":"#% increased Global Armour while you have no Energy Shield","better":1,"matchers":[{"string":"#% повышение глобальной брони при отсутствии энергетического щита"},{"string":"#% снижение глобальной брони при отсутствии энергетического щита","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3827349913"]}}} +{"ref":"#% increased Global Attack Speed per Green Socket","better":1,"matchers":[{"string":"#% повышение глобальной скорости атаки за зеленое гнездо"}],"trade":{"ids":{"explicit":["explicit.stat_250876318"]}}} +{"ref":"#% increased Global Critical Strike Chance","better":1,"matchers":[{"string":"#% повышение глобального шанса критического удара"},{"string":"#% снижение глобального шанса критического удара","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_587431675"],"implicit":["implicit.stat_587431675"],"fractured":["fractured.stat_587431675"],"scourge":["scourge.stat_587431675"],"crafted":["crafted.stat_587431675"]}}} +{"ref":"#% increased Global Critical Strike Chance if Corrupted","better":1,"matchers":[{"string":"#% повышение глобального шанса критического удара, если предмет осквернён"},{"string":"#% снижение глобального шанса критического удара, если предмет осквернён","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4023723828"]}}} +{"ref":"#% increased Global Critical Strike Chance per Level","better":1,"matchers":[{"string":"#% повышение глобального шанса критического удара за уровень"},{"string":"#% снижение глобального шанса критического удара за уровень","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3081076859"]}}} +{"ref":"#% increased Global Critical Strike Chance when in Main Hand","better":1,"matchers":[{"string":"#% повышение глобального шанса критического удара, если в правой руке"}],"trade":{"ids":{"explicit":["explicit.stat_3404168630"]}}} +{"ref":"#% increased Global Damage","better":1,"matchers":[{"string":"#% увеличение глобального урона"},{"string":"#% уменьшение глобального урона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_819529588"]}}} +{"ref":"#% increased Global Defences","better":1,"matchers":[{"string":"#% повышение глобальной защиты"},{"string":"#% снижение глобальной защиты","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1389153006"],"implicit":["implicit.stat_1389153006"],"fractured":["fractured.stat_1389153006"],"scourge":["scourge.stat_1389153006"]}}} +{"ref":"#% increased Global Defences per White Socket","better":1,"matchers":[{"string":"#% повышение глобальной защиты за белое гнездо"},{"string":"#% снижение глобальной защиты за белое гнездо","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_967108924"]}}} +{"ref":"#% increased Global Evasion Rating when on Full Life","better":1,"matchers":[{"string":"#% увеличение глобального уклонения при полном здоровье"},{"string":"#% уменьшение глобального уклонения при полном здоровье","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_88817332"]}}} +{"ref":"#% increased Global Evasion Rating when on Low Life","better":1,"matchers":[{"string":"#% увеличение глобального уклонения при малом количестве здоровья"},{"string":"#% уменьшение глобального уклонения при малом количестве здоровья","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2695354435"]}}} +{"ref":"#% increased Global maximum Energy Shield and reduced Lightning Resistance","better":1,"matchers":[{"string":"#% увеличение глобального максимума энергетического щита и уменьшение сопротивления молнии"},{"string":"#% уменьшение глобального максимума энергетического щита и увеличение сопротивления молнии","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1381972535"]}}} +{"ref":"#% increased Global Physical Damage","better":1,"matchers":[{"string":"#% увеличение глобального физического урона"},{"string":"#% уменьшение глобального физического урона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1310194496"],"implicit":["implicit.stat_1310194496"],"fractured":["fractured.stat_1310194496"],"scourge":["scourge.stat_1310194496"],"crafted":["crafted.stat_1310194496"]}}} +{"ref":"#% increased Global Physical Damage while Frozen","better":1,"matchers":[{"string":"#% увеличение глобального физического урона пока вы заморожены"},{"string":"#% уменьшение глобального физического урона пока вы заморожены","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2614654450"]}}} +{"ref":"#% increased Global Physical Damage with Weapons per Red Socket","better":1,"matchers":[{"string":"#% увеличение глобального физического урона оружием за каждое красное гнездо"}],"trade":{"ids":{"explicit":["explicit.stat_2112615899"]}}} +{"ref":"#% increased Golem Damage for each Type of Golem you have Summoned","better":1,"matchers":[{"string":"#% увеличение урона големов за каждый тип призванных вами големов"},{"string":"#% уменьшение урона големов за каждый тип призванных вами големов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2114157293"]}}} +{"ref":"#% increased Ground Slam Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Сотрясения"},{"string":"#% уменьшение области действия Сотрясения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3061969105"]}}} +{"ref":"#% increased Ground Slam Damage","better":1,"matchers":[{"string":"#% увеличение урона Сотрясения"},{"string":"#% уменьшение урона Сотрясения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_108883700"]}}} +{"ref":"#% increased Heavy Strike Attack Speed","better":1,"matchers":[{"string":"#% повышение скорости атаки Тяжелого удара"},{"string":"#% снижение скорости атаки Тяжелого удара","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_343849491"]}}} +{"ref":"#% increased Heavy Strike Damage","better":1,"matchers":[{"string":"#% увеличение урона Тяжелого удара"},{"string":"#% уменьшение урона Тяжелого удара","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_954135826"]}}} +{"ref":"#% increased Herald of Ash Damage","better":1,"matchers":[{"string":"#% увеличение урона Вестника пепла"},{"string":"#% уменьшение урона Вестника пепла","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_767884542"]}}} +{"ref":"#% increased Herald of Ice Damage","better":1,"matchers":[{"string":"#% увеличение урона Вестника льда"},{"string":"#% уменьшение урона Вестника льда","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3910961021"],"enchant":["enchant.stat_3910961021"]}}} +{"ref":"#% increased Herald of Thunder Damage","better":1,"matchers":[{"string":"#% увеличение урона Вестника грома"},{"string":"#% уменьшение урона Вестника грома","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_558298545"]}}} +{"ref":"#% increased Hiring Fee for Agility Jobs","better":-1,"matchers":[{"string":"#% повышение стоимости найма для навыка Проворство"},{"string":"#% снижение стоимости найма для навыка Проворство","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2164793549"],"fractured":["fractured.stat_2164793549"]}}} +{"ref":"#% increased Hiring Fee for Brute Force Jobs","better":-1,"matchers":[{"string":"#% повышение стоимости найма для навыка Грубая сила"},{"string":"#% снижение стоимости найма для навыка Грубая сила","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1018753640"],"fractured":["fractured.stat_1018753640"]}}} +{"ref":"#% increased Hiring Fee for Counter-Thaumaturgy Jobs","better":-1,"matchers":[{"string":"#% повышение стоимости найма для навыка Контрмагия"},{"string":"#% снижение стоимости найма для навыка Контрмагия","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3063943261"],"fractured":["fractured.stat_3063943261"]}}} +{"ref":"#% increased Hiring Fee for Deception Jobs","better":-1,"matchers":[{"string":"#% повышение стоимости найма для навыка Маскировка"},{"string":"#% снижение стоимости найма для навыка Маскировка","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2506681313"],"fractured":["fractured.stat_2506681313"]}}} +{"ref":"#% increased Hiring Fee for Demolition Jobs","better":-1,"matchers":[{"string":"#% повышение стоимости найма для навыка Взрывное дело"},{"string":"#% снижение стоимости найма для навыка Взрывное дело","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3680061663"],"fractured":["fractured.stat_3680061663"]}}} +{"ref":"#% increased Hiring Fee for Engineering Jobs","better":-1,"matchers":[{"string":"#% повышение стоимости найма для навыка Инженерное дело"},{"string":"#% снижение стоимости найма для навыка Инженерное дело","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2956083810"],"fractured":["fractured.stat_2956083810"]}}} +{"ref":"#% increased Hiring Fee for Lockpicking Jobs","better":-1,"matchers":[{"string":"#% повышение стоимости найма для навыка Взлом"},{"string":"#% снижение стоимости найма для навыка Взлом","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3391299828"],"fractured":["fractured.stat_3391299828"]}}} +{"ref":"#% increased Hiring Fee for Perception Jobs","better":-1,"matchers":[{"string":"#% повышение стоимости найма для навыка Восприятие"},{"string":"#% снижение стоимости найма для навыка Восприятие","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2885031631"],"fractured":["fractured.stat_2885031631"]}}} +{"ref":"#% increased Hiring Fee for Trap Disarmament Jobs","better":-1,"matchers":[{"string":"#% повышение стоимости найма для навыка Разминирование"},{"string":"#% снижение стоимости найма для навыка Разминирование","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2872715880"],"fractured":["fractured.stat_2872715880"]}}} +{"ref":"#% increased Hiring Fee of Rogues","better":-1,"matchers":[{"string":"#% повышение стоимости найма наёмников"},{"string":"#% увеличение стоимости найма"},{"string":"#% снижение стоимости найма наёмников","negate":true},{"string":"#% уменьшение стоимости найма","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2257592286"],"fractured":["fractured.stat_2257592286"]}}} +{"ref":"#% increased Ice Crash Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Ледяного сокрушения"},{"string":"#% уменьшение области действия Ледяного сокрушения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3930497977"]}}} +{"ref":"#% increased Ice Crash Damage","better":1,"matchers":[{"string":"#% увеличение урона Ледяного сокрушения"},{"string":"#% уменьшение урона Ледяного сокрушения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1794090421"]}}} +{"ref":"#% increased Ice Nova Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Кольца льда"},{"string":"#% уменьшение области действия Кольца льда","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_68809719"]}}} +{"ref":"#% increased Ice Nova Damage","better":1,"matchers":[{"string":"#% увеличение урона Кольца льда"},{"string":"#% уменьшение урона Кольца льда","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1086309398"]}}} +{"ref":"#% increased Ice Shot Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Ледяного выстрела"},{"string":"#% уменьшение области действия Ледяного выстрела","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1962401751"]}}} +{"ref":"#% increased Ice Shot Damage","better":1,"matchers":[{"string":"#% увеличение урона Ледяного выстрела"},{"string":"#% уменьшение урона Ледяного выстрела","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3026752303"]}}} +{"ref":"#% increased Ice Spear Critical Strike Chance in second form","better":1,"matchers":[{"string":"#% повышение шанса критического удара Ледяного копья во второй форме"},{"string":"#% снижение шанса критического удара Ледяного копья во второй форме","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3510848926"]}}} +{"ref":"#% increased Ice Trap Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Ледяной ловушки"},{"string":"#% уменьшение области действия Ледяной ловушки","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3367298564"]}}} +{"ref":"#% increased Ice Trap Damage","better":1,"matchers":[{"string":"#% увеличение урона Ледяной ловушки"},{"string":"#% уменьшение урона Ледяной ловушки","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4224384031"]}}} +{"ref":"#% increased Ignite Duration on Enemies","better":1,"matchers":[{"string":"#% увеличение длительности поджога на врагах"},{"string":"#% уменьшение длительности поджога на врагах","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1086147743"],"implicit":["implicit.stat_1086147743"],"fractured":["fractured.stat_1086147743"],"crafted":["crafted.stat_1086147743"]}}} +{"ref":"#% increased Immortal Call Duration","better":1,"matchers":[{"string":"#% увеличение длительности Призыва к бессмертию"},{"string":"#% уменьшение длительности Призыва к бессмертию","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1336543283"]}}} +{"ref":"#% increased Impale Effect","better":1,"matchers":[{"string":"#% усиление эффекта Прокола"},{"string":"#% ослабление эффекта Прокола","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_298173317"],"fractured":["fractured.stat_298173317"],"scourge":["scourge.stat_298173317"]}}} +{"ref":"#% increased Incinerate Damage","better":1,"matchers":[{"string":"#% увеличение урона Испепеления"},{"string":"#% уменьшение урона Испепеления","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2246425134"]}}} +{"ref":"#% increased Incinerate Damage for each stage","better":1,"matchers":[{"string":"#% увеличение урона Испепеления за каждую стадию"},{"string":"#% уменьшение урона Испепеления за каждую стадию","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4151555126"]}}} +{"ref":"#% increased Infernal Blow Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Удара преисподней"},{"string":"#% уменьшение области действия Удара преисподней","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4031295671"]}}} +{"ref":"#% increased Infernal Blow Damage","better":1,"matchers":[{"string":"#% увеличение урона Удара преисподней"},{"string":"#% уменьшение урона Удара преисподней","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_242838571"]}}} +{"ref":"#% increased Intelligence","better":1,"matchers":[{"string":"#% повышение интеллекта"},{"string":"#% снижение интеллекта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_656461285"],"implicit":["implicit.stat_656461285"],"fractured":["fractured.stat_656461285"],"scourge":["scourge.stat_656461285"]}}} +{"ref":"#% increased Intelligence for each Unique Item Equipped","better":1,"matchers":[{"string":"#% увеличение интеллекта за каждый надетый уникальный предмет"}],"trade":{"ids":{"explicit":["explicit.stat_4207939995"]}}} +{"ref":"#% increased Intelligence Requirement","better":1,"matchers":[{"string":"Нет требований к интеллекту","value":-100},{"string":"#% увеличение требований к интеллекту"},{"string":"#% снижение требований к интеллекту","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_18234720"]}}} +{"ref":"#% increased Intuitive Link Duration","better":1,"matchers":[{"string":"#% увеличение длительности Подсознательной связи"},{"string":"#% уменьшение длительности Подсознательной связи","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3545503197"]}}} +{"ref":"#% increased Item Quantity per White Socket","better":1,"matchers":[{"string":"#% увеличение количества выпадающих предметов за белое гнездо"}],"trade":{"ids":{"explicit":["explicit.stat_2340173293"]}}} +{"ref":"#% increased Item Rarity per White Socket","better":1,"matchers":[{"string":"#% повышение редкости предметов за каждое белое гнездо"}],"trade":{"ids":{"explicit":["explicit.stat_144675621"]}}} +{"ref":"#% increased Job Experience gain","better":1,"matchers":[{"string":"#% увеличение получаемого в делах опыта наёмников"},{"string":"#% уменьшение получаемого в делах опыта наёмников","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3569230441"],"fractured":["fractured.stat_3569230441"]}}} +{"ref":"#% increased Job speed","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"#% повышение скорости использования навыка"},{"string":"#% снижение скорости использования навыка","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2978905446"],"fractured":["fractured.stat_2978905446"]}}} +{"ref":"#% increased Kinetic Blast Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Кинетического взрыва"},{"string":"#% уменьшение области действия Кинетического взрыва","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1660758870"]}}} +{"ref":"#% increased Kinetic Blast Damage","better":1,"matchers":[{"string":"#% увеличение урона Кинетического взрыва"},{"string":"#% уменьшение урона Кинетического взрыва","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1007135105"]}}} +{"ref":"#% increased Knockback Distance","better":1,"matchers":[{"string":"#% увеличение дистанции отбрасывания"},{"string":"#% уменьшение дистанции отбрасывания","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_565784293"]}}} +{"ref":"#% increased Lacerate Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Разрубания"},{"string":"#% уменьшение области действия Разрубания","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3854723321"]}}} +{"ref":"#% increased Lacerate Critical Strike Chance","better":1,"matchers":[{"string":"#% повышение шанса критического удара Разрубания"},{"string":"#% снижение шанса критического удара Разрубания","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_578067404"]}}} +{"ref":"#% increased Lacerate Damage","better":1,"matchers":[{"string":"#% увеличение урона Разрубания"},{"string":"#% уменьшение урона Разрубания","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1844721010"]}}} +{"ref":"#% increased Leap Slam Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Наскока"},{"string":"#% уменьшение области действия Наскока","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3367800526"]}}} +{"ref":"#% increased Leap Slam Attack Speed","better":1,"matchers":[{"string":"#% повышение скорости атаки Наскока"},{"string":"#% снижение скорости атаки Наскока","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3730999759"]}}} +{"ref":"#% increased Leap Slam Damage","better":1,"matchers":[{"string":"#% увеличение урона Наскока"},{"string":"#% уменьшение урона Наскока","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3850775143"]}}} +{"ref":"#% increased Life Recovered","better":1,"matchers":[{"string":"#% увеличение восстанавливаемого здоровья"},{"string":"#% уменьшение восстанавливаемого здоровья","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1261982764"],"fractured":["fractured.stat_1261982764"]}}} +{"ref":"#% increased Life Recovery from Flasks","better":1,"matchers":[{"string":"#% увеличение восстановления здоровья от флаконов"},{"string":"#% уменьшение восстановления здоровья от флаконов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_821241191"],"implicit":["implicit.stat_821241191"],"scourge":["scourge.stat_821241191"]}}} +{"ref":"#% increased Life Recovery from Flasks while affected by Vitality","better":1,"matchers":[{"string":"#% увеличение восстановления здоровья от флаконов под действием Живучести"},{"string":"#% уменьшение восстановления здоровья от флаконов под действием Живучести","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_362838683"]}}} +{"ref":"#% increased Life Recovery rate","better":1,"matchers":[{"string":"#% повышение скорости восстановления здоровья"},{"string":"#% снижение скорости восстановления здоровья","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3240073117"],"implicit":["implicit.stat_3240073117"],"fractured":["fractured.stat_3240073117"],"scourge":["scourge.stat_3240073117"]}}} +{"ref":"#% increased Life Recovery Rate if you haven't Killed Recently","better":1,"matchers":[{"string":"#% повышение скорости восстановления здоровья если недавно вы не совершали убийство"},{"string":"#% снижение скорости восстановления здоровья если недавно вы не совершали убийство","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3353368340"]}}} +{"ref":"#% increased Life Recovery Rate per 10 Strength on Allocated Passives in Radius","better":1,"matchers":[{"string":"#% повышение скорости восстановления здоровья за 10 силы в выбранных пассивных умениях в радиусе"},{"string":"#% снижение скорости восстановления здоровья за 10 силы в выбранных пассивных умениях в радиусе","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_235105674"]}}} +{"ref":"#% increased Life Recovery Rate per 10 Strength on Unallocated Passives in Radius","better":1,"matchers":[{"string":"#% повышение скорости восстановления здоровья за 10 силы в невыбранных пассивных умениях в радиусе"},{"string":"#% снижение скорости восстановления здоровья за 10 силы в невыбранных пассивных умениях в радиусе","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4144221848"]}}} +{"ref":"#% increased Life Recovery Rate while affected by Vitality","better":1,"matchers":[{"string":"#% повышение скорости восстановления здоровья под действием Живучести"},{"string":"#% снижение скорости восстановления здоровья под действием Живучести","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2690790844"]}}} +{"ref":"#% increased Life Regeneration rate","better":1,"matchers":[{"string":"#% повышение скорости регенерации здоровья"},{"string":"#% снижение скорости регенерации здоровья","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_44972811"],"implicit":["implicit.stat_44972811"],"fractured":["fractured.stat_44972811"],"scourge":["scourge.stat_44972811"],"crafted":["crafted.stat_44972811"]}}} +{"ref":"#% increased Life Reservation Efficiency of Skills","better":1,"matchers":[{"string":"#% увеличение эффективности удержания здоровья умениями"},{"string":"#% уменьшение эффективности удержания здоровья умениями","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_635485889"],"fractured":["fractured.stat_635485889"]}}} +{"ref":"#% increased Light Radius","better":1,"matchers":[{"string":"#% увеличение радиуса обзора"},{"string":"#% уменьшение радиуса обзора","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1263695895"],"implicit":["implicit.stat_1263695895"],"fractured":["fractured.stat_1263695895"],"enchant":["enchant.stat_1263695895"],"scourge":["scourge.stat_1263695895"]}}} +{"ref":"#% increased Light Radius during Effect","better":1,"matchers":[{"string":"#% увеличение радиуса обзора во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_2745936267"]}}} +{"ref":"#% increased Lightning Arrow Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Стрелы молнии"},{"string":"#% уменьшение области действия Стрелы молнии","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4129421630"]}}} +{"ref":"#% increased Lightning Arrow Damage","better":1,"matchers":[{"string":"#% увеличение урона Стрелы молний"},{"string":"#% уменьшение урона Стрелы молний","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2896672990"]}}} +{"ref":"#% increased Lightning Damage","better":1,"matchers":[{"string":"#% увеличение урона от молнии"},{"string":"#% уменьшение урона от молнии","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_lightning_damage"],"explicit":["explicit.stat_2231156303"],"implicit":["implicit.stat_2231156303"],"fractured":["fractured.stat_2231156303"],"scourge":["scourge.stat_2231156303"],"crafted":["crafted.stat_2231156303"]}}} +{"ref":"#% increased Lightning Damage per 1% Lightning Resistance above 75%","better":1,"matchers":[{"string":"#% увеличение урона от молнии за каждый 1% сопротивления молнии свыше 75%"}],"trade":{"ids":{"explicit":["explicit.stat_2642525868"]}}} +{"ref":"#% increased Lightning Damage per 10 Intelligence","better":1,"matchers":[{"string":"#% увеличение урона от молнии за 10 интеллекта"},{"string":"#% уменьшение урона от молнии за 10 интеллекта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_990219738"]}}} +{"ref":"#% increased Lightning Damage per Frenzy Charge","better":1,"matchers":[{"string":"#% увеличение урона от молнии за заряд ярости"},{"string":"#% уменьшение урона от молнии за заряд ярости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3693130674"]}}} +{"ref":"#% increased Lightning Damage while affected by Herald of Thunder","better":1,"matchers":[{"string":"#% увеличение урона от молнии под действием Вестника грома"},{"string":"#% уменьшение урона от молнии под действием Вестника грома","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_536957"]}}} +{"ref":"#% increased Lightning Damage while affected by Wrath","better":1,"matchers":[{"string":"#% увеличение урона от молнии под действием Грозного гнева"},{"string":"#% уменьшение урона от молнии под действием Грозного гнева","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_418293304"]}}} +{"ref":"#% increased Lightning Damage with Attack Skills","better":1,"matchers":[{"string":"#% увеличение урона от молнии от умений атак"},{"string":"#% уменьшение урона от молнии от умений атак","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_lightning_damage_with_attack_skills"],"explicit":["explicit.stat_4208907162"],"implicit":["implicit.stat_4208907162"]}}} +{"ref":"#% increased Lightning Damage with Spell Skills","better":1,"matchers":[{"string":"#% увеличение урона от молнии умениями чар"},{"string":"#% уменьшение урона от молнии умениями чар","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3935031607"]}}} +{"ref":"#% increased Lightning Resistance","better":1,"matchers":[{"string":"#% повышение сопротивления молнии"},{"string":"#% снижение сопротивления молнии","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2249211872"]}}} +{"ref":"#% increased Lightning Spell Damage","better":1,"matchers":[{"string":"#% увеличение урона от молнии чарами "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_lightning_spell_damage"]}}} +{"ref":"#% increased Lightning Spire Trap Throwing Speed","better":1,"matchers":[{"string":"#% повышение скорости броска Ловушки шпиля молний"},{"string":"#% снижение скорости броска Ловушки шпиля молний","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1978232370"]}}} +{"ref":"#% increased Lightning Strike Damage","better":1,"matchers":[{"string":"#% увеличение урона Удара молний"},{"string":"#% уменьшение урона Удара молний","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3630274354"]}}} +{"ref":"#% increased Lightning Tendrils Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Побегов молнии"},{"string":"#% уменьшение области действия Побегов молнии","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1230050013"]}}} +{"ref":"#% increased Lightning Tendrils Critical Strike Chance","better":1,"matchers":[{"string":"#% повышение шанса критического удара Побегов молний"},{"string":"#% снижение шанса критического удара Побегов молний","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_12756171"]}}} +{"ref":"#% increased Lightning Tendrils Damage","better":1,"matchers":[{"string":"#% увеличение урона Побегов молний"},{"string":"#% уменьшение урона Побегов молний","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_39356080"]}}} +{"ref":"#% increased Lightning Trap Damage","better":1,"matchers":[{"string":"Урон Ловушки молний увеличен на #%"},{"string":"Урон Ловушки молний уменьшен на #%","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3131492956"]}}} +{"ref":"#% increased Lightning Trap Lightning Ailment Effect","better":1,"matchers":[{"string":"#% усиление эффектов состояний молнии от Ловушки молний"},{"string":"#% ослабление эффектов состояний молнии от Ловушки молний","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4210927948"]}}} +{"ref":"#% increased Lightning Warp Cast Speed","better":1,"matchers":[{"string":"#% повышение скорости сотворения чар Грозового перехода"},{"string":"#% снижение скорости сотворения чар Грозового перехода","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1347575155"]}}} +{"ref":"#% increased Lightning Warp Damage","better":1,"matchers":[{"string":"#% увеличение урона Грозового перехода"},{"string":"#% уменьшение урона Грозового перехода","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_209345940"]}}} +{"ref":"#% increased Lockpicking Experience gained","better":1,"matchers":[{"string":"#% увеличение получаемого Взломом опыта"},{"string":"#% уменьшение получаемого Взломом опыта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2316712523"],"fractured":["fractured.stat_2316712523"]}}} +{"ref":"#% increased Lockpicking speed","better":1,"matchers":[{"string":"#% повышение скорости использования Взлома"},{"string":"#% снижение скорости использования Взлома","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3312732077"],"implicit":["implicit.stat_3312732077"],"fractured":["fractured.stat_3312732077"]}}} +{"ref":"#% increased Magic Monsters","better":1,"fromAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"#% увеличение количества волшебных монстров"}],"trade":{"ids":{"explicit":["explicit.stat_3873704640"],"fractured":["fractured.stat_3873704640"]}}} +{"ref":"#% increased Main Hand Critical Strike Chance per\nMurderous Eye Jewel affecting you, up to a maximum of 200%","better":1,"matchers":[{"string":"#% увеличение шанса критического удара оружием в правой руке за каждый\nдействующий на вас самоцвет кровожадного глаза, вплоть до максимума в 200%"},{"string":"#% уменьшение шанса критического удара оружием в правой руке за каждый\nдействующий на вас самоцвет кровожадного глаза, вплоть до максимума в 200%"}],"trade":{"ids":{"explicit":["explicit.stat_3454830051"]}}} +{"ref":"#% increased Mana Cost of Skills during Effect","better":-1,"matchers":[{"string":"#% повышение затрат маны умениями во время действия эффекта"},{"string":"#% снижение затрат маны умениями во время действия эффекта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_683273571"],"fractured":["fractured.stat_683273571"],"crafted":["crafted.stat_683273571"]}}} +{"ref":"#% increased Mana Recovered","better":1,"matchers":[{"string":"#% увеличение восстанавливаемой маны"},{"string":"#% уменьшение восстанавливаемой маны","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1811130680"],"fractured":["fractured.stat_1811130680"]}}} +{"ref":"#% increased Mana Recovery from Flasks","better":1,"matchers":[{"string":"#% увеличение восстановления маны от флаконов"},{"string":"#% уменьшение восстановления маны от флаконов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2222186378"],"scourge":["scourge.stat_2222186378"]}}} +{"ref":"#% increased Mana Recovery rate","better":1,"matchers":[{"string":"#% повышение скорости восстановления маны"},{"string":"#% снижение скорости восстановления маны","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3513180117"],"implicit":["implicit.stat_3513180117"],"fractured":["fractured.stat_3513180117"],"scourge":["scourge.stat_3513180117"]}}} +{"ref":"#% increased Mana Recovery Rate if you haven't Killed Recently","better":1,"matchers":[{"string":"#% повышение скорости восстановления маны если недавно вы не совершали убийство"},{"string":"#% снижение скорости восстановления маны если недавно вы не совершали убийство","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_630994130"]}}} +{"ref":"#% increased Mana Recovery Rate per 10 Intelligence on Allocated Passives in Radius","better":1,"matchers":[{"string":"#% повышение скорости восстановления маны за 10 интеллекта в выбранных пассивных умениях в радиусе"},{"string":"#% снижение скорости восстановления маны за 10 интеллекта в выбранных пассивных умениях в радиусе","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_514215387"]}}} +{"ref":"#% increased Mana Recovery Rate per 10 Intelligence on Unallocated Passives in Radius","better":1,"matchers":[{"string":"#% повышение скорости восстановления маны за 10 интеллекта в невыбранных пассивных умениях в радиусе"},{"string":"#% снижение скорости восстановления маны за 10 интеллекта в невыбранных пассивных умениях в радиусе","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1439347620"]}}} +{"ref":"#% increased Mana Recovery Rate while affected by Clarity","better":1,"matchers":[{"string":"#% повышение скорости восстановления маны под действием Ясности ума"},{"string":"#% снижение скорости восстановления маны под действием Ясности ума","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_556659145"]}}} +{"ref":"#% increased Mana Regeneration Rate","better":1,"matchers":[{"string":"#% повышение скорости регенерации маны"},{"string":"#% снижение скорости регенерации маны","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_mana_regen"],"explicit":["explicit.stat_789117908"],"implicit":["implicit.stat_789117908"],"fractured":["fractured.stat_789117908"],"scourge":["scourge.stat_789117908"],"crafted":["crafted.stat_789117908"]}}} +{"ref":"#% increased Mana Regeneration Rate during any Flask Effect","better":1,"matchers":[{"string":"#% повышение скорости регенерации маны во время действия эффекта любого флакона"},{"string":"#% снижение скорости регенерации маны во время действия эффекта любого флакона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2993091567"]}}} +{"ref":"#% increased Mana Regeneration Rate if you've cast a Spell Recently","better":1,"matchers":[{"string":"#% повышение скорости регенерации маны, если вы недавно сотворяли чары"},{"string":"#% снижение скорости регенерации маны, если вы недавно сотворяли чары","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1409388882"]}}} +{"ref":"#% increased Mana Regeneration Rate per Power Charge","better":1,"matchers":[{"string":"#% повышение скорости регенерации маны за заряд энергии"},{"string":"#% снижение скорости регенерации маны за заряд энергии","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2847548062"],"implicit":["implicit.stat_2847548062"]}}} +{"ref":"#% increased Mana Regeneration Rate per Raised Spectre","better":1,"matchers":[{"string":"#% повышение скорости регенерации маны за каждого сотворенного призрака"},{"string":"#% снижение скорости регенерации маны за каждого сотворенного призрака","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2666795121"]}}} +{"ref":"#% increased Mana Regeneration Rate while moving","better":1,"matchers":[{"string":"#% повышение скорости регенерации маны во время передвижения"},{"string":"#% снижение скорости регенерации маны во время передвижения","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1327522346"],"fractured":["fractured.stat_1327522346"]}}} +{"ref":"#% increased Mana Regeneration Rate while Shocked","better":1,"matchers":[{"string":"#% повышение скорости регенерации маны под действием шока"},{"string":"#% снижение скорости регенерации маны под действием шока","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2076519255"],"fractured":["fractured.stat_2076519255"]}}} +{"ref":"#% increased Mana Regeneration Rate while stationary","better":1,"matchers":[{"string":"#% повышение скорости регенерации маны при нахождении на одном месте"},{"string":"#% снижение скорости регенерации маны при нахождении на одном месте"}],"trade":{"ids":{"explicit":["explicit.stat_3308030688"]}}} +{"ref":"#% increased Mana Reservation Efficiency of Curse Aura Skills","better":1,"matchers":[{"string":"#% увеличение эффективности удержания маны аурами-проклятьями"},{"string":"#% уменьшение эффективности удержания маны аурами-проклятьями","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_443165947","explicit.stat_714566414"]}}} +{"ref":"#% increased Mana Reservation Efficiency of Herald Skills","better":1,"matchers":[{"string":"#% увеличение эффективности удержания маны Вестниками"},{"string":"#% уменьшение эффективности удержания маны Вестниками","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3078295401"]}}} +{"ref":"#% increased Mana Reservation Efficiency of Skills","better":1,"matchers":[{"string":"#% увеличение эффективности удержания маны умениями"},{"string":"#% уменьшение эффективности удержания маны умениями","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1269219558","explicit.stat_4237190083"],"implicit":["implicit.stat_1269219558","implicit.stat_4237190083"],"fractured":["fractured.stat_1269219558","fractured.stat_4237190083"],"scourge":["scourge.stat_1269219558","scourge.stat_4237190083"]}}} +{"ref":"#% increased Mana Reservation Efficiency of Skills per 250 total Attributes","better":1,"matchers":[{"string":"#% увеличение эффективности удержания маны умениями за каждые 250 суммы характеристик"},{"string":"#% уменьшение эффективности удержания маны умениями за каждые 250 суммы характеристик","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1212083058","explicit.stat_2676451350"]}}} +{"ref":"#% increased Mana Reservation Efficiency of Skills Supported by Spellslinger","better":1,"matchers":[{"string":"#% увеличение эффективности удержания маны умениями, усиленными Чароплётом"},{"string":"#% уменьшение эффективности удержания маны умениями, усиленными Чароплётом","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1341061286","enchant.stat_3305838454"]}}} +{"ref":"#% increased Manabond Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Уз маны"},{"string":"#% уменьшение области действия Уз маны","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_441455463"]}}} +{"ref":"#% increased Manabond Damage","better":1,"matchers":[{"string":"#% увеличение урона Уз маны"},{"string":"#% уменьшение урона Уз маны","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1609869231"]}}} +{"ref":"#% increased maximum Energy Shield","better":1,"matchers":[{"string":"#% увеличение максимума энергетического щита"},{"string":"#% уменьшение максимума энергетического щита","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2482852589"],"implicit":["implicit.stat_2482852589"],"fractured":["fractured.stat_2482852589"],"crafted":["crafted.stat_2482852589"]}}} +{"ref":"#% increased Maximum Energy Shield for each Corrupted Item Equipped","better":1,"matchers":[{"string":"#% увеличение максимума энергетического щита за каждый надетый оскверненный предмет"},{"string":"#% уменьшение максимума энергетического щита за каждый надетый оскверненный предмет","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3916980068"]}}} +{"ref":"#% increased Maximum Energy Shield from Equipped Gloves and Boots","better":1,"matchers":[{"string":"#% увеличение максимума энергетического щита, полученного от перчаток и сапог"},{"string":"#% уменьшение максимума энергетического щита, полученного от перчаток и сапог","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1234687045"]}}} +{"ref":"#% increased maximum Energy Shield if Corrupted","better":1,"matchers":[{"string":"#% увеличение максимума энергетического щита, если предмет осквернён"},{"string":"#% уменьшение максимума энергетического щита, если предмет осквернён","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1025108940"]}}} +{"ref":"#% increased maximum Life","better":1,"matchers":[{"string":"#% увеличение максимума здоровья"},{"string":"#% уменьшение максимума здоровья","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_983749596"],"implicit":["implicit.stat_983749596"],"fractured":["fractured.stat_983749596"],"scourge":["scourge.stat_983749596"],"crafted":["crafted.stat_983749596"]}}} +{"ref":"#% increased maximum Life and reduced Fire Resistance","better":1,"matchers":[{"string":"#% увеличение максимума здоровья и уменьшение сопротивления огню"},{"string":"#% уменьшение максимума здоровья и увеличение сопротивления огню","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3018691556"]}}} +{"ref":"#% increased Maximum Life for each Corrupted Item Equipped","better":1,"matchers":[{"string":"#% увеличение максимума здоровья за каждый надетый осквернённый предмет"},{"string":"#% уменьшение максимума здоровья за каждый надетый осквернённый предмет","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4169430079"]}}} +{"ref":"#% increased maximum Life if Corrupted","better":1,"matchers":[{"string":"#% увеличение максимума здоровья, если предмет осквернён"},{"string":"#% уменьшение максимума здоровья, если предмет осквернён","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3887484120"]}}} +{"ref":"#% increased Maximum Life if no Equipped Items are Corrupted","better":1,"matchers":[{"string":"#% увеличение максимума здоровья, если ни один из надетых предметов не осквернен"}],"trade":{"ids":{"explicit":["explicit.stat_2217962305"]}}} +{"ref":"#% increased Maximum Life per Abyss Jewel affecting you","better":1,"matchers":[{"string":"#% увеличение максимума здоровья за каждый действующий на вас самоцвет Бездны"},{"string":"#% уменьшение максимума здоровья за каждый действующий на вас самоцвет Бездны","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3185671537"]}}} +{"ref":"#% increased Maximum Life per Grand Spectrum","better":1,"matchers":[{"string":"#% увеличение максимума здоровья за каждый Великий образ"},{"string":"#% уменьшение максимума здоровья за каждый Великий образ","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_332217711"]}}} +{"ref":"#% increased maximum Life, Mana and Global Energy Shield","better":1,"matchers":[{"string":"#% увеличение максимума здоровья, маны и глобального энергетического щита"},{"string":"#% уменьшение максимума здоровья, маны и глобального энергетического щита","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3899352861"]}}} +{"ref":"#% increased maximum Mana","better":1,"matchers":[{"string":"#% увеличение максимума маны"},{"string":"#% уменьшение максимума маны","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2748665614"],"implicit":["implicit.stat_2748665614"],"fractured":["fractured.stat_2748665614"],"scourge":["scourge.stat_2748665614"],"crafted":["crafted.stat_2748665614"]}}} +{"ref":"#% increased maximum Mana and reduced Cold Resistance","better":1,"matchers":[{"string":"#% увеличение максимума маны и уменьшение сопротивления холоду"},{"string":"#% уменьшение максимума маны и увеличение сопротивления холоду","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1156957589"]}}} +{"ref":"#% increased Maximum Mana per Abyss Jewel affecting you","better":1,"matchers":[{"string":"#% увеличение максимума маны за каждый действующий на вас самоцвет Бездны"},{"string":"#% уменьшение максимума маны за каждый действующий на вас самоцвет Бездны","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2135370196"]}}} +{"ref":"#% increased Maximum Recovery per Energy Shield Leech","better":1,"matchers":[{"string":"#% увеличение максимального восстановления за эффект похищения энергетического щита"},{"string":"#% уменьшение максимального восстановления за эффект похищения энергетического щита","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3589396689"]}}} +{"ref":"#% increased Maximum Recovery per Life Leech","better":1,"matchers":[{"string":"#% увеличение максимального восстановления за эффект похищения здоровья"},{"string":"#% уменьшение максимального восстановления за эффект похищения здоровья","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3101897388"]}}} +{"ref":"#% increased Maximum Resolve","better":1,"matchers":[{"string":"#% увеличение максимума решимости"},{"string":"#% уменьшение максимума решимости","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_3866860190"]}}} +{"ref":"#% increased Maximum total Energy Shield Recovery per second from Leech","better":1,"matchers":[{"string":"#% увеличение максимального итогового восстановления энергетического щита в секунду от похищения"},{"string":"#% уменьшение максимального итогового восстановления энергетического щита в секунду от похищения","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2013799819"],"implicit":["implicit.stat_2013799819"],"fractured":["fractured.stat_2013799819"]}}} +{"ref":"#% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry","better":1,"matchers":[{"string":"#% увеличение максимального итогового восстановления энергетического щита в секунду от похищения под действием Фанатизма"},{"string":"#% уменьшение максимального итогового восстановления энергетического щита в секунду от похищения под действием Фанатизма","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2731416566","explicit.stat_3848992177"]}}} +{"ref":"#% increased Maximum total Life Recovery per second from Leech","better":1,"matchers":[{"string":"#% увеличение максимального итогового восстановления здоровья в секунду от похищения"},{"string":"#% уменьшение максимального итогового восстановления здоровья в секунду от похищения","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2916634441","explicit.stat_4118987751"],"implicit":["implicit.stat_4118987751"],"fractured":["fractured.stat_4118987751"]}}} +{"ref":"#% increased Maximum total Mana Recovery per second from Leech","better":1,"matchers":[{"string":"#% увеличение максимального итогового восстановления маны в секунду от похищения"},{"string":"#% уменьшение максимального итогового восстановления маны в секунду от похищения","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_96977651"],"implicit":["implicit.stat_96977651"]}}} +{"ref":"#% increased Melee Critical Strike Chance","better":1,"matchers":[{"string":"#% повышение шанса критического удара в ближнем бою"},{"string":"#% снижение шанса критического удара в ближнем бою","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1199429645"],"fractured":["fractured.stat_1199429645"]}}} +{"ref":"#% increased Melee Damage","better":1,"matchers":[{"string":"#% увеличение урона в ближнем бою"},{"string":"#% уменьшение урона в ближнем бою","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1002362373"],"implicit":["implicit.stat_1002362373"],"fractured":["fractured.stat_1002362373"],"crafted":["crafted.stat_1002362373"]}}} +{"ref":"#% increased Melee Damage against Bleeding Enemies","better":1,"matchers":[{"string":"#% увеличение урона в ближнем бою по истекающим кровью врагам"},{"string":"#% уменьшение урона в ближнем бою по истекающим кровью врагам","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1282978314"]}}} +{"ref":"#% increased Melee Damage during any Flask Effect","better":1,"matchers":[{"string":"#% увеличение урона в ближнем бою во время действия эффекта любого флакона"},{"string":"#% уменьшение урона в ближнем бою во время действия эффекта любого флакона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4091369450"],"fractured":["fractured.stat_4091369450"]}}} +{"ref":"#% increased Melee Damage per Endurance Charge","better":1,"matchers":[{"string":"#% увеличение урона в ближнем бою за заряд выносливости"},{"string":"#% уменьшение урона в ближнем бою за заряд выносливости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1275066948"]}}} +{"ref":"#% increased Melee Damage when on Full Life","better":1,"matchers":[{"string":"#% увеличение урона в ближнем бою при полном здоровье"},{"string":"#% уменьшение урона в ближнем бою при полном здоровье","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3579807004"]}}} +{"ref":"#% increased Melee Physical Damage against Ignited Enemies","better":1,"matchers":[{"string":"#% увеличение физического урона в ближнем бою по подожжённым врагам"},{"string":"#% уменьшение физического урона в ближнем бою по подожжённым врагам","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1332534089"]}}} +{"ref":"#% increased Melee Physical Damage per 10 Dexterity","better":1,"matchers":[{"string":"#% увеличение физического урона в ближнем бою за каждые 10 ловкости"}],"trade":{"ids":{"explicit":["explicit.stat_2355151849"]}}} +{"ref":"#% increased Melee Weapon Attack Speed","better":1,"matchers":[{"string":"#% повышение скорости атаки оружия ближнего боя"},{"string":"#% снижение скорости атаки оружия ближнего боя","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2038105340"]}}} +{"ref":"#% increased Melee Weapon Damage against Enemies that are on Low Life","better":1,"matchers":[{"string":"#% увеличение урона оружием ближнего боя по врагам с малым количеством здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_259714394"]}}} +{"ref":"#% increased Merchant Prices","better":1,"matchers":[{"string":"#% повышение цен у торговца"},{"string":"#% снижение цен у торговца","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_3096446459"]}}} +{"ref":"#% increased Mine Damage","better":1,"matchers":[{"string":"#% увеличение урона от мин"},{"string":"#% уменьшение урона от мин","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2137912951"],"fractured":["fractured.stat_2137912951"],"crafted":["crafted.stat_2137912951"]}}} +{"ref":"#% increased Mine Duration","better":1,"matchers":[{"string":"#% увеличение времени существования мины"},{"string":"#% снижение времени существования мины","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_117667746"],"fractured":["fractured.stat_117667746"]}}} +{"ref":"#% increased Mine Throwing Speed","better":1,"matchers":[{"string":"#% повышение скорости броска мины"},{"string":"#% снижение скорости броска мины","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1896971621"],"implicit":["implicit.stat_1896971621"],"fractured":["fractured.stat_1896971621"],"scourge":["scourge.stat_1896971621"],"crafted":["crafted.stat_1896971621"]}}} +{"ref":"#% increased Minion Accuracy Rating","better":1,"matchers":[{"string":"#% повышение меткости приспешников"},{"string":"#% снижение меткости приспешников","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1718147982"],"implicit":["implicit.stat_1718147982"],"fractured":["fractured.stat_1718147982"]}}} +{"ref":"#% increased Minion Attack and Cast Speed per 10 Devotion","better":1,"matchers":[{"string":"#% повышение скорости атаки и сотворения чар приспешниками за каждые 10 набожности"},{"string":"#% снижение скорости атаки и сотворения чар приспешниками за каждые 10 набожности","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3808469650"]}}} +{"ref":"#% increased Minion Attack and Cast Speed per Skeleton you own","better":1,"matchers":[{"string":"#% повышение скорости атаки и сотворения чар приспешников за каждого подконтрольного скелета"},{"string":"#% снижение скорости атаки и сотворения чар приспешников за каждого подконтрольного скелета","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_729367217"]}}} +{"ref":"#% increased Minion Attack Speed per 50 Dexterity","better":1,"matchers":[{"string":"#% повышение скорости атаки приспешников за каждые 50 ловкости"},{"string":"#% снижение скорости атаки приспешников за каждые 50 ловкости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4047895119"]}}} +{"ref":"#% increased Minion Damage per Raised Spectre","better":1,"matchers":[{"string":"#% увеличение урона приспешников за каждого подконтрольного призрака"},{"string":"#% уменьшение урона приспешников за каждого подконтрольного призрака","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3191537057"]}}} +{"ref":"#% increased Minion Duration","better":1,"matchers":[{"string":"#% увеличение времени существования приспешников"},{"string":"#% уменьшение времени существования приспешников","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_999511066"],"fractured":["fractured.stat_999511066"]}}} +{"ref":"#% increased Minion Duration per Raised Zombie","better":1,"matchers":[{"string":"#% увеличение времени существования приспешников за каждого поднятого зомби"},{"string":"#% уменьшение времени существования приспешников за каждого поднятого зомби","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_777246604"]}}} +{"ref":"#% increased Minion Movement Speed per 50 Dexterity","better":1,"matchers":[{"string":"#% повышение скорости передвижения приспешников за каждые 50 ловкости"},{"string":"#% снижение скорости передвижения приспешников за каждые 50 ловкости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4017879067"]}}} +{"ref":"#% increased Mirage Archer Duration","better":1,"matchers":[{"string":"#% увеличение длительности Призрачного лучника"},{"string":"#% уменьшение длительности Призрачного лучника","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3663580344"]}}} +{"ref":"#% increased Molten Strike Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Магмового удара"},{"string":"#% уменьшение области действия Магмового удара","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2524620107"]}}} +{"ref":"#% increased Molten Strike Damage","better":1,"matchers":[{"string":"#% увеличение урона Магмового удара"},{"string":"#% уменьшение урона Магмового удара","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2038865857"]}}} +{"ref":"#% increased Monster Attack Speed","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"#% повышение скорости атаки монстров"}],"trade":{"ids":{"explicit":["explicit.stat_1913583994"],"fractured":["fractured.stat_1913583994"]}}} +{"ref":"#% increased Monster Cast Speed","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"#% повышение скорости сотворения чар монстров"}],"trade":{"ids":{"explicit":["explicit.stat_2488361432"],"fractured":["fractured.stat_2488361432"]}}} +{"ref":"#% increased Monster Damage","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"#% увеличение урона монстров"}],"trade":{"ids":{"explicit":["explicit.stat_1890519597"],"fractured":["fractured.stat_1890519597"]}}} +{"ref":"#% increased Monster Movement Speed","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"#% повышение скорости передвижения монстров"},{"string":"#% снижение скорости передвижения монстров","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2306522833"],"implicit":["implicit.stat_2306522833"],"fractured":["fractured.stat_2306522833"],"enchant":["enchant.stat_2306522833"]}}} +{"ref":"#% increased Movement Speed","better":1,"matchers":[{"string":"#% повышение скорости передвижения"},{"string":"#% снижение скорости передвижения","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_movement_speed"],"explicit":["explicit.stat_2250533757"],"implicit":["implicit.stat_2250533757"],"fractured":["fractured.stat_2250533757"],"enchant":["enchant.stat_2250533757"],"scourge":["scourge.stat_2250533757"],"crafted":["crafted.stat_2250533757"]}}} +{"ref":"#% increased Movement Speed during any Flask Effect","better":1,"matchers":[{"string":"#% повышение скорости передвижения во время действия эффекта любого флакона"},{"string":"#% снижение скорости передвижения во время действия эффекта любого флакона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_304970526"],"implicit":["implicit.stat_304970526"],"fractured":["fractured.stat_304970526"]}}} +{"ref":"#% increased Movement Speed during Effect","better":1,"matchers":[{"string":"#% повышение скорости передвижения во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_3182498570"],"fractured":["fractured.stat_3182498570"],"crafted":["crafted.stat_3182498570"]}}} +{"ref":"#% increased Movement Speed for # seconds on Throwing a Trap","better":1,"matchers":[{"string":"#% повышение скорости передвижения на # секунд(-ы) при броске ловушки"}],"trade":{"ids":{"explicit":["explicit.stat_3102860761"]}}} +{"ref":"#% increased Movement Speed for each Poison on you up to a maximum of 50%","better":1,"matchers":[{"string":"#% повышение скорости передвижения за каждый действующий на вас яд, вплоть до максимума в 50%"},{"string":"#% снижение скорости передвижения за каждый действующий на вас яд","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1360723495"]}}} +{"ref":"#% increased Movement Speed for you and nearby Allies","better":1,"matchers":[{"string":"#% повышение скорости передвижения у вас и ближайших союзников"},{"string":"#% снижение скорости передвижения у вас и ближайших союзников","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3410049114"]}}} +{"ref":"#% increased Movement Speed if Corrupted","better":1,"matchers":[{"string":"#% повышение скорости передвижения, если предмет осквернён"},{"string":"#% снижение скорости передвижения, если предмет осквернён","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2880601380"]}}} +{"ref":"#% increased Movement Speed if you have used a Vaal Skill Recently","better":1,"matchers":[{"string":"#% повышение скорости передвижения, если вы недавно использовали умение ваал"},{"string":"#% снижение скорости передвижения, если вы недавно использовали умение ваал","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1285172810"]}}} +{"ref":"#% increased Movement Speed if you haven't been Hit Recently","better":1,"matchers":[{"string":"#% повышение скорости передвижения, если недавно вы не получали ударов"},{"string":"#% снижение скорости передвижения, если недавно вы не получали ударов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1177358866","explicit.stat_308396001"],"fractured":["fractured.stat_1177358866","fractured.stat_308396001"],"enchant":["enchant.stat_308396001"],"crafted":["crafted.stat_1177358866"]}}} +{"ref":"#% increased Movement Speed if you haven't taken Damage Recently","better":1,"matchers":[{"string":"#% повышение скорости передвижения, если вы недавно не получали урон"},{"string":"#% снижение скорости передвижения, если вы недавно не получали урон","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3854949926"],"fractured":["fractured.stat_3854949926"]}}} +{"ref":"#% increased Movement Speed if you've Cast Dash recently","better":1,"matchers":[{"string":"#% повышение скорости передвижения, если недавно вы использовали Рывок"},{"string":"#% снижение скорости передвижения, если недавно вы использовали Рывок","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2659793306"]}}} +{"ref":"#% increased Movement Speed if you've Hit an Enemy Recently","better":1,"matchers":[{"string":"#% повышение скорости передвижения, если вы недавно наносили удар по врагу"},{"string":"#% снижение скорости передвижения, если вы недавно наносили удар по врагу","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3178542354"],"fractured":["fractured.stat_3178542354"]}}} +{"ref":"#% increased Movement Speed if you've Killed Recently","better":1,"matchers":[{"string":"#% повышение скорости передвижения, если недавно вы совершали убийство"},{"string":"#% снижение скорости передвижения, если недавно вы совершали убийство","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_279227559"],"fractured":["fractured.stat_279227559"]}}} +{"ref":"#% increased Movement Speed if you've Warcried Recently","better":1,"matchers":[{"string":"#% повышение скорости передвижения, если недавно вы применяли боевой клич"}],"trade":{"ids":{"explicit":["explicit.stat_2546417825"]}}} +{"ref":"#% increased Movement Speed on Shocked Ground","better":1,"matchers":[{"string":"#% повышение скорости передвижения на заряженной земле"}],"trade":{"ids":{"explicit":["explicit.stat_3678841229"]}}} +{"ref":"#% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius","better":1,"matchers":[{"string":"#% повышение скорости передвижения за каждые 10 ловкости на выбранных пассивных умениях в радиусе"},{"string":"#% снижение скорости передвижения за каждые 10 ловкости на выбранных пассивных умениях в радиусе","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1795365307"]}}} +{"ref":"#% increased Movement Speed per 10 Dexterity on Unallocated Passives in Radius","better":1,"matchers":[{"string":"#% повышение скорости передвижения за 10 ловкости в невыбранных пассивных умениях в радиусе"},{"string":"#% снижение скорости передвижения за 10 ловкости в невыбранных пассивных умениях в радиусе","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4169318921"]}}} +{"ref":"#% increased Movement Speed per Endurance Charge","better":1,"matchers":[{"string":"#% повышение скорости передвижения за заряд выносливости"},{"string":"#% снижение скорости передвижения за заряд выносливости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2116250000"]}}} +{"ref":"#% increased Movement Speed per Frenzy Charge","better":1,"matchers":[{"string":"#% повышение скорости передвижения за заряд ярости"}],"trade":{"ids":{"explicit":["explicit.stat_1541516339"],"fractured":["fractured.stat_1541516339"]}}} +{"ref":"#% increased Movement Speed per Power Charge","better":1,"matchers":[{"string":"#% повышение скорости передвижения за заряд энергии"},{"string":"#% снижение скорости передвижения за заряд энергии","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3774108776"]}}} +{"ref":"#% increased Movement Speed when on Full Life","better":1,"matchers":[{"string":"#% повышение скорости передвижения при полном здоровье"},{"string":"#% снижение скорости передвижения при полном здоровье","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3393547195"]}}} +{"ref":"#% increased Movement Speed when on Low Life","better":1,"matchers":[{"string":"#% повышение скорости передвижения при малом количестве здоровья"},{"string":"#% снижение скорости передвижения при малом количестве здоровья","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_649025131"]}}} +{"ref":"#% increased Movement Speed while affected by a Magic Abyss Jewel","better":1,"matchers":[{"string":"#% повышение скорости передвижения под действием волшебного самоцвета Бездны"},{"string":"#% снижение скорости передвижения под действием волшебного самоцвета Бездны","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3874817029"]}}} +{"ref":"#% increased Movement Speed while affected by Grace","better":1,"matchers":[{"string":"#% повышение скорости передвижения под действием Грации"},{"string":"#% снижение скорости передвижения под действием Грации","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3329402420"]}}} +{"ref":"#% increased Movement Speed while area is not in Lockdown\nPlayers have #% increased Movement Speed while area is not in Lockdown","better":1,"matchers":[{"string":"#% повышение скорости передвижения пока область не изолирована\nИгроки имеют #% повышение скорости передвижения пока область не изолирована"},{"string":"#% снижение скорости передвижения пока область не изолирована\nИгроки имеют #% снижение скорости передвижения пока область не изолирована","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_902577520"],"fractured":["fractured.stat_902577520"]}}} +{"ref":"#% increased Movement Speed while Bleeding","better":1,"matchers":[{"string":"#% повышение скорости передвижения во время кровотечения"},{"string":"#% снижение скорости передвижения во время кровотечения","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_696659555"]}}} +{"ref":"#% increased Movement Speed while Chilled","better":1,"matchers":[{"string":"#% повышение скорости передвижения пока вы охлаждены"},{"string":"#% снижение скорости передвижения пока вы охлаждены","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2203777380"]}}} +{"ref":"#% increased Movement Speed while Ignited","better":1,"matchers":[{"string":"#% повышение скорости передвижения, если подожжён"},{"string":"#% снижение скорости передвижения, если подожжён","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_581625445"]}}} +{"ref":"#% increased Movement speed while on Burning, Chilled or Shocked ground","better":1,"matchers":[{"string":"#% повышение скорости передвижения на горящей, замерзшей или заряженной земле"},{"string":"#% снижение скорости передвижения на горящей, замерзшей или заряженной земле","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1521863824"],"fractured":["fractured.stat_1521863824"]}}} +{"ref":"#% increased Movement Speed while on Full Energy Shield","better":1,"matchers":[{"string":"#% повышение скорости передвижения при полном энергетическом щите"},{"string":"#% снижение скорости передвижения при полном энергетическом щите","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2825197711"]}}} +{"ref":"#% increased Movement Speed while Phasing","better":1,"matchers":[{"string":"#% повышение скорости передвижения в Форме призрака"},{"string":"#% снижение скорости передвижения в Форме призрака","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3684879618"],"implicit":["implicit.stat_3684879618"]}}} +{"ref":"#% increased Movement Speed while Shocked","better":1,"matchers":[{"string":"#% повышение скорости передвижения во время шока"},{"string":"#% снижение скорости передвижения во время шока","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_542923416"]}}} +{"ref":"#% increased Movement Speed while you have Cat's Stealth","better":1,"matchers":[{"string":"#% повышение скорости передвижения, пока на вас действует Кошачья скрытность"},{"string":"#% снижение скорости передвижения, пока на вас действует Кошачья скрытность","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_673704994"]}}} +{"ref":"#% increased number of Explosives","better":1,"fromAreaMods":true,"matchers":[{"string":"#% увеличение количества взрывных зарядов"}],"trade":{"ids":{"implicit":["implicit.stat_3051490307"]}}} +{"ref":"#% increased number of Rare Monsters","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"#% увеличение количества редких монстров"}],"trade":{"ids":{"explicit":["explicit.stat_3793155082"],"fractured":["fractured.stat_3793155082"]}}} +{"ref":"#% increased Orb of Storms Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Сферы бурь"},{"string":"#% уменьшение области действия Сферы бурь","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2875508213"]}}} +{"ref":"#% increased Orb of Storms Critical Strike Chance","better":1,"matchers":[{"string":"#% повышение шанса критического удара Сферы бурь"},{"string":"#% снижение шанса критического удара Сферы бурь","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_168538372"]}}} +{"ref":"#% increased Perception Experience gained","better":1,"matchers":[{"string":"#% увеличение получаемого Восприятием опыта"},{"string":"#% уменьшение получаемого Восприятием опыта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_154668190"],"fractured":["fractured.stat_154668190"]}}} +{"ref":"#% increased Perception speed","better":1,"matchers":[{"string":"#% повышение скорости использования Восприятия"},{"string":"#% снижение скорости использования Восприятия","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1456551059"],"implicit":["implicit.stat_1456551059"],"fractured":["fractured.stat_1456551059"]}}} +{"ref":"#% increased Phase Run Duration","better":1,"matchers":[{"string":"#% увеличение длительности Призрачного бега"},{"string":"#% уменьшение длительности Призрачного бега","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2556095677"]}}} +{"ref":"#% increased Physical Attack Damage while Dual Wielding","better":1,"matchers":[{"string":"#% увеличение физического урона от атак с парным оружием в руках"},{"string":"#% уменьшение физического урона от атак с парным оружием в руках","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1274831335"],"fractured":["fractured.stat_1274831335"]}}} +{"ref":"#% increased Physical Damage","better":1,"matchers":[{"string":"Не наносит физический урон","value":-1},{"string":"#% увеличение физического урона"},{"string":"#% уменьшение физического урона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1509134228"],"implicit":["implicit.stat_1509134228"],"fractured":["fractured.stat_1509134228"],"enchant":["enchant.stat_1509134228"],"crafted":["crafted.stat_1509134228"]}}} +{"ref":"#% increased Physical Damage over Time","better":1,"matchers":[{"string":"#% увеличение постепенного физического урона"},{"string":"#% уменьшение постепенного физического урона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1692565595"],"fractured":["fractured.stat_1692565595"]}}} +{"ref":"#% increased Physical Damage Over Time per 10 Dexterity","better":1,"matchers":[{"string":"#% увеличение постепенного физического урона за 10 ловкости"},{"string":"#% уменьшение постепенного физического урона за 10 ловкости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_555311393"]}}} +{"ref":"#% increased Physical Damage per Endurance Charge","better":1,"matchers":[{"string":"#% увеличение физического урона за заряд выносливости"},{"string":"#% уменьшение физического урона за заряд выносливости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2481358827"]}}} +{"ref":"#% increased Physical Damage taken","better":-1,"matchers":[{"string":"#% увеличение получаемого физического урона"},{"string":"#% уменьшение получаемого физического урона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3853018505"],"scourge":["scourge.stat_3853018505"]}}} +{"ref":"#% increased Physical Damage while affected by Herald of Purity","better":1,"matchers":[{"string":"#% увеличение физического урона под действием Вестника чистоты"},{"string":"#% уменьшение физического урона под действием Вестника чистоты","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3294232483"]}}} +{"ref":"#% increased Physical Damage while using Pride","better":1,"matchers":[{"string":"#% увеличение физического урона при использовании Гордости"},{"string":"#% уменьшение физического урона при использовании Гордости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_576528026"]}}} +{"ref":"#% increased Physical Damage while you have Resolute Technique","better":1,"matchers":[{"string":"#% увеличение физического урона, пока на вас действуют Точные удары"},{"string":"#% уменьшение физического урона, пока на вас действуют Точные удары","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1258679667"]}}} +{"ref":"#% increased Physical Damage while you have Unholy Might","better":1,"matchers":[{"string":"#% увеличение физического урона под действием Нечестивого могущества"},{"string":"#% уменьшение физического урона под действием Нечестивого могущества","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1609570656"]}}} +{"ref":"#% increased Physical Damage with Attack Skills","better":1,"matchers":[{"string":"#% увеличение физического урона от умений атак"},{"string":"#% уменьшение физического урона от умений атак","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2266750692"]}}} +{"ref":"#% increased Physical Damage with Axes","better":1,"matchers":[{"string":"#% увеличение физического урона топорами"},{"string":"#% уменьшение физического урона топорами","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2008219439"],"implicit":["implicit.stat_2008219439"],"fractured":["fractured.stat_2008219439"]}}} +{"ref":"#% increased Physical Damage with Bows","better":1,"matchers":[{"string":"#% увеличение физического урона луками"},{"string":"#% уменьшение физического урона луками","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_402920808"],"implicit":["implicit.stat_402920808"],"fractured":["fractured.stat_402920808"]}}} +{"ref":"#% increased Physical Damage with Claws","better":1,"matchers":[{"string":"#% увеличение физического урона когтями"},{"string":"#% уменьшение физического урона когтями","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_635761691"],"implicit":["implicit.stat_635761691"],"fractured":["fractured.stat_635761691"]}}} +{"ref":"#% increased Physical Damage with Daggers","better":1,"matchers":[{"string":"#% увеличение физического урона кинжалами"},{"string":"#% уменьшение физического урона кинжалами","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3882531569"],"implicit":["implicit.stat_3882531569"],"fractured":["fractured.stat_3882531569"]}}} +{"ref":"#% increased Physical Damage with Hits and Ailments against Ignited Enemies","better":1,"matchers":[{"string":"#% увеличение физического урона от ударов и состояний по подожжённым врагам"},{"string":"#% уменьшение физического урона от ударов и состояний по подожжённым врагам","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3375415245"]}}} +{"ref":"#% increased Physical Damage with Maces or Sceptres","better":1,"matchers":[{"string":"#% увеличение физического урона булавами и скипетрами"},{"string":"#% уменьшение физического урона булавами и скипетрами","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3774831856"],"implicit":["implicit.stat_3774831856"],"fractured":["fractured.stat_3774831856"]}}} +{"ref":"#% increased Physical Damage with Ranged Weapons","better":1,"matchers":[{"string":"#% увеличение физического урона оружием дальнего боя"},{"string":"#% уменьшение физического урона оружием дальнего боя","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_766615564"]}}} +{"ref":"#% increased Physical Damage with Spell Skills","better":1,"matchers":[{"string":"#% увеличение физического урона умениями чар"},{"string":"#% уменьшение физического урона умениями чар","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1430255627"]}}} +{"ref":"#% increased Physical Damage with Staves","better":1,"matchers":[{"string":"#% увеличение физического урона посохами"},{"string":"#% уменьшение физического урона посохами","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3150705301"],"implicit":["implicit.stat_3150705301"],"fractured":["fractured.stat_3150705301"]}}} +{"ref":"#% increased Physical Damage with Swords","better":1,"matchers":[{"string":"#% увеличение физического урона мечами"},{"string":"#% уменьшение физического урона мечами","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3814560373"],"implicit":["implicit.stat_3814560373"],"fractured":["fractured.stat_3814560373"]}}} +{"ref":"#% increased Physical Damage with Wands","better":1,"matchers":[{"string":"#% увеличение физического урона жезлами"},{"string":"#% уменьшение физического урона жезлами","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2769075491"],"implicit":["implicit.stat_2769075491"],"fractured":["fractured.stat_2769075491"]}}} +{"ref":"#% increased Physical Weapon Damage per 10 Strength","better":1,"matchers":[{"string":"#% увеличение физического урона оружием за 10 силы"},{"string":"#% уменьшение физического урона оружием за 10 силы","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2594215131"]}}} +{"ref":"#% increased Poacher's Mark Curse Effect","better":1,"matchers":[{"string":"#% усиление эффекта проклятия Метки браконьера"},{"string":"#% ослабление эффекта проклятия Метки браконьера","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3278819254"]}}} +{"ref":"#% increased Poison Duration","better":1,"matchers":[{"string":"#% увеличение длительности яда"},{"string":"#% уменьшение длительности яда","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2011656677"],"implicit":["implicit.stat_2011656677"],"fractured":["fractured.stat_2011656677"]}}} +{"ref":"#% increased Poison Duration for each Poison you have inflicted Recently, up to a maximum of 100%","better":1,"matchers":[{"string":"#% увеличение длительности яда за каждый недавно наложенный вами эффект яда, вплоть до максимума в 100%"},{"string":"#% уменьшение длительности яда за каждый недавно наложенный вами эффект яда","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_86516932"]}}} +{"ref":"#% increased Poison Duration if you have at least 150 Intelligence","better":1,"matchers":[{"string":"#% увеличение длительности яда, если у вас минимум 150 интеллекта"},{"string":"#% уменьшение длительности яда, если у вас минимум 150 интеллекта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2771181375"]}}} +{"ref":"#% increased Poison Duration on you","better":1,"matchers":[{"string":"#% увеличение длительности отравления на вас"},{"string":"#% уменьшение длительности отравления на вас","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3301100256"],"implicit":["implicit.stat_3301100256"],"fractured":["fractured.stat_3301100256"]}}} +{"ref":"#% increased Poison Duration per Power Charge","better":1,"matchers":[{"string":"#% увеличение длительности яда за заряд энергии"},{"string":"#% уменьшение длительности яда за заряд энергии","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3491499175"]}}} +{"ref":"#% increased Poisonous Concoction Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Ядовитой смеси"},{"string":"#% уменьшение области действия Ядовитой смеси","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3892584986"]}}} +{"ref":"#% increased Poisonous Concoction Damage","better":1,"matchers":[{"string":"#% увеличение урона Ядовитой смеси"},{"string":"#% уменьшение урона Ядовитой смеси","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_295557151"]}}} +{"ref":"#% increased Power Charge Duration","better":1,"matchers":[{"string":"#% увеличение длительности заряда энергии"},{"string":"#% уменьшение длительности заряда энергии","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3872306017"],"implicit":["implicit.stat_3872306017"],"enchant":["enchant.stat_3872306017"]}}} +{"ref":"#% increased Power Siphon Attack Speed","better":1,"matchers":[{"string":"#% повышение скорости атаки Перелива энергии"},{"string":"#% снижение скорости атаки Перелива энергии","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2753191013"]}}} +{"ref":"#% increased Power Siphon Damage","better":1,"matchers":[{"string":"#% увеличение урона Перелива энергии"},{"string":"#% уменьшение урона Перелива энергии","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_78767457"]}}} +{"ref":"#% increased Prefix Modifier magnitudes","better":1,"matchers":[{"string":"#% повышение значений свойств-префиксов"},{"string":"#% снижение значений свойств-префиксов","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1794120699"]}}} +{"ref":"#% increased Projectile Attack Damage","better":1,"matchers":[{"string":"#% увеличение урона от атак снарядами"},{"string":"#% уменьшение урона от атак снарядами","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2162876159"],"implicit":["implicit.stat_2162876159"],"fractured":["fractured.stat_2162876159"]}}} +{"ref":"#% increased Projectile Attack Damage during any Flask Effect","better":1,"matchers":[{"string":"#% увеличение урона от атак снарядами во время действия эффекта любого флакона"},{"string":"#% уменьшение урона от атак снарядами во время действия эффекта любого флакона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2771016039"],"fractured":["fractured.stat_2771016039"]}}} +{"ref":"#% increased Projectile Attack Damage per 200 Accuracy Rating","better":1,"matchers":[{"string":"#% увеличение урона от атак снарядами за каждые 200 меткости"},{"string":"#% уменьшение урона от атак снарядами за каждые 200 меткости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4157767905"],"fractured":["fractured.stat_4157767905"]}}} +{"ref":"#% increased Projectile Attack Damage while you have at least 200 Dexterity","better":1,"matchers":[{"string":"#% увеличение урона от атак снарядами, если у вас минимум 200 ловкости"},{"string":"#% уменьшение урона от атак снарядами, если у вас минимум 200 ловкости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1822142649"]}}} +{"ref":"#% increased Projectile Damage","better":1,"matchers":[{"string":"#% увеличение урона снарядов"},{"string":"#% уменьшение урона снарядов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1839076647"],"implicit":["implicit.stat_1839076647"],"fractured":["fractured.stat_1839076647"],"scourge":["scourge.stat_1839076647"],"crafted":["crafted.stat_1839076647"]}}} +{"ref":"#% increased Projectile Damage per Power Charge","better":1,"matchers":[{"string":"#% увеличение урона снарядами за заряд энергии"}],"trade":{"ids":{"explicit":["explicit.stat_3816512110"]}}} +{"ref":"#% increased Projectile Damage while in Blood Stance","better":1,"matchers":[{"string":"#% увеличение урона снарядов в стойке крови"},{"string":"#% уменьшение урона снарядов в стойке крови","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2982500944"]}}} +{"ref":"#% increased Projectile Speed","better":1,"matchers":[{"string":"#% повышение скорости снарядов"},{"string":"#% снижение скорости снарядов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3759663284"],"implicit":["implicit.stat_3759663284"],"fractured":["fractured.stat_3759663284"],"scourge":["scourge.stat_3759663284"],"crafted":["crafted.stat_3759663284"]}}} +{"ref":"#% increased Projectile Speed per Frenzy Charge","better":1,"matchers":[{"string":"#% повышение скорости снарядов за заряд ярости"}],"trade":{"ids":{"explicit":["explicit.stat_3159161267"]}}} +{"ref":"#% increased Protective Link Duration","better":1,"matchers":[{"string":"#% увеличение длительности Ограждающей связи"},{"string":"#% уменьшение длительности Ограждающей связи","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3917923501"]}}} +{"ref":"#% increased Puncture Damage","better":1,"matchers":[{"string":"#% увеличение урона Надреза"},{"string":"#% уменьшение урона Надреза","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3496292484"]}}} +{"ref":"#% increased Puncture Duration","better":1,"matchers":[{"string":"#% увеличение длительности Надреза"},{"string":"#% уменьшение длительности Надреза","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3186938438"]}}} +{"ref":"#% increased Punishment Curse Effect","better":1,"matchers":[{"string":"#% усиление эффекта проклятия Наказания"},{"string":"#% ослабление эффекта проклятия Наказания","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2844206732"],"enchant":["enchant.stat_2844206732"]}}} +{"ref":"#% increased Punishment Duration","better":1,"matchers":[{"string":"#% увеличение длительности Наказания"},{"string":"#% уменьшение длительности Наказания","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1924239636"]}}} +{"ref":"#% increased quantity of Artifacts dropped by Monsters","better":1,"fromAreaMods":true,"matchers":[{"string":"#% увеличение количества выпадающих из монстров артефактов"},{"string":"#% уменьшение количества выпадающих из монстров артефактов"}],"trade":{"ids":{"explicit":["explicit.stat_4219583418"],"implicit":["implicit.stat_4219583418"]}}} +{"ref":"#% increased Quantity of Fish Caught","better":1,"matchers":[{"string":"#% увеличение количества пойманной рыбы"},{"string":"#% уменьшение количества пойманной рыбы","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3802667447"],"implicit":["implicit.stat_3802667447"],"fractured":["fractured.stat_3802667447"]}}} +{"ref":"#% increased Quantity of Items Dropped by Slain Frozen Enemies","better":1,"matchers":[{"string":"#% увеличение количества предметов, выпадающих из убитых замороженных врагов"},{"string":"#% уменьшение количества предметов, выпадающих из убитых замороженных врагов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3304763863"]}}} +{"ref":"#% increased Quantity of Items Dropped by Slain Normal Enemies","better":1,"matchers":[{"string":"#% увеличение количества предметов, выпадающих из убитых обычных врагов"},{"string":"#% уменьшение количества предметов, выпадающих из убитых обычных врагов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1342790450"]}}} +{"ref":"#% increased Quantity of Items dropped in Heists","better":1,"matchers":[{"string":"#% увеличение количества предметов, выпадающих во время краж"},{"string":"#% уменьшение количества предметов, выпадающих во время краж","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3683643898"],"fractured":["fractured.stat_3683643898"]}}} +{"ref":"#% increased Quantity of Items found","better":1,"matchers":[{"string":"#% увеличение количества найденных предметов"},{"string":"#% уменьшение количества найденных предметов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_884586851"],"implicit":["implicit.stat_884586851"],"fractured":["fractured.stat_884586851"]}}} +{"ref":"#% increased Quantity of Items found during Effect","better":1,"matchers":[{"string":"#% увеличение количества найденных предметов во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_3736953565"]}}} +{"ref":"#% increased Quantity of Items found when on Low Life","better":1,"matchers":[{"string":"#% увеличение количества найденных предметов при малом количестве здоровья"},{"string":"#% уменьшение количества найденных предметов при малом количестве здоровья","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_760855772"]}}} +{"ref":"#% increased Quantity of Items found with a Magic Item Equipped","better":1,"matchers":[{"string":"#% увеличение количества найденных предметов, если на вас надет волшебный предмет"},{"string":"#% уменьшение количества найденных предметов, если на вас надет волшебный предмет","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1498954300"]}}} +{"ref":"#% increased Quantity of Relics Dropped by Monsters","better":1,"matchers":[{"string":"#% увеличение количества реликвий, выпадающих из монстров"},{"string":"#% уменьшение количества реликвий, выпадающих из монстров","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_1680962389"]}}} +{"ref":"#% increased Rage Cost of Skills","better":1,"matchers":[{"string":"#% увеличение затрат свирепости умениями"},{"string":"#% уменьшение затрат свирепости умениями","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3415234440"]}}} +{"ref":"#% increased Rage Vortex Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Свирепого вихря"},{"string":"#% уменьшение области действия Свирепого вихря","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3988628118"]}}} +{"ref":"#% increased Rage Vortex Damage","better":1,"matchers":[{"string":"#% увеличение урона Свирепого вихря"},{"string":"#% уменьшение урона Свирепого вихря","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3153431030"]}}} +{"ref":"#% increased Rain of Arrows Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Ливня стрел"},{"string":"#% уменьшение области действия Ливня стрел","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2205814812"]}}} +{"ref":"#% increased Rain of Arrows Attack Speed","better":1,"matchers":[{"string":"#% повышение скорости атаки Ливня стрел"},{"string":"#% снижение скорости атаки Ливня стрел","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3825617457"]}}} +{"ref":"#% increased Rain of Arrows Damage","better":1,"matchers":[{"string":"#% увеличение урона Ливня стрел"},{"string":"#% уменьшение урона Ливня стрел","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3432170876"]}}} +{"ref":"#% increased Raised Zombie Size","better":1,"matchers":[{"string":"#% увеличение размера зомби"},{"string":"#% уменьшение размера зомби","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3563667308"]}}} +{"ref":"#% increased raising of Alert Level","better":-1,"matchers":[{"string":"#% увеличение поднимаемого уровня тревоги"},{"string":"#% уменьшение поднимаемого уровня тревоги","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_703341733"],"implicit":["implicit.stat_703341733"]}}} +{"ref":"#% increased raising of Alert Level from opening Chests","better":-1,"matchers":[{"string":"#% увеличение поднимаемого из-за открытия сундуков уровня тревоги"},{"string":"#% уменьшение поднимаемого из-за открытия сундуков уровня тревоги","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2500803699"],"fractured":["fractured.stat_2500803699"]}}} +{"ref":"#% increased Rallying Cry Buff Effect","better":1,"matchers":[{"string":"#% усиление положительного эффекта Клича сплочения"},{"string":"#% ослабление положительного эффекта Клича сплочения","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4147277532"],"enchant":["enchant.stat_4147277532","enchant.stat_865263728","enchant.stat_945725535"]}}} +{"ref":"#% increased Rarity of Fish Caught","better":1,"matchers":[{"string":"#% повышение редкости пойманной рыбы"},{"string":"#% снижение редкости пойманной рыбы","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3310914132"],"implicit":["implicit.stat_3310914132"],"fractured":["fractured.stat_3310914132"],"scourge":["scourge.stat_3310914132"]}}} +{"ref":"#% increased Rarity of Items Dropped by Enemies killed with a Critical Strike","better":1,"matchers":[{"string":"#% повышение редкости предметов, выпадающих из врагов, убитых критическим ударом"},{"string":"#% снижение редкости предметов, выпадающих из врагов, убитых критическим ударом","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_21824003"]}}} +{"ref":"#% increased Rarity of Items Dropped by Frozen Enemies","better":1,"matchers":[{"string":"#% повышение редкости предметов, выпадающих из убитых замороженных врагов"}],"trade":{"ids":{"explicit":["explicit.stat_2138434718"]}}} +{"ref":"#% increased Rarity of Items Dropped by Slain Magic Enemies","better":1,"matchers":[{"string":"#% повышение редкости предметов, выпадающих из убитых волшебных врагов"},{"string":"#% снижение редкости предметов, выпадающих из убитых волшебных врагов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3433676080"]}}} +{"ref":"#% increased Rarity of Items Dropped by Slain Rare or Unique Enemies","better":1,"matchers":[{"string":"#% повышение редкости предметов, выпадающих из убитых редких или уникальных врагов"},{"string":"#% снижение редкости предметов, выпадающих из убитых редких или уникальных врагов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2161689853"],"fractured":["fractured.stat_2161689853"],"crafted":["crafted.stat_2161689853"]}}} +{"ref":"#% increased Rarity of Items Dropped by Slain Shocked Enemies","better":1,"matchers":[{"string":"#% повышение редкости предметов, выпадающих из убитых поражённых шоком врагов"},{"string":"#% снижение редкости предметов, выпадающих из убитых поражённых шоком врагов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3188291252"]}}} +{"ref":"#% increased Rarity of Items dropped in Heists","better":1,"matchers":[{"string":"#% повышение редкости предметов, выпадающих во время краж"},{"string":"#% снижение редкости предметов, выпадающих во время краж","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2833896424"],"implicit":["implicit.stat_2833896424"],"fractured":["fractured.stat_2833896424"]}}} +{"ref":"#% increased Rarity of Items found","better":1,"matchers":[{"string":"#% повышение редкости найденных предметов"},{"string":"#% снижение редкости найденных предметов","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_rarity"],"explicit":["explicit.stat_3917489142"],"implicit":["implicit.stat_3917489142"],"fractured":["fractured.stat_3917489142"],"scourge":["scourge.stat_3917489142"],"crafted":["crafted.stat_3917489142"]}}} +{"ref":"#% increased Rarity of Items found during Effect","better":1,"matchers":[{"string":"#% повышение редкости найденных предметов во время действия эффекта"},{"string":"#% снижение редкости найденных предметов во время действия эффекта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1740200922","explicit.stat_3251705960"],"crafted":["crafted.stat_3251705960"]}}} +{"ref":"#% increased Rarity of Items found from Slain Unique Enemies","better":1,"matchers":[{"string":"#% повышение редкости предметов, выпадающих из убитых уникальных врагов"},{"string":"#% снижение редкости предметов, выпадающих из убитых уникальных врагов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_121185030"],"fractured":["fractured.stat_121185030"]}}} +{"ref":"#% increased Rarity of Items found per Mana Burn, up to a maximum of 100%","better":1,"matchers":[{"string":"#% увеличение редкости находимых предметов за заряд Сжигания маны, вплоть до максимума в 100%"}],"trade":{"ids":{"explicit":["explicit.stat_3226452989"]}}} +{"ref":"#% increased Rarity of Items found when on Low Life","better":1,"matchers":[{"string":"#% повышение редкости найденных предметов при малом количестве здоровья"},{"string":"#% снижение редкости найденных предметов при малом количестве здоровья","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2929867083"]}}} +{"ref":"#% increased Rarity of Items found with a Normal Item Equipped","better":1,"matchers":[{"string":"#% повышение редкости найденных предметов, если на вас надет обычный предмет"},{"string":"#% снижение редкости найденных предметов, если на вас надет обычный предмет","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4151190513"]}}} +{"ref":"#% increased Reap Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Кровавой жатвы"},{"string":"#% уменьшение области действия Кровавой жатвы","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_647221668"]}}} +{"ref":"#% increased Reave Damage","better":1,"matchers":[{"string":"#% увеличение урона Опустошения"},{"string":"#% уменьшение урона Опустошения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_862824495"]}}} +{"ref":"#% increased Reave Radius","better":1,"matchers":[{"string":"#% увеличение радиуса Опустошения"},{"string":"#% уменьшение радиуса Опустошения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1486490067"]}}} +{"ref":"#% increased Reckoning Damage","better":1,"matchers":[{"string":"#% увеличение урона Возмездия"},{"string":"#% уменьшение урона Возмездия","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_308326229"]}}} +{"ref":"#% increased Recovery rate","better":1,"matchers":[{"string":"#% повышение скорости восстановления"},{"string":"#% снижение скорости восстановления","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_173226756"],"fractured":["fractured.stat_173226756"]}}} +{"ref":"#% increased Recovery rate of Life and Energy Shield","better":1,"matchers":[{"string":"#% повышение скорости восстановления здоровья и энергетического щита"},{"string":"#% снижение скорости восстановления здоровья и энергетического щита","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1092546321"]}}} +{"ref":"#% increased Recovery rate of Life and Energy Shield per Power Charge","better":1,"matchers":[{"string":"#% повышение скорости восстановления здоровья и энергетического щита за заряд энергии"},{"string":"#% снижение скорости восстановления здоровья и энергетического щита за заряд энергии","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_604671218"]}}} +{"ref":"#% increased Recovery rate of Life and Energy Shield while affected by Malevolence","better":1,"matchers":[{"string":"#% повышение скорости восстановления здоровья и энергетического щита под действием Злорадства"},{"string":"#% снижение скорости восстановления здоровья и энергетического щита под действием Злорадства","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3643449791"]}}} +{"ref":"#% increased Reeling Stability","better":1,"matchers":[{"string":"#% увеличение стабильности наматывания"},{"string":"#% уменьшение стабильности наматывания","negate":true}],"trade":{"ids":{"scourge":["scourge.stat_3332149074"]}}} +{"ref":"#% increased Rejuvenation Totem Aura Effect","better":1,"matchers":[{"string":"#% усиление эффекта ауры Восполняющего тотема"},{"string":"#% ослабление эффекта ауры Восполняющего тотема","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1588572574"]}}} +{"ref":"#% increased Reservation Efficiency of Skills","better":1,"matchers":[{"string":"#% увеличение эффективности удержания ресурсов умениями"},{"string":"#% уменьшение эффективности удержания ресурсов умениями","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2587176568","explicit.stat_4202507508"],"implicit":["implicit.stat_2587176568","implicit.stat_4202507508"]}}} +{"ref":"#% increased Reservation Efficiency of Skills while affected by a Unique Abyss Jewel","better":1,"matchers":[{"string":"#% увеличение эффективности удержания ресурсов умениями под действием уникального самоцвета Бездны"},{"string":"#% уменьшение эффективности удержания ресурсов умениями под действием уникального самоцвета Бездны","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2811179011"]}}} +{"ref":"#% increased Reservation of Curse Aura Skills","better":1,"matchers":[{"string":"#% увеличение количества ресурсов, удержанных умениями проклятий-аур"},{"string":"#% уменьшение количества ресурсов, удержанных умениями проклятий-аур","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3292930705"]}}} +{"ref":"#% increased Resolve Aegis","better":1,"matchers":[{"string":"#% увеличение Защиты Решимости"},{"string":"#% уменьшение Защиты Решимости","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_1388771661"]}}} +{"ref":"#% increased Resolve Recovered","better":1,"matchers":[{"string":"#% увеличение восстановления решимости"},{"string":"#% уменьшение восстановления решимости","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_1306482168"]}}} +{"ref":"#% increased Righteous Fire Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Праведного огня"},{"string":"#% уменьшение области действия Праведного огня","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2430635444"]}}} +{"ref":"#% increased Righteous Fire Damage","better":1,"matchers":[{"string":"#% увеличение урона Праведного огня"},{"string":"#% уменьшение урона Праведного огня","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3359178310"]}}} +{"ref":"#% increased Riposte Damage","better":1,"matchers":[{"string":"#% увеличение урона Парирования"},{"string":"#% уменьшение урона Парирования","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4071708873"]}}} +{"ref":"#% increased Rogue's Marker value of primary Heist Target","better":1,"matchers":[{"string":"#% повышение ценности в разбойничьих жетонах для главной цели Кражи"},{"string":"#% снижение ценности в разбойничьих жетонах для главной цели Кражи","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2357136187"],"fractured":["fractured.stat_2357136187"]}}} +{"ref":"#% increased Rolling Magma Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Магмового шара"},{"string":"#% уменьшение области действия Магмового шара","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1646093658"]}}} +{"ref":"#% increased Rolling Magma Damage","better":1,"matchers":[{"string":"#% увеличение урона Магмового шара"},{"string":"#% уменьшение урона Магмового шара","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_600891507"]}}} +{"ref":"#% increased Scorching Ray beam length","better":1,"matchers":[{"string":"#% увеличение длины Опаляющего луча"},{"string":"#% уменьшение длины Опаляющего луча","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_702909553"],"enchant":["enchant.stat_702909553"]}}} +{"ref":"#% increased Scorching Ray Cast Speed","better":1,"matchers":[{"string":"#% повышение скорости сотворения Опаляющего луча"},{"string":"#% снижение скорости сотворения Опаляющего луча","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3279758713"]}}} +{"ref":"#% increased Scorching Ray Damage","better":1,"matchers":[{"string":"#% увеличение урона Опаляющего луча"},{"string":"#% уменьшение урона Опаляющего луча","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3395096718"]}}} +{"ref":"#% increased Searing Bond Damage","better":1,"matchers":[{"string":"#% увеличение урона Обжигающих уз"},{"string":"#% уменьшение урона Обжигающих уз","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2298223148"]}}} +{"ref":"#% increased Searing Bond Totem Elemental Resistances","better":1,"matchers":[{"string":"#% повышение сопротивления стихиям тотема Обжигающих уз"},{"string":"#% снижение сопротивления стихиям тотема Обжигающих уз","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2519689029"]}}} +{"ref":"#% increased Searing Bond Totem Placement Speed","better":1,"matchers":[{"string":"#% повышение скорости установки тотема Обжигающих уз"},{"string":"#% снижение скорости установки тотема Обжигающих уз","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_708179348"]}}} +{"ref":"#% increased Sentinel of Absolution Duration","better":1,"matchers":[{"string":"#% увеличение длительности Стража отпущения"},{"string":"#% уменьшение длительности Стража отпущения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1778800422"]}}} +{"ref":"#% increased Sentinel of Dominance Duration","better":1,"matchers":[{"string":"#% увеличение времени существования Стража власти"},{"string":"#% уменьшение времени существования Стража власти","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3772643988"]}}} +{"ref":"#% increased Shield Charge Attack Speed","better":1,"matchers":[{"string":"#% повышение скорости атаки Удара щитом"},{"string":"#% снижение скорости атаки Удара щитом","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_648343221"]}}} +{"ref":"#% increased Shield Charge Damage","better":1,"matchers":[{"string":"#% увеличение урона Удара щитом"},{"string":"#% уменьшение урона Удара щитом","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3490662882"]}}} +{"ref":"#% increased Shield Crush Attack Speed","better":1,"matchers":[{"string":"#% повышение скорости атаки Сокрушающего щита"},{"string":"#% снижение скорости атаки Сокрушающего щита","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1948292587"]}}} +{"ref":"#% increased Shield Crush Damage","better":1,"matchers":[{"string":"#% увеличение урона Сокрушающего щита"},{"string":"#% уменьшение урона Сокрушающего щита","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1451671945"]}}} +{"ref":"#% increased Shock Duration on Enemies","better":1,"matchers":[{"string":"#% увеличение длительности шока на врагах"},{"string":"#% уменьшение длительности шока на врагах","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3668351662"],"implicit":["implicit.stat_3668351662"],"fractured":["fractured.stat_3668351662"],"crafted":["crafted.stat_3668351662"]}}} +{"ref":"#% increased Shock Nova Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Кольца молний"},{"string":"#% уменьшение области действия Кольца молний","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_565901339"]}}} +{"ref":"#% increased Shock Nova Damage","better":1,"matchers":[{"string":"#% увеличение урона Кольца молний"},{"string":"#% уменьшение урона Кольца молний","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3948894096"]}}} +{"ref":"#% increased Shockwave Totem Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Сотрясающего тотема"},{"string":"#% уменьшение области действия Сотрясающего тотема","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1153159301"]}}} +{"ref":"#% increased Shockwave Totem Cast Speed","better":1,"matchers":[{"string":"#% повышение скорости сотворения Сотрясающего тотема"},{"string":"#% снижение скорости сотворения Сотрясающего тотема","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2259906777"]}}} +{"ref":"#% increased Shockwave Totem Damage","better":1,"matchers":[{"string":"#% увеличение урона Сотрясающего тотема"},{"string":"#% уменьшение урона Сотрясающего тотема","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2440551805"]}}} +{"ref":"#% increased Size of Fish caught during Daytime","better":1,"matchers":[{"string":"#% увеличение размера рыбы, пойманной в дневное время"},{"string":"#% уменьшение размера рыбы, пойманной в дневное время","negate":true}],"trade":{"ids":{"scourge":["scourge.stat_1771018579"]}}} +{"ref":"#% increased Skeleton Attack Speed","better":1,"matchers":[{"string":"#% повышение скорости атаки скелетов"},{"string":"#% снижение скорости атаки скелетов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3413085237"]}}} +{"ref":"#% increased Skeleton Cast Speed","better":1,"matchers":[{"string":"Скелеты имеют #% повышение скорости сотворения чар"},{"string":"Скелеты имеют #% снижение скорости сотворения чар","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2725259389"]}}} +{"ref":"#% increased Skeleton Duration","better":1,"matchers":[{"string":"#% увеличение времени существования скелетов"},{"string":"#% уменьшение времени существования скелетов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1331384105"]}}} +{"ref":"#% increased Skeleton Movement Speed","better":1,"matchers":[{"string":"#% повышение скорости передвижения скелетов"},{"string":"#% снижение скорости передвижения скелетов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3295031203"]}}} +{"ref":"#% increased Skill Effect Duration","better":1,"matchers":[{"string":"#% увеличение длительности эффекта умения"},{"string":"#% уменьшение длительности эффекта умения","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3377888098"],"implicit":["implicit.stat_3377888098"],"fractured":["fractured.stat_3377888098"]}}} +{"ref":"#% increased Smoke Mine Duration","better":1,"matchers":[{"string":"#% увеличение длительности Дымовой мины"},{"string":"#% уменьшение длительности Дымовой мины","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3719728947"]}}} +{"ref":"#% increased Soul Gain Prevention Duration","better":1,"matchers":[{"string":"#% увеличение длительности предотвращения получения душ"},{"string":"#% уменьшение длительности предотвращения получения душ","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1980613100"]}}} +{"ref":"#% increased Soul Link Duration","better":1,"matchers":[{"string":"#% увеличение длительности Духовной связи"},{"string":"#% уменьшение длительности Духовной связи","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3975033889"]}}} +{"ref":"#% increased Spark Damage","better":1,"matchers":[{"string":"#% увеличение урона Искры"},{"string":"#% уменьшение урона Искры","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1208019382"]}}} +{"ref":"#% increased Spectral Helix Damage","better":1,"matchers":[{"string":"#% увеличение урона Призрачной спирали"},{"string":"#% уменьшение урона Призрачной спирали","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_183131376"]}}} +{"ref":"#% increased Spectral Helix Projectile Speed","better":1,"matchers":[{"string":"#% повышение скорости снаряда Призрачной спирали"},{"string":"#% снижение скорости снаряда Призрачной спирали","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1952647315"]}}} +{"ref":"#% increased Spectral Shield Throw Damage","better":1,"matchers":[{"string":"#% увеличение урона Броска призрачного щита"},{"string":"#% уменьшение урона Броска призрачного щита","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1891516164"]}}} +{"ref":"#% increased Spectral Shield Throw Projectile Speed","better":1,"matchers":[{"string":"#% повышение скорости снарядов Броска призрачного щита"},{"string":"#% снижение скорости снарядов Броска призрачного щита","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1561141582"]}}} +{"ref":"#% increased Spectral Throw Damage","better":1,"matchers":[{"string":"#% увеличение урона Призрачного броска"},{"string":"#% уменьшение урона Призрачного броска","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3755794090"]}}} +{"ref":"#% increased Spectral Throw Projectile Speed","better":1,"matchers":[{"string":"#% повышение скорости снаряда Призрачного броска"},{"string":"#% снижение скорости снаряда Призрачного броска","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1062615953"]}}} +{"ref":"#% increased Spell Critical Strike Chance","better":1,"matchers":[{"string":"#% увеличение шанса критического удара чарами"},{"string":"#% уменьшение шанса критического удара чарами","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_737908626"],"implicit":["implicit.stat_737908626"],"fractured":["fractured.stat_737908626"],"enchant":["enchant.stat_737908626"],"crafted":["crafted.stat_737908626"]}}} +{"ref":"#% increased Spell Critical Strike Chance per 100 Player Maximum Life","better":1,"matchers":[{"string":"#% увеличение шанса критического удара чарами за каждые 100 максимума здоровья игрока"},{"string":"#% уменьшение шанса критического удара чарами за каждые 100 максимума здоровья игрока","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3775574601"]}}} +{"ref":"#% increased Spell Critical Strike Chance per Raised Spectre","better":1,"matchers":[{"string":"#% увеличение шанса критического удара чарами за каждого созданного призрака"},{"string":"#% уменьшение шанса критического удара чарами за каждого созданного призрака","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_495095219"]}}} +{"ref":"#% increased Spell Damage","better":1,"matchers":[{"string":"#% увеличение урона от чар"},{"string":"#% уменьшение урона от чар","negate":true}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_spell_damage"],"explicit":["explicit.stat_2974417149"],"implicit":["implicit.stat_2974417149"],"fractured":["fractured.stat_2974417149"],"enchant":["enchant.stat_2974417149"],"scourge":["scourge.stat_2974417149"],"crafted":["crafted.stat_2974417149"]}}} +{"ref":"#% increased Spell Damage during any Flask Effect","better":1,"matchers":[{"string":"#% увеличение урона от чар во время действия эффекта любого флакона"},{"string":"#% уменьшение урона от чар во время действия эффекта любого флакона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2080171093"],"fractured":["fractured.stat_2080171093"]}}} +{"ref":"#% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%","better":1,"matchers":[{"string":"#% увеличение урона от чар за каждые недавно потраченные 200 маны, вплоть до максимума в 2000%"},{"string":"#% уменьшение урона от чар за каждые недавно потраченные 200 маны","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_347220474"]}}} +{"ref":"#% increased Spell Damage if Corrupted","better":1,"matchers":[{"string":"#% увеличение урона от чар, если предмет осквернён"},{"string":"#% уменьшение урона от чар, если предмет осквернён","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_374116820"]}}} +{"ref":"#% increased Spell Damage if you've dealt a Critical Strike in the past 8 seconds","better":1,"matchers":[{"string":"#% увеличение урона от чар, если за последние 8 секунд вы наносили критический удар"},{"string":"#% уменьшение урона от чар, если за последние 8 секунд вы наносили критический удар","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_467806158"]}}} +{"ref":"#% increased Spell Damage if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"#% увеличение урона от чар, если недавно вы наносили критический удар"},{"string":"#% уменьшение урона от чар, если недавно вы наносили критический удар","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1550015622"]}}} +{"ref":"#% increased Spell Damage if your other Ring is an Elder Item","better":1,"matchers":[{"string":"#% увеличение урона от чар, если ваше второе кольцо - предмет Древнего"},{"string":"#% уменьшение урона от чар, если ваше второе кольцо - предмет Древнего","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2921373173"]}}} +{"ref":"#% increased Spell Damage per 10 Intelligence","better":1,"matchers":[{"string":"#% увеличение урона от чар за 10 интеллекта"},{"string":"#% уменьшение урона от чар за 10 интеллекта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2818518881"],"implicit":["implicit.stat_2818518881"],"fractured":["fractured.stat_2818518881"]}}} +{"ref":"#% increased Spell Damage per 10 Strength","better":1,"matchers":[{"string":"#% увеличение урона от чар за каждые 10 силы"},{"string":"#% уменьшение урона от чар за каждые 10 силы","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1073314277"],"implicit":["implicit.stat_1073314277"],"fractured":["fractured.stat_1073314277"]}}} +{"ref":"#% increased Spell Damage per 100 Player Maximum Life","better":1,"matchers":[{"string":"#% увеличение урона от чар за каждые 100 максимума здоровья игрока"},{"string":"#% уменьшение урона от чар за каждые 100 максимума здоровья игрока","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3491815140"]}}} +{"ref":"#% increased Spell Damage per 16 Dexterity","better":1,"matchers":[{"string":"#% увеличение урона от чар за каждые 16 ловкости"},{"string":"#% уменьшение урона от чар за каждые 16 ловкости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2612056840"],"implicit":["implicit.stat_2612056840"],"fractured":["fractured.stat_2612056840"]}}} +{"ref":"#% increased Spell Damage per 16 Intelligence","better":1,"matchers":[{"string":"#% увеличение урона от чар за каждые 16 интеллекта"},{"string":"#% уменьшение урона от чар за каждые 16 интеллекта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3961014595"],"implicit":["implicit.stat_3961014595"],"fractured":["fractured.stat_3961014595"]}}} +{"ref":"#% increased Spell Damage per 16 Strength","better":1,"matchers":[{"string":"#% увеличение урона от чар за каждые 16 силы"},{"string":"#% уменьшение урона от чар за каждые 16 силы","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4249521944"],"implicit":["implicit.stat_4249521944"],"fractured":["fractured.stat_4249521944"]}}} +{"ref":"#% increased Spell Damage per 5% Chance to Block Attack Damage","better":1,"matchers":[{"string":"#% увеличение урона от чар за каждые 5% шанса блокировать урон от атак"}],"trade":{"ids":{"explicit":["explicit.stat_2449668043"]}}} +{"ref":"#% increased Spell Damage per 500 Maximum Mana","better":1,"matchers":[{"string":"#% увеличение урона от чар за каждые 500 максимума маны"},{"string":"#% уменьшение урона от чар за каждые 500 максимума маны","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3555662994"]}}} +{"ref":"#% increased Spell Damage per Power Charge","better":1,"matchers":[{"string":"#% увеличение урона от чар за заряд энергии"}],"trade":{"ids":{"explicit":["explicit.stat_827329571"],"implicit":["implicit.stat_827329571"]}}} +{"ref":"#% increased Spell Damage taken when on Low Mana","better":1,"matchers":[{"string":"#% увеличение получаемого урона от чар при малом количестве маны"},{"string":"#% уменьшение получаемого урона от чар при малом количестве маны","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3557561376"]}}} +{"ref":"#% increased Spell Damage while Dual Wielding","better":1,"matchers":[{"string":"#% увеличение урона чар с парным оружием в руках"},{"string":"#% уменьшение урона чар с парным оружием в руках","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1678690824"],"implicit":["implicit.stat_1678690824"],"fractured":["fractured.stat_1678690824"]}}} +{"ref":"#% increased Spell Damage while holding a Shield","better":1,"matchers":[{"string":"#% увеличение урона от чар со щитом в руках"},{"string":"#% уменьшение урона от чар со щитом в руках","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1766142294"],"implicit":["implicit.stat_1766142294"],"fractured":["fractured.stat_1766142294"]}}} +{"ref":"#% increased Spell Damage while no Mana is Reserved","better":1,"matchers":[{"string":"#% увеличение урона от чар, если не удержана мана"},{"string":"#% уменьшение урона от чар, если не удержана мана","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3779823630"]}}} +{"ref":"#% increased Spell Damage while wielding a Staff","better":1,"matchers":[{"string":"#% увеличение урона чар с посохом в руках"},{"string":"#% уменьшение урона чар с посохом в руках","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3496944181"],"implicit":["implicit.stat_3496944181"],"fractured":["fractured.stat_3496944181"]}}} +{"ref":"#% increased Spirit Offering Duration","better":1,"matchers":[{"string":"#% увеличение длительности Подношения духа"},{"string":"#% уменьшение длительности Подношения духа","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1063173946"]}}} +{"ref":"#% increased Split Arrow Critical Strike Chance","better":1,"matchers":[{"string":"#% повышение шанса критического удара Расколотой стрелы"},{"string":"#% снижение шанса критического удара Расколотой стрелы","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1028884162"]}}} +{"ref":"#% increased Split Arrow Damage","better":1,"matchers":[{"string":"#% увеличение урона Расколотой стрелы"},{"string":"#% уменьшение урона Расколотой стрелы","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2555469486"]}}} +{"ref":"#% increased Static Strike Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Статичного разряда"},{"string":"#% уменьшение области действия Статичного разряда","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2685860927"]}}} +{"ref":"#% increased Static Strike Damage","better":1,"matchers":[{"string":"#% увеличение урона Статичного разряда"},{"string":"#% уменьшение урона Статичного разряда","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_551375258"]}}} +{"ref":"#% increased Static Strike Duration","better":1,"matchers":[{"string":"#% увеличение длительности Статичного разряда"},{"string":"#% уменьшение длительности Статичного разряда","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2906742892"]}}} +{"ref":"#% increased Storm Burst Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Грозового взрыва"},{"string":"#% уменьшение области действия Грозового взрыва","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3961497709"]}}} +{"ref":"#% increased Storm Burst Damage","better":1,"matchers":[{"string":"#% увеличение урона Грозового взрыва"},{"string":"#% уменьшение урона Грозового взрыва","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2948719994"]}}} +{"ref":"#% increased Storm Call Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Призыва бури"},{"string":"#% уменьшение области действия Призыва бури","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2070247068"]}}} +{"ref":"#% increased Storm Call Damage","better":1,"matchers":[{"string":"#% увеличение урона Призыва бури"},{"string":"#% уменьшение урона Призыва бури","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3359777583"]}}} +{"ref":"#% increased Storm Rain Damage","better":1,"matchers":[{"string":"#% увеличение урона Грозового дождя"},{"string":"#% уменьшение урона Грозового дождя","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1463790510"]}}} +{"ref":"#% increased Strength","better":1,"matchers":[{"string":"#% повышение силы"},{"string":"#% снижение силы","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_734614379"],"implicit":["implicit.stat_734614379"],"fractured":["fractured.stat_734614379"],"scourge":["scourge.stat_734614379"]}}} +{"ref":"#% increased Strength Requirement","better":1,"matchers":[{"string":"Нет требований к силе","value":-100},{"string":"#% увеличение требований к силе"},{"string":"#% снижение требований к силе","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_295075366"]}}} +{"ref":"#% increased Stun and Block Recovery","better":1,"matchers":[{"string":"#% ускорение восстановления после оглушения и блока"},{"string":"#% замедление восстановления после оглушения и блока","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2511217560"],"implicit":["implicit.stat_2511217560"],"fractured":["fractured.stat_2511217560"],"scourge":["scourge.stat_2511217560"]}}} +{"ref":"#% increased Stun Duration on Enemies","better":1,"matchers":[{"string":"#% увеличение длительности оглушения на врагах"},{"string":"#% уменьшение длительности оглушения на врагах","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2517001139"],"implicit":["implicit.stat_2517001139"],"fractured":["fractured.stat_2517001139"],"scourge":["scourge.stat_2517001139"],"crafted":["crafted.stat_2517001139"]}}} +{"ref":"#% increased Stun Duration on you","better":1,"matchers":[{"string":"#% увеличение длительности оглушения на вас"},{"string":"#% уменьшение длительности оглушения на вас","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1067429236"]}}} +{"ref":"#% increased Stun Duration with Melee Weapons","better":1,"matchers":[{"string":"#% увеличение длительности оглушения оружием ближнего боя"},{"string":"#% уменьшение длительности оглушения оружием ближнего боя","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2912587137"]}}} +{"ref":"#% increased Stun Threshold","better":1,"matchers":[{"string":"#% повышение порога оглушения"},{"string":"#% снижение порога оглушения","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_680068163"],"implicit":["implicit.stat_680068163"],"fractured":["fractured.stat_680068163"]}}} +{"ref":"#% increased Suffix Modifier magnitudes","better":1,"matchers":[{"string":"#% повышение значений свойств-суффиксов"},{"string":"#% снижение значений свойств-суффиксов","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1033086302"]}}} +{"ref":"#% increased Summon Reaper Cooldown Recovery Rate","better":1,"matchers":[{"string":"#% повышение скорости перезарядки Призыва Жнеца"},{"string":"#% снижение скорости перезарядки Призыва Жнеца","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_82475304"]}}} +{"ref":"#% increased Sweep Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Кругового взмаха"},{"string":"#% уменьшение области действия Кругового взмаха","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4202548383"]}}} +{"ref":"#% increased Sweep Damage","better":1,"matchers":[{"string":"#% увеличение урона Кругового взмаха"},{"string":"#% уменьшение урона Кругового взмаха","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_253870897"]}}} +{"ref":"#% increased Taunt Duration","better":1,"matchers":[{"string":"#% увеличение длительности провокации"},{"string":"#% уменьшение длительности провокации","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3651611160"]}}} +{"ref":"#% increased Tempest Shield Damage","better":1,"matchers":[{"string":"#% увеличение урона Щита бури"},{"string":"#% уменьшение урона Щита бури","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2121581717"]}}} +{"ref":"#% increased Temporal Chains Curse Effect","better":1,"matchers":[{"string":"#% усиление эффекта проклятия Пут времени"},{"string":"#% ослабление эффекта проклятия Пут времени","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1662974426"],"enchant":["enchant.stat_1662974426"]}}} +{"ref":"#% increased Temporal Chains Duration","better":1,"matchers":[{"string":"#% увеличение длительности Пут времени"},{"string":"#% уменьшение длительности Пут времени","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_888039248"]}}} +{"ref":"#% increased time before Lockdown","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"#% увеличение времени до изоляции"},{"string":"#% уменьшение времени до изоляции","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2435922859","explicit.stat_4004160031"],"fractured":["fractured.stat_2435922859"],"enchant":["enchant.stat_429193272"]}}} +{"ref":"#% increased Tornado Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Торнадо"},{"string":"#% уменьшение области действия Торнадо","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1866415366"]}}} +{"ref":"#% increased Tornado Damage","better":1,"matchers":[{"string":"#% увеличение урона Торнадо"},{"string":"#% уменьшение урона Торнадо","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2681941384"]}}} +{"ref":"#% increased Tornado Shot Critical Strike Chance","better":1,"matchers":[{"string":"#% повышение шанса критического удара Вихря стрел"},{"string":"#% снижение шанса критического удара Вихря стрел","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1815368527"]}}} +{"ref":"#% increased Tornado Shot Damage","better":1,"matchers":[{"string":"#% увеличение урона Вихря стрел"},{"string":"#% уменьшение урона Вихря стрел","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3555919553"]}}} +{"ref":"#% increased Total Heist Fee","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"#% повышение итоговой стоимости Кражи"},{"string":"#% снижение итоговой стоимости Кражи","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_553402472"],"fractured":["fractured.stat_553402472"]}}} +{"ref":"#% increased total Recovery per second from Life Leech","better":1,"matchers":[{"string":"#% увеличение итогового восстановления в секунду от похищения здоровья"},{"string":"#% уменьшение итогового восстановления в секунду от похищения здоровья","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2633745731"],"implicit":["implicit.stat_2633745731"],"fractured":["fractured.stat_2633745731"],"enchant":["enchant.stat_2633745731"]}}} +{"ref":"#% increased total Recovery per second from Life, Mana, or Energy Shield Leech","better":1,"matchers":[{"string":"#% увеличение итогового восстановления в секунду от похищения здоровья, маны или энергетического щита"},{"string":"#% уменьшение итогового восстановления в секунду от похищения здоровья, маны или энергетического щита","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2314393054"]}}} +{"ref":"#% increased total Recovery per second from Mana Leech","better":1,"matchers":[{"string":"#% увеличение итогового восстановления в секунду от похищения маны"},{"string":"#% уменьшение итогового восстановления в секунду от похищения маны","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_690135178"],"implicit":["implicit.stat_690135178"],"enchant":["enchant.stat_690135178"]}}} +{"ref":"#% increased Totem Damage","better":1,"matchers":[{"string":"#% увеличение урона тотемов"},{"string":"#% уменьшение урона тотемов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3851254963"],"fractured":["fractured.stat_3851254963"]}}} +{"ref":"#% increased Totem Damage per 10 Devotion","better":1,"matchers":[{"string":"#% увеличение урона тотемами за каждые 10 набожности"},{"string":"#% уменьшение урона тотемами за каждые 10 набожности","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2566390555"]}}} +{"ref":"#% increased Totem Duration","better":1,"matchers":[{"string":"#% увеличение времени существования тотема"},{"string":"#% уменьшение времени существования тотема","negate":true}],"trade":{"ids":{"scourge":["scourge.stat_2357996603"]}}} +{"ref":"#% increased Totem Life","better":1,"matchers":[{"string":"#% увеличение здоровья тотема"},{"string":"#% уменьшение здоровья тотема","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_686254215"],"fractured":["fractured.stat_686254215"],"scourge":["scourge.stat_686254215"]}}} +{"ref":"#% increased Totem Life per 10 Strength Allocated in Radius","better":1,"matchers":[{"string":"#% увеличение здоровья тотемов за каждые 10 силы в радиусе"},{"string":"#% уменьшение здоровья тотемов за каждые 10 силы в радиусе","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_747037697"]}}} +{"ref":"#% increased Totem Placement speed","better":1,"matchers":[{"string":"#% повышение скорости установки тотемов"},{"string":"#% снижение скорости установки тотемов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3374165039"],"implicit":["implicit.stat_3374165039"],"fractured":["fractured.stat_3374165039"],"enchant":["enchant.stat_3374165039"],"scourge":["scourge.stat_3374165039"],"crafted":["crafted.stat_3374165039"]}}} +{"ref":"#% increased Trap and Mine Throwing Speed","better":1,"matchers":[{"string":"#% повышение скорости броска ловушки и мины"},{"string":"#% снижение скорости броска ловушки и мины","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_464535071"],"fractured":["fractured.stat_464535071"]}}} +{"ref":"#% increased Trap Damage","better":1,"matchers":[{"string":"#% увеличение урона от ловушек"},{"string":"#% уменьшение урона от ловушек","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2941585404"],"fractured":["fractured.stat_2941585404"],"crafted":["crafted.stat_2941585404"]}}} +{"ref":"#% increased Trap Disarmament Experience gained","better":1,"matchers":[{"string":"#% увеличение получаемого Разминированием опыта"},{"string":"#% уменьшение получаемого Разминированием опыта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_502047644"],"fractured":["fractured.stat_502047644"]}}} +{"ref":"#% increased Trap Disarmament speed","better":1,"matchers":[{"string":"#% повышение скорости использования Разминирования"},{"string":"#% снижение скорости использования Разминирования","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1579578270"],"implicit":["implicit.stat_1579578270"],"fractured":["fractured.stat_1579578270"]}}} +{"ref":"#% increased Trap Duration","better":1,"matchers":[{"string":"#% увеличение времени существования ловушки"},{"string":"#% снижение времени существования ловушки","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2001530951"],"fractured":["fractured.stat_2001530951"]}}} +{"ref":"#% increased Trap Throwing Speed","better":1,"matchers":[{"string":"#% повышение скорости броска ловушки"},{"string":"#% снижение скорости броска ловушки","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_118398748"],"implicit":["implicit.stat_118398748"],"fractured":["fractured.stat_118398748"],"scourge":["scourge.stat_118398748"],"crafted":["crafted.stat_118398748"]}}} +{"ref":"#% increased Trap Trigger Area of Effect","better":1,"matchers":[{"string":"#% увеличение области срабатывания ловушки"},{"string":"#% уменьшение области срабатывания ловушки","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_497716276"]}}} +{"ref":"#% increased Travel Fee","better":-1,"matchers":[{"string":"#% повышение стоимости перемещения"},{"string":"#% снижение стоимости перемещения","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2904116257"],"fractured":["fractured.stat_2904116257"]}}} +{"ref":"#% increased Unearth Cast Speed","better":1,"matchers":[{"string":"#% повышение скорости сотворения Эксгумации"},{"string":"#% снижение скорости сотворения Эксгумации","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2387717928"]}}} +{"ref":"#% increased Unearth Damage","better":1,"matchers":[{"string":"#% повышение урона Эксгумации"},{"string":"#% снижение урона Эксгумации","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3953599026"]}}} +{"ref":"#% increased Unveiled Modifier magnitudes","better":1,"matchers":[{"string":"#% повышение значений раскрытых свойств"}],"trade":{"ids":{"explicit":["explicit.stat_586037801"]}}} +{"ref":"#% increased Vaal Skill Critical Strike Chance","better":1,"matchers":[{"string":"#% повышение шанса критического удара умений ваал"},{"string":"#% снижение шанса критического удара умений ваал","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3165492062"],"implicit":["implicit.stat_3165492062"],"fractured":["fractured.stat_3165492062"]}}} +{"ref":"#% increased Vaal Skill Effect Duration","better":1,"matchers":[{"string":"#% увеличение длительности эффекта умений ваал"},{"string":"#% уменьшение длительности эффекта умений ваал","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_547412107"],"implicit":["implicit.stat_547412107"],"fractured":["fractured.stat_547412107"]}}} +{"ref":"#% increased Valour gained","better":1,"matchers":[{"string":"#% увеличение количества получаемых зарядов доблести"},{"string":"#% уменьшение количества получаемых зарядов доблести","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1050359418"]}}} +{"ref":"#% increased Vampiric Link Duration","better":1,"matchers":[{"string":"#% увеличение длительности Иссушающей связи"},{"string":"#% уменьшение длительности Иссушающей связи","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1238426677"]}}} +{"ref":"#% increased Vengeance Damage","better":1,"matchers":[{"string":"#% увеличение урона Отмщения"},{"string":"#% уменьшение урона Отмщения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1972101281"]}}} +{"ref":"#% increased Vigilant Strike Damage","better":1,"matchers":[{"string":"#% увеличение урона Расчётливого удара"},{"string":"#% уменьшение урона Расчётливого удара","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2287764959"]}}} +{"ref":"#% increased Viper Strike Critical Strike Chance","better":1,"matchers":[{"string":"Удар гадюки имеет #% повышение шанса критического удара"},{"string":"Удар гадюки имеет #% снижение шанса критического удара","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3734756042"]}}} +{"ref":"#% increased Viper Strike Damage","better":1,"matchers":[{"string":"#% увеличение урона Удара гадюки"},{"string":"#% уменьшение урона Удара гадюки","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2585271359"]}}} +{"ref":"#% increased Viper Strike Duration","better":1,"matchers":[{"string":"#% увеличение длительности Удара гадюки"},{"string":"#% уменьшение длительности Удара гадюки","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3869217625"]}}} +{"ref":"#% increased Volatile Dead Cast Speed","better":1,"matchers":[{"string":"#% повышение скорости сотворения Нестабильного трупа"},{"string":"#% снижение скорости сотворения Нестабильного трупа","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3179781611"]}}} +{"ref":"#% increased Volatile Dead Damage","better":1,"matchers":[{"string":"#% увеличение урона Нестабильного трупа"},{"string":"#% уменьшение урона Нестабильного трупа","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1212590278"]}}} +{"ref":"#% increased Voltaxic Burst Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Вольтаксовой вспышки"},{"string":"#% уменьшение области действия Вольтаксовой вспышки","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2982851186"]}}} +{"ref":"#% increased Voltaxic Burst Damage","better":1,"matchers":[{"string":"#% увеличение урона Вольтаксовой вспышки"},{"string":"#% кменьшение урона Вольтаксовой вспышки","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2913890852"]}}} +{"ref":"#% increased Vortex Damage","better":1,"matchers":[{"string":"#% увеличение урона Пурги"},{"string":"#% уменьшение урона Пурги","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_200942664"]}}} +{"ref":"#% increased Vortex Duration","better":1,"matchers":[{"string":"#% увеличение длительности Пурги"},{"string":"#% уменьшение длительности Пурги","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4074562940"]}}} +{"ref":"#% increased Vulnerability Curse Effect","better":1,"matchers":[{"string":"#% усиление эффекта проклятия Беззащитности"},{"string":"#% ослабление эффекта проклятия Беззащитности","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1065909420"],"enchant":["enchant.stat_1065909420"]}}} +{"ref":"#% increased Vulnerability Duration","better":1,"matchers":[{"string":"#% увеличение длительности Беззащитности"},{"string":"#% уменьшение длительности Беззащитности","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3229878341"]}}} +{"ref":"#% increased Warcry Buff Effect","better":1,"matchers":[{"string":"#% усиление положительного эффекта боевого клича"},{"string":"#% ослабление положительного эффекта боевого клича","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3037553757"],"implicit":["implicit.stat_3037553757"],"fractured":["fractured.stat_3037553757"],"crafted":["crafted.stat_3037553757"]}}} +{"ref":"#% increased Warcry Cooldown Recovery Rate","better":1,"matchers":[{"string":"#% повышение скорости перезарядки боевых кличей"},{"string":"#% снижение скорости перезарядки боевых кличей","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4159248054"],"fractured":["fractured.stat_4159248054"]}}} +{"ref":"#% increased Warcry Speed","better":1,"matchers":[{"string":"#% повышение скорости применения боевых кличей"},{"string":"#% снижение скорости применения боевых кличей","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1316278494"],"implicit":["implicit.stat_1316278494"],"fractured":["fractured.stat_1316278494"],"scourge":["scourge.stat_1316278494"],"crafted":["crafted.stat_1316278494"]}}} +{"ref":"#% increased Ward","better":1,"matchers":[{"string":"#% увеличение барьера"},{"string":"#% уменьшение барьера","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_830161081"],"fractured":["fractured.stat_830161081"]}}} +{"ref":"#% increased Ward during Effect","better":1,"matchers":[{"string":"#% увеличение барьера во время действия эффекта"},{"string":"#% уменьшение барьера во время действия эффекта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2891175306"],"fractured":["fractured.stat_2891175306"]}}} +{"ref":"#% increased Warlord's Mark Curse Effect","better":1,"matchers":[{"string":"#% усиление эффекта проклятия Метки вождя"},{"string":"#% ослабление эффекта проклятия Метки вождя","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1528965411"]}}} +{"ref":"#% increased Whirling Blades Attack Speed","better":1,"matchers":[{"string":"#% повышение скорости атаки Шквала клинков"},{"string":"#% снижение скорости атаки Шквала клинков","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1902197291"]}}} +{"ref":"#% increased Whirling Blades Damage","better":1,"matchers":[{"string":"#% увеличение урона Шквала клинков"},{"string":"#% уменьшение урона Шквала клинков","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3723124286"]}}} +{"ref":"#% increased Wild Strike Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Шального удара"},{"string":"#% уменьшение области действия Шального удара","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_524936200"]}}} +{"ref":"#% increased Wild Strike Damage","better":1,"matchers":[{"string":"#% увеличение урона Шального удара"},{"string":"#% уменьшение урона Шального удара","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1666713639"]}}} +{"ref":"#% less Animate Weapon Duration","better":-1,"matchers":[{"string":"#% more Animate Weapon Duration"},{"string":"#% less Animate Weapon Duration","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_414991155"]},"inverted":true}} +{"ref":"#% less Critical Strike Chance","better":-1,"matchers":[{"string":"На #% больше шанса критического удара"},{"string":"На #% меньше шанса критического удара","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4181057577"]},"inverted":true}} +{"ref":"#% less Damage taken if you have not been Hit Recently","better":-1,"matchers":[{"string":"На #% больше получаемого урона, если вы недавно не получали удар"},{"string":"На #% меньше получаемого урона, если вы недавно не получали удар","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_67637087"]},"inverted":true}} +{"ref":"#% less effect of Curses on Monsters","better":-1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Эффект от проклятий на монстрах на #% больше"},{"string":"Эффект от проклятий на монстрах на #% меньше","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3796523155"],"fractured":["fractured.stat_3796523155"]},"inverted":true}} +{"ref":"#% less Mine Damage","better":-1,"matchers":[{"string":"На #% больше урона от мин"},{"string":"На #% меньше урона от мин","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3298440988"]},"inverted":true}} +{"ref":"#% less Minimum Physical Attack Damage","better":1,"matchers":[{"string":"На #% больше минимума физического урона от атак"},{"string":"На #% меньше минимума физического урона от атак","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1715495976"]},"inverted":true}} +{"ref":"#% less Poison Duration","better":-1,"matchers":[{"string":"Длительность яда на #% больше"},{"string":"Длительность яда на #% меньше","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1237693206"]},"inverted":true}} +{"ref":"#% more Accuracy Rating","better":1,"matchers":[{"string":"На #% больше меткости"},{"string":"На #% меньше меткости","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_170394517"]}}} +{"ref":"#% more Attack Speed","better":1,"matchers":[{"string":"На #% больше скорости атаки"},{"string":"На #% меньше скорости атаки","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2418322751"]}}} +{"ref":"#% more Burning Damage","better":1,"matchers":[{"string":"На #% больше урона от горения"},{"string":"На #% меньше урона от горения","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3134513219"]}}} +{"ref":"#% more Critical Strike chance while affected by Precision","better":1,"matchers":[{"string":"На #% больше шанс критического удара под действием Точности"},{"string":"На #% меньше шанс критического удара под действием Точности","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2617837023"]}}} +{"ref":"#% more Critical Strike Chance while Insane","better":1,"matchers":[{"string":"На #% больше шанса критического удара во время безумия"},{"string":"На #% меньше шанса критического удара во время безумия","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2692289207"]}}} +{"ref":"#% more Damage","better":1,"matchers":[{"string":"На #% больше урона"},{"string":"На #% меньше урона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_412462523"]}}} +{"ref":"#% more Damage with Arrow Hits at Close Range","better":1,"matchers":[{"string":"На #% больше урона от ударов стрелами с близкого расстояния"}],"trade":{"ids":{"explicit":["explicit.stat_2749166636"]}}} +{"ref":"#% more Damage with Arrow Hits at Close Range while you have Iron Reflexes","better":1,"matchers":[{"string":"На #% больше урона ударами от стрел с близкого расстояния, пока на вас действуют Стальные нервы"}],"trade":{"ids":{"explicit":["explicit.stat_304032021"]}}} +{"ref":"#% more Duration","better":1,"matchers":[{"string":"На #% больше длительности"},{"string":"На #% меньше длительности","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1506355899"],"fractured":["fractured.stat_1506355899"]}}} +{"ref":"#% more Effect of your Curses","better":1,"matchers":[{"string":"На #% сильнее эффект ваших проклятий"},{"string":"На #% слабее эффект ваших проклятий","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4106109768"]}}} +{"ref":"#% more Elemental Damage taken per Raised Zombie","better":1,"matchers":[{"string":"На #% больше получаемого урона от стихий за каждого поднятого зомби"},{"string":"На #% меньше получаемого урона от стихий за каждого поднятого зомби","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_512740886"]}}} +{"ref":"#% more Energy Shield Recharge Rate","better":1,"matchers":[{"string":"На #% больше скорости перезарядки энергетического щита"},{"string":"На #% меньше скорости перезарядки энергетического щита","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3432301333"]}}} +{"ref":"#% more Flask Charges gained from Kills","better":1,"matchers":[{"string":"На #% больше получаемых зарядов флакона за убийства"},{"string":"На #% меньше получаемых зарядов флакона за убийства","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3790386828","explicit.stat_624257168"]}}} +{"ref":"#% more Ignite Duration","better":1,"matchers":[{"string":"Длительность поджога на #% больше"},{"string":"Длительность поджога на #% меньше","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2614885550"]}}} +{"ref":"#% more Main Hand attack speed","better":1,"matchers":[{"string":"На #% больше скорости атаки оружием в правой руке"},{"string":"На #% меньше скорости атаки оружием в правой руке","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_56401364"]}}} +{"ref":"#% more Maximum Life","better":1,"matchers":[{"string":"На #% больше максимума здоровья"},{"string":"На #% меньше максимума здоровья","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2783958145"]}}} +{"ref":"#% more Maximum Physical Attack Damage","better":1,"matchers":[{"string":"На #% больше максимума физического урона от атак"},{"string":"На #% меньше максимума физического урона от атак","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3029185248"]}}} +{"ref":"#% more Melee Physical Damage during effect","better":1,"matchers":[{"string":"На #% больше физического урона в ближнем бою во время эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_3636096208"]}}} +{"ref":"#% more Monster Life","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"На #% больше здоровья монстров"},{"string":"На #% меньше здоровья монстров","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2710898947","explicit.stat_95249895"],"implicit":["implicit.stat_95249895"],"fractured":["fractured.stat_95249895"],"enchant":["enchant.stat_3026134008"]}}} +{"ref":"#% more Physical and Chaos Damage Taken while Sane","better":1,"matchers":[{"string":"На #% больше получаемого физического урона и урона хаосом в Здравом уме"},{"string":"На #% меньше получаемого физического урона и урона хаосом в Здравом уме","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_388639924"]}}} +{"ref":"#% more Physical Damage with Unarmed Melee Attacks","better":1,"matchers":[{"string":"На #% больше физического урона атаками ближнего боя без оружия"},{"string":"На #% меньше физического урона атаками ближнего боя без оружия","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1814782245"]}}} +{"ref":"#% more Power Charge Duration","better":1,"matchers":[{"string":"На #% больше длительности заряда энергии"},{"string":"На #% меньше длительности заряда энергии","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2625134410"]}}} +{"ref":"#% more Recovery if used while on Low Life","better":1,"matchers":[{"string":"На #% больше восстановления, если используется при малом количестве здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_886931978"],"fractured":["fractured.stat_886931978"]}}} +{"ref":"#% more Rogue's Marker value of primary Heist Target","better":1,"matchers":[{"string":"На #% больше ценность основной цели ограбления в жетонах контрабандиста"},{"string":"На #% меньше ценность основной цели ограбления в жетонах контрабандиста","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3009603087"]}}} +{"ref":"#% more Ward during Effect","better":1,"matchers":[{"string":"На #% больше барьера во время действия эффекта"},{"string":"На #% меньше барьера во время действия эффекта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3615541554"]}}} +{"ref":"#% of Armour applies to Fire, Cold and Lightning Damage taken from Hits","better":1,"matchers":[{"string":"#% брони применяется к получаемому урону от огня, холода и молнии от ударов"}],"trade":{"ids":{"explicit":["explicit.stat_3362812763"]}}} +{"ref":"#% of Attack Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"#% урона от атак похищается в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_141810208"],"implicit":["implicit.stat_141810208"]}}} +{"ref":"#% of Attack Damage Leeched as Life against Bleeding Enemies","dp":true,"better":1,"matchers":[{"string":"#% урона от атак по истекающим кровью врагам похищается в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_1625933063"]}}} +{"ref":"#% of Attack Damage Leeched as Life against Chilled Enemies","dp":true,"better":1,"matchers":[{"string":"#% урона от атак охлаждённым врагам похищается в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_748813744"]}}} +{"ref":"#% of Attack Damage Leeched as Life against Maimed Enemies","dp":true,"better":1,"matchers":[{"string":"#% урона от атак по изувеченным врагам похищается в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_447636597"]}}} +{"ref":"#% of Attack Damage Leeched as Life against Taunted Enemies","dp":true,"better":1,"matchers":[{"string":"#% урона от атак по спровоцированным врагам похищается в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_3750917270"]}}} +{"ref":"#% of Attack Damage Leeched as Life and Mana if you've Killed Recently","dp":true,"better":1,"matchers":[{"string":"#% урона от атак похищается в виде здоровья или маны, если вы недавно совершали убийство"}],"trade":{"ids":{"explicit":["explicit.stat_2770801535"]}}} +{"ref":"#% of Attack Damage Leeched as Life during Effect","dp":true,"better":1,"matchers":[{"string":"#% от урона от атак похищается в виде здоровья во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_1173558568"],"fractured":["fractured.stat_1173558568"]}}} +{"ref":"#% of Attack Damage Leeched as Life on Critical Strike","dp":true,"better":1,"matchers":[{"string":"#% урона от атак похищается в виде здоровья при нанесении критического удара"}],"trade":{"ids":{"explicit":["explicit.stat_2100196861"]}}} +{"ref":"#% of Attack Damage Leeched as Life per Frenzy Charge","dp":true,"better":1,"matchers":[{"string":"#% от урона от атак похищается в виде здоровья за заряд ярости"}],"trade":{"ids":{"explicit":["explicit.stat_3243062554"]}}} +{"ref":"#% of Attack Damage Leeched as Mana","dp":true,"better":1,"matchers":[{"string":"#% урона от атак похищается в виде маны"}],"trade":{"ids":{"explicit":["explicit.stat_350069479"],"implicit":["implicit.stat_350069479"]}}} +{"ref":"#% of Attack Damage Leeched as Mana against Poisoned Enemies","dp":true,"better":1,"matchers":[{"string":"#% урона от атак по отравленным врагам похищается в виде маны"}],"trade":{"ids":{"explicit":["explicit.stat_3067409450"]}}} +{"ref":"#% of Attack Damage Leeched as Mana per Power Charge","dp":true,"better":1,"matchers":[{"string":"#% урона от атак похищается в виде маны за заряд энергии"}],"trade":{"ids":{"explicit":["explicit.stat_2628721358"]}}} +{"ref":"#% of Burning Arrow Physical Damage gained as Extra Fire Damage","better":1,"matchers":[{"string":"Горящая стрела наносит #% от физического урона в виде дополнительного урона от огня"}],"trade":{"ids":{"enchant":["enchant.stat_3229580299"]}}} +{"ref":"#% of Chaos Damage is taken from Mana before Life","better":1,"matchers":[{"string":"#% от урона хаосом берется сначала из маны вместо здоровья"},{"string":"Урон хаосом берется сначала из маны вместо здоровья","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3967028570"]}}} +{"ref":"#% of Chaos Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"#% урона хаосом похищается в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_744082851"],"implicit":["implicit.stat_2238792070","implicit.stat_744082851"],"fractured":["fractured.stat_744082851"],"scourge":["scourge.stat_744082851"]}}} +{"ref":"#% of Chaos Damage Leeched as Life during Effect","dp":true,"better":1,"matchers":[{"string":"#% от урона хаосом похищается в виде здоровья во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_1341148741"]}}} +{"ref":"#% of Chaos Damage Leeched by Enemy as Life","dp":true,"better":1,"matchers":[{"string":"#% нанесенного врагом урона хаосом похищается в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_334180828"],"fractured":["fractured.stat_334180828"]}}} +{"ref":"#% of Chaos Damage taken does not bypass Energy Shield","better":1,"matchers":[{"string":"#% получаемого урона хаосом не обходит энергетический щит"}],"trade":{"ids":{"explicit":["explicit.stat_1865744989"]}}} +{"ref":"#% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire","better":1,"matchers":[{"string":"Получает #% урона от холода и молнии в виде урона от огня под действием Спасения от огня"}],"trade":{"ids":{"explicit":["explicit.stat_1723738042"]}}} +{"ref":"#% of Cold Damage Converted to Fire Damage","better":1,"matchers":[{"string":"#% урона от холода становится уроном от огня"}],"trade":{"ids":{"explicit":["explicit.stat_723832351"]}}} +{"ref":"#% of Cold Damage from Hits taken as Fire Damage","better":1,"matchers":[{"string":"#% получаемого урона от холода от ударов становится уроном от огня"}],"trade":{"ids":{"implicit":["implicit.stat_1189760108"]}}} +{"ref":"#% of Cold Damage from Hits taken as Lightning Damage","better":1,"matchers":[{"string":"#% получаемого урона от холода от ударов становится уроном от молнии"}],"trade":{"ids":{"implicit":["implicit.stat_1313503107"]}}} +{"ref":"#% of Cold Damage Leeched as Energy Shield","dp":true,"better":1,"matchers":[{"string":"#% урона от холода похищается в виде энергетического щита"}],"trade":{"ids":{"explicit":["explicit.stat_1939452467"],"fractured":["fractured.stat_1939452467"]}}} +{"ref":"#% of Cold Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"#% урона от холода похищается в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_3999401129"],"implicit":["implicit.stat_2459451600","implicit.stat_3999401129"],"fractured":["fractured.stat_3999401129"],"scourge":["scourge.stat_3999401129"],"crafted":["crafted.stat_3999401129"]}}} +{"ref":"#% of Cold Damage Leeched by Enemy as Life","dp":true,"better":1,"matchers":[{"string":"#% нанесенного врагом урона от холода похищается в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_3271464175"],"fractured":["fractured.stat_3271464175"]}}} +{"ref":"#% of Cold Damage taken as Fire Damage","better":1,"matchers":[{"string":"#% получаемого урона от холода становится уроном от огня"}],"trade":{"ids":{"explicit":["explicit.stat_1642347505"]}}} +{"ref":"#% of Cold Damage taken as Lightning Damage","better":1,"matchers":[{"string":"#% получаемого урона от холода становится уроном от молнии"}],"trade":{"ids":{"explicit":["explicit.stat_2881210047"]}}} +{"ref":"#% of Cold Damage taken Recouped as Life","better":1,"matchers":[{"string":"#% полученного урона от холода восполняется в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_3679418014"],"implicit":["implicit.stat_3679418014"]}}} +{"ref":"#% of Damage against Frozen Enemies Leeched as Life","dp":true,"better":1,"matchers":[{"string":"#% урона замороженным врагам похищается в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_593279674"]}}} +{"ref":"#% of Damage dealt by your Mines is Leeched to you as Life","dp":true,"better":1,"matchers":[{"string":"#% урона от ваших мин похищается вами в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_807450540"]}}} +{"ref":"#% of Damage dealt by your Totems is Leeched to you as Life","dp":true,"better":1,"matchers":[{"string":"#% от урона, нанесенного вашими тотемами, похищается вами в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_3812562802"]}}} +{"ref":"#% of Damage from Hits is taken from your nearest Totem's Life before you","better":1,"matchers":[{"string":"#% получаемого урона от ударов берется из здоровья вашего ближайшего тотема"}],"trade":{"ids":{"explicit":["explicit.stat_2762445213"]}}} +{"ref":"#% of Damage from Hits is taken from your Spectres' Life before you","better":1,"matchers":[{"string":"#% от урона от ударов берется из здоровья ваших призраков вместо вашего"}],"trade":{"ids":{"explicit":["explicit.stat_54812069"]}}} +{"ref":"#% of Damage is taken from Mana before Life","better":1,"matchers":[{"string":"#% от получаемого урона берется сначала из маны вместо здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_458438597"],"implicit":["implicit.stat_458438597"]}}} +{"ref":"#% of Damage is taken from Mana before Life per Power Charge","better":1,"matchers":[{"string":"#% от получаемого урона берется сначала из маны вместо здоровья за заряд энергии"}],"trade":{"ids":{"explicit":["explicit.stat_1325047894"]}}} +{"ref":"#% of Damage is taken from Mana before Life while Focused","better":1,"matchers":[{"string":"Пока вы сфокусированы, #% урона берется сначала из маны вместо здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_1588539856"],"fractured":["fractured.stat_1588539856"],"crafted":["crafted.stat_1588539856"]}}} +{"ref":"#% of Damage Leeched as Energy Shield","dp":true,"better":1,"matchers":[{"string":"#% от урона похищается в виде энергетического щита"}],"trade":{"ids":{"explicit":["explicit.stat_4201339891"]}}} +{"ref":"#% of Damage Leeched as Energy Shield against Frozen Enemies","dp":true,"better":1,"matchers":[{"string":"#% урона по замороженным врагам похищается в виде энергетического щита"}],"trade":{"ids":{"explicit":["explicit.stat_4091709362"]}}} +{"ref":"#% of Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"#% от урона похищается в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_4069440714"]}}} +{"ref":"#% of Damage Leeched as Life against Cursed Enemies","dp":true,"better":1,"matchers":[{"string":"#% урона по проклятым врагам похищается в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_3861913659"]}}} +{"ref":"#% of Damage Leeched as Life against Shocked Enemies","dp":true,"better":1,"matchers":[{"string":"#% урона врагам, поражённых шоком, похищается в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_2614321687"]}}} +{"ref":"#% of Damage Leeched as Life for Skills used by Totems","dp":true,"better":1,"matchers":[{"string":"#% урона от умений тотемов похищается в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_2449723897"]}}} +{"ref":"#% of Damage Leeched as Life if you've Killed Recently","dp":true,"better":1,"matchers":[{"string":"#% от урона похищается в виде здоровья, если вы недавно совершали убийство"}],"trade":{"ids":{"enchant":["enchant.stat_4291115328"]}}} +{"ref":"#% of Damage Leeched as Life on Critical Strike","dp":true,"better":1,"matchers":[{"string":"#% урона похищается в виде здоровья при нанесении критического удара"}],"trade":{"ids":{"explicit":["explicit.stat_958088871"]}}} +{"ref":"#% of Damage Leeched as Life per Siphoning Charge","dp":true,"better":1,"matchers":[{"string":"#% от урона похищается в виде здоровья за заряд переливания"}],"trade":{"ids":{"explicit":["explicit.stat_1587137379"]}}} +{"ref":"#% of Damage leeched as Life while affected by Vitality","dp":true,"better":1,"matchers":[{"string":"#% от урона похищается в виде здоровья под действием Живучести"}],"trade":{"ids":{"explicit":["explicit.stat_3656959867"]}}} +{"ref":"#% of Damage Leeched as Life while Focused","dp":true,"better":1,"matchers":[{"string":"#% урона похищается в виде здоровья, пока вы сфокусированы"}],"trade":{"ids":{"explicit":["explicit.stat_3324747104"],"fractured":["fractured.stat_3324747104"],"crafted":["crafted.stat_3324747104"]}}} +{"ref":"#% of Damage Leeched as Life while you have at least 5 total Endurance, Frenzy and Power Charges","dp":true,"better":1,"matchers":[{"string":"#% от урона похищается в виде здоровья, пока у вас есть суммарно минимум 5 зарядов выносливости, ярости или энергии"}],"trade":{"ids":{"explicit":["explicit.stat_1526625193"]}}} +{"ref":"#% of Damage Leeched as Mana against Frozen Enemies","dp":true,"better":1,"matchers":[{"string":"#% от урона по замороженным врагам похищается в виде маны"}],"trade":{"ids":{"explicit":["explicit.stat_2908111053"]}}} +{"ref":"#% of Damage Players' Totems take from Hits is taken from their Summoner's Life instead","better":1,"fromUberAreaMods":true,"matchers":[{"string":"#% от получаемого тотемами игроков урона от ударов берется из здоровья их призывателя"}],"trade":{"ids":{"explicit":["explicit.stat_297552946"],"fractured":["fractured.stat_297552946"]}}} +{"ref":"#% of Damage taken bypasses Ward","better":1,"matchers":[{"string":"#% получаемого урона обходит барьер"}],"trade":{"ids":{"explicit":["explicit.stat_3000966016"]}}} +{"ref":"#% of Damage Taken from Hits is Leeched as Life during Effect","dp":true,"better":1,"matchers":[{"string":"Во время действия эффекта #% полученного урона от ударов похищается в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_3824033729"],"crafted":["crafted.stat_3824033729"]}}} +{"ref":"#% of Damage taken from Mana before Life while affected by Clarity","better":1,"matchers":[{"string":"Под действием Ясности ума #% от получаемого урона берется сначала из маны вместо здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_2383304564"]}}} +{"ref":"#% of Damage taken from Stunning Hits is Recovered as Life","better":1,"matchers":[{"string":"#% получаемого урона от оглушающих ударов восстанавливается в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_3913936991"]}}} +{"ref":"#% of Damage taken Recouped as Life","better":1,"matchers":[{"string":"#% полученного урона восполняется в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_1444556985"],"implicit":["implicit.stat_1444556985"],"fractured":["fractured.stat_1444556985"],"scourge":["scourge.stat_1444556985"]}}} +{"ref":"#% of Damage taken Recouped as Mana","better":1,"matchers":[{"string":"#% полученного урона восполняется в виде маны"}],"trade":{"ids":{"explicit":["explicit.stat_472520716"],"implicit":["implicit.stat_472520716"],"fractured":["fractured.stat_472520716"],"enchant":["enchant.stat_472520716"],"crafted":["crafted.stat_472520716"]}}} +{"ref":"#% of Damage taken while affected by Clarity Recouped as Mana","better":1,"matchers":[{"string":"Под действием Ясности ума #% полученного урона восполняется в виде маны"}],"trade":{"ids":{"explicit":["explicit.stat_380220671"]}}} +{"ref":"#% of Damage you Reflect to Enemies when Hit is leeched as Life","better":1,"matchers":[{"string":"#% от урона, который вы отражаете во врагов при получении удара, похищается в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_743992531"]}}} +{"ref":"#% of Elemental Damage from Hits taken as Chaos Damage","better":1,"matchers":[{"string":"#% получаемого урона от стихий от ударов становится уроном хаосом"}],"trade":{"ids":{"explicit":["explicit.stat_1175213674"]}}} +{"ref":"#% of Elemental Damage from Hits taken as Physical Damage","better":1,"matchers":[{"string":"#% получаемого урона от стихий становится физическим уроном"}],"trade":{"ids":{"explicit":["explicit.stat_2340750293"]}}} +{"ref":"#% of Elemental Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"#% урона от стихий похищается в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_720395808"],"implicit":["implicit.stat_720395808"]}}} +{"ref":"#% of Evasion Rating is Regenerated as Life per second while Focused","better":1,"matchers":[{"string":"Регенерация #% от уклонения в секунду в виде здоровья, пока вы сфокусированы"}],"trade":{"ids":{"explicit":["explicit.stat_3244118730"],"fractured":["fractured.stat_3244118730"],"crafted":["crafted.stat_3244118730"]}}} +{"ref":"#% of Fire and Cold Damage taken as Lightning Damage while\naffected by Purity of Lightning","better":1,"matchers":[{"string":"Получает #% урона от холода и огня в виде урона от молнии под действием Спасения от молнии"}],"trade":{"ids":{"explicit":["explicit.stat_3953667743"]}}} +{"ref":"#% of Fire and Lightning Damage from Hits taken as Cold Damage during Effect","better":1,"matchers":[{"string":"#% получаемого урона от огня и молнии от ударов становится уроном от холода во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_1349002319"]}}} +{"ref":"#% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice","better":1,"matchers":[{"string":"Получает #% урона от огня и молнии в виде урона от холода под действием Спасения от холода"}],"trade":{"ids":{"explicit":["explicit.stat_2189467271"]}}} +{"ref":"#% of Fire Damage Converted to Chaos Damage","better":1,"matchers":[{"string":"#% урона от огня становится уроном хаосом"}],"trade":{"ids":{"explicit":["explicit.stat_2731249891"],"fractured":["fractured.stat_2731249891"]}}} +{"ref":"#% of Fire Damage from Hits taken as Cold Damage","better":1,"matchers":[{"string":"#% получаемого урона от огня от ударов становится уроном от холода"}],"trade":{"ids":{"explicit":["explicit.stat_2522672898"],"implicit":["implicit.stat_2522672898"]}}} +{"ref":"#% of Fire Damage from Hits taken as Lightning Damage","better":1,"matchers":[{"string":"#% получаемого урона от огня от ударов становится уроном от молнии"}],"trade":{"ids":{"implicit":["implicit.stat_1504091975"]}}} +{"ref":"#% of Fire Damage from Hits taken as Physical Damage","better":1,"matchers":[{"string":"#% получаемого урона от огня от ударов становится физическим уроном"}],"trade":{"ids":{"explicit":["explicit.stat_1029319062","explicit.stat_3205239847"]}}} +{"ref":"#% of Fire Damage Leeched as Energy Shield","dp":true,"better":1,"matchers":[{"string":"#% урона от огня похищается в виде энергетического щита"}],"trade":{"ids":{"explicit":["explicit.stat_3885409671"],"fractured":["fractured.stat_3885409671"]}}} +{"ref":"#% of Fire Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"#% урона от огня похищается в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_3848282610"],"implicit":["implicit.stat_1743742391","implicit.stat_3848282610"],"fractured":["fractured.stat_3848282610"],"scourge":["scourge.stat_3848282610"],"crafted":["crafted.stat_3848282610"]}}} +{"ref":"#% of Fire Damage Leeched as Life while affected by Anger","dp":true,"better":1,"matchers":[{"string":"#% от урона от огня похищается в виде здоровья под действием Жгучей злобы"}],"trade":{"ids":{"explicit":["explicit.stat_2312747856"]}}} +{"ref":"#% of Fire Damage Leeched as Life while Ignited","dp":true,"better":1,"matchers":[{"string":"#% урона от огня похищается в виде здоровья, если подожжён"}],"trade":{"ids":{"explicit":["explicit.stat_3633399302"]}}} +{"ref":"#% of Fire Damage Leeched by Enemy as Life","dp":true,"better":1,"matchers":[{"string":"#% нанесенного врагом урона от огня похищается в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_45548764"]}}} +{"ref":"#% of Fire Damage taken as Lightning Damage","better":1,"matchers":[{"string":"#% получаемого урона от огня становится уроном от молнии"}],"trade":{"ids":{"explicit":["explicit.stat_4142376596"]}}} +{"ref":"#% of Fire Damage taken Recouped as Life","better":1,"matchers":[{"string":"#% полученного урона от огня восполняется в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_1742651309"],"implicit":["implicit.stat_1742651309"]}}} +{"ref":"#% of Galvanic Arrow Physical Damage gained as extra Lightning Damage","better":1,"matchers":[{"string":"Дарует #% физического урона Электризующей стрелы в виде дополнительного урона от молнии"}],"trade":{"ids":{"enchant":["enchant.stat_1943147282"]}}} +{"ref":"#% of Glacial Hammer Physical Damage gained as Extra Cold Damage","better":1,"matchers":[{"string":"Леденящий молот наносит #% от физического урона в виде дополнительного урона от холода"}],"trade":{"ids":{"enchant":["enchant.stat_2555366825"]}}} +{"ref":"#% of Ice Crash Physical Damage gained as Extra Cold Damage","better":1,"matchers":[{"string":"Ледяное сокрушение наносит #% от физического урона в виде дополнительного урона от холода"}],"trade":{"ids":{"enchant":["enchant.stat_3465202861"]}}} +{"ref":"#% of Infernal Blow Physical Damage gained as Extra Fire Damage","better":1,"matchers":[{"string":"Удар преисподней наносит #% от физического урона в виде дополнительного урона от огня"}],"trade":{"ids":{"enchant":["enchant.stat_2484188706"]}}} +{"ref":"#% of Leech from Hits with this Weapon is Instant per Enemy Power","better":1,"matchers":[{"string":"#% похищения от ударов этим оружием происходит мгновенно за каждый заряд энергии"}],"trade":{"ids":{"explicit":["explicit.stat_2583648686"]}}} +{"ref":"#% of Leech is Instant","better":1,"matchers":[{"string":"#% похищения применяется мгновенно"}],"trade":{"ids":{"explicit":["explicit.stat_3561837752"]}}} +{"ref":"#% of Life Leech applies to Enemies as Chaos Damage","better":1,"matchers":[{"string":"#% похищенного здоровья наносится врагам в виде урона хаосом"}],"trade":{"ids":{"explicit":["explicit.stat_768537671"]}}} +{"ref":"#% of Life Recovery from Flasks is applied to nearby Allies instead of You","better":1,"matchers":[{"string":"#% от восстанавливаемого флаконами здоровья применяется к ближайшим союзникам вместо вас"}],"trade":{"ids":{"explicit":["explicit.stat_2264655303"],"fractured":["fractured.stat_2264655303"]}}} +{"ref":"#% of Life Regenerated per Second","better":1,"matchers":[{"string":"Регенерация #% здоровья в секунду "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_percent_life_regen"]}}} +{"ref":"#% of Life Regenerated per Second if you've dealt a Critical Strike in the past 8 seconds","better":1,"matchers":[{"string":"Регенерация #% здоровья в секунду, если вы наносили критический удар за последние 8 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_221532021"]}}} +{"ref":"#% of Life Regenerated per second per Fragile Regrowth","dp":true,"better":1,"matchers":[{"string":"Регенерация #% здоровья в секунду за каждый эффект Хрупкого восстановления"}],"trade":{"ids":{"explicit":["explicit.stat_3175722882"],"fractured":["fractured.stat_3175722882"]}}} +{"ref":"#% of Lightning Damage Converted to Chaos Damage","better":1,"matchers":[{"string":"#% урона от молнии становится уроном хаосом"}],"trade":{"ids":{"explicit":["explicit.stat_4238266823"]}}} +{"ref":"#% of Lightning Damage Converted to Cold Damage","better":1,"matchers":[{"string":"#% урона от молнии становится уроном от холода"}],"trade":{"ids":{"explicit":["explicit.stat_2158060122"]}}} +{"ref":"#% of Lightning Damage from Hits taken as Cold Damage","better":1,"matchers":[{"string":"#% получаемого урона от молнии от ударов становится уроном от холода"}],"trade":{"ids":{"implicit":["implicit.stat_1017730114"]}}} +{"ref":"#% of Lightning Damage from Hits taken as Fire Damage","better":1,"matchers":[{"string":"#% получаемого урона от молнии от ударов становится уроном от огня"}],"trade":{"ids":{"implicit":["implicit.stat_3375859421"]}}} +{"ref":"#% of Lightning Damage is Leeched as Energy Shield while affected by Wrath","dp":true,"better":1,"matchers":[{"string":"#% урона от молнии похищается в виде энергетического щита под действием Грозного гнева"}],"trade":{"ids":{"explicit":["explicit.stat_121436064"]}}} +{"ref":"#% of Lightning Damage is Leeched as Mana while affected by Wrath","dp":true,"better":1,"matchers":[{"string":"#% от урона от молнии похищается в виде маны под действием Грозного гнева"}],"trade":{"ids":{"explicit":["explicit.stat_2889601846"]}}} +{"ref":"#% of Lightning Damage is taken from Mana before Life","better":1,"matchers":[{"string":"#% урона от молнии берется сначала из маны вместо здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_2477735984"]}}} +{"ref":"#% of Lightning Damage Leeched as Energy Shield","dp":true,"better":1,"matchers":[{"string":"#% урона от молнии похищается в виде энергетического щита"}],"trade":{"ids":{"explicit":["explicit.stat_308127151"]}}} +{"ref":"#% of Lightning Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"#% урона от молнии похищается в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_80079005"],"implicit":["implicit.stat_2696663331","implicit.stat_80079005"],"fractured":["fractured.stat_80079005"],"scourge":["scourge.stat_80079005"],"crafted":["crafted.stat_80079005"]}}} +{"ref":"#% of Lightning Damage Leeched as Life during Effect","dp":true,"better":1,"matchers":[{"string":"#% урона от молнии похищается в виде здоровья во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_2687254633"]}}} +{"ref":"#% of Lightning Damage Leeched as Mana during Effect","dp":true,"better":1,"matchers":[{"string":"#% урона от молнии похищается в виде маны во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_1454377049"]}}} +{"ref":"#% of Lightning Damage Leeched by Enemy as Life","dp":true,"better":1,"matchers":[{"string":"#% нанесенного врагом урона от молнии похищается в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_3925004212"],"fractured":["fractured.stat_3925004212"]}}} +{"ref":"#% of Lightning Damage taken as Fire Damage","better":1,"matchers":[{"string":"#% получаемого урона от молнии становится уроном от огня"}],"trade":{"ids":{"explicit":["explicit.stat_1244494473"]}}} +{"ref":"#% of Lightning Damage taken Recouped as Life","better":1,"matchers":[{"string":"#% полученного урона от молнии восполняется в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_2970621759"],"implicit":["implicit.stat_2970621759"]}}} +{"ref":"#% of Maximum Life Converted to Energy Shield","better":1,"matchers":[{"string":"#% от максимума здоровья становится энергетическим щитом"}],"trade":{"ids":{"explicit":["explicit.stat_2458962764"],"fractured":["fractured.stat_2458962764"]}}} +{"ref":"#% of Maximum Life taken as Chaos Damage per second","better":1,"matchers":[{"string":"#% от максимума здоровья наносится в виде урона хаосом в секунду"}],"trade":{"ids":{"explicit":["explicit.stat_3232201443"]}}} +{"ref":"#% of Melee Physical Damage taken reflected to Attacker","better":1,"matchers":[{"string":"#% полученного физического урона в ближнем бою отражается атакующему"}],"trade":{"ids":{"explicit":["explicit.stat_1092987622"]}}} +{"ref":"#% of Non-Chaos Damage taken bypasses Energy Shield","better":1,"matchers":[{"string":"#% получаемого урона не-хаосом обходит энергетический щит"}],"trade":{"ids":{"explicit":["explicit.stat_3379724776"]}}} +{"ref":"#% of Overkill Damage is Leeched as Life","better":1,"matchers":[{"string":"#% избыточного урона похищается в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_3511523149"]}}} +{"ref":"#% of Physical Attack Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"#% физического урона от атак похищается в виде здоровья"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_physical_attack_damage_leeched_as_life"],"explicit":["explicit.stat_3593843976","explicit.stat_55876295"],"implicit":["implicit.stat_3593843976","implicit.stat_55876295"],"fractured":["fractured.stat_3593843976","fractured.stat_55876295"],"scourge":["scourge.stat_3593843976"],"crafted":["crafted.stat_3593843976","crafted.stat_55876295"]}}} +{"ref":"#% of Physical Attack Damage Leeched as Life per Red Socket","dp":true,"better":1,"matchers":[{"string":"#% физического урона от атак похищается в виде здоровья за красное гнездо"}],"trade":{"ids":{"explicit":["explicit.stat_3025389409"]}}} +{"ref":"#% of Physical Attack Damage Leeched as Mana","dp":true,"better":1,"matchers":[{"string":"#% физического урона от атак похищается в виде маны"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_physical_attack_damage_leeched_as_mana"],"explicit":["explicit.stat_3237948413","explicit.stat_669069897"],"implicit":["implicit.stat_3237948413","implicit.stat_669069897"],"fractured":["fractured.stat_3237948413","fractured.stat_669069897"],"enchant":["enchant.stat_669069897"],"scourge":["scourge.stat_3237948413"],"crafted":["crafted.stat_3237948413","crafted.stat_669069897"]}}} +{"ref":"#% of Physical Attack Damage Leeched as Mana per Blue Socket","dp":true,"better":1,"matchers":[{"string":"#% физического урона от атак похищается в виде маны за синее гнездо"}],"trade":{"ids":{"explicit":["explicit.stat_172852114"]}}} +{"ref":"#% of Physical Damage converted to a random Element","better":1,"matchers":[{"string":"#% от физического урона становится уроном от случайной стихии"}],"trade":{"ids":{"explicit":["explicit.stat_1776612984"]}}} +{"ref":"#% of Physical Damage Converted to Chaos Damage","better":1,"matchers":[{"string":"#% физического урона становится уроном хаосом"}],"trade":{"ids":{"explicit":["explicit.stat_490098963"],"implicit":["implicit.stat_490098963"],"fractured":["fractured.stat_490098963"],"scourge":["scourge.stat_490098963"]}}} +{"ref":"#% of Physical Damage Converted to Cold Damage","better":1,"matchers":[{"string":"#% физического урона становится уроном от холода"}],"trade":{"ids":{"explicit":["explicit.stat_2133341901"],"implicit":["implicit.stat_2133341901"],"fractured":["fractured.stat_2133341901"],"scourge":["scourge.stat_2133341901"],"crafted":["crafted.stat_2133341901"]}}} +{"ref":"#% of Physical Damage Converted to Cold Damage while affected by Hatred","better":1,"matchers":[{"string":"Под действием Холодной ненависти #% физического урона становится уроном от холода"}],"trade":{"ids":{"explicit":["explicit.stat_664849247"]}}} +{"ref":"#% of Physical Damage Converted to Fire Damage","better":1,"matchers":[{"string":"#% физического урона становится уроном от огня"}],"trade":{"ids":{"explicit":["explicit.stat_1533563525"],"implicit":["implicit.stat_1533563525"],"fractured":["fractured.stat_1533563525"],"scourge":["scourge.stat_1533563525"],"crafted":["crafted.stat_1533563525"]}}} +{"ref":"#% of Physical Damage Converted to Fire Damage while affected by Anger","better":1,"matchers":[{"string":"Под действием Жгучей злобы #% физического урона становится уроном от огня"}],"trade":{"ids":{"explicit":["explicit.stat_3624529132"]}}} +{"ref":"#% of Physical Damage Converted to Fire while you have Avatar of Fire","better":1,"matchers":[{"string":"#% от физического урона становится уроном от огня, пока на вас действует Воплощение огня"}],"trade":{"ids":{"explicit":["explicit.stat_2052379536"]}}} +{"ref":"#% of Physical Damage Converted to Lightning Damage","better":1,"matchers":[{"string":"#% физического урона становится уроном от молнии"}],"trade":{"ids":{"explicit":["explicit.stat_3240769289"],"implicit":["implicit.stat_3240769289"],"fractured":["fractured.stat_3240769289"],"scourge":["scourge.stat_3240769289"],"crafted":["crafted.stat_3240769289"]}}} +{"ref":"#% of Physical Damage Converted to Lightning Damage while affected by Wrath","better":1,"matchers":[{"string":"Под действием Грозного гнева #% физического урона становится уроном от молнии"}],"trade":{"ids":{"explicit":["explicit.stat_2106756686"]}}} +{"ref":"#% of Physical Damage Converted to Lightning during Effect","better":1,"matchers":[{"string":"#% физического урона становится уроном от молнии во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_660386148"]}}} +{"ref":"#% of Physical Damage from Hits taken as Chaos Damage","better":1,"matchers":[{"string":"#% получаемого физического урона от ударов становится уроном хаосом"}],"trade":{"ids":{"explicit":["explicit.stat_4129825612"],"implicit":["implicit.stat_4129825612"],"fractured":["fractured.stat_4129825612"],"scourge":["scourge.stat_4129825612"]}}} +{"ref":"#% of Physical Damage from Hits taken as Cold Damage","better":1,"matchers":[{"string":"#% получаемого физического урона от ударов становится уроном от холода"}],"trade":{"ids":{"explicit":["explicit.stat_1871056256"],"implicit":["implicit.stat_1871056256"],"fractured":["fractured.stat_1871056256"],"scourge":["scourge.stat_1871056256"]}}} +{"ref":"#% of Physical Damage from Hits taken as Cold Damage during Effect","better":1,"matchers":[{"string":"#% получаемого физического урона от ударов становится уроном от холода во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_625682777"]}}} +{"ref":"#% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Elements","better":1,"matchers":[{"string":"Под действием Спасения от стихий #% получаемого физического урона от ударов становится уроном от холода"}],"trade":{"ids":{"explicit":["explicit.stat_1710207583"]}}} +{"ref":"#% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Ice","better":1,"matchers":[{"string":"Под действием Спасения от холода #% получаемого физического урона от ударов становится уроном от холода"}],"trade":{"ids":{"explicit":["explicit.stat_1779027621"]}}} +{"ref":"#% of Physical Damage from Hits taken as Fire Damage","better":1,"matchers":[{"string":"#% получаемого физического урона от ударов становится уроном от огня"}],"trade":{"ids":{"explicit":["explicit.stat_3342989455"],"implicit":["implicit.stat_3342989455"],"fractured":["fractured.stat_3342989455"],"scourge":["scourge.stat_3342989455"],"crafted":["crafted.stat_3342989455"]}}} +{"ref":"#% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Elements","better":1,"matchers":[{"string":"Под действием Спасения от стихий #% получаемого физического урона от ударов становится уроном от огня"}],"trade":{"ids":{"explicit":["explicit.stat_1722775216"]}}} +{"ref":"#% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Fire","better":1,"matchers":[{"string":"Под действием Спасения от огня #% получаемого физического урона от ударов становится уроном от огня"}],"trade":{"ids":{"explicit":["explicit.stat_1798459983"]}}} +{"ref":"#% of Physical Damage from Hits taken as Lightning Damage","better":1,"matchers":[{"string":"#% получаемого физического урона от ударов становится уроном от молнии"}],"trade":{"ids":{"explicit":["explicit.stat_425242359"],"implicit":["implicit.stat_425242359"],"fractured":["fractured.stat_425242359"],"scourge":["scourge.stat_425242359"],"crafted":["crafted.stat_425242359"]}}} +{"ref":"#% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Elements","better":1,"matchers":[{"string":"Под действием Спасения от стихий #% получаемого физического урона от ударов становится уроном от молнии"}],"trade":{"ids":{"explicit":["explicit.stat_873224517"]}}} +{"ref":"#% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Lightning","better":1,"matchers":[{"string":"Под действием Спасения от молнии #% получаемого физического урона от ударов становится уроном от молнии"}],"trade":{"ids":{"explicit":["explicit.stat_254131992"]}}} +{"ref":"#% of Physical Damage from Hits with this Weapon is Converted to a random Element","better":1,"matchers":[{"string":"#% физического урона от ударов этим оружием становится уроном от случайной стихии"}],"trade":{"ids":{"explicit":["explicit.stat_1431238626"],"implicit":["implicit.stat_1431238626"]}}} +{"ref":"#% of Physical Damage is taken from Mana before Life","better":1,"matchers":[{"string":"#% физического урона берется сначала из маны вместо здоровья"}],"trade":{"ids":{"implicit":["implicit.stat_3743438423"]}}} +{"ref":"#% of Physical Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"#% от физического урона похищается в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_3764265320"],"implicit":["implicit.stat_2508100173","implicit.stat_3764265320"],"fractured":["fractured.stat_3764265320"],"scourge":["scourge.stat_3764265320"]}}} +{"ref":"#% of Physical Damage Leeched by Enemy as Life","dp":true,"better":1,"matchers":[{"string":"#% нанесенного врагом физического урона похищается в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_3423022686"]}}} +{"ref":"#% of Physical Damage taken as Fire Damage","better":1,"matchers":[{"string":"#% получаемого физического урона становится уроном от огня"}],"trade":{"ids":{"explicit":["explicit.stat_1004468512"]}}} +{"ref":"#% of Physical Damage taken Recouped as Life","better":1,"matchers":[{"string":"#% полученного физического урона восполняется в виде здоровья"}],"trade":{"ids":{"implicit":["implicit.stat_4021566756"]}}} +{"ref":"#% of Recovery applied Instantly","better":1,"matchers":[{"string":"#% от восстановления применяется мгновенно"},{"string":"Мгновенное восстановление","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1526933524","explicit.stat_2503377690"],"fractured":["fractured.stat_1526933524","fractured.stat_2503377690"]}}} +{"ref":"#% of Spell Damage Leeched as Energy Shield","dp":true,"better":1,"matchers":[{"string":"#% урона от чар похищается в виде энергетического щита"}],"trade":{"ids":{"explicit":["explicit.stat_11106713"],"implicit":["implicit.stat_11106713"]}}} +{"ref":"#% of Spell Damage Leeched as Energy Shield during Effect","dp":true,"better":1,"matchers":[{"string":"#% от урона от чар похищается в виде энергетического щита во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_1456464057"],"fractured":["fractured.stat_1456464057"]}}} +{"ref":"#% of Spell Damage Leeched as Energy Shield for each Curse on Enemy","dp":true,"better":1,"matchers":[{"string":"#% урона чарами похищается в виде энергетического щита за каждое наложенное на врага проклятие"}],"trade":{"ids":{"explicit":["explicit.stat_3734213780"]}}} +{"ref":"#% of Spell Damage Leeched as Life if Equipped Shield has at least 30% Chance to Block","dp":true,"better":1,"matchers":[{"string":"#% урона от чар похищается в виде здоровья, если экипированный щит имеет минимум 30% шанс блока"}],"trade":{"ids":{"explicit":["explicit.stat_3893109186"]}}} +{"ref":"#% reduced Area Damage taken from Hits","better":-1,"matchers":[{"string":"#% увеличение получаемого урона от ударов по области"},{"string":"#% уменьшение получаемого урона от ударов по области","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3001376862"]},"inverted":true}} +{"ref":"#% reduced Attack and Cast Speed per Frenzy Charge","better":-1,"matchers":[{"string":"#% повышение скорости атаки и сотворения чар за заряд ярости"},{"string":"#% снижение скорости атаки и сотворения чар за заряд ярости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_269590092"]},"inverted":true}} +{"ref":"#% reduced Chance to Block Attack and Spell Damage","better":-1,"matchers":[{"string":"#% повышение шанса блокировать урон от атак и чар"},{"string":"#% снижение шанса блокировать урон от атак и чар","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4147897060"]},"inverted":true}} +{"ref":"#% reduced Chaos Damage taken","better":-1,"matchers":[{"string":"#% увеличение получаемого урона хаосом"},{"string":"#% уменьшение получаемого урона хаосом","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2960683632"],"implicit":["implicit.stat_2960683632"],"fractured":["fractured.stat_2960683632"],"scourge":["scourge.stat_2960683632"]},"inverted":true}} +{"ref":"#% reduced Chaos Damage taken over time","better":-1,"matchers":[{"string":"#% увеличение получаемого постепенного урона хаосом"},{"string":"#% уменьшение получаемого постепенного урона хаосом","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3762784591"],"fractured":["fractured.stat_3762784591"]},"inverted":true}} +{"ref":"#% reduced Chill Duration on you","better":1,"matchers":[{"string":"#% уменьшение длительности охлаждения на вас"},{"string":"#% увеличение длительности охлаждения на вас","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1874553720"],"implicit":["implicit.stat_1874553720"]}}} +{"ref":"#% reduced Cold Damage taken","better":-1,"matchers":[{"string":"#% увеличение получаемого урона от холода"},{"string":"#% уменьшение получаемого урона от холода","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3303114033"],"implicit":["implicit.stat_3303114033"],"fractured":["fractured.stat_3303114033"],"scourge":["scourge.stat_3303114033"]},"inverted":true}} +{"ref":"#% reduced Cost of Aura Skills that summon Totems","better":-1,"matchers":[{"string":"#% повышение стоимости умений аур, которые призывают тотемы"},{"string":"#% снижение стоимости умений аур, которые призывают тотемы","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2701327257"]},"inverted":true}} +{"ref":"#% reduced Critical Strike Chance per Power Charge","better":-1,"matchers":[{"string":"#% повышение шанса критического удара за заряд энергии"},{"string":"#% снижение шанса критического удара за заряд энергии","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2102212273"]},"inverted":true}} +{"ref":"#% reduced Damage taken from Damage Over Time","better":-1,"matchers":[{"string":"#% увеличение получаемого постепенного урона"},{"string":"#% уменьшение получаемого постепенного урона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1101403182"],"implicit":["implicit.stat_1101403182"],"fractured":["fractured.stat_1101403182"],"crafted":["crafted.stat_1101403182"]},"inverted":true}} +{"ref":"#% reduced Damage taken from Projectile Hits","better":-1,"matchers":[{"string":"#% увеличение получаемого урона от ударов снарядами"},{"string":"#% уменьшение получаемого урона от ударов снарядами","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1425651005"]},"inverted":true}} +{"ref":"#% reduced Damage taken if Corrupted","better":-1,"matchers":[{"string":"#% увеличение получаемого урона, если предмет осквернён"},{"string":"#% уменьшение получаемого урона, если предмет осквернён","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3309607228"]},"inverted":true}} +{"ref":"#% reduced Effect of Chill on you","better":-1,"matchers":[{"string":"#% усиление эффекта охлаждения на вас"},{"string":"#% ослабление эффекта охлаждения на вас","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1478653032"],"implicit":["implicit.stat_1478653032"],"fractured":["fractured.stat_1478653032"],"enchant":["enchant.stat_1478653032"],"scourge":["scourge.stat_1478653032"],"crafted":["crafted.stat_1478653032"]},"inverted":true}} +{"ref":"#% reduced Effect of Chill on you during Effect","better":-1,"matchers":[{"string":"#% усиление эффекта охлаждения на вас во время действия эффекта"},{"string":"#% ослабление эффекта охлаждения на вас во время действия эффекта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2434101731"],"fractured":["fractured.stat_2434101731"]},"inverted":true}} +{"ref":"#% reduced Effect of Curses on you","better":-1,"matchers":[{"string":"#% усиление эффектов проклятий на вас"},{"string":"#% ослабление эффектов проклятий на вас","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3407849389"],"implicit":["implicit.stat_3407849389"],"fractured":["fractured.stat_3407849389"],"scourge":["scourge.stat_3407849389"],"crafted":["crafted.stat_3407849389"]},"inverted":true}} +{"ref":"#% reduced Effect of Curses on you during Effect","better":-1,"matchers":[{"string":"#% усиление эффекта проклятий на вас во время действия эффекта"},{"string":"#% ослабление эффекта проклятий на вас во время действия эффекта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4265534424"],"fractured":["fractured.stat_4265534424"]},"inverted":true}} +{"ref":"#% reduced Effect of Shock on you","better":-1,"matchers":[{"string":"#% усиление эффекта шока на вас"},{"string":"#% ослабление эффекта шока на вас","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3801067695"],"implicit":["implicit.stat_3801067695"],"fractured":["fractured.stat_3801067695"],"enchant":["enchant.stat_3801067695"],"scourge":["scourge.stat_3801067695"],"crafted":["crafted.stat_3801067695"]},"inverted":true}} +{"ref":"#% reduced Elemental Ailment Duration on you","better":1,"matchers":[{"string":"#% уменьшение длительности стихийных состояний на вас"},{"string":"#% увеличение длительности стихийных состояний на вас","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1745952865"],"implicit":["implicit.stat_1745952865"],"scourge":["scourge.stat_1745952865"]}}} +{"ref":"#% reduced Elemental Ailment Duration on you per 10 Devotion","better":1,"matchers":[{"string":"#% уменьшение длительности стихийных состояний на вас за каждые 10 набожности"},{"string":"#% увеличение длительности стихийных состояний на вас за каждые 10 набожности","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_730530528"]}}} +{"ref":"#% reduced Elemental Damage taken from Hits per Endurance Charge","better":-1,"matchers":[{"string":"#% увеличение получаемого урона от стихий при получении удара за заряд выносливости"},{"string":"#% уменьшение получаемого урона от стихий при получении удара за заряд выносливости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1686913105"]},"inverted":true}} +{"ref":"#% reduced Elemental Damage taken while stationary","better":-1,"matchers":[{"string":"#% увеличение получаемого урона от стихий при нахождении на одном месте"},{"string":"#% уменьшение получаемого урона от стихий при нахождении на одном месте","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3859593448","explicit.stat_983989924"],"fractured":["fractured.stat_3859593448"]},"inverted":true}} +{"ref":"#% reduced Elemental Resistances","better":1,"matchers":[{"string":"#% увеличение сопротивлений стихиям"},{"string":"#% уменьшение сопротивлений стихиям","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_76848920"]},"inverted":true}} +{"ref":"#% reduced Enemy Stun Threshold","better":1,"matchers":[{"string":"#% снижение порога оглушения врагов"},{"string":"#% повышение порога оглушения врагов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1443060084"],"implicit":["implicit.stat_1443060084"],"fractured":["fractured.stat_1443060084"],"scourge":["scourge.stat_1443060084"]}}} +{"ref":"#% reduced Enemy Stun Threshold during any Flask Effect","better":1,"matchers":[{"string":"#% снижение порога оглушения врагов во время действия эффекта любого флакона"}],"trade":{"ids":{"explicit":["explicit.stat_4228951304"]}}} +{"ref":"#% reduced Enemy Stun Threshold with Melee Weapons","better":1,"matchers":[{"string":"#% снижение порога оглушения врага оружием ближнего боя"},{"string":"#% повышение порога оглушения врага оружием ближнего боя","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2791825817"]}}} +{"ref":"#% reduced Enemy Stun Threshold with this Weapon","better":1,"matchers":[{"string":"#% снижение порога оглушения врагов этим оружием"},{"string":"#% повышение порога оглушения врагов этим оружием","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_832404842"],"enchant":["enchant.stat_832404842"],"crafted":["crafted.stat_832404842"]}}} +{"ref":"#% reduced Fishing Pool Consumption","better":-1,"matchers":[{"string":"#% увеличение потребляемой рыбы"},{"string":"#% снижение потребляемой рыбы","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1550221644"],"fractured":["fractured.stat_1550221644"],"scourge":["scourge.stat_1550221644"]},"inverted":true}} +{"ref":"#% reduced Flask Charges used","better":-1,"matchers":[{"string":"#% увеличение используемого количества зарядов флакона"},{"string":"#% уменьшение используемого количества зарядов флакона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_644456512"],"implicit":["implicit.stat_644456512"],"fractured":["fractured.stat_644456512"],"scourge":["scourge.stat_644456512"]},"inverted":true}} +{"ref":"#% reduced Freeze Duration on you","better":1,"matchers":[{"string":"#% уменьшение длительности заморозки на вас"},{"string":"#% увеличение длительности заморозки на вас","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2160282525"],"implicit":["implicit.stat_2160282525"],"fractured":["fractured.stat_2160282525"],"enchant":["enchant.stat_2160282525"],"scourge":["scourge.stat_2160282525"]}}} +{"ref":"#% reduced Frenzy Charge Duration per Frenzy Charge","better":-1,"matchers":[{"string":"#% увеличение длительности заряда ярости за заряд ярости"},{"string":"#% уменьшение длительности заряда ярости за заряд ярости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2543931078"]},"inverted":true}} +{"ref":"#% reduced Golem Size","better":-1,"matchers":[{"string":"#% увеличение размера големов"},{"string":"#% уменьшение размера големов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2576412389"]},"inverted":true}} +{"ref":"#% reduced Ignite Duration on you","better":1,"matchers":[{"string":"#% уменьшение длительности поджога на вас"},{"string":"#% увеличение длительности поджога на вас","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_986397080"],"implicit":["implicit.stat_986397080"],"fractured":["fractured.stat_986397080"],"enchant":["enchant.stat_986397080"],"scourge":["scourge.stat_986397080"],"crafted":["crafted.stat_986397080"]}}} +{"ref":"#% reduced Lightning Damage taken","better":-1,"matchers":[{"string":"#% увеличение получаемого урона от молнии"},{"string":"#% уменьшение получаемого урона от молнии","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1276918229"],"implicit":["implicit.stat_1276918229"],"fractured":["fractured.stat_1276918229"],"scourge":["scourge.stat_1276918229"]},"inverted":true}} +{"ref":"#% reduced Lightning Warp Duration","better":-1,"matchers":[{"string":"#% увеличение длительности Грозового перехода"},{"string":"#% уменьшение длительности Грозового перехода","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_609478942"]},"inverted":true}} +{"ref":"#% reduced Mana Burn rate","better":-1,"matchers":[{"string":"#% повышение частоты активации Сжигания маны"},{"string":"#% снижение частоты активации Сжигания маны","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_116232170"]},"inverted":true}} +{"ref":"#% reduced Mana Cost of Attacks","better":-1,"matchers":[{"string":"#% увеличение стоимости атак в мане"},{"string":"#% уменьшение стоимости атак в мане","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2859471749"]},"inverted":true}} +{"ref":"#% reduced Mana Cost of Minion Skills","better":-1,"matchers":[{"string":"#% повышение затрат маны умениями приспешников"},{"string":"#% снижение затрат маны умениями приспешников","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2969128501"]},"inverted":true}} +{"ref":"#% reduced Mana Cost of Raise Spectre","better":-1,"matchers":[{"string":"#% повышение затрат маны Сотворением призраков"},{"string":"#% снижение затрат маны Сотворением призраков","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_262301496"]},"inverted":true}} +{"ref":"#% reduced Mana Cost of Skills","better":1,"matchers":[{"string":"#% снижение затрат маны умениями"},{"string":"#% повышение затрат маны умениями","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_474294393"],"implicit":["implicit.stat_474294393"],"fractured":["fractured.stat_474294393"],"crafted":["crafted.stat_474294393"]}}} +{"ref":"#% reduced Mana Cost of Skills if you've been Hit Recently","better":-1,"matchers":[{"string":"#% повышение затрат маны умениями, если вы недавно получали удар"},{"string":"#% снижение затрат маны умениями, если вы недавно получали удар","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3693451031"]},"inverted":true}} +{"ref":"#% reduced Mana Cost of Skills per 10 Devotion","better":1,"matchers":[{"string":"#% повышение затрат маны умениями за каждые 10 набожности"},{"string":"#% снижение затрат маны умениями за каждые 10 набожности","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3293275880"]},"inverted":true}} +{"ref":"#% reduced Mana Cost of Skills when on Low Life","better":-1,"matchers":[{"string":"#% повышение затрат маны умениями при малом количестве здоровья"},{"string":"#% снижение затрат маны умениями при малом количестве здоровья","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_73272763"]},"inverted":true}} +{"ref":"#% reduced Mana Cost per Endurance Charge","better":1,"matchers":[{"string":"#% снижение затрат маны за заряд выносливости"}],"trade":{"ids":{"explicit":["explicit.stat_1774881905"]}}} +{"ref":"#% reduced maximum number of Raised Zombies","better":-1,"matchers":[{"string":"#% увеличение максимального количества поднятых зомби"},{"string":"#% уменьшение максимального количества поднятых зомби","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4041805509"]},"inverted":true}} +{"ref":"#% reduced Maximum number of Summoned Raging Spirits","better":-1,"matchers":[{"string":"#% увеличение максимального количества призванных Неистовых духов"},{"string":"#% уменьшение максимального количества призванных Неистовых духов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1186934478"]},"inverted":true}} +{"ref":"#% reduced Physical Damage taken over time","better":-1,"matchers":[{"string":"#% увеличение получаемого постепенного физического урона"},{"string":"#% уменьшение получаемого постепенного физического урона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_511024200"]},"inverted":true}} +{"ref":"#% reduced Reflected Damage taken","better":-1,"matchers":[{"string":"#% увеличение получаемого отражённого урона"},{"string":"#% уменьшение получаемого отражённого урона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3846810663"],"implicit":["implicit.stat_3846810663"]},"inverted":true}} +{"ref":"#% reduced Reflected Damage taken during Effect","better":-1,"matchers":[{"string":"#% увеличение получаемого отраженного урона во время действия эффекта"},{"string":"#% уменьшение получаемого отраженного урона во время действия эффекта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3842373291"],"crafted":["crafted.stat_3842373291"]},"inverted":true}} +{"ref":"#% reduced Reflected Elemental Damage taken","better":-1,"matchers":[{"string":"#% увеличение получаемого отражённого урона от стихий"},{"string":"#% уменьшение получаемого отражённого урона от стихий","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_248838155"],"implicit":["implicit.stat_248838155"],"enchant":["enchant.stat_248838155"]},"inverted":true}} +{"ref":"#% reduced Reflected Elemental Damage taken while affected by Purity of Elements","better":-1,"matchers":[{"string":"#% увеличение получаемого отраженного урона от стихий под действием Спасения от стихий"},{"string":"#% уменьшение получаемого отраженного урона от стихий под действием Спасения от стихий","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_65331133"]},"inverted":true}} +{"ref":"#% reduced Reflected Physical Damage taken","better":-1,"matchers":[{"string":"#% увеличение получаемого отражённого физического урона"},{"string":"#% уменьшение получаемого отражённого физического урона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3158958938"],"implicit":["implicit.stat_3158958938"],"enchant":["enchant.stat_3158958938"]},"inverted":true}} +{"ref":"#% reduced Reflected Physical Damage taken while affected by Determination","better":-1,"matchers":[{"string":"#% увеличение получаемого отраженного физического урона под действием Решимости"},{"string":"#% уменьшение получаемого отраженного физического урона под действием Решимости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2457540491"]},"inverted":true}} +{"ref":"#% reduced Shock Duration on you","better":1,"matchers":[{"string":"#% уменьшение длительности шока на вас"},{"string":"#% увеличение длительности шока на вас","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_99927264"],"implicit":["implicit.stat_99927264"],"fractured":["fractured.stat_99927264"]}}} +{"ref":"#% reduced Spectral Throw Projectile Deceleration","better":-1,"matchers":[{"string":"#% повышение замедления снаряда Призрачного броска"},{"string":"#% снижение замедления снаряда Призрачного броска","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_444686294"]},"inverted":true}} +{"ref":"#% reduced Spell Damage taken from Blinded Enemies","better":-1,"matchers":[{"string":"#% увеличение получаемого урона от чар от ослеплённых врагов"},{"string":"#% уменьшение получаемого урона от чар от ослеплённых врагов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1165847826"]},"inverted":true}} +{"ref":"#% reduced Storm Call Duration","better":-1,"matchers":[{"string":"#% увеличение длительности Призыва бури"},{"string":"#% уменьшение длительности Призыва бури","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1843506018"]},"inverted":true}} +{"ref":"#% slower start of Energy Shield Recharge during any Flask Effect","better":-1,"matchers":[{"string":"#% ускорение начала перезарядки энергетического щита во время действия эффекта любого флакона"},{"string":"#% замедление начала перезарядки энергетического щита во время действия эффекта любого флакона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1912660783"]},"inverted":true}} +{"ref":"#% total increased maximum Energy Shield","better":1,"matchers":[{"string":"Всего #% повышения энергетического щита "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_energy_shield"]}}} +{"ref":"#% total increased Physical Damage","better":1,"matchers":[{"string":"Всего +#% к увеличению физического урона "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_increased_physical_damage"]}}} +{"ref":"+# Accuracy Rating per 2 Intelligence","better":1,"matchers":[{"string":"# меткости за каждые 2 интеллекта"}],"trade":{"ids":{"explicit":["explicit.stat_2196657026"]}}} +{"ref":"+# Armour if you've Blocked Recently","better":1,"matchers":[{"string":"# брони, если вы недавно блокировали удар"}],"trade":{"ids":{"explicit":["explicit.stat_4091848539"],"fractured":["fractured.stat_4091848539"]}}} +{"ref":"+# Armour per Summoned Totem","better":1,"matchers":[{"string":"# брони за каждый установленный тотем"}],"trade":{"ids":{"explicit":["explicit.stat_1429385513"]}}} +{"ref":"+# Armour while stationary","better":1,"matchers":[{"string":"# брони при нахождении на одном месте"}],"trade":{"ids":{"explicit":["explicit.stat_2551779822"],"implicit":["implicit.stat_2551779822"]}}} +{"ref":"+# Armour while you do not have Avatar of Fire","better":1,"matchers":[{"string":"# брони, пока на вас не действует Воплощение огня"}],"trade":{"ids":{"explicit":["explicit.stat_4078952782"]}}} +{"ref":"+# Chaos Damage taken","better":1,"matchers":[{"string":"# к получаемому урону хаосом"}],"trade":{"ids":{"explicit":["explicit.stat_496011033"],"implicit":["implicit.stat_496011033"]}}} +{"ref":"+# Cold Damage taken from Hits","better":1,"matchers":[{"string":"# урона от холода при получении удара"}],"trade":{"ids":{"implicit":["implicit.stat_261654754"]}}} +{"ref":"+# Dexterity Requirement","better":1,"matchers":[{"string":"# к требованиям к ловкости"}],"trade":{"ids":{"explicit":["explicit.stat_1133453872"],"scourge":["scourge.stat_1133453872"]}}} +{"ref":"+# Energy Shield gained on Killing a Shocked Enemy","better":1,"matchers":[{"string":"# энергетического щита за убийство врага, пораженного шоком"}],"trade":{"ids":{"explicit":["explicit.stat_347328113"]}}} +{"ref":"+# Fire Damage taken from Hits","better":1,"matchers":[{"string":"# входящего урона от огня при получении удара"}],"trade":{"ids":{"explicit":["explicit.stat_614758785"],"implicit":["implicit.stat_614758785"]}}} +{"ref":"+# Fire Damage taken from Hits per Mana Burn","better":1,"matchers":[{"string":"# к получаемому урону от огня от ударов за каждый заряд Сжигания маны"}],"trade":{"ids":{"explicit":["explicit.stat_1483305963"]}}} +{"ref":"+# Intelligence Requirement","better":1,"matchers":[{"string":"# к требованиям интеллекта"}],"trade":{"ids":{"explicit":["explicit.stat_2153364323"],"scourge":["scourge.stat_2153364323"]}}} +{"ref":"+# Life per 4 Dexterity","better":1,"matchers":[{"string":"# здоровья за каждые 4 ловкости"}],"trade":{"ids":{"explicit":["explicit.stat_2042405614"]}}} +{"ref":"+# Lightning Damage taken from Hits","better":1,"matchers":[{"string":"# урона от молнии при получении удара"}],"trade":{"ids":{"implicit":["implicit.stat_465051235"]}}} +{"ref":"+# Mana gained on Killing a Frozen Enemy","better":1,"matchers":[{"string":"Получает # маны при убийстве замороженного врага"}],"trade":{"ids":{"explicit":["explicit.stat_3304801725"]}}} +{"ref":"+# Mana per 4 Strength","better":1,"matchers":[{"string":"# маны за каждые 4 силы"}],"trade":{"ids":{"explicit":["explicit.stat_507075051"]}}} +{"ref":"+# maximum Energy Shield per 5 Strength","better":1,"matchers":[{"string":"# к максимуму энергетического щита за 5 силы"}],"trade":{"ids":{"explicit":["explicit.stat_3788706881"]}}} +{"ref":"+# Maximum Energy Shield per Level","better":1,"matchers":[{"string":"# к максимуму энергетического щита за уровень"}],"trade":{"ids":{"explicit":["explicit.stat_3864993324"]}}} +{"ref":"+# Maximum Life per Level","better":1,"matchers":[{"string":"# к максимуму здоровья за уровень"}],"trade":{"ids":{"explicit":["explicit.stat_1982144275"]}}} +{"ref":"+# Maximum Mana per Level","better":1,"matchers":[{"string":"# к максимуму маны за уровень"}],"trade":{"ids":{"explicit":["explicit.stat_2563691316"]}}} +{"ref":"+# metre to Discharge radius","better":1,"matchers":[{"string":"# м к радиусу Разряда"}],"trade":{"ids":{"enchant":["enchant.stat_2716178075"]}}} +{"ref":"+# metre to Melee Strike Range if you have Killed Recently","better":1,"matchers":[{"string":"# м к дальности ударов ближнего боя, если недавно вы совершали убийство"}],"trade":{"ids":{"explicit":["explicit.stat_3255961830"],"fractured":["fractured.stat_3255961830"]}}} +{"ref":"+# metre to Melee Strike Range per White Socket","better":1,"matchers":[{"string":"# м к дальности ударов ближнего боя за белое гнездо"}],"trade":{"ids":{"explicit":["explicit.stat_2076080860"]}}} +{"ref":"+# metre to Melee Strike Range while Unarmed","better":1,"matchers":[{"string":"# м к дальности ударов ближнего боя без оружия"}],"trade":{"ids":{"explicit":["explicit.stat_3273962791"]}}} +{"ref":"+# metre to Weapon Range per 10% Quality","better":1,"matchers":[{"string":"# м к дальности оружия за 10% качества"}],"trade":{"ids":{"enchant":["enchant.stat_2967267655"]}}} +{"ref":"+# metres to Weapon Range","better":1,"matchers":[{"string":"# м к дальности оружия"},{"string":"# м к дальности ударов ближнего боя"}],"trade":{"ids":{"explicit":["explicit.stat_2264295449","explicit.stat_350598685"],"implicit":["implicit.stat_2264295449","implicit.stat_350598685"],"fractured":["fractured.stat_2264295449","fractured.stat_350598685"],"enchant":["enchant.stat_350598685"],"scourge":["scourge.stat_350598685"],"crafted":["crafted.stat_2264295449","crafted.stat_350598685"]}}} +{"ref":"+# Physical Damage taken from Attack Hits","better":1,"matchers":[{"string":"# входящего физического урона при получении удара от атак"}],"trade":{"ids":{"explicit":["explicit.stat_3441651621"],"implicit":["implicit.stat_3441651621"],"fractured":["fractured.stat_3441651621"]}}} +{"ref":"+# Physical Damage taken from Hits","better":1,"matchers":[{"string":"# входящего физического урона при получении удара"}],"trade":{"ids":{"explicit":["explicit.stat_321765853"]}}} +{"ref":"+# Physical Damage taken from Hits by Animals","better":1,"matchers":[{"string":"# получаемого физического урона при получении удара от животных"}],"trade":{"ids":{"explicit":["explicit.stat_3277537093"]}}} +{"ref":"+# Physical Damage taken from Projectile Attacks","better":1,"matchers":[{"string":"# физического урона, получаемого от атак снарядами"}],"trade":{"ids":{"explicit":["explicit.stat_3612407781"]}}} +{"ref":"+# Prefix Modifier allowed","better":1,"matchers":[{"string":"# допустимых свойств-префиксов"},{"string":"допустимых свойств-префиксов"}],"trade":{"ids":{"implicit":["implicit.stat_3182714256"]}}} +{"ref":"+# second to Summon Skeleton Cooldown","better":1,"matchers":[{"string":"# секунд(-ы) к перезарядке Сотворения скелета"}],"trade":{"ids":{"explicit":["explicit.stat_3013430129"]}}} +{"ref":"+# seconds to Avian's Flight Duration","dp":true,"better":1,"matchers":[{"string":"# секунд(-ы) к длительности Птичьего полета"}],"trade":{"ids":{"explicit":["explicit.stat_1251731548"]}}} +{"ref":"+# seconds to Avian's Might Duration","dp":true,"better":1,"matchers":[{"string":"# секунд(-ы) к длительности Птичьей силы"}],"trade":{"ids":{"explicit":["explicit.stat_1251945210"]}}} +{"ref":"+# seconds to Cat's Agility Duration","dp":true,"better":1,"matchers":[{"string":"# секунд(-ы) к длительности Кошачьей ловкости"}],"trade":{"ids":{"explicit":["explicit.stat_3686519528"]}}} +{"ref":"+# seconds to Cat's Stealth Duration","dp":true,"better":1,"matchers":[{"string":"# секунд(-ы) к длительности Кошачьей скрытности"}],"trade":{"ids":{"explicit":["explicit.stat_387596329"]}}} +{"ref":"+# seconds to Duration of Frenzy and Power Charges on Culling Strike","better":1,"matchers":[{"string":"# секунд(-ы) к длительности зарядов ярости и энергии при добивании"}],"trade":{"ids":{"explicit":["explicit.stat_4244234128"]}}} +{"ref":"+# seconds to Lockdown Timer","better":1,"matchers":[{"string":"# секунд(-ы) к времени до изоляции"}],"trade":{"ids":{"explicit":["explicit.stat_3471951849"],"fractured":["fractured.stat_3471951849"]}}} +{"ref":"+# Strength and Intelligence Requirement","better":1,"matchers":[{"string":"# к требованиям к силе и интеллекту"}],"trade":{"ids":{"explicit":["explicit.stat_4272453892"]}}} +{"ref":"+# Strength Requirement","better":1,"matchers":[{"string":"# к требованиям к силе"}],"trade":{"ids":{"explicit":["explicit.stat_2833226514"],"scourge":["scourge.stat_2833226514"]}}} +{"ref":"+# Suffix Modifier allowed","better":1,"matchers":[{"string":"# допустимых свойств-суффиксов"}],"trade":{"ids":{"implicit":["implicit.stat_718638445"]}}} +{"ref":"+# to Accuracy Rating","better":1,"matchers":[{"string":"# к меткости"}],"trade":{"ids":{"explicit":["explicit.stat_691932474","explicit.stat_803737631"],"implicit":["implicit.stat_691932474","implicit.stat_803737631"],"fractured":["fractured.stat_691932474","fractured.stat_803737631"],"crafted":["crafted.stat_691932474","crafted.stat_803737631"]}}} +{"ref":"+# to Accuracy Rating for each Empty Green Socket on any Equipped Item","better":1,"matchers":[{"string":"# к меткости за каждую пустую зеленую ячейку на любом надетом предмете"}],"trade":{"ids":{"explicit":["explicit.stat_4280703528"]}}} +{"ref":"+# to Accuracy Rating per 10 Dexterity on Unallocated Passives in Radius","better":1,"matchers":[{"string":"# к меткости за 10 ловкости в невыбранных пассивных умениях в радиусе"}],"trade":{"ids":{"explicit":["explicit.stat_100820057"]}}} +{"ref":"+# to Accuracy Rating per 10 Intelligence on Unallocated Passives in Radius","better":1,"matchers":[{"string":"# к меткости за каждые 10 интеллекта в невыбранных пассивных умениях в радиусе"}],"trade":{"ids":{"explicit":["explicit.stat_3996149330"]}}} +{"ref":"+# to Accuracy Rating per 2 Dexterity","better":1,"matchers":[{"string":"# к меткости за каждые 2 ловкости"}],"trade":{"ids":{"explicit":["explicit.stat_773731062"],"fractured":["fractured.stat_773731062"]}}} +{"ref":"+# to Accuracy Rating per Frenzy Charge","better":1,"matchers":[{"string":"# к меткости за заряд ярости"}],"trade":{"ids":{"implicit":["implicit.stat_3126680545"]}}} +{"ref":"+# to Accuracy Rating while at Maximum Frenzy Charges","better":1,"matchers":[{"string":"# к меткости при максимуме зарядов ярости"}],"trade":{"ids":{"explicit":["explicit.stat_3213407110"]}}} +{"ref":"+# to Agility Level for Heists","better":1,"matchers":[{"string":"# к уровню Проворства в Кражах"}],"trade":{"ids":{"explicit":["explicit.stat_2943725337"],"fractured":["fractured.stat_2943725337"]}}} +{"ref":"+# to all Attributes","better":1,"matchers":[{"string":"# ко всем характеристикам"}],"trade":{"ids":{"explicit":["explicit.stat_1379411836"],"implicit":["implicit.stat_1379411836"],"fractured":["fractured.stat_1379411836"],"crafted":["crafted.stat_1379411836"]}}} +{"ref":"+# to Armour","better":1,"matchers":[{"string":"# к броне"}],"trade":{"ids":{"explicit":["explicit.stat_3484657501","explicit.stat_809229260"],"implicit":["implicit.stat_3484657501"],"fractured":["fractured.stat_3484657501","fractured.stat_809229260"],"scourge":["scourge.stat_3484657501"],"crafted":["crafted.stat_3484657501","crafted.stat_809229260"]}}} +{"ref":"+# to Armour and Evasion Rating","better":1,"matchers":[{"string":"# к броне и уклонению"}],"trade":{"ids":{"explicit":["explicit.stat_2316658489"],"implicit":["implicit.stat_2316658489"],"fractured":["fractured.stat_2316658489"],"crafted":["crafted.stat_2316658489"]}}} +{"ref":"+# to Armour and Evasion Rating per 1% Chance to Block Attack Damage","better":1,"matchers":[{"string":"# к броне и уклонению за 1% шанса блокировать урон от атак"}],"trade":{"ids":{"explicit":["explicit.stat_2818854203"]}}} +{"ref":"+# to Armour and Evasion Rating while Fortified","better":1,"matchers":[{"string":"# к броне и уклонению под действием Укрепления"}],"trade":{"ids":{"implicit":["implicit.stat_2962782530"]}}} +{"ref":"+# to Armour during Soul Gain Prevention","better":1,"matchers":[{"string":"# к броне во время действия предотвращения получения душ"}],"trade":{"ids":{"explicit":["explicit.stat_1539825365"],"fractured":["fractured.stat_1539825365"],"crafted":["crafted.stat_1539825365"]}}} +{"ref":"+# to Armour if you've Hit an Enemy Recently","better":1,"matchers":[{"string":"# к броне, если вы недавно наносили удар по врагу"}],"trade":{"ids":{"explicit":["explicit.stat_2368149582"]}}} +{"ref":"+# to Armour per 5 Evasion Rating on Equipped Shield","better":1,"matchers":[{"string":"# к броне за каждые 5 уклонения на экипированном щите"}],"trade":{"ids":{"explicit":["explicit.stat_3088183606"]}}} +{"ref":"+# to Armour per Endurance Charge","better":1,"matchers":[{"string":"# к броне за заряд выносливости"}],"trade":{"ids":{"explicit":["explicit.stat_513221334"]}}} +{"ref":"+# to Armour while affected by Determination","better":1,"matchers":[{"string":"# к броне под действием Решимости"}],"trade":{"ids":{"explicit":["explicit.stat_3742808908"]}}} +{"ref":"+# to Armour while Fortified","better":1,"matchers":[{"string":"# к броне под действием Укрепления"}],"trade":{"ids":{"explicit":["explicit.stat_153004860"],"enchant":["enchant.stat_153004860"]}}} +{"ref":"+# to Armour while Frozen","better":1,"matchers":[{"string":"# к броне пока вы заморожены"}],"trade":{"ids":{"explicit":["explicit.stat_504366827"]}}} +{"ref":"+# to Brute Force Level for Heists","better":1,"matchers":[{"string":"# к уровню Грубой силы в Кражах"}],"trade":{"ids":{"explicit":["explicit.stat_1169552613"]}}} +{"ref":"+# to Character Level","better":1,"matchers":[{"string":"# к уровню наёмника"}],"trade":{"ids":{"explicit":["explicit.stat_1172162241"],"fractured":["fractured.stat_1172162241"]}}} +{"ref":"+# to Counter-Thaumaturgy Level for Heists","better":1,"matchers":[{"string":"# к уровню Контрмагии в Кражах"}],"trade":{"ids":{"explicit":["explicit.stat_4207149030"],"fractured":["fractured.stat_4207149030"]}}} +{"ref":"+# to Deception Level for Heists","better":1,"matchers":[{"string":"# к уровню Маскировки в Кражах"}],"trade":{"ids":{"explicit":["explicit.stat_828170926"],"fractured":["fractured.stat_828170926"]}}} +{"ref":"+# to Demolition Level for Heists","better":1,"matchers":[{"string":"# к уровню Взрывного дела в Кражах"}],"trade":{"ids":{"explicit":["explicit.stat_2359025380"],"fractured":["fractured.stat_2359025380"]}}} +{"ref":"+# to Dexterity","better":1,"matchers":[{"string":"# к ловкости"}],"trade":{"ids":{"explicit":["explicit.stat_3261801346"],"implicit":["implicit.stat_3261801346"],"fractured":["fractured.stat_3261801346"],"scourge":["scourge.stat_3261801346"],"crafted":["crafted.stat_3261801346"]}}} +{"ref":"+# to Dexterity and Intelligence","better":1,"matchers":[{"string":"# к ловкости и интеллекту"}],"trade":{"ids":{"explicit":["explicit.stat_2300185227"],"implicit":["implicit.stat_2300185227"],"fractured":["fractured.stat_2300185227"],"crafted":["crafted.stat_2300185227"]}}} +{"ref":"+# to Engineering Level for Heists","better":1,"matchers":[{"string":"# к уровню Инженерного дела в Кражах"}],"trade":{"ids":{"explicit":["explicit.stat_2978835006"],"fractured":["fractured.stat_2978835006"]}}} +{"ref":"+# to Evasion Rating","better":1,"matchers":[{"string":"# к уклонению"}],"trade":{"ids":{"explicit":["explicit.stat_2144192055","explicit.stat_53045048"],"implicit":["implicit.stat_53045048"],"fractured":["fractured.stat_2144192055","fractured.stat_53045048"],"scourge":["scourge.stat_53045048"],"crafted":["crafted.stat_2144192055","crafted.stat_53045048"]}}} +{"ref":"+# to Evasion Rating and Energy Shield","better":1,"matchers":[{"string":"# к уклонению и энергетическому щиту"}],"trade":{"ids":{"explicit":["explicit.stat_1549868759"]}}} +{"ref":"+# to Evasion Rating if Hit an Enemy Recently","better":1,"matchers":[{"string":"# к уклонению, если вы недавно наносили удар по врагу"}],"trade":{"ids":{"explicit":["explicit.stat_2935548106"]}}} +{"ref":"+# to Evasion Rating per 1 Maximum Energy Shield on Equipped Helmet","better":1,"matchers":[{"string":"# к уклонению за 1 максимума энергетического щита на надетом шлеме"}],"trade":{"ids":{"explicit":["explicit.stat_1144937587"]}}} +{"ref":"+# to Evasion Rating per 5 Maximum Energy Shield on Equipped Shield","better":1,"matchers":[{"string":"# к уклонению за каждые 5 максимума энергетического щита на экипированном щите"}],"trade":{"ids":{"explicit":["explicit.stat_1115914670"]}}} +{"ref":"+# to Evasion Rating while in Sand Stance","better":1,"matchers":[{"string":"# к уклонению в стойке песка"}],"trade":{"ids":{"explicit":["explicit.stat_1922061483"]}}} +{"ref":"+# to Evasion Rating while on Full Life","better":1,"matchers":[{"string":"# к уклонению при полном здоровье"}],"trade":{"ids":{"explicit":["explicit.stat_4082111882"]}}} +{"ref":"+# to Evasion Rating while on Low Life","better":1,"matchers":[{"string":"# к уклонению при малом количестве здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_3470876581"]}}} +{"ref":"+# to Evasion Rating while you have Phasing","better":1,"matchers":[{"string":"# к уклонению в форме призрака"}],"trade":{"ids":{"enchant":["enchant.stat_3169671355"]}}} +{"ref":"+# to Global Evasion Rating while moving","better":1,"matchers":[{"string":"# к глобальному уклонению во время передвижения"}],"trade":{"ids":{"implicit":["implicit.stat_3825877290"]}}} +{"ref":"+# to Intelligence","better":1,"matchers":[{"string":"# к интеллекту"}],"trade":{"ids":{"explicit":["explicit.stat_328541901"],"implicit":["implicit.stat_328541901"],"fractured":["fractured.stat_328541901"],"scourge":["scourge.stat_328541901"],"crafted":["crafted.stat_328541901"]}}} +{"ref":"+# to Level of all Absolution Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Отпущение","advanced":"# к уровню всех камней умения Отпущение(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_251"]}}} +{"ref":"+# to Level of all Alchemist's Mark Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Метка алхимика","advanced":"# к уровню всех камней умения Метка алхимика(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_270"]}}} +{"ref":"+# to Level of all Ambush Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Засада","advanced":"# к уровню всех камней умения Засада(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_248"]}}} +{"ref":"+# to Level of all Ancestral Cry Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Клич предков","advanced":"# к уровню всех камней умения Клич предков(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_222"]}}} +{"ref":"+# to Level of all Anger Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Жгучая злоба","advanced":"# к уровню всех камней умения Жгучая злоба(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_68"]}}} +{"ref":"+# to Level of all Animate Guardian Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Аниматрон","advanced":"# к уровню всех камней умения Аниматрон(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_95"]}}} +{"ref":"+# to Level of all Animate Weapon Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Живое оружие","advanced":"# к уровню всех камней умения Живое оружие(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_97"]}}} +{"ref":"+# to Level of all Arc Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Цепь молний","advanced":"# к уровню всех камней умения Цепь молний(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_61"]}}} +{"ref":"+# to Level of all Arcane Cloak Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Чародейский покров","advanced":"# к уровню всех камней умения Чародейский покров(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_220"]}}} +{"ref":"+# to Level of all Arcanist Brand Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Клеймо чаротворца","advanced":"# к уровню всех камней умения Клеймо чаротворца(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_225"]}}} +{"ref":"+# to Level of all Arctic Armour Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Северная броня","advanced":"# к уровню всех камней умения Северная броня(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_81"]}}} +{"ref":"+# to Level of all Armageddon Brand Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Клеймо Армагеддона","advanced":"# к уровню всех камней умения Клеймо Армагеддона(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_182"]}}} +{"ref":"+# to Level of all Artillery Ballista Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Артиллерийская баллиста","advanced":"# к уровню всех камней умения Артиллерийская баллиста(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_213"]}}} +{"ref":"+# to Level of all Assassin's Mark Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Метка убийцы","advanced":"# к уровню всех камней умения Метка убийцы(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_43"]}}} +{"ref":"+# to Level of all Autoexertion Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Автоусиление","advanced":"# к уровню всех камней умения Автоусиление(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_274"]}}} +{"ref":"+# to Level of all Automation Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Автоматизация","advanced":"# к уровню всех камней умения Автоматизация(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_273"]}}} +{"ref":"+# to Level of all Ball Lightning Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Шаровая молния","advanced":"# к уровню всех камней умения Шаровая молния(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_104"]}}} +{"ref":"+# to Level of all Bane Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Погибель","advanced":"# к уровню всех камней умения Погибель(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_190"]}}} +{"ref":"+# to Level of all Barrage Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Очередь","advanced":"# к уровню всех камней умения Очередь(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_103"]}}} +{"ref":"+# to Level of all Battlemage's Cry Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Клич боевого мага","advanced":"# к уровню всех камней умения Клич боевого мага(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_250"]}}} +{"ref":"+# to Level of all Bear Trap Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Медвежий капкан","advanced":"# к уровню всех камней умения Медвежий капкан(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_76"]}}} +{"ref":"+# to Level of all Berserk Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Боевое безумие","advanced":"# к уровню всех камней умения Боевое безумие(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_200"]}}} +{"ref":"+# to Level of all Blade Blast Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Взрыв клинков","advanced":"# к уровню всех камней умения Взрыв клинков(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_217"]}}} +{"ref":"+# to Level of all Blade Flurry Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Порыв клинков","advanced":"# к уровню всех камней умения Порыв клинков(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_157"]}}} +{"ref":"+# to Level of all Blade Trap Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Ловушка лезвий","advanced":"# к уровню всех камней умения Ловушка лезвий(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_255"]}}} +{"ref":"+# to Level of all Blade Vortex Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Вихрь клинков","advanced":"# к уровню всех камней умения Вихрь клинков(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_138"]}}} +{"ref":"+# to Level of all Bladefall Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Мечепад","advanced":"# к уровню всех камней умения Мечепад(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_136"]}}} +{"ref":"+# to Level of all Bladestorm Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Ураган лезвий","advanced":"# к уровню всех камней умения Ураган лезвий(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_198"]}}} +{"ref":"+# to Level of all Blast Rain Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Дождь взрывов","advanced":"# к уровню всех камней умения Дождь взрывов(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_135"]}}} +{"ref":"+# to Level of all Blazing Salvo Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Пылающий залп","advanced":"# к уровню всех камней умения Пылающий залп(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_232"]}}} +{"ref":"+# to Level of all Blight Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Мор","advanced":"# к уровню всех камней умения Мор(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_155"]}}} +{"ref":"+# to Level of all Blink Arrow Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Стрела-телепорт","advanced":"# к уровню всех камней умения Стрела-телепорт(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_120"]}}} +{"ref":"+# to Level of all Blood and Sand Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Кровь и песок","advanced":"# к уровню всех камней умения Кровь и песок(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_199"]}}} +{"ref":"+# to Level of all Blood Rage Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Кровавый угар","advanced":"# к уровню всех камней умения Кровавый угар(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_23"]}}} +{"ref":"+# to Level of all Bodyswap Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Обмен телами","advanced":"# к уровню всех камней умения Обмен телами(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_162"]}}} +{"ref":"+# to Level of all Bone Offering Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Подношение костей","advanced":"# к уровню всех камней умения Подношение костей(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_109"]}}} +{"ref":"+# to Level of all Boneshatter Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Дробление костей","advanced":"# к уровню всех камней умения Дробление костей(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_247"]}}} +{"ref":"+# to Level of all Brand Recall Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Возврат клейм","advanced":"# к уровню всех камней умения Возврат клейм(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_183"]}}} +{"ref":"+# to Level of all Burning Arrow Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Горящая стрела","advanced":"# к уровню всех камней умения Горящая стрела(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_71"]}}} +{"ref":"+# to Level of all Caustic Arrow Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Едкая стрела","advanced":"# к уровню всех камней умения Едкая стрела(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_18"]}}} +{"ref":"+# to Level of all Chain Hook Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Цепной крюк","advanced":"# к уровню всех камней умения Цепной крюк(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_202"]}}} +{"ref":"+# to Level of all Chaos Skill Gems","better":1,"matchers":[{"string":"# к уровню всех камней умений хаоса"}],"trade":{"ids":{"explicit":["explicit.stat_67169579"],"fractured":["fractured.stat_67169579"]}}} +{"ref":"+# to Level of all Chaos Spell Skill Gems","better":1,"matchers":[{"string":"# к уровню всех камней умений чар хаоса"}],"trade":{"ids":{"explicit":["explicit.stat_4226189338"],"fractured":["fractured.stat_4226189338"],"scourge":["scourge.stat_4226189338"]}}} +{"ref":"+# to Level of all Charged Dash Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Заряженный рывок","advanced":"# к уровню всех камней умения Заряженный рывок(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_158"]}}} +{"ref":"+# to Level of all Clarity Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Ясность ума","advanced":"# к уровню всех камней умения Ясность ума(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_72"]}}} +{"ref":"+# to Level of all Cleave Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Рассечение","advanced":"# к уровню всех камней умения Рассечение(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_6"]}}} +{"ref":"+# to Level of all Cobra Lash Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Бросок кобры","advanced":"# к уровню всех камней умения Бросок кобры(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_206"]}}} +{"ref":"+# to Level of all Cold Skill Gems","better":1,"matchers":[{"string":"# к уровню всех камней умений холода"}],"trade":{"ids":{"explicit":["explicit.stat_1078455967"],"fractured":["fractured.stat_1078455967"]}}} +{"ref":"+# to Level of all Cold Snap Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Укус стужи","advanced":"# к уровню всех камней умения Укус стужи(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_15"]}}} +{"ref":"+# to Level of all Cold Spell Skill Gems","better":1,"matchers":[{"string":"# к уровню всех камней умений чар холода"}],"trade":{"ids":{"explicit":["explicit.stat_2254480358"],"fractured":["fractured.stat_2254480358"],"scourge":["scourge.stat_2254480358"]}}} +{"ref":"+# to Level of all Conductivity Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Проводимость","advanced":"# к уровню всех камней умения Проводимость(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_85"]}}} +{"ref":"+# to Level of all Consecrated Path Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Освящённый путь","advanced":"# к уровню всех камней умения Освящённый путь(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_175"]}}} +{"ref":"+# to Level of all Contagion Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Инфекция","advanced":"# к уровню всех камней умения Инфекция(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_139"]}}} +{"ref":"+# to Level of all Conversion Trap Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Ловушка переманивания","advanced":"# к уровню всех камней умения Ловушка переманивания(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_75"]}}} +{"ref":"+# to Level of all Convocation Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Сбор","advanced":"# к уровню всех камней умения Сбор(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_111"]}}} +{"ref":"+# to Level of all Corrupting Fever Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Разлагающая лихорадка","advanced":"# к уровню всех камней умения Разлагающая лихорадка(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_239"]}}} +{"ref":"+# to Level of all Crackling Lance Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Искрящееся копьё","advanced":"# к уровню всех камней умения Искрящееся копьё(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_233"]}}} +{"ref":"+# to Level of all Creeping Frost Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Ползучий мороз","advanced":"# к уровню всех камней умения Ползучий мороз(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_19"]}}} +{"ref":"+# to Level of all Cremation Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Кремация","advanced":"# к уровню всех камней умения Кремация(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_161"]}}} +{"ref":"+# to Level of all Crushing Fist Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Сокрушающий кулак","advanced":"# к уровню всех камней умения Сокрушающий кулак(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_49"]}}} +{"ref":"+# to Level of all Cyclone Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Вихрь","advanced":"# к уровню всех камней умения Вихрь(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_87"]}}} +{"ref":"+# to Level of all Dark Pact Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Тёмный договор","advanced":"# к уровню всех камней умения Тёмный договор(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_159"]}}} +{"ref":"+# to Level of all Dash Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Рывок","advanced":"# к уровню всех камней умения Рывок(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_197"]}}} +{"ref":"+# to Level of all Decoy Totem Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Тотем-приманка","advanced":"# к уровню всех камней умения Тотем-приманка(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_78"]}}} +{"ref":"+# to Level of all Defiance Banner Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Знамя непокорности","advanced":"# к уровню всех камней умения Знамя непокорности(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_242"]}}} +{"ref":"+# to Level of all Desecrate Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Осквернение","advanced":"# к уровню всех камней умения Осквернение(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_107"]}}} +{"ref":"+# to Level of all Despair Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Отчаяние","advanced":"# к уровню всех камней умения Отчаяние(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_45"]}}} +{"ref":"+# to Level of all Destructive Link Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Разрушительная связь","advanced":"# к уровню всех камней умения Разрушительная связь(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_267"]}}} +{"ref":"+# to Level of all Determination Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Решимость","advanced":"# к уровню всех камней умения Решимость(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_67"]}}} +{"ref":"+# to Level of all Detonate Dead Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Подрыв трупа","advanced":"# к уровню всех камней умения Подрыв трупа(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_17"]}}} +{"ref":"+# to Level of all Devouring Totem Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Поглощающий тотем","advanced":"# к уровню всех камней умения Поглощающий тотем(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_79"]}}} +{"ref":"+# to Level of all Discharge Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Разряд","advanced":"# к уровню всех камней умения Разряд(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_25"]}}} +{"ref":"+# to Level of all Discipline Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Дисциплина","advanced":"# к уровню всех камней умения Дисциплина(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_65"]}}} +{"ref":"+# to Level of all Divine Ire Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Божественный гнев","advanced":"# к уровню всех камней умения Божественный гнев(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_191"]}}} +{"ref":"+# to Level of all Divine Retribution Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Божественное возмездие","advanced":"# к уровню всех камней умения Божественное возмездие(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_275"]}}} +{"ref":"+# to Level of all Dominating Blow Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Удар власти","advanced":"# к уровню всех камней умения Удар власти(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_52"]}}} +{"ref":"+# to Level of all Double Strike Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Двойной удар","advanced":"# к уровню всех камней умения Двойной удар(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_9"]}}} +{"ref":"+# to Level of all Dread Banner Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Знамя страха","advanced":"# к уровню всех камней умения Знамя страха(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_185"]}}} +{"ref":"+# to Level of all Dual Strike Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Парный удар","advanced":"# к уровню всех камней умения Парный удар(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_12"]}}} +{"ref":"+# to Level of all Earthquake Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Землетрясение","advanced":"# к уровню всех камней умения Землетрясение(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_149"]}}} +{"ref":"+# to Level of all Earthshatter Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Разлом земли","advanced":"# к уровню всех камней умения Разлом земли(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_228"]}}} +{"ref":"+# to Level of all Elemental Hit Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Удар стихии","advanced":"# к уровню всех камней умения Удар стихии(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_10"]}}} +{"ref":"+# to Level of all Elemental Weakness Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Уязвимость к стихиям","advanced":"# к уровню всех камней умения Уязвимость к стихиям(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_39"]}}} +{"ref":"+# to Level of all Enduring Cry Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Клич стойкости","advanced":"# к уровню всех камней умения Клич стойкости(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_8"]}}} +{"ref":"+# to Level of all Energy Blade Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Клинок энергии","advanced":"# к уровню всех камней умения Клинок энергии(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_260"]}}} +{"ref":"+# to Level of all Enfeeble Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Слабость","advanced":"# к уровню всех камней умения Слабость(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_42"]}}} +{"ref":"+# to Level of all Ensnaring Arrow Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Стрела ловчего","advanced":"# к уровню всех камней умения Стрела ловчего(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_215"]}}} +{"ref":"+# to Level of all Essence Drain Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Похищение сущности","advanced":"# к уровню всех камней умения Похищение сущности(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_141"]}}} +{"ref":"+# to Level of all Ethereal Knives Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Бесплотные ножи","advanced":"# к уровню всех камней умения Бесплотные ножи(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_80"]}}} +{"ref":"+# to Level of all Eviscerate Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Потрошение","advanced":"# к уровню всех камней умения Потрошение(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_146"]}}} +{"ref":"+# to Level of all Explosive Arrow Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Взрывная стрела","advanced":"# к уровню всех камней умения Взрывная стрела(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_37"]}}} +{"ref":"+# to Level of all Explosive Concoction Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Взрывная смесь","advanced":"# к уровню всех камней умения Взрывная смесь(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_257"]}}} +{"ref":"+# to Level of all Explosive Trap Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Взрывная ловушка","advanced":"# к уровню всех камней умения Взрывная ловушка(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_165"]}}} +{"ref":"+# to Level of all Exsanguinate Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Обескровливание","advanced":"# к уровню всех камней умения Обескровливание(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_238"]}}} +{"ref":"+# to Level of all Eye of Winter Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Око зимы","advanced":"# к уровню всех камней умения Око зимы(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_252"]}}} +{"ref":"+# to Level of all Fire Skill Gems","better":1,"matchers":[{"string":"# к уровню всех камней умений огня"}],"trade":{"ids":{"explicit":["explicit.stat_599749213"],"fractured":["fractured.stat_599749213"]}}} +{"ref":"+# to Level of all Fire Spell Skill Gems","better":1,"matchers":[{"string":"# к уровню всех камней умений чар огня"}],"trade":{"ids":{"explicit":["explicit.stat_591105508"],"fractured":["fractured.stat_591105508"],"scourge":["scourge.stat_591105508"]}}} +{"ref":"+# to Level of all Fire Trap Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Огненная ловушка","advanced":"# к уровню всех камней умения Огненная ловушка(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_77"]}}} +{"ref":"+# to Level of all Fireball Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Огненный шар","advanced":"# к уровню всех камней умения Огненный шар(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_1"]}}} +{"ref":"+# to Level of all Firestorm Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Огненный шторм","advanced":"# к уровню всех камней умения Огненный шторм(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_54"]}}} +{"ref":"+# to Level of all Flame Dash Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Огненный рывок","advanced":"# к уровню всех камней умения Огненный рывок(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_131"]}}} +{"ref":"+# to Level of all Flame Link Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Пламенная связь","advanced":"# к уровню всех камней умения Пламенная связь(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_263"]}}} +{"ref":"+# to Level of all Flame Surge Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Выброс пламени","advanced":"# к уровню всех камней умения Выброс пламени(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_106"]}}} +{"ref":"+# to Level of all Flame Wall Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Стена пламени","advanced":"# к уровню всех камней умения Стена пламени(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_231"]}}} +{"ref":"+# to Level of all Flameblast Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Пламенный взрыв","advanced":"# к уровню всех камней умения Пламенный взрыв(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_102"]}}} +{"ref":"+# to Level of all Flamethrower Trap Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Ловушка-огнемёт","advanced":"# к уровню всех камней умения Ловушка-огнемёт(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_167"]}}} +{"ref":"+# to Level of all Flammability Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Горючесть","advanced":"# к уровню всех камней умения Горючесть(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_83"]}}} +{"ref":"+# to Level of all Flesh and Stone Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Камень и плоть","advanced":"# к уровню всех камней умения Камень и плоть(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_204"]}}} +{"ref":"+# to Level of all Flesh Offering Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Подношение плоти","advanced":"# к уровню всех камней умения Подношение плоти(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_108"]}}} +{"ref":"+# to Level of all Flicker Strike Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Внезапный удар","advanced":"# к уровню всех камней умения Внезапный удар(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_26"]}}} +{"ref":"+# to Level of all Forbidden Rite Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Запретный ритуал","advanced":"# к уровню всех камней умения Запретный ритуал(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_254"]}}} +{"ref":"+# to Level of all Freezing Pulse Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Волна холода","advanced":"# к уровню всех камней умения Волна холода(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_33"]}}} +{"ref":"+# to Level of all Frenzy Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Бешенство","advanced":"# к уровню всех камней умения Бешенство(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_14"]}}} +{"ref":"+# to Level of all Frost Blades Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Ледяные клинки","advanced":"# к уровню всех камней умения Ледяные клинки(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_132"]}}} +{"ref":"+# to Level of all Frost Bomb Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Морозная бомба","advanced":"# к уровню всех камней умения Морозная бомба(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_144"]}}} +{"ref":"+# to Level of all Frost Shield Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Морозный щит","advanced":"# к уровню всех камней умения Морозный щит(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_235"]}}} +{"ref":"+# to Level of all Frost Wall Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Стена льда","advanced":"# к уровню всех камней умения Стена льда(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_32"]}}} +{"ref":"+# to Level of all Frostbite Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Обморожение","advanced":"# к уровню всех камней умения Обморожение(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_84"]}}} +{"ref":"+# to Level of all Frostblink Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Ледяной скачок","advanced":"# к уровню всех камней умения Ледяной скачок(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_203"]}}} +{"ref":"+# to Level of all Frostbolt Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Морозный шар","advanced":"# к уровню всех камней умения Морозный шар(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_153"]}}} +{"ref":"+# to Level of all Frozen Legion Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Замёрзший легион","advanced":"# к уровню всех камней умения Замёрзший легион(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_271"]}}} +{"ref":"+# to Level of all Galvanic Arrow Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Электризующая стрела","advanced":"# к уровню всех камней умения Электризующая стрела(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_134"]}}} +{"ref":"+# to Level of all Galvanic Field Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Электризующее поле","advanced":"# к уровню всех камней умения Электризующее поле(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_268"]}}} +{"ref":"+# to Level of all General's Cry Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Клич полководца","advanced":"# к уровню всех камней умения Клич полководца(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_224"]}}} +{"ref":"+# to Level of all Glacial Cascade Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Ледяной каскад","advanced":"# к уровню всех камней умения Ледяной каскад(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_110"]}}} +{"ref":"+# to Level of all Glacial Hammer Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Леденящий молот","advanced":"# к уровню всех камней умения Леденящий молот(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_31"]}}} +{"ref":"+# to Level of all Glacial Shield Swipe Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Взмах ледяного щита","advanced":"# к уровню всех камней умения Взмах ледяного щита(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_48"]}}} +{"ref":"+# to Level of all Grace Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Грация","advanced":"# к уровню всех камней умения Грация(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_66"]}}} +{"ref":"+# to Level of all Ground Slam Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Сотрясение","advanced":"# к уровню всех камней умения Сотрясение(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_5"]}}} +{"ref":"+# to Level of all Haste Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Спешка","advanced":"# к уровню всех камней умения Спешка(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_62"]}}} +{"ref":"+# to Level of all Hatred Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Холодная ненависть","advanced":"# к уровню всех камней умения Холодная ненависть(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_69"]}}} +{"ref":"+# to Level of all Heavy Strike Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Тяжёлый удар","advanced":"# к уровню всех камней умения Тяжёлый удар(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_51"]}}} +{"ref":"+# to Level of all Herald of Agony Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Вестник агонии","advanced":"# к уровню всех камней умения Вестник агонии(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_174"]}}} +{"ref":"+# to Level of all Herald of Ash Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Вестник пепла","advanced":"# к уровню всех камней умения Вестник пепла(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_114"]}}} +{"ref":"+# to Level of all Herald of Ice Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Вестник льда","advanced":"# к уровню всех камней умения Вестник льда(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_115"]}}} +{"ref":"+# to Level of all Herald of Purity Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Вестник чистоты","advanced":"# к уровню всех камней умения Вестник чистоты(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_173"]}}} +{"ref":"+# to Level of all Herald of Thunder Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Вестник грома","advanced":"# к уровню всех камней умения Вестник грома(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_116"]}}} +{"ref":"+# to Level of all Hexblast Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Взрыв порчи","advanced":"# к уровню всех камней умения Взрыв порчи(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_237"]}}} +{"ref":"+# to Level of all Holy Flame Totem Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Тотем священного огня","advanced":"# к уровню всех камней умения Тотем священного огня(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_82"]}}} +{"ref":"+# to Level of all Hydrosphere Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Гидросфера","advanced":"# к уровню всех камней умения Гидросфера(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_236"]}}} +{"ref":"+# to Level of all Ice Crash Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Ледяное сокрушение","advanced":"# к уровню всех камней умения Ледяное сокрушение(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_126"]}}} +{"ref":"+# to Level of all Ice Nova Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Кольцо льда","advanced":"# к уровню всех камней умения Кольцо льда(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_2"]}}} +{"ref":"+# to Level of all Ice Shot Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Ледяной выстрел","advanced":"# к уровню всех камней умения Ледяной выстрел(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_20"]}}} +{"ref":"+# to Level of all Ice Spear Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Ледяное копьё","advanced":"# к уровню всех камней умения Ледяное копьё(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_28"]}}} +{"ref":"+# to Level of all Ice Trap Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Ледяная ловушка","advanced":"# к уровню всех камней умения Ледяная ловушка(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_142"]}}} +{"ref":"+# to Level of all Icicle Mine Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Шквальная мина","advanced":"# к уровню всех камней умения Шквальная мина(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_93"]}}} +{"ref":"+# to Level of all Immortal Call Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Призыв к бессмертию","advanced":"# к уровню всех камней умения Призыв к бессмертию(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_11"]}}} +{"ref":"+# to Level of all Incinerate Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Испепеление","advanced":"# к уровню всех камней умения Испепеление(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_86"]}}} +{"ref":"+# to Level of all Infernal Blow Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Удар преисподней","advanced":"# к уровню всех камней умения Удар преисподней(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_30"]}}} +{"ref":"+# to Level of all Infernal Cry Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Клич преисподней","advanced":"# к уровню всех камней умения Клич преисподней(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_128"]}}} +{"ref":"+# to Level of all Intimidating Cry Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Устрашающий клич","advanced":"# к уровню всех камней умения Устрашающий клич(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_221"]}}} +{"ref":"+# to Level of all Intuitive Link Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Подсознательная связь","advanced":"# к уровню всех камней умения Подсознательная связь(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_264"]}}} +{"ref":"+# to Level of all Jobs for Heists","better":1,"matchers":[{"string":"# к уровню всех навыков в Кражах"}],"trade":{"ids":{"explicit":["explicit.stat_2692578539"],"fractured":["fractured.stat_2692578539"]}}} +{"ref":"+# to Level of all Kinetic Blast Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Кинетический взрыв","advanced":"# к уровню всех камней умения Кинетический взрыв(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_121"]}}} +{"ref":"+# to Level of all Kinetic Bolt Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Кинетический заряд","advanced":"# к уровню всех камней умения Кинетический заряд(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_219"]}}} +{"ref":"+# to Level of all Lacerate Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Разрубание","advanced":"# к уровню всех камней умения Разрубание(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_151"]}}} +{"ref":"+# to Level of all Lancing Steel Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Пронзающая сталь","advanced":"# к уровню всех камней умения Пронзающая сталь(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_187"]}}} +{"ref":"+# to Level of all Leap Slam Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Наскок","advanced":"# к уровню всех камней умения Наскок(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_3"]}}} +{"ref":"+# to Level of all Lightning Arrow Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Стрела молнии","advanced":"# к уровню всех камней умения Стрела молнии(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_60"]}}} +{"ref":"+# to Level of all Lightning Conduit Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Проводник молнии","advanced":"# к уровню всех камней умения Проводник молнии(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_269"]}}} +{"ref":"+# to Level of all Lightning Skill Gems","better":1,"matchers":[{"string":"# к уровню всех камней умений молнии"}],"trade":{"ids":{"explicit":["explicit.stat_1147690586"],"fractured":["fractured.stat_1147690586"]}}} +{"ref":"+# to Level of all Lightning Spell Skill Gems","better":1,"matchers":[{"string":"# к уровню всех камней умений чар молнии"}],"trade":{"ids":{"explicit":["explicit.stat_1545858329"],"fractured":["fractured.stat_1545858329"],"scourge":["scourge.stat_1545858329"]}}} +{"ref":"+# to Level of all Lightning Spire Trap Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Ловушка шпиля молний","advanced":"# к уровню всех камней умения Ловушка шпиля молний(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_168"]}}} +{"ref":"+# to Level of all Lightning Strike Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Удар молнии","advanced":"# к уровню всех камней умения Удар молнии(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_55"]}}} +{"ref":"+# to Level of all Lightning Tendrils Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Побеги молний","advanced":"# к уровню всех камней умения Побеги молний(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_118"]}}} +{"ref":"+# to Level of all Lightning Trap Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Ловушка молний","advanced":"# к уровню всех камней умения Ловушка молний(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_90"]}}} +{"ref":"+# to Level of all Lightning Warp Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Грозовой переход","advanced":"# к уровню всех камней умения Грозовой переход(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_46"]}}} +{"ref":"+# to Level of all Malevolence Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Злорадство","advanced":"# к уровню всех камней умения Злорадство(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_194"]}}} +{"ref":"+# to Level of all Manabond Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Узы маны","advanced":"# к уровню всех камней умения Узы маны(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_256"]}}} +{"ref":"+# to Level of all Melee Skill Gems","better":1,"matchers":[{"string":"# к уровню всех камней умений ближнего боя"}],"trade":{"ids":{"explicit":["explicit.stat_9187492"]}}} +{"ref":"+# to Level of all Minion Skill Gems","better":1,"matchers":[{"string":"# к уровню всех камней умений приспешников"}],"trade":{"ids":{"explicit":["explicit.stat_2162097452"],"fractured":["fractured.stat_2162097452"]}}} +{"ref":"+# to Level of all Mirror Arrow Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Стрела-двойник","advanced":"# к уровню всех камней умения Стрела-двойник(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_119"]}}} +{"ref":"+# to Level of all Molten Shell Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Расплавленный панцирь","advanced":"# к уровню всех камней умения Расплавленный панцирь(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_57"]}}} +{"ref":"+# to Level of all Molten Strike Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Магмовый удар","advanced":"# к уровню всех камней умения Магмовый удар(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_112"]}}} +{"ref":"+# to Level of all Orb of Storms Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Сфера бурь","advanced":"# к уровню всех камней умения Сфера бурь(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_143"]}}} +{"ref":"+# to Level of all Penance Brand Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Клеймо покаяния","advanced":"# к уровню всех камней умения Клеймо покаяния(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_226"]}}} +{"ref":"+# to Level of all Perforate Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Пронзающие шипы","advanced":"# к уровню всех камней умения Пронзающие шипы(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_201"]}}} +{"ref":"+# to Level of all Pestilent Strike Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Моровой удар","advanced":"# к уровню всех камней умения Моровой удар(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_211"]}}} +{"ref":"+# to Level of all Petrified Blood Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Окаменелая кровь","advanced":"# к уровню всех камней умения Окаменелая кровь(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_240"]}}} +{"ref":"+# to Level of all Phase Run Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Призрачный бег","advanced":"# к уровню всех камней умения Призрачный бег(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_36"]}}} +{"ref":"+# to Level of all Physical Skill Gems","better":1,"matchers":[{"string":"# к уровню всех физических камней умений"}],"trade":{"ids":{"explicit":["explicit.stat_619213329"],"fractured":["fractured.stat_619213329"]}}} +{"ref":"+# to Level of all Physical Spell Skill Gems","better":1,"matchers":[{"string":"# к уровню всех камней умений физических чар"}],"trade":{"ids":{"explicit":["explicit.stat_1600707273"],"fractured":["fractured.stat_1600707273"],"enchant":["enchant.stat_1600707273"],"scourge":["scourge.stat_1600707273"]}}} +{"ref":"+# to Level of all Plague Bearer Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Носитель чумы","advanced":"# к уровню всех камней умения Носитель чумы(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_210"]}}} +{"ref":"+# to Level of all Poacher's Mark Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Метка браконьера","advanced":"# к уровню всех камней умения Метка браконьера(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_117"]}}} +{"ref":"+# to Level of all Poisonous Concoction Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Ядовитая смесь","advanced":"# к уровню всех камней умения Ядовитая смесь(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_258"]}}} +{"ref":"+# to Level of all Power Siphon Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Перелив энергии","advanced":"# к уровню всех камней умения Перелив энергии(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_58"]}}} +{"ref":"+# to Level of all Precision Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Точность","advanced":"# к уровню всех камней умения Точность(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_195"]}}} +{"ref":"+# to Level of all Pride Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Гордость","advanced":"# к уровню всех камней умения Гордость(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_205"]}}} +{"ref":"+# to Level of all Protective Link Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Ограждающая связь","advanced":"# к уровню всех камней умения Ограждающая связь(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_265"]}}} +{"ref":"+# to Level of all Puncture Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Надрез","advanced":"# к уровню всех камней умения Надрез(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_59"]}}} +{"ref":"+# to Level of all Punishment Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Наказание","advanced":"# к уровню всех камней умения Наказание(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_41"]}}} +{"ref":"+# to Level of all Purifying Flame Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Очищающее пламя","advanced":"# к уровню всех камней умения Очищающее пламя(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_188"]}}} +{"ref":"+# to Level of all Purity of Elements Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Спасение от стихий","advanced":"# к уровню всех камней умения Спасение от стихий(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_63"]}}} +{"ref":"+# to Level of all Purity of Fire Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Спасение от огня","advanced":"# к уровню всех камней умения Спасение от огня(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_98"]}}} +{"ref":"+# to Level of all Purity of Ice Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Спасение от холода","advanced":"# к уровню всех камней умения Спасение от холода(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_99"]}}} +{"ref":"+# to Level of all Purity of Lightning Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Спасение от молний","advanced":"# к уровню всех камней умения Спасение от молний(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_100"]}}} +{"ref":"+# to Level of all Pyroclast Mine Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Пирокластовая мина","advanced":"# к уровню всех камней умения Пирокластовая мина(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_91"]}}} +{"ref":"+# to Level of all Rage Vortex Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Свирепый вихрь","advanced":"# к уровню всех камней умения Свирепый вихрь(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_244"]}}} +{"ref":"+# to Level of all Rain of Arrows Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Ливень стрел","advanced":"# к уровню всех камней умения Ливень стрел(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_53"]}}} +{"ref":"+# to Level of all Raise Spectre Gems","better":1,"matchers":[{"string":"# к уровню всех камней Сотворение призрака"},{"string":"# к уровню всех камней умения Сотворение призрака","advanced":"# к уровню всех камней умения Сотворение призрака(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_29","explicit.stat_3235814433"],"fractured":["fractured.stat_3235814433"]}}} +{"ref":"+# to Level of all Raise Zombie Gems","better":1,"matchers":[{"string":"# к уровню всех камней Поднятие зомби"},{"string":"# к уровню всех камней умения Поднятие зомби","advanced":"# к уровню всех камней умения Поднятие зомби(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_16","explicit.stat_2739830820"]}}} +{"ref":"+# to Level of all Rallying Cry Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Клич сплочения","advanced":"# к уровню всех камней умения Клич сплочения(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_127"]}}} +{"ref":"+# to Level of all Reap Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Кровавая жатва","advanced":"# к уровню всех камней умения Кровавая жатва(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_241"]}}} +{"ref":"+# to Level of all Reave Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Опустошение","advanced":"# к уровню всех камней умения Опустошение(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_89"]}}} +{"ref":"+# to Level of all Rejuvenation Totem Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Восполняющий тотем","advanced":"# к уровню всех камней умения Восполняющий тотем(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_74"]}}} +{"ref":"+# to Level of all Righteous Fire Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Праведный огонь","advanced":"# к уровню всех камней умения Праведный огонь(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_24"]}}} +{"ref":"+# to Level of all Rolling Magma Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Ползучая магма","advanced":"# к уровню всех камней умения Ползучая магма(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_130"]}}} +{"ref":"+# to Level of all Scorching Ray Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Опаляющий луч","advanced":"# к уровню всех камней умения Опаляющий луч(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_156"]}}} +{"ref":"+# to Level of all Scourge Arrow Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Стрела скверны","advanced":"# к уровню всех камней умения Стрела скверны(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_177"]}}} +{"ref":"+# to Level of all Searing Bond Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Обжигающие узы","advanced":"# к уровню всех камней умения Обжигающие узы(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_88"]}}} +{"ref":"+# to Level of all Seismic Cry Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Сейсмический клич","advanced":"# к уровню всех камней умения Сейсмический клич(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_223"]}}} +{"ref":"+# to Level of all Seismic Trap Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Сейсмическая ловушка","advanced":"# к уровню всех камней умения Сейсмическая ловушка(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_169"]}}} +{"ref":"+# to Level of all Shattering Steel Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Дробящая сталь","advanced":"# к уровню всех камней умения Дробящая сталь(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_186"]}}} +{"ref":"+# to Level of all Shield Charge Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Удар щитом","advanced":"# к уровню всех камней умения Удар щитом(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_7"]}}} +{"ref":"+# to Level of all Shield Crush Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Сокрушающий щит","advanced":"# к уровню всех камней умения Сокрушающий щит(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_245"]}}} +{"ref":"+# to Level of all Shock Nova Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Кольцо молний","advanced":"# к уровню всех камней умения Кольцо молний(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_34"]}}} +{"ref":"+# to Level of all Shockwave Totem Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Сотрясающий тотем","advanced":"# к уровню всех камней умения Сотрясающий тотем(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_73"]}}} +{"ref":"+# to Level of all Shrapnel Ballista Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Осколочная баллиста","advanced":"# к уровню всех камней умения Осколочная баллиста(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_214"]}}} +{"ref":"+# to Level of all Siege Ballista Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Осадная баллиста","advanced":"# к уровню всех камней умения Осадная баллиста(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_137"]}}} +{"ref":"+# to Level of all Sigil of Power Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Печать силы","advanced":"# к уровню всех камней умения Печать силы(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_229"]}}} +{"ref":"+# to Level of all Siphoning Trap Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Ловушка переливания","advanced":"# к уровню всех камней умения Ловушка переливания(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_166"]}}} +{"ref":"+# to Level of all Skill Gems","better":1,"matchers":[{"string":"# к уровню всех камней умений"}],"trade":{"ids":{"explicit":["explicit.stat_4283407333"],"fractured":["fractured.stat_4283407333"]}}} +{"ref":"+# to Level of all Smite Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Кара","advanced":"# к уровню всех камней умения Кара(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_176"]}}} +{"ref":"+# to Level of all Smoke Mine Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Дымовая мина","advanced":"# к уровню всех камней умения Дымовая мина(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_92"]}}} +{"ref":"+# to Level of all Snipe Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Прицельный выстрел","advanced":"# к уровню всех камней умения Прицельный выстрел(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_147"]}}} +{"ref":"+# to Level of all Sniper's Mark Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Метка снайпера","advanced":"# к уровню всех камней умения Метка снайпера(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_44"]}}} +{"ref":"+# to Level of all Soul Link Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Духовная связь","advanced":"# к уровню всех камней умения Духовная связь(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_262"]}}} +{"ref":"+# to Level of all Soulrend Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Разрыв души","advanced":"# к уровню всех камней умения Разрыв души(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_189"]}}} +{"ref":"+# to Level of all Spark Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Искра","advanced":"# к уровню всех камней умения Искра(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_27"]}}} +{"ref":"+# to Level of all Spectral Helix Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Призрачная спираль","advanced":"# к уровню всех камней умения Призрачная спираль(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_253"]}}} +{"ref":"+# to Level of all Spectral Shield Throw Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Бросок призрачного щита","advanced":"# к уровню всех камней умения Бросок призрачного щита(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_172"]}}} +{"ref":"+# to Level of all Spectral Throw Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Призрачный бросок","advanced":"# к уровню всех камней умения Призрачный бросок(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_96"]}}} +{"ref":"+# to Level of all Spell Skill Gems","better":1,"matchers":[{"string":"# к уровню всех камней умений чар"}],"trade":{"ids":{"explicit":["explicit.stat_124131830"],"fractured":["fractured.stat_124131830"],"scourge":["scourge.stat_124131830"]}}} +{"ref":"+# to Level of all Spellslinger Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Чароплёт","advanced":"# к уровню всех камней умения Чароплёт(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_218"]}}} +{"ref":"+# to Level of all Spirit Offering Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Подношение духа","advanced":"# к уровню всех камней умения Подношение духа(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_152"]}}} +{"ref":"+# to Level of all Split Arrow Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Расколотая стрела","advanced":"# к уровню всех камней умения Расколотая стрела(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_22"]}}} +{"ref":"+# to Level of all Splitting Steel Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Раскалывающая сталь","advanced":"# к уровню всех камней умения Раскалывающая сталь(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_230"]}}} +{"ref":"+# to Level of all Static Strike Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Статичный разряд","advanced":"# к уровню всех камней умения Статичный разряд(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_21"]}}} +{"ref":"+# to Level of all Steelskin Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Стальная кожа","advanced":"# к уровню всех камней умения Стальная кожа(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_196"]}}} +{"ref":"+# to Level of all Storm Brand Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Клеймо бури","advanced":"# к уровню всех камней умения Клеймо бури(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_181"]}}} +{"ref":"+# to Level of all Storm Burst Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Грозовой взрыв","advanced":"# к уровню всех камней умения Грозовой взрыв(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_160"]}}} +{"ref":"+# to Level of all Storm Call Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Призыв бури","advanced":"# к уровню всех камней умения Призыв бури(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_101"]}}} +{"ref":"+# to Level of all Storm Rain Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Грозовой дождь","advanced":"# к уровню всех камней умения Грозовой дождь(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_243"]}}} +{"ref":"+# to Level of all Stormbind Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Грозовые руны","advanced":"# к уровню всех камней умения Грозовые руны(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_216"]}}} +{"ref":"+# to Level of all Stormblast Mine Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Штормовая мина","advanced":"# к уровню всех камней умения Штормовая мина(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_94"]}}} +{"ref":"+# to Level of all Summon Carrion Golem Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Призыв трупного голема","advanced":"# к уровню всех камней умения Призыв трупного голема(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_212"]}}} +{"ref":"+# to Level of all Summon Chaos Golem Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Призыв голема хаоса","advanced":"# к уровню всех камней умения Призыв голема хаоса(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_122"]}}} +{"ref":"+# to Level of all Summon Flame Golem Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Призыв голема огня","advanced":"# к уровню всех камней умения Призыв голема огня(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_124"]}}} +{"ref":"+# to Level of all Summon Holy Relic Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Призыв священной реликвии","advanced":"# к уровню всех камней умения Призыв священной реликвии(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_179"]}}} +{"ref":"+# to Level of all Summon Ice Golem Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Призыв голема льда","advanced":"# к уровню всех камней умения Призыв голема льда(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_123"]}}} +{"ref":"+# to Level of all Summon Lightning Golem Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Призыв голема молнии","advanced":"# к уровню всех камней умения Призыв голема молнии(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_125"]}}} +{"ref":"+# to Level of all Summon Raging Spirit Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Призыв неистового духа","advanced":"# к уровню всех камней умения Призыв неистового духа(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_105"]}}} +{"ref":"+# to Level of all Summon Reaper Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Призыв Жнеца","advanced":"# к уровню всех камней умения Призыв Жнеца(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_246"]}}} +{"ref":"+# to Level of all Summon Skeletons Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Сотворение скелетов","advanced":"# к уровню всех камней умения Сотворение скелетов(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_47"]}}} +{"ref":"+# to Level of all Summon Skitterbots Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Призыв мехаботов","advanced":"# к уровню всех камней умения Призыв мехаботов(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_209"]}}} +{"ref":"+# to Level of all Summon Stone Golem Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Призыв каменного голема","advanced":"# к уровню всех камней умения Призыв каменного голема(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_145"]}}} +{"ref":"+# to Level of all Sunder Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Раскол","advanced":"# к уровню всех камней умения Раскол(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_150"]}}} +{"ref":"+# to Level of all Sweep Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Круговой взмах","advanced":"# к уровню всех камней умения Круговой взмах(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_4"]}}} +{"ref":"+# to Level of all Swordstorm Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Буря мечей","advanced":"# к уровню всех камней умения Буря мечей(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_50"]}}} +{"ref":"+# to Level of all Tectonic Slam Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Тектонический удар","advanced":"# к уровню всех камней умения Тектонический удар(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_171"]}}} +{"ref":"+# to Level of all Tempest Shield Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Щит бури","advanced":"# к уровню всех камней умения Щит бури(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_56"]}}} +{"ref":"+# to Level of all Temporal Chains Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Путы времени","advanced":"# к уровню всех камней умения Путы времени(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_38"]}}} +{"ref":"+# to Level of all Temporal Rift Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Временной разрыв","advanced":"# к уровню всех камней умения Временной разрыв(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_259"]}}} +{"ref":"+# to Level of all Tornado Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Торнадо","advanced":"# к уровню всех камней умения Торнадо(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_261"]}}} +{"ref":"+# to Level of all Tornado Shot Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Вихрь стрел","advanced":"# к уровню всех камней умения Вихрь стрел(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_113"]}}} +{"ref":"+# to Level of all Toxic Rain Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Токсичный дождь","advanced":"# к уровню всех камней умения Токсичный дождь(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_178"]}}} +{"ref":"+# to Level of all Unearth Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Эксгумация","advanced":"# к уровню всех камней умения Эксгумация(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_164"]}}} +{"ref":"+# to Level of all Vaal Skill Gems","better":1,"matchers":[{"string":"# к уровню всех камней умений ваал"}],"trade":{"ids":{"implicit":["implicit.stat_4180346416"]}}} +{"ref":"+# to Level of all Vampiric Link Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Иссушающая связь","advanced":"# к уровню всех камней умения Иссушающая связь(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_266"]}}} +{"ref":"+# to Level of all Vengeful Cry Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Клич отмщения","advanced":"# к уровню всех камней умения Клич отмщения(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_148"]}}} +{"ref":"+# to Level of all Venom Gyre Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Круг яда","advanced":"# к уровню всех камней умения Круг яда(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_208"]}}} +{"ref":"+# to Level of all Vigilant Strike Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Расчётливый удар","advanced":"# к уровню всех камней умения Расчётливый удар(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_129"]}}} +{"ref":"+# to Level of all Viper Strike Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Удар гадюки","advanced":"# к уровню всех камней умения Удар гадюки(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_35"]}}} +{"ref":"+# to Level of all Vitality Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Живучесть","advanced":"# к уровню всех камней умения Живучесть(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_64"]}}} +{"ref":"+# to Level of all Void Sphere Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Сфера пустоты","advanced":"# к уровню всех камней умения Сфера пустоты(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_234"]}}} +{"ref":"+# to Level of all Volatile Dead Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Нестабильный труп","advanced":"# к уровню всех камней умения Нестабильный труп(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_163"]}}} +{"ref":"+# to Level of all Volcanic Fissure Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Вулканический разлом","advanced":"# к уровню всех камней умения Вулканический разлом(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_272"]}}} +{"ref":"+# to Level of all Voltaxic Burst Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Вольтаксовая вспышка","advanced":"# к уровню всех камней умения Вольтаксовая вспышка(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_249"]}}} +{"ref":"+# to Level of all Vortex Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Пурга","advanced":"# к уровню всех камней умения Пурга(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_154"]}}} +{"ref":"+# to Level of all Vulnerability Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Беззащитность","advanced":"# к уровню всех камней умения Беззащитность(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_170"]}}} +{"ref":"+# to Level of all War Banner Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Знамя войны","advanced":"# к уровню всех камней умения Знамя войны(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_184"]}}} +{"ref":"+# to Level of all Warlord's Mark Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Метка вождя","advanced":"# к уровню всех камней умения Метка вождя(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_40"]}}} +{"ref":"+# to Level of all Wave of Conviction Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Волна осуждения","advanced":"# к уровню всех камней умения Волна осуждения(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_192"]}}} +{"ref":"+# to Level of all Whirling Blades Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Шквал клинков","advanced":"# к уровню всех камней умения Шквал клинков(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_13"]}}} +{"ref":"+# to Level of all Wild Strike Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Шальной удар","advanced":"# к уровню всех камней умения Шальной удар(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_133"]}}} +{"ref":"+# to Level of all Winter Orb Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Зимняя сфера","advanced":"# к уровню всех камней умения Зимняя сфера(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_180"]}}} +{"ref":"+# to Level of all Wintertide Brand Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Клеймо зимы","advanced":"# к уровню всех камней умения Клеймо зимы(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_227"]}}} +{"ref":"+# to Level of all Wither Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Увядание","advanced":"# к уровню всех камней умения Увядание(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_140"]}}} +{"ref":"+# to Level of all Withering Step Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Губительный шаг","advanced":"# к уровню всех камней умения Губительный шаг(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_207"]}}} +{"ref":"+# to Level of all Wrath Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Грозный гнев","advanced":"# к уровню всех камней умения Грозный гнев(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_70"]}}} +{"ref":"+# to Level of all Zealotry Gems","better":1,"matchers":[{"string":"# к уровню всех камней умения Фанатизм","advanced":"# к уровню всех камней умения Фанатизм(Огненный шар-Божественное возмездие)"}],"trade":{"ids":{"explicit":["explicit.indexable_skill_193"]}}} +{"ref":"+# to Level of Socketed AoE Gems","better":1,"matchers":[{"string":"# к уровню размещённых камней области действия"}],"trade":{"ids":{"explicit":["explicit.stat_2551600084"],"implicit":["implicit.stat_2551600084"],"fractured":["fractured.stat_2551600084"],"scourge":["scourge.stat_2551600084"],"crafted":["crafted.stat_2551600084"]}}} +{"ref":"+# to Level of Socketed Aura Gems","better":1,"matchers":[{"string":"# к уровню размещённых камней аур"}],"trade":{"ids":{"explicit":["explicit.stat_2452998583"],"implicit":["implicit.stat_2452998583"],"fractured":["fractured.stat_2452998583"],"scourge":["scourge.stat_2452998583"]}}} +{"ref":"+# to Level of Socketed Bow Gems","better":1,"matchers":[{"string":"# к уровню размещённых камней лука"}],"trade":{"ids":{"explicit":["explicit.stat_2027269580"],"implicit":["implicit.stat_2027269580"],"fractured":["fractured.stat_2027269580"]}}} +{"ref":"+# to Level of Socketed Chaos Gems","better":1,"matchers":[{"string":"# к уровню размещённых камней хаоса"}],"trade":{"ids":{"explicit":["explicit.stat_2675603254"],"implicit":["implicit.stat_2675603254"],"fractured":["fractured.stat_2675603254"],"scourge":["scourge.stat_2675603254"]}}} +{"ref":"+# to Level of Socketed Cold Gems","better":1,"matchers":[{"string":"# к уровню размещённых камней холода"}],"trade":{"ids":{"explicit":["explicit.stat_1645459191"],"implicit":["implicit.stat_1645459191"],"fractured":["fractured.stat_1645459191"],"scourge":["scourge.stat_1645459191"]}}} +{"ref":"+# to Level of Socketed Curse Gems","better":1,"matchers":[{"string":"# к уровню размещённых камней проклятий"}],"trade":{"ids":{"explicit":["explicit.stat_3691695237"],"implicit":["implicit.stat_3691695237"],"fractured":["fractured.stat_3691695237"],"scourge":["scourge.stat_3691695237"]}}} +{"ref":"+# to Level of Socketed Dexterity Gems","better":1,"matchers":[{"string":"# к уровню размещённых камней ловкости"}],"trade":{"ids":{"explicit":["explicit.stat_2718698372"],"implicit":["implicit.stat_2718698372"],"fractured":["fractured.stat_2718698372"],"scourge":["scourge.stat_2718698372"]}}} +{"ref":"+# to Level of Socketed Duration Gems","better":1,"matchers":[{"string":"# к уровню размещённых камней длительности"}],"trade":{"ids":{"implicit":["implicit.stat_2115168758"],"scourge":["scourge.stat_2115168758"]}}} +{"ref":"+# to Level of Socketed Elemental Gems","better":1,"matchers":[{"string":"# к уровню размещённых камней стихий"}],"trade":{"ids":{"explicit":["explicit.stat_3571342795"]}}} +{"ref":"+# to Level of Socketed Fire Gems","better":1,"matchers":[{"string":"# к уровню размещённых камней огня"}],"trade":{"ids":{"explicit":["explicit.stat_339179093"],"implicit":["implicit.stat_339179093"],"fractured":["fractured.stat_339179093"],"scourge":["scourge.stat_339179093"]}}} +{"ref":"+# to Level of Socketed Gems","better":1,"matchers":[{"string":"# к уровню размещённых камней"}],"trade":{"ids":{"explicit":["explicit.stat_2843100721"],"implicit":["implicit.stat_2843100721"],"fractured":["fractured.stat_2843100721"],"scourge":["scourge.stat_2843100721"]}}} +{"ref":"+# to Level of Socketed Golem Gems","better":1,"matchers":[{"string":"# к уровню размещённых камней големов"}],"trade":{"ids":{"explicit":["explicit.stat_3448743676"]}}} +{"ref":"+# to Level of Socketed Herald Gems","better":1,"matchers":[{"string":"# к уровню размещённых камней Вестников"}],"trade":{"ids":{"explicit":["explicit.stat_1344805487"]}}} +{"ref":"+# to Level of Socketed Intelligence Gems","better":1,"matchers":[{"string":"# к уровню размещённых камней интеллекта"}],"trade":{"ids":{"explicit":["explicit.stat_1719423857"],"implicit":["implicit.stat_1719423857"],"fractured":["fractured.stat_1719423857"],"scourge":["scourge.stat_1719423857"]}}} +{"ref":"+# to Level of Socketed Lightning Gems","better":1,"matchers":[{"string":"# к уровню размещённых камней молнии"}],"trade":{"ids":{"explicit":["explicit.stat_4043416969"],"implicit":["implicit.stat_4043416969"],"fractured":["fractured.stat_4043416969"],"scourge":["scourge.stat_4043416969"]}}} +{"ref":"+# to Level of Socketed Melee Gems","better":1,"matchers":[{"string":"# к уровню размещённых камней ближнего боя"}],"trade":{"ids":{"explicit":["explicit.stat_829382474"],"implicit":["implicit.stat_829382474"],"fractured":["fractured.stat_829382474"],"scourge":["scourge.stat_829382474"],"crafted":["crafted.stat_829382474"]}}} +{"ref":"+# to Level of Socketed Minion Gems","better":1,"matchers":[{"string":"# к уровню размещённых камней приспешников"}],"trade":{"ids":{"explicit":["explicit.stat_3604946673"],"implicit":["implicit.stat_3604946673"],"fractured":["fractured.stat_3604946673"],"scourge":["scourge.stat_3604946673"]}}} +{"ref":"+# to Level of Socketed Movement Gems","better":1,"matchers":[{"string":"# к уровню размещённых камней передвижения"}],"trade":{"ids":{"explicit":["explicit.stat_3852526385"]}}} +{"ref":"+# to Level of Socketed Non-Vaal Gems","better":1,"matchers":[{"string":"# к уровню размещенных не-ваал камней"}],"trade":{"ids":{"explicit":["explicit.stat_2574694107"]}}} +{"ref":"+# to Level of Socketed Projectile Gems","better":1,"matchers":[{"string":"# к уровню размещённых камней снарядов"}],"trade":{"ids":{"explicit":["explicit.stat_2176571093"],"implicit":["implicit.stat_2176571093"],"fractured":["fractured.stat_2176571093"],"scourge":["scourge.stat_2176571093"],"crafted":["crafted.stat_2176571093"]}}} +{"ref":"+# to Level of Socketed Skill Gems","better":1,"matchers":[{"string":"# к уровню размещенных камней умений"}],"trade":{"ids":{"explicit":["explicit.stat_524797741"],"implicit":["implicit.stat_524797741"],"fractured":["fractured.stat_524797741"]}}} +{"ref":"+# to level of Socketed Skill Gems per Socketed Gem","better":1,"matchers":[{"string":"# к уровню размещенных камней умений за каждый размещенный камень"}],"trade":{"ids":{"explicit":["explicit.stat_2503682584"]}}} +{"ref":"+# to Level of Socketed Spell Gems","better":1,"matchers":[{"string":"# к уровню размещённых камней чар"}],"trade":{"ids":{"explicit":["explicit.stat_446733281"]}}} +{"ref":"+# to Level of Socketed Strength Gems","better":1,"matchers":[{"string":"# к уровню размещённых камней силы"}],"trade":{"ids":{"explicit":["explicit.stat_916797432"],"implicit":["implicit.stat_916797432"],"fractured":["fractured.stat_916797432"],"scourge":["scourge.stat_916797432"]}}} +{"ref":"+# to Level of Socketed Support Gems","better":1,"matchers":[{"string":"# к уровню размещённых камней поддержки"}],"trade":{"ids":{"explicit":["explicit.stat_4154259475"],"implicit":["implicit.stat_4154259475"],"fractured":["fractured.stat_4154259475"],"scourge":["scourge.stat_4154259475"],"crafted":["crafted.stat_4154259475"]}}} +{"ref":"+# to Level of Socketed Trap Gems","better":1,"matchers":[{"string":"# к уровню размещённых камней ловушек"}],"trade":{"ids":{"explicit":["explicit.stat_407139870"]}}} +{"ref":"+# to Level of Socketed Trap or Mine Gems","better":1,"matchers":[{"string":"# к уровню размещённых камней ловушек или мин"}],"trade":{"ids":{"explicit":["explicit.stat_150668988"],"implicit":["implicit.stat_150668988"],"fractured":["fractured.stat_150668988"],"scourge":["scourge.stat_150668988"]}}} +{"ref":"+# to Level of Socketed Vaal Gems","better":1,"matchers":[{"string":"# к уровню размещённых камней ваал"}],"trade":{"ids":{"explicit":["explicit.stat_1170386874"],"implicit":["implicit.stat_1170386874"]}}} +{"ref":"+# to Level of Socketed Warcry Gems","better":1,"matchers":[{"string":"# к уровню размещённых камней боевых кличей"}],"trade":{"ids":{"explicit":["explicit.stat_1672793731"],"implicit":["implicit.stat_1672793731"],"scourge":["scourge.stat_1672793731"]}}} +{"ref":"+# to Lockpicking Level for Heists","better":1,"matchers":[{"string":"# к уровню Взлома в Кражах"}],"trade":{"ids":{"explicit":["explicit.stat_3031310169"],"fractured":["fractured.stat_3031310169"]}}} +{"ref":"+# to Maximum Blood Charges","better":1,"matchers":[{"string":"# к максимуму зарядов крови"}],"trade":{"ids":{"enchant":["enchant.stat_4218649240"]}}} +{"ref":"+# to Maximum Charges","better":1,"matchers":[{"string":"# к максимуму зарядов"}],"trade":{"ids":{"explicit":["explicit.stat_1437957544"],"fractured":["fractured.stat_1437957544"],"enchant":["enchant.stat_1437957544"]}}} +{"ref":"+# to maximum Divine Charges","better":1,"matchers":[{"string":"# максимуму божественных зарядов"}],"trade":{"ids":{"explicit":["explicit.stat_3997368968"]}}} +{"ref":"+# to Maximum Endurance Charges","better":1,"matchers":[{"string":"# к максимуму зарядов выносливости"}],"trade":{"ids":{"explicit":["explicit.stat_1515657623"],"implicit":["implicit.stat_1515657623"],"fractured":["fractured.stat_1515657623"],"scourge":["scourge.stat_1515657623"]}}} +{"ref":"+# to Maximum Endurance Charges while affected by Determination","better":1,"matchers":[{"string":"# к максимуму зарядов выносливости под действием Решимости"}],"trade":{"ids":{"explicit":["explicit.stat_2110586221"]}}} +{"ref":"+# to maximum Energy Shield","better":1,"matchers":[{"string":"# к максимуму энергетического щита"}],"trade":{"ids":{"explicit":["explicit.stat_3489782002","explicit.stat_4052037485"],"implicit":["implicit.stat_3489782002","implicit.stat_4052037485"],"fractured":["fractured.stat_3489782002","fractured.stat_4052037485"],"scourge":["scourge.stat_4052037485"],"crafted":["crafted.stat_3489782002","crafted.stat_4052037485"]}}} +{"ref":"+# to maximum Energy Shield per 100 Reserved Life","better":1,"matchers":[{"string":"# к максимуму энергетического щита за каждые 100 удержанного здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_4270089231"]}}} +{"ref":"+# to Maximum Energy Shield per 5 Armour on Equipped Shield","better":1,"matchers":[{"string":"# к максимуму энергетического щита за каждые 5 брони на экипированном щите"}],"trade":{"ids":{"explicit":["explicit.stat_3636098185"]}}} +{"ref":"+# to Maximum Energy Shield per Blue Socket","better":1,"matchers":[{"string":"# к максимуму энергетического щита за синее гнездо"}],"trade":{"ids":{"explicit":["explicit.stat_2906522048"]}}} +{"ref":"+# to maximum Fortification","better":1,"matchers":[{"string":"# к максимуму зарядов Укрепления"}],"trade":{"ids":{"explicit":["explicit.stat_2094299742","explicit.stat_335507772"],"implicit":["implicit.stat_335507772"],"fractured":["fractured.stat_335507772"]}}} +{"ref":"+# to maximum Fortification per Endurance Charge","better":1,"matchers":[{"string":"# к максимуму зарядов Укрепления за заряд выносливости"}],"trade":{"ids":{"explicit":["explicit.stat_2032578228"]}}} +{"ref":"+# to maximum Fortification while affected by Glorious Madness","better":1,"matchers":[{"string":"# к максимуму зарядов Укрепления под действием Объятий безумия"}],"trade":{"ids":{"explicit":["explicit.stat_2611224062"]}}} +{"ref":"+# to maximum Fortification while Focused","better":1,"matchers":[{"string":"# к максимуму зарядов Укрепления, пока вы сфокусированы"}],"trade":{"ids":{"explicit":["explicit.stat_922014346"],"fractured":["fractured.stat_922014346"],"crafted":["crafted.stat_922014346"]}}} +{"ref":"+# to Maximum Frenzy Charges","better":1,"matchers":[{"string":"# к максимуму зарядов ярости"}],"trade":{"ids":{"explicit":["explicit.stat_4078695"],"implicit":["implicit.stat_4078695"],"fractured":["fractured.stat_4078695"],"scourge":["scourge.stat_4078695"]}}} +{"ref":"+# to Maximum Frenzy Charges while affected by Grace","better":1,"matchers":[{"string":"# к максимуму зарядов ярости под действием Грации"}],"trade":{"ids":{"explicit":["explicit.stat_3458080964"]}}} +{"ref":"+# to maximum Life","better":1,"matchers":[{"string":"# к максимуму здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_3299347043"],"implicit":["implicit.stat_3299347043"],"fractured":["fractured.stat_3299347043"],"scourge":["scourge.stat_3299347043"],"crafted":["crafted.stat_3299347043"]}}} +{"ref":"+# to maximum Life for each Empty Red Socket on any Equipped Item","better":1,"matchers":[{"string":"# к максимуму здоровья за каждую пустую красную ячейку на любом надетом предмете"}],"trade":{"ids":{"explicit":["explicit.stat_726359715"]}}} +{"ref":"+# to maximum Life if there are no Life Modifiers on other Equipped Items","better":1,"matchers":[{"string":"# к максимуму здоровья, если на других предметах нет свойств здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_2927667525"]}}} +{"ref":"+# to Maximum Life per 10 Dexterity","better":1,"matchers":[{"string":"# к максимуму здоровья за каждые 10 ловкости"}],"trade":{"ids":{"explicit":["explicit.stat_3806100539"]}}} +{"ref":"+# to Maximum Life per 10 Intelligence","better":1,"matchers":[{"string":"# к максимуму здоровья за каждые 10 интеллекта"}],"trade":{"ids":{"explicit":["explicit.stat_1114351662"]}}} +{"ref":"+# to Maximum Life per 2 Intelligence","better":1,"matchers":[{"string":"# к максимуму здоровья за каждые 2 интеллекта"}],"trade":{"ids":{"explicit":["explicit.stat_4284915962"]}}} +{"ref":"+# to Maximum Life per Elder Item Equipped","better":1,"matchers":[{"string":"# к максимуму здоровья за каждый надетый Древний предмет"}],"trade":{"ids":{"explicit":["explicit.stat_3849523464"]}}} +{"ref":"+# to Maximum Life per Red Socket","better":1,"matchers":[{"string":"# к максимуму здоровья за красное гнездо"}],"trade":{"ids":{"explicit":["explicit.stat_4210076836"]}}} +{"ref":"+# to maximum Mana","better":1,"matchers":[{"string":"# к максимуму маны"}],"trade":{"ids":{"explicit":["explicit.stat_1050105434"],"implicit":["implicit.stat_1050105434"],"fractured":["fractured.stat_1050105434"],"scourge":["scourge.stat_1050105434"],"crafted":["crafted.stat_1050105434"]}}} +{"ref":"+# to maximum Mana for each Empty Blue Socket on any Equipped Item","better":1,"matchers":[{"string":"# к максимуму маны за каждую пустую синюю ячейку на любом надетом предмете"}],"trade":{"ids":{"explicit":["explicit.stat_2962020005"]}}} +{"ref":"+# to Maximum Mana per 10 Dexterity on Unallocated Passives in Radius","better":1,"matchers":[{"string":"# к максимуму маны за каждые 10 ловкости в невыбранных пассивных умениях в радиусе"}],"trade":{"ids":{"explicit":["explicit.stat_1276712564"]}}} +{"ref":"+# to maximum Mana per 2 Intelligence","better":1,"matchers":[{"string":"# к максимуму маны за каждые 2 интеллекта"}],"trade":{"ids":{"explicit":["explicit.stat_3822999954"],"fractured":["fractured.stat_3822999954"]}}} +{"ref":"+# to Maximum Mana per Green Socket","better":1,"matchers":[{"string":"# к максимуму маны за зеленое гнездо"}],"trade":{"ids":{"explicit":["explicit.stat_896299992"]}}} +{"ref":"+# to Maximum number of Crab Barriers","better":1,"matchers":[{"string":"# к максимуму Крабьих преград"}],"trade":{"ids":{"explicit":["explicit.stat_2894704558"]}}} +{"ref":"+# to maximum number of Eaten Souls","better":1,"matchers":[{"string":"# к максимальному количеству поглощенных душ"}],"trade":{"ids":{"explicit":["explicit.stat_1915836277"]}}} +{"ref":"+# to maximum number of Flame Walls","better":1,"matchers":[{"string":"# к максимуму Пламенных стен"}],"trade":{"ids":{"enchant":["enchant.stat_1531456858"]}}} +{"ref":"+# to maximum number of Raging Spirits","better":1,"matchers":[{"string":"# к максимальному числу неистовых духов"}],"trade":{"ids":{"explicit":["explicit.stat_3143579606"]}}} +{"ref":"+# to maximum number of Raised Zombies","better":1,"matchers":[{"string":"# к максимальному числу зомби"}],"trade":{"ids":{"explicit":["explicit.stat_966747987"],"implicit":["implicit.stat_966747987"],"fractured":["fractured.stat_966747987"],"scourge":["scourge.stat_966747987"],"crafted":["crafted.stat_966747987"]}}} +{"ref":"+# to maximum number of Sacred Wisps\n+# to number of Sacred Wisps Summoned","better":1,"matchers":[{"string":"# к максимуму Священных огоньков\n# to number of Sacred Wisps Summoned"}],"trade":{"ids":{"explicit":["explicit.stat_13590525"]}}} +{"ref":"+# to maximum number of Sentinels of Purity","better":1,"matchers":[{"string":"# к максимуму призванных Стражей чистоты"}],"trade":{"ids":{"enchant":["enchant.stat_2836937264"]}}} +{"ref":"+# to maximum number of Skeletons","better":1,"matchers":[{"string":"# к максимальному числу скелетов"}],"trade":{"ids":{"explicit":["explicit.stat_1225383362"],"fractured":["fractured.stat_1225383362"],"scourge":["scourge.stat_1225383362"],"crafted":["crafted.stat_1225383362"]}}} +{"ref":"+# to maximum number of Spectres","better":1,"matchers":[{"string":"# к максимальному числу призраков"}],"trade":{"ids":{"explicit":["explicit.stat_125218179"],"fractured":["fractured.stat_125218179"]}}} +{"ref":"+# to maximum number of Spectres per Socketed Ghastly Eye Jewel","better":1,"matchers":[{"string":"# к максимальному количеству призраков за каждый размещенный самоцвет призрачного глаза"}],"trade":{"ids":{"explicit":["explicit.stat_1664904679"]}}} +{"ref":"+# to maximum number of Summoned Golems","better":1,"matchers":[{"string":"# к максимальному количеству големов"}],"trade":{"ids":{"explicit":["explicit.stat_2821079699"]}}} +{"ref":"+# to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped","better":1,"matchers":[{"string":"# к максимальному количеству призванных големов, если размещено или экипировано 3 Первородных предмета"}],"trade":{"ids":{"explicit":["explicit.stat_920385757"]}}} +{"ref":"+# to maximum number of Summoned Holy Relics","better":1,"matchers":[{"string":"# к максимуму призванных священных реликвий"}],"trade":{"ids":{"explicit":["explicit.stat_2056575682"]}}} +{"ref":"+# to maximum number of Summoned Phantasms","better":1,"matchers":[{"string":"# к максимуму Призванных фантомов"}],"trade":{"ids":{"explicit":["explicit.stat_517587669"]}}} +{"ref":"+# to maximum number of Summoned Totems","better":1,"matchers":[{"string":"# к максимальному количеству установленных тотемов"}],"trade":{"ids":{"explicit":["explicit.stat_429867172"],"fractured":["fractured.stat_429867172"],"crafted":["crafted.stat_429867172"]}}} +{"ref":"+# to Maximum Power Charges","better":1,"matchers":[{"string":"# к максимуму зарядов энергии"}],"trade":{"ids":{"explicit":["explicit.stat_227523295"],"implicit":["implicit.stat_227523295"],"fractured":["fractured.stat_227523295"],"scourge":["scourge.stat_227523295"]}}} +{"ref":"+# to Maximum Power Charges and Maximum Endurance Charges","better":1,"matchers":[{"string":"# к максимуму зарядов энергии и выносливости"}],"trade":{"ids":{"implicit":["implicit.stat_4138979329"]}}} +{"ref":"+# to Maximum Power Charges while affected by Discipline","better":1,"matchers":[{"string":"# к максимуму зарядов энергии под действием Дисциплины"}],"trade":{"ids":{"explicit":["explicit.stat_1465672972"]}}} +{"ref":"+# to Maximum Rage","better":1,"matchers":[{"string":"# к максимуму свирепости"}],"trade":{"ids":{"explicit":["explicit.stat_1181501418"],"implicit":["implicit.stat_1181501418"]}}} +{"ref":"+# to Maximum Rage while wielding a Sword","better":1,"matchers":[{"string":"# к максимуму зарядов свирепости с мечом в руках"}],"trade":{"ids":{"explicit":["explicit.stat_406887685"]}}} +{"ref":"+# to Maximum Resolve","better":1,"matchers":[{"string":"# к максимуму решимости"}],"trade":{"ids":{"explicit":["sanctum.stat_1054634989"]}}} +{"ref":"+# to Maximum Siphoning Charges per Elder or Shaper Item Equipped","better":1,"matchers":[{"string":"# к максимуму зарядов переливания за каждый надетый предмет Древнего или Создателя"}],"trade":{"ids":{"explicit":["explicit.stat_1872128565"]}}} +{"ref":"+# to maximum Snipe Stages","better":1,"matchers":[{"string":"# к максимуму стадий Прицельного выстрела"}],"trade":{"ids":{"explicit":["explicit.stat_1239233415"],"enchant":["enchant.stat_1239233415"]}}} +{"ref":"+# to maximum Sockets","better":1,"matchers":[{"string":"# к максимуму гнезд"}],"trade":{"ids":{"enchant":["enchant.stat_4099204231"]}}} +{"ref":"+# to Maximum Spirit Charges per Abyss Jewel affecting you","better":1,"matchers":[{"string":"# к максимуму зарядов душ за каждый действующий на вас самоцвет Бездны"}],"trade":{"ids":{"explicit":["explicit.stat_4053097676"]}}} +{"ref":"+# to Minimum Endurance Charges","better":1,"matchers":[{"string":"# к минимуму зарядов выносливости"}],"trade":{"ids":{"explicit":["explicit.stat_3706959521"],"implicit":["implicit.stat_3706959521"],"fractured":["fractured.stat_3706959521"],"scourge":["scourge.stat_3706959521"],"crafted":["crafted.stat_3706959521"]}}} +{"ref":"+# to Minimum Endurance Charges per Grand Spectrum","better":1,"matchers":[{"string":"# к минимуму зарядов выносливости за каждый Великий образ"}],"trade":{"ids":{"explicit":["explicit.stat_2276643899"]}}} +{"ref":"+# to Minimum Endurance, Frenzy and Power Charges","better":1,"matchers":[{"string":"# к минимуму зарядов выносливости, ярости и энергии"}],"trade":{"ids":{"implicit":["implicit.stat_66303477"]}}} +{"ref":"+# to Minimum Frenzy Charges","better":1,"matchers":[{"string":"# к минимуму зарядов ярости"}],"trade":{"ids":{"explicit":["explicit.stat_658456881"],"implicit":["implicit.stat_658456881"],"fractured":["fractured.stat_658456881"],"scourge":["scourge.stat_658456881"],"crafted":["crafted.stat_658456881"]}}} +{"ref":"+# to Minimum Frenzy Charges per Grand Spectrum","better":1,"matchers":[{"string":"# к минимуму зарядов ярости за каждый Великий образ"}],"trade":{"ids":{"explicit":["explicit.stat_596758264"]}}} +{"ref":"+# to Minimum Power Charges","better":1,"matchers":[{"string":"# к минимуму зарядов энергии"}],"trade":{"ids":{"explicit":["explicit.stat_1999711879"],"implicit":["implicit.stat_1999711879"],"fractured":["fractured.stat_1999711879"],"scourge":["scourge.stat_1999711879"],"crafted":["crafted.stat_1999711879"]}}} +{"ref":"+# to Minimum Power Charges per Grand Spectrum","better":1,"matchers":[{"string":"# к минимуму зарядов энергии за каждый Великий образ"}],"trade":{"ids":{"explicit":["explicit.stat_308799121"]}}} +{"ref":"+# to number of Summoned Arbalists","better":1,"matchers":[{"string":"# к количеству призванных арбалетчиков"}],"trade":{"ids":{"explicit":["explicit.stat_1886245216"]}}} +{"ref":"+# to Perception Level for Heists","better":1,"matchers":[{"string":"# к уровню Восприятия в Кражах"}],"trade":{"ids":{"explicit":["explicit.stat_2932532516"],"fractured":["fractured.stat_2932532516"]}}} +{"ref":"+# to Spectre maximum Life","better":1,"matchers":[{"string":"# к максимуму здоровья призраков"}],"trade":{"ids":{"explicit":["explicit.stat_3111456397"]}}} +{"ref":"+# to Strength","better":1,"matchers":[{"string":"# к силе"}],"trade":{"ids":{"explicit":["explicit.stat_4080418644"],"implicit":["implicit.stat_4080418644"],"fractured":["fractured.stat_4080418644"],"scourge":["scourge.stat_4080418644"],"crafted":["crafted.stat_4080418644"]}}} +{"ref":"+# to Strength and Dexterity","better":1,"matchers":[{"string":"# к силе и ловкости"}],"trade":{"ids":{"explicit":["explicit.stat_538848803"],"implicit":["implicit.stat_538848803"],"fractured":["fractured.stat_538848803"],"crafted":["crafted.stat_538848803"]}}} +{"ref":"+# to Strength and Intelligence","better":1,"matchers":[{"string":"# к силе и интеллекту"}],"trade":{"ids":{"explicit":["explicit.stat_1535626285","explicit.stat_2543977012"],"implicit":["implicit.stat_1535626285"],"fractured":["fractured.stat_1535626285"],"crafted":["crafted.stat_1535626285"]}}} +{"ref":"+# to Total Mana Cost of Skills","better":1,"matchers":[{"string":"# к итоговому расходу маны умениями"}],"trade":{"ids":{"explicit":["explicit.stat_3736589033"],"implicit":["implicit.stat_3736589033"],"fractured":["fractured.stat_3736589033"],"crafted":["crafted.stat_3736589033"]}}} +{"ref":"+# to Total Mana Cost of Skills for each Corrupted Item Equipped","better":1,"matchers":[{"string":"# к итоговому расходу маны умениями за каждый надетый осквернённый предмет"}],"trade":{"ids":{"explicit":["explicit.stat_3750572810"]}}} +{"ref":"+# to Total Mana Cost of Skills while affected by Clarity","better":1,"matchers":[{"string":"# к итоговому расходу маны умениями под действием Ясности ума"}],"trade":{"ids":{"explicit":["explicit.stat_2445618239"]}}} +{"ref":"+# to Trap Disarmament Level for Heists","better":1,"matchers":[{"string":"# к уровню Разминирования в Кражах"}],"trade":{"ids":{"explicit":["explicit.stat_555061211"],"fractured":["fractured.stat_555061211"]}}} +{"ref":"+# to Ward","better":1,"matchers":[{"string":"# к барьеру"}],"trade":{"ids":{"explicit":["explicit.stat_774059442"],"fractured":["fractured.stat_774059442"]}}} +{"ref":"+# total maximum Energy Shield","better":1,"matchers":[{"string":"Всего +# к максимуму энергетического щита "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_energy_shield"]}}} +{"ref":"+# total maximum Life","better":1,"matchers":[{"string":"Всего +# к максимуму здоровья "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_life"]}}} +{"ref":"+# total maximum Mana","better":1,"matchers":[{"string":"Всего +# к максимуму маны "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_mana"]}}} +{"ref":"+# total to all Attributes","better":1,"matchers":[{"string":"Всего +# ко всем характеристикам "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_all_attributes"]}}} +{"ref":"+# total to Dexterity","better":1,"matchers":[{"string":"Всего +# к ловкости "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_dexterity"]}}} +{"ref":"+# total to Intelligence","better":1,"matchers":[{"string":"Всего +# к интеллекту "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_intelligence"]}}} +{"ref":"+# total to Level of Socketed Aura Gems","better":1,"matchers":[{"string":"Всего +# к уровню размещённых камней аур "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_aura_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Bow Gems","better":1,"matchers":[{"string":"Всего +# к уровню размещённых камней луков "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_bow_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Chaos Gems","better":1,"matchers":[{"string":"Всего +# к уровню размещённых камней хаоса "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_chaos_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Cold Gems","better":1,"matchers":[{"string":"Всего +# к уровню размещённых камней холода "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_cold_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Curse Gems","better":1,"matchers":[{"string":"Всего +# к уровню размещённых камней проклятий "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_curse_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Dexterity Gems","better":1,"matchers":[{"string":"Всего +# к уровню размещённых камней ловкости "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_dexterity_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Elemental Gems","better":1,"matchers":[{"string":"Всего +# к уровню размещённых камней стихий "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_elemental_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Fire Gems","better":1,"matchers":[{"string":"Всего +# к уровню размещённых камней огня "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_fire_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Gems","better":1,"matchers":[{"string":"Всего +# к уровню размещённых камней "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Golem Gems","better":1,"matchers":[{"string":"Всего +# к уровню размещённых камней големов "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_golem_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Intelligence Gems","better":1,"matchers":[{"string":"Всего +# к уровню размещённых камней интеллекта "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_intelligence_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Lightning Gems","better":1,"matchers":[{"string":"Всего +# к уровню размещённых камней молнии "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_lightning_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Melee Gems","better":1,"matchers":[{"string":"Всего +# к уровню размещённых камней ближнего боя "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_melee_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Minion Gems","better":1,"matchers":[{"string":"Всего +# к уровню размещённых камней приспешников "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_minion_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Movement Gems","better":1,"matchers":[{"string":"Всего +# к уровню размещённых камней передвижения "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_movement_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Projectile Gems","better":1,"matchers":[{"string":"Всего +# к уровню размещённых камней снарядов "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_projectile_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Skill Gems","better":1,"matchers":[{"string":"Всего +# к уровню размещённых камней умений "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_skill_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Spell Gems","better":1,"matchers":[{"string":"Всего +# к уровню размещённых камней чар "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_spell_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Strength Gems","better":1,"matchers":[{"string":"Всего +# к уровню размещённых камней силы "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_strength_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Support Gems","better":1,"matchers":[{"string":"Всего +# к уровню размещённых камней поддержки "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_support_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Vaal Gems","better":1,"matchers":[{"string":"Всего +# к уровню размещённых камней ваал "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_vaal_gem_levels"]}}} +{"ref":"+# total to Level of Socketed Warcry Gems","better":1,"matchers":[{"string":"Всего +# к уровню размещённых камней боевых кличей "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_additional_warcry_gem_levels"]}}} +{"ref":"+# total to Strength","better":1,"matchers":[{"string":"Всего +# к силе "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_strength"]}}} +{"ref":"+#% chance to Avoid Elemental Damage from Hits while Phasing","better":1,"matchers":[{"string":"#% шанс избежать урона от стихий от ударов в Форме призрака"}],"trade":{"ids":{"explicit":["explicit.stat_143510471"]}}} +{"ref":"+#% chance to Avoid Physical Damage from Hits while Phasing","better":1,"matchers":[{"string":"#% шанс избежать получения физического урона от ударов в Форме призрака"}],"trade":{"ids":{"explicit":["explicit.stat_2490633856"]}}} +{"ref":"+#% chance to be Frozen, Shocked and Ignited","better":1,"matchers":[{"string":"#% шанс получить заморозку, шок и поджог"}],"trade":{"ids":{"explicit":["explicit.stat_4245896836"]}}} +{"ref":"+#% chance to be Ignited","better":1,"matchers":[{"string":"#% к шансу быть подожжённым"}],"trade":{"ids":{"explicit":["explicit.stat_1618339429"]}}} +{"ref":"+#% chance to be Poisoned","better":1,"matchers":[{"string":"#% шанс получить отравление"}],"trade":{"ids":{"explicit":["explicit.stat_4250009622"]}}} +{"ref":"+#% chance to be Shocked","better":1,"matchers":[{"string":"#% шанс получить шок"}],"trade":{"ids":{"explicit":["explicit.stat_3206652215"]}}} +{"ref":"+#% Chance to Block","better":1,"matchers":[{"string":"#% шанс блока"}],"trade":{"ids":{"explicit":["explicit.stat_4253454700"],"implicit":["implicit.stat_4253454700"],"fractured":["fractured.stat_4253454700"],"crafted":["crafted.stat_4253454700"]}}} +{"ref":"+#% Chance to Block Attack Damage during Effect","better":1,"matchers":[{"string":"#% шанс блокировать урон от атак во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_2519106214"]}}} +{"ref":"+#% Chance to Block Attack Damage for every 200 Fire Damage taken from Hits Recently","better":1,"matchers":[{"string":"#% к шансу блокировать урон от атак за каждые 200 урона от огня, недавно полученные от ударов"}],"trade":{"ids":{"explicit":["explicit.stat_8517868"]}}} +{"ref":"+#% Chance to Block Attack Damage from Cursed Enemies","better":1,"matchers":[{"string":"#% шанс блокировать урон от атак от проклятых врагов"}],"trade":{"ids":{"explicit":["explicit.stat_3304203764"]}}} +{"ref":"+#% Chance to Block Attack Damage if there are at least 5 nearby Enemies","better":1,"matchers":[{"string":"#% шанс блокировать урон от атак, если поблизости минимум 5 врагов"}],"trade":{"ids":{"explicit":["explicit.stat_1214532298"],"fractured":["fractured.stat_1214532298"]}}} +{"ref":"+#% Chance to Block Attack Damage if you have Blocked Attack Damage Recently","better":1,"matchers":[{"string":"#% шанс блокировать урон от атак, если вы недавно блокировали урон от атак"}],"trade":{"ids":{"explicit":["explicit.stat_3789765926"],"fractured":["fractured.stat_3789765926"]}}} +{"ref":"+#% Chance to Block Attack Damage if you have Blocked Spell Damage Recently","better":1,"matchers":[{"string":"#% шанс блокировать урон от атак, если вы недавно блокировали урон от чар"}],"trade":{"ids":{"explicit":["explicit.stat_647983250"]}}} +{"ref":"+#% Chance to Block Attack Damage if you were Damaged by a Hit Recently","better":1,"matchers":[{"string":"#% шанс блокировать урон от атак, если вы недавно получали урон от удара"}],"trade":{"ids":{"explicit":["explicit.stat_852195286"],"fractured":["fractured.stat_852195286"]}}} +{"ref":"+#% Chance to Block Attack Damage per 50 Strength","better":1,"matchers":[{"string":"#% шанс блокировать урон от атак за каждые 50 силы"}],"trade":{"ids":{"explicit":["explicit.stat_1061631617"]}}} +{"ref":"+#% Chance to Block Attack Damage per Endurance Charge","better":1,"matchers":[{"string":"#% шанс блокировать урон от атак за заряд выносливости"}],"trade":{"ids":{"explicit":["explicit.stat_2355741828","explicit.stat_3039589351"],"fractured":["fractured.stat_3039589351"]}}} +{"ref":"+#% Chance to Block Attack Damage per Frenzy Charge","better":1,"matchers":[{"string":"#% шанс блокировать урон от атак за заряд ярости"}],"trade":{"ids":{"explicit":["explicit.stat_2148784747"]}}} +{"ref":"+#% Chance to Block Attack Damage per Power Charge","better":1,"matchers":[{"string":"#% шанс блокировать урон от атак за заряд энергии"}],"trade":{"ids":{"explicit":["explicit.stat_2856326982"]}}} +{"ref":"+#% Chance to Block Attack Damage per Summoned Skeleton","better":1,"matchers":[{"string":"#% шанс блокировать урон от атак за каждого сотворенного скелета"}],"trade":{"ids":{"explicit":["explicit.stat_2445675562"]}}} +{"ref":"+#% Chance to Block Attack Damage when in Off Hand","better":1,"matchers":[{"string":"#% шанс блокировать урон от атак, если в левой руке"}],"trade":{"ids":{"explicit":["explicit.stat_2040585053"]}}} +{"ref":"+#% Chance to Block Attack Damage while affected by Determination","better":1,"matchers":[{"string":"Под действием Решимости #% шанс блокировать урон от атак"}],"trade":{"ids":{"explicit":["explicit.stat_3692646597"]}}} +{"ref":"+#% Chance to Block Attack Damage while Dual Wielding","better":1,"matchers":[{"string":"#% шанс блокировать урон от атак с парным оружием в руках"}],"trade":{"ids":{"explicit":["explicit.stat_2166444903"],"implicit":["implicit.stat_2166444903"],"fractured":["fractured.stat_2166444903"],"crafted":["crafted.stat_2166444903"]}}} +{"ref":"+#% Chance to Block Attack Damage while Dual Wielding Claws","better":1,"matchers":[{"string":"#% шанс блокировать урон от атак с парными когтями в руках"}],"trade":{"ids":{"explicit":["explicit.stat_2538694749"]}}} +{"ref":"+#% Chance to Block Attack Damage while holding a Shield","better":1,"matchers":[{"string":"#% шанс блокировать урон от атак со щитом в руках"}],"trade":{"ids":{"explicit":["explicit.stat_4061558269"],"fractured":["fractured.stat_4061558269"]}}} +{"ref":"+#% Chance to Block Attack Damage while not Cursed","better":1,"matchers":[{"string":"#% шанс блокировать урон от атак, пока не проклят"}],"trade":{"ids":{"explicit":["explicit.stat_3619054484"]}}} +{"ref":"+#% Chance to Block Attack Damage while on Consecrated Ground","better":1,"matchers":[{"string":"#% шанс блокировать урон от атак при нахождении на освящённой земле"}],"trade":{"ids":{"explicit":["explicit.stat_3865999868"]}}} +{"ref":"+#% Chance to Block Attack Damage while wielding a Staff","better":1,"matchers":[{"string":"#% шанс блокировать урон от атак с посохом в руках"}],"trade":{"ids":{"explicit":["explicit.stat_1001829678","explicit.stat_1778298516"],"implicit":["implicit.stat_1001829678"],"fractured":["fractured.stat_1001829678","fractured.stat_1778298516"]}}} +{"ref":"+#% Chance to Block Attack Damage while you have at least 10 Crab Barriers","better":1,"matchers":[{"string":"#% шанс блокировать урон от атак, пока у вас минимум 10 Крабьих преград"}],"trade":{"ids":{"explicit":["explicit.stat_653107703"]}}} +{"ref":"+#% Chance to Block Attack Damage while you have at least 5 Crab Barriers","better":1,"matchers":[{"string":"#% шанс блокировать урон от атак, пока у вас минимум 5 Крабьих преград"}],"trade":{"ids":{"explicit":["explicit.stat_1354504703"]}}} +{"ref":"+#% chance to Block Projectile Attack Damage","better":1,"matchers":[{"string":"#% шанс блокировать урон от атак снарядами"}],"trade":{"ids":{"explicit":["explicit.stat_3416410609"],"fractured":["fractured.stat_3416410609"]}}} +{"ref":"+#% Chance to Block Spell Damage during Effect","better":1,"matchers":[{"string":"#% шанс блокировать урон от чар во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_215754572"]}}} +{"ref":"+#% chance to Block Spell Damage if you have Blocked Attack Damage Recently","better":1,"matchers":[{"string":"#% шанс блокировать урон от чар, если вы недавно блокировали урон от атак"}],"trade":{"ids":{"explicit":["explicit.stat_1214153650"]}}} +{"ref":"+#% Chance to Block Spell Damage if you have Blocked Spell Damage Recently","better":1,"matchers":[{"string":"#% шанс блокировать урон от чар, если вы недавно блокировали урон от чар"}],"trade":{"ids":{"explicit":["explicit.stat_4263513561"],"fractured":["fractured.stat_4263513561"]}}} +{"ref":"+#% Chance to Block Spell Damage if you were Damaged by a Hit Recently","better":1,"matchers":[{"string":"#% шанс блокировать урон от чар, если вы недавно получали урон от удара"}],"trade":{"ids":{"explicit":["explicit.stat_1101206134"],"fractured":["fractured.stat_1101206134"]}}} +{"ref":"+#% Chance to Block Spell Damage per Power Charge","better":1,"matchers":[{"string":"#% шанс блокировать урон от чар за заряд энергии"}],"trade":{"ids":{"explicit":["explicit.stat_816458107"]}}} +{"ref":"+#% Chance to Block Spell Damage while affected by Discipline","better":1,"matchers":[{"string":"Под действием Дисциплины #% шанс блокировать урон от чар"}],"trade":{"ids":{"explicit":["explicit.stat_1313498929"]}}} +{"ref":"+#% Chance to Block Spell Damage while Cursed","better":1,"matchers":[{"string":"#% шанс блокировать урон от чар под действием проклятий"}],"trade":{"ids":{"explicit":["explicit.stat_3218891195"]}}} +{"ref":"+#% Chance to Block Spell Damage while Dual Wielding","better":1,"matchers":[{"string":"#% шанс блокировать урон от чар с парным оружием в руках"}],"trade":{"ids":{"explicit":["explicit.stat_138741818"],"fractured":["fractured.stat_138741818"]}}} +{"ref":"+#% Chance to Block Spell Damage while holding a Shield","better":1,"matchers":[{"string":"#% шанс блокировать урон от чар со щитом в руках"}],"trade":{"ids":{"explicit":["explicit.stat_938645499"],"fractured":["fractured.stat_938645499"]}}} +{"ref":"+#% Chance to Block Spell Damage while on Low Life","better":1,"matchers":[{"string":"#% шанс блокировать урон от чар при малом количестве здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_2253286128","explicit.stat_4070519133"],"fractured":["fractured.stat_2253286128"]}}} +{"ref":"+#% Chance to Block Spell Damage while wielding a Staff","better":1,"matchers":[{"string":"#% шанс блокировать урон от чар с посохом в руках"}],"trade":{"ids":{"explicit":["explicit.stat_2120297997"],"implicit":["implicit.stat_2120297997"],"fractured":["fractured.stat_2120297997"]}}} +{"ref":"+#% Chance to contain a Vaal Side Area","better":1,"fromAreaMods":true,"matchers":[{"string":"#% шанс встретить побочную область ваал"},{"string":"Содержит побочную область ваал","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2156201537"],"implicit":["implicit.stat_2156201537"]}}} +{"ref":"+#% chance to Evade Attack Hits","better":1,"matchers":[{"string":"#% шанс уклониться от ударов от атак"}],"trade":{"ids":{"explicit":["explicit.stat_2021058489"],"implicit":["implicit.stat_2021058489"],"fractured":["fractured.stat_2021058489"]}}} +{"ref":"+#% chance to Evade Attack Hits while affected by Grace","better":1,"matchers":[{"string":"#% шанс уклониться от ударов от атак под действием Грации"}],"trade":{"ids":{"explicit":["explicit.stat_969576725"],"implicit":["implicit.stat_969576725"]}}} +{"ref":"+#% chance to Suppress Spell Damage","better":1,"matchers":[{"string":"#% шанс подавить урон от чар"}],"trade":{"ids":{"explicit":["explicit.stat_3680664274","explicit.stat_492027537"],"implicit":["implicit.stat_3680664274","implicit.stat_492027537"],"fractured":["fractured.stat_3680664274","fractured.stat_492027537"],"scourge":["scourge.stat_3680664274"],"crafted":["crafted.stat_3680664274","crafted.stat_492027537"]}}} +{"ref":"+#% chance to Suppress Spell Damage if you've\ntaken Spell Damage Recently","better":1,"matchers":[{"string":"#% шанс подавить урон от чар, если вы недавно\nполучали урон от чар"}],"trade":{"ids":{"enchant":["enchant.stat_1503864797"]}}} +{"ref":"+#% chance to Suppress Spell Damage per Endurance Charge","better":1,"matchers":[{"string":"#% шанс подавить урон от чар за заряд выносливости"}],"trade":{"ids":{"explicit":["explicit.stat_161741084"]}}} +{"ref":"+#% chance to Suppress Spell Damage per Fortification","better":1,"matchers":[{"string":"#% шанс подавить урон от чар за заряд Укрепления"}],"trade":{"ids":{"explicit":["explicit.stat_2731261141"]}}} +{"ref":"+#% chance to Suppress Spell Damage per Frenzy Charge","better":1,"matchers":[{"string":"#% шанс подавить урон от чар за заряд ярости"}],"trade":{"ids":{"explicit":["explicit.stat_482967934"]}}} +{"ref":"+#% chance to Suppress Spell Damage per Power Charge","better":1,"matchers":[{"string":"#% шанс подавить урон от чар за заряд энергии"}],"trade":{"ids":{"explicit":["explicit.stat_1309947938"]}}} +{"ref":"+#% chance to Suppress Spell Damage while affected by Grace","better":1,"matchers":[{"string":"#% шанс подавить урон от чар под действием Грации"}],"trade":{"ids":{"explicit":["explicit.stat_4071658793"]}}} +{"ref":"+#% chance to Suppress Spell Damage while affected by Haste","better":1,"matchers":[{"string":"#% шанс подавить урон от чар под действием Спешки"}],"trade":{"ids":{"explicit":["explicit.stat_2170859717"]}}} +{"ref":"+#% chance to Suppress Spell Damage while Channelling","better":1,"matchers":[{"string":"#% шанс подавить урон от чар при поддержании"}],"trade":{"ids":{"explicit":["explicit.stat_4108186648"]}}} +{"ref":"+#% chance to Suppress Spell Damage while your Off Hand is empty","better":1,"matchers":[{"string":"#% шанс подавить урон от чар, пока в левой руке ничего нет"}],"trade":{"ids":{"explicit":["explicit.stat_2076926581"]}}} +{"ref":"+#% Chaos Resistance against Damage Over Time","better":1,"matchers":[{"string":"#% сопротивления хаосу к постепенному урону"}],"trade":{"ids":{"explicit":["explicit.stat_2266636761"],"crafted":["crafted.stat_2266636761"]}}} +{"ref":"+#% Critical Strike Chance per Power Charge","dp":true,"better":1,"matchers":[{"string":"#% к шансу критического удара за заряд энергии"},{"string":"#% шанс критического удара за заряд энергии"}],"trade":{"ids":{"explicit":["explicit.stat_1818900806"]}}} +{"ref":"+#% Critical Strike Chance while at maximum Power Charges","dp":true,"better":1,"matchers":[{"string":"#% шанс критического удара при максимуме зарядов энергии"}],"trade":{"ids":{"explicit":["explicit.stat_1166971727"]}}} +{"ref":"+#% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby","better":1,"matchers":[{"string":"#% к множителю критического удара, пока поблизости есть редкий или уникальный враг"}],"trade":{"ids":{"explicit":["explicit.stat_3992439283"],"fractured":["fractured.stat_3992439283"],"crafted":["crafted.stat_3992439283"]}}} +{"ref":"+#% Global Critical Strike Chance","better":1,"matchers":[{"string":"Всего +#% к глобальному шансу критического удара "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_global_critical_strike_chance"]}}} +{"ref":"+#% Global Critical Strike Multiplier","better":1,"matchers":[{"string":"Всего +#% к множителю критического удара "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_global_critical_strike_multiplier"]}}} +{"ref":"+#% Global Critical Strike Multiplier while you have a Frenzy Charge","better":1,"matchers":[{"string":"#% к глобальному множителю критического удара, пока у вас есть заряд ярости"}],"trade":{"ids":{"explicit":["explicit.stat_3375516056"]}}} +{"ref":"+#% Global Critical Strike Multiplier while you have no Frenzy Charges","better":1,"matchers":[{"string":"#% к глобальному множителю критического удара при отсутствии зарядов ярости"}],"trade":{"ids":{"explicit":["explicit.stat_3062763405"]}}} +{"ref":"+#% increased Flame Golem Elemental Resistances","better":1,"matchers":[{"string":"#% к сопротивлению голема огня стихиям"}],"trade":{"ids":{"enchant":["enchant.stat_1298820272"]}}} +{"ref":"+#% Item Quantity","better":1,"fromAreaMods":true,"matchers":[{"string":"#% количество предметов"}],"trade":{"ids":{"implicit":["implicit.stat_2023217031"]}}} +{"ref":"+#% Item Rarity","better":1,"fromAreaMods":true,"matchers":[{"string":"#% качество предметов"}],"trade":{"ids":{"implicit":["implicit.stat_190932737"]}}} +{"ref":"+#% maximum Player Resistances per 25% Alert Level","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"#% к максимуму сопротивлений игрока за каждые 25% уровня тревоги"}],"trade":{"ids":{"explicit":["explicit.stat_652638686"],"fractured":["fractured.stat_652638686"]}}} +{"ref":"+#% Monster Chaos Resistance","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"#% к сопротивлению монстров хаосу"}],"trade":{"ids":{"explicit":["explicit.stat_365540634"],"fractured":["fractured.stat_365540634"]}}} +{"ref":"+#% Monster Cold Resistance","better":1,"fromAreaMods":true,"matchers":[{"string":"#% к сопротивлению монстров холоду"}],"trade":{"ids":{"explicit":["explicit.stat_1430380429"]}}} +{"ref":"+#% Monster Elemental Resistances","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"#% к сопротивлению монстров стихиям"}],"trade":{"ids":{"explicit":["explicit.stat_1054098949"],"fractured":["fractured.stat_1054098949"]}}} +{"ref":"+#% Monster Fire Resistance","better":1,"fromAreaMods":true,"matchers":[{"string":"#% к сопротивлению монстров огню"}],"trade":{"ids":{"explicit":["explicit.stat_2319127046"]}}} +{"ref":"+#% Monster Lightning Resistance","better":1,"fromAreaMods":true,"matchers":[{"string":"#% к сопротивлению монстров молнии"}],"trade":{"ids":{"explicit":["explicit.stat_162742068"]}}} +{"ref":"+#% Monster Physical Damage Reduction","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"#% к сопротивлению монстров физическому урону"}],"trade":{"ids":{"explicit":["explicit.stat_839186746"],"fractured":["fractured.stat_839186746"]}}} +{"ref":"+#% Pack Size","better":1,"fromAreaMods":true,"matchers":[{"string":"#% размер групп монстров"}],"trade":{"ids":{"implicit":["implicit.stat_948600126"]}}} +{"ref":"+#% Player Cold Resistance per 25% Alert Level","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"#% к сопротивлению холоду игрока за каждые 25% уровня тревоги"}],"trade":{"ids":{"explicit":["explicit.stat_2916448124"],"fractured":["fractured.stat_2916448124"]}}} +{"ref":"+#% Player Fire Resistance per 25% Alert Level","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"#% к сопротивлению огню игрока за каждые 25% уровня тревоги"}],"trade":{"ids":{"explicit":["explicit.stat_1318683911"],"fractured":["fractured.stat_1318683911"]}}} +{"ref":"+#% Player Lightning Resistance per 25% Alert Level","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"#% к сопротивлению молнии игрока за каждые 25% уровня тревоги"}],"trade":{"ids":{"explicit":["explicit.stat_3839688967"],"fractured":["fractured.stat_3839688967"]}}} +{"ref":"+#% to all Elemental Resistances","better":1,"matchers":[{"string":"#% к сопротивлению всем стихиям"}],"trade":{"ids":{"explicit":["explicit.stat_2901986750"],"implicit":["implicit.stat_2901986750"],"fractured":["fractured.stat_2901986750"],"scourge":["scourge.stat_2901986750"],"crafted":["crafted.stat_2901986750"]}}} +{"ref":"+#% to all Elemental Resistances for each Empty White Socket on any Equipped Item","better":1,"matchers":[{"string":"# к сопротивлению всем стихиям за каждую пустую белую ячейку на любом надетом предмете"}],"trade":{"ids":{"explicit":["explicit.stat_597739519"]}}} +{"ref":"+#% to all Elemental Resistances if Corrupted","better":1,"matchers":[{"string":"#% к сопротивлению всем стихиям, если предмет осквернён"}],"trade":{"ids":{"implicit":["implicit.stat_3731630482"]}}} +{"ref":"+#% to all Elemental Resistances per 10 Devotion","better":1,"matchers":[{"string":"#% к сопротивлению всем стихиям за каждые 10 набожности"}],"trade":{"ids":{"explicit":["explicit.stat_1910205563"]}}} +{"ref":"+#% to all Elemental Resistances per 15 Omniscience","better":1,"matchers":[{"string":"#% к сопротивлению всем стихиям за каждые 15 Всезнания"}],"trade":{"ids":{"explicit":["explicit.stat_2569472704"]}}} +{"ref":"+#% to all Elemental Resistances per Endurance Charge","better":1,"matchers":[{"string":"#% к сопротивлению всем стихиям за заряд выносливости"}],"trade":{"ids":{"explicit":["explicit.stat_1852896268"]}}} +{"ref":"+#% to all Elemental Resistances per Grand Spectrum","better":1,"matchers":[{"string":"#% к сопротивлению всем стихиям за Великий образ"}],"trade":{"ids":{"explicit":["explicit.stat_242161915"]}}} +{"ref":"+#% to all Elemental Resistances while on Low Life","better":1,"matchers":[{"string":"#% к сопротивлению всем стихиям при малом количестве здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_1637928656"]}}} +{"ref":"+#% to all Elemental Resistances while you have at least 200 Strength","better":1,"matchers":[{"string":"#% к сопротивлению всем стихиям, если у вас минимум 200 силы"}],"trade":{"ids":{"explicit":["explicit.stat_2415398184"]}}} +{"ref":"+#% to all maximum Elemental Resistances","better":1,"matchers":[{"string":"#% к максимуму сопротивлений всем стихиям"}],"trade":{"ids":{"explicit":["explicit.stat_1978899297"],"scourge":["scourge.stat_1978899297"]}}} +{"ref":"+#% to all maximum Elemental Resistances during Effect","better":1,"matchers":[{"string":"#% к максимуму сопротивлений всем стихиям во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_4026156644"]}}} +{"ref":"+#% to all maximum Elemental Resistances while affected by Purity of Elements","better":1,"matchers":[{"string":"#% к максимуму всех сопротивлений стихиям под действием Спасения от стихий"}],"trade":{"ids":{"explicit":["explicit.stat_3234824465"]}}} +{"ref":"+#% to all maximum Resistances","better":1,"matchers":[{"string":"#% к максимуму всех сопротивлений"}],"trade":{"ids":{"explicit":["explicit.stat_569299859"],"implicit":["implicit.stat_569299859"],"fractured":["fractured.stat_569299859"]}}} +{"ref":"+#% to all maximum Resistances while Poisoned","better":1,"matchers":[{"string":"#% к максимуму всех сопротивлений пока вы отравлены"}],"trade":{"ids":{"explicit":["explicit.stat_1030987123"]}}} +{"ref":"+#% to all maximum Resistances while you have no Endurance Charges","better":1,"matchers":[{"string":"#% к максимуму всех сопротивлений при отсутствии зарядов выносливости"}],"trade":{"ids":{"explicit":["explicit.stat_3635566977"]}}} +{"ref":"+#% to All Resistances","better":1,"matchers":[{"string":"#% ко всем сопротивлениям"}],"trade":{"ids":{"explicit":["explicit.stat_2016723660"],"fractured":["fractured.stat_2016723660"]}}} +{"ref":"+#% to all Resistances for each Corrupted Item Equipped","better":1,"matchers":[{"string":"#% ко всем сопротивлениям за каждый надетый оскверненный предмет"}],"trade":{"ids":{"explicit":["explicit.stat_3100523498"]}}} +{"ref":"+#% to Ancestral Protector Totem Elemental Resistances","better":1,"matchers":[{"string":"#% к сопротивлению Защитника предков стихиям"}],"trade":{"ids":{"enchant":["enchant.stat_1220207954"]}}} +{"ref":"+#% to Animated Guardian Elemental Resistances","better":1,"matchers":[{"string":"#% к сопротивлению Аниматрона стихиям"}],"trade":{"ids":{"implicit":["implicit.stat_2094281311"],"enchant":["enchant.stat_2094281311"]}}} +{"ref":"+#% to Chaos Damage over Time Multiplier","better":1,"matchers":[{"string":"#% к множителю постепенного урона хаосом"}],"trade":{"ids":{"explicit":["explicit.stat_4055307827"],"implicit":["implicit.stat_4055307827"],"fractured":["fractured.stat_4055307827"],"scourge":["scourge.stat_4055307827"],"crafted":["crafted.stat_4055307827"]}}} +{"ref":"+#% to Chaos Damage over Time Multiplier with Attack Skills","better":1,"matchers":[{"string":"#% к множителю постепенного урона хаосом умениями атак"}],"trade":{"ids":{"explicit":["explicit.stat_3913282911"],"fractured":["fractured.stat_3913282911"]}}} +{"ref":"+#% to Chaos Golem Elemental Resistances","better":1,"matchers":[{"string":"#% к сопротивлению голема хаоса стихиям"}],"trade":{"ids":{"enchant":["enchant.stat_1946386823"]}}} +{"ref":"+#% to Chaos Resistance","better":1,"matchers":[{"string":"#% к сопротивлению хаосу"}],"trade":{"ids":{"explicit":["explicit.stat_2923486259"],"implicit":["implicit.stat_2923486259"],"fractured":["fractured.stat_2923486259"],"scourge":["scourge.stat_2923486259"]}}} +{"ref":"+#% to Chaos Resistance during any Flask Effect","better":1,"matchers":[{"string":"#% к сопротивлению хаосу во время действия эффекта любого флакона"}],"trade":{"ids":{"explicit":["explicit.stat_392168009"],"fractured":["fractured.stat_392168009"]}}} +{"ref":"+#% to Chaos Resistance per Endurance Charge","better":1,"matchers":[{"string":"#% к сопротивлению хаосу за заряд выносливости"}],"trade":{"ids":{"explicit":["explicit.stat_4210011075"]}}} +{"ref":"+#% to Chaos Resistance per Poison on you","better":1,"matchers":[{"string":"#% к сопротивлению хаосу за каждый заряд яда на вас"}],"trade":{"ids":{"explicit":["explicit.stat_175362265"]}}} +{"ref":"+#% to Chaos Resistance when on Low Life","better":1,"matchers":[{"string":"#% к сопротивлению хаосу при малом количестве здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_2366940416"]}}} +{"ref":"+#% to Chaos Resistance while affected by Herald of Agony","better":1,"matchers":[{"string":"#% к сопротивлению хаосу под действием Вестника агонии"}],"trade":{"ids":{"explicit":["explicit.stat_3456816469"]}}} +{"ref":"+#% to Chaos Resistance while affected by Purity of Elements","better":1,"matchers":[{"string":"#% к сопротивлению хаосу под действием Спасения от стихий"}],"trade":{"ids":{"explicit":["explicit.stat_1138813382"]}}} +{"ref":"+#% to Chaos Resistance while stationary","better":1,"matchers":[{"string":"#% к сопротивлению хаосу при нахождении на одном месте"}],"trade":{"ids":{"explicit":["explicit.stat_779829642"]}}} +{"ref":"+#% to Cold and Chaos Resistances","better":1,"matchers":[{"string":"#% к сопротивлениям холоду и хаосу"}],"trade":{"ids":{"explicit":["explicit.stat_3393628375"],"fractured":["fractured.stat_3393628375"],"crafted":["crafted.stat_3393628375"]}}} +{"ref":"+#% to Cold and Lightning Resistances","better":1,"matchers":[{"string":"#% к сопротивлению холоду и молнии"}],"trade":{"ids":{"explicit":["explicit.stat_4277795662"],"implicit":["implicit.stat_4277795662"],"fractured":["fractured.stat_4277795662"],"crafted":["crafted.stat_4277795662"]}}} +{"ref":"+#% to Cold Damage over Time Multiplier","better":1,"matchers":[{"string":"#% к множителю постепенного урона от холода"}],"trade":{"ids":{"explicit":["explicit.stat_1950806024"],"implicit":["implicit.stat_1950806024"],"fractured":["fractured.stat_1950806024"],"scourge":["scourge.stat_1950806024"],"crafted":["crafted.stat_1950806024"]}}} +{"ref":"+#% to Cold Resistance","better":1,"matchers":[{"string":"#% к сопротивлению холоду"}],"trade":{"ids":{"explicit":["explicit.stat_4220027924"],"implicit":["implicit.stat_4220027924"],"fractured":["fractured.stat_4220027924"],"scourge":["scourge.stat_4220027924"],"crafted":["crafted.stat_4220027924"]}}} +{"ref":"+#% to Cold Resistance when Socketed with a Green Gem","better":1,"matchers":[{"string":"#% к сопротивлению холоду, если размещён зелёный камень"}],"trade":{"ids":{"explicit":["explicit.stat_1064331314"]}}} +{"ref":"+#% to Cold Resistance while affected by Herald of Ice","better":1,"matchers":[{"string":"#% к сопротивлению холоду под действием Вестника льда"}],"trade":{"ids":{"explicit":["explicit.stat_2494069187"]}}} +{"ref":"+#% to Critical Strike Chance against Enemies on Consecrated Ground during Effect","dp":true,"better":1,"matchers":[{"string":"#% к шансу критического удара по врагам на освящённой земле во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_1535051459"]}}} +{"ref":"+#% to Critical Strike Chance while affected by Aspect of the Cat","dp":true,"better":1,"matchers":[{"string":"#% к шансу критического удара, пока на вас действует Дух кошки"}],"trade":{"ids":{"explicit":["explicit.stat_3992636701"]}}} +{"ref":"+#% to Critical Strike Chance while affected by Hatred","dp":true,"better":1,"matchers":[{"string":"#% к шансу критического удара под действием Холодной ненависти"}],"trade":{"ids":{"explicit":["explicit.stat_2753985507"]}}} +{"ref":"+#% to Critical Strike Multiplier against Burning Enemies","better":1,"matchers":[{"string":"#% к множителю критического удара по горящим врагам"}],"trade":{"ids":{"explicit":["explicit.stat_1963942874"]}}} +{"ref":"+#% to Critical Strike Multiplier against Enemies that are on Full Life","better":1,"matchers":[{"string":"#% к множителю критического удара по врагам с полным здоровьем"}],"trade":{"ids":{"explicit":["explicit.stat_2355615476"],"fractured":["fractured.stat_2355615476"]}}} +{"ref":"+#% to Critical Strike Multiplier during any Flask Effect","better":1,"matchers":[{"string":"#% к множителю критического удара во время действия эффекта любого флакона"}],"trade":{"ids":{"implicit":["implicit.stat_240289863"]}}} +{"ref":"+#% to Critical Strike Multiplier for Attack Damage","better":1,"matchers":[{"string":"#% к множителю критического удара для урона атаками"}],"trade":{"ids":{"implicit":["implicit.stat_3714003708"]}}} +{"ref":"+#% to Critical Strike Multiplier for Spell Damage","better":1,"matchers":[{"string":"#% к множителю критического удара для урона чарами"}],"trade":{"ids":{"explicit":["explicit.stat_274716455"],"implicit":["implicit.stat_274716455"],"fractured":["fractured.stat_274716455"]}}} +{"ref":"+#% to Critical Strike Multiplier for Spells if you haven't Killed Recently","better":1,"matchers":[{"string":"#% к множителю критического удара чарами, если недавно вы не совершали убийство"}],"trade":{"ids":{"explicit":["explicit.stat_729430714"]}}} +{"ref":"+#% to Critical Strike Multiplier for Spells while Dual Wielding","better":1,"matchers":[{"string":"#% к множителю критического удара чарами с парным оружием в руках"}],"trade":{"ids":{"implicit":["implicit.stat_2349237916"]}}} +{"ref":"+#% to Critical Strike Multiplier for Spells while holding a Shield","better":1,"matchers":[{"string":"#% к множителю критического удара чарами со щитом в руках"}],"trade":{"ids":{"implicit":["implicit.stat_2311200892"]}}} +{"ref":"+#% to Critical Strike Multiplier for Spells while wielding a Staff","better":1,"matchers":[{"string":"#% к множителю критического удара чарами с посохом в руках"}],"trade":{"ids":{"implicit":["implicit.stat_3629080637"]}}} +{"ref":"+#% to Critical Strike Multiplier if Dexterity is higher than Intelligence","better":1,"matchers":[{"string":"#% к множителю критического удара, если ловкости больше, чем интеллекта"}],"trade":{"ids":{"explicit":["explicit.stat_2328588114"]}}} +{"ref":"+#% to Critical Strike Multiplier if you have Blocked Recently","better":1,"matchers":[{"string":"#% к множителю критического удара, если вы недавно блокировали удар"}],"trade":{"ids":{"explicit":["explicit.stat_3527458221"],"fractured":["fractured.stat_3527458221"]}}} +{"ref":"+#% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently","better":1,"matchers":[{"string":"#% к множителю критического удара, если вы недавно не наносили критический удар"}],"trade":{"ids":{"explicit":["explicit.stat_1478247313"],"fractured":["fractured.stat_1478247313"]}}} +{"ref":"+#% to Critical Strike Multiplier if you've cast Enfeeble in the past 10 seconds","better":1,"matchers":[{"string":"#% к множителю критического удара, если вы сотворяли Слабость за последние 10 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_2379274646"]}}} +{"ref":"+#% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently","better":1,"matchers":[{"string":"#% к множителю критического удара, если недавно вы наносили некритический удар"}],"trade":{"ids":{"explicit":["explicit.stat_1626712767"]}}} +{"ref":"+#% to Critical Strike Multiplier if you've gained a Power Charge Recently","better":1,"matchers":[{"string":"#% к множителю критического удара, если недавно вы получали заряд энергии"}],"trade":{"ids":{"explicit":["explicit.stat_2865731079"]}}} +{"ref":"+#% to Critical Strike Multiplier if you've Killed Recently","better":1,"matchers":[{"string":"#% к множителю критического удара, если вы недавно совершали убийство"}],"trade":{"ids":{"explicit":["explicit.stat_2937483991"],"fractured":["fractured.stat_2937483991"]}}} +{"ref":"+#% to Critical Strike Multiplier if you've Shattered an Enemy Recently","better":1,"matchers":[{"string":"#% к множителю критического удара, если вы недавно разбивали врага"}],"trade":{"ids":{"explicit":["explicit.stat_536929014"],"fractured":["fractured.stat_536929014"],"crafted":["crafted.stat_536929014"]}}} +{"ref":"+#% to Critical Strike Multiplier per 1% Chance to Block Attack Damage","better":1,"matchers":[{"string":"#% к множителю критического удара за 1% шанса блокировать урон от атак"}],"trade":{"ids":{"explicit":["explicit.stat_956384511"]}}} +{"ref":"+#% to Critical Strike Multiplier per 10 Strength on Unallocated Passives in Radius","better":1,"matchers":[{"string":"#% к множителю критического удара за каждые 10 силы в невыбранных пассивных умениях в радиусе"}],"trade":{"ids":{"explicit":["explicit.stat_1154827254"]}}} +{"ref":"+#% to Critical Strike Multiplier per Power Charge","better":1,"matchers":[{"string":"#% к множителю критического удара за заряд энергии"}],"trade":{"ids":{"explicit":["explicit.stat_4164870816"]}}} +{"ref":"+#% to Critical Strike Multiplier while affected by Anger","better":1,"matchers":[{"string":"#% к множителю критического удара под действием Жгучей злобы"}],"trade":{"ids":{"explicit":["explicit.stat_3627458291"]}}} +{"ref":"+#% to Critical Strike Multiplier while affected by Precision","better":1,"matchers":[{"string":"#% к множителю критического удара под действием Точности"}],"trade":{"ids":{"explicit":["explicit.stat_1817023621"]}}} +{"ref":"+#% to Critical Strike Multiplier while area is not in Lockdown\nPlayers have +#% to Critical Strike Multiplier while area is not in Lockdown","better":1,"matchers":[{"string":"#% к множителю критического удара, пока область не изолирована\nИгроки имеют #% к множителю критического удара, пока область не изолирована"}],"trade":{"ids":{"explicit":["explicit.stat_3128272024"],"fractured":["fractured.stat_3128272024"]}}} +{"ref":"+#% to Critical Strike Multiplier while Dual Wielding","better":1,"matchers":[{"string":"#% к множителю критического удара с парным оружием в руках"}],"trade":{"ids":{"explicit":["explicit.stat_2546185479"],"fractured":["fractured.stat_2546185479"]}}} +{"ref":"+#% to Critical Strike Multiplier with Axes","better":1,"matchers":[{"string":"#% к множителю критического удара топорами"}],"trade":{"ids":{"implicit":["implicit.stat_4219746989"]}}} +{"ref":"+#% to Critical Strike Multiplier with Bows","better":1,"matchers":[{"string":"#% к множителю критического удара луками"}],"trade":{"ids":{"explicit":["explicit.stat_1712221299"],"implicit":["implicit.stat_1712221299"],"fractured":["fractured.stat_1712221299"],"scourge":["scourge.stat_1712221299"]}}} +{"ref":"+#% to Critical Strike Multiplier with Claws","better":1,"matchers":[{"string":"#% к множителю критического удара когтями"}],"trade":{"ids":{"implicit":["implicit.stat_2811834828"]}}} +{"ref":"+#% to Critical Strike Multiplier with Cold Skills","better":1,"matchers":[{"string":"#% к множителю критического удара умениями холода"}],"trade":{"ids":{"explicit":["explicit.stat_915908446"],"fractured":["fractured.stat_915908446"]}}} +{"ref":"+#% to Critical Strike Multiplier with Daggers","better":1,"matchers":[{"string":"#% к множителю критического удара кинжалами"}],"trade":{"ids":{"implicit":["implicit.stat_3998601568"]}}} +{"ref":"+#% to Critical Strike Multiplier with Elemental Skills","better":1,"matchers":[{"string":"#% к множителю критического удара умениями стихий"}],"trade":{"ids":{"explicit":["explicit.stat_1569407745"],"fractured":["fractured.stat_1569407745"]}}} +{"ref":"+#% to Critical Strike Multiplier with Fire Skills","better":1,"matchers":[{"string":"#% к множителю критического удара умениями огня"}],"trade":{"ids":{"explicit":["explicit.stat_2307547323"],"fractured":["fractured.stat_2307547323"]}}} +{"ref":"+#% to Critical Strike Multiplier with Lightning Skills","better":1,"matchers":[{"string":"#% к множителю критического удара умениями молнии"}],"trade":{"ids":{"explicit":["explicit.stat_2441475928"],"fractured":["fractured.stat_2441475928"]}}} +{"ref":"+#% to Critical Strike Multiplier with Maces or Sceptres","better":1,"matchers":[{"string":"#% к множителю критического удара булавами и скипетрами"}],"trade":{"ids":{"implicit":["implicit.stat_458899422"]}}} +{"ref":"+#% to Critical Strike Multiplier with One Handed Melee Weapons","better":1,"matchers":[{"string":"#% к множителю критического удара одноручным оружием ближнего боя"}],"trade":{"ids":{"explicit":["explicit.stat_670153687"],"fractured":["fractured.stat_670153687"]}}} +{"ref":"+#% to Critical Strike Multiplier with Staves","better":1,"matchers":[{"string":"#% к множителю критического удара посохами"}],"trade":{"ids":{"implicit":["implicit.stat_1474913037"]}}} +{"ref":"+#% to Critical Strike Multiplier with Swords","better":1,"matchers":[{"string":"#% к множителю критического удара мечами"}],"trade":{"ids":{"implicit":["implicit.stat_3114492047"]}}} +{"ref":"+#% to Critical Strike Multiplier with Two Handed Melee Weapons","better":1,"matchers":[{"string":"#% к множителю критического удара двуручным оружием ближнего боя"}],"trade":{"ids":{"explicit":["explicit.stat_252507949"],"fractured":["fractured.stat_252507949"]}}} +{"ref":"+#% to Critical Strike Multiplier with Wands","better":1,"matchers":[{"string":"#% к множителю критического удара жезлами"}],"trade":{"ids":{"implicit":["implicit.stat_1241396104"]}}} +{"ref":"+#% to Damage over Time Multiplier","better":1,"matchers":[{"string":"#% к множителю постепенного урона"}],"trade":{"ids":{"explicit":["explicit.stat_3988349707"],"implicit":["implicit.stat_3988349707"],"fractured":["fractured.stat_3988349707"],"scourge":["scourge.stat_3988349707"]}}} +{"ref":"+#% to Damage over Time Multiplier for Ailments per Elder Item Equipped","better":1,"matchers":[{"string":"#% к множителю постепенного урона от состояний за каждый надетый Древний предмет"}],"trade":{"ids":{"explicit":["explicit.stat_2212731469"]}}} +{"ref":"+#% to Damage over Time Multiplier for Bleeding","better":1,"matchers":[{"string":"#% к множителю постепенного урона от кровотечения"}],"trade":{"ids":{"implicit":["implicit.stat_1423749435"]}}} +{"ref":"+#% to Damage over Time Multiplier for Bleeding from Critical Strikes","better":1,"matchers":[{"string":"#% к множителю постепенного урона от кровотечения, наложенного критическими ударами"}],"trade":{"ids":{"explicit":["explicit.stat_1454648374"]}}} +{"ref":"+#% to Damage over Time Multiplier for Bleeding from Hits with this Weapon","better":1,"matchers":[{"string":"#% к множителю постепенного урона от кровотечения, наложенного ударами этим оружием"}],"trade":{"ids":{"explicit":["explicit.stat_951608773"],"fractured":["fractured.stat_951608773"]}}} +{"ref":"+#% to Damage over Time Multiplier for Bleeding per Frenzy Charge","better":1,"matchers":[{"string":"#% к множителю постепенного урона от кровотечения за заряд ярости"}],"trade":{"ids":{"explicit":["explicit.stat_2583415204"]}}} +{"ref":"+#% to Damage over Time Multiplier for Poison from Critical Strikes during Effect","better":1,"matchers":[{"string":"#% к множителю постепенного урона ядами от критических ударов во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_1691221049"]}}} +{"ref":"+#% to Damage over Time Multiplier for Poison inflicted with this Weapon","better":1,"matchers":[{"string":"#% к множителю постепенного урона от яда, наложенного этим оружием"}],"trade":{"ids":{"explicit":["explicit.stat_4096656097"],"fractured":["fractured.stat_4096656097"]}}} +{"ref":"+#% to Damage over Time Multiplier for Poison per Frenzy Charge","better":1,"matchers":[{"string":"#% к множителю постепенного урона от яда за заряд ярости"}],"trade":{"ids":{"explicit":["explicit.stat_3504652942"]}}} +{"ref":"+#% to Damage over Time Multiplier if you've dealt a Critical Strike in the past 8 seconds","better":1,"matchers":[{"string":"#% к множителю постепенного урона, если вы наносили критический удар за последние 8 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_3203086927"]}}} +{"ref":"+#% to Damage over Time Multiplier per 10 Intelligence on Unallocated Passives in Radius","better":1,"matchers":[{"string":"#% к множителю постепенного урона за 10 интеллекта в невыбранных пассивных умениях в радиусе"}],"trade":{"ids":{"explicit":["explicit.stat_1994121713"]}}} +{"ref":"+#% to Damage over Time Multiplier while affected by Malevolence","better":1,"matchers":[{"string":"#% к множителю постепенного урона под действием Злорадства"}],"trade":{"ids":{"explicit":["explicit.stat_2736708072"]}}} +{"ref":"+#% to Damage over Time Multiplier with Attack Skills","better":1,"matchers":[{"string":"#% к множителю постепенного урона умениями атак"}],"trade":{"ids":{"explicit":["explicit.stat_693959086"],"fractured":["fractured.stat_693959086"]}}} +{"ref":"+#% to Damage over Time Multiplier with Melee Weapon Attacks","better":1,"matchers":[{"string":"#% к множителю постепенного урона атаками оружием ближнего боя"}],"trade":{"ids":{"explicit":["explicit.stat_1867426121"]}}} +{"ref":"+#% to Elemental Resistances during Effect","better":1,"matchers":[{"string":"#% к сопротивлению стихиям во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_3110554274"]}}} +{"ref":"+#% to Fire and Chaos Resistances","better":1,"matchers":[{"string":"#% к сопротивлениям огню и хаосу"}],"trade":{"ids":{"explicit":["explicit.stat_378817135"],"fractured":["fractured.stat_378817135"],"crafted":["crafted.stat_378817135"]}}} +{"ref":"+#% to Fire and Cold Resistances","better":1,"matchers":[{"string":"#% к сопротивлению огню и холоду"}],"trade":{"ids":{"explicit":["explicit.stat_2915988346"],"implicit":["implicit.stat_2915988346"],"fractured":["fractured.stat_2915988346"],"crafted":["crafted.stat_2915988346"]}}} +{"ref":"+#% to Fire and Lightning Resistances","better":1,"matchers":[{"string":"#% к сопротивлению огню и молнии"}],"trade":{"ids":{"explicit":["explicit.stat_3441501978"],"implicit":["implicit.stat_3441501978"],"fractured":["fractured.stat_3441501978"],"crafted":["crafted.stat_3441501978"]}}} +{"ref":"+#% to Fire Damage over Time Multiplier","better":1,"matchers":[{"string":"#% к множителю постепенного урона от огня"}],"trade":{"ids":{"explicit":["explicit.stat_3382807662"],"implicit":["implicit.stat_3382807662"],"fractured":["fractured.stat_3382807662"],"scourge":["scourge.stat_3382807662"],"crafted":["crafted.stat_3382807662"]}}} +{"ref":"+#% to Fire Damage over Time Multiplier with Attack Skills","better":1,"matchers":[{"string":"#% к множителю постепенного урона от огня умениями атак"}],"trade":{"ids":{"explicit":["explicit.stat_2139660169"],"fractured":["fractured.stat_2139660169"]}}} +{"ref":"+#% to Fire Resistance","better":1,"matchers":[{"string":"#% к сопротивлению огню"}],"trade":{"ids":{"explicit":["explicit.stat_3372524247"],"implicit":["implicit.stat_3372524247"],"fractured":["fractured.stat_3372524247"],"scourge":["scourge.stat_3372524247"],"crafted":["crafted.stat_3372524247"]}}} +{"ref":"+#% to Fire Resistance when Socketed with a Red Gem","better":1,"matchers":[{"string":"#% к сопротивлению огню, если размещён красный камень"}],"trade":{"ids":{"explicit":["explicit.stat_3051845758"]}}} +{"ref":"+#% to Fire Resistance while affected by Herald of Ash","better":1,"matchers":[{"string":"#% к сопротивлению огню под действием Вестника пепла"}],"trade":{"ids":{"explicit":["explicit.stat_2675641469"]}}} +{"ref":"+#% to Fire Resistance while on Low Life","better":1,"matchers":[{"string":"#% к сопротивлению огню при малом количестве здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_38301299"]}}} +{"ref":"+#% to Global Critical Strike Multiplier","better":1,"matchers":[{"string":"#% к глобальному множителю критического удара"}],"trade":{"ids":{"explicit":["explicit.stat_3556824919"],"implicit":["implicit.stat_3556824919"],"fractured":["fractured.stat_3556824919"],"scourge":["scourge.stat_3556824919"],"crafted":["crafted.stat_3556824919"]}}} +{"ref":"+#% to Global Critical Strike Multiplier per Green Socket","better":1,"matchers":[{"string":"#% к глобальному множителю критического удара за зеленое гнездо"}],"trade":{"ids":{"explicit":["explicit.stat_35810390"]}}} +{"ref":"+#% to Ice Golem Elemental Resistances","better":1,"matchers":[{"string":"#% к сопротивлению голема льда стихиям"}],"trade":{"ids":{"enchant":["enchant.stat_2520825974"]}}} +{"ref":"+#% to Lightning and Chaos Resistances","better":1,"matchers":[{"string":"#% к сопротивлениям молнии и хаосу"}],"trade":{"ids":{"explicit":["explicit.stat_3465022881"],"fractured":["fractured.stat_3465022881"],"crafted":["crafted.stat_3465022881"]}}} +{"ref":"+#% to Lightning Golem Elemental Resistances","better":1,"matchers":[{"string":"#% к сопротивлению голема молнии стихиям"}],"trade":{"ids":{"enchant":["enchant.stat_2338484156"]}}} +{"ref":"+#% to Lightning Resistance","better":1,"matchers":[{"string":"#% к сопротивлению молнии"}],"trade":{"ids":{"explicit":["explicit.stat_1671376347"],"implicit":["implicit.stat_1671376347"],"fractured":["fractured.stat_1671376347"],"scourge":["scourge.stat_1671376347"],"crafted":["crafted.stat_1671376347"]}}} +{"ref":"+#% to Lightning Resistance when Socketed with a Blue Gem","better":1,"matchers":[{"string":"#% к сопротивлению молнии, если размещён синий камень"}],"trade":{"ids":{"explicit":["explicit.stat_289814996"]}}} +{"ref":"+#% to Lightning Resistance while affected by Herald of Thunder","better":1,"matchers":[{"string":"#% к сопротивлению молнии под действием Вестника грома"}],"trade":{"ids":{"explicit":["explicit.stat_2687017988"]}}} +{"ref":"+#% to maximum Chance to Block Attack Damage","better":1,"matchers":[{"string":"#% к максимальному шансу блокировать урон от атак"}],"trade":{"ids":{"explicit":["explicit.stat_4124805414"],"implicit":["implicit.stat_4124805414"],"fractured":["fractured.stat_4124805414"]}}} +{"ref":"+#% to maximum Chance to Block Spell Damage","better":1,"matchers":[{"string":"#% к максимальному шансу блокировать урон от чар"}],"trade":{"ids":{"explicit":["explicit.stat_2388574377"],"implicit":["implicit.stat_2388574377"],"fractured":["fractured.stat_2388574377"]}}} +{"ref":"+#% to maximum Chaos Resistance","better":1,"matchers":[{"string":"#% к максимальному сопротивлению хаосу"}],"trade":{"ids":{"explicit":["explicit.stat_1301765461"],"implicit":["implicit.stat_1301765461"],"fractured":["fractured.stat_1301765461"],"scourge":["scourge.stat_1301765461"]}}} +{"ref":"+#% to maximum Cold Resistance","better":1,"matchers":[{"string":"#% к максимальному сопротивлению холоду"}],"trade":{"ids":{"explicit":["explicit.stat_3676141501"],"implicit":["implicit.stat_3676141501"],"fractured":["fractured.stat_3676141501"],"scourge":["scourge.stat_3676141501"]}}} +{"ref":"+#% to maximum Cold Resistance while affected by Herald of Ice","better":1,"matchers":[{"string":"#% к максимальному сопротивлению холоду под действием Вестника льда"}],"trade":{"ids":{"explicit":["explicit.stat_950661692"]}}} +{"ref":"+#% to maximum Fire Resistance","better":1,"matchers":[{"string":"#% к максимальному сопротивлению огню"}],"trade":{"ids":{"explicit":["explicit.stat_4095671657"],"implicit":["implicit.stat_4095671657"],"fractured":["fractured.stat_4095671657"],"scourge":["scourge.stat_4095671657"]}}} +{"ref":"+#% to maximum Fire Resistance while affected by Herald of Ash","better":1,"matchers":[{"string":"#% к максимальному сопротивлению огню под действием Вестника пепла"}],"trade":{"ids":{"explicit":["explicit.stat_3716758077"]}}} +{"ref":"+#% to maximum Lightning Resistance","better":1,"matchers":[{"string":"#% к максимальному сопротивлению молнии"}],"trade":{"ids":{"explicit":["explicit.stat_1011760251"],"implicit":["implicit.stat_1011760251"],"fractured":["fractured.stat_1011760251"],"scourge":["scourge.stat_1011760251"]}}} +{"ref":"+#% to maximum Lightning Resistance while affected by Herald of Thunder","better":1,"matchers":[{"string":"#% к максимальному сопротивлению молнии под действием Вестника грома"}],"trade":{"ids":{"explicit":["explicit.stat_3259396413"]}}} +{"ref":"+#% to Maximum Quality","better":1,"matchers":[{"string":"#% к максимуму качества"}],"trade":{"ids":{"implicit":["implicit.stat_2039822488"]}}} +{"ref":"+#% to Melee Critical Strike Multiplier","better":1,"matchers":[{"string":"#% к множителю критического удара в ближнем бою"}],"trade":{"ids":{"explicit":["explicit.stat_4237442815"],"fractured":["fractured.stat_4237442815"]}}} +{"ref":"+#% to Melee Weapon Critical Strike Multiplier","better":1,"matchers":[{"string":"#% к множителю критического удара оружием ближнего боя"}],"trade":{"ids":{"explicit":["explicit.stat_605218169"]}}} +{"ref":"+#% to Monster Critical Strike Multiplier","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"#% к множителю критического удара монстров"}],"trade":{"ids":{"explicit":["explicit.stat_57326096"],"fractured":["fractured.stat_57326096"]}}} +{"ref":"+#% to Off Hand Critical Strike Chance","dp":true,"better":1,"matchers":[{"string":"#% к шансу критического удара левой рукой"}],"trade":{"ids":{"explicit":["explicit.stat_1757389331"]}}} +{"ref":"+#% to Off Hand Critical Strike Chance per 10 Maximum Energy Shield on Shield","dp":true,"better":1,"matchers":[{"string":"#% к шансу критического удара левой рукой за каждые 10 максимума энергетического щита на щите"}],"trade":{"ids":{"explicit":["explicit.stat_3285400610"]}}} +{"ref":"+#% to Off Hand Critical Strike Multiplier per\nMurderous Eye Jewel affecting you, up to a maximum of +100%","better":1,"matchers":[{"string":"#% к множителю критического удара левой рукой за каждый\nдействующий на вас самоцвет кровожадного глаза, вплоть до максимума в +100%"}],"trade":{"ids":{"explicit":["explicit.stat_3699529133"]}}} +{"ref":"+#% to Off Hand Critical Strike Multiplier per 10 Maximum Energy Shield on Shield","better":1,"matchers":[{"string":"#% к множителю критического удара левой рукой за каждые 10 максимума энергетического щита на щите"}],"trade":{"ids":{"explicit":["explicit.stat_240790947"]}}} +{"ref":"+#% to Physical Damage over Time Multiplier","better":1,"matchers":[{"string":"#% к множителю физического постепенного урона"}],"trade":{"ids":{"explicit":["explicit.stat_1314617696"],"implicit":["implicit.stat_1314617696"],"fractured":["fractured.stat_1314617696"],"scourge":["scourge.stat_1314617696"],"crafted":["crafted.stat_1314617696"]}}} +{"ref":"+#% to Physical Damage over Time Multiplier with Attack Skills","better":1,"matchers":[{"string":"#% к множителю постепенного физического урона умениями атак"}],"trade":{"ids":{"explicit":["explicit.stat_709768359"],"fractured":["fractured.stat_709768359"]}}} +{"ref":"+#% to Quality","better":1,"matchers":[{"string":"#% к качеству"}],"trade":{"ids":{"explicit":["explicit.stat_2016708976"],"fractured":["fractured.stat_2016708976"],"crafted":["crafted.stat_2016708976"]}}} +{"ref":"+#% to Quality of all Skill Gems","better":1,"matchers":[{"string":"#% к качеству всех камней умений"}],"trade":{"ids":{"explicit":["explicit.stat_3655769732"]}}} +{"ref":"+#% to Quality of Socketed AoE Gems","better":1,"matchers":[{"string":"#% к качеству размещённых камней, действующих на область"}],"trade":{"ids":{"implicit":["implicit.stat_768982451"]}}} +{"ref":"+#% to Quality of Socketed Aura Gems","better":1,"matchers":[{"string":"#% к качеству размещённых камней аур"}],"trade":{"ids":{"implicit":["implicit.stat_2276941637"]}}} +{"ref":"+#% to Quality of Socketed Bow Gems","better":1,"matchers":[{"string":"#% к качеству размещённых камней лука"}],"trade":{"ids":{"implicit":["implicit.stat_3280600715"]}}} +{"ref":"+#% to Quality of Socketed Chaos Gems","better":1,"matchers":[{"string":"#% к качеству размещённых камней хаоса"}],"trade":{"ids":{"explicit":["explicit.stat_2062835769"],"implicit":["implicit.stat_2062835769"]}}} +{"ref":"+#% to Quality of Socketed Cold Gems","better":1,"matchers":[{"string":"#% к качеству размещённых камней холода"}],"trade":{"ids":{"explicit":["explicit.stat_1164882313"],"implicit":["implicit.stat_1164882313"]}}} +{"ref":"+#% to Quality of Socketed Dexterity Gems","better":1,"matchers":[{"string":"#% к качеству размещённых камней ловкости"}],"trade":{"ids":{"implicit":["implicit.stat_2877754099"]}}} +{"ref":"+#% to Quality of Socketed Fire Gems","better":1,"matchers":[{"string":"#% к качеству размещённых камней огня"}],"trade":{"ids":{"explicit":["explicit.stat_3422008440"],"implicit":["implicit.stat_3422008440"]}}} +{"ref":"+#% to Quality of Socketed Gems","better":1,"matchers":[{"string":"#% к качеству размещённых камней"}],"trade":{"ids":{"explicit":["explicit.stat_3828613551"],"implicit":["implicit.stat_3828613551"],"fractured":["fractured.stat_3828613551"],"crafted":["crafted.stat_3828613551"]}}} +{"ref":"+#% to Quality of Socketed Intelligence Gems","better":1,"matchers":[{"string":"#% к качеству размещённых камней интеллекта"}],"trade":{"ids":{"implicit":["implicit.stat_3174776455"]}}} +{"ref":"+#% to Quality of Socketed Lightning Gems","better":1,"matchers":[{"string":"#% к качеству размещённых камней молнии"}],"trade":{"ids":{"explicit":["explicit.stat_1065580342"],"implicit":["implicit.stat_1065580342"]}}} +{"ref":"+#% to Quality of Socketed Melee Gems","better":1,"matchers":[{"string":"#% к качеству размещённых камней ближнего боя"}],"trade":{"ids":{"implicit":["implicit.stat_1396421504"]}}} +{"ref":"+#% to Quality of Socketed Projectile Gems","better":1,"matchers":[{"string":"#% к качеству размещённых камней снарядов"}],"trade":{"ids":{"implicit":["implicit.stat_2428621158"]}}} +{"ref":"+#% to Quality of Socketed Skill Gems","better":1,"matchers":[{"string":"#% к качеству размещенных камней умений"}],"trade":{"ids":{"explicit":["explicit.stat_1325783255"]}}} +{"ref":"+#% to Quality of Socketed Strength Gems","better":1,"matchers":[{"string":"#% к качеству размещённых камней силы"}],"trade":{"ids":{"implicit":["implicit.stat_122841557"]}}} +{"ref":"+#% to Quality of Socketed Support Gems","better":1,"matchers":[{"string":"#% к качеству размещённых камней поддержки"}],"trade":{"ids":{"explicit":["explicit.stat_1328548975"],"implicit":["implicit.stat_1328548975"],"fractured":["fractured.stat_1328548975"],"scourge":["scourge.stat_1328548975"]}}} +{"ref":"+#% to Raised Spectre Elemental Resistances","better":1,"matchers":[{"string":"#% к сопротивлению сотворённых призраков стихиям"}],"trade":{"ids":{"enchant":["enchant.stat_27640220"]}}} +{"ref":"+#% to Spell Critical Strike Chance","dp":true,"better":1,"matchers":[{"string":"#% к шансу критического удара чарами"}],"trade":{"ids":{"explicit":["explicit.stat_791835907"],"implicit":["implicit.stat_791835907"],"fractured":["fractured.stat_791835907"]}}} +{"ref":"+#% to Stone Golem Elemental Resistances","better":1,"matchers":[{"string":"#% к сопротивлению каменного голема стихиям"}],"trade":{"ids":{"enchant":["enchant.stat_1601558321"]}}} +{"ref":"+#% to Unarmed Melee Attack Critical Strike Chance","dp":true,"better":1,"matchers":[{"string":"#% к шансу критического удара атаками ближнего боя без оружия"}],"trade":{"ids":{"explicit":["explicit.stat_3613173483"]}}} +{"ref":"+#% total Attack Speed","better":1,"matchers":[{"string":"Всего +#% к скорости атаки "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_attack_speed"]}}} +{"ref":"+#% total Cast Speed","better":1,"matchers":[{"string":"Всего +#% к скорости сотворения чар "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_cast_speed"]}}} +{"ref":"+#% total Critical Strike Chance for Spells","better":1,"matchers":[{"string":"Всего +#% к шансу критического удара чарами "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_critical_strike_chance_for_spells"]}}} +{"ref":"+#% total Elemental Resistance","better":1,"matchers":[{"string":"Всего +#% сопротивления стихиям "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_elemental_resistance"]}}} +{"ref":"+#% total Resistance","better":1,"matchers":[{"string":"Всего +#% сопротивления "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_resistance"]}}} +{"ref":"+#% total to all Elemental Resistances","better":1,"matchers":[{"string":"Всего +#% к сопротивлению всем стихиям "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_all_elemental_resistances"]}}} +{"ref":"+#% total to Chaos Resistance","better":1,"matchers":[{"string":"Всего +#% к сопротивлению хаосу "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_chaos_resistance"]}}} +{"ref":"+#% total to Cold Resistance","better":1,"matchers":[{"string":"Всего +#% к сопротивлению холоду "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_cold_resistance"]}}} +{"ref":"+#% total to Fire Resistance","better":1,"matchers":[{"string":"Всего +#% к сопротивлению огню "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_fire_resistance"]}}} +{"ref":"+#% total to Lightning Resistance","better":1,"matchers":[{"string":"Всего +#% к сопротивлению молнии "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_total_lightning_resistance"]}}} +{"ref":"+1 to Level of Socketed Skill Gems per # Player Levels","better":1,"matchers":[{"string":"+1 к уровню размещенных камней умений за каждые # уровня игрока"}],"trade":{"ids":{"explicit":["explicit.stat_1435838855"]}}} +{"ref":"+1 to maximum Blade Flurry stages","better":1,"matchers":[{"string":"+1 к максимуму стадий Порыва клинков"}],"trade":{"ids":{"enchant":["enchant.stat_865345996"]}}} +{"ref":"+1 to maximum number of Raised Zombies per # Strength","better":1,"matchers":[{"string":"+1 к максимальному количеству зомби за каждые # силы"}],"trade":{"ids":{"explicit":["explicit.stat_4056985119"]}}} +{"ref":"+40% to Maximum Effect of Shock","better":1,"matchers":[{"string":"+40% к максимуму эффекта шока"}],"trade":{"ids":{"explicit":["explicit.stat_4007740198"]}}} +{"ref":"1 Added Passive Skill is Adrenaline","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Адреналин"}],"trade":{"ids":{"explicit":["explicit.stat_4022743870"],"fractured":["fractured.stat_4022743870"]}}} +{"ref":"1 Added Passive Skill is Advance Guard","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Оборона наступлением"}],"trade":{"ids":{"explicit":["explicit.stat_1625939562"],"fractured":["fractured.stat_1625939562"]}}} +{"ref":"1 Added Passive Skill is Aerialist","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Акробат"}],"trade":{"ids":{"explicit":["explicit.stat_3848677307"],"fractured":["fractured.stat_3848677307"]}}} +{"ref":"1 Added Passive Skill is Aerodynamics","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Аэродинамика"}],"trade":{"ids":{"explicit":["explicit.stat_4120556534"],"fractured":["fractured.stat_4120556534"]}}} +{"ref":"1 Added Passive Skill is Agent of Destruction","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Посредник разрушения"}],"trade":{"ids":{"explicit":["explicit.stat_3122491961"],"fractured":["fractured.stat_3122491961"]}}} +{"ref":"1 Added Passive Skill is Aggressive Defence","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Агрессивная оборона"}],"trade":{"ids":{"explicit":["explicit.stat_4154008618"],"fractured":["fractured.stat_4154008618"]}}} +{"ref":"1 Added Passive Skill is Alchemist","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Алхимик"}],"trade":{"ids":{"explicit":["explicit.stat_2912949210"],"fractured":["fractured.stat_2912949210"]}}} +{"ref":"1 Added Passive Skill is Ancestral Echo","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Эхо предков"}],"trade":{"ids":{"explicit":["explicit.stat_957679205"],"fractured":["fractured.stat_957679205"]}}} +{"ref":"1 Added Passive Skill is Ancestral Guidance","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Наставление предков"}],"trade":{"ids":{"explicit":["explicit.stat_2387747995"],"fractured":["fractured.stat_2387747995"]}}} +{"ref":"1 Added Passive Skill is Ancestral Inspiration","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Вдохновение предков"}],"trade":{"ids":{"explicit":["explicit.stat_77045106"],"fractured":["fractured.stat_77045106"]}}} +{"ref":"1 Added Passive Skill is Ancestral Might","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Мощь предков"}],"trade":{"ids":{"explicit":["explicit.stat_3998316"],"fractured":["fractured.stat_3998316"]}}} +{"ref":"1 Added Passive Skill is Ancestral Preservation","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Охрана предков"}],"trade":{"ids":{"explicit":["explicit.stat_3746703776"]}}} +{"ref":"1 Added Passive Skill is Ancestral Reach","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Охват предков"}],"trade":{"ids":{"explicit":["explicit.stat_3294884567"],"fractured":["fractured.stat_3294884567"]}}} +{"ref":"1 Added Passive Skill is Antifreeze","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Незамораживаемость"}],"trade":{"ids":{"explicit":["explicit.stat_2622946553"],"fractured":["fractured.stat_2622946553"]}}} +{"ref":"1 Added Passive Skill is Antivenom","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Противояд"}],"trade":{"ids":{"explicit":["explicit.stat_774369953"],"fractured":["fractured.stat_774369953"]}}} +{"ref":"1 Added Passive Skill is Arcane Adept","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Адепт колдовства"}],"trade":{"ids":{"explicit":["explicit.stat_393565679"],"fractured":["fractured.stat_393565679"]}}} +{"ref":"1 Added Passive Skill is Arcane Heroism","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Колдовская доблесть"}],"trade":{"ids":{"explicit":["explicit.stat_3901992019"],"fractured":["fractured.stat_3901992019"]}}} +{"ref":"1 Added Passive Skill is Arcane Pyrotechnics","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Колдовская пиротехника"}],"trade":{"ids":{"explicit":["explicit.stat_2043503530"]}}} +{"ref":"1 Added Passive Skill is Arcing Shot","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Искристый выстрел"}],"trade":{"ids":{"explicit":["explicit.stat_3212859169"],"fractured":["fractured.stat_3212859169"]}}} +{"ref":"1 Added Passive Skill is Assert Dominance","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Утвержденное господство"}],"trade":{"ids":{"explicit":["explicit.stat_4222265138"],"fractured":["fractured.stat_4222265138"]}}} +{"ref":"1 Added Passive Skill is Astonishing Affliction","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Удивительный недуг"}],"trade":{"ids":{"explicit":["explicit.stat_2428334013"]}}} +{"ref":"1 Added Passive Skill is Basics of Pain","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Основы боли"}],"trade":{"ids":{"explicit":["explicit.stat_3084359503"],"fractured":["fractured.stat_3084359503"]}}} +{"ref":"1 Added Passive Skill is Battle-Hardened","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Закаленный в битве"}],"trade":{"ids":{"explicit":["explicit.stat_4188581520"],"fractured":["fractured.stat_4188581520"]}}} +{"ref":"1 Added Passive Skill is Battlefield Dominator","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Повелитель поля боя"}],"trade":{"ids":{"explicit":["explicit.stat_1499057234"],"fractured":["fractured.stat_1499057234"]}}} +{"ref":"1 Added Passive Skill is Blacksmith","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Кузнец"}],"trade":{"ids":{"explicit":["explicit.stat_1127706436"],"fractured":["fractured.stat_1127706436"]}}} +{"ref":"1 Added Passive Skill is Blanketed Snow","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Снежное покрывало"}],"trade":{"ids":{"explicit":["explicit.stat_1085167979"],"fractured":["fractured.stat_1085167979"]}}} +{"ref":"1 Added Passive Skill is Blast-Freeze","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Взрывной мороз"}],"trade":{"ids":{"explicit":["explicit.stat_693808153"],"fractured":["fractured.stat_693808153"]}}} +{"ref":"1 Added Passive Skill is Blessed","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Благословенный"}],"trade":{"ids":{"explicit":["explicit.stat_775689239"],"fractured":["fractured.stat_775689239"]}}} +{"ref":"1 Added Passive Skill is Blessed Rebirth","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Благословенное возрождение"}],"trade":{"ids":{"explicit":["explicit.stat_1424794574"],"fractured":["fractured.stat_1424794574"]}}} +{"ref":"1 Added Passive Skill is Blizzard Caller","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Зовущий метель"}],"trade":{"ids":{"explicit":["explicit.stat_3758712376"],"fractured":["fractured.stat_3758712376"]}}} +{"ref":"1 Added Passive Skill is Blood Artist","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Художник кровью"}],"trade":{"ids":{"explicit":["explicit.stat_2284771334"]}}} +{"ref":"1 Added Passive Skill is Bloodscent","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Запах крови"}],"trade":{"ids":{"explicit":["explicit.stat_3967765261"],"fractured":["fractured.stat_3967765261"]}}} +{"ref":"1 Added Passive Skill is Blowback","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Отдача"}],"trade":{"ids":{"explicit":["explicit.stat_1612414696"],"fractured":["fractured.stat_1612414696"]}}} +{"ref":"1 Added Passive Skill is Bodyguards","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Телохранители"}],"trade":{"ids":{"explicit":["explicit.stat_791125124"],"fractured":["fractured.stat_791125124"]}}} +{"ref":"1 Added Passive Skill is Born of Chaos","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Рожденный из хаоса"}],"trade":{"ids":{"explicit":["explicit.stat_2449392400"],"fractured":["fractured.stat_2449392400"]}}} +{"ref":"1 Added Passive Skill is Brand Loyalty","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Верность печатям"}],"trade":{"ids":{"explicit":["explicit.stat_3198006994"],"fractured":["fractured.stat_3198006994"]}}} +{"ref":"1 Added Passive Skill is Brewed for Potency","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Подготовленный потенциал"}],"trade":{"ids":{"explicit":["explicit.stat_3250272113"],"fractured":["fractured.stat_3250272113"]}}} +{"ref":"1 Added Passive Skill is Broadside","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Бортовой залп"}],"trade":{"ids":{"explicit":["explicit.stat_2205982416"],"fractured":["fractured.stat_2205982416"]}}} +{"ref":"1 Added Passive Skill is Brush with Death","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Игры со смертью"}],"trade":{"ids":{"explicit":["explicit.stat_2900833792"],"fractured":["fractured.stat_2900833792"]}}} +{"ref":"1 Added Passive Skill is Brutal Infamy","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Жестокая резня"}],"trade":{"ids":{"explicit":["explicit.stat_2068574831"],"fractured":["fractured.stat_2068574831"]}}} +{"ref":"1 Added Passive Skill is Burden Projection","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Гнетущий посыл"}],"trade":{"ids":{"explicit":["explicit.stat_2008682345"],"fractured":["fractured.stat_2008682345"]}}} +{"ref":"1 Added Passive Skill is Burning Bright","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Яркое зарево"}],"trade":{"ids":{"explicit":["explicit.stat_4199056048"],"fractured":["fractured.stat_4199056048"]}}} +{"ref":"1 Added Passive Skill is Calamitous","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Пагубность"}],"trade":{"ids":{"explicit":["explicit.stat_3359207393"],"fractured":["fractured.stat_3359207393"]}}} +{"ref":"1 Added Passive Skill is Call to the Slaughter","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Призыв к бойне"}],"trade":{"ids":{"explicit":["explicit.stat_3317068522"],"fractured":["fractured.stat_3317068522"]}}} +{"ref":"1 Added Passive Skill is Capacitor","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Накопитель"}],"trade":{"ids":{"explicit":["explicit.stat_4025536654"],"fractured":["fractured.stat_4025536654"]}}} +{"ref":"1 Added Passive Skill is Careful Handling","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Тщательная обработка"}],"trade":{"ids":{"explicit":["explicit.stat_456502758"],"fractured":["fractured.stat_456502758"]}}} +{"ref":"1 Added Passive Skill is Chilling Presence","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Леденящее присутствие"}],"trade":{"ids":{"explicit":["explicit.stat_2834490860"]}}} +{"ref":"1 Added Passive Skill is Chip Away","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Устранение"}],"trade":{"ids":{"explicit":["explicit.stat_968069586"],"fractured":["fractured.stat_968069586"]}}} +{"ref":"1 Added Passive Skill is Circling Oblivion","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Окружающее забвение"}],"trade":{"ids":{"explicit":["explicit.stat_2129392647"],"fractured":["fractured.stat_2129392647"]}}} +{"ref":"1 Added Passive Skill is Clarity of Purpose","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Ясность цели"}],"trade":{"ids":{"explicit":["explicit.stat_684087686"],"fractured":["fractured.stat_684087686"]}}} +{"ref":"1 Added Passive Skill is Cold Conduction","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Холодная проводимость"}],"trade":{"ids":{"explicit":["explicit.stat_1274505521"]}}} +{"ref":"1 Added Passive Skill is Cold to the Core","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Мороз до костей"}],"trade":{"ids":{"explicit":["explicit.stat_744783843"],"fractured":["fractured.stat_744783843"]}}} +{"ref":"1 Added Passive Skill is Cold-Blooded Killer","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Хладнокровный убийца"}],"trade":{"ids":{"explicit":["explicit.stat_836566759"],"fractured":["fractured.stat_836566759"]}}} +{"ref":"1 Added Passive Skill is Combat Rhythm","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Боевой ритм"}],"trade":{"ids":{"explicit":["explicit.stat_3122505794"],"fractured":["fractured.stat_3122505794"]}}} +{"ref":"1 Added Passive Skill is Compound Injury","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Сложная травма"}],"trade":{"ids":{"explicit":["explicit.stat_4018305528"]}}} +{"ref":"1 Added Passive Skill is Conjured Wall","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Сотворенная стена"}],"trade":{"ids":{"explicit":["explicit.stat_4105031548"],"fractured":["fractured.stat_4105031548"]}}} +{"ref":"1 Added Passive Skill is Conservation of Energy","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Сохранение энергии"}],"trade":{"ids":{"explicit":["explicit.stat_2083777017"]}}} +{"ref":"1 Added Passive Skill is Cooked Alive","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Приготовленный заживо"}],"trade":{"ids":{"explicit":["explicit.stat_2938895712"],"fractured":["fractured.stat_2938895712"]}}} +{"ref":"1 Added Passive Skill is Corrosive Elements","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Агрессивные стихии"}],"trade":{"ids":{"explicit":["explicit.stat_1777139212"],"fractured":["fractured.stat_1777139212"]}}} +{"ref":"1 Added Passive Skill is Cremator","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Сжигатель"}],"trade":{"ids":{"explicit":["explicit.stat_1153801980"],"fractured":["fractured.stat_1153801980"]}}} +{"ref":"1 Added Passive Skill is Cry Wolf","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Волчий вой"}],"trade":{"ids":{"explicit":["explicit.stat_1821748178"]}}} +{"ref":"1 Added Passive Skill is Cult-Leader","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Лидер культа"}],"trade":{"ids":{"explicit":["explicit.stat_2026112251"]}}} +{"ref":"1 Added Passive Skill is Daring Ideas","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Смелые идеи"}],"trade":{"ids":{"explicit":["explicit.stat_2534405517"],"fractured":["fractured.stat_2534405517"]}}} +{"ref":"1 Added Passive Skill is Dark Ideation","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Темное воплощение"}],"trade":{"ids":{"explicit":["explicit.stat_1603621602"],"fractured":["fractured.stat_1603621602"]}}} +{"ref":"1 Added Passive Skill is Dark Messenger","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Темный посланник"}],"trade":{"ids":{"explicit":["explicit.stat_3784610129"],"fractured":["fractured.stat_3784610129"]}}} +{"ref":"1 Added Passive Skill is Darting Movements","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Резкие движения"}],"trade":{"ids":{"explicit":["explicit.stat_846491278"],"fractured":["fractured.stat_846491278"]}}} +{"ref":"1 Added Passive Skill is Deadly Repartee","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Смертельная находчивость"}],"trade":{"ids":{"explicit":["explicit.stat_1013470938"],"fractured":["fractured.stat_1013470938"]}}} +{"ref":"1 Added Passive Skill is Deep Chill","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Глубокое охлаждение"}],"trade":{"ids":{"explicit":["explicit.stat_1703766309"],"fractured":["fractured.stat_1703766309"]}}} +{"ref":"1 Added Passive Skill is Destructive Aspect","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Аспект разрушения"}],"trade":{"ids":{"explicit":["explicit.stat_3860179422"],"fractured":["fractured.stat_3860179422"]}}} +{"ref":"1 Added Passive Skill is Devastator","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Разрушитель"}],"trade":{"ids":{"explicit":["explicit.stat_3711553948"],"fractured":["fractured.stat_3711553948"]}}} +{"ref":"1 Added Passive Skill is Disciples","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Последователи"}],"trade":{"ids":{"explicit":["explicit.stat_3177526694"]}}} +{"ref":"1 Added Passive Skill is Disease Vector","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Переносчик болезни"}],"trade":{"ids":{"explicit":["explicit.stat_183591019"],"fractured":["fractured.stat_183591019"]}}} +{"ref":"1 Added Passive Skill is Disorienting Display","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Отвлекающий маневр"}],"trade":{"ids":{"explicit":["explicit.stat_3206911230"],"fractured":["fractured.stat_3206911230"]}}} +{"ref":"1 Added Passive Skill is Disorienting Wounds","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Дизориентирующие раны"}],"trade":{"ids":{"explicit":["explicit.stat_3351136461"],"fractured":["fractured.stat_3351136461"]}}} +{"ref":"1 Added Passive Skill is Distilled Perfection","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Очищенное совершенство"}],"trade":{"ids":{"explicit":["explicit.stat_3652138990"],"fractured":["fractured.stat_3652138990"]}}} +{"ref":"1 Added Passive Skill is Doedre's Apathy","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Апатия Доэдре"}],"trade":{"ids":{"explicit":["explicit.stat_1381945089"],"fractured":["fractured.stat_1381945089"]}}} +{"ref":"1 Added Passive Skill is Doedre's Gluttony","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Ненасытность Доэдре"}],"trade":{"ids":{"explicit":["explicit.stat_2695848124"],"fractured":["fractured.stat_2695848124"]}}} +{"ref":"1 Added Passive Skill is Doedre's Spite","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Злоба Доэдре"}],"trade":{"ids":{"explicit":["explicit.stat_462115791"],"fractured":["fractured.stat_462115791"]}}} +{"ref":"1 Added Passive Skill is Doryani's Lesson","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Урок Дориани"}],"trade":{"ids":{"explicit":["explicit.stat_228455793"],"fractured":["fractured.stat_228455793"]}}} +{"ref":"1 Added Passive Skill is Dragon Hunter","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Охотник на драконов"}],"trade":{"ids":{"explicit":["explicit.stat_1038955006"],"fractured":["fractured.stat_1038955006"]}}} +{"ref":"1 Added Passive Skill is Dread March","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Марш страха"}],"trade":{"ids":{"explicit":["explicit.stat_3087667389"],"fractured":["fractured.stat_3087667389"]}}} +{"ref":"1 Added Passive Skill is Drive the Destruction","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Разрушительная горячность"}],"trade":{"ids":{"explicit":["explicit.stat_1911162866"],"fractured":["fractured.stat_1911162866"]}}} +{"ref":"1 Added Passive Skill is Eldritch Inspiration","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Жуткое вдохновение"}],"trade":{"ids":{"explicit":["explicit.stat_3737604164"],"fractured":["fractured.stat_3737604164"]}}} +{"ref":"1 Added Passive Skill is Electric Presence","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Громовое присутствие"}],"trade":{"ids":{"explicit":["explicit.stat_3950683692"],"fractured":["fractured.stat_3950683692"]}}} +{"ref":"1 Added Passive Skill is Elegant Form","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Элегантная форма"}],"trade":{"ids":{"explicit":["explicit.stat_289714529"],"fractured":["fractured.stat_289714529"]}}} +{"ref":"1 Added Passive Skill is Empowered Envoy","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Эмиссар"}],"trade":{"ids":{"explicit":["explicit.stat_2032453153"],"fractured":["fractured.stat_2032453153"]}}} +{"ref":"1 Added Passive Skill is Endbringer","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Вестник исхода"}],"trade":{"ids":{"explicit":["explicit.stat_2150878631"]}}} +{"ref":"1 Added Passive Skill is Enduring Composure","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Стойкое хладнокровие"}],"trade":{"ids":{"explicit":["explicit.stat_2043284086"],"fractured":["fractured.stat_2043284086"]}}} +{"ref":"1 Added Passive Skill is Enduring Focus","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Стойкое средоточие"}],"trade":{"ids":{"explicit":["explicit.stat_2522970386"]}}} +{"ref":"1 Added Passive Skill is Enduring Ward","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Выносливый хранитель"}],"trade":{"ids":{"explicit":["explicit.stat_252724319"],"fractured":["fractured.stat_252724319"]}}} +{"ref":"1 Added Passive Skill is Energy From Naught","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Энергия из ничего"}],"trade":{"ids":{"explicit":["explicit.stat_2195518432"],"fractured":["fractured.stat_2195518432"]}}} +{"ref":"1 Added Passive Skill is Essence Rush","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Прилив духа"}],"trade":{"ids":{"explicit":["explicit.stat_1096136223"],"fractured":["fractured.stat_1096136223"]}}} +{"ref":"1 Added Passive Skill is Eternal Suffering","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Вечные страдания"}],"trade":{"ids":{"explicit":["explicit.stat_2144634814"]}}} +{"ref":"1 Added Passive Skill is Evil Eye","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Сглаз"}],"trade":{"ids":{"explicit":["explicit.stat_156080652","explicit.stat_4291066912"],"fractured":["fractured.stat_156080652","fractured.stat_4291066912"]}}} +{"ref":"1 Added Passive Skill is Expansive Might","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Обширная мощь"}],"trade":{"ids":{"explicit":["explicit.stat_394918362"],"fractured":["fractured.stat_394918362"]}}} +{"ref":"1 Added Passive Skill is Expendability","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Одноразовость"}],"trade":{"ids":{"explicit":["explicit.stat_2020075345"]}}} +{"ref":"1 Added Passive Skill is Expert Sabotage","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Умелая диверсия"}],"trade":{"ids":{"explicit":["explicit.stat_2084371547"]}}} +{"ref":"1 Added Passive Skill is Exploit Weakness","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Использование слабостей"}],"trade":{"ids":{"explicit":["explicit.stat_50129423"],"fractured":["fractured.stat_50129423"]}}} +{"ref":"1 Added Passive Skill is Explosive Force","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Взрывная сила"}],"trade":{"ids":{"explicit":["explicit.stat_2017927451"],"fractured":["fractured.stat_2017927451"]}}} +{"ref":"1 Added Passive Skill is Exposure Therapy","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Длительная терапия"}],"trade":{"ids":{"explicit":["explicit.stat_131358113"],"fractured":["fractured.stat_131358113"]}}} +{"ref":"1 Added Passive Skill is Eye of the Storm","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Око бури"}],"trade":{"ids":{"explicit":["explicit.stat_3818661553"],"fractured":["fractured.stat_3818661553"]}}} +{"ref":"1 Added Passive Skill is Eye to Eye","better":1,"matchers":[{"string":"1 добавленное пассивное умение - С глазу на глаз"}],"trade":{"ids":{"explicit":["explicit.stat_392942015"],"fractured":["fractured.stat_392942015"]}}} +{"ref":"1 Added Passive Skill is Fan of Blades","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Веер клинков"}],"trade":{"ids":{"explicit":["explicit.stat_2484082827"],"fractured":["fractured.stat_2484082827"]}}} +{"ref":"1 Added Passive Skill is Fan the Flames","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Раздувшееся пламя"}],"trade":{"ids":{"explicit":["explicit.stat_2918755450"],"fractured":["fractured.stat_2918755450"]}}} +{"ref":"1 Added Passive Skill is Fasting","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Голодание"}],"trade":{"ids":{"explicit":["explicit.stat_37078857"],"fractured":["fractured.stat_37078857"]}}} +{"ref":"1 Added Passive Skill is Fearsome Warrior","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Грозный воин"}],"trade":{"ids":{"explicit":["explicit.stat_3134222965"],"fractured":["fractured.stat_3134222965"]}}} +{"ref":"1 Added Passive Skill is Feast of Flesh","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Пир плоти"}],"trade":{"ids":{"explicit":["explicit.stat_2396755365"]}}} +{"ref":"1 Added Passive Skill is Feasting Fiends","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Пирующая нечисть"}],"trade":{"ids":{"explicit":["explicit.stat_383245807"],"fractured":["fractured.stat_383245807"]}}} +{"ref":"1 Added Passive Skill is Feed the Fury","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Подпитка гнева"}],"trade":{"ids":{"explicit":["explicit.stat_3944525413"],"fractured":["fractured.stat_3944525413"]}}} +{"ref":"1 Added Passive Skill is Fettle","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Хорошая форма"}],"trade":{"ids":{"explicit":["explicit.stat_1353571444"],"fractured":["fractured.stat_1353571444"]}}} +{"ref":"1 Added Passive Skill is Fire Attunement","better":1,"matchers":[{"string":"1 добавленное пассивное умение - В гармонии с огнем"}],"trade":{"ids":{"explicit":["explicit.stat_3188756614"],"fractured":["fractured.stat_3188756614"]}}} +{"ref":"1 Added Passive Skill is Flexible Sentry","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Гибкий страж"}],"trade":{"ids":{"explicit":["explicit.stat_982290947"],"fractured":["fractured.stat_982290947"]}}} +{"ref":"1 Added Passive Skill is Flow of Life","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Течение жизни"}],"trade":{"ids":{"explicit":["explicit.stat_2350430215"],"fractured":["fractured.stat_2350430215"]}}} +{"ref":"1 Added Passive Skill is Follow-Through","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Последствия"}],"trade":{"ids":{"explicit":["explicit.stat_3984980429"],"fractured":["fractured.stat_3984980429"]}}} +{"ref":"1 Added Passive Skill is Force Multiplier","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Множитель силы"}],"trade":{"ids":{"explicit":["explicit.stat_1904581068"],"fractured":["fractured.stat_1904581068"]}}} +{"ref":"1 Added Passive Skill is Frantic Aspect","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Аспект неистовости"}],"trade":{"ids":{"explicit":["explicit.stat_792262925"],"fractured":["fractured.stat_792262925"]}}} +{"ref":"1 Added Passive Skill is Fuel the Fight","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Топливо для битвы"}],"trade":{"ids":{"explicit":["explicit.stat_3599340381"],"fractured":["fractured.stat_3599340381"]}}} +{"ref":"1 Added Passive Skill is Furious Assault","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Неистовое наступление"}],"trade":{"ids":{"explicit":["explicit.stat_3415827027"],"fractured":["fractured.stat_3415827027"]}}} +{"ref":"1 Added Passive Skill is Genius","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Гений"}],"trade":{"ids":{"explicit":["explicit.stat_2763732093"],"fractured":["fractured.stat_2763732093"]}}} +{"ref":"1 Added Passive Skill is Gladiator's Fortitude","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Стойкость гладиатора"}],"trade":{"ids":{"explicit":["explicit.stat_1591995797"],"fractured":["fractured.stat_1591995797"]}}} +{"ref":"1 Added Passive Skill is Graceful Execution","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Изящное исполнение"}],"trade":{"ids":{"explicit":["explicit.stat_1903496649"],"fractured":["fractured.stat_1903496649"]}}} +{"ref":"1 Added Passive Skill is Grand Design","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Великолепный план"}],"trade":{"ids":{"explicit":["explicit.stat_2350900742"],"fractured":["fractured.stat_2350900742"]}}} +{"ref":"1 Added Passive Skill is Grim Oath","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Мрачная клятва"}],"trade":{"ids":{"explicit":["explicit.stat_2194205899"],"fractured":["fractured.stat_2194205899"]}}} +{"ref":"1 Added Passive Skill is Guerilla Tactics","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Партизанская тактика"}],"trade":{"ids":{"explicit":["explicit.stat_1882129725"],"fractured":["fractured.stat_1882129725"]}}} +{"ref":"1 Added Passive Skill is Haemorrhage","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Кровоизлияние"}],"trade":{"ids":{"explicit":["explicit.stat_72129119"],"fractured":["fractured.stat_72129119"]}}} +{"ref":"1 Added Passive Skill is Haunting Shout","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Устрашающий крик"}],"trade":{"ids":{"explicit":["explicit.stat_1080363357"],"fractured":["fractured.stat_1080363357"]}}} +{"ref":"1 Added Passive Skill is Heart of Iron","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Железное сердце"}],"trade":{"ids":{"explicit":["explicit.stat_1483358825"]}}} +{"ref":"1 Added Passive Skill is Heavy Hitter","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Тяжелые удары"}],"trade":{"ids":{"explicit":["explicit.stat_3640252904"],"fractured":["fractured.stat_3640252904"]}}} +{"ref":"1 Added Passive Skill is Heraldry","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Геральдика"}],"trade":{"ids":{"explicit":["explicit.stat_3274270612"],"fractured":["fractured.stat_3274270612"]}}} +{"ref":"1 Added Passive Skill is Hex Breaker","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Чаролом"}],"trade":{"ids":{"explicit":["explicit.stat_2341828832"]}}} +{"ref":"1 Added Passive Skill is Hibernator","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Морозостойкий"}],"trade":{"ids":{"explicit":["explicit.stat_2294919888"],"fractured":["fractured.stat_2294919888"]}}} +{"ref":"1 Added Passive Skill is Hit and Run","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Бей и беги"}],"trade":{"ids":{"explicit":["explicit.stat_2665170385"],"fractured":["fractured.stat_2665170385"]}}} +{"ref":"1 Added Passive Skill is Holistic Health","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Целостность"}],"trade":{"ids":{"explicit":["explicit.stat_3667965781"],"fractured":["fractured.stat_3667965781"]}}} +{"ref":"1 Added Passive Skill is Holy Conquest","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Святое завоевание"}],"trade":{"ids":{"explicit":["explicit.stat_3898572660"],"fractured":["fractured.stat_3898572660"]}}} +{"ref":"1 Added Passive Skill is Hound's Mark","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Метка гончей"}],"trade":{"ids":{"explicit":["explicit.stat_555800967"],"fractured":["fractured.stat_555800967"]}}} +{"ref":"1 Added Passive Skill is Hulking Corpses","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Неуклюжие мертвецы"}],"trade":{"ids":{"explicit":["explicit.stat_3467711950"],"fractured":["fractured.stat_3467711950"]}}} +{"ref":"1 Added Passive Skill is Improvisor","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Импровизатор"}],"trade":{"ids":{"explicit":["explicit.stat_810219447"],"fractured":["fractured.stat_810219447"]}}} +{"ref":"1 Added Passive Skill is Insatiable Killer","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Ненасытный убийца"}],"trade":{"ids":{"explicit":["explicit.stat_3904970959"],"fractured":["fractured.stat_3904970959"]}}} +{"ref":"1 Added Passive Skill is Inspired Oppression","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Вдохновленное угнетение"}],"trade":{"ids":{"explicit":["explicit.stat_3872380586"],"fractured":["fractured.stat_3872380586"]}}} +{"ref":"1 Added Passive Skill is Insulated","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Изолированный"}],"trade":{"ids":{"explicit":["explicit.stat_212648555"],"fractured":["fractured.stat_212648555"]}}} +{"ref":"1 Added Passive Skill is Introspection","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Самоанализ"}],"trade":{"ids":{"explicit":["explicit.stat_1309218394"],"fractured":["fractured.stat_1309218394"]}}} +{"ref":"1 Added Passive Skill is Invigorating Portents","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Бодрящие знамения"}],"trade":{"ids":{"explicit":["explicit.stat_2262034536"]}}} +{"ref":"1 Added Passive Skill is Iron Breaker","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Железный сокрушитель"}],"trade":{"ids":{"explicit":["explicit.stat_3258653591"],"fractured":["fractured.stat_3258653591"]}}} +{"ref":"1 Added Passive Skill is Lasting Impression","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Неизгладимое впечатление"}],"trade":{"ids":{"explicit":["explicit.stat_426715778"],"fractured":["fractured.stat_426715778"]}}} +{"ref":"1 Added Passive Skill is Lead By Example","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Подающий пример"}],"trade":{"ids":{"explicit":["explicit.stat_2195406641"],"fractured":["fractured.stat_2195406641"]}}} +{"ref":"1 Added Passive Skill is Life from Death","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Жизнь из смерти"}],"trade":{"ids":{"explicit":["explicit.stat_2337273077"],"fractured":["fractured.stat_2337273077"]}}} +{"ref":"1 Added Passive Skill is Liquid Inspiration","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Жидкое вдохновение"}],"trade":{"ids":{"explicit":["explicit.stat_1094635162"],"fractured":["fractured.stat_1094635162"]}}} +{"ref":"1 Added Passive Skill is Lord of Drought","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Повелитель засухи"}],"trade":{"ids":{"explicit":["explicit.stat_2055715585"],"fractured":["fractured.stat_2055715585"]}}} +{"ref":"1 Added Passive Skill is Low Tolerance","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Слабый иммунитет"}],"trade":{"ids":{"explicit":["explicit.stat_3989400244"]}}} +{"ref":"1 Added Passive Skill is Mage Bane","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Погибель магов"}],"trade":{"ids":{"explicit":["explicit.stat_684155617"],"fractured":["fractured.stat_684155617"]}}} +{"ref":"1 Added Passive Skill is Mage Hunter","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Охотник на магов"}],"trade":{"ids":{"explicit":["explicit.stat_2118664144"],"fractured":["fractured.stat_2118664144"]}}} +{"ref":"1 Added Passive Skill is Magnifier","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Увеличитель"}],"trade":{"ids":{"explicit":["explicit.stat_2886441936"],"fractured":["fractured.stat_2886441936"]}}} +{"ref":"1 Added Passive Skill is Martial Mastery","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Боевое Мастерство"}],"trade":{"ids":{"explicit":["explicit.stat_1015189426"],"fractured":["fractured.stat_1015189426"]}}} +{"ref":"1 Added Passive Skill is Martial Momentum","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Боевой импульс"}],"trade":{"ids":{"explicit":["explicit.stat_2978494217"],"fractured":["fractured.stat_2978494217"]}}} +{"ref":"1 Added Passive Skill is Martial Prowess","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Боевая доблесть"}],"trade":{"ids":{"explicit":["explicit.stat_1152182658"],"fractured":["fractured.stat_1152182658"]}}} +{"ref":"1 Added Passive Skill is Master of Command","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Прирожденный командир"}],"trade":{"ids":{"explicit":["explicit.stat_3257074218"],"fractured":["fractured.stat_3257074218"]}}} +{"ref":"1 Added Passive Skill is Master of Fire","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Мастер огня"}],"trade":{"ids":{"explicit":["explicit.stat_1462135249"],"fractured":["fractured.stat_1462135249"]}}} +{"ref":"1 Added Passive Skill is Master of the Maelstrom","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Повелитель бури"}],"trade":{"ids":{"explicit":["explicit.stat_185592058"],"fractured":["fractured.stat_185592058"]}}} +{"ref":"1 Added Passive Skill is Master the Fundamentals","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Мастер основ"}],"trade":{"ids":{"explicit":["explicit.stat_3585232432"],"fractured":["fractured.stat_3585232432"]}}} +{"ref":"1 Added Passive Skill is Mender's Wellspring","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Восстанавливающий источник"}],"trade":{"ids":{"explicit":["explicit.stat_4291434923"],"fractured":["fractured.stat_4291434923"]}}} +{"ref":"1 Added Passive Skill is Militarism","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Милитаризм"}],"trade":{"ids":{"explicit":["explicit.stat_4154709486"],"fractured":["fractured.stat_4154709486"]}}} +{"ref":"1 Added Passive Skill is Mindfulness","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Осознанность"}],"trade":{"ids":{"explicit":["explicit.stat_2595115995"],"fractured":["fractured.stat_2595115995"]}}} +{"ref":"1 Added Passive Skill is Misery Everlasting","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Вечное несчастье"}],"trade":{"ids":{"explicit":["explicit.stat_3832665876"]}}} +{"ref":"1 Added Passive Skill is Mob Mentality","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Стадное чувство"}],"trade":{"ids":{"explicit":["explicit.stat_1048879642"],"fractured":["fractured.stat_1048879642"]}}} +{"ref":"1 Added Passive Skill is Molten One's Mark","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Метка Расплавленного"}],"trade":{"ids":{"explicit":["explicit.stat_3875792669"],"fractured":["fractured.stat_3875792669"]}}} +{"ref":"1 Added Passive Skill is Mortifying Aspect","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Аспект подавления"}],"trade":{"ids":{"explicit":["explicit.stat_3881737087"],"fractured":["fractured.stat_3881737087"]}}} +{"ref":"1 Added Passive Skill is Mystical Ward","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Мистическая защита"}],"trade":{"ids":{"explicit":["explicit.stat_2314111938"],"fractured":["fractured.stat_2314111938"]}}} +{"ref":"1 Added Passive Skill is Natural Vigour","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Природная энергия"}],"trade":{"ids":{"explicit":["explicit.stat_510654792"],"fractured":["fractured.stat_510654792"]}}} +{"ref":"1 Added Passive Skill is Non-Flammable","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Невоспламеняющийся"}],"trade":{"ids":{"explicit":["explicit.stat_731840035"],"fractured":["fractured.stat_731840035"]}}} +{"ref":"1 Added Passive Skill is Numbing Elixir","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Притупляющий эликсир"}],"trade":{"ids":{"explicit":["explicit.stat_1028754276"],"fractured":["fractured.stat_1028754276"]}}} +{"ref":"1 Added Passive Skill is One with the Shield","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Щитоносец"}],"trade":{"ids":{"explicit":["explicit.stat_1976069869"]}}} +{"ref":"1 Added Passive Skill is Openness","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Открытость"}],"trade":{"ids":{"explicit":["explicit.stat_633943719"],"fractured":["fractured.stat_633943719"]}}} +{"ref":"1 Added Passive Skill is Opportunistic Fusilade","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Пальба наудачу"}],"trade":{"ids":{"explicit":["explicit.stat_4281625943"],"fractured":["fractured.stat_4281625943"]}}} +{"ref":"1 Added Passive Skill is Overlord","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Повелитель"}],"trade":{"ids":{"explicit":["explicit.stat_2250169390"],"fractured":["fractured.stat_2250169390"]}}} +{"ref":"1 Added Passive Skill is Overshock","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Избыточный шок"}],"trade":{"ids":{"explicit":["explicit.stat_3777170562"],"fractured":["fractured.stat_3777170562"]}}} +{"ref":"1 Added Passive Skill is Overwhelming Malice","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Подавляющая злоба"}],"trade":{"ids":{"explicit":["explicit.stat_770408103"],"fractured":["fractured.stat_770408103"]}}} +{"ref":"1 Added Passive Skill is Paralysis","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Паралич"}],"trade":{"ids":{"explicit":["explicit.stat_4272503233"],"fractured":["fractured.stat_4272503233"]}}} +{"ref":"1 Added Passive Skill is Peace Amidst Chaos","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Мир среди хаоса"}],"trade":{"ids":{"explicit":["explicit.stat_1734275536"]}}} +{"ref":"1 Added Passive Skill is Peak Vigour","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Пик силы"}],"trade":{"ids":{"explicit":["explicit.stat_1722821275"],"fractured":["fractured.stat_1722821275"]}}} +{"ref":"1 Added Passive Skill is Phlebotomist","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Флеботомист"}],"trade":{"ids":{"explicit":["explicit.stat_3057154383"]}}} +{"ref":"1 Added Passive Skill is Powerful Assault","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Мощное наступление"}],"trade":{"ids":{"explicit":["explicit.stat_1005475168"],"fractured":["fractured.stat_1005475168"]}}} +{"ref":"1 Added Passive Skill is Powerful Ward","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Могучий хранитель"}],"trade":{"ids":{"explicit":["explicit.stat_164032122"]}}} +{"ref":"1 Added Passive Skill is Practiced Caster","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Умелый чародей"}],"trade":{"ids":{"explicit":["explicit.stat_3435403756"],"fractured":["fractured.stat_3435403756"]}}} +{"ref":"1 Added Passive Skill is Precise Focus","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Меткое средоточие"}],"trade":{"ids":{"explicit":["explicit.stat_2913581789"],"fractured":["fractured.stat_2913581789"]}}} +{"ref":"1 Added Passive Skill is Precise Retaliation","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Точное возмездие"}],"trade":{"ids":{"explicit":["explicit.stat_2335364359"],"fractured":["fractured.stat_2335364359"]}}} +{"ref":"1 Added Passive Skill is Pressure Points","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Болевые точки"}],"trade":{"ids":{"explicit":["explicit.stat_3391925584"],"fractured":["fractured.stat_3391925584"]}}} +{"ref":"1 Added Passive Skill is Primordial Bond","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Первобытная связь"}],"trade":{"ids":{"explicit":["explicit.stat_622362787"],"fractured":["fractured.stat_622362787"]}}} +{"ref":"1 Added Passive Skill is Prismatic Carapace","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Радужный панцирь"}],"trade":{"ids":{"explicit":["explicit.stat_3492924480"],"fractured":["fractured.stat_3492924480"]}}} +{"ref":"1 Added Passive Skill is Prismatic Dance","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Радужный танец"}],"trade":{"ids":{"explicit":["explicit.stat_1149662934"]}}} +{"ref":"1 Added Passive Skill is Prismatic Heart","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Радужное сердце"}],"trade":{"ids":{"explicit":["explicit.stat_2342448236"],"fractured":["fractured.stat_2342448236"]}}} +{"ref":"1 Added Passive Skill is Prodigious Defence","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Потрясающая защита"}],"trade":{"ids":{"explicit":["explicit.stat_1705633890"],"fractured":["fractured.stat_1705633890"]}}} +{"ref":"1 Added Passive Skill is Provocateur","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Провокатор"}],"trade":{"ids":{"explicit":["explicit.stat_814369372"],"fractured":["fractured.stat_814369372"]}}} +{"ref":"1 Added Passive Skill is Pure Agony","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Чистая агония"}],"trade":{"ids":{"explicit":["explicit.stat_1507409483"],"fractured":["fractured.stat_1507409483"]}}} +{"ref":"1 Added Passive Skill is Pure Aptitude","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Чистые наклонности"}],"trade":{"ids":{"explicit":["explicit.stat_3509724289"],"fractured":["fractured.stat_3509724289"]}}} +{"ref":"1 Added Passive Skill is Pure Guile","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Чистое коварство"}],"trade":{"ids":{"explicit":["explicit.stat_1621496909"],"fractured":["fractured.stat_1621496909"]}}} +{"ref":"1 Added Passive Skill is Pure Might","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Чистая мощь"}],"trade":{"ids":{"explicit":["explicit.stat_2372915005"],"fractured":["fractured.stat_2372915005"]}}} +{"ref":"1 Added Passive Skill is Purposeful Harbinger","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Целеустремленный предвестник"}],"trade":{"ids":{"explicit":["explicit.stat_507505131"],"fractured":["fractured.stat_507505131"]}}} +{"ref":"1 Added Passive Skill is Quick and Deadly","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Убийственно быстрый"}],"trade":{"ids":{"explicit":["explicit.stat_2169345147"],"fractured":["fractured.stat_2169345147"]}}} +{"ref":"1 Added Passive Skill is Quick Getaway","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Быстрое бегство"}],"trade":{"ids":{"explicit":["explicit.stat_1626818279"],"fractured":["fractured.stat_1626818279"]}}} +{"ref":"1 Added Passive Skill is Rattling Bellow","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Грохочущий рев"}],"trade":{"ids":{"explicit":["explicit.stat_4288473380"],"fractured":["fractured.stat_4288473380"]}}} +{"ref":"1 Added Passive Skill is Raze and Pillage","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Грабь и разоряй"}],"trade":{"ids":{"explicit":["explicit.stat_1038897629"],"fractured":["fractured.stat_1038897629"]}}} +{"ref":"1 Added Passive Skill is Readiness","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Готовность"}],"trade":{"ids":{"explicit":["explicit.stat_845306697"],"fractured":["fractured.stat_845306697"]}}} +{"ref":"1 Added Passive Skill is Remarkable","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Впечатляющий"}],"trade":{"ids":{"explicit":["explicit.stat_691431951"],"fractured":["fractured.stat_691431951"]}}} +{"ref":"1 Added Passive Skill is Rend","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Рваная рана"}],"trade":{"ids":{"explicit":["explicit.stat_4263287206"]}}} +{"ref":"1 Added Passive Skill is Renewal","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Обновление"}],"trade":{"ids":{"explicit":["explicit.stat_3607300552"],"fractured":["fractured.stat_3607300552"]}}} +{"ref":"1 Added Passive Skill is Repeater","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Повторитель"}],"trade":{"ids":{"explicit":["explicit.stat_2233272527"],"fractured":["fractured.stat_2233272527"]}}} +{"ref":"1 Added Passive Skill is Replenishing Presence","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Восполняющее присутствие"}],"trade":{"ids":{"explicit":["explicit.stat_1496043857"],"fractured":["fractured.stat_1496043857"]}}} +{"ref":"1 Added Passive Skill is Righteous Path","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Праведный путь"}],"trade":{"ids":{"explicit":["explicit.stat_2620267328"],"fractured":["fractured.stat_2620267328"]}}} +{"ref":"1 Added Passive Skill is Riot Queller","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Подавитель бунта"}],"trade":{"ids":{"explicit":["explicit.stat_254194892"],"fractured":["fractured.stat_254194892"]}}} +{"ref":"1 Added Passive Skill is Rot-Resistant","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Гнилостойкий"}],"trade":{"ids":{"explicit":["explicit.stat_713945233"],"fractured":["fractured.stat_713945233"]}}} +{"ref":"1 Added Passive Skill is Rote Reinforcement","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Постоянная поддержка"}],"trade":{"ids":{"explicit":["explicit.stat_2478282326"]}}} +{"ref":"1 Added Passive Skill is Rotten Claws","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Гнилые когти"}],"trade":{"ids":{"explicit":["explicit.stat_2289610642"],"fractured":["fractured.stat_2289610642"]}}} +{"ref":"1 Added Passive Skill is Run Through","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Пробежка"}],"trade":{"ids":{"explicit":["explicit.stat_1488030420"],"fractured":["fractured.stat_1488030420"]}}} +{"ref":"1 Added Passive Skill is Sadist","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Садист"}],"trade":{"ids":{"explicit":["explicit.stat_3638731729"],"fractured":["fractured.stat_3638731729"]}}} +{"ref":"1 Added Passive Skill is Sage","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Мудрец"}],"trade":{"ids":{"explicit":["explicit.stat_478147593"],"fractured":["fractured.stat_478147593"]}}} +{"ref":"1 Added Passive Skill is Sap Psyche","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Истощение души"}],"trade":{"ids":{"explicit":["explicit.stat_715786975"],"fractured":["fractured.stat_715786975"]}}} +{"ref":"1 Added Passive Skill is Savage Response","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Жестокий ответ"}],"trade":{"ids":{"explicit":["explicit.stat_4222635921"],"fractured":["fractured.stat_4222635921"]}}} +{"ref":"1 Added Passive Skill is Savour the Moment","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Наслаждение моментом"}],"trade":{"ids":{"explicit":["explicit.stat_3539175001"],"fractured":["fractured.stat_3539175001"]}}} +{"ref":"1 Added Passive Skill is Scintillating Idea","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Искрометная идея"}],"trade":{"ids":{"explicit":["explicit.stat_2589589781"],"fractured":["fractured.stat_2589589781"]}}} +{"ref":"1 Added Passive Skill is Seal Mender","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Хранитель печати"}],"trade":{"ids":{"explicit":["explicit.stat_876846990"],"fractured":["fractured.stat_876846990"]}}} +{"ref":"1 Added Passive Skill is Second Skin","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Вторая кожа"}],"trade":{"ids":{"explicit":["explicit.stat_2773515950"],"fractured":["fractured.stat_2773515950"]}}} +{"ref":"1 Added Passive Skill is Seeker Runes","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Ищущие руны"}],"trade":{"ids":{"explicit":["explicit.stat_2261237498"]}}} +{"ref":"1 Added Passive Skill is Self-Control","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Самоконтроль"}],"trade":{"ids":{"explicit":["explicit.stat_3025453294"],"fractured":["fractured.stat_3025453294"]}}} +{"ref":"1 Added Passive Skill is Self-Fulfilling Prophecy","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Самоисполняющееся пророчество"}],"trade":{"ids":{"explicit":["explicit.stat_2644533453"]}}} +{"ref":"1 Added Passive Skill is Septic Spells","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Заражающие чары"}],"trade":{"ids":{"explicit":["explicit.stat_4290522695"],"fractured":["fractured.stat_4290522695"]}}} +{"ref":"1 Added Passive Skill is Set and Forget","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Поставил и забыл"}],"trade":{"ids":{"explicit":["explicit.stat_1101250813"],"fractured":["fractured.stat_1101250813"]}}} +{"ref":"1 Added Passive Skill is Shifting Shadow","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Изменчивая тень"}],"trade":{"ids":{"explicit":["explicit.stat_1476913894"],"fractured":["fractured.stat_1476913894"]}}} +{"ref":"1 Added Passive Skill is Shrieking Bolts","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Кричащие снаряды"}],"trade":{"ids":{"explicit":["explicit.stat_2783012144"],"fractured":["fractured.stat_2783012144"]}}} +{"ref":"1 Added Passive Skill is Skeletal Atrophy","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Костное истощение"}],"trade":{"ids":{"explicit":["explicit.stat_1290215329"],"fractured":["fractured.stat_1290215329"]}}} +{"ref":"1 Added Passive Skill is Skullbreaker","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Ломатель черепов"}],"trade":{"ids":{"explicit":["explicit.stat_315697256"],"fractured":["fractured.stat_315697256"]}}} +{"ref":"1 Added Passive Skill is Sleepless Sentries","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Неспящие часовые"}],"trade":{"ids":{"explicit":["explicit.stat_3993957711"],"fractured":["fractured.stat_3993957711"]}}} +{"ref":"1 Added Passive Skill is Smite the Weak","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Покарай слабых"}],"trade":{"ids":{"explicit":["explicit.stat_540300548"],"fractured":["fractured.stat_540300548"]}}} +{"ref":"1 Added Passive Skill is Smoking Remains","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Дымящиеся останки"}],"trade":{"ids":{"explicit":["explicit.stat_2322980282"],"fractured":["fractured.stat_2322980282"]}}} +{"ref":"1 Added Passive Skill is Snaring Spirits","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Опутывающие духи"}],"trade":{"ids":{"explicit":["explicit.stat_3319205340"]}}} +{"ref":"1 Added Passive Skill is Snowstorm","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Снежная буря"}],"trade":{"ids":{"explicit":["explicit.stat_1595367309"],"fractured":["fractured.stat_1595367309"]}}} +{"ref":"1 Added Passive Skill is Special Reserve","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Специальный запас"}],"trade":{"ids":{"explicit":["explicit.stat_4235300427"],"fractured":["fractured.stat_4235300427"]}}} +{"ref":"1 Added Passive Skill is Spiked Concoction","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Шипастое варево"}],"trade":{"ids":{"explicit":["explicit.stat_3372255769"],"fractured":["fractured.stat_3372255769"]}}} +{"ref":"1 Added Passive Skill is Spiteful Presence","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Злобное присутствие"}],"trade":{"ids":{"explicit":["explicit.stat_1134501245"],"fractured":["fractured.stat_1134501245"]}}} +{"ref":"1 Added Passive Skill is Spring Back","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Успешное возвращение"}],"trade":{"ids":{"explicit":["explicit.stat_3603695769"],"fractured":["fractured.stat_3603695769"]}}} +{"ref":"1 Added Passive Skill is Steady Torment","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Стойкие мучения"}],"trade":{"ids":{"explicit":["explicit.stat_3500334379"],"fractured":["fractured.stat_3500334379"]}}} +{"ref":"1 Added Passive Skill is Stoic Focus","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Стоическое средоточие"}],"trade":{"ids":{"explicit":["explicit.stat_1088949570"],"fractured":["fractured.stat_1088949570"]}}} +{"ref":"1 Added Passive Skill is Storm Drinker","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Пожинающий бурю"}],"trade":{"ids":{"explicit":["explicit.stat_2087561637"],"fractured":["fractured.stat_2087561637"]}}} +{"ref":"1 Added Passive Skill is Storm's Hand","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Длань шторма"}],"trade":{"ids":{"explicit":["explicit.stat_1122051203"],"fractured":["fractured.stat_1122051203"]}}} +{"ref":"1 Added Passive Skill is Stormrider","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Оседлавший грозу"}],"trade":{"ids":{"explicit":["explicit.stat_889728548"],"fractured":["fractured.stat_889728548"]}}} +{"ref":"1 Added Passive Skill is Streamlined","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Рационализм"}],"trade":{"ids":{"explicit":["explicit.stat_1397498432"],"fractured":["fractured.stat_1397498432"]}}} +{"ref":"1 Added Passive Skill is Strike Leader","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Предводитель бунта"}],"trade":{"ids":{"explicit":["explicit.stat_282062371"],"fractured":["fractured.stat_282062371"]}}} +{"ref":"1 Added Passive Skill is Stubborn Student","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Упёртый воспитанник"}],"trade":{"ids":{"explicit":["explicit.stat_2383914651"],"fractured":["fractured.stat_2383914651"]}}} +{"ref":"1 Added Passive Skill is Student of Decay","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Адепт разложения"}],"trade":{"ids":{"explicit":["explicit.stat_3202667190"],"fractured":["fractured.stat_3202667190"]}}} +{"ref":"1 Added Passive Skill is Sublime Form","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Возвышенная форма"}],"trade":{"ids":{"explicit":["explicit.stat_2251304016"],"fractured":["fractured.stat_2251304016"]}}} +{"ref":"1 Added Passive Skill is Sublime Sensation","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Возвышенные ощущения"}],"trade":{"ids":{"explicit":["explicit.stat_1364858171"],"fractured":["fractured.stat_1364858171"]}}} +{"ref":"1 Added Passive Skill is Surefooted Striker","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Нападающий"}],"trade":{"ids":{"explicit":["explicit.stat_3410752193"],"fractured":["fractured.stat_3410752193"]}}} +{"ref":"1 Added Passive Skill is Surging Vitality","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Бурная живучесть"}],"trade":{"ids":{"explicit":["explicit.stat_2410501331"],"fractured":["fractured.stat_2410501331"]}}} +{"ref":"1 Added Passive Skill is Surprise Sabotage","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Внезапная диверсия"}],"trade":{"ids":{"explicit":["explicit.stat_3051562738"],"fractured":["fractured.stat_3051562738"]}}} +{"ref":"1 Added Passive Skill is Tempered Arrowheads","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Закаленные наконечники"}],"trade":{"ids":{"explicit":["explicit.stat_2631806437"],"fractured":["fractured.stat_2631806437"]}}} +{"ref":"1 Added Passive Skill is Tempt the Storm","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Искушение бури"}],"trade":{"ids":{"explicit":["explicit.stat_348883745"],"fractured":["fractured.stat_348883745"]}}} +{"ref":"1 Added Passive Skill is Thaumophage","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Чаромант"}],"trade":{"ids":{"explicit":["explicit.stat_177215332"],"fractured":["fractured.stat_177215332"]}}} +{"ref":"1 Added Passive Skill is Thunderstruck","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Пораженный громом"}],"trade":{"ids":{"explicit":["explicit.stat_1741700339"],"fractured":["fractured.stat_1741700339"]}}} +{"ref":"1 Added Passive Skill is Titanic Swings","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Титанические взмахи"}],"trade":{"ids":{"explicit":["explicit.stat_2930275641"],"fractured":["fractured.stat_2930275641"]}}} +{"ref":"1 Added Passive Skill is Touch of Cruelty","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Толика жестокости"}],"trade":{"ids":{"explicit":["explicit.stat_2780712583"],"fractured":["fractured.stat_2780712583"]}}} +{"ref":"1 Added Passive Skill is Towering Threat","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Возрастающая угроза"}],"trade":{"ids":{"explicit":["explicit.stat_3536778624"],"fractured":["fractured.stat_3536778624"]}}} +{"ref":"1 Added Passive Skill is Uncompromising","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Бескомпромиссный"}],"trade":{"ids":{"explicit":["explicit.stat_382360671"],"fractured":["fractured.stat_382360671"]}}} +{"ref":"1 Added Passive Skill is Unholy Grace","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Нечестивая милость"}],"trade":{"ids":{"explicit":["explicit.stat_4186213466"],"fractured":["fractured.stat_4186213466"]}}} +{"ref":"1 Added Passive Skill is Unrestrained Focus","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Безграничная концентрация"}],"trade":{"ids":{"explicit":["explicit.stat_1570474940"]}}} +{"ref":"1 Added Passive Skill is Unspeakable Gifts","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Несказанные дары"}],"trade":{"ids":{"explicit":["explicit.stat_729163974"],"fractured":["fractured.stat_729163974"]}}} +{"ref":"1 Added Passive Skill is Untouchable","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Неприкасаемый"}],"trade":{"ids":{"explicit":["explicit.stat_2758966888"],"fractured":["fractured.stat_2758966888"]}}} +{"ref":"1 Added Passive Skill is Unwavering Focus","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Непоколебимое средоточие"}],"trade":{"ids":{"explicit":["explicit.stat_367638058"]}}} +{"ref":"1 Added Passive Skill is Unwaveringly Evil","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Непоколебимое зло"}],"trade":{"ids":{"explicit":["explicit.stat_2788982914"],"fractured":["fractured.stat_2788982914"]}}} +{"ref":"1 Added Passive Skill is Vast Power","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Огромная сила"}],"trade":{"ids":{"explicit":["explicit.stat_1996576560"],"fractured":["fractured.stat_1996576560"]}}} +{"ref":"1 Added Passive Skill is Veteran Defender","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Бывалый защитник"}],"trade":{"ids":{"explicit":["explicit.stat_664010431"],"fractured":["fractured.stat_664010431"]}}} +{"ref":"1 Added Passive Skill is Vicious Bite","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Яростный укус"}],"trade":{"ids":{"explicit":["explicit.stat_882876854"],"fractured":["fractured.stat_882876854"]}}} +{"ref":"1 Added Passive Skill is Vicious Guard","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Жестокий охранник"}],"trade":{"ids":{"explicit":["explicit.stat_4054656914"],"fractured":["fractured.stat_4054656914"]}}} +{"ref":"1 Added Passive Skill is Vicious Skewering","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Яростное пронзание"}],"trade":{"ids":{"explicit":["explicit.stat_567971948"],"fractured":["fractured.stat_567971948"]}}} +{"ref":"1 Added Passive Skill is Victim Maker","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Жертводел"}],"trade":{"ids":{"explicit":["explicit.stat_1936135020"],"fractured":["fractured.stat_1936135020"]}}} +{"ref":"1 Added Passive Skill is Vile Reinvigoration","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Мерзкое оживление"}],"trade":{"ids":{"explicit":["explicit.stat_647201233"],"fractured":["fractured.stat_647201233"]}}} +{"ref":"1 Added Passive Skill is Vital Focus","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Сосредоточенное восстановление"}],"trade":{"ids":{"explicit":["explicit.stat_2134141047"]}}} +{"ref":"1 Added Passive Skill is Vivid Hues","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Насыщенные оттенки"}],"trade":{"ids":{"explicit":["explicit.stat_3957006524"]}}} +{"ref":"1 Added Passive Skill is Volatile Presence","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Взрывное присутствие"}],"trade":{"ids":{"explicit":["explicit.stat_2350668735"],"fractured":["fractured.stat_2350668735"]}}} +{"ref":"1 Added Passive Skill is Wall of Muscle","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Стена мышц"}],"trade":{"ids":{"explicit":["explicit.stat_1363668533"],"fractured":["fractured.stat_1363668533"]}}} +{"ref":"1 Added Passive Skill is Warning Call","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Предупреждающий зов"}],"trade":{"ids":{"explicit":["explicit.stat_578355556"],"fractured":["fractured.stat_578355556"]}}} +{"ref":"1 Added Passive Skill is Wasting Affliction","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Истощающий недуг"}],"trade":{"ids":{"explicit":["explicit.stat_2066820199"],"fractured":["fractured.stat_2066820199"]}}} +{"ref":"1 Added Passive Skill is Weight Advantage","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Преимущество в весе"}],"trade":{"ids":{"explicit":["explicit.stat_2244243943"],"fractured":["fractured.stat_2244243943"]}}} +{"ref":"1 Added Passive Skill is Wicked Pall","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Злобная пелена"}],"trade":{"ids":{"explicit":["explicit.stat_1616734644"],"fractured":["fractured.stat_1616734644"]}}} +{"ref":"1 Added Passive Skill is Widespread Destruction","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Всеобъемлющее разрушение"}],"trade":{"ids":{"explicit":["explicit.stat_1678643716"],"fractured":["fractured.stat_1678643716"]}}} +{"ref":"1 Added Passive Skill is Will Shaper","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Ваятель воли"}],"trade":{"ids":{"explicit":["explicit.stat_1162352537"],"fractured":["fractured.stat_1162352537"]}}} +{"ref":"1 Added Passive Skill is Wind-up","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Разогрев"}],"trade":{"ids":{"explicit":["explicit.stat_1938661964"],"fractured":["fractured.stat_1938661964"]}}} +{"ref":"1 Added Passive Skill is Winter Prowler","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Зимний скиталец"}],"trade":{"ids":{"explicit":["explicit.stat_755881431"],"fractured":["fractured.stat_755881431"]}}} +{"ref":"1 Added Passive Skill is Wizardry","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Волшебство"}],"trade":{"ids":{"explicit":["explicit.stat_3078065247"],"fractured":["fractured.stat_3078065247"]}}} +{"ref":"1 Added Passive Skill is Wound Aggravation","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Усугубление ран"}],"trade":{"ids":{"explicit":["explicit.stat_69078820"],"fractured":["fractured.stat_69078820"]}}} +{"ref":"1 Added Passive Skill is Wrapped in Flame","better":1,"matchers":[{"string":"1 добавленное пассивное умение - Окутанный пламенем"}],"trade":{"ids":{"explicit":["explicit.stat_241783558"],"fractured":["fractured.stat_241783558"]}}} +{"ref":"1% increased Armour per # Strength when in Off Hand","better":1,"matchers":[{"string":"1% повышение брони за # силы, если в левой руке"}],"trade":{"ids":{"explicit":["explicit.stat_2192181096"]}}} +{"ref":"1% increased Attack Damage per 200 of the lowest of Armour and Evasion Rating","better":1,"matchers":[{"string":"1% увеличение урона от атак за каждые 200 низшего показателя брони или уклонения"}],"trade":{"ids":{"explicit":["explicit.stat_1358422215"]}}} +{"ref":"1% increased Claw Physical Damage per # Dexterity Allocated in Radius","better":1,"matchers":[{"string":"1% увеличение физического урона когтями за # ловкости в радиусе"}],"trade":{"ids":{"explicit":["explicit.stat_1619923327"]}}} +{"ref":"1% increased Damage per # Strength when in Main Hand","better":1,"matchers":[{"string":"1% увеличение урона за # силы, если в правой руке"}],"trade":{"ids":{"explicit":["explicit.stat_679194784"],"fractured":["fractured.stat_679194784"]}}} +{"ref":"1% increased Evasion Rating per # Dexterity Allocated in Radius","better":1,"matchers":[{"string":"1% увеличение уклонения за # ловкости в радиусе"}],"trade":{"ids":{"explicit":["explicit.stat_4113852051"]}}} +{"ref":"1% increased Melee Physical Damage with Unarmed Attacks per # Dexterity Allocated in Radius","better":1,"matchers":[{"string":"1% увеличение физического урона в ближнем бою без оружия за # ловкости в радиусе"},{"string":"1% уменьшение физического в ближнем бою без оружия за # ловкости в радиусе","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_915233352"]}}} +{"ref":"1% increased Movement Speed per # Evasion Rating, up to 75%","better":1,"matchers":[{"string":"1% повышение скорости передвижения за каждые # уклонения, вплоть до 75%"}],"trade":{"ids":{"explicit":["explicit.stat_2591020064"]}}} +{"ref":"1% increased Rarity of Items found per # Rampage Kills","better":1,"matchers":[{"string":"1% повышение редкости найденных предметов за каждые # убийств во время Буйства"}],"trade":{"ids":{"explicit":["explicit.stat_4260403588"],"fractured":["fractured.stat_4260403588"]}}} +{"ref":"1% less Damage Taken per # Dexterity","better":1,"matchers":[{"string":"На 1% меньше получаемого урона за каждые # ловкости"}],"trade":{"ids":{"implicit":["implicit.stat_824762042"]}}} +{"ref":"1% less Damage Taken per # Intelligence","better":1,"matchers":[{"string":"На 1% меньше получаемого урона за каждые # интеллекта"}],"trade":{"ids":{"implicit":["implicit.stat_2874488491"]}}} +{"ref":"1% less Damage Taken per # Strength","better":1,"matchers":[{"string":"На 1% меньше получаемого урона за каждые # силы"}],"trade":{"ids":{"implicit":["implicit.stat_1871491972"]}}} +{"ref":"35% chance to avoid being Stunned for each Herald Buff affecting you","better":1,"matchers":[{"string":"35% шанс избежать оглушения за каждый действующий на вас положительный эффект Вестника"}],"trade":{"ids":{"explicit":["explicit.stat_1493090598"]}}} +{"ref":"Acrobatics","better":1,"matchers":[{"string":"Акробатика"}],"trade":{"ids":{"explicit":["explicit.stat_383557755"],"fractured":["fractured.stat_383557755"],"scourge":["scourge.stat_383557755"]}}} +{"ref":"Action Speed cannot be modified to below #% of base value","better":1,"matchers":[{"string":"Скорость действий не может быть уменьшена ниже базового значения в #%"}],"trade":{"ids":{"scourge":["scourge.stat_770490590"]}}} +{"ref":"Action Speed cannot be modified to below Base Value","better":1,"matchers":[{"string":"Скорость действий не может быть уменьшена ниже базового значения"}],"trade":{"ids":{"explicit":["explicit.stat_628716294"]}}} +{"ref":"Action Speed cannot be modified to below Base Value if you've cast Temporal Chains in the past 10 seconds","better":1,"matchers":[{"string":"Скорость действий не может быть ниже базового значения, если вы сотворяли Путы времени за последние 10 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_3616500790"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Area of Effect","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: #% увеличение области действия"}],"trade":{"ids":{"explicit":["explicit.stat_713280739"],"fractured":["fractured.stat_713280739"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Area of Effect of Aura Skills","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: #% увеличение области действия умений аур"}],"trade":{"ids":{"explicit":["explicit.stat_2642917409"],"fractured":["fractured.stat_2642917409"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Area of Effect of Hex Skills","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: #% увеличение области действия умений порчи"}],"trade":{"ids":{"explicit":["explicit.stat_2138819920"],"fractured":["fractured.stat_2138819920"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed while affected by a Herald","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: #% повышение скорости атаки и сотворения чар под действием Вестника"}],"trade":{"ids":{"explicit":["explicit.stat_3262895685"],"fractured":["fractured.stat_3262895685"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Chaos Skills","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: #% повышение скорости атаки и сотворения чар умениями хаоса"}],"trade":{"ids":{"explicit":["explicit.stat_3692167527"],"fractured":["fractured.stat_3692167527"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Cold Skills","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: #% повышение скорости атаки и сотворения чар умениями холода"}],"trade":{"ids":{"explicit":["explicit.stat_2054530657"],"fractured":["fractured.stat_2054530657"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Elemental Skills","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: #% повышение скорости атаки и сотворения чар умениями стихий"}],"trade":{"ids":{"explicit":["explicit.stat_2699118751"],"fractured":["fractured.stat_2699118751"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Fire Skills","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: #% повышение скорости атаки и сотворения чар умениями огня"}],"trade":{"ids":{"explicit":["explicit.stat_1849042097"],"fractured":["fractured.stat_1849042097"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Lightning Skills","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: #% повышение скорости атаки и сотворения чар умениями молнии"}],"trade":{"ids":{"explicit":["explicit.stat_201731102"],"fractured":["fractured.stat_201731102"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Physical Skills","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: #% повышение скорости атаки и сотворения чар физическими умениями"}],"trade":{"ids":{"explicit":["explicit.stat_1903097619"],"fractured":["fractured.stat_1903097619"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Attack Speed","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: #% повышение скорости атаки"}],"trade":{"ids":{"explicit":["explicit.stat_1411310186"],"fractured":["fractured.stat_1411310186"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Brand Attachment range","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: #% увеличение дальности прикрепления клейма"}],"trade":{"ids":{"explicit":["explicit.stat_2265469693"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Cast Speed","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: #% повышение скорости сотворения чар"}],"trade":{"ids":{"explicit":["explicit.stat_1195353227"],"fractured":["fractured.stat_1195353227"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Damage","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: #% увеличение урона"}],"trade":{"ids":{"explicit":["explicit.stat_1719521705"],"fractured":["fractured.stat_1719521705"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Damage over Time","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: #% увеличение постепенного урона"}],"trade":{"ids":{"explicit":["explicit.stat_2401834120"],"fractured":["fractured.stat_2401834120"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Duration of Elemental Ailments on Enemies","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: #% увеличение длительности стихийных состояний на врагах"}],"trade":{"ids":{"explicit":["explicit.stat_3338465330"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Flask Charges gained","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: #% увеличение получаемого количества зарядов флакона"}],"trade":{"ids":{"explicit":["explicit.stat_3187805501"],"fractured":["fractured.stat_3187805501"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Mana Regeneration Rate","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: #% повышение скорости регенерации маны"}],"trade":{"ids":{"explicit":["explicit.stat_2474836297"],"fractured":["fractured.stat_2474836297"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Projectile Speed","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: #% повышение скорости снарядов"}],"trade":{"ids":{"explicit":["explicit.stat_679080252"],"fractured":["fractured.stat_679080252"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Totem Placement speed","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: #% повышение скорости установки тотемов"}],"trade":{"ids":{"explicit":["explicit.stat_1588674629"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Trap and Mine Throwing Speed","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: #% повышение скорости броска ловушки и мины"}],"trade":{"ids":{"explicit":["explicit.stat_2135246244"],"fractured":["fractured.stat_2135246244"]}}} +{"ref":"Added Small Passive Skills also grant: #% increased Warcry Duration","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: #% увеличение длительности боевых кличей"}],"trade":{"ids":{"explicit":["explicit.stat_2596487673"]}}} +{"ref":"Added Small Passive Skills also grant: +# to All Attributes","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: # ко всем характеристикам"}],"trade":{"ids":{"explicit":["explicit.stat_4036575250"],"fractured":["fractured.stat_4036575250"]}}} +{"ref":"Added Small Passive Skills also grant: +# to Armour","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: # к броне"}],"trade":{"ids":{"explicit":["explicit.stat_2554466725"],"fractured":["fractured.stat_2554466725"]}}} +{"ref":"Added Small Passive Skills also grant: +# to Dexterity","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: # к ловкости"}],"trade":{"ids":{"explicit":["explicit.stat_2090413987"],"fractured":["fractured.stat_2090413987"]}}} +{"ref":"Added Small Passive Skills also grant: +# to Evasion","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: # к уклонению"}],"trade":{"ids":{"explicit":["explicit.stat_4100161067"],"fractured":["fractured.stat_4100161067"]}}} +{"ref":"Added Small Passive Skills also grant: +# to Intelligence","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: # к интеллекту"}],"trade":{"ids":{"explicit":["explicit.stat_724930776"],"fractured":["fractured.stat_724930776"]}}} +{"ref":"Added Small Passive Skills also grant: +# to Maximum Energy Shield","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: # к максимуму энергетического щита"}],"trade":{"ids":{"explicit":["explicit.stat_2643685329"],"fractured":["fractured.stat_2643685329"]}}} +{"ref":"Added Small Passive Skills also grant: +# to Maximum Life","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: # к максимуму здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_3819827377"],"fractured":["fractured.stat_3819827377"]}}} +{"ref":"Added Small Passive Skills also grant: +# to Maximum Mana","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: # к максимуму маны"}],"trade":{"ids":{"explicit":["explicit.stat_3994193163"],"fractured":["fractured.stat_3994193163"]}}} +{"ref":"Added Small Passive Skills also grant: +# to Strength","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: # к силе"}],"trade":{"ids":{"explicit":["explicit.stat_3258414199"],"fractured":["fractured.stat_3258414199"]}}} +{"ref":"Added Small Passive Skills also grant: +#% to all Elemental Resistances","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: #% к сопротивлению стихиям"}],"trade":{"ids":{"explicit":["explicit.stat_2669029667"],"fractured":["fractured.stat_2669029667"]}}} +{"ref":"Added Small Passive Skills also grant: +#% to Chaos Resistance","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: #% к сопротивлению хаосу"}],"trade":{"ids":{"explicit":["explicit.stat_1811604576"],"fractured":["fractured.stat_1811604576"]}}} +{"ref":"Added Small Passive Skills also grant: +#% to Cold Resistance","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: #% к сопротивлению холоду"}],"trade":{"ids":{"explicit":["explicit.stat_2709692542"],"fractured":["fractured.stat_2709692542"]}}} +{"ref":"Added Small Passive Skills also grant: +#% to Critical Strike Multiplier","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: #% к множителю критического удара"}],"trade":{"ids":{"explicit":["explicit.stat_1926135629"],"fractured":["fractured.stat_1926135629"]}}} +{"ref":"Added Small Passive Skills also grant: +#% to Fire Resistance","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: #% к сопротивлению огню"}],"trade":{"ids":{"explicit":["explicit.stat_1790411851"],"fractured":["fractured.stat_1790411851"]}}} +{"ref":"Added Small Passive Skills also grant: +#% to Lightning Resistance","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: #% к сопротивлению молнии"}],"trade":{"ids":{"explicit":["explicit.stat_2250780084"],"fractured":["fractured.stat_2250780084"]}}} +{"ref":"Added Small Passive Skills also grant: Channelling Skills have #% increased Attack and Cast Speed","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: умения поддержания имеют #% повышение скорости атаки и сотворения чар"}],"trade":{"ids":{"explicit":["explicit.stat_3799759054"]}}} +{"ref":"Added Small Passive Skills also grant: Minions have #% increased Attack and Cast Speed","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: приспешники имеют #% повышение скорости атаки и сотворения чар"}],"trade":{"ids":{"explicit":["explicit.stat_2310019673"],"fractured":["fractured.stat_2310019673"]}}} +{"ref":"Added Small Passive Skills also grant: Minions have #% increased Attack and Cast Speed while you are affected by a Herald","better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: приспешники имеют #% повышение скорости атаки и сотворения чар, пока вы находитесь под действием Вестника"}],"trade":{"ids":{"explicit":["explicit.stat_1948127742"],"fractured":["fractured.stat_1948127742"]}}} +{"ref":"Added Small Passive Skills also grant: Minions Regenerate #% of Life per Second","dp":true,"better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: приспешники регенерируют #% здоровья в секунду"}],"trade":{"ids":{"explicit":["explicit.stat_542238572"],"fractured":["fractured.stat_542238572"]}}} +{"ref":"Added Small Passive Skills also grant: Regenerate #% of Life per Second","dp":true,"better":1,"matchers":[{"string":"Добавленные малые пассивные умения также даруют: регенерация #% здоровья в секунду"}],"trade":{"ids":{"explicit":["explicit.stat_3721672021"],"fractured":["fractured.stat_3721672021"]}}} +{"ref":"Added Small Passive Skills grant Nothing","better":1,"matchers":[{"string":"Добавленные малые пассивные умения ничего не дают"}],"trade":{"ids":{"explicit":["explicit.stat_2557943734"]}}} +{"ref":"Added Small Passive Skills grant: #","better":0,"matchers":[{"string":"Добавленные малые пассивные умения даруют: Атаки топорами наносят увеличенный на 12% урон от ударов и состояний\nДобавленные малые пассивные умения даруют: Атаки мечами наносят увеличенный на 12% урон от ударов и состояний","value":1},{"string":"Добавленные малые пассивные умения даруют: 10% увеличение урона от чар","value":10},{"string":"Добавленные малые пассивные умения даруют: 10% увеличение урона от стихий","value":11},{"string":"Добавленные малые пассивные умения даруют: 12% увеличение физического урона","value":12},{"string":"Добавленные малые пассивные умения даруют: 12% увеличение урона от огня","value":13},{"string":"Добавленные малые пассивные умения даруют: 12% увеличение урона от молнии","value":14},{"string":"Добавленные малые пассивные умения даруют: 12% увеличение урона от холода","value":15},{"string":"Добавленные малые пассивные умения даруют: 12% увеличение урона хаосом","value":16},{"string":"Добавленные малые пассивные умения даруют: Приспешники имеют 10% увеличение урона","value":17},{"string":"Добавленные малые пассивные умения даруют: 12% увеличение урона от горения","value":18},{"string":"Добавленные малые пассивные умения даруют: 12% увеличение постепенного урона хаосом","value":19},{"string":"Добавленные малые пассивные умения даруют: Атаки посохами наносят увеличенный на 12% урон от ударов и состояний\nДобавленные малые пассивные умения даруют: Атаки булавами или скипетрами наносят увеличенный на 12% урон от ударов и состояний","value":2},{"string":"Добавленные малые пассивные умения даруют: 12% увеличение постепенного физического урона","value":20},{"string":"Добавленные малые пассивные умения даруют: 12% увеличение постепенного урона от холода","value":21},{"string":"Добавленные малые пассивные умения даруют: 10% увеличение постепенного урона","value":22},{"string":"Добавленные малые пассивные умения даруют: 10% усиление эффекта не наносящих урон состояний","value":23},{"string":"Добавленные малые пассивные умения даруют: 3% усиление эффекта аур не-проклятий от ваших умений","value":24},{"string":"Добавленные малые пассивные умения даруют: 10% увеличение урона под действием Вестника","value":26},{"string":"Добавленные малые пассивные умения даруют: Приспешники наносят увеличенный на 10% урон, если вы находитесь под действием Вестника","value":27},{"string":"Добавленные малые пассивные умения даруют: Улучшенные атаки наносят увеличенный на 20% урон","value":28},{"string":"Добавленные малые пассивные умения даруют: 15% повышение шанса критического удара","value":29},{"string":"Добавленные малые пассивные умения даруют: Атаки когтями наносят увеличенный на 12% урон от ударов и состояний\nДобавленные малые пассивные умения даруют: Атаки кинжалами наносят увеличенный на 12% урон от ударов и состояний","value":3},{"string":"Добавленные малые пассивные умения даруют: Приспешники имеют 12% увеличение максимума здоровья","value":30},{"string":"Добавленные малые пассивные умения даруют: 10% увеличение урона по области","value":31},{"string":"Добавленные малые пассивные умения даруют: 10% увеличение урона снарядов","value":32},{"string":"Добавленные малые пассивные умения даруют: 12% увеличение урона от ловушек\nДобавленные малые пассивные умения даруют: 12% увеличение урона от мин","value":33},{"string":"Добавленные малые пассивные умения даруют: 12% увеличение урона тотемов","value":34},{"string":"Добавленные малые пассивные умения даруют: 12% увеличение урона клеймами","value":35},{"string":"Добавленные малые пассивные умения даруют: 12% увеличение урона поддерживаемыми умениями","value":36},{"string":"Добавленные малые пассивные умения даруют: 6% увеличение длительности эффекта флакона","value":37},{"string":"Добавленные малые пассивные умения даруют: 10% увеличение восстановления здоровья от флаконов\nДобавленные малые пассивные умения даруют: 10% увеличение восстановления маны от флаконов","value":38},{"string":"Добавленные малые пассивные умения даруют: 4% увеличение максимума здоровья","value":39},{"string":"Добавленные малые пассивные умения даруют: 12% увеличение урона луками\nДобавленные малые пассивные умения даруют: 12% увеличение постепенного урона от умений лука","value":4},{"string":"Добавленные малые пассивные умения даруют: 6% увеличение максимума энергетического щита","value":40},{"string":"Добавленные малые пассивные умения даруют: 6% увеличение максимума маны","value":41},{"string":"Добавленные малые пассивные умения даруют: 15% повышение брони","value":42},{"string":"Добавленные малые пассивные умения даруют: 15% увеличение уклонения","value":43},{"string":"Добавленные малые пассивные умения даруют: +2% шанс блокировать урон от атак","value":44},{"string":"Добавленные малые пассивные умения даруют: 2% шанс блокировать урон от чар","value":45},{"string":"Добавленные малые пассивные умения даруют: +15% к сопротивлению огню","value":46},{"string":"Добавленные малые пассивные умения даруют: +15% к сопротивлению холоду","value":47},{"string":"Добавленные малые пассивные умения даруют: +15% к сопротивлению молнии","value":48},{"string":"Добавленные малые пассивные умения даруют: +12% к сопротивлению хаосу","value":49},{"string":"Добавленные малые пассивные умения даруют: Атаки жезлами наносят увеличенный на 12% урон от ударов и состояний","value":5},{"string":"Добавленные малые пассивные умения даруют: +4% шанс подавить урон от чар","value":50},{"string":"Добавленные малые пассивные умения даруют: +10 к силе","value":51},{"string":"Добавленные малые пассивные умения даруют: +10 к ловкости","value":52},{"string":"Добавленные малые пассивные умения даруют: +10 к интеллекту","value":53},{"string":"Добавленные малые пассивные умения даруют: 6% увеличение эффективности удержания маны умениями","value":54},{"string":"Добавленные малые пассивные умения даруют: 2% усиление эффекта ваших проклятий","value":55},{"string":"Добавленные малые пассивные умения даруют: 12% увеличение урона двуручным оружием","value":6},{"string":"Добавленные малые пассивные умения даруют: 12% увеличение урона от атак с парным оружием в руках","value":7},{"string":"Добавленные малые пассивные умения даруют: 12% увеличение урона от атак со щитом в руках","value":8},{"string":"Добавленные малые пассивные умения даруют: 10% увеличение урона от атак","value":9}],"trade":{"ids":{"enchant":["enchant.stat_3948993189"]},"option":true}} +{"ref":"Added Small Passive Skills have #% increased Effect","better":1,"matchers":[{"string":"Добавленные малые пассивные умения имеют #% усиление эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_2618549697"],"fractured":["fractured.stat_2618549697"]}}} +{"ref":"Adds # Jewel Socket Passive Skills","better":1,"matchers":[{"string":"Добавляет # гнезда для самоцветов в качестве пассивных умений"},{"string":"Добавляет 1 гнездо для самоцветов в качестве пассивного умения","value":1}],"trade":{"ids":{"explicit":["explicit.stat_247746531"]}}} +{"ref":"Adds # minimum Cold Damage to Spells per Power Charge","better":1,"matchers":[{"string":"Добавляет # к минимальному урону от холода к чарам за заряд энергии"},{"string":"Добавляет # к максимальному урону от холода к чарам за заряд энергии"},{"string":"Добавляет от # до # урона от холода к чарам за заряд энергии"}],"trade":{"ids":{"explicit":["explicit.stat_3408048164"],"fractured":["fractured.stat_3408048164"]}}} +{"ref":"Adds # Passive Skills","better":-1,"matchers":[{"string":"Добавляет пассивных умений: #"},{"string":"Добавляет пассивных умений: 1","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3086156145"],"enchant":["enchant.stat_3086156145"]}}} +{"ref":"Adds # Small Passive Skills which grant nothing","better":-1,"matchers":[{"string":"Добавляет малых пассивных умений, которые ничего не дают: #"},{"string":"Добавляет 1 малое пассивное умение, которое ничего не дает","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1085446536"]}}} +{"ref":"Adds # to # Chaos Damage","better":1,"matchers":[{"string":"Добавляет от # до # урона хаосом"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_chaos_damage"],"explicit":["explicit.stat_2223678961","explicit.stat_3531280422"],"implicit":["implicit.stat_2223678961","implicit.stat_3531280422"],"fractured":["fractured.stat_2223678961"],"enchant":["enchant.stat_2223678961"],"scourge":["scourge.stat_2223678961"]}}} +{"ref":"Adds # to # Chaos Damage for each Curse on the Enemy","better":1,"matchers":[{"string":"Добавляет от # до # урона хаосом за каждое проклятие на враге"}],"trade":{"ids":{"explicit":["explicit.stat_4294344579"]}}} +{"ref":"Adds # to # Chaos Damage for each Spider's Web on the Enemy","better":1,"matchers":[{"string":"Добавляет от # до # урона хаосом за каждую Паучью паутину на враге"}],"trade":{"ids":{"explicit":["explicit.stat_982177653"]}}} +{"ref":"Adds # to # Chaos Damage if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"Добавляет от # до # урона хаосом, если вы недавно наносили критический удар"}],"trade":{"ids":{"explicit":["explicit.stat_2523334466"],"fractured":["fractured.stat_2523334466"],"crafted":["crafted.stat_2523334466"]}}} +{"ref":"Adds # to # Chaos Damage if you've taken a Critical Strike Recently","better":1,"matchers":[{"string":"Добавляет от # до # урона хаосом, если вы недавно получали критический удар"}],"trade":{"ids":{"enchant":["enchant.stat_391609701"]}}} +{"ref":"Adds # to # Chaos Damage in Off Hand","better":1,"matchers":[{"string":"Добавляет от # до # урона хаосом в левой руке"}],"trade":{"ids":{"explicit":["explicit.stat_3758293500"]}}} +{"ref":"Adds # to # Chaos Damage to Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона хаосом к атакам"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_chaos_damage_to_attacks"],"explicit":["explicit.stat_674553446"],"implicit":["implicit.stat_674553446"],"fractured":["fractured.stat_674553446"],"crafted":["crafted.stat_674553446"]}}} +{"ref":"Adds # to # Chaos Damage to Attacks per 80 Strength","better":1,"matchers":[{"string":"Добавляет от # до # урона хаосом к атакам за каждые 80 силы"}],"trade":{"ids":{"explicit":["explicit.stat_117885424"]}}} +{"ref":"Adds # to # Chaos Damage to Attacks while you have a Bestial Minion","better":1,"matchers":[{"string":"Добавляет от # до # урона хаосом к атакам, пока у вас есть приспешник-зверь"}],"trade":{"ids":{"explicit":["explicit.stat_2152491486"]}}} +{"ref":"Adds # to # Chaos Damage to Spells","better":1,"matchers":[{"string":"Добавляет от # до # урона хаосом к чарам"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_chaos_damage_to_spells"],"explicit":["explicit.stat_2300399854"],"implicit":["implicit.stat_2300399854"],"fractured":["fractured.stat_2300399854"]}}} +{"ref":"Adds # to # Chaos Damage to Spells and Attacks during any Flask Effect","better":1,"matchers":[{"string":"Добавляет от # до # урона хаосом к чарам и атакам во время действия эффекта любого флакона"}],"trade":{"ids":{"explicit":["explicit.stat_3519268108"]}}} +{"ref":"Adds # to # Cold Damage","better":1,"matchers":[{"string":"Добавляет от # до # урона от холода"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_cold_damage"],"explicit":["explicit.stat_1037193709","explicit.stat_2387423236"],"implicit":["implicit.stat_1037193709","implicit.stat_2387423236"],"fractured":["fractured.stat_1037193709","fractured.stat_2387423236"],"enchant":["enchant.stat_1037193709"],"scourge":["scourge.stat_1037193709"],"crafted":["crafted.stat_1037193709","crafted.stat_2387423236"]}}} +{"ref":"Adds # to # Cold Damage against Chilled Enemies","better":1,"matchers":[{"string":"Добавляет # до # урона от холода по охлаждённым врагам"}],"trade":{"ids":{"explicit":["explicit.stat_3734640451"]}}} +{"ref":"Adds # to # Cold Damage against Chilled or Frozen Enemies","better":1,"matchers":[{"string":"Добавляет от # до # урона от холода по охлаждённым или замороженным врагам"}],"trade":{"ids":{"explicit":["explicit.stat_2233361223"],"fractured":["fractured.stat_2233361223"]}}} +{"ref":"Adds # to # Cold Damage if you've been Hit Recently","better":1,"matchers":[{"string":"Добавляет от # до # урона от холода, если вы недавно получали удар"}],"trade":{"ids":{"enchant":["enchant.stat_884399432"]}}} +{"ref":"Adds # to # Cold Damage if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"Добавляет от # до # урона от холода, если вы недавно наносили критический удар"}],"trade":{"ids":{"explicit":["explicit.stat_3370223014"],"fractured":["fractured.stat_3370223014"]}}} +{"ref":"Adds # to # Cold Damage in Off Hand","better":1,"matchers":[{"string":"Добавляет от # до # урона от холода в левой руке"}],"trade":{"ids":{"explicit":["explicit.stat_2109066258"]}}} +{"ref":"Adds # to # Cold Damage to Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона от холода к атакам"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_cold_damage_to_attacks"],"explicit":["explicit.stat_4067062424"],"implicit":["implicit.stat_4067062424"],"fractured":["fractured.stat_4067062424"],"crafted":["crafted.stat_4067062424"]}}} +{"ref":"Adds # to # Cold Damage to Attacks per 10 Dexterity","better":1,"matchers":[{"string":"Добавляет от # до # урона от холода к атакам за каждые 10 ловкости"}],"trade":{"ids":{"explicit":["explicit.stat_769783486"],"fractured":["fractured.stat_769783486"]}}} +{"ref":"Adds # to # Cold Damage to Attacks with this Weapon per 10 Dexterity","better":1,"matchers":[{"string":"Добавляет от # до # урона от холода к атакам этим оружием за каждые 10 ловкости"}],"trade":{"ids":{"explicit":["explicit.stat_149574107"],"implicit":["implicit.stat_149574107"],"fractured":["fractured.stat_149574107"]}}} +{"ref":"Adds # to # Cold Damage to Retaliation Skills","better":1,"matchers":[{"string":"Добавляет от # до # урона от холода умениям расплаты"}],"trade":{"ids":{"explicit":["explicit.stat_1109700751"]}}} +{"ref":"Adds # to # Cold Damage to Spells","better":1,"matchers":[{"string":"Добавляет от # до # урона от холода к чарам"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_cold_damage_to_spells"],"explicit":["explicit.stat_2469416729"],"implicit":["implicit.stat_2469416729"],"fractured":["fractured.stat_2469416729"],"scourge":["scourge.stat_2469416729"],"crafted":["crafted.stat_2469416729"]}}} +{"ref":"Adds # to # Cold Damage to Spells and Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона от холода к чарам и атакам"}],"trade":{"ids":{"explicit":["explicit.stat_1662717006"],"implicit":["implicit.stat_1662717006"]}}} +{"ref":"Adds # to # Cold Damage to Spells while no Life is Reserved","better":1,"matchers":[{"string":"Добавляет от # до # урона от холода к чарам, если не удержано здоровье"}],"trade":{"ids":{"explicit":["explicit.stat_897996059"]}}} +{"ref":"Adds # to # Cold Damage while affected by Hatred","better":1,"matchers":[{"string":"Под действием Холодной ненависти добавляет от # до # урона от холода"}],"trade":{"ids":{"explicit":["explicit.stat_2643562209"]}}} +{"ref":"Adds # to # Cold Damage while you have Avian's Might","better":1,"matchers":[{"string":"Добавляет от # до # урона от холода, пока на вас действует Птичья сила"}],"trade":{"ids":{"explicit":["explicit.stat_3485231932"]}}} +{"ref":"Adds # to # Damage","better":1,"matchers":[{"string":"Добавляет от # до # урона "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_damage"]}}} +{"ref":"Adds # to # Damage to Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона к атакам "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_damage_to_attacks"]}}} +{"ref":"Adds # to # Damage to Spells","better":1,"matchers":[{"string":"Добавляет от # до # урона к чарам "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_damage_to_spells"]}}} +{"ref":"Adds # to # Elemental Damage","better":1,"matchers":[{"string":"Добавляет от # до # урона от стихий "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_elemental_damage"]}}} +{"ref":"Adds # to # Elemental Damage to Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона от стихий к атакам "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_elemental_damage_to_attacks"]}}} +{"ref":"Adds # to # Elemental Damage to Spells","better":1,"matchers":[{"string":"Добавляет от # до # урона от стихий к чарам "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_elemental_damage_to_spells"]}}} +{"ref":"Adds # to # Fire Attack Damage per Buff on you","better":1,"matchers":[{"string":"Добавляет от # до # урона от огня к атакам за каждый положительный эффект на вас"}],"trade":{"ids":{"explicit":["explicit.stat_761505024"]}}} +{"ref":"Adds # to # Fire Damage","better":1,"matchers":[{"string":"Добавляет от # до # урона от огня"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_fire_damage"],"explicit":["explicit.stat_321077055","explicit.stat_709508406"],"implicit":["implicit.stat_321077055","implicit.stat_709508406"],"fractured":["fractured.stat_321077055","fractured.stat_709508406"],"enchant":["enchant.stat_709508406"],"scourge":["scourge.stat_709508406"],"crafted":["crafted.stat_321077055","crafted.stat_709508406"]}}} +{"ref":"Adds # to # Fire Damage against Ignited Enemies","better":1,"matchers":[{"string":"Добавляет от # до # урона от огня по подожжённым врагам"}],"trade":{"ids":{"explicit":["explicit.stat_794830148"],"fractured":["fractured.stat_794830148"]}}} +{"ref":"Adds # to # Fire Damage if you've Blocked Recently","better":1,"matchers":[{"string":"Добавляет от # до # урона от огня, если вы недавно блокировали удар"}],"trade":{"ids":{"explicit":["explicit.stat_3623716321"],"fractured":["fractured.stat_3623716321"]}}} +{"ref":"Adds # to # Fire Damage if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"Добавляет от # до # урона от огня, если вы недавно наносили критический удар"}],"trade":{"ids":{"explicit":["explicit.stat_3144358296"],"fractured":["fractured.stat_3144358296"]}}} +{"ref":"Adds # to # Fire Damage if you've Killed Recently","better":1,"matchers":[{"string":"Добавляет от # до # урона от огня, если вы недавно совершали убийство"}],"trade":{"ids":{"enchant":["enchant.stat_3077703716"]}}} +{"ref":"Adds # to # Fire Damage in Main Hand","better":1,"matchers":[{"string":"Добавляет от # до # урона от огня в правой руке"}],"trade":{"ids":{"explicit":["explicit.stat_169657426"]}}} +{"ref":"Adds # to # Fire Damage to Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона от огня к атакам"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_fire_damage_to_attacks"],"explicit":["explicit.stat_1573130764"],"implicit":["implicit.stat_1573130764"],"fractured":["fractured.stat_1573130764"],"crafted":["crafted.stat_1573130764"]}}} +{"ref":"Adds # to # Fire Damage to Attacks against Ignited Enemies","better":1,"matchers":[{"string":"Добавляет от # до # урона от огня к атакам по подожженным врагам"}],"trade":{"ids":{"explicit":["explicit.stat_627339348"]}}} +{"ref":"Adds # to # Fire Damage to Attacks per 10 Strength","better":1,"matchers":[{"string":"Добавляет от # до # урона от огня к атакам за каждые 10 силы"}],"trade":{"ids":{"explicit":["explicit.stat_68673913"],"fractured":["fractured.stat_68673913"]}}} +{"ref":"Adds # to # Fire Damage to Attacks with this Weapon per 10 Strength","better":1,"matchers":[{"string":"Добавляет от # до # урона от огня к атакам этим оружием за каждые 10 силы"}],"trade":{"ids":{"explicit":["explicit.stat_1060540099"],"implicit":["implicit.stat_1060540099"],"fractured":["fractured.stat_1060540099"]}}} +{"ref":"Adds # to # Fire Damage to Hits with this Weapon against Blinded Enemies","better":1,"matchers":[{"string":"Добавляет от # до # урона от огня к ударам этим оружием по ослепленным врагам"}],"trade":{"ids":{"explicit":["explicit.stat_3977907993"]}}} +{"ref":"Adds # to # Fire Damage to Spells","better":1,"matchers":[{"string":"Добавляет от # до # урона от огня к чарам"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_fire_damage_to_spells"],"explicit":["explicit.stat_1133016593"],"implicit":["implicit.stat_1133016593"],"fractured":["fractured.stat_1133016593"],"scourge":["scourge.stat_1133016593"],"crafted":["crafted.stat_1133016593"]}}} +{"ref":"Adds # to # Fire Damage to Spells and Attacks","better":1,"matchers":[{"string":"Добавляет # до # урона от огня к чарам и атакам"}],"trade":{"ids":{"explicit":["explicit.stat_3964634628"],"implicit":["implicit.stat_3964634628"],"fractured":["fractured.stat_3964634628"]}}} +{"ref":"Adds # to # Fire Damage to Spells while no Life is Reserved","better":1,"matchers":[{"string":"Добавляет от # до # урона от огня к чарам, если не удержано здоровье"}],"trade":{"ids":{"explicit":["explicit.stat_833719670"]}}} +{"ref":"Adds # to # Fire Spell Damage per Buff on you","better":1,"matchers":[{"string":"Добавляет от # до # урона от огня к чарам за каждый положительный эффект на вас"}],"trade":{"ids":{"explicit":["explicit.stat_3434279150"]}}} +{"ref":"Adds # to # Lightning Damage","better":1,"matchers":[{"string":"Добавляет от # до # урона от молнии"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_lightning_damage"],"explicit":["explicit.stat_1334060246","explicit.stat_3336890334"],"implicit":["implicit.stat_1334060246","implicit.stat_3336890334"],"fractured":["fractured.stat_1334060246","fractured.stat_3336890334"],"enchant":["enchant.stat_3336890334"],"scourge":["scourge.stat_3336890334"],"crafted":["crafted.stat_1334060246","crafted.stat_3336890334"]}}} +{"ref":"Adds # to # Lightning Damage against Shocked Enemies","better":1,"matchers":[{"string":"Добавляет от # до # урона от молнии по поражённым шоком врагам"}],"trade":{"ids":{"explicit":["explicit.stat_90012347"],"fractured":["fractured.stat_90012347"]}}} +{"ref":"Adds # to # Lightning Damage for each Shocked Enemy you've Killed Recently","better":1,"matchers":[{"string":"Добавляет # до # урона от молнии за каждого недавно убитого поражённого шоком врага"}],"trade":{"ids":{"explicit":["explicit.stat_4222857095"],"fractured":["fractured.stat_4222857095"]}}} +{"ref":"Adds # to # Lightning Damage if you haven't Killed Recently","better":1,"matchers":[{"string":"Добавляет от # до # урона от молнии, если вы недавно не совершали убийство"}],"trade":{"ids":{"enchant":["enchant.stat_1293597434"]}}} +{"ref":"Adds # to # Lightning Damage if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"Добавляет от # до # урона от молнии, если вы недавно наносили критический удар"}],"trade":{"ids":{"explicit":["explicit.stat_935623115"],"fractured":["fractured.stat_935623115"]}}} +{"ref":"Adds # to # Lightning Damage to Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона от молнии к атакам"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_lightning_damage_to_attacks"],"explicit":["explicit.stat_1754445556"],"implicit":["implicit.stat_1754445556"],"fractured":["fractured.stat_1754445556"],"crafted":["crafted.stat_1754445556"]}}} +{"ref":"Adds # to # Lightning Damage to Attacks during Effect","better":1,"matchers":[{"string":"Добавляет от # до # урона от молнии к атакам во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_4292531291"]}}} +{"ref":"Adds # to # Lightning Damage to Attacks per 10 Intelligence","better":1,"matchers":[{"string":"Добавляет от # до # урона от молнии к атакам за каждые 10 интеллекта"}],"trade":{"ids":{"explicit":["explicit.stat_3168149399"],"fractured":["fractured.stat_3168149399"]}}} +{"ref":"Adds # to # Lightning Damage to Attacks with this Weapon per 10 Dexterity","better":1,"matchers":[{"string":"Добавляет от # до # урона от молнии атакам этим оружием за каждые 10 ловкости"}],"trade":{"ids":{"explicit":["explicit.stat_817611267"]}}} +{"ref":"Adds # to # Lightning Damage to Attacks with this Weapon per 10 Intelligence","better":1,"matchers":[{"string":"Добавляет от # до # урона от молнии к атакам этим оружием за каждые 10 интеллекта"}],"trade":{"ids":{"explicit":["explicit.stat_3390848861"],"implicit":["implicit.stat_3390848861"],"fractured":["fractured.stat_3390848861"]}}} +{"ref":"Adds # to # Lightning Damage to Hits against Ignited Enemies","better":1,"matchers":[{"string":"Добавляет от # до # урона от молнии к ударам по подожжённым врагам"}],"trade":{"ids":{"explicit":["explicit.stat_2870108850"]}}} +{"ref":"Adds # to # Lightning Damage to Spells","better":1,"matchers":[{"string":"Добавляет от # до # урона от молнии к чарам"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_lightning_damage_to_spells"],"explicit":["explicit.stat_2831165374"],"implicit":["implicit.stat_2831165374"],"fractured":["fractured.stat_2831165374"],"scourge":["scourge.stat_2831165374"],"crafted":["crafted.stat_2831165374"]}}} +{"ref":"Adds # to # Lightning Damage to Spells and Attacks","better":1,"matchers":[{"string":"Добавляет от # до # урона от молнии к чарам и атакам"}],"trade":{"ids":{"explicit":["explicit.stat_2885144362"],"implicit":["implicit.stat_2885144362"]}}} +{"ref":"Adds # to # Lightning Damage to Spells during Effect","better":1,"matchers":[{"string":"Добавляет от # до # урона от молнии к чарам во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_4108305628"]}}} +{"ref":"Adds # to # Lightning Damage to Spells per Power Charge","better":1,"matchers":[{"string":"Добавляет от # до # урона от молнии к чарам за заряд энергии"}],"trade":{"ids":{"explicit":["explicit.stat_4085417083"]}}} +{"ref":"Adds # to # Lightning Damage to Spells while no Life is Reserved","better":1,"matchers":[{"string":"Добавляет от # до # урона от молнии к чарам, если не удержано здоровье"}],"trade":{"ids":{"explicit":["explicit.stat_985999215"]}}} +{"ref":"Adds # to # Lightning Damage to Spells while Unarmed","better":1,"matchers":[{"string":"Добавляет от # до # урона от молнии к чарам без оружия"}],"trade":{"ids":{"explicit":["explicit.stat_3597806437"]}}} +{"ref":"Adds # to # Lightning Damage to Unarmed Melee Hits","better":1,"matchers":[{"string":"Добавляет от # до # урона от молнии к ударам ближнего боя без оружия"}],"trade":{"ids":{"explicit":["explicit.stat_3835522656"]}}} +{"ref":"Adds # to # Lightning Damage while you have Avian's Might","better":1,"matchers":[{"string":"Добавляет от # до # урона от молнии, пока на вас действует Птичья сила"}],"trade":{"ids":{"explicit":["explicit.stat_855634301"]}}} +{"ref":"Adds # to # Physical Damage","better":1,"matchers":[{"string":"Добавляет от # до # физического урона"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_physical_damage"],"explicit":["explicit.stat_1940865751","explicit.stat_960081730"],"implicit":["implicit.stat_1940865751"],"fractured":["fractured.stat_1940865751","fractured.stat_960081730"],"scourge":["scourge.stat_1940865751"],"crafted":["crafted.stat_1940865751"]}}} +{"ref":"Adds # to # Physical Damage against Bleeding Enemies","better":1,"matchers":[{"string":"Добавляет от # до # физического урона по истекающим кровью врагам"}],"trade":{"ids":{"explicit":["explicit.stat_1244003614"]}}} +{"ref":"Adds # to # Physical Damage against Poisoned Enemies","better":1,"matchers":[{"string":"Добавляет от # до # физического урона по отравленным врагам"}],"trade":{"ids":{"explicit":["explicit.stat_424026624"]}}} +{"ref":"Adds # to # Physical Damage for each Impale on Enemy","better":1,"matchers":[{"string":"Добавляет от # до # физического урона за каждый Прокол на враге"}],"trade":{"ids":{"explicit":["explicit.stat_1455766505"]}}} +{"ref":"Adds # to # Physical Damage if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"Добавляет от # до # физического урона, если вы недавно наносили критический удар"}],"trade":{"ids":{"explicit":["explicit.stat_2723101291"],"fractured":["fractured.stat_2723101291"]}}} +{"ref":"Adds # to # Physical Damage per Endurance Charge","better":1,"matchers":[{"string":"Добавляет от # до # физического урона за заряд выносливости"}],"trade":{"ids":{"explicit":["explicit.stat_173438493"]}}} +{"ref":"Adds # to # Physical Damage to Attacks","better":1,"matchers":[{"string":"Добавляет от # до # физического урона к атакам"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_physical_damage_to_attacks"],"explicit":["explicit.stat_3032590688"],"implicit":["implicit.stat_3032590688"],"fractured":["fractured.stat_3032590688"],"crafted":["crafted.stat_3032590688"]}}} +{"ref":"Adds # to # Physical Damage to Attacks against Frozen Enemies","better":1,"matchers":[{"string":"Добавляет от # до # физического урона к атакам по замороженным врагам"}],"trade":{"ids":{"explicit":["explicit.stat_3856468419"]}}} +{"ref":"Adds # to # Physical Damage to Attacks and Spells per Siphoning Charge","better":1,"matchers":[{"string":"Добавляет от # до # физического урона к атакам и чарам за заряд переливания"}],"trade":{"ids":{"explicit":["explicit.stat_3368671817"]}}} +{"ref":"Adds # to # Physical Damage to Attacks per 25 Dexterity","better":1,"matchers":[{"string":"Добавляет от # до # физического урона к атакам за каждые 25 ловкости"}],"trade":{"ids":{"explicit":["explicit.stat_2066426995"]}}} +{"ref":"Adds # to # Physical Damage to Attacks per 25 Strength","better":1,"matchers":[{"string":"Добавляет от # до # физического урона к атакам за каждые 25 силы"}],"trade":{"ids":{"explicit":["explicit.stat_787185456"]}}} +{"ref":"Adds # to # Physical Damage to Attacks per Level","better":1,"matchers":[{"string":"Добавляет от # до # физического урона к атакам за уровень"}],"trade":{"ids":{"explicit":["explicit.stat_3821472155"]}}} +{"ref":"Adds # to # Physical Damage to Attacks while you have a Bestial Minion","better":1,"matchers":[{"string":"Добавляет от # до # физического урона к атакам, пока у вас есть приспешник-зверь"}],"trade":{"ids":{"explicit":["explicit.stat_242822230"]}}} +{"ref":"Adds # to # Physical Damage to Attacks with this Weapon per 3 Player Levels","better":1,"matchers":[{"string":"Добавляет от # до # физического урона к атакам этим оружием за каждые 3 уровня игрока"}],"trade":{"ids":{"explicit":["explicit.stat_1454603936"]}}} +{"ref":"Adds # to # Physical Damage to Spells","better":1,"matchers":[{"string":"Добавляет от # до # физического урона к чарам"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_adds_physical_damage_to_spells"],"explicit":["explicit.stat_2435536961"],"implicit":["implicit.stat_2435536961"],"fractured":["fractured.stat_2435536961"],"scourge":["scourge.stat_2435536961"]}}} +{"ref":"Adds 1 maximum Lightning Damage to Attacks per # Dexterity Allocated in Radius","better":1,"matchers":[{"string":"Добавляет 1 к максимуму урона от молнии атаками за # ловкости в радиусе"}],"trade":{"ids":{"explicit":["explicit.stat_778050954"]}}} +{"ref":"Adds 1 to Maximum Life per # Intelligence Allocated in Radius","better":1,"matchers":[{"string":"Добавляет 1 к максимуму здоровья за # интеллекта в радиусе"}],"trade":{"ids":{"explicit":["explicit.stat_2865989731"]}}} +{"ref":"Adds Disciple of Kitava","better":1,"matchers":[{"string":"Добавляет значимое умение Адепт Китавы"}],"trade":{"ids":{"explicit":["explicit.stat_3860869243"]}}} +{"ref":"Adds Hollow Palm Technique","better":1,"matchers":[{"string":"Добавляет ключевое умение Техника пустой длани"}],"trade":{"ids":{"explicit":["explicit.stat_1376530950"]}}} +{"ref":"Adds Kineticism","better":1,"matchers":[{"string":"Добавляет ключевое умение Кинетика"}],"trade":{"ids":{"explicit":["explicit.stat_1798719926"]}}} +{"ref":"Adds Knockback to Melee Attacks during Effect","better":1,"matchers":[{"string":"Добавляет отбрасывание к атакам ближнего боя во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_251342217"]}}} +{"ref":"Adds Lone Messenger","better":1,"matchers":[{"string":"Добавляет ключевое умение Одинокий посланник"}],"trade":{"ids":{"explicit":["explicit.stat_1505850286"]}}} +{"ref":"Adds Nature's Patience","better":1,"matchers":[{"string":"Добавляет ключевое умение Терпеливость природы"}],"trade":{"ids":{"explicit":["explicit.stat_1360925132"]}}} +{"ref":"Adds Secrets of Suffering","better":1,"matchers":[{"string":"Добавляет ключевое умение Секреты страданий"}],"trade":{"ids":{"explicit":["explicit.stat_56720831"]}}} +{"ref":"Adds Veteran's Awareness","better":1,"matchers":[{"string":"Добавляет ключевое умение Предчувствие ветерана"}],"trade":{"ids":{"explicit":["explicit.stat_1379205566"]}}} +{"ref":"Agony Crawler deals #% increased Damage","better":1,"matchers":[{"string":"Ползун агонии наносит увеличенный на #% урон"},{"string":"Ползун агонии наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_786460697"]}}} +{"ref":"Alert Level increases by #% per second","dp":true,"better":1,"fromHeistAreaMods":true,"matchers":[{"string":"Уровень угрозы каждую секунду увеличивается на #%"},{"string":"Уровень угрозы каждую секунду уменьшается на #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3138486617"],"fractured":["fractured.stat_3138486617"]}}} +{"ref":"All Attack Damage Chills when you Stun","better":1,"matchers":[{"string":"Урон от атак, оглушающий врагов, также охлаждает их"}],"trade":{"ids":{"explicit":["explicit.stat_2437193018"]}}} +{"ref":"All Damage from Hits with This Weapon can Poison","better":1,"matchers":[{"string":"Весь урон от ударов этим оружием может отравить"}],"trade":{"ids":{"implicit":["implicit.stat_264042990"]}}} +{"ref":"All Damage from Monsters' Hits can Poison","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Весь урон от ударов монстров может отравить"}],"trade":{"ids":{"explicit":["explicit.stat_3555807120"],"fractured":["fractured.stat_3555807120"]}}} +{"ref":"All Damage inflicts Poison against Enemies affected by at least # Grasping Vine","better":1,"matchers":[{"string":"Весь урон отравляет врагов с минимум # цепкими лианами"},{"string":"Весь урон отравляет врагов с минимум # цепкой лианой"}],"trade":{"ids":{"explicit":["explicit.stat_3190526553"]}}} +{"ref":"All Damage inflicts Poison while affected by Glorious Madness","better":1,"matchers":[{"string":"Под действием Великолепного безумия весь урон накладывает отравление"}],"trade":{"ids":{"explicit":["explicit.stat_3359218839"]}}} +{"ref":"All Damage Taken from Hits can Chill you","better":1,"matchers":[{"string":"Весь получаемый от ударов урон может наложить на вас охлаждение"}],"trade":{"ids":{"explicit":["explicit.stat_244239777"]}}} +{"ref":"All Damage Taken from Hits can Ignite you","better":1,"matchers":[{"string":"Весь получаемый урон от ударов может поджечь вас"}],"trade":{"ids":{"explicit":["explicit.stat_1405089557"]}}} +{"ref":"All Damage with Hits can Chill","better":1,"matchers":[{"string":"Весь урон от ударов может наложить охлаждение"}],"trade":{"ids":{"explicit":["explicit.stat_3833160777"]}}} +{"ref":"All Damage with Hits can Freeze","better":1,"matchers":[{"string":"Весь урон может заморозить"},{"string":"Весь урон может наложить заморозку"},{"string":"Весь урон от ударов может наложить заморозку"}],"trade":{"ids":{"explicit":["explicit.stat_4052117756"]}}} +{"ref":"All Damage with Hits can Ignite","better":1,"matchers":[{"string":"Весь урон может наложить поджог"},{"string":"Весь урон от ударов может наложить поджог"}],"trade":{"ids":{"explicit":["explicit.stat_1369840970"]}}} +{"ref":"All Elemental Damage Converted to Chaos Damage","better":1,"matchers":[{"string":"Весь урон от стихий становится уроном хаосом"}],"trade":{"ids":{"explicit":["explicit.stat_2423544033"]}}} +{"ref":"All Monster Damage can Ignite, Freeze and Shock","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Весь урон монстром может поджечь, заморозить и наложить шок"}],"trade":{"ids":{"explicit":["explicit.stat_2919181457"],"fractured":["fractured.stat_2919181457"]}}} +{"ref":"All Monster Damage from Hits always Ignites","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Весь урон от ударов монстров всегда поджигает"}],"trade":{"ids":{"explicit":["explicit.stat_816367946"],"fractured":["fractured.stat_816367946"]}}} +{"ref":"All Sockets are Blue","better":1,"matchers":[{"string":"Все гнезда синие"}],"trade":{"ids":{"enchant":["enchant.stat_2803653753"]}}} +{"ref":"All Sockets are Green","better":1,"matchers":[{"string":"Все гнезда зеленые"}],"trade":{"ids":{"enchant":["enchant.stat_2849380136"]}}} +{"ref":"All Sockets are Red","better":1,"matchers":[{"string":"Все гнезда красные"}],"trade":{"ids":{"enchant":["enchant.stat_1918718830"]}}} +{"ref":"All Sockets are White","better":1,"matchers":[{"string":"Все гнёзда белые"}],"trade":{"ids":{"explicit":["explicit.stat_211836731"]}}} +{"ref":"All Sockets Linked","better":1,"matchers":[{"string":"Все гнёзда связаны"}],"trade":{"ids":{"enchant":["enchant.stat_2740018301"]}}} +{"ref":"All Towers in range of your Empowering Towers have #% chance to deal Double Damage","better":1,"anointments":[{"roll":50,"oils":"13,13"}],"matchers":[{"string":"Все башни в зоне действия ваших усиливающих башен имеют #% шанс нанести двойной урон"},{"string":"Все башни в зоне действия ваших усиливающих башен наносят двойной урон","value":100}],"trade":{"ids":{"enchant":["enchant.stat_1959522666"]}}} +{"ref":"Allies' Aura Buffs do not affect you","better":1,"matchers":[{"string":"Положительные эффекты аур союзников не действуют на вас"}],"trade":{"ids":{"explicit":["explicit.stat_1489905076"]}}} +{"ref":"Allocated Small Passive Skills in Radius grant nothing","better":1,"matchers":[{"string":"Выбранные малые пассивные умения в радиусе ничего не дают"}],"trade":{"ids":{"explicit":["explicit.stat_325204898"]}}} +{"ref":"Allocates #","better":0,"matchers":[{"string":"Активирует Палач","value":10016,"oils":"3,4,6"},{"string":"Активирует Сила воли","value":1006,"oils":"2,2,11"},{"string":"Активирует Совершенство изобилия","value":10115,"oils":"1,6,6"},{"string":"Активирует Устойчивость","value":10511,"oils":"9,9,11"},{"string":"Активирует Шипастое укрытие","value":10542,"oils":"1,2,5"},{"string":"Активирует Мечтатель","value":10835,"oils":"2,5,6"},{"string":"Активирует Владычество колдуна","value":11420,"oils":"1,9,10"},{"string":"Активирует Дыхание грозы","value":11645,"oils":"6,8,13"},{"string":"Активирует Выносливость","value":11730,"oils":"1,10,13"},{"string":"Активирует Окропленная плоть","value":11820,"oils":"7,13,13"},{"string":"Активирует Дыхание пламени","value":11924,"oils":"4,6,13"},{"string":"Активирует Кровожадный клинок","value":12033,"oils":"3,4,7"},{"string":"Активирует Влияние","value":12143,"oils":"4,5,13"},{"string":"Активирует Путь воина","value":12702,"oils":"3,3,3"},{"string":"Активирует Мастер на все руки","value":12795,"oils":"4,4,11"},{"string":"Активирует Боевое безумие","value":12809,"oils":"1,2,11"},{"string":"Активирует Возмездие","value":12878,"oils":"4,9,11"},{"string":"Активирует Божественное правосудие","value":13164,"oils":"2,5,10"},{"string":"Активирует Кровь голема","value":1325,"oils":"5,13,13"},{"string":"Активирует Залп","value":13375,"oils":"7,10,12"},{"string":"Активирует Оплот","value":1340,"oils":"3,4,10"},{"string":"Активирует Барьер знаний","value":1365,"oils":"0,11,12"},{"string":"Активирует Непокорный штандарт","value":13703,"oils":"4,10,13"},{"string":"Активирует Вечно злой","value":13739,"oils":"0,6,12"},{"string":"Активирует Душевная пустота","value":1382,"oils":"4,4,4"},{"string":"Активирует Стойкий","value":13922,"oils":"2,13,13"},{"string":"Активирует Азарт битвы","value":13935,"oils":"7,12,13"},{"string":"Активирует Незыблемый","value":14001,"oils":"7,7,9"},{"string":"Активирует Удар из тени","value":1405,"oils":"1,6,9"},{"string":"Активирует Древо, камень и чары","value":14079,"oils":"0,7,12"},{"string":"Активирует Податливая сталь","value":14587,"oils":"0,10,10"},{"string":"Активирует Бойня","value":14606,"oils":"4,8,9"},{"string":"Активирует Божественная ярость","value":14665,"oils":"3,3,11"},{"string":"Активирует Пир духа","value":14813,"oils":"3,8,10"},{"string":"Активирует Искупление","value":15046,"oils":"2,8,9"},{"string":"Активирует Амбидекстрия","value":15085,"oils":"3,6,10"},{"string":"Активирует Жестокий ответ","value":15226,"oils":"1,1,2"},{"string":"Активирует Сторожевые башни","value":15290,"oils":"7,12,12"},{"string":"Активирует Свобода передвижения","value":15344,"oils":"1,2,8"},{"string":"Активирует Сложные руны","value":15400,"oils":"11,12,12"},{"string":"Активирует Отклонение","value":15437,"oils":"3,7,12"},{"string":"Активирует Когти ястреба","value":15614,"oils":"8,10,11"},{"string":"Активирует Смертельный клинок","value":1568,"oils":"3,11,11"},{"string":"Активирует Радиус взрыва","value":15711,"oils":"1,4,11"},{"string":"Активирует Единение с природой","value":15842,"oils":"4,9,10"},{"string":"Активирует Бесплотный пир","value":15852,"oils":"3,12,13"},{"string":"Активирует Токсичные атаки","value":16236,"oils":"1,3,9"},{"string":"Активирует Обстрел","value":16243,"oils":"2,4,4"},{"string":"Активирует Безмятежность","value":16246,"oils":"0,12,13"},{"string":"Активирует Крушитель черепов","value":16703,"oils":"1,10,11"},{"string":"Активирует Мгновенная заморозка","value":17171,"oils":"4,6,9"},{"string":"Активирует Тихие шаги","value":17608,"oils":"3,4,8"},{"string":"Активирует Мистический бастион","value":18174,"oils":"5,5,5"},{"string":"Активирует Кошачья прыть","value":18357,"oils":"1,1,5"},{"string":"Активирует Изящное нападение","value":18703,"oils":"8,8,10"},{"string":"Активирует Перфекционист","value":18707,"oils":"4,5,12"},{"string":"Активирует Клятва на крови","value":18769,"oils":"2,8,13"},{"string":"Активирует Слияние","value":18865,"oils":"2,8,11"},{"string":"Активирует Толстая кожа","value":19069,"oils":"8,12,12"},{"string":"Активирует Праведная армия","value":19103,"oils":"4,10,10"},{"string":"Активирует Страж","value":19144,"oils":"4,5,6"},{"string":"Активирует Путь охотника","value":19506,"oils":"1,4,4"},{"string":"Активирует Уверенный удар","value":19730,"oils":"1,7,10"},{"string":"Активирует Сотрясающая сила","value":19794,"oils":"5,7,12"},{"string":"Активирует Травничество","value":19858,"oils":"5,11,12"},{"string":"Активирует В ладах со смертью","value":19897,"oils":"1,9,12"},{"string":"Активирует Сок вьющегося шипа","value":203,"oils":"0,10,12"},{"string":"Активирует Нестабильность","value":20528,"oils":"4,12,12"},{"string":"Активирует Без прощения","value":20605,"oils":"0,10,13"},{"string":"Активирует Святилище","value":20832,"oils":"3,5,5"},{"string":"Активирует Балансирование на грани","value":20835,"oils":"1,3,11"},{"string":"Активирует Пронзающие стрелы","value":21228,"oils":"10,11,12"},{"string":"Активирует Мощный взрыв","value":21297,"oils":"4,4,12"},{"string":"Активирует Быстрое восстановление","value":21330,"oils":"5,5,13"},{"string":"Активирует Кователь рун","value":21389,"oils":"6,9,12"},{"string":"Активирует Выносливость в бою","value":21413,"oils":"1,4,10"},{"string":"Активирует Мантия и кольчуга","value":21435,"oils":"1,1,6"},{"string":"Активирует Дыхание стужи","value":21460,"oils":"5,12,12"},{"string":"Активирует Разрушительные механизмы","value":21602,"oils":"2,3,12"},{"string":"Активирует Алхимия","value":21634,"oils":"3,12,12"},{"string":"Активирует Изматывающие тренировки","value":21958,"oils":"5,10,12"},{"string":"Активирует Страж разложения","value":21973,"oils":"2,4,5"},{"string":"Активирует Укрепляющее пламя","value":22133,"oils":"1,5,7"},{"string":"Активирует Орлиный глаз","value":2225,"oils":"1,1,11"},{"string":"Активирует Шепот рока","value":22535,"oils":"13,13,13"},{"string":"Активирует Стойка змеи","value":22702,"oils":"6,10,11"},{"string":"Активирует Свирепый пыл","value":22706,"oils":"6,6,11"},{"string":"Активирует Природная смесь","value":2275,"oils":"5,5,7"},{"string":"Активирует Мастер жезлов","value":22972,"oils":"5,5,9"},{"string":"Активирует Резня","value":23038,"oils":"6,6,6"},{"string":"Активирует Свирепость","value":23066,"oils":"9,10,13"},{"string":"Активирует Бестелесный","value":23549,"oils":"0,12,12"},{"string":"Активирует Вливание сущности","value":23690,"oils":"1,3,4"},{"string":"Активирует Холодный расчёт","value":24050,"oils":"9,9,9"},{"string":"Активирует Инстинкт","value":24067,"oils":"2,2,6"},{"string":"Активирует Остаться в живых","value":24133,"oils":"6,9,13"},{"string":"Активирует Внутренняя энергия","value":24256,"oils":"1,2,6"},{"string":"Активирует Взрывное попадание","value":24324,"oils":"4,6,11"},{"string":"Активирует Выборочная точность","value":24358,"oils":"0,9,13"},{"string":"Активирует Глубокие мысли","value":24362,"oils":"1,4,8"},{"string":"Активирует Кровь воина","value":24383,"oils":"5,5,10"},{"string":"Активирует Боевой транс","value":24716,"oils":"2,3,3"},{"string":"Активирует Дробитель рёбер","value":24721,"oils":"5,10,10"},{"string":"Активирует Гарпунщик","value":24858,"oils":"5,7,9"},{"string":"Активирует Переливание крови","value":25058,"oils":"6,11,12"},{"string":"Активирует Первобытный дух","value":25178,"oils":"2,6,10"},{"string":"Активирует Мастер клинка","value":25367,"oils":"1,2,12"},{"string":"Активирует Неукротимое войско","value":25409,"oils":"8,9,12"},{"string":"Активирует Заряженный","value":25411,"oils":"9,12,12"},{"string":"Активирует Гробовщик","value":25439,"oils":"7,7,10"},{"string":"Активирует Дервиш","value":25456,"oils":"6,9,10"},{"string":"Активирует Поджигатель","value":2550,"oils":"4,4,6"},{"string":"Активирует Неустанная охота","value":25738,"oils":"2,7,9"},{"string":"Активирует Колкость","value":25970,"oils":"1,10,10"},{"string":"Активирует Учения кочевников","value":25989,"oils":"10,13,13"},{"string":"Активирует Заготовленный ответ","value":2599,"oils":"1,2,2"},{"string":"Активирует Жестокие раны","value":26023,"oils":"5,10,13"},{"string":"Активирует Мастер топориков","value":26096,"oils":"4,5,9"},{"string":"Активирует Кровопускание","value":26294,"oils":"6,6,12"},{"string":"Активирует Громовые удары","value":26557,"oils":"5,8,9"},{"string":"Активирует Победитель","value":26564,"oils":"4,7,12"},{"string":"Активирует Порча","value":26620,"oils":"9,10,10"},{"string":"Активирует Совершенная формула","value":26763,"oils":"7,7,8"},{"string":"Активирует Святость","value":26866,"oils":"6,6,10"},{"string":"Активирует Предусмотрительность","value":26960,"oils":"5,7,10"},{"string":"Активирует Ярость племени","value":27119,"oils":"11,12,13"},{"string":"Активирует Святилище мысли","value":27137,"oils":"6,6,13"},{"string":"Активирует Легконогий","value":2715,"oils":"3,3,4"},{"string":"Активирует Колдовская воля","value":27163,"oils":"3,3,12"},{"string":"Активирует Переподготовленный","value":27190,"oils":"3,3,6"},{"string":"Активирует Сердце и душа","value":27203,"oils":"2,9,13"},{"string":"Активирует Боевой опыт","value":27301,"oils":"1,4,6"},{"string":"Активирует Смертельный договор","value":27308,"oils":"6,10,10"},{"string":"Активирует Дух войны","value":27422,"oils":"1,8,13"},{"string":"Активирует Владыка мёртвых","value":27611,"oils":"4,9,12"},{"string":"Активирует Поклонение сердцу Скверны","value":27781,"oils":"0,0,0"},{"string":"Активирует Кровопийца","value":27788,"oils":"11,11,12"},{"string":"Активирует Подобно грому","value":27806,"oils":"1,1,7"},{"string":"Активирует Накопленная мудрость","value":27929,"oils":"2,5,5"},{"string":"Активирует Могучие узы","value":28034,"oils":"1,7,7"},{"string":"Активирует Прилив бодрости","value":28449,"oils":"3,7,8"},{"string":"Активирует Жнец жизней","value":28503,"oils":"2,4,12"},{"string":"Активирует Ликвидация","value":28754,"oils":"10,11,13"},{"string":"Активирует Священный огонь","value":29049,"oils":"3,5,12"},{"string":"Активирует Ненасытная орда","value":29381,"oils":"4,12,13"},{"string":"Активирует Танец клинков","value":29522,"oils":"7,9,9"},{"string":"Активирует Сезон льда","value":2959,"oils":"7,10,13"},{"string":"Активирует Взрывные руны","value":29861,"oils":"3,6,6"},{"string":"Активирует Парирование","value":30160,"oils":"2,2,4"},{"string":"Активирует Грозоход","value":30225,"oils":"2,2,10"},{"string":"Активирует Крепкий","value":30302,"oils":"4,11,12"},{"string":"Активирует Всплеск лавы","value":30439,"oils":"1,1,13"},{"string":"Активирует Верный удар","value":30471,"oils":"5,9,10"},{"string":"Активирует Божественное рвение","value":30693,"oils":"4,5,7"},{"string":"Активирует Бывалый охотник","value":30974,"oils":"7,10,10"},{"string":"Активирует Крепость","value":31033,"oils":"1,4,5"},{"string":"Активирует Прославление","value":31257,"oils":"2,12,13"},{"string":"Активирует Смертельные токсины","value":31359,"oils":"1,8,12"},{"string":"Активирует Мастер ран","value":31473,"oils":"1,5,8"},{"string":"Активирует Дух рыси","value":31508,"oils":"8,8,9"},{"string":"Активирует Соседская вражда","value":31513,"oils":"7,9,11"},{"string":"Активирует Тщательная консервация","value":31585,"oils":"7,10,11"},{"string":"Активирует Наследие дикой природы","value":3195,"oils":"0,9,10"},{"string":"Активирует Титаническое воздействие","value":32059,"oils":"3,4,11"},{"string":"Активирует Крадущий душу","value":32176,"oils":"2,9,11"},{"string":"Активирует Касание аспида","value":32227,"oils":"2,10,11"},{"string":"Активирует Ткач бури","value":32455,"oils":"2,9,10"},{"string":"Активирует Выбрать жертву","value":32681,"oils":"2,7,10"},{"string":"Активирует Стена стали","value":32738,"oils":"4,7,11"},{"string":"Активирует Честолюбие Сионы","value":32853,"oils":"0,6,10"},{"string":"Активирует Полновластие","value":32932,"oils":"12,12,12"},{"string":"Активирует Лезвие бритвы","value":33082,"oils":"4,5,8"},{"string":"Активирует Быстроногий","value":3309,"oils":"2,3,11"},{"string":"Активирует Гигант","value":33287,"oils":"3,5,11"},{"string":"Активирует Священная власть","value":33435,"oils":"6,6,9"},{"string":"Активирует Гончая","value":33545,"oils":"6,9,9"},{"string":"Активирует Мощное пронзание","value":33582,"oils":"4,6,8"},{"string":"Активирует Идейный вдохновитель","value":33718,"oils":"5,9,13"},{"string":"Активирует Пустотелое чучело","value":33722,"oils":"0,9,12"},{"string":"Активирует Димахер","value":33725,"oils":"5,8,12"},{"string":"Активирует Разрушительные устройства","value":33777,"oils":"5,5,12"},{"string":"Активирует Воля клинков","value":33903,"oils":"2,4,10"},{"string":"Активирует Повелитель арены","value":34009,"oils":"2,11,12"},{"string":"Активирует Полный заряд","value":34173,"oils":"9,10,12"},{"string":"Активирует Заправская дуэль","value":34284,"oils":"3,7,11"},{"string":"Активирует Повелитель големов","value":34506,"oils":"6,12,13"},{"string":"Активирует Предвидение","value":3452,"oils":"4,11,13"},{"string":"Активирует Недобрые намерения","value":34591,"oils":"7,7,12"},{"string":"Активирует Огнеход","value":34661,"oils":"8,9,10"},{"string":"Активирует Опустошитель","value":34666,"oils":"2,4,11"},{"string":"Активирует Взвешенная ярость","value":34973,"oils":"3,10,13"},{"string":"Активирует Коллоидная смесь","value":34978,"oils":"1,1,4"},{"string":"Активирует Шумный ремесленник","value":35233,"oils":"3,5,6"},{"string":"Активирует Кинетическое воздействие","value":35436,"oils":"3,6,8"},{"string":"Активирует Сильная рука","value":35663,"oils":"1,6,11"},{"string":"Активирует Устрашающая сила","value":35685,"oils":"5,6,9"},{"string":"Активирует Коварство","value":35894,"oils":"4,4,10"},{"string":"Активирует Вера и сталь","value":35958,"oils":"2,10,13"},{"string":"Активирует Первозданная сила","value":36281,"oils":"6,8,12"},{"string":"Активирует Свежевание","value":36490,"oils":"1,8,9"},{"string":"Активирует Воплощение охоты","value":36687,"oils":"1,11,11"},{"string":"Активирует Жгучая жестокость","value":36736,"oils":"5,7,8"},{"string":"Активирует Железная стойка","value":36859,"oils":"5,5,6"},{"string":"Активирует Жертва","value":36915,"oils":"5,6,8"},{"string":"Активирует Упорство","value":36949,"oils":"9,9,12"},{"string":"Активирует Путь учёного","value":37078,"oils":"2,3,4"},{"string":"Активирует Стойкость","value":37326,"oils":"10,10,12"},{"string":"Активирует Заряженная плоть","value":37403,"oils":"3,7,10"},{"string":"Активирует Умелое нанесение","value":37425,"oils":"2,2,2"},{"string":"Активирует Интуиция","value":37504,"oils":"3,8,8"},{"string":"Активирует Оплот веры","value":37512,"oils":"0,9,9"},{"string":"Активирует Расчленение","value":37647,"oils":"8,11,13"},{"string":"Активирует Предчувствие","value":38246,"oils":"3,7,13"},{"string":"Активирует Праведный суд","value":38516,"oils":"2,2,5"},{"string":"Активирует Путь ратника","value":38706,"oils":"0,10,11"},{"string":"Активирует Обжигающий жар","value":38849,"oils":"3,6,12"},{"string":"Активирует Голиаф","value":38922,"oils":"2,3,13"},{"string":"Активирует Пустота тела","value":39530,"oils":"1,12,13"},{"string":"Активирует Кузнец боли","value":39657,"oils":"1,8,8"},{"string":"Активирует Тёмные искусства","value":39743,"oils":"5,8,11"},{"string":"Активирует Противовес","value":39761,"oils":"1,3,12"},{"string":"Активирует Жестокое пронзание","value":39904,"oils":"6,13,13"},{"string":"Активирует Порочные силы","value":39986,"oils":"9,10,11"},{"string":"Активирует Трепет и ужас","value":40619,"oils":"7,7,11"},{"string":"Активирует Костолом","value":40645,"oils":"4,6,6"},{"string":"Активирует Кристальная кожа","value":40743,"oils":"2,10,12"},{"string":"Активирует Настойчивость","value":40849,"oils":"0,7,9"},{"string":"Активирует Смертоносность","value":41119,"oils":"2,8,12"},{"string":"Активирует Полевая медицина","value":41137,"oils":"7,9,10"},{"string":"Активирует Рваные раны","value":41169,"oils":"0,7,13"},{"string":"Активирует Сокрушающий ответ","value":41305,"oils":"1,2,3"},{"string":"Активирует Смертельные наклонности","value":41307,"oils":"0,7,10"},{"string":"Активирует Природные лекарства","value":41420,"oils":"7,11,12"},{"string":"Активирует Дисциплина и подготовка","value":41472,"oils":"10,12,12"},{"string":"Активирует Древняя сила","value":41476,"oils":"5,5,8"},{"string":"Активирует Знак смерти","value":41595,"oils":"2,7,12"},{"string":"Активирует Духовная поддержка","value":4177,"oils":"12,12,13"},{"string":"Активирует Объятия зимы","value":41870,"oils":"1,7,9"},{"string":"Активирует Изворотливость","value":41989,"oils":"4,11,11"},{"string":"Активирует Стальной дух","value":42009,"oils":"1,13,13"},{"string":"Активирует Лекарства","value":42041,"oils":"4,10,12"},{"string":"Активирует Окно возможностей","value":4207,"oils":"7,11,11"},{"string":"Активирует Неистовство","value":42443,"oils":"6,12,12"},{"string":"Активирует Закалённый холодом","value":42649,"oils":"3,5,13"},{"string":"Активирует Концентрация стихий","value":42686,"oils":"2,3,6"},{"string":"Активирует Тугой лук","value":42720,"oils":"2,4,8"},{"string":"Активирует Средоточие чар","value":42795,"oils":"4,9,9"},{"string":"Активирует Пьющий разум","value":42804,"oils":"4,5,5"},{"string":"Активирует Вращающийся барьер","value":42917,"oils":"3,5,9"},{"string":"Активирует Дух зимы","value":43385,"oils":"2,5,12"},{"string":"Активирует Маяк надежды","value":4354,"oils":"0,8,9"},{"string":"Активирует Духовный приказ","value":43689,"oils":"2,2,13"},{"string":"Активирует Эффективная взрывчатка","value":44102,"oils":"2,5,8"},{"string":"Активирует Рефлексы","value":44103,"oils":"6,10,13"},{"string":"Активирует Подобно горе","value":44191,"oils":"10,10,11"},{"string":"Активирует Панцирь","value":44207,"oils":"1,2,10"},{"string":"Активирует Божественное неистовство","value":44347,"oils":"3,3,10"},{"string":"Активирует Сила шамана","value":44562,"oils":"1,6,12"},{"string":"Активирует Сила в единстве","value":44788,"oils":"2,2,8"},{"string":"Активирует Силы природы","value":4481,"oils":"4,6,12"},{"string":"Активирует Мистицизм","value":44824,"oils":"5,6,11"},{"string":"Активирует Ледоход","value":44955,"oils":"4,8,11"},{"string":"Активирует Истощение","value":44988,"oils":"2,12,12"},{"string":"Активирует Азартный убийца","value":45067,"oils":"3,3,5"},{"string":"Активирует Загнанная добыча","value":45283,"oils":"3,3,7"},{"string":"Активирует Пепел, мороз и буря","value":45317,"oils":"2,9,9"},{"string":"Активирует Ловкий выстрел","value":45329,"oils":"3,8,13"},{"string":"Активирует Последовательный подрыв","value":45608,"oils":"1,1,9"},{"string":"Активирует Испытание веры","value":45657,"oils":"2,7,7"},{"string":"Активирует Опытный солдат","value":45803,"oils":"5,7,13"},{"string":"Активирует Сотворённый барьер","value":45945,"oils":"4,7,10"},{"string":"Активирует Клыки гадюки","value":46408,"oils":"1,5,6"},{"string":"Активирует Крепкие узы","value":46471,"oils":"7,7,7"},{"string":"Активирует Могущество чар","value":46842,"oils":"6,10,12"},{"string":"Активирует Колдовское святилище","value":46904,"oils":"1,12,12"},{"string":"Активирует Диверсант","value":46965,"oils":"1,5,5"},{"string":"Активирует Мастер клинков","value":47065,"oils":"6,11,13"},{"string":"Активирует Горлодер","value":47306,"oils":"3,8,11"},{"string":"Активирует Перегрузка","value":47471,"oils":"1,11,12"},{"string":"Активирует Проницательность","value":47484,"oils":"3,4,5"},{"string":"Активирует Дальнее зрение","value":47743,"oils":"4,4,9"},{"string":"Активирует Вдохновение","value":48298,"oils":"4,4,13"},{"string":"Активирует Напор","value":4833,"oils":"9,11,11"},{"string":"Активирует Храбрость","value":48438,"oils":"8,11,11"},{"string":"Активирует Убежище","value":4854,"oils":"7,8,12"},{"string":"Активирует Сердце тьмы","value":48556,"oils":"0,8,8"},{"string":"Активирует Рвение","value":48614,"oils":"3,10,12"},{"string":"Активирует Барьер пустоты","value":48698,"oils":"9,12,13"},{"string":"Активирует Мастерство гладиатора","value":48807,"oils":"2,11,13"},{"string":"Активирует Роковой лук","value":48823,"oils":"2,4,9"},{"string":"Активирует Неразборчивое мщение","value":4918,"oils":"1,1,1"},{"string":"Активирует Воздаяние","value":49254,"oils":"1,9,11"},{"string":"Активирует Вес в удар","value":49318,"oils":"1,5,11"},{"string":"Активирует Наемный убийца","value":49379,"oils":"8,8,11"},{"string":"Активирует Раскалывание","value":4940,"oils":"2,3,10"},{"string":"Активирует Непреклонный","value":49416,"oils":"6,8,10"},{"string":"Активирует Глубокие вдохи","value":49445,"oils":"5,7,11"},{"string":"Активирует Царь горы","value":49459,"oils":"4,8,12"},{"string":"Активирует Вызов","value":49538,"oils":"3,5,10"},{"string":"Активирует Сноровка","value":49621,"oils":"1,8,10"},{"string":"Активирует Прижигание","value":49645,"oils":"2,2,7"},{"string":"Активирует Предельная мощь","value":49772,"oils":"3,6,9"},{"string":"Активирует Отвага","value":49969,"oils":"6,8,8"},{"string":"Активирует Неестественное спокойствие","value":50029,"oils":"4,13,13"},{"string":"Активирует Баллистика","value":50338,"oils":"6,8,11"},{"string":"Активирует Восстанавливающие средства","value":50690,"oils":"2,3,7"},{"string":"Активирует Гнев ветерана","value":50842,"oils":"8,13,13"},{"string":"Активирует Увещеватель","value":50858,"oils":"2,6,11"},{"string":"Активирует Конденсатор колдовства","value":51108,"oils":"8,10,13"},{"string":"Активирует Энтропия","value":51212,"oils":"2,3,9"},{"string":"Активирует Хребтолом","value":5126,"oils":"4,8,8"},{"string":"Активирует Смешанные боеприпасы","value":51360,"oils":"0,9,11"},{"string":"Активирует Обряд друидов","value":51440,"oils":"1,9,13"},{"string":"Активирует Сокрушающие атаки","value":51559,"oils":"6,6,8"},{"string":"Активирует Последний обряд","value":51748,"oils":"2,10,10"},{"string":"Активирует Мастер лука","value":51881,"oils":"2,9,12"},{"string":"Активирует Прилив энергии","value":52030,"oils":"1,3,3"},{"string":"Активирует Дезинтеграция","value":52031,"oils":"8,10,10"},{"string":"Активирует Врагоруб","value":52090,"oils":"3,10,11"},{"string":"Активирует Вытягивание душ","value":52157,"oils":"3,3,8"},{"string":"Активирует Матёрый охотник","value":52230,"oils":"2,3,5"},{"string":"Активирует Выдержка","value":52282,"oils":"0,13,13"},{"string":"Активирует Круг жизни","value":52789,"oils":"1,7,8"},{"string":"Активирует Встряска","value":5289,"oils":"2,4,6"},{"string":"Активирует Ядовитые клыки","value":529,"oils":"1,3,6"},{"string":"Активирует Атрофия","value":53013,"oils":"1,2,13"},{"string":"Активирует Исключительный результат","value":53042,"oils":"1,3,10"},{"string":"Активирует Месть жертвы","value":53114,"oils":"10,12,13"},{"string":"Активирует Варварство","value":53118,"oils":"11,11,13"},{"string":"Активирует Аннигиляция","value":53493,"oils":"1,1,10"},{"string":"Активирует Колдовское расширение","value":53573,"oils":"9,9,13"},{"string":"Активирует Погрязший в грехе","value":53652,"oils":"2,7,13"},{"string":"Активирует Ярость шамана","value":53757,"oils":"2,3,8"},{"string":"Активирует Чистые помыслы","value":53759,"oils":"0,6,13"},{"string":"Активирует Вытягивание сущности","value":53802,"oils":"9,9,10"},{"string":"Активирует Расплата","value":53840,"oils":"3,11,12"},{"string":"Активирует Изящество","value":54142,"oils":"5,6,10"},{"string":"Активирует Преграда клинков","value":54268,"oils":"1,8,11"},{"string":"Активирует Магматические удары","value":5430,"oils":"3,10,10"},{"string":"Активирует Надзор","value":544,"oils":"2,7,11"},{"string":"Активирует Божественный свет","value":54694,"oils":"8,9,9"},{"string":"Активирует Повелитель силы","value":54713,"oils":"1,7,12"},{"string":"Активирует Потоки маны","value":54776,"oils":"1,11,13"},{"string":"Активирует Когти сороки","value":54791,"oils":"2,6,6"},{"string":"Активирует Праведная ярость","value":55002,"oils":"4,7,7"},{"string":"Активирует Предельный интеллект","value":55114,"oils":"3,8,9"},{"string":"Активирует Осевший пепел","value":55194,"oils":"1,7,13"},{"string":"Активирует Продуманная конструкция","value":55380,"oils":"2,6,9"},{"string":"Активирует Здоровое тело","value":55485,"oils":"5,8,13"},{"string":"Активирует Сила тьмы","value":5574,"oils":"0,11,11"},{"string":"Активирует Затрещина кузнеца","value":55772,"oils":"4,10,11"},{"string":"Активирует Наедине с рекой","value":56094,"oils":"5,11,11"},{"string":"Активирует Намеренная жестокость","value":56146,"oils":"0,8,12"},{"string":"Активирует Загрубевшие шрамы","value":56207,"oils":"0,6,9"},{"string":"Активирует Крестоносец","value":5624,"oils":"0,11,13"},{"string":"Активирует Долгая буря","value":56274,"oils":"0,8,11"},{"string":"Активирует Ночной преследователь","value":56276,"oils":"2,5,13"},{"string":"Активирует Течение битвы","value":56330,"oils":"2,2,3"},{"string":"Активирует Каннибалистический обряд","value":56359,"oils":"5,6,6"},{"string":"Активирует Когти сокола","value":56648,"oils":"3,3,13"},{"string":"Активирует Громовое сердце","value":56716,"oils":"2,6,13"},{"string":"Активирует Слепящие удары","value":570,"oils":"5,5,11"},{"string":"Активирует Каскад мести","value":57006,"oils":"0,7,11"},{"string":"Активирует Ледяные клыки","value":57199,"oils":"2,2,12"},{"string":"Активирует Искусный клинок","value":57839,"oils":"2,6,12"},{"string":"Активирует Время стали","value":57900,"oils":"3,9,11"},{"string":"Активирует Заклинатель змей","value":58032,"oils":"7,8,11"},{"string":"Активирует Высокое напряжение","value":58168,"oils":"3,7,7"},{"string":"Активирует Ледяные пальцы","value":58198,"oils":"8,9,13"},{"string":"Активирует Чистота плоти","value":58218,"oils":"1,10,12"},{"string":"Активирует Координация","value":5823,"oils":"3,9,10"},{"string":"Активирует Прославленные деяния","value":58382,"oils":"7,11,13"},{"string":"Активирует Рождённый для битвы","value":58449,"oils":"8,8,13"},{"string":"Активирует Потрошение","value":58831,"oils":"4,8,13"},{"string":"Активирует Вожак стаи","value":58851,"oils":"9,13,13"},{"string":"Активирует Апостол резни","value":58921,"oils":"3,4,13"},{"string":"Активирует Жестокий клинок","value":59151,"oils":"2,4,13"},{"string":"Активирует Эскалация","value":59423,"oils":"4,4,7"},{"string":"Активирует Быстрая установка","value":59556,"oils":"1,6,8"},{"string":"Активирует Нестабильные боеприпасы","value":59605,"oils":"5,8,8"},{"string":"Активирует Запрещённый приём","value":59766,"oils":"3,11,13"},{"string":"Активирует Укоренение","value":59866,"oils":"2,6,8"},{"string":"Активирует Выверенная контратака","value":59976,"oils":"1,1,3"},{"string":"Активирует Ужасная пара","value":6,"oils":"1,6,10"},{"string":"Активирует Иглы гнева","value":60002,"oils":"4,4,5"},{"string":"Активирует Радужная кожа","value":60031,"oils":"12,13,13"},{"string":"Активирует Пылающее сердце","value":60501,"oils":"5,6,13"},{"string":"Активирует Молот молний","value":60619,"oils":"1,2,9"},{"string":"Активирует Уловки","value":60737,"oils":"4,5,11"},{"string":"Активирует Вдохновляющие узы","value":60781,"oils":"3,5,7"},{"string":"Активирует Дикий голод","value":61039,"oils":"3,13,13"},{"string":"Активирует Стяг сплочения","value":61190,"oils":"1,6,13"},{"string":"Активирует Сердце воина","value":61198,"oils":"8,12,13"},{"string":"Активирует Усиление","value":61308,"oils":"3,6,11"},{"string":"Активирует Взрывные стихии","value":61689,"oils":"3,9,12"},{"string":"Активирует Гибельные чары","value":61981,"oils":"3,6,13"},{"string":"Активирует Смертельный замысел","value":61982,"oils":"2,8,8"},{"string":"Активирует Тяга к крови","value":62094,"oils":"3,8,12"},{"string":"Активирует Взрывные волны","value":6233,"oils":"1,4,9"},{"string":"Активирует Точность","value":6237,"oils":"2,2,9"},{"string":"Активирует Внутренние резервы","value":62577,"oils":"5,12,13"},{"string":"Активирует Мистические таланты","value":62596,"oils":"0,6,11"},{"string":"Активирует На грани смерти","value":62802,"oils":"4,7,8"},{"string":"Активирует Ледяная клеть","value":62849,"oils":"4,7,9"},{"string":"Активирует Бескровный","value":6289,"oils":"3,9,13"},{"string":"Активирует Знаменосец","value":63033,"oils":"7,8,9"},{"string":"Активирует Железное дерево","value":63150,"oils":"1,3,5"},{"string":"Активирует Раскат грома","value":63207,"oils":"3,4,12"},{"string":"Активирует Закоренелый","value":63251,"oils":"10,10,13"},{"string":"Активирует Жажда расправы","value":63422,"oils":"5,11,13"},{"string":"Активирует Излишек пропитания","value":63453,"oils":"5,7,7"},{"string":"Активирует Воплощение изначальных","value":63635,"oils":"3,4,9"},{"string":"Активирует Стойкость гладиатора","value":63727,"oils":"5,6,12"},{"string":"Активирует Предельная стремительность","value":63921,"oils":"2,5,9"},{"string":"Активирует Идолопоклонничество","value":63933,"oils":"4,4,8"},{"string":"Активирует Радужный узор","value":63944,"oils":"2,11,11"},{"string":"Активирует Кудесник","value":63976,"oils":"1,9,9"},{"string":"Активирует Воинская подготовка","value":64077,"oils":"1,5,9"},{"string":"Активирует Дух камня","value":64217,"oils":"0,8,13"},{"string":"Активирует Рокочущее испытание","value":64226,"oils":"1,2,4"},{"string":"Активирует Равенство клейм","value":64355,"oils":"7,8,10"},{"string":"Активирует Травма","value":64395,"oils":"5,9,12"},{"string":"Активирует Апостол упорства","value":64882,"oils":"8,9,11"},{"string":"Активирует Похищение сущности","value":65053,"oils":"5,8,10"},{"string":"Активирует Танцующий с клинками","value":65093,"oils":"3,3,9"},{"string":"Активирует Лидерство","value":65097,"oils":"8,11,12"},{"string":"Активирует Крушитель обороны","value":65107,"oils":"2,5,7"},{"string":"Активирует Неутомимость","value":65108,"oils":"11,11,11"},{"string":"Активирует Сердце дуба","value":65210,"oils":"4,9,13"},{"string":"Активирует Дух орла","value":65224,"oils":"3,4,4"},{"string":"Активирует Загадочный охват","value":65273,"oils":"4,5,10"},{"string":"Активирует Алмазная кожа","value":65308,"oils":"2,5,11"},{"string":"Активирует Удар в сердце","value":65502,"oils":"5,9,9"},{"string":"Активирует Искристые удары","value":6615,"oils":"1,1,12"},{"string":"Активирует Колдовская защита","value":6770,"oils":"1,5,10"},{"string":"Активирует Свирепое пронзание","value":6783,"oils":"1,2,7"},{"string":"Активирует Харизма","value":6799,"oils":"11,13,13"},{"string":"Активирует Предосторожность","value":6967,"oils":"4,6,10"},{"string":"Активирует Расколотый выстрел","value":7069,"oils":"1,7,11"},{"string":"Активирует Искусство владения оружием","value":7085,"oils":"1,3,8"},{"string":"Активирует Умелый капканщик","value":7136,"oils":"5,10,11"},{"string":"Активирует Быстрые яды","value":7263,"oils":"1,3,13"},{"string":"Активирует Жнец врагов","value":7440,"oils":"1,3,7"},{"string":"Активирует Скорость молнии","value":7555,"oils":"10,11,11"},{"string":"Активирует Прочная связь","value":7688,"oils":"1,4,13"},{"string":"Активирует Загадочная защита","value":7918,"oils":"8,8,8"},{"string":"Активирует Ловкий вор","value":8001,"oils":"1,4,7"},{"string":"Активирует Практическое применение","value":8135,"oils":"1,1,8"},{"string":"Активирует Запредельный выстрел","value":8458,"oils":"5,9,11"},{"string":"Активирует Воинственный оплот","value":861,"oils":"4,8,10"},{"string":"Активирует Ледяное сердце","value":8833,"oils":"9,11,13"},{"string":"Активирует Удар в спину","value":8920,"oils":"1,5,12"},{"string":"Активирует Страшная пытка","value":9015,"oils":"6,9,11"},{"string":"Активирует Нестабильные мины","value":9055,"oils":"6,11,11"},{"string":"Активирует Безжалостное пронзание","value":9194,"oils":"8,8,12"},{"string":"Активирует Адепт запрещенного","value":9261,"oils":"10,10,10"},{"string":"Активирует Сообразительность","value":9432,"oils":"2,8,10"},{"string":"Активирует Охотничий гамбит","value":9535,"oils":"1,4,12"},{"string":"Активирует Пожиратель света","value":9567,"oils":"6,8,9"},{"string":"Активирует Прыть","value":9788,"oils":"3,9,9"},{"string":"Активирует Рост и увядание","value":9864,"oils":"1,5,13"}],"trade":{"ids":{"enchant":["enchant.stat_2954116742"]},"option":true}} +{"ref":"Allocates # if you have the matching modifier on Forbidden Flame","better":1,"matchers":[{"string":"Дарует умение Некромант, если у вас есть аналогичное свойство на Запретном пламени","value":10099},{"string":"Дарует умение Жестокое рвение, если у вас есть аналогичное свойство на Запретном пламени","value":10143},{"string":"Дарует умение Поиск веры, если у вас есть аналогичное свойство на Запретном пламени","value":1105},{"string":"Дарует умение Вдохновенный, если у вас есть аналогичное свойство на Запретном пламени","value":11412},{"string":"Дарует умение Несущий чуму, если у вас есть аналогичное свойство на Запретном пламени","value":11490},{"string":"Дарует умение Уроки сезонов, если у вас есть аналогичное свойство на Запретном пламени","value":11597},{"string":"Дарует умение Оккультист, если у вас есть аналогичное свойство на Запретном пламени","value":12597},{"string":"Дарует умение Мастер металла, если у вас есть аналогичное свойство на Запретном пламени","value":13374},{"string":"Дарует умение Орудия рвения, если у вас есть аналогичное свойство на Запретном пламени","value":13851},{"string":"Дарует умение Умелый сапёр, если у вас есть аналогичное свойство на Запретном пламени","value":14103},{"string":"Дарует умение Костяная преграда, если у вас есть аналогичное свойство на Запретном пламени","value":14603},{"string":"Дарует умение Восхождение Жреца, если у вас есть аналогичное свойство на Запретном пламени","value":15435},{"string":"Дарует умение Кромсающая техника, если у вас есть аналогичное свойство на Запретном пламени","value":15616},{"string":"Дарует умение Непревзойдённая техника, если у вас есть аналогичное свойство на Запретном пламени","value":16306},{"string":"Дарует умение Клятва зимы, если у вас есть аналогичное свойство на Запретном пламени","value":16848},{"string":"Дарует умение Пироман, если у вас есть аналогичное свойство на Запретном пламени","value":16940},{"string":"Дарует умение Мастер по токсинам, если у вас есть аналогичное свойство на Запретном пламени","value":1697},{"string":"Дарует умение Хинекора, ярость смерти, если у вас есть аналогичное свойство на Запретном пламени","value":1731},{"string":"Дарует умение Подавление, если у вас есть аналогичное свойство на Запретном пламени","value":17315},{"string":"Дарует умение Непоколебимый, если у вас есть аналогичное свойство на Запретном пламени","value":1734},{"string":"Дарует умение Неустанный, если у вас есть аналогичное свойство на Запретном пламени","value":17988},{"string":"Дарует умение Гнев природы, если у вас есть аналогичное свойство на Запретном пламени","value":18054},{"string":"Дарует умение Авантюрист, если у вас есть аналогичное свойство на Запретном пламени","value":19083},{"string":"Дарует умение Раскрытый потенциал, если у вас есть аналогичное свойство на Запретном пламени","value":19355},{"string":"Дарует умение Орудия добродетели, если у вас есть аналогичное свойство на Запретном пламени","value":19417},{"string":"Дарует умение Ядовитый удар, если у вас есть аналогичное свойство на Запретном пламени","value":1945},{"string":"Дарует умение Работа с ядом, если у вас есть аналогичное свойство на Запретном пламени","value":19598},{"string":"Дарует умение Непоколебимая защита, если у вас есть аналогичное свойство на Запретном пламени","value":19641},{"string":"Дарует умение Засада и ликвидация, если у вас есть аналогичное свойство на Запретном пламени","value":21264},{"string":"Дарует умение Мощная точность, если у вас есть аналогичное свойство на Запретном пламени","value":21455},{"string":"Дарует умение Защита ветра, если у вас есть аналогичное свойство на Запретном пламени","value":23169},{"string":"Дарует умение На шаг впереди, если у вас есть аналогичное свойство на Запретном пламени","value":23225},{"string":"Дарует умение Трупный пакт, если у вас есть аналогичное свойство на Запретном пламени","value":23572},{"string":"Дарует умение Жажда бойни, если у вас есть аналогичное свойство на Запретном пламени","value":24528},{"string":"Дарует умение Путь Дикаря, если у вас есть аналогичное свойство на Запретном пламени","value":24755},{"string":"Дарует умение Восхождение Дуэлянта, если у вас есть аналогичное свойство на Запретном пламени","value":24798},{"string":"Дарует умение Порывы ветра, если у вас есть аналогичное свойство на Запретном пламени","value":24848},{"string":"Дарует умение Истощающее присутствие, если у вас есть аналогичное свойство на Запретном пламени","value":25309},{"string":"Дарует умение Властолюбие, если у вас есть аналогичное свойство на Запретном пламени","value":25651},{"string":"Дарует умение Повелитель стихий, если у вас есть аналогичное свойство на Запретном пламени","value":258},{"string":"Дарует умение Не только умение, если у вас есть аналогичное свойство на Запретном пламени","value":2598},{"string":"Дарует умение Нескончаемые боеприпасы, если у вас есть аналогичное свойство на Запретном пламени","value":26067},{"string":"Дарует умение Несущая бурю, если у вас есть аналогичное свойство на Запретном пламени","value":27038},{"string":"Дарует умение Светоч пустоты, если у вас есть аналогичное свойство на Запретном пламени","value":27096},{"string":"Дарует умение Девять жизней, если у вас есть аналогичное свойство на Запретном пламени","value":27602},{"string":"Дарует умение Бьёт первым, погибает последним, если у вас есть аналогичное свойство на Запретном пламени","value":27604},{"string":"Дарует умение Беспричинное насилие, если у вас есть аналогичное свойство на Запретном пламени","value":27864},{"string":"Дарует умение Идеальное преступление, если у вас есть аналогичное свойство на Запретном пламени","value":28535},{"string":"Дарует умение Довлеющая сила, если у вас есть аналогичное свойство на Запретном пламени","value":2872},{"string":"Дарует умение Ходящий в тумане, если у вас есть аналогичное свойство на Запретном пламени","value":28782},{"string":"Дарует умение Останавливающий сердце, если у вас есть аналогичное свойство на Запретном пламени","value":28884},{"string":"Дарует умение [UNUSED] Slamako, Slam's Slam, если у вас есть аналогичное свойство на Запретном пламени","value":28986},{"string":"Дарует умение Храм мысли, если у вас есть аналогичное свойство на Запретном пламени","value":29026},{"string":"Дарует умение Разгон, если у вас есть аналогичное свойство на Запретном пламени","value":29630},{"string":"Дарует умение Опытный травник, если у вас есть аналогичное свойство на Запретном пламени","value":29662},{"string":"Дарует умение Мастер побега, если у вас есть аналогичное свойство на Запретном пламени","value":29825},{"string":"Дарует умение Защитник, если у вас есть аналогичное свойство на Запретном пламени","value":30919},{"string":"Дарует умение Нечестивая власть, если у вас есть аналогичное свойство на Запретном пламени","value":31344},{"string":"Дарует умение Клятва весны, если у вас есть аналогичное свойство на Запретном пламени","value":31364},{"string":"Дарует умение Сиона, рёв солнца, если у вас есть аналогичное свойство на Запретном пламени","value":31667},{"string":"Дарует умение Стойкость, если у вас есть аналогичное свойство на Запретном пламени","value":31700},{"string":"Дарует умение Палач, если у вас есть аналогичное свойство на Запретном пламени","value":3184},{"string":"Дарует умение Валако, объятья шторма, если у вас есть аналогичное свойство на Запретном пламени","value":32249},{"string":"Дарует умение Вестник войны, если у вас есть аналогичное свойство на Запретном пламени","value":32251},{"string":"Дарует умение Благочестивый путь, если у вас есть аналогичное свойство на Запретном пламени","value":32816},{"string":"Дарует умение Быстрый убийца, если у вас есть аналогичное свойство на Запретном пламени","value":32947},{"string":"Дарует умение Клятва лета, если у вас есть аналогичное свойство на Запретном пламени","value":33645},{"string":"Дарует умение Несокрушимый герой, если у вас есть аналогичное свойство на Запретном пламени","value":33940},{"string":"Дарует умение Ритуал пробуждения, если у вас есть аналогичное свойство на Запретном пламени","value":34434},{"string":"Дарует умение Вечный голод, если у вас есть аналогичное свойство на Запретном пламени","value":34484},{"string":"Дарует умение Снайпер, если у вас есть аналогичное свойство на Запретном пламени","value":34567},{"string":"Дарует умение Гладиатор, если у вас есть аналогичное свойство на Запретном пламени","value":34774},{"string":"Дарует умение Пожиратель сущности, если у вас есть аналогичное свойство на Запретном пламени","value":3554},{"string":"Дарует умение Завоеватель, если у вас есть аналогичное свойство на Запретном пламени","value":35750},{"string":"Дарует умение Повелитель тьмы, если у вас есть аналогичное свойство на Запретном пламени","value":36017},{"string":"Дарует умение Опытный охотник, если у вас есть аналогичное свойство на Запретном пламени","value":36958},{"string":"Дарует умение Расцвет греха, если у вас есть аналогичное свойство на Запретном пламени","value":37127},{"string":"Дарует умение Оплот зла, если у вас есть аналогичное свойство на Запретном пламени","value":37492},{"string":"Дарует умение Воздействие, если у вас есть аналогичное свойство на Запретном пламени","value":38180},{"string":"Дарует умение Цепная реакция, если у вас есть аналогичное свойство на Запретном пламени","value":38918},{"string":"Дарует умение Безупречная свирепость, если у вас есть аналогичное свойство на Запретном пламени","value":38999},{"string":"Дарует умение Чемпион, если у вас есть аналогичное свойство на Запретном пламени","value":39598},{"string":"Дарует умение Оплот надежды, если у вас есть аналогичное свойство на Запретном пламени","value":39728},{"string":"Дарует умение Святилище, если у вас есть аналогичное свойство на Запретном пламени","value":39790},{"string":"Дарует умение Подрывник, если у вас есть аналогичное свойство на Запретном пламени","value":39834},{"string":"Дарует умение Предзнаменование раскаяния, если у вас есть аналогичное свойство на Запретном пламени","value":40059},{"string":"Дарует умение Густая пропитка, если у вас есть аналогичное свойство на Запретном пламени","value":40104},{"string":"Дарует умение Колдовское благословение, если у вас есть аналогичное свойство на Запретном пламени","value":40510},{"string":"Дарует умение Несущая зиму, если у вас есть аналогичное свойство на Запретном пламени","value":40810},{"string":"Дарует умение Возмездие природы, если у вас есть аналогичное свойство на Запретном пламени","value":40813},{"string":"Дарует умение Разрушитель чар, если у вас есть аналогичное свойство на Запретном пламени","value":41891},{"string":"Дарует умение Берсерк, если у вас есть аналогичное свойство на Запретном пламени","value":4194},{"string":"Дарует умение Иерофант, если у вас есть аналогичное свойство на Запретном пламени","value":42144},{"string":"Дарует умение Лучезарная вера, если у вас есть аналогичное свойство на Запретном пламени","value":42264},{"string":"Дарует умение Критический удар, если у вас есть аналогичное свойство на Запретном пламени","value":4242},{"string":"Дарует умение Смертоносный расцвет, если у вас есть аналогичное свойство на Запретном пламени","value":42469},{"string":"Дарует умение Убийца, если у вас есть аналогичное свойство на Запретном пламени","value":43122},{"string":"Дарует умение Рубака, если у вас есть аналогичное свойство на Запретном пламени","value":43195},{"string":"Дарует умение Инквизитор, если у вас есть аналогичное свойство на Запретном пламени","value":43962},{"string":"Дарует умение Недрогнувший, если у вас есть аналогичное свойство на Запретном пламени","value":44297},{"string":"Дарует умение Энтузиазм, если у вас есть аналогичное свойство на Запретном пламени","value":44482},{"string":"Дарует умение Лучезарная защита, если у вас есть аналогичное свойство на Запретном пламени","value":4494},{"string":"Дарует умение Дальний выстрел, если у вас есть аналогичное свойство на Запретном пламени","value":45313},{"string":"Дарует умение Морозный след, если у вас есть аналогичное свойство на Запретном пламени","value":47630},{"string":"Дарует умение Специалист по бомбам, если у вас есть аналогичное свойство на Запретном пламени","value":47778},{"string":"Дарует умение Неминуемое правосудие, если у вас есть аналогичное свойство на Запретном пламени","value":48214},{"string":"Дарует умение Смертельный удар, если у вас есть аналогичное свойство на Запретном пламени","value":48239},{"string":"Дарует умение Тасалио, очищающие воды, если у вас есть аналогичное свойство на Запретном пламени","value":48480},{"string":"Дарует умение Материнские ученья, если у вас есть аналогичное свойство на Запретном пламени","value":4849},{"string":"Дарует умение Госпожа жертвоприношений, если у вас есть аналогичное свойство на Запретном пламени","value":48719},{"string":"Дарует умение Пьющий душу, если у вас есть аналогичное свойство на Запретном пламени","value":48999},{"string":"Дарует умение Бастион стихий, если у вас есть аналогичное свойство на Запретном пламени","value":4917},{"string":"Дарует умение Восхождение Охотницы, если у вас есть аналогичное свойство на Запретном пламени","value":49532},{"string":"Дарует умение Тахоа, сила леса, если у вас есть аналогичное свойство на Запретном пламени","value":5029},{"string":"Дарует умение Хвалебная молитва, если у вас есть аналогичное свойство на Запретном пламени","value":50356},{"string":"Дарует умение Нгамаху, натиск пламени, если у вас есть аналогичное свойство на Запретном пламени","value":50692},{"string":"Дарует умение Рожденный во мраке, если у вас есть аналогичное свойство на Запретном пламени","value":5087},{"string":"Дарует умение Природный адреналин, если у вас есть аналогичное свойство на Запретном пламени","value":51101},{"string":"Дарует умение Несущая разорение, если у вас есть аналогичное свойство на Запретном пламени","value":51391},{"string":"Дарует умение Как часы, если у вас есть аналогичное свойство на Запретном пламени","value":51462},{"string":"Дарует умение Знамение предназначения, если у вас есть аналогичное свойство на Запретном пламени","value":51492},{"string":"Дарует умение Восхождение Ведьмы, если у вас есть аналогичное свойство на Запретном пламени","value":51782},{"string":"Дарует умение Неукротимая решимость, если у вас есть аналогичное свойство на Запретном пламени","value":52435},{"string":"Дарует умение Мастер оружия, если у вас есть аналогичное свойство на Запретном пламени","value":52575},{"string":"Дарует умение Тукохама, вестник войны, если у вас есть аналогичное свойство на Запретном пламени","value":53095},{"string":"Дарует умение Несущая пламя, если у вас есть аналогичное свойство на Запретном пламени","value":53123},{"string":"Дарует умение Несокрушимый, если у вас есть аналогичное свойство на Запретном пламени","value":53816},{"string":"Дарует умение Благочестивая предусмотрительность, если у вас есть аналогичное свойство на Запретном пламени","value":53884},{"string":"Дарует умение Путь Бандита, если у вас есть аналогичное свойство на Запретном пламени","value":53992},{"string":"Дарует умение Бездумная агрессия, если у вас есть аналогичное свойство на Запретном пламени","value":54159},{"string":"Дарует умение Фокус, если у вас есть аналогичное свойство на Запретном пламени","value":5443},{"string":"Дарует умение Путь Жреца, если у вас есть аналогичное свойство на Запретном пламени","value":54877},{"string":"Дарует умение Нечестивый страж, если у вас есть аналогичное свойство на Запретном пламени","value":5502},{"string":"Дарует умение Час нужды, если у вас есть аналогичное свойство на Запретном пламени","value":55146},{"string":"Дарует умение Воплощение лесов, если у вас есть аналогичное свойство на Запретном пламени","value":55509},{"string":"Дарует умение Эрудит, если у вас есть аналогичное свойство на Запретном пламени","value":55867},{"string":"Дарует умение Слуга стихий, если у вас есть аналогичное свойство на Запретном пламени","value":56461},{"string":"Дарует умение Путь Ведьмы, если у вас есть аналогичное свойство на Запретном пламени","value":56722},{"string":"Дарует умение Неумолимый, если у вас есть аналогичное свойство на Запретном пламени","value":56789},{"string":"Дарует умение Достойный противник, если у вас есть аналогичное свойство на Запретном пламени","value":56967},{"string":"Дарует умение Вождь, если у вас есть аналогичное свойство на Запретном пламени","value":57052},{"string":"Дарует умение Сердце разрушения, если у вас есть аналогичное свойство на Запретном пламени","value":57197},{"string":"Дарует умение Усмиряющий пустоту, если у вас есть аналогичное свойство на Запретном пламени","value":57331},{"string":"Дарует умение Ритуал разрушения, если у вас есть аналогичное свойство на Запретном пламени","value":57560},{"string":"Дарует умение Обжигающая чистота, если у вас есть аналогичное свойство на Запретном пламени","value":57568},{"string":"Дарует умение Неудержимый, если у вас есть аналогичное свойство на Запретном пламени","value":5819},{"string":"Дарует умение Диверсант, если у вас есть аналогичное свойство на Запретном пламени","value":58827},{"string":"Дарует умение Аспект резни, если у вас есть аналогичное свойство на Запретном пламени","value":59920},{"string":"Дарует умение Мастер перегонки, если у вас есть аналогичное свойство на Запретном пламени","value":6038},{"string":"Дарует умение Просветленная набожность, если у вас есть аналогичное свойство на Запретном пламени","value":60462},{"string":"Дарует умение Покоритель, если у вас есть аналогичное свойство на Запретном пламени","value":61072},{"string":"Дарует умение Зачинщик раздора, если у вас есть аналогичное свойство на Запретном пламени","value":61259},{"string":"Дарует умение Рамако, свет солнца, если у вас есть аналогичное свойство на Запретном пламени","value":61355},{"string":"Дарует умение Благое намерение, если у вас есть аналогичное свойство на Запретном пламени","value":61372},{"string":"Дарует умение Восхождение Дикаря, если у вас есть аналогичное свойство на Запретном пламени","value":61437},{"string":"Дарует умение Рикошет, если у вас есть аналогичное свойство на Запретном пламени","value":61627},{"string":"Дарует умение Мастер-алхимик, если у вас есть аналогичное свойство на Запретном пламени","value":61805},{"string":"Дарует умение Запретная сила, если у вас есть аналогичное свойство на Запретном пламени","value":62504},{"string":"Дарует умение Несгибаемый, если у вас есть аналогичное свойство на Запретном пламени","value":62595},{"string":"Дарует умение Гроза легенд, если у вас есть аналогичное свойство на Запретном пламени","value":62817},{"string":"Дарует умение Мастер-хирург, если у вас есть аналогичное свойство на Запретном пламени","value":63293},{"string":"Дарует умение Путь Дуэлянта, если у вас есть аналогичное свойство на Запретном пламени","value":63357},{"string":"Дарует умение Расчётливая расплата, если у вас есть аналогичное свойство на Запретном пламени","value":63490},{"string":"Дарует умение Светоч гибели, если у вас есть аналогичное свойство на Запретном пламени","value":64588},{"string":"Дарует умение Непоколебимая вера, если у вас есть аналогичное свойство на Запретном пламени","value":64768},{"string":"Дарует умение Неестественная сила, если у вас есть аналогичное свойство на Запретном пламени","value":65153},{"string":"Дарует умение Дар природы, если у вас есть аналогичное свойство на Запретном пламени","value":65296},{"string":"Дарует умение Плут, если у вас есть аналогичное свойство на Запретном пламени","value":6778},{"string":"Дарует умение Война на истощение, если у вас есть аналогичное свойство на Запретном пламени","value":758},{"string":"Дарует умение Путь Охотницы, если у вас есть аналогичное свойство на Запретном пламени","value":7618},{"string":"Дарует умение Восхождение Бандита, если у вас есть аналогичное свойство на Запретном пламени","value":772},{"string":"Дарует умение Маг стихий, если у вас есть аналогичное свойство на Запретном пламени","value":8281},{"string":"Дарует умение Упорный выживший, если у вас есть аналогичное свойство на Запретном пламени","value":8419},{"string":"Дарует умение Хранитель, если у вас есть аналогичное свойство на Запретном пламени","value":8656},{"string":"Дарует умение Божественное провидение, если у вас есть аналогичное свойство на Запретном пламени","value":922},{"string":"Дарует умение Пренебрежение к боли, если у вас есть аналогичное свойство на Запретном пламени","value":9271},{"string":"Дарует умение Следопыт, если у вас есть аналогичное свойство на Запретном пламени","value":9327}],"trade":{"ids":{"explicit":["explicit.stat_2460506030"]},"option":true}} +{"ref":"Allocates # if you have the matching modifier on Forbidden Flesh","better":1,"matchers":[{"string":"Дарует умение Некромант, если у вас есть аналогичное свойство на Запретной плоти","value":10099},{"string":"Дарует умение Жестокое рвение, если у вас есть аналогичное свойство на Запретной плоти","value":10143},{"string":"Дарует умение Поиск веры, если у вас есть аналогичное свойство на Запретной плоти","value":1105},{"string":"Дарует умение Вдохновенный, если у вас есть аналогичное свойство на Запретной плоти","value":11412},{"string":"Дарует умение Несущий чуму, если у вас есть аналогичное свойство на Запретной плоти","value":11490},{"string":"Дарует умение Уроки сезонов, если у вас есть аналогичное свойство на Запретной плоти","value":11597},{"string":"Дарует умение Оккультист, если у вас есть аналогичное свойство на Запретной плоти","value":12597},{"string":"Дарует умение Мастер металла, если у вас есть аналогичное свойство на Запретной плоти","value":13374},{"string":"Дарует умение Орудия рвения, если у вас есть аналогичное свойство на Запретной плоти","value":13851},{"string":"Дарует умение Умелый сапёр, если у вас есть аналогичное свойство на Запретной плоти","value":14103},{"string":"Дарует умение Костяная преграда, если у вас есть аналогичное свойство на Запретной плоти","value":14603},{"string":"Дарует умение Восхождение Жреца, если у вас есть аналогичное свойство на Запретной плоти","value":15435},{"string":"Дарует умение Кромсающая техника, если у вас есть аналогичное свойство на Запретной плоти","value":15616},{"string":"Дарует умение Непревзойдённая техника, если у вас есть аналогичное свойство на Запретной плоти","value":16306},{"string":"Дарует умение Клятва зимы, если у вас есть аналогичное свойство на Запретной плоти","value":16848},{"string":"Дарует умение Пироман, если у вас есть аналогичное свойство на Запретной плоти","value":16940},{"string":"Дарует умение Мастер по токсинам, если у вас есть аналогичное свойство на Запретной плоти","value":1697},{"string":"Дарует умение Хинекора, ярость смерти, если у вас есть аналогичное свойство на Запретной плоти","value":1731},{"string":"Дарует умение Подавление, если у вас есть аналогичное свойство на Запретной плоти","value":17315},{"string":"Дарует умение Непоколебимый, если у вас есть аналогичное свойство на Запретной плоти","value":1734},{"string":"Дарует умение Неустанный, если у вас есть аналогичное свойство на Запретной плоти","value":17988},{"string":"Дарует умение Гнев природы, если у вас есть аналогичное свойство на Запретной плоти","value":18054},{"string":"Дарует умение Авантюрист, если у вас есть аналогичное свойство на Запретной плоти","value":19083},{"string":"Дарует умение Раскрытый потенциал, если у вас есть аналогичное свойство на Запретной плоти","value":19355},{"string":"Дарует умение Орудия добродетели, если у вас есть аналогичное свойство на Запретной плоти","value":19417},{"string":"Дарует умение Ядовитый удар, если у вас есть аналогичное свойство на Запретной плоти","value":1945},{"string":"Дарует умение Работа с ядом, если у вас есть аналогичное свойство на Запретной плоти","value":19598},{"string":"Дарует умение Непоколебимая защита, если у вас есть аналогичное свойство на Запретной плоти","value":19641},{"string":"Дарует умение Засада и ликвидация, если у вас есть аналогичное свойство на Запретной плоти","value":21264},{"string":"Дарует умение Мощная точность, если у вас есть аналогичное свойство на Запретной плоти","value":21455},{"string":"Дарует умение Защита ветра, если у вас есть аналогичное свойство на Запретной плоти","value":23169},{"string":"Дарует умение На шаг впереди, если у вас есть аналогичное свойство на Запретной плоти","value":23225},{"string":"Дарует умение Трупный пакт, если у вас есть аналогичное свойство на Запретной плоти","value":23572},{"string":"Дарует умение Жажда бойни, если у вас есть аналогичное свойство на Запретной плоти","value":24528},{"string":"Дарует умение Путь Дикаря, если у вас есть аналогичное свойство на Запретной плоти","value":24755},{"string":"Дарует умение Восхождение Дуэлянта, если у вас есть аналогичное свойство на Запретной плоти","value":24798},{"string":"Дарует умение Порывы ветра, если у вас есть аналогичное свойство на Запретной плоти","value":24848},{"string":"Дарует умение Истощающее присутствие, если у вас есть аналогичное свойство на Запретной плоти","value":25309},{"string":"Дарует умение Властолюбие, если у вас есть аналогичное свойство на Запретной плоти","value":25651},{"string":"Дарует умение Повелитель стихий, если у вас есть аналогичное свойство на Запретной плоти","value":258},{"string":"Дарует умение Не только умение, если у вас есть аналогичное свойство на Запретной плоти","value":2598},{"string":"Дарует умение Нескончаемые боеприпасы, если у вас есть аналогичное свойство на Запретной плоти","value":26067},{"string":"Дарует умение Несущая бурю, если у вас есть аналогичное свойство на Запретной плоти","value":27038},{"string":"Дарует умение Светоч пустоты, если у вас есть аналогичное свойство на Запретной плоти","value":27096},{"string":"Дарует умение Девять жизней, если у вас есть аналогичное свойство на Запретной плоти","value":27602},{"string":"Дарует умение Бьёт первым, погибает последним, если у вас есть аналогичное свойство на Запретной плоти","value":27604},{"string":"Дарует умение Беспричинное насилие, если у вас есть аналогичное свойство на Запретной плоти","value":27864},{"string":"Дарует умение Идеальное преступление, если у вас есть аналогичное свойство на Запретной плоти","value":28535},{"string":"Дарует умение Довлеющая сила, если у вас есть аналогичное свойство на Запретной плоти","value":2872},{"string":"Дарует умение Ходящий в тумане, если у вас есть аналогичное свойство на Запретной плоти","value":28782},{"string":"Дарует умение Останавливающий сердце, если у вас есть аналогичное свойство на Запретной плоти","value":28884},{"string":"Дарует умение [UNUSED] Slamako, Slam's Slam, если у вас есть аналогичное свойство на Запретной плоти","value":28986},{"string":"Дарует умение Храм мысли, если у вас есть аналогичное свойство на Запретной плоти","value":29026},{"string":"Дарует умение Разгон, если у вас есть аналогичное свойство на Запретной плоти","value":29630},{"string":"Дарует умение Опытный травник, если у вас есть аналогичное свойство на Запретной плоти","value":29662},{"string":"Дарует умение Мастер побега, если у вас есть аналогичное свойство на Запретной плоти","value":29825},{"string":"Дарует умение Защитник, если у вас есть аналогичное свойство на Запретной плоти","value":30919},{"string":"Дарует умение Нечестивая власть, если у вас есть аналогичное свойство на Запретной плоти","value":31344},{"string":"Дарует умение Клятва весны, если у вас есть аналогичное свойство на Запретной плоти","value":31364},{"string":"Дарует умение Сиона, рёв солнца, если у вас есть аналогичное свойство на Запретной плоти","value":31667},{"string":"Дарует умение Стойкость, если у вас есть аналогичное свойство на Запретной плоти","value":31700},{"string":"Дарует умение Палач, если у вас есть аналогичное свойство на Запретной плоти","value":3184},{"string":"Дарует умение Валако, объятья шторма, если у вас есть аналогичное свойство на Запретной плоти","value":32249},{"string":"Дарует умение Вестник войны, если у вас есть аналогичное свойство на Запретной плоти","value":32251},{"string":"Дарует умение Благочестивый путь, если у вас есть аналогичное свойство на Запретной плоти","value":32816},{"string":"Дарует умение Быстрый убийца, если у вас есть аналогичное свойство на Запретной плоти","value":32947},{"string":"Дарует умение Клятва лета, если у вас есть аналогичное свойство на Запретной плоти","value":33645},{"string":"Дарует умение Несокрушимый герой, если у вас есть аналогичное свойство на Запретной плоти","value":33940},{"string":"Дарует умение Ритуал пробуждения, если у вас есть аналогичное свойство на Запретной плоти","value":34434},{"string":"Дарует умение Вечный голод, если у вас есть аналогичное свойство на Запретной плоти","value":34484},{"string":"Дарует умение Снайпер, если у вас есть аналогичное свойство на Запретной плоти","value":34567},{"string":"Дарует умение Гладиатор, если у вас есть аналогичное свойство на Запретной плоти","value":34774},{"string":"Дарует умение Пожиратель сущности, если у вас есть аналогичное свойство на Запретной плоти","value":3554},{"string":"Дарует умение Завоеватель, если у вас есть аналогичное свойство на Запретной плоти","value":35750},{"string":"Дарует умение Повелитель тьмы, если у вас есть аналогичное свойство на Запретной плоти","value":36017},{"string":"Дарует умение Опытный охотник, если у вас есть аналогичное свойство на Запретной плоти","value":36958},{"string":"Дарует умение Расцвет греха, если у вас есть аналогичное свойство на Запретной плоти","value":37127},{"string":"Дарует умение Оплот зла, если у вас есть аналогичное свойство на Запретной плоти","value":37492},{"string":"Дарует умение Воздействие, если у вас есть аналогичное свойство на Запретной плоти","value":38180},{"string":"Дарует умение Цепная реакция, если у вас есть аналогичное свойство на Запретной плоти","value":38918},{"string":"Дарует умение Безупречная свирепость, если у вас есть аналогичное свойство на Запретной плоти","value":38999},{"string":"Дарует умение Чемпион, если у вас есть аналогичное свойство на Запретной плоти","value":39598},{"string":"Дарует умение Оплот надежды, если у вас есть аналогичное свойство на Запретной плоти","value":39728},{"string":"Дарует умение Святилище, если у вас есть аналогичное свойство на Запретной плоти","value":39790},{"string":"Дарует умение Подрывник, если у вас есть аналогичное свойство на Запретной плоти","value":39834},{"string":"Дарует умение Предзнаменование раскаяния, если у вас есть аналогичное свойство на Запретной плоти","value":40059},{"string":"Дарует умение Густая пропитка, если у вас есть аналогичное свойство на Запретной плоти","value":40104},{"string":"Дарует умение Колдовское благословение, если у вас есть аналогичное свойство на Запретной плоти","value":40510},{"string":"Дарует умение Несущая зиму, если у вас есть аналогичное свойство на Запретной плоти","value":40810},{"string":"Дарует умение Возмездие природы, если у вас есть аналогичное свойство на Запретной плоти","value":40813},{"string":"Дарует умение Разрушитель чар, если у вас есть аналогичное свойство на Запретной плоти","value":41891},{"string":"Дарует умение Берсерк, если у вас есть аналогичное свойство на Запретной плоти","value":4194},{"string":"Дарует умение Иерофант, если у вас есть аналогичное свойство на Запретной плоти","value":42144},{"string":"Дарует умение Лучезарная вера, если у вас есть аналогичное свойство на Запретной плоти","value":42264},{"string":"Дарует умение Критический удар, если у вас есть аналогичное свойство на Запретной плоти","value":4242},{"string":"Дарует умение Смертоносный расцвет, если у вас есть аналогичное свойство на Запретной плоти","value":42469},{"string":"Дарует умение Убийца, если у вас есть аналогичное свойство на Запретной плоти","value":43122},{"string":"Дарует умение Рубака, если у вас есть аналогичное свойство на Запретной плоти","value":43195},{"string":"Дарует умение Инквизитор, если у вас есть аналогичное свойство на Запретной плоти","value":43962},{"string":"Дарует умение Недрогнувший, если у вас есть аналогичное свойство на Запретной плоти","value":44297},{"string":"Дарует умение Энтузиазм, если у вас есть аналогичное свойство на Запретной плоти","value":44482},{"string":"Дарует умение Лучезарная защита, если у вас есть аналогичное свойство на Запретной плоти","value":4494},{"string":"Дарует умение Дальний выстрел, если у вас есть аналогичное свойство на Запретной плоти","value":45313},{"string":"Дарует умение Морозный след, если у вас есть аналогичное свойство на Запретной плоти","value":47630},{"string":"Дарует умение Специалист по бомбам, если у вас есть аналогичное свойство на Запретной плоти","value":47778},{"string":"Дарует умение Неминуемое правосудие, если у вас есть аналогичное свойство на Запретной плоти","value":48214},{"string":"Дарует умение Смертельный удар, если у вас есть аналогичное свойство на Запретной плоти","value":48239},{"string":"Дарует умение Тасалио, очищающие воды, если у вас есть аналогичное свойство на Запретной плоти","value":48480},{"string":"Дарует умение Материнские ученья, если у вас есть аналогичное свойство на Запретной плоти","value":4849},{"string":"Дарует умение Госпожа жертвоприношений, если у вас есть аналогичное свойство на Запретной плоти","value":48719},{"string":"Дарует умение Пьющий душу, если у вас есть аналогичное свойство на Запретной плоти","value":48999},{"string":"Дарует умение Бастион стихий, если у вас есть аналогичное свойство на Запретной плоти","value":4917},{"string":"Дарует умение Восхождение Охотницы, если у вас есть аналогичное свойство на Запретной плоти","value":49532},{"string":"Дарует умение Тахоа, сила леса, если у вас есть аналогичное свойство на Запретной плоти","value":5029},{"string":"Дарует умение Хвалебная молитва, если у вас есть аналогичное свойство на Запретной плоти","value":50356},{"string":"Дарует умение Нгамаху, натиск пламени, если у вас есть аналогичное свойство на Запретной плоти","value":50692},{"string":"Дарует умение Рожденный во мраке, если у вас есть аналогичное свойство на Запретной плоти","value":5087},{"string":"Дарует умение Природный адреналин, если у вас есть аналогичное свойство на Запретной плоти","value":51101},{"string":"Дарует умение Несущая разорение, если у вас есть аналогичное свойство на Запретной плоти","value":51391},{"string":"Дарует умение Как часы, если у вас есть аналогичное свойство на Запретной плоти","value":51462},{"string":"Дарует умение Знамение предназначения, если у вас есть аналогичное свойство на Запретной плоти","value":51492},{"string":"Дарует умение Восхождение Ведьмы, если у вас есть аналогичное свойство на Запретной плоти","value":51782},{"string":"Дарует умение Неукротимая решимость, если у вас есть аналогичное свойство на Запретной плоти","value":52435},{"string":"Дарует умение Мастер оружия, если у вас есть аналогичное свойство на Запретной плоти","value":52575},{"string":"Дарует умение Тукохама, вестник войны, если у вас есть аналогичное свойство на Запретной плоти","value":53095},{"string":"Дарует умение Несущая пламя, если у вас есть аналогичное свойство на Запретной плоти","value":53123},{"string":"Дарует умение Несокрушимый, если у вас есть аналогичное свойство на Запретной плоти","value":53816},{"string":"Дарует умение Благочестивая предусмотрительность, если у вас есть аналогичное свойство на Запретной плоти","value":53884},{"string":"Дарует умение Путь Бандита, если у вас есть аналогичное свойство на Запретной плоти","value":53992},{"string":"Дарует умение Бездумная агрессия, если у вас есть аналогичное свойство на Запретной плоти","value":54159},{"string":"Дарует умение Фокус, если у вас есть аналогичное свойство на Запретной плоти","value":5443},{"string":"Дарует умение Путь Жреца, если у вас есть аналогичное свойство на Запретной плоти","value":54877},{"string":"Дарует умение Нечестивый страж, если у вас есть аналогичное свойство на Запретной плоти","value":5502},{"string":"Дарует умение Час нужды, если у вас есть аналогичное свойство на Запретной плоти","value":55146},{"string":"Дарует умение Воплощение лесов, если у вас есть аналогичное свойство на Запретной плоти","value":55509},{"string":"Дарует умение Эрудит, если у вас есть аналогичное свойство на Запретной плоти","value":55867},{"string":"Дарует умение Слуга стихий, если у вас есть аналогичное свойство на Запретной плоти","value":56461},{"string":"Дарует умение Путь Ведьмы, если у вас есть аналогичное свойство на Запретной плоти","value":56722},{"string":"Дарует умение Неумолимый, если у вас есть аналогичное свойство на Запретной плоти","value":56789},{"string":"Дарует умение Достойный противник, если у вас есть аналогичное свойство на Запретной плоти","value":56967},{"string":"Дарует умение Вождь, если у вас есть аналогичное свойство на Запретной плоти","value":57052},{"string":"Дарует умение Сердце разрушения, если у вас есть аналогичное свойство на Запретной плоти","value":57197},{"string":"Дарует умение Усмиряющий пустоту, если у вас есть аналогичное свойство на Запретной плоти","value":57331},{"string":"Дарует умение Ритуал разрушения, если у вас есть аналогичное свойство на Запретной плоти","value":57560},{"string":"Дарует умение Обжигающая чистота, если у вас есть аналогичное свойство на Запретной плоти","value":57568},{"string":"Дарует умение Неудержимый, если у вас есть аналогичное свойство на Запретной плоти","value":5819},{"string":"Дарует умение Диверсант, если у вас есть аналогичное свойство на Запретной плоти","value":58827},{"string":"Дарует умение Аспект резни, если у вас есть аналогичное свойство на Запретной плоти","value":59920},{"string":"Дарует умение Мастер перегонки, если у вас есть аналогичное свойство на Запретной плоти","value":6038},{"string":"Дарует умение Просветленная набожность, если у вас есть аналогичное свойство на Запретной плоти","value":60462},{"string":"Дарует умение Покоритель, если у вас есть аналогичное свойство на Запретной плоти","value":61072},{"string":"Дарует умение Зачинщик раздора, если у вас есть аналогичное свойство на Запретной плоти","value":61259},{"string":"Дарует умение Рамако, свет солнца, если у вас есть аналогичное свойство на Запретной плоти","value":61355},{"string":"Дарует умение Благое намерение, если у вас есть аналогичное свойство на Запретной плоти","value":61372},{"string":"Дарует умение Восхождение Дикаря, если у вас есть аналогичное свойство на Запретной плоти","value":61437},{"string":"Дарует умение Рикошет, если у вас есть аналогичное свойство на Запретной плоти","value":61627},{"string":"Дарует умение Мастер-алхимик, если у вас есть аналогичное свойство на Запретной плоти","value":61805},{"string":"Дарует умение Запретная сила, если у вас есть аналогичное свойство на Запретной плоти","value":62504},{"string":"Дарует умение Несгибаемый, если у вас есть аналогичное свойство на Запретной плоти","value":62595},{"string":"Дарует умение Гроза легенд, если у вас есть аналогичное свойство на Запретной плоти","value":62817},{"string":"Дарует умение Мастер-хирург, если у вас есть аналогичное свойство на Запретной плоти","value":63293},{"string":"Дарует умение Путь Дуэлянта, если у вас есть аналогичное свойство на Запретной плоти","value":63357},{"string":"Дарует умение Расчётливая расплата, если у вас есть аналогичное свойство на Запретной плоти","value":63490},{"string":"Дарует умение Светоч гибели, если у вас есть аналогичное свойство на Запретной плоти","value":64588},{"string":"Дарует умение Непоколебимая вера, если у вас есть аналогичное свойство на Запретной плоти","value":64768},{"string":"Дарует умение Неестественная сила, если у вас есть аналогичное свойство на Запретной плоти","value":65153},{"string":"Дарует умение Дар природы, если у вас есть аналогичное свойство на Запретной плоти","value":65296},{"string":"Дарует умение Плут, если у вас есть аналогичное свойство на Запретной плоти","value":6778},{"string":"Дарует умение Война на истощение, если у вас есть аналогичное свойство на Запретной плоти","value":758},{"string":"Дарует умение Путь Охотницы, если у вас есть аналогичное свойство на Запретной плоти","value":7618},{"string":"Дарует умение Восхождение Бандита, если у вас есть аналогичное свойство на Запретной плоти","value":772},{"string":"Дарует умение Маг стихий, если у вас есть аналогичное свойство на Запретной плоти","value":8281},{"string":"Дарует умение Упорный выживший, если у вас есть аналогичное свойство на Запретной плоти","value":8419},{"string":"Дарует умение Хранитель, если у вас есть аналогичное свойство на Запретной плоти","value":8656},{"string":"Дарует умение Божественное провидение, если у вас есть аналогичное свойство на Запретной плоти","value":922},{"string":"Дарует умение Пренебрежение к боли, если у вас есть аналогичное свойство на Запретной плоти","value":9271},{"string":"Дарует умение Следопыт, если у вас есть аналогичное свойство на Запретной плоти","value":9327}],"trade":{"ids":{"explicit":["explicit.stat_1190333629"]},"option":true}} +{"ref":"Always inflict Brittle while affected by Hatred","better":1,"matchers":[{"string":"Всегда накладывает Хрупкость под действием Холодной ненависти"}],"trade":{"ids":{"explicit":["explicit.stat_13285831"]}}} +{"ref":"Always Sap while affected by Wrath","better":1,"matchers":[{"string":"Всегда накладывает Ошеломление под действием Грозного гнева"}],"trade":{"ids":{"explicit":["explicit.stat_2499038519"]}}} +{"ref":"Always Scorch while affected by Anger","better":1,"matchers":[{"string":"Всегда накладывает Опаление под действием Жгучей злобы"}],"trade":{"ids":{"explicit":["explicit.stat_1585991257"]}}} +{"ref":"An additional Curse can be applied to you","better":1,"matchers":[{"string":"На вас можно наложить дополнительных проклятий: #"},{"string":"На вас можно наложить дополнительное проклятие","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3112863846"]}}} +{"ref":"An additional Room is revealed on the Sanctum Map","better":1,"matchers":[{"string":"На карте Святилища раскрыто дополнительных комнат: #"},{"string":"На карте Святилища раскрыта дополнительная комната","value":1}],"trade":{"ids":{"explicit":["sanctum.stat_386901949"]}}} +{"ref":"An Enemy Writhing Worms escape the Flask when used\nWrithing Worms are destroyed when Hit","better":1,"matchers":[{"string":"При использовании из флакона появляется враждебных извивающихся червей: #\nПри получении удара извивающиеся черви погибают"},{"string":"При использовании из флакона появляются враждебные извивающиеся черви\nПри получении удара извивающиеся черви погибают","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2434293916"]}}} +{"ref":"Ancestral Bond","better":1,"matchers":[{"string":"Связь с предками"}],"trade":{"ids":{"explicit":["explicit.stat_2648570028"],"fractured":["fractured.stat_2648570028"],"scourge":["scourge.stat_2648570028"]}}} +{"ref":"Ancestral Cry has a minimum of # Power","better":1,"matchers":[{"string":"Клич предков учитывает минимум # влияния"}],"trade":{"ids":{"enchant":["enchant.stat_988554168"]}}} +{"ref":"Ancestral Protector Totem deals #% increased Damage","better":1,"matchers":[{"string":"Защитник предков наносит увеличенный на #% урон"},{"string":"Защитник предков наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2596239449"]}}} +{"ref":"Ancestral Protector Totem grants #% increased Attack Speed while Active","better":1,"matchers":[{"string":"Защитник предков дарует #% повышение скорости атаки, пока действует"},{"string":"Защитник предков дарует #% снижение скорости атаки, пока действует","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1303996723"]}}} +{"ref":"Ancestral Warchief Totem grants #% increased Melee Damage while Active","better":1,"matchers":[{"string":"Вождь предков дарует #% увеличение урона в ближнем бою, пока действует"},{"string":"Вождь предков дарует #% уменьшение урона в ближнем бою, пока действует","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3543257184"]}}} +{"ref":"and nearby Allies Regenerate 200 Life per second","better":1,"matchers":[{"string":"и ближайшие союзники регенерируют 200 здоровья в секунду"}],"trade":{"ids":{"explicit":["explicit.stat_1168603868"]}}} +{"ref":"Anger has #% increased Aura Effect","better":1,"matchers":[{"string":"#% усиление эффекта ауры Жгучей злобы"},{"string":"#% ослабление эффекта ауры Жгучей злобы","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1592278124"],"implicit":["implicit.stat_1592278124"],"fractured":["fractured.stat_1592278124"]}}} +{"ref":"Anger has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"#% увеличение эффективности удержания маны Жгучей злобой"},{"string":"#% уменьшение эффективности удержания маны Жгучей злобой","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2549369799","explicit.stat_2963485753"],"fractured":["fractured.stat_2549369799"],"enchant":["enchant.stat_2549369799","enchant.stat_2963485753"]}}} +{"ref":"Anger has no Reservation","better":1,"matchers":[{"string":"Жгучая злоба не удерживает ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_2189891129"]}}} +{"ref":"Animated Guardian deals #% increased Damage per Animated Weapon","better":1,"matchers":[{"string":"Аниматрон наносит увеличенный на #% урон за каждое оживлённое оружие"},{"string":"Аниматрон наносит уменьшенный на #% урон за каждое оживлённое оружие","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_759294825"]}}} +{"ref":"Animated Guardians deal #% increased Damage","better":1,"matchers":[{"string":"Аниматроны наносят увеличенный на #% урон"},{"string":"Аниматроны наносят уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4157143640"]}}} +{"ref":"Animated Minions' Melee Attacks deal #% less Splash Damage to surrounding targets","better":-1,"matchers":[{"string":"Атаки ближнего боя оживленных приспешников наносят на #% больше урона по целям вокруг"},{"string":"Атаки ближнего боя оживленных приспешников наносят на #% меньше урона по целям вокруг","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_478698670"]},"inverted":true}} +{"ref":"Animated Minions' Melee Attacks deal Splash Damage to surrounding targets","better":1,"matchers":[{"string":"Атаки ближнего боя оживлённых приспешников наносят урон по целям вокруг"}],"trade":{"ids":{"explicit":["explicit.stat_91242932"]}}} +{"ref":"Animated Weapons deal #% increased Damage","better":1,"matchers":[{"string":"#% увеличение урона оживлённого оружия"},{"string":"#% уменьшение урона оживлённого оружия","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1819674879"]}}} +{"ref":"Arc Chains an additional time","better":1,"matchers":[{"string":"Цепь молний поражает дополнительных целей по цепи: #"}],"trade":{"ids":{"enchant":["enchant.stat_2461552986"]}}} +{"ref":"Arc deals #% increased Damage for each time it has Chained","better":1,"matchers":[{"string":"Цепь молний наносит увеличенный на #% урон за каждую пораженную по цепи цель"}],"trade":{"ids":{"enchant":["enchant.stat_3998182656"]}}} +{"ref":"Arc has +#% chance to Shock","better":1,"matchers":[{"string":"Цепь молний имеет #% шанс наложить шок"},{"string":"Цепь молний всегда накладывает шок","value":100}],"trade":{"ids":{"enchant":["enchant.stat_195463427"]}}} +{"ref":"Arcane Cloak grants Life Regeneration equal to #% of Mana Spent per Second","better":1,"matchers":[{"string":"Чародейский покров дарует регенерацию здоровья в секунду в размере #% от израсходованной маны"}],"trade":{"ids":{"enchant":["enchant.stat_3606492882"]}}} +{"ref":"Arcane Cloak Spends an additional #% of current Mana","better":1,"matchers":[{"string":"Чародейский покров расходует дополнительно #% от текущей маны"}],"trade":{"ids":{"enchant":["enchant.stat_122106412"]}}} +{"ref":"Arcanist Brand has #% increased Cast Speed","better":1,"matchers":[{"string":"#% повышение скорости сотворения чар Клеймом чаротворца"},{"string":"#% снижение скорости сотворения чар Клеймом чаротворца","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1147445274"]}}} +{"ref":"Arctic Armour has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"#% увеличение эффективности удержания маны Северной броней"},{"string":"#% уменьшение эффективности удержания маны Северной броней","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2351239732","explicit.stat_2605040931"],"implicit":["implicit.stat_2351239732"],"fractured":["fractured.stat_2351239732","fractured.stat_2605040931"],"enchant":["enchant.stat_2351239732","enchant.stat_2605040931"]}}} +{"ref":"Arctic Armour has no Reservation","better":1,"matchers":[{"string":"Северная броня не удерживает ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_1483066460"]}}} +{"ref":"Area can contain Breaches","better":1,"matchers":[{"string":"В области могут встречаться Разломы"}],"trade":{"ids":{"enchant":["enchant.stat_2180286756"]}}} +{"ref":"Area contains # additional Chest Marker","better":1,"fromAreaMods":true,"matchers":[{"string":"Область содержит дополнительных знаков с сундуками: #"}],"trade":{"ids":{"implicit":["implicit.stat_4160330571"]}}} +{"ref":"Area contains # additional pack of Corrupted Vaal Monsters","better":1,"fromAreaMods":true,"matchers":[{"string":"В областях можно встретить дополнительных групп оскверненных монстров ваал: #"}],"trade":{"ids":{"enchant":["enchant.stat_1867024035"]}}} +{"ref":"Area contains #% increased number of Monster Markers","better":1,"fromAreaMods":true,"matchers":[{"string":"Область содержит дополнительных знаков с монстрами: #"}],"trade":{"ids":{"implicit":["implicit.stat_1915989164"]}}} +{"ref":"Area contains #% increased number of Remnants","better":1,"fromAreaMods":true,"matchers":[{"string":"#% увеличение количества реликтов в области"}],"trade":{"ids":{"implicit":["implicit.stat_2991413918"]}}} +{"ref":"Area contains #% increased number of Runic Monster Markers","better":1,"fromAreaMods":true,"matchers":[{"string":"#% увеличение количества знаков с руническими монстрами в области"},{"string":"#% уменьшение количества знаков с руническими монстрами в области"}],"trade":{"ids":{"implicit":["implicit.stat_1640965354"],"enchant":["enchant.stat_1640965354"]}}} +{"ref":"Area contains a Blight Encounter","better":1,"matchers":[{"string":"В области можно встретить схватку со Скверной"}],"trade":{"ids":{"explicit":["explicit.stat_2459443694"],"enchant":["enchant.stat_2459443694"]}}} +{"ref":"Area contains an additional Abyss","better":1,"matchers":[{"string":"В области можно встретить дополнительных Бездн: #"},{"string":"В области можно встретить дополнительную Бездну","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1070816711"],"implicit":["implicit.stat_1070816711"],"enchant":["enchant.stat_1070816711"]}}} +{"ref":"Area contains an additional Breach","better":1,"matchers":[{"string":"В области можно встретить дополнительных Разломов: #"},{"string":"В области можно встретить дополнительный Разлом","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3224819794"],"implicit":["implicit.stat_3224819794"],"enchant":["enchant.stat_3224819794"]}}} +{"ref":"Area contains an additional guarded Exquisite Vaal Vessel","better":1,"fromAreaMods":true,"matchers":[{"string":"В области можно встретить дополнительных охраняемых изысканных сосудов ваал: #"},{"string":"В области можно встретить дополнительный охраняемый изысканный сосуд ваал","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1612402470"],"implicit":["implicit.stat_1612402470"]}}} +{"ref":"Area contains an additional Imprisoned Monster","better":1,"matchers":[{"string":"В области можно встретить # дополнительных заточённых монстров"},{"string":"В области можно встретить дополнительного заточённого монстра","value":1}],"trade":{"ids":{"implicit":["implicit.stat_395808938"],"enchant":["enchant.stat_395808938"]}}} +{"ref":"Area contains an additional Legion Encounter","better":1,"matchers":[{"string":"В области можно встретить дополнительных Легионов: #"},{"string":"В области можно встретить дополнительный Легион","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3897451709"],"implicit":["implicit.stat_3897451709"],"enchant":["enchant.stat_3897451709"]}}} +{"ref":"Area contains an additional Shrine","better":1,"matchers":[{"string":"В области можно найти дополнительных алтарей: #"},{"string":"В области можно найти содержит дополнительный алтарь","value":1}],"trade":{"ids":{"implicit":["implicit.stat_1468737867"],"enchant":["enchant.stat_1468737867"]}}} +{"ref":"Area contains an additional Smuggler's Cache","better":1,"matchers":[{"string":"В области можно встретить дополнительных тайников контрабандиста: #"},{"string":"В области можно встретить дополнительный тайник контрабандиста","value":1}],"trade":{"ids":{"implicit":["implicit.stat_3307533469"]}}} +{"ref":"Area contains an additional Strongbox","better":1,"matchers":[{"string":"В области можно найти дополнительных ларцов: #"},{"string":"В области можно найти дополнительный ларец","value":1}],"trade":{"ids":{"implicit":["implicit.stat_3240183538"],"enchant":["enchant.stat_3240183538"]}}} +{"ref":"Area contains an additional Underground Area","better":1,"fromAreaMods":true,"matchers":[{"string":"Область содержит дополнительных подземных областей: #"},{"string":"Область содержит дополнительную подземную область","value":1}],"trade":{"ids":{"implicit":["implicit.stat_1160596338"]}}} +{"ref":"Area contains an Expedition Boss (#)","better":1,"matchers":[{"string":"В области можно встретить Медведя, Грозу героев","value":1},{"string":"В области можно встретить Ворану, Стоящую до конца","value":2},{"string":"В области можно встретить Утреда, Алчного предателя","value":3},{"string":"В области можно встретить Олрота, Истока падения","value":4}],"trade":{"ids":{"implicit":["implicit.stat_3159649981"]},"option":true}} +{"ref":"Area contains an Expedition Encounter","better":1,"matchers":[{"string":"В области можно встретить экспедицию"}],"trade":{"ids":{"explicit":["explicit.stat_3557750122"],"implicit":["implicit.stat_3557750122"]}}} +{"ref":"Area contains Drowning Orbs","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Область содержит утопляющие сферы"}],"trade":{"ids":{"explicit":["explicit.stat_25225034"],"fractured":["fractured.stat_25225034"]}}} +{"ref":"Area contains many Totems","better":1,"fromAreaMods":true,"matchers":[{"string":"В области много тотемов"}],"trade":{"ids":{"explicit":["explicit.stat_1000591322"],"fractured":["fractured.stat_1000591322"]}}} +{"ref":"Area contains Metamorph Monsters","better":1,"matchers":[{"string":"В области можно встретить монстров Метаморфа"}],"trade":{"ids":{"implicit":["implicit.stat_1994562755"],"enchant":["enchant.stat_1994562755"]}}} +{"ref":"Area contains Petrification Statues","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Область содержит статуи окаменения"}],"trade":{"ids":{"explicit":["explicit.stat_3709982550"],"fractured":["fractured.stat_3709982550"]}}} +{"ref":"Area contains Runes of the Searing Exarch","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Область содержит руны Пылающего экзарха"}],"trade":{"ids":{"explicit":["explicit.stat_2073168229"],"fractured":["fractured.stat_2073168229"]}}} +{"ref":"Area contains The Sacred Grove","better":1,"matchers":[{"string":"В области можно встретить Священную рощу"}],"trade":{"ids":{"implicit":["implicit.stat_1145451936"],"enchant":["enchant.stat_1145451936"]}}} +{"ref":"Area contains two Unique Bosses","better":1,"fromAreaMods":true,"matchers":[{"string":"В области можно встретить двух уникальных боссов"}],"trade":{"ids":{"explicit":["explicit.stat_799271621"],"fractured":["fractured.stat_799271621"]}}} +{"ref":"Area contains Unstable Tentacle Fiends","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Область содержит нестабильные исчадия с щупальцами"}],"trade":{"ids":{"explicit":["explicit.stat_1943574423"],"fractured":["fractured.stat_1943574423"]}}} +{"ref":"Area has an additional random Scarab effect","better":1,"fromAreaMods":true,"matchers":[{"string":"На область действует дополнительных эффектов случайного скарабея: #"},{"string":"На область действует дополнительный эффект случайного скарабея","value":1}],"trade":{"ids":{"implicit":["implicit.stat_754268389"]}}} +{"ref":"Area has increased monster variety","better":1,"fromAreaMods":true,"matchers":[{"string":"Область населяют разнообразные монстры"}],"trade":{"ids":{"explicit":["explicit.stat_3561450806"],"fractured":["fractured.stat_3561450806"]}}} +{"ref":"Area has patches of Awakeners' Desolation","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Область содержит участки Опустошения Пробудителя"}],"trade":{"ids":{"explicit":["explicit.stat_563277852"],"fractured":["fractured.stat_563277852"]}}} +{"ref":"Area has patches of Burning Ground","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Область имеет участки горящей земли"}],"trade":{"ids":{"explicit":["explicit.stat_133340941","explicit.stat_3665534869"],"fractured":["fractured.stat_133340941"]}}} +{"ref":"Area has patches of Chilled Ground","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Область имеет участки замерзшей земли"}],"trade":{"ids":{"explicit":["explicit.stat_349586058","explicit.stat_389725673"],"fractured":["fractured.stat_349586058"]}}} +{"ref":"Area has patches of Consecrated Ground","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Область содержит участки освященной земли"}],"trade":{"ids":{"explicit":["explicit.stat_1948962470"],"fractured":["fractured.stat_1948962470"]}}} +{"ref":"Area has patches of desecrated ground","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Область имеет участки осквернённой земли"}],"trade":{"ids":{"explicit":["explicit.stat_3577222856"],"fractured":["fractured.stat_3577222856"]}}} +{"ref":"Area has patches of Shocked Ground which increase Damage taken by #%","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Область содержит участки заряженной земли, повышающей получаемый урон на #%"}],"trade":{"ids":{"explicit":["explicit.stat_3246076198"],"fractured":["fractured.stat_3246076198"]}}} +{"ref":"Area is affected by a Corrupting Tempest","better":1,"fromAreaMods":true,"matchers":[{"string":"Область находится под действием Бури порчи"}],"trade":{"ids":{"explicit":["explicit.stat_2836394633"]}}} +{"ref":"Area is affected by an additional random Unallocated Notable Atlas Passives","better":1,"fromAreaMods":true,"matchers":[{"string":"На область действует дополнительных случайных невыбранных значимых пассивных умений Атласа: #"},{"string":"На область действует дополнительное случайное невыбранное значимое пассивное умение Атласа","value":1}],"trade":{"ids":{"implicit":["implicit.stat_2834034653"]}}} +{"ref":"Area is haunted by # additional Tormented Spirit","better":1,"matchers":[{"string":"В области обитают дополнительных страдающих духов: #"},{"string":"В области обитает дополнительный страдающий дух","value":1}],"trade":{"ids":{"explicit":["explicit.stat_358129101"],"implicit":["implicit.stat_358129101"]}}} +{"ref":"Area is infested with Fungal Growths\nMap's Item Quantity Modifiers also affect Blight Chest count at 25% value\nCan be Anointed up to 3 times","better":1,"matchers":[{"string":"Область заражена грибными наростами\nМодификаторы количества найденных предметов на этой карте также действуют на количество сундуков Скверны в размере 40% от их значения\nМожно обработать маслами до # раз"},{"string":"Область заражена грибными наростами\nМодификаторы количества найденных предметов на этой карте также действуют на количество сундуков Скверны в размере 20% от их значения\nМожно обработать маслами до 3 раз","value":1}],"trade":{"ids":{"implicit":["implicit.stat_299373046"]}}} +{"ref":"Area is influenced by #","better":1,"matchers":[{"string":"Область находится под влиянием Создателя","value":1},{"string":"Область находится под влиянием Древнего","value":2}],"trade":{"ids":{"implicit":["implicit.stat_1792283443"]},"option":true}} +{"ref":"Area is inhabited by # additional Rogue Exile","better":1,"matchers":[{"string":"# дополнительный бродячий изгнанник в области"},{"string":"Дополнительных бродячих изгнанников в области: #"}],"trade":{"ids":{"explicit":["explicit.stat_3550168289"],"implicit":["implicit.stat_3550168289"],"fractured":["fractured.stat_3550168289"],"enchant":["enchant.stat_3550168289"]}}} +{"ref":"Area is inhabited by Abominations","better":1,"fromAreaMods":true,"matchers":[{"string":"В областях встречаются Отродья"}],"trade":{"ids":{"explicit":["explicit.stat_2961018200"],"fractured":["fractured.stat_2961018200"]}}} +{"ref":"Area is inhabited by an additional Invasion Boss","better":1,"matchers":[{"string":"В области можно встретить # дополнительного босса Вторжения"},{"string":"В области можно встретить # дополнительных боссов Вторжения"}],"trade":{"ids":{"explicit":["explicit.stat_279246355"],"implicit":["implicit.stat_279246355"],"enchant":["enchant.stat_279246355"]}}} +{"ref":"Area is inhabited by Animals","better":1,"fromAreaMods":true,"matchers":[{"string":"Область населена животными"}],"trade":{"ids":{"explicit":["explicit.stat_4198346809"],"fractured":["fractured.stat_4198346809"]}}} +{"ref":"Area is inhabited by Cultists of Kitava","better":1,"fromAreaMods":true,"matchers":[{"string":"Область населена культистами Китавы"}],"trade":{"ids":{"explicit":["explicit.stat_4252630904"],"fractured":["fractured.stat_4252630904"]}}} +{"ref":"Area is inhabited by Demons","better":1,"fromAreaMods":true,"matchers":[{"string":"Область населена демонами"}],"trade":{"ids":{"explicit":["explicit.stat_3916182167"],"fractured":["fractured.stat_3916182167"]}}} +{"ref":"Area is inhabited by Ghosts","better":1,"fromAreaMods":true,"matchers":[{"string":"Область населена призраками"}],"trade":{"ids":{"explicit":["explicit.stat_3516340048"],"fractured":["fractured.stat_3516340048"]}}} +{"ref":"Area is inhabited by Goatmen","better":1,"fromAreaMods":true,"matchers":[{"string":"Область населена козерогами"}],"trade":{"ids":{"explicit":["explicit.stat_1813544255"],"fractured":["fractured.stat_1813544255"]}}} +{"ref":"Area is inhabited by Humanoids","better":1,"fromAreaMods":true,"matchers":[{"string":"Область населена гуманоидами"}],"trade":{"ids":{"explicit":["explicit.stat_2651141461"],"fractured":["fractured.stat_2651141461"]}}} +{"ref":"Area is inhabited by Lunaris fanatics","better":1,"fromAreaMods":true,"matchers":[{"string":"Область населена фанатиками Лунарис"}],"trade":{"ids":{"explicit":["explicit.stat_3134632618","explicit.stat_3408601861"],"fractured":["fractured.stat_3134632618"]}}} +{"ref":"Area is inhabited by ranged monsters","better":1,"fromAreaMods":true,"matchers":[{"string":"Область населена монстрами дальнего боя"}],"trade":{"ids":{"explicit":["explicit.stat_645841425"],"fractured":["fractured.stat_645841425"]}}} +{"ref":"Area is inhabited by Sea Witches and their Spawn","better":1,"fromAreaMods":true,"matchers":[{"string":"Область населена сиренами и их порождениями"}],"trade":{"ids":{"explicit":["explicit.stat_25085466"],"fractured":["fractured.stat_25085466"]}}} +{"ref":"Area is inhabited by Skeletons","better":1,"fromAreaMods":true,"matchers":[{"string":"Область населена скелетами"}],"trade":{"ids":{"explicit":["explicit.stat_45546355"],"fractured":["fractured.stat_45546355"]}}} +{"ref":"Area is inhabited by Solaris fanatics","better":1,"fromAreaMods":true,"matchers":[{"string":"Область населена фанатиками Солярис"}],"trade":{"ids":{"explicit":["explicit.stat_1934713036","explicit.stat_2457517302"],"fractured":["fractured.stat_2457517302"]}}} +{"ref":"Area is inhabited by the Vaal","better":1,"matchers":[{"string":"Область населена ваал"}],"trade":{"ids":{"explicit":["explicit.stat_2609768284"],"fractured":["fractured.stat_2609768284"]}}} +{"ref":"Area is inhabited by Undead","better":1,"fromAreaMods":true,"matchers":[{"string":"Область населена нежитью"}],"trade":{"ids":{"explicit":["explicit.stat_808491979"],"fractured":["fractured.stat_808491979"]}}} +{"ref":"Areas are Breached\nAreas contain additional Large Breach Hands\nBreach Bosses have a chance to drop a Breachstone","better":1,"matchers":[{"string":"Области находятся во власти Разлома\nВ областях можно встретить дополнительные Сокровища Разлома\nИз боссов Разлома может выпасть камень Разлома"}],"trade":{"ids":{"explicit":["explicit.stat_1263962567"]}}} +{"ref":"Areas can contain Abysses","better":1,"matchers":[{"string":"В области можно найти Бездны"}],"trade":{"ids":{"enchant":["enchant.stat_3564826949"]}}} +{"ref":"Areas contain a Mirror of Delirium","better":1,"matchers":[{"string":"В области можно найти зеркало Делириума"}],"trade":{"ids":{"enchant":["enchant.stat_2398157267"]}}} +{"ref":"Areas contain additional Abysses\nAbysses have already fully opened\nAbysses contain monsters from Beyond this realm","better":1,"matchers":[{"string":"В областях можно встретить дополнительные Бездны\nБездны уже полностью раскрыты\nИз Бездны появляются монстры из иного мира"}],"trade":{"ids":{"explicit":["explicit.stat_2789750513"]}}} +{"ref":"Areas contain additional Essences\nEssences contain Rogue Exiles","better":1,"matchers":[{"string":"В областях можно найти дополнительные Сущности\nВ Сущностях пленены бродячие изгнанники"}],"trade":{"ids":{"explicit":["explicit.stat_4139137767"]}}} +{"ref":"Areas contain additional Harbinger Portals\nHarbinger Portals drop additional Currency Shards when destroyed","better":1,"matchers":[{"string":"В области можно встретить дополнительные порталы Предвестников\nИз порталов Предвестника при разрушении выпадают дополнительные осколки валюты"}],"trade":{"ids":{"explicit":["explicit.stat_495299940"]}}} +{"ref":"Areas contain additional Shrines\nArea contains Shrines guarded by Pantheon Monsters","better":1,"matchers":[{"string":"В областях можно встретить дополнительные алтари\nАлтари в области охраняют монстры Пантеона"}],"trade":{"ids":{"explicit":["explicit.stat_4252342397"]}}} +{"ref":"Areas contain additional Strongboxes\nStrongboxes are found in Sequences\nStrongboxes in a Sequence open when the previous Strongbox in the Sequence has unlocked","better":1,"matchers":[{"string":"В областях можно встретить дополнительные ларцы\nЛарцы находятся в группах\nПри разблокировании ларца открывается стоящий рядом другой ларец"}],"trade":{"ids":{"explicit":["explicit.stat_645735818"]}}} +{"ref":"Areas contain additional Temporal Incursions\nTemporal Incursion Portals have their direction reversed","better":1,"matchers":[{"string":"В области можно встретить временные Вмешательства\nПорталы временных Вмешательств работают в другую сторону"}],"trade":{"ids":{"explicit":["explicit.stat_3582614035"]}}} +{"ref":"Areas contain Einhar\nAreas can contain capturable Harvest Beasts","better":1,"matchers":[{"string":"В областях можно встретить Эйнара\nВ областях можно встретить зверей Жатвы, которых можно поймать"}],"trade":{"ids":{"explicit":["explicit.stat_3751566939"]}}} +{"ref":"Areas contain many additional Breaches\nBreaches open and close faster","better":1,"matchers":[{"string":"В областях можно встретить множество дополнительных Разломов\nРазломы открываются и закрываются быстрее"}],"trade":{"ids":{"explicit":["explicit.stat_2518308945"]}}} +{"ref":"Areas contain Ritual Altars","better":1,"matchers":[{"string":"В областях можно встретить алтари Ритуала"}],"trade":{"ids":{"explicit":["explicit.stat_1671749203"],"implicit":["implicit.stat_1671749203"],"enchant":["enchant.stat_1671749203"]}}} +{"ref":"Areas contain The Sacred Grove\nCrops are larger in size\nCrops contain higher tier seeds","better":1,"matchers":[{"string":"В областях можно встретить Священную рощу\nГрядки имеют больший размер\nНа грядках растут семена более высокого уровня"}],"trade":{"ids":{"explicit":["explicit.stat_3422644692"]}}} +{"ref":"Armageddon Brand Damage Penetrates #% of Branded Enemy's Fire Resistance","better":1,"matchers":[{"string":"Урон Клейма Армагеддона пробивает #% сопротивления огню заклеймённого врага"}],"trade":{"ids":{"enchant":["enchant.stat_1715805151"]}}} +{"ref":"Armageddon Brand deals #% increased Damage","better":1,"matchers":[{"string":"Клеймо Армагеддона наносит увеличенный на #% урон"},{"string":"Клеймо Армагеддона наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1699139870"]}}} +{"ref":"Armageddon Brand has #% increased Activation Frequency","better":1,"matchers":[{"string":"#% увеличение частоты активации Клейма Армагеддона"},{"string":"#% уменьшение частоты активации Клейма Армагеддона","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2512194486"]}}} +{"ref":"Armour also applies to Chaos Damage taken from Hits","better":1,"matchers":[{"string":"Броня также применяется к урону хаосом, полученному от ударов"}],"trade":{"ids":{"explicit":["explicit.stat_4186532642"]}}} +{"ref":"Armour also applies to Lightning Damage taken from Hits","better":1,"matchers":[{"string":"Броня также применяется к получаемому урону от молнии от ударов"}],"trade":{"ids":{"explicit":["explicit.stat_2134207902"]}}} +{"ref":"Armour is increased by Overcapped Fire Resistance","better":1,"matchers":[{"string":"Броня увеличена на значение сопротивления огню выше максимума"}],"trade":{"ids":{"explicit":["explicit.stat_2129352930"],"fractured":["fractured.stat_2129352930"]}}} +{"ref":"Arrow Dancing","better":1,"matchers":[{"string":"Танец со стрелами"}],"trade":{"ids":{"explicit":["explicit.stat_2606808909"],"scourge":["scourge.stat_2606808909"]}}} +{"ref":"Arrows Chain +# times","better":1,"matchers":[{"string":"Стрелы наносят удары по цепи # раз(а)"}],"trade":{"ids":{"implicit":["implicit.stat_1001077145"]}}} +{"ref":"Arrows deal # to # Added Fire Damage for each time they've Pierced","better":1,"matchers":[{"string":"Стрелы наносят от # до # дополнительного урона от огня каждый раз, когда они пронзают цель"}],"trade":{"ids":{"explicit":["explicit.stat_3726936056"]}}} +{"ref":"Arrows deal #% increased Damage with Hits and Ailments to Targets they Pierce","better":1,"matchers":[{"string":"Стрелы наносят увеличенный на #% урон от ударов и состояний по пронзенным ими целям"},{"string":"Стрелы наносят уменьшенный на #% урон от ударов и состояний по пронзенным ими целям","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1019891080"]}}} +{"ref":"Arrows fired from the first firing points always Pierce","better":1,"matchers":[{"string":"Стрелы, выпущенные из первых точек выстрела, всегда пронзают"}],"trade":{"ids":{"explicit":["explicit.stat_2168987271"]}}} +{"ref":"Arrows fired from the fourth firing points Chain +# time","better":1,"matchers":[{"string":"Стрелы, выпущенные из четвёртых точек выстрела, поражают # целей по цепи"},{"string":"Стрелы, выпущенные из четвёртых точек выстрела, поражают # цель по цепи"}],"trade":{"ids":{"explicit":["explicit.stat_226515115"]}}} +{"ref":"Arrows fired from the second firing points Fork","better":1,"matchers":[{"string":"Стрелы, выпущенные из вторых точек выстрела, разветвляются"}],"trade":{"ids":{"explicit":["explicit.stat_3290081052"]}}} +{"ref":"Arrows fired from the third firing points Return to you","better":1,"matchers":[{"string":"Стрелы, выпущенные из третьих точек выстрела, возвращаются к вам"}],"trade":{"ids":{"explicit":["explicit.stat_301746072"]}}} +{"ref":"Arrows Fork","better":1,"matchers":[{"string":"Стрелы разветвляются"}],"trade":{"ids":{"explicit":["explicit.stat_2421436896"]}}} +{"ref":"Arrows Pierce all Targets","better":1,"matchers":[{"string":"Стрелы пронзают все цели"}],"trade":{"ids":{"explicit":["explicit.stat_1829238593"]}}} +{"ref":"Arrows Pierce all Targets after Chaining","better":1,"matchers":[{"string":"После поражения целей по цепи, стрелы пронзают все цели"}],"trade":{"ids":{"explicit":["explicit.stat_1997151732"]}}} +{"ref":"Arrows Pierce all Targets after Forking","better":1,"matchers":[{"string":"Стрелы пронзают все цели после разветвления"}],"trade":{"ids":{"explicit":["explicit.stat_2138799639"]}}} +{"ref":"Arrows Pierce an additional Target","better":1,"matchers":[{"string":"Стрелы пронзают # дополнительных цели(-ей)"},{"string":"Стрелы пронзают дополнительную цель","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3423006863"],"implicit":["implicit.stat_3423006863"]}}} +{"ref":"Arrows that Pierce have +#% to Critical Strike Multiplier","better":1,"matchers":[{"string":"Стрелы, которые пронзают, имеют #% к множителю критического удара"}],"trade":{"ids":{"explicit":["explicit.stat_1064778484"]}}} +{"ref":"Arrows that Pierce have 50% chance to inflict Bleeding","better":1,"matchers":[{"string":"Пронзающие стрелы имеют 50% шанс наложить кровотечение"}],"trade":{"ids":{"explicit":["explicit.stat_1812251528"]}}} +{"ref":"Arsenal of Vengeance","better":1,"matchers":[{"string":"Арсенал возмездия"}],"trade":{"ids":{"explicit":["explicit.stat_971749694"]}}} +{"ref":"Artillery Ballista Damage Penetrates #% Fire Resistance","better":1,"matchers":[{"string":"Урон Артиллерийской баллисты пробивает #% сопротивления огню"}],"trade":{"ids":{"enchant":["enchant.stat_1734517294"]}}} +{"ref":"Artillery Ballista fires an additional Arrow","better":1,"matchers":[{"string":"Артиллерийская баллиста выпускает дополнительных стрел: #"},{"string":"Артиллерийская баллиста выпускает дополнительных стрел: 1","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3283028259"]}}} +{"ref":"Artillery Ballista Projectiles fall in two perpendicular lines instead","better":1,"matchers":[{"string":"Снаряды Артиллерийской баллисты поражают две перпендикулярные линии"}],"trade":{"ids":{"enchant":["enchant.stat_2056176052"]}}} +{"ref":"Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies","better":1,"matchers":[{"string":"Дух птицы также дарует Птичью силу и Птичий полет ближайшим союзникам"}],"trade":{"ids":{"explicit":["explicit.stat_2544408546"]}}} +{"ref":"Aspect of the Cat has no Reservation","better":1,"matchers":[{"string":"Дух кошки не удерживает ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_3850409117"]}}} +{"ref":"Aspect of the Spider can inflict Spider's Web on Enemies an additional time","better":1,"matchers":[{"string":"Дух паука может наложить # дополнительных Паучьих паутин(-ы) на врагов"},{"string":"Дух паука может наложить дополнительную Паучью паутину на врагов","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1509532587"]}}} +{"ref":"Aspect of the Spider inflicts Spider's Webs and Hinder every # Seconds instead","better":1,"matchers":[{"string":"Дух паука накладывает Паучьи паутины и Скованность каждые # секунд(-ы)"}],"trade":{"ids":{"explicit":["explicit.stat_3832130495"]}}} +{"ref":"Atlas Passives have #% reduced Effect on Area","better":-1,"fromAreaMods":true,"matchers":[{"string":"#% усиление эффекта пассивных свойств Атласа в области"},{"string":"#% ослабление эффекта пассивных свойств Атласа в области","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3737068014"]},"inverted":true}} +{"ref":"Attack Critical Strikes ignore Enemy Monster Elemental Resistances","better":1,"matchers":[{"string":"Критические удары атаками игнорируют вражеское сопротивление стихиям"}],"trade":{"ids":{"implicit":["implicit.stat_2170876738"]}}} +{"ref":"Attack Hits against Bleeding Enemies have #% chance to Blind","better":1,"matchers":[{"string":"Удары атаками по истекающим кровью врагам с #% шансом могут их ослепить"}],"trade":{"ids":{"explicit":["explicit.stat_4204320922"]}}} +{"ref":"Attack Hits against Blinded Enemies have #% chance to Maim","better":1,"matchers":[{"string":"Удары атаками по ослепленным врагам с #% шансом могут их изувечить"}],"trade":{"ids":{"explicit":["explicit.stat_1291726336"]}}} +{"ref":"Attack Projectiles Return to you","better":1,"matchers":[{"string":"Снаряды от атак возвращаются к вам"}],"trade":{"ids":{"explicit":["explicit.stat_1658124062"],"enchant":["enchant.stat_1658124062"],"scourge":["scourge.stat_1658124062"],"crafted":["crafted.stat_1658124062"]}}} +{"ref":"Attack Skills gain #% of Physical Damage as Extra Fire Damage per Socketed Red Gem","better":1,"matchers":[{"string":"Умения атак наносят #% от физического урона в виде дополнительного урона от огня за каждый размещённый красный камень"}],"trade":{"ids":{"explicit":["explicit.stat_1302700515"]}}} +{"ref":"Attack Skills have +# to maximum number of Summoned Totems","better":1,"matchers":[{"string":"Умения атак имеют # к максимальному количеству установленных тотемов"}],"trade":{"ids":{"explicit":["explicit.stat_3266394681"]}}} +{"ref":"Attack Skills have Added Lightning Damage equal to #% of maximum Mana","better":1,"matchers":[{"string":"Умения атак имеют добавленный урон от молнии, равный #% от максимума маны"}],"trade":{"ids":{"explicit":["explicit.stat_2778228111"]}}} +{"ref":"Attacks always inflict Bleeding while you have Cat's Stealth","better":1,"matchers":[{"string":"Атаки всегда накладывают кровотечение, пока на вас действует Кошачья скрытность"}],"trade":{"ids":{"explicit":["explicit.stat_2059771038"]}}} +{"ref":"Attacks Chain an additional time when in Main Hand","better":1,"matchers":[{"string":"Атаки поражают дополнительных целей по цепи, если в правой руке: #"},{"string":"Атаки поражают дополнительную цель по цепи, если в правой руке","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2466604008"]}}} +{"ref":"Attacks Cost Life instead of Mana","better":1,"matchers":[{"string":"Атаки расходуют здоровье вместо маны"}],"trade":{"ids":{"explicit":["explicit.stat_3358745905"]}}} +{"ref":"Attacks Exerted by Ambush have +#% to Critical Strike Multiplier","better":1,"matchers":[{"string":"Положительный эффект Засады дарует Улучшенным атакам #% к множителю критического удара"}],"trade":{"ids":{"enchant":["enchant.stat_2343571547"]}}} +{"ref":"Attacks Exerted by Ancestral Cry deal #% increased Damage","better":1,"matchers":[{"string":"Улучшенные Кличем предков атаки наносят увеличенный на #% урон"}],"trade":{"ids":{"implicit":["implicit.stat_2146663823"],"enchant":["enchant.stat_2146663823"]}}} +{"ref":"Attacks Exerted by Seismic Cry deal #% increased Damage","better":1,"matchers":[{"string":"Атаки, улучшенные Сейсмическим кличем, наносят увеличенный на #% урон"}],"trade":{"ids":{"implicit":["implicit.stat_3252913608"],"enchant":["enchant.stat_3252913608"]}}} +{"ref":"Attacks fire an additional Projectile","better":1,"matchers":[{"string":"Атаки выпускают дополнительных снарядов: #"},{"string":"Атаки выпускают дополнительный снаряд","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1195705739"]}}} +{"ref":"Attacks fire an additional Projectile when in Off Hand","better":1,"matchers":[{"string":"Атаки выпускают дополнительных снарядов, если в левой руке: #"},{"string":"Атаки выпускают дополнительный снаряд, если в левой руке","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2105048696"]}}} +{"ref":"Attacks have #% chance to cause Bleeding","better":1,"matchers":[{"string":"Атаки не могут вызывать кровотечение","value":-1},{"string":"Атаки имеют #% шанс вызвать кровотечение"},{"string":"Атаки вызывают кровотечение","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1923879260"],"implicit":["implicit.stat_1923879260"],"fractured":["fractured.stat_1923879260"],"scourge":["scourge.stat_1923879260"]}}} +{"ref":"Attacks have #% chance to Maim on Hit","better":1,"matchers":[{"string":"Атаки имеют #% шанс изувечить при нанесении удара"},{"string":"Атаки всегда накладывают увечье при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1510714129"],"implicit":["implicit.stat_1510714129"],"fractured":["fractured.stat_1510714129"],"scourge":["scourge.stat_1510714129"]}}} +{"ref":"Attacks have #% chance to Poison while at maximum Frenzy Charges","better":1,"matchers":[{"string":"Атаки имеют #% шанс отравить при максимуме зарядов ярости"},{"string":"Атаки всегда отравляют при максимуме зарядов ярости","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3654074125"]}}} +{"ref":"Attacks have +#% to Critical Strike Chance","dp":true,"better":1,"matchers":[{"string":"Атаки имеют #% к шансу критического удара"}],"trade":{"ids":{"explicit":["explicit.stat_2572042788"],"implicit":["implicit.stat_2572042788"],"fractured":["fractured.stat_2572042788"]}}} +{"ref":"Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies","better":1,"matchers":[{"string":"Атаки имеют 25% шанс наложить кровотечение при нанесении удара проклятым врагам"}],"trade":{"ids":{"explicit":["explicit.stat_2591028853"]}}} +{"ref":"Attacks inflict Unnerve on Critical Strike for 4 seconds","better":1,"matchers":[{"string":"Атаки накладывают Обескураживание на 4 секунды при критическом ударе"}],"trade":{"ids":{"explicit":["explicit.stat_3362271649"]}}} +{"ref":"Attacks that Fire Projectiles Consume up to # additional Steel Shard","better":1,"matchers":[{"string":"Выпускающие снаряды атаки поглощают максимум # стальной осколок"},{"string":"Выпускающие снаряды атаки поглощают максимум # стальных осколка(-ов)"}],"trade":{"ids":{"explicit":["explicit.stat_591162856"]}}} +{"ref":"Attacks with Energy Blades Penetrate #% Lightning Resistance","better":1,"matchers":[{"string":"Атаки Клинком энергии пробивают #% сопротивления молнии"}],"trade":{"ids":{"enchant":["enchant.stat_1501151168"]}}} +{"ref":"Attacks with this Weapon deal # to # added Chaos Damage against\nEnemies affected by at least 5 Poisons","better":1,"matchers":[{"string":"Атаки этим оружием наносят от # до # дополнительного урона хаосом\nпо врагам с как минимум 5 зарядами яда"}],"trade":{"ids":{"explicit":["explicit.stat_3829706447"]}}} +{"ref":"Attacks with this Weapon deal # to # added Fire Damage to Bleeding Enemies","better":1,"matchers":[{"string":"Атаки этим оружием наносят от # до # дополнительного урона от огня по истекающим кровью врагам"}],"trade":{"ids":{"explicit":["explicit.stat_2453554491"]}}} +{"ref":"Attacks with this Weapon deal # to # added Physical Damage to Ignited Enemies","better":1,"matchers":[{"string":"Атаки этим оружием наносят от # до # дополнительного физического урона по подожжённым врагам"}],"trade":{"ids":{"explicit":["explicit.stat_2202639361"]}}} +{"ref":"Attacks with this Weapon deal Double Damage","better":1,"matchers":[{"string":"Атаки этим оружием наносят двойной урон"}],"trade":{"ids":{"explicit":["explicit.stat_1506185293"]}}} +{"ref":"Attacks with this Weapon deal Double Damage to Chilled Enemies","better":1,"matchers":[{"string":"Атаки этим оружием наносят двойной урон охлажденным врагам"}],"trade":{"ids":{"explicit":["explicit.stat_625037258"]}}} +{"ref":"Attacks with this Weapon have #% chance to inflict Bleeding against Ignited Enemies","better":1,"matchers":[{"string":"Атаки этим оружием имеют #% шанс наложить кровотечение подожжённым врагам"}],"trade":{"ids":{"explicit":["explicit.stat_3148418088"]}}} +{"ref":"Attacks with this Weapon have #% increased Elemental Damage","better":1,"matchers":[{"string":"Атаки этим оружием имеют #% увеличение урона от стихий"},{"string":"Атаки этим оружием имеют #% уменьшение урона от стихий","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_17526298"]}}} +{"ref":"Attacks with this Weapon have Added Maximum Lightning Damage equal to #% of Player's Maximum Energy Shield","better":1,"matchers":[{"string":"Добавляет атакам этим оружием урон от молнии, равный #% от максимума энергетического щита игрока"}],"trade":{"ids":{"explicit":["explicit.stat_973269941"]}}} +{"ref":"Attacks with this Weapon Maim on hit","better":1,"matchers":[{"string":"Атаки этим оружием накладывают увечье при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_3418949024"]}}} +{"ref":"Attacks with this Weapon Penetrate #% Chaos Resistance","better":1,"matchers":[{"string":"Атаки этим оружием пробивают #% сопротивления хаосу"}],"trade":{"ids":{"explicit":["explicit.stat_3762412853"],"fractured":["fractured.stat_3762412853"],"crafted":["crafted.stat_3762412853"]}}} +{"ref":"Attacks with this Weapon Penetrate #% Cold Resistance","better":1,"matchers":[{"string":"Атаки этим оружием пробивают #% сопротивления холоду"}],"trade":{"ids":{"explicit":["explicit.stat_1740229525"],"fractured":["fractured.stat_1740229525"]}}} +{"ref":"Attacks with this Weapon Penetrate #% Elemental Resistances","better":1,"matchers":[{"string":"Атаки этим оружием пробивают #% вражеского сопротивления стихиям"}],"trade":{"ids":{"explicit":["explicit.stat_4064396395"],"implicit":["implicit.stat_4064396395"],"fractured":["fractured.stat_4064396395"],"crafted":["crafted.stat_4064396395"]}}} +{"ref":"Attacks with this Weapon Penetrate #% Fire Resistance","better":1,"matchers":[{"string":"Атаки этим оружием пробивают #% сопротивления огню"}],"trade":{"ids":{"explicit":["explicit.stat_3398283493"],"fractured":["fractured.stat_3398283493"]}}} +{"ref":"Attacks with this Weapon Penetrate #% Lightning Resistance","better":1,"matchers":[{"string":"Атаки этим оружием пробивают #% сопротивления молнии"}],"trade":{"ids":{"explicit":["explicit.stat_2387539034"],"fractured":["fractured.stat_2387539034"]}}} +{"ref":"Attribute Requirements can be satisfied by #% of Omniscience","better":1,"matchers":[{"string":"#% Всезнания удовлетворяют требования к характеристикам"}],"trade":{"ids":{"explicit":["explicit.stat_3024338155"]}}} +{"ref":"Aura Skills other than Anger are Disabled","better":1,"matchers":[{"string":"Умения-ауры кроме Жгучей злобы отключены"}],"trade":{"ids":{"explicit":["explicit.stat_2185337019"]}}} +{"ref":"Aura Skills other than Clarity are Disabled","better":1,"matchers":[{"string":"Умения-ауры кроме Ясности ума отключены"}],"trade":{"ids":{"explicit":["explicit.stat_2010835448"]}}} +{"ref":"Aura Skills other than Determination are Disabled","better":1,"matchers":[{"string":"Умения-ауры кроме Решимости отключены"}],"trade":{"ids":{"explicit":["explicit.stat_460973817"]}}} +{"ref":"Aura Skills other than Discipline are Disabled","better":1,"matchers":[{"string":"Умения-ауры кроме Дисциплины отключены"}],"trade":{"ids":{"explicit":["explicit.stat_2204523353"]}}} +{"ref":"Aura Skills other than Grace are Disabled","better":1,"matchers":[{"string":"Умения-ауры кроме Грации отключены"}],"trade":{"ids":{"explicit":["explicit.stat_1747401945"]}}} +{"ref":"Aura Skills other than Haste are Disabled","better":1,"matchers":[{"string":"Умения-ауры кроме Спешки отключены"}],"trade":{"ids":{"explicit":["explicit.stat_3067441492"]}}} +{"ref":"Aura Skills other than Hatred are Disabled","better":1,"matchers":[{"string":"Умения-ауры кроме Холодной ненависти отключены"}],"trade":{"ids":{"explicit":["explicit.stat_3348211884"]}}} +{"ref":"Aura Skills other than Malevolence are Disabled","better":1,"matchers":[{"string":"Умения-ауры кроме Злорадства отключены"}],"trade":{"ids":{"explicit":["explicit.stat_3540033124"]}}} +{"ref":"Aura Skills other than Precision are Disabled","better":1,"matchers":[{"string":"Умения-ауры кроме Точности отключены"}],"trade":{"ids":{"explicit":["explicit.stat_2800254163"]}}} +{"ref":"Aura Skills other than Pride are Disabled","better":1,"matchers":[{"string":"Умения-ауры кроме Гордости отключены"}],"trade":{"ids":{"explicit":["explicit.stat_3970941380"]}}} +{"ref":"Aura Skills other than Purity of Elements are Disabled","better":1,"matchers":[{"string":"Умения-ауры кроме Спасения от стихий отключены"}],"trade":{"ids":{"explicit":["explicit.stat_2225434657"]}}} +{"ref":"Aura Skills other than Purity of Fire are Disabled","better":1,"matchers":[{"string":"Умения-ауры кроме Спасения от огня отключены"}],"trade":{"ids":{"explicit":["explicit.stat_3192291777"]}}} +{"ref":"Aura Skills other than Purity of Ice are Disabled","better":1,"matchers":[{"string":"Умения-ауры кроме Спасения от холода отключены"}],"trade":{"ids":{"explicit":["explicit.stat_2517644375"]}}} +{"ref":"Aura Skills other than Purity of Lightning are Disabled","better":1,"matchers":[{"string":"Умения-ауры кроме Спасения от молнии отключены"}],"trade":{"ids":{"explicit":["explicit.stat_2523986538"]}}} +{"ref":"Aura Skills other than Vitality are Disabled","better":1,"matchers":[{"string":"Умения-ауры кроме Живучести отключены"}],"trade":{"ids":{"explicit":["explicit.stat_110034065"]}}} +{"ref":"Aura Skills other than Wrath are Disabled","better":1,"matchers":[{"string":"Умения-ауры кроме Грозного гнева отключены"}],"trade":{"ids":{"explicit":["explicit.stat_3292388799"]}}} +{"ref":"Aura Skills other than Zealotry are Disabled","better":1,"matchers":[{"string":"Умения-ауры кроме Фанатизма отключены"}],"trade":{"ids":{"explicit":["explicit.stat_374559518"]}}} +{"ref":"Auras from your Skills grant #% increased Damage to you and Allies","better":1,"matchers":[{"string":"Ауры от ваших умений даруют вам и вашим союзникам #% увеличение урона"}],"trade":{"ids":{"explicit":["explicit.stat_3729445224"],"fractured":["fractured.stat_3729445224"]}}} +{"ref":"Auras from your Skills have #% increased Effect on you","better":1,"matchers":[{"string":"#% усиление эффекта действующих на вас аур от ваших умений"},{"string":"#% ослабление эффекта действующих на вас аур от ваших умений","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_472812693"]}}} +{"ref":"Aureus Coins are converted to Experience upon defeating the Herald of the Scourge","better":1,"matchers":[{"string":"После победы над Вестником Роя Аурус преобразуется в опыт"}],"trade":{"ids":{"explicit":["sanctum.stat_1307773596"]}}} +{"ref":"Aureus Coins are converted to Relics upon defeating the Herald of the Scourge","better":1,"matchers":[{"string":"После победы над Вестником Роя Аурус преобразуется в реликвии"}],"trade":{"ids":{"explicit":["sanctum.stat_315260783"]}}} +{"ref":"Aureus Coins are converted to Tainted Currency upon defeating the Herald of the Scourge","better":1,"matchers":[{"string":"После победы над Вестником Роя Аурус превращается в порочную валюту"}],"trade":{"ids":{"explicit":["sanctum.stat_1019656601"]}}} +{"ref":"Avatar of Fire","better":1,"matchers":[{"string":"Воплощение огня"}],"trade":{"ids":{"explicit":["explicit.stat_346029096"],"fractured":["fractured.stat_346029096"],"scourge":["scourge.stat_346029096"]}}} +{"ref":"Ball Lightning fires an additional Projectile","better":1,"matchers":[{"string":"Шаровая молния выпускает дополнительных снарядов: #"},{"string":"Шаровая молния выпускает дополнительный снаряд","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3420683028"]}}} +{"ref":"Bane deals #% increased Damage","better":1,"matchers":[{"string":"Погибель наносит увеличенный на #% урон"},{"string":"Погибель наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2206071316"]}}} +{"ref":"Bane has #% increased Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Погибели"},{"string":"#% уменьшение области действия Погибели","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4224588066"]}}} +{"ref":"Banner Skills have #% increased Aura Effect","better":1,"matchers":[{"string":"#% увеличение области действия умений-знамен"},{"string":"#% уменьшение области действия умений-знамен","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2729804981"],"crafted":["crafted.stat_2729804981"]}}} +{"ref":"Banner Skills have no Reservation","better":1,"matchers":[{"string":"Умения знамён не удерживают ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_2384457007"]}}} +{"ref":"Barrage fires an additional Projectile","better":1,"matchers":[{"string":"Очередь выпускает дополнительных снарядов: #"},{"string":"Очередь выпускает дополнительный снаряд","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3009270704"]}}} +{"ref":"Base Spell Critical Strike Chance of Spells is equal to that of Main Hand Weapon","better":1,"matchers":[{"string":"Базовый шанс критического удара у чар равен шансу критического удара у оружия в правой руке"}],"trade":{"ids":{"explicit":["explicit.stat_2560911401"]}}} +{"ref":"Bathed in the blood of # sacrificed in the name of Ahuana","better":0,"matchers":[{"string":"Омыт в крови # жертв во имя Ахваны\nПассивные умения в радиусе завоеваны ваал","advanced":"Омыт в крови # жертв во имя Ахваны(Ахваны-Шибаквы)\nПассивные умения в радиусе завоеваны ваал"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_ahuana"]}}} +{"ref":"Bathed in the blood of # sacrificed in the name of Doryani","better":0,"matchers":[{"string":"Омыт в крови # жертв во имя Дориани\nПассивные умения в радиусе завоеваны ваал","advanced":"Омыт в крови # жертв во имя Дориани(Ахваны-Шибаквы)\nПассивные умения в радиусе завоеваны ваал"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_doryani"]}}} +{"ref":"Bathed in the blood of # sacrificed in the name of Xibaqua","better":0,"matchers":[{"string":"Омыт в крови # жертв во имя Шибаквы\nПассивные умения в радиусе завоеваны ваал","advanced":"Омыт в крови # жертв во имя Шибаквы(Ахваны-Шибаквы)\nПассивные умения в радиусе завоеваны ваал"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_xibaqua"]}}} +{"ref":"Battlemage","better":1,"matchers":[{"string":"Боевой маг"}],"trade":{"ids":{"explicit":["explicit.stat_448903047"]}}} +{"ref":"Battlemage's Cry Exerts # additional Attack","better":1,"matchers":[{"string":"Клич боевого мага улучшает дополнительных атак: #"}],"trade":{"ids":{"enchant":["enchant.stat_931713173"]}}} +{"ref":"Bear Trap has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"#% повышение скорости перезарядки Медвежьего капкана"},{"string":"#% снижение скорости перезарядки Медвежьего капкана","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_918308703"]}}} +{"ref":"Berserk has #% increased Buff Effect","better":1,"matchers":[{"string":"#% усиление положительного эффекта Боевого безумия"},{"string":"#% ослабление положительного эффекта Боевого безумия","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1663783758"]}}} +{"ref":"Berserk has #% reduced Rage loss per second","better":-1,"matchers":[{"string":"#% повышение скорости потери свирепости в секунду под действием Боевого безумия"},{"string":"#% снижение скорости потери свирепости в секунду под действием Боевого безумия","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1019790379"]},"inverted":true}} +{"ref":"Blade Blast deals #% increased Damage","better":1,"matchers":[{"string":"#% увеличение урона Взрыва клинков"},{"string":"#% уменьшение урона Взрыва клинков","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2276547155"]}}} +{"ref":"Blade Blast detonates other Lingering Blades within an #% increased Area","better":1,"matchers":[{"string":"Взрыв клинков взрывает другие остаточные клинки в увеличенной на #% области"},{"string":"Взрыв клинков взрывает другие остаточные клинки в уменьшенной на #% области","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3309486263"]}}} +{"ref":"Blade Blast has #% increased Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Взрыва клинков"},{"string":"#% уменьшение области действия Взрыва клинков","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3569393676"]}}} +{"ref":"Blade Trap rotates +# times","dp":true,"better":1,"matchers":[{"string":"Ловушка лезвий проворачивается # раз"}],"trade":{"ids":{"enchant":["enchant.stat_4195549152"]}}} +{"ref":"Blade Vortex has +#% to Critical Strike Multiplier for each blade","better":1,"matchers":[{"string":"Вихрь клинков имеет #% к множителю критического удара за каждый клинок"}],"trade":{"ids":{"enchant":["enchant.stat_2583039202"]}}} +{"ref":"Bladestorm deals #% increased Damage","better":1,"matchers":[{"string":"Ураган лезвий наносит увеличенный на #% урон"},{"string":"Ураган лезвий наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_599289531"]}}} +{"ref":"Blast Rain deals #% increased Damage","better":1,"matchers":[{"string":"Дождь взрывов наносит увеличенный на #% урон"},{"string":"Дождь взрывов наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4014289250"]}}} +{"ref":"Blast Rain fires an additional Arrow","better":1,"matchers":[{"string":"Дождь взрывов выпускает дополнительную стрелу"}],"trade":{"ids":{"enchant":["enchant.stat_3519675720"]}}} +{"ref":"Blast Rain has #% increased Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Дождя взрывов"},{"string":"#% уменьшение области действия Дождя взрывов","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_574378310"]}}} +{"ref":"Blazing Salvo deals #% increased Damage","better":1,"matchers":[{"string":"Пылающий залп наносит увеличенный на #% урон"},{"string":"Пылающий залп наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4102281803"]}}} +{"ref":"Blazing Salvo fires an additional Projectile","better":1,"matchers":[{"string":"Пылающий залп выпускает дополнительных снарядов: #"},{"string":"Пылающий залп выпускает дополнительный снаряд","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3908539803"]}}} +{"ref":"Blazing Salvo Projectiles land in a #% increased Area","better":1,"matchers":[{"string":"Снаряды Пылающего залпа ударяют по увеличенной на #% области"},{"string":"Снаряды Пылающего залпа ударяют по уменьшенной на #% области","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1785831895"]}}} +{"ref":"Bleeding Enemies you Kill Explode, dealing #% of\ntheir Maximum Life as Physical Damage","better":1,"matchers":[{"string":"Истекающие кровью враги взрываются при убийстве, нанося #%\nот их максимума здоровья в виде физического урона"}],"trade":{"ids":{"explicit":["explicit.stat_3133323410"]}}} +{"ref":"Bleeding Enemies you Kill with Hits Shatter","better":1,"matchers":[{"string":"Враги с кровотечением, убиваемые вашими ударами, разбиваются"}],"trade":{"ids":{"explicit":["explicit.stat_881917501"]}}} +{"ref":"Bleeding on you expires #% faster while Moving","better":1,"matchers":[{"string":"Кровотечение на вас истекает на #% быстрее во время передвижения"},{"string":"Кровотечение на вас истекает на #% медленнее во время передвижения","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_391460978"]}}} +{"ref":"Bleeding you inflict deals Damage #% faster","better":1,"matchers":[{"string":"Наложенное вами кровотечение наносит урон на #% быстрее"}],"trade":{"ids":{"explicit":["explicit.stat_3828375170"],"implicit":["implicit.stat_3828375170"],"fractured":["fractured.stat_3828375170"],"scourge":["scourge.stat_3828375170"]}}} +{"ref":"Bleeding you inflict deals Damage #% faster per Frenzy Charge","better":1,"matchers":[{"string":"Наложенное вами кровотечение наносит урон на #% быстрее за каждый заряд ярости"}],"trade":{"ids":{"explicit":["explicit.stat_1670470989"]}}} +{"ref":"Bleeding you inflict is Reflected to you","better":1,"matchers":[{"string":"Наложенные вами кровотечения отражаются в вас"}],"trade":{"ids":{"explicit":["explicit.stat_2658399404"]}}} +{"ref":"Blight has #% increased Hinder Duration","better":1,"matchers":[{"string":"Длительность Скованности от Мора увеличена на #%"},{"string":"Длительность Скованности от Мора уменьшена на #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4170725899"],"enchant":["enchant.stat_4170725899"]}}} +{"ref":"Blind Chilled Enemies on Hit","better":1,"matchers":[{"string":"#% шанс ослепить охлаждённых врагов при нанесении удара"},{"string":"При нанесении удара ослепляет охлаждённых врагов","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3450276548"],"fractured":["fractured.stat_3450276548"]}}} +{"ref":"Blind does not affect your Light Radius","better":1,"matchers":[{"string":"Ослепление не влияет на ваш радиус обзора"}],"trade":{"ids":{"explicit":["explicit.stat_3013171896"]}}} +{"ref":"Blind you inflict is Reflected to you","better":1,"matchers":[{"string":"Накладываемое вами ослепление отражается на вас"}],"trade":{"ids":{"explicit":["explicit.stat_2458598175"]}}} +{"ref":"Blink Arrow and Blink Arrow Clones have #% increased Attack Speed","better":1,"matchers":[{"string":"#% повышение скорости атаки Стрелы-телепорта и её клонов"},{"string":"#% снижение скорости атаки Стрелы-телепорта и её клонов","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1554597333"]}}} +{"ref":"Blink Arrow and Blink Arrow Clones have #% increased Damage","better":1,"matchers":[{"string":"Стрела-телепорт и её клоны имеют #% увеличение урона"},{"string":"Стрела-телепорт и её клоны имеют #% уменьшение урона","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1967878868"]}}} +{"ref":"Blink Arrow has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"#% повышение скорости перезарядки Стрелы-телепорта"},{"string":"#% снижение скорости перезарядки Стрелы-телепорта","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2983274404"]}}} +{"ref":"Blood and Sand has #% increased Buff Effect","better":1,"matchers":[{"string":"#% усиление положительного эффекта Крови и песка"},{"string":"#% ослабление положительного эффекта Крови и песка","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2471636515"]}}} +{"ref":"Blood Magic","better":1,"matchers":[{"string":"Магия крови"}],"trade":{"ids":{"explicit":["explicit.stat_2801937280"],"fractured":["fractured.stat_2801937280"],"scourge":["scourge.stat_2801937280"]}}} +{"ref":"Blood Rage grants additional #% chance to gain a Frenzy Charge on Kill","better":1,"matchers":[{"string":"Кровавый угар дарует дополнительный #% шанс получить заряд ярости при убийстве"}],"trade":{"ids":{"enchant":["enchant.stat_3152806535"]}}} +{"ref":"Blood Rage grants additional #% increased Attack Speed","better":1,"matchers":[{"string":"Кровавый угар дарует дополнительное #% повышение скорости атаки"},{"string":"Кровавый угар дарует дополнительное #% снижение скорости атаки","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3418033798"]}}} +{"ref":"Bloodsoaked Blade","better":1,"matchers":[{"string":"Окровавленный клинок"}],"trade":{"ids":{"explicit":["explicit.stat_2363616962"]}}} +{"ref":"Bone Offering grants an additional +#% Chance to Block Attack Damage","better":1,"matchers":[{"string":"Подношение костей дарует дополнительный #% шанс блокировать урон от атак"}],"trade":{"ids":{"enchant":["enchant.stat_3233607638"]}}} +{"ref":"Bone Offering has #% increased Effect","better":1,"matchers":[{"string":"#% усиление эффекта Подношения костей"},{"string":"#% ослабление эффекта Подношения костей","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1801289192"]}}} +{"ref":"Boneshatter has #% chance to grant +1 Trauma","better":1,"matchers":[{"string":"Дробление костей с #% шансом может даровать +1 Травму"}],"trade":{"ids":{"enchant":["enchant.stat_2870283358"]}}} +{"ref":"Bosses impact #% increased Resolve","better":1,"matchers":[{"string":"Боссы влияют на решимость на #% сильнее"},{"string":"Боссы влияют на решимость на #% слабее","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_2207905451"]}}} +{"ref":"Bosses take #% increased Damage","better":1,"matchers":[{"string":"Боссы получают увеличенный на #% урон"},{"string":"Боссы получают уменьшенный на #% урон","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_3226329527"]}}} +{"ref":"Bow Attacks fire # additional Arrows","better":1,"matchers":[{"string":"Атаки луками выпускают дополнительных стрел: #"},{"string":"Атаки луками выпускают дополнительную стрелу","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3885405204"],"implicit":["implicit.stat_3885405204"],"fractured":["fractured.stat_3885405204"],"scourge":["scourge.stat_3885405204"]}}} +{"ref":"Bow Attacks fire # additional Arrows if you haven't Cast Dash recently","better":1,"matchers":[{"string":"Атаки луками выпускают дополнительных стрел, если вы недавно не использовали Рывок: #"}],"trade":{"ids":{"explicit":["explicit.stat_2482927318"]}}} +{"ref":"Bow Attacks have Culling Strike","better":1,"matchers":[{"string":"Атаки луками добивают врагов"}],"trade":{"ids":{"explicit":["explicit.stat_4217693429"]}}} +{"ref":"Bow Knockback at Close Range","better":1,"matchers":[{"string":"Отбрасывание при атаке луками с близкого расстояния"}],"trade":{"ids":{"explicit":["explicit.stat_3261557635"]}}} +{"ref":"Brand Skills have #% increased Duration","better":1,"matchers":[{"string":"#% увеличение длительности умений клейма"},{"string":"#% уменьшение длительности умений клейма","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3089482869"],"scourge":["scourge.stat_3089482869"]}}} +{"ref":"Buffs on Players expire #% faster","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Положительные эффекты на игроках истекают на #% быстрее"},{"string":"Положительные эффекты на игроках истекают на #% медленнее"}],"trade":{"ids":{"explicit":["explicit.stat_1217583941"],"fractured":["fractured.stat_1217583941"]}}} +{"ref":"Burning Arrow Always Ignites","better":1,"matchers":[{"string":"Горящая стрела имеет #% шанс поджечь"},{"string":"Горящая стрела всегда поджигает","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2226973351"]}}} +{"ref":"Burning Enemies you kill have a #% chance to Explode, dealing a tenth of their maximum Life as Fire Damage","better":1,"matchers":[{"string":"Убитые вами горящие враги с #% шансом могут взорваться, нанеся десятую часть их максимума здоровья в виде урона от огня"}],"trade":{"ids":{"enchant":["enchant.stat_1617268696"]}}} +{"ref":"Burning Hoofprints","better":1,"matchers":[{"string":"Горящие следы копыт"}],"trade":{"ids":{"explicit":["explicit.stat_3576153145"]}}} +{"ref":"Cages created by Your Glacial Cage Towers are #% larger","better":1,"anointments":[{"roll":20,"oils":"7,11"}],"matchers":[{"string":"Клетки, создаваемые вашими Башнями ледяной клетки, на #% больше"}],"trade":{"ids":{"enchant":["enchant.stat_2449293016"]}}} +{"ref":"Call of Steel causes #% increased Reflected Damage","better":1,"matchers":[{"string":"Зов стали вызывает #% увеличение отраженного урона"},{"string":"Зов стали вызывает #% уменьшение отраженного урона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2879593163"]}}} +{"ref":"Call of Steel deals Reflected Damage with #% increased Area of Effect","better":1,"matchers":[{"string":"Зов стали наносит отраженный урон в увеличенной на #% области действия"},{"string":"Зов стали наносит отраженный урон в уменьшенной на #% области действия","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2067717830"]}}} +{"ref":"Call of Steel has #% increased Use Speed","better":1,"matchers":[{"string":"Зов стали имеет #% повышение скорости использования"},{"string":"Зов стали имеет #% снижение скорости использования","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_109671187"]}}} +{"ref":"Call to Arms","better":1,"matchers":[{"string":"Призыв к оружию"}],"trade":{"ids":{"explicit":["explicit.stat_3292262540"],"fractured":["fractured.stat_3292262540"],"scourge":["scourge.stat_3292262540"]}}} +{"ref":"Can be Enchanted by a Kalguuran Runesmith","better":1,"matchers":[{"string":"Может быть зачаровано калгууранским рунодельцем"}],"trade":{"ids":{"explicit":["explicit.stat_4005027470"]}}} +{"ref":"Can be modified while Corrupted","better":1,"matchers":[{"string":"Может быть изменён, будучи осквернённым"}],"trade":{"ids":{"explicit":["explicit.stat_1161337167"]}}} +{"ref":"Can be Runesmithed as though it were all One Handed Melee Weapon Types","better":1,"matchers":[{"string":"Can be Runesmithed as though it were all One Handed Melee Weapon Types"}],"trade":{"ids":{"explicit":["explicit.stat_3221277412"]}}} +{"ref":"Can have # additional Crafted Modifier","better":1,"matchers":[{"string":"Может иметь дополнительных ремесленных свойств: #"}],"trade":{"ids":{"enchant":["enchant.stat_1963398329"]}}} +{"ref":"Can have # additional Enchantment Modifiers","better":1,"matchers":[{"string":"Может иметь # дополнительных свойств(-а) зачарования"},{"string":"Может иметь второе свойство зачарования","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1135194732"]}}} +{"ref":"Can have # additional Runesmithing Enchantment","better":1,"matchers":[{"string":"Может иметь # дополнительное рунное зачарование"},{"string":"Может иметь # дополнительных рунных зачарования"}],"trade":{"ids":{"explicit":["explicit.stat_1045438865"]}}} +{"ref":"Can have a up to 1 Implicit Modifier while Item has this Modifier","better":1,"matchers":[{"string":"Может иметь до # собственных свойств, пока предмет обладает этим свойством"},{"string":"Может иметь до 1 собственного свойства, пока предмет обладает этим свойством","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1161341806"]}}} +{"ref":"Can have up to # additional Remote Mine placed at a time","better":1,"matchers":[{"string":"Можно установить дополнительных мин: #"}],"trade":{"ids":{"scourge":["scourge.stat_60263468"]}}} +{"ref":"Can have up to # additional Trap placed at a time","better":1,"matchers":[{"string":"Можно установить дополнительных ловушек: #"},{"string":"Можно установить на # ловушки меньше","negate":true},{"string":"Можно установить на # ловушку меньше","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2224292784"],"implicit":["implicit.stat_2224292784"],"fractured":["fractured.stat_2224292784"],"scourge":["scourge.stat_2224292784"]}}} +{"ref":"Can have up to 3 Crafted Modifiers","better":1,"matchers":[{"string":"Может иметь до 3 ремесленных свойств"}],"trade":{"ids":{"explicit":["explicit.stat_1859333175"],"fractured":["fractured.stat_1859333175"],"crafted":["crafted.stat_1859333175"]}}} +{"ref":"Can roll Minion Modifiers","better":1,"matchers":[{"string":"Может иметь свойства приспешников"}],"trade":{"ids":{"implicit":["implicit.stat_2994708956"]}}} +{"ref":"Can't use Chest armour","better":1,"matchers":[{"string":"Невозможно использовать нагрудную броню"}],"trade":{"ids":{"explicit":["explicit.stat_4007482102"]}}} +{"ref":"Can't use Flask in Fifth Slot","better":1,"matchers":[{"string":"Невозможно использовать флакон в пятой ячейке"}],"trade":{"ids":{"implicit":["implicit.stat_589489789"]}}} +{"ref":"Can't use other Rings","better":1,"matchers":[{"string":"Невозможно использовать другие кольца"}],"trade":{"ids":{"explicit":["explicit.stat_64726306"]}}} +{"ref":"Cannot be Blinded","better":1,"matchers":[{"string":"Не может быть ослеплён"}],"trade":{"ids":{"explicit":["explicit.stat_1436284579"],"implicit":["implicit.stat_1436284579"],"fractured":["fractured.stat_1436284579"]}}} +{"ref":"Cannot be Blinded while affected by Precision","better":1,"matchers":[{"string":"Нельзя ослепить под действием Точности"}],"trade":{"ids":{"explicit":["explicit.stat_1653848515"]}}} +{"ref":"Cannot be Chilled","better":1,"matchers":[{"string":"Не может быть охлажден"}],"trade":{"ids":{"explicit":["explicit.stat_283649372"]}}} +{"ref":"Cannot be Chilled or Frozen while moving","better":1,"matchers":[{"string":"Не может быть охлаждён или заморожен во время передвижения"}],"trade":{"ids":{"explicit":["explicit.stat_628032624"]}}} +{"ref":"Cannot be Frozen","better":1,"matchers":[{"string":"Не может быть заморожен"}],"trade":{"ids":{"explicit":["explicit.stat_876831634"],"implicit":["implicit.stat_876831634"],"fractured":["fractured.stat_876831634"],"scourge":["scourge.stat_876831634"]}}} +{"ref":"Cannot be Frozen if Dexterity is higher than Intelligence","better":1,"matchers":[{"string":"Не может быть заморожен, если ловкости больше, чем интеллекта"}],"trade":{"ids":{"explicit":["explicit.stat_3881126302"]}}} +{"ref":"Cannot be Ignited","better":1,"matchers":[{"string":"Не может получить поджог"}],"trade":{"ids":{"explicit":["explicit.stat_331731406"],"implicit":["implicit.stat_331731406"]}}} +{"ref":"Cannot be Ignited if Strength is higher than Dexterity","better":1,"matchers":[{"string":"Не может быть подожжён, если силы больше, чем ловкости"}],"trade":{"ids":{"explicit":["explicit.stat_676883595"]}}} +{"ref":"Cannot be Knocked Back","better":1,"matchers":[{"string":"Не может быть отброшен"}],"trade":{"ids":{"explicit":["explicit.stat_4212255859"],"implicit":["implicit.stat_4212255859"],"fractured":["fractured.stat_4212255859"]}}} +{"ref":"Cannot be Poisoned while Bleeding","better":1,"matchers":[{"string":"Вас нельзя отравить во время кровотечения"}],"trade":{"ids":{"explicit":["explicit.stat_2784102684"]}}} +{"ref":"Cannot be Shocked","better":1,"matchers":[{"string":"Не может получить шок"}],"trade":{"ids":{"explicit":["explicit.stat_491899612"],"implicit":["implicit.stat_491899612"]}}} +{"ref":"Cannot be Shocked if Intelligence is higher than Strength","better":1,"matchers":[{"string":"Не может получить шок, если интеллекта больше, чем силы"}],"trade":{"ids":{"explicit":["explicit.stat_3024242403"]}}} +{"ref":"Cannot be Shocked or Ignited while moving","better":1,"matchers":[{"string":"Не может получить шок или поджог во время передвижения"}],"trade":{"ids":{"explicit":["explicit.stat_3592330380"],"fractured":["fractured.stat_3592330380"]}}} +{"ref":"Cannot be Stunned by Attacks if your other Ring is an Elder Item","better":1,"matchers":[{"string":"Вас нельзя оглушить атаками, если ваше второе кольцо - предмет Древнего"}],"trade":{"ids":{"explicit":["explicit.stat_2926399803"]}}} +{"ref":"Cannot be Stunned by Hits you Block","better":1,"matchers":[{"string":"Вы не получаете оглушения от ударов, которые вы заблокировали"}],"trade":{"ids":{"explicit":["explicit.stat_3058290552"]}}} +{"ref":"Cannot be Stunned by Spells if your other Ring is a Shaper Item","better":1,"matchers":[{"string":"Вас нельзя оглушить чарами, если ваше второе кольцо - предмет Создателя"}],"trade":{"ids":{"explicit":["explicit.stat_2312817839"]}}} +{"ref":"Cannot be Stunned by Suppressed Spell Damage","better":1,"matchers":[{"string":"Вы не можете получить оглушение от подавленного урона от чар"}],"trade":{"ids":{"explicit":["explicit.stat_2916280114"]}}} +{"ref":"Cannot be Stunned if you have at least 10 Crab Barriers","better":1,"matchers":[{"string":"Вас невозможно оглушить, если у вас минимум 10 Крабьих преград"}],"trade":{"ids":{"explicit":["explicit.stat_877233648"]}}} +{"ref":"Cannot be Stunned when on Low Life","better":1,"matchers":[{"string":"Не может быть оглушен при малом количестве здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_1472543401"]}}} +{"ref":"Cannot be Stunned while Bleeding","better":1,"matchers":[{"string":"Вас нельзя оглушить во время кровотечения"}],"trade":{"ids":{"explicit":["explicit.stat_2638865425"]}}} +{"ref":"Cannot be Stunned while Fortified","better":1,"matchers":[{"string":"Невозможно получить оглушение под действием Укрепления"}],"trade":{"ids":{"explicit":["explicit.stat_2983926876"]}}} +{"ref":"Cannot be Stunned while Leeching","better":1,"matchers":[{"string":"Не может получить оглушение во время похищения"}],"trade":{"ids":{"explicit":["explicit.stat_1887508417"]}}} +{"ref":"Cannot be Stunned while you have at least 25 Rage","better":1,"matchers":[{"string":"Вас невозможно оглушить, пока у вас как минимум 25 свирепости"}],"trade":{"ids":{"explicit":["explicit.stat_2971900104"]}}} +{"ref":"Cannot be used with Chaos Inoculation","better":1,"matchers":[{"string":"Не может быть использовано с иммунитетом к хаосу"}],"trade":{"ids":{"explicit":["explicit.stat_623651254"]}}} +{"ref":"Cannot be used with Forbidden Tomes below level #","better":1,"matchers":[{"string":"Не может использоваться вместе с Запретными томами уровня ниже #"}],"trade":{"ids":{"explicit":["sanctum.stat_1512067281"]}}} +{"ref":"Cannot Block","better":1,"matchers":[{"string":"Нельзя блокировать"}],"trade":{"ids":{"explicit":["explicit.stat_4127720801"]}}} +{"ref":"Cannot Block Attack Damage","better":1,"matchers":[{"string":"Не может блокировать урон от атак"}],"trade":{"ids":{"explicit":["explicit.stat_3162258068"],"scourge":["scourge.stat_3162258068"]}}} +{"ref":"Cannot Block Spell Damage","better":1,"matchers":[{"string":"Не может блокировать урон от чар"}],"trade":{"ids":{"explicit":["explicit.stat_4076910393"],"scourge":["scourge.stat_4076910393"]}}} +{"ref":"Cannot Block while you have no Energy Shield","better":1,"matchers":[{"string":"Не может блокировать при отсутствии у вас энергетического щита"}],"trade":{"ids":{"explicit":["explicit.stat_3890287045"]}}} +{"ref":"Cannot deal Critical Strikes with Attacks","better":1,"matchers":[{"string":"Не может наносить критические удары атаками"}],"trade":{"ids":{"explicit":["explicit.stat_3223376951"]}}} +{"ref":"Cannot deal non-Chaos Damage","better":1,"matchers":[{"string":"Наносит только урон хаосом"}],"trade":{"ids":{"explicit":["explicit.stat_3180152291"]}}} +{"ref":"Cannot Evade Enemy Attacks","better":1,"matchers":[{"string":"Невозможно уклониться от вражеских атак"}],"trade":{"ids":{"explicit":["explicit.stat_474452755"],"scourge":["scourge.stat_474452755"]}}} +{"ref":"Cannot Fish while standing in Water","better":1,"matchers":[{"string":"Невозможно рыбачить, стоя в воде"}],"trade":{"ids":{"scourge":["scourge.stat_1831380809"]}}} +{"ref":"Cannot gain Charges","better":1,"matchers":[{"string":"Невозможно получать заряды"}],"trade":{"ids":{"scourge":["scourge.stat_1500620123"]}}} +{"ref":"Cannot gain Energy Shield","better":1,"matchers":[{"string":"Нельзя получать энергетический щит"}],"trade":{"ids":{"explicit":["explicit.stat_206243615"]}}} +{"ref":"Cannot gain Mana during effect","better":1,"matchers":[{"string":"Нельзя получать ману во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_2198697797"]}}} +{"ref":"Cannot gain Power Charges","better":1,"matchers":[{"string":"Не получает зарядов энергии"}],"trade":{"ids":{"explicit":["explicit.stat_2503253050"]}}} +{"ref":"Cannot have Boons","better":1,"matchers":[{"string":"Нельзя иметь благословения"}],"trade":{"ids":{"explicit":["sanctum.stat_2283325632"]}}} +{"ref":"Cannot have Inspiration","better":1,"matchers":[{"string":"Нельзя иметь вдохновение"}],"trade":{"ids":{"explicit":["sanctum.stat_3381591146"]}}} +{"ref":"Cannot Ignite, Chill, Freeze or Shock","better":1,"matchers":[{"string":"Не может накладывать поджог, заморозку или шок"}],"trade":{"ids":{"explicit":["explicit.stat_3281123655"]}}} +{"ref":"Cannot inflict Curses","better":1,"matchers":[{"string":"Нельзя накладывать проклятия"}],"trade":{"ids":{"scourge":["scourge.stat_1925222248"]}}} +{"ref":"Cannot inflict Elemental Ailments","better":1,"matchers":[{"string":"Не может накладывать стихийные состояния"}],"trade":{"ids":{"scourge":["scourge.stat_3913992084"]}}} +{"ref":"Cannot inflict Freeze or Chill","better":1,"matchers":[{"string":"Не может накладывать заморозку или охлаждение"}],"trade":{"ids":{"explicit":["explicit.stat_612223930"]}}} +{"ref":"Cannot inflict Ignite","better":1,"matchers":[{"string":"Не может накладывать поджог"}],"trade":{"ids":{"explicit":["explicit.stat_4198497576"]}}} +{"ref":"Cannot inflict Shock","better":1,"matchers":[{"string":"Невозможно наложить шок"}],"trade":{"ids":{"explicit":["explicit.stat_990377349"]}}} +{"ref":"Cannot Knock Enemies Back","better":1,"matchers":[{"string":"Не может отбрасывать врагов"}],"trade":{"ids":{"explicit":["explicit.stat_2095084973"]}}} +{"ref":"Cannot Leech","better":1,"matchers":[{"string":"Похищение здоровья и маны невозможно"}],"trade":{"ids":{"explicit":["explicit.stat_1336164384"]}}} +{"ref":"Cannot Leech Energy Shield","better":1,"matchers":[{"string":"Нельзя похищать энергетический щит"}],"trade":{"ids":{"scourge":["scourge.stat_700952022"]}}} +{"ref":"Cannot Leech Life","better":1,"matchers":[{"string":"Нельзя похищать здоровье"}],"trade":{"ids":{"explicit":["explicit.stat_3769854701"],"scourge":["scourge.stat_3769854701"]}}} +{"ref":"Cannot Leech Life from Critical Strikes","better":1,"matchers":[{"string":"Не может похищать здоровье от критических ударов"}],"trade":{"ids":{"explicit":["explicit.stat_3243534964"]}}} +{"ref":"Cannot Leech Mana","better":1,"matchers":[{"string":"Нельзя похищать ману"}],"trade":{"ids":{"explicit":["explicit.stat_1759630226"],"scourge":["scourge.stat_1759630226"]}}} +{"ref":"Cannot Leech or Regenerate Mana","better":1,"matchers":[{"string":"Нельзя похищать или регенерировать ману"}],"trade":{"ids":{"explicit":["explicit.stat_2918242917"]}}} +{"ref":"Cannot Leech when on Low Life","better":1,"matchers":[{"string":"Нельзя похищать при малом количестве здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_3279535558"]}}} +{"ref":"Cannot lose Crab Barriers if you have lost Crab Barriers Recently","better":1,"matchers":[{"string":"Нельзя потерять Крабью преграду, если недавно вы теряли Крабью преграду"}],"trade":{"ids":{"explicit":["explicit.stat_241251790"]}}} +{"ref":"Cannot recover Resolve","better":1,"matchers":[{"string":"Нельзя восстанавливать решимость"}],"trade":{"ids":{"explicit":["sanctum.stat_624917333"]}}} +{"ref":"Cannot roll Attack Modifiers","better":1,"matchers":[{"string":"Не может иметь свойства атак"}],"trade":{"ids":{"explicit":["explicit.stat_4122424929"],"fractured":["fractured.stat_4122424929"],"crafted":["crafted.stat_4122424929"]}}} +{"ref":"Cannot roll Caster Modifiers","better":1,"matchers":[{"string":"Не может иметь свойства чар"}],"trade":{"ids":{"explicit":["explicit.stat_1149326139"],"fractured":["fractured.stat_1149326139"],"crafted":["crafted.stat_1149326139"]}}} +{"ref":"Cannot take Reflected Elemental Damage","better":1,"matchers":[{"string":"Не может получать отражённый урон от стихий"}],"trade":{"ids":{"explicit":["explicit.stat_1827932821"]}}} +{"ref":"Cannot take Reflected Physical Damage","better":1,"matchers":[{"string":"Не может получать отражённый физический урон"}],"trade":{"ids":{"explicit":["explicit.stat_249805317"]}}} +{"ref":"Carved to glorify # new faithful converted by High Templar Avarius","better":0,"matchers":[{"string":"Выточен во славу # послушников, обращённых Верховным жрецом Аварием\nПассивные умения в радиусе завоеваны храмовниками","advanced":"Выточен во славу # послушников, обращённых Верховным жрецом Аварием(Аварием-Макерием)\nПассивные умения в радиусе завоеваны храмовниками"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_avarius"]}}} +{"ref":"Carved to glorify # new faithful converted by High Templar Dominus","better":0,"matchers":[{"string":"Выточен во славу # послушников, обращённых Верховным жрецом Владыкой\nПассивные умения в радиусе завоеваны храмовниками","advanced":"Выточен во славу # послушников, обращённых Верховным жрецом Владыкой(Аварием-Макерием)\nПассивные умения в радиусе завоеваны храмовниками"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_dominus"]}}} +{"ref":"Carved to glorify # new faithful converted by High Templar Maxarius","better":0,"matchers":[{"string":"Выточен во славу # послушников, обращённых Верховным жрецом Макерием\nПассивные умения в радиусе завоеваны храмовниками","advanced":"Выточен во славу # послушников, обращённых Верховным жрецом Макерием(Аварием-Макерием)\nПассивные умения в радиусе завоеваны храмовниками"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_maxarius"]}}} +{"ref":"Cast Level # Fire Burst on Hit","better":1,"matchers":[{"string":"Сотворяет Огненный взрыв # уровня при нанесении удара"}],"trade":{"ids":{"enchant":["enchant.stat_1606553462"]}}} +{"ref":"Cast Level 20 Fire Burst on Hit","better":1,"matchers":[{"string":"Сотворяет Огненный взрыв 20 уровня при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_1621470436"],"fractured":["fractured.stat_1621470436"]}}} +{"ref":"Catarina's Veiled","better":0,"matchers":[{"string":"Завуалированная Катариной"},{"string":"Завуалированное Катариной"},{"string":"Завуалированные Катариной"},{"string":"Завуалированный Катариной"}],"trade":{"ids":{"veiled":["veiled.mod_63772"]}}} +{"ref":"Caustic Arrow has #% chance to inflict Withered on Hit for # second base Duration","better":1,"matchers":[{"string":"При нанесении удара Едкая стрела имеет #% шанс наложить Истощение с базовой длительностью # сек."},{"string":"При нанесении удара Едкая стрела накладывает Истощение с базовой длительностью # сек."}],"trade":{"ids":{"enchant":["enchant.stat_1993913925"]}}} +{"ref":"Celestial Footprints","better":1,"matchers":[{"string":"Небесные следы"}],"trade":{"ids":{"explicit":["explicit.stat_50381303"]}}} +{"ref":"Chain Hook deals #% increased Damage","better":1,"matchers":[{"string":"Цепной крюк наносит увеличенный на #% урон"},{"string":"Цепной крюк наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_289027663"]}}} +{"ref":"Chain Hook grants 1 Rage if it Hits Enemies","better":1,"matchers":[{"string":"Цепной крюк дарует 1 свирепости, если наносит удар по врагам"}],"trade":{"ids":{"enchant":["enchant.stat_2588242810"]}}} +{"ref":"Chain Hook has +# metre to radius per 12 Rage","better":1,"matchers":[{"string":"# м к радиусу конуса урона Цепного крюка за каждые 12 свирепости"}],"trade":{"ids":{"enchant":["enchant.stat_3269147016"]}}} +{"ref":"Chance to Block is Unlucky","better":1,"matchers":[{"string":"Шанс блока неудачлив","value":-1},{"string":"Шанс блока удачлив","value":1}],"trade":{"ids":{"explicit":["explicit.stat_984774803"]}}} +{"ref":"Chance to Block Spell Damage is Unlucky","better":1,"matchers":[{"string":"Шанс блокировать урон от чар неудачлив","value":-1},{"string":"Шанс блокировать урон от чар удачлив","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3551025193"]}}} +{"ref":"Channelling Skills deal #% increased Damage","better":1,"matchers":[{"string":"#% увеличение урона поддерживаемыми умениями"},{"string":"#% уменьшение урона поддерживаемыми умениями","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2733285506"]}}} +{"ref":"Channelling Skills deal #% increased Damage per 10 Devotion","better":1,"matchers":[{"string":"Поддерживаемые умения наносят увеличенный на #% урон за каждые 10 набожности"},{"string":"Поддерживаемые умения наносят уменьшенный на #% урон за каждые 10 набожности","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_970844066"]}}} +{"ref":"Channelling Skills have +# to Total Mana Cost","better":1,"matchers":[{"string":"# к итоговому расходу маны поддерживаемыми умениями"}],"trade":{"ids":{"explicit":["explicit.stat_2421446548"],"fractured":["fractured.stat_2421446548"],"crafted":["crafted.stat_2421446548"]}}} +{"ref":"Chaos Damage can Ignite, Chill and Shock","better":1,"matchers":[{"string":"Урон хаосом может поджигать, охлаждать и накладывать шок"}],"trade":{"ids":{"explicit":["explicit.stat_3470457445"]}}} +{"ref":"Chaos Damage taken does not bypass Energy Shield","better":1,"matchers":[{"string":"Получаемый урон хаосом не обходит энергетический щит"}],"trade":{"ids":{"explicit":["explicit.stat_1119465199"]}}} +{"ref":"Chaos Damage taken does not bypass Energy Shield during effect","better":1,"matchers":[{"string":"Получаемый урон хаосом не обходит энергетический щит во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_2229840047"]}}} +{"ref":"Chaos Damage taken does not bypass Energy Shield while not on Low Life","better":1,"matchers":[{"string":"Получаемый урон хаосом не обходит энергетический щит не при малом количестве здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_887556907"],"fractured":["fractured.stat_887556907"]}}} +{"ref":"Chaos Damage taken does not bypass Minions' Energy Shield","better":1,"matchers":[{"string":"Получаемый урон хаосом не обходит энергетический щит приспешников"}],"trade":{"ids":{"explicit":["explicit.stat_3008104268"]}}} +{"ref":"Chaos Damage with Hits is Lucky","better":1,"matchers":[{"string":"Урон хаосом от ударов неудачлив","value":-1},{"string":"Урон хаосом от ударов удачлив","value":1}],"trade":{"ids":{"enchant":["enchant.stat_2678511347"]}}} +{"ref":"Chaos Golems deal #% increased Damage","better":1,"matchers":[{"string":"#% увеличение урона големов хаоса"},{"string":"#% уменьшение урона големов хаоса","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2505115650"]}}} +{"ref":"Chaos Resistance is Zero","better":1,"matchers":[{"string":"Сопротивление хаосу равно нулю"}],"trade":{"ids":{"explicit":["explicit.stat_2439129490"],"fractured":["fractured.stat_2439129490"]}}} +{"ref":"Chaos Skills have #% chance to Ignite","better":1,"matchers":[{"string":"Умения хаоса имеют #% шанс наложить поджог"}],"trade":{"ids":{"explicit":["explicit.stat_3573128085"]}}} +{"ref":"Chaos Skills have #% increased Skill Effect Duration","better":1,"matchers":[{"string":"#% увеличение длительности эффектов умений хаоса"},{"string":"#% уменьшение длительности эффектов умений хаоса","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_289885185"],"fractured":["fractured.stat_289885185"],"crafted":["crafted.stat_289885185"]}}} +{"ref":"Charged Dash has #% more Movement Speed","better":1,"matchers":[{"string":"Заряженный рывок имеет на #% больше скорости передвижения"},{"string":"Заряженный рывок имеет на #% меньше скорости передвижения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_797408710"]}}} +{"ref":"Charged Dash has +# metre to radius of each Wave's last damage Area","better":1,"matchers":[{"string":"# м к радиусу последней области действия каждой волны Заряженного рывка"}],"trade":{"ids":{"enchant":["enchant.stat_2898302567"]}}} +{"ref":"Chests have #% chance to drop Double Aureus Coins","better":1,"matchers":[{"string":"Из сундуков с #% шансом может выпасть двойное количество Ауруса"}],"trade":{"ids":{"explicit":["sanctum.stat_3926246735"]}}} +{"ref":"Chill Effect and Freeze Duration on you are based on #% of Energy Shield","better":1,"matchers":[{"string":"Длительность охлаждения и заморозки на вас основаны на #% от вашего энергетического щита"}],"trade":{"ids":{"explicit":["explicit.stat_1194648995"]}}} +{"ref":"Chill Enemies as though dealing #% more Damage","better":1,"matchers":[{"string":"Охлаждает врагов как если бы по ним нанесли на #% больше урона"},{"string":"Охлаждает врагов как если бы по ним нанесли на #% меньше урона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2223307291"]}}} +{"ref":"Chill Enemies for # second on Hit with this Weapon when in Off Hand","better":1,"matchers":[{"string":"Охлаждает врагов на # секунд(-ы) при нанесении удара этим оружием в левой руке"},{"string":"Охлаждает врагов на # секунду при нанесении удара этим оружием в левой руке"}],"trade":{"ids":{"explicit":["explicit.stat_1488891279"]}}} +{"ref":"Chill Enemy for # second when Hit, reducing their Action Speed by 30%","better":1,"matchers":[{"string":"При получении удара охлаждает врага на # секунд(-ы), снижая скорость его действий на 30%"},{"string":"При получении удара охлаждает врага на # секунду, снижая скорость его действий на 30%"}],"trade":{"ids":{"explicit":["explicit.stat_2459809121"],"fractured":["fractured.stat_2459809121"],"scourge":["scourge.stat_2459809121"]}}} +{"ref":"Chill Nearby Enemies when you Block","better":1,"matchers":[{"string":"При блоке охлаждает ближайших врагов"}],"trade":{"ids":{"explicit":["explicit.stat_583277599"],"fractured":["fractured.stat_583277599"]}}} +{"ref":"Chill nearby Enemies when you Focus, causing 30% reduced Action Speed","better":1,"matchers":[{"string":"В момент получения Фокуса охлаждает ближайших врагов, снижая скорость их действий на 30%"}],"trade":{"ids":{"explicit":["explicit.stat_2384145996"]}}} +{"ref":"Chills from Ice Nova Hits always reduce Action Speed by at least #%","better":1,"matchers":[{"string":"Охлаждения, наложенные Кольцом льда, всегда снижают скорость действий хотя бы на #%"}],"trade":{"ids":{"enchant":["enchant.stat_644285691"]}}} +{"ref":"Chills from your Hits always reduce Action Speed by at least #%","better":1,"matchers":[{"string":"Охлаждения, наложенные вашими ударами, всегда снижают скорость действий как минимум на #%"}],"trade":{"ids":{"explicit":["explicit.stat_2774670797"]}}} +{"ref":"Clarity has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"#% увеличение эффективности удержания маны Ясностью ума"},{"string":"#% уменьшение эффективности удержания маны Ясностью ума","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2668611054","enchant.stat_453778214"]}}} +{"ref":"Clarity has no Reservation","better":1,"matchers":[{"string":"Ясность ума не удерживает ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_2250543633"]}}} +{"ref":"Cobra Lash Chains an additional time","better":1,"matchers":[{"string":"Бросок кобры поражает # дополнительных целей по цепи"},{"string":"Бросок кобры поражает дополнительную цель по цепи","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1471796012"]}}} +{"ref":"Cobra Lash deals #% increased Damage","better":1,"matchers":[{"string":"Бросок кобры наносит увеличенный на #% урон"},{"string":"Бросок кобры наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2224580362"]}}} +{"ref":"Cobra Lash has #% increased Projectile Speed","better":1,"matchers":[{"string":"Бросок кобры имеет #% повышение скорости снарядов"},{"string":"Бросок кобры имеет #% снижение скорости снарядов","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_732631533"]}}} +{"ref":"Cold Exposure on Hit if you've cast Frostbite in the past 10 seconds","better":1,"matchers":[{"string":"Накладывает восприимчивость к холоду, если вы сотворяли Обморожение за последние 10 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_1168138239"]}}} +{"ref":"Cold Exposure you inflict applies an extra +#% to Cold Resistance","better":-1,"matchers":[{"string":"Накладываемая вами восприимчивость к холоду добавляет дополнительные #% к сопротивлению холоду"}],"trade":{"ids":{"explicit":["explicit.stat_600221736"]}}} +{"ref":"Cold Resistance cannot be Penetrated","better":1,"matchers":[{"string":"Сопротивление холоду нельзя пробить"}],"trade":{"ids":{"explicit":["explicit.stat_1864616755"],"fractured":["fractured.stat_1864616755"]}}} +{"ref":"Cold Resistance is #%","better":1,"matchers":[{"string":"Сопротивление холоду равно #%"}],"trade":{"ids":{"explicit":["explicit.stat_496075050"]}}} +{"ref":"Cold Skills have #% chance to Poison on Hit","better":1,"matchers":[{"string":"Умения холода имеют #% шанс отравить при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_2373079502"]}}} +{"ref":"Cold Snap has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"#% повышение скорости перезарядки Укуса стужи"},{"string":"#% снижение скорости перезарядки Укуса стужи","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2289367813"]}}} +{"ref":"Combust has #% increased Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Сожжения"}],"trade":{"ids":{"enchant":["enchant.stat_4225882962"]}}} +{"ref":"Commanded leadership over # warriors under Akoya","better":0,"matchers":[{"string":"Повелевает # воинами Акойи\nПассивные умения в радиусе завоеваны каруи","advanced":"Повелевает # воинами Акойи(Акойи-Ракиаты)\nПассивные умения в радиусе завоеваны каруи"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_akoya"]}}} +{"ref":"Commanded leadership over # warriors under Kaom","better":0,"matchers":[{"string":"Повелевает # воинами Каома\nПассивные умения в радиусе завоеваны каруи","advanced":"Повелевает # воинами Каома(Акойи-Ракиаты)\nПассивные умения в радиусе завоеваны каруи"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_kaom"]}}} +{"ref":"Commanded leadership over # warriors under Rakiata","better":0,"matchers":[{"string":"Повелевает # воинами Ракиаты\nПассивные умения в радиусе завоеваны каруи","advanced":"Повелевает # воинами Ракиаты(Акойи-Ракиаты)\nПассивные умения в радиусе завоеваны каруи"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_rakiata"]}}} +{"ref":"Commissioned # coins to commemorate Cadiro","better":0,"matchers":[{"string":"Выделено # монет в память о Кадиро\nПассивные умения в радиусе завоеваны Вечной империей","advanced":"Выделено # монет в память о Кадиро(Кадиро-Виктарио)\nПассивные умения в радиусе завоеваны Вечной империей"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_cadiro"]}}} +{"ref":"Commissioned # coins to commemorate Caspiro","better":0,"matchers":[{"string":"Выделено # монет в память о Каспиро\nПассивные умения в радиусе завоеваны Вечной империей","advanced":"Выделено # монет в память о Каспиро(Кадиро-Виктарио)\nПассивные умения в радиусе завоеваны Вечной империей"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_caspiro"]}}} +{"ref":"Commissioned # coins to commemorate Victario","better":0,"matchers":[{"string":"Выделено # монет в память о Виктарио\nПассивные умения в радиусе завоеваны Вечной империей","advanced":"Выделено # монет в память о Виктарио(Кадиро-Виктарио)\nПассивные умения в радиусе завоеваны Вечной империей"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_victario"]}}} +{"ref":"Completing a Heist generates an additional Reveal","better":1,"matchers":[{"string":"Завершение ограбления дает дополнительных раскрытий: #"},{"string":"Завершение ограбления дает дополнительное раскрытие","value":1}],"trade":{"ids":{"enchant":["enchant.stat_2309146693"]}}} +{"ref":"Conductivity has no Reservation if Cast as an Aura","better":1,"matchers":[{"string":"Проводимость в виде ауры не удерживает ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_1233358566"]}}} +{"ref":"Conduit","better":1,"matchers":[{"string":"Проводник"}],"trade":{"ids":{"explicit":["explicit.stat_1994392904"],"scourge":["scourge.stat_1994392904"]}}} +{"ref":"Consecrated Ground created by this Flask has Tripled Radius","better":1,"matchers":[{"string":"#% увеличение радиуса освящённой земли, созданной при помощи этого флакона"},{"string":"Удвоенный радиус освящённой земли, созданной при помощи этого флакона","value":100},{"string":"Утроенный радиус освящённой земли, созданной при помощи этого флакона","value":200}],"trade":{"ids":{"explicit":["explicit.stat_806698863"]}}} +{"ref":"Consecrated Ground created during Effect applies #% increased Damage taken to Enemies","better":1,"matchers":[{"string":"Враги на освящённой земле, созданной вами во время действия эффекта, получают увеличенный на #% урон"}],"trade":{"ids":{"explicit":["explicit.stat_1866211373"]}}} +{"ref":"Consecrated Ground from Holy Flame Totem applies #% increased Damage taken to Enemies","better":1,"matchers":[{"string":"Враги на освящённой земле, созданной Тотемом священного огня, получают увеличенный на #% урон"},{"string":"Враги на освящённой земле, созданной Тотемом священного огня, получают уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2807947"]}}} +{"ref":"Consecrated Ground from Purifying Flame applies #% increased Damage taken to Enemies","better":1,"matchers":[{"string":"Враги, находящиеся на освящённой земле, созданной Очищающим пламенем, получают увеличенный на #% урон"},{"string":"Враги, находящиеся на освящённой земле, созданной Очищающим пламенем, получают уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3100629498"]}}} +{"ref":"Consecrated Ground you create applies #% increased Damage taken to Enemies","better":1,"matchers":[{"string":"Враги на созданной вами освящённой земле получают увеличенный на #% урон"},{"string":"Враги на созданной вами освящённой земле получают уменьшенный на #% урон","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2474564741"]}}} +{"ref":"Consecrated Ground you create while affected by Zealotry causes enemies to take #% increased Damage","better":1,"matchers":[{"string":"Созданная вами под действием Фанатизма освящённая земля увеличивает получаемый противниками урон на #%"},{"string":"Созданная вами под действием Фанатизма освящённая земля уменьшает получаемый противниками урон на #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2434030180"]}}} +{"ref":"Consecrated Path deals #% increased Damage","better":1,"matchers":[{"string":"Освящённый путь наносит увеличенный на #% урон"},{"string":"Освящённый путь наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4047323043"]}}} +{"ref":"Consecrated Path has #% increased Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Освящённого пути"},{"string":"#% уменьшение области действия Освящённого пути","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3285061858"]}}} +{"ref":"Consecrated Path has #% increased teleport range","better":1,"matchers":[{"string":"#% увеличение дальности телепорта Освящённого пути"}],"trade":{"ids":{"enchant":["enchant.stat_2048678824"]}}} +{"ref":"Consumes 1 Frenzy Charge on use","better":1,"matchers":[{"string":"При использовании расходует зарядов ярости: #"},{"string":"При использовании расходует 1 заряд ярости","value":1},{"string":"При использовании расходует заряды ярости","value":100}],"trade":{"ids":{"explicit":["explicit.stat_570159344"]}}} +{"ref":"Consumes a Void Charge to Trigger Level # Void Shot when you fire Arrows with a Non-Triggered Skill","better":1,"matchers":[{"string":"Расходует заряд пустоты, чтобы вызвать срабатывание Выстрела пустоты # уровня, когда вы выпускаете стрелы несрабатываемым умением"}],"trade":{"ids":{"explicit":["explicit.stat_3262369040"]}}} +{"ref":"Consumes Maximum Charges to use","better":1,"matchers":[{"string":"Расходует все заряды при использовании"}],"trade":{"ids":{"explicit":["explicit.stat_3426614534"]}}} +{"ref":"Contains additional waves of Undead Monsters","better":1,"matchers":[{"string":"Содержит дополнительные волны нежити"}],"trade":{"ids":{"explicit":["explicit.stat_1968038301"]}}} +{"ref":"Contains waves of Monsters","better":1,"matchers":[{"string":"Содержит волны монстров"}],"trade":{"ids":{"explicit":["explicit.stat_1787444936"]}}} +{"ref":"Conversion Trap #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"#% повышение скорости перезарядки Ловушки переманивания"},{"string":"#% снижение скорости перезарядки Ловушки переманивания","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2143519574"]}}} +{"ref":"Converted Enemies have #% increased Damage","better":1,"matchers":[{"string":"Обращенные враги имеют #% увеличение урона"}],"trade":{"ids":{"enchant":["enchant.stat_131320052"]}}} +{"ref":"Convocation has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"#% повышение скорости перезарядки Сбора"},{"string":"#% снижение скорости перезарядки Сбора","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2680060124"]}}} +{"ref":"Corpses you Spawn have #% increased Maximum Life","better":1,"matchers":[{"string":"Создаваемые вами трупы имеют #% увеличение максимума здоровья"},{"string":"Создаваемые вами трупы имеют #% уменьшение максимума здоровья","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_586568910"]}}} +{"ref":"Corrupted Blood cannot be inflicted on you","better":1,"matchers":[{"string":"На вас нельзя наложить эффект Оскверненной крови"}],"trade":{"ids":{"explicit":["explicit.stat_1658498488"],"implicit":["implicit.stat_1658498488"],"fractured":["fractured.stat_1658498488"]}}} +{"ref":"Corrupted Blood cannot be inflicted on you if you have at least 5 Corrupted Blood Debuffs on you","better":1,"matchers":[{"string":"На вас нельзя наложить Осквернённую кровь, если на вас действуют как минимум 5 отрицательных эффектов Осквернённой крови"}],"trade":{"ids":{"scourge":["scourge.stat_736820284"]}}} +{"ref":"Corrupted Soul","better":1,"matchers":[{"string":"Осквернённая душа"}],"trade":{"ids":{"explicit":["explicit.stat_1911037487"]}}} +{"ref":"Corrupting Fever deals #% increased Damage","better":1,"matchers":[{"string":"Разлагающая лихорадка наносит увеличенный на #% урон"},{"string":"Разлагающая лихорадка наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4010544321"]}}} +{"ref":"Corrupting Fever has +#% chance to inflict an additional Corrupted Blood Debuff","better":1,"matchers":[{"string":"#% шанс наложить Разлагающей лихорадкой дополнительный отрицательный эффект Оскверненной крови"}],"trade":{"ids":{"enchant":["enchant.stat_3513613206"]}}} +{"ref":"Count as having maximum number of Endurance Charges\nCount as having maximum number of Frenzy Charges\nCount as having maximum number of Power Charges","better":1,"matchers":[{"string":"Вы считаетесь имеющими максимум зарядов выносливости\nВы считаетесь имеющими максимум зарядов ярости\nВы считаетесь имеющими максимум зарядов энергии"}],"trade":{"ids":{"explicit":["explicit.stat_3584443917"]}}} +{"ref":"Counts as all One Handed Melee Weapon Types","better":1,"matchers":[{"string":"Считается за все виды одноручных оружий ближнего боя"}],"trade":{"ids":{"explicit":["explicit.stat_1524882321"]}}} +{"ref":"Counts as Dual Wielding","better":1,"matchers":[{"string":"Считается парным оружием"}],"trade":{"ids":{"explicit":["explicit.stat_2797075304"]}}} +{"ref":"Cover Full Life Enemies in Ash for # seconds on Melee Weapon Hit","better":1,"matchers":[{"string":"Покрывает врагов с полным здоровьем пеплом на # секунд(-ы) при нанесении удара оружием ближнего боя"}],"trade":{"ids":{"explicit":["explicit.stat_2428064388"]}}} +{"ref":"Crackling Lance deals #% increased Damage","better":1,"matchers":[{"string":"Искрящееся копье наносит увеличенный на #% урон"},{"string":"Искрящееся копье наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_435519320"]}}} +{"ref":"Crackling Lance has #% increased branching angle","better":1,"matchers":[{"string":"Искрящееся копье имеет #% увеличение угла области действия"},{"string":"Искрящееся копье имеет #% уменьшение угла области действия","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2896346908"]}}} +{"ref":"Crackling Lance has #% increased Cast Speed","better":1,"matchers":[{"string":"Искрящееся копье имеет #% повышение скорости сотворения"},{"string":"Искрящееся копье имеет #% снижение скорости сотворения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_617228927"]}}} +{"ref":"Create a Blighted Spore when your Skills or Minions Kill a Rare Monster","better":1,"matchers":[{"string":"Создаёт заражённую спору, когда ваши умения или приспешники убивают редкого монстра"}],"trade":{"ids":{"explicit":["explicit.stat_2485187927"]}}} +{"ref":"Create Profane Ground instead of Consecrated Ground","better":1,"matchers":[{"string":"Создаёт нечестивую землю вместо освящённой земли"}],"trade":{"ids":{"explicit":["explicit.stat_1243613350"]}}} +{"ref":"Creates a Smoke Cloud on Rampage","better":1,"matchers":[{"string":"Создаёт облако дыма при Буйстве"}],"trade":{"ids":{"explicit":["explicit.stat_3321583955"]}}} +{"ref":"Creates a Smoke Cloud on Use","better":1,"matchers":[{"string":"При использовании создает облако дыма"}],"trade":{"ids":{"implicit":["implicit.stat_538730182"]}}} +{"ref":"Creates Chilled Ground on Use","better":1,"matchers":[{"string":"При использовании создает замерзшую землю"}],"trade":{"ids":{"implicit":["implicit.stat_3311869501"]}}} +{"ref":"Creates Consecrated Ground on Critical Strike","better":1,"matchers":[{"string":"#% шанс создать освящённую землю при нанесении критического удара"},{"string":"Создаёт освящённую землю при нанесении критического удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3195625581"]}}} +{"ref":"Creates Consecrated Ground on Use","better":1,"matchers":[{"string":"При использовании создаёт освящённую землю"}],"trade":{"ids":{"implicit":["implicit.stat_2146730404"]}}} +{"ref":"Creeping Frost's Chilling Area has #% increased Movement Speed","better":1,"matchers":[{"string":"Охлаждающая область Ползучего мороза имеет #% повышение скорости передвижения"},{"string":"Охлаждающая область Ползучего мороза имеет #% снижение скорости передвижения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2781179464"]}}} +{"ref":"Cremation can have up to # additional Geyser at a time","better":1,"matchers":[{"string":"Кремация может иметь до # дополнительного гейзера одновременно"},{"string":"Кремация может иметь до # дополнительных гейзеров одновременно"}],"trade":{"ids":{"enchant":["enchant.stat_3503624267"]}}} +{"ref":"Crimson Dance","better":1,"matchers":[{"string":"Багровый танец"}],"trade":{"ids":{"explicit":["explicit.stat_300702212"],"fractured":["fractured.stat_300702212"],"scourge":["scourge.stat_300702212"]}}} +{"ref":"Critical Strike Chance is #% for Hits with this Weapon","better":1,"matchers":[{"string":"Шанс критического удара для ударов этим оружием равен #%"}],"trade":{"ids":{"explicit":["explicit.stat_1672183492"]}}} +{"ref":"Critical Strike Chance is increased by Overcapped Lightning Resistance","better":1,"matchers":[{"string":"Шанс критического удара увеличен на значение сопротивления молнии выше максимума"}],"trade":{"ids":{"explicit":["explicit.stat_2478752719"],"fractured":["fractured.stat_2478752719"]}}} +{"ref":"Critical Strikes deal no Damage","better":1,"matchers":[{"string":"Критические удары не наносят урона"}],"trade":{"ids":{"explicit":["explicit.stat_3245481061"]}}} +{"ref":"Critical Strikes do not inherently Freeze","better":1,"matchers":[{"string":"Критические удары изначально не замораживают врагов"}],"trade":{"ids":{"explicit":["explicit.stat_3979476531"]}}} +{"ref":"Critical Strikes do not inherently inflict non-Damaging Ailments","better":1,"matchers":[{"string":"Критические удары изначально не накладывают не наносящие урон состояния"}],"trade":{"ids":{"explicit":["explicit.stat_249545292"]}}} +{"ref":"Critical Strikes have #% chance to Blind Enemies while you have Cat's Stealth","better":1,"matchers":[{"string":"Критические удары имеют #% шанс ослепить врагов, пока на вас действует Кошачья скрытность"}],"trade":{"ids":{"explicit":["explicit.stat_843854434"]}}} +{"ref":"Critical Strikes have #% chance to inflict Malignant Madness if The Eater of Worlds is dominant","better":1,"matchers":[{"string":"Критические удары с #% могут наложить Пагубное сумасшествие, если преобладает Пожиратель миров"},{"string":"Критические удары накладывают Пагубное сумасшествие, если преобладает Пожиратель миров","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1109900829"]}}} +{"ref":"Critical Strikes have Culling Strike","better":1,"matchers":[{"string":"Ваши критические удары имеют эффект Добивание"}],"trade":{"ids":{"explicit":["explicit.stat_2996445420"]}}} +{"ref":"Critical Strikes Penetrate #% of Enemy Elemental Resistances while affected by Zealotry","better":1,"matchers":[{"string":"Под действием Фанатизма критические удары пробивают #% вражеского сопротивления стихиям"}],"trade":{"ids":{"explicit":["explicit.stat_2091518682"]}}} +{"ref":"Critical Strikes with Spells have #% chance to inflict Impale","better":1,"matchers":[{"string":"Критические удары чарами с #% шансом могут наложить Прокол"},{"string":"Критические удары чарами накладывают Прокол","value":99}],"trade":{"ids":{"explicit":["explicit.stat_4084476257"]}}} +{"ref":"Culling Strike","better":1,"matchers":[{"string":"Добивание"}],"trade":{"ids":{"explicit":["explicit.stat_2524254339"],"implicit":["implicit.stat_2524254339"],"fractured":["fractured.stat_2524254339"],"enchant":["enchant.stat_2524254339"],"scourge":["scourge.stat_2524254339"]}}} +{"ref":"Culling Strike against Burning Enemies","better":1,"matchers":[{"string":"Добивание горящих врагов"}],"trade":{"ids":{"explicit":["explicit.stat_1777334641"]}}} +{"ref":"Culling Strike against Enemies Cursed with Poacher's Mark","better":1,"matchers":[{"string":"Добивание врагов, проклятых Меткой браконьера"}],"trade":{"ids":{"explicit":["explicit.stat_2114080270"]}}} +{"ref":"Culling Strike against Frozen Enemies","better":1,"matchers":[{"string":"Добивание по замороженным врагам"}],"trade":{"ids":{"explicit":["explicit.stat_2664667514"]}}} +{"ref":"Culling Strike during Effect","better":1,"matchers":[{"string":"Добивание во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_2175889777"]}}} +{"ref":"Curse Auras from Socketed Skills also affect you","better":1,"matchers":[{"string":"Ауры проклятий из размещенных умений также действуют на вас"}],"trade":{"ids":{"explicit":["explicit.stat_2965611853"]}}} +{"ref":"Curse Enemies with Conductivity on Hit","better":1,"matchers":[{"string":"#% шанс проклясть врагов Проводимостью при нанесении удара"},{"string":"Проклинает врагов Проводимостью при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_710372469"],"implicit":["implicit.stat_710372469"],"fractured":["fractured.stat_710372469"],"scourge":["scourge.stat_670088789"]}}} +{"ref":"Curse Enemies with Despair on Hit","better":1,"matchers":[{"string":"#% шанс проклясть врагов Отчаянием при нанесении удара"},{"string":"Проклинает врагов Отчаянием при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_2764915899"],"implicit":["implicit.stat_2764915899"],"fractured":["fractured.stat_2764915899"],"scourge":["scourge.stat_1764973832"]}}} +{"ref":"Curse Enemies with Elemental Weakness on Hit","better":1,"matchers":[{"string":"#% шанс проклясть врагов Уязвимостью к стихиям при нанесении удара"},{"string":"Проклинает врагов Уязвимостью к стихиям при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_2028847114"],"implicit":["implicit.stat_2028847114"],"fractured":["fractured.stat_2028847114"],"enchant":["enchant.stat_636057969"],"scourge":["scourge.stat_636057969"]}}} +{"ref":"Curse Enemies with Elemental Weakness when you Block their Spell Damage, ignoring Curse Limit","better":1,"matchers":[{"string":"Проклинает врагов Уязвимостью к стихиям, когда вы блокируете их урон от чар, игнорируя лимит проклятий"}],"trade":{"ids":{"explicit":["explicit.stat_2048643052"]}}} +{"ref":"Curse Enemies with Enfeeble on Hit","better":1,"matchers":[{"string":"#% шанс проклясть врагов Слабостью при нанесении удара"},{"string":"Проклинает врагов Слабостью при нанесении удара"}],"trade":{"ids":{"implicit":["implicit.stat_1625819882"],"scourge":["scourge.stat_1516661546"]}}} +{"ref":"Curse Enemies with Flammability on Block","better":1,"matchers":[{"string":"Проклинает врагов Горючестью при блоке"}],"trade":{"ids":{"explicit":["explicit.stat_2776399916"]}}} +{"ref":"Curse Enemies with Flammability on Hit","better":1,"matchers":[{"string":"Проклинает врагов Горючестью при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_338121249","explicit.stat_654274615"],"implicit":["implicit.stat_338121249"],"fractured":["fractured.stat_338121249"],"scourge":["scourge.stat_654274615"]}}} +{"ref":"Curse Enemies with Frostbite on Hit","better":1,"matchers":[{"string":"#% шанс проклясть врагов Обморожением при нанесении удара"},{"string":"Проклинает врагов Обморожением при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_426847518"],"implicit":["implicit.stat_426847518"],"fractured":["fractured.stat_426847518"],"scourge":["scourge.stat_1016707110"]}}} +{"ref":"Curse Enemies with Punishment when you Block their Melee Damage, ignoring Curse Limit","better":1,"matchers":[{"string":"Проклинает врагов Наказанием, когда вы блокируете их урон в ближнем бою, игнорируя лимит проклятий"}],"trade":{"ids":{"explicit":["explicit.stat_2922377850"]}}} +{"ref":"Curse Enemies with Temporal Chains on Hit","better":1,"matchers":[{"string":"Проклинает врагов Путами времени при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_3433724931","explicit.stat_4139135963"],"implicit":["implicit.stat_3433724931"],"scourge":["scourge.stat_4139135963"]}}} +{"ref":"Curse Enemies with Temporal Chains when you Block their Projectile Attack Damage, ignoring Curse Limit","better":1,"matchers":[{"string":"Проклинает врагов Путами времени, когда вы блокируете их урон от снарядов атаками, игнорируя лимит проклятий"}],"trade":{"ids":{"explicit":["explicit.stat_541329769"]}}} +{"ref":"Curse Enemies with Vulnerability on Block","better":1,"matchers":[{"string":"Проклинает врагов Беззащитностью при блоке"}],"trade":{"ids":{"explicit":["explicit.stat_3477714116"]}}} +{"ref":"Curse Enemies with Vulnerability on Hit","better":1,"matchers":[{"string":"#% шанс проклясть врагов Беззащитностью при нанесении удара"},{"string":"#% шанс прокляcть врагов Беззащитностью при нанесении удара"},{"string":"Проклинает врагов Беззащитностью при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_2213584313","explicit.stat_3967845372"],"implicit":["implicit.stat_3967845372"],"fractured":["fractured.stat_2213584313","fractured.stat_3967845372"],"scourge":["scourge.stat_1826297223"]}}} +{"ref":"Curse Non-Cursed Enemies with Enfeeble on Hit","better":1,"matchers":[{"string":"#% шанс прокляcть не проклятых врагов Слабостью при нанесении удара"},{"string":"Проклинает не проклятых врагов Слабостью при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3804297142"]}}} +{"ref":"Curse Skills have #% increased Cast Speed","better":1,"matchers":[{"string":"#% повышение скорости сотворения умений проклятий"},{"string":"#% снижение скорости сотворения умений проклятий","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2378065031"]}}} +{"ref":"Curse Skills have #% increased Skill Effect Duration","better":1,"matchers":[{"string":"Умения проклятий имеют #% увеличение длительности эффектов умений"},{"string":"Умения проклятий имеют #% уменьшение длительности эффектов умений","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1435748744"],"implicit":["implicit.stat_1435748744"],"fractured":["fractured.stat_1435748744"],"crafted":["crafted.stat_1435748744"]}}} +{"ref":"Cursed Enemies cannot inflict Elemental Ailments on You","better":1,"matchers":[{"string":"Проклятые враги не могут накладывать на вас стихийные состояния"}],"trade":{"ids":{"explicit":["explicit.stat_2643613764"]}}} +{"ref":"Cursed Enemies you or your Minions Kill have a #% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage","better":1,"matchers":[{"string":"Проклятые враги, убитые вами или вашими приспешниками, имеют #% шанс взорваться, нанеся четверть от их максимума здоровья в виде урона хаосом"}],"trade":{"ids":{"explicit":["explicit.stat_1763939859"]}}} +{"ref":"Damage cannot be Reflected","better":1,"matchers":[{"string":"Урон не может быть отражён"}],"trade":{"ids":{"explicit":["explicit.stat_2670993553"],"enchant":["enchant.stat_2670993553"]}}} +{"ref":"Damage from your Critical Strikes cannot be Reflected","better":1,"matchers":[{"string":"Урон от ваших критических ударов нельзя отразить"}],"trade":{"ids":{"explicit":["explicit.stat_1857928882"]}}} +{"ref":"Damage of Enemies Hitting you is Unlucky while you are Cursed with Vulnerability","better":1,"matchers":[{"string":"Пока вы прокляты Беззащитностью, враги неудачливы при нанесении вам урона от ударов","value":-1},{"string":"Пока вы прокляты Беззащитностью, враги удачливы при нанесении вам урона от ударов","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2758554648"]}}} +{"ref":"Damage of Enemies Hitting you is Unlucky while you are on Full Life","better":1,"matchers":[{"string":"Враги неудачливы при нанесении вам урона от ударов, пока у вас полное здоровье","value":-1},{"string":"Враги удачливы при нанесении вам урона от ударов, пока у вас полное здоровье","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3629143471"]}}} +{"ref":"Damage of Enemies Hitting you is Unlucky while you are on Low Life","better":1,"matchers":[{"string":"Враги неудачливы при нанесении вам урона от ударов, пока у вас мало здоровья","value":-1},{"string":"Враги удачливы при нанесении вам урона от ударов, пока у вас мало здоровья","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3753748365"]}}} +{"ref":"Damage of Enemies Hitting you is Unlucky while you have a Magic Ring Equipped","better":1,"matchers":[{"string":"Урон от наносящих по вам удары монстров неудачлив, если на вас надето волшебное кольцо","value":-1},{"string":"Урон от наносящих по вам удары монстров удачлив, если на вас надето волшебное кольцо","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2510276385"]}}} +{"ref":"Damage Penetrates #% Chaos Resistance","better":1,"matchers":[{"string":"Урон пробивает #% сопротивления хаосу"},{"string":"Ваши удары учитывают сопротивление хаосу, как если бы оно было на #% больше текущего","negate":true}],"trade":{"ids":{"scourge":["scourge.stat_4264312960"]}}} +{"ref":"Damage Penetrates #% Cold Resistance","better":1,"matchers":[{"string":"Урон пробивает #% сопротивления холоду"},{"string":"Ваши удары учитывают сопротивление холоду, как если бы оно было на #% больше текущего","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3417711605"],"implicit":["implicit.stat_3417711605"],"fractured":["fractured.stat_3417711605"],"scourge":["scourge.stat_3417711605"]}}} +{"ref":"Damage Penetrates #% Cold Resistance against Chilled Enemies","better":1,"matchers":[{"string":"Урон пробивает #% сопротивления холоду охлаждённых врагов"}],"trade":{"ids":{"explicit":["explicit.stat_1477032229"]}}} +{"ref":"Damage Penetrates #% Cold Resistance while affected by Hatred","better":1,"matchers":[{"string":"Под действием Холодной ненависти урон пробивает #% сопротивления холоду"}],"trade":{"ids":{"explicit":["explicit.stat_1222888897"]}}} +{"ref":"Damage Penetrates #% Elemental Resistances","better":1,"matchers":[{"string":"Урон пробивает #% сопротивления стихиям"}],"trade":{"ids":{"explicit":["explicit.stat_2101383955"],"implicit":["implicit.stat_2101383955"],"fractured":["fractured.stat_2101383955"]}}} +{"ref":"Damage Penetrates #% Elemental Resistances during any Flask Effect","better":1,"matchers":[{"string":"Урон пробивает #% сопротивления стихиям во время действия эффекта любого флакона"}],"trade":{"ids":{"explicit":["explicit.stat_3392890360"],"fractured":["fractured.stat_3392890360"]}}} +{"ref":"Damage Penetrates #% Elemental Resistances if you haven't Killed Recently","better":1,"matchers":[{"string":"Урон пробивает #% сопротивления стихиям, если вы недавно не совершали убийство"}],"trade":{"ids":{"explicit":["explicit.stat_455556407"],"fractured":["fractured.stat_455556407"]}}} +{"ref":"Damage Penetrates #% Elemental Resistances while you are Chilled","better":1,"matchers":[{"string":"Урон пробивает #% сопротивления стихиям пока вы охлаждены"}],"trade":{"ids":{"explicit":["explicit.stat_1089858120"]}}} +{"ref":"Damage Penetrates #% Fire Resistance","better":1,"matchers":[{"string":"Урон пробивает #% сопротивления огню"},{"string":"Ваши удары учитывают сопротивление огню, как если бы оно было на #% больше текущего","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2653955271"],"implicit":["implicit.stat_2653955271"],"fractured":["fractured.stat_2653955271"],"scourge":["scourge.stat_2653955271"]}}} +{"ref":"Damage Penetrates #% Fire Resistance against Blinded Enemies","better":1,"matchers":[{"string":"Урон пробивает #% сопротивления огню ослеплённых врагов"}],"trade":{"ids":{"explicit":["explicit.stat_1748657990"]}}} +{"ref":"Damage Penetrates #% Fire Resistance while affected by Anger","better":1,"matchers":[{"string":"Под действием Жгучей злобы урон пробивает #% сопротивления огню"}],"trade":{"ids":{"explicit":["explicit.stat_3111519953"]}}} +{"ref":"Damage Penetrates #% Lightning Resistance","better":1,"matchers":[{"string":"Урон пробивает #% сопротивления молнии"},{"string":"Ваши удары учитывают сопротивление молнии, как если бы оно было на #% больше текущего","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_818778753"],"implicit":["implicit.stat_818778753"],"fractured":["fractured.stat_818778753"],"scourge":["scourge.stat_818778753"]}}} +{"ref":"Damage Penetrates #% Lightning Resistance during Effect","better":1,"matchers":[{"string":"Урон пробивает #% сопротивления молнии во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_4164990693"]}}} +{"ref":"Damage Penetrates #% Lightning Resistance while affected by Wrath","better":1,"matchers":[{"string":"Под действием Грозного гнева урон пробивает #% сопротивления молнии"}],"trade":{"ids":{"explicit":["explicit.stat_1077131949"]}}} +{"ref":"Damage Penetrates #% of Enemy Elemental Resistances","better":1,"matchers":[{"string":"Урон пробивает #% вражеского сопротивления стихиям"}],"trade":{"ids":{"explicit":["explicit.stat_697807915"],"scourge":["scourge.stat_697807915"]}}} +{"ref":"Damage Penetrates #% of Enemy Elemental Resistances if you haven't Killed Recently","better":1,"matchers":[{"string":"Урон пробивает #% вражеского сопротивления стихиям, если недавно вы не совершали убийство"}],"trade":{"ids":{"enchant":["enchant.stat_281254371"]}}} +{"ref":"Damage Penetrates #% of Fire Resistance if you have Blocked Recently","better":1,"matchers":[{"string":"Урон пробивает #% сопротивления огню, если вы недавно блокировали удар"}],"trade":{"ids":{"explicit":["explicit.stat_2341811700"]}}} +{"ref":"Damage taken from Blocked Hits cannot bypass Energy Shield\nDamage taken from Unblocked hits always bypasses Energy Shield","better":1,"matchers":[{"string":"Получаемый от заблокированных ударов урон не обходит энергетический щит\nПолучаемый от незаблокированных ударов урон всегда обходит энергетический щит"}],"trade":{"ids":{"explicit":["explicit.stat_2331104018"]}}} +{"ref":"Damage with Hits from Socketed Vaal Skills is Lucky","better":1,"matchers":[{"string":"Урон от ударов размещенных умений ваал неудачлив","value":-1},{"string":"Урон от ударов размещенных умений ваал удачлив","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1274200851"]}}} +{"ref":"Damage with Hits is Lucky","better":1,"matchers":[{"string":"Урон от ударов неудачлив","value":-1},{"string":"Урон от ударов удачлив","value":1}],"trade":{"ids":{"scourge":["scourge.stat_827991492"]}}} +{"ref":"Damage with Weapons Penetrates #% Cold Resistance","better":1,"matchers":[{"string":"Урон оружием пробивает #% сопротивления холоду"}],"trade":{"ids":{"explicit":["explicit.stat_1211769158"],"implicit":["implicit.stat_1211769158"]}}} +{"ref":"Damage with Weapons Penetrates #% Elemental Resistances","better":1,"matchers":[{"string":"Урон оружием пробивает #% сопротивления стихиям"}],"trade":{"ids":{"explicit":["explicit.stat_1736172673"]}}} +{"ref":"Damage with Weapons Penetrates #% Fire Resistance","better":1,"matchers":[{"string":"Урон оружием пробивает #% сопротивления огню"}],"trade":{"ids":{"explicit":["explicit.stat_1123291426"],"implicit":["implicit.stat_1123291426"]}}} +{"ref":"Damage with Weapons Penetrates #% Lightning Resistance","better":1,"matchers":[{"string":"Урон оружием пробивает #% сопротивления молнии"}],"trade":{"ids":{"explicit":["explicit.stat_3301510262"],"implicit":["implicit.stat_3301510262"]}}} +{"ref":"Damaging Ailments deal damage #% faster","better":1,"matchers":[{"string":"Наносящие урон состояния наносят урон на #% быстрее"}],"trade":{"ids":{"explicit":["explicit.stat_538241406"],"fractured":["fractured.stat_538241406"]}}} +{"ref":"Damaging Ailments you inflict deal Damage #% faster while affected by Malevolence","better":1,"matchers":[{"string":"Наложенные вами состояния, наносящие урон, под действием Злорадства наносят урон на #% быстрее"}],"trade":{"ids":{"explicit":["explicit.stat_3468843137"]}}} +{"ref":"Dash has +# Cooldown Use","better":1,"matchers":[{"string":"# к зарядам Рывка"}],"trade":{"ids":{"enchant":["enchant.stat_4172171622"]}}} +{"ref":"Dash travels #% increased distance","better":1,"matchers":[{"string":"#% увеличение максимальной дистанции передвижения Рывка"},{"string":"#% уменьшение максимальной дистанции передвижения Рывка","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4147746721"]}}} +{"ref":"Deal #% of your maximum Life as Fire Damage to nearby Enemies when Hit","better":1,"matchers":[{"string":"Наносит #% от вашего максимума здоровья в виде урона от огня ближайшим врагам при получении удара"}],"trade":{"ids":{"scourge":["scourge.stat_3643913768"]}}} +{"ref":"Deal no Chaos Damage","better":1,"matchers":[{"string":"Не наносит урон хаосом"}],"trade":{"ids":{"explicit":["explicit.stat_1896269067"],"scourge":["scourge.stat_1896269067"]}}} +{"ref":"Deal no Cold Damage","better":1,"matchers":[{"string":"Вы не наносите урон от холода"}],"trade":{"ids":{"explicit":["explicit.stat_743677006"],"scourge":["scourge.stat_743677006"]}}} +{"ref":"Deal no Damage when not on Low Life","better":1,"matchers":[{"string":"Не наносит урона не при малом количестве здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_3716472556"]}}} +{"ref":"Deal no Elemental Damage","better":1,"matchers":[{"string":"Не наносит урон от стихий"}],"trade":{"ids":{"explicit":["explicit.stat_2998305364"]}}} +{"ref":"Deal no Fire Damage","better":1,"matchers":[{"string":"Не наносит урон от огня"}],"trade":{"ids":{"scourge":["scourge.stat_3763013280"]}}} +{"ref":"Deal no Lightning Damage","better":1,"matchers":[{"string":"Не наносит урон от молнии"}],"trade":{"ids":{"scourge":["scourge.stat_3520498509"]}}} +{"ref":"Deal no Non-Elemental Damage","better":1,"matchers":[{"string":"Наносит только урон от стихий"}],"trade":{"ids":{"explicit":["explicit.stat_4031851097"]}}} +{"ref":"Deal no Non-Lightning Damage","better":1,"matchers":[{"string":"Наносит только урон от молнии"}],"trade":{"ids":{"explicit":["explicit.stat_2075742842"]}}} +{"ref":"Deal no Non-Physical Damage","better":1,"matchers":[{"string":"Наносит только физический урон"}],"trade":{"ids":{"explicit":["explicit.stat_282353000"]}}} +{"ref":"Deal no Physical Damage","better":1,"matchers":[{"string":"Не наносит физического урона"}],"trade":{"ids":{"explicit":["explicit.stat_3900877792"],"fractured":["fractured.stat_3900877792"],"scourge":["scourge.stat_3900877792"]}}} +{"ref":"Deal no Physical or Elemental Damage","better":1,"matchers":[{"string":"Не наносит физического урона или урона от стихий"}],"trade":{"ids":{"explicit":["explicit.stat_4157542794"]}}} +{"ref":"Deal Triple Damage with Elemental Skills","better":1,"matchers":[{"string":"Наносит тройной урон умениями стихий"}],"trade":{"ids":{"explicit":["explicit.stat_115695112"]}}} +{"ref":"Deals # Chaos Damage per second to nearby Enemies","better":1,"matchers":[{"string":"Наносит # урона хаосом в секунду ближайшим врагам"}],"trade":{"ids":{"explicit":["explicit.stat_2280313599"]}}} +{"ref":"Debilitate Enemies for # Seconds when you Suppress their Spell Damage","better":1,"matchers":[{"string":"Изнуряет врагов на # секунды, когда вы подавляете их урон от чар"}],"trade":{"ids":{"explicit":["explicit.stat_3019649166"]}}} +{"ref":"Debilitate nearby Enemies for # Seconds when Effect ends","better":1,"matchers":[{"string":"Изнуряет ближайших врагов на # секунд(-ы) по окончании действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_545593248"]}}} +{"ref":"Debuffs on Monsters expire #% faster","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Отрицательные эффекты на монстрах истекают на #% быстрее"},{"string":"Отрицательные эффекты на монстрах истекают на #% медленнее","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1200027417"],"fractured":["fractured.stat_1200027417"]}}} +{"ref":"Debuffs on you expire #% faster","better":1,"matchers":[{"string":"Отрицательные эффекты на вас заканчиваются на #% быстрее"},{"string":"Отрицательные эффекты на вас заканчиваются на #% медленнее","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1238227257"]}}} +{"ref":"Debuffs on you expire #% faster while affected by Haste","better":-1,"matchers":[{"string":"Под действием Спешки отрицательные эффекты на вас истекают на #% медленнее"},{"string":"Под действием Спешки отрицательные эффекты на вас истекают на #% быстрее","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_207635700"]},"inverted":true}} +{"ref":"Defences are Zero","better":1,"matchers":[{"string":"Защита равна нулю"}],"trade":{"ids":{"explicit":["explicit.stat_4271994824"]}}} +{"ref":"Defiance Banner has #% increased Aura Effect","better":1,"matchers":[{"string":"#% усиление эффекта Знамени непокорности"},{"string":"#% ослабление эффекта Знамени непокорности","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1105773670"]}}} +{"ref":"Denoted service of # dekhara in the akhara of Asenath","better":0,"matchers":[{"string":"Символизирует служение # дехара в ахаре Азенат\nПассивные умения в радиусе завоеваны маракетами","advanced":"Символизирует служение # дехара в ахаре Азенат(Азенат-Насимы)\nПассивные умения в радиусе завоеваны маракетами"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_asenath"]}}} +{"ref":"Denoted service of # dekhara in the akhara of Balbala","better":0,"matchers":[{"string":"Символизирует служение # дехара в ахаре Балбалы\nПассивные умения в радиусе завоеваны маракетами","advanced":"Символизирует служение # дехара в ахаре Балбалы(Азенат-Насимы)\nПассивные умения в радиусе завоеваны маракетами"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_balbala"]}}} +{"ref":"Denoted service of # dekhara in the akhara of Nasima","better":0,"matchers":[{"string":"Символизирует служение # дехара в ахаре Насимы\nПассивные умения в радиусе завоеваны маракетами","advanced":"Символизирует служение # дехара в ахаре Насимы(Азенат-Насимы)\nПассивные умения в радиусе завоеваны маракетами"}],"trade":{"ids":{"explicit":["explicit.pseudo_timeless_jewel_nasima"]}}} +{"ref":"Desecrate Spawns an additional corpse","better":1,"matchers":[{"string":"Осквернение создает дополнительных трупов: #"},{"string":"Осквернение создает дополнительный труп","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3655654928"]}}} +{"ref":"Despair has no Reservation if Cast as an Aura","better":1,"matchers":[{"string":"Отчаяние в виде ауры не удерживает ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_450601566"]}}} +{"ref":"Determination has #% increased Aura Effect","better":1,"matchers":[{"string":"#% усиление эффекта ауры Решимости"},{"string":"#% ослабление эффекта ауры Решимости","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3653400807"]}}} +{"ref":"Determination has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"#% увеличение эффективности удержания маны Решимостью"},{"string":"#% уменьшение эффективности удержания маны Решимостью","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2721871046","explicit.stat_325889252"],"implicit":["implicit.stat_2721871046","implicit.stat_325889252"],"fractured":["fractured.stat_325889252"],"enchant":["enchant.stat_2721871046","enchant.stat_325889252"]}}} +{"ref":"Determination has no Reservation","better":1,"matchers":[{"string":"Решимость не удерживает ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_1358697130"]}}} +{"ref":"Detonate Dead has a #% chance to detonate an additional corpse","better":1,"matchers":[{"string":"Подрыв трупа имеет #% шанс подорвать дополнительный труп"}],"trade":{"ids":{"enchant":["enchant.stat_1539846779"]}}} +{"ref":"Devouring Totem has #% Chance to Consume an additional corpse","better":1,"matchers":[{"string":"Поглощающий тотем имеет #% шанс поглотить дополнительный труп"}],"trade":{"ids":{"enchant":["enchant.stat_4189505564"]}}} +{"ref":"Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus","better":1,"matchers":[{"string":"Ловкость и интеллект в радиусе дают бонус как от силы к урону в ближнем бою"}],"trade":{"ids":{"explicit":["explicit.stat_842363566"]}}} +{"ref":"Dexterity from Passives in Radius is Transformed to Intelligence","better":1,"matchers":[{"string":"Ловкость в радиусе становится интеллектом"}],"trade":{"ids":{"explicit":["explicit.stat_2075199521"]}}} +{"ref":"Dexterity from Passives in Radius is Transformed to Strength","better":1,"matchers":[{"string":"Ловкость в радиусе становится силой"}],"trade":{"ids":{"explicit":["explicit.stat_4097174922"]}}} +{"ref":"Discipline has #% increased Aura Effect","better":1,"matchers":[{"string":"#% усиление эффекта ауры Дисциплины"},{"string":"#% ослабление эффекта ауры Дисциплины","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_788317702"]}}} +{"ref":"Discipline has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"#% увеличение эффективности удержания маны Дисциплиной"},{"string":"#% уменьшение эффективности удержания маны Дисциплиной","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1692887998","explicit.stat_2081344089"],"implicit":["implicit.stat_1692887998","implicit.stat_2081344089"],"enchant":["enchant.stat_1692887998","enchant.stat_2081344089"]}}} +{"ref":"Discipline has no Reservation","better":1,"matchers":[{"string":"Дисциплина не удерживает ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_3708588508"]}}} +{"ref":"Divine Flesh","better":1,"matchers":[{"string":"Божественная плоть"}],"trade":{"ids":{"explicit":["explicit.stat_2321346567"]}}} +{"ref":"Divine Ire Damages an additional nearby Enemy when gaining Stages","better":1,"matchers":[{"string":"Божественный гнев наносит урон # дополнительным врагам поблизости, пока накапливает энергию"},{"string":"Божественный гнев наносит урон дополнительному врагу поблизости, пока накапливает энергию","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1477213724"]}}} +{"ref":"Divine Ire deals #% increased Damage","better":1,"matchers":[{"string":"Божественный гнев наносит увеличенный на #% урон"},{"string":"Божественный гнев наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2584129062"]}}} +{"ref":"Divine Ire's beam has #% increased width","better":1,"matchers":[{"string":"#% увеличение ширины луча Божественного гнева"},{"string":"#% уменьшение ширины луча Божественного гнева","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2212298325"]}}} +{"ref":"Divine Shield","better":1,"matchers":[{"string":"Божественный щит"}],"trade":{"ids":{"explicit":["explicit.stat_2048995720"],"fractured":["fractured.stat_2048995720"],"scourge":["scourge.stat_2048995720"]}}} +{"ref":"Does not inflict Mana Burn over time","better":1,"matchers":[{"string":"Не накладывает Сжигание маны с течением времени"}],"trade":{"ids":{"explicit":["explicit.stat_1686969928"]}}} +{"ref":"Dominating Blow can summon an additional Magic Sentinel of Dominance","better":1,"matchers":[{"string":"Удар власти может призвать дополнительных волшебных Стражей власти: #"},{"string":"Удар власти может призвать дополнительного волшебного Стража власти","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1095160683"]}}} +{"ref":"Dominating Blow can summon an additional Rare Sentinel of Dominance","better":1,"matchers":[{"string":"Удар власти может призвать дополнительных редких Стражей власти: #"},{"string":"Удар власти может призвать дополнительного редкого Стража власти","value":1}],"trade":{"ids":{"enchant":["enchant.stat_2337005967"]}}} +{"ref":"Double Strike has a #% chance to deal Double Damage to Bleeding Enemies","better":1,"matchers":[{"string":"Двойной удар имеет #% шанс нанести двойной урон по истекающим кровью врагам"}],"trade":{"ids":{"enchant":["enchant.stat_3125201823"]}}} +{"ref":"Dread Banner has #% increased Aura Effect","better":1,"matchers":[{"string":"#% усиление эффекта ауры Знамени страха"},{"string":"#% ослабление эффекта ауры Знамени страха","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_287319069"]}}} +{"ref":"Drops Brittle Ground while moving, lasting # seconds","better":1,"matchers":[{"string":"При передвижении создает хрупкую землю длительностью # секунд(-ы)"}],"trade":{"ids":{"implicit":["implicit.stat_984148407"]}}} +{"ref":"Drops Burning Ground while moving, dealing # Fire Damage per second for # second","better":1,"matchers":[{"string":"При движении оставляет участки горящей земли, наносящей # урона от огня в секунду в течение # секунд"},{"string":"При движении оставляет участки горящей земли, наносящей # урона от огня в секунду в течение # секунды"}],"trade":{"ids":{"explicit":["explicit.stat_3595254837"],"fractured":["fractured.stat_3595254837"]}}} +{"ref":"Drops Sapped Ground while moving, lasting # seconds","better":1,"matchers":[{"string":"При передвижении создает ошеломляющую землю длительностью # секунд(-ы)"}],"trade":{"ids":{"implicit":["implicit.stat_1997664024"]}}} +{"ref":"Drops Scorched Ground while moving, lasting # seconds","better":1,"matchers":[{"string":"При передвижении создает опалённую землю длительностью # секунд(-ы)"}],"trade":{"ids":{"explicit":["explicit.stat_1558131185"],"implicit":["implicit.stat_396238230"]}}} +{"ref":"Drops Shocked Ground while moving, lasting # seconds","better":1,"matchers":[{"string":"При передвижении оставляет участки заряженной земли, длящейся # секунд"}],"trade":{"ids":{"explicit":["explicit.stat_3002060175"]}}} +{"ref":"Duplicates up to # random Offer Reward upon defeating the Herald of the Scourge","better":1,"matchers":[{"string":"Дублируть вплоть до # случайной награды после победы над Вестником Роя"},{"string":"Дублируть вплоть до # случайных наград после победы над Вестником Роя"}],"trade":{"ids":{"explicit":["sanctum.stat_502549687"]}}} +{"ref":"During Effect, #% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest","better":-1,"matchers":[{"string":"Во время действия эффекта #% увеличение получаемого урона от стихий, которые имеют наименьшее не ограниченное сопротивление"},{"string":"Во время действия эффекта #% уменьшение получаемого урона от стихий, которые имеют наименьшее не ограниченное сопротивление","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1869678332"]},"inverted":true}} +{"ref":"During Effect, Damage Penetrates #% Resistance of each Element for which your Uncapped Elemental Resistance is highest","better":1,"matchers":[{"string":"Во время действия эффекта урон пробивает #% сопротивления стихиям, которые имеют наибольшее не ограниченное сопротивление"}],"trade":{"ids":{"explicit":["explicit.stat_2444301311"]}}} +{"ref":"Each Rage also grants +#% to Damage over Time Multiplier for Bleeding while wielding an Axe","better":1,"matchers":[{"string":"Каждая единица свирепости также дарует #% к множителю постепенного урона для кровотечения с топором в руках"}],"trade":{"ids":{"explicit":["explicit.stat_769468514"]}}} +{"ref":"Each Summoned Phantasm grants you Phantasmal Might","better":1,"matchers":[{"string":"Каждый призванный фантом дарует вам Призрачную мощь"}],"trade":{"ids":{"explicit":["explicit.stat_943553365"]}}} +{"ref":"Earthquake deals #% increased Damage per 0.1 seconds Duration","better":1,"matchers":[{"string":"Землетрясение наносит увеличенный на #% урон за каждые 0.1 секунды времени действия"},{"string":"Землетрясение наносит уменьшенный на #% урон за каждые 0.1 секунды времени действия","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2068943099"]}}} +{"ref":"Earthshatter deals #% increased Damage","better":1,"matchers":[{"string":"Разлом земли наносит увеличенный на #% урон"},{"string":"Разлом земли наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_335520087"]}}} +{"ref":"Earthshatter has #% increased Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Разлома земли"},{"string":"#% уменьшение области действия Разлома земли","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3469056056"]}}} +{"ref":"Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every second","better":1,"matchers":[{"string":"Поглощает душу, когда вы наносите удар по редкому или уникальному врагу, но не чаще 1 раза каждые # секунды"},{"string":"Поглощает душу, когда вы наносите удар по редкому или уникальному врагу, но не чаще 1 раза в секунду","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2103621252"]}}} +{"ref":"Effect is not removed when Unreserved Mana is Filled\nEffect does not Queue","better":1,"matchers":[{"string":"Эффект не прекращается при заполнении не удержанной маны\nЭффект срабатывает вне очереди"}],"trade":{"ids":{"explicit":["explicit.stat_3969608626"],"fractured":["fractured.stat_3969608626"]}}} +{"ref":"Effect is removed when Hit by a Player","better":1,"matchers":[{"string":"Эффект флакона прекращается при получении удара от игрока"}],"trade":{"ids":{"implicit":["implicit.stat_3399320226"]}}} +{"ref":"Effect is removed when Ward Breaks","better":1,"matchers":[{"string":"Эффект снимается при разрушении барьера"}],"trade":{"ids":{"explicit":["explicit.stat_3617672145"]}}} +{"ref":"Effects of Consecrated Ground you create Linger for 1 second","better":1,"matchers":[{"string":"Эффекты создаваемой вами освященной земли не пропадают в течение # секунд"},{"string":"Эффекты создаваемой вами освященной земли не пропадают в течение 1 секунды","value":1}],"trade":{"ids":{"explicit":["explicit.stat_4113372195"]}}} +{"ref":"Effects of Consecrated Ground you create while affected by Zealotry Linger for # seconds","better":1,"matchers":[{"string":"Эффекты освящённой земли, которую вы создали под действием Фанатизма, не спадают в течение # секунд"}],"trade":{"ids":{"explicit":["explicit.stat_2163419452"]}}} +{"ref":"Effects of Profane Ground you create Linger for 1 second","better":1,"matchers":[{"string":"Эффекты создаваемой вами нечестивой земли длятся # секунд(-ы)"},{"string":"Эффекты создаваемой вами нечестивой земли длятся 1 секунду","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3636871122"]}}} +{"ref":"Eldritch Battery","better":1,"matchers":[{"string":"Мистический накопитель"}],"trade":{"ids":{"explicit":["explicit.stat_2262736444"],"fractured":["fractured.stat_2262736444"],"scourge":["scourge.stat_2262736444"]}}} +{"ref":"Eldritch Battery during Effect","better":1,"matchers":[{"string":"Мистический накопитель во время действия флакона"}],"trade":{"ids":{"explicit":["explicit.stat_1544417021"]}}} +{"ref":"Elemental Ailments inflicted on Enemies Exposed by you have #% increased Duration","better":1,"matchers":[{"string":"Стихийные состояния, наложенные на врагов с полученной от вас восприимчивостью, имеют #% увеличение длительности"},{"string":"Стихийные состояния, наложенные на врагов с полученной от вас восприимчивостью, имеют #% уменьшение длительности","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_261996832"]}}} +{"ref":"Elemental Ailments you inflict are Reflected to you","better":1,"matchers":[{"string":"Накладываемые вами стихийные состояния отражаются на вас"}],"trade":{"ids":{"explicit":["explicit.stat_1370804479"]}}} +{"ref":"Elemental Damage with Hits is Lucky while you are Shocked","better":1,"matchers":[{"string":"Урон ударами от стихий удачлив, пока на вас наложен шок"}],"trade":{"ids":{"explicit":["explicit.stat_888026555"]}}} +{"ref":"Elemental Damage you Deal with Hits is Resisted by lowest Elemental Resistance instead","better":1,"matchers":[{"string":"К урону от стихий от наносимых вами ударов применяется самое низкое сопротивление стихиям"}],"trade":{"ids":{"explicit":["explicit.stat_1740349133"]}}} +{"ref":"Elemental Equilibrium","better":1,"matchers":[{"string":"Равновесие стихий"}],"trade":{"ids":{"explicit":["explicit.stat_1263158408"],"implicit":["implicit.stat_1263158408"],"fractured":["fractured.stat_1263158408"],"scourge":["scourge.stat_1263158408"]}}} +{"ref":"Elemental Hit Always Freezes, Shocks and Ignites","better":1,"matchers":[{"string":"Удар стихии имеет #% шанс заморозить, поджечь и наложить шок"},{"string":"Удар стихии всегда замораживает, поджигает и накладывает шок","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3205997967"]}}} +{"ref":"Elemental Hit deals #% increased Damage","better":1,"matchers":[{"string":"#% увеличение урона Удара стихии"},{"string":"#% уменьшение урона Удара стихии","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4109038270"],"enchant":["enchant.stat_4109038270"]}}} +{"ref":"Elemental Overload","better":1,"matchers":[{"string":"Стихийная перегрузка"}],"trade":{"ids":{"explicit":["explicit.stat_3574189159"],"implicit":["implicit.stat_3574189159"],"fractured":["fractured.stat_3574189159"],"scourge":["scourge.stat_3574189159"]}}} +{"ref":"Elemental Resistances are capped by your highest Maximum Elemental Resistance instead","better":1,"matchers":[{"string":"Максимальные сопротивления стихиям теперь равны наибольшему максимальному сопротивлению стихии"}],"trade":{"ids":{"explicit":["explicit.stat_3082079953"]}}} +{"ref":"Elemental Resistances are Zero","better":1,"matchers":[{"string":"Сопротивления стихиям равны нулю"}],"trade":{"ids":{"explicit":["explicit.stat_85576425"]}}} +{"ref":"Elemental Weakness has no Reservation if Cast as an Aura","better":1,"matchers":[{"string":"Уязвимость к стихиям в виде ауры не удерживает ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_3416664215"]}}} +{"ref":"Elreon's Veiled","better":0,"matchers":[{"string":"Завуалированная Элреоном"},{"string":"Завуалированное Элреоном"},{"string":"Завуалированные Элреоном"},{"string":"Завуалированный Элреоном"}],"trade":{"ids":{"veiled":["veiled.mod_5769"]}}} +{"ref":"Enduring Cry grants # additional Endurance Charge to you and Allied Players","better":1,"matchers":[{"string":"Клич стойкости дарует дополнительных зарядов выносливости вам и союзным игрокам: #"}],"trade":{"ids":{"enchant":["enchant.stat_2977067558"]}}} +{"ref":"Enduring Cry has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"#% повышение скорости перезарядки Клича стойкости"},{"string":"#% снижение скорости перезарядки Клича стойкости","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3617955571"],"enchant":["enchant.stat_3617955571"]}}} +{"ref":"Enemies affected by Bear Trap take #% increased Damage from Trap or Mine Hits","better":1,"matchers":[{"string":"Враги под действием Медвежьего капкана получают увеличенный на #% урон от ударов ловушками и минами"},{"string":"Враги под действием Медвежьего капкана получают уменьшенный на #% урон от ударов ловушками и минами","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1678345858"]}}} +{"ref":"Enemies affected by your Spider's Webs deal #% reduced Damage","better":-1,"matchers":[{"string":"Под действием ваших Паучьих паутин враги наносят увеличенный на #% урон"},{"string":"Под действием ваших Паучьих паутин враги наносят уменьшенный на #% урон","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3231424461"]},"inverted":true}} +{"ref":"Enemies affected by your Spider's Webs have +#% to All Resistances","better":1,"matchers":[{"string":"Под действием Паучьих паутин враги имеют #% ко всем сопротивлениям"}],"trade":{"ids":{"explicit":["explicit.stat_785655723"]}}} +{"ref":"Enemies Blinded by you have #% increased Critical Strike Chance","better":1,"matchers":[{"string":"Ослепленные вами враги имеют #% повышение шанса критического удара"},{"string":"Ослепленные вами враги имеют #% снижение шанса критического удара","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4216282855"],"fractured":["fractured.stat_4216282855"],"enchant":["enchant.stat_4216282855"]}}} +{"ref":"Enemies Blinded by you have Malediction","better":1,"matchers":[{"string":"На ослепленных вами врагов действует Злословие"}],"trade":{"ids":{"explicit":["explicit.stat_2621660713"]}}} +{"ref":"Enemies Cannot Leech Life From you","better":1,"matchers":[{"string":"Враги не могут похищать у вас здоровье"}],"trade":{"ids":{"explicit":["explicit.stat_4293455942"],"implicit":["implicit.stat_4293455942"]}}} +{"ref":"Enemies Cannot Leech Mana From you","better":1,"matchers":[{"string":"Враги не могут похищать у вас ману"}],"trade":{"ids":{"explicit":["explicit.stat_4293245253"]}}} +{"ref":"Enemies Chilled by your Hits can be Shattered as though Frozen","better":1,"matchers":[{"string":"Охлажденные вашими ударами враги могут быть уничтожены как при заморозке"}],"trade":{"ids":{"explicit":["explicit.stat_3119292058"]}}} +{"ref":"Enemies Chilled by your Hits have Damage taken increased by Chill Effect","better":1,"matchers":[{"string":"Эффект охлаждения, получаемый врагами от ваших ударов, увеличивает урон от холода"}],"trade":{"ids":{"explicit":["explicit.stat_1816894864"]}}} +{"ref":"Enemies Chilled by your Hits lessen their Damage dealt by half of Chill Effect","better":1,"matchers":[{"string":"Урон, наносимый охлажденными от ваших ударов врагами, уменьшается на величину, равную половине эффекта охлаждения"}],"trade":{"ids":{"explicit":["explicit.stat_3594661200"]}}} +{"ref":"Enemies Cursed by you are Hindered if 25% of Curse Duration expired","better":1,"matchers":[{"string":"Проклятые вами враги скованы, скорость их передвижения\nснижена на #%, если истекло 25% длительности проклятия"},{"string":"Проклятые вами враги скованы, если истекло 25% длительности проклятия","value":30}],"trade":{"ids":{"explicit":["explicit.stat_313419608"]}}} +{"ref":"Enemies Cursed by you take #% increased Damage if 75% of Curse Duration expired","better":1,"matchers":[{"string":"Проклятые вами враги получают увеличенный на #% урон, если истекло 75% длительности проклятия"},{"string":"Проклятые вами враги получают уменьшенный на #% урон, если истекло 75% длительности проклятия","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2057136736"]}}} +{"ref":"Enemies display their Monster Category","better":1,"matchers":[{"string":"На врагах отображается категория монстра"}],"trade":{"ids":{"explicit":["explicit.stat_4164361381"]}}} +{"ref":"Enemies Drenched by Hydrosphere have Cold and Lightning Exposure, applying +#% to Resistances","better":1,"matchers":[{"string":"Промокшие из-за Гидросферы враги имеют восприимчивость к холоду и молнии, накладывающее #% к сопротивлениям"}],"trade":{"ids":{"enchant":["enchant.stat_3831546273"]}}} +{"ref":"Enemies Frozen by you take 20% increased Damage","better":1,"matchers":[{"string":"Замороженные вами враги получают увеличенный на 20% урон"}],"trade":{"ids":{"explicit":["explicit.stat_849085925"]}}} +{"ref":"Enemies have #% reduced Evasion if you have Hit them Recently","better":-1,"matchers":[{"string":"Враги имеют #% увеличение уклонения, если вы недавно наносили по ним удар"},{"string":"Враги имеют #% уменьшение уклонения, если вы недавно наносили по ним удар","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1773891268"],"fractured":["fractured.stat_1773891268"]},"inverted":true}} +{"ref":"Enemies Hindered by you have #% increased Life Regeneration rate","better":1,"matchers":[{"string":"Скованные вами враги имеют #% повышение скорости регенерации здоровья"},{"string":"Скованные вами враги имеют #% снижение скорости регенерации здоровья","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3709502856"],"fractured":["fractured.stat_3709502856"],"enchant":["enchant.stat_3709502856"]}}} +{"ref":"Enemies Ignited by you during Effect take #% increased Damage","better":1,"matchers":[{"string":"Враги, подожжённые вами во время действия эффекта, получают увеличенный на #% урон"},{"string":"Враги, подожжённые вами во время действия эффекта, получают уменьшенный на #% урон","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3477833022"]}}} +{"ref":"Enemies Ignited by you have #% of Physical Damage they deal converted to Fire","better":1,"matchers":[{"string":"#% наносимого физического урона подожженных вами врагов становится уроном от огня"}],"trade":{"ids":{"explicit":["explicit.stat_1272032962"]}}} +{"ref":"Enemies Ignited by you take Chaos Damage instead of Fire Damage from Ignite","better":1,"matchers":[{"string":"Подожженные вами враги получают урон хаосом вместо урона от огня от поджога"}],"trade":{"ids":{"explicit":["explicit.stat_2714810050"]}}} +{"ref":"Enemies in Void Sphere's range take up to #% increased Damage, based on distance from the Void Sphere","better":1,"matchers":[{"string":"Враги в радиусе Сферы пустоты получают увеличенный до #% урон в зависимости от расстояния до Сферы пустоты"},{"string":"Враги в радиусе Сферы пустоты получают уменьшенный до #% урон в зависимости от расстояния до Сферы пустоты","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4271709087"]}}} +{"ref":"Enemies in your Chilling Areas take #% increased Lightning Damage","better":1,"matchers":[{"string":"Враги на ваших охлажденных областях получают увеличенный на #% урон от молнии"},{"string":"Враги на ваших охлажденных областях получают уменьшенный на #% урон от молнии","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3923274300"]}}} +{"ref":"Enemies in your Link Beams cannot apply Elemental Ailments","better":1,"matchers":[{"string":"Враги в лучах ваших Связей не могут накладывать стихийные состояния"}],"trade":{"ids":{"explicit":["explicit.stat_2556900184"]}}} +{"ref":"Enemies inflict Elemental Ailments on you instead of nearby Allies","better":1,"matchers":[{"string":"Враги накладывают стихийные состояния на вас вместо ближайших союзников"}],"trade":{"ids":{"explicit":["explicit.stat_979288792"]}}} +{"ref":"Enemies inside Glacial Cage take #% increased Damage","better":1,"anointments":[{"roll":10,"oils":"1,11"}],"matchers":[{"string":"Враги в ледяной клетке получают увеличенный на #% урон"},{"string":"Враги в ледяной клетке получают уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3384161880"]}}} +{"ref":"Enemies Intimidated by you have #% increased duration of stuns against them","better":1,"matchers":[{"string":"Устрашенные вами враги имеют #% увеличение длительности оглушения по ним"},{"string":"Устрашенные вами враги имеют #% уменьшение длительности оглушения по ним","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1919892065"],"fractured":["fractured.stat_1919892065"],"enchant":["enchant.stat_1919892065"]}}} +{"ref":"Enemies Killed by your Hits are destroyed","better":1,"matchers":[{"string":"Убитые вашими ударами враги уничтожаются"}],"trade":{"ids":{"explicit":["explicit.stat_2970902024"],"enchant":["enchant.stat_2970902024"]}}} +{"ref":"Enemies Killed by your Hits are destroyed while Insane","better":1,"matchers":[{"string":"Убитые вашими ударами во время безумия монстры уничтожаются"}],"trade":{"ids":{"explicit":["explicit.stat_3797538318"]}}} +{"ref":"Enemies Killed by Zombies' Hits Explode, dealing #% of their Life as Fire Damage","better":1,"matchers":[{"string":"Убитые ударами зомби враги взрываются, нанося #% от их здоровья в виде урона от огня"}],"trade":{"ids":{"explicit":["explicit.stat_2857427872"]}}} +{"ref":"Enemies Killed with Attack or Spell Hits Explode, dealing #% of their Life as Fire Damage","better":1,"matchers":[{"string":"Убитые ударами от атак или чар враги взрываются, нанося #% от их здоровья в виде урона от огня"}],"trade":{"ids":{"explicit":["explicit.stat_3457687358"],"fractured":["fractured.stat_3457687358"]}}} +{"ref":"Enemies Maimed by you take #% increased Damage Over Time","better":1,"matchers":[{"string":"Изувеченные вами враги получают увеличенный на #% постепенный урон"},{"string":"Изувеченные вами враги получают уменьшенный на #% постепенный урон","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2745149002"],"fractured":["fractured.stat_2745149002"],"enchant":["enchant.stat_2745149002"]}}} +{"ref":"Enemies near corpses affected by your Curses are Blinded\nEnemies Killed near corpses affected by your Curses explode, dealing\n#% of their Life as Physical Damage","better":1,"matchers":[{"string":"Враги рядом с проклятыми вами трупами ослеплены\nУбитые рядом с проклятыми вами трупами враги взрываются, нанося\n#% от их здоровья в виде физического урона"}],"trade":{"ids":{"explicit":["explicit.stat_1509756274"]}}} +{"ref":"Enemies on Fungal Ground you Kill have #% chance to Explode, dealing 5% of their Life as Chaos Damage","better":1,"matchers":[{"string":"Убитые вами на заражённой земле враги имеют #% шанс взорваться, нанося 5% от их здоровья в виде урона хаосом"},{"string":"Убитые вами на заражённой земле враги взрываются, нанося 5% от их здоровья в виде урона хаосом","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3550460467"]}}} +{"ref":"Enemies Petrified by Your Stone Gaze Towers take #% increased Damage","better":1,"anointments":[{"roll":10,"oils":"7,9"}],"matchers":[{"string":"Враги, попавшие под окаменение от ваших башен каменного взора, получают увеличенный на #% урон"}],"trade":{"ids":{"enchant":["enchant.stat_3169825208"]}}} +{"ref":"Enemies Shocked by you have #% of Physical Damage they deal converted to Lightning","better":1,"matchers":[{"string":"#% наносимого физического урона пораженных вашим шоком врагов становится уроном от молнии"}],"trade":{"ids":{"explicit":["explicit.stat_1070888079"]}}} +{"ref":"Enemies take #% increased Damage for each type of Ailment you have inflicted on them","better":1,"matchers":[{"string":"Враги получают увеличенный на #% урон за каждое состояние, которое вы на них наложили"},{"string":"Враги получают уменьшенный на #% урон за каждое состояние, которое вы на них наложили","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1217730254"]}}} +{"ref":"Enemies take #% increased Elemental Damage from your Hits for\neach Withered you have inflicted on them","better":1,"matchers":[{"string":"Враги получают увеличенный на #% урон от стихий от ваших ударов за\nкаждый наложенный вами на них эффект Истощения"},{"string":"Враги получают уменьшенный на #% урон от стихий от ваших ударов за\nкаждый наложенный вами на них эффект Истощения","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3507915723"]}}} +{"ref":"Enemies Taunted by you deal #% more Area Damage","better":1,"matchers":[{"string":"Спровоцированные вами враги наносят на #% больше урона по области"},{"string":"Спровоцированные вами враги наносят на #% меньше урона по области","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1684204928"]}}} +{"ref":"Enemies Taunted by you take #% increased Damage","better":1,"matchers":[{"string":"Спровоцированные вами враги получают увеличенный на #% урон"},{"string":"Спровоцированные вами враги получают уменьшенный на #% урон","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1282219780"]}}} +{"ref":"Enemies Taunted by your Warcries have #% chance to Explode on death, dealing 8% of their maximum Life as Chaos Damage","better":1,"matchers":[{"string":"Спровоцированные вашими боевыми кличами враги имеют #% шанс взорваться при смерти, нанеся 8% от их максимума здоровья в виде урона хаосом"},{"string":"Спровоцированные вашими боевыми кличами враги взрываются при смерти, нанося 8% от их максимума здоровья в виде урона хаосом","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2937093415"]}}} +{"ref":"Enemies Withered by you have +#% to all Resistances","better":1,"matchers":[{"string":"Истощенные вами враги имеют #% ко всем сопротивлениям"}],"trade":{"ids":{"explicit":["explicit.stat_1032614900"],"fractured":["fractured.stat_1032614900"],"enchant":["enchant.stat_1032614900"]}}} +{"ref":"Enemies you Attack Reflect # Physical Damage to you","better":1,"matchers":[{"string":"Атакуемые враги отражают в вас # физического урона"},{"string":"Атакуемые враги отражают в вас от # до # физического урона"}],"trade":{"ids":{"explicit":["explicit.stat_2006370586"]}}} +{"ref":"Enemies you inflict Bleeding on grant #% increased Flask Charges","better":1,"matchers":[{"string":"Враги, на которых вы накладываете кровотечение, даруют #% увеличение зарядов флакона"},{"string":"Враги, на которых вы накладываете кровотечение, даруют #% уменьшение зарядов флакона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2671550669"]}}} +{"ref":"Enemies you kill are Shocked","better":1,"matchers":[{"string":"Убитых вами врагов поражает шок"}],"trade":{"ids":{"explicit":["explicit.stat_209387074"]}}} +{"ref":"Enemies you Kill during Effect have a #% chance to Explode, dealing a tenth of their maximum Life as Damage of a Random Element","better":1,"matchers":[{"string":"Враги, убитые вами во время действия эффекта, с шансом #% взрываются, нанося десятую часть их максимума здоровья в виде урона от случайной стихии"}],"trade":{"ids":{"explicit":["explicit.stat_2165415361"]}}} +{"ref":"Enemies you Kill Explode, dealing #% of their Life as Physical Damage","better":1,"matchers":[{"string":"Убитые вами враги взрываются, нанося #% от их здоровья в виде физического урона"}],"trade":{"ids":{"explicit":["explicit.stat_1220361974"],"implicit":["implicit.stat_1220361974"]}}} +{"ref":"Enemies you Kill have a #% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage","better":1,"matchers":[{"string":"Убитые враги имеют #% шанс взорваться, нанося четверть от их максимума здоровья в виде урона хаосом"}],"trade":{"ids":{"explicit":["explicit.stat_1776945532"]}}} +{"ref":"Enemies you Kill have a #% chance to Explode, dealing a tenth of their maximum Life as Physical Damage","better":1,"matchers":[{"string":"Убитые вами враги с #% шансом взрываются, нанося десятую часть их максимума здоровья в виде физического урона"}],"trade":{"ids":{"explicit":["explicit.stat_3295179224"],"implicit":["implicit.stat_3295179224"],"fractured":["fractured.stat_3295179224"],"scourge":["scourge.stat_3295179224"]}}} +{"ref":"Enemies you Kill that are affected by Elemental Ailments\ngrant #% increased Flask Charges","better":1,"matchers":[{"string":"#% увеличение зарядов флакона, получаемых за убийство врагов,\nнаходящихся под действием стихийных состояний"},{"string":"#% уменьшение зарядов флакона, получаемых за убийство врагов,\nнаходящихся под действием стихийных состояний","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_589437732"]}}} +{"ref":"Enemies you Kill while affected by Glorious Madness have a #% chance to Explode, dealing a quarter of their Life as Chaos Damage","better":1,"matchers":[{"string":"Враги, убитые вами под действием Великолепного безумия, имеют #% шанс взорваться, нанеся четверть от их здоровья в виде урона хаосом"}],"trade":{"ids":{"explicit":["explicit.stat_2780297117"]}}} +{"ref":"Enemies you Kill while using Pride have #% chance to Explode, dealing a tenth of their maximum Life as Physical Damage","better":1,"matchers":[{"string":"Враги, убитые вами под действием Гордости, с #% шансом взрываются, нанося десятую часть их максимума здоровья в виде физического урона"}],"trade":{"ids":{"explicit":["explicit.stat_1961516633"]}}} +{"ref":"Enemies you or your Totems Kill have #% chance to Explode, dealing 500% of their maximum Life as Fire Damage","better":1,"matchers":[{"string":"Убитые вами или вашими тотемами враги с #% шансом могут взорваться, нанося 500% от их максимума здоровья в виде урона от огня"}],"trade":{"ids":{"explicit":["explicit.stat_215242678"]}}} +{"ref":"Enemies you Shock have #% reduced Cast Speed","better":-1,"matchers":[{"string":"Враги, на которых вы наложили шок, имеют #% повышение скорости сотворения чар"},{"string":"Враги, на которых вы наложили шок, имеют #% снижение скорости сотворения чар","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4107150355"]},"inverted":true}} +{"ref":"Enemies you Shock have #% reduced Movement Speed","better":-1,"matchers":[{"string":"Враги, на которых вы наложили шок, имеют #% повышение скорости передвижения"},{"string":"Враги, на которых вы наложили шок, имеют #% снижение скорости передвижения","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3134790305"]},"inverted":true}} +{"ref":"Enemies you've Hit Recently have #% reduced Life Regeneration rate","better":-1,"matchers":[{"string":"Враги, по которым вы недавно наносили удар, имеют #% повышение скорости регенерации здоровья"},{"string":"Враги, по которым вы недавно наносили удар, имеют #% снижение скорости регенерации здоровья","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3903907406"]},"inverted":true}} +{"ref":"Enemy Hits inflict Temporal Chains on you","better":1,"matchers":[{"string":"Удары врагов накладывают на вас Путы времени"}],"trade":{"ids":{"explicit":["explicit.stat_1955994922"]}}} +{"ref":"Enemy Projectiles Pierce you","better":1,"matchers":[{"string":"Вражеские снаряды всегда вас пронзают"}],"trade":{"ids":{"explicit":["explicit.stat_1457679290"]}}} +{"ref":"Energy Blades have #% increased Attack Speed","better":1,"matchers":[{"string":"#% повышение скорости атаки Клинков энергии"},{"string":"#% снижение скорости атаки Клинков энергии","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1217516474"]}}} +{"ref":"Energy Shield Leech Effects from Attacks are not removed at Full Energy Shield","better":1,"matchers":[{"string":"Эффекты похищения энергетического щита не удаляются при полном энергетическом щите"}],"trade":{"ids":{"explicit":["explicit.stat_1004885987"]}}} +{"ref":"Enfeeble has no Reservation if Cast as an Aura","better":1,"matchers":[{"string":"Слабость в виде ауры не удерживает ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_56919069"]}}} +{"ref":"Ensnaring Arrow has #% increased Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Стрелы ловчего"},{"string":"#% уменьшение области действия Стрелы ловчего","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2791271819"]}}} +{"ref":"Ensnaring Arrow has #% increased Debuff Effect","better":1,"matchers":[{"string":"#% усиление отрицательного эффекта Стрелы ловчего"},{"string":"#% ослабление отрицательного эффекта Стрелы ловчего","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1405738574"]}}} +{"ref":"Envy has no Reservation","better":1,"matchers":[{"string":"Зависть не удерживает ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_2503479316"]}}} +{"ref":"Eternal Youth","better":1,"matchers":[{"string":"Вечная молодость"}],"trade":{"ids":{"explicit":["explicit.stat_1308467455"],"scourge":["scourge.stat_1308467455"]}}} +{"ref":"Ethereal Knives fires Projectiles in a circle","better":1,"matchers":[{"string":"Бесплотные ножи выпускают снаряды кольцом"}],"trade":{"ids":{"enchant":["enchant.stat_3491968196"]}}} +{"ref":"Evasion Rating is increased by Overcapped Cold Resistance","better":1,"matchers":[{"string":"Уклонение увеличено на значение сопротивления холоду выше максимума"}],"trade":{"ids":{"explicit":["explicit.stat_2358015838"],"fractured":["fractured.stat_2358015838"]}}} +{"ref":"Everlasting Sacrifice","better":1,"matchers":[{"string":"Вечное жертвоприношение"}],"trade":{"ids":{"explicit":["explicit.stat_145598447"]}}} +{"ref":"Every 10 seconds:\nGain 2% of Life per Enemy Hit with Attacks for 5 seconds\nGain 5% of Life per Enemy Killed for 5 seconds","better":1,"matchers":[{"string":"Каждые 10 секунд:\nДает 2% здоровья на 5 секунд за каждого пораженного ударами атака врага\nДает 5% здоровья на 5 секунд за каждого убитого врага"}],"trade":{"ids":{"explicit":["explicit.stat_3938394827"]}}} +{"ref":"Every 16 seconds you gain Elemental Overload for 8 seconds","better":1,"matchers":[{"string":"Каждые 16 секунд вы получаете Стихийную перегрузку на 8 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_708913352"]}}} +{"ref":"Every 16 seconds you gain Iron Reflexes for 8 seconds","better":1,"matchers":[{"string":"Каждые 16 секунд вы получаете Стальные нервы на 8 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_2200114771"]}}} +{"ref":"Every 3 seconds, Consume a nearby Corpse to Recover #% of Life","better":1,"matchers":[{"string":"Каждые 3 секунды поглощает ближайший труп, чтобы восстановить #% здоровья"},{"string":"Каждые 3 секунды поглощает ближайший труп, чтобы потерять #% здоровья","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3764198549"]}}} +{"ref":"Every 4 seconds, Regenerate #% of Life over one second","better":1,"matchers":[{"string":"Каждые 4 секунды регенерирует #% здоровья в течение 1 секунды"}],"trade":{"ids":{"explicit":["explicit.stat_1242155304"],"fractured":["fractured.stat_1242155304"]}}} +{"ref":"Every 4 seconds, remove Curses and Elemental Ailments from you","better":1,"matchers":[{"string":"Каждые 4 секунды снимает с вас все проклятия и стихийные состояния"}],"trade":{"ids":{"explicit":["explicit.stat_2189230542"]}}} +{"ref":"Every 5 seconds, gain one of the following for 5 seconds:\nYour Hits are always Critical Strikes\nHits against you are always Critical Strikes\nAttacks cannot Hit you\nAttacks against you always Hit\nYour Damage with Hits is Lucky\nDamage of Hits against you is Lucky","better":1,"matchers":[{"string":"Каждые 5 секунд, дарует один из следующих эффектов на 5 секунд:\nВаши удары всегда критические\nУдары по вам всегда критические\nАтаки не могут нанести вам удар\nАтаки по вам всегда попадают\nВаш урон от ударов удачлив\nУрон от ударов по вам удачлив"}],"trade":{"ids":{"explicit":["explicit.stat_2501671832"]}}} +{"ref":"Every 8 seconds, gain Avatar of Fire for 4 seconds","better":1,"matchers":[{"string":"Каждые 8 секунд дарует Воплощение огня на 4 секунды"}],"trade":{"ids":{"explicit":["explicit.stat_3345955207"]}}} +{"ref":"Every Rage also grants #% of Physical Damage as Extra Fire Damage","better":1,"matchers":[{"string":"Каждая единица свирепости также дарует #% физического урона в виде дополнительного урона от огня"}],"trade":{"ids":{"explicit":["explicit.stat_1431402553"]}}} +{"ref":"Excavated Chests have a #% chance to contain twice as many Items","better":1,"fromAreaMods":true,"matchers":[{"string":"Выкопанные сундуки с #% шансом могут содержать в два раза больше предметов"}],"trade":{"ids":{"implicit":["implicit.stat_3239978999"]}}} +{"ref":"Exerted Attacks deal #% increased Damage","better":1,"matchers":[{"string":"Улучшенные атаки наносят увеличенный на #% урон"},{"string":"Улучшенные атаки наносят уменьшенный на #% урон","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1569101201"],"implicit":["implicit.stat_1569101201"],"fractured":["fractured.stat_1569101201"]}}} +{"ref":"Exerted Attacks Knock Enemies Back on Hit","better":1,"matchers":[{"string":"Улучшенные атаки имеют #% шанс отбросить врагов при нанесении удара"},{"string":"Улучшенные атаки отбрасывают врагов при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1634061592"]}}} +{"ref":"Explosive Arrow deals #% increased Damage","better":1,"matchers":[{"string":"Взрывная стрела наносит увеличенный на #% урон"},{"string":"Взрывная стрела наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3628984170"]}}} +{"ref":"Explosive Arrow has #% increased Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Взрывной стрелы"},{"string":"#% уменьшение области действия Взрывной стрелы","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1041365824"]}}} +{"ref":"Explosive Arrow has #% increased Attack Speed","better":1,"matchers":[{"string":"#% повышение скорости атаки Взрывной стрелы"},{"string":"#% снижение скорости атаки Взрывной стрелы","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3949159285"]}}} +{"ref":"Explosive Arrow has #% increased Duration","better":1,"matchers":[{"string":"#% увеличение длительности Взрывной стрелы"},{"string":"#% уменьшение длительности Взрывной стрелы","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3590425794"]}}} +{"ref":"Explosive Concoction uses #% increased Flask Charges","better":1,"matchers":[{"string":"#% увеличение количества зарядов флакона, поглощаемых Взрывной смесью"},{"string":"#% уменьшение количества зарядов флакона, поглощаемых Взрывной смесью","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1907051864"]}}} +{"ref":"Explosive Trap causes an additional smaller explosion","better":1,"matchers":[{"string":"Взрывная ловушка вызывает дополнительных небольших взрывов: #"},{"string":"Взрывная ловушка вызывает дополнительный небольшой взрыв","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3078026860"]}}} +{"ref":"Explosive Trap deals #% increased Damage","better":1,"matchers":[{"string":"Взрывная ловушка наносит увеличенный на #% урон"},{"string":"Взрывная ловушка наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4207255685"]}}} +{"ref":"Explosive Trap has #% increased Area of Effect","better":1,"matchers":[{"string":"Взрывная ловушка имеет #% увеличение области действия"},{"string":"Взрывная ловушка имеет #% уменьшение области действия","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1694915226"]}}} +{"ref":"Exposure you inflict applies an extra +#% to the affected Resistance","better":-1,"matchers":[{"string":"Накладываемая вами восприимчивость добавляет дополнительные #% к соответствующему сопротивлению"}],"trade":{"ids":{"explicit":["explicit.stat_3306713700"]}}} +{"ref":"Exsanguinate deals #% increased Damage","better":1,"matchers":[{"string":"Обескровливание наносит увеличенный на #% урон"},{"string":"Обескровливание наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2259734653"]}}} +{"ref":"Exsanguinate has a #% chance to Chain an additional time","better":1,"matchers":[{"string":"Обескровливание имеет #% шанс дополнительный раз нанести удар по цепи"}],"trade":{"ids":{"enchant":["enchant.stat_2304517189"]}}} +{"ref":"Extra gore","better":1,"matchers":[{"string":"Больше крови"}],"trade":{"ids":{"explicit":["explicit.stat_3403461239"]}}} +{"ref":"Eye of Winter fires Shard projectiles with #% increased Frequency during flight","better":1,"matchers":[{"string":"Око зимы во время полета выпускает осколки с увеличенной на #% частотой"},{"string":"Око зимы во время полета выпускает осколки с уменьшенной на #% частотой","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_173612563"]}}} +{"ref":"Far Shot","better":1,"matchers":[{"string":"Дальний выстрел"}],"trade":{"ids":{"explicit":["explicit.stat_2483362276"]}}} +{"ref":"Fire Resistance cannot be Penetrated","better":1,"matchers":[{"string":"Сопротивление огню нельзя пробить"}],"trade":{"ids":{"explicit":["explicit.stat_1138860262"],"fractured":["fractured.stat_1138860262"]}}} +{"ref":"Fire Resistance is #%","better":1,"matchers":[{"string":"Сопротивление огню равно #%"}],"trade":{"ids":{"explicit":["explicit.stat_763311546"]}}} +{"ref":"Fire Skills have #% chance to Poison on Hit","better":1,"matchers":[{"string":"Умения огня имеют #% шанс отравить при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_2424717327"]}}} +{"ref":"Fireball Always Ignites","better":1,"matchers":[{"string":"Огненный шар имеет #% шанс поджечь"},{"string":"Огненный шар всегда поджигает","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2098790581"]}}} +{"ref":"Fish Rot upon being Caught","better":1,"matchers":[{"string":"Рыба сгнивает после ловли"}],"trade":{"ids":{"scourge":["scourge.stat_261024552"]}}} +{"ref":"Flame Dash has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"#% повышение скорости перезарядки Огненного рывка"},{"string":"#% снижение скорости перезарядки Огненного рывка","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1440798870"]}}} +{"ref":"Flame Golems have #% increased Damage","better":1,"matchers":[{"string":"#% увеличение урона големов огня"},{"string":"#% уменьшение урона големов огня","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1575282859"]}}} +{"ref":"Flame Wall deals #% increased Damage","better":1,"matchers":[{"string":"Стена пламени наносит увеличенный на #% урон"},{"string":"Стена пламени наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2189364976"]}}} +{"ref":"Flame Wall grants # to # Added Fire Damage to Projectiles","better":1,"matchers":[{"string":"Стена пламени добавляет от # до # урона от огня снарядам"}],"trade":{"ids":{"enchant":["enchant.stat_3881327877"]}}} +{"ref":"Flamethrower Trap deals #% increased Damage","better":1,"matchers":[{"string":"Ловушка-огнемёт наносит увеличенный на #% урон"},{"string":"Ловушка-огнемёт наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4162139595"]}}} +{"ref":"Flamethrower Trap has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"Ловушка-огнемёт имеет #% повышение скорости перезарядки"},{"string":"Ловушка-огнемёт имеет #% снижение скорости перезарядки","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2962501808"]}}} +{"ref":"Flamethrower Trap has #% increased Skill Effect Duration","better":1,"matchers":[{"string":"Ловушка-огнемёт имеет #% увеличение длительности эффекта умений"},{"string":"Ловушка-огнемёт имеет #% уменьшение длительности эффекта умений","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_525771896"]}}} +{"ref":"Flamethrower Trap has an additional Flame","better":1,"matchers":[{"string":"Ловушка-огнемёт выпускает дополнительных потоков пламени: #"},{"string":"Ловушка-огнемёт выпускает дополнительный поток пламени","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1452255482"]}}} +{"ref":"Flammability has no Reservation if Cast as an Aura","better":1,"matchers":[{"string":"Горючесть в виде ауры не удерживает ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_1195140808"]}}} +{"ref":"Flasks applied to you have #% increased Effect","better":1,"matchers":[{"string":"#% усиление эффекта примененных на вас флаконов"},{"string":"#% ослабление эффекта примененных на вас флаконов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_114734841"],"implicit":["implicit.stat_114734841"],"fractured":["fractured.stat_114734841"],"crafted":["crafted.stat_114734841"]}}} +{"ref":"Flasks applied to you have #% increased Effect per Level","better":1,"matchers":[{"string":"#% усиление эффекта применяемых к вам флаконов за уровень"},{"string":"#% ослабление эффекта применяемых к вам флаконов за уровень","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3867344930"]}}} +{"ref":"Flasks do not apply to you","better":1,"matchers":[{"string":"Не может находиться под действием эффекта флакона"}],"trade":{"ids":{"explicit":["explicit.stat_3003321700"],"fractured":["fractured.stat_3003321700"]}}} +{"ref":"Flasks gain # Charge per second if you've Hit a Unique Enemy Recently","better":1,"matchers":[{"string":"Флаконы получают зарядов в секунду, если недавно вы наносили удар по уникальному врагу: #"}],"trade":{"ids":{"explicit":["explicit.stat_3599443205"]}}} +{"ref":"Flasks gain # Charges every 3 seconds","better":1,"matchers":[{"string":"Флаконы получают # заряда(-ов) каждые 3 секунды"},{"string":"Флаконы получают заряд каждые 3 секунды","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1193283913"],"implicit":["implicit.stat_1193283913"]}}} +{"ref":"Flasks gain # Charges every 3 seconds while they are inactive","better":1,"matchers":[{"string":"Флаконы получают зарядов каждые 3 секунды, пока они неактивны: #"}],"trade":{"ids":{"explicit":["explicit.stat_3168399315"]}}} +{"ref":"Flasks gain # Charges when you hit a Non-Unique Enemy, no more than once per second","better":1,"matchers":[{"string":"Флаконы получают зарядов при нанесении вами удара по неуникальному врагу, не чаще раза в секунду: #"}],"trade":{"ids":{"explicit":["explicit.stat_196260576"]}}} +{"ref":"Flasks you Use apply to your Raised Zombies and Spectres","better":1,"matchers":[{"string":"Используемые вами флаконы применяются к поднятым зомби и призракам"}],"trade":{"ids":{"explicit":["explicit.stat_3127641775"]}}} +{"ref":"Flesh and Stone has #% increased Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Камня и плоти"},{"string":"#% уменьшение области действия Камня и плоти","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_789978501"]}}} +{"ref":"Flesh and Stone has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"#% увеличение эффективности удержания маны Камнем и плотью"},{"string":"#% уменьшение эффективности удержания маны Камнем и плотью","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1740848995","enchant.stat_3563089138"]}}} +{"ref":"Flesh and Stone has no Reservation","better":1,"matchers":[{"string":"Камень и плоть не удерживает ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_2060601355"]}}} +{"ref":"Flesh Offering grants an additional #% increased Attack Speed","better":1,"matchers":[{"string":"Подношение плоти дарует дополнительное #% повышение скорости атаки"},{"string":"Подношение плоти дарует дополнительное #% снижение скорости атаки","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_513715594"]}}} +{"ref":"Flesh Offering has #% increased Effect","better":1,"matchers":[{"string":"#% усиление эффекта Подношения плоти"},{"string":"#% ослабление эффекта Подношения плоти","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3456379680"]}}} +{"ref":"Flicker Strike has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"#% повышение скорости перезарядки Внезапного удара"},{"string":"#% снижение скорости перезарядки Внезапного удара","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1398394628"]}}} +{"ref":"Focus has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"#% повышение скорости перезарядки Фокуса"},{"string":"#% снижение скорости перезарядки Фокуса","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3610263531"],"fractured":["fractured.stat_3610263531"],"crafted":["crafted.stat_3610263531"]}}} +{"ref":"For each nearby corpse, #% increased Movement Speed","better":1,"matchers":[{"string":"#% повышение скорости передвижения за каждый ближайший труп"}],"trade":{"ids":{"explicit":["explicit.stat_504462346"]}}} +{"ref":"For each nearby corpse, Regenerate # Life per second","dp":true,"better":1,"matchers":[{"string":"Регенерирует # здоровья в секунду за каждый ближайший труп"}],"trade":{"ids":{"explicit":["explicit.stat_2500585555"]}}} +{"ref":"For each nearby corpse, Regenerate #% Life per second, up to 3%","dp":true,"better":1,"matchers":[{"string":"Регенерирует #% здоровья в секунду за каждый расположенный рядом труп, вплоть до 3%"}],"trade":{"ids":{"explicit":["explicit.stat_3845048660"]}}} +{"ref":"Forbidden Rite fires an additional Projectile","better":1,"matchers":[{"string":"Запретный ритуал выпускает дополнительных снарядов: #"},{"string":"Запретный ритуал выпускает дополнительный снаряд","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3047407995"]}}} +{"ref":"Found Items have #% chance to drop Corrupted in Area","better":1,"fromAreaMods":true,"matchers":[{"string":"Найденные в области предметы имеют #% шанс выпасть оскверненными"}],"trade":{"ids":{"explicit":["explicit.stat_728267040"],"fractured":["fractured.stat_728267040"],"enchant":["enchant.stat_728267040"]}}} +{"ref":"Found Magic Items drop Identified","better":1,"matchers":[{"string":"Найденные волшебные предметы выпадают опознанными"}],"trade":{"ids":{"explicit":["explicit.stat_3020069394"]}}} +{"ref":"Freeze Chilled Enemies as though dealing #% more Damage","better":1,"matchers":[{"string":"Замораживает охлажденных врагов как при нанесении на #% больше урона"},{"string":"Замораживает охлажденных врагов как при нанесении на #% меньше урона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4272678430"]}}} +{"ref":"Freeze Enemies as though dealing #% more Damage","better":1,"matchers":[{"string":"Замораживает врагов как если бы по ним нанесли на #% больше урона"}],"trade":{"ids":{"explicit":["explicit.stat_1302208736"]}}} +{"ref":"Freezes you inflict spread to other Enemies within # metre","better":1,"matchers":[{"string":"Наложенные вами заморозки распространяются на других врагов в радиусе # м"}],"trade":{"ids":{"explicit":["explicit.stat_3865389316"],"implicit":["implicit.stat_1623640288"]}}} +{"ref":"Frost Bomb has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"#% повышение скорости перезарядки Морозной бомбы"},{"string":"#% снижение скорости перезарядки Морозной бомбы","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3524326896"]}}} +{"ref":"Frost Bomb has #% increased Debuff Duration","better":1,"matchers":[{"string":"#% увеличение длительности отрицательного эффекта Морозной бомбы"},{"string":"#% уменьшение длительности отрицательного эффекта Морозной бомбы","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2109176627"]}}} +{"ref":"Frost Shield has +# Cooldown Use","better":1,"matchers":[{"string":"Морозный щит имеет # заряд"},{"string":"Морозный щит имеет # к зарядам"}],"trade":{"ids":{"enchant":["enchant.stat_915160899"]}}} +{"ref":"Frost Shield has +# to maximum Life per Stage","better":1,"matchers":[{"string":"Морозный щит имеет # к максимуму прочности за стадию"}],"trade":{"ids":{"enchant":["enchant.stat_2511493969"]}}} +{"ref":"Frost Wall has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"#% повышение скорости перезарядки Стены льда"},{"string":"#% снижение скорости перезарядки Стены льда","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2479762395"]}}} +{"ref":"Frostbite has no Reservation if Cast as an Aura","better":1,"matchers":[{"string":"Обморожение в виде ауры не удерживает ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_3062707366"]}}} +{"ref":"Frostblink has #% increased Duration","better":1,"matchers":[{"string":"Ледяной скачок имеет #% увеличение длительности"},{"string":"Ледяной скачок имеет #% уменьшение длительности","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3941271999"]}}} +{"ref":"Frostblink has #% increased maximum travel distance","better":1,"matchers":[{"string":"#% увеличение максимальной дистанции передвижения Ледяного скачка"},{"string":"#% уменьшение максимальной дистанции передвижения Ледяного скачка","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3070497632"]}}} +{"ref":"Frostblink has #% reduced Cooldown Recovery Rate","better":-1,"matchers":[{"string":"#% повышение скорости перезарядки Ледяного скачка"},{"string":"#% снижение скорости перезарядки Ледяного скачка","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_815588902"]},"inverted":true}} +{"ref":"Frostbolt has +#% chance to Freeze","better":1,"matchers":[{"string":"Морозный шар имеет #% шанс заморозить"},{"string":"Морозный шар всегда замораживает","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2774873427"]}}} +{"ref":"Frozen Legion has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"#% повышение скорости перезарядки Ледяного легиона"},{"string":"#% снижение скорости перезарядки Ледяного легиона","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3809563078"]}}} +{"ref":"Frozen Legion has +# Cooldown Use","better":1,"matchers":[{"string":"# к количеству зарядов Ледяного легиона"}],"trade":{"ids":{"enchant":["enchant.stat_2876793597"]}}} +{"ref":"Frozen Sweep deals #% increased Damage","better":1,"matchers":[{"string":"Ледяной взмах наносит увеличенный на #% урон"},{"string":"Ледяной взмах наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1048825825"]}}} +{"ref":"Gain # Armour per Grand Spectrum","better":1,"matchers":[{"string":"Дарует # брони за Великий образ"}],"trade":{"ids":{"explicit":["explicit.stat_1166487805"]}}} +{"ref":"Gain # Aureus Coins at the start of the Sanctum","better":1,"matchers":[{"string":"Дарует # Ауруса в начале Святилища"}],"trade":{"ids":{"explicit":["sanctum.stat_2393318075"]}}} +{"ref":"Gain # Aureus Coins when you complete a Room","better":1,"matchers":[{"string":"Дарует # Ауруса, когда вы завершаете комнату"}],"trade":{"ids":{"explicit":["sanctum.stat_4057192895"]}}} +{"ref":"Gain # Charge when you are Hit by an Enemy","better":1,"matchers":[{"string":"Дает зарядов флакона при получении удара от врага: #"}],"trade":{"ids":{"explicit":["explicit.stat_1582728645"],"fractured":["fractured.stat_1582728645"]}}} +{"ref":"Gain # Endurance Charge every second if you've been Hit Recently","better":1,"matchers":[{"string":"Дарует зарядов выносливости каждую секунду, если вы недавно получали удар: #"}],"trade":{"ids":{"explicit":["explicit.stat_2894476716"],"implicit":["implicit.stat_2894476716"],"fractured":["fractured.stat_2894476716"]}}} +{"ref":"Gain # Endurance Charge on use","better":1,"matchers":[{"string":"Дарует # заряд выносливости при использовании"},{"string":"Дарует # заряда(-ов) выносливости при использовании"}],"trade":{"ids":{"explicit":["explicit.stat_3986030307"]}}} +{"ref":"Gain # Energy Shield for each Enemy you Hit which is affected by a Spider's Web","better":1,"matchers":[{"string":"Дарует # энергетического щита за каждый удар по врагу, на которого действует Паучья паутина"}],"trade":{"ids":{"explicit":["explicit.stat_549215295"]}}} +{"ref":"Gain # Energy Shield on Kill per Level","better":1,"matchers":[{"string":"# энергетического щита за убийство за уровень"}],"trade":{"ids":{"explicit":["explicit.stat_294153754"]}}} +{"ref":"Gain # Energy Shield per Enemy Hit while affected by Discipline","better":1,"matchers":[{"string":"Дарует # энергетического щита за каждого поражённого врага под действием Дисциплины"},{"string":"Теряет # энергетического щита за каждого поражённого врага под действием Дисциплины","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3765507527"]}}} +{"ref":"Gain # Energy Shield per Enemy Hit with Attacks","better":1,"matchers":[{"string":"Дарует # энергетического щита за каждого поражённого атаками врага"},{"string":"Теряет # энергетического щита за каждого поражённого атаками врага","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_211381198"],"implicit":["implicit.stat_211381198"],"fractured":["fractured.stat_211381198"]}}} +{"ref":"Gain # Energy Shield per Enemy Killed","better":1,"matchers":[{"string":"Дарует # энергетического щита за каждого убитого врага"},{"string":"Теряет # энергетического щита за каждого убитого врага"}],"trade":{"ids":{"explicit":["explicit.stat_2528955616"]}}} +{"ref":"Gain # Energy Shield when you Block","better":1,"matchers":[{"string":"Дает # энергетического щита, когда вы блокируете удар"},{"string":"Теряет # энергетического щита, когда вы блокируете удар","negate":true}],"trade":{"ids":{"scourge":["scourge.stat_450695450"]}}} +{"ref":"Gain # Fragile Regrowth each second","better":1,"matchers":[{"string":"Дарует # эффект(-а) Хрупкого восстановления каждую секунду"},{"string":"Теряет # эффект(-а) Хрупкого восстановления каждую секунду","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3841984913"],"fractured":["fractured.stat_3841984913"]}}} +{"ref":"Gain # Frenzy Charge on use","better":1,"matchers":[{"string":"Дарует # заряд ярости при использовании"},{"string":"Дарует # заряда(-ов) ярости при использовании"}],"trade":{"ids":{"explicit":["explicit.stat_3230795453"]}}} +{"ref":"Gain # Inspiration at the start of each Floor","better":1,"matchers":[{"string":"Дарует # вдохновения в начале каждого этажа"}],"trade":{"ids":{"explicit":["sanctum.stat_2942028778"]}}} +{"ref":"Gain # Inspiration at the start of the Sanctum","better":1,"matchers":[{"string":"Дарует # вдохновения в начале Святилища"}],"trade":{"ids":{"explicit":["sanctum.stat_3102760194"]}}} +{"ref":"Gain # Inspiration when you receive an Affliction","better":1,"matchers":[{"string":"Дарует # вдохновения, когда вы получаете проклятие"}],"trade":{"ids":{"explicit":["sanctum.stat_1518851624"]}}} +{"ref":"Gain # Life for each Ignited Enemy hit with Attacks","better":1,"matchers":[{"string":"Дарует # здоровья за каждого подожженного атаками врага"},{"string":"Теряет # здоровья за каждого подожженного атаками врага","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_120895749"],"fractured":["fractured.stat_120895749"]}}} +{"ref":"Gain # Life on Culling Strike","better":1,"matchers":[{"string":"Дает # здоровья при добивании"}],"trade":{"ids":{"explicit":["explicit.stat_2381677442"]}}} +{"ref":"Gain # Life on Kill per Level","better":1,"matchers":[{"string":"# здоровья за убийство за уровень"}],"trade":{"ids":{"explicit":["explicit.stat_4228691877"]}}} +{"ref":"Gain # Life per Bleeding Enemy Hit","better":1,"matchers":[{"string":"Дарует # здоровья за каждого истекающего кровью врага"},{"string":"Теряет # здоровья за каждого истекающего кровью врага"}],"trade":{"ids":{"explicit":["explicit.stat_3148570142"]}}} +{"ref":"Gain # Life per Blinded Enemy Hit with this Weapon","better":1,"matchers":[{"string":"Дарует # здоровья за каждого ослепленного этим оружием врага"},{"string":"Теряет # здоровья за каждого ослепленного этим оружием врага","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1649099067"],"fractured":["fractured.stat_1649099067"]}}} +{"ref":"Gain # Life per Cursed Enemy Hit with Attacks","better":1,"matchers":[{"string":"Дарует # здоровья за каждый удар атаками по проклятому врагу"}],"trade":{"ids":{"explicit":["explicit.stat_3072303874"]}}} +{"ref":"Gain # Life per Enemy Hit if you have used a Vaal Skill Recently","better":1,"matchers":[{"string":"Дарует # здоровья за каждого пораженного врага, если недавно вы использовали умение ваал"},{"string":"Теряет # здоровья за каждого пораженного врага, если недавно вы использовали умение ваал","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3285021988"]}}} +{"ref":"Gain # Life per Enemy Hit while affected by Vitality","better":1,"matchers":[{"string":"Дарует # здоровья за каждого пораженного врага под действием Живучести"},{"string":"Теряет # здоровья за каждого пораженного врага под действием Живучести","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4259701244"]}}} +{"ref":"Gain # Life per Enemy Hit with Attacks","better":1,"matchers":[{"string":"# здоровья за каждый удар атаками по врагу"},{"string":"Вы теряете # здоровья за каждый удар атаками по врагу","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2797971005"],"implicit":["implicit.stat_2797971005"],"fractured":["fractured.stat_2797971005"],"scourge":["scourge.stat_2797971005"],"crafted":["crafted.stat_2797971005"]}}} +{"ref":"Gain # Life per Enemy Hit with Melee Weapons","better":1,"matchers":[{"string":"Дарует # здоровья за каждого врага, пораженного ударом оружия ближнего боя"}],"trade":{"ids":{"explicit":["explicit.stat_3497810785"]}}} +{"ref":"Gain # Life per Enemy Hit with Spells","better":1,"matchers":[{"string":"# здоровья за каждый удар чарами по врагу"},{"string":"Вы теряете # здоровья за каждый удар чарами по врагу","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2018035324"],"fractured":["fractured.stat_2018035324"]}}} +{"ref":"Gain # Life per Enemy Killed","better":1,"matchers":[{"string":"Дарует # здоровья за каждого убитого врага"},{"string":"Теряет # здоровья за каждого убитого врага","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3695891184"],"implicit":["implicit.stat_3695891184"],"fractured":["fractured.stat_3695891184"]}}} +{"ref":"Gain # Life per Enemy Killed with Melee Weapons","better":1,"matchers":[{"string":"Дарует # здоровья за каждого врага, убитого оружием ближнего боя"}],"trade":{"ids":{"explicit":["explicit.stat_2507321875"]}}} +{"ref":"Gain # Life per Ignited Enemy Killed","better":1,"matchers":[{"string":"Дарует # здоровья за каждого подожженного убитого врага"},{"string":"Теряет # здоровья за каждого подожженного убитого врага","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_893903361"]}}} +{"ref":"Gain # Life when you lose an Endurance Charge","better":1,"matchers":[{"string":"Дарует # здоровья, когда вы теряете заряд выносливости"}],"trade":{"ids":{"explicit":["explicit.stat_3915702459"]}}} +{"ref":"Gain # Life when you Stun an Enemy","better":1,"matchers":[{"string":"Получает # здоровья при оглушении врага"}],"trade":{"ids":{"explicit":["explicit.stat_2968301430"]}}} +{"ref":"Gain # Mana on Culling Strike","better":1,"matchers":[{"string":"Дает # маны при добивании"}],"trade":{"ids":{"explicit":["explicit.stat_2845511711"]}}} +{"ref":"Gain # Mana on Kill per Level","better":1,"matchers":[{"string":"# маны за убийство за уровень"}],"trade":{"ids":{"explicit":["explicit.stat_1064067689"]}}} +{"ref":"Gain # Mana per Cursed Enemy Hit with Attacks","better":1,"matchers":[{"string":"Дарует # маны за каждый удар атаками по проклятому врагу"},{"string":"Теряет # маны за каждый удар атаками по проклятому врагу","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2087996552"]}}} +{"ref":"Gain # Mana per Enemy Hit with Attacks","better":1,"matchers":[{"string":"Дарует # маны за каждого пораженного атаками врага"},{"string":"Теряет # маны за каждого пораженного атаками врага","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_820939409"],"implicit":["implicit.stat_820939409"],"fractured":["fractured.stat_820939409"],"scourge":["scourge.stat_820939409"]}}} +{"ref":"Gain # Mana per Enemy Hit with Melee Weapons","better":1,"matchers":[{"string":"Дарует # маны за каждого врага, пораженного ударом оружия ближнего боя"}],"trade":{"ids":{"explicit":["explicit.stat_766380077"]}}} +{"ref":"Gain # Mana per Enemy Hit with Spells","better":1,"matchers":[{"string":"Дарует # маны за каждого пораженного чарами врага"},{"string":"Теряет # маны за каждого пораженного чарами врага","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2474196346"],"fractured":["fractured.stat_2474196346"]}}} +{"ref":"Gain # Mana per Enemy Killed","better":1,"matchers":[{"string":"Дарует # маны за каждого убитого врага"},{"string":"Теряет # маны за каждого убитого врага","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1368271171"],"implicit":["implicit.stat_1368271171"],"fractured":["fractured.stat_1368271171"]}}} +{"ref":"Gain # Mana per Enemy Killed with Melee Weapons","better":1,"matchers":[{"string":"Дарует # маны за каждого врага, убитого оружием ближнего боя"},{"string":"Теряет # маны за каждого врага, убитого оружием ближнего боя","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2230910022"]}}} +{"ref":"Gain # Mana per Grand Spectrum","better":1,"matchers":[{"string":"Дарует # маны за Великий образ"}],"trade":{"ids":{"explicit":["explicit.stat_2592799343"]}}} +{"ref":"Gain # Mana per Taunted Enemy Hit","better":1,"matchers":[{"string":"Дарует # маны за каждого пораженного спровоцированного врага"},{"string":"Теряет # маны за каждого пораженного спровоцированного врага","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1834588299"]}}} +{"ref":"Gain # Maximum Resolve when you kill a Boss","better":1,"matchers":[{"string":"Дарует # к максимуму решимости, когда вы убиваете босса"}],"trade":{"ids":{"explicit":["sanctum.stat_3817232752"]}}} +{"ref":"Gain # Maximum Resolve when you use a Fountain","better":1,"matchers":[{"string":"Дарует # к максимуму решимости, когда вы используете фонтан"}],"trade":{"ids":{"explicit":["sanctum.stat_3722564733"]}}} +{"ref":"Gain # Power Charge on use","better":1,"matchers":[{"string":"Дарует # заряд энергии при использовании"},{"string":"Дарует # заряда(-ов) энергии при использовании"}],"trade":{"ids":{"explicit":["explicit.stat_2697049014"]}}} +{"ref":"Gain # Power Charges when you Warcry","better":1,"matchers":[{"string":"Дарует # заряда(-ов) энергии при использовании боевого клича"}],"trade":{"ids":{"explicit":["explicit.stat_4118945608"]}}} +{"ref":"Gain # Rage after Spending a total of 200 Mana","better":1,"matchers":[{"string":"Дарует # свирепости после расхода 200 маны"}],"trade":{"ids":{"explicit":["explicit.stat_3199910734"]}}} +{"ref":"Gain # Rage on Attack Hit","better":1,"matchers":[{"string":"Дарует # свирепости при нанесении удара атаками"}],"trade":{"ids":{"implicit":["implicit.stat_2676601655"]}}} +{"ref":"Gain # Rage on Melee Hit","better":1,"matchers":[{"string":"Дарует # свирепости при нанесении удара в ближнем бою"}],"trade":{"ids":{"explicit":["explicit.stat_2709367754"],"implicit":["implicit.stat_2709367754"],"enchant":["enchant.stat_2709367754"]}}} +{"ref":"Gain # Rage on Melee Weapon Hit","better":1,"matchers":[{"string":"Дарует # свирепости при нанесении удара оружием ближнего боя"}],"trade":{"ids":{"implicit":["implicit.stat_2012294704"]}}} +{"ref":"Gain # Resolve when you kill a Boss","better":1,"matchers":[{"string":"Дарует # решимости, когда вы убиваете босса"}],"trade":{"ids":{"explicit":["sanctum.stat_889527415"]}}} +{"ref":"Gain # Resolve when you use a Fountain","better":1,"matchers":[{"string":"Дарует # решимости, когда вы используете фонтан"}],"trade":{"ids":{"explicit":["sanctum.stat_2607697594"]}}} +{"ref":"Gain #% increased Area of Effect for 2 seconds after Spending a total of 800 Mana","better":1,"matchers":[{"string":"Дарует #% увеличение области действия на 2 секунды после расхода 800 маны"}],"trade":{"ids":{"explicit":["explicit.stat_3591816140"]}}} +{"ref":"Gain #% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy","better":1,"matchers":[{"string":"#% повышение скорости атаки на 20 секунд, когда вы убиваете редкого или уникального врага"}],"trade":{"ids":{"explicit":["explicit.stat_3243270997"]}}} +{"ref":"Gain #% of Cold Damage as Extra Chaos Damage","better":1,"matchers":[{"string":"Дарует #% урона от холода в виде дополнительного урона хаосом"}],"trade":{"ids":{"explicit":["explicit.stat_2915373966"],"implicit":["implicit.stat_2915373966"],"fractured":["fractured.stat_2915373966"],"crafted":["crafted.stat_2915373966"]}}} +{"ref":"Gain #% of Cold Damage as Extra Chaos Damage per Frenzy Charge","better":1,"matchers":[{"string":"Дарует #% от урона от холода в виде дополнительного урона хаосом за заряд ярости"}],"trade":{"ids":{"explicit":["explicit.stat_3916799917"]}}} +{"ref":"Gain #% of Cold Damage as Extra Fire Damage against Frozen Enemies","better":1,"matchers":[{"string":"Дарует #% урона от холода в виде дополнительного урона от огня по замороженному врагу"}],"trade":{"ids":{"explicit":["explicit.stat_1383929411"]}}} +{"ref":"Gain #% of Cold Damage as Extra Fire Damage per 1% Chill Effect on Enemy","better":1,"matchers":[{"string":"Дарует #% урона от холода в виде дополнительного урона от огня за каждый 1% эффекта охлаждения на враге"}],"trade":{"ids":{"explicit":["explicit.stat_3086896309"]}}} +{"ref":"Gain #% of Elemental Damage as Extra Chaos Damage","better":1,"matchers":[{"string":"Дарует #% от урона от стихий в виде дополнительного урона хаосом"}],"trade":{"ids":{"explicit":["explicit.stat_3495544060"],"fractured":["fractured.stat_3495544060"]}}} +{"ref":"Gain #% of Elemental Damage as Extra Chaos Damage during effect","better":1,"matchers":[{"string":"Дарует #% урона от стихий в виде дополнительного урона хаосом во время эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_3562241510"]}}} +{"ref":"Gain #% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped","better":1,"matchers":[{"string":"Дарует #% урона от стихий в виде дополнительного урона хаосом за каждый надетый предмет Создателя"}],"trade":{"ids":{"explicit":["explicit.stat_33348259"]}}} +{"ref":"Gain #% of Fire Damage as Extra Chaos Damage","better":1,"matchers":[{"string":"Дарует #% урона от огня в виде дополнительного урона хаосом"}],"trade":{"ids":{"explicit":["explicit.stat_1599775597"],"implicit":["implicit.stat_1599775597"],"fractured":["fractured.stat_1599775597"],"crafted":["crafted.stat_1599775597"]}}} +{"ref":"Gain #% of Fire Damage as Extra Chaos Damage per Endurance Charge","better":1,"matchers":[{"string":"Дарует #% от урона от огня в виде дополнительного урона хаосом за заряд выносливости"}],"trade":{"ids":{"explicit":["explicit.stat_1109745356"]}}} +{"ref":"Gain #% of Lightning Damage as Extra Chaos Damage","better":1,"matchers":[{"string":"Дарует #% урона от молнии в виде дополнительного урона хаосом"}],"trade":{"ids":{"explicit":["explicit.stat_2402136583"],"implicit":["implicit.stat_2402136583"],"fractured":["fractured.stat_2402136583"],"crafted":["crafted.stat_2402136583"]}}} +{"ref":"Gain #% of Lightning Damage as Extra Chaos Damage per Power Charge","better":1,"matchers":[{"string":"Дарует #% от урона от молнии в виде дополнительного урона хаосом за заряд энергии"}],"trade":{"ids":{"explicit":["explicit.stat_3115319277"]}}} +{"ref":"Gain #% of Lightning Damage as Extra Cold Damage per 2% Shock Effect on Enemy","better":1,"matchers":[{"string":"Добавляет #% урона от молнии в виде дополнительного урона от холода за каждые 2% эффекта шока на враге"}],"trade":{"ids":{"explicit":["explicit.stat_13172430"]}}} +{"ref":"Gain #% of Maximum Life as Extra Maximum Energy Shield","better":1,"matchers":[{"string":"Добавляет #% от максимума здоровья в виде дополнительного максимума энергетического щита"}],"trade":{"ids":{"explicit":["explicit.stat_67280387"],"implicit":["implicit.stat_67280387"],"fractured":["fractured.stat_67280387"],"crafted":["crafted.stat_67280387"]}}} +{"ref":"Gain #% of Maximum Mana as Extra Maximum Energy Shield","better":1,"matchers":[{"string":"Дарует #% от максимума маны в виде дополнительного максимума энергетического щита"}],"trade":{"ids":{"explicit":["explicit.stat_2663376056"],"scourge":["scourge.stat_2663376056"]}}} +{"ref":"Gain #% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity","better":1,"matchers":[{"string":"Под действием Ясности ума #% от максимума маны добавляется в виде дополнительного максимума энергетического щита"}],"trade":{"ids":{"explicit":["explicit.stat_2831391506"]}}} +{"ref":"Gain #% of Missing Unreserved Life before being Hit by an Enemy","better":1,"matchers":[{"string":"Дарует #% недостающего неудержанного здоровья перед получением удара от врага"}],"trade":{"ids":{"explicit":["explicit.stat_1383676476"]}}} +{"ref":"Gain #% of Non-Chaos Damage as extra Chaos Damage","better":1,"matchers":[{"string":"Наносит #% от урона не-хаосом в виде дополнительного урона хаосом"}],"trade":{"ids":{"explicit":["explicit.stat_2063695047"],"fractured":["fractured.stat_2063695047"],"crafted":["crafted.stat_2063695047"]}}} +{"ref":"Gain #% of Non-Chaos Damage as extra Chaos Damage per Siphoning Charge","better":1,"matchers":[{"string":"Наносит #% от урона не-хаосом в виде дополнительного урона хаосом за заряд переливания"}],"trade":{"ids":{"explicit":["explicit.stat_3296019532"]}}} +{"ref":"Gain #% of Physical Attack Damage as Extra Fire Damage","better":1,"matchers":[{"string":"Наносит #% от физического урона от атак в виде дополнительного урона от огня"}],"trade":{"ids":{"explicit":["explicit.stat_273476097"]}}} +{"ref":"Gain #% of Physical Attack Damage as Extra Lightning Damage","better":1,"matchers":[{"string":"Наносит #% от физического урона от атак в виде дополнительного урона от молнии"}],"trade":{"ids":{"explicit":["explicit.stat_1096897481"]}}} +{"ref":"Gain #% of Physical Damage as a Random Element if you've cast Elemental Weakness in the past 10 seconds","better":1,"matchers":[{"string":"Дарует #% физического урона в виде урона от случайной стихии, если вы сотворяли Уязвимость к стихиям за последние 10 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_4281949537"]}}} +{"ref":"Gain #% of Physical Damage as Extra Chaos Damage","better":1,"matchers":[{"string":"Дарует #% от физического урона в виде дополнительного урона хаосом"}],"trade":{"ids":{"explicit":["explicit.stat_3319896421"],"implicit":["implicit.stat_3319896421"],"fractured":["fractured.stat_3319896421"],"crafted":["crafted.stat_3319896421"]}}} +{"ref":"Gain #% of Physical Damage as Extra Chaos Damage during effect","better":1,"matchers":[{"string":"Дарует #% от физического урона в виде дополнительного урона хаосом во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_2818167778"]}}} +{"ref":"Gain #% of Physical Damage as Extra Chaos Damage per Elder Item Equipped","better":1,"matchers":[{"string":"Дарует #% физического урона в виде дополнительного урона хаосом за каждый надетый предмет Древнего"}],"trade":{"ids":{"explicit":["explicit.stat_1423002070"]}}} +{"ref":"Gain #% of Physical Damage as Extra Chaos Damage while at maximum Power Charges","better":1,"matchers":[{"string":"Дарует #% от физического урона в виде дополнительного урона хаосом при максимуме зарядов энергии"}],"trade":{"ids":{"explicit":["explicit.stat_3492297134"]}}} +{"ref":"Gain #% of Physical Damage as Extra Cold Damage","better":1,"matchers":[{"string":"Дарует #% от физического урона в виде дополнительного урона от холода"}],"trade":{"ids":{"explicit":["explicit.stat_979246511"],"implicit":["implicit.stat_979246511"],"fractured":["fractured.stat_979246511"]}}} +{"ref":"Gain #% of Physical Damage as Extra Cold Damage during effect","better":1,"matchers":[{"string":"Наносит #% от физического урона в виде дополнительного урона от холода во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_2661163721"]}}} +{"ref":"Gain #% of Physical Damage as Extra Damage of a random Element","better":1,"matchers":[{"string":"Дарует #% физического урона в виде дополнительного урона от случайной стихии"}],"trade":{"ids":{"explicit":["explicit.stat_3753703249"],"implicit":["implicit.stat_3753703249"],"fractured":["fractured.stat_3753703249"]}}} +{"ref":"Gain #% of Physical Damage as Extra Damage of a random Element while you are Ignited","better":1,"matchers":[{"string":"Дарует #% физического урона в виде дополнительного урона от случайной стихи пока вы подожжены"}],"trade":{"ids":{"explicit":["explicit.stat_3595519743"]}}} +{"ref":"Gain #% of Physical Damage as Extra Damage of each Element per Spirit Charge","better":1,"matchers":[{"string":"Добавляет #% физического урона в виде дополнительного урона каждой стихией за каждый заряд души"}],"trade":{"ids":{"explicit":["explicit.stat_4288824781"]}}} +{"ref":"Gain #% of Physical Damage as Extra Fire Damage","better":1,"matchers":[{"string":"Дарует #% от физического урона в виде дополнительного урона от огня"}],"trade":{"ids":{"explicit":["explicit.stat_369494213"],"implicit":["implicit.stat_369494213"],"fractured":["fractured.stat_369494213"]}}} +{"ref":"Gain #% of Physical Damage as Extra Fire Damage if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"Наносит #% от физического урона в виде дополнительного урона от огня, если вы недавно наносили критический удар"}],"trade":{"ids":{"explicit":["explicit.stat_2810434465"],"fractured":["fractured.stat_2810434465"]}}} +{"ref":"Gain #% of Physical Damage as Extra Fire Damage while affected by Anger","better":1,"matchers":[{"string":"Дарует #% от физического урона в виде дополнительного урона от огня под действием Жгучей злобы"}],"trade":{"ids":{"explicit":["explicit.stat_4245204226"]}}} +{"ref":"Gain #% of Physical Damage as Extra Lightning Damage","better":1,"matchers":[{"string":"Дарует #% от физического урона в виде дополнительного урона от молнии"}],"trade":{"ids":{"explicit":["explicit.stat_219391121"],"implicit":["implicit.stat_219391121"],"fractured":["fractured.stat_219391121"]}}} +{"ref":"Gain #% of Physical Damage as Extra Lightning Damage while affected by Wrath","better":1,"matchers":[{"string":"Дарует #% от физического урона в виде дополнительного урона от молнии под действием Грозного гнева"}],"trade":{"ids":{"explicit":["explicit.stat_2255914633"]}}} +{"ref":"Gain #% of Sword Physical Damage as Extra Fire Damage","better":1,"matchers":[{"string":"Наносит #% от физического урона мечом в виде дополнительного урона от огня"}],"trade":{"ids":{"explicit":["explicit.stat_754005431"]}}} +{"ref":"Gain #% of Weapon Physical Damage as Extra Damage of a random Element","better":1,"matchers":[{"string":"Дарует #% от физического урона оружием в виде дополнительного урона от случайной стихии"}],"trade":{"ids":{"explicit":["explicit.stat_1038949719"]}}} +{"ref":"Gain #% of Weapon Physical Damage as Extra Damage of each Element","better":1,"matchers":[{"string":"Дарует #% от физического урона оружием в виде дополнительного урона от каждой стихии"}],"trade":{"ids":{"explicit":["explicit.stat_3913265126"],"enchant":["enchant.stat_3913265126"]}}} +{"ref":"Gain +# Life when you Taunt an Enemy","better":1,"matchers":[{"string":"Восстанавливает # здоровья, когда вы провоцируете врага"}],"trade":{"ids":{"explicit":["explicit.stat_3726536628"]}}} +{"ref":"Gain +#% to Critical Strike Chance for 2 seconds after Spending a total of 800 Mana","dp":true,"better":1,"matchers":[{"string":"На 2 секунды дарует #% к шансу критического удара после расхода 800 маны"}],"trade":{"ids":{"explicit":["explicit.stat_2864779809"]}}} +{"ref":"Gain 1 Endurance Charge per Second during Effect","better":1,"matchers":[{"string":"Дарует 1 заряд выносливости в секунду во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_3916499001"]}}} +{"ref":"Gain 1 Rage on Critical Strike with Attacks","better":1,"matchers":[{"string":"Дарует 1 свирепости при критическом ударе атаками"}],"trade":{"ids":{"explicit":["explicit.stat_1043982313"]}}} +{"ref":"Gain a Flask Charge when you deal a Critical Strike while affected by Precision","better":1,"matchers":[{"string":"Дарует заряд флакона, когда вы наносите критический удар под действием Точности"}],"trade":{"ids":{"explicit":["explicit.stat_3772841281"]}}} +{"ref":"Gain a Frenzy Charge after Spending a total of 200 Mana","better":1,"matchers":[{"string":"Дарует зарядов ярости после расхода 200 маны: #"},{"string":"Дарует заряд ярости после расхода 200 маны","value":1}],"trade":{"ids":{"implicit":["implicit.stat_3868549606"]}}} +{"ref":"Gain a Frenzy Charge each second","better":1,"matchers":[{"string":"Теряет заряд ярости каждую секунду","value":-1},{"string":"Дарует зарядов ярости каждую секунду: #"},{"string":"Дарует заряд ярости каждую секунду","value":1},{"string":"Теряет зарядов ярости каждую секунду: #","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_651232125"]}}} +{"ref":"Gain a Frenzy Charge every # seconds","better":1,"matchers":[{"string":"Дарует заряд ярости каждые # секунд(-ы)"}],"trade":{"ids":{"implicit":["implicit.stat_3906868545"]}}} +{"ref":"Gain a Frenzy Charge if an Attack Ignites an Enemy","better":1,"matchers":[{"string":"Заряд ярости, если атака поджигает врага"}],"trade":{"ids":{"explicit":["explicit.stat_3598983877"]}}} +{"ref":"Gain a Frenzy Charge on every 50th Rampage Kill","better":1,"matchers":[{"string":"Дарует заряд ярости за каждое 50-е убийство во время Буйства"}],"trade":{"ids":{"explicit":["explicit.stat_637690626"]}}} +{"ref":"Gain a Frenzy Charge on Hit while Bleeding","better":1,"matchers":[{"string":"Во время кровотечения получает заряд ярости при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_2977774856"]}}} +{"ref":"Gain a Frenzy Charge on reaching Maximum Power Charges","better":1,"matchers":[{"string":"Получает заряд ярости при достижении максимума зарядов энергии"}],"trade":{"ids":{"explicit":["explicit.stat_2732344760"]}}} +{"ref":"Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary","better":1,"matchers":[{"string":"При нахождении на одном месте раз в секунду дарует заряд ярости, выносливости или энергии"}],"trade":{"ids":{"explicit":["explicit.stat_1438403666"]}}} +{"ref":"Gain a Power Charge after Spending a total of 200 Mana","better":1,"matchers":[{"string":"Дарует заряд энергии после расхода 200 маны"}],"trade":{"ids":{"explicit":["explicit.stat_3269060224"],"fractured":["fractured.stat_3269060224"]}}} +{"ref":"Gain a Power Charge each second","better":1,"matchers":[{"string":"Теряет заряд энергии каждую секунду","value":-1},{"string":"Дарует зарядов энергии каждую секунду: #"},{"string":"Дарует заряд энергии каждую секунду","value":1},{"string":"Теряет зарядов энергии каждую секунду: #","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_521054609"]}}} +{"ref":"Gain a Power Charge every # seconds","better":1,"matchers":[{"string":"Дарует заряд энергии каждые # секунд(-ы)"}],"trade":{"ids":{"implicit":["implicit.stat_3533655459"]}}} +{"ref":"Gain a Power Charge every Second if you haven't lost Power Charges Recently","better":1,"matchers":[{"string":"Дарует заряд энергии каждую секунду, если недавно вы не теряли заряды энергии"}],"trade":{"ids":{"explicit":["explicit.stat_1099200124"]}}} +{"ref":"Gain a Power Charge for each Enemy you hit with a Critical Strike","better":1,"matchers":[{"string":"Заряд энергии за каждого задетого критическим ударом врага"}],"trade":{"ids":{"explicit":["explicit.stat_1556625719"]}}} +{"ref":"Gain a Power Charge on Non-Critical Strike","better":1,"matchers":[{"string":"Заряд энергии при нанесении некритического удара"}],"trade":{"ids":{"explicit":["explicit.stat_1592029809"]}}} +{"ref":"Gain a Power Charge when you Hit a Frozen Enemy","better":1,"matchers":[{"string":"#% шанс получить заряд энергии, когда вы наносите удар по замороженному врагу"},{"string":"Дарует заряд энергии, когда вы наносите удар по замороженному врагу","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3973790753"]}}} +{"ref":"Gain a random shrine buff every 1 second","better":1,"matchers":[{"string":"Каждые # секунд(-ы) дарует положительный эффект случайного алтаря"},{"string":"Каждую секунду дарует положительный эффект случайного алтаря","value":1}],"trade":{"ids":{"enchant":["enchant.stat_2284520710"]}}} +{"ref":"Gain a Spirit Charge every second","better":1,"matchers":[{"string":"Дарует заряд души каждые # секунд(-ы)"},{"string":"Каждую секунду дарует заряд души","value":1}],"trade":{"ids":{"explicit":["explicit.stat_328131617"]}}} +{"ref":"Gain a Void Charge every # seconds","better":1,"matchers":[{"string":"Дарует заряд Пустоты каждые # секунд(-ы)"},{"string":"Дарует заряд Пустоты каждую секунду","value":1}],"trade":{"ids":{"explicit":["explicit.stat_34273389"]}}} +{"ref":"Gain Absorption Charges instead of Power Charges","better":1,"matchers":[{"string":"Дает заряды поглощения вместо зарядов энергии"}],"trade":{"ids":{"explicit":["explicit.stat_1379726309"]}}} +{"ref":"Gain Accuracy Rating equal to your Strength","better":1,"matchers":[{"string":"Дарует меткость, равную вашей силе"}],"trade":{"ids":{"explicit":["explicit.stat_1575519214"],"fractured":["fractured.stat_1575519214"]}}} +{"ref":"Gain Added Chaos Damage equal to #% of Ward","better":1,"matchers":[{"string":"Дарует дополнительный урон хаосом в размере #% от барьера"}],"trade":{"ids":{"explicit":["explicit.stat_3535421504"]}}} +{"ref":"Gain additional Elemental Damage Reduction equal to half your Chaos Resistance","better":1,"matchers":[{"string":"Дарует дополнительное уменьшение получаемого урона от стихий, равное половине вашего сопротивления хаосу"}],"trade":{"ids":{"explicit":["explicit.stat_3990082744"]}}} +{"ref":"Gain Adrenaline for # second on Kill","better":1,"matchers":[{"string":"Дарует Адреналин на # секунд(-ы) при убийстве"},{"string":"Дарует Адреналин на # секунду при убийстве"}],"trade":{"ids":{"explicit":["explicit.stat_4145689649"]}}} +{"ref":"Gain Adrenaline for # second when Ward Breaks","better":1,"matchers":[{"string":"Дарует Адреналин на # секунд(-ы) при разрушении барьера"},{"string":"Дарует Адреналин на # секунду при разрушении барьера"}],"trade":{"ids":{"explicit":["explicit.stat_4231915769"]}}} +{"ref":"Gain Adrenaline for # seconds when you reach Low Life","better":1,"matchers":[{"string":"Дарует Адреналин на # секунд(-ы) при достижении вами малого количества здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_4205704547"]}}} +{"ref":"Gain Adrenaline when you become Flame-Touched","better":1,"matchers":[{"string":"Дарует Адреналин, когда вы получаете Касание пламени"}],"trade":{"ids":{"explicit":["explicit.stat_349619704"]}}} +{"ref":"Gain Affliction Charges instead of Frenzy Charges","better":1,"matchers":[{"string":"Дает заряды подавления вместо зарядов ярости"}],"trade":{"ids":{"explicit":["explicit.stat_1602173343"]}}} +{"ref":"Gain an Endurance Charge each second","better":1,"matchers":[{"string":"Теряет заряд выносливости каждую секунду","value":-1},{"string":"Дарует зарядов выносливости каждую секунду: #"},{"string":"Дарует заряд выносливости каждую секунду","value":1},{"string":"Теряет зарядов выносливости каждую секунду: #","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3778599971"]}}} +{"ref":"Gain an Endurance Charge every # seconds","better":1,"matchers":[{"string":"Дарует заряд выносливости каждые # секунд(-ы)"}],"trade":{"ids":{"implicit":["implicit.stat_2555092341"]}}} +{"ref":"Gain an Endurance Charge every 4 seconds while Stationary","better":1,"matchers":[{"string":"Дарует # заряда(-ов) выносливости каждые 4 секунды при нахождении на одном месте"},{"string":"Дарует заряд выносливости каждые 4 секунды при нахождении на одном месте","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2156210979"],"fractured":["fractured.stat_2156210979"]}}} +{"ref":"Gain an Endurance Charge if an Attack Freezes an Enemy","better":1,"matchers":[{"string":"Дарует заряд выносливости, если атака замораживает врага"}],"trade":{"ids":{"explicit":["explicit.stat_407576170"]}}} +{"ref":"Gain an Endurance Charge when you lose a Power Charge","better":1,"matchers":[{"string":"Дарует заряд выносливости, когда вы теряете заряд энергии"}],"trade":{"ids":{"explicit":["explicit.stat_1791875585"]}}} +{"ref":"Gain an Endurance Charge when you take a Critical Strike","better":1,"matchers":[{"string":"Заряд выносливости при получении вами критического удара"}],"trade":{"ids":{"explicit":["explicit.stat_2609824731"]}}} +{"ref":"Gain an Endurance Charge, Frenzy Charge, and Power Charge when you use a Vaal Skill","better":1,"matchers":[{"string":"Дарует заряд выносливости, ярости и энергии, когда вы используете умение ваал"}],"trade":{"ids":{"explicit":["explicit.stat_1258100102"]}}} +{"ref":"Gain an Endurance, Frenzy or Power Charge every 6 seconds","better":1,"matchers":[{"string":"Дарует зарядов выносливости, ярости или энергии каждые 6 секунд: #"},{"string":"Дарует заряд выносливости, ярости или энергии каждые 6 секунд","value":1}],"trade":{"ids":{"implicit":["implicit.stat_4282426229"]}}} +{"ref":"Gain an Endurance, Frenzy or Power charge when you Block","better":1,"matchers":[{"string":"Дарует заряд выносливости, ярости или энергии при блоке"}],"trade":{"ids":{"explicit":["explicit.stat_2199099676"],"fractured":["fractured.stat_2199099676"]}}} +{"ref":"Gain Arcane Surge after Spending a total of # Mana","better":1,"matchers":[{"string":"Дарует Колдовской выброс после суммарного расхода # маны"}],"trade":{"ids":{"explicit":["explicit.stat_913614572"],"fractured":["fractured.stat_913614572"]}}} +{"ref":"Gain Arcane Surge for 4 seconds when you create Consecrated Ground while affected by Zealotry","better":1,"matchers":[{"string":"Вы получаете Колдовской выброс на 4 секунды при создании освящённой земли под действием Фанатизма"}],"trade":{"ids":{"explicit":["explicit.stat_1919069577"]}}} +{"ref":"Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell","better":1,"matchers":[{"string":"Дарует Колдовской выброс, когда вы или ваши тотемы наносите удар чарами по врагу"}],"trade":{"ids":{"explicit":["explicit.stat_4286031492"]}}} +{"ref":"Gain Brutal Charges instead of Endurance Charges","better":1,"matchers":[{"string":"Дает заряды жестокости вместо зарядов выносливости"}],"trade":{"ids":{"explicit":["explicit.stat_2306836071"]}}} +{"ref":"Gain Elusive on reaching Low Life","better":1,"matchers":[{"string":"Дарует Неуловимость при достижении малого количества здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_2868692131"]}}} +{"ref":"Gain Flaming, Icy or Crackling Runesurge at random for # second every 10 seconds","better":1,"matchers":[{"string":"Случайно дарует Пламенный, Ледяной или Искрящийся рунный всплеск на # секунд(-ы) каждые 10 секунд"},{"string":"Случайно дарует Пламенный, Ледяной или Искрящийся рунный всплеск на # секунду каждые 10 секунд"}],"trade":{"ids":{"enchant":["enchant.stat_3581844317"]}}} +{"ref":"Gain Her Embrace for # seconds when you Ignite an Enemy","better":1,"matchers":[{"string":"Дарует Её объятие на # секунд(-ы) при поджоге врага"}],"trade":{"ids":{"explicit":["explicit.stat_608963131"]}}} +{"ref":"Gain Immunity to Physical Damage for # second on Rampage","better":1,"matchers":[{"string":"Получает иммунитет к физическому урону на # секунд при Буйстве"},{"string":"Получает иммунитет к физическому урону на # секунду при Буйстве"}],"trade":{"ids":{"explicit":["explicit.stat_3100457893"]}}} +{"ref":"Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy","better":1,"matchers":[{"string":"При убийстве редкого или уникального врага дарует эффект Пагубное сумасшествие на 10 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_3442107889"]}}} +{"ref":"Gain Maximum Life instead of Maximum Energy Shield from Equipped Armour Items","better":1,"matchers":[{"string":"Дарует максимум здоровья вместо максимума энергетического от надетых предметов брони"}],"trade":{"ids":{"explicit":["explicit.stat_3734229311"]}}} +{"ref":"Gain Onslaught for # second per Frenzy Charge consumed on use","better":1,"matchers":[{"string":"Дарует Боевой раж на # секунд(-ы) за заряд ярости при использовании"},{"string":"Дарует Боевой раж на # секунду за заряд ярости при использовании"}],"trade":{"ids":{"explicit":["explicit.stat_661376813"]}}} +{"ref":"Gain Onslaught for # seconds when you Cast Socketed Golem Skill","better":1,"matchers":[{"string":"Получает эффект Боевого ража # секунд(-ы) при сотворении размещённого умения големов"}],"trade":{"ids":{"explicit":["explicit.stat_1693676706"]}}} +{"ref":"Gain Onslaught for # seconds when you Warcry","better":1,"matchers":[{"string":"При использовании боевого клича дарует эффект Боевой раж на # секунд(-ы)"}],"trade":{"ids":{"explicit":["explicit.stat_3049436415"]}}} +{"ref":"Gain Rampage while at Maximum Endurance Charges","better":1,"matchers":[{"string":"Эффект Буйства при максимальном количестве зарядов выносливости"}],"trade":{"ids":{"explicit":["explicit.stat_1643796079"]}}} +{"ref":"Gain Sacrificial Zeal when you use a Skill, dealing you #% of the Skill's Mana Cost as Physical Damage per Second","better":1,"matchers":[{"string":"Дарует Жертвенное рвение при использовании вами умения, нанося вам #% от стоимости умения в мане в виде физического урона в секунду"}],"trade":{"ids":{"explicit":["explicit.stat_2287328323"]}}} +{"ref":"Gain Shaper's Presence for 10 seconds when you kill a Rare or Unique Enemy","better":1,"matchers":[{"string":"Дарует Присутствие Создателя на 10 секунд, когда вы убиваете редкого или уникального врага"}],"trade":{"ids":{"explicit":["explicit.stat_1091613629"]}}} +{"ref":"Gain Soul Eater during any Flask Effect","better":1,"matchers":[{"string":"Эффект Пожиратель душ во время действия эффекта любого флакона"}],"trade":{"ids":{"explicit":["explicit.stat_3968454273"]}}} +{"ref":"Gain Soul Eater for # seconds when you use a Vaal Skill","better":1,"matchers":[{"string":"Дарует эффект Пожиратель душ на # секунд(-ы), когда вы используете умение ваал"}],"trade":{"ids":{"explicit":["explicit.stat_161058250"]}}} +{"ref":"Gain Unholy Might for # second on Rampage","better":1,"matchers":[{"string":"Нечестивое могущество на # сек. при Буйстве"}],"trade":{"ids":{"explicit":["explicit.stat_757315075"]}}} +{"ref":"Gain Unholy Might for 4 seconds on Critical Strike","better":1,"matchers":[{"string":"Дарует Нечестивое могущество на 4 секунды при нанесении критического удара"}],"trade":{"ids":{"explicit":["explicit.stat_2959020308"]}}} +{"ref":"Gain up to maximum Endurance Charges when you take a Critical Strike","better":1,"matchers":[{"string":"#% шанс получить вплоть до максимума зарядов выносливости, когда вы получаете критический удар"},{"string":"Дарует вплоть до максимума зарядов выносливости, когда вы получаете критический удар","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4080206249"]}}} +{"ref":"Gain up to maximum Fragile Regrowth when Hit","better":1,"matchers":[{"string":"Дарует максимум эффектов Хрупкого восстановления при получении удара"}],"trade":{"ids":{"explicit":["explicit.stat_2796308895"]}}} +{"ref":"Gain up to maximum Power Charges when you use a Vaal Skill","better":1,"matchers":[{"string":"Дарует максимум зарядов энергии, когда вы используете умение ваал"}],"trade":{"ids":{"explicit":["explicit.stat_3558528738"]}}} +{"ref":"Gain up to your maximum number of Frenzy and Endurance Charges when you gain Cat's Agility","better":1,"matchers":[{"string":"При получении Кошачьей ловкости вы получаете максимум зарядов ярости и выносливости"}],"trade":{"ids":{"explicit":["explicit.stat_523966073"]}}} +{"ref":"Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth","better":1,"matchers":[{"string":"При получении Кошачьей скрытности вы получаете максимум зарядов ярости и энергии"}],"trade":{"ids":{"explicit":["explicit.stat_2446580062"]}}} +{"ref":"Gain Vaal Souls equal to Charges Consumed when used","better":1,"matchers":[{"string":"Дарует души ваал в размере количества израсходованных при использовании зарядов"}],"trade":{"ids":{"explicit":["explicit.stat_1655460656"]}}} +{"ref":"Gain Ward instead of #% of Armour and Evasion Rating from Equipped Body Armour","better":1,"matchers":[{"string":"Дарует барьер вместо #% брони и уклонения на надетом нательном доспехе"}],"trade":{"ids":{"explicit":["explicit.stat_767698281"]}}} +{"ref":"Gains no Charges during Effect","better":1,"matchers":[{"string":"Не получает зарядов во время действия эффекта"}],"trade":{"ids":{"enchant":["enchant.stat_4123533923"]}}} +{"ref":"Gains no Charges during Effect of any Overflowing Chalice Flask","better":1,"matchers":[{"string":"Не получает зарядов во время действия эффекта любого флакона Переполненная чаша"}],"trade":{"ids":{"explicit":["explicit.stat_3741956733"]}}} +{"ref":"Gains no Charges during Effect of any Soul Ripper Flask","better":1,"matchers":[{"string":"Не получает зарядов во время действия эффекта любого флакона Жнец душ"}],"trade":{"ids":{"explicit":["explicit.stat_2748763342"]}}} +{"ref":"Galvanic Arrow has #% increased Projectile Speed","better":1,"matchers":[{"string":"#% повышение скорости снаряда Электризующей стрелы"},{"string":"#% снижение скорости снаряда Электризующей стрелы","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1698558866"]}}} +{"ref":"Galvanic Field Chains an additional time","better":1,"matchers":[{"string":"Электризующее поле наносит # дополнительных удара по цепи"},{"string":"Электризующее поле наносит дополнительный удар по цепи","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3893203185"]}}} +{"ref":"Galvanic Field deals #% increased Damage","better":1,"matchers":[{"string":"Электризующее поле наносит увеличенный на #% урон"},{"string":"Электризующее поле наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3821213705"]}}} +{"ref":"Galvanic Field has #% increased Cast Speed","better":1,"matchers":[{"string":"#% повышение скорости сотворения чар Электризующим полем"}],"trade":{"ids":{"enchant":["enchant.stat_2364563825"]}}} +{"ref":"Gems can be Socketed in this Item ignoring Socket Colour","better":1,"matchers":[{"string":"В гнёзда на этом предмете можно помещать камни любого цвета"}],"trade":{"ids":{"explicit":["explicit.stat_899329924"],"fractured":["fractured.stat_899329924"]}}} +{"ref":"Gems Socketed in Blue Sockets gain #% increased Experience","better":1,"matchers":[{"string":"#% увеличение опыта камней, размещённых в гнёздах синего цвета"}],"trade":{"ids":{"explicit":["explicit.stat_2236460050"]}}} +{"ref":"Gems Socketed in Green Sockets have +#% to Quality","better":1,"matchers":[{"string":"#% к качеству камней, размещённых в гнёздах зелёного цвета"}],"trade":{"ids":{"explicit":["explicit.stat_3799930101"]}}} +{"ref":"Gems Socketed in Red Sockets have +# to Level","better":1,"matchers":[{"string":"# к уровню камней, размещённых в гнёздах красного цвета"}],"trade":{"ids":{"explicit":["explicit.stat_2886998024"]}}} +{"ref":"General's Cry has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"#% повышение скорости перезарядки Клича полководца"}],"trade":{"ids":{"implicit":["implicit.stat_3637727672"],"enchant":["enchant.stat_3637727672"]}}} +{"ref":"General's Cry has +# to maximum number of Mirage Warriors","better":1,"matchers":[{"string":"# к максимуму призрачных воинов, призываемых Кличем полководца"}],"trade":{"ids":{"enchant":["enchant.stat_2889995769"]}}} +{"ref":"Ghost Dance","better":1,"matchers":[{"string":"Призрачный танец"}],"trade":{"ids":{"explicit":["explicit.stat_3590128077"],"fractured":["fractured.stat_3590128077"],"scourge":["scourge.stat_3590128077"]}}} +{"ref":"Ghost Reaver","better":1,"matchers":[{"string":"Похититель душ"}],"trade":{"ids":{"explicit":["explicit.stat_4272248216"],"fractured":["fractured.stat_4272248216"],"scourge":["scourge.stat_4272248216"]}}} +{"ref":"Glacial Cascade gains #% of Physical Damage as Extra Cold Damage","better":1,"matchers":[{"string":"Ледяной каскад наносит #% от физического урона в виде дополнительного урона от холода"}],"trade":{"ids":{"enchant":["enchant.stat_3492427828"]}}} +{"ref":"Glacial Hammer has +#% chance to Freeze","better":1,"matchers":[{"string":"Леденящий молот имеет #% шанс заморозить"},{"string":"Леденящий молот всегда замораживает","value":100}],"trade":{"ids":{"enchant":["enchant.stat_288248772"]}}} +{"ref":"Glancing Blows","better":1,"matchers":[{"string":"Скользящие удары"}],"trade":{"ids":{"explicit":["explicit.stat_4266776872"],"scourge":["scourge.stat_4266776872"]}}} +{"ref":"Glows while in an Area containing a Unique Fish","better":1,"matchers":[{"string":"Светится в области с уникальной рыбой"}],"trade":{"ids":{"explicit":["explicit.stat_931560398"]}}} +{"ref":"Golem Skills have #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"Скорость перезарядки умений големов повышена на #%"},{"string":"Скорость перезарядки умений големов снижена на #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_729180395"]}}} +{"ref":"Golems Deal #% less Damage","better":-1,"matchers":[{"string":"Големы наносят на #% больше урона"},{"string":"Големы наносят на #% меньше урона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2861397339"]},"inverted":true}} +{"ref":"Golems have # to # Added Attack Physical Damage","better":1,"matchers":[{"string":"Добавляет големам от # до # физического урона от атак"}],"trade":{"ids":{"explicit":["explicit.stat_1417394145"]}}} +{"ref":"Golems have #% increased Attack and Cast Speed","better":1,"matchers":[{"string":"Скорость атаки и сотворения чар големов повышена на #%"},{"string":"Скорость атаки и сотворения чар големов снижена на #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_56225773"]}}} +{"ref":"Golems have #% increased Maximum Life","better":1,"matchers":[{"string":"Максимум здоровья големов увеличен на #%"},{"string":"Максимум здоровья големов снижен на #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1750735210"]}}} +{"ref":"Golems have #% increased Movement Speed","better":1,"matchers":[{"string":"Големы имеют #% повышение скорости передвижения"},{"string":"Големы имеют #% уменьшение скорости передвижения","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_186383409"]}}} +{"ref":"Golems have #% less Life","better":-1,"matchers":[{"string":"Големы имеют на #% больше здоровья"},{"string":"Големы имеют на #% меньше здоровья","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3730242558"]},"inverted":true}} +{"ref":"Golems have +# to Armour","better":1,"matchers":[{"string":"# к броне големов"}],"trade":{"ids":{"explicit":["explicit.stat_1020786773"]}}} +{"ref":"Golems Summoned in the past 8 seconds deal #% increased Damage","better":1,"matchers":[{"string":"Если за последние 8 секунд был призван голем, урон големов увеличен на #%"},{"string":"Если за последние 8 секунд был призван голем, урон големов снижен на #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2869193493"]}}} +{"ref":"Gore Footprints","better":1,"matchers":[{"string":"Кровавые следы"}],"trade":{"ids":{"explicit":["explicit.stat_2319448214"]}}} +{"ref":"Grace has #% increased Aura Effect","better":1,"matchers":[{"string":"#% усиление эффекта ауры Грации"},{"string":"#% ослабление эффекта ауры Грации","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_397427740"]}}} +{"ref":"Grace has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"#% увеличение эффективности удержания маны Грацией"},{"string":"#% уменьшение эффективности удержания маны Грацией","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1803598623","explicit.stat_900639351"],"implicit":["implicit.stat_1803598623","implicit.stat_900639351"],"fractured":["fractured.stat_900639351"],"enchant":["enchant.stat_1803598623","enchant.stat_900639351"]}}} +{"ref":"Grace has no Reservation","better":1,"matchers":[{"string":"Грация не удерживает ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_2930404958"]}}} +{"ref":"Grant a Frenzy Charge to nearby Allies on Kill","better":1,"matchers":[{"string":"#% шанс даровать заряд ярости ближайшим союзникам при убийстве"},{"string":"Дарует заряд ярости ближайшим союзникам при убийстве","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1243641369"]}}} +{"ref":"Grant an Endurance Charge to nearby Allies on Hit","better":1,"matchers":[{"string":"#% шанс даровать заряд выносливости ближайшим союзникам при нанесении удара"},{"string":"Дарует заряд выносливости ближайшим союзникам при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3174788165"]}}} +{"ref":"Grants # Life and Mana per Enemy Hit","better":1,"matchers":[{"string":"Дарует # здоровья и маны за каждый удар по врагу"},{"string":"Теряет # вашего здоровья и маны за каждый удар по врагу","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1420170973"]}}} +{"ref":"Grants # Life per Enemy Hit","better":1,"matchers":[{"string":"Дарует # здоровья за каждый удар по врагу"},{"string":"Теряет # вашего здоровья за каждый удар по врагу","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_821021828"],"implicit":["implicit.stat_821021828"],"fractured":["fractured.stat_821021828"]}}} +{"ref":"Grants # Mana per Enemy Hit","better":1,"matchers":[{"string":"Дарует # маны за каждый удар по врагу"},{"string":"Теряет # вашей маны за каждый удар по врагу","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_640052854"],"implicit":["implicit.stat_640052854"]}}} +{"ref":"Grants #% increased Accuracy per 2% Quality","better":1,"matchers":[{"string":"Дарует #% повышение меткости за 2% качества"}],"trade":{"ids":{"enchant":["enchant.stat_2421363283"]}}} +{"ref":"Grants #% increased Area of Effect per 4% Quality","better":1,"matchers":[{"string":"Дарует #% увеличение области действия за 4% качества"}],"trade":{"ids":{"enchant":["enchant.stat_334333797"]}}} +{"ref":"Grants #% increased Elemental Damage per 2% Quality","better":1,"matchers":[{"string":"Дарует #% увеличение стихийного урона за 2% качества"}],"trade":{"ids":{"enchant":["enchant.stat_1482025771"]}}} +{"ref":"Grants #% of Life Recovery to Minions","better":1,"matchers":[{"string":"Дарует приспешникам #% от восстанавливаемого здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_2416869319"],"fractured":["fractured.stat_2416869319"]}}} +{"ref":"Grants +# to Dexterity per 2% Quality","better":1,"matchers":[{"string":"Дарует # к ловкости за 2% качества"}],"trade":{"ids":{"enchant":["enchant.stat_452753731"]}}} +{"ref":"Grants +# to Intelligence per 2% Quality","better":1,"matchers":[{"string":"Дарует # к интеллекту за 2% качества"}],"trade":{"ids":{"enchant":["enchant.stat_2748574832"]}}} +{"ref":"Grants +# to Maximum Life per 2% Quality","better":1,"matchers":[{"string":"Дарует # к максимуму здоровья за 2% качества"}],"trade":{"ids":{"enchant":["enchant.stat_2711867632"]}}} +{"ref":"Grants +# to Maximum Mana per 2% Quality","better":1,"matchers":[{"string":"Дарует # к максимуму маны за 2% качества"}],"trade":{"ids":{"enchant":["enchant.stat_3764009282"]}}} +{"ref":"Grants +# to Strength per 2% Quality","better":1,"matchers":[{"string":"Дарует # к силе за 2% качества"}],"trade":{"ids":{"enchant":["enchant.stat_1519019245"]}}} +{"ref":"Grants +#% to Cold Resistance per 2% Quality","better":1,"matchers":[{"string":"Дарует #% к сопротивлению холоду за 2% качества"}],"trade":{"ids":{"enchant":["enchant.stat_1665106429"]}}} +{"ref":"Grants +#% to Fire Resistance per 2% Quality","better":1,"matchers":[{"string":"Дарует #% к сопротивлению огню за 2% качества"}],"trade":{"ids":{"enchant":["enchant.stat_2787227226"]}}} +{"ref":"Grants +#% to Lightning Resistance per 2% Quality","better":1,"matchers":[{"string":"Дарует #% к сопротивлению молнии за 2% качества"}],"trade":{"ids":{"enchant":["enchant.stat_2702369635"]}}} +{"ref":"Grants all bonuses of Unallocated Small Passive Skills in Radius","better":1,"matchers":[{"string":"Дарует все бонусы от невыбранных малых пассивных умений в радиусе"}],"trade":{"ids":{"explicit":["explicit.stat_737702863"]}}} +{"ref":"Grants Armour equal to #% of your Reserved Mana to you and nearby Allies","better":1,"matchers":[{"string":"Вы и ваши союзники получаете броню в размере #% от вашей удержанной маны"}],"trade":{"ids":{"explicit":["explicit.stat_681709908"]}}} +{"ref":"Grants Call of Steel","better":1,"matchers":[{"string":"Дарует умение Зов стали"}],"trade":{"ids":{"explicit":["explicit.stat_3637628300"]}}} +{"ref":"Grants Immunity to Bleeding for # seconds if used while Bleeding\nGrants Immunity to Corrupted Blood for # seconds if used while affected by Corrupted Blood","better":1,"matchers":[{"string":"Дарует иммунитет к кровотечению на # секунд(-ы) при использовании, если на вас наложено кровотечение\nДарует иммунитет к Оскверненной крови на # секунд(-ы) при использовании, если на вас наложена Оскверненная кровь"}],"trade":{"ids":{"explicit":["explicit.stat_182714578"],"fractured":["fractured.stat_182714578"]}}} +{"ref":"Grants Immunity to Chill for # seconds if used while Chilled\nGrants Immunity to Freeze for # seconds if used while Frozen","better":1,"matchers":[{"string":"Дарует иммунитет к охлаждению на # секунд(-ы) при использовании, если вы охлаждены\nДарует иммунитет к заморозке на # секунд(-ы) при использовании, если вы заморожены"}],"trade":{"ids":{"explicit":["explicit.stat_3869628136"],"fractured":["fractured.stat_3869628136"]}}} +{"ref":"Grants Immunity to Chill for 4 seconds if used while Chilled\nGrants Immunity to Freeze for 4 seconds if used while Frozen","better":1,"matchers":[{"string":"Дарует иммунитет к охлаждению на 4 секунды при использовании, если вы охлаждены\nДарует иммунитет к заморозке на 4 секунды при использовании, если вы заморожены"}],"trade":{"ids":{"explicit":["explicit.stat_3570046771"]}}} +{"ref":"Grants Immunity to Hinder for # seconds if used while Hindered","better":1,"matchers":[{"string":"Дарует иммунитет к скованности на # секунд(-ы) при использовании, если вы скованны"}],"trade":{"ids":{"explicit":["explicit.stat_4003593289"],"fractured":["fractured.stat_4003593289"]}}} +{"ref":"Grants Immunity to Ignite for # seconds if used while Ignited\nRemoves all Burning when used","better":1,"matchers":[{"string":"Дарует иммунитет к поджогу на # секунд(-ы) при использовании, если вы подожжены\nПри использовании снимает все эффекты горения"}],"trade":{"ids":{"explicit":["explicit.stat_2361218755"],"fractured":["fractured.stat_2361218755"]}}} +{"ref":"Grants Immunity to Ignite for 4 seconds if used while Ignited\nRemoves all Burning when used","better":1,"matchers":[{"string":"Дарует иммунитет к поджогу на 4 секунды при использовании, если вы подожжены\nПри использовании снимает все эффекты горения"}],"trade":{"ids":{"explicit":["explicit.stat_2695527599"]}}} +{"ref":"Grants Immunity to Maim for # seconds if used while Maimed","better":1,"matchers":[{"string":"Дарует иммунитет к увечьям на # секунд(-ы) при использовании, если вы изувечены"}],"trade":{"ids":{"explicit":["explicit.stat_4232582040"],"fractured":["fractured.stat_4232582040"]}}} +{"ref":"Grants Immunity to Poison for # seconds if used while Poisoned","better":1,"matchers":[{"string":"Дарует иммунитет к отравлению на # секунд(-ы) при использовании, если вы отравлены"}],"trade":{"ids":{"explicit":["explicit.stat_542375676"],"fractured":["fractured.stat_542375676"]}}} +{"ref":"Grants Immunity to Shock for # seconds if used while Shocked","better":1,"matchers":[{"string":"Дарует иммунитет к шоку на # секунд(-ы) при использовании, если на вас наложен шок"}],"trade":{"ids":{"explicit":["explicit.stat_3854439683"],"fractured":["fractured.stat_3854439683"]}}} +{"ref":"Grants Last Breath when you Use a Skill during Effect, for #% of Mana Cost","better":1,"matchers":[{"string":"Дарует Последний вздох, когда вы используете умение во время действия эффекта, за #% от затрат маны"}],"trade":{"ids":{"explicit":["explicit.stat_3686711832"]}}} +{"ref":"Grants level # Affliction","better":1,"matchers":[{"string":"Дарует умение Хворь # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_3486646279"]}}} +{"ref":"Grants Level # Anger Skill","better":1,"matchers":[{"string":"Дарует умение Жгучая злоба # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_449494711","explicit.stat_484879947"],"implicit":["implicit.stat_484879947"],"fractured":["fractured.stat_449494711","fractured.stat_484879947"]}}} +{"ref":"Grants Level # Approaching Flames Skill","better":1,"matchers":[{"string":"Дарует умение Надвигающееся пламя # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1943415243"]}}} +{"ref":"Grants Level # Aspect of the Avian Skill","better":1,"matchers":[{"string":"Дарует умение Дух птицы # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_3914740665"],"fractured":["fractured.stat_3914740665"]}}} +{"ref":"Grants Level # Aspect of the Cat Skill","better":1,"matchers":[{"string":"Дарует умение Дух кошки # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1265282021"],"fractured":["fractured.stat_1265282021"]}}} +{"ref":"Grants Level # Aspect of the Crab Skill","better":1,"matchers":[{"string":"Дарует умение Дух краба # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_4102318278"],"fractured":["fractured.stat_4102318278"]}}} +{"ref":"Grants Level # Aspect of the Spider Skill","better":1,"matchers":[{"string":"Дарует умение Дух паука # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_956546305"],"fractured":["fractured.stat_956546305"]}}} +{"ref":"Grants Level # Battlemage's Cry Skill","better":1,"matchers":[{"string":"Дарует умение Клич боевого мага # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2356594418"]}}} +{"ref":"Grants Level # Bear Trap Skill","better":1,"matchers":[{"string":"Дарует умение Медвежий капкан # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_3541114083"]}}} +{"ref":"Grants Level # Blight Skill","better":1,"matchers":[{"string":"Дарует умение Мор # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1198418726"]}}} +{"ref":"Grants Level # Blood Offering Skill","better":1,"matchers":[{"string":"Дарует умение Подношение крови # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_3985468650"]}}} +{"ref":"Grants Level # Blood Sacrament Skill","better":1,"matchers":[{"string":"Дарует умение Причастие кровью # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_738386056"]}}} +{"ref":"Grants Level # Brandsurge Skill","better":1,"matchers":[{"string":"Дарует умение Перегрузка клейм # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2859437049"]}}} +{"ref":"Grants Level # Clarity Skill","better":1,"matchers":[{"string":"Дарует умение Ясность ума # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_3511815065"],"implicit":["implicit.stat_3511815065"],"fractured":["fractured.stat_3511815065"]}}} +{"ref":"Grants Level # Conductivity Skill","better":1,"matchers":[{"string":"Дарует умение Проводимость # уровня"}],"trade":{"ids":{"implicit":["implicit.stat_461472247"]}}} +{"ref":"Grants Level # Convocation Skill","better":1,"matchers":[{"string":"Дарует Сбор # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1786401772"],"fractured":["fractured.stat_1786401772"]}}} +{"ref":"Grants Level # Crushing Fist Skill","better":1,"matchers":[{"string":"Дарует умение Сокрушающий кулак # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2434330144"]}}} +{"ref":"Grants Level # Dash Skill","better":1,"matchers":[{"string":"Дарует умение Рывок # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_3883691934"]}}} +{"ref":"Grants Level # Death Wish Skill","better":1,"matchers":[{"string":"Дарует умение Смертельное желание # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1965393792"]}}} +{"ref":"Grants Level # Decoy Totem Skill","better":1,"matchers":[{"string":"Дарует умение Тотем-приманка # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_3566242751"],"fractured":["fractured.stat_3566242751"]}}} +{"ref":"Grants Level # Despair Curse Aura during Effect","better":1,"matchers":[{"string":"Дарует ауру проклятия Отчаяние # уровня во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_1604995720"]}}} +{"ref":"Grants Level # Despair Skill","better":1,"matchers":[{"string":"Дарует умение Отчаяние # уровня"}],"trade":{"ids":{"implicit":["implicit.stat_2044547677"]}}} +{"ref":"Grants Level # Determination Skill","better":1,"matchers":[{"string":"Дарует умение Решимость # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_3231614028","explicit.stat_4265392510"],"implicit":["implicit.stat_4265392510"],"fractured":["fractured.stat_3231614028","fractured.stat_4265392510"]}}} +{"ref":"Grants Level # Discipline Skill","better":1,"matchers":[{"string":"Дарует умение Дисциплина # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2341269061","explicit.stat_2578176147"],"implicit":["implicit.stat_2341269061"],"fractured":["fractured.stat_2341269061","fractured.stat_2578176147"]}}} +{"ref":"Grants Level # Doryani's Touch Skill","better":1,"matchers":[{"string":"Дарует умение Касание Дориани # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2498303876"]}}} +{"ref":"Grants Level # Embrace Madness Skill","better":1,"matchers":[{"string":"Дарует умение Объятия безумия # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1749783861"]}}} +{"ref":"Grants Level # Enduring Cry Skill","better":1,"matchers":[{"string":"Дарует умение Клич стойкости # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1031644844"],"fractured":["fractured.stat_1031644844"]}}} +{"ref":"Grants Level # Envy Skill","better":1,"matchers":[{"string":"Дает умение Зависть # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_52953650"],"fractured":["fractured.stat_52953650"],"enchant":["enchant.stat_52953650"]}}} +{"ref":"Grants Level # Flammability Skill","better":1,"matchers":[{"string":"Дарует умение Горючесть # уровня"}],"trade":{"ids":{"implicit":["implicit.stat_2209668839"]}}} +{"ref":"Grants Level # Frostbite Skill","better":1,"matchers":[{"string":"Дарует умение Обморожение # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1169502663"],"implicit":["implicit.stat_1169502663"]}}} +{"ref":"Grants Level # Frostblink Skill","better":1,"matchers":[{"string":"Дарует умение Ледяной скачок # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2911866787"]}}} +{"ref":"Grants Level # Gluttony of Elements Skill","better":1,"matchers":[{"string":"Дарует умение Жажда стихий # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_3321235265"]}}} +{"ref":"Grants Level # Grace Skill","better":1,"matchers":[{"string":"Дарует умение Грация # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2867050084","explicit.stat_3914774028"],"implicit":["implicit.stat_2867050084"],"fractured":["fractured.stat_2867050084","fractured.stat_3914774028"]}}} +{"ref":"Grants Level # Haste Skill","better":1,"matchers":[{"string":"Дарует умение Спешка # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1188846263","explicit.stat_2923442950"],"implicit":["implicit.stat_1188846263"],"fractured":["fractured.stat_1188846263","fractured.stat_2923442950"]}}} +{"ref":"Grants Level # Hatred Skill","better":1,"matchers":[{"string":"Дарует умение Холодная ненависть # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_178394804","explicit.stat_2429546158"],"implicit":["implicit.stat_2429546158"],"fractured":["fractured.stat_178394804","fractured.stat_2429546158"]}}} +{"ref":"Grants Level # Herald of Agony Skill","better":1,"matchers":[{"string":"Дарует умение Вестник агонии # уровня"}],"trade":{"ids":{"scourge":["scourge.stat_1504952168"]}}} +{"ref":"Grants Level # Herald of Ash Skill","better":1,"matchers":[{"string":"Дарует умение Вестник пепла # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_3880462354"],"fractured":["fractured.stat_3880462354"],"scourge":["scourge.stat_3880462354"]}}} +{"ref":"Grants Level # Herald of Ice Skill","better":1,"matchers":[{"string":"Дарует умение Вестник льда # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_3846248551"],"fractured":["fractured.stat_3846248551"],"scourge":["scourge.stat_3846248551"]}}} +{"ref":"Grants Level # Herald of Purity Skill","better":1,"matchers":[{"string":"Дарует умение Вестник чистоты # уровня"}],"trade":{"ids":{"scourge":["scourge.stat_738207023"]}}} +{"ref":"Grants Level # Herald of Thunder Skill","better":1,"matchers":[{"string":"Дарует умение Вестник грома # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1665492921"],"fractured":["fractured.stat_1665492921"],"scourge":["scourge.stat_1665492921"]}}} +{"ref":"Grants Level # Icestorm Skill","better":1,"matchers":[{"string":"Дарует умение Ледяной шторм # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2103009393"]}}} +{"ref":"Grants Level # Illusory Warp Skill","better":1,"matchers":[{"string":"Дарует умение Ледяной переход # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_3279574030"]}}} +{"ref":"Grants Level # Intimidating Cry Skill","better":1,"matchers":[{"string":"Дарует умение Устрашающий клич # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1271338211"],"fractured":["fractured.stat_1271338211"]}}} +{"ref":"Grants Level # Lightning Warp Skill","better":1,"matchers":[{"string":"Дарует умение Грозовой переход # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_243713911"]}}} +{"ref":"Grants Level # Malevolence Skill","better":1,"matchers":[{"string":"Дарует умение Злорадство # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_3086585712"],"implicit":["implicit.stat_2148556029"],"fractured":["fractured.stat_3086585712"]}}} +{"ref":"Grants level # Pacify","better":1,"matchers":[{"string":"Даруете умение Усмирение # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_913306901"]}}} +{"ref":"Grants level # Penance Mark","better":1,"matchers":[{"string":"Даруете умение Метка покаяния # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_88120117"]}}} +{"ref":"Grants Level # Petrification Statue Skill","better":1,"matchers":[{"string":"Дарует умение Оцепеняющая статуя # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1904419785"]}}} +{"ref":"Grants Level # Precision Skill","better":1,"matchers":[{"string":"Дарует умение Точность # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2721815210"]}}} +{"ref":"Grants Level # Pride Skill","better":1,"matchers":[{"string":"Дарует умение Гордость # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_3612470379"],"implicit":["implicit.stat_4184565463"],"fractured":["fractured.stat_3612470379"]}}} +{"ref":"Grants Level # Purity of Elements Skill","better":1,"matchers":[{"string":"Дарует умение Спасение от стихий # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_105466375"],"implicit":["implicit.stat_105466375"]}}} +{"ref":"Grants Level # Purity of Fire Skill","better":1,"matchers":[{"string":"Дарует умение Спасение от огня # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_3716281760","explicit.stat_3970432307"],"implicit":["implicit.stat_3970432307"],"fractured":["fractured.stat_3716281760"]}}} +{"ref":"Grants Level # Purity of Ice Skill","better":1,"matchers":[{"string":"Дарует умение Спасение от холода # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_151975117","explicit.stat_4193390599"],"implicit":["implicit.stat_4193390599"],"fractured":["fractured.stat_151975117"]}}} +{"ref":"Grants Level # Purity of Lightning Skill","better":1,"matchers":[{"string":"Дарует умение Спасение от молнии # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1141249906","explicit.stat_3822878124"],"implicit":["implicit.stat_3822878124"],"fractured":["fractured.stat_1141249906"]}}} +{"ref":"Grants Level # Queen's Demand Skill","better":1,"matchers":[{"string":"Дарует умение Требование царицы # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_509572644"]}}} +{"ref":"Grants Level # Rallying Cry Skill","better":1,"matchers":[{"string":"Дарует умение Клич сплочения # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2007746338"],"fractured":["fractured.stat_2007746338"]}}} +{"ref":"Grants Level # Ravenous Skill","better":1,"matchers":[{"string":"Дарует умение Ненасытность # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_636370122"]}}} +{"ref":"Grants Level # Scorching Ray Skill","better":1,"matchers":[{"string":"Дарует умение Опаляющий луч # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1540840"]}}} +{"ref":"Grants Level # Smite Skill","better":1,"matchers":[{"string":"Дарует умение Кара # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_979973117"]}}} +{"ref":"Grants Level # Snipe Skill","better":1,"matchers":[{"string":"Дарует умение Прицельный выстрел # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2343098806"]}}} +{"ref":"Grants Level # Sniper's Mark Skill","better":1,"matchers":[{"string":"Дарует умение Метка снайпера # уровня"}],"trade":{"ids":{"implicit":["implicit.stat_3536689603"],"scourge":["scourge.stat_3536689603"]}}} +{"ref":"Grants Level # Summon Doedre's Effigy Skill\nSocketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned\nHexes from Socketed Skills can apply 5 additional Curses","better":1,"matchers":[{"string":"Дарует умение Призыв образа Доэдре # уровня\nВызывает срабатывание размещенных умений проклятий порчи при призыве образа Доэдре\nПорчи с размещенных умений могут накладывать 5 дополнительных проклятий"}],"trade":{"ids":{"explicit":["explicit.stat_1517357911"]}}} +{"ref":"Grants Level # Summon Stone Golem Skill","better":1,"matchers":[{"string":"Дарует Призыв каменного голема # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_3056188914"]}}} +{"ref":"Grants Level # Thirst for Blood Skill","better":1,"matchers":[{"string":"Дарует умение Жажда крови # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1209807941"]}}} +{"ref":"Grants Level # Unhinge Skill","better":1,"matchers":[{"string":"Дарует умение Расстройство # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_3239991868"]}}} +{"ref":"Grants Level # Vaal Impurity of Fire Skill","better":1,"matchers":[{"string":"Дарует умение Погибель от огня ваал # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2700934265"]}}} +{"ref":"Grants Level # Vaal Impurity of Ice Skill","better":1,"matchers":[{"string":"Дарует умение Погибель от холода ваал # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1300125165"]}}} +{"ref":"Grants Level # Vaal Impurity of Lightning Skill","better":1,"matchers":[{"string":"Дарует умение Погибель от молнии ваал # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2959369472"]}}} +{"ref":"Grants Level # Vengeance Skill","better":1,"matchers":[{"string":"Дарует умение Отмщение # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_4122367945"]}}} +{"ref":"Grants Level # Vitality Skill","better":1,"matchers":[{"string":"Дарует умение Живучесть # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2410613176"],"implicit":["implicit.stat_2410613176"],"fractured":["fractured.stat_2410613176"]}}} +{"ref":"Grants Level # Vulnerability Curse Aura during Effect","better":1,"matchers":[{"string":"Дарует ауру-проклятие Беззащитность # уровня во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_1660373569"]}}} +{"ref":"Grants Level # Wintertide Brand Skill","better":1,"matchers":[{"string":"Дарует умение Клеймо зимы # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1826753218"]}}} +{"ref":"Grants Level # Wrath Skill","better":1,"matchers":[{"string":"Дарует умение Грозный гнев # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1568319697","explicit.stat_2265307453"],"implicit":["implicit.stat_2265307453"],"fractured":["fractured.stat_1568319697","fractured.stat_2265307453"]}}} +{"ref":"Grants Level # Zealotry Skill","better":1,"matchers":[{"string":"Дарует умение Фанатизм # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_3734675602"],"implicit":["implicit.stat_3224664127"],"fractured":["fractured.stat_3734675602"]}}} +{"ref":"Grants Level 20 Summon Bestial # Skill","better":1,"matchers":[{"string":"Дарует умение Призыв дикого роа 20 уровня","value":1},{"string":"Дарует умение Призыв дикого медведя 20 уровня","value":2},{"string":"Дарует умение Призыв дикой змеи 20 уровня","value":3}],"trade":{"ids":{"explicit":["explicit.stat_2878779644"]},"option":true}} +{"ref":"Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence","better":1,"matchers":[{"string":"Последовательно дарует Выносливость, Ярость и Энергию Малахая на 6 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_2918150296"]}}} +{"ref":"Grants Perfect Agony during effect","better":1,"matchers":[{"string":"Дарует Совершенную агонию во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_3741365813"]}}} +{"ref":"Grants Summon Harbinger Skill","better":1,"matchers":[{"string":"Дарует умение Призыв Предвестника колдовства","value":1},{"string":"Дарует умение Призыв Великого Предвестника направлений","value":10},{"string":"Дарует умение Призыв Великого Предвестника бурь","value":11},{"string":"Дарует умение Призыв Великого Предвестника жестокости","value":12},{"string":"Дарует умение Призыв Предвестника времени","value":2},{"string":"Дарует умение Призыв Предвестника концентрации","value":3},{"string":"Дарует умение Призыв Предвестника направлений","value":4},{"string":"Дарует умение Призыв Предвестника бурь","value":5},{"string":"Дарует умение Призыв Предвестника жестокости","value":6},{"string":"Дарует умение Призыв Великого Предвестника колдовства","value":7},{"string":"Дарует умение Призыв Великого Предвестника времени","value":8},{"string":"Дарует умение Призыв Великого Предвестника концентрации","value":9}],"trade":{"ids":{"explicit":["explicit.stat_3872739249"]},"option":true}} +{"ref":"Gravicius' Veiled","better":0,"matchers":[{"string":"Завуалированная Гравицием"},{"string":"Завуалированное Гравицием"},{"string":"Завуалированные Гравицием"},{"string":"Завуалированный Гравицием"}],"trade":{"ids":{"veiled":["veiled.mod_38872"]}}} +{"ref":"Ground Slam has a #% increased angle","better":1,"matchers":[{"string":"Ширина действия Сотрясения увеличена на #%"},{"string":"Ширина действия Сотрясения уменьшена на #%","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_648647905"]}}} +{"ref":"Guard Skills have #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"#% повышение скорости перезарядки умений обороны"},{"string":"#% снижение скорости перезарядки умений обороны","negate":true}],"trade":{"ids":{"scourge":["scourge.stat_3150300096"]}}} +{"ref":"Guards deal #% increased Damage","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"Охранники наносят увеличенный на #% урон"},{"string":"Охранники наносят уменьшенный на #% урон","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2569717992"],"fractured":["fractured.stat_2569717992"]}}} +{"ref":"Guards impact #% increased Resolve","better":1,"matchers":[{"string":"Охранники влияют на решимость на #% сильнее"},{"string":"Охранники влияют на решимость на #% слабее","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_199414195"]}}} +{"ref":"Guards take #% increased Damage","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"Охранники получают увеличенный на #% урон"},{"string":"Охранники получают уменьшенный на #% урон","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_873692616","sanctum.stat_408585189"],"fractured":["fractured.stat_873692616"]}}} +{"ref":"Guff's Veiled","better":0,"matchers":[{"string":"Завуалированная Гаффом"},{"string":"Завуалированное Гаффом"},{"string":"Завуалированные Гаффом"},{"string":"Завуалированный Гаффом"}],"trade":{"ids":{"veiled":["veiled.mod_6779"]}}} +{"ref":"Haku's Veiled","better":0,"matchers":[{"string":"Завуалированная Хаку"},{"string":"Завуалированное Хаку"},{"string":"Завуалированные Хаку"},{"string":"Завуалированный Хаку"}],"trade":{"ids":{"veiled":["veiled.mod_39023"]}}} +{"ref":"Half of your Strength is added to your Minions","better":1,"matchers":[{"string":"Половина вашей силы добавляется вашим приспешникам"}],"trade":{"ids":{"explicit":["explicit.stat_2195137717"]}}} +{"ref":"Has # Abyssal Sockets","better":1,"matchers":[{"string":"Имеет гнёзд Бездны: #"},{"string":"Имеет 1 гнездо Бездны","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3527617737"],"implicit":["implicit.stat_3527617737"],"fractured":["fractured.stat_3527617737"]}}} +{"ref":"Has # Influences","better":1,"matchers":[{"string":"Имеет # влияний "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_has_influence_count"]}}} +{"ref":"Has # White Sockets","better":1,"matchers":[{"string":"Имеет белых гнезд: #"},{"string":"Имеет 1 белое гнездо","value":1}],"trade":{"ids":{"enchant":["enchant.stat_931294424"]}}} +{"ref":"Has 1 Socket","better":1,"matchers":[{"string":"Имеет гнезд: #"},{"string":"Имеет 1 гнездо","value":1}],"trade":{"ids":{"explicit":["explicit.stat_4077843608"],"implicit":["implicit.stat_4077843608"]}}} +{"ref":"Has a Crucible Passive Skill Tree\nCrucible Passive Skill Tree is removed if this Modifier is removed","better":1,"matchers":[{"string":"Имеет древо пассивных умений Горнила\nПассивное древо умений Горнила будет удалено, если это свойство будет удалено"}],"trade":{"ids":{"explicit":["explicit.stat_1827605890"]}}} +{"ref":"Has a Crucible Passive Skill Tree with only Support Passive Skills\nCrucible Passive Skill Tree is removed if this Modifier is removed","better":1,"matchers":[{"string":"У древа пассивных умений Горнила доступны только пассивные умения поддержки\nПассивное древо умений Горнила будет удалено, если это свойство будет удалено"}],"trade":{"ids":{"explicit":["explicit.stat_3031897787"]}}} +{"ref":"Has a Two Handed Sword Crucible Passive Skill Tree\nCrucible Passive Skill Tree is removed if this Modifier is removed","better":1,"matchers":[{"string":"Имеет древо пассивных умений Горнила для двуручных мечей\nПассивное древо умений Горнила будет удалено, если это свойство будет удалено"}],"trade":{"ids":{"explicit":["explicit.stat_2141582975"]}}} +{"ref":"Has an additional Implicit Mod","better":1,"matchers":[{"string":"Имеет дополнительное собственное свойство"}],"trade":{"ids":{"explicit":["explicit.stat_2489070122"]}}} +{"ref":"Has Crusader Influence","better":1,"matchers":[{"string":"Имеет влияние Крестоносца "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_has_crusader_influence"]}}} +{"ref":"Has Elder Influence","better":1,"matchers":[{"string":"Имеет влияние Древнего "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_has_elder_influence"]}}} +{"ref":"Has Elder, Shaper and all Conqueror Influences","better":1,"matchers":[{"string":"Имеет влияние Древнего, Создателя и всех Завоевателей"}],"trade":{"ids":{"implicit":["implicit.stat_1795443614"]}}} +{"ref":"Has Hunter Influence","better":1,"matchers":[{"string":"Имеет влияние Охотника "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_has_hunter_influence"]}}} +{"ref":"Has Logbook Area: Battleground Graves","better":1,"matchers":[{"string":"Содержит область журнала: Захоронение на поле боя "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_battleground_graves"]}}} +{"ref":"Has Logbook Area: Bluffs","better":1,"matchers":[{"string":"Содержит область журнала: Откосы "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_bluffs"]}}} +{"ref":"Has Logbook Area: Cemetery","better":1,"matchers":[{"string":"Содержит область журнала: Погост "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_cemetery"]}}} +{"ref":"Has Logbook Area: Desert Ruins","better":1,"matchers":[{"string":"Содержит область журнала: Пустынные руины "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_desert_ruins"]}}} +{"ref":"Has Logbook Area: Dried Riverbed","better":1,"matchers":[{"string":"Содержит область журнала: Высохшее русло "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_dried_riverbed"]}}} +{"ref":"Has Logbook Area: Forest Ruins","better":1,"matchers":[{"string":"Содержит область журнала: Развалины в лесу "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_forest_ruins"]}}} +{"ref":"Has Logbook Area: Karui Wargraves","better":1,"matchers":[{"string":"Содержит область журнала: Могилы воинов каруи "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_karui_wargraves"]}}} +{"ref":"Has Logbook Area: Mountainside","better":1,"matchers":[{"string":"Содержит область журнала: Горный склон "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_mountainside"]}}} +{"ref":"Has Logbook Area: Rotting Temple","better":1,"matchers":[{"string":"Содержит область журнала: Гниющий храм "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_rotting_temple"]}}} +{"ref":"Has Logbook Area: Sarn Slums","better":1,"matchers":[{"string":"Содержит область журнала: Трущобы Сарна "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_sarn_slums"]}}} +{"ref":"Has Logbook Area: Scrublands","better":1,"matchers":[{"string":"Содержит область журнала: Заросли кустарника "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_scrublands"]}}} +{"ref":"Has Logbook Area: Shipwreck Reef","better":1,"matchers":[{"string":"Содержит область журнала: Риф разбитых кораблей "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_shipwreck_reef"]}}} +{"ref":"Has Logbook Area: Utzaal Outskirts","better":1,"matchers":[{"string":"Содержит область журнала: Окраины Утцааля "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_utzaal_outskirts"]}}} +{"ref":"Has Logbook Area: Vaal Temple","better":1,"matchers":[{"string":"Содержит область журнала: Храм ваал "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_vaal_temple"]}}} +{"ref":"Has Logbook Area: Volcanic Island","better":1,"matchers":[{"string":"Содержит область журнала: Вулканический остров "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_area_volcano"]}}} +{"ref":"Has Logbook Faction: Black Scythe Mercenaries","better":0,"matchers":[{"string":"Наёмники Чёрной косы"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_faction_mercenaries"]}}} +{"ref":"Has Logbook Faction: Druids of the Broken Circle","better":0,"matchers":[{"string":"Друиды Разомкнутого круга"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_faction_druids"]}}} +{"ref":"Has Logbook Faction: Knights of the Sun","better":0,"matchers":[{"string":"Рыцари Солнца"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_faction_knights"]}}} +{"ref":"Has Logbook Faction: Order of the Chalice","better":0,"matchers":[{"string":"Орден Чаши"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_logbook_faction_order"]}}} +{"ref":"Has no Attribute Requirements","better":1,"matchers":[{"string":"Отсутствуют требования к характеристикам"}],"trade":{"ids":{"explicit":["explicit.stat_2739148464"],"fractured":["fractured.stat_2739148464"]}}} +{"ref":"Has no Blue Sockets","better":1,"matchers":[{"string":"Не имеет синих гнезд"}],"trade":{"ids":{"enchant":["enchant.stat_3837805260"]}}} +{"ref":"Has no Energy Shield","better":1,"matchers":[{"string":"Нет энергетического щита"}],"trade":{"ids":{"explicit":["explicit.stat_3109875952"]}}} +{"ref":"Has no Green Sockets","better":1,"matchers":[{"string":"Не имеет зеленых гнезд"}],"trade":{"ids":{"enchant":["enchant.stat_1615727675"]}}} +{"ref":"Has no Red Sockets","better":1,"matchers":[{"string":"Не имеет красных гнезд"}],"trade":{"ids":{"enchant":["enchant.stat_320043039"]}}} +{"ref":"Has no Sockets","better":1,"matchers":[{"string":"Не имеет гнёзд"}],"trade":{"ids":{"explicit":["explicit.stat_1493091477"]}}} +{"ref":"Has Redeemer Influence","better":1,"matchers":[{"string":"Имеет влияние Избавительницы "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_has_redeemer_influence"]}}} +{"ref":"Has Room: Antechamber","better":0,"matchers":[{"string":"Прихожая"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_antechamber"]},"option":true}} +{"ref":"Has Room: Apex of Ascension (Tier 3)","better":0,"matchers":[{"string":"Пик вознесения (Уровень 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_sacrifice_room_3"]},"option":true}} +{"ref":"Has Room: Apex of Atzoatl","better":0,"matchers":[{"string":"Вершина Ацоатля"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_apex"]},"option":true}} +{"ref":"Has Room: Arena of Valour (Tier 2)","better":0,"matchers":[{"string":"Арена доблести (Уровень 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_weapon_room_2"]},"option":true}} +{"ref":"Has Room: Armourer's Workshop (Tier 1)","better":0,"matchers":[{"string":"Мастерская оружейника (Уровень 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_armour_room_1"]},"option":true}} +{"ref":"Has Room: Armoury (Tier 2)","better":0,"matchers":[{"string":"Оружейная (Уровень 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_armour_room_2"]},"option":true}} +{"ref":"Has Room: Atlas of Worlds (Tier 3)","better":0,"matchers":[{"string":"Атлас миров (Уровень 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_cartography_room_3"]},"option":true}} +{"ref":"Has Room: Automaton Lab (Tier 2)","better":0,"matchers":[{"string":"Лаборатория автоматов (Уровень 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_boss_minions_2"]},"option":true}} +{"ref":"Has Room: Banquet Hall","better":0,"matchers":[{"string":"Зал пиршеств"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_banquet_hall"]},"option":true}} +{"ref":"Has Room: Barracks (Tier 2)","better":0,"matchers":[{"string":"Казармы (Уровень 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_breeding_room_2"]},"option":true}} +{"ref":"Has Room: Breach Containment Chamber (Tier 2)","better":0,"matchers":[{"string":"Изолятор разломов (Уровень 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_breach_room_2"]},"option":true}} +{"ref":"Has Room: Catalyst of Corruption (Tier 2)","better":0,"matchers":[{"string":"Ускоритель осквернения (Уровень 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_corruption_room_2"]},"option":true}} +{"ref":"Has Room: Cellar","better":0,"matchers":[{"string":"Подвал"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_cellar"]},"option":true}} +{"ref":"Has Room: Chamber of Iron (Tier 3)","better":0,"matchers":[{"string":"Железный зал (Уровень 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_armour_room_3"]},"option":true}} +{"ref":"Has Room: Chasm","better":0,"matchers":[{"string":"Расселина"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_chasm_room"]},"option":true}} +{"ref":"Has Room: Cloister","better":0,"matchers":[{"string":"Галерея"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_cloister"]},"option":true}} +{"ref":"Has Room: Conduit of Lightning (Tier 3)","better":0,"matchers":[{"string":"Проводник молний (Уровень 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_boss_lightning_3"]},"option":true}} +{"ref":"Has Room: Corruption Chamber (Tier 1)","better":0,"matchers":[{"string":"Зал осквернения (Уровень 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_corruption_room_1"]},"option":true}} +{"ref":"Has Room: Court of Sealed Death (Tier 3)","better":0,"matchers":[{"string":"Двор запечатанной смерти (Уровень 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_strongbox_3"]},"option":true}} +{"ref":"Has Room: Crucible of Flame (Tier 3)","better":0,"matchers":[{"string":"Тигель пламени (Уровень 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_boss_fire_3"]},"option":true}} +{"ref":"Has Room: Cultivar Chamber (Tier 2)","better":0,"matchers":[{"string":"Зал культивации (Уровень 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_poison_room_2"]},"option":true}} +{"ref":"Has Room: Defense Research Lab (Tier 3)","better":0,"matchers":[{"string":"Оборонная лаборатория (Уровень 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_trap_room_3"]},"option":true}} +{"ref":"Has Room: Demolition Lab (Tier 2)","better":0,"matchers":[{"string":"Лаборатория сноса (Уровень 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_explosives_room_2"]},"option":true}} +{"ref":"Has Room: Department of Thaumaturgy (Tier 2)","better":0,"matchers":[{"string":"Отдел волшебства (Уровень 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_gem_room_2"]},"option":true}} +{"ref":"Has Room: Doryani's Institute (Tier 3)","better":0,"matchers":[{"string":"Аудитория Дориани (Уровень 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_gem_room_3"]},"option":true}} +{"ref":"Has Room: Engineering Department (Tier 2)","better":0,"matchers":[{"string":"Отдел механики (Уровень 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_workshop_2"]},"option":true}} +{"ref":"Has Room: Explosives Room (Tier 1)","better":0,"matchers":[{"string":"Комната взрывчатки (Уровень 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_explosives_room_1"]},"option":true}} +{"ref":"Has Room: Factory (Tier 3)","better":0,"matchers":[{"string":"Фабрика (Уровень 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_workshop_3"]},"option":true}} +{"ref":"Has Room: Flame Workshop (Tier 1)","better":0,"matchers":[{"string":"Мастерская огней (Уровень 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_boss_fire_1"]},"option":true}} +{"ref":"Has Room: Gemcutter's Workshop (Tier 1)","better":0,"matchers":[{"string":"Мастерская камнереза (Уровень 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_gem_room_1"]},"option":true}} +{"ref":"Has Room: Glittering Halls (Tier 3)","better":0,"matchers":[{"string":"Сверкающие залы (Уровень 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_trinket_room_3"]},"option":true}} +{"ref":"Has Room: Guardhouse (Tier 1)","better":0,"matchers":[{"string":"Караульная (Уровень 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_breeding_room_1"]},"option":true}} +{"ref":"Has Room: Hall of Champions (Tier 3)","better":0,"matchers":[{"string":"Зал заступников (Уровень 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_weapon_room_3"]},"option":true}} +{"ref":"Has Room: Hall of Heroes (Tier 2)","better":0,"matchers":[{"string":"Зал героев (Уровень 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_legion_2"]},"option":true}} +{"ref":"Has Room: Hall of Legends (Tier 3)","better":0,"matchers":[{"string":"Зал легенд (Уровень 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_legion_3"]},"option":true}} +{"ref":"Has Room: Hall of Locks (Tier 2)","better":0,"matchers":[{"string":"Зал замков (Уровень 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_strongbox_2"]},"option":true}} +{"ref":"Has Room: Hall of Lords (Tier 2)","better":0,"matchers":[{"string":"Покои владык (Уровень 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_queens_chambers_2"]},"option":true}} +{"ref":"Has Room: Hall of Mettle (Tier 1)","better":0,"matchers":[{"string":"Зал храбрецов (Уровень 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_legion_1"]},"option":true}} +{"ref":"Has Room: Hall of Offerings (Tier 2)","better":0,"matchers":[{"string":"Зал подношений (Уровень 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_sacrifice_room_2"]},"option":true}} +{"ref":"Has Room: Hall of War (Tier 3)","better":0,"matchers":[{"string":"Зал войны (Уровень 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_breeding_room_3"]},"option":true}} +{"ref":"Has Room: Halls","better":0,"matchers":[{"string":"Коридоры"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_halls"]},"option":true}} +{"ref":"Has Room: Hatchery (Tier 1)","better":0,"matchers":[{"string":"Питомник (Уровень 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_boss_minions_1"]},"option":true}} +{"ref":"Has Room: House of the Others (Tier 3)","better":0,"matchers":[{"string":"Дом Иных (Уровень 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_breach_room_3"]},"option":true}} +{"ref":"Has Room: Hurricane Engine (Tier 2)","better":0,"matchers":[{"string":"Механизм ураганов (Уровень 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_storm_room_2"]},"option":true}} +{"ref":"Has Room: Hybridisation Chamber (Tier 3)","better":0,"matchers":[{"string":"Зал гибридизации (Уровень 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_boss_minions_3"]},"option":true}} +{"ref":"Has Room: Jeweller's Workshop (Tier 1)","better":0,"matchers":[{"string":"Мастерская ювелира (Уровень 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_trinket_room_1"]},"option":true}} +{"ref":"Has Room: Jewellery Forge (Tier 2)","better":0,"matchers":[{"string":"Горн ювелира (Уровень 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_trinket_room_2"]},"option":true}} +{"ref":"Has Room: Lightning Workshop (Tier 1)","better":0,"matchers":[{"string":"Мастерская гроз (Уровень 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_boss_lightning_1"]},"option":true}} +{"ref":"Has Room: Locus of Corruption (Tier 3)","better":0,"matchers":[{"string":"Очаг осквернения (Уровень 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_corruption_room_3"]},"option":true}} +{"ref":"Has Room: Museum of Artefacts (Tier 3)","better":0,"matchers":[{"string":"Музей артефактов (Уровень 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_chests_3"]},"option":true}} +{"ref":"Has Room: Office of Cartography (Tier 2)","better":0,"matchers":[{"string":"Кабинет картографии (Уровень 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_cartography_room_2"]},"option":true}} +{"ref":"Has Room: Omnitect Forge (Tier 2)","better":0,"matchers":[{"string":"Горн Всезодчего (Уровень 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_boss_fire_2"]},"option":true}} +{"ref":"Has Room: Omnitect Reactor Plant (Tier 2)","better":0,"matchers":[{"string":"Реактор Всезодчего (Уровень 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_boss_lightning_2"]},"option":true}} +{"ref":"Has Room: Passageways","better":0,"matchers":[{"string":"Переходы"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_passageways"]},"option":true}} +{"ref":"Has Room: Pits","better":0,"matchers":[{"string":"Ямы"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_the_pits"]},"option":true}} +{"ref":"Has Room: Poison Garden (Tier 1)","better":0,"matchers":[{"string":"Ядовитый сад (Уровень 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_poison_room_1"]},"option":true}} +{"ref":"Has Room: Pools of Restoration (Tier 1)","better":0,"matchers":[{"string":"Купели восстановления (Уровень 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_healing_room_1"]},"option":true}} +{"ref":"Has Room: Royal Meeting Room (Tier 1)","better":0,"matchers":[{"string":"Царский зал аудиенций (Уровень 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_queens_chambers_1"]},"option":true}} +{"ref":"Has Room: Sacrificial Chamber (Tier 1)","better":0,"matchers":[{"string":"Жертвенный зал (Уровень 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_sacrifice_room_1"]},"option":true}} +{"ref":"Has Room: Sadist's Den (Tier 3)","better":0,"matchers":[{"string":"Логово садиста (Уровень 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_torment_3"]},"option":true}} +{"ref":"Has Room: Sanctum of Immortality (Tier 3)","better":0,"matchers":[{"string":"Святыня бессмертия (Уровень 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_healing_room_3"]},"option":true}} +{"ref":"Has Room: Sanctum of Unity (Tier 2)","better":0,"matchers":[{"string":"Святилище единения (Уровень 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_empowering_room_2"]},"option":true}} +{"ref":"Has Room: Sanctum of Vitality (Tier 2)","better":0,"matchers":[{"string":"Святилище жизни (Уровень 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_healing_room_2"]},"option":true}} +{"ref":"Has Room: Shrine of Empowerment (Tier 1)","better":0,"matchers":[{"string":"Алтарь усиления (Уровень 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_empowering_room_1"]},"option":true}} +{"ref":"Has Room: Shrine of Unmaking (Tier 3)","better":0,"matchers":[{"string":"Обитель развоплощения (Уровень 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_explosives_room_3"]},"option":true}} +{"ref":"Has Room: Sparring Room (Tier 1)","better":0,"matchers":[{"string":"Тренировочная комната (Уровень 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_weapon_room_1"]},"option":true}} +{"ref":"Has Room: Splinter Research Lab (Tier 1)","better":0,"matchers":[{"string":"Лаборатория изучения осколков (Уровень 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_breach_room_1"]},"option":true}} +{"ref":"Has Room: Storage Room (Tier 1)","better":0,"matchers":[{"string":"Кладовая (Уровень 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_chests_1"]},"option":true}} +{"ref":"Has Room: Storm of Corruption (Tier 3)","better":0,"matchers":[{"string":"Буря осквернения (Уровень 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_storm_room_3"]},"option":true}} +{"ref":"Has Room: Strongbox Chamber (Tier 1)","better":0,"matchers":[{"string":"Запасник (Уровень 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_strongbox_1"]},"option":true}} +{"ref":"Has Room: Surveyor's Study (Tier 1)","better":0,"matchers":[{"string":"Кабинет топографа (Уровень 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_cartography_room_1"]},"option":true}} +{"ref":"Has Room: Tempest Generator (Tier 1)","better":0,"matchers":[{"string":"Генератор бурь (Уровень 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_storm_room_1"]},"option":true}} +{"ref":"Has Room: Temple Defense Workshop (Tier 2)","better":0,"matchers":[{"string":"Цех храмовой защиты (Уровень 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_trap_room_2"]},"option":true}} +{"ref":"Has Room: Temple Nexus (Tier 3)","better":0,"matchers":[{"string":"Средоточие храма (Уровень 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_empowering_room_3"]},"option":true}} +{"ref":"Has Room: Throne of Atziri (Tier 3)","better":0,"matchers":[{"string":"Трон Атзири (Уровень 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_queens_chambers_3"]},"option":true}} +{"ref":"Has Room: Tombs","better":0,"matchers":[{"string":"Усыпальницы"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_tombs"]},"option":true}} +{"ref":"Has Room: Torment Cells (Tier 1)","better":0,"matchers":[{"string":"Клети мучений (Уровень 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_torment_1"]},"option":true}} +{"ref":"Has Room: Torture Cages (Tier 2)","better":0,"matchers":[{"string":"Камеры пыток (Уровень 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_torment_2"]},"option":true}} +{"ref":"Has Room: Toxic Grove (Tier 3)","better":0,"matchers":[{"string":"Ядовитая роща (Уровень 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_poison_room_3"]},"option":true}} +{"ref":"Has Room: Trap Workshop (Tier 1)","better":0,"matchers":[{"string":"Мастерская ловушек (Уровень 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_trap_room_1"]},"option":true}} +{"ref":"Has Room: Treasury (Tier 2)","better":0,"matchers":[{"string":"Сокровищница (Уровень 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_currency_vault_2"]},"option":true}} +{"ref":"Has Room: Tunnels","better":0,"matchers":[{"string":"Тоннели"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_tunnels"]},"option":true}} +{"ref":"Has Room: Vault (Tier 1)","better":0,"matchers":[{"string":"Хранилище (Уровень 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_currency_vault_1"]},"option":true}} +{"ref":"Has Room: Warehouses (Tier 2)","better":0,"matchers":[{"string":"Склады (Уровень 2)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_chests_2"]},"option":true}} +{"ref":"Has Room: Wealth of the Vaal (Tier 3)","better":0,"matchers":[{"string":"Казна ваал (Уровень 3)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_currency_vault_3"]},"option":true}} +{"ref":"Has Room: Workshop (Tier 1)","better":0,"matchers":[{"string":"Мастерская (Уровень 1)"}],"trade":{"ids":{"pseudo":["pseudo.pseudo_temple_workshop_1"]},"option":true}} +{"ref":"Has Shaper Influence","better":1,"matchers":[{"string":"Имеет влияние Создателя "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_has_shaper_influence"]}}} +{"ref":"Has Warlord Influence","better":1,"matchers":[{"string":"Имеет влияние Вождя "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_has_warlord_influence"]}}} +{"ref":"Haste has #% increased Aura Effect","better":1,"matchers":[{"string":"#% усиление эффекта Спешки"},{"string":"#% ослабление эффекта Спешки","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1240056437"]}}} +{"ref":"Haste has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"#% увеличение эффективности удержания маны Спешкой"},{"string":"#% уменьшение эффективности удержания маны Спешкой","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_804667127","enchant.stat_939320550"]}}} +{"ref":"Haste has no Reservation","better":1,"matchers":[{"string":"Спешка не удерживает ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_751322171"]}}} +{"ref":"Hatred has #% increased Aura Effect","better":1,"matchers":[{"string":"#% усиление эффекта ауры Холодной ненависти"},{"string":"#% ослабление эффекта ауры Холодной ненависти","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3742945352"],"implicit":["implicit.stat_3742945352"],"fractured":["fractured.stat_3742945352"]}}} +{"ref":"Hatred has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"#% увеличение эффективности удержания маны Холодной ненавистью"},{"string":"#% уменьшение эффективности удержания маны Холодной ненавистью","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1920370417","explicit.stat_2156140483"],"fractured":["fractured.stat_2156140483"],"enchant":["enchant.stat_1920370417","enchant.stat_2156140483"]}}} +{"ref":"Hatred has no Reservation","better":1,"matchers":[{"string":"Холодная ненависть не удерживает ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_1391583476"]}}} +{"ref":"Haunted by Tormented Spirits","better":1,"matchers":[{"string":"Одержим страдающими духами"}],"trade":{"ids":{"enchant":["enchant.stat_1076392774"]}}} +{"ref":"Having a placed Banner does not prevent you gaining Valour","better":1,"matchers":[{"string":"Размещение знамени не предотвращает получение вами доблести"}],"trade":{"ids":{"explicit":["explicit.stat_4068494864"]}}} +{"ref":"Heavy Strike has a #% chance to deal Double Damage","better":1,"matchers":[{"string":"Тяжелый удар имеет #% шанс нанести удвоенный урон"}],"trade":{"ids":{"enchant":["enchant.stat_3760588941"]}}} +{"ref":"Heist Chests have #% chance to contain nothing","better":1,"matchers":[{"string":"Сундуки Кражи с #% шансом могут оказаться пустыми"}],"trade":{"ids":{"enchant":["enchant.stat_3038236553"]}}} +{"ref":"Heist Chests have a #% chance to contain more valuable Uniques","better":1,"matchers":[{"string":"Сундуки Кражи имеют #% шанс содержать более ценные уникальные предметы"},{"string":"Сундуки Кражи содержат более ценные уникальные предметы","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3288016752"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Basic Currency","better":1,"matchers":[{"string":"Сундуки Кражи имеют #% шанс продублировать содержащуюся в них обычную валюту"},{"string":"Сундуки Кражи дублируют содержащуюся в них обычную валюту","value":100}],"trade":{"ids":{"explicit":["explicit.stat_14664297"],"fractured":["fractured.stat_14664297"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Breach Splinters","better":1,"matchers":[{"string":"Сундуки Кражи имеют #% шанс удвоить содержащиеся в них осколки Разлома"},{"string":"Сундуки Кражи удваивают содержащиеся в них осколки Разлома","value":100}],"trade":{"ids":{"explicit":["explicit.stat_668504404"],"fractured":["fractured.stat_668504404"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Catalysts","better":1,"matchers":[{"string":"Сундуки Кражи имеют #% шанс удвоить содержащиеся в них катализаторы"},{"string":"Сундуки Кражи удваивают содержащиеся в них катализаторы","value":100}],"trade":{"ids":{"explicit":["explicit.stat_746798754"],"fractured":["fractured.stat_746798754"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Delirium Orbs and Splinters","better":1,"matchers":[{"string":"Сундуки Кражи имеют #% шанс удвоить содержащиеся в них сферы Делириума и осколки"},{"string":"Сундуки Кражи удваивают содержащиеся в них сферы Делириума и осколки","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1870262721"],"fractured":["fractured.stat_1870262721"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Divination Cards","better":1,"matchers":[{"string":"Сундуки Кражи имеют #% шанс удвоить содержащиеся в них гадальные карты"},{"string":"Сундуки Кражи удваивают содержащиеся в них гадальные карты","value":100}],"trade":{"ids":{"explicit":["explicit.stat_63302094"],"fractured":["fractured.stat_63302094"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Essences","better":1,"matchers":[{"string":"Сундуки Кражи имеют #% шанс удвоить содержащиеся в них Сущности"},{"string":"Сундуки Кражи удваивают содержащиеся в них Сущности","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2175178647"],"fractured":["fractured.stat_2175178647"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Jewels","better":1,"matchers":[{"string":"Сундуки Кражи имеют #% шанс удвоить содержащиеся в них самоцветы"},{"string":"Сундуки Кражи удваивают содержащиеся в них самоцветы","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2462090973"],"fractured":["fractured.stat_2462090973"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Legion Splinters","better":1,"matchers":[{"string":"Сундуки Кражи имеют #% шанс удвоить содержащиеся в них осколки Легиона"},{"string":"Сундуки Кражи удваивают содержащиеся в них осколки Легиона","value":100}],"trade":{"ids":{"explicit":["explicit.stat_145701647"],"fractured":["fractured.stat_145701647"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Map Fragments","better":1,"matchers":[{"string":"Сундуки Кражи имеют #% шанс удвоить содержащиеся в них фрагменты карт"},{"string":"Сундуки Кражи удваивают содержащиеся в них фрагменты карт","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3967122169"],"fractured":["fractured.stat_3967122169"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Maps","better":1,"matchers":[{"string":"Сундуки Кражи имеют #% шанс удвоить содержащиеся в них карты"},{"string":"Сундуки Кражи удваивают содержащиеся в них карты","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2885763444"],"fractured":["fractured.stat_2885763444"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Oils","better":1,"matchers":[{"string":"Сундуки Кражи имеют #% шанс удвоить содержащиеся в них масла"},{"string":"Сундуки Кражи удваивают содержащиеся в них масла","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2233905349"],"fractured":["fractured.stat_2233905349"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate contained Scarabs","better":1,"matchers":[{"string":"Сундуки Кражи имеют #% шанс удвоить содержащихся в них скарабеев"},{"string":"Сундуки Кражи удваивают содержащихся в них скарабеев","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4216809421"],"fractured":["fractured.stat_4216809421"]}}} +{"ref":"Heist Chests have a #% chance to Duplicate their contents","better":1,"matchers":[{"string":"Содержимое из сундуков Кражи имеет #% шанс выпасть в двойном количестве"},{"string":"Содержимое из сундуков Кражи выпадает в двойном количестве","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2747693610"]}}} +{"ref":"Herald of Agony has #% increased Buff Effect","better":1,"matchers":[{"string":"#% усиление положительного эффекта Вестника агонии"},{"string":"#% ослабление положительного эффекта Вестника агонии","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2572910724"],"implicit":["implicit.stat_2572910724"]}}} +{"ref":"Herald of Agony has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"#% увеличение эффективности удержания маны Вестником агонии"},{"string":"#% уменьшение эффективности удержания маны Вестником агонии","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1133703802","explicit.stat_1284151528"],"enchant":["enchant.stat_1133703802","enchant.stat_1284151528"]}}} +{"ref":"Herald of Ash has #% increased Buff Effect","better":1,"matchers":[{"string":"#% усиление положительного эффекта Вестника пепла"},{"string":"#% ослабление положительного эффекта Вестника пепла","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2154349925"],"implicit":["implicit.stat_2154349925"]}}} +{"ref":"Herald of Ash has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"#% увеличение эффективности удержания маны Вестником пепла"},{"string":"#% уменьшение эффективности удержания маны Вестником пепла","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2500442851","explicit.stat_3819451758"],"enchant":["enchant.stat_2500442851","enchant.stat_3819451758"]}}} +{"ref":"Herald of Ice has #% increased Buff Effect","better":1,"matchers":[{"string":"#% усиление положительного эффекта Вестника льда"},{"string":"#% ослабление положительного эффекта Вестника льда","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1862926389"],"implicit":["implicit.stat_1862926389"]}}} +{"ref":"Herald of Ice has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"#% увеличение эффективности удержания маны Вестником льда"},{"string":"#% уменьшение эффективности удержания маны Вестником льда","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3059700363","explicit.stat_3395872960"],"enchant":["enchant.stat_3059700363","enchant.stat_3395872960"]}}} +{"ref":"Herald of Purity has #% increased Buff Effect","better":1,"matchers":[{"string":"#% усиление положительного эффекта Вестника чистоты"},{"string":"#% ослабление положительного эффекта Вестника чистоты","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2126027382"],"implicit":["implicit.stat_2126027382"]}}} +{"ref":"Herald of Purity has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"#% увеличение эффективности удержания маны Вестником чистоты"},{"string":"#% уменьшение эффективности удержания маны Вестником чистоты","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1542765265","explicit.stat_2189040439"],"enchant":["enchant.stat_1542765265","enchant.stat_2189040439"]}}} +{"ref":"Herald of Thunder also creates a storm when you Shock an Enemy","better":1,"matchers":[{"string":"Вестник грома также создаёт шторм при поражении врага шоком"}],"trade":{"ids":{"explicit":["explicit.stat_1964607303"]}}} +{"ref":"Herald of Thunder has #% increased Buff Effect","better":1,"matchers":[{"string":"#% усиление положительного эффекта Вестника Грома"},{"string":"#% ослабление положительного эффекта Вестника Грома","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3814686091"],"implicit":["implicit.stat_3814686091"]}}} +{"ref":"Herald of Thunder has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"#% увеличение эффективности удержания маны Вестником грома"},{"string":"#% уменьшение эффективности удержания маны Вестником грома","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3817220109","explicit.stat_3959101898"],"enchant":["enchant.stat_3817220109","enchant.stat_3959101898"]}}} +{"ref":"Herald of Thunder's Storms Hit Enemies with #% increased Frequency","better":1,"matchers":[{"string":"Штормы Вестника грома наносят удары по врагам с повышенной на #% частотой"},{"string":"Штормы Вестника грома наносят удары по врагам со сниженной на #% частотой"}],"trade":{"ids":{"explicit":["explicit.stat_28299254"]}}} +{"ref":"Hex Master","better":1,"matchers":[{"string":"Чародей"}],"trade":{"ids":{"explicit":["explicit.stat_3849554033"],"scourge":["scourge.stat_3849554033"]}}} +{"ref":"Hex Reflection","better":1,"matchers":[{"string":"Отражение порчи"}],"trade":{"ids":{"explicit":["explicit.stat_1731672673"]}}} +{"ref":"Hexblast deals #% increased Damage","better":1,"matchers":[{"string":"Взрыв порчи наносит увеличенный на #% урон"},{"string":"Взрыв порчи наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2318562335"]}}} +{"ref":"Hexblast has #% increased Area of Effect","better":1,"matchers":[{"string":"Взрыв порчи имеет #% увеличение области действия"},{"string":"Взрыв порчи имеет #% уменьшение области действия","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1811698551"]}}} +{"ref":"Hexblast has +#% chance to remove a Hex","better":-1,"matchers":[{"string":"Взрыв порчи имеет #% шанс удалить порчу","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_120598364"]},"inverted":true}} +{"ref":"Hexes applied by Socketed Curse Skills are Reflected back to you","better":1,"matchers":[{"string":"Наложенные размещенными умениями проклятий порчи отражаются обратно на вас"}],"trade":{"ids":{"explicit":["explicit.stat_32859524"]}}} +{"ref":"Hexes Transfer to all Enemies within 3 metres when Hexed Enemy dies","better":1,"matchers":[{"string":"При смерти врага под порчей, она передается на всех врагов в радиусе 3 м"}],"trade":{"ids":{"explicit":["explicit.stat_986616727"]}}} +{"ref":"Hinders nearby Enemies with #% reduced Movement Speed if used while not on Full Life","better":1,"matchers":[{"string":"Сковывает ближайших врагов, снижая их скорость передвижения на #%, если использовано не при полном здоровье"}],"trade":{"ids":{"explicit":["explicit.stat_1462364052"],"fractured":["fractured.stat_1462364052"]}}} +{"ref":"Hinders nearby Enemies with #% reduced Movement Speed if used while not on Full Mana","better":1,"matchers":[{"string":"Сковывает ближайших врагов, снижая их скорость передвижения на #%, если использовано не при полной мане"}],"trade":{"ids":{"explicit":["explicit.stat_2313899959"],"fractured":["fractured.stat_2313899959"]}}} +{"ref":"Historic","better":1,"matchers":[{"string":"Исторический"}],"trade":{"ids":{"explicit":["explicit.stat_3787436548"]}}} +{"ref":"Hits against Enemies Unnerved by you have #% increased Spell Critical Strike Chance","better":1,"matchers":[{"string":"Удары по обескураженным вами врагам имеют #% повышение шанса критического удара чарами"},{"string":"Удары по обескураженным вами врагам имеют #% снижение шанса критического удара чарами","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2090693207"]}}} +{"ref":"Hits against Nearby Enemies have #% increased Critical Strike Chance","better":1,"matchers":[{"string":"Удары по ближайшим врагам имеют повышенный на #% шанс критического удара"},{"string":"Удары по ближайшим врагам имеют сниженный на #% шанс критического удара","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3896241826"]}}} +{"ref":"Hits at Close Range with Shattering Steel Fortify","better":1,"matchers":[{"string":"Удары Дробящей сталью с близкого расстояния дают Укрепление"}],"trade":{"ids":{"enchant":["enchant.stat_611022108"]}}} +{"ref":"Hits from Socketed Vaal Skills ignore Enemy Monster Resistances","better":1,"matchers":[{"string":"Удары размещенных умений ваал игнорируют сопротивления вражеских монстров"}],"trade":{"ids":{"explicit":["explicit.stat_2540508981"]}}} +{"ref":"Hits from Socketed Vaal Skills ignore Enemy Physical Damage Reduction","better":1,"matchers":[{"string":"Удары размещенных умений ваал игнорируют уменьшение получаемого физического урона вражеских монстров"}],"trade":{"ids":{"explicit":["explicit.stat_1388374928"]}}} +{"ref":"Hits have #% chance to deal 50% more Area Damage","better":1,"matchers":[{"string":"#% шанс нанести на 50% больше урона ударами по области"}],"trade":{"ids":{"explicit":["explicit.stat_2289189129"]}}} +{"ref":"Hits have #% chance to ignore Enemy Physical Damage Reduction","better":1,"matchers":[{"string":"#% шанс игнорировать уменьшение получаемого врагом физического урона при нанесении удара"},{"string":"Удары игнорируют уменьшение получаемого врагом физического урона","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2839577586"],"implicit":["implicit.stat_2839577586"]}}} +{"ref":"Hits have #% chance to ignore Enemy Physical Damage Reduction while you have Sacrificial Zeal","better":1,"matchers":[{"string":"Удары с #% шансом могут игнорировать уменьшение получаемого физического урона, пока на вас действует Жертвенное рвение"},{"string":"Удары игнорируют уменьшение получаемого физического урона, пока на вас действует Жертвенное рвение","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4243208518"]}}} +{"ref":"Hits have #% increased Critical Strike Chance against you","better":1,"matchers":[{"string":"Удары по вам имеют на #% повышенный шанс критического удара"},{"string":"Удары по вам имеют на #% сниженный шанс критического удара","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_165218607","explicit.stat_4270096386"],"implicit":["implicit.stat_165218607"]}}} +{"ref":"Hits have +#% additional Critical Strike Chance against you","dp":true,"better":1,"matchers":[{"string":"Удары по вам имеют #% к шансу критического удара"}],"trade":{"ids":{"scourge":["scourge.stat_4152537231"]}}} +{"ref":"Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Elder Items","better":1,"matchers":[{"string":"Удары игнорируют сопротивление врагов хаосу, если все надетые на вас предметы - предметы Древнего"}],"trade":{"ids":{"explicit":["explicit.stat_89314980"]}}} +{"ref":"Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items","better":1,"matchers":[{"string":"Удары игнорируют сопротивление врагов хаосу, если все надетые на вас предметы - предметы Создателя"}],"trade":{"ids":{"explicit":["explicit.stat_4234677275"]}}} +{"ref":"Hits ignore Enemy Monster Fire Resistance while you are Ignited","better":1,"matchers":[{"string":"Удары игнорируют вражеское сопротивление к огню, пока вы подожжены"}],"trade":{"ids":{"explicit":["explicit.stat_4040152475"]}}} +{"ref":"Hits ignore Enemy Physical Damage Reduction if you've Blocked in the past 20 seconds","better":1,"matchers":[{"string":"Удары игнорируют уменьшение получаемого физического урона монстров, если вы блокировали удар за последние 20 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_3035931505"]}}} +{"ref":"Hits with Melee Movement Skills have #% chance to Fortify","better":1,"matchers":[{"string":"Удары умениями передвижения ближнего боя имеют #% шанс Укрепления"}],"trade":{"ids":{"explicit":["explicit.stat_59547568"],"fractured":["fractured.stat_59547568"]}}} +{"ref":"Hits with this Weapon always Ignite, Freeze, and Shock","better":1,"matchers":[{"string":"Удары этим оружием всегда накладывают поджог, заморозку и шок"}],"trade":{"ids":{"explicit":["explicit.stat_2451774989"]}}} +{"ref":"Hits with this Weapon deal #% increased Damage to Frozen Enemies","better":1,"matchers":[{"string":"Удары этим оружием наносят увеличенный на #% урон замороженным врагам"},{"string":"Удары этим оружием наносят уменьшенный на #% урон замороженным врагам","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_196313911"]}}} +{"ref":"Hits with this Weapon deal #% increased Damage to Ignited Enemies","better":1,"matchers":[{"string":"Удары этим оружием наносят увеличенный на #% урон подожжённым врагам"},{"string":"Удары этим оружием наносят уменьшенный на #% урон подожжённым врагам","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3095345438"]}}} +{"ref":"Hits with this Weapon deal #% increased Damage to Shocked Enemies","better":1,"matchers":[{"string":"Удары этим оружием наносят увеличенный на #% урон поражённым шоком врагам"},{"string":"Удары этим оружием наносят уменьшенный на #% урон поражённым шоком врагам","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1470894892"]}}} +{"ref":"Hits with this Weapon Freeze Enemies as though dealing #% more Damage","better":1,"matchers":[{"string":"Удары этим оружием замораживают врагов как если бы по ним нанесли на #% больше урона"},{"string":"Удары этим оружием замораживают врагов как если бы по ним нанесли на #% меньше урона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2071306253"]}}} +{"ref":"Hits with this Weapon gain #% of Physical Damage as Extra Cold or Lightning Damage","better":1,"matchers":[{"string":"Удары этим оружием наносят #% от физического урона в виде дополнительного урона от холода или молнии"}],"trade":{"ids":{"explicit":["explicit.stat_1023968711"]}}} +{"ref":"Hits with this Weapon have #% chance to ignore Enemy Physical Damage Reduction","better":1,"matchers":[{"string":"Удары этим оружием с #% шансом могут игнорировать уменьшение получаемого физического урона врага"},{"string":"Удары этим оружием игнорируют уменьшение получаемого физического урона врага","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1907260000"],"implicit":["implicit.stat_1907260000"]}}} +{"ref":"Hits with this Weapon have +#% to Critical Strike Multiplier per Enemy Power","better":1,"matchers":[{"string":"Удары этим оружием имеют #% к множителю критического удара за каждую единицу влияния врага"}],"trade":{"ids":{"explicit":["explicit.stat_1872107885"]}}} +{"ref":"Hits with this Weapon have Culling Strike against Bleeding Enemies","better":1,"matchers":[{"string":"Удары этим оружием по истекающим кровью врагам имеют эффект Добивания"}],"trade":{"ids":{"explicit":["explicit.stat_2558253923"],"fractured":["fractured.stat_2558253923"]}}} +{"ref":"Hits with this Weapon Shock Enemies as though dealing #% more Damage","better":1,"matchers":[{"string":"Удары этим оружием накладывают шок на врагов как если бы по ним нанесли на #% больше урона"},{"string":"Удары этим оружием накладывают шок на врагов как если бы по ним нанесли на #% меньше урона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1386792919"]}}} +{"ref":"Hollow Palm Technique","better":1,"matchers":[{"string":"Техника пустой длани"}],"trade":{"ids":{"explicit":["explicit.stat_3959337123"]}}} +{"ref":"Holy Flame Totem deals #% increased Damage","better":1,"matchers":[{"string":"#% увеличение урона Тотема священного огня"},{"string":"#% уменьшение урона Тотема священного огня","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2801853811"]}}} +{"ref":"Holy Flame Totem fires an additional Projectile","better":1,"matchers":[{"string":"Тотем священного огня выпускает дополнительных снарядов: #"},{"string":"Тотем священного огня выпускает дополнительный снаряд","value":1}],"trade":{"ids":{"enchant":["enchant.stat_775200811"]}}} +{"ref":"Holy Flame Totem has #% increased Projectile Speed","better":1,"matchers":[{"string":"#% повышение скорости снарядов Тотема священного огня"},{"string":"#% снижение скорости снарядов Тотема священного огня","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4082863126"]}}} +{"ref":"Hydrosphere deals #% increased Damage","better":1,"matchers":[{"string":"Гидросфера наносит увеличенный на #% урон"},{"string":"Гидросфера наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1040582501"]}}} +{"ref":"Ice Golems deal #% increased Damage","better":1,"matchers":[{"string":"#% увеличение урона големов льда"},{"string":"#% уменьшение урона големов льда","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3816405721"]}}} +{"ref":"Ice Nova Always Freezes","better":1,"matchers":[{"string":"Кольцо льда имеет #% шанс заморозить"},{"string":"Кольцо льда всегда замораживает","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3269321994"]}}} +{"ref":"Ice Shot has #% increased Area of Effect angle","better":1,"matchers":[{"string":"#% увеличение конуса области действия Ледяного выстрела"},{"string":"#% уменьшение конуса области действия Ледяного выстрела","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3781924200"]}}} +{"ref":"Ice Spear fires an additional Projectile","better":1,"matchers":[{"string":"Ледяное копье выпускает # дополнительных снаряда(-ов)"},{"string":"Ледяное копье выпускает дополнительный снаряд","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3801130154"]}}} +{"ref":"Ice Spear travels #% reduced distance before changing forms","better":-1,"matchers":[{"string":"#% увеличение дальности полета Ледяного копья перед сменой формы"},{"string":"#% уменьшение дальности полета Ледяного копья перед сменой формы","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3295914630"]},"inverted":true}} +{"ref":"Ice Trap Damage Penetrates #% Cold Resistance","better":1,"matchers":[{"string":"Урон Ледяной ловушки пробивает #% сопротивления холоду"}],"trade":{"ids":{"enchant":["enchant.stat_3698446010"]}}} +{"ref":"Icicle Mine deals #% increased Damage","better":1,"matchers":[{"string":"Шквальная мина наносит увеличенный на #% урон"},{"string":"Шквальная мина наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2363866815"]}}} +{"ref":"Icicle Mine has #% increased Throwing Speed","better":1,"matchers":[{"string":"#% повышение скорости броска Шквальной мины"},{"string":"#% снижение скорости броска Шквальной мины","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3162144587"]}}} +{"ref":"Icicle Mine has +#% to Critical Strike Multiplier","better":1,"matchers":[{"string":"Шквальная мина имеет #% к множителю критического удара"}],"trade":{"ids":{"enchant":["enchant.stat_1555251"]}}} +{"ref":"If you Consumed a corpse Recently, you and nearby Allies Regenerate #% of Life per second","better":1,"matchers":[{"string":"Если вы недавно поглощали труп, то вы и ближайшие союзники регенерируете #% здоровья в секунду"}],"trade":{"ids":{"explicit":["explicit.stat_4089969970"]}}} +{"ref":"If you have Blocked Recently, you and nearby Allies Regenerate #% of Life per second","better":1,"matchers":[{"string":"Вы и ближайшие союзники регенерируете #% здоровья в секунду, если вы недавно блокировали удар"}],"trade":{"ids":{"explicit":["explicit.stat_176085824"]}}} +{"ref":"If you've Attacked Recently, you and nearby Allies have +#% Chance to Block Attack Damage","better":1,"matchers":[{"string":"Если вы недавно атаковали, то вы\nи ближайшие союзники имеете #% шанс блокировать урон от атак"}],"trade":{"ids":{"explicit":["explicit.stat_1453771408"]}}} +{"ref":"If you've Cast a Spell Recently, you and nearby Allies have +#% Chance to Block Spell Damage","better":1,"matchers":[{"string":"Если вы недавно сотворяли чары, то вы\nи ближайшие союзники имеете #% шанс блокировать урон от чар"}],"trade":{"ids":{"explicit":["explicit.stat_1952992278"]}}} +{"ref":"If you've Warcried Recently, you and nearby allies have #% increased Attack, Cast and Movement Speed","better":1,"matchers":[{"string":"#% повышение скорости атаки, сотворения чар и передвижения для вас и ближайших союзников, если вы недавно применили боевой клич"}],"trade":{"ids":{"explicit":["explicit.stat_1464115829"]}}} +{"ref":"Ignited Enemies Burn #% slower","better":1,"matchers":[{"string":"Подожженные враги горят на #% медленнее"}],"trade":{"ids":{"explicit":["explicit.stat_1619549198"]}}} +{"ref":"Ignited Enemies Killed by your Hits are destroyed","better":1,"matchers":[{"string":"Убитые вашими ударами подожжённые враги уничтожаются"}],"trade":{"ids":{"explicit":["explicit.stat_3173052379"]}}} +{"ref":"Ignites inflicted with this Weapon deal #% more Damage","better":1,"matchers":[{"string":"Наложенные этим оружием поджоги наносят на #% больше урона"},{"string":"Наложенные этим оружием поджоги наносят на #% меньше урона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3165905801"]}}} +{"ref":"Ignites you inflict deal Damage #% faster","better":1,"matchers":[{"string":"Наложенные вами поджоги наносят урон на #% быстрее"}],"trade":{"ids":{"explicit":["explicit.stat_2443492284"],"implicit":["implicit.stat_2443492284"],"fractured":["fractured.stat_2443492284"],"scourge":["scourge.stat_2443492284"]}}} +{"ref":"Ignites you inflict spread to other Enemies within # metre","better":1,"matchers":[{"string":"Наложенные вами поджоги распространяются на других врагов в радиусе # м"}],"trade":{"ids":{"explicit":["explicit.stat_2011785027"],"implicit":["implicit.stat_2011785027"]}}} +{"ref":"Ignites you inflict with Attacks deal Damage #% faster","better":1,"matchers":[{"string":"Поджоги, вызванные вашими атаками, наносят урон на #% быстрее"}],"trade":{"ids":{"explicit":["explicit.stat_1420236871"]}}} +{"ref":"Ignore all Movement Penalties from Armour","better":1,"matchers":[{"string":"Игнорирует все штрафы скорости передвижения от ношения доспехов"}],"trade":{"ids":{"explicit":["explicit.stat_1311723478"],"fractured":["fractured.stat_1311723478"]}}} +{"ref":"Imbalanced Guard","better":1,"matchers":[{"string":"Несбалансированная защита"}],"trade":{"ids":{"explicit":["explicit.stat_3868073741"],"scourge":["scourge.stat_3868073741"]}}} +{"ref":"Immune to Burning Ground, Shocked Ground and Chilled Ground","better":1,"matchers":[{"string":"Иммунитет к горящей земле, заряженной земле и замерзшей земле"}],"trade":{"ids":{"explicit":["explicit.stat_3705740723"]}}} +{"ref":"Immune to Chill","better":1,"matchers":[{"string":"Иммунитет к охлаждению"}],"trade":{"ids":{"explicit":["explicit.stat_3510243006"]}}} +{"ref":"Immune to Curses if Corrupted","better":1,"matchers":[{"string":"Иммунитет к проклятиям, если предмет осквернён"}],"trade":{"ids":{"implicit":["implicit.stat_1954526925"]}}} +{"ref":"Immune to Curses if you've cast Despair in the past 10 seconds","better":1,"matchers":[{"string":"Иммунитет к проклятиям, если вы сотворяли Отчаяние за последние 10 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_2773026887"]}}} +{"ref":"Immune to Curses while you have at least # Rage","better":1,"matchers":[{"string":"Иммунитет к проклятиям, пока у вас как минимум # свирепости"}],"trade":{"ids":{"explicit":["explicit.stat_534844170"]}}} +{"ref":"Immune to Elemental Ailments while affected by Glorious Madness","better":1,"matchers":[{"string":"Иммунитет к стихийным состояниям под действием Великолепного безумия"}],"trade":{"ids":{"explicit":["explicit.stat_1065479853"]}}} +{"ref":"Immune to Exposure if you've cast Elemental Weakness in the past 10 seconds","better":1,"matchers":[{"string":"Иммунитет к восприимчивости, если вы сотворяли Уязвимость к стихиям за последние 10 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_2921954092"]}}} +{"ref":"Immune to Freeze and Chill while Ignited","better":1,"matchers":[{"string":"Иммунитет к охлаждению и заморозке, если подожжён"}],"trade":{"ids":{"explicit":["explicit.stat_1512695141"]}}} +{"ref":"Immune to Freeze while affected by Purity of Ice","better":1,"matchers":[{"string":"Иммунитет к заморозке под действием Спасения от холода"}],"trade":{"ids":{"explicit":["explicit.stat_2720072724"]}}} +{"ref":"Immune to Ignite while affected by Purity of Fire","better":1,"matchers":[{"string":"Иммунитет к поджогу под действием Спасения от огня"}],"trade":{"ids":{"explicit":["explicit.stat_371612541"]}}} +{"ref":"Immune to Reflected Damage if you've cast Punishment in the past 10 seconds","better":1,"matchers":[{"string":"Иммунитет к отраженному урону, если вы сотворяли Наказание за последние 10 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_2713909980"]}}} +{"ref":"Immune to Shock while affected by Purity of Lightning","better":1,"matchers":[{"string":"Иммунитет к шоку под действием Спасения от молнии"}],"trade":{"ids":{"explicit":["explicit.stat_281949611"]}}} +{"ref":"Immunity to Bleeding and Corrupted Blood during Effect","better":1,"matchers":[{"string":"Иммунитет к кровотечению и оскверненной крови во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_3965637181"],"fractured":["fractured.stat_3965637181"]}}} +{"ref":"Immunity to Freeze and Chill during Effect","better":1,"matchers":[{"string":"Иммунитет к охлаждению и заморозке во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_3838369929"],"fractured":["fractured.stat_3838369929"]}}} +{"ref":"Immunity to Freeze, Chill, Curses and Stuns during Effect","better":1,"matchers":[{"string":"Иммунитет к заморозке, охлаждению, проклятиям и оглушениям во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_803730540"]}}} +{"ref":"Immunity to Ignite during Effect\nRemoves Burning on use","better":1,"matchers":[{"string":"Иммунитет к поджогу во время действия эффекта\nПри использовании снимает горение"}],"trade":{"ids":{"explicit":["explicit.stat_658443507"],"fractured":["fractured.stat_658443507"]}}} +{"ref":"Immunity to Poison during Effect","better":1,"matchers":[{"string":"Иммунитет к отравлению во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_1349296959"],"fractured":["fractured.stat_1349296959"]}}} +{"ref":"Immunity to Shock during Effect","better":1,"matchers":[{"string":"Иммунитет к шоку во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_589991690"],"fractured":["fractured.stat_589991690"]}}} +{"ref":"Impale Damage dealt to Enemies Impaled by you Overwhelms #% Physical Damage Reduction","better":1,"matchers":[{"string":"Урон от Прокола, наносимый врагам с наложенным вами эффектом Прокола, подавляет #% уменьшения получаемого физического урона"}],"trade":{"ids":{"explicit":["explicit.stat_3609854472"]}}} +{"ref":"Impales you inflict last # additional Hits while using Pride","better":1,"matchers":[{"string":"Под действием Гордости наложенные вами Проколы длятся еще # дополнительных удара(-ов)"}],"trade":{"ids":{"explicit":["explicit.stat_1011863394"]}}} +{"ref":"Impales you inflict last 1 additional Hit","better":1,"matchers":[{"string":"Наложенные вами Проколы длятся дополнительных ударов: #"},{"string":"Наложенные вами Проколы длятся 1 дополнительный удар","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3425951133"]}}} +{"ref":"Implicit Modifier magnitudes are doubled","better":1,"matchers":[{"string":"Значения собственных свойств удваиваются"}],"trade":{"ids":{"explicit":["explicit.stat_4249200326"]}}} +{"ref":"Implicit Modifier magnitudes are tripled","better":1,"matchers":[{"string":"Значения собственных свойств утраиваются"}],"trade":{"ids":{"explicit":["explicit.stat_3910859570"]}}} +{"ref":"Implicit Modifiers Cannot Be Changed","better":1,"matchers":[{"string":"Собственные свойства не могут быть изменены"}],"trade":{"ids":{"implicit":["implicit.stat_532463031"]}}} +{"ref":"Incinerate has #% increased Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Испепеления"},{"string":"#% уменьшение области действия Испепеления","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2562208244"]}}} +{"ref":"Incinerate has +# to maximum stages","better":1,"matchers":[{"string":"# к максимуму стадий Испепеления"}],"trade":{"ids":{"enchant":["enchant.stat_3867484047"]}}} +{"ref":"Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed","better":1,"matchers":[{"string":"Повышения и снижения скорости сотворения чар также действуют на скорость броска ловушек"}],"trade":{"ids":{"explicit":["explicit.stat_3520223758"]}}} +{"ref":"Increases and Reductions to Cast Speed apply to Attack Speed","better":1,"matchers":[{"string":"Увеличения и уменьшения скорости сотворения чар также действуют на скорость атаки в размере #% от их значения"},{"string":"Увеличения и уменьшения скорости сотворения чар также действуют на скорость атаки","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4126447694"]}}} +{"ref":"Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage","better":1,"matchers":[{"string":"Увеличение и уменьшение урона от холода в радиусе переводятся на физический урон"}],"trade":{"ids":{"explicit":["explicit.stat_3772485866"]}}} +{"ref":"Increases and Reductions to Damage with Vaal Skills also apply to Non-Vaal Skills","better":1,"matchers":[{"string":"Увеличение и уменьшение урона умений ваал также распространяется на не-ваал умения"}],"trade":{"ids":{"implicit":["implicit.stat_3871212304"]}}} +{"ref":"Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value","better":1,"matchers":[{"string":"Увеличение и уменьшение энергетического щита в радиусе переводятся в броню в размере 200% от их значения"}],"trade":{"ids":{"explicit":["explicit.stat_2605119037"],"fractured":["fractured.stat_2605119037"]}}} +{"ref":"Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield","better":1,"matchers":[{"string":"Увеличение и уменьшение здоровья в радиусе переводятся в энергетический щит"}],"trade":{"ids":{"explicit":["explicit.stat_3194864913"]}}} +{"ref":"Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value","better":1,"matchers":[{"string":"Увеличение и уменьшение здоровья в радиусе переводятся в ману в размере 200% от их значения"}],"trade":{"ids":{"explicit":["explicit.stat_2479374428"]}}} +{"ref":"Increases and Reductions to Light Radius also apply to Accuracy","better":1,"matchers":[{"string":"Увеличения и уменьшения радиуса обзора также действуют на меткость"}],"trade":{"ids":{"explicit":["explicit.stat_411986876"]}}} +{"ref":"Increases and Reductions to Light Radius also apply to Area of Effect at #% of their value","better":1,"matchers":[{"string":"Увеличения и уменьшения радиуса обзора также действуют на область действия в размере #% от их значения"}],"trade":{"ids":{"explicit":["explicit.stat_1138742368"]}}} +{"ref":"Increases and Reductions to Light Radius also apply to Damage","better":1,"matchers":[{"string":"Увеличения и уменьшения радиуса обзора также действуют на урон"}],"trade":{"ids":{"explicit":["explicit.stat_3519807287"]}}} +{"ref":"Increases and Reductions to Maximum Energy Shield instead apply to Ward","better":1,"matchers":[{"string":"Увеличения и уменьшения максимума энергетического щита вместо этого влияют на барьер"}],"trade":{"ids":{"explicit":["explicit.stat_4100175081"]}}} +{"ref":"Increases and Reductions to Minion Damage also affect you at 150% of their value","better":1,"matchers":[{"string":"Увеличения и уменьшения урона приспешников также распространяются и на вас в размере 150% от их значения"}],"trade":{"ids":{"explicit":["explicit.stat_1433144735"]}}} +{"ref":"Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage","better":1,"matchers":[{"string":"Увеличение и уменьшение к другим видам урона в радиусе переводятся на урон от огня"}],"trade":{"ids":{"explicit":["explicit.stat_3446950357"]}}} +{"ref":"Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage","better":1,"matchers":[{"string":"Увеличение и уменьшение физического урона в радиусе переводятся на урон от холода"}],"trade":{"ids":{"explicit":["explicit.stat_738100799"]}}} +{"ref":"Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value","better":1,"matchers":[{"string":"Увеличения и уменьшения урона от чар также действуют на атаки в размере 150% от их значения"}],"trade":{"ids":{"explicit":["explicit.stat_185598681"]}}} +{"ref":"Infernal Blow Debuff deals an additional #% of Damage per Charge","better":1,"matchers":[{"string":"Отрицательный эффект Удара преисподней дополнительно наносит #% урона за каждый заряд"}],"trade":{"ids":{"enchant":["enchant.stat_105839441"]}}} +{"ref":"Infernal Cry has #% increased Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Клича преисподней"}],"trade":{"ids":{"implicit":["implicit.stat_631097842"]}}} +{"ref":"Infernal Cry has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"#% повышение скорости перезарядки Клича преисподней"}],"trade":{"ids":{"enchant":["enchant.stat_2702698464"]}}} +{"ref":"Inflict Cold Exposure on Hit, applying #% to Cold Resistance","better":-1,"matchers":[{"string":"Накладывает восприимчивость к холоду при нанесении удара, добавляя #% к сопротивлению холоду"}],"trade":{"ids":{"implicit":["implicit.stat_3005701891"]}}} +{"ref":"Inflict Decay on Enemies you Curse with Hex Skills, dealing # Chaos Damage per Second for 8 Seconds","better":1,"matchers":[{"string":"Накладывает Разложение на врагов, которых вы проклинаете порчами или метками, наносящее # урона хаосом в секунду в течение 8 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_773846741"]}}} +{"ref":"Inflict Fire Exposure on Hit if you've cast Flammability in the past 10 seconds","better":1,"matchers":[{"string":"Накладывает восприимчивость к огню при нанесении удара, если вы сотворяли Горючесть за последние 10 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_3259812992"]}}} +{"ref":"Inflict Fire Exposure on Hit, applying #% to Fire Resistance","better":-1,"matchers":[{"string":"Накладывает восприимчивость к огню при нанесении удара, добавляя #% к сопротивлению огню"}],"trade":{"ids":{"implicit":["implicit.stat_1309840354"]}}} +{"ref":"Inflict Fire, Cold and Lightning Exposure on nearby Enemies when used","better":1,"matchers":[{"string":"При использовании накладывает на ближайших врагов восприимчивость к огню, холоду и молнии"}],"trade":{"ids":{"explicit":["explicit.stat_3933226405"]}}} +{"ref":"Inflict Lightning Exposure on Hit if you've cast Conductivity in the past 10 seconds","better":1,"matchers":[{"string":"Накладывает восприимчивость к молнии при нанесении удара, если вы сотворяли Проводимость за последние 10 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_3339663313"]}}} +{"ref":"Inflict Lightning Exposure on Hit, applying #% to Lightning Resistance","better":-1,"matchers":[{"string":"Накладывает восприимчивость к молнии при нанесении удара, добавляя #% к сопротивлению молнии"}],"trade":{"ids":{"implicit":["implicit.stat_981753179"]}}} +{"ref":"Inflict non-Damaging Ailments as though dealing #% more Damage","better":1,"matchers":[{"string":"Не наносящие урон состояния накладываются так, как если бы было нанесено на #% больше урона"},{"string":"Не наносящие урон состояния накладываются так, как если бы было нанесено на #% меньше урона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1345113611"]}}} +{"ref":"Inflict Withered for 2 seconds on Hit if you've cast Despair in the past 10 seconds","better":1,"matchers":[{"string":"Накладывает Истощение на 2 секунды при нанесении удара, если вы сотворяли Отчаяние за последние 10 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_1904031052"]}}} +{"ref":"Inflicts a random Hex on you when your Totems die","better":1,"matchers":[{"string":"При смерти тотемов проклинает вас случайной порчей"}],"trade":{"ids":{"explicit":["explicit.stat_2918129907"]}}} +{"ref":"Inflicts Mana Burn on you when you Hit an Enemy with a Melee Weapon","better":1,"matchers":[{"string":"Накладывает на вас # заряда Сжигания маны при нанесении удара по врагу оружием ближнего боя"},{"string":"Накладывает на вас Сжигание маны при нанесении удара по врагу оружием ближнего боя","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1330482101"]}}} +{"ref":"Inner Conviction","better":1,"matchers":[{"string":"Внутренняя убеждённость"}],"trade":{"ids":{"explicit":["explicit.stat_354080151"]}}} +{"ref":"Instant Recovery when on Low Life","better":1,"matchers":[{"string":"Моментальное восстановление при малом количестве здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_3812107348"],"fractured":["fractured.stat_3812107348"]}}} +{"ref":"Insufficient Mana doesn't prevent your Melee Attacks","better":1,"matchers":[{"string":"Недостаток маны не мешает вам совершать атаки в ближнем бою"}],"trade":{"ids":{"explicit":["explicit.stat_1852317988"]}}} +{"ref":"Intelligence from Passives in Radius is Transformed to Dexterity","better":1,"matchers":[{"string":"Интеллект в радиусе становится ловкостью"}],"trade":{"ids":{"explicit":["explicit.stat_1608425196"]}}} +{"ref":"Intelligence from Passives in Radius is Transformed to Strength","better":1,"matchers":[{"string":"Интеллект в радиусе становится силой"}],"trade":{"ids":{"explicit":["explicit.stat_1285587221"]}}} +{"ref":"Intelligence provides no inherent bonus to Maximum Mana","better":1,"matchers":[{"string":"Интеллект не предоставляет изначальных бонусов к максимуму маны"}],"trade":{"ids":{"explicit":["explicit.stat_2546599258"]}}} +{"ref":"Intimidate Enemies on Hit if you've cast Punishment in the past 10 seconds","better":1,"matchers":[{"string":"Устрашает врагов при нанесении удара, если вы сотворяли Наказание за последние 10 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_91505809"]}}} +{"ref":"Intimidating Cry has #% increased Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Устрашающего клича"}],"trade":{"ids":{"enchant":["enchant.stat_1088946611"]}}} +{"ref":"Intimidating Cry has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"#% повышение скорости перезарядки Устрашающего клича"}],"trade":{"ids":{"implicit":["implicit.stat_1134560807"],"enchant":["enchant.stat_1134560807"]}}} +{"ref":"Iron Grip","better":1,"matchers":[{"string":"Твердая рука"}],"trade":{"ids":{"explicit":["explicit.stat_573347393"],"fractured":["fractured.stat_573347393"],"scourge":["scourge.stat_573347393"]}}} +{"ref":"Iron Reflexes","better":1,"matchers":[{"string":"Стальные нервы"}],"trade":{"ids":{"explicit":["explicit.stat_326965591"],"scourge":["scourge.stat_326965591"]}}} +{"ref":"Iron Reflexes while stationary","better":1,"matchers":[{"string":"Железные нервы при нахождении на одном месте"}],"trade":{"ids":{"explicit":["explicit.stat_187998220"]}}} +{"ref":"Iron Will","better":1,"matchers":[{"string":"Железная воля"}],"trade":{"ids":{"explicit":["explicit.stat_4092697134"],"fractured":["fractured.stat_4092697134"],"scourge":["scourge.stat_4092697134"]}}} +{"ref":"It That Fled's Veiled","better":0,"matchers":[{"string":"Завуалированная Тем-Что-Сбежало"},{"string":"Завуалированное Тем-Что-Сбежало"},{"string":"Завуалированные Тем-Что-Сбежало"},{"string":"Завуалированный Тем-Что-Сбежало"}],"trade":{"ids":{"veiled":["veiled.mod_55787"]}}} +{"ref":"Item drops on Death if Equipped by an Animated Guardian","better":1,"matchers":[{"string":"Предмет выпадает при смерти если экипирован Аниматроном"}],"trade":{"ids":{"explicit":["explicit.stat_3909846940"],"implicit":["implicit.stat_3909846940"],"fractured":["fractured.stat_3909846940"],"crafted":["crafted.stat_3909846940"]}}} +{"ref":"Item sells for much more to vendors","better":1,"matchers":[{"string":"Торговцы покупают предмет гораздо дороже"}],"trade":{"ids":{"implicit":["implicit.stat_3513534186"]}}} +{"ref":"Items and Gems have #% increased Attribute Requirements","better":1,"matchers":[{"string":"Предметы и камни имеют #% повышение требований к характеристикам"},{"string":"Предметы и камни имеют #% понижение требований к характеристикам","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_752930724"],"fractured":["fractured.stat_752930724"]}}} +{"ref":"Karui Stone Hook","better":1,"matchers":[{"string":"Каменный крючок каруи","value":1},{"string":"Крючок эзомитов из ракушки","value":2},{"string":"Духовный крючок ваал","value":3},{"string":"Железный крючок вечных","value":4}],"trade":{"ids":{"explicit":["explicit.stat_2054162825"],"fractured":["fractured.stat_2054162825"]}}} +{"ref":"Kill Enemies that have 15% or lower Life on Hit if The Searing Exarch is dominant","better":1,"matchers":[{"string":"При ударе убивает врагов с 15% здоровья или ниже, если область находится под контролем Пламенного экзарха"}],"trade":{"ids":{"explicit":["explicit.stat_3768948090"]}}} +{"ref":"Kills grant an additional Vaal Soul if you have Rampaged Recently","better":1,"matchers":[{"string":"Убийства дают дополнительную душу ваал, если недавно вы достигли нового уровня Буйства"}],"trade":{"ids":{"explicit":["explicit.stat_3271016161"]}}} +{"ref":"Kinetic Blast has a #% chance for an additional explosion","better":1,"matchers":[{"string":"Кинетический взрыв имеет #% шанс дополнительного взрыва"},{"string":"Кинетический взрыв вызывает дополнительный взрыв","value":100}],"trade":{"ids":{"enchant":["enchant.stat_3105097589"]}}} +{"ref":"Kinetic Bolt changes direction # additional time","better":1,"matchers":[{"string":"Кинетический заряд меняет направление дополнительно # раз"},{"string":"Кинетический заряд меняет направление дополнительно # раз(-а)"}],"trade":{"ids":{"enchant":["enchant.stat_1460506005"]}}} +{"ref":"Kinetic Bolt has #% increased Attack Speed","better":1,"matchers":[{"string":"#% повышение скорости атаки Кинетического заряда"},{"string":"#% снижение скорости атаки Кинетического заряда","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2244239056"]}}} +{"ref":"Kinetic Bolt has #% increased Projectile Speed","better":1,"matchers":[{"string":"#% повышение скорости снаряда Кинетического заряда"},{"string":"#% снижение скорости снаряда Кинетического заряда","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2482018205"]}}} +{"ref":"Knockback direction is reversed","better":1,"matchers":[{"string":"Обратное направление отбрасывания"}],"trade":{"ids":{"explicit":["explicit.stat_281201999"]}}} +{"ref":"Knocks Back Enemies in an Area when you use a Flask","better":1,"matchers":[{"string":"Отбрасывает врагов в области при использовании флакона"}],"trade":{"ids":{"explicit":["explicit.stat_3591397930"]}}} +{"ref":"Korell's Veiled","better":0,"matchers":[{"string":"Завуалированная Кореллом"},{"string":"Завуалированное Кореллом"},{"string":"Завуалированные Кореллом"},{"string":"Завуалированный Кореллом"}],"trade":{"ids":{"veiled":["veiled.mod_44855"]}}} +{"ref":"Lacerate deals # to # added Physical Damage against Bleeding Enemies","better":1,"matchers":[{"string":"Разрубание наносит от # до # дополнительного физического урона по истекающим кровью врагам"}],"trade":{"ids":{"enchant":["enchant.stat_732320584"]}}} +{"ref":"Lancing Steel deals #% increased Damage","better":1,"matchers":[{"string":"Пронзающая сталь наносит увеличенный на #% урон"},{"string":"Пронзающая сталь наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2159486200"]}}} +{"ref":"Lancing Steel fires an additional Projectile","better":1,"matchers":[{"string":"Пронзающая сталь выпускает дополнительных снарядов: #"},{"string":"Пронзающая сталь выпускает дополнительный снаряд","value":1}],"trade":{"ids":{"enchant":["enchant.stat_4081185348"]}}} +{"ref":"Lancing Steel has #% chance to count as consuming Steel Shards without Consuming them","better":1,"matchers":[{"string":"Пронзающая сталь имеет #% шанс считаться поглотившим стальные осколки без их полглощения"}],"trade":{"ids":{"enchant":["enchant.stat_2891251105"]}}} +{"ref":"Leech Energy Shield instead of Life","better":1,"matchers":[{"string":"Вместо здоровья похищается энергетический щит"}],"trade":{"ids":{"explicit":["explicit.stat_3346092312"]}}} +{"ref":"Left ring slot: #% increased Duration of Ailments on You","better":1,"matchers":[{"string":"Кольцо в левом слоте: #% увеличение длительности состояний на вас"},{"string":"Кольцо в левом слоте: #% уменьшение длительности состояний на вас","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_221309863"]}}} +{"ref":"Left ring slot: #% increased Effect of Curses on you","better":1,"matchers":[{"string":"Кольцо в левом слоте: #% усиление эффекта проклятий на вас"},{"string":"Кольцо в левом слоте: #% ослабление эффекта проклятий на вас","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_496053892"]}}} +{"ref":"Left ring slot: #% increased Mana Regeneration Rate","better":1,"matchers":[{"string":"Кольцо в левом слоте: #% повышение скорости регенерации маны"}],"trade":{"ids":{"explicit":["explicit.stat_195090426"]}}} +{"ref":"Left ring slot: #% increased Skill Effect Duration","better":1,"matchers":[{"string":"Кольцо в левом слоте: #% увеличение длительности эффекта умения"},{"string":"Кольцо в левом слоте: #% уменьшение длительности эффекта умения","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3320868777"]}}} +{"ref":"Left ring slot: #% of Cold Damage from Hits taken as Fire Damage","better":1,"matchers":[{"string":"Кольцо в левом слоте: #% получаемого урона от холода от ударов становится уроном от огня"}],"trade":{"ids":{"implicit":["implicit.stat_1323927995"]}}} +{"ref":"Left ring slot: #% of Fire Damage from Hits taken as Lightning Damage","better":1,"matchers":[{"string":"Кольцо в левом слоте: #% получаемого урона от огня от ударов становится уроном от молнии"}],"trade":{"ids":{"implicit":["implicit.stat_17730902"]}}} +{"ref":"Left ring slot: #% of Lightning Damage from Hits taken as Cold Damage","better":1,"matchers":[{"string":"Кольцо в левом слоте: #% получаемого урона от молнии от ударов становится уроном от холода"}],"trade":{"ids":{"implicit":["implicit.stat_450178102"]}}} +{"ref":"Left ring slot: +# to maximum Energy Shield","better":1,"matchers":[{"string":"Кольцо в левом слоте: # к максимуму энергетического щита"}],"trade":{"ids":{"explicit":["explicit.stat_1497601437"]}}} +{"ref":"Left Ring slot: Cover Enemies in Ash for # seconds when you Ignite them","better":1,"matchers":[{"string":"Кольцо в левом слоте: покрывает врагов пеплом на # секунд(-ы), когда вы поджигаете их"}],"trade":{"ids":{"explicit":["explicit.stat_2533512212"]}}} +{"ref":"Left ring slot: Minions take #% increased Damage","better":1,"matchers":[{"string":"Кольцо в левом слоте: Приспешники получают увеличенный на #% урон"},{"string":"Кольцо в левом слоте: Приспешники получают уменьшенный на #% урон","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1916904011"]}}} +{"ref":"Left ring slot: Projectiles from Spells cannot Chain","better":1,"matchers":[{"string":"Кольцо в левом слоте: снаряды от чар не могут поражать цели по цепи"}],"trade":{"ids":{"explicit":["explicit.stat_3647242059"]}}} +{"ref":"Left ring slot: Projectiles from Spells Fork","better":1,"matchers":[{"string":"Кольцо в левом слоте: снаряды от чар разветвляются"}],"trade":{"ids":{"explicit":["explicit.stat_2437476305"]}}} +{"ref":"Left ring slot: Regenerate # Mana per Second","better":1,"matchers":[{"string":"Кольцо в левом слоте: регенерация # маны в секунду"}],"trade":{"ids":{"explicit":["explicit.stat_3241234878"]}}} +{"ref":"Left ring slot: You and your Minions take #% reduced Reflected Elemental Damage","better":-1,"matchers":[{"string":"Кольцо в левом слоте: вы и ваши приспешники получаете увеличенный на #% отраженный урон от стихий"},{"string":"Кольцо в левом слоте: вы и ваши приспешники получаете уменьшенный на #% отраженный урон от стихий","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2422197812"]},"inverted":true}} +{"ref":"Left ring slot: You cannot Recharge or Regenerate Energy Shield","better":1,"matchers":[{"string":"Кольцо в левом слоте: вы не можете восстанавливать или регенерировать энергетический щит"}],"trade":{"ids":{"explicit":["explicit.stat_4263540840"]}}} +{"ref":"Left Ring Slot: Your Chilling Skitterbot's Aura applies Socketed Hex Curse instead","better":1,"matchers":[{"string":"Кольцо в левом слоте: вместо охлаждающей ауры ваших мехаботов применяется размещенное проклятие порчи"}],"trade":{"ids":{"explicit":["explicit.stat_625885138"]}}} +{"ref":"Leftmost # Magic Utility Flask constantly applies its Flask Effect to you","better":1,"matchers":[{"string":"Эффект # волшебного особого флакона в ячейке слева постоянно действует на вас"},{"string":"Эффект # волшебных особых флаконов в ячейках слева постоянно действует на вас"}],"trade":{"ids":{"explicit":["explicit.stat_2388347909"]}}} +{"ref":"Leo's Veiled","better":0,"matchers":[{"string":"Завуалированная Лео"},{"string":"Завуалированное Лео"},{"string":"Завуалированные Лео"},{"string":"Завуалированный Лео"}],"trade":{"ids":{"veiled":["veiled.mod_3258"]}}} +{"ref":"Lethe Shade","better":1,"matchers":[{"string":"Тень смерти"}],"trade":{"ids":{"explicit":["explicit.stat_1678358883"],"fractured":["fractured.stat_1678358883"],"scourge":["scourge.stat_1678358883"]}}} +{"ref":"Life and Mana Leech are instant during effect","better":1,"matchers":[{"string":"Похищение здоровья и маны происходит мгновенно во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_1102362593"]}}} +{"ref":"Life and Mana Leech from Critical Strikes are instant","better":1,"matchers":[{"string":"Похищение здоровья и маны от критических ударов происходит мгновенно"}],"trade":{"ids":{"explicit":["explicit.stat_3389184522"]}}} +{"ref":"Life Flasks gain # Charge every 3 seconds","better":1,"matchers":[{"string":"Флаконы здоровья получают # заряд каждые 3 секунды"},{"string":"Флаконы здоровья получают зарядов каждые 3 секунды: #"}],"trade":{"ids":{"explicit":["explicit.stat_2592686757"],"scourge":["scourge.stat_2592686757"]}}} +{"ref":"Life Flasks used while on Low Life apply Recovery Instantly","better":1,"matchers":[{"string":"Флаконы здоровья, используемые при малом количестве здоровья, применяют восстановление мгновенно"}],"trade":{"ids":{"explicit":["explicit.stat_1200347828"]}}} +{"ref":"Life Leech effects are not removed when Unreserved Life is Filled","better":1,"matchers":[{"string":"Эффекты похищения здоровья не прекращаются при заполнении не удержанного здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_2108380422"]}}} +{"ref":"Life Leech from Exerted Attacks is instant","better":1,"matchers":[{"string":"Похищение здоровья от улучшенных атак происходит мгновенно"}],"trade":{"ids":{"explicit":["explicit.stat_272906215"]}}} +{"ref":"Life Leech from Hits with this Weapon is instant","better":1,"matchers":[{"string":"Похищение здоровья от ударов этим оружием происходит мгновенно"}],"trade":{"ids":{"explicit":["explicit.stat_1765389199"]}}} +{"ref":"Life Recovery from Flasks also applies to Energy Shield during Effect","better":1,"matchers":[{"string":"Восстановление здоровья от флаконов также действует на энергетический щит во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_74462130"]}}} +{"ref":"Life Recovery from Regeneration is not applied","better":1,"matchers":[{"string":"Восстановление здоровья от регенерации не применяется"}],"trade":{"ids":{"explicit":["explicit.stat_3947672598"]}}} +{"ref":"Life that would be lost by taking Damage is instead Reserved\nuntil you take no Damage to Life for # second","better":1,"matchers":[{"string":"Теряемое в результате получения урона здоровье вместо этого удерживается до тех пор, пока вы не перестанете получать урон в течение # секунд"},{"string":"Теряемое в результате получения урона здоровье вместо этого удерживается до тех пор, пока вы не перестанете получать урон в течение # секунды"}],"trade":{"ids":{"explicit":["explicit.stat_1777740627"]}}} +{"ref":"Light Radius is based on Energy Shield instead of Life","better":1,"matchers":[{"string":"Радиус обзора базируется на энергетическом щите вместо здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_3836017971"],"fractured":["fractured.stat_3836017971"],"crafted":["crafted.stat_3836017971"]}}} +{"ref":"Lightning Arrow hits # additional Enemy","better":1,"matchers":[{"string":"Стрела молнии наносит удар по # дополнительному врагу"},{"string":"Стрела молнии наносит удар по # дополнительным врагам"}],"trade":{"ids":{"enchant":["enchant.stat_1901955093"]}}} +{"ref":"Lightning Conduit deals #% increased Damage","better":1,"matchers":[{"string":"Проводник молнии наносит увеличенный на #% урон"},{"string":"Проводник молнии наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2511245659"]}}} +{"ref":"Lightning Conduit has #% increased Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Проводника молнии"},{"string":"#% уменьшение области действия Проводника молнии","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2252888886"]}}} +{"ref":"Lightning Conduit has #% increased Cast Speed","better":1,"matchers":[{"string":"#% повышение скорости сотворения чар Проводником молнии"}],"trade":{"ids":{"enchant":["enchant.stat_2437571727"]}}} +{"ref":"Lightning Damage of Enemies Hitting you is Lucky","better":1,"matchers":[{"string":"Враги удачливы при нанесении вам урона от молнии"}],"trade":{"ids":{"explicit":["explicit.stat_4224965099"]}}} +{"ref":"Lightning Damage with Non-Critical Strikes is Lucky","better":1,"matchers":[{"string":"Урон от молнии, наносимый не-критическими ударами, удачлив"}],"trade":{"ids":{"explicit":["explicit.stat_1430928642"]}}} +{"ref":"Lightning Golems deal #% increased Damage","better":1,"matchers":[{"string":"#% увеличение урона големов молнии"},{"string":"#% уменьшение урона големов молнии","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3280107027"]}}} +{"ref":"Lightning Resistance cannot be Penetrated","better":1,"matchers":[{"string":"Сопротивление молнии нельзя пробить"}],"trade":{"ids":{"explicit":["explicit.stat_3515979920"],"fractured":["fractured.stat_3515979920"]}}} +{"ref":"Lightning Resistance does not affect Lightning Damage taken","better":1,"matchers":[{"string":"Сопротивление молнии не влияет на получаемый урон от молнии"}],"trade":{"ids":{"explicit":["explicit.stat_3999959974"]}}} +{"ref":"Lightning Resistance is #%","better":1,"matchers":[{"string":"Сопротивление молнии равно #%"}],"trade":{"ids":{"explicit":["explicit.stat_1942151132"]}}} +{"ref":"Lightning Skills have #% chance to Poison on Hit","better":1,"matchers":[{"string":"Умения молнии имеют #% шанс отравить при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_949718413"]}}} +{"ref":"Lightning Spire Trap deals #% increased Damage","better":1,"matchers":[{"string":"Ловушка шпиля молний наносит увеличенный на #% урон"},{"string":"Ловушка шпиля молний наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_982975385"]}}} +{"ref":"Lightning Spire Trap has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"Ловушка шпиля молний имеет #% повышение скорости перезарядки"},{"string":"Ловушка шпиля молний имеет #% снижение скорости перезарядки","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1570047087"]}}} +{"ref":"Lightning Spire Trap has #% increased Skill Effect Duration","better":1,"matchers":[{"string":"Ловушка шпиля молний имеет #% увеличение продолжительности эффектов умений"},{"string":"Ловушка шпиля молний имеет #% уменьшение продолжительности эффектов умений","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2207890291"]}}} +{"ref":"Lightning Spire Trap strikes an additional area","better":1,"matchers":[{"string":"Ловушка шпиля молний поражает дополнительных областей: #"},{"string":"Ловушка шпиля молний поражает дополнительную область","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1104507216"]}}} +{"ref":"Lightning Strike fires an additional Projectile","better":1,"matchers":[{"string":"Удар молнии выпускает дополнительных снарядов: #"},{"string":"Удар молнии выпускает дополнительный снаряд","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1213035889"]}}} +{"ref":"Lightning Strike pierces an additional Target","better":1,"matchers":[{"string":"Удар молнии пронзает # дополнительных цели(-ей)"},{"string":"Удар молнии пронзает дополнительную цель","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3134777190"]}}} +{"ref":"Lightning Trap Damage Penetrates #% Lightning Resistance","better":1,"matchers":[{"string":"Урон Ловушки молний пробивает #% сопротивления молнии"}],"trade":{"ids":{"enchant":["enchant.stat_1557531966"]}}} +{"ref":"Lightning Trap pierces an additional Target","better":1,"matchers":[{"string":"Ловушка молний пронзает # дополнительных цели(-ей)"},{"string":"Ловушка молний пронзает дополнительную цель","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3764410821"]}}} +{"ref":"Link Skills have #% increased Cast Speed","better":1,"matchers":[{"string":"#% повышение скорости сотворения чар умений связи"},{"string":"#% снижение скорости сотворения чар умений связи","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2597985144"]}}} +{"ref":"Link Skills have #% increased Skill Effect Duration","better":1,"matchers":[{"string":"#% увеличение длительности эффекта умений связи"},{"string":"#% уменьшение длительности эффекта умений связи","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1214762172"]}}} +{"ref":"Linked Targets always count as in range of Non-Curse Auras from your Skills\nNon-Curse Auras from your Skills only apply to you and Linked Targets","better":1,"matchers":[{"string":"Связанные цели всегда считаются, как если бы они были в радиусе аур не-проклятий от ваших умений\nАуры не-проклятья от ваших умений применяются только к вам и связанным целям"}],"trade":{"ids":{"explicit":["explicit.stat_3678739763"]}}} +{"ref":"Linked Targets Cannot Die for # seconds after you Die","better":1,"matchers":[{"string":"Связанные цели не могут умереть в течение # секунд после вашей смерти"}],"trade":{"ids":{"explicit":["explicit.stat_3251211004"]}}} +{"ref":"Lockdown occurs immediately when Alert Level is full","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"Изоляция происходит мгновенно, когда уровень тревоги заполняется"}],"trade":{"ids":{"explicit":["explicit.stat_1239251576"],"fractured":["fractured.stat_1239251576"]}}} +{"ref":"Lose # Life per second","better":-1,"matchers":[{"string":"Теряет # здоровья в секунду"}],"trade":{"ids":{"explicit":["explicit.stat_771127912"],"fractured":["fractured.stat_771127912"],"crafted":["crafted.stat_771127912"]}}} +{"ref":"Lose # Mana per Second","better":-1,"matchers":[{"string":"Отнимает # маны в секунду"},{"string":"Теряет # маны в секунду"}],"trade":{"ids":{"explicit":["explicit.stat_2589042711","explicit.stat_838272676"],"scourge":["scourge.stat_2589042711"],"crafted":["crafted.stat_838272676"]}}} +{"ref":"Lose # Mana when you use a Skill","better":-1,"matchers":[{"string":"Теряет # маны, когда вы используете умение"}],"trade":{"ids":{"explicit":["explicit.stat_2924302129"]}}} +{"ref":"Lose #% of Energy Shield per second","better":1,"matchers":[{"string":"Теряет #% энергетического щита в секунду"}],"trade":{"ids":{"explicit":["explicit.stat_761102773"]}}} +{"ref":"Lose #% of Energy Shield when you deal a Critical Strike","better":-1,"matchers":[{"string":"Теряет #% энергетического щита при нанесении вами критического удара"}],"trade":{"ids":{"explicit":["explicit.stat_1229725509"]}}} +{"ref":"Lose #% of Life per second","dp":true,"better":1,"matchers":[{"string":"Теряет #% здоровья в секунду"}],"trade":{"ids":{"explicit":["explicit.stat_1661347488"]}}} +{"ref":"Lose #% of Life per second if you have been Hit Recently","better":-1,"matchers":[{"string":"Отнимает #% здоровья в секунду, если недавно вы получали удар"}],"trade":{"ids":{"explicit":["explicit.stat_2325592140"]}}} +{"ref":"Lose #% of Life when you deal a Critical Strike","better":-1,"matchers":[{"string":"Теряет #% здоровья при нанесении вами критического удара"}],"trade":{"ids":{"explicit":["explicit.stat_1862591837"]}}} +{"ref":"Lose #% of Mana per Second","better":-1,"matchers":[{"string":"Отнимает #% маны в секунду"}],"trade":{"ids":{"explicit":["explicit.stat_2936435999"]}}} +{"ref":"Lose #% of Mana when you use an Attack Skill","better":-1,"matchers":[{"string":"Вы теряете #% маны при использовании умения атаки"}],"trade":{"ids":{"explicit":["explicit.stat_113147867"]}}} +{"ref":"Lose a Power Charge each second if you have not Detonated Mines Recently","better":1,"matchers":[{"string":"Теряет заряд энергии каждую секунду, если вы недавно не взрывали мины"}],"trade":{"ids":{"explicit":["explicit.stat_3530865840"]}}} +{"ref":"Lose Adrenaline when you cease to be Flame-Touched","better":1,"matchers":[{"string":"Теряет Адреналин, когда вы теряете Касание пламени"}],"trade":{"ids":{"explicit":["explicit.stat_138579627"]}}} +{"ref":"Lose all Eaten Souls when you use a Flask","better":1,"matchers":[{"string":"Теряет все поглощенные души при использовании вами флакона"}],"trade":{"ids":{"explicit":["explicit.stat_3577316952"]}}} +{"ref":"Lose all Endurance Charges when Rampage ends","better":1,"matchers":[{"string":"По окончании действия эффекта Буйства все заряды выносливости снимаются"}],"trade":{"ids":{"explicit":["explicit.stat_2881426199"]}}} +{"ref":"Lose all Fragile Regrowth when Hit","better":1,"matchers":[{"string":"Вы теряете все эффекты Хрупкого восстановления при получении удара"}],"trade":{"ids":{"explicit":["explicit.stat_1306791873"],"fractured":["fractured.stat_1306791873"]}}} +{"ref":"Lose all Frenzy Charges on reaching Maximum Frenzy Charges to make the next Bow Attack you perform fire that many additional Arrows","better":1,"matchers":[{"string":"По достижении максимума зарядов ярости вы теряете все заряды ярости, чтобы в следующую вашу атаку из лука выпустить такое же количество дополнительных стрел"}],"trade":{"ids":{"explicit":["explicit.stat_2522975315"]}}} +{"ref":"Lose all Power Charges on Critical Strike","better":1,"matchers":[{"string":"Потеря всех энергетических зарядов при нанесении критического удара"}],"trade":{"ids":{"explicit":["explicit.stat_2735889191"]}}} +{"ref":"Lose all Power Charges on reaching Maximum Power Charges","better":1,"matchers":[{"string":"Теряет все заряды энергии при достижении их максимального количества"}],"trade":{"ids":{"explicit":["explicit.stat_2135899247"]}}} +{"ref":"Lose all Power Charges when you Block","better":1,"matchers":[{"string":"Вы теряете все заряды энергии при блоке"}],"trade":{"ids":{"explicit":["explicit.stat_3898799092"]}}} +{"ref":"Lose no Experience when you die because a Linked target died","better":1,"matchers":[{"string":"Вы не теряете опыт, когда умираете вместе со связанной целью"}],"trade":{"ids":{"explicit":["explicit.stat_738821856"]}}} +{"ref":"Loses all Charges when you enter a new area","better":1,"matchers":[{"string":"Теряет все заряды, когда вы входите в новую область"}],"trade":{"ids":{"explicit":["explicit.stat_776020689"]}}} +{"ref":"Magebane","better":1,"matchers":[{"string":"Погибель магов"}],"trade":{"ids":{"explicit":["explicit.stat_4180925106"],"fractured":["fractured.stat_4180925106"],"scourge":["scourge.stat_4180925106"]}}} +{"ref":"Magic Monsters take #% increased Damage","better":1,"matchers":[{"string":"Волшебные монстры получают увеличенный на #% урон"},{"string":"Волшебные монстры получают уменьшенный на #% урон","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3056215807"]}}} +{"ref":"Magic Utility Flask Effects cannot be removed","better":1,"matchers":[{"string":"Эффекты волшебных особых флаконов нельзя снять"}],"trade":{"ids":{"explicit":["explicit.stat_344389721"]}}} +{"ref":"Magic Utility Flasks applied to you have #% increased Effect","better":1,"matchers":[{"string":"#% усиление эффекта примененных к вам волшебных особых флаконов"},{"string":"#% ослабление эффекта примененных к вам волшебных особых флаконов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2564857472"],"fractured":["fractured.stat_2564857472"]}}} +{"ref":"Magic Utility Flasks cannot be Used","better":1,"matchers":[{"string":"Волшебные особые флаконы нельзя использовать"}],"trade":{"ids":{"explicit":["explicit.stat_3986704288"]}}} +{"ref":"Malevolence has #% increased Aura Effect","better":1,"matchers":[{"string":"#% усиление эффекта ауры Злорадства"},{"string":"#% ослабление эффекта ауры Злорадства","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4175197580"],"implicit":["implicit.stat_4175197580"],"fractured":["fractured.stat_4175197580"]}}} +{"ref":"Malevolence has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"#% увеличение эффективности удержания маны Злорадством"},{"string":"#% уменьшение эффективности удержания маны Злорадством","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3266567165","explicit.stat_3383226338"],"enchant":["enchant.stat_3266567165","enchant.stat_3383226338"]}}} +{"ref":"Malevolence has no Reservation","better":1,"matchers":[{"string":"Злорадство не удерживает ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_585622486"]}}} +{"ref":"Mana Flasks gain # Charge every 3 seconds","better":1,"matchers":[{"string":"Флаконы маны получают # заряд каждые 3 секунды"},{"string":"Флаконы маны получают зарядов каждые 3 секунды: #"}],"trade":{"ids":{"explicit":["explicit.stat_1193925814"],"scourge":["scourge.stat_1193925814"]}}} +{"ref":"Mana Flasks used while on Low Mana apply Recovery Instantly","better":1,"matchers":[{"string":"Флаконы маны, используемые при малом количестве маны, применяют восстановление мгновенно"}],"trade":{"ids":{"explicit":["explicit.stat_1839832419"]}}} +{"ref":"Mana Recovery occurs instantly at the end of Effect","better":1,"matchers":[{"string":"Мана восстанавливается мгновенно в конце действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_4204954479"],"fractured":["fractured.stat_4204954479"]}}} +{"ref":"Mana Reservation of Herald Skills is always 45%","better":1,"matchers":[{"string":"Умения Вестников всегда удерживают 45% маны"}],"trade":{"ids":{"explicit":["explicit.stat_262773569"]}}} +{"ref":"Manabond Penetrates #% Lightning Resistance while on Low Mana","better":1,"matchers":[{"string":"Узы маны пробивают #% сопротивления молнии при низком уровне маны"}],"trade":{"ids":{"enchant":["enchant.stat_2052200782"]}}} +{"ref":"Manifested Dancing Dervishes die when Rampage ends","better":1,"matchers":[{"string":"Проявление Танцующего Дервиша погибает по окончании действия Буйства"}],"trade":{"ids":{"explicit":["explicit.stat_1414945937"]}}} +{"ref":"Manifested Dancing Dervishes disables both weapon slots","better":1,"matchers":[{"string":"Проявление Танцующего Дервиша отключает оба слота оружия"}],"trade":{"ids":{"explicit":["explicit.stat_398335579"]}}} +{"ref":"Map Boss is accompanied by a Synthesis Boss","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Босса карты сопровождает босс Синтеза"}],"trade":{"ids":{"explicit":["explicit.stat_4150353141"],"fractured":["fractured.stat_4150353141"]}}} +{"ref":"Map Boss is surrounded by Tormented Spirits","better":1,"matchers":[{"string":"Босс карты окружен Страдающими духами"}],"trade":{"ids":{"enchant":["enchant.stat_3750528071"]}}} +{"ref":"Map contains #'s Citadel","better":1,"matchers":[{"string":"На карте можно встретить проход в крепость Бэрана\nСвойства, увеличивающие количество выпадающих предметов, влияют на Бэрана в размере 20% от их значений","value":1},{"string":"На карте можно встретить проход в крепость Веритании\nСвойства, увеличивающие количество выпадающих предметов, влияют на Веританию в размере 20% от их значений","value":2},{"string":"На карте можно встретить проход в крепость Аль-Хезмина\nСвойства, увеличивающие количество выпадающих предметов, влияют на Аль-Хезмина в размере 20% от их значений","value":3},{"string":"На карте можно встретить проход в крепость Дрокса\nСвойства, увеличивающие количество выпадающих предметов, влияют на Дрокса в размере 20% от их значений","value":4}],"trade":{"ids":{"implicit":["implicit.stat_2563183002"]},"option":true}} +{"ref":"Map Crafting options for this Map have no cost","better":1,"fromAreaMods":true,"matchers":[{"string":"Свойства машины картоходца для этой карты бесплатны"}],"trade":{"ids":{"implicit":["implicit.stat_4149961555"]}}} +{"ref":"Map has # additional random Modifier","better":1,"matchers":[{"string":"Карта имеет # дополнительное случайное свойство"},{"string":"Карта имеет дополнительных случайных свойств: #"}],"trade":{"ids":{"explicit":["explicit.stat_4003278965"]}}} +{"ref":"Map has # additional Synthesis Global Modifier","better":1,"matchers":[{"string":"Карта имеет дополнительных глобальных свойств Синтеза: #"}],"trade":{"ids":{"explicit":["explicit.stat_2132807290"]}}} +{"ref":"Map has an additional random Modifier from Kirac's Crafting Bench","better":1,"matchers":[{"string":"Карта обладает дополнительным случайным свойством с верстака Кирака"}],"trade":{"ids":{"enchant":["enchant.stat_1389457945"]}}} +{"ref":"Map is occupied by #","better":1,"matchers":[{"string":"Карта захвачена Поработителем","value":1},{"string":"Карта захвачена Искоренителем","value":2},{"string":"Карта захвачена Угнетателем","value":3},{"string":"Карта захвачена Искупителем","value":4}],"trade":{"ids":{"implicit":["implicit.stat_3624393862"]},"option":true}} +{"ref":"Mark Skills have #% increased Cast Speed","better":1,"matchers":[{"string":"Умения метки имеют #% повышение скорости сотворения чар"},{"string":"Умения метки имеют #% снижение скорости сотворения чар","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4189061307"]}}} +{"ref":"Maven releases all Bosses at once","better":1,"fromAreaMods":true,"matchers":[{"string":"Мейвен выпускает всех боссов разом"}],"trade":{"ids":{"explicit":["explicit.stat_3606985138"]}}} +{"ref":"Maximum # Fragile Regrowth","better":1,"matchers":[{"string":"Максимум эффектов Хрупкого восстановления: #"}],"trade":{"ids":{"explicit":["explicit.stat_1173537953"],"fractured":["fractured.stat_1173537953"]}}} +{"ref":"Maximum Absorption Charges is equal to Maximum Power Charges","better":1,"matchers":[{"string":"Максимум зарядов поглощения равен максимуму зарядов энергии"}],"trade":{"ids":{"explicit":["explicit.stat_2494027711"]}}} +{"ref":"Maximum Affliction Charges is equal to Maximum Frenzy Charges","better":1,"matchers":[{"string":"Максимум зарядов подавления равен максимуму зарядов ярости"}],"trade":{"ids":{"explicit":["explicit.stat_2817027713"]}}} +{"ref":"Maximum Brutal Charges is equal to Maximum Endurance Charges","better":1,"matchers":[{"string":"Максимум зарядов жестокости равен максимуму зарядов выносливости"}],"trade":{"ids":{"explicit":["explicit.stat_3710150470"]}}} +{"ref":"Maximum Critical Strike Chance is 50%","better":1,"matchers":[{"string":"Максимальный шанс критического удара равен 50%"}],"trade":{"ids":{"explicit":["explicit.stat_1463929958"]}}} +{"ref":"Maximum Endurance, Frenzy and Power Charges is 0","better":1,"matchers":[{"string":"Максимум зарядов выносливости, ярости и энергии равен 0"}],"trade":{"ids":{"explicit":["explicit.stat_2957871460"]}}} +{"ref":"Maximum Quality is #%","better":1,"matchers":[{"string":"Максимальное качество равно #%"}],"trade":{"ids":{"explicit":["explicit.stat_275498888"]}}} +{"ref":"Maximum Resolve is 1","better":1,"matchers":[{"string":"Максимум решимости равен 1"}],"trade":{"ids":{"explicit":["sanctum.stat_1471840332"]}}} +{"ref":"Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers","better":1,"matchers":[{"string":"Модификаторы ближнего боя и оружия ближнего боя в радиусе становятся модификаторами луков"}],"trade":{"ids":{"explicit":["explicit.stat_854030602"]}}} +{"ref":"Melee Attacks have #% chance to cause Bleeding","better":1,"matchers":[{"string":"Атаки в ближнем бою имеют #% шанс наложить кровотечение"},{"string":"Атаки в ближнем бою накладывают кровотечение","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1285056331"]}}} +{"ref":"Melee Attacks have #% chance to Poison on Hit","better":1,"matchers":[{"string":"Атаки ближнего боя имеют #% шанс отравить при нанесении удара"},{"string":"Атаки ближнего боя отравляют при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_33065250"]}}} +{"ref":"Melee Attacks Knock Enemies Back on Hit","better":1,"matchers":[{"string":"Атаки в ближнем бою отталкивают врагов при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_3962823719"],"fractured":["fractured.stat_3962823719"]}}} +{"ref":"Melee Hits count as Rampage Kills\nRampage","better":1,"matchers":[{"string":"Удары в ближнем бою считаются убийствами для счетчика Буйства\nБуйство"}],"trade":{"ids":{"explicit":["explicit.stat_2889807051"]}}} +{"ref":"Melee Hits Fortify","better":1,"matchers":[{"string":"Удары в ближнем бою с #% шансом могут наложить Укрепление"},{"string":"Удары в ближнем бою накладывают Укрепление","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1166417447"],"implicit":["implicit.stat_1166417447"]}}} +{"ref":"Melee Hits from Strike Skills Fortify","better":1,"matchers":[{"string":"Удары в ближнем бою от умений ударов накладывают Укрепление"}],"trade":{"ids":{"explicit":["explicit.stat_3049891689"]}}} +{"ref":"Melee Hits which Stun have #% chance to Fortify","better":1,"matchers":[{"string":"Оглушающие удары в ближнем бою с #% шансом могут наложить Укрепление"},{"string":"Оглушающие удары в ближнем бою накладывают Укрепление","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3206381437"],"fractured":["fractured.stat_3206381437"]}}} +{"ref":"Melee Hits with Strike Skills always Knockback","better":1,"matchers":[{"string":"Умения ударов в ближнем бою отбрасывают врагов"}],"trade":{"ids":{"explicit":["explicit.stat_1737583880"]}}} +{"ref":"Melee Strike Skills deal Splash Damage to surrounding targets","better":1,"matchers":[{"string":"Умения ударов в ближнем бою наносят урон по целям вокруг"}],"trade":{"ids":{"explicit":["explicit.stat_3675300253"]}}} +{"ref":"Melee Weapon Attacks have Culling Strike","better":1,"matchers":[{"string":"Атаки оружием ближнего боя добивают врагов"}],"trade":{"ids":{"explicit":["explicit.stat_802532569"]}}} +{"ref":"Melee Weapon Damage Penetrates #% Elemental Resistances","better":1,"matchers":[{"string":"Урон оружием ближнего боя пробивает #% сопротивления стихиям"}],"trade":{"ids":{"explicit":["explicit.stat_2499808413"]}}} +{"ref":"Melee Weapon Damage Penetrates #% Elemental Resistances per Mana Burn","better":1,"matchers":[{"string":"Урон оружием ближнего боя пробивает #% сопротивления стихиям за каждый заряд Сжигания маны"}],"trade":{"ids":{"explicit":["explicit.stat_3685214225"]}}} +{"ref":"Melee Weapon Hits have #% chance to ignore Enemy Physical Damage Reduction","better":1,"matchers":[{"string":"Удары оружием ближнего боя с #% шансом могут игнорировать уменьшение получаемого физического урона врага"},{"string":"Удары оружием ближнего боя игнорируют уменьшение получаемого физического урона врага","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1676663186"]}}} +{"ref":"Melee Weapon Hits Inflict # Withered Debuffs for 2 seconds","better":1,"matchers":[{"string":"Удары оружием ближнего боя накладывают зарядов увядания на 2 секунды: #"}],"trade":{"ids":{"explicit":["explicit.stat_1103333624"]}}} +{"ref":"Mercury Footprints","better":1,"matchers":[{"string":"Ртутные следы"}],"trade":{"ids":{"explicit":["explicit.stat_3970396418"]}}} +{"ref":"Mind Over Matter","better":1,"matchers":[{"string":"Разум превыше материи"}],"trade":{"ids":{"explicit":["explicit.stat_373964381"],"scourge":["scourge.stat_373964381"]}}} +{"ref":"Mines can be Detonated an additional time","better":1,"matchers":[{"string":"Мины могут детонировать ещё # раз(-а)"},{"string":"Мины могут детонировать еще раз","value":1}],"trade":{"ids":{"explicit":["explicit.stat_325437053"]}}} +{"ref":"Mines have #% increased Detonation Speed","better":1,"matchers":[{"string":"#% повышение скорости взрыва мин"},{"string":"#% снижение скорости взрыва мин","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3085465082"],"fractured":["fractured.stat_3085465082"]}}} +{"ref":"Minion Instability","better":1,"matchers":[{"string":"Нестабильность приспешников"}],"trade":{"ids":{"explicit":["explicit.stat_433293234"],"scourge":["scourge.stat_433293234"]}}} +{"ref":"Minion Life is increased by their Overcapped Fire Resistance","better":1,"matchers":[{"string":"Здоровье приспешников увеличено на значение сопротивления огню выше максимума"}],"trade":{"ids":{"explicit":["explicit.stat_1586164348"]}}} +{"ref":"Minions are Aggressive","better":1,"matchers":[{"string":"Приспешники агрессивны"}],"trade":{"ids":{"explicit":["explicit.stat_128585622"],"fractured":["fractured.stat_128585622"]}}} +{"ref":"Minions can hear the whispers for # seconds after they deal a Critical Strike","better":1,"matchers":[{"string":"Приспешники могут слышать голоса в течение # секунд(-ы) после нанесения ими критического удара"}],"trade":{"ids":{"explicit":["explicit.stat_2735021664"]}}} +{"ref":"Minions cannot be Blinded","better":1,"matchers":[{"string":"Приспешников нельзя ослепить"}],"trade":{"ids":{"explicit":["explicit.stat_2684385509"]}}} +{"ref":"Minions convert #% of Physical Damage to Chaos Damage per White Socket","better":1,"matchers":[{"string":"#% физического урона приспешников становится уроном хаосом за каждое белое гнездо"}],"trade":{"ids":{"explicit":["explicit.stat_199362230"]}}} +{"ref":"Minions convert #% of Physical Damage to Cold Damage","better":1,"matchers":[{"string":"#% физического урона приспешников становится уроном от холода"}],"trade":{"ids":{"explicit":["explicit.stat_264042266"]}}} +{"ref":"Minions convert #% of Physical Damage to Cold Damage per Green Socket","better":1,"matchers":[{"string":"#% физического урона приспешников становится уроном от холода за каждое зеленое гнездо"}],"trade":{"ids":{"explicit":["explicit.stat_306443498"]}}} +{"ref":"Minions convert #% of Physical Damage to Fire Damage per Red Socket","better":1,"matchers":[{"string":"#% физического урона приспешников становится уроном от огня за каждое красное гнездо"}],"trade":{"ids":{"explicit":["explicit.stat_2139569643"]}}} +{"ref":"Minions convert #% of Physical Damage to Lightning Damage per Blue Socket","better":1,"matchers":[{"string":"#% физического урона приспешников становится уроном от молнии за каждое синее гнездо"}],"trade":{"ids":{"explicit":["explicit.stat_3366426512"]}}} +{"ref":"Minions Convert #% of their Maximum Life to Maximum Energy\nShield per 1% Chaos Resistance they have","better":1,"matchers":[{"string":"#% от максимума здоровья приспешников становится максимумом\nих энергетического щита за каждые 1% их сопротивления хаосу"}],"trade":{"ids":{"explicit":["explicit.stat_433536969"]}}} +{"ref":"Minions count as having the same number of\nEndurance, Frenzy and Power Charges as you","better":1,"matchers":[{"string":"Количество зарядов выносливости, ярости и\nэнергии ваших приспешников считается равным вашему"}],"trade":{"ids":{"explicit":["explicit.stat_2797097751"]}}} +{"ref":"Minions deal # to # additional Attack Physical Damage","better":1,"matchers":[{"string":"Приспешники наносят от # до # дополнительного физического урона от атак"}],"trade":{"ids":{"explicit":["explicit.stat_797833282"]}}} +{"ref":"Minions deal # to # additional Chaos Damage","better":1,"matchers":[{"string":"Приспешники наносят от # до # дополнительного урона хаосом"}],"trade":{"ids":{"explicit":["explicit.stat_2889601781"],"fractured":["fractured.stat_2889601781"]}}} +{"ref":"Minions deal # to # additional Cold Damage","better":1,"matchers":[{"string":"Приспешники наносят от # до # дополнительного урона от холода"}],"trade":{"ids":{"explicit":["explicit.stat_3152982863"],"fractured":["fractured.stat_3152982863"]}}} +{"ref":"Minions deal # to # additional Fire Damage","better":1,"matchers":[{"string":"Приспешники наносят от # до # дополнительного урона от огня"}],"trade":{"ids":{"explicit":["explicit.stat_3351784991"],"fractured":["fractured.stat_3351784991"]}}} +{"ref":"Minions deal # to # additional Lightning Damage","better":1,"matchers":[{"string":"Приспешники наносят от # до # дополнительного урона от молнии"}],"trade":{"ids":{"explicit":["explicit.stat_2930653471"],"fractured":["fractured.stat_2930653471"]}}} +{"ref":"Minions deal # to # additional Physical Damage","better":1,"matchers":[{"string":"Приспешники наносят от # до # дополнительного физического урона"}],"trade":{"ids":{"explicit":["explicit.stat_1172029298"],"fractured":["fractured.stat_1172029298"]}}} +{"ref":"Minions deal #% increased Damage","better":1,"matchers":[{"string":"Приспешники имеют #% увеличение урона"},{"string":"Приспешники имеют #% уменьшение урона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1589917703"],"implicit":["implicit.stat_1589917703"],"fractured":["fractured.stat_1589917703"],"enchant":["enchant.stat_1589917703"],"scourge":["scourge.stat_1589917703"],"crafted":["crafted.stat_1589917703"]}}} +{"ref":"Minions deal #% increased Damage if you've Hit Recently","better":1,"matchers":[{"string":"#% увеличение урона приспешников, если вы недавно наносили удар"},{"string":"#% уменьшение урона приспешников, если вы недавно наносили удар","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2337295272"]}}} +{"ref":"Minions deal #% increased Damage if you've used a Minion Skill Recently","better":1,"matchers":[{"string":"#% увеличение урона приспешников, если вы недавно использовали умение приспешников"},{"string":"#% уменьшение урона приспешников, если вы недавно использовали умение приспешников","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_412745376"],"fractured":["fractured.stat_412745376"]}}} +{"ref":"Minions deal #% increased Damage per 5 Dexterity","better":1,"matchers":[{"string":"Приспешники имеют #% увеличение урона за каждые 10 ловкости"},{"string":"Приспешники имеют #% уменьшение урона за каждые 10 ловкости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4187741589"]}}} +{"ref":"Minions deal #% increased Damage with Hits and Ailments against Abyssal Monsters","better":1,"matchers":[{"string":"Приспешники наносят увеличенный на #% урон от ударов и состояний по монстрам Бездны"},{"string":"Приспешники наносят уменьшенный на #% урон от ударов и состояний по монстрам Бездны","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1086057912"],"fractured":["fractured.stat_1086057912"]}}} +{"ref":"Minions deal no Non-Cold Damage","better":1,"matchers":[{"string":"Приспешники наносят только урон от холода"}],"trade":{"ids":{"explicit":["explicit.stat_935592011"]}}} +{"ref":"Minions gain #% of Elemental Damage as Extra Chaos Damage","better":1,"matchers":[{"string":"Приспешники наносят #% урона от стихий в виде дополнительного урона хаосом"}],"trade":{"ids":{"explicit":["explicit.stat_247168950"]}}} +{"ref":"Minions gain #% of Physical Damage as Extra Cold Damage","better":1,"matchers":[{"string":"Приспешники наносят #% от физического урона в виде дополнительного урона от холода"}],"trade":{"ids":{"explicit":["explicit.stat_1236638414"]}}} +{"ref":"Minions gain #% of Physical Damage as Extra Fire Damage","better":1,"matchers":[{"string":"Приспешники наносят #% физического урона в виде дополнительного урона от огня"}],"trade":{"ids":{"explicit":["explicit.stat_3217428772"]}}} +{"ref":"Minions gain Added Physical Damage equal to #% of Maximum Energy Shield on your Equipped Helmet","better":1,"matchers":[{"string":"Дарует приспешникам дополнительный физический урон, равный #% от максимума энергетического щита на вашем надетом шлеме"}],"trade":{"ids":{"explicit":["explicit.stat_2268802111"]}}} +{"ref":"Minions gain Unholy Might for # seconds on Kill","better":1,"matchers":[{"string":"Приспешники получают эффект Нечестивое могущество на # секунд при убийстве"}],"trade":{"ids":{"explicit":["explicit.stat_3835570161"]}}} +{"ref":"Minions have #% additional Physical Damage Reduction","better":1,"matchers":[{"string":"Приспешники имеют #% дополнительного уменьшения получаемого физического урона"}],"trade":{"ids":{"explicit":["explicit.stat_3119612865"],"fractured":["fractured.stat_3119612865"]}}} +{"ref":"Minions have #% chance to Blind Enemies on hit","better":1,"matchers":[{"string":"Приспешники имеют #% шанс ослепить врага при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_2939409392"]}}} +{"ref":"Minions have #% chance to Blind on Hit with Attacks","better":1,"matchers":[{"string":"Приспешники имеют #% шанс ослепить при нанесении удара атаками"},{"string":"Приспешники ослепляют при нанесении удара атаками","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2431643207"],"fractured":["fractured.stat_2431643207"]}}} +{"ref":"Minions have #% chance to cause Bleeding with Attacks","better":1,"matchers":[{"string":"Приспешники имеют #% шанс наложить кровотечение атаками"},{"string":"Приспешники накладывают кровотечение атаками","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3998967779"],"fractured":["fractured.stat_3998967779"]}}} +{"ref":"Minions have #% chance to deal Double Damage","better":1,"matchers":[{"string":"Приспешники имеют #% шанс нанести двойной урон"}],"trade":{"ids":{"explicit":["explicit.stat_755922799"],"fractured":["fractured.stat_755922799"]}}} +{"ref":"Minions have #% chance to Freeze, Shock and Ignite","better":1,"matchers":[{"string":"Приспешники имеют #% шанс наложить заморозку, шок и поджог"},{"string":"Приспешники всегда накладывают заморозку, шок и поджог","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1994549323"]}}} +{"ref":"Minions have #% chance to gain Unholy Might for 4 seconds on Kill","better":1,"matchers":[{"string":"Приспешники имеют #% шанс получить Нечестивое могущество на 4 секунды при убийстве"},{"string":"Приспешники получают Нечестивое могущество на 4 секунды при убийстве","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3131367308"]}}} +{"ref":"Minions have #% chance to Hinder Enemies on Hit with Spells","better":1,"matchers":[{"string":"Приспешники имеют #% шанс сковать врагов при нанесении удара чарами"},{"string":"Приспешники сковывают врагов при нанесении удара чарами","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2323739383"],"fractured":["fractured.stat_2323739383"]}}} +{"ref":"Minions have #% chance to Ignite","better":1,"matchers":[{"string":"Приспешники имеют #% шанс наложить поджог"}],"trade":{"ids":{"explicit":["explicit.stat_3945908658"],"fractured":["fractured.stat_3945908658"]}}} +{"ref":"Minions have #% chance to inflict Withered on Hit","better":1,"matchers":[{"string":"Приспешники с #% шансом могут наложить Истощение при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_1387367793"]}}} +{"ref":"Minions have #% chance to Maim Enemies on Hit with Attacks","better":1,"matchers":[{"string":"Приспешники имеют #% шанс изувечить врагов при нанесении удара атаками"},{"string":"Приспешники изувечивают врагов при нанесении удара атаками","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2138548436"]}}} +{"ref":"Minions have #% chance to Poison Enemies on Hit","better":1,"matchers":[{"string":"Приспешники имеют #% шанс отравить врагов при нанесении удара"},{"string":"Приспешники отравляют врагов при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1974445926"],"fractured":["fractured.stat_1974445926"]}}} +{"ref":"Minions have #% chance to Taunt on Hit with Attacks","better":1,"matchers":[{"string":"Приспешники имеют #% шанс спровоцировать при нанесении удара атаками"},{"string":"Приспешники провоцируют при нанесении удара атаками","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2911442053"],"fractured":["fractured.stat_2911442053"],"scourge":["scourge.stat_2911442053"]}}} +{"ref":"Minions have #% faster start of Energy Shield Recharge","better":1,"matchers":[{"string":"Приспешники имеют #% ускорение начала перезарядки энергетического щита"},{"string":"Приспешники имеют #% замедление начала перезарядки энергетического щита","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2834476618"]}}} +{"ref":"Minions have #% increased Area of Effect","better":1,"matchers":[{"string":"Приспешники имеют #% увеличение области действия"},{"string":"Приспешники имеют #% уменьшение области действия","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3811191316"],"fractured":["fractured.stat_3811191316"]}}} +{"ref":"Minions have #% increased Attack and Cast Speed","better":1,"matchers":[{"string":"Приспешники имеют #% повышение скорости атаки и сотворения чар"},{"string":"Приспешники имеют #% снижение скорости атаки и сотворения чар","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3091578504"],"fractured":["fractured.stat_3091578504"]}}} +{"ref":"Minions have #% increased Attack Speed","better":1,"matchers":[{"string":"Приспешники имеют #% повышение скорости атаки"},{"string":"Приспешники имеют #% снижение скорости атаки","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3375935924"],"implicit":["implicit.stat_3375935924"],"fractured":["fractured.stat_3375935924"],"scourge":["scourge.stat_3375935924"],"crafted":["crafted.stat_3375935924"]}}} +{"ref":"Minions have #% increased Cast Speed","better":1,"matchers":[{"string":"Приспешники имеют #% повышение скорости сотворения чар"},{"string":"Приспешники имеют #% снижение скорости сотворения чар","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4000101551"],"implicit":["implicit.stat_4000101551"],"fractured":["fractured.stat_4000101551"],"scourge":["scourge.stat_4000101551"],"crafted":["crafted.stat_4000101551"]}}} +{"ref":"Minions have #% increased Critical Strike Chance","better":1,"matchers":[{"string":"Приспешники имеют #% повышение шанса критического удара"},{"string":"Приспешники имеют #% снижение шанса критического удара","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_491450213"],"fractured":["fractured.stat_491450213"]}}} +{"ref":"Minions have #% increased Critical Strike Chance per Maximum Power Charge you have","better":1,"matchers":[{"string":"Приспешники имеют #% повышение шанса критического удара за максимум ваших зарядов энергии"},{"string":"Приспешники имеют #% снижение шанса критического удара за максимум ваших зарядов энергии","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_446070669"]}}} +{"ref":"Minions have #% increased Flask Effect Duration","better":1,"matchers":[{"string":"Приспешники имеют #% увеличение длительности эффекта флакона"},{"string":"Приспешники имеют #% уменьшение длительности эффекта флакона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1932583315"]}}} +{"ref":"Minions have #% increased maximum Life","better":1,"matchers":[{"string":"Приспешники имеют #% увеличение максимума здоровья"},{"string":"Приспешники имеют #% уменьшение максимума здоровья","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_770672621"],"implicit":["implicit.stat_770672621"],"fractured":["fractured.stat_770672621"],"enchant":["enchant.stat_770672621"],"scourge":["scourge.stat_770672621"],"crafted":["crafted.stat_770672621"]}}} +{"ref":"Minions have #% increased Movement Speed","better":1,"matchers":[{"string":"Приспешники имеют #% повышение скорости передвижения"},{"string":"Приспешники имеют #% снижение скорости передвижения","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_174664100"],"implicit":["implicit.stat_174664100"],"fractured":["fractured.stat_174664100"],"crafted":["crafted.stat_174664100"]}}} +{"ref":"Minions have #% reduced Flask Charges used","better":-1,"matchers":[{"string":"Приспешники имеют #% увеличение количества используемых зарядов флакона"},{"string":"Приспешники имеют #% уменьшение количества используемых зарядов флакона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_180240697"]},"inverted":true}} +{"ref":"Minions have +# to Accuracy Rating","better":1,"matchers":[{"string":"# к меткости приспешников"}],"trade":{"ids":{"explicit":["explicit.stat_1661151735"],"fractured":["fractured.stat_1661151735"]}}} +{"ref":"Minions have +# to Accuracy Rating per 10 Devotion","better":1,"matchers":[{"string":"Приспешники имеют # к меткости за каждые 10 набожности"}],"trade":{"ids":{"explicit":["explicit.stat_2830135449"]}}} +{"ref":"Minions have +# to Armour","better":1,"matchers":[{"string":"# к броне приспешников"}],"trade":{"ids":{"explicit":["explicit.stat_2048970144"]}}} +{"ref":"Minions have +#% Chance to Block Attack Damage","better":1,"matchers":[{"string":"Приспешники имеют #% шанс блокировать урон от атак"}],"trade":{"ids":{"explicit":["explicit.stat_3374054207"],"fractured":["fractured.stat_3374054207"],"scourge":["scourge.stat_3374054207"]}}} +{"ref":"Minions have +#% Chance to Block Spell Damage","better":1,"matchers":[{"string":"Приспешники имеют #% шанс блокировать урон от чар"}],"trade":{"ids":{"explicit":["explicit.stat_2762046953"],"scourge":["scourge.stat_2762046953"]}}} +{"ref":"Minions have +#% chance to Suppress Spell Damage","better":1,"matchers":[{"string":"#% шанс подавления урона от чар приспешниками"}],"trade":{"ids":{"explicit":["explicit.stat_3195300715"]}}} +{"ref":"Minions have +#% to all Elemental Resistances","better":1,"matchers":[{"string":"Приспешники имеют #% к сопротивлению всем стихиям"}],"trade":{"ids":{"explicit":["explicit.stat_1423639565"],"implicit":["implicit.stat_1423639565"],"fractured":["fractured.stat_1423639565"],"scourge":["scourge.stat_1423639565"],"crafted":["crafted.stat_1423639565"]}}} +{"ref":"Minions have +#% to all maximum Elemental Resistances","better":1,"matchers":[{"string":"Приспешники имеют #% к максимуму сопротивления всем стихиям"}],"trade":{"ids":{"explicit":["explicit.stat_10224385"],"fractured":["fractured.stat_10224385"]}}} +{"ref":"Minions have +#% to Chaos Resistance","better":1,"matchers":[{"string":"Приспешники имеют #% к сопротивлению хаосу"}],"trade":{"ids":{"explicit":["explicit.stat_3837707023"],"fractured":["fractured.stat_3837707023"],"scourge":["scourge.stat_3837707023"]}}} +{"ref":"Minions have +#% to Cold Resistance","better":1,"matchers":[{"string":"Приспешники имеют #% к сопротивлению холоду"}],"trade":{"ids":{"explicit":["explicit.stat_2200407711"]}}} +{"ref":"Minions have +#% to Critical Strike Multiplier","better":1,"matchers":[{"string":"Приспешники имеют #% к множителю критического удара"}],"trade":{"ids":{"explicit":["explicit.stat_1854213750"],"fractured":["fractured.stat_1854213750"]}}} +{"ref":"Minions have +#% to Critical Strike Multiplier per Grand Spectrum","better":1,"matchers":[{"string":"Приспешники имеют #% к множителю критического удара за каждый Великий образ"}],"trade":{"ids":{"explicit":["explicit.stat_482240997"]}}} +{"ref":"Minions have +#% to Critical Strike Multiplier per Withered Debuff on Enemy","better":1,"matchers":[{"string":"#% к множителю критического удара приспешников за каждый эффект Истощения на враге"}],"trade":{"ids":{"explicit":["explicit.stat_1494965559"]}}} +{"ref":"Minions have +#% to Damage over Time Multiplier per\nGhastly Eye Jewel affecting you, up to a maximum of +30%","better":1,"matchers":[{"string":"Приспешники имеют #% к множителю постепенного урона за\nкаждый влияющий на вас самоцвет призрачного глаза, вплоть до максимума в +30%"}],"trade":{"ids":{"explicit":["explicit.stat_613055432"]}}} +{"ref":"Minions have +#% to Fire Resistance","better":1,"matchers":[{"string":"Приспешники имеют #% к сопротивлению огню"}],"trade":{"ids":{"explicit":["explicit.stat_1889350679"]}}} +{"ref":"Minions have the same maximum number of Endurance, Frenzy and Power Charges as you","better":1,"matchers":[{"string":"Приспешники имеют такое же количество зарядов выносливости, ярости и энергии, как и вы"}],"trade":{"ids":{"explicit":["explicit.stat_3879726065"]}}} +{"ref":"Minions Leech #% of Damage as Life","dp":true,"better":1,"matchers":[{"string":"Приспешники похищают #% от урона в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_2770782267"],"fractured":["fractured.stat_2770782267"],"scourge":["scourge.stat_2770782267"]}}} +{"ref":"Minions Leech #% of Damage as Life against Poisoned Enemies","dp":true,"better":1,"matchers":[{"string":"Приспешники похищают у отравленных врагов #% от урона в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_548721233"]}}} +{"ref":"Minions Recover #% of Life on Killing a Poisoned Enemy","better":1,"matchers":[{"string":"Приспешники восстанавливают #% здоровья при убийстве отравленного врага"}],"trade":{"ids":{"explicit":["explicit.stat_2602664175"]}}} +{"ref":"Minions Recover #% of their Life when they Block","better":1,"matchers":[{"string":"Приспешники восстанавливают #% своего здоровья при блоке"}],"trade":{"ids":{"explicit":["explicit.stat_676967140"]}}} +{"ref":"Minions Recover #% of their Life when you Focus","better":1,"matchers":[{"string":"В момент получения Фокуса приспешники восстанавливают #% от их здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_3500359417"],"fractured":["fractured.stat_3500359417"],"crafted":["crafted.stat_3500359417"]}}} +{"ref":"Minions Regenerate # Life per second","better":1,"matchers":[{"string":"Приспешники регенерируют # здоровья в секунду"}],"trade":{"ids":{"explicit":["explicit.stat_3062329212"],"fractured":["fractured.stat_3062329212"]}}} +{"ref":"Minions Regenerate #% of Life per second","better":1,"matchers":[{"string":"Приспешники регенерируют #% здоровья в секунду"}],"trade":{"ids":{"explicit":["explicit.stat_2479683456"],"implicit":["implicit.stat_2479683456"],"fractured":["fractured.stat_2479683456"],"scourge":["scourge.stat_2479683456"]}}} +{"ref":"Minions summoned by Your Scout Towers have #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"3,3"}],"matchers":[{"string":"Приспешники, призванные вашей поисковой башней, наносят увеличенный на #% урон"},{"string":"Приспешники, призванные вашей поисковой башней, наносят уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3473724367"]}}} +{"ref":"Minions summoned by Your Scout Towers have #% increased Life","better":1,"matchers":[{"string":"Приспешники, призванные вашими поисковыми башнями, имеют увеличенное на #% здоровье"},{"string":"Приспешники, призванные вашими поисковыми башнями, имеют уменьшенное на #% здоровье","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1282857477"]}}} +{"ref":"Minions summoned by Your Scout Towers have #% increased Movement Speed","better":1,"anointments":[{"roll":25,"oils":"6,11"}],"matchers":[{"string":"Приспешники, призванные вашими поисковыми башнями, имеют повышенную на #% скорость передвижения"},{"string":"Приспешники, призванные вашими поисковыми башнями, имеют сниженную на #% скорость передвижения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_971955285"]}}} +{"ref":"Minions summoned by Your Scout Towers inflict Malediction on Hit","better":1,"anointments":[{"roll":1,"oils":"7,10"}],"matchers":[{"string":"Приспешники, призванные вашими поисковыми башнями, накладывают Злословие при нанесении удара"}],"trade":{"ids":{"enchant":["enchant.stat_42482990"]}}} +{"ref":"Minions summoned by Your Sentinel Towers have #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"1,5"}],"matchers":[{"string":"Приспешники, призванные вашими сторожевыми башнями, наносят увеличенный на #% урон"},{"string":"Приспешники, призванные вашими сторожевыми башнями, наносят уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2013536039"]}}} +{"ref":"Minions summoned by Your Sentinel Towers have #% increased Life","better":1,"anointments":[{"roll":50,"oils":"10,11"}],"matchers":[{"string":"#% увеличение здоровья приспешников, призванных вашими сторожевыми башнями"},{"string":"#% уменьшение здоровья приспешников, призванных вашими сторожевыми башнями","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3640837971"]}}} +{"ref":"Minions summoned by Your Sentinel Towers have #% increased Movement Speed","better":1,"anointments":[{"roll":25,"oils":"8,11"}],"matchers":[{"string":"Приспешники, призванные вашими сторожевыми башнями, имеют повышенную на #% скорость передвижения"},{"string":"Приспешники, призванные вашими сторожевыми башнями, имеют сниженную на #% скорость передвижения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1971866993"]}}} +{"ref":"Minions summoned by Your Sentinel Towers Leech #% of Damage as Life","dp":true,"better":1,"anointments":[{"roll":2,"oils":"7,7"}],"matchers":[{"string":"Приспешники, призванные вашими сторожевыми башнями, похищают #% от урона в виде здоровья"}],"trade":{"ids":{"enchant":["enchant.stat_4148328809"]}}} +{"ref":"Minions summoned by Your Summoning Towers have #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"2,4"}],"matchers":[{"string":"Приспешники, призванные вашими призывающими башнями, наносят увеличенный на #% урон"},{"string":"Приспешники, призванные вашими призывающими башнями, наносят уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_850390248"]}}} +{"ref":"Minions summoned by Your Summoning Towers have #% increased Life","better":1,"anointments":[{"roll":50,"oils":"5,12"}],"matchers":[{"string":"Приспешники, призванные вашими призывающими башнями, имеют увеличенное на #% здоровье"},{"string":"Приспешники, призванные вашими призывающими башнями, имеют уменьшенное на #% здоровье","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3651039490"]}}} +{"ref":"Minions summoned by Your Summoning Towers have #% increased Movement Speed","better":1,"anointments":[{"roll":25,"oils":"5,11"}],"matchers":[{"string":"Приспешники, призванные вашими призывающими башнями, имеют повышенную на #% скорость передвижения"},{"string":"Приспешники, призванные вашими призывающими башнями, имеют сниженную на #% скорость передвижения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1378482149"]}}} +{"ref":"Minions take #% reduced Reflected Damage","better":-1,"matchers":[{"string":"Приспешники получают увеличенный на #% отраженный урон"},{"string":"Приспешники получают уменьшенный на #% отраженный урон","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3056045252"]},"inverted":true}} +{"ref":"Minions' Base Attack Critical Strike Chance is equal to the Critical\nStrike Chance of your Main Hand Weapon","better":1,"matchers":[{"string":"Шанс критического удара базовой атаки приспешников равен\nшансу критического удара оружия в вашей правой руке"}],"trade":{"ids":{"explicit":["explicit.stat_3700085184"]}}} +{"ref":"Minions' Hits can only Kill Ignited Enemies","better":1,"matchers":[{"string":"Удары приспешников могут убивать только подожжённых врагов"}],"trade":{"ids":{"explicit":["explicit.stat_1736403946"]}}} +{"ref":"Mirror Arrow and Mirror Arrow Clones deal #% increased Damage","better":1,"matchers":[{"string":"Стрела-двойник и её клоны имеют #% увеличение урона"},{"string":"Стрела-двойник и её клоны имеют #% уменьшение урона","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4136186767"]}}} +{"ref":"Mirror Arrow and Mirror Arrow Clones have #% increased Attack Speed","better":1,"matchers":[{"string":"#% повышение скорости атаки Стрелы-двойника и её клонов"},{"string":"#% снижение скорости атаки Стрелы-двойника и её клонов","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3653459847"]}}} +{"ref":"Mirror Arrow has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"#% повышение скорости перезарядки Стрелы-двойника"},{"string":"#% снижение скорости перезарядки Стрелы-двойника","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1781106044"]}}} +{"ref":"Mirrored Tablet has # Islands","better":1,"matchers":[{"string":"Зеркальная табличка имеет # островков "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_lake_number_of_islands"]}}} +{"ref":"Modifiers to Attributes instead apply to Omniscience","better":1,"matchers":[{"string":"Модификаторы характеристик применяются к Всезнанию"}],"trade":{"ids":{"explicit":["explicit.stat_1411347992"]}}} +{"ref":"Modifiers to Chance to Avoid being Shocked apply to all Elemental Ailments","better":1,"matchers":[{"string":"Шанс избежать шок применяется ко всем стихийным состояниям"}],"trade":{"ids":{"explicit":["explicit.stat_2543019543"]}}} +{"ref":"Modifiers to Chance to Suppress Spell Damage also apply to Chance to Avoid Elemental Ailments at #% of their Value","better":1,"matchers":[{"string":"Свойства шанса подавления урона от чар также применяются к шансу избегания стихийных состояний в размере #% от их значения"}],"trade":{"ids":{"explicit":["explicit.stat_2401345409"]}}} +{"ref":"Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed with Melee Skills","better":1,"matchers":[{"string":"Модификаторы скорости атаки когтями также действуют на скорость атак умений ближнего боя без оружия"}],"trade":{"ids":{"explicit":["explicit.stat_2988055461"]}}} +{"ref":"Modifiers to Claw Critical Strike Chance also apply to Unarmed Critical Strike Chance with Melee Skills","better":1,"matchers":[{"string":"Модификаторы шанса критического удара когтями также действуют на шанс критического удара умениями ближнего боя без оружия"}],"trade":{"ids":{"explicit":["explicit.stat_531932482"]}}} +{"ref":"Modifiers to Claw Damage also apply to Unarmed Attack Damage with Melee Skills","better":1,"matchers":[{"string":"Модификаторы урона когтями также действуют на урон умениями ближнего боя без оружия"}],"trade":{"ids":{"explicit":["explicit.stat_2865232420"]}}} +{"ref":"Modifiers to Ignite Duration on you apply to all Elemental Ailments","better":1,"matchers":[{"string":"Свойства длительности поджога на вас применяются ко всем стихийным состояниям"}],"trade":{"ids":{"explicit":["explicit.stat_2845551354"]}}} +{"ref":"Modifiers to Item Quantity will affect the number of encounter rewards dropped by #% of their value","better":1,"matchers":[{"string":"Modifiers to Item Quantity will affect the number of encounter rewards dropped by #% of their value"},{"string":"Modifiers to Item Quantity will affect the number of encounter rewards dropped","value":100}],"trade":{"ids":{"implicit":["implicit.stat_1522386771"]}}} +{"ref":"Modifiers to Minimum Endurance Charges instead apply to Minimum Brutal Charges","better":1,"matchers":[{"string":"Модификаторы минимума зарядов выносливости вместо этого влияют на минимум зарядов жестокости"}],"trade":{"ids":{"explicit":["explicit.stat_2966482502"]}}} +{"ref":"Modifiers to Minimum Frenzy Charges instead apply to Minimum Affliction Charges","better":1,"matchers":[{"string":"Модификаторы минимума зарядов ярости вместо этого влияют на минимум зарядов подавления"}],"trade":{"ids":{"explicit":["explicit.stat_1424305790"]}}} +{"ref":"Modifiers to Minimum Power Charges instead apply to Minimum Absorption Charges","better":1,"matchers":[{"string":"Модификаторы минимума зарядов энергии вместо этого влияют на минимум зарядов поглощения"}],"trade":{"ids":{"explicit":["explicit.stat_1752582590"]}}} +{"ref":"Modifiers to number of Projectiles instead apply\nto the number of targets Projectiles Split towards","better":1,"matchers":[{"string":"Модификаторы количества снарядов вместо этого влияют на количество целей, в направлении которых разделяются снаряды"}],"trade":{"ids":{"explicit":["explicit.stat_2057712935"]}}} +{"ref":"Molten Shell has #% increased Skill Effect Duration","better":1,"matchers":[{"string":"Расплавленный панцирь имеет #% увеличение длительности эффектов умений"},{"string":"Расплавленный панцирь имеет #% уменьшение длительности эффектов умений","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4255043252"]}}} +{"ref":"Molten Strike fires an additional Projectile","better":1,"matchers":[{"string":"Магмовый удар выпускает дополнительных снарядов: #"},{"string":"Магмовый удар выпускает дополнительный снаряд","value":1}],"trade":{"ids":{"enchant":["enchant.stat_995860222"]}}} +{"ref":"Monster Damage Penetrates #% Elemental Resistances","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Урон монстров пробивает #% сопротивлений стихиям"}],"trade":{"ids":{"explicit":["explicit.stat_1898978455"],"fractured":["fractured.stat_1898978455"]}}} +{"ref":"Monsters are Hexproof","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Монстры имеют свойство Заговоренный"}],"trade":{"ids":{"explicit":["explicit.stat_4154059009"],"fractured":["fractured.stat_4154059009"]}}} +{"ref":"Monsters are Unaffected by Curses","better":1,"fromAreaMods":true,"matchers":[{"string":"Монстры невосприимчивы к проклятиям"}],"trade":{"ids":{"explicit":["explicit.stat_1472832594"]}}} +{"ref":"Monsters cannot be Leeched from","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"У монстров нельзя похищать ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_1140978125"],"fractured":["fractured.stat_1140978125"]}}} +{"ref":"Monsters cannot be Stunned","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Монстры не могут быть оглушены"}],"trade":{"ids":{"explicit":["explicit.stat_1041951480"],"fractured":["fractured.stat_1041951480"]}}} +{"ref":"Monsters cannot be Taunted","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Монстров нельзя спровоцировать"}],"trade":{"ids":{"explicit":["explicit.stat_1106651798"],"fractured":["fractured.stat_1106651798"]}}} +{"ref":"Monsters deal #% extra Physical Damage as Cold","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Монстры наносят #% дополнительного физического урона в виде урона от холода"}],"trade":{"ids":{"explicit":["explicit.stat_3448216135"],"fractured":["fractured.stat_3448216135"]}}} +{"ref":"Monsters deal #% extra Physical Damage as Fire","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Монстры наносят #% дополнительного физического урона в виде урона от огня"}],"trade":{"ids":{"explicit":["explicit.stat_1497673356"],"fractured":["fractured.stat_1497673356"]}}} +{"ref":"Monsters deal #% extra Physical Damage as Lightning","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Монстры наносят #% дополнительного физического урона в виде урона от молнии"}],"trade":{"ids":{"explicit":["explicit.stat_3416853625"],"fractured":["fractured.stat_3416853625"]}}} +{"ref":"Monsters fire # additional Projectiles","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Игроки выпускают дополнительных снарядов: #"},{"string":"Игроки и монстры выпускают дополнительных снарядов: #"},{"string":"Монстры выпускают дополнительных снарядов: #"}],"trade":{"ids":{"explicit":["explicit.stat_1309819744"],"fractured":["fractured.stat_1309819744"]}}} +{"ref":"Monsters gain #% of Maximum Life as Extra Maximum Energy Shield","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Монстры получают #% от максимума здоровья в виде дополнительного энергетического щита"}],"trade":{"ids":{"explicit":["explicit.stat_2887760183"],"fractured":["fractured.stat_2887760183"]}}} +{"ref":"Monsters gain #% of their Physical Damage as Extra Chaos Damage","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Монстры наносят #% от их физического урона в виде дополнительного урона хаосом"}],"trade":{"ids":{"explicit":["explicit.stat_1840747977"],"fractured":["fractured.stat_1840747977"]}}} +{"ref":"Monsters gain #% of their Physical Damage as Extra Damage of a random Element","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Монстры наносят #% от их физического урона в виде дополнительного урона от случайной стихии"}],"trade":{"ids":{"explicit":["explicit.stat_4062840317"],"fractured":["fractured.stat_4062840317"]}}} +{"ref":"Monsters have #% chance to Avoid Ailments","better":1,"fromAreaMods":true,"matchers":[{"string":"Монстры с #% шансом могут избежать состояний"}],"trade":{"ids":{"explicit":["explicit.stat_376585490"]}}} +{"ref":"Monsters have #% chance to Avoid Elemental Ailments","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Монстры с #% шансом могут избежать стихийных состояний"}],"trade":{"ids":{"explicit":["explicit.stat_322206271"],"fractured":["fractured.stat_322206271"]}}} +{"ref":"Monsters have #% chance to Blind on Hit","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Монстры с #% шансом могут ослепить при нанесении удара"},{"string":"Монстры ослепляют при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1629869774"],"fractured":["fractured.stat_1629869774"]}}} +{"ref":"Monsters have #% chance to drop Double Aureus Coins","better":1,"matchers":[{"string":"Из монстров с #% шансом выпадет двойное количество Ауруса"}],"trade":{"ids":{"explicit":["sanctum.stat_231205265"]}}} +{"ref":"Monsters have #% chance to Duplicate dropped Rogue's Marker","better":1,"matchers":[{"string":"Выпадающие из монстров разбойничьи жетоны имеют #% шанс удвоиться"},{"string":"Выпадающие из монстров разбойничьи жетоны удваиваются","value":100}],"trade":{"ids":{"explicit":["explicit.stat_823106560"]}}} +{"ref":"Monsters have #% chance to gain a Frenzy Charge on Hit","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Монстры имеют #% шанс получить заряд ярости при нанесении удара"},{"string":"Монстры получают заряд ярости при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1742567045"],"fractured":["fractured.stat_1742567045"]}}} +{"ref":"Monsters have #% chance to gain a Power Charge on Hit","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Монстры имеют #% шанс получить заряд энергии при нанесении удара"},{"string":"Монстры получают заряд энергии при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_406353061"],"fractured":["fractured.stat_406353061"]}}} +{"ref":"Monsters have #% chance to gain an Endurance Charge on Hit","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Монстры имеют #% шанс получить заряд выносливости при нанесении удара"},{"string":"Монстры получают заряд выносливости при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_687813731"],"fractured":["fractured.stat_687813731"]}}} +{"ref":"Monsters have #% chance to Hinder on Hit with Spells","better":1,"fromAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Монстры имеют #% шанс сковать при нанесении удара чарами"},{"string":"Монстры сковывают при нанесении удара чарами","value":100}],"trade":{"ids":{"explicit":["explicit.stat_962720646"],"fractured":["fractured.stat_962720646"]}}} +{"ref":"Monsters have #% chance to inflict Withered for 2 seconds on Hit","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Монстры с #% шансом могут наложить Истощение на 2 секунды при нанесении удара"},{"string":"Монстры накладывают Истощение на 2 секунды при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3044826007"],"fractured":["fractured.stat_3044826007"]}}} +{"ref":"Monsters have #% chance to Maim on Hit with Attacks","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Монстры имеют #% шанс наложить увечье при нанесении удара атаками"},{"string":"Монстры накладывают увечье при нанесении удара атаками","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4164174520"],"fractured":["fractured.stat_4164174520"]}}} +{"ref":"Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Монстры имеют #% шанс похищать заряды энергии, ярости и выносливости при нанесении удара"},{"string":"Монстры похищают заряды энергии, ярости и выносливости при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3222482040"],"fractured":["fractured.stat_3222482040"]}}} +{"ref":"Monsters have #% increased Accuracy Rating","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Меткость монстров повышена на #%"},{"string":"Меткость монстров снижена на #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1588049749"],"fractured":["fractured.stat_1588049749"]}}} +{"ref":"Monsters have #% increased Area of Effect","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Монстры имеют #% увеличение области действия"},{"string":"Монстры имеют #% уменьшение области действия","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1708461270"],"fractured":["fractured.stat_1708461270"]}}} +{"ref":"Monsters have #% increased Critical Strike Chance","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Монстры имеют #% повышение шанса критического удара"},{"string":"Монстры имеют #% снижение шанса критического удара","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2753083623"],"fractured":["fractured.stat_2753083623"]}}} +{"ref":"Monsters have #% increased Poison Duration","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Монстры имеют #% увеличение длительности яда"},{"string":"Монстры имеют #% уменьшение длительности яда","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_134839587"],"fractured":["fractured.stat_134839587"]}}} +{"ref":"Monsters have +# to Maximum Endurance Charges","better":1,"fromUberAreaMods":true,"matchers":[{"string":"# к максимуму зарядов выносливости монстров"}],"trade":{"ids":{"explicit":["explicit.stat_4067268731"],"fractured":["fractured.stat_4067268731"]}}} +{"ref":"Monsters have +# to Maximum Frenzy Charges","better":1,"fromUberAreaMods":true,"matchers":[{"string":"# к максимуму зарядов ярости монстров"}],"trade":{"ids":{"explicit":["explicit.stat_3900284865"],"fractured":["fractured.stat_3900284865"]}}} +{"ref":"Monsters have +# to Maximum Power Charges","better":1,"fromUberAreaMods":true,"matchers":[{"string":"# к максимуму зарядов энергии монстров"}],"trade":{"ids":{"explicit":["explicit.stat_1103106414"],"fractured":["fractured.stat_1103106414"]}}} +{"ref":"Monsters have +#% Chance to Block Attack Damage","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"matchers":[{"string":"Монстры имеют #% к шансу блокировать урон от атак"}],"trade":{"ids":{"explicit":["explicit.stat_881836292"],"fractured":["fractured.stat_881836292"]}}} +{"ref":"Monsters have +#% Chance to Block Spell Damage","better":1,"fromAreaMods":true,"matchers":[{"string":"Монстры имеют #% к шансу блокировать урон от чар"}],"trade":{"ids":{"explicit":["explicit.stat_395617565"]}}} +{"ref":"Monsters have +#% chance to Suppress Spell Damage","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Монстры с #% шансом могут подавить урон от чар"}],"trade":{"ids":{"explicit":["explicit.stat_2138205941"],"fractured":["fractured.stat_2138205941"]}}} +{"ref":"Monsters have a #% chance to avoid Poison, Impale, and Bleeding","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Монстры имеют #% шанс избежать отравления, Прокола и кровотечения"}],"trade":{"ids":{"explicit":["explicit.stat_144665660"],"fractured":["fractured.stat_144665660"]}}} +{"ref":"Monsters have a #% chance to gain an Endurance Charge when hit","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Монстры с #% шансом получают заряд выносливости при получении удара"},{"string":"Монстры получают заряд выносливости при получении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3707756896"],"fractured":["fractured.stat_3707756896"]}}} +{"ref":"Monsters have a #% chance to Ignite, Freeze and Shock on Hit","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Монстры с #% шансом могут поджечь, заморозить и наложить шок при нанесении удара"},{"string":"Монстры накладывают поджог, заморозку и шок при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2553656203"],"fractured":["fractured.stat_2553656203"]}}} +{"ref":"Monsters impact #% increased Resolve","better":1,"matchers":[{"string":"Монстры влияют на решимость на #% сильнее"},{"string":"Монстры влияют на решимость на #% слабее","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_3554249693"]}}} +{"ref":"Monsters inflict # Grasping Vine on Hit","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Монстры накладывают цепких лиан при нанесении удара: #"}],"trade":{"ids":{"explicit":["explicit.stat_1751584857"],"fractured":["fractured.stat_1751584857"]}}} +{"ref":"Monsters Poison on Hit","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Монстры отравляют при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_3350803563","explicit.stat_394639761"],"fractured":["fractured.stat_3350803563"]}}} +{"ref":"Monsters prevent +#% of Suppressed Spell Damage","better":1,"fromAreaMods":true,"matchers":[{"string":"#% к количеству предотвращенного монстрами подавленного урона от чар"},{"string":"Монстры предотвращают #% подавленного урона от чар"}],"trade":{"ids":{"explicit":["explicit.stat_1260060682"]}}} +{"ref":"Monsters reflect #% of Elemental Damage","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Монстры отражают #% урона от стихий"}],"trade":{"ids":{"explicit":["explicit.stat_2764017512"],"fractured":["fractured.stat_2764017512"]}}} +{"ref":"Monsters reflect #% of Physical Damage","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Монстры отражают #% физического урона"}],"trade":{"ids":{"explicit":["explicit.stat_3464419871"],"fractured":["fractured.stat_3464419871"]}}} +{"ref":"Monsters Reflect Hexes","better":1,"fromAreaMods":true,"matchers":[{"string":"Монстры отражают порчи"}],"trade":{"ids":{"explicit":["explicit.stat_1341845920"]}}} +{"ref":"Monsters take #% increased Damage","better":1,"matchers":[{"string":"Монстры получают увеличенный на #% урон"},{"string":"Монстры получают уменьшенный на #% урон","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3007862517","sanctum.stat_2549512259"]}}} +{"ref":"Monsters take #% reduced Extra Damage from Critical Strikes","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Монстры получают #% уменьшение дополнительного урона от критических ударов"},{"string":"Монстры получают #% увеличение дополнительного урона от критических ударов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_337935900"],"fractured":["fractured.stat_337935900"]}}} +{"ref":"Monsters' Action Speed cannot be modified to below Base Value","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Скорость действий монстров не может быть изменена ниже базового значения"}],"trade":{"ids":{"explicit":["explicit.stat_2758454849"],"fractured":["fractured.stat_2758454849"]}}} +{"ref":"Monsters' Action Speed cannot be modified to below Base Value\nMonsters' Movement Speed cannot be modified to below Base Value","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Скорость действий монстров не может быть изменена ниже базового значения\nСкорость передвижения монстров не может быть изменена ниже базового значения"}],"trade":{"ids":{"explicit":["explicit.stat_798009319"],"fractured":["fractured.stat_798009319"]}}} +{"ref":"Monsters' Attacks have #% chance to Impale on Hit","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Атаки монстров с #% шансом могут наложить Прокол при нанесении удара"},{"string":"Атаки монстров накладывают Прокол при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1541224187"],"fractured":["fractured.stat_1541224187"]}}} +{"ref":"Monsters' Movement Speed cannot be modified to below Base Value","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Скорость передвижения монстров не может быть изменена ниже базового значения"}],"trade":{"ids":{"explicit":["explicit.stat_777421120"],"fractured":["fractured.stat_777421120"]}}} +{"ref":"Monsters' Projectiles have #% chance to be able to Chain when colliding with Terrain","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Снаряды монстров с #% шансом могут ударить по цепи при столкновении с окружающей средой"},{"string":"Снаряды монстров наносят удар по цепи при столкновении с окружающей средой","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2753403220"],"fractured":["fractured.stat_2753403220"]}}} +{"ref":"Monsters' skills Chain # additional times","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Монстры поражают целей по цепи: #"}],"trade":{"ids":{"explicit":["explicit.stat_3183973644"],"fractured":["fractured.stat_3183973644"]}}} +{"ref":"More Currency: #%","better":1,"matchers":[{"string":"Больше валюты: #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_more_currency_drops"]}}} +{"ref":"More Divination Cards: #%","better":1,"matchers":[{"string":"Больше гадальных карт: #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_more_card_drops"]}}} +{"ref":"More Maps: #%","better":1,"matchers":[{"string":"Больше карт: #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_more_map_drops"]}}} +{"ref":"More Scarabs: #%","better":1,"matchers":[{"string":"Больше скарабеев: #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_more_scarab_drops"]}}} +{"ref":"Movement Speed cannot be modified to below Base Value","better":1,"matchers":[{"string":"Скорость передвижения не может быть ниже своего базового значения"}],"trade":{"ids":{"explicit":["explicit.stat_3875592188"],"fractured":["fractured.stat_3875592188"]}}} +{"ref":"Moving while Bleeding doesn't cause you to take extra Damage","better":1,"matchers":[{"string":"Передвижение во время кровотечения не приводит к получению дополнительного урона"}],"trade":{"ids":{"explicit":["explicit.stat_935326447"],"fractured":["fractured.stat_935326447"],"crafted":["crafted.stat_935326447"]}}} +{"ref":"Nearby allies gain #% increased Damage","better":1,"matchers":[{"string":"Ближайшие союзники получают #% увеличение урона"}],"trade":{"ids":{"explicit":["explicit.stat_3175679225"]}}} +{"ref":"Nearby Allies gain #% increased Mana Regeneration Rate","better":1,"matchers":[{"string":"Ближайшие союзники получают #% повышение скорости регенерации маны"}],"trade":{"ids":{"explicit":["explicit.stat_778848857"]}}} +{"ref":"Nearby Allies gain #% of Life Regenerated per second","better":1,"matchers":[{"string":"Ближайшие союзники регенерируют #% здоровья в секунду"}],"trade":{"ids":{"explicit":["explicit.stat_3462673103"]}}} +{"ref":"Nearby Allies have #% Chance to Block Attack Damage per 100 Strength you have","better":1,"matchers":[{"string":"Ближайшие союзники имеют #% шанс блокировать урон от атак за каждые 100 вашей силы"}],"trade":{"ids":{"explicit":["explicit.stat_3941641418"]}}} +{"ref":"Nearby Allies have #% increased Cast Speed per 100 Intelligence you have","better":1,"matchers":[{"string":"Ближайшие союзники получают #% повышение скорости сотворения чар за каждые 100 вашего интеллекта"},{"string":"Ближайшие союзники получают #% снижение скорости сотворения чар за каждые 100 вашего интеллекта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2373999301"]}}} +{"ref":"Nearby Allies have #% increased Defences per 100 Strength you have","better":1,"matchers":[{"string":"Ближайшие союзники получают #% повышение защиты за каждые 100 вашей силы"},{"string":"Ближайшие союзники получают #% уменьшение защиты за каждые 100 вашей силы","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3767939384"]}}} +{"ref":"Nearby Allies have #% increased Item Rarity","better":1,"matchers":[{"string":"Ближайшие союзники имеют #% повышение редкости найденных предметов"},{"string":"Ближайшие союзники имеют #% снижение редкости найденных предметов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1722463112"]}}} +{"ref":"Nearby Allies have +# Fortification","better":1,"matchers":[{"string":"# заряда(-ов) Укрепления ближайших союзников"}],"trade":{"ids":{"explicit":["explicit.stat_244825991"]}}} +{"ref":"Nearby Allies have +#% to Critical Strike Multiplier","better":1,"matchers":[{"string":"#% к множителю критического удара ближайших союзников"}],"trade":{"ids":{"explicit":["explicit.stat_3152714748"]}}} +{"ref":"Nearby Allies have +#% to Critical Strike Multiplier per 100 Dexterity you have","better":1,"matchers":[{"string":"Ближайшие союзники получают #% к множителю критического удара за каждые 100 вашей ловкости"}],"trade":{"ids":{"explicit":["explicit.stat_1438488526"]}}} +{"ref":"Nearby Allies have Culling Strike","better":1,"matchers":[{"string":"Ближайшие союзники получают эффект Добивание"}],"trade":{"ids":{"explicit":["explicit.stat_1560540713"]}}} +{"ref":"Nearby allies Recover #% of your Maximum Life when you Die","dp":true,"better":1,"matchers":[{"string":"Ближайшие союзники восстанавливают #% от вашего максимума здоровья при вашей смерти"}],"trade":{"ids":{"explicit":["explicit.stat_3484267929"]}}} +{"ref":"Nearby Allies' Action Speed cannot be modified to below Base Value","better":1,"matchers":[{"string":"Скорость действий ближайших союзников не может быть уменьшена ниже базового значения"}],"trade":{"ids":{"explicit":["explicit.stat_1356468153"]}}} +{"ref":"Nearby Allies' Damage with Hits is Lucky","better":1,"matchers":[{"string":"Ближайшие союзники удачливы при нанесении урона врагам"}],"trade":{"ids":{"explicit":["explicit.stat_655871604"]}}} +{"ref":"Nearby corpses Explode when you Warcry, dealing #% of their Life as Physical Damage","better":1,"matchers":[{"string":"Ближайшие трупы взрываются, когда вы используете боевой клич, нанося #% от их здоровья в виде физического урона"}],"trade":{"ids":{"explicit":["explicit.stat_293071889"]}}} +{"ref":"Nearby Enemies are Blinded","better":1,"matchers":[{"string":"Ближайшие враги получают ослепление"}],"trade":{"ids":{"explicit":["explicit.stat_2826979740"],"implicit":["implicit.stat_2826979740"],"fractured":["fractured.stat_2826979740"]}}} +{"ref":"Nearby Enemies are Blinded while Physical Aegis is not depleted","better":1,"matchers":[{"string":"Ближайшие враги ослеплены, пока Физическая Эгида не истощится"}],"trade":{"ids":{"explicit":["explicit.stat_2504709365"]}}} +{"ref":"Nearby Enemies are Chilled","better":1,"matchers":[{"string":"Ближайшие враги охлаждены"}],"trade":{"ids":{"explicit":["explicit.stat_2159555743","explicit.stat_2480873346"]}}} +{"ref":"Nearby Enemies are Covered in Ash","better":1,"matchers":[{"string":"Ближайшие враги покрываются пеплом"}],"trade":{"ids":{"explicit":["explicit.stat_746994389"]}}} +{"ref":"Nearby Enemies are Crushed","better":1,"matchers":[{"string":"Ближайшие враги сокрушены"}],"trade":{"ids":{"implicit":["implicit.stat_3608782127"]}}} +{"ref":"Nearby Enemies are Crushed while you have at least # Rage","better":1,"matchers":[{"string":"Ближайшие враги сокрушены пока у вас есть минимум # свирепости"}],"trade":{"ids":{"explicit":["explicit.stat_3069588220"]}}} +{"ref":"Nearby Enemies are Hindered, with #% reduced Movement Speed","better":-1,"matchers":[{"string":"Ближайшие враги скованы, их скорость передвижения повышена на #%"},{"string":"Ближайшие враги скованы, их скорость передвижения снижена на #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_607839150"]},"inverted":true}} +{"ref":"Nearby Enemies are Intimidated","better":1,"matchers":[{"string":"Ближайшие враги устрашены"}],"trade":{"ids":{"explicit":["explicit.stat_2899095498"]}}} +{"ref":"Nearby Enemies are Scorched","better":1,"matchers":[{"string":"Ближайшие враги опалены"}],"trade":{"ids":{"explicit":["explicit.stat_3733114005"]}}} +{"ref":"Nearby Enemies cannot deal Critical Strikes","better":1,"matchers":[{"string":"Ближайшие враги не могут наносить критические удары"}],"trade":{"ids":{"explicit":["explicit.stat_1177959871"]}}} +{"ref":"Nearby Enemies cannot gain Power, Frenzy or Endurance Charges","better":1,"matchers":[{"string":"Ближайшие враги не могут получить заряды энергии, ярости или выносливости"}],"trade":{"ids":{"explicit":["explicit.stat_4031527864"]}}} +{"ref":"Nearby Enemies Convert #% of their Physical Damage to Fire","better":1,"matchers":[{"string":"#% физического урона ближайших врагов становится уроном от огня"}],"trade":{"ids":{"explicit":["explicit.stat_3729324251"]}}} +{"ref":"Nearby Enemies grant #% increased Flask Charges","better":1,"matchers":[{"string":"#% увеличение зарядов флакона, получаемых от ближайших врагов"},{"string":"#% уменьшение зарядов флакона, получаемых от ближайших врагов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3547189490"]}}} +{"ref":"Nearby Enemies have #% increased Effect of Curses on them","better":1,"matchers":[{"string":"Ближайшие враги получают #% усиление эффекта проклятий на них"}],"trade":{"ids":{"explicit":["explicit.stat_443525707"]}}} +{"ref":"Nearby Enemies have #% increased Fire and Cold Resistances","better":1,"matchers":[{"string":"Ближайшие враги имеют #% увеличение сопротивлений огню и холоду"},{"string":"Ближайшие враги имеют #% уменьшение сопротивлений огню и холоду","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4273356746"]}}} +{"ref":"Nearby Enemies have #% reduced Stun and Block Recovery","better":-1,"matchers":[{"string":"Ближайшие враги имеют #% ускорение восстановления после оглушения и блока"},{"string":"Ближайшие враги имеют #% замедление восстановления после оглушения и блока","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3169825297"]},"inverted":true}} +{"ref":"Nearby Enemies have #% to all Resistances","better":-1,"matchers":[{"string":"#% ко всем сопротивлениям ближайших врагов"}],"trade":{"ids":{"explicit":["explicit.stat_668145148"]}}} +{"ref":"Nearby Enemies have +#% to Chaos Resistance","better":-1,"matchers":[{"string":"Ближайшие враги имеют #% к сопротивлению хаосу"}],"trade":{"ids":{"explicit":["explicit.stat_1902595112"],"fractured":["fractured.stat_1902595112"],"scourge":["scourge.stat_1902595112"]}}} +{"ref":"Nearby Enemies have +#% to Cold Resistance","better":-1,"matchers":[{"string":"Ближайшие враги имеют #% к сопротивлению холоду"}],"trade":{"ids":{"explicit":["explicit.stat_2674336304"],"fractured":["fractured.stat_2674336304"],"scourge":["scourge.stat_2674336304"]}}} +{"ref":"Nearby Enemies have +#% to Fire Resistance","better":-1,"matchers":[{"string":"Ближайшие враги имеют #% к сопротивлению огню"}],"trade":{"ids":{"explicit":["explicit.stat_3914021960"],"fractured":["fractured.stat_3914021960"],"scourge":["scourge.stat_3914021960"]}}} +{"ref":"Nearby Enemies have +#% to Lightning Resistance","better":-1,"matchers":[{"string":"Ближайшие враги имеют #% к сопротивлению молнии"}],"trade":{"ids":{"explicit":["explicit.stat_1849749435"],"fractured":["fractured.stat_1849749435"],"scourge":["scourge.stat_1849749435"]}}} +{"ref":"Nearby Enemies have Lightning Resistance equal to yours","better":1,"matchers":[{"string":"Сопротивление молнии ближайших врагов равно вашему"}],"trade":{"ids":{"explicit":["explicit.stat_3549734978"]}}} +{"ref":"Nearby Enemies have Malediction","better":1,"matchers":[{"string":"На ближайших врагов действует Злословие"}],"trade":{"ids":{"implicit":["implicit.stat_2774148053"]}}} +{"ref":"Nearby Enemies Killed by anyone count as being Killed by you instead","better":1,"matchers":[{"string":"Убитые кем-либо ближайшие враги считаются за убитых вами"}],"trade":{"ids":{"explicit":["explicit.stat_2307982579"]}}} +{"ref":"Nearby Enemies take #% increased Elemental Damage","better":1,"matchers":[{"string":"Ближайшие враги получают увеличенный на #% урон от стихий"}],"trade":{"ids":{"explicit":["explicit.stat_639595152"],"fractured":["fractured.stat_639595152"]}}} +{"ref":"Nearby Enemies take #% increased Physical Damage","better":1,"matchers":[{"string":"Ближайшие враги получают увеличенный на #% физический урон"},{"string":"Ближайшие враги получают уменьшенный на #% физический урон","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_415837237"],"fractured":["fractured.stat_415837237"],"scourge":["scourge.stat_415837237"]}}} +{"ref":"Nearby Enemies' Chaos Resistance is 0","better":1,"matchers":[{"string":"Сопротивление хаосу ближайших врагов равно 0"}],"trade":{"ids":{"explicit":["explicit.stat_663080464"]}}} +{"ref":"Nearby Enemy Monsters have at least #% of Life Reserved","better":1,"matchers":[{"string":"Удерживает как минимум #% здоровья у ближайших монстров"}],"trade":{"ids":{"explicit":["explicit.stat_1063263585"]}}} +{"ref":"Nearby stationary Enemies gain a Grasping Vine every second","better":1,"matchers":[{"string":"Ближайшие неподвижные враги попадают под действие цепкой лианы каждые # секунды"},{"string":"Ближайшие неподвижные враги попадают под действие цепкой лианы каждую секунду","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3469279727"]}}} +{"ref":"Necrotic Footprints","better":1,"matchers":[{"string":"Некротические следы"}],"trade":{"ids":{"explicit":["explicit.stat_214242256"]}}} +{"ref":"Never deal Critical Strikes","better":1,"matchers":[{"string":"Никогда не наносит критических ударов"}],"trade":{"ids":{"explicit":["explicit.stat_3638599682"],"scourge":["scourge.stat_3638599682"]}}} +{"ref":"No Chance to Block","better":1,"matchers":[{"string":"Нет шанса блока"}],"trade":{"ids":{"explicit":["explicit.stat_1023752508"]}}} +{"ref":"No Resolve Mitigation, chance to Avoid Resolve loss or Resolve Aegis","better":1,"matchers":[{"string":"Отсутствуют защита решимости, шанс избежать потери решимости и Эгида решимости"}],"trade":{"ids":{"explicit":["sanctum.stat_1278905604"]}}} +{"ref":"No Travel Cost","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"Без расходов на перемещение"}],"trade":{"ids":{"explicit":["explicit.stat_2946222246"],"fractured":["fractured.stat_2946222246"]}}} +{"ref":"Non-Aura Curses you inflict are not removed from Dying Enemies","better":1,"matchers":[{"string":"Наложенные вами проклятия не-ауры не исчезают с врагов при их смерти"}],"trade":{"ids":{"explicit":["explicit.stat_847744351"]}}} +{"ref":"Non-Aura Hexes expire upon reaching #% of base Effect","better":1,"matchers":[{"string":"Порчи не-ауры исчезают по достижении #% от базового эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_2417456003"]}}} +{"ref":"Non-Aura Hexes gain 20% increased Effect per second","better":1,"matchers":[{"string":"Порчи не ауры получают 20% усиление эффекта в секунду"}],"trade":{"ids":{"explicit":["explicit.stat_3266609002"]}}} +{"ref":"Non-Aura Vaal Skills require #% reduced Souls Per Use","better":-1,"matchers":[{"string":"Для каждого использования умений не-аур ваал требуется увеличенное на #% количество душ"},{"string":"Для каждого использования умений не-аур ваал требуется уменьшенное на #% количество душ","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3533432197"],"fractured":["fractured.stat_3533432197"]},"inverted":true}} +{"ref":"Non-Aura Vaal Skills require #% reduced Souls Per Use during Effect","better":-1,"matchers":[{"string":"Умения ваал не-ауры для использования требуют увеличенное на #% количество душ во время действия эффекта"},{"string":"Умения ваал не-ауры для использования требуют уменьшенное на #% количество душ во время действия эффекта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1274125114"]},"inverted":true}} +{"ref":"Non-Channelling Skills Cost +# Mana","better":1,"matchers":[{"string":"# к расходу маны неподдерживаемыми умениями"}],"trade":{"ids":{"explicit":["explicit.stat_407482587"],"crafted":["crafted.stat_407482587"]}}} +{"ref":"Non-Channelling Skills have +# to Total Mana Cost","better":1,"matchers":[{"string":"# к итоговому расходу маны неподдерживаемыми умениями"}],"trade":{"ids":{"explicit":["explicit.stat_677564538"],"fractured":["fractured.stat_677564538"],"crafted":["crafted.stat_677564538"]}}} +{"ref":"Non-Channelling Skills have +# to Total Mana Cost while affected by Clarity","better":1,"matchers":[{"string":"# к итоговому расходу маны неподдерживаемыми умениями под действием Ясности ума"}],"trade":{"ids":{"explicit":["explicit.stat_1853636813"]}}} +{"ref":"Non-Chilled Enemies you inflict Bleeding on are Chilled","better":1,"matchers":[{"string":"Неохлажденные враги, на которых вы накладываете кровотечение, охлаждаются"}],"trade":{"ids":{"explicit":["explicit.stat_398940995"]}}} +{"ref":"Non-Chilled Enemies you Poison are Chilled","better":1,"matchers":[{"string":"Неохлажденные враги, на которых вы накладываете яд, охлаждаются"}],"trade":{"ids":{"explicit":["explicit.stat_3998191356"]}}} +{"ref":"Non-critical strikes deal #% more Damage","better":1,"matchers":[{"string":"Некритические удары наносят на #% больше урона"},{"string":"Некритические удары наносят на #% меньше урона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1711683262"]}}} +{"ref":"Non-Critical Strikes deal no Damage","better":1,"matchers":[{"string":"Некритические удары не наносят урона"}],"trade":{"ids":{"explicit":["explicit.stat_2511969244"]}}} +{"ref":"Non-Damaging Ailments have #% increased Effect on you while you have Arcane Surge","better":1,"matchers":[{"string":"#% усиление эффекта не-наносящих урон состояний на вас под действием Колдовского выброса"},{"string":"#% ослабление эффекта не-наносящих урон состояний на вас под действием Колдовского выброса","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3014823981"]}}} +{"ref":"Non-Exerted Attacks deal no Damage","better":1,"matchers":[{"string":"Не-улучшенные атаки не наносят урона"}],"trade":{"ids":{"explicit":["explicit.stat_3303984198"]}}} +{"ref":"Non-instant Mana Recovery from Flasks is also Recovered as Life","better":1,"matchers":[{"string":"Не моментальное восстановление маны от флаконов дополнительно восстанавливается в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_2262007777"]}}} +{"ref":"Non-Unique Utility Flasks you Use apply to Linked Targets","better":1,"matchers":[{"string":"Используемые вами неуникальные особые флаконы применяются на связанные цели"}],"trade":{"ids":{"explicit":["explicit.stat_865273657"]}}} +{"ref":"Non-Vaal Strike Skills target # additional nearby Enemy","better":1,"matchers":[{"string":"Умения ударов не-ваал выбирают целью # дополнительного ближайшего врага"},{"string":"Умения ударов не-ваал выбирают целью # дополнительных ближайших врагов"}],"trade":{"ids":{"explicit":["explicit.stat_1661253443"],"implicit":["implicit.stat_1661253443"]}}} +{"ref":"Notable Passive Skills in Radius are Transformed to\ninstead grant: #% increased Mana Cost of Skills and #% increased Spell Damage","better":1,"matchers":[{"string":"Значимые пассивные умения в радиусе изменены и\nтеперь даруют: #% повышение затрат маны умениями и #% увеличение урона от чар"}],"trade":{"ids":{"explicit":["explicit.stat_3430460307"]}}} +{"ref":"Notable Passive Skills in Radius are Transformed to\ninstead grant: Minions have #% increased Movement Speed","better":1,"matchers":[{"string":"Эффект значимых пассивных умений в радиусе заменяется на:\nПриспешники имеют #% повышение скорости передвижения"},{"string":"Эффект значимых пассивных умений в радиусе заменяется на:\nПриспешники имеют #% снижение скорости передвижения","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3362879252"]}}} +{"ref":"Notable Passive Skills in Radius are Transformed to\ninstead grant: Minions take #% increased Damage","better":1,"matchers":[{"string":"Эффект значимых пассивных умений в радиусе заменяется на:\nПриспешники получают увеличенный на #% урон"},{"string":"Эффект значимых пассивных умений в радиусе заменяется на:\nПриспешники получают уменьшенный на #% урон","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3659983276"]}}} +{"ref":"Notable Passive Skills in Radius grant nothing","better":1,"matchers":[{"string":"Значимые пассивные умения в радиусе не имеют эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_2627243269"]}}} +{"ref":"Nova Spells deal 30% less Damage to Players with Hits and Ailments\nNova Spells Cast at the targeted location instead of around you","better":1,"matchers":[{"string":"Чары колец наносят на 30% меньше урона от ударов и состояний по игрокам\nЧары колец сотворяются в указанном месте, а не вокруг вас"}],"trade":{"ids":{"explicit":["explicit.stat_728246008"]}}} +{"ref":"Nova Spells have #% more Area of Effect","better":1,"matchers":[{"string":"На #% больше области действия чар колец"},{"string":"На #% меньше области действия чар колец","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_200113086"]}}} +{"ref":"of Aisling's Veil","better":0,"matchers":[{"string":"вуали Ашлинг"}],"trade":{"ids":{"veiled":["veiled.mod_48007"]}}} +{"ref":"of Cameria's Veil","better":0,"matchers":[{"string":"вуали Камерии"}],"trade":{"ids":{"veiled":["veiled.mod_65163"]}}} +{"ref":"of Hillock's Veil","better":0,"matchers":[{"string":"вуали Хиллока"}],"trade":{"ids":{"veiled":["veiled.mod_3975"]}}} +{"ref":"of Janus' Veil","better":0,"matchers":[{"string":"вуали Януса"}],"trade":{"ids":{"veiled":["veiled.mod_11536"]}}} +{"ref":"of Jorgin's Veil","better":0,"matchers":[{"string":"вуали Йоргина"}],"trade":{"ids":{"veiled":["veiled.mod_62955"]}}} +{"ref":"of Riker's Veil","better":0,"matchers":[{"string":"вуали Райкера"}],"trade":{"ids":{"veiled":["veiled.mod_48408"]}}} +{"ref":"of the Veil","better":0,"matchers":[{"string":"вуали"}],"trade":{"ids":{"veiled":["veiled.mod_63099"]}}} +{"ref":"Offering Skills have #% increased Duration","better":1,"matchers":[{"string":"#% увеличение длительности умений Подношений"},{"string":"#% уменьшение длительности умений Подношений","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2957407601"]}}} +{"ref":"On Killing a Poisoned Enemy, nearby Enemies are Poisoned","better":1,"matchers":[{"string":"При убийстве отравленного врага, отравляются ближайшие враги"}],"trade":{"ids":{"explicit":["explicit.stat_456916387"]}}} +{"ref":"Only affects Passives in # Ring","better":1,"matchers":[{"string":"Влияет только на пассивные умения внутри малого кольца","advanced":"Влияет только на пассивные умения внутри малого кольца (малого кольца - очень большого кольца)","value":1},{"string":"Влияет только на пассивные умения внутри среднего кольца","advanced":"Влияет только на пассивные умения внутри среднего кольца (малого кольца - очень большого кольца)","value":2},{"string":"Влияет только на пассивные умения внутри большого кольца","advanced":"Влияет только на пассивные умения внутри большого кольца (малого кольца - очень большого кольца)","value":3},{"string":"Влияет только на пассивные умения внутри очень большого кольца","advanced":"Влияет только на пассивные умения внутри очень большого кольца (малого кольца - очень большого кольца)","value":4},{"string":"Влияет только на пассивные умения внутри огромного кольца","advanced":"Влияет только на пассивные умения внутри огромного кольца","value":5}],"trade":{"ids":{"explicit":["explicit.stat_3642528642"]},"option":true}} +{"ref":"Onslaught","better":1,"matchers":[{"string":"Боевой раж"}],"trade":{"ids":{"explicit":["explicit.stat_1520059289"],"implicit":["implicit.stat_1520059289"]}}} +{"ref":"Orb of Storms deals #% increased Damage","better":1,"matchers":[{"string":"Сфера бурь наносит увеличенный на #% урон"},{"string":"Сфера бурь наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4084540709"]}}} +{"ref":"Orb of Storms has #% increased Cast Speed","better":1,"matchers":[{"string":"Сфера бурь имеет #% повышение скорости сотворения чар"}],"trade":{"ids":{"enchant":["enchant.stat_2778301298"]}}} +{"ref":"Pain Attunement","better":1,"matchers":[{"string":"Вдохновение болью"}],"trade":{"ids":{"explicit":["explicit.stat_98977150"],"fractured":["fractured.stat_98977150"],"scourge":["scourge.stat_98977150"]}}} +{"ref":"Passive Skills in Radius also grant #% increased Armour","better":1,"matchers":[{"string":"Пассивные умения в радиусе также даруют #% увеличение брони"},{"string":"Пассивные умения в радиусе также даруют #% уменьшение брони","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1647724040"]}}} +{"ref":"Passive Skills in Radius also grant #% increased Chaos Damage","better":1,"matchers":[{"string":"Пассивные умения в радиусе также даруют #% увеличение урона хаосом"},{"string":"Пассивные умения в радиусе также даруют #% уменьшение урона хаосом","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1313763128"]}}} +{"ref":"Passive Skills in Radius also grant #% increased Cold Damage","better":1,"matchers":[{"string":"Пассивные умения в радиусе также даруют #% увеличение урона от холода"},{"string":"Пассивные умения в радиусе также даруют #% уменьшение урона от холода","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2999571636"]}}} +{"ref":"Passive Skills in Radius also grant #% increased Energy Shield","better":1,"matchers":[{"string":"Пассивные умения в радиусе также даруют #% увеличение энергетического щита"},{"string":"Пассивные умения в радиусе также даруют #% уменьшение энергетического щита","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4215928287"]}}} +{"ref":"Passive Skills in Radius also grant #% increased Evasion Rating","better":1,"matchers":[{"string":"Пассивные умения в радиусе также даруют #% увеличение уклонения"},{"string":"Пассивные умения в радиусе также даруют #% уменьшение уклонения","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3761482453"]}}} +{"ref":"Passive Skills in Radius also grant #% increased Fire Damage","better":1,"matchers":[{"string":"Пассивные умения в радиусе также даруют #% увеличение урона от огня"},{"string":"Пассивные умения в радиусе также даруют #% уменьшение урона от огня","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_719810173"]}}} +{"ref":"Passive Skills in Radius also grant #% increased Global Critical Strike Chance","better":1,"matchers":[{"string":"Пассивные умения в радиусе также даруют #% увеличение глобального шанса критического удара"},{"string":"Пассивные умения в радиусе также даруют #% уменьшение глобального шанса критического удара","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3901726941"]}}} +{"ref":"Passive Skills in Radius also grant #% increased Lightning Damage","better":1,"matchers":[{"string":"Пассивные умения в радиусе также даруют #% увеличение урона от молнии"},{"string":"Пассивные умения в радиусе также даруют #% уменьшение урона от молнии","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3556460433"]}}} +{"ref":"Passive Skills in Radius also grant #% increased Physical Damage","better":1,"matchers":[{"string":"Пассивные умения в радиусе также даруют #% увеличение физического урона"},{"string":"Пассивные умения в радиусе также даруют #% уменьшение физического урона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3252387974"]}}} +{"ref":"Passive Skills in Radius also grant +# to all Attributes","better":1,"matchers":[{"string":"Пассивные умения в радиусе также даруют # ко всем характеристикам"}],"trade":{"ids":{"explicit":["explicit.stat_3587101704"]}}} +{"ref":"Passive Skills in Radius also grant +# to maximum Life","better":1,"matchers":[{"string":"Пассивные умения в радиусе также даруют # к максимуму здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_1223932609"]}}} +{"ref":"Passive Skills in Radius also grant +# to maximum Mana","better":1,"matchers":[{"string":"Пассивные умения в радиусе также даруют # к максимуму маны"}],"trade":{"ids":{"explicit":["explicit.stat_3382199855"]}}} +{"ref":"Passive Skills in Radius also grant +#% to Chaos Resistance","better":1,"matchers":[{"string":"Пассивные умения в радиусе также даруют #% к сопротивлению хаосу"}],"trade":{"ids":{"explicit":["explicit.stat_1812306107"]}}} +{"ref":"Passive Skills in Radius also grant: #% increased Unarmed Attack Speed with Melee Skills","better":1,"matchers":[{"string":"Пассивные умения в радиусе также даруют: #% повышение скорости атаки умениями ближнего боя без оружия"},{"string":"Пассивные умения в радиусе также даруют: #% снижение скорости атаки умениями ближнего боя без оружия"}],"trade":{"ids":{"explicit":["explicit.stat_3087912144"]}}} +{"ref":"Passive Skills in Radius also grant: Traps and Mines deal # to # added Physical Damage","better":1,"matchers":[{"string":"Пассивные умения в радиусе также дают свойство: ловушки и мины наносят от # до # дополнительного физического урона"}],"trade":{"ids":{"explicit":["explicit.stat_576760472"],"fractured":["fractured.stat_576760472"]}}} +{"ref":"Passives granting Cold Resistance or all Elemental Resistances in Radius\nalso grant an equal chance to gain a Frenzy Charge on Kill","better":1,"matchers":[{"string":"Пассивные умения, дающие сопротивление холоду или сопротивление всем стихиям в радиусе,\nдают такой же шанс получить заряд ярости при убийстве"}],"trade":{"ids":{"explicit":["explicit.stat_509677462"]}}} +{"ref":"Passives granting Cold Resistance or all Elemental Resistances in Radius\nalso grant Chance to Suppress Spell Damage at #% of its value","better":1,"matchers":[{"string":"Пассивные умения в радиусе также дают шанс подавить урон от чар\nв размере #% от получаемого от них сопротивления холоду или сопротивления всем стихиям"}],"trade":{"ids":{"explicit":["explicit.stat_1409669176"]}}} +{"ref":"Passives granting Fire Resistance or all Elemental Resistances in Radius\nalso grant an equal chance to gain an Endurance Charge on Kill","better":1,"matchers":[{"string":"Пассивные умения, дающие сопротивление огню или сопротивление всем стихиям в радиусе,\nдают такой же шанс получить заряд выносливости при убийстве"}],"trade":{"ids":{"explicit":["explicit.stat_1645524575"]}}} +{"ref":"Passives granting Fire Resistance or all Elemental Resistances in Radius\nalso grant Chance to Block Attack Damage at #% of its value","better":1,"matchers":[{"string":"Пассивные умения в радиусе также дают шанс блокировать урон от атак\nв размере #% от получаемого от них сопротивления огню или сопротивления всем стихиям"}],"trade":{"ids":{"explicit":["explicit.stat_3931143552"]}}} +{"ref":"Passives granting Lightning Resistance or all Elemental Resistances in Radius\nalso grant an equal chance to gain a Power Charge on Kill","better":1,"matchers":[{"string":"Пассивные умения, дающие сопротивление молнии или сопротивление всем стихиям в радиусе,\nдают такой же шанс получить заряд энергии при убийстве"}],"trade":{"ids":{"explicit":["explicit.stat_926444104"]}}} +{"ref":"Passives granting Lightning Resistance or all Elemental Resistances in Radius\nalso grant Chance to Block Spell Damage at #% of its value","better":1,"matchers":[{"string":"Пассивные умения в радиусе также дают шанс блокировать урон от чар\nв размере #% от получаемого от них сопротивления молнии или сопротивления всем стихиям"}],"trade":{"ids":{"explicit":["explicit.stat_1224928411"]}}} +{"ref":"Passives in Radius can be Allocated without being connected to your tree","better":1,"matchers":[{"string":"Пассивные умения в радиусе могут быть выбраны без связи с остальным деревом"}],"trade":{"ids":{"explicit":["explicit.stat_4077035099"]}}} +{"ref":"Passives in Radius of # can be Allocated\nwithout being connected to your tree","better":0,"matchers":[{"string":"Пассивные умения в радиусе Стальные нервы могут быть выбраны без связи с остальным деревом","value":10661},{"string":"Пассивные умения в радиусе Соглашение с ваал могут быть выбраны без связи с остальным деревом","value":10808},{"string":"Пассивные умения в радиусе Танцующий с ветром могут быть выбраны без связи с остальным деревом","value":11239},{"string":"Пассивные умения в радиусе Иммунитет к хаосу могут быть выбраны без связи с остальным деревом","value":11455},{"string":"Пассивные умения в радиусе Железная хватка могут быть выбраны без связи с остальным деревом","value":12926},{"string":"Пассивные умения в радиусе Окровавленный клинок могут быть выбраны без связи с остальным деревом","value":13019},{"string":"Пассивные умения в радиусе Уворот от чар могут быть выбраны без связи с остальным деревом","value":14914},{"string":"Пассивные умения в радиусе Багровый танец могут быть выбраны без связи с остальным деревом","value":17818},{"string":"Пассивные умения в радиусе Нестабильность приспешников могут быть выбраны без связи с остальным деревом","value":18663},{"string":"Пассивные умения в радиусе Агностик могут быть выбраны без связи с остальным деревом","value":19732},{"string":"Пассивные умения в радиусе Арсенал возмездия могут быть выбраны без связи с остальным деревом","value":21210},{"string":"Пассивные умения в радиусе Вечная молодость могут быть выбраны без связи с остальным деревом","value":21650},{"string":"Пассивные умения в радиусе Стихийная перегрузка могут быть выбраны без связи с остальным деревом","value":22088},{"string":"Пассивные умения в радиусе Призыв к оружию могут быть выбраны без связи с остальным деревом","value":23090},{"string":"Пассивные умения в радиусе Совершенная агония могут быть выбраны без связи с остальным деревом","value":23407},{"string":"Пассивные умения в радиусе Проводник могут быть выбраны без связи с остальным деревом","value":23540},{"string":"Пассивные умения в радиусе Нечестивый страж могут быть выбраны без связи с остальным деревом","value":23950},{"string":"Пассивные умения в радиусе Похититель душ могут быть выбраны без связи с остальным деревом","value":24426},{"string":"Пассивные умения в радиусе Несбалансированная защита могут быть выбраны без связи с остальным деревом","value":24720},{"string":"Пассивные умения в радиусе Власть ваал могут быть выбраны без связи с остальным деревом","value":27637},{"string":"Пассивные умения в радиусе Поклонение сердцу Скверны могут быть выбраны без связи с остальным деревом","value":27781},{"string":"Пассивные умения в радиусе Вдохновение болью могут быть выбраны без связи с остальным деревом","value":31703},{"string":"Пассивные умения в радиусе Точные удары могут быть выбраны без связи с остальным деревом","value":31961},{"string":"Пассивные умения в радиусе Разум превыше материи могут быть выбраны без связи с остальным деревом","value":34098},{"string":"Пассивные умения в радиусе Призрачный танец могут быть выбраны без связи с остальным деревом","value":35255},{"string":"Пассивные умения в радиусе Равновесие стихий могут быть выбраны без связи с остальным деревом","value":39085},{"string":"Пассивные умения в радиусе Скользящие удары могут быть выбраны без связи с остальным деревом","value":39713},{"string":"Пассивные умения в радиусе Несокрушимость могут быть выбраны без связи с остальным деревом","value":40907},{"string":"Пассивные умения в радиусе Связь с предками могут быть выбраны без связи с остальным деревом","value":41970},{"string":"Пассивные умения в радиусе Стрельба в упор могут быть выбраны без связи с остальным деревом","value":42178},{"string":"Пассивные умения в радиусе Руническая вязь могут быть выбраны без связи с остальным деревом","value":42343},{"string":"Пассивные умения в радиусе Чародей могут быть выбраны без связи с остальным деревом","value":43988},{"string":"Пассивные умения в радиусе Воплощение огня могут быть выбраны без связи с остальным деревом","value":44941},{"string":"Пассивные умения в радиусе Посмертное покровительство могут быть выбраны без связи с остальным деревом","value":45175},{"string":"Пассивные умения в радиусе Величайшее эго могут быть выбраны без связи с остальным деревом","value":49639},{"string":"Пассивные умения в радиусе Железная воля могут быть выбраны без связи с остальным деревом","value":50288},{"string":"Пассивные умения в радиусе Универсальный боец могут быть выбраны без связи с остальным деревом","value":50679},{"string":"Пассивные умения в радиусе Акробатика могут быть выбраны без связи с остальным деревом","value":54307},{"string":"Пассивные умения в радиусе Танец со стрелами могут быть выбраны без связи с остальным деревом","value":54922},{"string":"Пассивные умения в радиусе Мистический накопитель могут быть выбраны без связи с остальным деревом","value":56075},{"string":"Пассивные умения в радиусе Погибель магов могут быть выбраны без связи с остальным деревом","value":56116},{"string":"Пассивные умения в радиусе Пронзатель могут быть выбраны без связи с остальным деревом","value":57257},{"string":"Пассивные умения в радиусе Магия крови могут быть выбраны без связи с остальным деревом","value":57279},{"string":"Пассивные умения в радиусе Божественный щит могут быть выбраны без связи с остальным деревом","value":58556},{"string":"Пассивные умения в радиусе Солипсизм могут быть выбраны без связи с остальным деревом","value":60247},{"string":"Пассивные умения в радиусе Кровопролитие ваал могут быть выбраны без связи с остальным деревом","value":61516},{"string":"Пассивные умения в радиусе Тень смерти могут быть выбраны без связи с остальным деревом","value":62791},{"string":"Пассивные умения в радиусе Обет фанатика могут быть выбраны без связи с остальным деревом","value":63425},{"string":"Пассивные умения в радиусе Безупречный приём могут быть выбраны без связи с остальным деревом","value":63620},{"string":"Пассивные умения в радиусе Полная убеждённость могут быть выбраны без связи с остальным деревом","value":9403}],"trade":{"ids":{"explicit":["explicit.stat_2422708892"]},"option":true}} +{"ref":"Patrol Packs have #% increased chance to be replaced by an Elite Patrol Pack","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"Группы патруля имеют увеличенный на #% шанс быть замененными на элитные группы патруля"},{"string":"Группы патруля имеют уменьшенный на #% шанс быть замененными на элитные группы патруля","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1982436039"],"fractured":["fractured.stat_1982436039"]}}} +{"ref":"Patrol Packs take #% increased damage","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"Группы патруля получают увеличенный на #% урон"},{"string":"Группы патруля получают уменьшенный на #% урон","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3702411606"],"fractured":["fractured.stat_3702411606"]}}} +{"ref":"Patrolling Monsters deal #% increased Damage","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"Патрулирующие монстры наносят увеличенный на #% урон"},{"string":"Патрулирующие монстры наносят уменьшенный на #% урон","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3144910208"],"fractured":["fractured.stat_3144910208"]}}} +{"ref":"Penance Brand deals #% increased Damage","better":1,"matchers":[{"string":"#% увеличение урона Клейма покаяния"},{"string":"#% уменьшение урона Клейма покаяния","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_610562666"]}}} +{"ref":"Penance Brand has #% increased Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Клейма покаяния"},{"string":"#% уменьшение области действия Клейма покаяния","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1486948114"]}}} +{"ref":"Penance Brand has #% increased Cast Speed","better":1,"matchers":[{"string":"#% повышение скорости сотворения чар Клейма покаяния"},{"string":"#% снижение скорости сотворения чар Клейма покаяния","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_709541481"]}}} +{"ref":"Penetrate #% Elemental Resistances per 15 Omniscience","better":1,"matchers":[{"string":"Пробивает #% сопротивления стихиям за каждые 15 Всезнания"}],"trade":{"ids":{"explicit":["explicit.stat_2757041809"]}}} +{"ref":"Penetrate #% Elemental Resistances per Abyss Jewel affecting you","better":1,"matchers":[{"string":"Пробивает #% сопротивления стихиям за каждый действующий на вас самоцвет Бездны"}],"trade":{"ids":{"explicit":["explicit.stat_4250752669"]}}} +{"ref":"Perfect Agony","better":1,"matchers":[{"string":"Совершенная агония"}],"trade":{"ids":{"explicit":["explicit.stat_3884934810"],"fractured":["fractured.stat_3884934810"],"scourge":["scourge.stat_3884934810"]}}} +{"ref":"Perforate deals #% increased Damage","better":1,"matchers":[{"string":"Пронзающие шипы наносят увеличенный на #% урон"},{"string":"Пронзающие шипы наносят уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2731606134"]}}} +{"ref":"Perforate has #% increased Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Пронзающих шипов"},{"string":"#% уменьшение области действия Пронзающих шипов","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3536566359"]}}} +{"ref":"Performing Brute Force during Lockdown doesn't take additional time","better":1,"matchers":[{"string":"Применение Грубой силы во время изоляции не требует дополнительного времени"}],"trade":{"ids":{"explicit":["explicit.stat_2485799092"],"fractured":["fractured.stat_2485799092"]}}} +{"ref":"Performing Counter-Thaumaturgy during Lockdown doesn't take additional time","better":1,"matchers":[{"string":"Применение Контрмагии во время изоляции не требует дополнительного времени"}],"trade":{"ids":{"explicit":["explicit.stat_3969573213"],"fractured":["fractured.stat_3969573213"]}}} +{"ref":"Performing Demolition during Lockdown doesn't take additional time","better":1,"matchers":[{"string":"Применение Взрывного дела во время изоляции не требует дополнительного времени"}],"trade":{"ids":{"explicit":["explicit.stat_450155423"],"fractured":["fractured.stat_450155423"]}}} +{"ref":"Performing Engineering during Lockdown doesn't take additional time","better":1,"matchers":[{"string":"Применение Инженерного дела во время изоляции не требует дополнительного времени"}],"trade":{"ids":{"explicit":["explicit.stat_1124657098"],"fractured":["fractured.stat_1124657098"]}}} +{"ref":"Performing Lockpicking during Lockdown doesn't take additional time","better":1,"matchers":[{"string":"Применение Взлома во время изоляции не требует дополнительного времени"}],"trade":{"ids":{"explicit":["explicit.stat_3144025395"],"fractured":["fractured.stat_3144025395"]}}} +{"ref":"Permanently Intimidate Enemies on Block","better":1,"matchers":[{"string":"Навсегда устрашает врагов при блоке"}],"trade":{"ids":{"explicit":["explicit.stat_2930706364"],"fractured":["fractured.stat_2930706364"]}}} +{"ref":"Pestilent Strike deals #% increased Damage","better":1,"matchers":[{"string":"Моровой удар наносит увеличенный на #% урон"},{"string":"Моровой удар наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_856157011"]}}} +{"ref":"Pestilent Strike has #% increased Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Морового удара"},{"string":"#% уменьшение области действия Морового удара","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3787328468"]}}} +{"ref":"Pestilent Strike has #% increased Duration","better":1,"matchers":[{"string":"#% увеличение длительности Морового удара"},{"string":"#% уменьшение длительности Морового удара","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_64670441"]}}} +{"ref":"Petrified Blood has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"#% увеличение эффективности удержания маны Окаменелой кровью"},{"string":"#% уменьшение эффективности удержания маны Окаменелой кровью","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1779904215","enchant.stat_1829483269"]}}} +{"ref":"Petrified during Effect","better":1,"matchers":[{"string":"Окаменение во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_1935500672"]}}} +{"ref":"Physical Damage taken bypasses Energy Shield","better":1,"matchers":[{"string":"#% получаемого физического урона обходит энергетический щит"},{"string":"Получаемый физический урон обходит энергетический щит","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2649513539"]}}} +{"ref":"Plague Bearer Buff grants +#% to Poison Damage over Time Multiplier while Infecting","better":1,"matchers":[{"string":"Положительный эффект Носителя чумы дарует #% к множителю урона ядом во время заражения"}],"trade":{"ids":{"enchant":["enchant.stat_1967208066"]}}} +{"ref":"Plague Bearer deals Damage based on an additional #% of Plague Value","better":1,"matchers":[{"string":"Носитель чумы наносит урон на основании дополнительных #% значения чумы"}],"trade":{"ids":{"enchant":["enchant.stat_2093796647"]}}} +{"ref":"Player Skills which Throw Mines throw up to # fewer Mines","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Умения игроков, бросающие мины, бросают на 1 мину меньше","value":-1},{"string":"Умения игроков бросают дополнительных мин: #"},{"string":"Умения игроков, бросающие мины, бросают вплоть до # мин меньше"},{"string":"Умения игроков бросают дополнительную мину","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3633247582"],"fractured":["fractured.stat_3633247582"]}}} +{"ref":"Player Skills which Throw Traps throw up to # fewer Traps","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Умения игроков, бросающие ловушки, бросают на 1 ловушку меньше","value":-1},{"string":"Умения игроков, бросающие ловушки, бросают вплоть до # ловушек меньше"},{"string":"Умения игроков, бросающие ловушки, бросают дополнительных ловушек: #"},{"string":"Умения игроков, бросающие ловушки, бросают 1 дополнительную ловушку","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3693062339"],"fractured":["fractured.stat_3693062339"]}}} +{"ref":"Players and their Minions deal no damage for 4 out of every 10 seconds","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Игроки и их приспешники не наносят урона в течение 4 из каждых 10 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_2408625104"],"fractured":["fractured.stat_2408625104"]}}} +{"ref":"Players and their Minions have #% increased Mana Regeneration Rate","better":1,"matchers":[{"string":"Игроки и их приспешники имеют #% повышение скорости регенерации маны"},{"string":"Игроки и их приспешники имеют #% снижение скорости регенерации маны","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2513410880"],"fractured":["fractured.stat_2513410880"]}}} +{"ref":"Players and their Minions Regenerate #% of Life per second","dp":true,"better":1,"matchers":[{"string":"Игроки и их приспешники регенерируют #% здоровья в секунду"}],"trade":{"ids":{"explicit":["explicit.stat_430044247"],"fractured":["fractured.stat_430044247"]}}} +{"ref":"Players are assaulted by Bloodstained Sawblades","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Игроков атакуют окровавленные пилы"}],"trade":{"ids":{"explicit":["explicit.stat_3052102815"],"fractured":["fractured.stat_3052102815"]}}} +{"ref":"Players are Cursed with Elemental Weakness","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Игроки прокляты Уязвимостью к стихиям"}],"trade":{"ids":{"explicit":["explicit.stat_558910024"],"fractured":["fractured.stat_558910024"]}}} +{"ref":"Players are Cursed with Enfeeble","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Игроки прокляты Слабостью"}],"trade":{"ids":{"explicit":["explicit.stat_4103440490"],"fractured":["fractured.stat_4103440490"]}}} +{"ref":"Players are Cursed with Temporal Chains","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Игроки прокляты Путами времени"}],"trade":{"ids":{"explicit":["explicit.stat_2326202293"],"fractured":["fractured.stat_2326202293"]}}} +{"ref":"Players are Cursed with Vulnerability","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Игроки прокляты Беззащитностью"}],"trade":{"ids":{"explicit":["explicit.stat_1366534040"],"fractured":["fractured.stat_1366534040"]}}} +{"ref":"Players are Marked for Death for # seconds\nafter killing a Rare or Unique monster","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Игроки обрекаются на смерть на # секунд(-ы)\nпосле убийства редкого или уникального монстра"},{"string":"Игроки обрекаются на смерть на # секунду\nпосле убийства редкого или уникального монстра"}],"trade":{"ids":{"explicit":["explicit.stat_436406826"],"fractured":["fractured.stat_436406826"]}}} +{"ref":"Players cannot Block","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Игроки не могут блокировать"}],"trade":{"ids":{"explicit":["explicit.stat_419810844"],"fractured":["fractured.stat_419810844"]}}} +{"ref":"Players cannot Block Attack Damage","better":1,"fromAreaMods":true,"matchers":[{"string":"Игроки не могут блокировать урон от атак"}],"trade":{"ids":{"explicit":["explicit.stat_2736953535"]}}} +{"ref":"Players cannot Block Spell Damage","better":1,"fromAreaMods":true,"matchers":[{"string":"Игроки не могут блокировать урон от чар"}],"trade":{"ids":{"explicit":["explicit.stat_4261179672"]}}} +{"ref":"Players cannot gain Endurance Charges","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Игроки не могут получать заряды выносливости"}],"trade":{"ids":{"explicit":["explicit.stat_3532144131"],"fractured":["fractured.stat_3532144131"]}}} +{"ref":"Players cannot gain Flask Charges","better":1,"fromAreaMods":true,"matchers":[{"string":"Игроки не могут получать заряды флакона"}],"trade":{"ids":{"explicit":["explicit.stat_36406748"]}}} +{"ref":"Players cannot gain Frenzy Charges","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Игроки не могут получать заряды ярости"}],"trade":{"ids":{"explicit":["explicit.stat_620879593"],"fractured":["fractured.stat_620879593"]}}} +{"ref":"Players cannot gain Power Charges","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Игроки не могут получать заряды энергии"}],"trade":{"ids":{"explicit":["explicit.stat_1282233725"],"fractured":["fractured.stat_1282233725"]}}} +{"ref":"Players cannot inflict Exposure","better":1,"fromAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Игроки не могут накладывать Восприимчивость"}],"trade":{"ids":{"explicit":["explicit.stat_1026390635"],"fractured":["fractured.stat_1026390635"]}}} +{"ref":"Players cannot Recharge Energy Shield","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Игроки не могут перезаряжать энергетический щит"}],"trade":{"ids":{"explicit":["explicit.stat_1888489569"],"fractured":["fractured.stat_1888489569"]}}} +{"ref":"Players cannot Regenerate Life, Mana or Energy Shield","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Игроки не могут регенерировать здоровье, ману или энергетический щит"}],"trade":{"ids":{"explicit":["explicit.stat_1910157106"],"fractured":["fractured.stat_1910157106"]}}} +{"ref":"Players cannot Suppress Spell Damage","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"matchers":[{"string":"Игроки не могут подавлять урон от чар"}],"trade":{"ids":{"explicit":["explicit.stat_3203905334"],"fractured":["fractured.stat_3203905334"]}}} +{"ref":"Players gain #% increased Flask Charges per 25% Alert Level","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"Игроки имеют #% увеличение получаемых зарядов флакона за каждые 25% уровня тревоги"},{"string":"Игроки имеют #% уменьшение получаемых зарядов флакона за каждые 25% уровня тревоги","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_816079058"],"fractured":["fractured.stat_816079058"]}}} +{"ref":"Players gain #% reduced Flask Charges","better":-1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Игроки получают увеличение зарядов флакона на #%"},{"string":"Игроки получают уменьшение зарядов флакона на #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2549889921"],"fractured":["fractured.stat_2549889921"]},"inverted":true}} +{"ref":"Players have #% chance to be targeted by a Meteor when they use a Flask","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Игроки с #% шансом могут стать целью Метеорита, когда вы используете флакон"},{"string":"Игроки становятся целью Метеорита, когда используют флакон","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4102870672"],"fractured":["fractured.stat_4102870672"]}}} +{"ref":"Players have #% increased Action Speed for each time they've used a Skill Recently","better":1,"fromUberAreaMods":true,"matchers":[{"string":"#% повышение скорости действия игроков за каждое недавнее использование умений"},{"string":"#% снижение скорости действия игроков за каждое недавнее использование умений","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3479892158"],"fractured":["fractured.stat_3479892158"]}}} +{"ref":"Players have #% increased effect of Non-Curse Auras from Skills","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Игроки имеют #% усиление эффекта аур не-проклятий от умений"},{"string":"Игроки имеют #% ослабление эффекта аур не-проклятий от умений","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2450628570"],"fractured":["fractured.stat_2450628570"]}}} +{"ref":"Players have #% less Area of Effect","better":-1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Область действия у игроков на #% больше"},{"string":"Область действия у игроков на #% меньше","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2312028586"],"fractured":["fractured.stat_2312028586"]},"inverted":true}} +{"ref":"Players have #% less Armour","better":-1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"У игроков на #% больше брони"},{"string":"У игроков на #% меньше брони","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_272758639"],"fractured":["fractured.stat_272758639"]},"inverted":true}} +{"ref":"Players have #% less Recovery Rate of Life and Energy Shield","better":-1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Скорость восстановления здоровья и энергетического щита игроков на #% больше"},{"string":"Скорость восстановления здоровья и энергетического щита игроков на #% меньше","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4181072906"],"fractured":["fractured.stat_4181072906"]},"inverted":true}} +{"ref":"Players have #% more Accuracy Rating","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Игроки имеют на #% больше меткости"},{"string":"Игроки имеют на #% меньше меткости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3667574329"],"fractured":["fractured.stat_3667574329"]}}} +{"ref":"Players have #% more Armour per 25% Alert Level","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"Игроки имеют на #% больше брони за каждые 25% уровня тревоги"},{"string":"Игроки имеют на #% меньше брони за каждые 25% уровня тревоги","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2787931289"],"fractured":["fractured.stat_2787931289"]}}} +{"ref":"Players have #% more Cooldown Recovery Rate","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"Игроки имеют на #% больше скорости перезарядки умений"},{"string":"Игроки имеют на #% меньше скорости перезарядки умений","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_941368244"],"fractured":["fractured.stat_941368244"]}}} +{"ref":"Players have #% more Defences","better":1,"fromUberAreaMods":true,"matchers":[{"string":"На #% больше защиты игроков"},{"string":"На #% меньше защиты игроков","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_943960754"],"fractured":["fractured.stat_943960754"]}}} +{"ref":"Players have #% more Energy Shield Recovery Rate per 25% Alert Level","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"Игроки имеют на #% больше скорости восстановления энергетического щита за каждые 25% уровня тревоги"},{"string":"Игроки имеют на #% меньше скорости восстановления энергетического щита за каждые 25% уровня тревоги","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_751773204"],"fractured":["fractured.stat_751773204"]}}} +{"ref":"Players have #% more Evasion per 25% Alert Level","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"Игроки имеют на #% больше уклонения за каждые 25% уровня тревоги"},{"string":"Игроки имеют на #% меньше уклонения за каждые 25% уровня тревоги","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1238382441"],"fractured":["fractured.stat_1238382441"]}}} +{"ref":"Players have #% more Life Recovery Rate per 25% Alert Level","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"Игроки имеют на #% больше скорости восстановления здоровья за каждые 25% уровня тревоги"},{"string":"Игроки имеют на #% меньше скорости восстановления здоровья за каждые 25% уровня тревоги","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1466172118"],"fractured":["fractured.stat_1466172118"]}}} +{"ref":"Players have #% more Mana Recovery Rate per 25% Alert Level","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"Игроки имеют на #% больше скорости восстановления маны за каждые 25% уровня тревоги"},{"string":"Игроки имеют на #% меньше скорости восстановления маны за каждые 25% уровня тревоги","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_953449033"],"fractured":["fractured.stat_953449033"]}}} +{"ref":"Players have #% reduced Chance to Block","better":-1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"У игроков шанс блока повышен на #%"},{"string":"У игроков шанс блока снижен на #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3729221884"],"fractured":["fractured.stat_3729221884"]},"inverted":true}} +{"ref":"Players have #% to all maximum Resistances","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"#% к максимуму всех сопротивлений игроков"}],"trade":{"ids":{"explicit":["explicit.stat_3376488707"],"fractured":["fractured.stat_3376488707"]}}} +{"ref":"Players have +# to maximum number of Summoned Totems","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Игроки имеют # к максимальному количеству призванных тотемов"}],"trade":{"ids":{"explicit":["explicit.stat_2912613786"],"fractured":["fractured.stat_2912613786"]}}} +{"ref":"Players in Area take #% increased Damage per nearby Ally","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Игроки в области получают увеличенный на #% урона за каждого ближайшего союзника"}],"trade":{"ids":{"explicit":["explicit.stat_4045850340"],"fractured":["fractured.stat_4045850340"]}}} +{"ref":"Players in Areas take on the form of Harbingers\nItems found in Areas are replaced by stacks of Currency Shards","better":1,"matchers":[{"string":"Игроки в областях принимают форму Предвестников\nНайденные в областях предметы заменяются стопками осколков валюты"}],"trade":{"ids":{"explicit":["explicit.stat_2467500499"]}}} +{"ref":"Players Prevent +#% of Suppressed Spell Damage","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"fromHeistAreaMods":true,"matchers":[{"string":"#% к количеству предотвращенного игроками подавленного урона от чар"},{"string":"Игроки предотвращают #% подавленного урона от чар"}],"trade":{"ids":{"explicit":["explicit.stat_286947568"],"fractured":["fractured.stat_286947568"]}}} +{"ref":"Players take #% reduced Damage from Monsters from Beyond","better":-1,"matchers":[{"string":"Игроки получают увеличенный на #% урон от монстров Иномирья"},{"string":"Игроки получают уменьшенный на #% урон от монстров Иномирья","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3045897926"]},"inverted":true}} +{"ref":"Players' Minions have #% more Attack Speed","better":1,"fromUberAreaMods":true,"matchers":[{"string":"На #% больше скорости атаки у приспешников игроков"},{"string":"На #% меньше скорости атаки у приспешников игроков","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1308016791"],"fractured":["fractured.stat_1308016791"]}}} +{"ref":"Players' Minions have #% more Cast Speed","better":1,"fromUberAreaMods":true,"matchers":[{"string":"На #% больше скорости сотворения чар у приспешников игроков"},{"string":"На #% меньше скорости сотворения чар у приспешников игроков","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1237051929"],"fractured":["fractured.stat_1237051929"]}}} +{"ref":"Players' Minions have #% more Movement Speed","better":1,"fromUberAreaMods":true,"matchers":[{"string":"На #% больше скорости передвижения у приспешников игроков"},{"string":"На #% меньше скорости передвижения у приспешников игроков","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3991644188"],"fractured":["fractured.stat_3991644188"]}}} +{"ref":"Players' Vaal Skills do not apply Soul Gain Prevention","better":1,"fromAreaMods":true,"matchers":[{"string":"Умения ваал игроков не предотвращают получение душ"}],"trade":{"ids":{"implicit":["implicit.stat_977063976"],"enchant":["enchant.stat_977063976"]}}} +{"ref":"Point Blank","better":1,"matchers":[{"string":"Стрельба в упор"}],"trade":{"ids":{"explicit":["explicit.stat_2896346114"],"implicit":["implicit.stat_2896346114"],"fractured":["fractured.stat_2896346114"],"scourge":["scourge.stat_2896346114"]}}} +{"ref":"Poison Cursed Enemies on hit","better":1,"matchers":[{"string":"Отравляет проклятых врагов при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_4266201818"]}}} +{"ref":"Poison you inflict is Reflected to you if you have fewer than 100 Poisons on you","better":1,"matchers":[{"string":"Накладываемый вами яд отражается на вас, если на вас меньше 100 зарядов яда"}],"trade":{"ids":{"explicit":["explicit.stat_2374357674"]}}} +{"ref":"Poison you inflict with Travel Skills is Reflected to you if you\nhave fewer than 5 Poisons on you","better":1,"matchers":[{"string":"Накладываемый вашими умениями смещения яд отражается на вас,\nесли на вас меньше 5 зарядов яда"}],"trade":{"ids":{"explicit":["explicit.stat_130616495"]}}} +{"ref":"Poisoned Enemies you Kill with Hits Shatter","better":1,"matchers":[{"string":"Отравленные враги, убиваемые вашими ударами, разбиваются"}],"trade":{"ids":{"explicit":["explicit.stat_3350228283"]}}} +{"ref":"Poisonous Concoction uses #% increased Flask Charges","better":1,"matchers":[{"string":"#% увеличение зарядов флакона, расходуемых Ядовитой смесью"},{"string":"#% уменьшение зарядов флакона, расходуемых Ядовитой смесью","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1474722052"]}}} +{"ref":"Poisonous Hit","better":1,"matchers":[{"string":"Ядовитый удар"}],"trade":{"ids":{"explicit":["explicit.stat_4075957192"]}}} +{"ref":"Poisons on you expire #% slower","better":-1,"matchers":[{"string":"Заряды яда на вас истекают на #% быстрее"},{"string":"Заряды яда на вас истекают на #% медленнее","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2443132097"]},"inverted":true}} +{"ref":"Poisons you inflict deal Damage #% faster","better":1,"matchers":[{"string":"Наложенный вами яд наносит урон на #% быстрее"}],"trade":{"ids":{"explicit":["explicit.stat_2907156609"],"implicit":["implicit.stat_2907156609"],"fractured":["fractured.stat_2907156609"],"scourge":["scourge.stat_2907156609"]}}} +{"ref":"Power Siphon fires at up to # additional target","better":1,"matchers":[{"string":"Перелив энергии поражает вплоть до # дополнительного врага"},{"string":"Перелив энергии поражает вплоть до # дополнительных врагов"}],"trade":{"ids":{"enchant":["enchant.stat_1177831984"]}}} +{"ref":"Precise Technique","better":1,"matchers":[{"string":"Безупречный приём"}],"trade":{"ids":{"explicit":["explicit.stat_4096273663"]}}} +{"ref":"Precision has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"#% увеличение эффективности удержания маны Точностью"},{"string":"#% уменьшение эффективности удержания маны Точностью","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3859865977"],"enchant":["enchant.stat_3859865977","enchant.stat_658622139"]}}} +{"ref":"Precision has 100% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"100% увеличение эффективности удержания маны Точностью"}],"trade":{"ids":{"explicit":["explicit.stat_1291925008"]}}} +{"ref":"Prefixes Cannot Be Changed","better":1,"matchers":[{"string":"Префиксы нельзя изменить"}],"trade":{"ids":{"explicit":["explicit.stat_2879723104"],"fractured":["fractured.stat_2879723104"],"crafted":["crafted.stat_2879723104"]}}} +{"ref":"Prevent +#% of Suppressed Spell Damage","better":1,"matchers":[{"string":"#% к количеству предотвращенного урона от подавленных чар"},{"string":"Предотвращает #% урона от подавленных чар"}],"trade":{"ids":{"explicit":["explicit.stat_4116705863"],"implicit":["implicit.stat_4116705863"],"fractured":["fractured.stat_4116705863"]}}} +{"ref":"Prevent +#% of Suppressed Spell Damage while on Full Energy Shield","better":1,"matchers":[{"string":"#% к количеству предотвращенного урона от подавленных чар при полном энергетическом щите"},{"string":"Предотвращает #% урона от подавленных чар при полном энергетическом щите"}],"trade":{"ids":{"explicit":["explicit.stat_1493325653"]}}} +{"ref":"Pride has #% increased Aura Effect","better":1,"matchers":[{"string":"#% усиление эффекта ауры Гордости"},{"string":"#% ослабление эффекта ауры Гордости","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4247488219"]}}} +{"ref":"Pride has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"#% увеличение эффективности удержания маны Гордостью"},{"string":"#% уменьшение эффективности удержания маны Гордостью","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3484910620","explicit.stat_3993865658"],"fractured":["fractured.stat_3993865658"],"enchant":["enchant.stat_3484910620","enchant.stat_3993865658"]}}} +{"ref":"Pride has no Reservation","better":1,"matchers":[{"string":"Гордость не удерживает ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_3554614456"]}}} +{"ref":"Primordial","better":1,"matchers":[{"string":"Первородный"}],"trade":{"ids":{"explicit":["explicit.stat_1089165168"]}}} +{"ref":"Projectile Attack Skills have #% increased Critical Strike Chance","better":1,"matchers":[{"string":"Умения атак снарядами имеют повышенный на #% шанс критического удара"},{"string":"Умения атак снарядами имеют сниженный на #% шанс критического удара","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4095169720"]}}} +{"ref":"Projectile Barrages have no spread","better":1,"matchers":[{"string":"Очереди снарядов не имеют разброса"}],"trade":{"ids":{"explicit":["explicit.stat_3953699641"]}}} +{"ref":"Projectiles are fired in random directions","better":1,"matchers":[{"string":"Снаряды выпускаются в случайных направлениях"}],"trade":{"ids":{"explicit":["explicit.stat_4159765624"]}}} +{"ref":"Projectiles cannot collide with Enemies in Close Range","better":1,"matchers":[{"string":"Снаряды не могут поразить врагов на близком расстоянии"}],"trade":{"ids":{"explicit":["explicit.stat_2826633504"]}}} +{"ref":"Projectiles Chain +# times while you have Phasing","better":1,"matchers":[{"string":"Снаряды поражают целей по цепи пока вы в Форме призрака: #"}],"trade":{"ids":{"explicit":["explicit.stat_383509486"]}}} +{"ref":"Projectiles deal #% increased Damage with Hits and Ailments for each Enemy Pierced","better":1,"matchers":[{"string":"Снаряды наносят увеличенный на #% урон от ударов и состояний за каждого пронзённого врага"}],"trade":{"ids":{"explicit":["explicit.stat_883169830"],"implicit":["implicit.stat_883169830"],"fractured":["fractured.stat_883169830"]}}} +{"ref":"Projectiles deal #% increased Damage with Hits and Ailments for each time they have Chained","better":1,"matchers":[{"string":"Снаряды наносят увеличенный на #% урон от ударов и состояний за каждый удар по цепи"}],"trade":{"ids":{"implicit":["implicit.stat_1923210508"]}}} +{"ref":"Projectiles from Attacks can Fork # additional time","better":1,"matchers":[{"string":"Снаряды от атак могут разветвиться # дополнительный раз"},{"string":"Снаряды от атак могут разветвиться # дополнительных раза"}],"trade":{"ids":{"explicit":["explicit.stat_1643324992"]}}} +{"ref":"Projectiles from Attacks Fork","better":1,"matchers":[{"string":"Снаряды от атак разветвляются"}],"trade":{"ids":{"explicit":["explicit.stat_396113830"]}}} +{"ref":"Projectiles from Attacks have #% chance to inflict Bleeding on Hit while\nyou have a Bestial Minion","better":1,"matchers":[{"string":"Снаряды от атак имеют #% шанс наложить кровотечение при нанесении удара,\nпока у вас есть приспешник-зверь"}],"trade":{"ids":{"explicit":["explicit.stat_4058504226"]}}} +{"ref":"Projectiles from Attacks have #% chance to Maim on Hit while\nyou have a Bestial Minion","better":1,"matchers":[{"string":"Снаряды от атак имеют #% шанс изувечить при нанесении удара,\nпока у вас есть приспешник-зверь"}],"trade":{"ids":{"explicit":["explicit.stat_1753916791"]}}} +{"ref":"Projectiles from Attacks have #% chance to Poison on Hit while\nyou have a Bestial Minion","better":1,"matchers":[{"string":"Снаряды от атак имеют #% шанс отравить при нанесении удара,\nпока у вас есть приспешник-зверь"}],"trade":{"ids":{"explicit":["explicit.stat_1114411822"]}}} +{"ref":"Projectiles from Socketed Gems Fork","better":1,"matchers":[{"string":"Снаряды от размещенных камней разветвляются"}],"trade":{"ids":{"explicit":["explicit.stat_1519665289"]}}} +{"ref":"Projectiles from Spells cannot Pierce","better":1,"matchers":[{"string":"Снаряды от чар не могут пронзать"}],"trade":{"ids":{"explicit":["explicit.stat_3826125995"]}}} +{"ref":"Projectiles gain #% of Non-Chaos Damage as extra Chaos Damage per Chain","better":1,"matchers":[{"string":"Снаряды наносят #% от урона не-хаосом в виде дополнительного урона хаосом за каждую пораженную по цепи цель"}],"trade":{"ids":{"explicit":["explicit.stat_1924041432"]}}} +{"ref":"Projectiles gain Damage as they travel farther, dealing up\nto #% increased Damage with Hits to targets","better":1,"matchers":[{"string":"Снаряды увеличивают урон в зависимости от пройденного расстояния, нанося\n увеличенный вплоть до #% урон от ударов"}],"trade":{"ids":{"explicit":["explicit.stat_2083727359"]}}} +{"ref":"Projectiles have #% chance to be able to Chain when colliding with terrain","better":1,"matchers":[{"string":"Снаряды имеют #% шанс ударить по цепи при столкновении с окружающей средой"},{"string":"Снаряды ударяют по цепи при столкновении с окружающей средой","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2140446632"]}}} +{"ref":"Projectiles have #% chance to be able to Chain when colliding with terrain per\nSearching Eye Jewel affecting you, up to a maximum of 20%","better":1,"matchers":[{"string":"Снаряды имеют #% шанс ударить по цепи при столкновении с окружающей средой\nза каждый влияющий на вас самоцвет пытливого глаза, вплоть до максимума в 20%"}],"trade":{"ids":{"explicit":["explicit.stat_1485085047"]}}} +{"ref":"Projectiles Pierce # additional Targets","better":1,"matchers":[{"string":"Снаряды пронзают # дополнительных цели(-ей)"},{"string":"Снаряды пронзают дополнительную цель","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2067062068"],"implicit":["implicit.stat_2067062068","implicit.stat_2902845638"],"fractured":["fractured.stat_2067062068"],"scourge":["scourge.stat_2067062068"],"crafted":["crafted.stat_2067062068"]}}} +{"ref":"Projectiles Pierce all Burning Enemies","better":1,"matchers":[{"string":"Снаряды пронзают всех горящих врагов"}],"trade":{"ids":{"explicit":["explicit.stat_2214228141"]}}} +{"ref":"Projectiles Pierce all Targets while you have Phasing","better":1,"matchers":[{"string":"Снаряды пронзают все цели, пока вы в Форме призрака"}],"trade":{"ids":{"explicit":["explicit.stat_2636403786"]}}} +{"ref":"Projectiles Pierce an additional Target while you have Phasing","better":1,"matchers":[{"string":"Снаряды пронзают # дополнительных цели(-ей), пока вы в Форме призрака"},{"string":"Снаряды пронзают дополнительную цель, пока вы в Форме призрака","value":1}],"trade":{"ids":{"explicit":["explicit.stat_97250660"]}}} +{"ref":"Projectiles Split towards +# targets","better":1,"matchers":[{"string":"Снаряды разделяются в направлении # целей"}],"trade":{"ids":{"scourge":["scourge.stat_3464380325"]}}} +{"ref":"Projectiles that have Chained gain #% of Non-Chaos Damage as extra Chaos Damage","better":1,"matchers":[{"string":"Снаряды, поразившие цель по цепи, наносят #% от урона не-хаосом в виде урона хаосом"}],"trade":{"ids":{"explicit":["explicit.stat_1698276268"]}}} +{"ref":"Properties are doubled while in a Breach","better":1,"matchers":[{"string":"В Разломе свойства удваиваются"}],"trade":{"ids":{"implicit":["implicit.stat_202275580"]}}} +{"ref":"Punishment has no Reservation if Cast as an Aura","better":1,"matchers":[{"string":"Наказание в виде ауры не удерживает ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_2097195894"]}}} +{"ref":"Purifying Flame deals #% increased Damage","better":1,"matchers":[{"string":"#% увеличение наносимого урона Очищающим пламенем"},{"string":"#% уменьшение наносимого урона Очищающим пламенем","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_944311193"]}}} +{"ref":"Purifying Flame has #% increased Area of Effect if targeting Consecrated Ground","better":1,"matchers":[{"string":"#% увеличение области действия Очищающего пламени, если оно направлено на освящённую землю"},{"string":"#% уменьшение области действия Очищающего пламени, если оно направлено на освящённую землю","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1954529734"]}}} +{"ref":"Purity of Elements has #% increased Aura Effect","better":1,"matchers":[{"string":"#% усиление эффекта ауры Спасения от стихий"},{"string":"#% ослабление эффекта ауры Спасения от стихий","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3541970927"]}}} +{"ref":"Purity of Elements has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"#% увеличение эффективности удержания маны Спасением от стихий"},{"string":"#% уменьшение эффективности удержания маны Спасением от стихий","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3303293173","enchant.stat_491551762"]}}} +{"ref":"Purity of Elements has no Reservation","better":1,"matchers":[{"string":"Спасение от стихий не удерживает ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_1826480903"]}}} +{"ref":"Purity of Fire has #% increased Aura Effect","better":1,"matchers":[{"string":"#% усиление эффекта ауры Спасения от огня"},{"string":"#% ослабление эффекта ауры Спасения от огня","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2539726203"]}}} +{"ref":"Purity of Fire has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"#% увеличение эффективности удержания маны Спасением от огня"},{"string":"#% уменьшение эффективности удержания маны Спасением от огня","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1135152940","explicit.stat_3003688066"],"implicit":["implicit.stat_1135152940","implicit.stat_3003688066"],"fractured":["fractured.stat_3003688066"],"enchant":["enchant.stat_1135152940","enchant.stat_3003688066"]}}} +{"ref":"Purity of Fire has no Reservation","better":1,"matchers":[{"string":"Спасение от огня не удерживает ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_2278589942"]}}} +{"ref":"Purity of Ice has #% increased Aura Effect","better":1,"matchers":[{"string":"#% усиление эффекта ауры Спасения от холода"},{"string":"#% ослабление эффекта ауры Спасения от холода","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1944316218"]}}} +{"ref":"Purity of Ice has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"#% увеличение эффективности удержания маны Спасением от холода"},{"string":"#% уменьшение эффективности удержания маны Спасением от холода","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_139925400","explicit.stat_2665518524"],"implicit":["implicit.stat_139925400","implicit.stat_2665518524"],"enchant":["enchant.stat_139925400","enchant.stat_2665518524"]}}} +{"ref":"Purity of Ice has no Reservation","better":1,"matchers":[{"string":"Спасение от холода не удерживает ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_1622979279"]}}} +{"ref":"Purity of Lightning has #% increased Aura Effect","better":1,"matchers":[{"string":"#% усиление эффекта ауры Спасения от молнии"},{"string":"#% ослабление эффекта ауры Спасения от молнии","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_45589825"]}}} +{"ref":"Purity of Lightning has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"#% увеличение эффективности удержания маны Спасением от молний"}],"trade":{"ids":{"explicit":["explicit.stat_1450978702","explicit.stat_3411256933"],"implicit":["implicit.stat_1450978702","implicit.stat_3411256933"],"enchant":["enchant.stat_1450978702","enchant.stat_3411256933"]}}} +{"ref":"Purity of Lightning has no Reservation","better":1,"matchers":[{"string":"Спасение от молний не удерживает ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_2308225900"]}}} +{"ref":"Pyroclast Mine deals #% increased Damage","better":1,"matchers":[{"string":"Пирокластовая мина наносит увеличенный на #% урон"},{"string":"Пирокластовая мина наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4048820315"]}}} +{"ref":"Pyroclast Mine fires an additional Projectile","better":1,"matchers":[{"string":"Пирокластовая мина выпускает # дополнительных снаряда(-ов)"},{"string":"Пирокластовая мина выпускает дополнительный снаряд","value":1}],"trade":{"ids":{"enchant":["enchant.stat_841281094"]}}} +{"ref":"Pyroclast Mine has #% increased Throwing Speed","better":1,"matchers":[{"string":"#% повышение скорости броска Пирокластовой мины"},{"string":"#% снижение скорости броска Пирокластовой мины","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2005440071","enchant.stat_2432759583"]}}} +{"ref":"Quality (Attack Modifiers): #%","better":1,"matchers":[{"string":"Качество (свойства атак): #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_jewellery_attack_quality"]}}} +{"ref":"Quality (Attribute Modifiers): #%","better":1,"matchers":[{"string":"Качество (свойства характеристик): #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_jewellery_attribute_quality"]}}} +{"ref":"Quality (Caster Modifiers): #%","better":1,"matchers":[{"string":"Качество (свойства чар): #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_jewellery_caster_quality"]}}} +{"ref":"Quality (Critical Modifiers): #%","better":1,"matchers":[{"string":"Качество (свойства критического удара): #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_jewellery_critical_quality"]}}} +{"ref":"Quality (Currency): #%","better":1,"matchers":[{"string":"Качество (валюта): #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_quality_currency"]}}} +{"ref":"Quality (Defence Modifiers): #%","better":1,"matchers":[{"string":"Качество (свойства защиты): #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_jewellery_defense_quality"]}}} +{"ref":"Quality (Divination Cards): #%","better":1,"matchers":[{"string":"Качество (гадальные карты): #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_quality_cards"]}}} +{"ref":"Quality (Elemental Damage Modifiers): #%","better":1,"matchers":[{"string":"Качество (свойства стихийного урона): #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_jewellery_elemental_quality"]}}} +{"ref":"Quality (Life and Mana Modifiers): #%","better":1,"matchers":[{"string":"Качество (свойства здоровья и маны): #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_jewellery_resource_quality"]}}} +{"ref":"Quality (Pack Size): #%","better":1,"matchers":[{"string":"Качество (размер групп монстров): #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_quality_pack_size"]}}} +{"ref":"Quality (Physical and Chaos Damage Modifiers): #%","better":1,"matchers":[{"string":"Качество (свойства физического урона и урона хаосом): #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_jewellery_physical_chaos_quality"]}}} +{"ref":"Quality (Rarity): #%","better":1,"matchers":[{"string":"Качество (редкость): #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_quality_rarity"]}}} +{"ref":"Quality (Resistance Modifiers): #%","better":1,"matchers":[{"string":"Качество (свойства сопротивлений): #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_jewellery_resistance_quality"]}}} +{"ref":"Quality (Scarabs): #%","better":1,"matchers":[{"string":"Качество (скарабеи): #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_map_quality_scarabs"]}}} +{"ref":"Quality (Speed Modifiers): #%","better":1,"matchers":[{"string":"Качество (свойства скорости): #% "}],"trade":{"ids":{"pseudo":["pseudo.pseudo_jewellery_speed_quality"]}}} +{"ref":"Quality applies to Pack Size instead of Item Quantity","better":1,"fromAreaMods":true,"matchers":[{"string":"На группу монстров вместо свойств количества предметов применяются свойства качества предметов"}],"trade":{"ids":{"implicit":["implicit.stat_3036505016"]}}} +{"ref":"Quality does not increase Defences","better":1,"matchers":[{"string":"Качество не повышает защиту"}],"trade":{"ids":{"enchant":["enchant.stat_2677401098"]}}} +{"ref":"Quality does not increase Physical Damage","better":1,"matchers":[{"string":"Качество не повышает физический урон"}],"trade":{"ids":{"enchant":["enchant.stat_2052525717"]}}} +{"ref":"Queen's Demand can Trigger Level # Flames of Judgement","better":1,"matchers":[{"string":"Требование царицы может вызвать срабатывание Огней Правосудия # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2766423342"]}}} +{"ref":"Queen's Demand can Trigger Level # Storm of Judgement","better":1,"matchers":[{"string":"Требование царицы может вызвать срабатывание Шторма Правосудия # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_758006884"]}}} +{"ref":"Quicksilver Flasks you Use also apply to nearby Allies","better":1,"matchers":[{"string":"Используемые вами ртутные флаконы также применяются к ближайшим союзникам"}],"trade":{"ids":{"explicit":["explicit.stat_699756626"]}}} +{"ref":"Rage grants Spell Damage instead of Attack Damage","better":1,"matchers":[{"string":"Свирепость дарует урон от чар вместо урона от атак"}],"trade":{"ids":{"explicit":["explicit.stat_2933909365"]}}} +{"ref":"Rage Vortex Sacrifices +#% of Rage","better":1,"matchers":[{"string":"Свирепый вихрь поглощает #% свирепости"}],"trade":{"ids":{"enchant":["enchant.stat_1957790343"]}}} +{"ref":"Rain of Arrows has #% chance to fire an additional sequence of arrows","better":1,"matchers":[{"string":"Ливень стрел имеет #% шанс выпустить дополнительную очередь стрел"}],"trade":{"ids":{"enchant":["enchant.stat_3505939359"]}}} +{"ref":"Raise Zombie does not require a corpse","better":1,"matchers":[{"string":"Для Поднятия зомби больше не требуется труп"}],"trade":{"ids":{"explicit":["explicit.stat_16924183"]}}} +{"ref":"Raised Zombies Cover Enemies in Ash on Hit","better":1,"matchers":[{"string":"Поднятые зомби имеют #% шанс покрыть врагов пеплом при нанесении удара"},{"string":"Поднятые зомби покрывают врагов пеплом при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_613525808"]}}} +{"ref":"Raised Zombies deal #% increased Damage","better":1,"matchers":[{"string":"Зомби имеют #% увеличение урона"},{"string":"Зомби имеют #% уменьшение урона","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2228518621"],"enchant":["enchant.stat_2228518621"]}}} +{"ref":"Raised Zombies deal #% more Physical Damage","better":1,"matchers":[{"string":"Зомби наносят на #% больше физического урона"},{"string":"Зомби наносят на #% меньше физического урона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_568070507"]}}} +{"ref":"Raised Zombies have #% increased Attack Speed","better":1,"matchers":[{"string":"Зомби имеют #% повышение скорости атаки"},{"string":"Зомби имеют #% снижение скорости атаки","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2499559911"]}}} +{"ref":"Raised Zombies have #% increased maximum Life","better":1,"matchers":[{"string":"Зомби имеют #% увеличение максимума здоровья"},{"string":"Зомби имеют #% уменьшение максимума здоровья","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_927817294"]}}} +{"ref":"Raised Zombies have +# to maximum Life","better":1,"matchers":[{"string":"# к максимуму здоровья поднятых зомби"}],"trade":{"ids":{"explicit":["explicit.stat_4116579804"]}}} +{"ref":"Raised Zombies have +#% to all Resistances","better":1,"matchers":[{"string":"Поднятые зомби имеют #% ко всем сопротивлениям"}],"trade":{"ids":{"explicit":["explicit.stat_3150000576"]}}} +{"ref":"Raised Zombies have +#% to Elemental Resistances","better":1,"matchers":[{"string":"Зомби имеют #% к сопротивлению стихиям"}],"trade":{"ids":{"enchant":["enchant.stat_2871777604"]}}} +{"ref":"Raised Zombies have Avatar of Fire","better":1,"matchers":[{"string":"Поднятые зомби имеют эффект Воплощение огня"}],"trade":{"ids":{"explicit":["explicit.stat_1474437010"]}}} +{"ref":"Raised Zombies take #% of their Maximum Life per second as Fire Damage","better":1,"matchers":[{"string":"Поднятые зомби получают #% от их максимума здоровья в секунду в виде урона от огня"}],"trade":{"ids":{"explicit":["explicit.stat_3733496041"]}}} +{"ref":"Rallying Cry Exerts # additional Attack","better":1,"matchers":[{"string":"Клич сплочения улучшает дополнительных атак: #"}],"trade":{"ids":{"enchant":["enchant.stat_2080441723"]}}} +{"ref":"Rampage","better":1,"matchers":[{"string":"Буйство"}],"trade":{"ids":{"explicit":["explicit.stat_2397408229"]}}} +{"ref":"Rare and Unique Monsters found in Areas are Possessed and their Minions are Touched","better":1,"matchers":[{"string":"Найденные в областях редкие и уникальные монстры одержимы, а их приспешники находятся под эффектов касания"}],"trade":{"ids":{"explicit":["explicit.stat_2168365746"]}}} +{"ref":"Rare and Unique Monsters remove #% of Life, Mana and Energy Shield from Players or their Minions on Hit","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Редкие и уникальные монстры удаляют#% здоровья, маны и энергетического щита у игроков и их приспешников при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_3270788481"],"fractured":["fractured.stat_3270788481"]}}} +{"ref":"Rare Monsters each have # additional Modifier","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"matchers":[{"string":"Редкие монстры обладают # дополнительным свойством"},{"string":"Редкие монстры обладают # дополнительными свойствами"}],"trade":{"ids":{"explicit":["explicit.stat_2550456553"],"fractured":["fractured.stat_2550456553"]}}} +{"ref":"Rare Monsters have #% chance to have a Volatile Core","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Редкие монстры с #% шансом могут обладать нестабильным ядром"},{"string":"Редкие монстры обладают нестабильным ядром","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1706239920"],"fractured":["fractured.stat_1706239920"]}}} +{"ref":"Rare monsters in area are Shaper-Touched","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Редкие монстры в области находятся под влиянием касания Создателя"}],"trade":{"ids":{"explicit":["explicit.stat_2931889194"],"fractured":["fractured.stat_2931889194"]}}} +{"ref":"Reap deals #% increased Damage","better":1,"matchers":[{"string":"Кровавая жатва наносит увеличенный на #% урон"},{"string":"Кровавая жатва наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1545524769"]}}} +{"ref":"Recharges # Charge when you Consume an Ignited corpse","better":1,"matchers":[{"string":"Восстанавливает # заряд, когда вы поглощаете подожжённый труп"},{"string":"Восстанавливает # заряда(-ов), когда вы поглощаете подожжённый труп"}],"trade":{"ids":{"explicit":["explicit.stat_2557247391"]}}} +{"ref":"Reckoning has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"#% повышение скорости перезарядки Возмездия"},{"string":"#% снижение скорости перезарядки Возмездия","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_804983774"]}}} +{"ref":"Recoup #% of Damage Taken by your Totems as Life","better":1,"matchers":[{"string":"Восполняет #% полученного вашими тотемами урона в виде здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_825316273"]}}} +{"ref":"Recover # Energy Shield when your Trap is triggered by an Enemy","better":1,"matchers":[{"string":"Восстанавливает # энергетического щита, если враг вызвал срабатывание вашей ловушки"}],"trade":{"ids":{"explicit":["explicit.stat_1073384532"]}}} +{"ref":"Recover # Life when you Block","better":1,"matchers":[{"string":"Восстанавливает # здоровья при блоке"}],"trade":{"ids":{"explicit":["explicit.stat_1678831767"]}}} +{"ref":"Recover # Life when you Ignite an Enemy","better":1,"matchers":[{"string":"Восстанавливает # здоровья при поджоге врага"}],"trade":{"ids":{"explicit":["explicit.stat_4045269075"]}}} +{"ref":"Recover # Life when you Suppress Spell Damage","better":1,"matchers":[{"string":"Восстанавливает # здоровья, когда вы подавляете урон от чар"}],"trade":{"ids":{"explicit":["explicit.stat_1807705940"]}}} +{"ref":"Recover # Life when your Trap is triggered by an Enemy","better":1,"matchers":[{"string":"Восстанавливает # здоровья, если враг вызвал срабатывание вашей ловушки"}],"trade":{"ids":{"explicit":["explicit.stat_3952196842"]}}} +{"ref":"Recover # Resolve when you complete a Room","better":1,"matchers":[{"string":"Восстанавливает # решимости, когда вы завершаете комнату"}],"trade":{"ids":{"explicit":["sanctum.stat_3002663227"]}}} +{"ref":"Recover #% of Energy Shield on Kill","better":1,"matchers":[{"string":"Восстанавливает #% энергетического щита при убийстве"},{"string":"Теряет #% энергетического щита при убийстве","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1699499433","explicit.stat_2406605753"],"fractured":["fractured.stat_2406605753"],"scourge":["scourge.stat_2406605753"]}}} +{"ref":"Recover #% of Energy Shield when you Block","better":1,"matchers":[{"string":"Восстанавливает #% энергетического щита при блоке"}],"trade":{"ids":{"explicit":["explicit.stat_1606263610"],"fractured":["fractured.stat_1606263610"]}}} +{"ref":"Recover #% of Energy Shield when you Kill an Enemy during Effect","better":1,"matchers":[{"string":"Восстанавливает #% энергетического щита, когда вы убиваете врага во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_2347201221"]}}} +{"ref":"Recover #% of Energy Shield when you lose a Spirit Charge","better":1,"matchers":[{"string":"Восстанавливает #% энергетического щита, когда вы теряете заряд души"}],"trade":{"ids":{"explicit":["explicit.stat_1996775727"]}}} +{"ref":"Recover #% of Life at the end of the Effect","better":1,"matchers":[{"string":"Восстанавливает #% здоровья в конце действия эффекта"},{"string":"Полностью восстанавливает здоровье в конце действия эффекта","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4078194486"]}}} +{"ref":"Recover #% of Life on Kill","better":1,"matchers":[{"string":"Восстанавливает #% здоровья при убийстве"},{"string":"Теряет #% здоровья при убийстве","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2023107756","explicit.stat_751813227"],"implicit":["implicit.stat_2023107756"],"fractured":["fractured.stat_2023107756"],"scourge":["scourge.stat_2023107756"]}}} +{"ref":"Recover #% of Life on Rampage","better":1,"matchers":[{"string":"Восстанавливает #% здоровья при Буйстве"}],"trade":{"ids":{"explicit":["explicit.stat_2737492258"]}}} +{"ref":"Recover #% of Life on use","better":1,"matchers":[{"string":"Восстанавливает #% здоровья при использовании"},{"string":"Полностью восстанавливает здоровье при использовании","value":101}],"trade":{"ids":{"explicit":["explicit.stat_2629106530"]}}} +{"ref":"Recover #% of Life per Endurance Charge on use\nLose all Endurance Charges on use","better":1,"matchers":[{"string":"Восстанавливает #% здоровья за заряд выносливости при использовании\nТеряет все заряды выносливости при использовании"}],"trade":{"ids":{"explicit":["explicit.stat_521653232"]}}} +{"ref":"Recover #% of Life when you Block","better":1,"matchers":[{"string":"Восстанавливает #% здоровья при блоке"}],"trade":{"ids":{"explicit":["explicit.stat_2442647190"],"implicit":["implicit.stat_2442647190"],"fractured":["fractured.stat_2442647190"]}}} +{"ref":"Recover #% of Life when you Ignite an Enemy","better":1,"matchers":[{"string":"Восстанавливает #% здоровья, когда вы поджигаете врага"}],"trade":{"ids":{"explicit":["explicit.stat_3112776239"]}}} +{"ref":"Recover #% of Life when you Kill an Enemy during Effect","better":1,"matchers":[{"string":"Восстанавливает #% здоровья, когда вы убиваете врага во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_1217476473"]}}} +{"ref":"Recover #% of Life when you Kill an Enemy while you have Rage","better":1,"matchers":[{"string":"Восстанавливает #% здоровья, когда вы убиваете врага, пока у вас есть свирепость"}],"trade":{"ids":{"enchant":["enchant.stat_3305072079"]}}} +{"ref":"Recover #% of Life when you lose a Spirit Charge","better":1,"matchers":[{"string":"Восстанавливает #% здоровья, когда вы теряете заряд души"}],"trade":{"ids":{"explicit":["explicit.stat_305634887"]}}} +{"ref":"Recover #% of Life when you use a Flask","better":1,"matchers":[{"string":"Восстанавливает #% здоровья когда вы используете флакон"}],"trade":{"ids":{"explicit":["explicit.stat_3184268466"]}}} +{"ref":"Recover #% of Life when you use a Mana Flask","better":1,"matchers":[{"string":"Восстанавливает #% здоровья, когда вы используете флакон маны"}],"trade":{"ids":{"explicit":["explicit.stat_1926816773"]}}} +{"ref":"Recover #% of Mana and Energy Shield when you Focus","better":1,"matchers":[{"string":"Восстанавливает #% маны и энергетического щита в момент получения Фокуса"}],"trade":{"ids":{"explicit":["explicit.stat_2992263716"],"fractured":["fractured.stat_2992263716"],"crafted":["crafted.stat_2992263716"]}}} +{"ref":"Recover #% of Mana on Kill","better":1,"matchers":[{"string":"Восстанавливает #% маны при убийстве"},{"string":"Теряет #% маны при убийстве","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1030153674","explicit.stat_1604736568"],"implicit":["implicit.stat_1030153674"],"fractured":["fractured.stat_1030153674"],"scourge":["scourge.stat_1030153674"]}}} +{"ref":"Recover #% of Mana when you Kill an Enemy during Effect","better":1,"matchers":[{"string":"Восстанавливает #% маны, когда вы убиваете врага во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_3247931236"]}}} +{"ref":"Recover #% of Mana when you Shock an Enemy","better":1,"matchers":[{"string":"Восстанавливает #% маны, когда вы накладываете шок на врага"},{"string":"Отнимает #% маны, когда вы накладываете шок на врага"}],"trade":{"ids":{"explicit":["explicit.stat_2524029637"]}}} +{"ref":"Recover #% of your maximum Mana when you Block","better":1,"matchers":[{"string":"Восстанавливает #% от вашего максимума маны при блоке"}],"trade":{"ids":{"explicit":["explicit.stat_3041288981"],"implicit":["implicit.stat_3041288981"],"fractured":["fractured.stat_3041288981"]}}} +{"ref":"Recover an additional #% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life","better":1,"matchers":[{"string":"Восстанавливает в течение 10 секунд дополнительно #% от количества восстанавливаемого флаконом здоровья, если используется не при полном здоровье"}],"trade":{"ids":{"explicit":["explicit.stat_307410279"],"fractured":["fractured.stat_307410279"]}}} +{"ref":"Recover Energy Shield equal to #% of Armour when you Block","better":1,"matchers":[{"string":"Восстанавливает энергетический щит в размере #% от брони при блоке"}],"trade":{"ids":{"explicit":["explicit.stat_3681057026"]}}} +{"ref":"Reflect Shocks applied to you to all Nearby Enemies","better":1,"matchers":[{"string":"Отражает шок, наложенный на вас, во всех ближайших врагов"}],"trade":{"ids":{"explicit":["explicit.stat_615884286"]}}} +{"ref":"Reflection of Abyss (Difficulty #)","better":1,"matchers":[{"string":"Отражение Бездны (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_38892"]}}} +{"ref":"Reflection of Ambush (Difficulty #)","better":1,"matchers":[{"string":"Отражение Засады (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_48307"]}}} +{"ref":"Reflection of Angling (Difficulty #)","better":1,"matchers":[{"string":"Отражение Рыбалки (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_40794"]}}} +{"ref":"Reflection of Azurite (Difficulty #)","better":1,"matchers":[{"string":"Отражение Лазурита (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_40031"]}}} +{"ref":"Reflection of Bestiary (Difficulty #)","better":1,"matchers":[{"string":"Отражение Бестиария (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_55569"]}}} +{"ref":"Reflection of Breach (Difficulty #)","better":1,"matchers":[{"string":"Отражение Разлома (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_62572"]}}} +{"ref":"Reflection of Brutality (Difficulty #)","better":1,"matchers":[{"string":"Отражение Жестокости (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_29096"]}}} +{"ref":"Reflection of Camaraderie (Difficulty #)","better":1,"matchers":[{"string":"Отражение Братства (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_35395"]}}} +{"ref":"Reflection of Catalysis (Difficulty #)","better":1,"matchers":[{"string":"Отражение Катализа (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_57850"]}}} +{"ref":"Reflection of Chaos (Difficulty #)","better":1,"matchers":[{"string":"Отражение Хаоса (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_50834"]}}} +{"ref":"Reflection of Conflict (Difficulty #)","better":1,"matchers":[{"string":"Отражение Конфликта (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_1931"]}}} +{"ref":"Reflection of Darkness (Difficulty #)","better":1,"matchers":[{"string":"Отражение Тьмы (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_34457"]}}} +{"ref":"Reflection of Delirium (Difficulty #)","better":1,"matchers":[{"string":"Отражение Делириума (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_22138"]}}} +{"ref":"Reflection of Delve (Difficulty #)","better":1,"matchers":[{"string":"Отражение Спуска (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_18737"]}}} +{"ref":"Reflection of Demonfire (Difficulty #)","better":1,"matchers":[{"string":"Отражение Демонического пламени (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_28500"]}}} +{"ref":"Reflection of Domination (Difficulty #)","better":1,"matchers":[{"string":"Отражение Господства (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_63412"]}}} +{"ref":"Reflection of Entrapment (Difficulty #)","better":1,"matchers":[{"string":"Отражение Ловушек (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_44399"]}}} +{"ref":"Reflection of Essence (Difficulty #)","better":1,"matchers":[{"string":"Отражение Сущности (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_49862"]}}} +{"ref":"Reflection of Experimentation (Difficulty #)","better":1,"matchers":[{"string":"Отражение Экспериментов (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_55676"]}}} +{"ref":"Reflection of Flame (Difficulty #)","better":1,"matchers":[{"string":"Отражение Пламени (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_42468"]}}} +{"ref":"Reflection of Fractured Dimensions (Difficulty #)","better":1,"matchers":[{"string":"Отражение Расколотых измерений (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_49488"]}}} +{"ref":"Reflection of Frost (Difficulty #)","better":1,"matchers":[{"string":"Отражение Мороза (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_38110"]}}} +{"ref":"Reflection of Guilt (Difficulty #)","better":1,"matchers":[{"string":"Отражение Вины (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_25480"]}}} +{"ref":"Reflection of Imprisonment (Difficulty #)","better":1,"matchers":[{"string":"Отражение Заточения (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_10363"]}}} +{"ref":"Reflection of Kalandra (Difficulty #)","better":1,"matchers":[{"string":"Отражение Каландры (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_36591"]}}} +{"ref":"Reflection of Legion (Difficulty #)","better":1,"matchers":[{"string":"Отражение Легиона (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_403"]}}} +{"ref":"Reflection of Metamorph (Difficulty #)","better":1,"matchers":[{"string":"Отражение Метаморфа (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_3699"]}}} +{"ref":"Reflection of Occultism (Difficulty #)","better":1,"matchers":[{"string":"Отражение Оккультизма (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_24451"]}}} +{"ref":"Reflection of Paradise (Difficulty #)","better":1,"matchers":[{"string":"Отражение Рая (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_50846"]}}} +{"ref":"Reflection of Perverted Faith (Difficulty #)","better":1,"matchers":[{"string":"Отражение Извращённой судьбы (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_27678"]}}} +{"ref":"Reflection of Phaaryl (Difficulty #)","better":1,"matchers":[{"string":"Отражение Фаарила (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_7674"]}}} +{"ref":"Reflection of Possession (Difficulty #)","better":1,"matchers":[{"string":"Отражение Одержимости (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_25049"]}}} +{"ref":"Reflection of Power (Difficulty #)","better":1,"matchers":[{"string":"Отражение Силы (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_35950"]}}} +{"ref":"Reflection of Scourge (Difficulty #)","better":1,"matchers":[{"string":"Отражение Нашествия (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_62360"]}}} +{"ref":"Reflection of Stasis (Difficulty #)","better":1,"matchers":[{"string":"Отражение Стазиса (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_32968"]}}} +{"ref":"Reflection of Sulphite (Difficulty #)","better":1,"matchers":[{"string":"Отражение Сульфита (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_45086"]}}} +{"ref":"Reflection of the Black Scythe (Difficulty #)","better":1,"matchers":[{"string":"Отражение Чёрной косы (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_9662"]}}} +{"ref":"Reflection of the Breachlord (Difficulty #)","better":1,"matchers":[{"string":"Отражение Повелителя Разлома (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_62935"]}}} +{"ref":"Reflection of the Broken Circle (Difficulty #)","better":1,"matchers":[{"string":"Отражение Разомкнутого круга (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_43128"]}}} +{"ref":"Reflection of the Chalice (Difficulty #)","better":1,"matchers":[{"string":"Отражение Чаши (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_64561"]}}} +{"ref":"Reflection of the Chasm (Difficulty #)","better":1,"matchers":[{"string":"Отражение Пропасти (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_57101"]}}} +{"ref":"Reflection of the Dream (Difficulty #)","better":1,"matchers":[{"string":"Отражение Грёз (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_27117"]}}} +{"ref":"Reflection of the Harbingers (Difficulty #)","better":1,"matchers":[{"string":"Отражение Предвестников (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_37203"]}}} +{"ref":"Reflection of the Hunter (Difficulty #)","better":1,"matchers":[{"string":"Отражение Охотника (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_18816"]}}} +{"ref":"Reflection of the Monolith (Difficulty #)","better":1,"matchers":[{"string":"Отражение Монолита (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_34796"]}}} +{"ref":"Reflection of the Nightmare (Difficulty #)","better":1,"matchers":[{"string":"Отражение Кошмара (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_24232"]}}} +{"ref":"Reflection of the Storm (Difficulty #)","better":1,"matchers":[{"string":"Отражение Шторма (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_2745"]}}} +{"ref":"Reflection of the Sun (Difficulty #)","better":1,"matchers":[{"string":"Отражение Солнца (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_60034"]}}} +{"ref":"Reflection of the Trove (Difficulty #)","better":1,"matchers":[{"string":"Отражение Сокровищ (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_46772"]}}} +{"ref":"Reflection of the Wilderness (Difficulty #)","better":1,"matchers":[{"string":"Отражение Дикого края (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_29224"]}}} +{"ref":"Reflection of Thralldom (Difficulty #)","better":1,"matchers":[{"string":"Отражение Рабства (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_26813"]}}} +{"ref":"Reflection of Torment (Difficulty #)","better":1,"matchers":[{"string":"Отражение Мучений (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_53950"]}}} +{"ref":"Reflection of Tyranny (Difficulty #)","better":1,"matchers":[{"string":"Отражение Тирании (Сложность #) "}],"trade":{"ids":{"pseudo":["pseudo.lake_60981"]}}} +{"ref":"Reflects # Chaos Damage to Melee Attackers","better":1,"matchers":[{"string":"Отражает # урона хаосом атакующим в ближнем бою"}],"trade":{"ids":{"explicit":["explicit.stat_189451991"]}}} +{"ref":"Reflects # Cold Damage to Melee Attackers","better":1,"matchers":[{"string":"Отражает # урона от холода атакующим в ближнем бою"}],"trade":{"ids":{"explicit":["explicit.stat_4235886357"]}}} +{"ref":"Reflects # Fire Damage to Attackers on Block","better":1,"matchers":[{"string":"Отражает # урона от огня атакующим при блоке"}],"trade":{"ids":{"explicit":["explicit.stat_3815724042"]}}} +{"ref":"Reflects # Fire Damage to Melee Attackers","better":1,"matchers":[{"string":"Отражает # урона от огня атакующим в ближнем бою"}],"trade":{"ids":{"explicit":["explicit.stat_1757945818"]}}} +{"ref":"Reflects # Lightning Damage to Attackers on Block","better":1,"matchers":[{"string":"Отражает # урона от молнии атакующим при блоке"},{"string":"Отражает от # до # урона от молнии атакующим при блоке"}],"trade":{"ids":{"explicit":["explicit.stat_1810011556"]}}} +{"ref":"Reflects # Lightning Damage to Melee Attackers","better":1,"matchers":[{"string":"Отражает # урона от молнии атакующим в ближнем бою"}],"trade":{"ids":{"explicit":["explicit.stat_3868184702"]}}} +{"ref":"Reflects # Physical Damage to Melee Attackers","better":1,"matchers":[{"string":"Отражает # физического урона атакующим в ближнем бою"}],"trade":{"ids":{"explicit":["explicit.stat_3767873853"],"implicit":["implicit.stat_3767873853"],"fractured":["fractured.stat_3767873853"],"scourge":["scourge.stat_3767873853"],"crafted":["crafted.stat_3767873853"]}}} +{"ref":"Reflects # to # Lightning Damage to Melee Attackers","better":1,"matchers":[{"string":"Отражает от # до # урона от молнии атакующим в ближнем бою"}],"trade":{"ids":{"explicit":["explicit.stat_1243237244"]}}} +{"ref":"Reflects # to # Physical Damage to Attackers on Block","better":1,"matchers":[{"string":"Отражает # физического урона атакующим при блоке"},{"string":"Отражает от # до # физического урона атакующим при блоке"}],"trade":{"ids":{"explicit":["explicit.stat_1445684883"],"crafted":["crafted.stat_1445684883"]}}} +{"ref":"Reflects # to # Physical Damage to Melee Attackers","better":1,"matchers":[{"string":"Отражает от # до # физического урона атакующим в ближнем бою"}],"trade":{"ids":{"explicit":["explicit.stat_2970307386"]}}} +{"ref":"Reflects your other Ring","better":1,"matchers":[{"string":"Отражает ваше другое кольцо"}],"trade":{"ids":{"explicit":["explicit.stat_746505085"]}}} +{"ref":"Regenerate # Energy Shield per second","better":1,"matchers":[{"string":"Регенерация # энергетического щита в секунду"}],"trade":{"ids":{"explicit":["explicit.stat_1330109706","explicit.stat_2561836520"],"fractured":["fractured.stat_2561836520"]}}} +{"ref":"Regenerate # Energy Shield per second if all Equipped items are Corrupted","better":1,"matchers":[{"string":"Регенерация # энергетического щита в секунду, если все надетые предметы осквернены"}],"trade":{"ids":{"explicit":["explicit.stat_4156715241"]}}} +{"ref":"Regenerate # Energy Shield per Second per Poison on you, up to 400 per second","better":1,"matchers":[{"string":"Регенерация # энергетического щита за каждый заряд яда на вас, вплоть до 400 в секунду"}],"trade":{"ids":{"explicit":["explicit.stat_948687156"]}}} +{"ref":"Regenerate # Energy Shield per second while a Rare or Unique Enemy is Nearby","better":1,"matchers":[{"string":"Регенерация # энергетического щита в секунду, пока поблизости есть редкий или уникальный враг"}],"trade":{"ids":{"explicit":["explicit.stat_2238019079"],"fractured":["fractured.stat_2238019079"],"crafted":["crafted.stat_2238019079"]}}} +{"ref":"Regenerate # Life over 1 second when you Cast a Spell","better":1,"matchers":[{"string":"Регенерация # здоровья в течение 1 секунды, когда вы сотворяете чары"}],"trade":{"ids":{"explicit":["explicit.stat_1955882986"]}}} +{"ref":"Regenerate # Life per second","better":1,"matchers":[{"string":"Регенерация # здоровья в секунду"}],"trade":{"ids":{"explicit":["explicit.stat_3325883026"],"implicit":["implicit.stat_3325883026"],"fractured":["fractured.stat_3325883026"],"scourge":["scourge.stat_3325883026"],"crafted":["crafted.stat_3325883026"]}}} +{"ref":"Regenerate # Life per second for each Uncorrupted Item Equipped","better":1,"matchers":[{"string":"Регенерация # здоровья в секунду за каждый надетый неосквернённый предмет"}],"trade":{"ids":{"explicit":["explicit.stat_405941409"]}}} +{"ref":"Regenerate # Life per second if no Equipped Items are Corrupted","better":1,"matchers":[{"string":"Регенерация # здоровья в секунду, если ни один из надетых предметов не осквернен"}],"trade":{"ids":{"explicit":["explicit.stat_2497198283"]}}} +{"ref":"Regenerate # Life per second if you have at least 1000 Maximum Energy Shield","better":1,"matchers":[{"string":"Регенерация # здоровья в секунду, если ваш максимум энергетического щита выше или равен 1000"}],"trade":{"ids":{"explicit":["explicit.stat_1704843611"]}}} +{"ref":"Regenerate # Life per second if you have at least 1500 Maximum Energy Shield","better":1,"matchers":[{"string":"Регенерация # здоровья в секунду, если ваш максимум энергетического щита выше или равен 1500"}],"trade":{"ids":{"explicit":["explicit.stat_3227159962"]}}} +{"ref":"Regenerate # Life per second if you have at least 500 Maximum Energy Shield","better":1,"matchers":[{"string":"Регенерация # здоровья в секунду, если ваш максимум энергетического щита выше или равен 500"}],"trade":{"ids":{"explicit":["explicit.stat_1103902353"]}}} +{"ref":"Regenerate # Life per second per Endurance Charge","better":1,"matchers":[{"string":"Регенерация # здоровья за заряд выносливости"}],"trade":{"ids":{"explicit":["explicit.stat_1898967950"]}}} +{"ref":"Regenerate # Life per second per Level","better":1,"matchers":[{"string":"# регенерации здоровья в секунду за уровень"}],"trade":{"ids":{"explicit":["explicit.stat_1384864963"]}}} +{"ref":"Regenerate # Life per Second while affected by Vitality","better":1,"matchers":[{"string":"Регенерация # здоровья в секунду под действием Живучести"}],"trade":{"ids":{"explicit":["explicit.stat_3489570622"]}}} +{"ref":"Regenerate # Life per second while Ignited","better":1,"matchers":[{"string":"Регенерация # здоровья в секунду, если подожжён"}],"trade":{"ids":{"explicit":["explicit.stat_952897668"]}}} +{"ref":"Regenerate # Life per Second while in Blood Stance","better":1,"matchers":[{"string":"Регенерирует # здоровья в секунду в стойке крови"}],"trade":{"ids":{"explicit":["explicit.stat_550848224"]}}} +{"ref":"Regenerate # Life per second while moving","better":1,"matchers":[{"string":"Регенерация # здоровья в секунду во время передвижения"}],"trade":{"ids":{"explicit":["explicit.stat_2841027131"],"implicit":["implicit.stat_2841027131"]}}} +{"ref":"Regenerate # Life per Second while on Low Life","better":1,"matchers":[{"string":"Регенерирует # здоровья в секунду при малом количестве здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_2161482953"]}}} +{"ref":"Regenerate # Life per Second while you have Avian's Flight","better":1,"matchers":[{"string":"Регенерация # здоровья в секунду, пока на вас действует Птичий полет"}],"trade":{"ids":{"explicit":["explicit.stat_2589482056"]}}} +{"ref":"Regenerate # Mana per second","better":1,"matchers":[{"string":"# регенерации маны в секунду"}],"trade":{"ids":{"explicit":["explicit.stat_4291461939"],"implicit":["implicit.stat_4291461939"],"fractured":["fractured.stat_4291461939"],"scourge":["scourge.stat_4291461939"],"crafted":["crafted.stat_4291461939"]}}} +{"ref":"Regenerate # Mana per second if all Equipped Items are Corrupted","better":1,"matchers":[{"string":"Регенерация # маны в секунду, если все надетые предметы осквернены"}],"trade":{"ids":{"explicit":["explicit.stat_2760138143"]}}} +{"ref":"Regenerate # Mana per Second per 10 Devotion","better":1,"matchers":[{"string":"Регенерация # маны в секунду за каждые 10 набожности"}],"trade":{"ids":{"explicit":["explicit.stat_2042813020"]}}} +{"ref":"Regenerate # Mana per Second per Power Charge","better":1,"matchers":[{"string":"Регенерация # маны в секунду за заряд энергии"}],"trade":{"ids":{"explicit":["explicit.stat_4084763463"]}}} +{"ref":"Regenerate # Mana per Second while Dual Wielding","better":1,"matchers":[{"string":"Регенерация # маны в секунду с парным оружием в руках"}],"trade":{"ids":{"implicit":["implicit.stat_1361343333"]}}} +{"ref":"Regenerate # Mana per Second while holding a Shield","better":1,"matchers":[{"string":"Регенерация # маны в секунду со щитом в руках"}],"trade":{"ids":{"implicit":["implicit.stat_3762868276"]}}} +{"ref":"Regenerate # Mana per second while wielding a Staff","better":1,"matchers":[{"string":"Регенерация # маны в секунду с посохом в руках"}],"trade":{"ids":{"implicit":["implicit.stat_1388668644"]}}} +{"ref":"Regenerate # Mana per Second while you have Avian's Flight","better":1,"matchers":[{"string":"Регенерация # маны в секунду, пока на вас действует Птичий полет"}],"trade":{"ids":{"explicit":["explicit.stat_1495376076"]}}} +{"ref":"Regenerate #% Life over one second when hit while affected by Vitality","better":1,"matchers":[{"string":"Регенерирует #% здоровья за одну секунду при получении удара под действием Живучести"}],"trade":{"ids":{"explicit":["explicit.stat_1366273824"]}}} +{"ref":"Regenerate #% Life over one second when Hit while Sane","better":1,"matchers":[{"string":"Регенерация #% здоровья за одну секунду при получении удара в Здравом уме"}],"trade":{"ids":{"explicit":["explicit.stat_2504632495"]}}} +{"ref":"Regenerate #% of Energy Shield over 2 seconds when you Consume a corpse","better":1,"matchers":[{"string":"Регенерация #% энергетического щита в течение 2 секунд, когда вы поглощаете труп"}],"trade":{"ids":{"explicit":["explicit.stat_2900084972"]}}} +{"ref":"Regenerate #% of Energy Shield per second","better":1,"matchers":[{"string":"Регенерация #% энергетического щита в секунду"}],"trade":{"ids":{"explicit":["explicit.stat_3594640492"],"implicit":["implicit.stat_3594640492"],"fractured":["fractured.stat_3594640492"]}}} +{"ref":"Regenerate #% of Energy Shield per Second for\nevery 10 Intelligence on Allocated Passives in Radius","better":1,"matchers":[{"string":"Регенерация #% энергетического щита в секунду за\nкаждые 10 интеллекта на выбранных пассивных умениях в радиусе"}],"trade":{"ids":{"explicit":["explicit.stat_615595418"]}}} +{"ref":"Regenerate #% of Energy Shield per second if you've dealt a Critical Strike with this weapon Recently","better":1,"matchers":[{"string":"Регенерирует #% энергетического щита в секунду, если недавно вы наносили критический удар этим оружием"}],"trade":{"ids":{"explicit":["explicit.stat_298613712"]}}} +{"ref":"Regenerate #% of Energy Shield per second if you've Hit an Enemy Recently","better":1,"matchers":[{"string":"Регенерация #% энергетического щита в секунду, если вы недавно наносили удар по врагу"}],"trade":{"ids":{"explicit":["explicit.stat_588560583"]}}} +{"ref":"Regenerate #% of Energy Shield per Second while affected by Discipline","dp":true,"better":1,"matchers":[{"string":"Регенерация #% энергетического щита в секунду под действием Дисциплины"}],"trade":{"ids":{"explicit":["explicit.stat_991194404"],"implicit":["implicit.stat_991194404"]}}} +{"ref":"Regenerate #% of Energy Shield per second while on Low Life","better":1,"matchers":[{"string":"Регенерация #% энергетического щита в секунду при малом количестве здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_115109959"]}}} +{"ref":"Regenerate #% of Energy Shield per second while Shocked","better":1,"matchers":[{"string":"Регенерация энергетического щита во время шока: #%"}],"trade":{"ids":{"explicit":["explicit.stat_1700808530"]}}} +{"ref":"Regenerate #% of Life per second","dp":true,"better":1,"matchers":[{"string":"Регенерация #% здоровья в секунду"}],"trade":{"ids":{"explicit":["explicit.stat_836936635"],"implicit":["implicit.stat_836936635"],"fractured":["fractured.stat_836936635"],"enchant":["enchant.stat_836936635"],"crafted":["crafted.stat_836936635"]}}} +{"ref":"Regenerate #% of Life per second during Effect","better":1,"matchers":[{"string":"Регенерация #% здоровья в секунду во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_871270154"],"crafted":["crafted.stat_871270154"]}}} +{"ref":"Regenerate #% of Life per second for each different Ailment affecting you","better":1,"matchers":[{"string":"Регенерирует #% здоровья в секунду за каждое отдельное состояние, действующее на вас"}],"trade":{"ids":{"explicit":["explicit.stat_3491639130"]}}} +{"ref":"Regenerate #% of Life per second for each Raised Zombie","dp":true,"better":1,"matchers":[{"string":"Регенерация #% здоровья в секунду за каждого поднятого зомби"}],"trade":{"ids":{"explicit":["explicit.stat_2841618445"]}}} +{"ref":"Regenerate #% of Life per second if you have been Hit Recently","better":1,"matchers":[{"string":"Регенерация #% здоровья в секунду, если вы недавно получали удар"},{"string":"Регенерация #% от здоровья в секунду, если вы недавно получали удар"}],"trade":{"ids":{"explicit":["explicit.stat_2201614328"],"enchant":["enchant.stat_1122635070"]}}} +{"ref":"Regenerate #% of Life per second on Chilled Ground","better":1,"matchers":[{"string":"Регенерация #% здоровья в секунду на замерзшей земле"}],"trade":{"ids":{"explicit":["explicit.stat_710105516"]}}} +{"ref":"Regenerate #% of Life per second per 500 Maximum Energy Shield","better":1,"matchers":[{"string":"Регенерация #% здоровья в секунду за каждые 500 максимума энергетического щита"}],"trade":{"ids":{"explicit":["explicit.stat_1960833438"]}}} +{"ref":"Regenerate #% of Life per second per Endurance Charge","better":1,"matchers":[{"string":"Регенерация #% здоровья в секунду за заряд выносливости"}],"trade":{"ids":{"explicit":["explicit.stat_989800292"],"implicit":["implicit.stat_989800292"]}}} +{"ref":"Regenerate #% of Life per second per Frenzy Charge","better":1,"matchers":[{"string":"Регенерация #% здоровья в секунду за заряд ярости"}],"trade":{"ids":{"explicit":["explicit.stat_2828673491"]}}} +{"ref":"Regenerate #% of Life per second per Power Charge","better":1,"matchers":[{"string":"Регенерация #% здоровья в секунду за заряд энергии"}],"trade":{"ids":{"explicit":["explicit.stat_3961213398"]}}} +{"ref":"Regenerate #% of Life per second while affected by Vitality","dp":true,"better":1,"matchers":[{"string":"Регенерация #% здоровья в секунду под действием Живучести"}],"trade":{"ids":{"explicit":["explicit.stat_1165583295"]}}} +{"ref":"Regenerate #% of Life per second while Frozen","better":1,"matchers":[{"string":"Регенерация #% здоровья в секунду пока вы заморожены"}],"trade":{"ids":{"explicit":["explicit.stat_2656696317"]}}} +{"ref":"Regenerate #% of Life per second while moving","better":1,"matchers":[{"string":"Регенерация #% здоровья в секунду во время передвижения"}],"trade":{"ids":{"explicit":["explicit.stat_908516597"],"fractured":["fractured.stat_908516597"]}}} +{"ref":"Regenerate #% of Life per second while on Low Life","better":1,"matchers":[{"string":"Регенерация #% здоровья в секунду при малом количестве здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_3942946753"]}}} +{"ref":"Regenerate #% of Life per second with at least 400 Strength","better":1,"matchers":[{"string":"Регенерация #% здоровья в секунду, если у вас минимум 400 силы"}],"trade":{"ids":{"explicit":["explicit.stat_1173027373"]}}} +{"ref":"Regenerate #% of Mana over 2 seconds when you Consume a corpse","better":1,"matchers":[{"string":"Регенерация #% маны в течение 2 секунд, когда вы поглощаете труп"}],"trade":{"ids":{"explicit":["explicit.stat_3721828090"]}}} +{"ref":"Regenerate #% of Mana per second","better":1,"matchers":[{"string":"Регенерация #% маны в секунду"}],"trade":{"ids":{"explicit":["explicit.stat_3188455409"],"implicit":["implicit.stat_3188455409"],"fractured":["fractured.stat_3188455409"]}}} +{"ref":"Regenerate #% of Mana per second if you've Hit an Enemy Recently","better":1,"matchers":[{"string":"Регенерация #% маны в секунду, если вы недавно наносили удар по врагу"}],"trade":{"ids":{"explicit":["explicit.stat_2602865453"]}}} +{"ref":"Regenerate 1 Rage per second for every # Life Recovery per second from Regeneration\nDoes not delay Inherent Loss of Rage","better":1,"matchers":[{"string":"Регенерирует 1 свирепости в секунду за каждые # восстановления здоровья в секунду от регенерации\nНе откладывает изначальную потерю свирепости"}],"trade":{"ids":{"explicit":["explicit.stat_4103111421"]}}} +{"ref":"Reinforcements have #% increased Attack Speed","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"Подкрепление имеет #% повышение скорости атаки"},{"string":"Подкрепление имеет #% снижение скорости атаки","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1339532482"],"fractured":["fractured.stat_1339532482"]}}} +{"ref":"Reinforcements have #% increased Cast Speed","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"Подкрепление имеет #% повышение скорости сотворения чар"},{"string":"Подкрепление имеет #% снижение скорости сотворения чар","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1843941387"],"fractured":["fractured.stat_1843941387"]}}} +{"ref":"Reinforcements have #% increased Movement Speed","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"Подкрепление имеет #% повышение скорости передвижения"},{"string":"Подкрепление имеет #% снижение скорости передвижения","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1342271987"],"fractured":["fractured.stat_1342271987"]}}} +{"ref":"Rejuvenation Totem also grants Mana Regeneration equal to #% of its Life Regeneration","better":1,"matchers":[{"string":"Восполняющий тотем также дарует регенерацию маны, равную #% от его регенерации здоровья"}],"trade":{"ids":{"enchant":["enchant.stat_1803063132"]}}} +{"ref":"Remnants have #% chance to have an additional Suffix Modifier","better":1,"fromAreaMods":true,"matchers":[{"string":"Реликты с #% шансом могут иметь дополнительное свойство-суффикс"}],"trade":{"ids":{"implicit":["implicit.stat_1871805225"]}}} +{"ref":"Remove an Ailment when you use a Flask if all Equipped Items are Elder Items","better":1,"matchers":[{"string":"Снимает одно состояние при использовании флакона, если все надетые на вас предметы - Древние"}],"trade":{"ids":{"explicit":["explicit.stat_2917587077"]}}} +{"ref":"Remove Chill and Freeze when you use a Flask","better":1,"matchers":[{"string":"Снимает охлаждение и заморозку при использовании флакона"}],"trade":{"ids":{"explicit":["explicit.stat_3296873305"],"implicit":["implicit.stat_3296873305"],"fractured":["fractured.stat_3296873305"]}}} +{"ref":"Remove Ignite and Burning when you use a Flask","better":1,"matchers":[{"string":"Снимает поджог и горение при использовании флакона"}],"trade":{"ids":{"explicit":["explicit.stat_1162425204"],"implicit":["implicit.stat_1162425204"],"fractured":["fractured.stat_1162425204"]}}} +{"ref":"Remove Shock when you use a Flask","better":1,"matchers":[{"string":"Снимает шок при использовании флакона"}],"trade":{"ids":{"explicit":["explicit.stat_561861132"],"implicit":["implicit.stat_561861132"],"fractured":["fractured.stat_561861132"]}}} +{"ref":"Removes #% of Life Recovered from Mana when used","better":1,"matchers":[{"string":"При использовании забирает #% восстанавливаемого здоровья из маны"}],"trade":{"ids":{"explicit":["explicit.stat_648019518"],"fractured":["fractured.stat_648019518"]}}} +{"ref":"Removes #% of Mana Recovered from Life when used","better":1,"matchers":[{"string":"При использовании забирает #% восстанавливаемой маны из здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_959641748"],"fractured":["fractured.stat_959641748"]}}} +{"ref":"Removes #% of your maximum Energy Shield on use","better":1,"matchers":[{"string":"При использовании забирает #% вашего максимума энергетического щита"}],"trade":{"ids":{"explicit":["explicit.stat_2917449574"]}}} +{"ref":"Removes all but one Life on use\nRemoved life is Regenerated as Energy Shield over # seconds","better":1,"matchers":[{"string":"При использовании забирает все, кроме единицы здоровья\nРегенерирует удаленное здоровье в виде энергетического щита за # секунд(-ы)"}],"trade":{"ids":{"explicit":["explicit.stat_4120779321"]}}} +{"ref":"Removes all Energy Shield","better":1,"matchers":[{"string":"Удаляет весь энергетический щит"}],"trade":{"ids":{"explicit":["explicit.stat_1482608021"]}}} +{"ref":"Removes Bleeding when you use a Flask","better":1,"matchers":[{"string":"Снимает кровотечение при использовании флакона"}],"trade":{"ids":{"explicit":["explicit.stat_2202201823"]}}} +{"ref":"Removes Bleeding when you use a Warcry","better":1,"matchers":[{"string":"Снимает кровотечение при применении боевого клича"}],"trade":{"ids":{"explicit":["explicit.stat_3936926420"],"fractured":["fractured.stat_3936926420"]}}} +{"ref":"Removes Curses on use","better":1,"matchers":[{"string":"При использовании снимает проклятия"}],"trade":{"ids":{"explicit":["explicit.stat_3895393544"],"fractured":["fractured.stat_3895393544"]}}} +{"ref":"Removes Elemental Ailments on Rampage","better":1,"matchers":[{"string":"Снимает стихийные состояния во время Буйства"}],"trade":{"ids":{"explicit":["explicit.stat_627889781"]}}} +{"ref":"Reserves #% of Life","better":1,"matchers":[{"string":"Удерживается #% здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_2492660287"]}}} +{"ref":"Resolute Technique","better":1,"matchers":[{"string":"Точные удары"}],"trade":{"ids":{"explicit":["explicit.stat_3943945975"],"implicit":["implicit.stat_3943945975"],"fractured":["fractured.stat_3943945975"],"scourge":["scourge.stat_3943945975"]}}} +{"ref":"Resolve Aegis Recovers #% faster while not losing Resolve","better":1,"matchers":[{"string":"Эгида Решимости восстанавливается на #% быстрее, когда не теряется Решимость"},{"string":"Эгида Решимости восстанавливается на #% медленнее, когда не теряется Решимость","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_3889616543"]}}} +{"ref":"Resolve Mitigation from Enemy Hits is based on +#% of Armour","better":1,"matchers":[{"string":"Защита решимости от ударов врагов основана на #% от брони"}],"trade":{"ids":{"explicit":["sanctum.stat_3621177126"]}}} +{"ref":"Restores Ward on use","better":1,"matchers":[{"string":"При использовании восстанавливает барьер"}],"trade":{"ids":{"implicit":["implicit.stat_2451856207"]}}} +{"ref":"Reused at the end of this Flask's effect","better":1,"matchers":[{"string":"Используется повторно по окончании действия эффекта"}],"trade":{"ids":{"enchant":["enchant.stat_1932727102"]}}} +{"ref":"Reward Room Monsters deal #% increased Damage","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"Монстры в комнате с наградой наносят увеличенный на #% урон"},{"string":"Монстры в комнате с наградой наносят уменьшенный на #% урон","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1390113017"],"fractured":["fractured.stat_1390113017"]}}} +{"ref":"Reward Room Monsters take #% increased Damage","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"Монстры в комнате с наградой получают увеличенный на #% урон"},{"string":"Монстры в комнате с наградой получают уменьшенный на #% урон","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_839556554"],"fractured":["fractured.stat_839556554"]}}} +{"ref":"Reward Rooms have #% increased Monsters","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"#% увеличение количества монстров в комнатах с наградой"},{"string":"#% уменьшение количества монстров в комнатах с наградой","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4056408881"],"fractured":["fractured.stat_4056408881"]}}} +{"ref":"Rhoa Feather Lure","better":1,"matchers":[{"string":"Приманка из пера роа","value":1},{"string":"Приманка из сирены-червя","value":2},{"string":"Приманка из деревянного тотема","value":3},{"string":"Волшебная приманка","value":4}],"trade":{"ids":{"explicit":["explicit.stat_3360430812"],"fractured":["fractured.stat_3360430812"]}}} +{"ref":"Right ring slot: #% increased Duration of Ailments on You","better":1,"matchers":[{"string":"Кольцо в правом слоте: #% увеличение длительности состояний на вас"},{"string":"Кольцо в правом слоте: #% уменьшение длительности состояний на вас","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2457848738"]}}} +{"ref":"Right ring slot: #% increased Effect of Curses on you","better":1,"matchers":[{"string":"Кольцо в правом слоте: #% усиление эффекта проклятий на вас"},{"string":"Кольцо в правом слоте: #% ослабление эффекта проклятий на вас","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4279053153"]}}} +{"ref":"Right ring slot: #% increased Skill Effect Duration","better":1,"matchers":[{"string":"Кольцо в правом слоте: #% увеличение длительности эффекта умения"},{"string":"Кольцо в правом слоте: #% уменьшение длительности эффекта умения","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2239667237"]}}} +{"ref":"Right ring slot: #% of Cold Damage from Hits taken as Lightning Damage","better":1,"matchers":[{"string":"Кольцо в правом слоте: #% получаемого урона от холода от ударов становится уроном от молнии"}],"trade":{"ids":{"implicit":["implicit.stat_744858137"]}}} +{"ref":"Right ring slot: #% of Fire Damage from Hits taken as Cold Damage","better":1,"matchers":[{"string":"Кольцо в правом слоте: #% получаемого урона от огня от ударов становится уроном от холода"}],"trade":{"ids":{"implicit":["implicit.stat_2478238773"]}}} +{"ref":"Right ring slot: #% of Lightning Damage from Hits taken as Fire Damage","better":1,"matchers":[{"string":"Кольцо в правом слоте: #% получаемого урона от молнии от ударов становится уроном от огня"}],"trade":{"ids":{"implicit":["implicit.stat_1905512385"]}}} +{"ref":"Right ring slot: +# to maximum Mana","better":1,"matchers":[{"string":"Кольцо в правом слоте: # к максимуму маны"}],"trade":{"ids":{"explicit":["explicit.stat_417509375"]}}} +{"ref":"Right Ring slot: Cover Enemies in Frost for # seconds when you Freeze them","better":1,"matchers":[{"string":"Кольцо в правом слоте: покрывает врагов инеем на # секунд(-ы), когда вы замораживаете их"}],"trade":{"ids":{"explicit":["explicit.stat_3536082205"]}}} +{"ref":"Right ring slot: Minions take #% increased Damage","better":1,"matchers":[{"string":"Кольцо в правом слоте: Приспешники получают увеличенный на #% урон"},{"string":"Кольцо в правом слоте: Приспешники получают уменьшенный на #% урон","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1069618951"]}}} +{"ref":"Right ring slot: Projectiles from Spells cannot Fork","better":1,"matchers":[{"string":"Кольцо в правом слоте: снаряды от чар не могут разветвляться"}],"trade":{"ids":{"explicit":["explicit.stat_2933024469"]}}} +{"ref":"Right ring slot: Projectiles from Spells Chain +# times","better":1,"matchers":[{"string":"Кольцо в правом слоте: снаряды от чар поражают # цели(-ей) по цепи"}],"trade":{"ids":{"explicit":["explicit.stat_1555918911"]}}} +{"ref":"Right ring slot: Regenerate #% of Energy Shield per second","better":1,"matchers":[{"string":"Кольцо в правом слоте: регенерация #% энергетического щита в секунду"}],"trade":{"ids":{"explicit":["explicit.stat_3676958605"]}}} +{"ref":"Right ring slot: You and your Minions take #% reduced Reflected Physical Damage","better":-1,"matchers":[{"string":"Кольцо в правом слоте: #% увеличение отражённого физического урона, получаемого вами и вашими приспешниками"},{"string":"Кольцо в правом слоте: #% уменьшение отражённого физического урона, получаемого вами и вашими приспешниками","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1357244124"]},"inverted":true}} +{"ref":"Right ring slot: You cannot Regenerate Mana","better":1,"matchers":[{"string":"Кольцо в правом слоте: вы не можете регенерировать ману"}],"trade":{"ids":{"explicit":["explicit.stat_783864527"]}}} +{"ref":"Right Ring Slot: Your Shocking Skitterbot's Aura applies Socketed Hex Curse instead","better":1,"matchers":[{"string":"Кольцо в правом слоте: вместо накладывающей шок ауры мехаботов применяется размещенное проклятие порчи"}],"trade":{"ids":{"explicit":["explicit.stat_1809329372"]}}} +{"ref":"Righteous Fire grants #% increased Spell Damage","better":1,"matchers":[{"string":"Праведный огонь дарует #% увеличение урона от чар"},{"string":"Праведный огонь дарует #% уменьшение урона от чар","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3316822388"]}}} +{"ref":"Rin's Veiled","better":0,"matchers":[{"string":"Завуалированная Рин"},{"string":"Завуалированное Рин"},{"string":"Завуалированные Рин"},{"string":"Завуалированный Рин"}],"trade":{"ids":{"veiled":["veiled.mod_6131"]}}} +{"ref":"Riposte has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"#% повышение скорости перезарядки Парирования"},{"string":"#% снижение скорости перезарядки Парирования","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2287986752"]}}} +{"ref":"Rogue Equipment cannot be found","better":1,"matchers":[{"string":"Невозможно найти снаряжение для авантюристов"}],"trade":{"ids":{"enchant":["enchant.stat_1045213941"]}}} +{"ref":"Rogue Perks are doubled","better":1,"matchers":[{"string":"Полезные эффекты авантюристов на #% сильнее"},{"string":"Полезные эффекты авантюристов удвоены","value":100}],"trade":{"ids":{"enchant":["enchant.stat_898812928"]}}} +{"ref":"Rolling Magma Chains an additional time","better":1,"matchers":[{"string":"Магмовый шар поражает дополнительных целей: #"},{"string":"Магмовый шар поражает дополнительную цель","value":1}],"trade":{"ids":{"enchant":["enchant.stat_2589980605"]}}} +{"ref":"Rooms are unknown on the Sanctum Map","better":1,"matchers":[{"string":"Комнаты на карте Святилища неизвестны"}],"trade":{"ids":{"explicit":["sanctum.stat_3237367570"]}}} +{"ref":"Rune Blast teleports you to the detonated Rune if you have not detonated Runes in the past 1.5 seconds","better":1,"matchers":[{"string":"Рунический взрыв телепортирует вас к взорваной руне, если не взрывали руны в последние 1.5 секунды"}],"trade":{"ids":{"enchant":["enchant.stat_242209782"]}}} +{"ref":"Runebinder","better":1,"matchers":[{"string":"Руническая вязь"}],"trade":{"ids":{"explicit":["explicit.stat_4080245957"],"fractured":["fractured.stat_4080245957"],"scourge":["scourge.stat_4080245957"]}}} +{"ref":"Sacrifice #% of Life to gain that much Energy Shield when you Cast a Spell","better":1,"matchers":[{"string":"Отнимает #% от здоровья, чтобы даровать такое же количество энергетического щита, когда вы сотворяете чары"}],"trade":{"ids":{"explicit":["explicit.stat_613752285"]}}} +{"ref":"Sacrifice #% of your Life when you Use or Trigger a Spell Skill","better":1,"matchers":[{"string":"Отнимает #% от вашего здоровья, когда вы используете или когда срабатывает умение чар"}],"trade":{"ids":{"explicit":["explicit.stat_545408899"]}}} +{"ref":"Sand Bladestorms move with #% increased speed","better":1,"matchers":[{"string":"Ураганы лезвий песка двигаются с повышенной на #% скоростью"},{"string":"Ураганы лезвий песка двигаются со сниженной на #% скоростью","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1556508042"]}}} +{"ref":"Scorch Enemies in Close Range when you Block","better":1,"matchers":[{"string":"Опаляет врагов вблизи, когда вы блокируете удар"}],"trade":{"ids":{"explicit":["explicit.stat_41178696"]}}} +{"ref":"Scourge Arrow creates +# Spore Pod","better":1,"matchers":[{"string":"# создаваемых Стрелой скверны стручков со спорами"}],"trade":{"ids":{"enchant":["enchant.stat_1044970549"]}}} +{"ref":"Scourge Arrow deals #% increased Damage","better":1,"matchers":[{"string":"Стрела скверны наносит увеличенный на #% урон"},{"string":"Стрела скверны наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_192534517"]}}} +{"ref":"Scourge Arrow has #% chance to Poison per Stage","better":1,"matchers":[{"string":"Стрела скверны имеет #% шанс отравить за каждую стадию"}],"trade":{"ids":{"enchant":["enchant.stat_2257652056"]}}} +{"ref":"Secrets of Suffering","better":1,"matchers":[{"string":"Секреты страдания"}],"trade":{"ids":{"implicit":["implicit.stat_261342933"]}}} +{"ref":"Seismic Cry has a minimum of # Power","better":1,"matchers":[{"string":"Сейсмический клич учитывает минимум # влияния"}],"trade":{"ids":{"enchant":["enchant.stat_355086768"]}}} +{"ref":"Seismic Trap deals #% increased Damage","better":1,"matchers":[{"string":"Сейсмическая ловушка наносит увеличенный на #% урон"},{"string":"Сейсмическая ловушка наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1175282728"]}}} +{"ref":"Seismic Trap has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"Сейсмическая ловушка имеет #% повышение скорости перезарядки"},{"string":"Сейсмическая ловушка имеет #% снижение скорости перезарядки","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3618430531"]}}} +{"ref":"Seismic Trap has #% increased Skill Effect Duration","better":1,"matchers":[{"string":"Сейсмическая ловушка имеет #% увеличение длительности эффекта умений"},{"string":"Сейсмическая ловушка имеет #% уменьшение длительности эффекта умений","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1615912303"]}}} +{"ref":"Seismic Trap releases an additional Wave","better":1,"matchers":[{"string":"Сейсмическая ловушка выпускает # дополнительных волн(-ы)"},{"string":"Сейсмическая ловушка выпускает дополнительную волну","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1389191919"]}}} +{"ref":"Sentinels of Purity deal #% increased Damage","better":1,"matchers":[{"string":"#% увеличение наносимого урона Стражами чистоты"},{"string":"#% уменьшение наносимого урона Стражами чистоты","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_650630047"]}}} +{"ref":"Share Endurance Charges with nearby party members","better":1,"matchers":[{"string":"Делится зарядами выносливости с ближайшими членами группы"}],"trade":{"ids":{"explicit":["explicit.stat_1881314095"]}}} +{"ref":"Shared Suffering","better":1,"matchers":[{"string":"Общие страдания"}],"trade":{"ids":{"explicit":["explicit.stat_956038713"]}}} +{"ref":"Shattering Steel deals #% increased Damage","better":1,"matchers":[{"string":"Дробящая сталь наносит увеличенный на #% урон"},{"string":"Дробящая сталь наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2313072099"]}}} +{"ref":"Shattering Steel has #% chance to not consume Steel Shards","better":1,"matchers":[{"string":"Дробящая сталь имеет #% шанс не поглотить стальные осколки"}],"trade":{"ids":{"enchant":["enchant.stat_4072657110"]}}} +{"ref":"Shepherd of Souls","better":1,"matchers":[{"string":"Пастырь душ"}],"trade":{"ids":{"explicit":["explicit.stat_2038577923"]}}} +{"ref":"Shield Crush central wave has #% more Area of Effect","better":1,"matchers":[{"string":"На #% больше области действия центральной волны Сокрушающего щита"},{"string":"На #% меньше области действия центральной волны Сокрушающего щита","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_734712401"]}}} +{"ref":"Shock Enemies as though dealing #% more Damage","better":1,"matchers":[{"string":"Накладывает шок на врагов как если бы по ним нанесли на #% больше урона"}],"trade":{"ids":{"explicit":["explicit.stat_2206792089","explicit.stat_451866048"]}}} +{"ref":"Shock nearby Enemies for # Seconds when you Focus","better":1,"matchers":[{"string":"В момент получения Фокуса вы на # секунд(-ы) накладываете на врагов шок"}],"trade":{"ids":{"explicit":["explicit.stat_3031766858"],"fractured":["fractured.stat_3031766858"],"crafted":["crafted.stat_3031766858"]}}} +{"ref":"Shock Nova ring deals #% increased Damage","better":1,"matchers":[{"string":"Shock Nova ring deals #% increased Damage"},{"string":"Shock Nova ring deals #% reduced Damage","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3652051346"]}}} +{"ref":"Shock Reflection","better":1,"matchers":[{"string":"Отражение шока"}],"trade":{"ids":{"explicit":["explicit.stat_3291999509"],"fractured":["fractured.stat_3291999509"]}}} +{"ref":"Shocked Enemies you Kill Explode, dealing #% of\ntheir Life as Lightning Damage which cannot Shock","better":1,"matchers":[{"string":"Убитые вами поражённые шоком враги взрываются, нанося #% от\nих максимума здоровья в виде урона от молнии, который не может накладывать шок"}],"trade":{"ids":{"explicit":["explicit.stat_2706994884"]}}} +{"ref":"Shocks from your Hits always increase Damage taken by at least #%","better":1,"matchers":[{"string":"Шок, наложенный вашими ударами, всегда увеличивает получаемый урон минимум на #%"}],"trade":{"ids":{"explicit":["explicit.stat_1712740586"]}}} +{"ref":"Shocks nearby Enemies during Effect, causing 10% increased Damage taken","better":1,"matchers":[{"string":"Во время действия эффекта накладывает шок на ближайших врагов, вызывая 10% увеличение получаемого урона"}],"trade":{"ids":{"explicit":["explicit.stat_3446170049"]}}} +{"ref":"Shocks you cause are reflected back to you","better":1,"matchers":[{"string":"Шок, наложенный вами, отражается обратно в вас"}],"trade":{"ids":{"explicit":["explicit.stat_807955413"]}}} +{"ref":"Shocks you inflict during Effect spread to other Enemies within # metre","better":1,"matchers":[{"string":"Накладываемый вами во время действия эффекта шок распространяется на других врагов в радиусе # м"}],"trade":{"ids":{"explicit":["explicit.stat_911839512"]}}} +{"ref":"Shocks you inflict spread to other Enemies within # metre","better":1,"matchers":[{"string":"Накладываемый вами шок распространяется на других врагов в радиусе # м"}],"trade":{"ids":{"explicit":["explicit.stat_424549222"],"implicit":["implicit.stat_424549222"]}}} +{"ref":"Shocks you inflict spread to other Enemies within 1.5 metres","better":1,"matchers":[{"string":"Накладываемый вами шок распространяется на других врагов в радиусе 1.5 м"}],"trade":{"ids":{"explicit":["explicit.stat_1640259660"]}}} +{"ref":"Shocks you when you reach Maximum Power Charges","better":1,"matchers":[{"string":"Накладывает на вас шок при достижении максимума зарядов энергии"}],"trade":{"ids":{"explicit":["explicit.stat_4256314560"]}}} +{"ref":"Shrapnel Ballista fires an additional Arrow","better":1,"matchers":[{"string":"Осколочная баллиста выпускает дополнительных стрел: #"},{"string":"Осколочная баллиста выпускает дополнительную стрелу","value":1}],"trade":{"ids":{"enchant":["enchant.stat_959534996"]}}} +{"ref":"Shrapnel Ballista has #% increased Projectile Speed","better":1,"matchers":[{"string":"#% повышение скорости снарядов Осколочной баллисты"},{"string":"#% снижение скорости снарядов Осколочной баллисты","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1213017413"]}}} +{"ref":"Shrapnel Ballista has +# to maximum number of Summoned Totems per 200 Strength","better":1,"matchers":[{"string":"Осколочная баллиста имеет # к максимальному количеству установленных тотемов за каждые 200 силы"}],"trade":{"ids":{"explicit":["explicit.stat_1124661381"]}}} +{"ref":"Shrapnel Ballista Pierces an additional Target","better":1,"matchers":[{"string":"Снаряды Осколочной баллисты пронзают дополнительных целей: #"},{"string":"Снаряды Осколочной баллисты пронзают дополнительную цель","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1494168614"]}}} +{"ref":"Siege Ballista deals #% increased Damage","better":1,"matchers":[{"string":"Осадная баллиста наносит увеличенный на #% урон"},{"string":"Осадная баллиста наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_840189382"]}}} +{"ref":"Siege Ballista has #% increased Attack Speed","better":1,"matchers":[{"string":"#% повышение скорости атаки Осадной баллисты"},{"string":"#% снижение скорости атаки Осадной баллисты","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_444858149"]}}} +{"ref":"Siege Ballista has #% increased Totem Placement Speed","better":1,"matchers":[{"string":"#% повышение скорости установки Осадной баллисты"},{"string":"#% снижение скорости установки Осадной баллисты","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2896357741"]}}} +{"ref":"Siege Ballista has +# to maximum number of Summoned Totems per 200 Dexterity","better":1,"matchers":[{"string":"Осадная баллиста имеет # к максимальному количеству установленных тотемов за каждые 200 ловкости"}],"trade":{"ids":{"explicit":["explicit.stat_2125178364"]}}} +{"ref":"Sigil of Power requires #% increased Mana Spent to gain a Stage","better":1,"matchers":[{"string":"#% увеличение маны, требуемой Печатью силы для улучшения"},{"string":"#% уменьшение маны, требуемой Печатью силы для улучшения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1582465837"]}}} +{"ref":"Sigil of Power's Buff also grants #% increased Critical Strike Chance per Stage","better":1,"matchers":[{"string":"Положительный эффект Печати силы также дарует #% повышение шанса критического удара за стадию"},{"string":"Положительный эффект Печати силы также дарует #% снижение шанса критического удара за стадию","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_479197076"]}}} +{"ref":"Siphoning Trap deals #% increased Damage","better":1,"matchers":[{"string":"Ловушка переливания наносит увеличенный на #% урон"},{"string":"Ловушка переливания наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3686368306"]}}} +{"ref":"Siphoning Trap has #% increased Chill Effect","better":1,"matchers":[{"string":"Ловушка переливания имеет #% усиление эффекта охлаждения"},{"string":"Ловушка переливания имеет #% ослабление эффекта охлаждения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2530563277"]}}} +{"ref":"Siphoning Trap has #% increased Skill Effect Duration","better":1,"matchers":[{"string":"Ловушка переливания имеет #% увеличение продолжительности эффектов умений"},{"string":"Ловушка переливания имеет #% уменьшение продолжительности эффектов умений","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4166695945"]}}} +{"ref":"Siphoning Trap's beam to you grants #% reduced Damage taken for each other beam","better":-1,"matchers":[{"string":"Ведущий к вам луч Ловушки переливания дарует #% увеличение получаемого урона за каждый другой луч"},{"string":"Ведущий к вам луч Ловушки переливания дарует #% уменьшение получаемого урона за каждый другой луч","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2673745094"]},"inverted":true}} +{"ref":"Skeletons deal #% increased Damage","better":1,"matchers":[{"string":"Скелеты наносят увеличенный на #% урон"},{"string":"Скелеты наносят уменьшенный на #% урон","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3059357595"],"enchant":["enchant.stat_3059357595"]}}} +{"ref":"Skeletons gain Added Chaos Damage equal to #% of Maximum Energy Shield on your Equipped Shield","better":1,"matchers":[{"string":"Добавляет урон хаосом скелетам, равный #% от максимума энергетического щита на вашем щите в руках"}],"trade":{"ids":{"explicit":["explicit.stat_1475598909"]}}} +{"ref":"Skills Chain +# times","better":1,"matchers":[{"string":"Умения поражают целей по цепи: #"}],"trade":{"ids":{"explicit":["explicit.stat_1787073323"],"implicit":["implicit.stat_1787073323"],"scourge":["scourge.stat_1787073323"]}}} +{"ref":"Skills Chain an additional time while at maximum Frenzy Charges","better":1,"matchers":[{"string":"Умения поражают дополнительных целей при максимуме зарядов ярости: #"},{"string":"Умения поражают дополнительную цель при максимуме зарядов ярости","value":1}],"trade":{"ids":{"explicit":["explicit.stat_285624304"]}}} +{"ref":"Skills Cost no Mana during Effect","better":1,"matchers":[{"string":"Ваши умения не расходуют ману во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_1669220541"]}}} +{"ref":"Skills deal #% more Damage for each Warcry Exerting them","better":1,"matchers":[{"string":"Умения наносят на #% больше урона за каждый улучшающий их боевой клич"},{"string":"Умения наносят на #% меньше урона за каждый улучшающий их боевой клич","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2023285759"]}}} +{"ref":"Skills Fire # additional Projectile for 4 seconds after\nyou consume a total of 12 Steel Shards","better":1,"matchers":[{"string":"Умения выпускают # дополнительный снаряд в течении 4 секунд\nпосле того, как вы поглотили суммарно 12 стальных осколков"},{"string":"Умения выпускают # дополнительных снаряда(-ов) в течении 4 секунд\nпосле того, как вы поглотили суммарно 12 стальных осколков"}],"trade":{"ids":{"explicit":["explicit.stat_2511521167"]}}} +{"ref":"Skills fire an additional Projectile","better":1,"matchers":[{"string":"Умения выпускают дополнительных снарядов: #"},{"string":"Умения выпускают дополнительный снаряд","value":1}],"trade":{"ids":{"explicit":["explicit.stat_74338099"],"implicit":["implicit.stat_74338099"],"fractured":["fractured.stat_74338099"]}}} +{"ref":"Skills fire an additional Projectile during Effect","better":1,"matchers":[{"string":"Умения выпускают дополнительных снарядов во время действия эффекта: #"},{"string":"Умения выпускают дополнительный снаряд во время действия эффекта","value":1}],"trade":{"ids":{"explicit":["explicit.stat_323705912"]}}} +{"ref":"Skills fire an additional Projectile if you've been Hit Recently","better":1,"matchers":[{"string":"Умения выпускают # дополнительных снаряда(-ов), если вы недавно получали удар"},{"string":"Умения выпускают дополнительный снаряд, если вы недавно получали удар","value":1}],"trade":{"ids":{"explicit":["explicit.stat_988207959"]}}} +{"ref":"Skills fire an additional Projectile if you've used a Movement Skill Recently","better":1,"matchers":[{"string":"Умения выпускают # дополнительных снаряда(-ов), если вы недавно использовали умение передвижения"},{"string":"Умения выпускают дополнительный снаряд, если вы недавно использовали умение передвижения","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2809802678"]}}} +{"ref":"Skills gain a Base Energy Shield Cost equal to #% of Base Mana Cost","better":1,"matchers":[{"string":"Умения имеют базовый расход энергетического щита, равный #% базового расхода маны"}],"trade":{"ids":{"explicit":["explicit.stat_4013794060"]}}} +{"ref":"Skills gain a Base Life Cost equal to #% of Base Mana Cost","better":1,"matchers":[{"string":"Умения получают базовый расход здоровья, равный #% от базового расхода маны"}],"trade":{"ids":{"explicit":["explicit.stat_3605834869"]}}} +{"ref":"Skills Supported by Spellslinger have #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"Усиленные Чароплетом умения имеют #% повышение скорости перезарядки"},{"string":"Усиленные Чароплетом умения имеют #% снижение скорости перезарядки","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_465162370"]}}} +{"ref":"Skills Supported by Unleash have #% increased Seal gain frequency","better":1,"matchers":[{"string":"Усиленные Высвобождением умения имеют #% повышение частоты получения печатей"},{"string":"Усиленные Высвобождением умения имеют #% снижение частоты получения печатей","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1504513372"]}}} +{"ref":"Skills supported by Unleash have +# to maximum number of Seals","better":1,"matchers":[{"string":"Усиленные Высвобождением умения имеют # к максимуму Печатей"}],"trade":{"ids":{"explicit":["explicit.stat_1264919148"],"fractured":["fractured.stat_1264919148"]}}} +{"ref":"Skills that would Summon a Totem have #% chance to Summon two Totems instead","better":1,"matchers":[{"string":"Призывающие тотемы умения с #% шансом могут призвать два тотема вместо одного"}],"trade":{"ids":{"explicit":["explicit.stat_1870732546"]}}} +{"ref":"Skills used by Mines have #% increased Area of Effect","better":1,"matchers":[{"string":"Используемые минами умения имеют #% увеличение области действия"},{"string":"Используемые минами умения имеют #% уменьшение области действия","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2228913626"],"fractured":["fractured.stat_2228913626"]}}} +{"ref":"Skills used by Traps have #% increased Area of Effect","better":1,"matchers":[{"string":"Умения, используемые ловушками, имеют #% увеличение области действия"},{"string":"Умения, используемые ловушками, имеют #% уменьшение области действия","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4050593908"],"fractured":["fractured.stat_4050593908"]}}} +{"ref":"Skills which Exert an Attack have #% chance to not count that Attack","better":1,"matchers":[{"string":"Улучшающие атаку умения с #% шансом могут не учесть эту атаку"}],"trade":{"ids":{"explicit":["explicit.stat_2538411280"]}}} +{"ref":"Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Dexterity","better":1,"matchers":[{"string":"Умения, бросающие мины, бросают до # дополнительных мин, если у вас минимум 800 ловкости"},{"string":"Умения, бросающие мины, бросают до 1 дополнительной мины, если у вас минимум 800 ловкости","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1917661185"]}}} +{"ref":"Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Intelligence","better":1,"matchers":[{"string":"Умения, бросающие мины, бросают до # дополнительных мин, если у вас минимум 800 интеллекта"},{"string":"Умения, бросающие мины, бросают до 1 дополнительной мины, если у вас минимум 800 интеллекта","value":1}],"trade":{"ids":{"explicit":["explicit.stat_5955083"]}}} +{"ref":"Skills which throw Traps Cost Life instead of Mana","better":1,"matchers":[{"string":"Бросающие ловушки умения расходуют здоровье вместо маны"}],"trade":{"ids":{"explicit":["explicit.stat_2420786978"]}}} +{"ref":"Skills which Throw Traps throw up to 1 additional Trap","better":1,"matchers":[{"string":"Умения, бросающие ловушки, бросают дополнительных ловушек: #"},{"string":"Умения, бросающие ловушки, бросают 1 дополнительную ловушку","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1220800126"]}}} +{"ref":"Slaying Enemies close together can attract monsters from Beyond this realm","better":1,"fromAreaMods":true,"matchers":[{"string":"Убитые близко друг к другу враги могут привлечь монстров из другого мира"}],"trade":{"ids":{"explicit":["explicit.stat_1837040413"],"implicit":["implicit.stat_1837040413"],"fractured":["fractured.stat_1837040413"],"enchant":["enchant.stat_1837040413"]}}} +{"ref":"Slaying Enemies has a #% increased chance to spawn a Beyond Portal","better":1,"fromAreaMods":true,"matchers":[{"string":"Убитые враги с увеличенным на #% шансом могут породить портал Иномирья"},{"string":"Убитые враги с уменьшенным на #% шансом могут породить портал Иномирья","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3036422124"]}}} +{"ref":"Smite deals #% increased Damage","better":1,"matchers":[{"string":"Кара наносит увеличенный на #% урон"},{"string":"Кара наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3901016205"]}}} +{"ref":"Smite has #% increased Aura Effect","better":1,"matchers":[{"string":"#% усиление эффекта ауры Кары"}],"trade":{"ids":{"enchant":["enchant.stat_2294732229"]}}} +{"ref":"Smite has a #% chance for lightning to strike another target","better":1,"matchers":[{"string":"Кара имеет #% шанс поразить молнией дополнительную цель"}],"trade":{"ids":{"enchant":["enchant.stat_3946561324"]}}} +{"ref":"Smoke Mine grants additional #% increased Movement Speed","better":1,"matchers":[{"string":"Дымовая мина дарует дополнительное #% повышение скорости передвижения"},{"string":"Дымовая мина дарует дополнительное #% снижение скорости передвижения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3564777492"]}}} +{"ref":"Smuggler's Caches have #% chance to Duplicate contained Rogue's Markers","better":1,"matchers":[{"string":"Тайник контрабандиста имеет #% шанс удвоить содержащиеся в нем разбойничьи жетоны"},{"string":"Тайник контрабандиста удваивает содержащиеся в нем разбойничьи жетоны","value":100}],"trade":{"ids":{"explicit":["explicit.stat_833254006"]}}} +{"ref":"Sniper's Mark has #% increased Curse Effect","better":1,"matchers":[{"string":"#% усиление эффекта проклятия Метки снайпера"},{"string":"#% ослабление эффекта проклятия Метки снайпера","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2789561878"]}}} +{"ref":"Socketed Attacks have +# to Total Mana Cost","better":-1,"matchers":[{"string":"# к итоговому расходу маны размещёнными атаками"}],"trade":{"ids":{"explicit":["explicit.stat_2264586521"],"fractured":["fractured.stat_2264586521"]}}} +{"ref":"Socketed Attacks have +#% to Critical Strike Chance","dp":true,"better":1,"matchers":[{"string":"#% к шансу критического удара размещённых атак"}],"trade":{"ids":{"explicit":["explicit.stat_2867348718"],"fractured":["fractured.stat_2867348718"]}}} +{"ref":"Socketed Attacks have +#% to Critical Strike Multiplier","better":1,"matchers":[{"string":"#% к множителю критического удара размещённых атак"}],"trade":{"ids":{"explicit":["explicit.stat_356456977"],"fractured":["fractured.stat_356456977"]}}} +{"ref":"Socketed Curse Gems have #% increased Reservation Efficiency","better":-1,"matchers":[{"string":"Размещенные камни проклятий имеют #% уменьшение эффективности удержания ресурсов"},{"string":"Размещенные камни проклятий имеют #% увеличение эффективности удержания ресурсов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1471600638"]},"inverted":true}} +{"ref":"Socketed Gems are Supported by Level # Added Chaos Damage","better":1,"matchers":[{"string":"Размещённые камни усилены Уроном хаосом # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_128","explicit.stat_411460446"],"scourge":["scourge.stat_411460446"]}}} +{"ref":"Socketed Gems are Supported by Level # Added Cold Damage","better":1,"matchers":[{"string":"Размещённые камни усилены Уроном холодом # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_127","explicit.stat_4020144606"],"scourge":["scourge.stat_4020144606"]}}} +{"ref":"Socketed Gems are Supported by Level # Added Fire Damage","better":1,"matchers":[{"string":"Размещённые камни усилены Уроном огнем # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_126","explicit.stat_2572192375"],"implicit":["implicit.stat_2572192375"],"fractured":["fractured.stat_2572192375"]}}} +{"ref":"Socketed Gems are Supported by Level # Added Lightning Damage","better":1,"matchers":[{"string":"Размещённые камни усилены Уроном молнией # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_125","explicit.stat_1647529598"],"scourge":["scourge.stat_1647529598"]}}} +{"ref":"Socketed Gems are supported by Level # Additional Accuracy","better":1,"matchers":[{"string":"Размещённые камни усилены Меткостью # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1567462963"],"implicit":["implicit.stat_1567462963"],"fractured":["fractured.stat_1567462963"]}}} +{"ref":"Socketed Gems are Supported by Level # Advanced Traps","better":1,"matchers":[{"string":"Размещённые камни усилены Улучшенными ловушками # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_6","explicit.stat_3839163699"],"fractured":["fractured.stat_3839163699"]}}} +{"ref":"Socketed Gems are Supported by Level # Ancestral Call","better":1,"matchers":[{"string":"Размещённые камни усилены Зовом предков # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_14","explicit.stat_696805682"],"fractured":["fractured.stat_696805682"]}}} +{"ref":"Socketed Gems are Supported by Level # Arcane Surge","better":1,"matchers":[{"string":"Размещённые камни усилены Колдовским выбросом # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_123","explicit.stat_2287264161"],"fractured":["fractured.stat_2287264161"]}}} +{"ref":"Socketed Gems are Supported by Level # Archmage","better":1,"matchers":[{"string":"Размещённые камни усилены Архимагом # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_122","explicit.stat_3652278215"]}}} +{"ref":"Socketed Gems are Supported by Level # Arrogance","better":1,"matchers":[{"string":"Размещенные камни усилены Заносчивостью # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_116","explicit.stat_3922006600"],"implicit":["implicit.stat_3922006600"],"crafted":["crafted.stat_3922006600"]}}} +{"ref":"Socketed Gems are Supported by Level # Arrow Nova","better":1,"matchers":[{"string":"Размещённые камни усилены Кольцом стрел # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_121","explicit.stat_1331336999"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Added Chaos Damage","better":1,"matchers":[{"string":"Размещённые камни усилены пробуждённым Уроном хаосом # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2722592119"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Added Cold Damage","better":1,"matchers":[{"string":"Размещённые камни усилены пробуждённым Уроном холодом # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2509486489"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Added Fire Damage","better":1,"matchers":[{"string":"Размещённые камни усилены пробуждённым Уроном огнём # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_339131601"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Added Lightning Damage","better":1,"matchers":[{"string":"Размещённые камни усилены пробуждённым Уроном молнией # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_3429304534"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Ancestral Call","better":1,"matchers":[{"string":"Размещённые камни усилены пробуждённым Зовом предков # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_4055526353"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Blasphemy","better":1,"matchers":[{"string":"Размещённые камни усилены пробуждённым Богохульством # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1046449631"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Brutality","better":1,"matchers":[{"string":"Размещённые камни усилены пробуждённой Жестокостью # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_3610200044"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Burning Damage","better":1,"matchers":[{"string":"Размещённые камни усилены пробуждённым Уроном от горения # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_493707013"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Chain","better":1,"matchers":[{"string":"Размещённые камни усилены пробуждённой Цепью # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2249251344"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Cold Penetration","better":1,"matchers":[{"string":"Размещённые камни усилены пробуждённым Пронизывающим холодом # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1889095429"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Controlled Destruction","better":1,"matchers":[{"string":"Размещённые камни усилены пробуждённым Контролируемым разрушением # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_271119551"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Deadly Ailments","better":1,"matchers":[{"string":"Размещённые камни усилены пробуждёнными Смертельными состояниями # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1621366871"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Elemental Damage With Attacks","better":1,"matchers":[{"string":"Размещённые камни усилены пробуждённым Уроном от стихий атаками # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1786672841"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Elemental Focus","better":1,"matchers":[{"string":"Размещённые камни усилены пробуждённой Концентрацией стихий # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2111661233"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Empower","better":1,"matchers":[{"string":"Размещенные камни усилены Пробужденным: Усилитель # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_3739157305"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Enhance","better":1,"matchers":[{"string":"Размещенные камни усилены Пробужденным: Улучшитель # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2133566731"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Fire Penetration","better":1,"matchers":[{"string":"Размещённые камни усилены пробуждённым Пронизывающим жаром # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_170274897"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Fork","better":1,"matchers":[{"string":"Размещённые камни усилены пробуждённым Разветвлением # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1803865171"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Generosity","better":1,"matchers":[{"string":"Размещённые камни усилены пробуждённой Щедростью # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1007586373"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Greater Multiple Projectiles","better":1,"matchers":[{"string":"Размещённые камни усилены пробуждёнными Многими дополнительными снарядами # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1980028507"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Increased Area Of Effect","better":1,"matchers":[{"string":"Размещённые камни усилены пробуждённой Расширенной областью действия # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2333301609"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Lightning Penetration","better":1,"matchers":[{"string":"Размещённые камни усилены пробуждёнными Пронизывающими молниями # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1544223714"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Melee Physical Damage","better":1,"matchers":[{"string":"Размещённые камни усилены пробуждённым Физическим уроном ближнего боя # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2173069393"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Melee Splash","better":1,"matchers":[{"string":"Размещённые камни усилены пробуждённым Раскатистым ударом # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2253550081"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Minion Damage","better":1,"matchers":[{"string":"Размещённые камни усилены пробуждённым Уроном приспешников # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2100048639"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Multistrike","better":1,"matchers":[{"string":"Размещённые камни усилены пробуждённым Градом ударов # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_511417258"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Spell Cascade","better":1,"matchers":[{"string":"Размещённые камни усилены пробуждённым Каскадом чар # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2222752567"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Spell Echo","better":1,"matchers":[{"string":"Размещённые камни усилены пробуждённым Эхом магии # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_48859060"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Swift Affliction","better":1,"matchers":[{"string":"Размещённые камни усилены пробуждённым Стремительным недугом # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_4089933397"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Unbound Ailments","better":1,"matchers":[{"string":"Размещённые камни усилены пробуждёнными Безграничными состояниями # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2116002108"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Unleash","better":1,"matchers":[{"string":"Размещённые камни усилены пробуждённым Высвобождением # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_3428829446"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Vicious Projectiles","better":1,"matchers":[{"string":"Размещённые камни усилены пробуждёнными Яростными снарядами # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2647355055"]}}} +{"ref":"Socketed Gems are Supported by Level # Awakened Void Manipulation","better":1,"matchers":[{"string":"Размещённые камни усилены пробуждённой Манипуляцией пустотой # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1882929618"]}}} +{"ref":"Socketed Gems are Supported by Level # Ballista Totem","better":1,"matchers":[{"string":"Размещённые камни усилены Тотемом-баллистой # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_27","explicit.stat_3030692053"],"fractured":["fractured.stat_3030692053"]}}} +{"ref":"Socketed Gems are Supported by Level # Barrage","better":1,"matchers":[{"string":"Размещённые камни усилены Стрельбой очередями # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_120","explicit.stat_3827538724"]}}} +{"ref":"Socketed Gems are Supported by Level # Behead","better":1,"matchers":[{"string":"Размещенные камни усилены Обезглавливанием # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_140","explicit.stat_1019145105"]}}} +{"ref":"Socketed Gems are Supported by Level # Blasphemy","better":1,"matchers":[{"string":"Размещённые камни усилены Богохульством # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_119","explicit.stat_539747809"]}}} +{"ref":"Socketed Gems are Supported by Level # Blastchain Mine","better":1,"matchers":[{"string":"Размещенные камни усилены Цепным подрывом # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_23","explicit.stat_1710508327"],"fractured":["fractured.stat_1710508327"]}}} +{"ref":"Socketed Gems are supported by Level # Blind","better":1,"matchers":[{"string":"Размещённые камни усилены Ослеплением # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2223640518"],"implicit":["implicit.stat_2223640518"],"fractured":["fractured.stat_2223640518"]}}} +{"ref":"Socketed Gems are Supported by Level # Block Chance Reduction","better":1,"matchers":[{"string":"Размещённые камни усилены Затруднением блока # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1966051190"]}}} +{"ref":"Socketed Gems are Supported by Level # Bloodlust","better":1,"matchers":[{"string":"Размещённые камни усилены Жаждой крови # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_117","explicit.stat_804508379"]}}} +{"ref":"Socketed Gems are Supported by Level # Bloodthirst","better":1,"matchers":[{"string":"Размещенные камни усилены Кровавым зверством # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_135"]}}} +{"ref":"Socketed Gems are Supported by Level # Bonechill","better":1,"matchers":[{"string":"Размещённые камни усилены Леденящим охлаждением # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_115","explicit.stat_1859244771"]}}} +{"ref":"Socketed Gems are Supported by Level # Brutality","better":1,"matchers":[{"string":"Размещённые камни усилены Жестокостью # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_114","explicit.stat_715256302"],"fractured":["fractured.stat_715256302"]}}} +{"ref":"Socketed Gems are Supported by Level # Burning Damage","better":1,"matchers":[{"string":"Размещённые камни усилены Уроном от горения # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_68","explicit.stat_2680613507"],"fractured":["fractured.stat_2680613507"]}}} +{"ref":"Socketed Gems are supported by Level # Cast On Critical Strike","better":1,"matchers":[{"string":"Размещённые камни усилены Сотворением чар при критическом ударе # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2325632050"],"implicit":["implicit.stat_2325632050"],"fractured":["fractured.stat_2325632050"]}}} +{"ref":"Socketed Gems are supported by Level # Cast on Death","better":1,"matchers":[{"string":"Размещённые камни усилены Сотворением чар при смерти # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_3878987051"]}}} +{"ref":"Socketed Gems are Supported by Level # Cast On Melee Kill","better":1,"matchers":[{"string":"Размещённые камни усилены Сотворением чар при убийстве в ближнем бою # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_3312593243"],"fractured":["fractured.stat_3312593243"]}}} +{"ref":"Socketed Gems are Supported by Level # Cast when Damage Taken","better":1,"matchers":[{"string":"Размещённые камни усилены Сотворением чар при получении урона # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_112","explicit.stat_3036440332"],"fractured":["fractured.stat_3036440332"]}}} +{"ref":"Socketed Gems are supported by Level # Cast when Stunned","better":1,"matchers":[{"string":"Размещённые камни усилены Сотворением чар при оглушении # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1079148723"],"implicit":["implicit.stat_1079148723"]}}} +{"ref":"Socketed Gems are Supported by Level # Cast While Channelling","better":1,"matchers":[{"string":"Размещённые камни усилены Сотворением чар при поддержании # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1316646496"],"fractured":["fractured.stat_1316646496"]}}} +{"ref":"Socketed Gems are Supported by Level # Chain","better":1,"matchers":[{"string":"Размещённые камни усилены Цепью # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_107","explicit.stat_2643665787"]}}} +{"ref":"Socketed Gems are Supported by Level # Chance To Bleed","better":1,"matchers":[{"string":"Размещённые камни усилены Шансом кровотечения # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2178803872","explicit.stat_4197676934"],"fractured":["fractured.stat_4197676934"]}}} +{"ref":"Socketed Gems are supported by Level # Chance to Flee","better":1,"matchers":[{"string":"Размещённые камни усилены Паникой # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_952060721"]}}} +{"ref":"Socketed Gems are Supported by Level # Chance to Poison","better":1,"matchers":[{"string":"Размещенные камни усилены Шансом отравить # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_54","explicit.stat_228165595"],"fractured":["fractured.stat_228165595"]}}} +{"ref":"Socketed Gems are Supported by Level # Charged Mines","better":1,"matchers":[{"string":"Размещенные камни усилены Заряженными минами # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_103","explicit.stat_1365328494"]}}} +{"ref":"Socketed Gems are Supported by Level # Charged Traps","better":1,"matchers":[{"string":"Размещённые камни усилены Заряженными ловушками # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_78","explicit.stat_479453859"]}}} +{"ref":"Socketed Gems are Supported by Level # Close Combat","better":1,"matchers":[{"string":"Размещенные камни усилены Боем вплотную # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_102","explicit.stat_694651314"]}}} +{"ref":"Socketed Gems are Supported by Level # Cluster Trap","better":1,"matchers":[{"string":"Размещённые камни усилены Кассетными ловушками # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2854183975"]}}} +{"ref":"Socketed Gems are Supported by Level # Cold Penetration","better":1,"matchers":[{"string":"Размещённые камни усилены Пронизывающим холодом # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_100","explicit.stat_1991958615"],"fractured":["fractured.stat_1991958615"]}}} +{"ref":"Socketed Gems are Supported by Level # Cold to Fire","better":1,"matchers":[{"string":"Размещённые камни усилены Холодом в огонь # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_99","explicit.stat_550444281"]}}} +{"ref":"Socketed Gems are Supported by Level # Combustion","better":1,"matchers":[{"string":"Размещённые камни усилены Воспламенением # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_105","explicit.stat_1828254451"]}}} +{"ref":"Socketed Gems are Supported by Level # Concentrated Effect","better":1,"matchers":[{"string":"Размещённые камни усилены Средоточием # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_98","explicit.stat_2388360415"],"fractured":["fractured.stat_2388360415"]}}} +{"ref":"Socketed Gems are Supported by Level # Controlled Blaze","better":1,"matchers":[{"string":"Размещенные камни усилены Управляемым горением # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_162"]}}} +{"ref":"Socketed Gems are Supported by Level # Controlled Destruction","better":1,"matchers":[{"string":"Размещённые камни усилены Контролируемым разрушением # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_97","explicit.stat_3718597497"],"fractured":["fractured.stat_3718597497"]}}} +{"ref":"Socketed Gems are Supported by Level # Corrupting Cry","better":1,"matchers":[{"string":"Размещенные камни усилены Оскверняющим кличем # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_155"]}}} +{"ref":"Socketed Gems are Supported by Level # Critical Strike Affliction","better":1,"matchers":[{"string":"Размещенные камни усилены Критическими ударами состояниями # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_31","explicit.stat_2228279620"],"fractured":["fractured.stat_2228279620"]}}} +{"ref":"Socketed Gems are Supported by Level # Cruelty","better":1,"matchers":[{"string":"Размещенные камни усилены Злостью # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_136","explicit.stat_1679136"]}}} +{"ref":"Socketed Gems are Supported by Level # Culling Strike","better":1,"matchers":[{"string":"Размещённые камни усилены Добиванием # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_96","explicit.stat_1135493957"]}}} +{"ref":"Socketed Gems are Supported by Level # Cursed Ground","better":1,"matchers":[{"string":"Размещенные камни усилены Проклятой землей # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_145","explicit.stat_3998071134"]}}} +{"ref":"Socketed Gems are Supported by Level # Damage On Full Life","better":1,"matchers":[{"string":"Размещённые камни усилены Уроном при полном здоровье # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2126431157"]}}} +{"ref":"Socketed Gems are Supported by Level # Deadly Ailments","better":1,"matchers":[{"string":"Размещённые камни усилены Смертельными состояниями # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_94","explicit.stat_103909236"]}}} +{"ref":"Socketed Gems are Supported by Level # Decay","better":1,"matchers":[{"string":"Размещённые камни усилены Разложением # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_92","explicit.stat_388696990"]}}} +{"ref":"Socketed Gems are Supported by Level # Devour","better":1,"matchers":[{"string":"Размещенные камни усилены Пожиранием # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_152","explicit.stat_2820883532"]}}} +{"ref":"Socketed Gems are Supported by Level # Divine Blessing","better":1,"matchers":[{"string":"Размещенные камни усилены Божественным благословением # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_3274973940"]}}} +{"ref":"Socketed Gems are Supported by Level # Efficacy","better":1,"matchers":[{"string":"Размещённые камни усилены Эффективностью # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_91","explicit.stat_3924539382"],"fractured":["fractured.stat_3924539382"]}}} +{"ref":"Socketed Gems are Supported by Level # Elemental Army Support","better":1,"matchers":[{"string":"Размещенные камни усилены Стихийным войском # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_514705332"]}}} +{"ref":"Socketed Gems are supported by Level # Elemental Damage with Attacks","better":1,"matchers":[{"string":"Размещённые камни усилены Уроном от стихий атаками # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2532625478"],"implicit":["implicit.stat_2532625478"],"fractured":["fractured.stat_2532625478"]}}} +{"ref":"Socketed Gems are Supported by Level # Elemental Focus","better":1,"matchers":[{"string":"Размещённые камни усилены Концентрацией стихий # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_90","explicit.stat_1169422227"],"fractured":["fractured.stat_1169422227"]}}} +{"ref":"Socketed Gems are Supported by Level # Elemental Penetration","better":1,"matchers":[{"string":"Размещённые камни усилены Пронизывающей стихией # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1994143317"]}}} +{"ref":"Socketed Gems are Supported by Level # Elemental Proliferation","better":1,"matchers":[{"string":"Размещённые камни усилены Разгулом стихий # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_89","explicit.stat_2929101122"],"implicit":["implicit.stat_2929101122"],"fractured":["fractured.stat_2929101122"]}}} +{"ref":"Socketed Gems are Supported by Level # Empower","better":1,"matchers":[{"string":"Размещённые камни усилены Усилителем # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_3581578643"],"fractured":["fractured.stat_3581578643"]}}} +{"ref":"Socketed Gems are Supported by Level # Endurance Charge on Melee Stun","better":1,"matchers":[{"string":"Размещённые камни усилены Зарядом выносливости при оглушении в ближнем бою # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_88","explicit.stat_3375208082"],"fractured":["fractured.stat_3375208082"]}}} +{"ref":"Socketed Gems are Supported by Level # Energy Leech","better":1,"matchers":[{"string":"Размещенные камни усилены Похищением энергетического щита # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_87","explicit.stat_799443127"]}}} +{"ref":"Socketed Gems are Supported by Level # Enhance","better":1,"matchers":[{"string":"Размещённые камни усилены Улучшителем # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2556436882"],"fractured":["fractured.stat_2556436882"]}}} +{"ref":"Socketed Gems are Supported by Level # Enlighten","better":1,"matchers":[{"string":"Размещённые камни усилены Наставником # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2065361612"],"fractured":["fractured.stat_2065361612"]}}} +{"ref":"Socketed Gems are Supported by Level # Eternal Blessing","better":1,"matchers":[{"string":"Размещенные камни усилены Вечным благословением # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_143","explicit.stat_3062849155"]}}} +{"ref":"Socketed Gems are Supported by Level # Expert Retaliation","better":1,"matchers":[{"string":"Размещенные камни усилены Искусной расплатой # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_164","explicit.stat_3570337997"]}}} +{"ref":"Socketed Gems are Supported by Level # Faster Attacks","better":1,"matchers":[{"string":"Размещённые камни усилены Ускорением атак # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_86","explicit.stat_928701213"],"fractured":["fractured.stat_928701213"]}}} +{"ref":"Socketed Gems are Supported by Level # Faster Casting","better":1,"matchers":[{"string":"Размещённые камни усилены Ускоренным сотворением чар # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_85","explicit.stat_2169938251"],"implicit":["implicit.stat_2169938251"],"fractured":["fractured.stat_2169938251"]}}} +{"ref":"Socketed Gems are supported by Level # Faster Projectiles","better":1,"matchers":[{"string":"Размещённые камни усилены Ускорением снарядов # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_99089516"],"implicit":["implicit.stat_99089516"],"fractured":["fractured.stat_99089516"]}}} +{"ref":"Socketed Gems are Supported by Level # Feeding Frenzy","better":1,"matchers":[{"string":"Размещенные камни усилены Голодным остервенением # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_83","explicit.stat_2269282877"]}}} +{"ref":"Socketed Gems are Supported by Level # Fire Penetration","better":1,"matchers":[{"string":"Размещённые камни усилены Пронизывающим жаром # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_82","explicit.stat_1979658770","explicit.stat_3265951306"],"fractured":["fractured.stat_1979658770"]}}} +{"ref":"Socketed Gems are Supported by Level # Fist of War","better":1,"matchers":[{"string":"Размещённые камни усилены Кулаком войны # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_129"]}}} +{"ref":"Socketed Gems are Supported by Level # Flamewood","better":1,"matchers":[{"string":"Размещенные камни усилены Лучиной # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_154","explicit.stat_285773939"]}}} +{"ref":"Socketed Gems are Supported by Level # Focused Ballista","better":1,"matchers":[{"string":"Размещенные камни усилены Прицельной баллистой # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_138","explicit.stat_921536976"]}}} +{"ref":"Socketed Gems are supported by Level # Fork","better":1,"matchers":[{"string":"Размещённые камни усилены Разветвлением # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2062753054"],"implicit":["implicit.stat_2062753054"]}}} +{"ref":"Socketed Gems are Supported by Level # Fortify","better":1,"matchers":[{"string":"Размещённые камни усилены Укреплением # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_79","explicit.stat_107118693"],"implicit":["implicit.stat_107118693"],"fractured":["fractured.stat_107118693"]}}} +{"ref":"Socketed Gems are Supported by Level # Fresh Meat","better":1,"matchers":[{"string":"Размещенные камни усилены Свежим мясом # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_153","explicit.stat_3713917371"]}}} +{"ref":"Socketed Gems are Supported by Level # Frigid Bond","better":1,"matchers":[{"string":"Размещенные камни усилены Морозными узами # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_159"]}}} +{"ref":"Socketed Gems are Supported by Level # Generosity","better":1,"matchers":[{"string":"Размещённые камни усилены Щедростью # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_77","explicit.stat_2593773031"]}}} +{"ref":"Socketed Gems are Supported by Level # Greater Multiple Projectiles","better":1,"matchers":[{"string":"Размещённые камни усилены Множеством дополнительных снарядов # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_1","explicit.stat_359450079"]}}} +{"ref":"Socketed Gems are Supported by Level # Greater Spell Echo","better":1,"matchers":[{"string":"Размещённые камни усилены Большим эхом магии # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_3388448323"]}}} +{"ref":"Socketed Gems are Supported by Level # Greater Volley","better":1,"matchers":[{"string":"Размещённые камни усилены Большим залпом # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_75","explicit.stat_2223565123"]}}} +{"ref":"Socketed Gems are Supported by Level # Guardian's Blessing","better":1,"matchers":[{"string":"Размещенные камни усилены Благословением защитника # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_157","explicit.stat_3434296257"]}}} +{"ref":"Socketed Gems are Supported by Level # Hex Bloom","better":1,"matchers":[{"string":"Размещенные камни усилены Расцветом порчи # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_146","explicit.stat_3199084318"]}}} +{"ref":"Socketed Gems are Supported by Level # Hextouch","better":1,"matchers":[{"string":"Размещенные камни усилены Касанием порчи # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_95","explicit.stat_2697741965"]}}} +{"ref":"Socketed Gems are Supported by Level # High-Impact Mine","better":1,"matchers":[{"string":"Размещенные камни усилены Усиленной миной # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_22","explicit.stat_2116100988"]}}} +{"ref":"Socketed Gems are Supported by Level # Hypothermia","better":1,"matchers":[{"string":"Размещённые камни усилены Переохлаждением # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_74","explicit.stat_13669281"],"fractured":["fractured.stat_13669281"]}}} +{"ref":"Socketed Gems are Supported by Level # Ice Bite","better":1,"matchers":[{"string":"Размещённые камни усилены Укусом Льда # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_73","explicit.stat_1384629003"]}}} +{"ref":"Socketed Gems are Supported by Level # Ignite Proliferation","better":1,"matchers":[{"string":"Размещённые камни усилены Распространением поджога # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_72","explicit.stat_3593797653"]}}} +{"ref":"Socketed Gems are Supported by Level # Immolate","better":1,"matchers":[{"string":"Размещённые камни усилены Жертвенностью # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_71","explicit.stat_2420410470"],"fractured":["fractured.stat_2420410470"]}}} +{"ref":"Socketed Gems are Supported by Level # Impale","better":1,"matchers":[{"string":"Размещённые камни усилены Проколом # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_70","explicit.stat_1900098804"]}}} +{"ref":"Socketed Gems are Supported by Level # Impending Doom","better":1,"matchers":[{"string":"Размещенные камни усилены Обреченностью # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_133","explicit.stat_3227145554"]}}} +{"ref":"Socketed Gems are Supported by Level # Increased Area of Effect","better":1,"matchers":[{"string":"Размещённые камни усилены Расширенной областью действия # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_69","explicit.stat_3720936304"],"implicit":["implicit.stat_3720936304"],"fractured":["fractured.stat_3720936304"]}}} +{"ref":"Socketed Gems are supported by Level # Increased Critical Damage","better":1,"matchers":[{"string":"Размещённые камни улучшены Усилением критических ударов # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_67","explicit.stat_1108755349"],"implicit":["implicit.stat_1108755349"],"fractured":["fractured.stat_1108755349"]}}} +{"ref":"Socketed Gems are Supported by Level # Increased Critical Strikes","better":1,"matchers":[{"string":"Размещённые камни усилены Учащением критических ударов # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_66","explicit.stat_2259700079"],"fractured":["fractured.stat_2259700079"]}}} +{"ref":"Socketed Gems are Supported by Level # Infernal Legion","better":1,"matchers":[{"string":"Размещенные камни усилены Пылающим легионом # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_61","explicit.stat_2201102274"]}}} +{"ref":"Socketed Gems are Supported by Level # Infused Channelling","better":1,"matchers":[{"string":"Размещенные камни усилены Усиленным поддержанием # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_13","explicit.stat_4048257027"]}}} +{"ref":"Socketed Gems are Supported by Level # Innervate","better":1,"matchers":[{"string":"Размещённые камни усилены Возбуждением # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_60","explicit.stat_1106668565"],"fractured":["fractured.stat_1106668565"]}}} +{"ref":"Socketed Gems are Supported by Level # Inspiration","better":1,"matchers":[{"string":"Размещенные камни усилены Вдохновением # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_24","explicit.stat_1866911844","explicit.stat_749770518"],"implicit":["implicit.stat_1866911844"],"fractured":["fractured.stat_1866911844"]}}} +{"ref":"Socketed Gems are Supported by Level # Intensify","better":1,"matchers":[{"string":"Размещённые камни усилены Интенсивностью # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_16","explicit.stat_1876637240","explicit.stat_28821524"]}}} +{"ref":"Socketed Gems are Supported by Level # Iron Grip","better":1,"matchers":[{"string":"Размещённые камни усилены Железной хваткой # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_59","explicit.stat_251446805"]}}} +{"ref":"Socketed Gems are Supported by Level # Iron Will","better":1,"matchers":[{"string":"Размещённые камни усилены Железной волей # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_58","explicit.stat_906997920"]}}} +{"ref":"Socketed Gems are Supported by Level # Item Quantity","better":1,"matchers":[{"string":"Размещённые камни усилены Количеством предметов # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_248646071"]}}} +{"ref":"Socketed Gems are Supported by Level # Item Rarity","better":1,"matchers":[{"string":"Размещённые камни усилены Редкостью предметов # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_57","explicit.stat_3587013273"],"fractured":["fractured.stat_3587013273"]}}} +{"ref":"Socketed Gems are Supported by Level # Knockback","better":1,"matchers":[{"string":"Размещённые камни усилены Отбрасыванием # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_56","explicit.stat_4066711249"]}}} +{"ref":"Socketed Gems are Supported by Level # Less Duration","better":1,"matchers":[{"string":"Размещённые камни усилены Сокращением # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_25","explicit.stat_2487643588"],"fractured":["fractured.stat_2487643588"]}}} +{"ref":"Socketed Gems are Supported by Level # Lesser Multiple Projectiles","better":1,"matchers":[{"string":"Размещённые камни усилены Дополнительными снарядами # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_55","explicit.stat_584144941"],"fractured":["fractured.stat_584144941"]}}} +{"ref":"Socketed Gems are Supported by Level # Life Gain On Hit","better":1,"matchers":[{"string":"Размещённые камни усилены Здоровьем за удар # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2032386732"],"implicit":["implicit.stat_2032386732"]}}} +{"ref":"Socketed Gems are supported by Level # Life Leech","better":1,"matchers":[{"string":"Размещённые камни усилены Похищением здоровья # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_891277550"],"implicit":["implicit.stat_891277550"],"fractured":["fractured.stat_891277550"]}}} +{"ref":"Socketed Gems are Supported by Level # Lifetap","better":1,"matchers":[{"string":"Размещенные камни усилены Жизнеотводом # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_137","explicit.stat_1079239905"],"implicit":["implicit.stat_1079239905"],"crafted":["crafted.stat_1079239905"]}}} +{"ref":"Socketed Gems are Supported by Level # Lightning Penetration","better":1,"matchers":[{"string":"Размещённые камни усилены Пронизывающими молниями # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_51","explicit.stat_3354027870"],"fractured":["fractured.stat_3354027870"]}}} +{"ref":"Socketed Gems are Supported by Level # Locus Mine","better":1,"matchers":[{"string":"Размещенные камни усилены Направленной миной # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_160"]}}} +{"ref":"Socketed Gems are Supported by Level # Maim","better":1,"matchers":[{"string":"Размещённые камни усилены Увечьем # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_50","explicit.stat_3826977109"],"fractured":["fractured.stat_3826977109"]}}} +{"ref":"Socketed Gems are Supported by Level # Mana Leech","better":1,"matchers":[{"string":"Размещённые камни усилены Вытягиванием маны # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_49","explicit.stat_2608615082"],"fractured":["fractured.stat_2608615082"]}}} +{"ref":"Socketed Gems are Supported by Level # Manaforged Arrows","better":1,"matchers":[{"string":"Размещенные камни усилены Стрелами маны # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_147","explicit.stat_4022502578"]}}} +{"ref":"Socketed Gems are Supported by Level # Mark On Hit","better":1,"matchers":[{"string":"Размещенные камни усилены Меткой при попадании # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_141","explicit.stat_3485498591"]}}} +{"ref":"Socketed Gems are Supported by Level # Meat Shield","better":1,"matchers":[{"string":"Размещенные камни усилены Живым щитом # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_48","explicit.stat_858460086"]}}} +{"ref":"Socketed Gems are Supported by Level # Melee Physical Damage","better":1,"matchers":[{"string":"Размещённые камни усилены Физическим урон ближнего боя # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_46","explicit.stat_2985291457"],"fractured":["fractured.stat_2985291457"]}}} +{"ref":"Socketed Gems are supported by Level # Melee Splash","better":1,"matchers":[{"string":"Размещённые камни усилены Раскатистым ударом # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1811422871"],"implicit":["implicit.stat_1811422871"],"fractured":["fractured.stat_1811422871"]}}} +{"ref":"Socketed Gems are Supported by Level # Minefield","better":1,"matchers":[{"string":"Размещённые камни усилены Минным полем # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_44","explicit.stat_2805586447"]}}} +{"ref":"Socketed Gems are Supported by Level # Minion Damage","better":1,"matchers":[{"string":"Размещённые камни усилены Уроном приспешников # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_64","explicit.stat_808939569"],"fractured":["fractured.stat_808939569"]}}} +{"ref":"Socketed Gems are Supported by Level # Minion Life","better":1,"matchers":[{"string":"Размещённые камни усилены Здоровьем приспешников # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_63","explicit.stat_1337327984"],"fractured":["fractured.stat_1337327984"]}}} +{"ref":"Socketed Gems are Supported by Level # Minion Speed","better":1,"matchers":[{"string":"Размещённые камни усилены Скоростью приспешников # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_62","explicit.stat_995332031"]}}} +{"ref":"Socketed Gems are Supported by Level # Mirage Archer","better":1,"matchers":[{"string":"Размещённые камни усилены Призрачным лучником # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_43","explicit.stat_3239503729"]}}} +{"ref":"Socketed Gems are Supported by Level # Momentum","better":1,"matchers":[{"string":"Размещенные камни усилены Импульсом # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_37","explicit.stat_3237923082"],"implicit":["implicit.stat_3237923082"],"fractured":["fractured.stat_3237923082"]}}} +{"ref":"Socketed Gems are Supported by Level # More Duration","better":1,"matchers":[{"string":"Размещенные камни усилены Продлением # уровня"},{"string":"Размещённые камни усилены Продлением # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_65","explicit.stat_407317553"],"fractured":["fractured.stat_407317553"]}}} +{"ref":"Socketed Gems are Supported by Level # Multiple Totems","better":1,"matchers":[{"string":"Размещённые камни усилены Множеством тотемов # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_40","explicit.stat_807186595"]}}} +{"ref":"Socketed Gems are Supported by Level # Multiple Traps","better":1,"matchers":[{"string":"Размещённые камни усилены Дополнительными ловушками # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_39","explicit.stat_3016436615"]}}} +{"ref":"Socketed Gems are supported by Level # Multistrike","better":1,"matchers":[{"string":"Размещённые камни усилены Градом ударов # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_2501237765"],"implicit":["implicit.stat_2501237765"],"fractured":["fractured.stat_2501237765"]}}} +{"ref":"Socketed Gems are Supported by Level # Nightblade","better":1,"matchers":[{"string":"Размещенные камни усилены Клинком во тьме # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_38","explicit.stat_2861649515"]}}} +{"ref":"Socketed Gems are Supported by Level # Overcharge","better":1,"matchers":[{"string":"Размещенные камни усилены Перегрузкой # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_144","explicit.stat_3462081007"]}}} +{"ref":"Socketed Gems are Supported by Level # Overexertion","better":1,"matchers":[{"string":"Размещенные камни усилены Переусилением # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_139"]}}} +{"ref":"Socketed Gems are Supported by Level # Physical To Lightning","better":1,"matchers":[{"string":"Размещённые камни усилены Физическим уроном в молнии # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_3327487371"]}}} +{"ref":"Socketed Gems are supported by Level # Pierce","better":1,"matchers":[{"string":"Размещённые камни усилены Пронзанием # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_33","explicit.stat_2433615566","explicit.stat_254728692"]}}} +{"ref":"Socketed Gems are Supported by Level # Pinpoint","better":1,"matchers":[{"string":"Размещенные камни усилены Сосредоточением # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_132","explicit.stat_1609369521"]}}} +{"ref":"Socketed Gems are Supported by Level # Point Blank","better":1,"matchers":[{"string":"Размещённые камни усилены Стрельбой в упор # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_32","explicit.stat_3754129682"]}}} +{"ref":"Socketed Gems are Supported by Level # Power Charge On Critical Strike","better":1,"matchers":[{"string":"Размещённые камни усилены Зарядом энергии при критическом ударе # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_4015918489"],"fractured":["fractured.stat_4015918489"]}}} +{"ref":"Socketed Gems are Supported by Level # Predator","better":1,"matchers":[{"string":"Размещенные камни усилены Хищником # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_93","explicit.stat_4082662318"]}}} +{"ref":"Socketed Gems are Supported by Level # Prismatic Burst","better":1,"matchers":[{"string":"Размещенные камни усилены Радужной вспышкой # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_148","explicit.stat_2910545715"]}}} +{"ref":"Socketed Gems are Supported by Level # Pulverise","better":1,"matchers":[{"string":"Размещённые камни усилены Распылением # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_29","explicit.stat_282757414"]}}} +{"ref":"Socketed Gems are Supported by Level # Rage","better":1,"matchers":[{"string":"Размещённые камни усилены Свирепостью # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_28","explicit.stat_369650395"]}}} +{"ref":"Socketed Gems are Supported by Level # Returning Projectiles","better":1,"matchers":[{"string":"Размещенные камни усилены Возвращающимися снарядами # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_149","explicit.stat_52197415"]}}} +{"ref":"Socketed Gems are Supported by Level # Rupture","better":1,"matchers":[{"string":"Размещенные камни усилены Разрыванием # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_142"]}}} +{"ref":"Socketed Gems are Supported by Level # Ruthless","better":1,"matchers":[{"string":"Размещённые камни усилены Беспощадностью # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_21","explicit.stat_3796013729"],"fractured":["fractured.stat_3796013729"]}}} +{"ref":"Socketed Gems are Supported by Level # Sacred Wisps","better":1,"matchers":[{"string":"Размещенные камни усилены Священыми огоньками # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_163"]}}} +{"ref":"Socketed Gems are Supported by Level # Sacrifice","better":1,"matchers":[{"string":"Размещенные камни усилены Жертвоприношением # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_158","explicit.stat_2302807931"]}}} +{"ref":"Socketed Gems are Supported by Level # Sadism","better":1,"matchers":[{"string":"Размещенные камни усилены Садизмом # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_161","explicit.stat_794471597"]}}} +{"ref":"Socketed Gems are Supported by Level # Second Wind","better":1,"matchers":[{"string":"Размещённые камни усилены Вторым дыханием # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_20","explicit.stat_402499111"]}}} +{"ref":"Socketed Gems are Supported by Level # Shockwave","better":1,"matchers":[{"string":"Размещенные камни усилены Ударной волной # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_19","explicit.stat_1344789934"]}}} +{"ref":"Socketed Gems are Supported by Level # Slower Projectiles","better":1,"matchers":[{"string":"Размещённые камни усилены Замедленными снарядами # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_18","explicit.stat_1390285657"],"fractured":["fractured.stat_1390285657"]}}} +{"ref":"Socketed Gems are Supported by Level # Spell Cascade","better":1,"matchers":[{"string":"Размещённые камни усилены Каскадом чар # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_17","explicit.stat_503990161"],"fractured":["fractured.stat_503990161"]}}} +{"ref":"Socketed Gems are Supported by Level # Spell Echo","better":1,"matchers":[{"string":"Размещённые камни усилены Эхом магии # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_42","explicit.stat_438778966","explicit.stat_913919528"],"fractured":["fractured.stat_913919528"]}}} +{"ref":"Socketed Gems are Supported by Level # Spell Totem","better":1,"matchers":[{"string":"Размещённые камни усилены Колдующим тотемом # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_15","explicit.stat_2962840349"],"fractured":["fractured.stat_2962840349"]}}} +{"ref":"Socketed Gems are Supported by Level # Spellblade","better":1,"matchers":[{"string":"Размещенные камни усилены Чародейским клинком # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_151","explicit.stat_633235561"]}}} +{"ref":"Socketed Gems are supported by Level # Stun","better":1,"matchers":[{"string":"Размещённые камни усилены Оглушением # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_689720069"],"implicit":["implicit.stat_689720069"]}}} +{"ref":"Socketed Gems are Supported by Level # Summon Phantasm","better":1,"matchers":[{"string":"Размещённые камни усилены Сотворением фантома при убийстве # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_10","explicit.stat_3155072742"]}}} +{"ref":"Socketed Gems are Supported by Level # Swift Affliction","better":1,"matchers":[{"string":"Размещённые камни усилены Стремительным недугом # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_26","explicit.stat_1636220212"]}}} +{"ref":"Socketed Gems are Supported by Level # Swift Assembly","better":1,"matchers":[{"string":"Размещенные камни усилены Быстрой сборкой # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_9","explicit.stat_4021476585"]}}} +{"ref":"Socketed Gems are Supported by Level # Swiftbrand","better":1,"matchers":[{"string":"Размещённые камни усилены Быстрым клеймением # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_130","explicit.stat_2127532091"]}}} +{"ref":"Socketed Gems are Supported by Level # Trap","better":1,"matchers":[{"string":"Размещённые камни усилены Ловушкой # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_8","explicit.stat_1122134690"],"fractured":["fractured.stat_1122134690"]}}} +{"ref":"Socketed Gems are Supported by Level # Trap And Mine Damage","better":1,"matchers":[{"string":"Размещённые камни усилены Уроном ловушек и мин # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_3814066599"],"fractured":["fractured.stat_3814066599"]}}} +{"ref":"Socketed Gems are Supported by Level # Trauma","better":1,"matchers":[{"string":"Размещенные камни усилены Травмой # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_150","explicit.stat_1715139253"]}}} +{"ref":"Socketed Gems are Supported by Level # Trinity","better":1,"matchers":[{"string":"Размещенные камни усилены Триединством # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_134","explicit.stat_3111091501"]}}} +{"ref":"Socketed Gems are Supported by Level # Unbound Ailments","better":1,"matchers":[{"string":"Размещённые камни усилены Безграничными состояниями # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_5","explicit.stat_3699494172"],"fractured":["fractured.stat_3699494172"]}}} +{"ref":"Socketed Gems are Supported by Level # Unleash","better":1,"matchers":[{"string":"Размещенные камни усилены Высвобождением # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_4","explicit.stat_3356013982"]}}} +{"ref":"Socketed Gems are Supported by Level # Urgent Orders","better":1,"matchers":[{"string":"Размещённые камни усилены Срочными приказами # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_131","explicit.stat_1485525812"]}}} +{"ref":"Socketed Gems are Supported by Level # Vicious Projectiles","better":1,"matchers":[{"string":"Размещённые камни усилены Яростными снарядами # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_35","explicit.stat_2513293614"]}}} +{"ref":"Socketed Gems are Supported by Level # Vile Toxins","better":1,"matchers":[{"string":"Размещённые камни усилены Едкими токсинами # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_3","explicit.stat_1002855537"]}}} +{"ref":"Socketed Gems are Supported by Level # Void Manipulation","better":1,"matchers":[{"string":"Размещённые камни усилены Манипуляцией пустотой # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_2","explicit.stat_1866583932"]}}} +{"ref":"Socketed Gems are Supported by Level # Volatility","better":1,"matchers":[{"string":"Размещенные камни усилены Нестабильностью # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_156","explicit.stat_4184135167"]}}} +{"ref":"Socketed Gems are Supported by Level # Volley","better":1,"matchers":[{"string":"Размещённые камени усилены Залпом # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_36","explicit.stat_2696557965"],"fractured":["fractured.stat_2696557965"]}}} +{"ref":"Socketed Gems are Supported by Level # Withering Touch","better":1,"matchers":[{"string":"Размещённые камни усилены Губительным прикосновением # уровня"}],"trade":{"ids":{"explicit":["explicit.indexable_support_104","explicit.stat_3287477747"]}}} +{"ref":"Socketed Gems are Supported by Level 10 Intensify","better":1,"matchers":[{"string":"Размещённые камни усилены Интенсивностью 10 уровня"}],"trade":{"ids":{"explicit":["explicit.stat_3561676020"]}}} +{"ref":"Socketed Gems Chain # additional times","better":1,"matchers":[{"string":"Размещённые камни поражают целей по цепи: #"}],"trade":{"ids":{"explicit":["explicit.stat_2788729902"],"fractured":["fractured.stat_2788729902"]}}} +{"ref":"Socketed Gems Cost and Reserve Life instead of Mana","better":1,"matchers":[{"string":"Размещенные камни расходуют и удерживают здоровье вместо маны"}],"trade":{"ids":{"explicit":["explicit.stat_1104246401"]}}} +{"ref":"Socketed Gems deal # to # Added Fire Damage","better":1,"matchers":[{"string":"Размещённые камни добавляют от # до # дополнительного урона от огня"}],"trade":{"ids":{"explicit":["explicit.stat_1289910726"],"fractured":["fractured.stat_1289910726"]}}} +{"ref":"Socketed Gems deal #% more Damage over Time","better":1,"matchers":[{"string":"Размещённые камни наносят на #% больше постепенного урона"},{"string":"Размещённые камни наносят на #% меньше постепенного урона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3846088475"],"fractured":["fractured.stat_3846088475"]}}} +{"ref":"Socketed Gems deal #% more Damage while on Low Life","better":1,"matchers":[{"string":"Размещенные камни наносят на #% больше урона при малом количестве здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_1235873320"],"fractured":["fractured.stat_1235873320"]}}} +{"ref":"Socketed Gems deal #% more Elemental Damage","better":1,"matchers":[{"string":"Размещённые камни наносят на #% больше урона от стихий"}],"trade":{"ids":{"explicit":["explicit.stat_3835899275"],"fractured":["fractured.stat_3835899275"]}}} +{"ref":"Socketed Gems fire an additional Projectile","better":1,"matchers":[{"string":"Умения из размещённых камней выпускают дополнительных снарядов: #"},{"string":"Умения из размещённых камней выпускают дополнительный снаряд","value":1}],"trade":{"ids":{"explicit":["explicit.stat_4016885052"]}}} +{"ref":"Socketed Gems fire Projectiles in a circle","better":1,"matchers":[{"string":"Размещенные камни выпускают снаряды кольцом"}],"trade":{"ids":{"explicit":["explicit.stat_967556848"]}}} +{"ref":"Socketed Gems gain #% of Physical Damage as extra Lightning Damage","better":1,"matchers":[{"string":"Размещённые камни наносят #% физического урона в виде дополнительного урона от молнии"}],"trade":{"ids":{"explicit":["explicit.stat_1859937391"],"fractured":["fractured.stat_1859937391"]}}} +{"ref":"Socketed Gems have #% chance to cause Enemies to Flee on Hit","better":1,"matchers":[{"string":"Размещённые камни имеют #% шанс испугать врагов"}],"trade":{"ids":{"explicit":["explicit.stat_3418772"]}}} +{"ref":"Socketed Gems have #% chance to Ignite","better":1,"matchers":[{"string":"Размещённые камни имеют #% шанс поджечь"},{"string":"Размещённые камни всегда поджигают","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3984519770"]}}} +{"ref":"Socketed Gems have #% increased Reservation Efficiency","better":-1,"matchers":[{"string":"Размещенные камни имеют #% уменьшение эффективности удержания ресурсов"},{"string":"Размещенные камни имеют #% увеличение эффективности удержания ресурсов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3289633055"],"implicit":["implicit.stat_3289633055"],"fractured":["fractured.stat_3289633055"]},"inverted":true}} +{"ref":"Socketed Gems have #% more Attack and Cast Speed","better":1,"matchers":[{"string":"Скорость атаки и сотворения чар размещённых камней на #% больше"}],"trade":{"ids":{"explicit":["explicit.stat_346351023"],"fractured":["fractured.stat_346351023"]}}} +{"ref":"Socketed Gems have #% reduced Mana Cost","better":1,"matchers":[{"string":"Размещённые камни имеют #% снижение затрат маны"},{"string":"Размещённые камни имеют #% повышение затрат маны","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2816901897"]}}} +{"ref":"Socketed Gems have +#% Critical Strike Chance","dp":true,"better":1,"matchers":[{"string":"Размещённые камни имеют #% шанс критического удара"}],"trade":{"ids":{"explicit":["explicit.stat_1681904129"],"fractured":["fractured.stat_1681904129"]}}} +{"ref":"Socketed Gems have Elemental Equilibrium","better":1,"matchers":[{"string":"Размещённые камни имеют эффект Равновесие стихий"}],"trade":{"ids":{"explicit":["explicit.stat_2605850929"]}}} +{"ref":"Socketed Gems have no Reservation\nYour Blessing Skills are Disabled","better":1,"matchers":[{"string":"Размещенные камни не удерживают ресурсы\nВаши умения благословения отключены"}],"trade":{"ids":{"explicit":["explicit.stat_2497009514"]}}} +{"ref":"Socketed Gems have Secrets of Suffering","better":1,"matchers":[{"string":"Размещенные камни имеют эффект Секреты страдания"}],"trade":{"ids":{"explicit":["explicit.stat_4051493629"]}}} +{"ref":"Socketed Golem Skills gain #% of Maximum Life as Extra Maximum Energy Shield","better":1,"matchers":[{"string":"Размещённые камни умений големов получают #% от максимума здоровья в виде дополнительного максимума энергетического щита"}],"trade":{"ids":{"explicit":["explicit.stat_1199118714"]}}} +{"ref":"Socketed Golem Skills have #% chance to Taunt on Hit","better":1,"matchers":[{"string":"Размещённые камни умений големов имеют #% шанс спровоцировать при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_178057093"]}}} +{"ref":"Socketed Golem Skills have #% increased Attack and Cast Speed","better":1,"matchers":[{"string":"Размещённые умения големов имеют #% повышение скорости атаки и сотворения чар"}],"trade":{"ids":{"explicit":["explicit.stat_706212417"]}}} +{"ref":"Socketed Golem Skills have Minions Regenerate #% of Life per second","better":1,"matchers":[{"string":"Приспешники размещённых умений големов регенерируют #% здоровья в секунду"}],"trade":{"ids":{"explicit":["explicit.stat_693460617"]}}} +{"ref":"Socketed Melee Gems have #% increased Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия размещённых камней ближнего боя"},{"string":"#% уменьшение области действия размещённых камней ближнего боя","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2462976337"]}}} +{"ref":"Socketed Minion Gems are Supported by Level # Life Leech","better":1,"matchers":[{"string":"Размещённые камни усилены Вытягиванием здоровья # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_4006301249"]}}} +{"ref":"Socketed Movement Skills Cost no Mana","better":1,"matchers":[{"string":"Размещенные умения движения не расходуют ману"}],"trade":{"ids":{"explicit":["explicit.stat_3263216405"],"fractured":["fractured.stat_3263216405"]}}} +{"ref":"Socketed Non-Channelling Bow Skills are Triggered by Snipe\nSocketed Triggered Bow Skills gain a 0.05 second Cooldown","better":1,"matchers":[{"string":"Прицельный выстрел вызывает срабатывание размещенных неподдерживаемых умений лука\n Размещенные сработавшие умения лука получают время перезарядки, равное 0.05 секунды."}],"trade":{"ids":{"explicit":["explicit.stat_3282302743"]}}} +{"ref":"Socketed Projectile Spells deal #% more Damage with Hits","better":1,"matchers":[{"string":"Размещенные чары со снарядами наносят на #% больше урона ударами"},{"string":"Размещенные чары со снарядами наносят на #% меньше урона ударами"}],"trade":{"ids":{"explicit":["explicit.stat_2443457281"]}}} +{"ref":"Socketed Projectile Spells fire an additional Projectile","better":1,"matchers":[{"string":"Размещенные чары со снарядами выпускают дополнительных снарядов: #"},{"string":"Размещенные чары со снарядами выпускают дополнительный снаряд","value":1}],"trade":{"ids":{"explicit":["explicit.stat_973574623"]}}} +{"ref":"Socketed Projectile Spells fire Projectiles in a circle","better":1,"matchers":[{"string":"Размещенные чары со снарядами выпускают снаряды по кругу"}],"trade":{"ids":{"explicit":["explicit.stat_3235941702"]}}} +{"ref":"Socketed Projectile Spells have #% more Skill Effect Duration","better":1,"matchers":[{"string":"Размещенные чары со снарядами имеют на #% больше длительности эффекта умений"},{"string":"Размещенные чары со снарядами имеют на #% меньше длительности эффекта умений","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3104895675"]}}} +{"ref":"Socketed Projectile Spells have +# seconds to Cooldown","better":1,"matchers":[{"string":"# к времени перезарядки размещенных чар со снарядами"}],"trade":{"ids":{"explicit":["explicit.stat_470459031"]}}} +{"ref":"Socketed Red Gems get #% Physical Damage as Extra Fire Damage","better":1,"matchers":[{"string":"Размещённые красные камни получают #% физического урона в виде дополнительного урона от огня"}],"trade":{"ids":{"explicit":["explicit.stat_2629366488"]}}} +{"ref":"Socketed Skill Gems get a #% Cost & Reservation Multiplier","better":1,"matchers":[{"string":"Размещенные камни умений получают #% множитель стоимости и удержания ресурсов"}],"trade":{"ids":{"implicit":["implicit.stat_2865550257"]}}} +{"ref":"Socketed Skills apply Fire, Cold and Lightning Exposure on Hit","better":1,"matchers":[{"string":"Размещенные умения при нанесении удара накладывают восприимчивость к огню, холоду и молнии"}],"trade":{"ids":{"implicit":["implicit.stat_2192875806"]}}} +{"ref":"Socketed Skills deal #% more Attack Damage","better":1,"matchers":[{"string":"Размещённые умения наносят на #% больше урона от атак"},{"string":"Размещённые умения наносят на #% меньше урона от атак","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1970781345"],"fractured":["fractured.stat_1970781345"]}}} +{"ref":"Socketed Skills deal #% more Spell Damage","better":1,"matchers":[{"string":"Размещённые умения наносят на #% больше урона от чар"},{"string":"Размещённые умения наносят на #% меньше урона от чар","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2964800094"],"fractured":["fractured.stat_2964800094"]}}} +{"ref":"Socketed Skills deal Double Damage","better":1,"matchers":[{"string":"Размещенные умения наносят двойной урон"}],"trade":{"ids":{"explicit":["explicit.stat_2132884933"]}}} +{"ref":"Socketed Skills have #% increased Attack Speed","better":1,"matchers":[{"string":"#% повышение скорости атаки размещённых умений"},{"string":"#% снижение скорости атаки размещённых умений","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2881124988"]}}} +{"ref":"Socketed Skills have #% increased Cast Speed","better":1,"matchers":[{"string":"#% повышение скорости сотворения чар размещённых умений"},{"string":"#% снижение скорости сотворения чар размещённых умений","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3425934849"],"fractured":["fractured.stat_3425934849"]}}} +{"ref":"Socketed Slam Gems are Supported by Level 25 Earthbreaker","better":1,"matchers":[{"string":"Размещенные камни усилены Камнеломом # уровня"},{"string":"Размещенные камни усилены Камнеломом 25 уровня","value":1}],"trade":{"ids":{"explicit":["explicit.stat_940684417"]}}} +{"ref":"Socketed Spells have #% reduced Mana Cost","better":-1,"matchers":[{"string":"#% повышение затрат маны размещёнными чарами"},{"string":"#% снижение затрат маны размещёнными чарами","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1688834903"]},"inverted":true}} +{"ref":"Socketed Spells have +#% to Critical Strike Chance","dp":true,"better":1,"matchers":[{"string":"#% к шансу критического удара размещённых чар"}],"trade":{"ids":{"explicit":["explicit.stat_135378852"],"fractured":["fractured.stat_135378852"]}}} +{"ref":"Socketed Spells have +#% to Critical Strike Multiplier","better":1,"matchers":[{"string":"#% к множителю критического удара размещённых чар"}],"trade":{"ids":{"explicit":["explicit.stat_2828710986"],"fractured":["fractured.stat_2828710986"]}}} +{"ref":"Socketed Support Gems can also Support Skills from Equipped Body Armour","better":1,"matchers":[{"string":"Размещенные камни поддержки могут также усиливать умения из вашего нательного доспеха"}],"trade":{"ids":{"explicit":["explicit.stat_591645420"]}}} +{"ref":"Socketed Support Gems can also Support Skills from your Main Hand","better":1,"matchers":[{"string":"Размещенные камни поддержки могут также усиливать умения в вашей правой руке"}],"trade":{"ids":{"explicit":["explicit.stat_806627038"]}}} +{"ref":"Socketed Travel Skills deal #% more Damage","better":1,"matchers":[{"string":"Размещенные умения смещения наносят на #% больше урона"},{"string":"Размещенные умения смещения наносят на #% меньше урона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1020412108"]}}} +{"ref":"Socketed Vaal Skills deal #% more Damage","better":1,"matchers":[{"string":"Размещенные умения ваал наносят на #% больше урона"},{"string":"Размещенные умения ваал наносят на #% меньше урона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3106951888"]}}} +{"ref":"Socketed Vaal Skills grant Elusive when Used","better":1,"matchers":[{"string":"Размещенные умения ваал даруют Неуловимость при использовании"}],"trade":{"ids":{"explicit":["explicit.stat_1831825995"]}}} +{"ref":"Socketed Vaal Skills have #% increased Area of Effect","better":1,"matchers":[{"string":"Размещенные умения ваал имеют #% увеличение области действия"},{"string":"Размещенные умения ваал имеют #% уменьшение области действия","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2505291583"]}}} +{"ref":"Socketed Vaal Skills have #% increased Aura Effect","better":1,"matchers":[{"string":"Размещенные умения ваал имеют #% усиление эффекта аур"},{"string":"Размещенные умения ваал имеют #% ослабление эффекта аур","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2932121832"]}}} +{"ref":"Socketed Vaal Skills have #% increased Projectile Speed","better":1,"matchers":[{"string":"Размещенные умения ваал имеют #% повышение скорости снарядов"},{"string":"Размещенные умения ваал имеют #% снижение скорости снарядов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2237174578"]}}} +{"ref":"Socketed Vaal Skills have #% increased Skill Effect Duration","better":1,"matchers":[{"string":"Размещенные умения ваал имеют #% увеличение длительности эффекта умения"},{"string":"Размещенные умения ваал имеют #% уменьшение длительности эффекта умения","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_476204410"]}}} +{"ref":"Socketed Vaal Skills have #% increased Soul Gain Prevention Duration","better":1,"matchers":[{"string":"Размещенные умения ваал имеют #% увеличение времени предотвращения получения душ"},{"string":"Размещенные умения ваал имеют #% уменьшение времени предотвращения получения душ","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2599305231"],"enchant":["enchant.stat_2599305231"]}}} +{"ref":"Socketed Vaal Skills have 20% chance to regain consumed Souls when used","better":1,"matchers":[{"string":"Размещенные умения ваал имеют 20% шанс вернуть потраченные души при использовании"}],"trade":{"ids":{"explicit":["explicit.stat_207863952"]}}} +{"ref":"Socketed Vaal Skills require #% more Souls per Use","better":1,"matchers":[{"string":"Размещенные умения ваал требуют на #% больше душ для применения"},{"string":"Размещенные умения ваал требуют на #% меньше душ для применения","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2198756560"]}}} +{"ref":"Socketed Warcry Skills have +# Cooldown Use","better":1,"matchers":[{"string":"# к зарядам размещенных умений боевых кличей"}],"trade":{"ids":{"explicit":["explicit.stat_3784504781"]}}} +{"ref":"Sockets cannot be modified","better":1,"matchers":[{"string":"Гнёзда нельзя изменять"}],"trade":{"ids":{"explicit":["explicit.stat_3192592092"]}}} +{"ref":"Solipsism","better":1,"matchers":[{"string":"Солипсизм"}],"trade":{"ids":{"explicit":["explicit.stat_112130960"],"scourge":["scourge.stat_112130960"]}}} +{"ref":"Soulrend also Hinders Enemies when applying its Debuff, with #% reduced Movement Speed","better":-1,"matchers":[{"string":"Разрыв души также сковывает врагов при наложении отрицательного эффекта, повышая скорость их передвижения на #%"},{"string":"Разрыв души также сковывает врагов при наложении отрицательного эффекта, снижая скорость их передвижения на #%","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_303359279"]},"inverted":true}} +{"ref":"Soulrend deals #% increased Damage","better":1,"matchers":[{"string":"#% увеличение наносимого урона Разрывом души"},{"string":"#% уменьшение наносимого урона Разрывом души","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4117042530"]}}} +{"ref":"Soulrend fires an additional Projectile","better":1,"matchers":[{"string":"Разрыв души выпускает # дополнительных снаряда(-ов)"},{"string":"Разрыв души выпускает дополнительный снаряд","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3371533847"]}}} +{"ref":"Spark fires an additional Projectile","better":1,"matchers":[{"string":"Искра выпускает дополнительных снарядов: #"},{"string":"Искра выпускает дополнительный снаряд","value":1}],"trade":{"ids":{"enchant":["enchant.stat_186513618"]}}} +{"ref":"Spark fires Projectiles in a circle","better":1,"matchers":[{"string":"Искра выпускает снаряды кольцом"}],"trade":{"ids":{"enchant":["enchant.stat_3803013948"]}}} +{"ref":"Spectral Helix Projectile spirals through +# rotations","dp":true,"better":1,"matchers":[{"string":"# к количеству оборотов снаряда Призрачной спирали"}],"trade":{"ids":{"enchant":["enchant.stat_4175166318"]}}} +{"ref":"Spectral Shield Throw fires an additional Shard Projectile","better":1,"matchers":[{"string":"Бросок призрачного щита выпускает # дополнительных осколка(-ов)"},{"string":"Бросок призрачного щита выпускает дополнительный осколок","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3608981617"]}}} +{"ref":"Spectres have #% increased Attack and Cast Speed","better":1,"matchers":[{"string":"Призраки имеют #% повышение скорости атаки и сотворения чар"},{"string":"Призраки имеют #% снижение скорости атаки и сотворения чар","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4137556603"]}}} +{"ref":"Spectres have #% increased Critical Strike Chance","better":1,"matchers":[{"string":"Призраки имеют #% повышение шанса критического удара"}],"trade":{"ids":{"explicit":["explicit.stat_1862097882"]}}} +{"ref":"Spectres have #% increased Damage","better":1,"matchers":[{"string":"Урон призраков увеличен на #%"},{"string":"Урон призраков уменьшен на #%e","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3645693773"],"enchant":["enchant.stat_3645693773"]}}} +{"ref":"Spectres have #% increased maximum Life","better":1,"matchers":[{"string":"Призраки имеют #% увеличение максимума здоровья"},{"string":"Призраки имеют #% уменьшение максимума здоровья","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3035514623"]}}} +{"ref":"Spectres have a Base Duration of # seconds\nSpectres do not travel between Areas","better":1,"matchers":[{"string":"Базовое время существования призраков равно # секундам\nПризраки не могут перемещаться между областями"}],"trade":{"ids":{"explicit":["explicit.stat_1210937073"]}}} +{"ref":"Spell Hits have #% chance to Hinder you","better":1,"matchers":[{"string":"Удары чарами с #% шансом могут сковать вас"},{"string":"Удары чарами сковывают вас","value":100}],"trade":{"ids":{"scourge":["scourge.stat_1533511331"]}}} +{"ref":"Spell Skills always deal Critical Strikes on final Repeat","better":1,"matchers":[{"string":"Умения чар всегда наносят критические удары при последнем повторении"}],"trade":{"ids":{"explicit":["explicit.stat_3738009328"]}}} +{"ref":"Spell Skills cannot deal Critical Strikes except on final Repeat","better":1,"matchers":[{"string":"Умения чар могут наносить критические удары только при последнем повторении"}],"trade":{"ids":{"explicit":["explicit.stat_2516869940"]}}} +{"ref":"Spell Skills deal no Damage","better":1,"matchers":[{"string":"Чары не наносят урона"}],"trade":{"ids":{"explicit":["explicit.stat_291644318"]}}} +{"ref":"Spells cause you to gain Energy Shield equal to their Upfront\nCost every fifth time you Pay it","better":1,"matchers":[{"string":"Чары даруют энергетический щит в размере их\nстоимости при каждом пятом сотворении"}],"trade":{"ids":{"explicit":["explicit.stat_1357409216"]}}} +{"ref":"Spells deal added Chaos Damage equal to #% of your maximum Life","better":1,"matchers":[{"string":"Добавляет чарам урон хаосом, равный #% вашего максимума здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_3175648755"]}}} +{"ref":"Spells fire an additional Projectile","better":1,"matchers":[{"string":"Чары выпускают дополнительных снарядов: #"},{"string":"Чары выпускают дополнительный снаряд","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1011373762"]}}} +{"ref":"Spells have #% increased Critical Strike Chance per Intensity","better":1,"matchers":[{"string":"Чары имеют #% повышение шанса критического удара за заряд Интенсивности"},{"string":"Чары имеют #% снижение шанса критического удара за заряд Интенсивности","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2923377613"]}}} +{"ref":"Spells have a #% chance to deal Double Damage","better":1,"matchers":[{"string":"#% шанс нанести двойной урон чарами"},{"string":"Чары наносят двойной урон","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2813626504"],"implicit":["implicit.stat_2813626504"],"fractured":["fractured.stat_2813626504"]}}} +{"ref":"Spells inflict Intimidate on Critical Strike for 4 seconds","better":1,"matchers":[{"string":"Чары накладывают Устрашение на 4 секунды при критическом ударе"}],"trade":{"ids":{"explicit":["explicit.stat_181229988"]}}} +{"ref":"Spells Triggered by Arcanist Brand Unnerve enemies on Hit for 4 seconds","better":1,"matchers":[{"string":"Вызываемые Клеймом чаротворца чары обескураживают врагов на 4 секунды при нанесении удара"}],"trade":{"ids":{"enchant":["enchant.stat_1350243490"]}}} +{"ref":"Spells which have gained Intensity Recently gain 1 Intensity every # Seconds","dp":true,"better":1,"matchers":[{"string":"Получившие недавно заряд Интенсивности чары получают 1 заряд Интенсивности каждые # секунд(-ы)"}],"trade":{"ids":{"explicit":["explicit.stat_2540626225"]}}} +{"ref":"Spells which have gained Intensity Recently lose 1 Intensity every # Seconds","dp":true,"better":1,"matchers":[{"string":"Получившие недавно заряд Интенсивности чары теряют 1 заряд Интенсивности каждые # секунд(-ы)"}],"trade":{"ids":{"explicit":["explicit.stat_2122561670"]}}} +{"ref":"Spend Energy Shield before Mana for Costs of Socketed Skills","better":1,"matchers":[{"string":"Размещенные умения тратят сначала энергетический щит вместо маны"}],"trade":{"ids":{"implicit":["implicit.stat_563547620"]}}} +{"ref":"Spirit Offering grants +#% to Critical Strike Multiplier","better":1,"matchers":[{"string":"Подношение духа дарует #% к множителю критического удара"}],"trade":{"ids":{"enchant":["enchant.stat_1793005352"]}}} +{"ref":"Spirit Offering has #% increased Effect","better":1,"matchers":[{"string":"#% усиление эффекта Подношения духа"},{"string":"#% ослабление эффекта Подношения духа","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3544391750"]}}} +{"ref":"Split Arrow fires an additional Projectile","better":1,"matchers":[{"string":"Расколотая стрела выпускает дополнительных снарядов: #"},{"string":"Расколотая стрела выпускает дополнительный снаряд","value":1}],"trade":{"ids":{"enchant":["enchant.stat_2278715446"]}}} +{"ref":"Splitting Steel deals #% increased Damage","better":1,"matchers":[{"string":"Раскалывающая сталь наносит увеличенный на #% урон"},{"string":"Раскалывающая сталь наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_866725377"]}}} +{"ref":"Splitting Steel has #% chance to not consume Steel Shards","better":1,"matchers":[{"string":"Раскалывающая сталь имеет #% шанс не поглотить стальные осколки"}],"trade":{"ids":{"enchant":["enchant.stat_3367825241"]}}} +{"ref":"Splitting Steel has #% increased Area of Effect","better":1,"matchers":[{"string":"Раскалывающая сталь имеет #% увеличение области действия"},{"string":"Раскалывающая сталь имеет #% уменьшение области действия","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1977935782"]}}} +{"ref":"Spreads Tar when you Block","better":1,"matchers":[{"string":"Разливает смолу при блоке"}],"trade":{"ids":{"explicit":["explicit.stat_2894567787"]}}} +{"ref":"Spreads Tar when you take a Critical Strike","better":1,"matchers":[{"string":"Разливает смолу при получении критического удара"}],"trade":{"ids":{"explicit":["explicit.stat_927458676"]}}} +{"ref":"Static Strike has +# maximum Beam Targets","better":1,"matchers":[{"string":"Максимум целей луча Статичного разряда: #"}],"trade":{"ids":{"enchant":["enchant.stat_2537202749"]}}} +{"ref":"Steelskin Buff can take #% increased amount of Damage","better":1,"matchers":[{"string":"Положительный эффект Стальной кожи поглощает увеличенный на #% урон"},{"string":"Положительный эффект Стальной кожи поглощает уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4102483123"]}}} +{"ref":"Steelskin grants #% additional Physical Damage Reduction","better":1,"matchers":[{"string":"#% дополнительного уменьшения получаемого физического урона под действием Стальной кожи"}],"trade":{"ids":{"enchant":["enchant.stat_680880155"]}}} +{"ref":"Stone Golems deal #% increased Damage","better":1,"matchers":[{"string":"#% увеличение урона каменных големов"},{"string":"#% уменьшение урона каменных големов","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1171483499"]}}} +{"ref":"Storm Brand Damage Penetrates #% of Branded Enemy's Lightning Resistance","better":1,"matchers":[{"string":"Урон Клейма бури пробивает #% сопротивления молнии заклеймённого врага"}],"trade":{"ids":{"enchant":["enchant.stat_3318254108"]}}} +{"ref":"Storm Brand deals #% increased Damage","better":1,"matchers":[{"string":"Клеймо бури наносит увеличенный на #% урон"},{"string":"Клеймо бури наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_531461618"]}}} +{"ref":"Storm Brand has a #% chance to Chain an additional time","better":1,"matchers":[{"string":"Клеймо бури имеет #% шанс поразить по цепи дополнительную цель"}],"trade":{"ids":{"enchant":["enchant.stat_1510381560"]}}} +{"ref":"Storm Burst has a #% chance to create an additional Orb","better":1,"matchers":[{"string":"Грозовой взрыв имеет #% шанс создать дополнительную сферу"}],"trade":{"ids":{"enchant":["enchant.stat_1898356067"]}}} +{"ref":"Storm Rain fires an additional Arrow","better":1,"matchers":[{"string":"Грозовой дождь выпускает дополнительных стрел: #"},{"string":"Грозовой дождь выпускает дополнительную стрелу","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3548112418"]}}} +{"ref":"Storm Rain has #% increased Beam frequency","better":1,"matchers":[{"string":"#% увеличение частоты разрядов Грозового дождя"},{"string":"#% уменьшение частоты разрядов Грозового дождя","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1799087078"]}}} +{"ref":"Stormbind deals #% increased Damage","better":1,"matchers":[{"string":"#% увеличение урона Грозовых рун"},{"string":"#% уменьшение урона Грозовых рун","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1235531589"]}}} +{"ref":"Stormbind has #% increased Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Грозовых рун"},{"string":"#% уменьшение области действия Грозовых рун","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3823033989"]}}} +{"ref":"Stormblast Mine deals #% increased Damage","better":1,"matchers":[{"string":"Штормовая мина наносит увеличенный на #% урон"},{"string":"Штормовая мина наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_494231298"]}}} +{"ref":"Stormblast Mine has #% increased Aura Effect","better":1,"matchers":[{"string":"#% усиление эффекта ауры Штормовой мины"},{"string":"#% ослабление эффекта ауры Штормовой мины","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2718657160"]}}} +{"ref":"Stormblast Mine has #% increased Throwing Speed","better":1,"matchers":[{"string":"#% повышение скорости броска Штормовой мины"},{"string":"#% снижение скорости броска Штормовой мины","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_321894708"]}}} +{"ref":"Strength from Passives in Radius is Transformed to Dexterity","better":1,"matchers":[{"string":"Сила в радиусе становится ловкостью"}],"trade":{"ids":{"explicit":["explicit.stat_2237528173"],"fractured":["fractured.stat_2237528173"]}}} +{"ref":"Strength from Passives in Radius is Transformed to Intelligence","better":1,"matchers":[{"string":"Сила в радиусе становится интеллектом"}],"trade":{"ids":{"explicit":["explicit.stat_3771273420"]}}} +{"ref":"Strength provides no bonus to Maximum Life","better":1,"matchers":[{"string":"Сила не увеличивает максимум здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_2290031712"]}}} +{"ref":"Strength's Damage bonus also applies to Reeling Speed at 20% of its value","better":1,"matchers":[{"string":"Увеличение урона от силы также применяется к скорости наматывания в размере 20% от его значения"}],"trade":{"ids":{"scourge":["scourge.stat_4039414411"]}}} +{"ref":"Strength's Damage Bonus instead grants 3% increased Melee\nPhysical Damage per 10 Strength","better":1,"matchers":[{"string":"Увеличение урона от силы дарует 3% (вместо 2%) увеличения физического урона в ближнем бою за каждые 10 силы"}],"trade":{"ids":{"explicit":["explicit.stat_1531241759"]}}} +{"ref":"Strike Skills also target the previous location they were Used","better":1,"matchers":[{"string":"Умения ударов также выбирают целью прежнее место своего использования"}],"trade":{"ids":{"explicit":["explicit.stat_719626796"]}}} +{"ref":"Stun Threshold is based on #% of your Mana instead of Life","better":1,"matchers":[{"string":"Порог оглушения основан на #% от вашей маны вместо здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_2280488002"]}}} +{"ref":"Stun Threshold is based on Energy Shield instead of Life","better":1,"matchers":[{"string":"Порог оглушения основан на энергетическом щите вместо здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_2562665460"]}}} +{"ref":"Suffixes Cannot Be Changed","better":1,"matchers":[{"string":"Суффиксы нельзя изменить"}],"trade":{"ids":{"explicit":["explicit.stat_3464137628"],"fractured":["fractured.stat_3464137628"],"crafted":["crafted.stat_3464137628"]}}} +{"ref":"Summon an additional Skeleton with Summon Skeletons","better":1,"matchers":[{"string":"Призывает дополнительных скелетов с помощью Сотворения скелетов: #"},{"string":"Призывает дополнительного скелета с помощью Сотворения скелетов","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1589090910"],"fractured":["fractured.stat_1589090910"]}}} +{"ref":"Summon Raging Spirit has #% chance to summon an extra Minion","better":1,"matchers":[{"string":"Призыв неистового духа с #% шансом может призвать дополнительного приспешника"}],"trade":{"ids":{"enchant":["enchant.stat_1381908541"]}}} +{"ref":"Summon Raging Spirit has #% increased Duration","better":1,"matchers":[{"string":"#% увеличение длительности Призыва неистового духа"},{"string":"#% уменьшение длительности Призыва неистового духа","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_38715141"],"enchant":["enchant.stat_38715141"]}}} +{"ref":"Summon Skitterbots has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"#% увеличение эффективности удержания маны Призывом мехаботов"},{"string":"#% уменьшение эффективности удержания маны Призывом мехаботов","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1695754537","enchant.stat_3818053347"]}}} +{"ref":"Summoned Agony Crawler fires # additional Projectile","better":1,"matchers":[{"string":"Призванный Ползун агонии выпускает # дополнительный снаряд"},{"string":"Призванный Ползун агонии выпускает дополнительных снарядов: #"}],"trade":{"ids":{"enchant":["enchant.stat_155429578"]}}} +{"ref":"Summoned Arbalists Convert #% of Physical Damage to Cold Damage","better":1,"matchers":[{"string":"#% физического урона призванных арбалетчиков становится уроном от холода"}],"trade":{"ids":{"explicit":["explicit.stat_1094808741"]}}} +{"ref":"Summoned Arbalists Convert #% of Physical Damage to Fire Damage","better":1,"matchers":[{"string":"#% физического урона призванных арбалетчиков становится уроном от огня"}],"trade":{"ids":{"explicit":["explicit.stat_2954406821"]}}} +{"ref":"Summoned Arbalists Convert #% of Physical Damage to Lightning Damage","better":1,"matchers":[{"string":"#% физического урона призванных арбалетчиков становится уроном от молнии"}],"trade":{"ids":{"explicit":["explicit.stat_2934219859"]}}} +{"ref":"Summoned Arbalists fire # additional Projectiles","better":1,"matchers":[{"string":"Призванные арбалетчики выпускают # дополнительных снаряда(-ов)"}],"trade":{"ids":{"explicit":["explicit.stat_2087104263"]}}} +{"ref":"Summoned Arbalists gain #% of Physical Damage as Extra Cold Damage","better":1,"matchers":[{"string":"Призванные арбалетчики наносят #% от физического урона в виде дополнительного урона от холода"}],"trade":{"ids":{"explicit":["explicit.stat_655918588"]}}} +{"ref":"Summoned Arbalists gain #% of Physical Damage as Extra Fire Damage","better":1,"matchers":[{"string":"Призванные арбалетчики наносят #% от физического урона в виде дополнительного урона от огня"}],"trade":{"ids":{"explicit":["explicit.stat_1477474340"]}}} +{"ref":"Summoned Arbalists gain #% of Physical Damage as Extra Lightning Damage","better":1,"matchers":[{"string":"Призванные арбалетчики наносят #% от физического урона в виде дополнительного урона от молнии"}],"trade":{"ids":{"explicit":["explicit.stat_2631827343"]}}} +{"ref":"Summoned Arbalists have #% chance to Crush on Hit","better":1,"matchers":[{"string":"Призванные арбалетчики имеют #% шанс сокрушить при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_1658936540"]}}} +{"ref":"Summoned Arbalists have #% chance to deal Double Damage","better":1,"matchers":[{"string":"Призванные арбалетчики имеют #% шанс нанести двойной урон"}],"trade":{"ids":{"explicit":["explicit.stat_3057722139"]}}} +{"ref":"Summoned Arbalists have #% chance to Freeze","better":1,"matchers":[{"string":"Призванные арбалетчики с #% шансом могут заморозить врага"}],"trade":{"ids":{"explicit":["explicit.stat_2052458107"]}}} +{"ref":"Summoned Arbalists have #% chance to Freeze, Shock, and Ignite","better":1,"matchers":[{"string":"Призванные арбалетчики имеют #% шанс наложить заморозку, шок и поджог"}],"trade":{"ids":{"explicit":["explicit.stat_357325557"]}}} +{"ref":"Summoned Arbalists have #% chance to Ignite","better":1,"matchers":[{"string":"Призванные арбалетчики с #% шансом могут поджечь врага"}],"trade":{"ids":{"explicit":["explicit.stat_831284309"]}}} +{"ref":"Summoned Arbalists have #% chance to inflict Cold Exposure on Hit","better":1,"matchers":[{"string":"Призванные арбалетчики имеют #% шанс наложить восприимчивость к холоду при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_157070900"]}}} +{"ref":"Summoned Arbalists have #% chance to inflict Fire Exposure on Hit","better":1,"matchers":[{"string":"Призванные арбалетчики имеют #% шанс наложить восприимчивость к огню при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_3327243369"]}}} +{"ref":"Summoned Arbalists have #% chance to inflict Lightning Exposure on Hit","better":1,"matchers":[{"string":"Призванные арбалетчики имеют #% шанс наложить восприимчивость к молнии при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_223656429"]}}} +{"ref":"Summoned Arbalists have #% chance to Intimidate for 4 seconds on Hit","better":1,"matchers":[{"string":"Призванные арбалетчики имеют #% шанс устрашить на 4 секунды при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_3964074505"]}}} +{"ref":"Summoned Arbalists have #% chance to Maim for 4 seconds on Hit","better":1,"matchers":[{"string":"Призванные арбалетчики имеют #% шанс изувечить на 4 секунды при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_3652224635"]}}} +{"ref":"Summoned Arbalists have #% chance to Poison","better":1,"matchers":[{"string":"Призванные арбалетчики имеют #% шанс отравить"}],"trade":{"ids":{"explicit":["explicit.stat_2894626576"]}}} +{"ref":"Summoned Arbalists have #% chance to Shock","better":1,"matchers":[{"string":"Призванные арбалетчики с #% шансом могут наложить шок на врага"}],"trade":{"ids":{"explicit":["explicit.stat_2144847042"]}}} +{"ref":"Summoned Arbalists have #% chance to Unnerve for 4 seconds on Hit","better":1,"matchers":[{"string":"Призванные арбалетчики имеют #% шанс обескуражить на 4 секунды при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_3976916585"]}}} +{"ref":"Summoned Arbalists have #% increased Attack Speed","better":1,"matchers":[{"string":"Призванные арбалетчики имеют #% повышение скорости атаки"},{"string":"Призванные арбалетчики имеют #% снижение скорости атаки","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4054463312"]}}} +{"ref":"Summoned Arbalists' Attacks have #% chance to inflict Bleeding","better":1,"matchers":[{"string":"Атаки призванных арбалетчиков имеют #% шанс наложить кровотечение"}],"trade":{"ids":{"explicit":["explicit.stat_1841503755"]}}} +{"ref":"Summoned Arbalists' Projectiles Chain +# times","better":1,"matchers":[{"string":"Снаряды призванных арбалетчиков поражают # целей по цепи"}],"trade":{"ids":{"explicit":["explicit.stat_3010688059"]}}} +{"ref":"Summoned Arbalists' Projectiles Fork","better":1,"matchers":[{"string":"Снаряды призванных арбалетчиков разветвляются"}],"trade":{"ids":{"explicit":["explicit.stat_2461270975"]}}} +{"ref":"Summoned Arbalists' Projectiles Pierce # additional Targets","better":1,"matchers":[{"string":"Снаряды призванных арбалетчиков пронзают дополнительных целей: #"}],"trade":{"ids":{"explicit":["explicit.stat_3741465646"]}}} +{"ref":"Summoned Arbalists' Projectiles Split into #","better":1,"matchers":[{"string":"Снаряды призванных арбалетчиков разделяются на #"}],"trade":{"ids":{"explicit":["explicit.stat_1857935842"]}}} +{"ref":"Summoned Carrion Golems deal #% increased Damage","better":1,"matchers":[{"string":"Призванные трупные големы наносят увеличенный на #% урон"},{"string":"Призванные трупные големы наносят уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3593547682"]}}} +{"ref":"Summoned Carrion Golems have +#% to all Elemental Resistances","better":1,"matchers":[{"string":"Призванные трупные големы имеют #% к сопротивлению всем стихиям"}],"trade":{"ids":{"enchant":["enchant.stat_59544006"]}}} +{"ref":"Summoned Golems are Aggressive","better":1,"matchers":[{"string":"Призванные големы агрессивны"}],"trade":{"ids":{"explicit":["explicit.stat_3630426972"]}}} +{"ref":"Summoned Golems have #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"Призванные големы имеют #% повышение скорости перезарядки"},{"string":"Призванные големы имеют #% снижение скорости перезарядки","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3246099900"]}}} +{"ref":"Summoned Golems Regenerate #% of their Life per second","better":1,"matchers":[{"string":"Призванные големы регенерируют #% от их здоровья в секунду"}],"trade":{"ids":{"explicit":["explicit.stat_2235163762"]}}} +{"ref":"Summoned Holy Relics deal #% increased Damage","better":1,"matchers":[{"string":"Священные реликвии наносят увеличенный на #% урон"},{"string":"Священные реликвии наносят уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1152784934"]}}} +{"ref":"Summoned Holy Relics have #% increased Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия призванных Священных реликвий"},{"string":"#% уменьшение области действия призванных Священных реликвий","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3026568825"]}}} +{"ref":"Summoned Holy Relics have #% increased Buff Effect","better":1,"matchers":[{"string":"#% усиление положительного эффекта призванных Священных реликвий"}],"trade":{"ids":{"enchant":["enchant.stat_3080391193"]}}} +{"ref":"Summoned Holy Relics have #% reduced Cooldown Recovery Rate","better":-1,"matchers":[{"string":"#% повышение скорости перезарядки призванных священных реликвий"},{"string":"#% снижение скорости перезарядки призванных священных реликвий","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1583498502"]},"inverted":true}} +{"ref":"Summoned Phantasms have #% chance to refresh their Duration when they Hit a Rare or Unique Enemy","better":1,"matchers":[{"string":"Призванные фантомы с #% шансом могут обновить свою длительность при нанесении удара по редкому или уникальному врагу"},{"string":"Призванные фантомы обновляют свою длительность при нанесении удара по редкому или уникальному врагу","value":100}],"trade":{"ids":{"explicit":["explicit.stat_7847395"],"fractured":["fractured.stat_7847395"]}}} +{"ref":"Summoned Raging Spirits deal #% increased Damage","better":1,"matchers":[{"string":"Призванные неистовые духи наносят увеличенный на #% урон"},{"string":"Призванные неистовые духи наносят уменьшенный на #% урон","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2085855914"],"enchant":["enchant.stat_2085855914"]}}} +{"ref":"Summoned Raging Spirits have #% chance to refresh their Duration when they Hit a Rare or Unique Enemy","better":1,"matchers":[{"string":"Призванные неистовые духи с #% шансом могут обновить свою длительность при нанесении удара по редкому или уникальному врагу"},{"string":"Призванные неистовые духи обновляют свою длительность при нанесении удара по редкому или уникальному врагу","value":100}],"trade":{"ids":{"explicit":["explicit.stat_4070754804"],"fractured":["fractured.stat_4070754804"]}}} +{"ref":"Summoned Raging Spirits have #% increased maximum Life","better":1,"matchers":[{"string":"Призванные неистовые духи имеют #% увеличение максимума здоровья"},{"string":"Призванные неистовые духи имеют #% уменьшение максимума здоровья","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3999870307"]}}} +{"ref":"Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy","better":1,"matchers":[{"string":"Призванные неистовые духи обновляют свое время существования, когда они убивают подожжённого врага"}],"trade":{"ids":{"explicit":["explicit.stat_2761732967"]}}} +{"ref":"Summoned Raging Spirits take #% of their Maximum Life per second as Chaos Damage","better":1,"matchers":[{"string":"Призванные неистовые духи получают #% от их максимума здоровья в секунду в виде урона хаосом"}],"trade":{"ids":{"explicit":["explicit.stat_1063920218"]}}} +{"ref":"Summoned Raging Spirits' Hits always Ignite","better":1,"matchers":[{"string":"Удары призванных неистовых духов всегда поджигают"}],"trade":{"ids":{"explicit":["explicit.stat_3954637034"]}}} +{"ref":"Summoned Raging Spirits' Melee Strikes deal Fire-only Splash\nDamage to Surrounding Targets","better":1,"matchers":[{"string":"Удары призванных неистовых духов в ближнем бою наносят урон\nот огня целям вокруг"}],"trade":{"ids":{"explicit":["explicit.stat_221328679"]}}} +{"ref":"Summoned Reaper deals #% increased Damage","better":1,"matchers":[{"string":"#% увеличение урона призванного Жнеца"},{"string":"#% уменьшение урона призванного Жнеца","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2516903912"]}}} +{"ref":"Summoned Reaper has +#% to Physical Damage over Time Multiplier","better":1,"matchers":[{"string":"#% к множителю постепенного физического урона призванного Жнеца"}],"trade":{"ids":{"enchant":["enchant.stat_1975621585"]}}} +{"ref":"Summoned Sentinels of Absolution have #% increased Area of Effect","better":1,"matchers":[{"string":"#% повышение области действия призванных Стражей отпущения"},{"string":"#% снижение области действия призванных Стражей отпущения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_771292654"]}}} +{"ref":"Summoned Skeleton Warriors and Soldiers deal Triple Damage with this\nWeapon if you've Hit with this Weapon Recently","better":1,"matchers":[{"string":"Призванные скелеты-воины и скелеты-солдаты наносят тройной урон\nэтим оружием, если недавно вы наносили удар этим оружием"}],"trade":{"ids":{"explicit":["explicit.stat_697059777"]}}} +{"ref":"Summoned Skeleton Warriors and Soldiers wield this Weapon while in your Main Hand","better":1,"matchers":[{"string":"Призванные скелеты-воины и скелеты-солдаты носят копию этого оружия, пока оно находится у вас в правой руке"}],"trade":{"ids":{"explicit":["explicit.stat_2646007123"]}}} +{"ref":"Summoned Skeleton Warriors are Permanent and Follow you\nSummon Skeletons cannot Summon more than 1 Skeleton Warrior","better":1,"matchers":[{"string":"Призванные скелеты-воины постоянны и следуют за вами\\Призыв скелетов не может призвать более 1 скелета-воина"}],"trade":{"ids":{"explicit":["explicit.stat_1021552211"]}}} +{"ref":"Summoned Skeletons have a #% chance to Cover Enemies in Ash on Hit","better":1,"matchers":[{"string":"Сотворенные скелеты имеют #% шанс покрыть врагов пеплом при нанесении удара"},{"string":"Сотворенные скелеты покрывают врагов пеплом при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3074608753"]}}} +{"ref":"Summoned Skeletons have Avatar of Fire","better":1,"matchers":[{"string":"Сотворенные скелеты имеют Воплощение огня"}],"trade":{"ids":{"explicit":["explicit.stat_1958210928"]}}} +{"ref":"Summoned Skeletons take #% of their Maximum Life per second as Fire Damage","better":1,"matchers":[{"string":"Сотворенные скелеты получают #% от их максимума здоровья в секунду в виде урона от огня"}],"trade":{"ids":{"explicit":["explicit.stat_2912438397"]}}} +{"ref":"Summoned Skitterbots have #% increased Area of Effect","better":1,"matchers":[{"string":"Призванные мехаботы имеют #% увеличение области действия"},{"string":"Призванные мехаботы имеют #% уменьшение области действия","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2844839137"]}}} +{"ref":"Sunder has #% increased Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Раскола"},{"string":"#% уменьшение области действия Раскола","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3316767657"]}}} +{"ref":"Sunder has #% increased Damage","better":1,"matchers":[{"string":"#% увеличение урона Расколом"},{"string":"#% уменьшение урона Расколом","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4033078288"]}}} +{"ref":"Sunder has #% increased delay between Areas in the Wave","better":1,"matchers":[{"string":"#% увеличение задержки между участками поражения волной Раскола"},{"string":"#% уменьшение задержки между участками поражения волной Раскола","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_40032620"]}}} +{"ref":"Supreme Decadence","better":1,"matchers":[{"string":"Величайшая безнравственность"}],"trade":{"ids":{"explicit":["explicit.stat_3215997147"]}}} +{"ref":"Supreme Ego","better":1,"matchers":[{"string":"Величайшее эго"}],"trade":{"ids":{"explicit":["explicit.stat_1421267186"],"fractured":["fractured.stat_1421267186"],"scourge":["scourge.stat_1421267186"]}}} +{"ref":"Survival","better":1,"matchers":[{"string":"Выживание"}],"trade":{"ids":{"explicit":["explicit.stat_2995661301"]}}} +{"ref":"Sweep has a #% chance to grant an Endurance Charge on Hit","better":1,"matchers":[{"string":"Круговой взмах имеет #% шанс даровать заряд выносливости при нанесении удара"},{"string":"Круговой взмах дарует заряд выносливости при нанесении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_609916976"]}}} +{"ref":"Take # Chaos Damage per Second during Effect","better":1,"matchers":[{"string":"Получает # урона хаосом в секунду во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_308618188"]}}} +{"ref":"Take # Cold Damage on reaching Maximum Power Charges","better":1,"matchers":[{"string":"Получает # урона от холода по достижении максимума зарядов энергии"}],"trade":{"ids":{"explicit":["explicit.stat_3664778308"]}}} +{"ref":"Take # Fire Damage per Second while Flame-Touched","better":1,"matchers":[{"string":"Получает # урона от огня в секунду под действием Касания пламени"}],"trade":{"ids":{"explicit":["explicit.stat_3511992942"]}}} +{"ref":"Take # Fire Damage when you Ignite an Enemy","better":1,"matchers":[{"string":"Получает # урона от огня, когда вы поджигаете врага"}],"trade":{"ids":{"explicit":["explicit.stat_2518598473"]}}} +{"ref":"Take # Lightning Damage when Herald of Thunder Hits an Enemy","better":1,"matchers":[{"string":"Получает # урона от молнии, когда Вестник грома наносит удар по врагу"}],"trade":{"ids":{"explicit":["explicit.stat_2007062029"]}}} +{"ref":"Take # Physical Damage per Second per Siphoning Charge if you've used a Skill Recently","better":1,"matchers":[{"string":"Вы получаете # физического урона в секунду за заряд переливания, если недавно использовали умение"}],"trade":{"ids":{"explicit":["explicit.stat_2440172920"]}}} +{"ref":"Take # Physical Damage when you use a Movement Skill","better":1,"matchers":[{"string":"Вы получаете # физического урона при использовании умения передвижения"}],"trade":{"ids":{"explicit":["explicit.stat_2590715472"]}}} +{"ref":"Take no Burning Damage if you've stopped taking Burning Damage Recently","better":1,"matchers":[{"string":"Вы не получаете урона от горения, если недавно вы перестали получать урон от горения"}],"trade":{"ids":{"explicit":["explicit.stat_2738190959"]}}} +{"ref":"Take no Extra Damage from Critical Strikes","better":1,"matchers":[{"string":"Не получает дополнительный урон от критических ударов"}],"trade":{"ids":{"explicit":["explicit.stat_4294267596"]}}} +{"ref":"Take no Extra Damage from Critical Strikes if you have a Magic Ring in left slot","better":1,"matchers":[{"string":"Не получает дополнительный урон от критических ударов если в левом слоте находится волшебное кольцо"}],"trade":{"ids":{"explicit":["explicit.stat_611839381"]}}} +{"ref":"Take no Extra Damage from Critical Strikes if you've cast Enfeeble in the past 10 seconds","better":1,"matchers":[{"string":"Не получает дополнительного урона от критических ударов, если вы сотворяли Слабость за последние 10 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_4077357269"]}}} +{"ref":"Taking Chaos Damage over Time heals you instead while Leeching Life","better":1,"matchers":[{"string":"Получение постепенного урона хаосом излечивает вас во время похищения здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_1971757986"]}}} +{"ref":"Taunts nearby Enemies on use","better":1,"matchers":[{"string":"При использовании провоцирует ближайших врагов"}],"trade":{"ids":{"implicit":["implicit.stat_2005503156"]}}} +{"ref":"Tectonic Slam deals #% increased Damage","better":1,"matchers":[{"string":"#% увеличение урона Тектонического удара"},{"string":"#% уменьшение урона Тектонического удара","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3999206457"]}}} +{"ref":"Tectonic Slam has #% increased Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Тектонического удара"},{"string":"#% уменьшение области действия Тектонического удара","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_340193547"]}}} +{"ref":"Tectonic Slam has +#% fissure branching chance","better":1,"matchers":[{"string":"#% шанс ответвления трещин Тектонического удара"}],"trade":{"ids":{"enchant":["enchant.stat_1522229796","enchant.stat_2462686988"]}}} +{"ref":"Tempest Shield chains an additional time","better":1,"matchers":[{"string":"Щит бури поражает дополнительных целей по цепи: #"},{"string":"Щит бури поражает дополнительную цель по цепи","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3096183736"]}}} +{"ref":"Tempest Shield has #% increased Buff Effect","better":1,"matchers":[{"string":"#% усиление эффекта Щита бури"},{"string":"#% ослабление эффекта Щита бури","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2662416009"]}}} +{"ref":"Temporal Chains has #% reduced Effect on you","better":-1,"matchers":[{"string":"Путы времени имеют усиленный на #% эффект на вас"},{"string":"Путы времени имеют ослабленный на #% эффект на вас","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1152934561"]},"inverted":true}} +{"ref":"Temporal Chains has no Reservation if Cast as an Aura","better":1,"matchers":[{"string":"Путы времени в виде ауры не удерживает ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_2100165275"]}}} +{"ref":"Temporal Rift has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"#% повышение скорости перезарядки Временного разрыва"}],"trade":{"ids":{"enchant":["enchant.stat_3614009195"]}}} +{"ref":"Temporal Rift has no Reservation","better":1,"matchers":[{"string":"Временной разрыв не удерживает ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_2139238642"]}}} +{"ref":"The Agnostic","better":1,"matchers":[{"string":"Агностик"}],"trade":{"ids":{"explicit":["explicit.stat_462691314"],"scourge":["scourge.stat_462691314"]}}} +{"ref":"The Effect of Chill on you is reversed","better":1,"matchers":[{"string":"Охлаждение имеет на вас обратный эффект"}],"trade":{"ids":{"explicit":["explicit.stat_2955966707"]}}} +{"ref":"The Herald of the Scourge deals #% more Damage","better":1,"matchers":[{"string":"Вестник Роя наносит на #% больше урона"},{"string":"Вестник Роя наносит на #% меньше урона","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_2149490821"]}}} +{"ref":"The Herald of the Scourge drops an additional Forbidden Tome","better":1,"matchers":[{"string":"Из Вестника Роя выпадает дополнительных Запретных томов: #"},{"string":"Из Вестника Роя выпадает дополнительный Запретный том","value":1}],"trade":{"ids":{"explicit":["sanctum.stat_3878191575"]}}} +{"ref":"The Herald of the Scourge drops Eternal Damnation","better":1,"matchers":[{"string":"Из Вестника Роя выпадает Вечное проклятье"}],"trade":{"ids":{"explicit":["sanctum.stat_1059486105"]}}} +{"ref":"The Herald of the Scourge drops Sandstorm Visage","better":1,"matchers":[{"string":"Из Вестника Роя выпадает Образ песчаной бури"}],"trade":{"ids":{"explicit":["sanctum.stat_2995848279"]}}} +{"ref":"The Herald of the Scourge drops the Balance of Terror","better":1,"matchers":[{"string":"Из Вестника Роя выпадает Равновесие ужаса"}],"trade":{"ids":{"explicit":["sanctum.stat_85125881"]}}} +{"ref":"The Herald of the Scourge drops the Original Sin","better":1,"matchers":[{"string":"Из Вестника Роя выпадает Первородный грех"}],"trade":{"ids":{"explicit":["sanctum.stat_1133899331"]}}} +{"ref":"The Herald of the Scourge drops the Winds of Fate","better":1,"matchers":[{"string":"Из Вестника Роя выпадают Ветра судьбы"}],"trade":{"ids":{"explicit":["sanctum.stat_4204412707"]}}} +{"ref":"The Herald of the Scourge takes #% more Damage","better":1,"matchers":[{"string":"Вестник Роя получает на #% больше урона"},{"string":"Вестник Роя получает на #% меньше урона","negate":true}],"trade":{"ids":{"explicit":["sanctum.stat_2226900052"]}}} +{"ref":"The Impaler","better":1,"matchers":[{"string":"Пронзатель"}],"trade":{"ids":{"explicit":["explicit.stat_1441799693"],"fractured":["fractured.stat_1441799693"],"scourge":["scourge.stat_1441799693"]}}} +{"ref":"The Maven interferes with Players","better":1,"fromUberAreaMods":true,"matchers":[{"string":"Мейвен мешает игрокам"}],"trade":{"ids":{"explicit":["explicit.stat_1594156261"],"fractured":["fractured.stat_1594156261"]}}} +{"ref":"The Merchant has an additional Choice","better":1,"matchers":[{"string":"Торговец предлагает дополнительных товаров на выбор: #"},{"string":"Торговец предлагает дополнительный товар на выбор","value":1}],"trade":{"ids":{"explicit":["sanctum.stat_290775436"]}}} +{"ref":"The Ring takes no Cut","better":1,"fromHeistAreaMods":true,"matchers":[{"string":"Круг не берет свою долю"}],"trade":{"ids":{"explicit":["explicit.stat_616993076"],"fractured":["fractured.stat_616993076"]}}} +{"ref":"The Ring's Cut increased by #%","better":1,"matchers":[{"string":"Доля Круга в добыче увеличивается на #%"},{"string":"Доля Круга увеличена на #%"},{"string":"Доля Круга в добыче уменьшается на #%","negate":true},{"string":"Доля Круга уменьшена на #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_293465345"],"fractured":["fractured.stat_293465345"]}}} +{"ref":"This item is destroyed when applied to a Sanctum","better":1,"matchers":[{"string":"Этот предмет будет разрушен при использовании на Святилище"}],"trade":{"ids":{"explicit":["sanctum.stat_3182333322"]}}} +{"ref":"This Jewel's Socket has #% increased effect per Allocated Passive Skill between\nit and your Class' starting location","better":1,"matchers":[{"string":"Это гнездо самоцвета имеет #% усиление эффекта за каждое выбранное пассивное умение между\nним и начальной позицией вашего класса"}],"trade":{"ids":{"explicit":["explicit.stat_372478711"]}}} +{"ref":"This Weapon's Critical Strike Chance is 100%","better":1,"matchers":[{"string":"Шанс критического удара у этого оружия равен 100%"}],"trade":{"ids":{"explicit":["explicit.stat_1963540179"]}}} +{"ref":"Tora's Veiled","better":0,"matchers":[{"string":"Завуалированная Торой"},{"string":"Завуалированное Торой"},{"string":"Завуалированные Торой"},{"string":"Завуалированный Торой"}],"trade":{"ids":{"veiled":["veiled.mod_8541"]}}} +{"ref":"Tornado has #% increased Movement Speed","better":1,"matchers":[{"string":"#% повышение скорости передвижения Торнадо"},{"string":"#% снижение скорости передвижения Торнадо","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3713499406"]}}} +{"ref":"Total Recovery per second from Life Leech is Doubled","better":1,"matchers":[{"string":"Итоговое восстановление в секунду от похищения здоровья удвоено"}],"trade":{"ids":{"explicit":["explicit.stat_1277035917"]}}} +{"ref":"Totems cannot be Stunned","better":1,"matchers":[{"string":"Тотемы не могут быть оглушены"}],"trade":{"ids":{"explicit":["explicit.stat_335735137"]}}} +{"ref":"Totems fire # additional Projectile","better":1,"matchers":[{"string":"Тотемы стреляют # дополнительным снарядом"},{"string":"Тотемы стреляют # дополнительными снарядами"}],"trade":{"ids":{"explicit":["explicit.stat_736847554"]}}} +{"ref":"Totems gain +#% to all Elemental Resistances","better":1,"matchers":[{"string":"Тотемы получают #% к сопротивлению всем стихиям"}],"trade":{"ids":{"explicit":["explicit.stat_1809006367"],"implicit":["implicit.stat_1809006367"],"fractured":["fractured.stat_1809006367"],"scourge":["scourge.stat_1809006367"]}}} +{"ref":"Totems have #% additional Physical Damage Reduction","better":1,"matchers":[{"string":"Тотемы имеют #% дополнительного уменьшения получаемого физического урона"}],"trade":{"ids":{"scourge":["scourge.stat_3616562963"]}}} +{"ref":"Totems Reflect #% of their maximum Life as Fire Damage to nearby Enemies when Hit","better":1,"matchers":[{"string":"Тотемы отражают #% от их максимума здоровья в виде урона от огня\nближайшим врагам при получении удара"}],"trade":{"ids":{"explicit":["explicit.stat_1723061251"]}}} +{"ref":"Totems Taunt Enemies around them for # second when Summoned","better":1,"matchers":[{"string":"Тотемы провоцируют врагов вокруг себя на # секунд(-ы) при призыве"},{"string":"Тотемы провоцируют врагов вокруг себя на # секунду при призыве"}],"trade":{"ids":{"explicit":["explicit.stat_2076876595"]}}} +{"ref":"Toxic Rain deals #% increased Damage","better":1,"matchers":[{"string":"Токсичный дождь наносит увеличенный на #% урон"},{"string":"Токсичный дождь наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_865511246"]}}} +{"ref":"Toxic Rain fires # additional Arrow","better":1,"matchers":[{"string":"Токсичный дождь выпускает # дополнительную стрелу"},{"string":"Токсичный дождь выпускает # дополнительных стрел(-ы)"}],"trade":{"ids":{"enchant":["enchant.stat_2140127102"]}}} +{"ref":"Toxic Rain gains #% of Physical Damage as Extra Chaos Damage","better":1,"matchers":[{"string":"Токсичный дождь наносит #% от физического урона в виде дополнительного урона хаосом"}],"trade":{"ids":{"enchant":["enchant.stat_1798919988"]}}} +{"ref":"Transfiguration of Body","better":1,"matchers":[{"string":"Преображение тела"}],"trade":{"ids":{"explicit":["explicit.stat_881645355"]}}} +{"ref":"Transfiguration of Mind","better":1,"matchers":[{"string":"Преображение разума"}],"trade":{"ids":{"explicit":["explicit.stat_2571899044"]}}} +{"ref":"Transfiguration of Soul","better":1,"matchers":[{"string":"Преображение души"}],"trade":{"ids":{"explicit":["explicit.stat_3268519799"]}}} +{"ref":"Trap Skills have #% increased Skill Effect Duration","better":1,"matchers":[{"string":"#% увеличение длительности эффекта умений ловушек"},{"string":"#% уменьшение длительности эффекта умений ловушек","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2546859843"]}}} +{"ref":"Traps and Mines deal # to # additional Physical Damage","better":1,"matchers":[{"string":"Ловушки и мины наносят от # до # дополнительного физического урона"}],"trade":{"ids":{"explicit":["explicit.stat_3391324703"]}}} +{"ref":"Traps and Mines have a #% chance to Poison on Hit","better":1,"matchers":[{"string":"Ловушки и мины имеют #% шанс отравить при нанесении удара"},{"string":"Ловушки и мины отравляют при нанесении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3192135716"]}}} +{"ref":"Traps cannot be triggered by Enemies","better":1,"matchers":[{"string":"Враги не могут вызвать срабатывание ловушек"}],"trade":{"ids":{"explicit":["explicit.stat_1861759600"]}}} +{"ref":"Traps from Skills are thrown randomly around targeted location","better":1,"matchers":[{"string":"Брошенные ловушки попадают в область вокруг указанного места"}],"trade":{"ids":{"explicit":["explicit.stat_2727188901"]}}} +{"ref":"Traps from Socketed Skills create a Smoke Cloud when triggered","better":1,"matchers":[{"string":"Ловушки от размещённых умений создают облако дыма при срабатывании"}],"trade":{"ids":{"explicit":["explicit.stat_1263384098"]}}} +{"ref":"Travel Skills other than Dash are Disabled","better":1,"matchers":[{"string":"Все умения смещения, кроме Рывка, отключены"}],"trade":{"ids":{"explicit":["explicit.stat_3066073024"]}}} +{"ref":"Treats Enemy Monster Elemental Resistance values as inverted","better":1,"matchers":[{"string":"Учитывают значение сопротивления стихиям врага как противоположное"}],"trade":{"ids":{"explicit":["explicit.stat_2750800428"]}}} +{"ref":"Trigger a Socketed Cold Spell on Melee Critical Strike, with a 0.25 second Cooldown","better":1,"matchers":[{"string":"Вызывает срабатывание размещённых чар холода при нанесении критического удара в ближнем бою, время перезарядки - 0.25 секунды"}],"trade":{"ids":{"explicit":["explicit.stat_2295303426"]}}} +{"ref":"Trigger a Socketed Elemental Spell on Block, with a # second Cooldown","dp":true,"better":1,"matchers":[{"string":"Вызывает срабатывание размещенных чар стихий при блоке, время перезарядки - # секунды"}],"trade":{"ids":{"explicit":["explicit.stat_3591112611"]}}} +{"ref":"Trigger a Socketed Fire Spell on Hit, with a # second Cooldown","dp":true,"better":1,"matchers":[{"string":"Вызывает срабатывание размещенных чар огня при нанесении удара, время перезарядки - # секунды"}],"trade":{"ids":{"enchant":["enchant.stat_3676763995"]}}} +{"ref":"Trigger a Socketed Lightning Spell on Hit, with a 0.25 second Cooldown\nSocketed Lightning Spells have no Cost if Triggered","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание размещенных чар молнии при нанесении удара, время перезарядки - 0.25 секунды\nРазмещенные чары молнии не расходуют ресурсов при срабатывании"},{"string":"Вызывает срабатывание размещенных чар молнии при нанесении удара, время перезарядки - 0.25 секунды\nРазмещенные чары молнии не расходуют ресурсов при срабатывании","value":100}],"trade":{"ids":{"explicit":["explicit.stat_654971543"]}}} +{"ref":"Trigger a Socketed Spell on Using a Skill, with a # second Cooldown\nSpells Triggered this way have 150% more Cost","better":1,"matchers":[{"string":"Вызывает срабатывание размещенных чар при использовании умения, время перезарядки - # секунд (-ы)\nСработавшие таким образом чары расходуют на 150% больше ресурсов"}],"trade":{"ids":{"explicit":["explicit.stat_1582781759"],"fractured":["fractured.stat_1582781759"]}}} +{"ref":"Trigger Level # Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark","better":1,"matchers":[{"string":"Вызывает срабатывание Метки убийцы # уровня, когда вы наносите удар по редкому или уникальному врагу без метки"}],"trade":{"ids":{"explicit":["explicit.stat_3382957283","explicit.stat_3924520095"]}}} +{"ref":"Trigger Level # Bone Nova when you Hit a Bleeding Enemy","better":1,"matchers":[{"string":"Вызывает срабатывание Кольца костей # уровня, когда вы наносите удар по истекающему кровью врагу"}],"trade":{"ids":{"explicit":["explicit.stat_2634885412"]}}} +{"ref":"Trigger Level # Bone Offering, Flesh Offering or Spirit Offering every 5 seconds\nOffering Skills Triggered this way also affect you","better":1,"matchers":[{"string":"Каждые 5 секунд вызывает срабатывание Подношения костей, Подношения плоти или духа # уровня\nСработавшие таким образом умения Подношений действуют и на вас"}],"trade":{"ids":{"explicit":["explicit.stat_1663239249"]}}} +{"ref":"Trigger Level # Consecrate when you deal a Critical Strike","better":1,"matchers":[{"string":"Вызывает срабатывание Освящения # уровня, когда вы наносите критический удар"}],"trade":{"ids":{"explicit":["explicit.stat_899293871"]}}} +{"ref":"Trigger Level # Contaminate when you Kill an Enemy","better":1,"matchers":[{"string":"Вызывает срабатывание Заражения # уровня, когда вы убиваете врага"}],"trade":{"ids":{"explicit":["explicit.stat_3159312340"]}}} +{"ref":"Trigger Level # Death Aura when Equipped","better":1,"matchers":[{"string":"Вызывает срабатывание Ауры смерти # уровня, если экипирован"}],"trade":{"ids":{"explicit":["explicit.stat_825352061"]}}} +{"ref":"Trigger Level # Elemental Warding on Melee Hit while Cursed","better":1,"matchers":[{"string":"Вызывает срабатывание Стихийной защиты # уровня при нанесении удара, пока на вас действует проклятие"}],"trade":{"ids":{"explicit":["explicit.stat_810166817"]}}} +{"ref":"Trigger Level # Feast of Flesh every 5 seconds","better":1,"matchers":[{"string":"Каждые 5 секунд вызывает срабатывание Пира плоти # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1024189516"]}}} +{"ref":"Trigger Level # Fiery Impact on Melee Hit with this Weapon","better":1,"matchers":[{"string":"Вызывает срабатывание Огненного удара # уровня при ударе этим оружием в ближнем бою"}],"trade":{"ids":{"implicit":["implicit.stat_1523888729"]}}} +{"ref":"Trigger Level # Flame Dash when you use a Socketed Skill","better":1,"matchers":[{"string":"Вызывает срабатывание Огненного рывка # уровня, когда вы используете размещенное умение"}],"trade":{"ids":{"implicit":["implicit.stat_1633778432"]}}} +{"ref":"Trigger Level # Fog of War when your Trap is triggered","better":1,"matchers":[{"string":"Вызывает срабатывание Тумана войны # уровня при срабатывании вашей ловушки"}],"trade":{"ids":{"explicit":["explicit.stat_208447205"]}}} +{"ref":"Trigger Level # Gore Shockwave on Melee Hit if you have at least 150 Strength","better":1,"matchers":[{"string":"Вызывает срабатывание Кровавой ударной волны # уровня при нанесении удара в ближнем бою, если у вас как минимум 150 силы"}],"trade":{"ids":{"explicit":["explicit.stat_252427115"]}}} +{"ref":"Trigger Level # Icicle Burst when you Hit a Frozen Enemy","better":1,"matchers":[{"string":"Вызывает срабатывание Взрыва сосулек # уровня когда вы наносите удар по замороженному врагу"}],"trade":{"ids":{"explicit":["explicit.stat_1357672429"]}}} +{"ref":"Trigger Level # Intimidating Cry on Hit","better":1,"matchers":[{"string":"Вызывает срабатывание Устрашающего клича # уровня при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_1795756125"]}}} +{"ref":"Trigger Level # Intimidating Cry when you lose Cat's Stealth","better":1,"matchers":[{"string":"Вызывает срабатывание Устрашающего клича # уровня при прекращении действия Кошачьей скрытности"}],"trade":{"ids":{"explicit":["explicit.stat_3892608176"]}}} +{"ref":"Trigger Level # Lightning Bolt when you deal a Critical Strike","better":1,"matchers":[{"string":"Вызывает срабатывание Удара грома # уровня, когда вы наносите критический удар"}],"trade":{"ids":{"explicit":["explicit.stat_3241494164"],"enchant":["enchant.stat_3241494164"]}}} +{"ref":"Trigger Level # Lightning Warp on Hit with this Weapon","better":1,"matchers":[{"string":"Вызывает срабатывание Грозового перехода # при нанесении удара этим оружием"}],"trade":{"ids":{"explicit":["explicit.stat_1527893390"]}}} +{"ref":"Trigger Level # Rain of Arrows when you Attack with a Bow","better":1,"matchers":[{"string":"Вызывает срабатывание Ливня стрел # уровня при атаке луком"}],"trade":{"ids":{"explicit":["explicit.stat_2935409762"]}}} +{"ref":"Trigger Level # Shield Shatter when you Block","better":1,"matchers":[{"string":"Вызывает срабатывание Раскола щита # уровня при блоке"}],"trade":{"ids":{"explicit":["explicit.stat_401685616"]}}} +{"ref":"Trigger Level # Shock Ground on Hit","better":1,"matchers":[{"string":"Вызывает срабатывание Заряженной земли # уровня при нанесении урона"}],"trade":{"ids":{"enchant":["enchant.stat_2845525306"]}}} +{"ref":"Trigger Level # Shock Ground when Hit","better":1,"matchers":[{"string":"Вызывает срабатывание Заряженной земли # уровня при получении удара"}],"trade":{"ids":{"explicit":["explicit.stat_2668070396"]}}} +{"ref":"Trigger Level # Spirit Burst when you Use a Skill while you have a Spirit Charge","better":1,"matchers":[{"string":"Вызывает срабатывание Взрыва душ # уровня при использовании умения, пока у вас есть заряд душ"}],"trade":{"ids":{"explicit":["explicit.stat_1992516007"]}}} +{"ref":"Trigger Level # Stalking Pustule on Kill","better":1,"matchers":[{"string":"Вызывает срабатывание Преследующей пустулы # уровня при убийстве"}],"trade":{"ids":{"explicit":["explicit.stat_1662669872"],"enchant":["enchant.stat_1662669872"]}}} +{"ref":"Trigger Level # Storm Cascade when you Attack","better":1,"matchers":[{"string":"При атаке вызывает срабатывание Грозового каскада # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_818329660"]}}} +{"ref":"Trigger Level # Summon Phantasm Skill when you Consume a corpse","better":1,"matchers":[{"string":"Вызывает срабатывание умения Призыв фантома # уровня, когда вы поглощаете труп"}],"trade":{"ids":{"explicit":["explicit.stat_3252082366"]}}} +{"ref":"Trigger Level # Summon Taunting Contraption when you use a Flask","better":1,"matchers":[{"string":"Вызывает срабатывание Призыва провоцирующего устройства, когда вы используете флакон"}],"trade":{"ids":{"implicit":["implicit.stat_1774370437"]}}} +{"ref":"Trigger Level # Tawhoa's Chosen when you Attack with\na Non-Vaal Slam or Strike Skill near an Enemy","better":1,"matchers":[{"string":"Вызывает срабатывание Избранника Тахоа # уровня, когда вы атакуете мощным\nне-ваал умением или умением ударов рядом с врагом"}],"trade":{"ids":{"explicit":["explicit.stat_3131535174"]}}} +{"ref":"Trigger Level # Toxic Rain when you Attack with a Bow","better":1,"matchers":[{"string":"Вызывает срабатывание Токсичного дождя # уровня при атаке луком"}],"trade":{"ids":{"explicit":["explicit.stat_767464019"]}}} +{"ref":"Trigger Level # Unseen Strike every 0.5 seconds while Phasing","better":1,"matchers":[{"string":"Вызывает срабатывание Скрытного удара # уровня каждые 0.5 секунд в Форме призрака"}],"trade":{"ids":{"explicit":["explicit.stat_3165215973"]}}} +{"ref":"Trigger Level # Void Gaze when you use a Skill","better":1,"matchers":[{"string":"При использовании умения вызывает срабатывание Взгляда пустоты # уровня"}],"trade":{"ids":{"explicit":["explicit.stat_1869144397"]}}} +{"ref":"Trigger Level 10 Summon Spectral Wolf on Kill","better":1,"matchers":[{"string":"Вызывает срабатывание Призыва призрачного волка 10 уровня при убийстве"}],"trade":{"ids":{"explicit":["explicit.stat_1468606528"],"fractured":["fractured.stat_1468606528"],"enchant":["enchant.stat_1468606528"],"crafted":["crafted.stat_1468606528"]}}} +{"ref":"Trigger Level 20 Shade Form when Hit","better":1,"matchers":[{"string":"#% шанс вызвать срабатывание Формы тени 20 уровня при получении удара"},{"string":"Вызывает срабатывание Формы тени 20 уровня при получении удара","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2603798371"]}}} +{"ref":"Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight","better":1,"matchers":[{"string":"Вызывает срабатывание Смерча 20 уровня когда вы получаете Птичью силу или Птичий полет"}],"trade":{"ids":{"explicit":["explicit.stat_2554328719"]}}} +{"ref":"Trigger Socketed Minion Spells on Kill with this Weapon\nMinion Spells Triggered by this Item have a 0.25 second Cooldown with 5 Uses","better":1,"matchers":[{"string":"#% шанс вызывть срабатывание размещенных чар приспешников при убийстве этим оружием\nСработавшие от этого предмета чары приспешников имеют 5 зарядов со временем перезарядки, равным 0.25 секунды."},{"string":"Вызывает срабатывание размещенных чар приспешников при убийстве этим оружием\nСработавшие от этого предмета чары приспешников имеют 5 зарядов со временем перезарядки, равным 0.25 секунды.","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2816098341"]}}} +{"ref":"Triggered Spells deal #% increased Spell Damage","better":1,"matchers":[{"string":"Срабатывающие чары наносят увеличенный на #% урон от чар"},{"string":"Срабатывающие чары наносят уменьшенный на #% урон от чар","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3067892458"]}}} +{"ref":"Triggers Level # Abberath's Fury when Equipped","better":1,"matchers":[{"string":"Сотворяет Ярость Абберата # уровня, пока предмет надет"}],"trade":{"ids":{"explicit":["explicit.stat_3250579936"]}}} +{"ref":"Triggers Level # Blinding Aura when Equipped","better":1,"matchers":[{"string":"Вызывает срабатывание Слепящей ауры # уровня, если экипирован"}],"trade":{"ids":{"explicit":["explicit.stat_125312907"]}}} +{"ref":"Triggers Level # Cold Aegis when Equipped","better":1,"matchers":[{"string":"Вызывает срабатывание Ледяной эгиды # уровня, если экипирован"}],"trade":{"ids":{"explicit":["explicit.stat_3918947537"]}}} +{"ref":"Triggers Level # Corpse Walk when Equipped","better":1,"matchers":[{"string":"Вызывает срабатывание Трупного шага # уровня, пока предмет надет"}],"trade":{"ids":{"explicit":["explicit.stat_779168081"],"fractured":["fractured.stat_779168081"]}}} +{"ref":"Triggers Level # Death Walk when Equipped","better":1,"matchers":[{"string":"Вызывает срабатывание Шага смерти #, пока предмет надет"}],"trade":{"ids":{"explicit":["explicit.stat_651875072"]}}} +{"ref":"Triggers Level # Elemental Aegis when Equipped","better":1,"matchers":[{"string":"Вызывает срабатывание Стихийной эгиды # уровня, если экипирован"}],"trade":{"ids":{"explicit":["explicit.stat_2602585351"]}}} +{"ref":"Triggers Level # Fire Aegis when Equipped","better":1,"matchers":[{"string":"Вызывает срабатывание Огненной эгиды # уровня, если экипирован"}],"trade":{"ids":{"explicit":["explicit.stat_1128763150"]}}} +{"ref":"Triggers Level # Lightning Aegis when Equipped","better":1,"matchers":[{"string":"Вызывает срабатывание Эгиды молний # уровня, если экипирован"}],"trade":{"ids":{"explicit":["explicit.stat_850729424"]}}} +{"ref":"Triggers Level # Manifest Dancing Dervishes on Rampage","better":1,"matchers":[{"string":"Вызывает срабатывание Проявления Танцующих дервишей # уровня при Буйстве"}],"trade":{"ids":{"explicit":["explicit.stat_4007938693"]}}} +{"ref":"Triggers Level # Physical Aegis when Equipped","better":1,"matchers":[{"string":"Вызывает срабатывание Физической Эгиды # уровня, если экипирован"}],"trade":{"ids":{"explicit":["explicit.stat_1892084828"]}}} +{"ref":"Triggers Level # Reflection when Equipped","better":1,"matchers":[{"string":"Вызывает срабатывание Отражения # уровня, если экипирован"}],"trade":{"ids":{"explicit":["explicit.stat_3451043685"]}}} +{"ref":"Triggers Level # Summon Arbalists when Equipped","better":1,"matchers":[{"string":"Вызывает срабатывание Призыва арбалетчиков # уровня, если экипирован"}],"trade":{"ids":{"explicit":["explicit.stat_3664803307"]}}} +{"ref":"Triggers Level 20 Spectral Spirits when Equipped\n+# to maximum number of Spectral Spirits","better":1,"matchers":[{"string":"Вызывает срабатывание Призрачных духов 20 уровня, если находится в руках\n# к максимуму Призрачных духов"}],"trade":{"ids":{"explicit":["explicit.stat_470688636"],"fractured":["fractured.stat_470688636"]}}} +{"ref":"Unaffected by Bleeding while affected by Malevolence","better":1,"matchers":[{"string":"Невосприимчивость к кровотечению под действием Злорадства"}],"trade":{"ids":{"explicit":["explicit.stat_4104891138"]}}} +{"ref":"Unaffected by Blind","better":1,"matchers":[{"string":"Невосприимчивость к ослеплению"}],"trade":{"ids":{"explicit":["explicit.stat_4193902224"]}}} +{"ref":"Unaffected by Burning Ground","better":1,"matchers":[{"string":"Невосприимчивость к эффекту горящей земли"}],"trade":{"ids":{"explicit":["explicit.stat_1643688236"],"implicit":["implicit.stat_1643688236"],"fractured":["fractured.stat_1643688236"]}}} +{"ref":"Unaffected by Burning Ground while affected by Purity of Fire","better":1,"matchers":[{"string":"Невосприимчивость к эффекту горящей земли под действием Спасения от огня"}],"trade":{"ids":{"explicit":["explicit.stat_3308185931"]}}} +{"ref":"Unaffected by Chill","better":1,"matchers":[{"string":"Невосприимчивость к эффекту охлаждения"}],"trade":{"ids":{"explicit":["explicit.stat_937372143"]}}} +{"ref":"Unaffected by Chill while Leeching Mana","better":1,"matchers":[{"string":"Невосприимчивость к охлаждению во время похищения маны"}],"trade":{"ids":{"explicit":["explicit.stat_4014328139"]}}} +{"ref":"Unaffected by Chilled Ground","better":1,"matchers":[{"string":"Невосприимчивость к эффекту замерзшей земли"}],"trade":{"ids":{"explicit":["explicit.stat_3653191834"],"implicit":["implicit.stat_3653191834"],"fractured":["fractured.stat_3653191834"]}}} +{"ref":"Unaffected by Chilled Ground while affected by Purity of Ice","better":1,"matchers":[{"string":"Невосприимчивость к эффекту замерзшей земли под действием Спасения от холода"}],"trade":{"ids":{"explicit":["explicit.stat_2647344903"]}}} +{"ref":"Unaffected by Conductivity while affected by Purity of Lightning","better":1,"matchers":[{"string":"Невосприимчивость к Проводимости под действием Спасения от молнии"}],"trade":{"ids":{"explicit":["explicit.stat_1567542124"]}}} +{"ref":"Unaffected by Curses","better":1,"matchers":[{"string":"Проклятия не имеют воздействия"}],"trade":{"ids":{"explicit":["explicit.stat_3809896400"]}}} +{"ref":"Unaffected by Curses while affected by Zealotry","better":1,"matchers":[{"string":"Невосприимчивость к проклятиям под действием Фанатизма"}],"trade":{"ids":{"explicit":["explicit.stat_3403419549"]}}} +{"ref":"Unaffected by Damaging Ailments","better":1,"matchers":[{"string":"Невосприимчивость к наносящим урон состояниям"}],"trade":{"ids":{"explicit":["explicit.stat_1575046591"]}}} +{"ref":"Unaffected by Desecrated Ground","better":1,"matchers":[{"string":"Невосприимчивость к эффекту оскверненной земли"}],"trade":{"ids":{"explicit":["explicit.stat_4004298002"],"fractured":["fractured.stat_4004298002"]}}} +{"ref":"Unaffected by Elemental Weakness while affected by Purity of Elements","better":1,"matchers":[{"string":"Невосприимчивость к Уязвимости к стихиям под действием Спасения от стихий"}],"trade":{"ids":{"explicit":["explicit.stat_3223142064"]}}} +{"ref":"Unaffected by Enfeeble while affected by Grace","better":1,"matchers":[{"string":"Невосприимчивость к Слабости под действием Грации"}],"trade":{"ids":{"explicit":["explicit.stat_2365917222"]}}} +{"ref":"Unaffected by Flammability while affected by Purity of Fire","better":1,"matchers":[{"string":"Невосприимчивость к Горючести под действием Спасения от огня"}],"trade":{"ids":{"explicit":["explicit.stat_1173690938"]}}} +{"ref":"Unaffected by Frostbite while affected by Purity of Ice","better":1,"matchers":[{"string":"Невосприимчивость к Обморожению под действием Спасения от холода"}],"trade":{"ids":{"explicit":["explicit.stat_4012281889"]}}} +{"ref":"Unaffected by Ignite","better":1,"matchers":[{"string":"Невосприимчивость к поджогу"}],"trade":{"ids":{"explicit":["explicit.stat_2635869389"]}}} +{"ref":"Unaffected by Ignite or Shock if Maximum Life and Maximum Mana are within 500","better":1,"matchers":[{"string":"Невосприимчивость к поджогу или шоку, если разница между максимумами здоровья и маны равна 500 или меньше"}],"trade":{"ids":{"explicit":["explicit.stat_2716882575"]}}} +{"ref":"Unaffected by Poison","better":1,"matchers":[{"string":"Невосприимчивость к яду"}],"trade":{"ids":{"explicit":["explicit.stat_1953432004"]}}} +{"ref":"Unaffected by Poison while affected by Malevolence","better":1,"matchers":[{"string":"Невосприимчивость к яду под действием Злорадства"}],"trade":{"ids":{"explicit":["explicit.stat_34059570"]}}} +{"ref":"Unaffected by Shock","better":1,"matchers":[{"string":"Невосприимчивость к шоку"}],"trade":{"ids":{"explicit":["explicit.stat_1473289174"]}}} +{"ref":"Unaffected by Shock while Leeching Energy Shield","better":1,"matchers":[{"string":"Невосприимчивость к шоку во время похищения энергетического щита"}],"trade":{"ids":{"explicit":["explicit.stat_4102393882"]}}} +{"ref":"Unaffected by Shocked Ground","better":1,"matchers":[{"string":"Невосприимчивость к эффекту заряженной земли"}],"trade":{"ids":{"explicit":["explicit.stat_2234049899"],"implicit":["implicit.stat_2234049899"],"fractured":["fractured.stat_2234049899"]}}} +{"ref":"Unaffected by Shocked Ground while affected by Purity of Lightning","better":1,"matchers":[{"string":"Невосприимчивость к эффекту заряженной земли под действием Спасения от молнии"}],"trade":{"ids":{"explicit":["explicit.stat_2567659895"]}}} +{"ref":"Unaffected by Temporal Chains","better":1,"matchers":[{"string":"Путы времени не имеют воздействия"}],"trade":{"ids":{"explicit":["explicit.stat_4212372504"]}}} +{"ref":"Unaffected by Temporal Chains while affected by Haste","better":1,"matchers":[{"string":"Под действием Спешки Путы времени не имеют воздействия"}],"trade":{"ids":{"explicit":["explicit.stat_2806391472"]}}} +{"ref":"Unaffected by Vulnerability while affected by Determination","better":1,"matchers":[{"string":"Невосприимчивость к Беззащитности под действием Решимости"}],"trade":{"ids":{"explicit":["explicit.stat_3207781478"]}}} +{"ref":"Unearth Spawns corpses with +# Level","better":1,"matchers":[{"string":"Эксгумация создает трупы # уровня"}],"trade":{"ids":{"enchant":["enchant.stat_586167247"]}}} +{"ref":"Unholy Might","better":1,"matchers":[{"string":"Нечестивое могущество"}],"trade":{"ids":{"explicit":["explicit.stat_1646760085"]}}} +{"ref":"Unholy Might during Effect","better":1,"matchers":[{"string":"Дает Нечестивое могущество на время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_207573834"]}}} +{"ref":"Unique Boss deals #% increased Damage","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"matchers":[{"string":"Урон уникального босса увеличен на #%"}],"trade":{"ids":{"explicit":["explicit.stat_124877078"],"fractured":["fractured.stat_124877078"],"enchant":["enchant.stat_124877078"]}}} +{"ref":"Unique Boss drops an additional Harbinger Scroll","better":1,"matchers":[{"string":"Из уникального босса выпадет дополнительный свиток Предвестника"}],"trade":{"ids":{"explicit":["explicit.stat_1432093361"]}}} +{"ref":"Unique Boss has #% increased Area of Effect","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"matchers":[{"string":"Уникальный босс имеет #% увеличение области действия"},{"string":"Уникальный босс имеет #% уменьшение области действия","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3040667106"],"fractured":["fractured.stat_3040667106"]}}} +{"ref":"Unique Boss has #% increased Attack and Cast Speed","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"matchers":[{"string":"Уникальный босс имеет увеличенную на #% скорость атаки и сотворения чар"}],"trade":{"ids":{"explicit":["explicit.stat_2109106920"],"fractured":["fractured.stat_2109106920"]}}} +{"ref":"Unique Boss has #% increased Life","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"matchers":[{"string":"Уникальный босс имеет #% увеличение здоровья"},{"string":"Уникальный босс имеет #% уменьшение здоровья","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1959158336"],"fractured":["fractured.stat_1959158336"],"enchant":["enchant.stat_1959158336"]}}} +{"ref":"Unique Bosses are Possessed","better":1,"fromAreaMods":true,"fromUberAreaMods":true,"matchers":[{"string":"Уникальные боссы одержимы"}],"trade":{"ids":{"explicit":["explicit.stat_2588474575"],"fractured":["fractured.stat_2588474575"]}}} +{"ref":"Unique Monsters drop Corrupted Items","better":1,"fromAreaMods":true,"matchers":[{"string":"С уникальных монстров выпадают осквернённые предметы"}],"trade":{"ids":{"implicit":["implicit.stat_804187877"],"enchant":["enchant.stat_804187877"]}}} +{"ref":"Unique Monsters have a random Shrine Buff","better":1,"fromUberAreaMods":true,"matchers":[{"string":"На уникальных монстров действует случайных положительных эффектов алтарей: #"},{"string":"На уникальных монстров действует случайный положительный эффект алтарей","value":1}],"trade":{"ids":{"explicit":["explicit.stat_872972810"],"fractured":["fractured.stat_872972810"]}}} +{"ref":"Unwavering Stance","better":1,"matchers":[{"string":"Несокрушимость"}],"trade":{"ids":{"explicit":["explicit.stat_1683578560"],"implicit":["implicit.stat_1683578560"],"scourge":["scourge.stat_1683578560"]}}} +{"ref":"Used when an adjacent Flask is used","better":1,"matchers":[{"string":"Используется при использовании соседнего флакона"}],"trade":{"ids":{"enchant":["enchant.stat_2219523244"]}}} +{"ref":"Used when Charges reach full","better":1,"matchers":[{"string":"Используется при накоплении максимума зарядов"}],"trade":{"ids":{"enchant":["enchant.stat_3287581721"]}}} +{"ref":"Used when you become Chilled","better":1,"matchers":[{"string":"Используется, когда вы получаете охлаждение"}],"trade":{"ids":{"enchant":["enchant.stat_3944779636"]}}} +{"ref":"Used when you become Frozen","better":1,"matchers":[{"string":"Используется, когда вы получаете заморозку"}],"trade":{"ids":{"enchant":["enchant.stat_1691862754"]}}} +{"ref":"Used when you become Ignited","better":1,"matchers":[{"string":"Используется, когда вы получаете поджог"}],"trade":{"ids":{"enchant":["enchant.stat_585126960"]}}} +{"ref":"Used when you become Poisoned","better":1,"matchers":[{"string":"Используется, когда вы получаете отравление"}],"trade":{"ids":{"enchant":["enchant.stat_1412682799"]}}} +{"ref":"Used when you become Shocked","better":1,"matchers":[{"string":"Используется, когда вы получаете шок"}],"trade":{"ids":{"enchant":["enchant.stat_3699444296"]}}} +{"ref":"Used when you Block","better":1,"matchers":[{"string":"Используется при блокировании вами удара"}],"trade":{"ids":{"enchant":["enchant.stat_3831658908"]}}} +{"ref":"Used when you Hit a Rare or Unique Enemy, if not already in effect","better":1,"matchers":[{"string":"Используется, когда вы наносите удар по редкому или уникальному врагу, если уже не действует"}],"trade":{"ids":{"enchant":["enchant.stat_2247138020"]}}} +{"ref":"Used when you start Bleeding","better":1,"matchers":[{"string":"Используется при наложении на вас кровотечения"}],"trade":{"ids":{"enchant":["enchant.stat_3676540188"]}}} +{"ref":"Used when you take a Savage Hit","better":1,"matchers":[{"string":"Используется, когда вы получаете Жестокий удар"}],"trade":{"ids":{"enchant":["enchant.stat_1914436944"]}}} +{"ref":"Used when you Use a Guard Skill","better":1,"matchers":[{"string":"Используется при использовании вами умения Обороны"}],"trade":{"ids":{"enchant":["enchant.stat_3884539386"]}}} +{"ref":"Used when you use a Life Flask","better":1,"matchers":[{"string":"Используется при использовании вами флакона жизни"}],"trade":{"ids":{"enchant":["enchant.stat_359574900"]}}} +{"ref":"Used when you Use a Travel Skill","better":1,"matchers":[{"string":"Используется при использовании вами умения Смещения"}],"trade":{"ids":{"enchant":["enchant.stat_1260843520"]}}} +{"ref":"Uses both hand slots","better":1,"matchers":[{"string":"Использует обе руки"}],"trade":{"ids":{"explicit":["explicit.stat_2846730569"]}}} +{"ref":"Vaal Attack Skills you Use yourself Cost Rage instead of requiring Souls","better":1,"matchers":[{"string":"Умения атак ваал, используемые вами самостоятельно, расходуют свирепость вместо душ"}],"trade":{"ids":{"explicit":["explicit.stat_1103075489"]}}} +{"ref":"Vaal Pact","better":1,"matchers":[{"string":"Соглашение с ваал"}],"trade":{"ids":{"explicit":["explicit.stat_2257118425"],"scourge":["scourge.stat_2257118425"]}}} +{"ref":"Vaal Skills deal #% more Damage during Effect","better":1,"matchers":[{"string":"Умения ваал наносят на #% больше урона во время действия эффекта"},{"string":"Умения ваал наносят на #% меньше урона во время действия эффекта","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4147528862"]}}} +{"ref":"Vaal Skills have #% chance to regain consumed Souls when used","better":1,"matchers":[{"string":"Умения ваал имеют #% шанс вернуть потраченные души при использовании"}],"trade":{"ids":{"explicit":["explicit.stat_2833218772"]}}} +{"ref":"Vaal Skills used during effect do not apply Soul Gain Prevention","better":1,"matchers":[{"string":"Во время действия использованные умения ваал не предотвращают получение душ"}],"trade":{"ids":{"explicit":["explicit.stat_2344590267"]}}} +{"ref":"Vaal Skills used during effect have #% reduced Soul Gain Prevention Duration","better":-1,"matchers":[{"string":"Умения ваал, используемые во время действия эффекта, имеют #% увеличение длительности предотвращения получения душ"},{"string":"Умения ваал, используемые во время действия эффекта, имеют #% уменьшение длительности предотвращения получения душ","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_902947445"]},"inverted":true}} +{"ref":"Vagan's Veiled","better":0,"matchers":[{"string":"Завуалированная Ваганом"},{"string":"Завуалированное Ваганом"},{"string":"Завуалированные Ваганом"},{"string":"Завуалированный Ваганом"}],"trade":{"ids":{"veiled":["veiled.mod_14269"]}}} +{"ref":"Veiled","better":0,"matchers":[{"string":"Завуалированная"},{"string":"Завуалированное"},{"string":"Завуалированные"},{"string":"Завуалированный"}],"trade":{"ids":{"veiled":["veiled.mod_65000"]}}} +{"ref":"Vengeance has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"#% повышение скорости перезарядки Отмщения"},{"string":"#% снижение скорости перезарядки Отмщения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1447427508"]}}} +{"ref":"Venom Gyre deals #% increased Damage","better":1,"matchers":[{"string":"Круг яда наносит увеличенный на #% урон"},{"string":"Круг яда наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1404787106"]}}} +{"ref":"Venom Gyre has a #% chance to inflict Withered for 2 seconds on Hit","better":1,"matchers":[{"string":"Круг яда имеет #% шанс наложить Истощение на 2 секунды при нанесении удара"},{"string":"Круг яда накладывает Истощение на 2 секунды при нанесении удара","value":100}],"trade":{"ids":{"enchant":["enchant.stat_2157671820"]}}} +{"ref":"Venom Gyre has a #% chance to keep each caught Projectile fired with Whirling Blades","better":1,"matchers":[{"string":"Круг яда с #% шансом может сохранить каждый пойманный снаряд, выпущенный Шквалом клинков"}],"trade":{"ids":{"enchant":["enchant.stat_2563177940"]}}} +{"ref":"Versatile Combatant","better":1,"matchers":[{"string":"Универсальный боец"}],"trade":{"ids":{"explicit":["explicit.stat_593845252"],"fractured":["fractured.stat_593845252"],"scourge":["scourge.stat_593845252"]}}} +{"ref":"Vigilant Strike has #% increased Fortification Duration","better":1,"matchers":[{"string":"Расчетливый удар имеет #% увеличение длительности Укрепления"},{"string":"Расчетливый удар имеет #% уменьшение длительности Укрепления","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2275055843"]}}} +{"ref":"Vitality has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"#% увеличение эффективности удержания маны Живучестью"},{"string":"#% уменьшение эффективности удержания маны Живучестью","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1233806203","implicit.stat_3972739758"],"enchant":["enchant.stat_1233806203","enchant.stat_3972739758"]}}} +{"ref":"Vitality has no Reservation","better":1,"matchers":[{"string":"Живучесть не удерживает ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_438083873"]}}} +{"ref":"Void Sphere has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"Сфера пустоты имеет #% повышение скорости перезарядки"}],"trade":{"ids":{"enchant":["enchant.stat_2690342765"]}}} +{"ref":"Void Sphere has #% increased Pulse Frequency","better":1,"matchers":[{"string":"Сфера пустоты имеет #% повышение частоты пульсации"},{"string":"Сфера пустоты имеет #% снижение частоты пульсации","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2523663201"]}}} +{"ref":"Volatile Dead Consumes up to # additional corpse","better":1,"matchers":[{"string":"Нестабильный труп поглощает до # дополнительного трупа"},{"string":"Нестабильный труп поглощает до # дополнительных трупов"}],"trade":{"ids":{"enchant":["enchant.stat_3034788766"]}}} +{"ref":"Volcanic Fissure deals #% increased Damage","better":1,"matchers":[{"string":"Вулканический разлом наносит увеличенный на #% урон"},{"string":"Вулканический разлом наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1124690737"]}}} +{"ref":"Volcanic Fissure fires an additional Projectile","better":1,"matchers":[{"string":"Вулканический разлом выпускает дополнительных снарядов: #"},{"string":"Вулканический разлом выпускает дополнительный снаряд","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1460853241"]}}} +{"ref":"Volcanic Fissure travels #% faster","better":1,"matchers":[{"string":"Вулканический разлом продвигается на #% быстрее"},{"string":"Вулканический разлом продвигается на #% медленнее","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_373677479"]}}} +{"ref":"Voltaxic Burst deals #% increased Damage per 0.1 seconds of Duration","better":1,"matchers":[{"string":"#% увеличение урона Вольтаксовой вспышки за 0.1 секунду длительности"},{"string":"#% уменьшение урона Вольтаксовой вспышки за 0.1 секунду длительности","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3472104870"]}}} +{"ref":"Vorici's Veiled","better":0,"matchers":[{"string":"Завуалированная Воричи"},{"string":"Завуалированное Воричи"},{"string":"Завуалированные Воричи"},{"string":"Завуалированный Воричи"}],"trade":{"ids":{"veiled":["veiled.mod_47933"]}}} +{"ref":"Vortex has #% increased Area of Effect when Cast on Frostbolt","better":1,"matchers":[{"string":"При использовании через Морозный шар, Пурга имеет #% увеличение области действия"},{"string":"При использовании через Морозный шар, Пурга имеет #% уменьшение области действия","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2295263113"]}}} +{"ref":"Vortex has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"Пурга имеет #% повышение скорости перезарядки"},{"string":"Пурга имеет #% уменьшение скорости перезарядки","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2461424099"]}}} +{"ref":"Vulnerability has no Reservation if Cast as an Aura","better":1,"matchers":[{"string":"Беззащитность в виде ауры не удерживает ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_531868030"]}}} +{"ref":"War Banner has #% increased Aura Effect","better":1,"matchers":[{"string":"#% усиление эффекта ауры Знамени войны"},{"string":"#% ослабление эффекта ауры Знамени войны","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2592211591"]}}} +{"ref":"Warcries cannot Exert Travel Skills","better":1,"matchers":[{"string":"Боевые кличи не могут улучшить умения Смещения"}],"trade":{"ids":{"explicit":["explicit.stat_2174134106"],"fractured":["fractured.stat_2174134106"],"crafted":["crafted.stat_2174134106"]}}} +{"ref":"Warcries Exert # additional Attack","better":1,"matchers":[{"string":"Боевые кличи улучшают дополнительных атак: #"}],"trade":{"ids":{"implicit":["implicit.stat_1434716233"]}}} +{"ref":"Warcries grant # Rage per 5 Power if you have less than 25 Rage","better":1,"matchers":[{"string":"Боевые кличи даруют # свирепости за 5 влияния, если у вас меньше 25 свирепости"}],"trade":{"ids":{"explicit":["explicit.stat_3608339129"]}}} +{"ref":"Warcries grant Arcane Surge to you and Allies, with #% increased effect per 5 power, up to 50%","better":1,"matchers":[{"string":"Боевые кличи даруют Колдовской выброс вам и союзникам, с усиленным на #% эффектом за каждые 5 влияния, вплоть до 50%"}],"trade":{"ids":{"explicit":["explicit.stat_3399924348"]}}} +{"ref":"Warcries Knock Back and Interrupt Enemies in a smaller Area","better":1,"matchers":[{"string":"Боевые кличи прерывают действия врагов в небольшой области и отбрасывают их"}],"trade":{"ids":{"explicit":["explicit.stat_519622288"]}}} +{"ref":"Warcry Skills have #% increased Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия боевых кличей"},{"string":"#% уменьшение области действия боевых кличей","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2567751411"],"fractured":["fractured.stat_2567751411"]}}} +{"ref":"Warcry Skills have +# seconds to Cooldown","better":1,"matchers":[{"string":"# к времени перезарядки боевых кличей"}],"trade":{"ids":{"implicit":["implicit.stat_1504905117"]}}} +{"ref":"Warcry Skills' Cooldown Time is 4 seconds","better":1,"matchers":[{"string":"Время перезарядки боевых кличей составляет 4 секунды"}],"trade":{"ids":{"explicit":["explicit.stat_684268017"]}}} +{"ref":"Ward does not Break during Effect","better":1,"matchers":[{"string":"Во время действия эффекта барьер не сбивается"}],"trade":{"ids":{"explicit":["explicit.stat_80764074"]}}} +{"ref":"Wave of Conviction deals #% increased Damage","better":1,"matchers":[{"string":"#% увеличение наносимого урона Волной осуждения"},{"string":"#% уменьшение наносимого урона Волной осуждения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_309198891"]}}} +{"ref":"Wave of Conviction has #% increased Duration","better":1,"matchers":[{"string":"#% увеличение длительности Волны осуждения"},{"string":"#% уменьшение длительности Волны осуждения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2412561418"]}}} +{"ref":"Wave of Conviction's Exposure applies an extra +#% to Elemental Resistance","better":1,"matchers":[{"string":"Восприимчивость от Волны осуждения накладывает дополнительно #% к сопротивлению стихиям"}],"trade":{"ids":{"enchant":["enchant.stat_3139672534"]}}} +{"ref":"Weapons you Animate create an additional copy","better":1,"matchers":[{"string":"Оживлённое вами оружие создает дополнительных копий: #"}],"trade":{"ids":{"explicit":["explicit.stat_1266553505"]}}} +{"ref":"When a fifth Impale is inflicted on a Player, Impales are removed to Reflect their Physical Damage multiplied by their remaining Hits to that Player and their Allies within 1.8 metres","better":1,"fromUberAreaMods":true,"matchers":[{"string":"При наложении пятого Прокола на игрока, Проколы удаляются и наносят их отраженный физический урон, умноженный на оставшееся количество ударов, по этому игроку и его союзникам в радиусе 1.8 метров"}],"trade":{"ids":{"explicit":["explicit.stat_1353527704"],"fractured":["fractured.stat_1353527704"]}}} +{"ref":"When an Enemy Hit deals Elemental Damage to you, their Resistance to those Elements becomes zero for 4 seconds","better":1,"matchers":[{"string":"Когда враг наносит удар стихиями по вам, его сопротивление этой стихии становится равным нулю на 4 секунды"}],"trade":{"ids":{"explicit":["explicit.stat_3714446071"]}}} +{"ref":"When Hit during effect, #% of Life loss from Damage taken occurs over 4 seconds instead","better":1,"matchers":[{"string":"При получении удара во время действия эффекта #% здоровья от полученного урона теряется в течение 4 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_41860024"]}}} +{"ref":"When Hit, gain a random Movement Speed modifier from #% reduced to #% increased, until Hit again","better":-1,"matchers":[{"string":"При получении удара дарует случайное свойство скорости передвижения от на #% меньше до на #% больше, вплоть до получения следующего удара","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3281809492"]},"inverted":true}} +{"ref":"When used in the Synthesiser, the new item will have an additional Herald Modifier","better":1,"matchers":[{"string":"При использовании в Синтезаторе, новый предмет будет иметь дополнительное свойство Вестника"}],"trade":{"ids":{"explicit":["explicit.stat_3461563650"]}}} +{"ref":"When you Attack, take #% of Life as Physical Damage for\neach Warcry Exerting the Attack","better":1,"matchers":[{"string":"Когда вы атакуете, получает #% от здоровья в виде физического урона за\nкаждый боевой клич, усиливающий атаку"}],"trade":{"ids":{"explicit":["explicit.stat_1615324731"]}}} +{"ref":"When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage\nequal to #% of Sacrificed Mana for 4 seconds","better":1,"matchers":[{"string":"Когда вы сотворяете чары, отнимает всю ману и на 4 секунды добавляет максимальный урон от молнии,\nравный #% от потраченной маны"}],"trade":{"ids":{"explicit":["explicit.stat_820827484"]}}} +{"ref":"When you Kill a Magic Monster gain its Modifiers for 60 seconds","better":1,"matchers":[{"string":"Когда вы убиваете волшебного монстра, вы с #% шансом можете получить его свойства на 60 секунд"},{"string":"Когда вы убиваете волшебного монстра, вы получаете его свойства на 60 секунд","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3976991498"]}}} +{"ref":"When you Kill a Rare Monster, #% chance to gain one of its Modifiers for 10 seconds","better":1,"matchers":[{"string":"Когда вы убиваете редкого монстра, вы имеете #% шанс получить одно из его свойств на 10 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_2736829661"],"fractured":["fractured.stat_2736829661"]}}} +{"ref":"When you Kill a Rare monster, you gain its Modifiers for 60 seconds","better":1,"matchers":[{"string":"Когда вы убиваете редкого монстра, вы получаете его свойства на 60 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_2913235441"]}}} +{"ref":"When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy","better":1,"matchers":[{"string":"При убийстве поражённого шоком врага, шок накладывается на каждого из ближайших врагов"}],"trade":{"ids":{"explicit":["explicit.stat_3462132936"]}}} +{"ref":"When you Kill an Enemy Cursed with a Non-Aura Hex, become Immune to\nCurses for remaining Hex Duration","better":1,"matchers":[{"string":"Когда вы убиваете врага, проклятого порчей не-аурой, вы становитесь\nиммунны к проклятиям на оставшееся время действия порчи"}],"trade":{"ids":{"explicit":["explicit.stat_1406092431"]}}} +{"ref":"When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy","better":1,"matchers":[{"string":"При убийстве подожжённого врага, поджог накладывается на каждого из ближайших врагов"}],"trade":{"ids":{"explicit":["explicit.stat_2638352064"]}}} +{"ref":"When you leave your Banner's Area, recover #% of the Valour consumed for that Banner","better":1,"matchers":[{"string":"Когда вы покидаете область действия вашего знамени, вы восстанавливаете #% от затраченной на установку этого знамени доблести"}],"trade":{"ids":{"explicit":["explicit.stat_3906150898"]}}} +{"ref":"When you lose Temporal Chains you gain maximum Rage","better":1,"matchers":[{"string":"При прекращении действия Пут времени вы получаете максимум свирепости"}],"trade":{"ids":{"explicit":["explicit.stat_2174796794"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Aggravate Bleeding on targets you Hit with Attacks","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% шанс усугубить кровотечение на врагах ударами атак"}],"trade":{"ids":{"implicit":["implicit.stat_466064970"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Frozen","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% шанс избежать заморозки"}],"trade":{"ids":{"implicit":["implicit.stat_2661498709"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Ignited","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% шанс избежать поджога"}],"trade":{"ids":{"implicit":["implicit.stat_911929910"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Poisoned","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% шанс избежать отравления"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, Не может быть отравлен","value":100},{"string":"Пока верховный босс Атласа находится в вашем присутствии, Невозможно отравить","value":100}],"trade":{"ids":{"implicit":["implicit.stat_2714750784"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Shocked","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% шанс избежать шока"}],"trade":{"ids":{"implicit":["implicit.stat_3823702653"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid being Stunned","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% шанс избежать оглушения"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, Не может быть оглушен","value":100}],"trade":{"ids":{"implicit":["implicit.stat_990874979"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid Bleeding","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% шанс избежать кровотечения"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, Кровотечение не может быть наложено на вас","value":100},{"string":"Пока верховный босс Атласа находится в вашем присутствии, На вас нельзя наложить кровотечение","value":100}],"trade":{"ids":{"implicit":["implicit.stat_2610114836"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Avoid Elemental Ailments","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% шанс избежать стихийных состояний"}],"trade":{"ids":{"implicit":["implicit.stat_4241033239"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% Chance to Block Attack Damage","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% шанс блокировать урон от атак"}],"trade":{"ids":{"implicit":["implicit.stat_3326567914"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% Chance to Block Spell Damage","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% шанс блокировать урон от чар"}],"trade":{"ids":{"implicit":["implicit.stat_2996280658"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Extinguish Enemies on Hit","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% шанс наложить Усмирение на врагов при нанесении удара"}],"trade":{"ids":{"implicit":["implicit.stat_3854721949"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Freeze","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% шанс заморозить"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, Всегда замораживает","value":100},{"string":"Пока верховный босс Атласа находится в вашем присутствии, Всегда замораживает врагов при нанесении удара","value":100}],"trade":{"ids":{"implicit":["implicit.stat_4146719724"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Hinder Enemies on Hit with Spells","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% шанс сковать врагов при нанесении удара чарами"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, Сковывает врагов при нанесении удара чарами","value":100}],"trade":{"ids":{"implicit":["implicit.stat_604515066"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Ignite","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% шанс поджечь"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, Всегда поджигает","value":100}],"trade":{"ids":{"implicit":["implicit.stat_1030674088"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Impale Enemies on Hit with Attacks","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% шанс наложить на врагов Прокол при нанесении удара атаками"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, Накладывает на врагов Прокол при нанесении удара атаками","value":100}],"trade":{"ids":{"implicit":["implicit.stat_2838459808"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Intimidate Enemies for 4 seconds on Hit","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% шанс при нанесении удара устрашить врагов на 4 секунды"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% шанс устрашить врагов на 4 секунды при нанесении удара"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, Устрашает врагов на 4 секунды при нанесении удара","value":100}],"trade":{"ids":{"implicit":["implicit.stat_3004272949"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Poison on Hit","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% шанс отравить при нанесении удара"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, Всегда отравляет при нанесении удара","value":100}],"trade":{"ids":{"implicit":["implicit.stat_532792006"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Shock","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% шанс наложить шок"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, Всегда накладывает шок","value":100}],"trade":{"ids":{"implicit":["implicit.stat_2459490852"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% chance to Unnerve Enemies for 4 seconds on Hit","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% шанс обескуражить врагов на 4 секунды при нанесении удара"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, Обескураживает врагов на 4 секунды при нанесении удара","value":100}],"trade":{"ids":{"implicit":["implicit.stat_4018420421"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Action Speed","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% снижение скорости действий"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% повышение скорости действий","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2251857767"]},"inverted":true}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Arctic Armour Buff Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление положительного эффекта Северной брони"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление положительного эффекта Северной брони","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3744585764"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Area of Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% увеличение области действия"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% уменьшение области действия","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_568930056"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Armour","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% повышение брони"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% снижение брони","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1371764251"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Armour from Equipped Helmet and Gloves","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% увеличение брони, полученной от шлема и перчаток"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% уменьшение брони, полученной от шлема и перчаток","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3330140563"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Attack Damage","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% увеличение урона от атак"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% уменьшение урона от атак","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3133935886"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Attack Speed","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% повышение скорости атаки"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% снижение скорости атаки","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2446980928"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Battlemage's Cry Buff Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта Клича боевого мага"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта Клича боевого мага","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1455812442"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Blind Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта ослепления"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта ослепления","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4122616021"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Brand Attachment range","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% увеличение дальности прикрепления клейма"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% уменьшение дальности прикрепления клейма","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2391109128"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Cast Speed","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% повышение скорости сотворения чар"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% снижение скорости сотворения чар","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4098747485"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Chaos Damage","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% увеличение урона хаосом"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% уменьшение урона хаосом","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2070979181"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Cold Damage","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% увеличение урона от холода"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% уменьшение урона от холода","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1576689223"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Conductivity Curse Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта проклятия Проводимости"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта проклятия Проводимости","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2095999895"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% повышение скорости перезарядки"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% повышение скорости перезарядки умений"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% снижение скорости перезарядки","negate":true},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% снижение скорости перезарядки умений","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_668321613"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Cooldown Recovery Rate of Travel Skills","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% повышение скорости перезарядки умений смещения"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% снижение скорости перезарядки умений смещения","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_850668052"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Critical Strike Chance for Attacks","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% повышение шанса критического удара атаками"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% снижение шанса критического удара атаками","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1840069423"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per 100 Dexterity","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% увеличение урона за каждые 100 ловкости"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% уменьшение урона за каждые 100 ловкости","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1870591253"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per 100 Intelligence","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% увеличение урона за каждые 100 интеллекта"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% уменьшение урона за каждые 100 интеллекта","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2532279515"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per 100 Strength","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% увеличение урона за каждые 100 силы"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% уменьшение урона за каждые 100 силы","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3183308031"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per Endurance Charge","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% увеличение урона за заряд выносливости"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% уменьшение урона за заряд выносливости","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_740797388"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per Frenzy Charge","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% увеличение урона за заряд ярости"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% уменьшение урона за заряд ярости","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1855179125"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Damage per Power Charge","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% увеличение урона за заряд энергии"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% уменьшение урона за заряд энергии","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2809284200"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Despair Curse Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта проклятия Отчаяния"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта проклятия Отчаяния","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2775855429"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Duration of Ailments on Enemies","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% увеличение длительности состояний на врагах"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% уменьшение длительности состояний на врагах","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_867827325"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Arcane Surge on you","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта Колдовского выброса на вас"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта Колдовского выброса на вас","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_664899091"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Buffs granted by your Golems","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление положительных эффектов, полученных от ваших големов"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление положительных эффектов, полученных от ваших големов","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4128294206"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased effect of Non-Curse Auras from your Skills","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта аур не-проклятий от ваших умений"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта аур не-проклятий от ваших умений","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3788782813"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Non-Damaging Ailments","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта не наносящих урон состояний"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта не наносящих урон состояний","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1016769968"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of Onslaught on you","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта Боевого ража на вас"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта Боевого ража на вас","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3209267362"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Carrion Golems","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление положительного эффекта, даруемого вашими трупными големами"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление положительного эффекта, даруемого вашими трупными големами","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1080711147"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Chaos Golems","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта, даруемого вашими големами хаоса"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта, даруемого вашими големами хаоса","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_510803146"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Flame Golems","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта, даруемого вашими големами огня"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта, даруемого вашими големами огня","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_783010498"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Ice Golems","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта, даруемого вашими големами льда"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта, даруемого вашими големами льда","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_168204696"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Lightning Golems","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта, даруемого вашими големами молнии"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта, даруемого вашими големами молнии","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2527345629"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of the Buff granted by your Stone Golems","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта, даруемого вашими каменными големами"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта, даруемого вашими каменными големами","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_438468314"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of your Curses","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта ваших проклятий"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта ваших проклятий","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1350472585"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Effect of your Marks","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта ваших меток"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта ваших меток","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1138753695"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Elemental Weakness Curse Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта проклятия Уязвимости к стихиям"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта проклятия Уязвимости к стихиям","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2029969019"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Elusive Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта Неуловимости"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта Неуловимости","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3173079195"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Energy Shield Recharge Rate","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% повышение скорости перезарядки энергетического щита"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% снижение скорости перезарядки энергетического щита","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_26006636"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Energy Shield Recovery rate","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% повышение скорости восстановления энергетического щита"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% снижение скорости восстановления энергетического щита","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_92591094"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Enfeeble Curse Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта проклятия Слабости"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта проклятия Слабости","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_38083709"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Evasion Rating","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% увеличение уклонения"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% уменьшение уклонения","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2386062386"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Evasion Rating from Equipped Helmet and Boots","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% увеличение уклонения, полученного от шлема и сапог"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% уменьшение уклонения, полученного от шлема и сапог","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2980409921"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Fire Damage","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% увеличение урона от огня"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% уменьшение урона от огня","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2782184338"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Flammability Curse Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта проклятия Горючести"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта проклятия Горючести","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_323292443"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Frostbite Curse Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта проклятия Обморожения"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта проклятия Обморожения","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2068042138"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Global Accuracy Rating","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% повышение глобальной меткости"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% снижение глобальной меткости","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2086047206"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Global Physical Damage","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% увеличение глобального физического урона"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% уменьшение глобального физического урона","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2545907302"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Life Recovery rate","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% повышение скорости восстановления здоровья"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% снижение скорости восстановления здоровья","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2761472996"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Life Regeneration rate","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% повышение скорости регенерации здоровья"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% снижение скорости регенерации здоровья","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_498250787"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Lightning Damage","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% увеличение урона от молнии"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% уменьшение урона от молнии","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1328859059"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Recovery rate","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% повышение скорости восстановления маны"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% снижение скорости восстановления маны","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4117139221"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Regeneration Rate","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% повышение скорости регенерации маны"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% снижение скорости регенерации маны","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4222133389"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Regeneration Rate per Power Charge","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% повышение скорости регенерации маны за заряд энергии"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% снижение скорости регенерации маны за заряд энергии","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2425364074"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Mana Reservation Efficiency of Skills","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% увеличение эффективности удержания маны умениями"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% уменьшение эффективности удержания маны умениями","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4213793369"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased maximum Energy Shield","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% увеличение максимума энергетического щита"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% уменьшение максимума энергетического щита","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1917716710"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Maximum Energy Shield from Equipped Gloves and Boots","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% увеличение максимума энергетического щита, полученного от перчаток и сапог"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% уменьшение максимума энергетического щита, полученного от перчаток и сапог","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1388739249"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Mine Throwing Speed","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% повышение скорости броска мины"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% снижение скорости броска мины","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3827973062"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Movement Speed","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% повышение скорости передвижения"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% снижение скорости передвижения","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1702124724"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Punishment Curse Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта проклятия Наказания"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта проклятия Наказания","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_40584863"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Rallying Cry Buff Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление положительного эффекта Клича сплочения"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление положительного эффекта Клича сплочения","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2063107864"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Skill Effect Duration","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% увеличение длительности эффекта умения"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% уменьшение длительности эффекта умения","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2828309116"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Spell Critical Strike Chance","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% увеличение шанса критического удара чарами"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% уменьшение шанса критического удара чарами","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1412947753"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Spell Damage","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% увеличение урона от чар"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% уменьшение урона от чар","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_817495383"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Stun Threshold","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% повышение порога оглушения"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% снижение порога оглушения","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1513279759"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Temporal Chains Curse Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта проклятия Пут времени"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта проклятия Пут времени","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3695602451"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Totem Placement speed","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% повышение скорости установки тотемов"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% снижение скорости установки тотемов","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_100371300"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Trap Throwing Speed","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% повышение скорости броска ловушки"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% снижение скорости броска ловушки","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_547463927"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Vulnerability Curse Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта проклятия Беззащитности"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта проклятия Беззащитности","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1668340466"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Warcry Buff Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление положительного эффекта боевого клича"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление положительного эффекта боевого клича","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_794753348"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% increased Warcry Speed","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% повышение скорости применения боевых кличей"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% снижение скорости применения боевых кличей","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2117066923"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Chaos Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% урона хаосом похищается в виде здоровья"}],"trade":{"ids":{"implicit":["implicit.stat_10259064"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Cold Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% урона от холода похищается в виде здоровья"}],"trade":{"ids":{"implicit":["implicit.stat_339123312"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Cold Damage taken Recouped as Life","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% полученного урона от холода восполняется в виде здоровья"}],"trade":{"ids":{"implicit":["implicit.stat_2181576428"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Damage is taken from Mana before Life","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% от получаемого урона берется сначала из маны вместо здоровья"}],"trade":{"ids":{"implicit":["implicit.stat_699673918"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Damage taken Recouped as Life","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% полученного урона восполняется в виде здоровья"}],"trade":{"ids":{"implicit":["implicit.stat_2525287976"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Fire Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% урона от огня похищается в виде здоровья"}],"trade":{"ids":{"implicit":["implicit.stat_1954944666"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Fire Damage taken Recouped as Life","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% полученного урона от огня восполняется в виде здоровья"}],"trade":{"ids":{"implicit":["implicit.stat_1613190388"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Lightning Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% урона от молнии похищается в виде здоровья"}],"trade":{"ids":{"implicit":["implicit.stat_1896842319"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Lightning Damage taken Recouped as Life","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% полученного урона от молнии восполняется в виде здоровья"}],"trade":{"ids":{"implicit":["implicit.stat_3870554516"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Chaos Damage","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% физического урона становится уроном хаосом"}],"trade":{"ids":{"implicit":["implicit.stat_2204282073"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Cold Damage","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% физического урона становится уроном от холода"}],"trade":{"ids":{"implicit":["implicit.stat_3567752586"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Fire Damage","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% физического урона становится уроном от огня"}],"trade":{"ids":{"implicit":["implicit.stat_3764409984"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Converted to Lightning Damage","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% физического урона становится уроном от молнии"}],"trade":{"ids":{"implicit":["implicit.stat_3718361973"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Chaos Damage","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% получаемого физического урона от ударов становится уроном хаосом"}],"trade":{"ids":{"implicit":["implicit.stat_3904394775"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Cold Damage","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% получаемого физического урона от ударов становится уроном от холода"}],"trade":{"ids":{"implicit":["implicit.stat_2466412811"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Fire Damage","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% получаемого физического урона от ударов становится уроном от огня"}],"trade":{"ids":{"implicit":["implicit.stat_3995172058"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage from Hits taken as Lightning Damage","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% получаемого физического урона от ударов становится уроном от молнии"}],"trade":{"ids":{"implicit":["implicit.stat_3947691353"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% от физического урона похищается в виде здоровья"}],"trade":{"ids":{"implicit":["implicit.stat_2500914030"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% of Physical Damage taken Recouped as Life","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% полученного физического урона восполняется в виде здоровья"}],"trade":{"ids":{"implicit":["implicit.stat_1300694383"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% reduced Effect of Shock on you","better":-1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта шока на вас"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта шока на вас","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_433740375"]},"inverted":true}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% reduced Enemy Stun Threshold","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% снижение порога оглушения врагов"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% повышение порога оглушения врагов","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2169620689"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% reduced Freeze Duration on you","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% уменьшение длительности заморозки на вас"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% увеличение длительности заморозки на вас","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_928972227"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% reduced Ignite Duration on you","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% уменьшение длительности поджога на вас"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% увеличение длительности поджога на вас","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3042217102"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% reduced Mana Cost of Attacks","better":-1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% увеличение стоимости атак в мане"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% уменьшение стоимости атак в мане","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3671920033"]},"inverted":true}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, #% reduced Reflected Damage taken","better":-1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% увеличение получаемого отражённого урона"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% уменьшение получаемого отражённого урона","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3178090061"]},"inverted":true}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +# to Accuracy Rating per Frenzy Charge","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, # к меткости за заряд ярости"}],"trade":{"ids":{"implicit":["implicit.stat_490830332"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% chance to Suppress Spell Damage","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% шанс подавить урон от чар"}],"trade":{"ids":{"implicit":["implicit.stat_2998245080"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to all Elemental Resistances","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% к сопротивлению всем стихиям"}],"trade":{"ids":{"implicit":["implicit.stat_2251516251"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to all maximum Resistances","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% к максимуму всех сопротивлений"}],"trade":{"ids":{"implicit":["implicit.stat_673499528"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to Chaos Damage over Time Multiplier","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% к множителю постепенного урона хаосом"}],"trade":{"ids":{"implicit":["implicit.stat_2163155983"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to Chaos Resistance","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% к сопротивлению хаосу"}],"trade":{"ids":{"implicit":["implicit.stat_74135418"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to Cold Damage over Time Multiplier","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% к множителю постепенного урона от холода"}],"trade":{"ids":{"implicit":["implicit.stat_2619970520"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to Cold Resistance","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% к сопротивлению холоду"}],"trade":{"ids":{"implicit":["implicit.stat_3864103630"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to Critical Strike Multiplier for Attack Damage","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% к множителю критического удара для урона атаками"}],"trade":{"ids":{"implicit":["implicit.stat_2825010848"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to Critical Strike Multiplier for Spell Damage","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% к множителю критического удара для урона чарами"}],"trade":{"ids":{"implicit":["implicit.stat_2955927568"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to Fire Damage over Time Multiplier","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% к множителю постепенного урона от огня"}],"trade":{"ids":{"implicit":["implicit.stat_1870961528"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to Fire Resistance","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% к сопротивлению огню"}],"trade":{"ids":{"implicit":["implicit.stat_1299790658"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to Lightning Resistance","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% к сопротивлению молнии"}],"trade":{"ids":{"implicit":["implicit.stat_3980173235"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to maximum Chaos Resistance","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% к максимальному сопротивлению хаосу"}],"trade":{"ids":{"implicit":["implicit.stat_944522962"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to maximum Cold Resistance","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% к максимальному сопротивлению холоду"}],"trade":{"ids":{"implicit":["implicit.stat_3415855998"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to maximum Fire Resistance","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% к максимальному сопротивлению огню"}],"trade":{"ids":{"implicit":["implicit.stat_1133929401"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to maximum Lightning Resistance","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% к максимальному сопротивлению молнии"}],"trade":{"ids":{"implicit":["implicit.stat_4136085904"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, +#% to Physical Damage over Time Multiplier","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% к множителю физического постепенного урона"}],"trade":{"ids":{"implicit":["implicit.stat_4084536353"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per # Dexterity","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, На 1% меньше получаемого урона за каждые # ловкости"}],"trade":{"ids":{"implicit":["implicit.stat_2216092051"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per # Intelligence","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, На 1% меньше получаемого урона за каждые # интеллекта"}],"trade":{"ids":{"implicit":["implicit.stat_3801851872"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per # Strength","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, На 1% меньше получаемого урона за каждые # силы"}],"trade":{"ids":{"implicit":["implicit.stat_125264229"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Adds # to # Chaos Damage to Attacks","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Добавляет от # до # урона хаосом к атакам"}],"trade":{"ids":{"implicit":["implicit.stat_3953801646"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Adds # to # Chaos Damage to Spells","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Добавляет от # до # урона хаосом к чарам"}],"trade":{"ids":{"implicit":["implicit.stat_3206883665"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Adds # to # Cold Damage to Attacks","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Добавляет от # до # урона от холода к атакам"}],"trade":{"ids":{"implicit":["implicit.stat_1016130575"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Adds # to # Cold Damage to Spells","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Добавляет от # до # урона от холода к чарам"}],"trade":{"ids":{"implicit":["implicit.stat_3349767748"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Adds # to # Fire Damage to Attacks","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Добавляет от # до # урона от огня к атакам"}],"trade":{"ids":{"implicit":["implicit.stat_3972399670"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Adds # to # Fire Damage to Spells","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Добавляет от # до # урона от огня к чарам"}],"trade":{"ids":{"implicit":["implicit.stat_3954869480"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Adds # to # Lightning Damage to Attacks","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Добавляет от # до # урона от молнии к атакам"}],"trade":{"ids":{"implicit":["implicit.stat_2925105924"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Adds # to # Lightning Damage to Spells","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Добавляет от # до # урона от молнии к чарам"}],"trade":{"ids":{"implicit":["implicit.stat_3874289"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Adds # to # Physical Damage to Attacks","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Добавляет от # до # физического урона к атакам"}],"trade":{"ids":{"implicit":["implicit.stat_3477311591"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Adds # to # Physical Damage to Spells","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Добавляет от # до # физического урона к чарам"}],"trade":{"ids":{"implicit":["implicit.stat_485268361"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Anger has #% increased Aura Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта ауры Жгучей злобы"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта ауры Жгучей злобы","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1167349834"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal #% increased Damage","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Улучшенные Кличем предков атаки наносят увеличенный на #% урон"}],"trade":{"ids":{"implicit":["implicit.stat_1799586622"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal #% increased Damage","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Атаки, улучшенные Сейсмическим кличем, наносят увеличенный на #% урон"}],"trade":{"ids":{"implicit":["implicit.stat_1714653952"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Attacks have #% chance to cause Bleeding","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Атаки не могут вызывать кровотечение","value":-1},{"string":"Пока верховный босс Атласа находится в вашем присутствии, Атаки имеют #% шанс вызвать кровотечение"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, Атаки вызывают кровотечение","value":100}],"trade":{"ids":{"implicit":["implicit.stat_4014428128"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Attacks have #% chance to Maim on Hit","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Атаки имеют #% шанс изувечить при нанесении удара"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, Атаки всегда накладывают увечье при нанесении удара","value":100}],"trade":{"ids":{"implicit":["implicit.stat_4065516297"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage #% faster","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Наложенное вами кровотечение наносит урон на #% быстрее"}],"trade":{"ids":{"implicit":["implicit.stat_4106235309"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Bone Offering has #% increased Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта Подношения костей"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта Подношения костей","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3774100463"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates #% Cold Resistance","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Урон пробивает #% сопротивления холоду"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, Ваши удары учитывают сопротивление холоду, как если бы оно было на #% больше текущего","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_403285636"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates #% Fire Resistance","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Урон пробивает #% сопротивления огню"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, Ваши удары учитывают сопротивление огню, как если бы оно было на #% больше текущего","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1175129684"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates #% Lightning Resistance","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Урон пробивает #% сопротивления молнии"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, Ваши удары учитывают сопротивление молнии, как если бы оно было на #% больше текущего","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_550672859"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Determination has #% increased Aura Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта ауры Решимости"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта ауры Решимости","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1324460486"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Discipline has #% increased Aura Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта ауры Дисциплины"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта ауры Дисциплины","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2752131673"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting # seconds","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, При передвижении создает хрупкую землю длительностью # секунд(-ы)"}],"trade":{"ids":{"implicit":["implicit.stat_235328972"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting # seconds","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, При передвижении создает ошеломляющую землю длительностью # секунд(-ы)"}],"trade":{"ids":{"implicit":["implicit.stat_1296291315"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting # seconds","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, При передвижении создает опалённую землю длительностью # секунд(-ы)"}],"trade":{"ids":{"implicit":["implicit.stat_4054012096"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% повышение скорости перезарядки Клича стойкости"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% снижение скорости перезарядки Клича стойкости","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_906749304"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have #% reduced Life Regeneration rate","better":-1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Враги, по которым вы недавно наносили удар, имеют #% повышение скорости регенерации здоровья"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, Враги, по которым вы недавно наносили удар, имеют #% снижение скорости регенерации здоровья","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3407071583"]},"inverted":true}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal #% increased Damage","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Улучшенные атаки наносят увеличенный на #% урон"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, Улучшенные атаки наносят уменьшенный на #% урон","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_376260015"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have #% increased Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта примененных на вас флаконов"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта примененных на вас флаконов","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4155771029"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Flasks gain # Charges every 3 seconds","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Флаконы получают # заряда(-ов) каждые 3 секунды"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, Флаконы получают заряд каждые 3 секунды","value":1}],"trade":{"ids":{"implicit":["implicit.stat_1519845279"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has #% increased Area of Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% увеличение области действия Камня и плоти"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% уменьшение области действия Камня и плоти","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3393490212"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has #% increased Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта Подношения плоти"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта Подношения плоти","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_862077496"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within # metre","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Наложенные вами заморозки распространяются на других врагов в радиусе # м"}],"trade":{"ids":{"implicit":["implicit.stat_1436051850"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Gain # Rage on Attack Hit","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Дарует # свирепости при нанесении удара атаками"}],"trade":{"ids":{"implicit":["implicit.stat_3509416536"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Chaos Damage","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Дарует #% от физического урона в виде дополнительного урона хаосом"}],"trade":{"ids":{"implicit":["implicit.stat_3490650294"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Cold Damage","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Дарует #% от физического урона в виде дополнительного урона от холода"}],"trade":{"ids":{"implicit":["implicit.stat_1425454108"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Fire Damage","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Дарует #% от физического урона в виде дополнительного урона от огня"}],"trade":{"ids":{"implicit":["implicit.stat_1335630001"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Gain #% of Physical Damage as Extra Lightning Damage","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Дарует #% от физического урона в виде дополнительного урона от молнии"}],"trade":{"ids":{"implicit":["implicit.stat_632297605"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every # seconds","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Дарует заряд ярости каждые # секунд(-ы)"}],"trade":{"ids":{"implicit":["implicit.stat_560848642"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every # seconds","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Дарует заряд энергии каждые # секунд(-ы)"}],"trade":{"ids":{"implicit":["implicit.stat_2703923310"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every # seconds","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Дарует заряд выносливости каждые # секунд(-ы)"}],"trade":{"ids":{"implicit":["implicit.stat_951862199"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, General's Cry has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% повышение скорости перезарядки Клича полководца"}],"trade":{"ids":{"implicit":["implicit.stat_133006298"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Grace has #% increased Aura Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта ауры Грации"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта ауры Грации","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_81526858"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Haste has #% increased Aura Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта Спешки"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта Спешки","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1065477979"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Hatred has #% increased Aura Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта ауры Холодной ненависти"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта ауры Холодной ненависти","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1253537227"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has #% increased Buff Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление положительного эффекта Вестника агонии"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление положительного эффекта Вестника агонии","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3001066983"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has #% increased Buff Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление положительного эффекта Вестника пепла"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление положительного эффекта Вестника пепла","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3045509476"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has #% increased Buff Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление положительного эффекта Вестника льда"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление положительного эффекта Вестника льда","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1609260458"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has #% increased Buff Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление положительного эффекта Вестника чистоты"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление положительного эффекта Вестника чистоты","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3005679448"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has #% increased Buff Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление положительного эффекта Вестника Грома"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление положительного эффекта Вестника Грома","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1553385903"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Hits have #% chance to ignore Enemy Physical Damage Reduction","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% шанс игнорировать уменьшение получаемого врагом физического урона при нанесении удара"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, Удары игнорируют уменьшение получаемого врагом физического урона","value":100}],"trade":{"ids":{"implicit":["implicit.stat_4022700734"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage #% faster","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Наложенные вами поджоги наносят урон на #% быстрее"}],"trade":{"ids":{"implicit":["implicit.stat_1053495752"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within # metre","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Наложенные вами поджоги распространяются на других врагов в радиусе # м"}],"trade":{"ids":{"implicit":["implicit.stat_3343791355"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has #% increased Area of Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% увеличение области действия Клича преисподней"}],"trade":{"ids":{"implicit":["implicit.stat_1774377226"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying #% to Cold Resistance","better":-1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Накладывает восприимчивость к холоду при нанесении удара, добавляя #% к сопротивлению холоду"}],"trade":{"ids":{"implicit":["implicit.stat_3658662726"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying #% to Fire Resistance","better":-1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Накладывает восприимчивость к огню при нанесении удара, добавляя #% к сопротивлению огню"}],"trade":{"ids":{"implicit":["implicit.stat_1629531681"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying #% to Lightning Resistance","better":-1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Накладывает восприимчивость к молнии при нанесении удара, добавляя #% к сопротивлению молнии"}],"trade":{"ids":{"implicit":["implicit.stat_1762412317"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% повышение скорости перезарядки Устрашающего клича"}],"trade":{"ids":{"implicit":["implicit.stat_3945581778"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Malevolence has #% increased Aura Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта ауры Злорадства"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта ауры Злорадства","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1033279468"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Melee Hits Fortify","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Удары в ближнем бою с #% шансом могут наложить Укрепление"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, Удары в ближнем бою накладывают Укрепление","value":100}],"trade":{"ids":{"implicit":["implicit.stat_298106626"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Minions deal #% increased Damage","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Приспешники имеют #% увеличение урона"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, Приспешники имеют #% уменьшение урона","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3141084961"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Minions have #% increased maximum Life","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Приспешники имеют #% увеличение максимума здоровья"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, Приспешники имеют #% уменьшение максимума здоровья","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4057257145"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Minions have #% increased Movement Speed","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Приспешники имеют #% повышение скорости передвижения"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, Приспешники имеют #% снижение скорости передвижения","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2809900883"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Minions take #% reduced Reflected Damage","better":-1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Приспешники получают увеличенный на #% отраженный урон"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, Приспешники получают уменьшенный на #% отраженный урон","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_505327219"]},"inverted":true}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target # additional nearby Enemy","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Умения ударов не-ваал выбирают целью # дополнительного ближайшего врага"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, Умения ударов не-ваал выбирают целью # дополнительных ближайших врагов"}],"trade":{"ids":{"implicit":["implicit.stat_1884100040"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage #% faster","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Наложенный вами яд наносит урон на #% быстрее"}],"trade":{"ids":{"implicit":["implicit.stat_995369618"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Pride has #% increased Aura Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта ауры Гордости"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта ауры Гордости","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2163876658"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce # additional Targets","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Снаряды пронзают # дополнительных цели(-ей)"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, Снаряды пронзают дополнительную цель","value":1}],"trade":{"ids":{"implicit":["implicit.stat_4045839821"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has #% increased Aura Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта ауры Спасения от стихий"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта ауры Спасения от стихий","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_221690080"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has #% increased Aura Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта ауры Спасения от огня"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта ауры Спасения от огня","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2034940983"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has #% increased Aura Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта ауры Спасения от холода"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта ауры Спасения от холода","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3786274521"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has #% increased Aura Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта ауры Спасения от молнии"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта ауры Спасения от молнии","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1445513967"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Regenerate #% of Life per second per Endurance Charge","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Регенерация #% здоровья в секунду за заряд выносливости"}],"trade":{"ids":{"implicit":["implicit.stat_3225230656"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within # metre","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Накладываемый вами шок распространяется на других врагов в радиусе # м"}],"trade":{"ids":{"implicit":["implicit.stat_2218095219"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has #% increased Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта Подношения духа"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта Подношения духа","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2399066987"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has #% increased Buff Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта Щита бури"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта Щита бури","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2601015548"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires #% faster","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, Накладываемые вами эффекты Истощения истекают на #% быстрее"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, Накладываемые вами эффекты Истощения истекают на #% медленнее","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3457821036"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Wrath has #% increased Aura Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта ауры Грозного гнева"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта ауры Грозного гнева","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1850144024"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Your Offerings have #% increased Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта Подношений"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффектов ваших подношений"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта Подношений","negate":true},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффектов ваших подношений","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2526554500"]}}} +{"ref":"While a Pinnacle Atlas Boss is in your Presence, Zealotry has #% increased Aura Effect","better":1,"matchers":[{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% усиление эффекта ауры Фанатизма"},{"string":"Пока верховный босс Атласа находится в вашем присутствии, #% ослабление эффекта ауры Фанатизма","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2293353005"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Aggravate Bleeding on targets you Hit with Attacks","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% шанс усугубить кровотечение на врагах ударами атак"}],"trade":{"ids":{"implicit":["implicit.stat_2543125349"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Avoid being Frozen","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% шанс избежать заморозки"}],"trade":{"ids":{"implicit":["implicit.stat_3887072924"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Avoid being Ignited","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% шанс избежать поджога"}],"trade":{"ids":{"implicit":["implicit.stat_2796083262"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Avoid being Poisoned","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% шанс избежать отравления"},{"string":"Пока уникальный враг находится в вашем присутствии, Не может быть отравлен","value":100},{"string":"Пока уникальный враг находится в вашем присутствии, Невозможно отравить","value":100}],"trade":{"ids":{"implicit":["implicit.stat_3553907672"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Avoid being Shocked","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% шанс избежать шока"}],"trade":{"ids":{"implicit":["implicit.stat_3401199213"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Avoid being Stunned","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% шанс избежать оглушения"},{"string":"Пока уникальный враг находится в вашем присутствии, Не может быть оглушен","value":100}],"trade":{"ids":{"implicit":["implicit.stat_3322913142"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Avoid Bleeding","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% шанс избежать кровотечения"},{"string":"Пока уникальный враг находится в вашем присутствии, Кровотечение не может быть наложено на вас","value":100},{"string":"Пока уникальный враг находится в вашем присутствии, На вас нельзя наложить кровотечение","value":100}],"trade":{"ids":{"implicit":["implicit.stat_2651293339"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Avoid Elemental Ailments","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% шанс избежать стихийных состояний"}],"trade":{"ids":{"implicit":["implicit.stat_3264420229"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% Chance to Block Attack Damage","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% шанс блокировать урон от атак"}],"trade":{"ids":{"implicit":["implicit.stat_725501141"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% Chance to Block Spell Damage","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% шанс блокировать урон от чар"}],"trade":{"ids":{"implicit":["implicit.stat_1358320252"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Extinguish Enemies on Hit","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% шанс наложить Усмирение на врагов при нанесении удара"}],"trade":{"ids":{"implicit":["implicit.stat_4163073767"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Freeze","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% шанс заморозить"},{"string":"Пока уникальный враг находится в вашем присутствии, Всегда замораживает","value":100},{"string":"Пока уникальный враг находится в вашем присутствии, Всегда замораживает врагов при нанесении удара","value":100}],"trade":{"ids":{"implicit":["implicit.stat_1096728982"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Hinder Enemies on Hit with Spells","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% шанс сковать врагов при нанесении удара чарами"},{"string":"Пока уникальный враг находится в вашем присутствии, Сковывает врагов при нанесении удара чарами","value":100}],"trade":{"ids":{"implicit":["implicit.stat_3423886807"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Ignite","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% шанс поджечь"},{"string":"Пока уникальный враг находится в вашем присутствии, Всегда поджигает","value":100}],"trade":{"ids":{"implicit":["implicit.stat_874990741"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Impale Enemies on Hit with Attacks","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% шанс наложить на врагов Прокол при нанесении удара атаками"},{"string":"Пока уникальный враг находится в вашем присутствии, Накладывает на врагов Прокол при нанесении удара атаками","value":100}],"trade":{"ids":{"implicit":["implicit.stat_2391907787"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Intimidate Enemies for 4 seconds on Hit","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% шанс при нанесении удара устрашить врагов на 4 секунды"},{"string":"Пока уникальный враг находится в вашем присутствии, #% шанс устрашить врагов на 4 секунды при нанесении удара"},{"string":"Пока уникальный враг находится в вашем присутствии, Устрашает врагов на 4 секунды при нанесении удара","value":100}],"trade":{"ids":{"implicit":["implicit.stat_144453866"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Poison on Hit","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% шанс отравить при нанесении удара"},{"string":"Пока уникальный враг находится в вашем присутствии, Всегда отравляет при нанесении удара","value":100}],"trade":{"ids":{"implicit":["implicit.stat_2433754249"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Shock","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% шанс наложить шок"},{"string":"Пока уникальный враг находится в вашем присутствии, Всегда накладывает шок","value":100}],"trade":{"ids":{"implicit":["implicit.stat_2621869142"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% chance to Unnerve Enemies for 4 seconds on Hit","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% шанс обескуражить врагов на 4 секунды при нанесении удара"},{"string":"Пока уникальный враг находится в вашем присутствии, Обескураживает врагов на 4 секунды при нанесении удара","value":100}],"trade":{"ids":{"implicit":["implicit.stat_1708506642"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Action Speed","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% снижение скорости действий"},{"string":"Пока уникальный враг находится в вашем присутствии, #% повышение скорости действий","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1829486532"]},"inverted":true}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Arctic Armour Buff Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление положительного эффекта Северной брони"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление положительного эффекта Северной брони","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4047779849"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Area of Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% увеличение области действия"},{"string":"Пока уникальный враг находится в вашем присутствии, #% уменьшение области действия","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1847660463"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Armour","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% повышение брони"},{"string":"Пока уникальный враг находится в вашем присутствии, #% снижение брони","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1980216452"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Armour from Equipped Helmet and Gloves","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% увеличение брони, полученной от шлема и перчаток"},{"string":"Пока уникальный враг находится в вашем присутствии, #% уменьшение брони, полученной от шлема и перчаток","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1586470077"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Attack Damage","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% увеличение урона от атак"},{"string":"Пока уникальный враг находится в вашем присутствии, #% уменьшение урона от атак","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4061200499"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Attack Speed","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% повышение скорости атаки"},{"string":"Пока уникальный враг находится в вашем присутствии, #% снижение скорости атаки","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3401410854"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Battlemage's Cry Buff Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта Клича боевого мага"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта Клича боевого мага","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3173180145"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Blind Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта ослепления"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта ослепления","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_886650454"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Brand Attachment range","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% увеличение дальности прикрепления клейма"},{"string":"Пока уникальный враг находится в вашем присутствии, #% уменьшение дальности прикрепления клейма","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_636616197"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Cast Speed","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% повышение скорости сотворения чар"},{"string":"Пока уникальный враг находится в вашем присутствии, #% снижение скорости сотворения чар","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2016247664"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Chaos Damage","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% увеличение урона хаосом"},{"string":"Пока уникальный враг находится в вашем присутствии, #% уменьшение урона хаосом","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2875239648"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Cold Damage","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% увеличение урона от холода"},{"string":"Пока уникальный враг находится в вашем присутствии, #% уменьшение урона от холода","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2127607252"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Conductivity Curse Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта проклятия Проводимости"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта проклятия Проводимости","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3547319552"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% повышение скорости перезарядки"},{"string":"Пока уникальный враг находится в вашем присутствии, #% повышение скорости перезарядки умений"},{"string":"Пока уникальный враг находится в вашем присутствии, #% снижение скорости перезарядки","negate":true},{"string":"Пока уникальный враг находится в вашем присутствии, #% снижение скорости перезарядки умений","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2491353340"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Cooldown Recovery Rate of Travel Skills","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% повышение скорости перезарядки умений смещения"},{"string":"Пока уникальный враг находится в вашем присутствии, #% снижение скорости перезарядки умений смещения","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2986495340"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Critical Strike Chance for Attacks","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% повышение шанса критического удара атаками"},{"string":"Пока уникальный враг находится в вашем присутствии, #% снижение шанса критического удара атаками","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3710240762"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Damage per 100 Dexterity","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% увеличение урона за каждые 100 ловкости"},{"string":"Пока уникальный враг находится в вашем присутствии, #% уменьшение урона за каждые 100 ловкости","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_535580777"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Damage per 100 Intelligence","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% увеличение урона за каждые 100 интеллекта"},{"string":"Пока уникальный враг находится в вашем присутствии, #% уменьшение урона за каждые 100 интеллекта","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1894390763"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Damage per 100 Strength","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% увеличение урона за каждые 100 силы"},{"string":"Пока уникальный враг находится в вашем присутствии, #% уменьшение урона за каждые 100 силы","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4224921626"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Damage per Endurance Charge","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% увеличение урона за заряд выносливости"},{"string":"Пока уникальный враг находится в вашем присутствии, #% уменьшение урона за заряд выносливости","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2193147166"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Damage per Frenzy Charge","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% увеличение урона за заряд ярости"},{"string":"Пока уникальный враг находится в вашем присутствии, #% уменьшение урона за заряд ярости","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2415020123"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Damage per Power Charge","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% увеличение урона за заряд энергии"},{"string":"Пока уникальный враг находится в вашем присутствии, #% уменьшение урона за заряд энергии","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1394771132"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Despair Curse Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта проклятия Отчаяния"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта проклятия Отчаяния","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2909684383"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Duration of Ailments on Enemies","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% увеличение длительности состояний на врагах"},{"string":"Пока уникальный враг находится в вашем присутствии, #% уменьшение длительности состояний на врагах","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3341892633"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of Arcane Surge on you","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта Колдовского выброса на вас"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта Колдовского выброса на вас","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3163099942"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of Buffs granted by your Golems","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление положительных эффектов, полученных от ваших големов"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление положительных эффектов, полученных от ваших големов","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2159248495"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased effect of Non-Curse Auras from your Skills","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта аур не-проклятий от ваших умений"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта аур не-проклятий от ваших умений","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2558323947"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of Non-Damaging Ailments","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта не наносящих урон состояний"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта не наносящих урон состояний","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2950684886"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of Onslaught on you","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта Боевого ража на вас"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта Боевого ража на вас","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_491577732"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Carrion Golems","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление положительного эффекта, даруемого вашими трупными големами"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление положительного эффекта, даруемого вашими трупными големами","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2917444195"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Chaos Golems","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта, даруемого вашими големами хаоса"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта, даруемого вашими големами хаоса","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1807607778"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Flame Golems","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта, даруемого вашими големами огня"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта, даруемого вашими големами огня","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3591219299"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Ice Golems","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта, даруемого вашими големами льда"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта, даруемого вашими големами льда","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3588695478"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Lightning Golems","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта, даруемого вашими големами молнии"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта, даруемого вашими големами молнии","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1747983672"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of the Buff granted by your Stone Golems","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта, даруемого вашими каменными големами"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта, даруемого вашими каменными големами","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1722486495"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of your Curses","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта ваших проклятий"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта ваших проклятий","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2669364207"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Effect of your Marks","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта ваших меток"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта ваших меток","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_505694848"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Elemental Weakness Curse Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта проклятия Уязвимости к стихиям"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта проклятия Уязвимости к стихиям","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_771845579"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Elusive Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта Неуловимости"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта Неуловимости","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2413932980"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Energy Shield Recharge Rate","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% повышение скорости перезарядки энергетического щита"},{"string":"Пока уникальный враг находится в вашем присутствии, #% снижение скорости перезарядки энергетического щита","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3806837783"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Energy Shield Recovery rate","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% повышение скорости восстановления энергетического щита"},{"string":"Пока уникальный враг находится в вашем присутствии, #% снижение скорости восстановления энергетического щита","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_587322642"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Enfeeble Curse Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта проклятия Слабости"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта проклятия Слабости","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_937462392"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Evasion Rating","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% увеличение уклонения"},{"string":"Пока уникальный враг находится в вашем присутствии, #% уменьшение уклонения","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3394288644"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Evasion Rating from Equipped Helmet and Boots","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% увеличение уклонения, полученного от шлема и сапог"},{"string":"Пока уникальный враг находится в вашем присутствии, #% уменьшение уклонения, полученного от шлема и сапог","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2408490382"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Fire Damage","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% увеличение урона от огня"},{"string":"Пока уникальный враг находится в вашем присутствии, #% уменьшение урона от огня","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1590336483"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Flammability Curse Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта проклятия Горючести"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта проклятия Горючести","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1394267723"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Frostbite Curse Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта проклятия Обморожения"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта проклятия Обморожения","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3199183447"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Global Accuracy Rating","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% повышение глобальной меткости"},{"string":"Пока уникальный враг находится в вашем присутствии, #% снижение глобальной меткости","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2423625781"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Global Physical Damage","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% увеличение глобального физического урона"},{"string":"Пока уникальный враг находится в вашем присутствии, #% уменьшение глобального физического урона","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_604852150"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Life Recovery rate","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% повышение скорости восстановления здоровья"},{"string":"Пока уникальный враг находится в вашем присутствии, #% снижение скорости восстановления здоровья","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1481249164"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Life Regeneration rate","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% повышение скорости регенерации здоровья"},{"string":"Пока уникальный враг находится в вашем присутствии, #% снижение скорости регенерации здоровья","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1916766878"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Lightning Damage","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% увеличение урона от молнии"},{"string":"Пока уникальный враг находится в вашем присутствии, #% уменьшение урона от молнии","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2668120423"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Mana Recovery rate","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% повышение скорости восстановления маны"},{"string":"Пока уникальный враг находится в вашем присутствии, #% снижение скорости восстановления маны","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1217759839"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Mana Regeneration Rate","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% повышение скорости регенерации маны"},{"string":"Пока уникальный враг находится в вашем присутствии, #% снижение скорости регенерации маны","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_760444887"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Mana Regeneration Rate per Power Charge","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% повышение скорости регенерации маны за заряд энергии"},{"string":"Пока уникальный враг находится в вашем присутствии, #% снижение скорости регенерации маны за заряд энергии","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1918872160"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Mana Reservation Efficiency of Skills","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% увеличение эффективности удержания маны умениями"},{"string":"Пока уникальный враг находится в вашем присутствии, #% уменьшение эффективности удержания маны умениями","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2358903592"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased maximum Energy Shield","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% увеличение максимума энергетического щита"},{"string":"Пока уникальный враг находится в вашем присутствии, #% уменьшение максимума энергетического щита","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1114962813"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Maximum Energy Shield from Equipped Gloves and Boots","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% увеличение максимума энергетического щита, полученного от перчаток и сапог"},{"string":"Пока уникальный враг находится в вашем присутствии, #% уменьшение максимума энергетического щита, полученного от перчаток и сапог","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4288334466"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Mine Throwing Speed","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% повышение скорости броска мины"},{"string":"Пока уникальный враг находится в вашем присутствии, #% снижение скорости броска мины","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1516326076"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Movement Speed","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% повышение скорости передвижения"},{"string":"Пока уникальный враг находится в вашем присутствии, #% снижение скорости передвижения","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3019083030"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Punishment Curse Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта проклятия Наказания"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта проклятия Наказания","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4171615823"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Rallying Cry Buff Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление положительного эффекта Клича сплочения"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление положительного эффекта Клича сплочения","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1381761351"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Skill Effect Duration","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% увеличение длительности эффекта умения"},{"string":"Пока уникальный враг находится в вашем присутствии, #% уменьшение длительности эффекта умения","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_614709726"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Spell Critical Strike Chance","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% увеличение шанса критического удара чарами"},{"string":"Пока уникальный враг находится в вашем присутствии, #% уменьшение шанса критического удара чарами","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4191234472"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Spell Damage","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% увеличение урона от чар"},{"string":"Пока уникальный враг находится в вашем присутствии, #% уменьшение урона от чар","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4136821316"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Stun Threshold","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% повышение порога оглушения"},{"string":"Пока уникальный враг находится в вашем присутствии, #% снижение порога оглушения","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_266654028"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Temporal Chains Curse Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта проклятия Пут времени"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта проклятия Пут времени","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_485385046"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Totem Placement speed","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% повышение скорости установки тотемов"},{"string":"Пока уникальный враг находится в вашем присутствии, #% снижение скорости установки тотемов","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2033289503"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Trap Throwing Speed","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% повышение скорости броска ловушки"},{"string":"Пока уникальный враг находится в вашем присутствии, #% снижение скорости броска ловушки","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2479119864"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Vulnerability Curse Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта проклятия Беззащитности"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта проклятия Беззащитности","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2638071469"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Warcry Buff Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление положительного эффекта боевого клича"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление положительного эффекта боевого клича","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3611265227"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% increased Warcry Speed","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% повышение скорости применения боевых кличей"},{"string":"Пока уникальный враг находится в вашем присутствии, #% снижение скорости применения боевых кличей","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2255001736"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Chaos Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% урона хаосом похищается в виде здоровья"}],"trade":{"ids":{"implicit":["implicit.stat_1172401338"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Cold Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% урона от холода похищается в виде здоровья"}],"trade":{"ids":{"implicit":["implicit.stat_3357881628"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Cold Damage taken Recouped as Life","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% полученного урона от холода восполняется в виде здоровья"}],"trade":{"ids":{"implicit":["implicit.stat_1739741837"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Damage is taken from Mana before Life","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% от получаемого урона берется сначала из маны вместо здоровья"}],"trade":{"ids":{"implicit":["implicit.stat_1749598944"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Damage taken Recouped as Life","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% полученного урона восполняется в виде здоровья"}],"trade":{"ids":{"implicit":["implicit.stat_2080582538"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Fire Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% урона от огня похищается в виде здоровья"}],"trade":{"ids":{"implicit":["implicit.stat_3430693940"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Fire Damage taken Recouped as Life","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% полученного урона от огня восполняется в виде здоровья"}],"trade":{"ids":{"implicit":["implicit.stat_2143647966"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Lightning Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% урона от молнии похищается в виде здоровья"}],"trade":{"ids":{"implicit":["implicit.stat_2824722288"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Lightning Damage taken Recouped as Life","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% полученного урона от молнии восполняется в виде здоровья"}],"trade":{"ids":{"implicit":["implicit.stat_1146717028"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Chaos Damage","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% физического урона становится уроном хаосом"}],"trade":{"ids":{"implicit":["implicit.stat_1623369100"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Cold Damage","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% физического урона становится уроном от холода"}],"trade":{"ids":{"implicit":["implicit.stat_1153825002"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Fire Damage","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% физического урона становится уроном от огня"}],"trade":{"ids":{"implicit":["implicit.stat_380027104"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Physical Damage Converted to Lightning Damage","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% физического урона становится уроном от молнии"}],"trade":{"ids":{"implicit":["implicit.stat_1516273114"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Chaos Damage","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% получаемого физического урона от ударов становится уроном хаосом"}],"trade":{"ids":{"implicit":["implicit.stat_2393004388"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Cold Damage","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% получаемого физического урона от ударов становится уроном от холода"}],"trade":{"ids":{"implicit":["implicit.stat_848890513"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Fire Damage","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% получаемого физического урона от ударов становится уроном от огня"}],"trade":{"ids":{"implicit":["implicit.stat_1283684786"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Physical Damage from Hits taken as Lightning Damage","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% получаемого физического урона от ударов становится уроном от молнии"}],"trade":{"ids":{"implicit":["implicit.stat_196824923"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Physical Damage Leeched as Life","dp":true,"better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% от физического урона похищается в виде здоровья"}],"trade":{"ids":{"implicit":["implicit.stat_2443166200"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% of Physical Damage taken Recouped as Life","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% полученного физического урона восполняется в виде здоровья"}],"trade":{"ids":{"implicit":["implicit.stat_3796902731"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% reduced Effect of Shock on you","better":-1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта шока на вас"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта шока на вас","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1343931641"]},"inverted":true}} +{"ref":"While a Unique Enemy is in your Presence, #% reduced Enemy Stun Threshold","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% снижение порога оглушения врагов"},{"string":"Пока уникальный враг находится в вашем присутствии, #% повышение порога оглушения врагов","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_944211673"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% reduced Freeze Duration on you","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% уменьшение длительности заморозки на вас"},{"string":"Пока уникальный враг находится в вашем присутствии, #% увеличение длительности заморозки на вас","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3985862221"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% reduced Ignite Duration on you","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% уменьшение длительности поджога на вас"},{"string":"Пока уникальный враг находится в вашем присутствии, #% увеличение длительности поджога на вас","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2520245478"]}}} +{"ref":"While a Unique Enemy is in your Presence, #% reduced Mana Cost of Attacks","better":-1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% увеличение стоимости атак в мане"},{"string":"Пока уникальный враг находится в вашем присутствии, #% уменьшение стоимости атак в мане","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1116269888"]},"inverted":true}} +{"ref":"While a Unique Enemy is in your Presence, #% reduced Reflected Damage taken","better":-1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% увеличение получаемого отражённого урона"},{"string":"Пока уникальный враг находится в вашем присутствии, #% уменьшение получаемого отражённого урона","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1941017392"]},"inverted":true}} +{"ref":"While a Unique Enemy is in your Presence, +# to Accuracy Rating per Frenzy Charge","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, # к меткости за заряд ярости"}],"trade":{"ids":{"implicit":["implicit.stat_475859964"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% chance to Suppress Spell Damage","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% шанс подавить урон от чар"}],"trade":{"ids":{"implicit":["implicit.stat_3998961962"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to all Elemental Resistances","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% к сопротивлению всем стихиям"}],"trade":{"ids":{"implicit":["implicit.stat_2358153166"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to all maximum Resistances","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% к максимуму всех сопротивлений"}],"trade":{"ids":{"implicit":["implicit.stat_3062531896"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to Chaos Damage over Time Multiplier","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% к множителю постепенного урона хаосом"}],"trade":{"ids":{"implicit":["implicit.stat_2634574895"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to Chaos Resistance","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% к сопротивлению хаосу"}],"trade":{"ids":{"implicit":["implicit.stat_744196525"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to Cold Damage over Time Multiplier","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% к множителю постепенного урона от холода"}],"trade":{"ids":{"implicit":["implicit.stat_621576159"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to Cold Resistance","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% к сопротивлению холоду"}],"trade":{"ids":{"implicit":["implicit.stat_2240274773"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to Critical Strike Multiplier for Attack Damage","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% к множителю критического удара для урона атаками"}],"trade":{"ids":{"implicit":["implicit.stat_26879978"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to Critical Strike Multiplier for Spell Damage","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% к множителю критического удара для урона чарами"}],"trade":{"ids":{"implicit":["implicit.stat_865433929"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to Fire Damage over Time Multiplier","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% к множителю постепенного урона от огня"}],"trade":{"ids":{"implicit":["implicit.stat_2112874376"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to Fire Resistance","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% к сопротивлению огню"}],"trade":{"ids":{"implicit":["implicit.stat_3521653836"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to Lightning Resistance","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% к сопротивлению молнии"}],"trade":{"ids":{"implicit":["implicit.stat_3556129896"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to maximum Chaos Resistance","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% к максимальному сопротивлению хаосу"}],"trade":{"ids":{"implicit":["implicit.stat_575726461"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to maximum Cold Resistance","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% к максимальному сопротивлению холоду"}],"trade":{"ids":{"implicit":["implicit.stat_3444931985"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to maximum Fire Resistance","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% к максимальному сопротивлению огню"}],"trade":{"ids":{"implicit":["implicit.stat_475684070"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to maximum Lightning Resistance","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% к максимальному сопротивлению молнии"}],"trade":{"ids":{"implicit":["implicit.stat_789714862"]}}} +{"ref":"While a Unique Enemy is in your Presence, +#% to Physical Damage over Time Multiplier","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% к множителю физического постепенного урона"}],"trade":{"ids":{"implicit":["implicit.stat_841219865"]}}} +{"ref":"While a Unique Enemy is in your Presence, 1% less Damage Taken per # Dexterity","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, На 1% меньше получаемого урона за каждые # ловкости"}],"trade":{"ids":{"implicit":["implicit.stat_1682072497"]}}} +{"ref":"While a Unique Enemy is in your Presence, 1% less Damage Taken per # Intelligence","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, На 1% меньше получаемого урона за каждые # интеллекта"}],"trade":{"ids":{"implicit":["implicit.stat_553122931"]}}} +{"ref":"While a Unique Enemy is in your Presence, 1% less Damage Taken per # Strength","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, На 1% меньше получаемого урона за каждые # силы"}],"trade":{"ids":{"implicit":["implicit.stat_3389591826"]}}} +{"ref":"While a Unique Enemy is in your Presence, Adds # to # Chaos Damage to Attacks","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Добавляет от # до # урона хаосом к атакам"}],"trade":{"ids":{"implicit":["implicit.stat_2444070126"]}}} +{"ref":"While a Unique Enemy is in your Presence, Adds # to # Chaos Damage to Spells","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Добавляет от # до # урона хаосом к чарам"}],"trade":{"ids":{"implicit":["implicit.stat_1554912650"]}}} +{"ref":"While a Unique Enemy is in your Presence, Adds # to # Cold Damage to Attacks","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Добавляет от # до # урона от холода к атакам"}],"trade":{"ids":{"implicit":["implicit.stat_4057155645"]}}} +{"ref":"While a Unique Enemy is in your Presence, Adds # to # Cold Damage to Spells","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Добавляет от # до # урона от холода к чарам"}],"trade":{"ids":{"implicit":["implicit.stat_1018817416"]}}} +{"ref":"While a Unique Enemy is in your Presence, Adds # to # Fire Damage to Attacks","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Добавляет от # до # урона от огня к атакам"}],"trade":{"ids":{"implicit":["implicit.stat_2067485824"]}}} +{"ref":"While a Unique Enemy is in your Presence, Adds # to # Fire Damage to Spells","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Добавляет от # до # урона от огня к чарам"}],"trade":{"ids":{"implicit":["implicit.stat_661603414"]}}} +{"ref":"While a Unique Enemy is in your Presence, Adds # to # Lightning Damage to Attacks","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Добавляет от # до # урона от молнии к атакам"}],"trade":{"ids":{"implicit":["implicit.stat_2111629859"]}}} +{"ref":"While a Unique Enemy is in your Presence, Adds # to # Lightning Damage to Spells","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Добавляет от # до # урона от молнии к чарам"}],"trade":{"ids":{"implicit":["implicit.stat_371531651"]}}} +{"ref":"While a Unique Enemy is in your Presence, Adds # to # Physical Damage to Attacks","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Добавляет от # до # физического урона к атакам"}],"trade":{"ids":{"implicit":["implicit.stat_2521809744"]}}} +{"ref":"While a Unique Enemy is in your Presence, Adds # to # Physical Damage to Spells","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Добавляет от # до # физического урона к чарам"}],"trade":{"ids":{"implicit":["implicit.stat_4272276606"]}}} +{"ref":"While a Unique Enemy is in your Presence, Anger has #% increased Aura Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта ауры Жгучей злобы"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта ауры Жгучей злобы","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_778803098"]}}} +{"ref":"While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal #% increased Damage","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Улучшенные Кличем предков атаки наносят увеличенный на #% урон"}],"trade":{"ids":{"implicit":["implicit.stat_3598887112"]}}} +{"ref":"While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal #% increased Damage","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Атаки, улучшенные Сейсмическим кличем, наносят увеличенный на #% урон"}],"trade":{"ids":{"implicit":["implicit.stat_1505297139"]}}} +{"ref":"While a Unique Enemy is in your Presence, Attacks have #% chance to cause Bleeding","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Атаки не могут вызывать кровотечение","value":-1},{"string":"Пока уникальный враг находится в вашем присутствии, Атаки имеют #% шанс вызвать кровотечение"},{"string":"Пока уникальный враг находится в вашем присутствии, Атаки вызывают кровотечение","value":100}],"trade":{"ids":{"implicit":["implicit.stat_64193828"]}}} +{"ref":"While a Unique Enemy is in your Presence, Attacks have #% chance to Maim on Hit","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Атаки имеют #% шанс изувечить при нанесении удара"},{"string":"Пока уникальный враг находится в вашем присутствии, Атаки всегда накладывают увечье при нанесении удара","value":100}],"trade":{"ids":{"implicit":["implicit.stat_720015764"]}}} +{"ref":"While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage #% faster","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Наложенное вами кровотечение наносит урон на #% быстрее"}],"trade":{"ids":{"implicit":["implicit.stat_738837643"]}}} +{"ref":"While a Unique Enemy is in your Presence, Bone Offering has #% increased Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта Подношения костей"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта Подношения костей","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2290911895"]}}} +{"ref":"While a Unique Enemy is in your Presence, Damage Penetrates #% Cold Resistance","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Урон пробивает #% сопротивления холоду"},{"string":"Пока уникальный враг находится в вашем присутствии, Ваши удары учитывают сопротивление холоду, как если бы оно было на #% больше текущего","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1477049675"]}}} +{"ref":"While a Unique Enemy is in your Presence, Damage Penetrates #% Fire Resistance","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Урон пробивает #% сопротивления огню"},{"string":"Пока уникальный враг находится в вашем присутствии, Ваши удары учитывают сопротивление огню, как если бы оно было на #% больше текущего","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3425675761"]}}} +{"ref":"While a Unique Enemy is in your Presence, Damage Penetrates #% Lightning Resistance","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Урон пробивает #% сопротивления молнии"},{"string":"Пока уникальный враг находится в вашем присутствии, Ваши удары учитывают сопротивление молнии, как если бы оно было на #% больше текущего","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1598254831"]}}} +{"ref":"While a Unique Enemy is in your Presence, Determination has #% increased Aura Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта ауры Решимости"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта ауры Решимости","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2366356855"]}}} +{"ref":"While a Unique Enemy is in your Presence, Discipline has #% increased Aura Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта ауры Дисциплины"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта ауры Дисциплины","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_334238649"]}}} +{"ref":"While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting # seconds","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, При передвижении создает хрупкую землю длительностью # секунд(-ы)"}],"trade":{"ids":{"implicit":["implicit.stat_1771822543"]}}} +{"ref":"While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting # seconds","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, При передвижении создает ошеломляющую землю длительностью # секунд(-ы)"}],"trade":{"ids":{"implicit":["implicit.stat_2220831041"]}}} +{"ref":"While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting # seconds","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, При передвижении создает опалённую землю длительностью # секунд(-ы)"}],"trade":{"ids":{"implicit":["implicit.stat_493814995"]}}} +{"ref":"While a Unique Enemy is in your Presence, Enduring Cry has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% повышение скорости перезарядки Клича стойкости"},{"string":"Пока уникальный враг находится в вашем присутствии, #% снижение скорости перезарядки Клича стойкости","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2792560229"]}}} +{"ref":"While a Unique Enemy is in your Presence, Enemies you've Hit Recently have #% reduced Life Regeneration rate","better":-1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Враги, по которым вы недавно наносили удар, имеют #% повышение скорости регенерации здоровья"},{"string":"Пока уникальный враг находится в вашем присутствии, Враги, по которым вы недавно наносили удар, имеют #% снижение скорости регенерации здоровья","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2570471069"]},"inverted":true}} +{"ref":"While a Unique Enemy is in your Presence, Exerted Attacks deal #% increased Damage","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Улучшенные атаки наносят увеличенный на #% урон"},{"string":"Пока уникальный враг находится в вашем присутствии, Улучшенные атаки наносят уменьшенный на #% урон","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3291139981"]}}} +{"ref":"While a Unique Enemy is in your Presence, Flasks applied to you have #% increased Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта примененных на вас флаконов"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта примененных на вас флаконов","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3610955422"]}}} +{"ref":"While a Unique Enemy is in your Presence, Flasks gain # Charges every 3 seconds","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Флаконы получают # заряда(-ов) каждые 3 секунды"},{"string":"Пока уникальный враг находится в вашем присутствии, Флаконы получают заряд каждые 3 секунды","value":1}],"trade":{"ids":{"implicit":["implicit.stat_2150799098"]}}} +{"ref":"While a Unique Enemy is in your Presence, Flesh and Stone has #% increased Area of Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% увеличение области действия Камня и плоти"},{"string":"Пока уникальный враг находится в вашем присутствии, #% уменьшение области действия Камня и плоти","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1472965536"]}}} +{"ref":"While a Unique Enemy is in your Presence, Flesh Offering has #% increased Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта Подношения плоти"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта Подношения плоти","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3599488608"]}}} +{"ref":"While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within # metre","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Наложенные вами заморозки распространяются на других врагов в радиусе # м"}],"trade":{"ids":{"implicit":["implicit.stat_2543269407"]}}} +{"ref":"While a Unique Enemy is in your Presence, Gain # Rage on Attack Hit","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Дарует # свирепости при нанесении удара атаками"}],"trade":{"ids":{"implicit":["implicit.stat_3134649750"]}}} +{"ref":"While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Chaos Damage","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Дарует #% от физического урона в виде дополнительного урона хаосом"}],"trade":{"ids":{"implicit":["implicit.stat_620552892"]}}} +{"ref":"While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Cold Damage","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Дарует #% от физического урона в виде дополнительного урона от холода"}],"trade":{"ids":{"implicit":["implicit.stat_3171354842"]}}} +{"ref":"While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Fire Damage","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Дарует #% от физического урона в виде дополнительного урона от огня"}],"trade":{"ids":{"implicit":["implicit.stat_3549954477"]}}} +{"ref":"While a Unique Enemy is in your Presence, Gain #% of Physical Damage as Extra Lightning Damage","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Дарует #% от физического урона в виде дополнительного урона от молнии"}],"trade":{"ids":{"implicit":["implicit.stat_1918094957"]}}} +{"ref":"While a Unique Enemy is in your Presence, Gain a Frenzy Charge every # seconds","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Дарует заряд ярости каждые # секунд(-ы)"}],"trade":{"ids":{"implicit":["implicit.stat_2847070982"]}}} +{"ref":"While a Unique Enemy is in your Presence, Gain a Power Charge every # seconds","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Дарует заряд энергии каждые # секунд(-ы)"}],"trade":{"ids":{"implicit":["implicit.stat_46472075"]}}} +{"ref":"While a Unique Enemy is in your Presence, Gain an Endurance Charge every # seconds","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Дарует заряд выносливости каждые # секунд(-ы)"}],"trade":{"ids":{"implicit":["implicit.stat_2441896589"]}}} +{"ref":"While a Unique Enemy is in your Presence, General's Cry has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% повышение скорости перезарядки Клича полководца"}],"trade":{"ids":{"implicit":["implicit.stat_942266300"]}}} +{"ref":"While a Unique Enemy is in your Presence, Grace has #% increased Aura Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта ауры Грации"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта ауры Грации","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3303144948"]}}} +{"ref":"While a Unique Enemy is in your Presence, Haste has #% increased Aura Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта Спешки"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта Спешки","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1060820709"]}}} +{"ref":"While a Unique Enemy is in your Presence, Hatred has #% increased Aura Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта ауры Холодной ненависти"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта ауры Холодной ненависти","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4218330172"]}}} +{"ref":"While a Unique Enemy is in your Presence, Herald of Agony has #% increased Buff Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление положительного эффекта Вестника агонии"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление положительного эффекта Вестника агонии","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_503887731"]}}} +{"ref":"While a Unique Enemy is in your Presence, Herald of Ash has #% increased Buff Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление положительного эффекта Вестника пепла"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление положительного эффекта Вестника пепла","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_109112452"]}}} +{"ref":"While a Unique Enemy is in your Presence, Herald of Ice has #% increased Buff Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление положительного эффекта Вестника льда"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление положительного эффекта Вестника льда","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3593717239"]}}} +{"ref":"While a Unique Enemy is in your Presence, Herald of Purity has #% increased Buff Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление положительного эффекта Вестника чистоты"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление положительного эффекта Вестника чистоты","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4093169696"]}}} +{"ref":"While a Unique Enemy is in your Presence, Herald of Thunder has #% increased Buff Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление положительного эффекта Вестника Грома"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление положительного эффекта Вестника Грома","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_649027123"]}}} +{"ref":"While a Unique Enemy is in your Presence, Hits have #% chance to ignore Enemy Physical Damage Reduction","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% шанс игнорировать уменьшение получаемого врагом физического урона при нанесении удара"},{"string":"Пока уникальный враг находится в вашем присутствии, Удары игнорируют уменьшение получаемого врагом физического урона","value":100}],"trade":{"ids":{"implicit":["implicit.stat_71573030"]}}} +{"ref":"While a Unique Enemy is in your Presence, Ignites you inflict deal Damage #% faster","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Наложенные вами поджоги наносят урон на #% быстрее"}],"trade":{"ids":{"implicit":["implicit.stat_2349328837"]}}} +{"ref":"While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within # metre","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Наложенные вами поджоги распространяются на других врагов в радиусе # м"}],"trade":{"ids":{"implicit":["implicit.stat_1698847655"]}}} +{"ref":"While a Unique Enemy is in your Presence, Infernal Cry has #% increased Area of Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% увеличение области действия Клича преисподней"}],"trade":{"ids":{"implicit":["implicit.stat_3199255605"]}}} +{"ref":"While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying #% to Cold Resistance","better":-1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Накладывает восприимчивость к холоду при нанесении удара, добавляя #% к сопротивлению холоду"}],"trade":{"ids":{"implicit":["implicit.stat_1699220089"]}}} +{"ref":"While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying #% to Fire Resistance","better":-1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Накладывает восприимчивость к огню при нанесении удара, добавляя #% к сопротивлению огню"}],"trade":{"ids":{"implicit":["implicit.stat_732411542"]}}} +{"ref":"While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying #% to Lightning Resistance","better":-1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Накладывает восприимчивость к молнии при нанесении удара, добавляя #% к сопротивлению молнии"}],"trade":{"ids":{"implicit":["implicit.stat_2876365933"]}}} +{"ref":"While a Unique Enemy is in your Presence, Intimidating Cry has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% повышение скорости перезарядки Устрашающего клича"}],"trade":{"ids":{"implicit":["implicit.stat_3381588096"]}}} +{"ref":"While a Unique Enemy is in your Presence, Malevolence has #% increased Aura Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта ауры Злорадства"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта ауры Злорадства","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1327020319"]}}} +{"ref":"While a Unique Enemy is in your Presence, Melee Hits Fortify","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Удары в ближнем бою с #% шансом могут наложить Укрепление"},{"string":"Пока уникальный враг находится в вашем присутствии, Удары в ближнем бою накладывают Укрепление","value":100}],"trade":{"ids":{"implicit":["implicit.stat_993223747"]}}} +{"ref":"While a Unique Enemy is in your Presence, Minions deal #% increased Damage","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Приспешники имеют #% увеличение урона"},{"string":"Пока уникальный враг находится в вашем присутствии, Приспешники имеют #% уменьшение урона","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4189960647"]}}} +{"ref":"While a Unique Enemy is in your Presence, Minions have #% increased maximum Life","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Приспешники имеют #% увеличение максимума здоровья"},{"string":"Пока уникальный враг находится в вашем присутствии, Приспешники имеют #% уменьшение максимума здоровья","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3044748809"]}}} +{"ref":"While a Unique Enemy is in your Presence, Minions have #% increased Movement Speed","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Приспешники имеют #% повышение скорости передвижения"},{"string":"Пока уникальный враг находится в вашем присутствии, Приспешники имеют #% снижение скорости передвижения","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_93625449"]}}} +{"ref":"While a Unique Enemy is in your Presence, Minions take #% reduced Reflected Damage","better":-1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Приспешники получают увеличенный на #% отраженный урон"},{"string":"Пока уникальный враг находится в вашем присутствии, Приспешники получают уменьшенный на #% отраженный урон","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1499657170"]},"inverted":true}} +{"ref":"While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target # additional nearby Enemy","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Умения ударов не-ваал выбирают целью # дополнительного ближайшего врага"},{"string":"Пока уникальный враг находится в вашем присутствии, Умения ударов не-ваал выбирают целью # дополнительных ближайших врагов"}],"trade":{"ids":{"implicit":["implicit.stat_1524679549"]}}} +{"ref":"While a Unique Enemy is in your Presence, Poisons you inflict deal Damage #% faster","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Наложенный вами яд наносит урон на #% быстрее"}],"trade":{"ids":{"implicit":["implicit.stat_3828039449"]}}} +{"ref":"While a Unique Enemy is in your Presence, Pride has #% increased Aura Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта ауры Гордости"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта ауры Гордости","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_4039774101"]}}} +{"ref":"While a Unique Enemy is in your Presence, Projectiles Pierce # additional Targets","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Снаряды пронзают # дополнительных цели(-ей)"},{"string":"Пока уникальный враг находится в вашем присутствии, Снаряды пронзают дополнительную цель","value":1}],"trade":{"ids":{"implicit":["implicit.stat_3924473787"]}}} +{"ref":"While a Unique Enemy is in your Presence, Purity of Elements has #% increased Aura Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта ауры Спасения от стихий"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта ауры Спасения от стихий","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_348693938"]}}} +{"ref":"While a Unique Enemy is in your Presence, Purity of Fire has #% increased Aura Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта ауры Спасения от огня"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта ауры Спасения от огня","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1926772156"]}}} +{"ref":"While a Unique Enemy is in your Presence, Purity of Ice has #% increased Aura Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта ауры Спасения от холода"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта ауры Спасения от холода","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3499126604"]}}} +{"ref":"While a Unique Enemy is in your Presence, Purity of Lightning has #% increased Aura Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта ауры Спасения от молнии"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта ауры Спасения от молнии","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_908556575"]}}} +{"ref":"While a Unique Enemy is in your Presence, Regenerate #% of Life per second per Endurance Charge","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Регенерация #% здоровья в секунду за заряд выносливости"}],"trade":{"ids":{"implicit":["implicit.stat_1123587207"]}}} +{"ref":"While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within # metre","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Накладываемый вами шок распространяется на других врагов в радиусе # м"}],"trade":{"ids":{"implicit":["implicit.stat_2868404935"]}}} +{"ref":"While a Unique Enemy is in your Presence, Spirit Offering has #% increased Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта Подношения духа"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта Подношения духа","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_2814835155"]}}} +{"ref":"While a Unique Enemy is in your Presence, Tempest Shield has #% increased Buff Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта Щита бури"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта Щита бури","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_942478380"]}}} +{"ref":"While a Unique Enemy is in your Presence, Withered you Inflict expires #% faster","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, Накладываемые вами эффекты Истощения истекают на #% быстрее"},{"string":"Пока уникальный враг находится в вашем присутствии, Накладываемые вами эффекты Истощения истекают на #% медленнее","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3262721796"]}}} +{"ref":"While a Unique Enemy is in your Presence, Wrath has #% increased Aura Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта ауры Грозного гнева"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта ауры Грозного гнева","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_399528178"]}}} +{"ref":"While a Unique Enemy is in your Presence, Your Offerings have #% increased Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта Подношений"},{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффектов ваших подношений"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта Подношений","negate":true},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффектов ваших подношений","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1132843482"]}}} +{"ref":"While a Unique Enemy is in your Presence, Zealotry has #% increased Aura Effect","better":1,"matchers":[{"string":"Пока уникальный враг находится в вашем присутствии, #% усиление эффекта ауры Фанатизма"},{"string":"Пока уникальный враг находится в вашем присутствии, #% ослабление эффекта ауры Фанатизма","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_3550578554"]}}} +{"ref":"While at maximum Frenzy Charges, Attacks Poison Enemies","better":1,"matchers":[{"string":"Атаки отравляют врагов при максимуме зарядов ярости"}],"trade":{"ids":{"explicit":["explicit.stat_413362507"]}}} +{"ref":"While in Her Embrace, take #% of your total Maximum Life and Energy Shield as Fire Damage per second per Level","better":1,"matchers":[{"string":"Под действием Её объятия, за каждый уровень вы получаете #% от суммы максимума здоровья и энергетического щита в секунду в виде урона от огня"}],"trade":{"ids":{"explicit":["explicit.stat_2442112158"]}}} +{"ref":"While Minions have Energy Shield, their Hits Ignore Monster Elemental Resistances","better":1,"matchers":[{"string":"Удары приспешников игнорируют сопротивления монстров стихиям, пока у приспешников есть энергетический щит"}],"trade":{"ids":{"explicit":["explicit.stat_1360359242"]}}} +{"ref":"While there are at least five nearby Allies, you and nearby Allies have Onslaught","better":1,"matchers":[{"string":"Вы и ваши союзники получаете эффект Боевого ража, пока рядом с вами находится как минимум пять союзников"}],"trade":{"ids":{"explicit":["explicit.stat_3730497630"]}}} +{"ref":"Wicked Ward","better":1,"matchers":[{"string":"Нечестивый страж"}],"trade":{"ids":{"explicit":["explicit.stat_1109343199"],"scourge":["scourge.stat_1109343199"]}}} +{"ref":"Wild Strike's Beam Chains an additional time","better":1,"matchers":[{"string":"Луч Шального удара поражает дополнительных целей по цепи: #"},{"string":"Луч Шального удара поражает дополнительную цель по цепи","value":1}],"trade":{"ids":{"enchant":["enchant.stat_2447447843"]}}} +{"ref":"Wind Dancer","better":1,"matchers":[{"string":"Танцующий с ветром"}],"trade":{"ids":{"explicit":["explicit.stat_4170338365"],"scourge":["scourge.stat_4170338365"]}}} +{"ref":"Winter Orb deals #% increased Damage","better":1,"matchers":[{"string":"Зимняя сфера наносит увеличенный на #% урон"},{"string":"Зимняя сфера наносит уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2200744772"]}}} +{"ref":"Winter Orb has #% increased Area of Effect per Stage","better":1,"matchers":[{"string":"#% увеличение области действия Зимней сферы за каждую стадию"},{"string":"#% уменьшение области действия Зимней сферы за каждую стадию","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1017161280"]}}} +{"ref":"Winter Orb has +# Maximum Stages","better":1,"matchers":[{"string":"# к максимуму стадий Зимней сферы"}],"trade":{"ids":{"enchant":["enchant.stat_3734339018"]}}} +{"ref":"Wintertide Brand deals #% increased Damage","better":1,"matchers":[{"string":"#% увеличение урона Клейма зимы"},{"string":"#% уменьшение урона Клейма зимы","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_770334536"]}}} +{"ref":"Wintertide Brand has #% increased Chill Effect","better":1,"matchers":[{"string":"#% усиление эффекта охлаждения Клейма зимы"},{"string":"#% ослабление эффекта охлаждения Клейма зимы","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1831757355"],"enchant":["enchant.stat_1831757355"]}}} +{"ref":"Wintertide Brand has +# to maximum Stages","better":1,"matchers":[{"string":"# к максимальному количеству стадий Клейма зимы"}],"trade":{"ids":{"enchant":["enchant.stat_35081783"]}}} +{"ref":"With # Corrupted Items Equipped: 50% of Chaos Damage taken does not bypass Energy Shield, and 50% of Physical Damage taken bypasses Energy Shield","better":1,"matchers":[{"string":"Если одето # оскверненных предметов: 50% урона хаосом не обходит энергетический щит, 50% физического урона обходит энергетический щит"}],"trade":{"ids":{"explicit":["explicit.stat_3225265684"]}}} +{"ref":"With # Corrupted Items Equipped: Life Leech recovers based on your Chaos Damage instead","better":1,"matchers":[{"string":"Восстановление от похищения здоровья основано на вашем уроне хаосом, если надето осквернённых предметов: #"}],"trade":{"ids":{"explicit":["explicit.stat_4192058279"]}}} +{"ref":"With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain # of its Modifiers for 20 seconds","better":1,"matchers":[{"string":"Если в радиусе выбраны 4 значимых умения, то когда вы убиваете редкого монстра, вы получаете # из его свойств на 20 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_3807518091"]}}} +{"ref":"With 40 Intelligence in Radius, #% of Glacial Cascade Physical Damage\nConverted to Cold Damage","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 интеллекта, #% физического урона Ледяного каскада становится уроном от холода"}],"trade":{"ids":{"explicit":["explicit.stat_1478305007"]}}} +{"ref":"With 40 Intelligence in Radius, Glacial Cascade has an additional Burst","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 интеллекта, Ледяной каскад вызывает # дополнительных взрыва(-ов)"},{"string":"Если в радиусе есть минимум 40 интеллекта, Ледяной каскад вызывает дополнительный взрыв","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1367987042"]}}} +{"ref":"With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning","better":1,"matchers":[{"string":"Если в радиусе в сумме 40 ловкости и силы, радужные умения не могут выбрать стихию молнии"}],"trade":{"ids":{"explicit":["explicit.stat_637033100"]}}} +{"ref":"With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage","better":1,"matchers":[{"string":"Если в радиусе в сумме 40 ловкости и силы, радужные умения наносят на 50% меньше урона от молнии"}],"trade":{"ids":{"explicit":["explicit.stat_2053992416"]}}} +{"ref":"With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire","better":1,"matchers":[{"string":"Если в радиусе в сумме 40 интеллекта и ловкости, радужные умения не могут выбрать стихию огня"}],"trade":{"ids":{"explicit":["explicit.stat_63111803"]}}} +{"ref":"With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage","better":1,"matchers":[{"string":"Если в радиусе в сумме 40 интеллекта и ловкости, радужные умения наносят на 50% меньше урона от огня"}],"trade":{"ids":{"explicit":["explicit.stat_1813069390"]}}} +{"ref":"With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold","better":1,"matchers":[{"string":"Если в радиусе в сумме 40 силы и интеллекта, радужные умения не могут выбрать стихию холода"}],"trade":{"ids":{"explicit":["explicit.stat_2864618930"]}}} +{"ref":"With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage","better":1,"matchers":[{"string":"Если в радиусе в сумме 40 силы и интеллекта, радужные умения наносят на 50% меньше урона от холода"}],"trade":{"ids":{"explicit":["explicit.stat_3286480398"]}}} +{"ref":"With a Ghastly Eye Jewel Socketed, Minions have +# to Accuracy Rating","better":1,"matchers":[{"string":"Приспешники имеют # к меткости, если размещен Самоцвет призрачного глаза"}],"trade":{"ids":{"explicit":["explicit.stat_2388362438"]}}} +{"ref":"With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells","better":1,"matchers":[{"string":"Дарует Колдовской выброс при нанесении удара чарами, если размещен Самоцвет гипнотического глаза"}],"trade":{"ids":{"explicit":["explicit.stat_3153744598"]}}} +{"ref":"With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks","better":1,"matchers":[{"string":"С размещённым в гнезде самоцветом Кровожадного глаза, на 4 секунды устрашает врагов при нанесении удара атаками"}],"trade":{"ids":{"explicit":["explicit.stat_642457541"]}}} +{"ref":"With a Murderous Eye Jewel Socketed, Melee Attacks grant # Rage on Hit","better":1,"matchers":[{"string":"С размещенным самоцветом кровожадного глаза атаки в ближнем бою даруют # свирепости при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_3892691596"]}}} +{"ref":"With a Murderous Eye Jewel Socketed, Melee Hits have #% chance to Fortify","better":1,"matchers":[{"string":"С размещённым в гнезде самоцветом Кровожадного глаза, удары в ближнем бою с #% шансом могут наложить Укрепление"}],"trade":{"ids":{"explicit":["explicit.stat_186482813"]}}} +{"ref":"With a Searching Eye Jewel Socketed, Attacks have #% chance to grant Onslaught On Kill","better":1,"matchers":[{"string":"С размещённым в гнезде самоцветом Пытливого глаза, атаки с #% шансом могут даровать Боевой раж при убийстве"}],"trade":{"ids":{"explicit":["explicit.stat_2863332749"]}}} +{"ref":"With a Searching Eye Jewel Socketed, Blind Enemies for 4 seconds on Hit with Attacks","better":1,"matchers":[{"string":"С размещённым в гнезде самоцветом Пытливого глаза, на 4 секунды ослепляет врагов при нанесении удара атаками"}],"trade":{"ids":{"explicit":["explicit.stat_2044840211"]}}} +{"ref":"With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks","better":1,"matchers":[{"string":"С размещённым в гнезде самоцветом Пытливого глаза, на 4 секунды накладывает увечье на врагов при нанесении удара атаками"}],"trade":{"ids":{"explicit":["explicit.stat_2750004091"]}}} +{"ref":"With at least 1000 Strength, #% of Damage dealt by your Raised Zombies is Leeched to you as Life","dp":true,"better":1,"matchers":[{"string":"#% от урона, нанесенного вашими зомби, похищается вами в виде здоровья, если у вас минимум 1000 силы"}],"trade":{"ids":{"explicit":["explicit.stat_2802263253"]}}} +{"ref":"With at least 40 Dexterity in Radius, Animate Weapon can Animate up to # Ranged Weapons","better":1,"matchers":[{"string":"Если в радиусе есть 40 ловкости, Живое оружие может поднять до # оружий дальнего боя"}],"trade":{"ids":{"explicit":["explicit.stat_3585572043"]}}} +{"ref":"With at least 40 Dexterity in Radius, Barrage fires an additional projectile simultaneously on the first and final attacks","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 ловкости, Очередь выпускает дополнительных снарядов одновременно с первой и последней атаками: #"},{"string":"Если в радиусе есть минимум 40 ловкости, Очередь выпускает дополнительный снаряд одновременно с первой и последней атаками","value":1}],"trade":{"ids":{"explicit":["explicit.stat_630867098"]}}} +{"ref":"With at least 40 Dexterity in Radius, Dual Strike deals Off-Hand Splash Damage\nto surrounding targets","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 ловкости, урон от оружия в левой руке\nПарным ударом наносится по целям вокруг"}],"trade":{"ids":{"explicit":["explicit.stat_3603019813"]}}} +{"ref":"With at least 40 Dexterity in Radius, Dual Strike deals Splash Damage\nto surrounding targets while wielding a Mace","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 ловкости, Парный удар с булавой в руках\nнаносит урон по области целям вокруг"}],"trade":{"ids":{"explicit":["explicit.stat_2562474285"]}}} +{"ref":"With at least 40 Dexterity in Radius, Dual Strike has #% increased\nAccuracy Rating while wielding a Sword","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 ловкости, Парный удар имеет #% повышение\nметкости с мечом в руках"},{"string":"Если в радиусе есть минимум 40 ловкости, Парный удар имеет #% снижение\nметкости с мечом в руках","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2869420801"]}}} +{"ref":"With at least 40 Dexterity in Radius, Dual Strike has #% increased Attack\nSpeed while wielding a Claw","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 ловкости, Парный удар имеет #% повышение\nскорости атаки с когтями в руках"},{"string":"Если в радиусе есть минимум 40 ловкости, Парный удар имеет #% снижение\nскорости атаки с когтями в руках","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1795260970"]}}} +{"ref":"With at least 40 Dexterity in Radius, Dual Strike has +#% to Critical Strike\nMultiplier while wielding a Dagger","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 ловкости, Парный удар имеет #% к множителю\nкритического удара с кинжалом в руках"}],"trade":{"ids":{"explicit":["explicit.stat_1503812817"]}}} +{"ref":"With at least 40 Dexterity in Radius, Dual Strike has a #% chance\nto deal Double Damage with the Main-Hand Weapon","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 ловкости, Парный удар имеет #% шанс \nнанести двойной урон оружием в правой руке"},{"string":"Если в радиусе есть минимум 40 ловкости, Парный удар наносит двойной урон оружием в правой руке","value":100}],"trade":{"ids":{"explicit":["explicit.stat_3765671129"]}}} +{"ref":"With at least 40 Dexterity in Radius, Dual Strike Hits Intimidate Enemies for\n4 seconds while wielding an Axe","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 ловкости, удары Парного удара с топором в руках\nустрашают врагов на 4 секунды"}],"trade":{"ids":{"explicit":["explicit.stat_100088509"]}}} +{"ref":"With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains #% increased Damage each time it Hits","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 ловкости, каждый снаряд Призрачного броска наносит увеличенный на #% урон за каждое попадание"}],"trade":{"ids":{"explicit":["explicit.stat_811386429"]}}} +{"ref":"With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a circle","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 ловкости, Бесплотные ножи выпускают снаряды кольцом"}],"trade":{"ids":{"explicit":["explicit.stat_2511280084"]}}} +{"ref":"With at least 40 Dexterity in Radius, Frost Blades has #% increased Projectile Speed","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 ловкости, Ледяные клинки имеют #% повышение скорости снарядов"},{"string":"Если в радиусе есть минимум 40 ловкости, Ледяные клинки имеют #% снижение скорости снарядов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2092708508"],"fractured":["fractured.stat_2092708508"]}}} +{"ref":"With at least 40 Dexterity in Radius, Galvanic Arrow deals #% increased Area Damage","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 ловкости, Электризующая стрела наносит увеличенный на #% урон по области"},{"string":"Если в радиусе есть минимум 40 ловкости, Электризующая стрела наносит уменьшенный на #% урон по области","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1170556324"]}}} +{"ref":"With at least 40 Dexterity in Radius, Galvanic Arrow has #% increased Area of Effect","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 ловкости, область действия Электризующей стрелы увеличивается на #%"}],"trade":{"ids":{"explicit":["explicit.stat_3945934607"]}}} +{"ref":"With at least 40 Dexterity in Radius, Ice Shot has #% increased Area of Effect","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 ловкости, область действия Ледяного выстрела увеличивается на #%"}],"trade":{"ids":{"explicit":["explicit.stat_3442130499"],"fractured":["fractured.stat_3442130499"]}}} +{"ref":"With at least 40 Dexterity in Radius, Ice Shot Pierces an additional Target","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 ловкости, Ледяной выстрел пронзает # дополнительных цели(-ей)"},{"string":"Если в радиусе есть минимум 40 ловкости, Ледяной выстрел пронзает дополнительную цель","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3103494675"],"fractured":["fractured.stat_3103494675"]}}} +{"ref":"With at least 40 Dexterity in Radius, Melee Damage\ndealt by Frost Blades Penetrates #% Cold Resistance","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 ловкости, урон в ближнем бою,\nнаносимый Ледяными клинками, пробивает #% сопротивления холоду"}],"trade":{"ids":{"explicit":["explicit.stat_2412100590"],"fractured":["fractured.stat_2412100590"]}}} +{"ref":"With at least 40 Dexterity in Radius, Viper Strike deals #% increased Damage with Hits and Poison for each Poison on the Enemy","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 ловкости, Удар гадюки наносит увеличенный на #% урон от ударов и яда за каждый заряд яда на враге"}],"trade":{"ids":{"explicit":["explicit.stat_695031402"]}}} +{"ref":"With at least 40 Dexterity in Radius, Viper Strike has a #% chance per Poison on Enemy to grant Unholy Might for 4 seconds on Hit","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 ловкости, за каждый заряд яда на враге Удар гадюки имеет #% шанс даровать Нечестивое могущество на 4 секунды при нанесении удара"}],"trade":{"ids":{"explicit":["explicit.stat_235847153"]}}} +{"ref":"With at least 40 Intelligence in Radius, #% increased Freezing Pulse Damage if\nyou've Shattered an Enemy Recently","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 интеллекта, урон Волны холода увеличивается на #%,\nесли вы недавно разбивали врага"},{"string":"Если в радиусе есть минимум 40 интеллекта, урон Волны холода уменьшается на #%,\nесли вы недавно разбивали врага","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2074744008"],"fractured":["fractured.stat_2074744008"]}}} +{"ref":"With at least 40 Intelligence in Radius, #% of Damage taken Recouped as Mana if you've Warcried Recently","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 интеллекта, #% полученного урона восполняется в виде маны если недавно вы применяли боевой клич"}],"trade":{"ids":{"explicit":["explicit.stat_303219716"]}}} +{"ref":"With at least 40 Intelligence in Radius, Blight has #% increased Cast Speed","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 интеллекта, Мор имеет #% повышение скорости сотворения чар"},{"string":"Если в радиусе есть минимум 40 интеллекта, Мор имеет #% снижение скорости сотворения чар","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_222829382"]}}} +{"ref":"With at least 40 Intelligence in Radius, Blight has #% increased Hinder Duration","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 интеллекта, длительность Скованности от Мора увеличена на #%"}],"trade":{"ids":{"explicit":["explicit.stat_2181499453"]}}} +{"ref":"With at least 40 Intelligence in Radius, Blight inflicts Withered for # seconds","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 интеллекта, Мор накладывает Истощение на # секунд(-ы)"}],"trade":{"ids":{"explicit":["explicit.stat_3881647885"]}}} +{"ref":"With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in its Area\nWith at least 40 Intelligence in Radius, Cold Snap's Cooldown can be bypassed by Power Charges instead of Frenzy Charges","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 интеллекта, Укус стужи дарует заряды энергии вместо зарядов ярости при смерти врагов в области его действия\nЕсли в радиусе есть минимум 40 интеллекта, для мгновенной перезарядки Укуса стужи используются заряды энергии вместо зарядов ярости"}],"trade":{"ids":{"explicit":["explicit.stat_2560038623"]}}} +{"ref":"With at least 40 Intelligence in Radius, Discharge Cooldown is # ms","better":1,"matchers":[{"string":"Если в радиусе минимум 40 интеллекта, время перезарядки Разряда равно # миллисекунд(-ы)"}],"trade":{"ids":{"explicit":["explicit.stat_1213084913"]}}} +{"ref":"With at least 40 Intelligence in Radius, Discharge deals #% more Damage","better":1,"matchers":[{"string":"Если в радиусе минимум 40 интеллекта, Разряд наносит на #% больше урона"},{"string":"Если в радиусе минимум 40 интеллекта, Разряд наносит на #% меньше урона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2818653316"]}}} +{"ref":"With at least 40 Intelligence in Radius, Discharge has #% more Area of Effect","better":1,"matchers":[{"string":"Если в радиусе минимум 40 интеллекта, Разряд имеет на #% больше области действия"},{"string":"Если в радиусе минимум 40 интеллекта, Разряд имеет на #% меньше области действия","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2045330446"]}}} +{"ref":"With at least 40 Intelligence in Radius, Fireball cannot ignite","better":1,"matchers":[{"string":"Если в радиусе минимум 40 интеллекта, Огненный шар не может поджечь"}],"trade":{"ids":{"explicit":["explicit.stat_480975218"]}}} +{"ref":"With at least 40 Intelligence in Radius, Fireball has +#% chance to inflict scorch","better":1,"matchers":[{"string":"Если в радиусе минимум 40 интеллекта, Огненный шар получает #% шанс наложить Опаление"}],"trade":{"ids":{"explicit":["explicit.stat_1482194094"]}}} +{"ref":"With at least 40 Intelligence in Radius, Fireball Projectiles gain Area as they travel farther, up to #% increased Area of Effect","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 интеллекта, снаряды Огненного шара увеличивают область в зависимости от пройденного расстояния, вплоть до #% увеличения области действия"},{"string":"Если в радиусе есть минимум 40 интеллекта, снаряды Огненного шара уменьшают область в зависимости от пройденного расстояния, вплоть до #% уменьшения области действия","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_24977021"]}}} +{"ref":"With at least 40 Intelligence in Radius, Freezing Pulse fires an additional Projectile","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 интеллекта, Волна холода выпускает дополнительных снарядов: #"},{"string":"Если в радиусе есть минимум 40 интеллекта, Волна холода выпускает дополнительный снаряд","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2098320128"],"fractured":["fractured.stat_2098320128"]}}} +{"ref":"With at least 40 Intelligence in Radius, Frostbolt fires an additional Projectile","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 интеллекта, Морозный шар выпускает дополнительных снарядов: #"},{"string":"Если в радиусе есть минимум 40 интеллекта, Морозный шар выпускает дополнительный снаряд","value":1}],"trade":{"ids":{"explicit":["explicit.stat_3790108551"],"fractured":["fractured.stat_3790108551"]}}} +{"ref":"With at least 40 Intelligence in Radius, Frostbolt Projectiles gain #% increased Projectile Speed per second","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 интеллекта, снаряды Морозного шара получают повышение скорости снарядов на #% в секунду"},{"string":"Если в радиусе есть минимум 40 интеллекта, снаряды Морозного шара получают снижение скорости снарядов на #% в секунду","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2727977666"],"fractured":["fractured.stat_2727977666"]}}} +{"ref":"With at least 40 Intelligence in Radius, Projectiles gain radius as they travel farther, up to a maximum of +# metre to radius","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 интеллекта, снаряды Огненного шара увеличивают радиус в зависимости от пройденного расстояния, вплоть до # м"}],"trade":{"ids":{"explicit":["explicit.stat_1351893427"]}}} +{"ref":"With at least 40 Intelligence in Radius, Raised\nZombies' Slam Attack has #% increased Cooldown Recovery Rate","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 интеллекта, скорость перезарядки\nсотрясающей атаки поднятых зомби повышается на #%"}],"trade":{"ids":{"explicit":["explicit.stat_1097026492"]}}} +{"ref":"With at least 40 Intelligence in Radius, Raised Spectres have a #% chance to gain Soul Eater for 20 seconds on Kill","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 интеллекта, сотворённые призраки имеют #% шанс при убийстве получить эффект Пожиратель душ на 20 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_2390273715"]}}} +{"ref":"With at least 40 Intelligence in Radius, Raised Zombies' Slam\nAttack deals #% increased Damage","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 интеллекта, сотрясающая атака\nподнятых зомби наносит увеличенный на #% урон"}],"trade":{"ids":{"explicit":["explicit.stat_781633505"]}}} +{"ref":"With at least 40 Intelligence in Radius, Rolling Magma\nhas #% increased Area of Effect per Chain","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 интеллекта, Магмовый шар имеет\n#% увеличение области действия за каждое нанесение урона врагам по цепи"},{"string":"Если в радиусе есть минимум 40 интеллекта, Магмовый шар имеет\n#% уменьшение области действия за каждое нанесение урона врагам по цепи","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_160933750"]}}} +{"ref":"With at least 40 Intelligence in Radius, Rolling Magma deals #% more Damage","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 интеллекта, Магмовый шар наносит на #% больше урона"},{"string":"Если в радиусе есть минимум 40 интеллекта, Магмовый шар наносит на #% меньше урона","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3131110290"]}}} +{"ref":"With at least 40 Intelligence in Radius, Rolling Magma deals #% more Damage per Chain","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 интеллекта, Магмовый шар наносит на #% больше урона на удар по цепи"},{"string":"Если в радиусе есть минимум 40 интеллекта, Магмовый шар наносит на #% меньше урона на удар по цепи","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1141756390"]}}} +{"ref":"With at least 40 Intelligence in Radius, Rolling Magma fires an additional Projectile","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 интеллекта, Магмовый шар выпускает дополнительных снарядов: #"},{"string":"Если в радиусе есть минимум 40 интеллекта, Магмовый шар выпускает дополнительный снаряд","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2542542825"]}}} +{"ref":"With at least 40 Intelligence in Radius, Spark fires Projectiles in a circle","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 интеллекта, Искра выпускает снаряды кольцом"}],"trade":{"ids":{"explicit":["explicit.stat_935386993"]}}} +{"ref":"With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to # Skeleton Mages","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 интеллекта, Сотворение скелетов может создать до # скелетов-магов"}],"trade":{"ids":{"explicit":["explicit.stat_3088991881"]}}} +{"ref":"With at least 40 Strength in Radius, #% increased\nRarity of Items dropped by Enemies Shattered by Glacial Hammer","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 силы,\n редкость предметов, выпадающих из врагов, разбитых Леденящим молотом, повышена на #%"}],"trade":{"ids":{"explicit":["explicit.stat_1250317014"]}}} +{"ref":"With at least 40 Strength in Radius, #% of Glacial\nHammer Physical Damage Converted to Cold Damage","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 силы, #% физического урона\nЛеденящего молота становится уроном от холода"}],"trade":{"ids":{"explicit":["explicit.stat_3738331820"],"fractured":["fractured.stat_3738331820"]}}} +{"ref":"With at least 40 Strength in Radius, Attacks Exerted by Infernal Cry deal #% more Damage with Ignite","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 силы, улучшенные Кличем преисподней атаки наносят на #% больше урона от поджога"}],"trade":{"ids":{"explicit":["explicit.stat_2298311736"]}}} +{"ref":"With at least 40 Strength in Radius, Cleave has +0.1 metres to Radius per Nearby\nEnemy, up to a maximum of +1 metre","better":1,"matchers":[{"string":"Если в радиусе минимум 40 силы, +0.1 м к радиусу Рассечения за каждого\nближайшего врага, вплоть до +1 м"}],"trade":{"ids":{"explicit":["explicit.stat_1539696482"],"fractured":["fractured.stat_1539696482"]}}} +{"ref":"With at least 40 Strength in Radius, Combust is Disabled","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 силы, Сожжение отключено"}],"trade":{"ids":{"explicit":["explicit.stat_2471517399"]}}} +{"ref":"With at least 40 Strength in Radius, Glacial Hammer deals\nCold-only Splash Damage to surrounding targets","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 силы, урон от холода\nЛеденящего молота наносится целям вокруг"}],"trade":{"ids":{"explicit":["explicit.stat_3565558422"],"fractured":["fractured.stat_3565558422"]}}} +{"ref":"With at least 40 Strength in Radius, Ground Slam\nhas a #% increased angle","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 силы, ширина действия\nСотрясения увеличена на #%"},{"string":"Если в радиусе есть минимум 40 силы, ширина действия\nСотрясения уменьшена на #%","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_156016608"],"fractured":["fractured.stat_156016608"]}}} +{"ref":"With at least 40 Strength in Radius, Ground Slam has a #% chance\nto grant an Endurance Charge when you Stun an Enemy","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 силы, Сотрясение дарует заряд выносливости при оглушении врага"},{"string":"Если в радиусе есть минимум 40 силы, Сотрясение имеет #% шанс\nдаровать заряд выносливости при оглушении врага"}],"trade":{"ids":{"explicit":["explicit.stat_1559361866"]}}} +{"ref":"With at least 40 Strength in Radius, Heavy Strike has a \n#% chance to deal Double Damage","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 силы, Тяжелый удар имеет \n#% шанс нанести удвоенный урон"}],"trade":{"ids":{"explicit":["explicit.stat_1025503586"]}}} +{"ref":"With at least 40 Strength in Radius, Hits with Cleave Fortify","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 силы, удары Рассечением дают Укрепление"}],"trade":{"ids":{"explicit":["explicit.stat_1248507170"],"fractured":["fractured.stat_1248507170"]}}} +{"ref":"With at least 40 Strength in Radius, Hits with Vigilant Strike Fortify you and Nearby Allies for # seconds","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 силы, удары Расчетливым ударов накладывают Укрепление на вас и ближайших союзников на # секунд(-ы)"}],"trade":{"ids":{"explicit":["explicit.stat_530280833"]}}} +{"ref":"With at least 40 Strength in Radius, Molten Strike fires #% more Projectiles","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 силы, Магмовый удар выпускает на #% больше снарядов"},{"string":"Если в радиусе есть минимум 40 силы, Магмовый удар выпускает на #% меньше снарядов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_786380548"]}}} +{"ref":"With at least 40 Strength in Radius, Molten Strike fires an additional Projectile","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 силы, Магмовый удар выпускает дополнительных снарядов: #"},{"string":"Если в радиусе есть минимум 40 силы, Магмовый удар выпускает дополнительный снаряд","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2845889407"]}}} +{"ref":"With at least 40 Strength in Radius, Molten Strike has #% increased Area of Effect","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 силы, область действия Магмового удара увеличивается на #%"}],"trade":{"ids":{"explicit":["explicit.stat_1163758055"]}}} +{"ref":"With at least 40 Strength in Radius, Molten Strike Projectiles Chain +# time","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 силы, снаряды Магмового удара отскакивают раз: #"}],"trade":{"ids":{"explicit":["explicit.stat_2295439133"]}}} +{"ref":"With at least 40 Strength in Radius, Molten Strike Projectiles Chain on impacting ground","better":1,"matchers":[{"string":"Если в радиусе есть минимум 40 силы, снаряды Магмового удара отскакивают при ударе о землю"}],"trade":{"ids":{"explicit":["explicit.stat_670814047"]}}} +{"ref":"Wither has #% increased Area of Effect","better":1,"matchers":[{"string":"#% увеличение области действия Увядания"},{"string":"#% уменьшение области действия Увядания","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1810898461"]}}} +{"ref":"Wither has #% increased Duration","better":1,"matchers":[{"string":"#% увеличение длительности Увядания"},{"string":"#% уменьшение длительности Увядания","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_447560345"]}}} +{"ref":"Withered does not expire on Enemies Ignited by you","better":1,"matchers":[{"string":"Истощение не истекает на подожженных вами врагах"}],"trade":{"ids":{"explicit":["explicit.stat_279110104"]}}} +{"ref":"Withered you Inflict expires #% faster","better":1,"matchers":[{"string":"Накладываемые вами эффекты Истощения истекают на #% быстрее"},{"string":"Накладываемые вами эффекты Истощения истекают на #% медленнее","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1625982517"]}}} +{"ref":"Withering Step has #% increased Elusive Effect","better":1,"matchers":[{"string":"#% усиление эффекта Неуловимости от Губительного шага"},{"string":"#% ослабление эффекта Неуловимости от Губительного шага","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_281958409"]}}} +{"ref":"Withering Step inflicts # additional Withered Debuffs","better":1,"matchers":[{"string":"Губительный шаг накладывает # дополнительных отрицательных эффекта(-ов) Истощения"}],"trade":{"ids":{"enchant":["enchant.stat_3782733370"]}}} +{"ref":"Wrath has #% increased Aura Effect","better":1,"matchers":[{"string":"#% усиление эффекта ауры Грозного гнева"},{"string":"#% ослабление эффекта ауры Грозного гнева","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2181791238"],"implicit":["implicit.stat_2181791238"],"fractured":["fractured.stat_2181791238"]}}} +{"ref":"Wrath has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"#% увеличение эффективности удержания маны Грозным гневом"},{"string":"#% уменьшение эффективности удержания маны Грозным гневом","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_1761642973","explicit.stat_3444518809"],"fractured":["fractured.stat_3444518809"],"enchant":["enchant.stat_1761642973","enchant.stat_3444518809"]}}} +{"ref":"Wrath has no Reservation","better":1,"matchers":[{"string":"Грозный гнев не удерживает ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_1865987277"]}}} +{"ref":"You always Ignite while Burning","better":1,"matchers":[{"string":"Во время горения вы всегда накладываете поджог"}],"trade":{"ids":{"explicit":["explicit.stat_2636728487"]}}} +{"ref":"You and Enemies in your Presence count as moving while affected by Elemental Ailments","better":1,"matchers":[{"string":"Вы и враги в вашем присутствии считаетесь передвигающимися, пока вы находитесь под действием стихийных состояний"}],"trade":{"ids":{"explicit":["explicit.stat_113536037"]}}} +{"ref":"You and nearby Allies deal #% increased Damage","better":1,"matchers":[{"string":"Вы и ближайшие союзники наносите увеличенный на #% урон"},{"string":"Вы и ближайшие союзники наносите уменьшенный на #% урон","negate":true}],"trade":{"ids":{"implicit":["implicit.stat_1419713278"]}}} +{"ref":"You and nearby allies gain #% increased Damage","better":1,"matchers":[{"string":"Вы и ближайшие союзники получаете #% увеличение урона"}],"trade":{"ids":{"explicit":["explicit.stat_637766438"]}}} +{"ref":"You and Nearby Allies have # to # added Chaos Damage per White Socket","better":1,"matchers":[{"string":"Добавляет вам и ближайшим союзникам от # до # урона хаосом за каждое белое гнездо"}],"trade":{"ids":{"explicit":["explicit.stat_3232695173"]}}} +{"ref":"You and Nearby Allies have # to # added Cold Damage per Green Socket","better":1,"matchers":[{"string":"Добавляет вам и ближайшим союзникам от # до # урона от холода за каждое зелёное гнездо"}],"trade":{"ids":{"explicit":["explicit.stat_2665149933"]}}} +{"ref":"You and Nearby Allies have # to # added Fire Damage per Red Socket","better":1,"matchers":[{"string":"Добавляет вам и ближайшим союзникам от # до # урона от огня за каждое красное гнездо"}],"trade":{"ids":{"explicit":["explicit.stat_1666896662"]}}} +{"ref":"You and Nearby Allies have # to # added Lightning Damage per Blue Socket","better":1,"matchers":[{"string":"Добавляет вам и ближайшим союзникам от # до # урона от молнии за каждое синее гнездо"}],"trade":{"ids":{"explicit":["explicit.stat_3726585224"],"enchant":["enchant.stat_3726585224"]}}} +{"ref":"You and Nearby Allies have #% increased Item Rarity","better":1,"matchers":[{"string":"#% повышение редкости предметов для вас и ближайших союзников"},{"string":"#% снижение редкости предметов для вас и ближайших союзников","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_549203380"]}}} +{"ref":"You and nearby Allies have +#% to Elemental Resistances","better":1,"matchers":[{"string":"Вы и ближайшие союзники имеете #% к сопротивлению стихиям"}],"trade":{"ids":{"explicit":["explicit.stat_319842716"]}}} +{"ref":"You and nearby Allies have 30% increased Mana Regeneration Rate","better":1,"matchers":[{"string":"Вы и ближайшие союзники имеете 30% снижение скорости регенерации маны","value":-1},{"string":"Вы и ближайшие союзники имеете 30% повышение скорости регенерации маны","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2936084533"]}}} +{"ref":"You and your Minions take #% reduced Reflected Damage","better":-1,"matchers":[{"string":"Вы и ваши приспешники получаете увеличенный на #% отраженный урон"},{"string":"Вы и ваши приспешники получаете уменьшенный на #% отраженный урон","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3577248251"],"implicit":["implicit.stat_3577248251"],"fractured":["fractured.stat_3577248251"]},"inverted":true}} +{"ref":"You and your Minions take #% reduced Reflected Elemental Damage","better":-1,"matchers":[{"string":"Вы и ваши приспешники получаете увеличенный на #% отраженный урон от стихий"},{"string":"Вы и ваши приспешники получаете уменьшенный на #% отраженный урон от стихий","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2160417795"],"fractured":["fractured.stat_2160417795"],"scourge":["scourge.stat_2160417795"]},"inverted":true}} +{"ref":"You and your Minions take #% reduced Reflected Physical Damage","better":-1,"matchers":[{"string":"Вы и ваши приспешники получаете увеличенный на #% отраженный физический урон"},{"string":"Вы и ваши приспешники получаете уменьшенный на #% отраженный физический урон","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_129035625"],"fractured":["fractured.stat_129035625"],"scourge":["scourge.stat_129035625"]},"inverted":true}} +{"ref":"You and your Totems Regenerate #% of Life per second for each Summoned Totem","better":1,"matchers":[{"string":"Вы и ваши тотемы регенерируете #% здоровья в секунду за каждый установленный тотем"}],"trade":{"ids":{"explicit":["explicit.stat_1496370423"]}}} +{"ref":"You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently","better":1,"matchers":[{"string":"Вы имеете максимальный шанс блокировать урон от атак, если вы недавно не блокировали урон"}],"trade":{"ids":{"explicit":["explicit.stat_2584264074"]}}} +{"ref":"You are at Maximum Chance to Block Spell Damage if you have not Blocked Recently","better":1,"matchers":[{"string":"Ваш шанс блокировать урон от чар максимален, если вы не блокировали недавно"}],"trade":{"ids":{"explicit":["explicit.stat_1817677817"]}}} +{"ref":"You are Chilled when you are Poisoned","better":1,"matchers":[{"string":"Пока на вас действует яд, вы охлаждены"}],"trade":{"ids":{"explicit":["explicit.stat_1802660259"]}}} +{"ref":"You are Chilled while you are Bleeding","better":1,"matchers":[{"string":"Пока на вас действует кровотечение, вы охлаждены"}],"trade":{"ids":{"explicit":["explicit.stat_67132951"]}}} +{"ref":"You are Crushed","better":1,"matchers":[{"string":"Вы сокрушены"}],"trade":{"ids":{"implicit":["implicit.stat_846313030"]}}} +{"ref":"You are Cursed with Conductivity","better":1,"matchers":[{"string":"Вы прокляты Проводимостью"}],"trade":{"ids":{"scourge":["scourge.stat_4256430383"]}}} +{"ref":"You are Cursed with Despair","better":1,"matchers":[{"string":"Вы прокляты Отчаянием"}],"trade":{"ids":{"scourge":["scourge.stat_2177148618"]}}} +{"ref":"You are Cursed with Elemental Weakness","better":1,"matchers":[{"string":"Вы прокляты Уязвимостью к стихиям"}],"trade":{"ids":{"scourge":["scourge.stat_916233227"]}}} +{"ref":"You are Cursed with Enfeeble","better":1,"matchers":[{"string":"Вы прокляты Слабостью"}],"trade":{"ids":{"scourge":["scourge.stat_2102270408"]}}} +{"ref":"You are Cursed with Flammability","better":1,"matchers":[{"string":"Вы прокляты Горючестью"}],"trade":{"ids":{"scourge":["scourge.stat_469425157"]}}} +{"ref":"You are Cursed with Frostbite","better":1,"matchers":[{"string":"Вы прокляты Обморожением"}],"trade":{"ids":{"scourge":["scourge.stat_469418792"]}}} +{"ref":"You are Cursed with Temporal Chains","better":1,"matchers":[{"string":"Вы прокляты Путами времени"}],"trade":{"ids":{"scourge":["scourge.stat_226443538"]}}} +{"ref":"You are Cursed with Vulnerability","better":1,"matchers":[{"string":"Вы прокляты Беззащитностью"}],"trade":{"ids":{"explicit":["explicit.stat_694123963"],"scourge":["scourge.stat_3947740014"]}}} +{"ref":"You are Hexproof if you have a Magic Ring in right slot","better":1,"matchers":[{"string":"Вы являетесь Заговоренным если в правом слоте находится волшебное кольцо"}],"trade":{"ids":{"explicit":["explicit.stat_165884462"]}}} +{"ref":"You are Immune to Ailments while Focused","better":1,"matchers":[{"string":"У вас иммунитет к состояниям, пока вы сфокусированы"}],"trade":{"ids":{"explicit":["explicit.stat_1766730250"],"fractured":["fractured.stat_1766730250"],"crafted":["crafted.stat_1766730250"]}}} +{"ref":"You are Shocked during Effect, causing 50% increased Damage taken","better":1,"matchers":[{"string":"Во время действия эффекта на вас накладывается шок, вы получаете увеличенный на 50% урон"}],"trade":{"ids":{"explicit":["explicit.stat_1187803783"]}}} +{"ref":"You are Unaffected by Bleeding if you've cast Vulnerability in the past 10 seconds","better":1,"matchers":[{"string":"Вы невосприимчивы к кровотечение, если вы сотворяли Беззащитность за последние 10 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_971937289"]}}} +{"ref":"You are Unaffected by Bleeding while Leeching","better":1,"matchers":[{"string":"Вы невосприимчивы к кровотечению во время похищения"}],"trade":{"ids":{"explicit":["explicit.stat_2291122510"]}}} +{"ref":"You are Unaffected by Freeze if you've cast Frostbite in the past 10 seconds","better":1,"matchers":[{"string":"Вы невосприимчивы к заморозке, если вы сотворяли Обморожение за последние 10 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_4194606073"]}}} +{"ref":"You are Unaffected by Ignite if you've cast Flammability in the past 10 seconds","better":1,"matchers":[{"string":"Вы невосприимчивы к поджогу, если вы сотворяли Горючесть за последние 10 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_40907696"]}}} +{"ref":"You are Unaffected by Shock if you've cast Conductivity in the past 10 seconds","better":1,"matchers":[{"string":"Вы невосприимчивы к шоку, если вы сотворяли Проводимость за последние 10 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_2517037025"]}}} +{"ref":"You can apply # additional Curses","better":1,"matchers":[{"string":"Вы можете наложить на одно проклятие меньше","value":-1},{"string":"Вы можете наложить дополнительных проклятий: #"},{"string":"Вы можете наложить дополнительное проклятие","value":1}],"trade":{"ids":{"explicit":["explicit.stat_30642521"],"implicit":["implicit.stat_30642521"],"fractured":["fractured.stat_30642521"],"scourge":["scourge.stat_30642521"],"crafted":["crafted.stat_30642521"]}}} +{"ref":"You can apply an additional Curse while affected by Malevolence","better":1,"matchers":[{"string":"В можете наложить дополнительных проклятий под действием Злорадства: #"},{"string":"В можете наложить дополнительное проклятие под действием Злорадства","value":1}],"trade":{"ids":{"explicit":["explicit.stat_4102244881"]}}} +{"ref":"You can apply an additional Curse while at maximum Power Charges","better":1,"matchers":[{"string":"При максимуме зарядов энергии вы можете наложить дополнительных проклятий: #"},{"string":"При максимуме зарядов энергии вы можете наложить дополнительное проклятие","value":1}],"trade":{"ids":{"explicit":["explicit.stat_761598374"]}}} +{"ref":"You can be Touched by Tormented Spirits","better":1,"matchers":[{"string":"Страдающие духи могут наложить на вас касание"}],"trade":{"ids":{"explicit":["explicit.stat_4197792189"]}}} +{"ref":"You can Cast an additional Brand","better":1,"matchers":[{"string":"Вы можете сотворить # дополнительных клейм(-а)"},{"string":"Вы можете сотворить дополнительное клеймо","value":1}],"trade":{"ids":{"explicit":["explicit.stat_708630863"]}}} +{"ref":"You can catch Corrupted Fish","better":1,"matchers":[{"string":"Вы можете поймать осквернённую рыбу"}],"trade":{"ids":{"implicit":["implicit.stat_2451060005"]}}} +{"ref":"You can catch Exotic Fish","better":1,"matchers":[{"string":"Вы можете поймать экзотическую рыбу"}],"trade":{"ids":{"explicit":["explicit.stat_1471580517"]}}} +{"ref":"You can have an additional Tincture active","better":1,"matchers":[{"string":"Вы можете активировать дополнительную микстуру"}],"trade":{"ids":{"explicit":["explicit.stat_3806798486"]}}} +{"ref":"You can have an Offering of each type","better":1,"matchers":[{"string":"Вы можете иметь Подношение каждого типа"}],"trade":{"ids":{"explicit":["explicit.stat_230941555"]}}} +{"ref":"You can inflict an additional Ignite on each Enemy","better":1,"matchers":[{"string":"Вы можете наложить # дополнительных поджога(-ов) на врага"},{"string":"Вы можете наложить дополнительный поджог на врага","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2837603657"]}}} +{"ref":"You can only deal Damage with this Weapon or Ignite","better":1,"matchers":[{"string":"Вы можете наносить урон только этим оружием и поджигать врагов"}],"trade":{"ids":{"explicit":["explicit.stat_3128318472"]}}} +{"ref":"You can only Socket Corrupted Gems in this item","better":1,"matchers":[{"string":"В этот предмет вы можете вставить только осквернённые камни"}],"trade":{"ids":{"explicit":["explicit.stat_608438307"]}}} +{"ref":"You can't deal Damage with your Skills yourself","better":1,"matchers":[{"string":"Вы не можете самостоятельно наносить урон своими умениями"}],"trade":{"ids":{"scourge":["scourge.stat_2248945598"]}}} +{"ref":"You cannot be Chilled for # second after being Chilled","better":1,"matchers":[{"string":"Вас невозможно охладить в течение # секунд после окончания предыдущего охлаждения"}],"trade":{"ids":{"explicit":["explicit.stat_2306924373"]}}} +{"ref":"You cannot be Cursed with Silence","better":1,"matchers":[{"string":"Иммунитет к молчанию"}],"trade":{"ids":{"explicit":["explicit.stat_1654414582"],"implicit":["implicit.stat_1654414582"]}}} +{"ref":"You cannot be Frozen for # second after being Frozen","better":1,"matchers":[{"string":"Вас невозможно заморозить в течение # секунд после окончания предыдущей заморозки"}],"trade":{"ids":{"explicit":["explicit.stat_3612464552"]}}} +{"ref":"You cannot be Hindered","better":1,"matchers":[{"string":"Вы не можете получить эффект Скованности"}],"trade":{"ids":{"explicit":["explicit.stat_721014846"],"implicit":["implicit.stat_721014846"]}}} +{"ref":"You cannot be Ignited for # second after being Ignited","better":1,"matchers":[{"string":"Вас невозможно поджечь в течение # секунд после окончания предыдущего поджога"}],"trade":{"ids":{"explicit":["explicit.stat_947072590"]}}} +{"ref":"You cannot be Maimed","better":1,"matchers":[{"string":"#% шанс избежать увечий"},{"string":"Вас нельзя изувечить","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1126826428"],"implicit":["implicit.stat_1126826428"]}}} +{"ref":"You cannot be Shocked for # second after being Shocked","better":1,"matchers":[{"string":"На вас невозможно наложить шок в течение # секунд после окончания предыдущего шока"}],"trade":{"ids":{"explicit":["explicit.stat_215346464"]}}} +{"ref":"You cannot be Shocked while at maximum Endurance Charges","better":1,"matchers":[{"string":"Вы не можете получить шок при максимуме зарядов выносливости"}],"trade":{"ids":{"explicit":["explicit.stat_798111687"]}}} +{"ref":"You cannot be Shocked while Frozen","better":1,"matchers":[{"string":"На вас нельзя наложить шок пока вы заморожены"}],"trade":{"ids":{"explicit":["explicit.stat_798853218"]}}} +{"ref":"You cannot be Stunned while at maximum Endurance Charges","better":1,"matchers":[{"string":"Вас нельзя оглушить при максимуме зарядов выносливости"}],"trade":{"ids":{"explicit":["explicit.stat_3780437763"]}}} +{"ref":"You cannot gain Rage during Soul Gain Prevention","better":1,"matchers":[{"string":"Вы не можете получать свирепость во время предотвращения получения душ"}],"trade":{"ids":{"explicit":["explicit.stat_683365179"]}}} +{"ref":"You cannot have non-Animated Minions","better":1,"matchers":[{"string":"Только оживлённое оружие и Аниматрон могут быть вашими приспешниками"}],"trade":{"ids":{"explicit":["explicit.stat_1220105149"]}}} +{"ref":"You cannot have non-Golem Minions","better":1,"matchers":[{"string":"Вы не можете иметь приспешников не-големов"}],"trade":{"ids":{"explicit":["explicit.stat_1826605755"]}}} +{"ref":"You cannot have Non-Spectre Minions","better":1,"matchers":[{"string":"У вас не может быть приспешников не-призраков"}],"trade":{"ids":{"explicit":["explicit.stat_2836980154"]}}} +{"ref":"You cannot Recharge Energy Shield","better":1,"matchers":[{"string":"Вы не можете перезаряжать энергетический щит"}],"trade":{"ids":{"explicit":["explicit.stat_4164247992"],"scourge":["scourge.stat_4164247992"]}}} +{"ref":"You cannot Regenerate Energy Shield","better":1,"matchers":[{"string":"Вы не можете регенерировать энергетический щит"}],"trade":{"ids":{"explicit":["explicit.stat_1052583507"],"scourge":["scourge.stat_1052583507"]}}} +{"ref":"You count as on Full Life while you are Cursed with Vulnerability","better":1,"matchers":[{"string":"Пока вы прокляты Беззащитностью, ваше здоровье считается за полное количество здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_3257374551"]}}} +{"ref":"You count as on Low Life while you are Cursed with Vulnerability","better":1,"matchers":[{"string":"Пока вы прокляты Беззащитностью, ваше здоровье считается за малое количество здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_2304300603"]}}} +{"ref":"You do not inherently take less Damage for having Fortification","better":1,"matchers":[{"string":"Изначально вы не получаете меньше урона за счет действия Укрепления"}],"trade":{"ids":{"explicit":["explicit.stat_3560157887"]}}} +{"ref":"You gain a Grasping Vine when you take a Critical Strike","better":1,"matchers":[{"string":"Вы попадаете под действие # цепких лиан при получении критического удара"},{"string":"Вы попадаете под действие цепкой лианы при получении критического удара","value":1}],"trade":{"ids":{"explicit":["explicit.stat_375932027"]}}} +{"ref":"You gain Divinity for # seconds on reaching maximum Divine Charges\nLose all Divine Charges when you gain Divinity","better":1,"matchers":[{"string":"Вы получаете Божественность на # секунд(-ы) по достижении максимального количества божественных зарядов\nВы теряете все божественные заряды при получении Божественности"}],"trade":{"ids":{"explicit":["explicit.stat_1174243390"]}}} +{"ref":"You gain Onslaught for # second per Endurance Charge when Hit","better":1,"matchers":[{"string":"Боевой раж на # секунд за заряд выносливости при получении удара"},{"string":"Боевой раж на # секунду за заряд выносливости при получении удара"}],"trade":{"ids":{"explicit":["explicit.stat_3714207489"]}}} +{"ref":"You gain Onslaught for # seconds on Critical Strike","better":1,"matchers":[{"string":"Эффект Боевой раж на # секунд(-ы) при нанесении критического удара"}],"trade":{"ids":{"explicit":["explicit.stat_1055188639"]}}} +{"ref":"You gain Onslaught for # seconds on Culling Strike","better":1,"matchers":[{"string":"Эффект Боевой раж на # сек. при Добивании"}],"trade":{"ids":{"explicit":["explicit.stat_3818161429"]}}} +{"ref":"You gain Onslaught for # seconds on Hit","better":1,"matchers":[{"string":"Вы получаете Боевой раж на # секунд(-ы) при нанесении удара"}],"trade":{"ids":{"implicit":["implicit.stat_2514424018"]}}} +{"ref":"You gain Onslaught for # seconds on Kill","better":1,"matchers":[{"string":"Эффект Боевой раж на # сек. при убийстве"}],"trade":{"ids":{"explicit":["explicit.stat_1195849808"]}}} +{"ref":"You gain Onslaught for # seconds on Kill while affected by Haste","better":1,"matchers":[{"string":"Вы получаете эффект Боевой раж на # секунд(-ы) при убийстве под действием Спешки"}],"trade":{"ids":{"explicit":["explicit.stat_1424006185"]}}} +{"ref":"You gain Onslaught for # seconds on Killing Taunted Enemies","better":1,"matchers":[{"string":"Боевой раж на # секунд при убийстве спровоцированных врагов"}],"trade":{"ids":{"explicit":["explicit.stat_2580101523"]}}} +{"ref":"You gain Onslaught for # seconds on using a Vaal Skill","better":1,"matchers":[{"string":"Боевой раж на # секунд при использовании умения ваал"}],"trade":{"ids":{"explicit":["explicit.stat_2654043939"]}}} +{"ref":"You gain Onslaught for # seconds when Hit","better":1,"matchers":[{"string":"Боевой раж на # секунд при получении удара"}],"trade":{"ids":{"explicit":["explicit.stat_2764164760"],"fractured":["fractured.stat_2764164760"],"scourge":["scourge.stat_2764164760"]}}} +{"ref":"You gain Phasing for # seconds on using a Vaal Skill","better":1,"matchers":[{"string":"Форма призрака на # секунд(-ы) при использовании умения ваал"}],"trade":{"ids":{"explicit":["explicit.stat_4089413281"]}}} +{"ref":"You grant # Frenzy Charges to allies on Death","better":1,"matchers":[{"string":"Вы даруете союзникам # зарядов ярости при смерти"}],"trade":{"ids":{"explicit":["explicit.stat_2105456174"]}}} +{"ref":"You have # Conflux for 3 seconds every 8 seconds","better":1,"matchers":[{"string":"Каждые 8 секунд вы получаете Охлаждающее слияние на 3 секунды","value":1},{"string":"Каждые 8 секунд вы получаете Шоковое слияние на 3 секунды","value":2},{"string":"Каждые 8 секунд вы получаете Поджигающее слияние на 3 секунды","value":3}],"trade":{"ids":{"explicit":["explicit.stat_1190121450"],"fractured":["fractured.stat_1190121450"]},"option":true}} +{"ref":"You have Consecrated Ground around you while\nstationary if Strength is your highest Attribute","better":1,"matchers":[{"string":"Пока вы находитесь на одном месте, вокруг вас создается освящённая земля если сила является вашей наивысшей характеристикой"}],"trade":{"ids":{"explicit":["explicit.stat_1196333117"]}}} +{"ref":"You have Consecrated Ground around you while stationary","better":1,"matchers":[{"string":"Пока вы находитесь на одном месте, вокруг вас создаётся освящённая земля"}],"trade":{"ids":{"explicit":["explicit.stat_880970200"],"fractured":["fractured.stat_880970200"]}}} +{"ref":"You have Crimson Dance if you have dealt a Critical Strike Recently","better":1,"matchers":[{"string":"Вы получаете Багровый танец, если недавно наносили критический удар"}],"trade":{"ids":{"explicit":["explicit.stat_1756017808"]}}} +{"ref":"You have Crimson Dance while you have Cat's Stealth","better":1,"matchers":[{"string":"Вы получаете Багровый танец, пока на вас действует Кошачья скрытность"}],"trade":{"ids":{"explicit":["explicit.stat_3492797685"]}}} +{"ref":"You have Culling Strike against Cursed Enemies","better":1,"matchers":[{"string":"Вы имеете эффект Добивание по проклятым врагам"}],"trade":{"ids":{"explicit":["explicit.stat_2150694455"]}}} +{"ref":"You have Far Shot while you do not have Iron Reflexes","better":1,"matchers":[{"string":"Вы получаете Дальний выстрел, пока на вас не действуют Стальные нервы"}],"trade":{"ids":{"explicit":["explicit.stat_3284029342"]}}} +{"ref":"You have Fungal Ground around you while stationary","better":1,"matchers":[{"string":"Пока вы находитесь на одном месте, вокруг вас создаётся заражённая земля"}],"trade":{"ids":{"explicit":["explicit.stat_799872465"]}}} +{"ref":"You have Igniting, Chilling and Shocking Conflux while affected by Glorious Madness","better":1,"matchers":[{"string":"Вы получаете Поджигающее, Охлаждающее и Шоковое слияние под действием Великолепного безумия"}],"trade":{"ids":{"explicit":["explicit.stat_3909952544"]}}} +{"ref":"You have Iron Reflexes while at maximum Frenzy Charges","better":1,"matchers":[{"string":"При максимуме зарядов ярости вы получаете Стальные нервы"}],"trade":{"ids":{"explicit":["explicit.stat_1990354706"]}}} +{"ref":"You have Lesser Brutal Shrine Buff","better":1,"matchers":[{"string":"Вы имеете положительный эффект Малого алтаря свирепости"}],"trade":{"ids":{"explicit":["explicit.stat_2761538350"]}}} +{"ref":"You have Lesser Massive Shrine Buff","better":1,"matchers":[{"string":"Вы имеете положительный эффект Малого алтаря величия"}],"trade":{"ids":{"explicit":["explicit.stat_3779398176"]}}} +{"ref":"You have Mind over Matter while at maximum Power Charges","better":1,"matchers":[{"string":"При максимуме зарядов энергии вы получаете Разум превыше материи"}],"trade":{"ids":{"explicit":["explicit.stat_1876857497"]}}} +{"ref":"You have no Armour or Maximum Energy Shield","better":1,"matchers":[{"string":"У вас нет брони или максимума энергетического щита"}],"trade":{"ids":{"explicit":["explicit.stat_3591359751"]}}} +{"ref":"You have no Intelligence","better":1,"matchers":[{"string":"Ваш интеллект равен нулю"}],"trade":{"ids":{"explicit":["explicit.stat_2706175703"]}}} +{"ref":"You have no Life Regeneration","better":1,"matchers":[{"string":"Вы не имеете регенерации здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_854225133"],"scourge":["scourge.stat_854225133"]}}} +{"ref":"You have no Mana Regeneration","better":1,"matchers":[{"string":"Вы не имеете регенерации маны"}],"trade":{"ids":{"scourge":["scourge.stat_1052246654"]}}} +{"ref":"You have Onslaught during Soul Gain Prevention","better":1,"matchers":[{"string":"Вы получаете эффект Боевой раж во время действия предотвращения получения душ"}],"trade":{"ids":{"explicit":["explicit.stat_1572897579"],"fractured":["fractured.stat_1572897579"],"crafted":["crafted.stat_1572897579"]}}} +{"ref":"You have Onslaught while at maximum Endurance Charges","better":1,"matchers":[{"string":"Вы получаете эффект Боевой раж при максимуме зарядов выносливости"}],"trade":{"ids":{"explicit":["explicit.stat_3101915418"]}}} +{"ref":"You have Onslaught while Fortified","better":1,"matchers":[{"string":"Вы впадаете в Боевой раж под действием Укрепления"}],"trade":{"ids":{"explicit":["explicit.stat_1493590317"]}}} +{"ref":"You have Onslaught while not on Low Mana","better":1,"matchers":[{"string":"Вы получаете Боевой раж, если мана не на низком уровне"}],"trade":{"ids":{"explicit":["explicit.stat_1959256242"]}}} +{"ref":"You have Onslaught while on Low Life","better":1,"matchers":[{"string":"Вы получаете эффект Боевой раж при малом количестве здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_1871938116"]}}} +{"ref":"You have Onslaught while you have Cat's Agility","better":1,"matchers":[{"string":"Под действием Кошачьей ловкости вы получаете Боевой раж"}],"trade":{"ids":{"explicit":["explicit.stat_4274075490"]}}} +{"ref":"You have Perfect Agony if you've dealt a Critical Strike recently","better":1,"matchers":[{"string":"Вы получаете Совершенную агонию, если недавно вы наносили критический удар"}],"trade":{"ids":{"explicit":["explicit.stat_3058395672"]}}} +{"ref":"You have Phasing if Energy Shield Recharge has started Recently","better":1,"matchers":[{"string":"Вы получаете Форму призрака, если недавно началась перезарядка энергетического щита"}],"trade":{"ids":{"explicit":["explicit.stat_2632954025"]}}} +{"ref":"You have Phasing if you have Blocked Recently","better":1,"matchers":[{"string":"Вы получаете Форму призрака, если вы недавно блокировали удар"}],"trade":{"ids":{"explicit":["explicit.stat_3492654051"]}}} +{"ref":"You have Phasing if you've Killed Recently","better":1,"matchers":[{"string":"Вы получаете Форму призрака, если вы недавно совершали убийство"}],"trade":{"ids":{"explicit":["explicit.stat_3489372920"]}}} +{"ref":"You have Phasing while affected by Haste","better":1,"matchers":[{"string":"Под действием Спешки вы получаете Форму призрака"}],"trade":{"ids":{"explicit":["explicit.stat_1346311588"]}}} +{"ref":"You have Phasing while on Low Life","better":1,"matchers":[{"string":"Вы получаете Форму призрака при малом количестве здоровья"}],"trade":{"ids":{"explicit":["explicit.stat_23466649"]}}} +{"ref":"You have Phasing while you have Cat's Stealth","better":1,"matchers":[{"string":"Под действием Кошачьей скрытности вы получаете Форму призрака"}],"trade":{"ids":{"explicit":["explicit.stat_1834455446"]}}} +{"ref":"You have Resolute Technique while you do not have Elemental Overload","better":1,"matchers":[{"string":"Вы получаете Точные удары, пока на вас не действует Стихийная перегрузка"}],"trade":{"ids":{"explicit":["explicit.stat_2905429068"]}}} +{"ref":"You have Scorching Conflux, Brittle Conflux and Sapping Conflux while your two highest Attributes are equal","better":1,"matchers":[{"string":"Вы имеете Опаляющее слияние, Хрупкое слияние и Ошеломляющее слияние, пока значения двух самых высоких характеристик равны"}],"trade":{"ids":{"explicit":["explicit.stat_1518701332"]}}} +{"ref":"You have Tailwind if you have dealt a Critical Strike Recently","better":1,"matchers":[{"string":"На вас действует Попутный ветер, если недавно вы наносили критический удар"}],"trade":{"ids":{"explicit":["explicit.stat_1085545682"],"fractured":["fractured.stat_1085545682"]}}} +{"ref":"You have Tailwind if you've used a Socketed Vaal Skill Recently","better":1,"matchers":[{"string":"На вас действует Попутный ветер, если недавно вы использовали размещенное умение ваал"}],"trade":{"ids":{"explicit":["explicit.stat_1678234826"]}}} +{"ref":"You have Unholy Might while you have no Energy Shield","better":1,"matchers":[{"string":"Вы получаете Нечестивое могущество при отсутствии у вас энергетического щита"}],"trade":{"ids":{"explicit":["explicit.stat_2353201291"]}}} +{"ref":"You have Vaal Pact if you've dealt a Critical Strike Recently","better":1,"matchers":[{"string":"Вы получаете Соглашение с ваал, если недавно наносили критический удар"}],"trade":{"ids":{"explicit":["explicit.stat_1032751668"]}}} +{"ref":"You have Vaal Pact while all Socketed Gems are Red","better":1,"matchers":[{"string":"Вы получаете Соглашение с ваал, если все размещенные камни - красные"}],"trade":{"ids":{"explicit":["explicit.stat_3242537102"]}}} +{"ref":"You have Vaal Pact while at maximum Endurance Charges","better":1,"matchers":[{"string":"При максимуме зарядов выносливости вы получаете Соглашение с ваал"}],"trade":{"ids":{"explicit":["explicit.stat_1314418188"]}}} +{"ref":"You have Vaal Pact while Focused","better":1,"matchers":[{"string":"Вы получаете Соглашение с ваал, пока сфокусированы"}],"trade":{"ids":{"explicit":["explicit.stat_2022851697"],"fractured":["fractured.stat_2022851697"],"crafted":["crafted.stat_2022851697"]}}} +{"ref":"You have Zealot's Oath if you haven't been hit recently","better":1,"matchers":[{"string":"На вас действует Обет фанатика, если вы недавно не получали удар"}],"trade":{"ids":{"explicit":["explicit.stat_2391255504"]}}} +{"ref":"You lose all Endurance Charges on reaching maximum Endurance Charges","better":1,"matchers":[{"string":"Вы теряете все заряды выносливости при накоплении их максимума"}],"trade":{"ids":{"explicit":["explicit.stat_3590104875"]}}} +{"ref":"You lose all Endurance Charges when Hit","better":1,"matchers":[{"string":"Вы теряете все заряды выносливости при получении удара"}],"trade":{"ids":{"explicit":["explicit.stat_2994477068"]}}} +{"ref":"You lose all Spirit Charges when taking a Savage Hit","better":1,"matchers":[{"string":"Вы теряете все заряды души при получении Жестокого удара"}],"trade":{"ids":{"explicit":["explicit.stat_2663792764"]}}} +{"ref":"You only lose # Crab Barriers when you take Physical Damage from a Hit","better":1,"matchers":[{"string":"При получении физического урона от удара вы теряете только # Крабьих преград"}],"trade":{"ids":{"explicit":["explicit.stat_455217103"]}}} +{"ref":"You take # Chaos Damage per second for # seconds on Kill","better":1,"matchers":[{"string":"Вы получаете # урона хаосом в секунду в течение # секунд при убийстве"}],"trade":{"ids":{"explicit":["explicit.stat_4031081471"],"fractured":["fractured.stat_4031081471"]}}} +{"ref":"You take #% increased Extra Damage from Critical Strikes by Poisoned Enemies","better":1,"matchers":[{"string":"Вы получаете увеличенный на #% дополнительный урон от критических ударов от отравленных врагов"},{"string":"Вы получаете уменьшенный на #% дополнительный урон от критических ударов от отравленных врагов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2070361501"]}}} +{"ref":"You take #% of Damage from Blocked Hits","better":1,"matchers":[{"string":"Вы получаете #% урона от заблокированных ударов"}],"trade":{"ids":{"explicit":["explicit.stat_2905515354"],"implicit":["implicit.stat_2905515354"]}}} +{"ref":"You take #% of Elemental Damage from Blocked Hits","better":1,"matchers":[{"string":"Вы получаете #% урона стихиями от заблокированных ударов"}],"trade":{"ids":{"explicit":["explicit.stat_2393355605"]}}} +{"ref":"You take #% of your maximum Life as Chaos Damage on use","better":1,"matchers":[{"string":"Вы получаете урон хаосом в размере #% от вашего максимума здоровья при использовании"}],"trade":{"ids":{"explicit":["explicit.stat_2301696196"]}}} +{"ref":"You take #% reduced Extra Damage from Critical Strikes","better":1,"matchers":[{"string":"Вы получаете сниженный на #% дополнительный урон от критических ударов"},{"string":"Вы получаете увеличенный на #% дополнительный урон от критических ударов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3855016469"],"implicit":["implicit.stat_3855016469"],"fractured":["fractured.stat_3855016469"],"scourge":["scourge.stat_3855016469"]}}} +{"ref":"You take #% reduced Extra Damage from Critical Strikes if you've taken a Critical Strike Recently","better":1,"matchers":[{"string":"Вы получаете уменьшенный на #% дополнительный урон от критических ударов, если недавно вы получали критический удар"}],"trade":{"ids":{"enchant":["enchant.stat_2047590583"]}}} +{"ref":"You take #% reduced Extra Damage from Critical Strikes per Endurance Charge","better":1,"matchers":[{"string":"Вы получаете сниженный на #% дополнительный урон от критических ударов за заряд выносливости"},{"string":"Вы получаете увеличенный на #% дополнительный урон от критических ударов за заряд выносливости","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2380848911"],"fractured":["fractured.stat_2380848911"]}}} +{"ref":"You take #% reduced Extra Damage from Critical Strikes while affected by Determination","better":-1,"matchers":[{"string":"Под действием Решимости вы получаете увеличенный на #% дополнительный урон от критических ударов"},{"string":"Под действием Решимости вы получаете уменьшенный на #% дополнительный урон от критических ударов","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_68410701"]},"inverted":true}} +{"ref":"You take #% reduced Extra Damage from Critical Strikes while you have no Power Charges","better":-1,"matchers":[{"string":"Вы получаете увеличенный на #% дополнительный урон от критических ударов при отсутствии зарядов энергии"},{"string":"Вы получаете уменьшенный на #% дополнительный урон от критических ударов при отсутствии зарядов энергии","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3544527742"]},"inverted":true}} +{"ref":"You take Chaos Damage instead of Physical Damage from Bleeding","better":1,"matchers":[{"string":"Вы получаете урон хаосом вместо физического урона от кровотечения"}],"trade":{"ids":{"explicit":["explicit.stat_1623397857"]}}} +{"ref":"You take no Extra Damage from Critical Strikes while Elusive","better":1,"matchers":[{"string":"Вы не получаете дополнительного урона от критических ударов под действием Неуловимости"}],"trade":{"ids":{"explicit":["explicit.stat_2953854044"]}}} +{"ref":"Your Arc Towers deal #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"4,4"}],"matchers":[{"string":"Ваши башни Цепи молний наносят увеличенный на #% урон"},{"string":"Ваши башни Цепи молний наносят уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3011405513"]}}} +{"ref":"Your Arc Towers have # additional chains","better":1,"anointments":[{"roll":3,"oils":"3,13"}],"matchers":[{"string":"Ваши башни Цепи молний поражают # дополнительного врага по цепи"}],"trade":{"ids":{"enchant":["enchant.stat_6032025"]}}} +{"ref":"Your Arc Towers have #% chance to inflict Sap","better":1,"anointments":[{"roll":20,"oils":"3,7"}],"matchers":[{"string":"Ваши башни Цепи молний имеют #% шанс наложить Ошеломление"}],"trade":{"ids":{"enchant":["enchant.stat_441374889"]}}} +{"ref":"Your Arc Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"3,9"}],"matchers":[{"string":"Ваши башни Цепи молний имеют #% увеличение дальности"},{"string":"Ваши башни Цепи молний имеют #% уменьшение дальности","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1572544406"]}}} +{"ref":"Your Arc Towers repeats # additional Times","better":1,"anointments":[{"roll":1,"oils":"1,12"}],"matchers":[{"string":"Ваши башни Цепи молний повторяют атаку # дополнительный(-ых) раз(-а)"}],"trade":{"ids":{"enchant":["enchant.stat_4173465567"]}}} +{"ref":"Your Aura Buffs do not affect allies","better":1,"matchers":[{"string":"Положительные эффекты ваших аур не действуют на ваших союзников"}],"trade":{"ids":{"explicit":["explicit.stat_4196775867"]}}} +{"ref":"Your Chaos Damage can Chill","better":1,"matchers":[{"string":"Ваш урон хаосом может охлаждать"}],"trade":{"ids":{"explicit":["explicit.stat_3686066640"]}}} +{"ref":"Your Chaos Damage can Ignite","better":1,"matchers":[{"string":"Ваш урон хаосом может наложить поджог"}],"trade":{"ids":{"explicit":["explicit.stat_1139878780"]}}} +{"ref":"Your Chaos Damage can Shock","better":1,"matchers":[{"string":"Ваш урон хаосом может наложить шок"}],"trade":{"ids":{"explicit":["explicit.stat_2418601510"]}}} +{"ref":"Your Chaos Damage cannot Poison","better":1,"matchers":[{"string":"Ваш урон хаосом не может отравлять"}],"trade":{"ids":{"scourge":["scourge.stat_2578701544"]}}} +{"ref":"Your Chaos Damage has #% chance to Poison Enemies","better":1,"matchers":[{"string":"Ваш урон хаосом имеет #% шанс отравить врагов"},{"string":"Ваш урон хаосом отравляет врагов","value":100}],"trade":{"ids":{"explicit":["explicit.stat_2894297982","explicit.stat_3549040753"]}}} +{"ref":"Your Chilling Towers deal #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"1,1"}],"matchers":[{"string":"Ваши охлаждающие башни наносят увеличенный на #% урон"},{"string":"Ваши охлаждающие башни наносят уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_926530613"]}}} +{"ref":"Your Chilling Towers freeze enemies for # seconds while they are affected by chilling beams","better":1,"anointments":[{"roll":0.2,"oils":"11,12"}],"matchers":[{"string":"Ваши охлаждающие башни замораживают врагов на # секунд(-ы), пока на них действуют охлаждающие лучи"}],"trade":{"ids":{"enchant":["enchant.stat_1357120250"]}}} +{"ref":"Your Chilling Towers have #% increased Duration","better":1,"anointments":[{"roll":25,"oils":"8,10"}],"matchers":[{"string":"#% увеличение длительности ваших охлаждающих башен"},{"string":"#% уменьшение длительности ваших охлаждающих башен","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_889454763"]}}} +{"ref":"Your Chilling Towers have #% increased effect of Chill","better":1,"anointments":[{"roll":25,"oils":"8,8"}],"matchers":[{"string":"Ваши охлаждающие башни накладывают усиленный на #% эффект охлаждения"},{"string":"Ваши охлаждающие башни накладывают ослабленный на #% эффект охлаждения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1139911029"]}}} +{"ref":"Your Chilling Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"4,6"}],"matchers":[{"string":"#% увеличение дальности ваших охлаждающих башен"},{"string":"#% уменьшение дальности ваших охлаждающих башен","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_27499777"]}}} +{"ref":"Your Cold Damage can Ignite","better":1,"matchers":[{"string":"Ваш урон от холода может поджечь"}],"trade":{"ids":{"explicit":["explicit.stat_1888494262","explicit.stat_3573591118"],"fractured":["fractured.stat_1888494262"]}}} +{"ref":"Your Cold Damage can Ignite but not Freeze or Chill","better":1,"matchers":[{"string":"Ваш урон от холода может поджечь, но не заморозить или охладить"}],"trade":{"ids":{"explicit":["explicit.stat_1261612903"]}}} +{"ref":"Your Cold Damage can Poison","better":1,"matchers":[{"string":"Ваш урон от холода может отравить"}],"trade":{"ids":{"explicit":["explicit.stat_1917124426"]}}} +{"ref":"Your Cold Damage cannot Freeze","better":1,"matchers":[{"string":"Ваш урон от холода не может заморозить"}],"trade":{"ids":{"explicit":["explicit.stat_220932154"]}}} +{"ref":"Your Critical Strike Chance is Lucky while Focused","better":1,"matchers":[{"string":"Пока вы сфокусированы, ваш шанс критического удара неудачлив","value":-1},{"string":"Пока вы сфокусированы, ваш шанс критического удара удачлив","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1349659520"],"fractured":["fractured.stat_1349659520"],"crafted":["crafted.stat_1349659520"]}}} +{"ref":"Your Critical Strike Chance is Lucky while on Low Life","better":1,"matchers":[{"string":"Ваш шанс критического удара неудачлив при малом количестве здоровья","value":-1},{"string":"Ваш шанс критического удара удачлив при малом количестве здоровья","value":1}],"trade":{"ids":{"explicit":["explicit.stat_2706122133"]}}} +{"ref":"Your Critical Strike Multiplier is 300%","better":1,"matchers":[{"string":"Ваш множитель критического удара равен 300%"}],"trade":{"ids":{"explicit":["explicit.stat_824024007"]}}} +{"ref":"Your Critical Strikes do not deal extra Damage","better":1,"matchers":[{"string":"Ваши критические удары не наносят дополнительный урон"}],"trade":{"ids":{"explicit":["explicit.stat_4058681894"],"scourge":["scourge.stat_4058681894"]}}} +{"ref":"Your Critical Strikes do not deal extra Damage during Effect","better":1,"matchers":[{"string":"Ваши критические удары не наносят дополнительный урон во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_2893557981"]}}} +{"ref":"Your Curse Limit is equal to your maximum Power Charges","better":1,"matchers":[{"string":"Ваш лимит проклятий равен вашему максимуму зарядов энергии"}],"trade":{"ids":{"explicit":["explicit.stat_973000407"]}}} +{"ref":"Your Curses have #% increased Effect if 50% of Curse Duration expired","better":1,"matchers":[{"string":"Ваши проклятия имеют #% усиление эффекта, если истекло 50% длительности проклятия"},{"string":"Ваши проклятия имеют #% ослабление эффекта, если истекло 50% длительности проклятия","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2339022735"]}}} +{"ref":"Your Elemental Damage can Shock","better":1,"matchers":[{"string":"Ваш урон от стихий может накладывать шок"}],"trade":{"ids":{"explicit":["explicit.stat_2933625540"]}}} +{"ref":"Your Empowering Towers also grant #% increased Cast Speed","better":1,"anointments":[{"roll":20,"oils":"8,12"}],"matchers":[{"string":"Ваши усиливающие башни также даруют #% повышение скорости сотворения чар"},{"string":"Ваши усиливающие башни также даруют #% снижение скорости сотворения чар","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3564606017"]}}} +{"ref":"Your Empowering Towers also grant #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"10,12"}],"matchers":[{"string":"Ваши усиливающие башни также даруют #% увеличение урона"}],"trade":{"ids":{"enchant":["enchant.stat_2166020726"]}}} +{"ref":"Your Empowering Towers have #% increased Effect","better":1,"anointments":[{"roll":25,"oils":"2,6"}],"matchers":[{"string":"#% усиление эффекта ваших усиливающих башен"},{"string":"#% ослабление эффекта ваших усиливающих башен","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_246356360"]}}} +{"ref":"Your Empowering Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"4,10"}],"matchers":[{"string":"#% увеличение дальности ваших усиливающих башен"},{"string":"#% уменьшение дальности ваших усиливающих башен","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2097223452"]}}} +{"ref":"Your Energy Shield starts at zero","better":1,"matchers":[{"string":"Бессмертные амбиции"},{"string":"Ваш энергетический щит опустошен"}],"trade":{"ids":{"explicit":["explicit.stat_2413219096"]}}} +{"ref":"Your Fire Damage can Poison","better":1,"matchers":[{"string":"Ваш урон от огня может отравить"}],"trade":{"ids":{"explicit":["explicit.stat_1985969957"]}}} +{"ref":"Your Fire Damage can Shock but not Ignite","better":1,"matchers":[{"string":"Ваш урон от огня может наложить шок, но не поджечь"}],"trade":{"ids":{"explicit":["explicit.stat_2949096603"]}}} +{"ref":"Your Fireball Towers deal #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"1,3"}],"matchers":[{"string":"Ваши башни Огненного шара наносят увеличенный на #% урон"},{"string":"Ваши башни Огненного шара наносят уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3026109282"]}}} +{"ref":"Your Fireball Towers fire an additional Projectile","better":1,"anointments":[{"roll":2,"oils":"2,11"},{"roll":8,"oils":"11,13"}],"matchers":[{"string":"Ваши башни Огненного шара выпускают # дополнительных снаряда(-ов)"},{"string":"Ваши башни Огненного шара выпускают дополнительный снаряд","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1008350423"]}}} +{"ref":"Your Fireball Towers have #% increased Cast Speed","better":1,"anointments":[{"roll":15,"oils":"6,9"}],"matchers":[{"string":"Ваши башни Огненного шара имеют #% повышение скорости сотворения чар"},{"string":"Ваши башни Огненного шара имеют #% снижение скорости сотворения чар","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2410280305"]}}} +{"ref":"Your Fireball Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"2,8"}],"matchers":[{"string":"#% увеличение дальности ваших башен Огненного шара"},{"string":"#% уменьшение дальности ваших башен Огненного шара","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_117905700"]}}} +{"ref":"Your Fireball Towers Projectiles fire in a circle","better":1,"matchers":[{"string":"Ваши Башни огненного шара выпускают снаряды кольцом"}],"trade":{"ids":{"enchant":["enchant.stat_2685482716"]}}} +{"ref":"Your Flamethrower Towers deal #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"2,3"}],"matchers":[{"string":"Ваши огнемётные башни наносят увеличенный на #% урон"},{"string":"Ваши огнемётные башни наносят уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1478321338"]}}} +{"ref":"Your Flamethrower Towers deal full damage to Fire Enemies","better":1,"anointments":[{"roll":1,"oils":"8,9"}],"matchers":[{"string":"Ваши огнемётные башни наносят полный урон врагам стихии огня"}],"trade":{"ids":{"enchant":["enchant.stat_3687716368"]}}} +{"ref":"Your Flamethrower Towers have #% chance to inflict Scorch","better":1,"anointments":[{"roll":20,"oils":"2,7"}],"matchers":[{"string":"Ваши огнемётные башни имеют #% шанс наложить Опаление"}],"trade":{"ids":{"enchant":["enchant.stat_1248361993"]}}} +{"ref":"Your Flamethrower Towers have #% increased Cast Speed","better":1,"anointments":[{"roll":15,"oils":"3,11"}],"matchers":[{"string":"Ваши огнемётные башни имеют #% повышение скорости сотворения чар"},{"string":"Ваши огнемётные башни имеют #% снижение скорости сотворения чар","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4039396512"]}}} +{"ref":"Your Flamethrower Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"3,8"}],"matchers":[{"string":"#% увеличение дальности ваших огнемётных башен"},{"string":"#% уменьшение дальности ваших огнемётных башен","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_665179774"]}}} +{"ref":"Your Freezebolt Tower deal full damage to Cold Enemies","better":1,"anointments":[{"roll":1,"oils":"4,9"}],"matchers":[{"string":"Ваши башни Морозного шара наносят полный урон врагам стихии холода"}],"trade":{"ids":{"enchant":["enchant.stat_2541263647"]}}} +{"ref":"Your Freezebolt Towers deal #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"1,2"}],"matchers":[{"string":"Ваши башни Морозного шара наносят увеличенный на #% урон"},{"string":"Ваши башни Морозного шара наносят уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2834109076"]}}} +{"ref":"Your Freezebolt Towers fire an additional Projectile","better":1,"anointments":[{"roll":2,"oils":"9,10"}],"matchers":[{"string":"Ваши башни Морозного шара выпускают # дополнительных снаряда(-ов)"},{"string":"Ваши башни Морозного шара выпускают дополнительный снаряд","value":1}],"trade":{"ids":{"enchant":["enchant.stat_1797913614"]}}} +{"ref":"Your Freezebolt Towers have #% chance to inflict Brittle","better":1,"anointments":[{"roll":20,"oils":"4,7"}],"matchers":[{"string":"Ваши башни морозного шара имеют #% шанс наложить Хрупкость"}],"trade":{"ids":{"enchant":["enchant.stat_3802588863"]}}} +{"ref":"Your Freezebolt Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"1,8"}],"matchers":[{"string":"#% увеличение дальности ваших башен Морозного шара"},{"string":"#% уменьшение дальности ваших башен Морозного шара","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3434272371"]}}} +{"ref":"Your Glacial Cage Towers have #% increased Cooldown Recovery Rate","better":1,"anointments":[{"roll":20,"oils":"5,9"}],"matchers":[{"string":"Ваши башни ледяной клетки имеют #% повышение скорости перезарядки"},{"string":"Ваши башни ледяной клетки имеют #% снижение скорости перезарядки","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1035680542"]}}} +{"ref":"Your Glacial Cage Towers have #% increased Duration","better":1,"anointments":[{"roll":25,"oils":"2,2"}],"matchers":[{"string":"#% увеличение длительности ваших башен ледяной клетки"},{"string":"#% уменьшение длительности ваших башен ледяной клетки","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1056655244"]}}} +{"ref":"Your Glacial Cage Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"5,6"}],"matchers":[{"string":"#% увеличение дальности ваших башен ледяной клетки"},{"string":"#% уменьшение дальности ваших башен ледяной клетки","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2454791895"]}}} +{"ref":"Your Hexes can affect Hexproof Enemies","better":1,"matchers":[{"string":"Ваши порчи могут влиять на врагов со свойством Заговорённый"}],"trade":{"ids":{"explicit":["explicit.stat_1367119630"]}}} +{"ref":"Your Hits can only Kill Frozen Enemies","better":1,"matchers":[{"string":"Ваши удары могут убить только замороженных врагов"}],"trade":{"ids":{"explicit":["explicit.stat_2740359895"]}}} +{"ref":"Your hits can't be Evaded","better":1,"matchers":[{"string":"От ваших ударов нельзя уклониться","value":1},{"string":"От ударов нельзя уклониться","value":1}],"trade":{"ids":{"explicit":["explicit.stat_1165023334","explicit.stat_4126210832"],"fractured":["fractured.stat_4126210832"],"crafted":["crafted.stat_4126210832"]}}} +{"ref":"Your Hits can't be Evaded by Blinded Enemies","better":1,"matchers":[{"string":"Ослепленные враги не могут уклониться от ваших ударов"}],"trade":{"ids":{"explicit":["explicit.stat_90597215"]}}} +{"ref":"Your Hits cannot Penetrate or ignore Elemental Resistances","better":1,"matchers":[{"string":"Ваши удары не могут пробивать или игнорировать сопротивления стихиям"}],"trade":{"ids":{"explicit":["explicit.stat_3091072796"]}}} +{"ref":"Your Hits cannot Stun Enemies","better":1,"matchers":[{"string":"Ваши удары не могут оглушать врагов"}],"trade":{"ids":{"scourge":["scourge.stat_373932729"]}}} +{"ref":"Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds","better":1,"matchers":[{"string":"Ваши удары накладывают Разложение, наносящее 700 урона хаосом в секунду в течение 8 секунд"}],"trade":{"ids":{"explicit":["explicit.stat_3322709337"],"fractured":["fractured.stat_3322709337"]}}} +{"ref":"Your Hits Intimidate Enemies for 4 seconds while you are using Pride","better":1,"matchers":[{"string":"Ваши удары устрашают врагов на 4 секунды под действием Гордости"}],"trade":{"ids":{"explicit":["explicit.stat_3772848194"]}}} +{"ref":"Your Imbuing Towers also grant #% increased Critical Strike Chance","better":1,"anointments":[{"roll":50,"oils":"9,12"}],"matchers":[{"string":"Ваши насыщающие башни также даруют #% повышение шанса критического удара"},{"string":"Ваши насыщающие башни также даруют #% снижение шанса критического удара","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3891165938"]}}} +{"ref":"Your Imbuing Towers also grant #% increased Damage","better":1,"anointments":[{"roll":50,"oils":"8,13"}],"matchers":[{"string":"Ваши насыщающие башни также даруют #% увеличение урона"},{"string":"Ваши насыщающие башни также даруют #% уменьшение урона","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_639766324"]}}} +{"ref":"Your Imbuing Towers also grant Onslaught","better":1,"anointments":[{"roll":1,"oils":"6,7"}],"matchers":[{"string":"Ваши насыщающие башни также даруют эффект Боевого ража"}],"trade":{"ids":{"enchant":["enchant.stat_1277406505"]}}} +{"ref":"Your Imbuing Towers have #% increased Effect","better":1,"anointments":[{"roll":25,"oils":"3,6"}],"matchers":[{"string":"#% усиление эффекта ваших насыщающих башен"},{"string":"#% ослабление эффекта ваших насыщающих башен","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3346280197"]}}} +{"ref":"Your Imbuing Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"5,10"}],"matchers":[{"string":"#% увеличение дальности ваших насыщающих башен"},{"string":"#% уменьшение дальности ваших насыщающих башен","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3044601282"]}}} +{"ref":"Your Lightning Damage can Freeze but not Shock","better":1,"matchers":[{"string":"Ваш урон от молнии может заморозить, но не наложить шок"}],"trade":{"ids":{"explicit":["explicit.stat_1011772129"]}}} +{"ref":"Your Lightning Damage can Ignite","better":1,"matchers":[{"string":"Ваш урон от молнии может поджечь"}],"trade":{"ids":{"explicit":["explicit.stat_3121133045"]}}} +{"ref":"Your Lightning Damage can Poison","better":1,"matchers":[{"string":"Ваш урон от молнии может отравить"}],"trade":{"ids":{"explicit":["explicit.stat_1604984482"]}}} +{"ref":"Your Lightning Storm Towers create Storms centred on Enemies","better":1,"anointments":[{"roll":1,"oils":"7,12"}],"matchers":[{"string":"Ваши башни Грозового шторма создают штормы вокруг врагов"}],"trade":{"ids":{"enchant":["enchant.stat_3354028437"]}}} +{"ref":"Your Lightning Storm Towers deal #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"2,5"}],"matchers":[{"string":"Ваши башни Грозового шторма наносят увеличенный на #% урон"},{"string":"Ваши башни Грозового шторма наносят уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1960580674"]}}} +{"ref":"Your Lightning Storm Towers have #% increased explosion Area of Effect","better":1,"anointments":[{"roll":25,"oils":"2,13"}],"matchers":[{"string":"Ваши башни Грозового шторма имеют #% увеличение области взрыва"},{"string":"Ваши башни Грозового шторма имеют #% уменьшение области взрыва","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3849821286"]}}} +{"ref":"Your Lightning Storm Towers have #% increased Impact Delay","better":1,"anointments":[{"roll":-25,"oils":"10,10"}],"matchers":[{"string":"Ваши башни Грозового шторма имеют #% увеличение задержки удара"},{"string":"Ваши башни Грозового шторма имеют #% уменьшение задержки удара","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_197351228"]}}} +{"ref":"Your Lightning Storm Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"2,9"}],"matchers":[{"string":"Ваши башни грозового шторма имеют #% увеличение дальности"},{"string":"Ваши башни грозового шторма имеют #% уменьшение дальности","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1789548201"]}}} +{"ref":"Your Maps contain #","better":1,"matchers":[{"string":"В области можно встретить Эйнара","value":2},{"string":"На ваших картах можно встретить Эйнара","value":2},{"string":"В области можно встретить Альву","value":3},{"string":"На ваших картах можно встретить Альву","value":3},{"string":"В области можно встретить Нико","value":5},{"string":"На ваших картах можно встретить Нико","value":5},{"string":"В области можно встретить Джун","value":6},{"string":"На ваших картах можно встретить Джун","value":6},{"string":"В области можно встретить Зану","value":7},{"string":"На ваших картах можно встретить Зану","value":7}],"trade":{"ids":{"explicit":["explicit.stat_3187151138"],"enchant":["enchant.stat_3187151138"]},"option":true}} +{"ref":"Your Mark Transfers to another Enemy when Marked Enemy dies","better":1,"matchers":[{"string":"Ваша метка имеет #% шанс перейти на другого врага, когда помеченный враг умирает"},{"string":"Ваша метка переходит на другого врага, когда помеченный враг умирает","value":100}],"trade":{"ids":{"explicit":["explicit.stat_1104120660"]}}} +{"ref":"Your Maximum Endurance Charges is equal to your Maximum Frenzy Charges","better":1,"matchers":[{"string":"Ваш максимум зарядов выносливости равен максимуму зарядов ярости"}],"trade":{"ids":{"explicit":["explicit.stat_3443585706"]}}} +{"ref":"Your Maximum Frenzy Charges is equal to your Maximum Power Charges","better":1,"matchers":[{"string":"Ваш максимум зарядов ярости равен вашему максимуму зарядов энергии"}],"trade":{"ids":{"explicit":["explicit.stat_2238831336"]}}} +{"ref":"Your Maximum Resistances are #%","better":1,"matchers":[{"string":"Ваш максимум сопротивлений: #%"}],"trade":{"ids":{"explicit":["explicit.stat_798767971"]}}} +{"ref":"Your Meteor Towers always Stun","better":1,"anointments":[{"roll":1,"oils":"9,9"}],"matchers":[{"string":"Ваши метеоритные башни всегда оглушают врагов"}],"trade":{"ids":{"enchant":["enchant.stat_1819243251"]}}} +{"ref":"Your Meteor Towers create Burning Ground for # seconds on Hit","better":1,"anointments":[{"roll":3,"oils":"7,8"}],"matchers":[{"string":"Ваши метеоритные башни создают горящую землю на # секунд(-ы) при нанесении удара"}],"trade":{"ids":{"enchant":["enchant.stat_3704937638"]}}} +{"ref":"Your Meteor Towers deal #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"1,4"}],"matchers":[{"string":"Ваши метеоритные башни наносят увеличенный на #% урон"},{"string":"Ваши метеоритные башни наносят уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1084180630"]}}} +{"ref":"Your Meteor Towers drop an additional Meteor","better":1,"anointments":[{"roll":1,"oils":"4,11"}],"matchers":[{"string":"Ваши метеоритные башни призывают # дополнительных метеорита(-ов)"},{"string":"Ваши метеоритные башни призывают дополнительный метеорит","value":1}],"trade":{"ids":{"enchant":["enchant.stat_2396402660"]}}} +{"ref":"Your Meteor Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"4,8"}],"matchers":[{"string":"#% увеличение дальности ваших метеоритных башен"},{"string":"#% уменьшение дальности ваших метеоритных башен","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1270423035"]}}} +{"ref":"Your Minions spread Burning Ground on Death, dealing #% of their maximum Life as Fire Damage per second","better":1,"matchers":[{"string":"При смерти ваши приспешники распространяют горящую землю, наносящую #% от их максимума здоровья в виде урона от огня в секунду"}],"trade":{"ids":{"explicit":["explicit.stat_4099989681"],"enchant":["enchant.stat_4099989681"]}}} +{"ref":"Your Minions spread Caustic Ground on Death, dealing #% of their maximum Life as Chaos Damage per second","better":1,"matchers":[{"string":"Ваши приспешники при смерти оставляют участок едкой земли, который наносит #% от максимума их здоровья в секунду в виде урона хаосом"}],"trade":{"ids":{"explicit":["explicit.stat_688802590"]}}} +{"ref":"Your Minions use your Flasks when summoned","better":1,"matchers":[{"string":"Ваши приспешники используют ваши флаконы во время призыва"}],"trade":{"ids":{"explicit":["explicit.stat_1827636152"]}}} +{"ref":"Your Movement Skills are Disabled","better":1,"matchers":[{"string":"Ваши умения передвижения отключены"}],"trade":{"ids":{"scourge":["scourge.stat_86000920"]}}} +{"ref":"Your Movement Speed is #% of its base value","better":1,"matchers":[{"string":"Ваша скорость передвижения равна #% от ее базового значения"}],"trade":{"ids":{"explicit":["explicit.stat_3945685369"]}}} +{"ref":"Your nearby party members maximum Endurance Charges is equal to yours","better":1,"matchers":[{"string":"Максимум зарядов выносливости ваших ближайших членов группы равен вашему"}],"trade":{"ids":{"explicit":["explicit.stat_598215770"]}}} +{"ref":"Your Offerings have #% increased Effect","better":1,"matchers":[{"string":"#% усиление эффекта Подношений"},{"string":"#% усиление эффектов ваших подношений"},{"string":"#% ослабление эффекта Подношений","negate":true},{"string":"#% ослабление эффектов ваших подношений","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_3191479793"],"implicit":["implicit.stat_3191479793"],"fractured":["fractured.stat_3191479793"]}}} +{"ref":"Your Offerings have #% increased Effect on you","better":1,"matchers":[{"string":"Ваши Подношения имеют #% усиление эффекта на вас"},{"string":"Ваши Подношения имеют #% ослабление эффекта на вас","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_2071120096"]}}} +{"ref":"Your Physical Damage can Chill","better":1,"matchers":[{"string":"Ваш физический урон может охлаждать врагов"}],"trade":{"ids":{"explicit":["explicit.stat_2227042420"]}}} +{"ref":"Your Physical Damage can Freeze","better":1,"matchers":[{"string":"Ваш физический урон может накладывать заморозку"}],"trade":{"ids":{"explicit":["explicit.stat_1526975429"]}}} +{"ref":"Your Physical Damage can Shock","better":1,"matchers":[{"string":"Ваш физический урон может наложить шок"}],"trade":{"ids":{"explicit":["explicit.stat_3848047105"]}}} +{"ref":"Your Physical Damage cannot Poison","better":1,"matchers":[{"string":"Ваш физический урон не может отравлять"}],"trade":{"ids":{"scourge":["scourge.stat_733138911"]}}} +{"ref":"Your Raised Spectres also gain Arcane Surge when you do","better":1,"matchers":[{"string":"Ваши сотворенные призраки получают Колдовской выброс вместе с вами"}],"trade":{"ids":{"explicit":["explicit.stat_3462113315"]}}} +{"ref":"Your Raised Zombies count as corpses","better":1,"matchers":[{"string":"Ваших поднятых зомби можно использовать в качестве трупов"}],"trade":{"ids":{"explicit":["explicit.stat_3951269079"]}}} +{"ref":"Your Scout Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"5,8"}],"matchers":[{"string":"#% увеличение дальности ваших поисковых башен"},{"string":"#% уменьшение дальности ваших поисковых башен","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4048897123"]}}} +{"ref":"Your Scout Towers summon an additional minion","better":1,"anointments":[{"roll":1,"oils":"6,12"}],"matchers":[{"string":"Ваши Поисковые башни призывают дополнительных приспешников: #"},{"string":"Ваши Поисковые башни призывают дополнительного приспешника","value":1},{"string":"Ваши Поисковые башни призывают на # меньше дополнительных приспешников","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1441906885"]}}} +{"ref":"Your Seismic Towers deal #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"3,5"}],"matchers":[{"string":"Ваши сейсмические башни наносят увеличенный на #% урон"},{"string":"Ваши сейсмические башни наносят уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1582085030"]}}} +{"ref":"Your Seismic Towers have #% increased length and range of Cascades","better":1,"anointments":[{"roll":100,"oils":"12,13"}],"matchers":[{"string":"#% увеличение длины и дальности каскадов ваших сейсмических башен"},{"string":"#% уменьшение длины и дальности каскадов ваших сейсмических башен","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3830917556"]}}} +{"ref":"Your Seismic Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"1,10"}],"matchers":[{"string":"#% увеличение дальности ваших сейсмических башен"},{"string":"#% уменьшение дальности ваших сейсмических башен","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2410117075"]}}} +{"ref":"Your Seismic Towers have #% increased Stun Duration","better":1,"anointments":[{"roll":25,"oils":"2,12"}],"matchers":[{"string":"Ваши сейсмические башни имеют #% увеличение длительности оглушения"},{"string":"Ваши сейсмические башни имеют #% уменьшение длительности оглушения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3006815533"]}}} +{"ref":"Your Seismic Towers have an additional Cascade","better":1,"anointments":[{"roll":1,"oils":"4,13"}],"matchers":[{"string":"Ваши сейсмические башни имеют # дополнительных каскада(-ов)"},{"string":"Ваши сейсмические башни имеют дополнительный каскад","value":1}],"trade":{"ids":{"enchant":["enchant.stat_3094610721"]}}} +{"ref":"Your Sentinel Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"6,8"}],"matchers":[{"string":"#% увеличение дальности ваших сторожевых башен"},{"string":"#% уменьшение дальности ваших сторожевых башен","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1843683045"]}}} +{"ref":"Your Shock Nova Towers deal #% increased Damage","better":1,"anointments":[{"roll":25,"oils":"3,4"}],"matchers":[{"string":"Ваши башни Кольца молний наносят увеличенный на #% урон"},{"string":"Ваши башни Кольца молний наносят уменьшенный на #% урон","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2882048906"]}}} +{"ref":"Your Shock Nova Towers deal full damage to Lightning Enemies","better":1,"anointments":[{"roll":1,"oils":"9,11"}],"matchers":[{"string":"Ваши башни Кольца молний наносят полный урон врагам стихии молнии"}],"trade":{"ids":{"enchant":["enchant.stat_2242331554"]}}} +{"ref":"Your Shock Nova Towers have #% increased area of effect per repeat","better":1,"anointments":[{"roll":30,"oils":"10,13"}],"matchers":[{"string":"Ваши башни Кольца молний имеют #% увеличение области действия за повтор"},{"string":"Ваши башни Кольца молний имеют #% уменьшение области действия за повтор","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_21144785"]}}} +{"ref":"Your Shock Nova Towers have #% increased effect of Shock","better":1,"anointments":[{"roll":25,"oils":"1,13"}],"matchers":[{"string":"Ваши башни Кольца молний имеют усиленный на #% эффект шока"},{"string":"Ваши башни Кольца молний имеют ослабленный на #% эффект шока","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_439316158"]}}} +{"ref":"Your Shock Nova Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"1,9"}],"matchers":[{"string":"#% увеличение дальности ваших башен Кольца молний"},{"string":"#% уменьшение дальности ваших башен Кольца молний","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2731937118"]}}} +{"ref":"Your Shock Nova Towers repeats # additional Times","better":1,"matchers":[{"string":"Ваши башни Кольца молний повторяют атаку # дополнительный(-ых) раз(-а)"}],"trade":{"ids":{"enchant":["enchant.stat_307092526"]}}} +{"ref":"Your Skills deal you #% of Mana Spent on Upfront Skill Mana Costs as Physical Damage","better":1,"matchers":[{"string":"Ваши умения наносят вам #% от затрат маны на мгновенный расход маны умением в виде физического урона"}],"trade":{"ids":{"explicit":["explicit.stat_99487834"]}}} +{"ref":"Your Smothering Towers also grant #% chance to be Frozen, Shocked and Ignited","better":1,"anointments":[{"roll":10,"oils":"1,7"}],"matchers":[{"string":"Ваши удушающие башни также даруют #% шанс быть замороженным, подожженным или пораженным шоком"}],"trade":{"ids":{"enchant":["enchant.stat_906949000"]}}} +{"ref":"Your Smothering Towers also grant #% increased Damage","better":1,"anointments":[{"roll":-10,"oils":"9,13"}],"matchers":[{"string":"Ваши удушающие башни также даруют #% увеличение урона"},{"string":"Ваши удушающие башни также даруют #% уменьшение урона","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2563159607"]}}} +{"ref":"Your Smothering Towers also grant #% increased Movement Speed","better":1,"anointments":[{"roll":-20,"oils":"11,11"}],"matchers":[{"string":"Ваши удушающие башни также даруют #% повышение скорости передвижения"},{"string":"Ваши удушающие башни также даруют #% снижение скорости передвижения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_118036057"]}}} +{"ref":"Your Smothering Towers have #% increased Effect","better":1,"anointments":[{"roll":25,"oils":"5,5"}],"matchers":[{"string":"#% усиление эффекта ваших удушающих башен"},{"string":"#% ослабление эффекта ваших удушающих башен","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_726779274"]}}} +{"ref":"Your Smothering Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"6,10"}],"matchers":[{"string":"#% увеличение дальности ваших удушающих башен"},{"string":"#% уменьшение дальности ваших удушающих башен","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2764047332"]}}} +{"ref":"Your Spells are disabled","better":1,"matchers":[{"string":"Ваши чары отключены"}],"trade":{"ids":{"explicit":["explicit.stat_1981749265"]}}} +{"ref":"Your spells have #% chance to Shock against Frozen Enemies","better":1,"matchers":[{"string":"Ваши чары имеют #% шанс наложить шок на замороженных врагов"}],"trade":{"ids":{"explicit":["explicit.stat_288651645"]}}} +{"ref":"Your Spells have Culling Strike","better":1,"matchers":[{"string":"Ваши чары имеют эффект Добивание"}],"trade":{"ids":{"explicit":["explicit.stat_3238189103"]}}} +{"ref":"Your Stone Gaze Cage Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"3,10"}],"matchers":[{"string":"Ваши башни каменного взора имеют #% увеличение дальности"},{"string":"Ваши башни каменного взора имеют #% уменьшение дальности","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2911217910"]}}} +{"ref":"Your Stone Gaze Towers have #% increased Cooldown Recovery Rate","better":1,"anointments":[{"roll":20,"oils":"4,12"}],"matchers":[{"string":"#% повышение скорости перезарядки ваших башен каменного взора"},{"string":"#% снижение скорости перезарядки ваших башен каменного взора","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_1619284089"]}}} +{"ref":"Your Stone Gaze Towers have #% increased Duration","better":1,"anointments":[{"roll":25,"oils":"4,5"}],"matchers":[{"string":"#% увеличение длительности ваших башен каменного взора"},{"string":"#% уменьшение длительности ваших башен каменного взора","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_573352991"]}}} +{"ref":"Your Stone Gaze Towers have #% increased Petrification Delay","better":1,"anointments":[{"roll":-20,"oils":"6,13"}],"matchers":[{"string":"Ваши башни каменного взора имеют #% увеличение задержки окаменения"},{"string":"Ваши башни каменного взора имеют #% уменьшение задержки окаменения","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3352207460"]}}} +{"ref":"Your Summoning Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"6,6"}],"matchers":[{"string":"#% увеличение дальности ваших призывающих башен"},{"string":"#% уменьшение дальности ваших призывающих башен","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2550660356"]}}} +{"ref":"Your Summoning Towers summon # additional Minions","better":1,"anointments":[{"roll":2,"oils":"12,12"}],"matchers":[{"string":"Ваша призывающая башня призывает # дополнительных приспешников"}],"trade":{"ids":{"enchant":["enchant.stat_1261917923"]}}} +{"ref":"Your Temporal Towers also grant Stun Immunity","better":1,"anointments":[{"roll":1,"oils":"5,7"}],"matchers":[{"string":"Ваши башни времени также даруют иммунитет к оглушению"}],"trade":{"ids":{"enchant":["enchant.stat_2538402671"]}}} +{"ref":"Your Temporal Towers also grant you #% reduced action speed","better":1,"anointments":[{"roll":-20,"oils":"5,13"}],"matchers":[{"string":"Ваши башни времени также даруют вам #% снижение скорости действий"},{"string":"Ваши башни времени также даруют вам #% повышение скорости действий","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_3198887051"]}}} +{"ref":"Your Temporal Towers effects decay #% faster","better":1,"anointments":[{"roll":-25,"oils":"3,12"}],"matchers":[{"string":"Эффекты ваших башен времени ослабевают на #% быстрее"},{"string":"Эффекты ваших башен времени ослабевают на #% медленнее","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4024383498"]}}} +{"ref":"Your Temporal Towers have #% increased Effect","better":1,"anointments":[{"roll":25,"oils":"1,6"}],"matchers":[{"string":"#% усиление эффекта ваших башен времени"},{"string":"#% ослабление эффекта ваших башен времени","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_2109921176"]}}} +{"ref":"Your Temporal Towers have #% increased Range","better":1,"anointments":[{"roll":25,"oils":"2,10"}],"matchers":[{"string":"#% увеличение дальности ваших башен времени"},{"string":"#% уменьшение дальности ваших башен времени","negate":true}],"trade":{"ids":{"enchant":["enchant.stat_4089551985"]}}} +{"ref":"Your Towers deal #% increased Damage per Type of Tower Active","better":1,"anointments":[{"roll":10,"oils":"7,13"}],"matchers":[{"string":"Ваши башни наносят увеличенный на #% урон за каждый активный тип башни"}],"trade":{"ids":{"enchant":["enchant.stat_2125952342"]}}} +{"ref":"Your Warcries open Chests","better":1,"matchers":[{"string":"Ваши боевые кличи открывают сундуки"}],"trade":{"ids":{"explicit":["explicit.stat_3452963763"],"fractured":["fractured.stat_3452963763"]}}} +{"ref":"Zealot's Oath","better":1,"matchers":[{"string":"Обет фанатика"}],"trade":{"ids":{"explicit":["explicit.stat_632761194"],"scourge":["scourge.stat_632761194"]}}} +{"ref":"Zealot's Oath during Effect","better":1,"matchers":[{"string":"Обет фанатика во время действия эффекта"}],"trade":{"ids":{"explicit":["explicit.stat_851224302"]}}} +{"ref":"Zealotry has #% increased Aura Effect","better":1,"matchers":[{"string":"#% усиление эффекта ауры Фанатизма"},{"string":"#% ослабление эффекта ауры Фанатизма","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_4096052153"],"implicit":["implicit.stat_4096052153"],"fractured":["fractured.stat_4096052153"]}}} +{"ref":"Zealotry has #% increased Mana Reservation Efficiency","better":1,"matchers":[{"string":"#% увеличение эффективности удержания маны Фанатизмом"},{"string":"#% уменьшение эффективности удержания маны Фанатизмом","negate":true}],"trade":{"ids":{"explicit":["explicit.stat_168308685","explicit.stat_4216444167"],"enchant":["enchant.stat_168308685","enchant.stat_4216444167"]}}} +{"ref":"Zealotry has no Reservation","better":1,"matchers":[{"string":"Фанатизм не удерживает ресурсы"}],"trade":{"ids":{"explicit":["explicit.stat_1741242318"]}}} diff --git a/renderer/public/.DS_Store/package.json b/renderer/public/.DS_Store/package.json index 5574177eb..0585f6dc6 100644 --- a/renderer/public/.DS_Store/package.json +++ b/renderer/public/.DS_Store/package.json @@ -27,9 +27,10 @@ "stats": "ts-node stats.ts", "copy-files": "cp -R EXPORT/tables/English/* vendor/client/tables/", "push-ndjson": "bash ./push-ndjson.sh", - "anon-python": "python ./vendor/client/parser.py", + "anon-vodka-python": "python ./vendor/client/parser.py", + "langs-anon-vodka-python": "python ./vendor/client/parserRunner.py", "temp-images": "python ./data/en/imageFix.py", - "copy-py-ndjson": "cp -R ./vendor/client/pyDumps/en/* ./data/en/", + "copy-py-ndjson": "bash ./copy-py-ndjson.sh", "fetch-json": "bash ./pull-json.sh" }, "keywords": [], diff --git a/renderer/public/.DS_Store/pull-json.sh b/renderer/public/.DS_Store/pull-json.sh index f3b575466..db868915d 100644 --- a/renderer/public/.DS_Store/pull-json.sh +++ b/renderer/public/.DS_Store/pull-json.sh @@ -1,32 +1,45 @@ #!/bin/bash -# URLs to fetch JSON from -urls=( - "https://www.pathofexile.com/api/trade2/data/filters" - "https://www.pathofexile.com/api/trade2/data/stats" - "https://www.pathofexile.com/api/trade2/data/items" - "https://www.pathofexile.com/api/trade2/data/static" +# Array of language codes and their corresponding base URLs +declare -A lang_urls=( + ["en"]="https://www.pathofexile.com" + ["ru"]="https://ru.pathofexile.com" + ["ko"]="https://poe.game.daum.net" ) -# Directory to save the JSON files -output_dir="./vendor/json-api" +# URLs to fetch JSON from (relative paths) +urls=( + "/api/trade2/data/filters" + "/api/trade2/data/stats" + "/api/trade2/data/items" + "/api/trade2/data/static" +) -# Create output directory if it doesn't exist -mkdir -p "$output_dir" +# Loop through each language +for lang in "${!lang_urls[@]}"; do + # Directory to save the JSON files for the current language + output_dir="./vendor/json-api/$lang" + + # Create output directory if it doesn't exist + mkdir -p "$output_dir" -# Loop through each URL -for url in "${urls[@]}"; do - # Extract the filename from the URL - filename=$(basename "$url") + # Loop through each URL + for relative_url in "${urls[@]}"; do + # Construct the full URL + url="${lang_urls[$lang]}$relative_url" + + # Extract the filename from the relative URL + filename=$(basename "$relative_url") - echo "Fetching JSON from: $url" - - # Fetch the JSON data and save it to a file - curl -s "$url" -o "$output_dir/$filename.json" - - if [ $? -eq 0 ]; then - echo "Saved JSON to: $output_dir/$filename.json" - else - echo "Failed to fetch JSON from: $url" - fi + echo "Fetching JSON from: $url for language: $lang" + + # Fetch the JSON data and save it to a file + curl -s "$url" -o "$output_dir/$filename.json" + + if [ $? -eq 0 ]; then + echo "Saved JSON to: $output_dir/$filename.json" + else + echo "Failed to fetch JSON from: $url" + fi + done done \ No newline at end of file diff --git a/renderer/public/.DS_Store/push-ndjson.sh b/renderer/public/.DS_Store/push-ndjson.sh index 99863c0dc..3fe67c49e 100644 --- a/renderer/public/.DS_Store/push-ndjson.sh +++ b/renderer/public/.DS_Store/push-ndjson.sh @@ -6,13 +6,16 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" # Get the data directory -DATA_DIR="./data/en" - +DATA_DIR="./data" +SUPPORTED_LANG=("en" "ru") # Get all *.ndjson files in the data directory -FILES=$(find $DATA_DIR -name "*.ndjson") -# Loop through each file and push it to the actual data directory, overwriting any existing files -for file in $FILES; do - echo "Pushing $file to data/en" - cp $file ../data/en +for lang in "${SUPPORTED_LANG[@]}"; do + FILES=$(find $DATA_DIR/$lang -name "*.ndjson") + + # Loop through each file and push it to the actual data directory, overwriting any existing files + for file in $FILES; do + echo "Pushing $file to data/$lang" + cp $file ../data/$lang + done done \ No newline at end of file diff --git a/renderer/public/.DS_Store/vendor/client/parser.py b/renderer/public/.DS_Store/vendor/client/parser.py index dc2254b7f..1247637c2 100644 --- a/renderer/public/.DS_Store/vendor/client/parser.py +++ b/renderer/public/.DS_Store/vendor/client/parser.py @@ -1,5 +1,5 @@ -"""Tries to prepare the necessary data for poe-trade to work properly. -It requires all files from +"""Tries to prepare the necessary data for poe-trade to work properly. +It requires all files from Path of Exile 2/Bundles2/_.index.bin/metadata/statdescriptions NOT Path of Exile 2/Bundles2/_.index.bin/metadata/statdescriptions/specific_skill_stat_descriptions @@ -12,442 +12,498 @@ SnosMe - https://github.com/SnosMe/poe-dat-viewer SnosMe - https://github.com/SnosMe/awakened-poe-trade """ -import os + import json +import os import re -import requests import urllib.parse -def get_script_dir(): - """Returns the directory where the script is located.""" - return os.path.dirname(os.path.realpath(__file__)) - -cwd = get_script_dir() -base_dir = cwd + "/tables/" -out_dir = cwd + "/pyDumps/en" - - -def load_file(file): - return json.loads(open(f"{base_dir}/{file}.json").read()) - -base_items = load_file("BaseItemTypes") -item_classes = load_file("ItemClasses") -item_class_categories = load_file("ItemClassCategories") -armour_types = load_file("ArmourTypes") -weapon_types = load_file("WeaponTypes") -skill_gems = load_file("SkillGems") -skill_gem_info = load_file("SkillGemInfo") -stats_file = load_file("Stats") -translation_files = os.listdir(f"{cwd}/descriptions") -mods_file = load_file("Mods") -trade_stats = json.loads(open(f"{cwd}/../json-api/stats.json").read()) # content of https://www.pathofexile.com/api/trade2/data/stats -trade_items = json.loads(open(f"{cwd}/../json-api/items.json").read()) # content of https://www.pathofexile.com/api/trade2/data/items -trade_exchange_items = json.loads(open(f"{cwd}/../json-api/static.json").read()) # content of https://www.pathofexile.com/api/trade2/data/static - -items = {} -unique_items = [] -parsed_item_class_categories = {} -parsed_item_classes = {} -stats = {} -stats_trade_ids = {} -mod_translations = {} -mods = {} - -def make_poe_cdn_url(path): - return urllib.parse.urljoin('https://web.poecdn.com/', path) - -def convert_stat_name(stat): - stat = stat.strip() - open_square_bracket = stat.find("[") - close_square_bracket = stat.find("]") - - while open_square_bracket >= 0 and close_square_bracket > 0: - # resolve brackets, this can be either the plain text or a key|value pair - key = stat[open_square_bracket + 1:close_square_bracket] - - if "|" in key: # key|value pair - key = key.split("|")[1] # use value - stat = stat[:open_square_bracket] + key + stat[close_square_bracket + 1:] - +import requests + + +class Parser: + def get_script_dir(self): + """Returns the directory where the script is located.""" + return os.path.dirname(os.path.realpath(__file__)) + + def load_file(self, file): + return json.loads(open(f"{self.base_dir}/{self.lang}/{file}.json").read()) + + def __init__(self, lang="en"): + self.lang = lang + + self.cwd = self.get_script_dir() + self.base_dir = self.cwd + "/tables/" + self.out_dir = self.cwd + f"/pyDumps/{self.lang}" + self.base_items = self.load_file("BaseItemTypes") + self.item_classes = self.load_file("ItemClasses") + self.item_class_categories = self.load_file("ItemClassCategories") + self.armour_types = self.load_file("ArmourTypes") + self.weapon_types = self.load_file("WeaponTypes") + self.skill_gems = self.load_file("SkillGems") + self.skill_gem_info = self.load_file("SkillGemInfo") + self.stats_file = self.load_file("Stats") + self.translation_files = os.listdir(f"{self.cwd}/descriptions") + self.mods_file = self.load_file("Mods") + # NOTE: could need to add local here? + self.trade_stats = json.loads( + open(f"{self.cwd}/../json-api/en/stats.json").read() + ) # content of https://www.pathofexile.com/api/trade2/data/stats + self.trade_items = json.loads( + open(f"{self.cwd}/../json-api/en/items.json").read() + ) # content of https://www.pathofexile.com/api/trade2/data/items + self.trade_exchange_items = json.loads( + open(f"{self.cwd}/../json-api/en/static.json").read() + ) # content of https://www.pathofexile.com/api/trade2/data/static + + self.items = {} + self.unique_items = [] + self.parsed_item_class_categories = {} + self.parsed_item_classes = {} + self.stats = {} + self.stats_trade_ids = {} + self.mod_translations = {} + self.mods = {} + self.matchers_no_trade_ids = [] + + def make_poe_cdn_url(self, path): + return urllib.parse.urljoin("https://web.poecdn.com/", path) + + def convert_stat_name(self, stat): + stat = stat.strip() open_square_bracket = stat.find("[") close_square_bracket = stat.find("]") - - pattern = re.compile(r'{\d+}') - for match in pattern.findall(stat): - stat = stat.replace(match, "#") - - stat = stat.replace("{0:+d}", "+#") - - if len(stat) == 0: - return None - - if stat[0] == "{" and stat[1] == "}": - stat = "#" + stat[2:] - - return stat - -def parse_trade_ids(): - for res in trade_stats["result"]: - for entry in res.get("entries"): - id = entry.get("id") - text = entry.get("text") - type = entry.get("type") - text = convert_stat_name(text) - - if text not in stats_trade_ids: - stats_trade_ids[text] = {} - - if type not in stats_trade_ids[text]: - stats_trade_ids[text][type] = [] - - stats_trade_ids[text][type].append(id) - -def parse_mod(id, english): - matchers = [] - ref = None - for lang in english: - raw = lang - lang = convert_stat_name(lang) - - if lang == None: - continue - - matcher = lang - # remove prefixs - if matcher[0] == "+": - matcher = matcher[1:] - - has_negate = matcher.find("negate") > 0 - - if has_negate: - matcher = matcher[:matcher.find('"')].strip() - - matchers.append({ - "string": matcher, - "negate": has_negate - }) - - if ref == None: - ref = lang - - id = id.split(" ") - - for a in id: - mod_translations[a] = { - "ref": ref, - "matchers": matchers, - } -def parse_translation_file(file): - dir = f"{cwd}/descriptions/{file}" - print("Parsing", dir) - stats_translations = open(dir, encoding="utf-16").read().split("\n") - for i in range(0, len(stats_translations)): - line = stats_translations[i] - - if line == "description": - # start of the translation block - id = stats_translations[i + 1].strip()[2:].replace('"', "") # skip first 2 characters - english = stats_translations[i + 3].strip() # skip first 2 characters - start = english.find('"') - end = english.rfind('"') - english = english[start + 1: end] - - # convert to array so we can add the negated option later on, if one exists - english = [english] - - negate_english = stats_translations[i + 4].strip() - if "lang" not in negate_english and "negate" in negate_english: - # mod has a negated version - end = negate_english.find('negate') - negate_english = negate_english[negate_english.find('"') + 1:end + len('negate')] - english.append(negate_english) - - parse_mod(id, english) - -def parse_mods(): - for stat in stats_file: - id = stat.get("_index") - name = stat.get("Id") - stats[id] = name - - # translations - for file in translation_files: - if os.path.isdir(f"{cwd}/descriptions/{file}"): - # traverse directories if it doesnt start with _ - if not file.startswith("_"): - for _file in os.listdir(f"{cwd}/descriptions/{file}"): - parse_translation_file(f"{file}/{_file}") - elif ".csd" in file: - parse_translation_file(file) - - for mod in mods_file: - id = mod.get("Id") - stats_key = mod.get("StatsKey1") - if stats_key != None: - stats_id = stats.get(stats_key) - translation = mod_translations.get(stats_id) - if translation: - ref = translation.get("ref") - matchers = translation.get("matchers") - ids = stats_trade_ids.get(matchers[0].get("string")) - if ids == None and len(matchers) > 1: - ids = stats_trade_ids.get(matchers[1].get("string")) - if ids == None: - print("No trade ids found for", matchers[0].get("string"), "or", matchers[1].get("string")) - trade = {"ids": ids} - mods[id] = { - "ref": translation.get("ref"), - "better": 1, - "id": stats_id, - "matchers": translation.get("matchers"), - "trade": trade - } + while open_square_bracket >= 0 and close_square_bracket > 0: + # resolve brackets, this can be either the plain text or a key|value pair + key = stat[open_square_bracket + 1 : close_square_bracket] -def parse_categories(): - # parse item categories - for cat in item_class_categories: - id = cat.get("_index") - if id is None: - continue - - text = cat.get("Id") - parsed_item_class_categories[id] = text - - for cat in item_classes: - id = cat.get("_index") - if id is None: - continue - - text = cat.get("Id") - parsed_item_classes[id] = { - "name": text, - "short": parsed_item_class_categories.get(cat.get("ItemClassCategory")) - } - -def parse_items(): - - for entry in trade_items["result"]: - for item in entry.get("entries"): - name = item.get("name") - if name == None: + if "|" in key: # key|value pair + key = key.split("|")[1] # use value + stat = stat[:open_square_bracket] + key + stat[close_square_bracket + 1 :] + + open_square_bracket = stat.find("[") + close_square_bracket = stat.find("]") + + pattern = re.compile(r"{\d+}") + for match in pattern.findall(stat): + stat = stat.replace(match, "#") + + stat = stat.replace("{0:+d}", "+#") + + if len(stat) == 0: + return None + + if stat[0] == "{" and stat[1] == "}": + stat = "#" + stat[2:] + + return stat + + def parse_trade_ids(self): + for res in self.trade_stats["result"]: + for entry in res.get("entries"): + id = entry.get("id") + text = entry.get("text") + type = entry.get("type") + text = self.convert_stat_name(text) + + if text not in self.stats_trade_ids: + self.stats_trade_ids[text] = {} + + if type not in self.stats_trade_ids[text]: + self.stats_trade_ids[text][type] = [] + + self.stats_trade_ids[text][type].append(id) + + def parse_mod(self, id, english): + matchers = [] + ref = None + for lang in english: + lang = self.convert_stat_name(lang) + + if lang is None: + continue + + matcher = lang + # remove prefixes + if matcher[0] == "+": + matcher = matcher[1:] + + has_negate = matcher.find("negate") > 0 + + if has_negate: + matcher = matcher[: matcher.find('"')].strip() + + matchers.append({"string": matcher, "negate": has_negate}) + + if ref is None: + ref = lang + + id = id.split(" ") + + for a in id: + if a == "number_of_additional_arrows": + matchers.append( + {"string": "Bow Attacks fire # additional Arrows", "negate": False} + ) + self.mod_translations[a] = { + "ref": ref, + "matchers": matchers, + } + + def parse_translation_file(self, file): + dir = f"{self.cwd}/descriptions/{file}" + print("Parsing", dir) + stats_translations = open(dir, encoding="utf-16").read().split("\n") + for i in range(0, len(stats_translations)): + line = stats_translations[i] + + if line == "description": + # start of the translation block + id = ( + stats_translations[i + 1].strip()[2:].replace('"', "") + ) # skip first 2 characters + english = stats_translations[i + 3].strip() # skip first 2 characters + start = english.find('"') + end = english.rfind('"') + english = english[start + 1 : end] + + # convert to array so we can add the negated option later on, if one exists + english = [english] + + negate_english = stats_translations[i + 4].strip() + if "lang" not in negate_english and "negate" in negate_english: + # mod has a negated version + end = negate_english.find("negate") + negate_english = negate_english[ + negate_english.find('"') + 1 : end + len("negate") + ] + english.append(negate_english) + + self.parse_mod(id, english) + + def parse_mods(self): + for stat in self.stats_file: + id = stat.get("_index") + name = stat.get("Id") + self.stats[id] = name + + # translations + for file in self.translation_files: + if os.path.isdir(f"{self.cwd}/descriptions/{file}"): + # traverse directories if it doesnt start with _ + if not file.startswith("_"): + for _file in os.listdir(f"{self.cwd}/descriptions/{file}"): + self.parse_translation_file(f"{file}/{_file}") + elif ".csd" in file: + self.parse_translation_file(file) + + for mod in self.mods_file: + id = mod.get("Id") + stats_key = mod.get("StatsKey1") + if stats_key is not None: + stats_id = self.stats.get(stats_key) + translation = self.mod_translations.get(stats_id) + if translation: + ref = translation.get("ref") + matchers = translation.get("matchers") + ids = self.stats_trade_ids.get(matchers[0].get("string")) + # if ref.lower() == "bow attacks fire an additional arrow": + # print("ID") + # print(f"stats_id: {stats_id}") + # print(f"matchers: {matchers}") + # print(f"ref: {ref}") + # print("break") + # print(f"mod: {mod}") + # print(f"stats_trade_ids: {stats_trade_ids}") + # print(f"ids: {ids}") + # print(f"translation: {translation}") + if ids is None and len(matchers) > 1: + ids = self.stats_trade_ids.get(matchers[1].get("string")) + if ids is None: + # print( + # "No trade ids found for", + # matchers[0].get("string"), + # "or", + # matchers[1].get("string"), + # ) + self.matchers_no_trade_ids.append(matchers[0].get("string")) + self.matchers_no_trade_ids.append(matchers[1].get("string")) + elif ids is None: + # print("No trade ids found for", matchers[0].get("string")) + self.matchers_no_trade_ids.append(matchers[0].get("string")) + trade = {"ids": ids} + self.mods[id] = { + "ref": translation.get("ref"), + "better": 1, + "id": stats_id, + "matchers": translation.get("matchers"), + "trade": trade, + } + + def parse_categories(self): + # parse item categories + for cat in self.item_class_categories: + id = cat.get("_index") + if id is None: continue - text = item.get("text") - type = item.get("type") - # unique item - flags = item.get("flags") - - unique_items.append({ + + text = cat.get("Id") + self.parsed_item_class_categories[id] = text + + for cat in self.item_classes: + id = cat.get("_index") + if id is None: + continue + + text = cat.get("Id") + self.parsed_item_classes[id] = { + "name": text, + "short": self.parsed_item_class_categories.get( + cat.get("ItemClassCategory") + ), + } + + def parse_items(self): + for entry in self.trade_items["result"]: + for item in entry.get("entries"): + name = item.get("name") + if name is None: + continue + text = item.get("text") + type = item.get("type") + # unique item + flags = item.get("flags") + + self.unique_items.append( + { + "name": name, + "refName": name, + "namespace": "UNIQUE", + "unique": {"base": type}, + } + ) + + # parse base items + for item in self.base_items: + id = item.get("_index") + if id is None: + continue + + name = item.get("Name") + + if len(name) == 0: + continue + + class_key = item.get("ItemClassesKey") + + self.items[id] = { "name": name, "refName": name, - "namespace": "UNIQUE", - "unique": { - "base": type - } - }) - - # parse base items - for item in base_items: - id = item.get("_index") - if id is None: - continue - - name = item.get("Name") - - if len(name) == 0: - continue - - class_key = item.get("ItemClassesKey") - - items[id] = { - "name": name, - "refName": name, - "namespace": "ITEM", - "class": class_key, - "dropLevel": item.get("DropLevel"), - "width": item.get("Width"), - "height": item.get("Height"), - } - - if class_key is not None: - class_info = parsed_item_classes.get(class_key).get("short") - # if class_info in ["Belt", "Ring", "Amulet"]: - if class_info != None: - items[id].update({ - "craftable": { - "category": class_info + "namespace": "ITEM", + "class": class_key, + "dropLevel": item.get("DropLevel"), + "width": item.get("Width"), + "height": item.get("Height"), + } + + if class_key is not None: + class_info = self.parsed_item_classes.get(class_key).get("short") + # if class_info in ["Belt", "Ring", "Amulet"]: + if class_info is not None: + self.items[id].update({"craftable": {"category": class_info}}) + + # convert base items into gems + for gem in self.skill_gems: + id = gem.get("BaseItemTypesKey") + if id in self.items: + self.items[id].update( + { + "namespace": "GEM", + "gem": {"awakened": False, "transfigured": False}, } - }) - - # convert base items into gems - for gem in skill_gems: - id = gem.get("BaseItemTypesKey") - if id in items: - items[id].update({ - "namespace": "GEM", - "gem": { - "awakened": False, - "transfigured": False - } - }) - - # weapons and armor need the craftable tag ("craftable": "type (helmet, boots etc)") - # convert base items into weapons - for wpn in weapon_types: - id = wpn.get("BaseItemTypesKey") - - if id in items: - class_key = items[id].get("class") - items[id].update({ - "craftable": { - "category": parsed_item_classes.get(class_key).get("short"), - } - }) - - # convert base items into armor types - # armour needs the armour tag ("armour": "ar": [min, max], "ev": [min, max], "es": [min, max]) - # Changed since db only has once value for each stat - for armour in armour_types: - id = armour.get("BaseItemTypesKey") - - ar = [armour.get("Armour"), armour.get("Armour")] - ev = [armour.get("Evasion"), armour.get("Evasion")] - es = [armour.get("EnergyShield"), armour.get("EnergyShield")] - - armour = {} - - if ar[1] > 1: - armour["ar"] = ar - - if ev[1] > 1: - armour["ev"] = ev - - if es[1] > 1: - armour["es"] = es - - if id in items: - items[id].update({ - "armour": armour - }) - -def parse_trade_exchange_items(): - items_ids = {} - for id, item in items.items(): - items_ids[item.get("name")] = id - - for category in trade_exchange_items["result"]: - for entry in category.get("entries"): - item_name = entry.get("text") - - if not item_name in items_ids: + ) + + # weapons and armor need the craftable tag ("craftable": "type (helmet, boots etc)") + # convert base items into weapons + for wpn in self.weapon_types: + id = wpn.get("BaseItemTypesKey") + + if id in self.items: + class_key = self.items[id].get("class") + self.items[id].update( + { + "craftable": { + "category": self.parsed_item_classes.get(class_key).get( + "short" + ), + } + } + ) + + # convert base items into armor types + # armour needs the armour tag ("armour": "ar": [min, max], "ev": [min, max], "es": [min, max]) + # Changed since db only has once value for each stat + for armour in self.armour_types: + id = armour.get("BaseItemTypesKey") + + ar = [armour.get("Armour"), armour.get("Armour")] + ev = [armour.get("Evasion"), armour.get("Evasion")] + es = [armour.get("EnergyShield"), armour.get("EnergyShield")] + + armour = {} + + if ar[1] > 1: + armour["ar"] = ar + + if ev[1] > 1: + armour["ev"] = ev + + if es[1] > 1: + armour["es"] = es + + if id in self.items: + self.items[id].update({"armour": armour}) + + def parse_trade_exchange_items(self): + items_ids = {} + for id, item in self.items.items(): + items_ids[item.get("name")] = id + + for category in self.trade_exchange_items["result"]: + for entry in category.get("entries"): + item_name = entry.get("text") + + if item_name not in items_ids: + continue + + self.items[items_ids[item_name]].update( + { + "tradeTag": entry.get("id"), + "icon": self.make_poe_cdn_url(entry.get("image")), + } + ) + + def resolve_item_classes(self): + for item_class in self.item_classes: + id = item_class.get("_index") + if id is None: continue - items[items_ids[item_name]].update({ - "tradeTag": entry.get("id"), - "icon": make_poe_cdn_url(entry.get("image")) - }) -def resolve_item_classes(): - for item_class in item_classes: - id = item_class.get("_index") - if id is None: - continue - - name = item_class.get("Name") - item_class_category = item_class.get("ItemClassCategory") - - if id in items: - items[id].update({ - "class": name, - "category": parsed_item_classes.get(item_class_category) - }) - -def write_to_file(): - f = open(f"{out_dir}/items.ndjson", "w", encoding="utf-8") - items_name = sorted(items.values(), key=lambda x: x.get("name")) - for item in items_name: - name = item.get("name") - namespace = item.get("namespace", "ITEM") - craftable = item.get("craftable", None) - gem = item.get("gem", None) - armour = item.get("armour", None) - width = item.get("width", None) - height = item.get("height", None) - tradeTag = item.get("tradeTag", None) - icon = item.get("icon", "%NOT_FOUND%") - - out = { - "name": name, - "refName": name, - "namespace": namespace, - "icon": icon, + name = item_class.get("Name") + item_class_category = item_class.get("ItemClassCategory") + + if id in self.items: + self.items[id].update( + { + "class": name, + "category": self.parsed_item_classes.get(item_class_category), + } + ) + + def write_to_file(self): + f = open(f"{self.out_dir}/items.ndjson", "w", encoding="utf-8") + items_name = sorted(self.items.values(), key=lambda x: x.get("name")) + for item in items_name: + name = item.get("name") + namespace = item.get("namespace", "ITEM") + craftable = item.get("craftable", None) + gem = item.get("gem", None) + armour = item.get("armour", None) + width = item.get("width", None) + height = item.get("height", None) + tradeTag = item.get("tradeTag", None) + icon = item.get("icon", "%NOT_FOUND%") + + out = { + "name": name, + "refName": name, + "namespace": namespace, + "icon": icon, + } + + if tradeTag: + out.update({"tradeTag": tradeTag}) + + if craftable: + out.update({"craftable": craftable}) + + if armour: + out.update({"armour": armour}) + + if width: + out.update({"w": width}) + + if height: + out.update({"h": height}) + + if gem: + out.update({"gem": gem}) + + f.write(json.dumps(out) + "\n") + + for item in self.unique_items: + f.write(json.dumps(item) + "\n") + + f.close() + + # somehow not a thing? - possibly missing some data + self.mods["physical_local_damage_+%"] = { + "ref": "#% increased Physical Damage", + "better": 1, + "id": "physical_local_damage_+%", + "matchers": [{"string": "#% increased Physical Damage"}], + "trade": { + "ids": { + "explicit": ["explicit.stat_419810844"], + "fractured": ["fractured.stat_419810844"], + "rune": ["rune.stat_419810844"], + } + }, } - if tradeTag: - out.update({ - "tradeTag": tradeTag - }) - - if craftable: - out.update({ - "craftable": craftable - }) - - if armour: - out.update({ - "armour": armour - }) - - if width: - out.update({ - "w": width - }) - - if height: - out.update({ - "h": height - }) - - if gem: - out.update({ - "gem": gem - }) - - f.write(json.dumps(out) + "\n") - - for item in unique_items: - f.write(json.dumps(item) + "\n") - - f.close() - - # somehow not a thing? - possibly missing some data - mods["physical_local_damage_+%"] = { - "ref": "#% increased Physical Damage", "better": 1, "id": "physical_local_damage_+%", "matchers": [{"string": "#% increased Physical Damage"}], "trade": {"ids": {"explicit": ["explicit.stat_419810844"], "fractured": ["fractured.stat_419810844"], "rune": ["rune.stat_419810844"]}} - } - - seen = set() - m = open(f"{out_dir}/stats.ndjson", "w", encoding="utf-8") - for mod in mods.values(): - id = mod.get("id") - - if id in seen: - continue - - m.write(json.dumps(mod) + "\n") - seen.add(id) - m.close() - - with open(f"{get_script_dir()}/pyDumps/items_dump.json", "w", encoding="utf-8") as f: - f.write(json.dumps(items, indent=4)) - - with open(f"{get_script_dir()}/pyDumps/mods_dump.json", "w", encoding="utf-8") as f: - f.write(json.dumps(mods, indent=4)) + seen = set() + m = open(f"{self.out_dir}/stats.ndjson", "w", encoding="utf-8") + for mod in self.mods.values(): + id = mod.get("id") -if __name__ == "__main__": - parse_trade_ids() - parse_mods() - parse_categories() - parse_items() - resolve_item_classes() - parse_trade_exchange_items() - write_to_file() + if id in seen: + continue + + m.write(json.dumps(mod) + "\n") + seen.add(id) + m.close() + + with open( + f"{self.get_script_dir()}/pyDumps/{self.lang+'-out'}/items_dump.json", + "w", + encoding="utf-8", + ) as f: + f.write(json.dumps(self.items, indent=4)) + + with open( + f"{self.get_script_dir()}/pyDumps/{self.lang+'-out'}/mods_dump.json", + "w", + encoding="utf-8", + ) as f: + f.write(json.dumps(self.mods, indent=4)) + + with open( + f"{self.get_script_dir()}/pyDumps/{self.lang+'-out'}/matchers_no_trade_ids.json", + "w", + encoding="utf-8", + ) as f: + f.write(json.dumps(self.matchers_no_trade_ids, indent=4)) + + def run(self): + self.parse_trade_ids() + self.parse_mods() + self.parse_categories() + self.parse_items() + self.resolve_item_classes() + self.parse_trade_exchange_items() + self.write_to_file() + +if __name__ == "__main__": + Parser().run() diff --git a/renderer/public/.DS_Store/vendor/client/parserRunner.py b/renderer/public/.DS_Store/vendor/client/parserRunner.py new file mode 100644 index 000000000..9701295c1 --- /dev/null +++ b/renderer/public/.DS_Store/vendor/client/parserRunner.py @@ -0,0 +1,9 @@ +from parser import Parser + +SUPPORTED_LANGUAGES = ["en", "ru"] + +if __name__ == "__main__": + for lang in SUPPORTED_LANGUAGES: + print(f"Generating {lang} tables") + parser = Parser(lang) + parser.run() diff --git a/renderer/public/.DS_Store/vendor/client/pyDumps/items_dump.json b/renderer/public/.DS_Store/vendor/client/pyDumps/en-out/items_dump.json similarity index 100% rename from renderer/public/.DS_Store/vendor/client/pyDumps/items_dump.json rename to renderer/public/.DS_Store/vendor/client/pyDumps/en-out/items_dump.json diff --git a/renderer/public/.DS_Store/vendor/client/pyDumps/en-out/matchers_no_trade_ids.json b/renderer/public/.DS_Store/vendor/client/pyDumps/en-out/matchers_no_trade_ids.json new file mode 100644 index 000000000..999270f0f --- /dev/null +++ b/renderer/public/.DS_Store/vendor/client/pyDumps/en-out/matchers_no_trade_ids.json @@ -0,0 +1,5812 @@ +[ + "Allies in your Presence have +#% to all Elemental Resistances", + "Allies in your Presence have +#% to all Elemental Resistances", + "Allies in your Presence have +#% to all Elemental Resistances", + "Allies in your Presence have +#% to all Elemental Resistances", + "Allies in your Presence have +#% to all Elemental Resistances", + "Allies in your Presence have +#% to all Elemental Resistances", + "No Physical Damage", + "No Physical Damage", + "No Physical Damage", + "No Physical Damage", + "No Physical Damage", + "No Physical Damage", + "No Physical Damage", + "No Physical Damage", + "No Physical Damage", + "No Physical Damage", + "No Physical Damage", + "No Physical Damage", + "No Physical Damage", + "No Physical Damage", + "No Physical Damage", + "No Physical Damage", + "#% increased Trap Damage", + "#% reduced Trap Damage", + "#% increased Trap Damage", + "#% reduced Trap Damage", + "#% increased Trap Damage", + "#% reduced Trap Damage", + "#% increased Trap Damage", + "#% reduced Trap Damage", + "#% increased Trap Damage", + "#% reduced Trap Damage", + "#% increased Trap Damage", + "#% reduced Trap Damage", + "#% increased Trap Damage", + "#% reduced Trap Damage", + "#% increased Trap Damage", + "#% reduced Trap Damage", + "#% increased Trap Damage", + "#% reduced Trap Damage", + "#% increased Trap Damage", + "#% reduced Trap Damage", + "#% increased Trap Damage", + "#% reduced Trap Damage", + "#% increased Trap Damage", + "#% reduced Trap Damage", + "#% increased Trap Damage", + "#% reduced Trap Damage", + "#% increased Trap Damage", + "#% reduced Trap Damage", + "#% increased Trap Damage", + "#% reduced Trap Damage", + "# to Level of all Trap Skill Gems", + "# to Level of all Trap Skill Gems", + "# to Level of all Trap Skill Gems", + "# to Level of all Trap Skill Gems", + "# to Level of all Trap Skill Gems", + "# to Level of all Trap Skill Gems", + "# to Level of all Trap Skill Gems", + "# to Level of all Trap Skill Gems", + "#% increased Trap Throwing Speed", + "#% reduced Trap Throwing Speed", + "#% increased Trap Throwing Speed", + "#% reduced Trap Throwing Speed", + "#% increased Trap Throwing Speed", + "#% reduced Trap Throwing Speed", + "#% increased Trap Throwing Speed", + "#% reduced Trap Throwing Speed", + "#% increased Trap Throwing Speed", + "#% reduced Trap Throwing Speed", + "#% increased Trap Throwing Speed", + "#% reduced Trap Throwing Speed", + "#% increased Trap Throwing Speed", + "#% reduced Trap Throwing Speed", + "Allies in your Presence have +# to Accuracy Rating", + "Allies in your Presence have +# to Accuracy Rating", + "Allies in your Presence have +# to Accuracy Rating", + "Allies in your Presence have +# to Accuracy Rating", + "Allies in your Presence have +# to Accuracy Rating", + "Allies in your Presence have +# to Accuracy Rating", + "Allies in your Presence have +# to Accuracy Rating", + "Allies in your Presence have +# to Accuracy Rating", + "#% increased Critical Hit Chance with Traps", + "#% reduced Critical Hit Chance with Traps", + "#% increased Critical Hit Chance with Traps", + "#% reduced Critical Hit Chance with Traps", + "#% increased Critical Hit Chance with Traps", + "#% reduced Critical Hit Chance with Traps", + "#% increased Critical Hit Chance with Traps", + "#% reduced Critical Hit Chance with Traps", + "#% increased Critical Hit Chance with Traps", + "#% reduced Critical Hit Chance with Traps", + "#% increased Critical Hit Chance with Traps", + "#% reduced Critical Hit Chance with Traps", + "#% to Critical Damage Bonus with Traps", + "#% to Critical Damage Bonus with Traps", + "#% to Critical Damage Bonus with Traps", + "#% to Critical Damage Bonus with Traps", + "#% to Critical Damage Bonus with Traps", + "#% to Critical Damage Bonus with Traps", + "#% increased Trap Trigger Area of Effect", + "#% reduced Trap Trigger Area of Effect", + "#% increased Trap Trigger Area of Effect", + "#% reduced Trap Trigger Area of Effect", + "#% increased Trap Trigger Area of Effect", + "#% reduced Trap Trigger Area of Effect", + "#% increased Trap Trigger Area of Effect", + "#% reduced Trap Trigger Area of Effect", + "#% increased Trap Trigger Area of Effect", + "#% reduced Trap Trigger Area of Effect", + "Attacks cannot cause Bleeding", + "Has no Accuracy Penalty from Range", + "#% increased Damage taken", + "#% reduced Damage taken", + "Always Hits", + "Crushes Enemies on Hit", + "Uses both hand slots", + "Grants # Mana per Enemy Hit", + "Removes # of your Mana per Enemy Hit", + "Breaks # Armour on Critical Hit", + "Unblockable", + "#% increased Projectile Range", + "#% reduced Projectile Range", + "# to maximum number of Summoned Ballista Totems", + "#% increased Cooldown Recovery Rate for throwing Traps", + "#% reduced Cooldown Recovery Rate for throwing Traps", + "#% increased Damage with Axes", + "#% reduced Damage with Axes", + "#% increased Attack Speed with Axes", + "#% reduced Attack Speed with Axes", + "#% increased Critical Hit Chance with Daggers", + "#% reduced Critical Hit Chance with Daggers", + "#% increased Damage with Daggers", + "#% reduced Damage with Daggers", + "#% increased Attack Speed with Daggers", + "#% reduced Attack Speed with Daggers", + "#% increased Critical Hit Chance with Flails", + "#% reduced Critical Hit Chance with Flails", + "#% increased Damage with Flails", + "#% reduced Damage with Flails", + "Minions have +#% to Chaos Resistance", + "Minions have +#% to all Elemental Resistances", + "#% increased Attack Speed with Spears", + "#% reduced Attack Speed with Spears", + "#% increased Critical Hit Chance with Spears", + "#% reduced Critical Hit Chance with Spears", + "#% increased Damage with Spears", + "#% reduced Damage with Spears", + "#% increased Damage with Swords", + "#% reduced Damage with Swords", + "#% increased Attack Speed with Swords", + "#% reduced Attack Speed with Swords", + "#% increased Trap Damage", + "#% reduced Trap Damage", + "#% increased Trap Throwing Speed", + "#% reduced Trap Throwing Speed", + "#% increased Damage with Unarmed Attacks", + "#% reduced Damage with Unarmed Attacks", + "#% increased Unarmed Attack Speed", + "#% reduced Unarmed Attack Speed", + "#% increased Damage with Axes", + "#% reduced Damage with Axes", + "#% increased Attack Speed with Axes", + "#% reduced Attack Speed with Axes", + "#% increased Critical Hit Chance with Daggers", + "#% reduced Critical Hit Chance with Daggers", + "#% increased Damage with Daggers", + "#% reduced Damage with Daggers", + "#% increased Attack Speed with Daggers", + "#% reduced Attack Speed with Daggers", + "#% increased Critical Hit Chance with Flails", + "#% reduced Critical Hit Chance with Flails", + "#% increased Damage with Flails", + "#% reduced Damage with Flails", + "Minions have +#% to Chaos Resistance", + "Minions have +#% to all Elemental Resistances", + "#% increased Attack Speed with Spears", + "#% reduced Attack Speed with Spears", + "#% increased Critical Hit Chance with Spears", + "#% reduced Critical Hit Chance with Spears", + "#% increased Damage with Spears", + "#% reduced Damage with Spears", + "#% increased Damage with Swords", + "#% reduced Damage with Swords", + "#% increased Attack Speed with Swords", + "#% reduced Attack Speed with Swords", + "#% increased Trap Damage", + "#% reduced Trap Damage", + "#% increased Trap Throwing Speed", + "#% reduced Trap Throwing Speed", + "#% increased Damage with Unarmed Attacks", + "#% reduced Damage with Unarmed Attacks", + "#% increased Unarmed Attack Speed", + "#% reduced Unarmed Attack Speed", + "# to Level of all Trap Skill Gems", + "No Physical Damage", + "No Physical Damage", + "No Physical Damage", + "No Physical Damage", + "No Physical Damage", + "No Physical Damage", + "No Physical Damage", + "No Physical Damage", + "No Physical Damage", + "# to Level of all Elemental Skills", + "# to # Cold Thorns damage", + "No Physical Damage", + "No Physical Damage", + "#% increased Attack Damage when on Low Life", + "#% reduced Attack Damage when on Low Life", + "#% increased Attack Damage while not on Low Mana", + "#% reduced Attack Damage while not on Low Mana", + "Damage over Time bypasses your Energy Shield\\nWhile not on Full Life, Sacrifice #% of Mana per Second to Recover that much Life", + "You can apply one fewer Curse", + "Your Maximum Resistances are #%", + "#% more Physical Damage with Unarmed Melee Attacks", + "#% less Physical Damage with Unarmed Melee Attacks", + "Regenerate #% of Life per second per Endurance Charge", + "Targets can be affected by +# of your Poisons at the same time", + "Your Minions spread Caustic Ground on Death, dealing #% of their maximum Life as Chaos Damage per second", + "Gain #% of Physical Damage as Extra Damage of each Element with Attacks", + "When a Party Member in your Presence Casts a Spell, you\\nSacrifice #% of Mana and they Leech that Mana", + "Reflects # to # Lightning Damage to Melee Attackers", + "Damage cannot bypass Energy Shield", + "Projectiles Split towards +# targets", + "Minions deal #% of your Life as additional Cold Damage with Attacks", + "Reserves #% of Life", + "#% of Elemental Damage from Hits taken as Chaos Damage", + "#% chance to be Poisoned", + "Unaffected by Curses", + "Curse Reflection", + "You are Chilled while you are Bleeding", + "You are Chilled when you are Poisoned", + "Non-Chilled Enemies you inflict Bleeding on are Chilled", + "Non-Chilled Enemies you Poison are Chilled", + "#% of Physical damage from Hits taken as Lightning damage", + "You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently", + "Soul Eater", + "Enemies you Curse are Intimidated", + "#% reduced Elemental Ailment Duration on you", + "#% increased Elemental Ailment Duration on you", + "1% increased Movement Speed per # Evasion Rating\\nOther Modifiers to Movement Speed do not apply", + "Increases and Reductions to Spell Damage also apply to Attacks", + "# to maximum number of Summoned Totems", + "Inflicts a random Hex on you when your Totems die", + "Corpses in your Presence Explode when you Warcry,\\ndealing #% of their Life as Physical Damage", + "Totems Reflect #% of their maximum Life as Fire Damage to nearby Enemies when Hit", + "#% to Melee Critical Damage Bonus", + "#% increased Physical Damage taken", + "#% reduced Physical Damage taken", + "Gain # Rage after Spending a total of 200 Mana", + "Rage grants Spell Damage instead of Attack Damage", + "Minions in Presence lose Life when you lose Life\\nMinions in Presence gain Life when you gain Life", + "This Weapon's Critical Hit Chance is {0:d}%", + "DNT Trigger Gas Cloud Skill on Hitting with your Main Hand", + "DNT Trigger Detonation Skill on Hitting with your Off Hand", + "Skills have +# seconds to Cooldown", + "Alternating every 5 seconds:\\nTake #% more Damage from Hits\\nTake #% more Damage over time", + "Alternating every 5 seconds:\\nTake #% less Damage from Hits\\nTake #% less Damage over time", + "# to Spirit per Socketed Rune or Soul Core", + "#% to all Elemental Resistances per Socketed Rune or Soul Core", + "-#% to all Elemental Resistances per Socketed Rune or Soul Core", + "On Hitting an enemy, gains maximum added Lightning damage equal to\\nthe enemy's Power for 6 seconds, up to a total of #", + "#% chance for Trigger skills to refund half of Energy Spent", + "#% of Fire Damage Converted to Lightning Damage", + "Can have a second Instilled Modifier", + "Poison on Hit", + "Inflict Bleeding on Hit", + "Cannot be Stunned", + "Break Armour equal to #% of Physical Damage dealt", + "Skills fire an additional Projectile", + "DNT #% more Area of Effect", + "DNT #% less Area of Effect", + "All Damage from Hits Contributes to Ignite Chance and Magnitude", + "All Damage from Hits Contributes to Chill Magnitude", + "All Damage from Hits Contributes to Shock Chance", + "DNT #% more Slowing Potency of Debuffs against this monster", + "DNT #% less Slowing Potency of Debuffs against this monster", + "DNT #% less Life Leeched from", + "DNT #% more Life Leeched from", + "Hexproof", + "Skills Chain +# times", + "Projectiles gain Damage as they travel farther, dealing up\\nto #% increased Damage with Hits to targets", + "#% reduced Action Speed", + "#% increased Action Speed", + "Cannot Recover Life or Energy Shield to above #%", + "Hexproof", + "Hexproof", + "#% Monster Elemental Resistances", + "#% Monster Elemental Resistances", + "#% Monster Elemental Resistances", + "#% increased Waystones found in Area", + "Expeditions in Area have +# Remnants", + "# to Monster Level of Area", + "Slaying Enemies has a #% increased chance to spawn Coalesced Corruption", + "Slaying Enemies has a #% reduced chance to spawn Coalesced Corruption", + "Monsters drop no items", + "#% increased Quantity of Items Found from Chests", + "#% reduced Quantity of Items Found from Chests", + "{{#% increased Rarity of Items Found in Excavated Chests}}", + "{{#% reduced Rarity of Items Found in Excavated Chests}}", + "Contains an additional Unique Item", + "# Chest level", + "Contains Identified Items", + "Contained Items have #% Quality", + "Contained Items have an additional Socket", + "Contains # additional Rune", + "Contains # additional Djinn Barya", + "Contains # additional Inscribed Ultimatum", + "Contains # additional Unusual Tablet", + "#% chance to Avoid All Damage from Hits", + "Your Hits can't be Evaded", + "Monsters' Hits are always Critical Hits", + "Hits against Monsters cannot be Critical Hits", + "Life cannot be Leeched from Monsters", + "{{Monsters are Immune to Physical Damage}}", + "Immune to Cold Damage", + "Immune to lightning Damage", + "Immune to Fire Damage", + "Provides Immunity to Chaos Damage", + "#% chance to Avoid being Chilled", + "Runic Monsters apply a random Curse on Hit", + "Hexproof", + "Break Armour equal to #% of Physical Damage dealt", + "Monsters do not grant Flask Charges when Slain", + "Every 4 seconds, Regenerate #% of Life over one second", + "#% increased Attack Speed when on Low Life", + "#% reduced Attack Speed when on Low Life", + "#% increased Critical Hit Chance against Enemies on Full Life", + "#% reduced Critical Hit Chance against Enemies on Full Life", + "Attacks cannot cause Bleeding", + "Poison on Hit", + "Damage Penetrates #% Chaos Resistance", + "Your Hits treat Chaos Resistance as #% higher than actual value", + "{{Runic Monsters are Duplicated}}", + "#% increased Item Quantity", + "#% reduced Item Quantity", + "#% increased Quantity of Items Found from Chests", + "#% reduced Quantity of Items Found from Chests", + "#% increased Item Rarity", + "#% reduced Item Rarity", + "{{#% increased Rarity of Items Found in Excavated Chests}}", + "{{#% reduced Rarity of Items Found in Excavated Chests}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{#% increased Quantity of Artifacts dropped by Monsters}}", + "{{#% increased Quantity of Artifacts found in Excavated Chests}}", + "{{#% reduced Quantity of Artifacts found in Excavated Chests}}", + "{{Monsters spawn with an additional #% of Life missing}}", + "#% increased Item Rarity", + "#% reduced Item Rarity", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Items dropped by Monsters have #% chance to be Corrupted}}", + "#% more Magnitude of Ignite inflicted", + "#% less Magnitude of Ignite inflicted", + "#% increased Quantity of Items found", + "#% reduced Quantity of Items found", + "Gain #% of Physical Damage as Extra Fire Damage", + "Gain #% of Physical Damage as Extra Cold Damage", + "Gain #% of Physical Damage as Extra Lightning Damage", + "#% more Attack Speed", + "#% less Attack Speed", + "Skills fire an additional Projectile", + "Cannot be Stunned", + "Cannot be Stunned", + "#% of Maximum Life taken per second as Chaos Damage", + "#% of Maximum Life taken per second as Chaos Damage", + "#% of Maximum Life taken per second as Chaos Damage", + "#% of Maximum Life taken per second as Chaos Damage", + "#% of Maximum Life taken per second as Chaos Damage", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "#% more maximum Life", + "#% less maximum Life", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "#% more maximum Life", + "#% less maximum Life", + "#% increased Character Size", + "#% reduced Character Size", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "#% more maximum Life", + "#% less maximum Life", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "#% more maximum Life", + "#% less maximum Life", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "#% more maximum Life", + "#% less maximum Life", + "Gain #% of Physical Damage as Extra Fire Damage", + "Gain #% of Physical Damage as Extra Cold Damage", + "Gain #% of Physical Damage as Extra Lightning Damage", + "Gain #% of Physical Damage as Extra Cold Damage", + "Monsters do not grant Flask Charges when Slain", + "Curse Enemies with Vulnerability on Hit", + "#% chance to Curse Enemies with Vulnerability on Hit", + "#% increased Stun Duration on you", + "#% reduced Stun Duration on you", + "#% increased Stun Duration on you", + "#% reduced Stun Duration on you", + "#% increased Stun Duration on you", + "#% reduced Stun Duration on you", + "Your Hits can't be Evaded", + "#% increased Character Size", + "#% reduced Character Size", + "#% increased Character Size", + "#% reduced Character Size", + "#% increased Character Size", + "#% reduced Character Size", + "#% increased Character Size", + "#% reduced Character Size", + "#% increased Character Size", + "#% reduced Character Size", + "#% increased Character Size", + "#% reduced Character Size", + "#% of Physical Damage Converted to Fire Damage", + "#% of Physical Damage Converted to Fire Damage", + "#% of Physical Damage Converted to Fire Damage", + "#% of Physical Damage Converted to Cold Damage", + "#% of Physical Damage Converted to Cold Damage", + "#% of Physical Damage Converted to Cold Damage", + "#% of Physical Damage Converted to Lightning Damage", + "#% of Physical Damage Converted to Chaos Damage", + "#% more Cast Speed", + "#% less Cast Speed", + "#% more Cast Speed", + "#% less Cast Speed", + "Never deal Critical Hits", + "Never deal Critical Hits", + "Cannot be Stunned", + "Cannot be Stunned", + "You can apply one fewer Curse", + "You can apply one fewer Curse", + "You can apply one fewer Curse", + "You can apply one fewer Curse", + "You can apply one fewer Curse", + "You can apply one fewer Curse", + "#% of Physical Damage Converted to Fire Damage", + "#% of Physical Damage Converted to Fire Damage", + "#% of Physical Damage Converted to Fire Damage", + "#% of Physical Damage Converted to Fire Damage", + "#% of Physical Damage Converted to Fire Damage", + "#% of Physical Damage Converted to Fire Damage", + "Hexproof", + "#% chance to gain an Endurance Charge on Hit", + "#% chance to gain a Frenzy Charge on Hit", + "#% chance to gain a Frenzy Charge on Hit", + "Curse Immune", + "You can apply one fewer Curse", + "Hexproof", + "#% chance to gain a Frenzy Charge on Hit", + "#% chance to gain an Endurance Charge on Hit", + "#% chance to gain a Frenzy Charge on Hit", + "#% chance to gain an Endurance Charge on Hit", + "#% increased Cast Speed per Power Charge", + "#% increased Damage taken", + "#% reduced Damage taken", + "#% increased Damage taken", + "#% reduced Damage taken", + "Acrobatics", + "Has no Sockets", + "Unaffected by Shock", + "#% chance to Avoid being Shocked", + "#% chance to Avoid being Shocked", + "#% chance to Avoid being Shocked", + "#% chance to Avoid being Shocked", + "#% chance to Avoid being Shocked", + "#% chance to Avoid being Shocked", + "Reflects # Physical Damage to Melee Attackers", + "Reflects # Physical Damage to Melee Attackers", + "Reflects # Physical Damage to Melee Attackers", + "Reflects # Physical Damage to Melee Attackers", + "Reflects # Physical Damage to Melee Attackers", + "Reflects # Physical Damage to Melee Attackers", + "Reflects # Physical Damage to Melee Attackers", + "Reflects # Physical Damage to Melee Attackers", + "Reflects # Physical Damage to Melee Attackers", + "Reflects # Physical Damage to Melee Attackers", + "Reflects # Physical Damage to Melee Attackers", + "Reflects # Physical Damage to Melee Attackers", + "Reflects # Physical Damage to Melee Attackers", + "Reflects # Physical Damage to Melee Attackers", + "Reflects # Physical Damage to Melee Attackers", + "Reflects # Physical Damage to Melee Attackers", + "Reflects # Physical Damage to Melee Attackers", + "Reflects # Physical Damage to Melee Attackers", + "Reflects # Physical Damage to Melee Attackers", + "Reflects # Cold Damage to Melee Attackers", + "Reflects # Cold Damage to Melee Attackers", + "Reflects # Physical Damage to Melee Attackers", + "Reflects # to # Physical Damage to Melee Attackers", + "#% chance to Avoid being Chilled", + "#% chance to Avoid being Chilled", + "#% chance to Avoid being Chilled", + "Cannot be Chilled", + "Cannot be Chilled", + "#% chance to Avoid being Chilled", + "#% chance to Avoid being Chilled", + "#% chance to Avoid being Chilled", + "#% chance to Avoid being Chilled", + "#% chance to Avoid being Chilled", + "#% chance to Avoid being Chilled", + "#% chance to Avoid being Chilled", + "#% increased Mana Cost of Skills when on Low Life", + "#% reduced Mana Cost of Skills when on Low Life", + "#% to all Elemental Resistances while on Low Life", + "# to Evasion Rating while on Low Life", + "#% increased Movement Speed when on Low Life", + "#% reduced Movement Speed when on Low Life", + "#% increased Movement Speed when on Low Life", + "#% reduced Movement Speed when on Low Life", + "#% increased Movement Speed when on Low Life", + "#% reduced Movement Speed when on Low Life", + "#% increased Movement Speed when on Low Life", + "#% reduced Movement Speed when on Low Life", + "#% increased Movement Speed when on Low Life", + "#% reduced Movement Speed when on Low Life", + "#% increased Movement Speed when on Low Life", + "#% reduced Movement Speed when on Low Life", + "#% increased Movement Speed when on Low Life", + "#% reduced Movement Speed when on Low Life", + "#% of Physical Damage Converted to Cold Damage", + "Gain #% of Physical Damage as Extra Cold Damage", + "#% of Physical Damage Converted to Cold Damage", + "#% of Physical Damage Converted to Cold Damage", + "#% of Physical Damage Converted to Cold Damage", + "#% of Physical Damage Converted to Cold Damage", + "#% of Physical Damage Converted to Lightning Damage", + "#% of Physical Damage Converted to Lightning Damage", + "#% of Physical Damage Converted to Lightning Damage", + "#% of Physical Damage Converted to Lightning Damage", + "#% of Physical Damage Converted to Lightning Damage", + "#% of Physical Damage Converted to Lightning Damage", + "#% increased Attack Speed when on Full Life", + "#% reduced Attack Speed when on Full Life", + "#% increased Attack Speed when on Full Life", + "#% reduced Attack Speed when on Full Life", + "Conduit", + "Area has Damaging Totems", + "Monsters Fracture", + "Area is inhabited by # additional Rogue Exile", + "Unique Boss has #% increased Life", + "Unique Boss has #% reduced Life", + "Unique Boss has #% increased Life", + "Unique Boss has #% reduced Life", + "Unique Boss has #% increased Life", + "Unique Boss has #% reduced Life", + "Monsters cannot be Stunned", + "Area contains no monsters", + "Monsters drop no items", + "Area is inhabited by wild Animals", + "#% Chance to Block", + "#% Chance to Block", + "#% Chance to Block", + "#% Chance to Block", + "#% Chance to Block", + "#% Chance to Block", + "#% Chance to Block", + "#% Chance to Block", + "#% Chance to Block", + "#% Chance to Block", + "#% Chance to Block", + "#% Chance to Block", + "#% Chance to Block", + "#% Chance to Block", + "#% Chance to Block", + "#% Chance to Block", + "#% Chance to Block", + "#% Chance to Block", + "#% Chance to Block", + "#% Chance to Block", + "#% Chance to Block", + "#% Chance to Block", + "#% Chance to Block", + "#% Chance to Block", + "#% Chance to Block", + "#% Chance to Block", + "#% Chance to Block", + "#% Chance to Block Spell Damage while on Low Life", + "#% Chance to Block Spell Damage", + "#% Chance to Block Spell Damage", + "#% Chance to Block Spell Damage", + "#% Chance to Block Spell Damage", + "#% Chance to Block Spell Damage", + "#% Chance to Block Spell Damage", + "#% Chance to Block Spell Damage while on Low Life", + "#% Chance to Block Spell Damage", + "#% Chance to Block Spell Damage", + "#% Chance to Block Spell Damage", + "#% Chance to Block Spell Damage", + "#% Chance to Block Spell Damage", + "Reflects # Cold Damage to Melee Attackers", + "Cannot be Stunned", + "Locks enemy in place", + "Locks enemy in place", + "Attacks cannot cause Bleeding", + "Gain #% of Physical Damage as Extra Lightning Damage", + "Attacks have #% chance to Maim on Hit", + "Cannot be Stunned", + "#% of Physical Damage Converted to Cold Damage", + "#% of Physical Damage Converted to Cold Damage", + "#% of Physical Damage Converted to Fire Damage", + "#% chance to Ignite", + "#% chance to Ignite", + "#% chance to Ignite", + "Burns Ground on Death", + "Spreads Caustic Ground on Death", + "Spreads Caustic Ground on Death", + "Spreads Caustic Ground on Death", + "Spreads Caustic Ground on Death", + "Spreads Caustic Ground on Death", + "Burns Ground on Death", + "Burns Ground on Death", + "#% of Physical Damage Converted to Lightning Damage", + "#% of Physical Damage Converted to Lightning Damage", + "#% of Physical Damage Converted to Fire Damage", + "#% of Physical Damage Converted to Fire Damage", + "#% of Physical Damage Converted to Chaos Damage", + "#% of Physical Damage Converted to Chaos Damage", + "Skills fire an additional Projectile", + "Skills fire an additional Projectile", + "Skills fire an additional Projectile", + "#% increased Area of Effect of Aura Skills", + "#% reduced Area of Effect of Aura Skills", + "Curse Enemies with Enfeeble on Hit", + "Curse Enemies with Temporal Chains on Hit", + "Curse Enemies with Temporal Chains on Hit", + "Curse Enemies with Temporal Chains on Hit", + "#% chance to Curse Enemies with Vulnerability on Hit", + "#% chance to Curse Enemies with Vulnerability on Hit", + "Curse Enemies with Flammability on Hit", + "Gain #% of Physical Damage as Extra Cold Damage", + "Gain #% of Physical Damage as Extra Cold Damage", + "Gain #% of Physical Damage as Extra Cold Damage", + "Gain #% of Physical Damage as Extra Cold Damage", + "Gain #% of Physical Damage as Extra Fire Damage", + "Gain #% of Physical Damage as Extra Fire Damage", + "Gain #% of Physical Damage as Extra Fire Damage", + "Gain #% of Physical Damage as Extra Fire Damage", + "Gain #% of Physical Damage as Extra Fire Damage", + "Gain #% of Physical Damage as Extra Fire Damage", + "Gain #% of Physical Damage as Extra Lightning Damage", + "Gain #% of Physical Damage as Extra Lightning Damage", + "Gain #% of Physical Damage as Extra Lightning Damage", + "Gain #% of Physical Damage as Extra Lightning Damage", + "Gain #% of Physical Damage as Extra Lightning Damage", + "Curse Skills have #% increased Cast Speed", + "Curse Skills have #% reduced Cast Speed", + "# to maximum number of Summoned Totems", + "# to maximum number of Summoned Totems", + "# to maximum number of Summoned Totems", + "# to maximum number of Summoned Totems", + "Ancestral Bond", + "# to Melee Strike Range", + "Gain a Frenzy Charge on Critical Hit", + "Uses both hand slots", + "Uses both hand slots", + "#% to all maximum Resistances", + "#% to all maximum Resistances", + "#% to all maximum Resistances", + "#% to all maximum Resistances", + "Socketed Gems are Supported by Level # Concentrated Effect", + "Socketed Gems are Supported by Level # Concentrated Effect", + "Socketed Gems are Supported by Level # Concentrated Effect", + "Socketed Gems are Supported by Level # Concentrated Effect", + "Socketed Gems are Supported by Level # Fire Penetration", + "Socketed Gems are Supported by Level # Added Fire Damage", + "Socketed Gems are Supported by Level # Cold to Fire", + "Socketed Gems are Supported by Level # Cold to Fire", + "Socketed Gems are Supported by Level # Cold to Fire", + "When you generate an Endurance Charge, Allies in your Presence generate that Charge instead", + "Gain an Endurance Charge when you take a Critical Hit", + "Chills Ground on Death", + "Spreads Tar on Death", + "Socketed Gems are supported by Level # Blind", + "Socketed Gems are supported by Level # Blind", + "Socketed Gems are supported by Level # Blind", + "Socketed Gems are supported by Level # Blind", + "Chests have #% increased Item Rarity", + "Chests have #% reduced Item Rarity", + "All Chests are Magic or Rare", + "Monsters' Hits are always Critical Hits", + "Monsters' Hits are always Critical Hits", + "Can raise Magic monsters", + "Can raise Magic monsters", + "#% more Physical Damage with Unarmed Melee Attacks", + "#% less Physical Damage with Unarmed Melee Attacks", + "Socketed Gems are Supported by Level # Pulverise", + "Socketed Gems are Supported by Level # Increased Area of Effect", + "Socketed Gems are Supported by Level # Increased Area of Effect", + "Socketed Gems are Supported by Level 10 Intensify", + "Life cannot be Leeched from Monsters", + "Extra gore", + "Extra gore", + "Has one socket of each colour", + "#% Chance to Block Attack Damage while Dual Wielding", + "#% Chance to Block Attack Damage while Dual Wielding", + "#% Chance to Block Attack Damage while Dual Wielding", + "#% Chance to Block Attack Damage while Dual Wielding", + "#% Chance to Block Attack Damage while Dual Wielding", + "#% Chance to Block Attack Damage while Dual Wielding", + "# to Level of all Raise Zombie Gems", + "Limit # Raised Zombie", + "Limit # Raised Zombie", + "Limit # Raised Zombie", + "Limit # Raised Zombie", + "Limit # Raised Zombie", + "Limit # Raised Zombie", + "#% increased Skeleton Movement Speed", + "#% reduced Skeleton Movement Speed", + "Limit # Raised Zombie", + "Limit # Raised Zombie", + "#% increased Skeleton Movement Speed", + "#% reduced Skeleton Movement Speed", + "#% increased Skeleton Attack Speed", + "#% reduced Skeleton Attack Speed", + "#% increased Skeleton Cast Speed", + "#% reduced Skeleton Cast Speed", + "Socketed Gems Cost and Reserve Life instead of Mana", + "Socketed Gems Cost and Reserve Life instead of Mana", + "Socketed Gems Cost and Reserve Life instead of Mana", + "# to Level of Socketed Aura Gems", + "Socketed Gems have #% chance to cause Enemies to Flee on Hit", + "Reflects # to # Lightning Damage to Melee Attackers", + "Reflects # to # Lightning Damage to Melee Attackers", + "#% of Physical Damage Converted to Chaos Damage", + "#% of Physical Damage Converted to Chaos Damage", + "#% of Physical Damage Converted to Chaos Damage", + "#% of Physical Damage Converted to Chaos Damage", + "#% of Physical Damage Converted to Chaos Damage per Level", + "Limit # Raised Zombie", + "Limit # Raised Zombie", + "Reserves #% of Life", + "# to Level of Socketed Strength Gems", + "Chaos Damage taken does not cause double loss of Energy Shield", + "Chaos Damage taken does not cause double loss of Energy Shield", + "#% of Physical Damage from Hits taken as Chaos Damage", + "#% more Damage with Arrow Hits at Close Range", + "Bow Knockback at Close Range", + "#% chance to Ignite", + "#% chance to Ignite", + "#% chance to Ignite", + "#% chance to Ignite", + "#% chance to Ignite", + "#% chance to Ignite", + "#% chance to Ignite", + "#% chance to Ignite", + "#% chance to Ignite", + "#% chance to Ignite", + "#% chance to Ignite", + "#% of Physical Damage from Hits taken as Fire Damage", + "#% of Physical Damage from Hits taken as Fire Damage", + "#% of Physical Damage from Hits taken as Fire Damage", + "Reflects # Fire Damage to Melee Attackers", + "#% chance to Avoid being Ignited", + "#% chance to Avoid being Ignited", + "#% chance to Avoid being Ignited", + "#% chance to Avoid being Ignited", + "#% increased Physical Damage with Ranged Weapons", + "#% reduced Physical Damage with Ranged Weapons", + "#% increased Physical Damage with Ranged Weapons", + "#% reduced Physical Damage with Ranged Weapons", + "Arrows Pierce all Targets", + "Arrows Pierce an additional Target", + "Arrows Pierce an additional Target", + "#% Chance to Block Attack Damage while Dual Wielding Claws", + "#% increased Armour against Projectiles", + "#% reduced Armour against Projectiles", + "#% chance to Block Projectile Attack Damage", + "#% chance to Block Projectile Attack Damage", + "#% chance to Block Projectile Attack Damage", + "#% chance to Block Projectile Attack Damage", + "#% chance to Block Projectile Attack Damage", + "#% chance to Block Projectile Attack Damage", + "#% chance to Block Projectile Attack Damage", + "#% Chance to Block Attack Damage", + "#% Chance to Block Attack Damage", + "#% Chance to Block Attack Damage", + "#% Chance to Block Attack Damage", + "#% Chance to Block Attack Damage", + "#% Chance to Block Attack Damage", + "#% Chance to Block Attack Damage", + "Cannot Leech", + "Socketed Gems have #% increased Reservation Efficiency", + "Socketed Gems have #% increased Reservation Efficiency", + "Socketed Gems have #% increased Reservation Efficiency", + "Socketed Gems have #% increased Reservation Efficiency", + "Always Freezes Enemies on Hit", + "Always Freezes Enemies on Hit", + "Always Freezes Enemies on Hit", + "Always Freezes Enemies on Hit", + "Always Freezes Enemies on Hit", + "Always Freezes Enemies on Hit", + "Always Freezes Enemies on Hit", + "Always Freezes Enemies on Hit", + "#% increased Intelligence Requirement", + "#% reduced Intelligence Requirement", + "#% increased Intelligence Requirement", + "#% reduced Intelligence Requirement", + "Socketed Gems are Supported by Level # Added Chaos Damage", + "Socketed Gems are Supported by Level # Added Chaos Damage", + "Socketed Gems are Supported by Level # Added Chaos Damage", + "Socketed Gems are Supported by Level # Added Chaos Damage", + "Recover Energy Shield equal to #% of Armour when you Block", + "Poisonous Hit", + "#% increased Skeleton Duration", + "#% reduced Skeleton Duration", + "#% increased Skeleton Duration", + "#% reduced Skeleton Duration", + "# Strength Requirement", + "# Strength Requirement", + "# Strength Requirement", + "# Strength Requirement", + "# Strength Requirement", + "# Dexterity Requirement", + "# Strength and Intelligence Requirement", + "#% increased Spell Damage taken when on Low Mana", + "#% reduced Spell Damage taken when on Low Mana", + "# to Evasion Rating while on Full Life", + "# to Evasion Rating while on Full Life", + "Curse Reflection", + "Removes Curses on use", + "Removes Curses on use", + "50% chance to cause Bleeding on Hit", + "25% chance to cause Bleeding on Hit", + "25% chance to cause Bleeding on Hit", + "25% chance to cause Bleeding on Hit", + "25% chance to cause Bleeding on Hit", + "#% chance to Cause Bleeding on Critical Hit", + "50% chance to cause Bleeding on Critical Hit", + "Attacks deal no Physical Damage", + "Golden Radiance", + "Cannot be Stunned when on Low Life", + "#% increased effect of Non-Curse Auras from your Skills", + "#% reduced effect of Non-Curse Auras from your Skills", + "#% increased effect of Non-Curse Auras from your Skills on your Minions", + "#% reduced effect of Non-Curse Auras from your Skills on your Minions", + "#% increased effect of Non-Curse Auras from your Skills", + "#% reduced effect of Non-Curse Auras from your Skills", + "#% increased effect of Non-Curse Auras from your Skills", + "#% reduced effect of Non-Curse Auras from your Skills", + "#% increased effect of Non-Curse Auras from your Skills on your Minions", + "#% reduced effect of Non-Curse Auras from your Skills on your Minions", + "#% increased Area Damage", + "#% reduced Area Damage", + "#% increased Area Damage", + "#% reduced Area Damage", + "#% increased Area Damage", + "#% reduced Area Damage", + "#% increased Area Damage", + "#% reduced Area Damage", + "#% increased Area Damage", + "#% reduced Area Damage", + "#% increased Global Damage", + "#% reduced Global Damage", + "#% increased Global Damage", + "#% reduced Global Damage", + "#% increased Global Damage", + "#% reduced Global Damage", + "Contains waves of Monsters", + "Contains additional waves of Undead Monsters", + "Curse Non-Cursed Enemies with Enfeeble on Hit", + "Spreads Tar when you take a Critical Hit", + "#% chance to spread Tar when Hit", + "Your Spells have Culling Strike", + "Monsters are Immune to randomly chosen Elemental Ailments or Stun", + "Monsters are Immune to randomly chosen Elemental Ailments or Stun", + "Monsters' Melee Attacks apply random Hexes on Hit", + "Monsters Reflect Hexes", + "#% increased Global Evasion Rating when on Low Life", + "#% reduced Global Evasion Rating when on Low Life", + "Life Leech from Hits with this Weapon is instant", + "#% reduced Mana Reservation Efficiency of Skills", + "#% increased Mana Reservation Efficiency of Skills", + "#% increased Mana Reservation Efficiency of Skills", + "#% reduced Mana Reservation Efficiency of Skills", + "#% reduced Mana Reservation Efficiency of Skills", + "#% increased Mana Reservation Efficiency of Skills", + "#% increased Mana Reservation Efficiency of Skills", + "#% reduced Mana Reservation Efficiency of Skills", + "#% reduced Reservation Efficiency of Skills", + "#% increased Reservation Efficiency of Skills", + "#% increased Reservation Efficiency of Skills", + "#% reduced Reservation Efficiency of Skills", + "#% reduced Reservation Efficiency of Skills", + "#% increased Reservation Efficiency of Skills", + "#% increased Reservation Efficiency of Skills", + "#% reduced Reservation Efficiency of Skills", + "#% reduced Mana Reservation Efficiency of Skills", + "#% increased Mana Reservation Efficiency of Skills", + "#% increased Mana Reservation Efficiency of Skills", + "#% reduced Mana Reservation Efficiency of Skills", + "#% reduced Reservation Efficiency of Skills", + "#% increased Reservation Efficiency of Skills", + "#% increased Reservation Efficiency of Skills", + "#% reduced Reservation Efficiency of Skills", + "#% reduced Mana Reservation Efficiency of Skills", + "#% increased Mana Reservation Efficiency of Skills", + "#% increased Reservation Efficiency of Skills", + "#% reduced Reservation Efficiency of Skills", + "#% increased Mana Reservation Efficiency of Skills", + "#% reduced Mana Reservation Efficiency of Skills", + "#% reduced Mana Reservation Efficiency of Skills", + "#% increased Mana Reservation Efficiency of Skills", + "#% reduced Mana Reservation Efficiency of Skills", + "#% increased Mana Reservation Efficiency of Skills", + "#% reduced Mana Reservation Efficiency of Skills", + "#% increased Mana Reservation Efficiency of Skills", + "#% reduced Mana Reservation Efficiency of Skills", + "#% increased Mana Reservation Efficiency of Skills", + "#% increased Mana Reservation Efficiency of Skills", + "#% reduced Mana Reservation Efficiency of Skills", + "#% increased Mana Reservation Efficiency of Skills", + "#% reduced Mana Reservation Efficiency of Skills", + "#% increased Mana Reservation Efficiency of Skills", + "#% reduced Mana Reservation Efficiency of Skills", + "#% increased Mana Reservation Efficiency of Skills", + "#% reduced Mana Reservation Efficiency of Skills", + "#% chance to Avoid being Ignited while on Low Life", + "Socketed Gems are Supported by Level # Elemental Proliferation", + "Socketed Gems are Supported by Level # Elemental Proliferation", + "#% increased Spark Duration", + "#% reduced Spark Duration", + "Area is a large Maze", + "Restless Dead", + "Area contains a Large Chest", + "# to Level of Socketed Movement Gems", + "Players deal #% more Projectile Damage", + "Players deal #% less Projectile Damage", + "Projectiles move at #% increased Speed", + "Projectiles move at #% reduced Speed", + "#% chance to Suppress Spell Damage per Frenzy Charge", + "#% increased Evasion Rating per Frenzy Charge", + "#% reduced Evasion Rating per Frenzy Charge", + "#% increased Frenzy Charge Duration", + "#% reduced Frenzy Charge Duration", + "#% increased Frenzy Charge Duration", + "#% reduced Frenzy Charge Duration", + "# to maximum number of Summoned Totems", + "# to maximum number of Summoned Totems", + "Socketed Gems are Supported by Level # Spell Totem", + "Socketed Gems are Supported by Level # Increased Duration", + "Inflicts a random Hex on you when your Totems die", + "Socketed Gems are Supported by Level # Added Lightning Damage", + "Socketed Gems are Supported by Level # Added Lightning Damage", + "#% increased Duration of Lightning Ailments", + "#% reduced Duration of Lightning Ailments", + "#% increased Duration of Lightning Ailments", + "#% reduced Duration of Lightning Ailments", + "#% increased Duration of Lightning Ailments", + "#% reduced Duration of Lightning Ailments", + "#% increased Physical Damage taken", + "#% reduced Physical Damage taken", + "#% increased Physical Damage taken", + "#% reduced Physical Damage taken", + "#% increased Physical Damage taken", + "#% reduced Physical Damage taken", + "Curse Enemies with Temporal Chains on Hit", + "#% to Melee Critical Damage Bonus", + "#% to Melee Critical Damage Bonus", + "#% increased effect of Curses on you", + "#% reduced effect of Curses on you", + "#% increased effect of Curses on you", + "#% reduced effect of Curses on you", + "#% increased effect of Curses on you", + "#% reduced effect of Curses on you", + "#% increased effect of Curses on you", + "#% reduced effect of Curses on you", + "Grants # Mana per Enemy Hit", + "Removes # of your Mana per Enemy Hit", + "Grants # Mana per Enemy Hit", + "Removes # of your Mana per Enemy Hit", + "Grants # Mana per Enemy Hit", + "Removes # of your Mana per Enemy Hit", + "Socketed Gems are supported by Level # Chance to Flee", + "Socketed Gems are supported by Level # Chance to Flee", + "Emits a golden glow", + "#% to Chaos Resistance when on Low Life", + "Enemy hits on you roll low Damage", + "Socketed Gems are Supported by Level # Faster Attacks", + "Socketed Gems are Supported by Level # Faster Attacks", + "Socketed Gems are Supported by Level # Faster Attacks", + "Socketed Gems are Supported by Level # Faster Attacks", + "Socketed Gems are Supported by Level # Melee Physical Damage", + "#% chance to gain an Endurance Charge when you Block", + "#% chance to gain an Endurance Charge when you Block", + "Damage of Enemies Hitting you is Lucky while you are on Low Life", + "Damage of Enemies Hitting you is Lucky while you are on Full Life", + "Damage of Enemies Hitting you is Lucky while you are on Full Life", + "Monsters drop Burning Ground on death", + "Areas Have the Same Layout for all Players", + "Minimap is Revealed", + "Life, Mana, Energy Shield and Flasks are not refilled in Towns", + "Item drops on death", + "Deal # to # Lightning Damage to nearby Enemies when you lose a Power, Frenzy, or Endurance Charge", + "Reflects # Chaos Damage to Melee Attackers", + "Reflects # Chaos Damage to Melee Attackers", + "#% increased Power Charge Duration", + "#% reduced Power Charge Duration", + "#% increased Power Charge Duration", + "#% reduced Power Charge Duration", + "#% increased Power Charge Duration", + "#% reduced Power Charge Duration", + "#% increased Spell Damage per Power Charge", + "#% increased Spell Damage per Power Charge", + "#% increased Spell Damage per Power Charge", + "#% chance to create Consecrated Ground when you Block", + "#% chance to create Desecrated Ground when you Block", + "#% chance to create Desecrated Ground when you Block", + "Can't use Chest armour", + "# to Level of Socketed Elemental Gems", + "# to Level of Socketed Elemental Gems", + "Gain # Energy Shield per Enemy Killed", + "Gain # Energy Shield per Enemy Killed", + "Gain # Energy Shield per Enemy Killed", + "#% increased Claw Physical Damage when on Low Life", + "#% reduced Claw Physical Damage when on Low Life", + "#% increased Damage with Claws while on Low Life", + "#% reduced Damage with Claws while on Low Life", + "#% increased Accuracy Rating when on Low Life", + "#% reduced Accuracy Rating when on Low Life", + "#% increased Attack Speed when on Low Life", + "#% reduced Attack Speed when on Low Life", + "#% increased Attack Speed when on Low Life", + "#% reduced Attack Speed when on Low Life", + "#% increased Attack Speed when on Low Life", + "#% reduced Attack Speed when on Low Life", + "#% increased Damage taken from Projectile Hits", + "#% reduced Damage taken from Projectile Hits", + "You cannot increase the Rarity of Items found", + "You cannot increase the Quantity of Items found", + "You cannot be killed by reflected Elemental Damage", + "#% increased effect of Curses on Monsters", + "#% reduced effect of Curses on Monsters", + "Insufficient Mana doesn't prevent your Melee Attacks", + "Insufficient Mana doesn't prevent your Melee Attacks", + "Rogue Exiles roam Wraeclast", + "# to Strength and Dexterity", + "# to Strength and Intelligence", + "# to Dexterity and Intelligence", + "# to Strength and Dexterity", + "Chaos Damage taken does not cause double loss of Energy Shield", + "# to Melee Strike Range", + "# to Melee Strike Range", + "# to Weapon Range", + "# to Weapon Range", + "# to Weapon Range", + "# to Weapon Range", + "# to Weapon Range", + "# to Weapon Range", + "# to Weapon Range", + "# to Weapon Range", + "# to Weapon Range", + "#% chance to gain a Frenzy Charge on Kill", + "#% chance to gain a Frenzy Charge on Kill", + "#% chance to gain a Frenzy Charge on Kill", + "#% chance to gain a Frenzy Charge on Kill", + "#% chance to gain a Frenzy Charge on Kill", + "#% chance to gain a Frenzy Charge on Kill", + "#% chance to gain a Power Charge on Kill", + "#% chance to gain a Power Charge on Kill", + "#% chance to gain a Power Charge on Kill", + "#% chance to gain a Power Charge on Kill", + "#% chance to gain a Power Charge on Kill", + "#% chance to gain an Endurance Charge on Kill", + "Gain an Endurance Charge when you lose a Power Charge", + "Chill Effect and Freeze Duration on you are based on #% of Energy Shield", + "Chill Effect and Freeze Duration on you are based on #% of Energy Shield", + "#% increased Melee Damage when on Full Life", + "#% reduced Melee Damage when on Full Life", + "Creates Consecrated Ground on Critical Hit", + "#% increased Projectile Speed per Frenzy Charge", + "#% increased Projectile Damage per Power Charge", + "Right ring slot: You cannot Regenerate Mana", + "Right ring slot: Regenerate #% of Energy Shield per second", + "Left ring slot: #% increased Mana Regeneration Rate", + "Left ring slot: You cannot Recharge or Regenerate Energy Shield", + "Regenerate #% of Energy Shield per second", + "Regenerate #% of Energy Shield per second", + "Regenerate #% of Energy Shield per second", + "Regenerate # Energy Shield per second", + "You cannot Recharge Energy Shield", + "You cannot Recharge Energy Shield", + "#% increased Rarity of Items Dropped by Enemies killed with a Critical Hit", + "#% reduced Rarity of Items Dropped by Enemies killed with a Critical Hit", + "#% increased Attack and Cast Speed per Frenzy Charge", + "#% reduced Attack and Cast Speed per Frenzy Charge", + "Regenerate #% of Life per second per Frenzy Charge", + "#% increased Damage per Frenzy Charge with Hits against Enemies on Low Life", + "#% reduced Damage per Frenzy Charge with Hits against Enemies on Low Life", + "#% chance to Avoid being Ignited", + "#% increased Movement Speed while Cursed", + "#% reduced Movement Speed while Cursed", + "#% Chance to Block Attack Damage while holding a Shield", + "Reflects # Physical Damage to Attackers on Block", + "Reflects # Physical Damage to Attackers on Block", + "Reflects # Physical Damage to Attackers on Block", + "Reflects # Physical Damage to Attackers on Block", + "Reflects # Physical Damage to Attackers on Block", + "Raised Zombies have +# to maximum Life", + "Raised Zombies deal #% more Physical Damage", + "Raised Zombies deal #% less Physical Damage", + "Raised Zombies have +#% to all Resistances", + "#% increased Raised Zombie Size", + "#% reduced Raised Zombie Size", + "Enemies Killed by Zombies' Hits Explode, dealing #% of their Life as Fire Damage", + "#% increased maximum number of Raised Zombies", + "#% reduced maximum number of Raised Zombies", + "#% increased Intelligence for each Unique Item Equipped", + "#% chance for Slain monsters to drop an additional Scroll of Wisdom", + "#% of Cold Damage Converted to Fire Damage", + "Ignited Enemies Killed by your Hits are destroyed", + "You gain Onslaught for # seconds on Critical Hit", + "#% increased Rarity of Items found during Effect", + "#% increased Quantity of Items found during Effect", + "#% increased Light Radius during Effect", + "#% to all maximum Elemental Resistances during Effect", + "#% to Elemental Resistances during Effect", + "Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value", + "#% of Fire Damage Converted to Chaos Damage", + "#% of Fire Damage Converted to Chaos Damage", + "1% increased Movement Speed per # Evasion Rating, up to 75%", + "Physical Damage from Hits also Contributes to Chill Magnitude", + "Physical Damage from Hits also Contributes to Chill Magnitude", + "#% increased Quantity of Items Dropped by Slain Frozen Enemies", + "#% reduced Quantity of Items Dropped by Slain Frozen Enemies", + "#% increased Rarity of Items Dropped by Slain Shocked Enemies", + "#% reduced Rarity of Items Dropped by Slain Shocked Enemies", + "# Chaos Damage taken per second", + "# Chaos Damage taken per second", + "# Chaos Damage taken per second", + "# Chaos Damage taken per second", + "# Chaos Damage taken per second", + "# Chaos Damage taken per second", + "Counts as Dual Wielding", + "You take # Chaos Damage per second for # seconds on Kill", + "Gore Footprints", + "Deals # Chaos Damage per second to nearby Enemies", + "Deals # Chaos Damage per second to nearby Enemies", + "Deals # Chaos Damage per second to nearby Enemies", + "Gore Footprints", + "Mercury Footprints", + "Gore Footprints", + "Rogue Exiles roam Wraeclast", + "Ignites you inflict deal Damage #% faster", + "Cannot Leech Mana", + "Cannot Leech Mana", + "Mana cannot be Leeched from Monsters", + "Cannot Leech when on Low Life", + "#% chance to Ignite", + "You and nearby allies gain #% increased Damage", + "Adds # to # Fire Damage in Main Hand", + "Adds # to # Fire Damage in Main Hand", + "Adds # to # Fire Damage in Main Hand", + "Adds # to # Chaos Damage in Off Hand", + "Adds # to # Chaos Damage in Off Hand", + "Adds # to # Cold Damage in Off Hand", + "Chaos Damage from Hits also Contributes to Shock Chance", + "Chaos Damage from Hits also Contributes to Shock Chance", + "#% of Lightning Damage Converted to Chaos Damage", + "#% of Lightning Damage Converted to Chaos Damage", + "40% to Maximum Effect of Shock", + "Hits with this Weapon Shock Enemies as though dealing #% more Damage", + "Hits with this Weapon Shock Enemies as though dealing #% less Damage", + "Hits with this Weapon Shock Enemies as though dealing #% more Damage", + "Hits with this Weapon Shock Enemies as though dealing #% less Damage", + "Enemies Killed with Attack or Spell Hits Explode, dealing #% of their Life as Fire Damage", + "Socketed Gems are Supported by Level # Inspiration", + "Socketed Gems are Supported by Level # Faster Casting", + "Socketed Gems are Supported by Level # Faster Casting", + "Removes #% of your maximum Energy Shield on use", + "You take #% of your maximum Life as Chaos Damage on use", + "Gain # Frenzy Charge on use", + "Gain # Power Charge on use", + "Gain # Endurance Charge on use", + "Gain # Endurance Charge on use", + "You can only deal Damage with this Weapon or Ignite", + "Left ring slot: You and your Minions take #% increased Reflected Elemental Damage", + "Left ring slot: You and your Minions take #% reduced Reflected Elemental Damage", + "Right ring slot: You and your Minions take #% increased Reflected Physical Damage", + "Right ring slot: You and your Minions take #% reduced Reflected Physical Damage", + "Removes Burning when you use a Flask", + "Unique Boss drops # additional Rare #", + "Unique Boss drops # additional Rare #", + "Unique Boss drops # additional Rare #", + "Unique Boss drops # additional Rare #", + "Unique Boss drops # additional Rare #", + "Unique Boss drops # additional Rare #", + "Unique Boss drops # additional Rare #", + "Unique Boss drops # additional Rare #", + "Unique Boss drops # additional Rare #", + "Unique Boss drops # additional Rare #", + "Unique Boss drops # additional Rare #", + "Unique Boss drops # additional Rare #", + "Unique Boss drops # additional Rare #", + "Unique Boss drops # additional Rare #", + "Unique Boss drops # additional Rare #", + "Unique Boss drops # additional Rare #", + "Unique Boss drops # additional Rare #", + "Unique Boss drops # additional Rare #", + "#% chance to Shock", + "#% chance to Shock", + "#% chance to Shock", + "#% chance to Shock", + "#% chance to Shock", + "#% chance to Shock", + "#% chance to Shock", + "#% chance to Shock", + "#% chance to Shock", + "#% chance to Shock", + "#% increased Fishing Line Strength", + "#% reduced Fishing Line Strength", + "#% increased Fishing Line Strength", + "#% reduced Fishing Line Strength", + "#% increased Fishing Pool Consumption", + "#% reduced Fishing Pool Consumption", + "#% increased Fishing Pool Consumption", + "#% reduced Fishing Pool Consumption", + "Rhoa Feather Lure", + "Rhoa Feather Lure", + "Rhoa Feather Lure", + "Karui Stone Hook", + "#% increased Fishing Range", + "#% reduced Fishing Range", + "#% increased Fishing Range", + "#% reduced Fishing Range", + "#% increased Quantity of Fish Caught", + "#% reduced Quantity of Fish Caught", + "#% increased Quantity of Fish Caught", + "#% reduced Quantity of Fish Caught", + "#% increased Quantity of Fish Caught", + "#% reduced Quantity of Fish Caught", + "#% increased Quantity of Fish Caught", + "#% reduced Quantity of Fish Caught", + "#% increased Rarity of Fish Caught", + "#% reduced Rarity of Fish Caught", + "#% increased Rarity of Fish Caught", + "#% reduced Rarity of Fish Caught", + "#% increased Rarity of Fish Caught", + "#% reduced Rarity of Fish Caught", + "#% increased Rarity of Fish Caught", + "#% reduced Rarity of Fish Caught", + "#% increased Spell Damage per 5% Chance to Block Attack Damage", + "Gain # Life per Enemy Hit with Spells", + "Lose # Life per Enemy Hit with Spells", + "Gain # Life per Enemy Hit with Spells", + "Lose # Life per Enemy Hit with Spells", + "Gain # Life per Enemy Hit with Spells", + "Lose # Life per Enemy Hit with Spells", + "Gain # Life per Enemy Hit with Spells", + "Lose # Life per Enemy Hit with Spells", + "#% increased Global Attack Speed per Green Socket", + "#% increased Global Physical Damage with Weapons per Red Socket", + "#% of Physical Attack Damage Leeched as Mana per Blue Socket", + "#% of Physical Attack Damage Leeched as Mana per Blue Socket", + "# to Melee Strike Range per White Socket", + "#% increased Damage taken from Melee Attacks", + "#% reduced Damage taken from Melee Attacks", + "Regenerate #% of your Armour as Life over 1 second when you Block", + "Lose #% of your Energy Shield when you Block", + "Gain #% of Physical Damage as extra Chaos Damage", + "Gain #% of Physical Damage as extra Chaos Damage", + "Gain #% of Fire Damage as Extra Chaos Damage", + "Gain #% of Cold Damage as Extra Chaos Damage", + "Gain #% of Lightning Damage as Extra Chaos Damage", + "#% of Physical damage from Hits taken as Lightning damage", + "#% chance to Ignite when in Main Hand", + "#% increased Chill Duration on Enemies when in Off Hand", + "#% reduced Chill Duration on Enemies when in Off Hand", + "#% increased Trap Throwing Speed", + "#% reduced Trap Throwing Speed", + "#% increased Trap Throwing Speed", + "#% reduced Trap Throwing Speed", + "#% increased Trap Throwing Speed", + "#% reduced Trap Throwing Speed", + "#% increased Trap Throwing Speed", + "#% reduced Trap Throwing Speed", + "#% increased Trap Throwing Speed", + "#% reduced Trap Throwing Speed", + "#% increased Trap Throwing Speed", + "#% reduced Trap Throwing Speed", + "#% increased Trap Throwing Speed", + "#% reduced Trap Throwing Speed", + "30% increased Movement Speed for # seconds on Throwing a Trap", + "30% increased Movement Speed for # seconds on Throwing a Trap", + "Socketed Gems are Supported by Level # Trap", + "Socketed Gems are Supported by Level # Trap", + "Socketed Gems are Supported by Level # Trap", + "Socketed Gems are Supported by Level # Trap", + "#% increased Trap Duration", + "#% reduced Trap Duration", + "#% increased Trap Duration", + "#% reduced Trap Duration", + "#% increased Trap Damage", + "#% reduced Trap Damage", + "#% increased Trap Damage", + "#% reduced Trap Damage", + "#% increased Trap Damage", + "#% reduced Trap Damage", + "Trap lasts # seconds", + "Cannot be Knocked Back", + "# to maximum number of Summoned Totems", + "# to maximum number of Summoned Totems", + "# to maximum number of Summoned Totems", + "# to maximum number of Summoned Totems", + "Ice Spears on Death", + "Spikes on Death", + "Reflects # to # Cold Damage to Melee Attackers", + "Minion Instability", + "Rare Monsters in next Area will each have a Nemesis Mod", + "Gain #% of Physical Damage as Extra Damage of a random Element", + "#% increased Character Size", + "#% reduced Character Size", + "#% chance to Curse Enemies with Enfeeble on Hit", + "#% chance to Curse Enemies with Vulnerability on Hit", + "Curse Enemies with Temporal Chains on Hit", + "#% chance to Curse Enemies with Enfeeble on Hit", + "#% chance to Curse Enemies with Vulnerability on Hit", + "Curse Enemies with Temporal Chains on Hit", + "Powerful Shrines can affect both Monsters and you", + "Regenerate # Life over 1 second when you Cast a Spell", + "Phasing", + "Final Boss drops higher Level Items", + "Critical Strikes have Culling Strike", + "#% increased Fire Damage taken", + "#% reduced Fire Damage taken", + "# Fire Damage taken from Hits", + "Gain a Frenzy Charge if an Attack Ignites an Enemy", + "Culling Strike against Burning Enemies", + "# Chaos Damage taken", + "Curse Skills have #% increased Skill Effect Duration", + "Curse Skills have #% reduced Skill Effect Duration", + "Curse Skills have #% increased Skill Effect Duration", + "Curse Skills have #% reduced Skill Effect Duration", + "Curse Skills have #% increased Skill Effect Duration", + "Curse Skills have #% reduced Skill Effect Duration", + "Curse Skills have #% increased Skill Effect Duration", + "Curse Skills have #% reduced Skill Effect Duration", + "Curse Skills have #% increased Skill Effect Duration", + "Curse Skills have #% reduced Skill Effect Duration", + "# to Level of Socketed Curse Gems", + "# to Level of Socketed Curse Gems", + "# to Level of Socketed Curse Gems", + "# to Level of Socketed Curse Gems", + "#% to Chaos Resistance during any Flask Effect", + "#% to Chaos Resistance during any Flask Effect", + "Monsters and bosses invade from elsewhere in Wraeclast", + "Freezes you when activated", + "#% increased Quantity of Items Found from Chests", + "#% reduced Quantity of Items Found from Chests", + "#% increased Quantity of Items Found from Chests", + "#% reduced Quantity of Items Found from Chests", + "#% increased Quantity of Items Found from Chests", + "#% reduced Quantity of Items Found from Chests", + "#% increased Quantity of Items Found from Chests", + "#% reduced Quantity of Items Found from Chests", + "#% increased Quantity of Items Found from Chests", + "#% reduced Quantity of Items Found from Chests", + "#% increased Quantity of Items Found from Chests", + "#% reduced Quantity of Items Found from Chests", + "#% increased Quantity of Items Found from Chests", + "#% reduced Quantity of Items Found from Chests", + "#% increased Quantity of Items Found from Chests", + "#% reduced Quantity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "Contains an additional Unique Item", + "Contains an additional Unique Item", + "Contains an additional Unique Item", + "Contains an additional Unique Item", + "Contains an additional Unique Item", + "Contains an additional Unique Item", + "Contains an additional Unique Item", + "Contains an additional Kaom Item", + "Contains an additional Unique Map", + "Contains an additional Unique Map", + "Contains an additional Unique Item", + "Contains an additional Unique Item", + "Guarded by a Rogue Exile", + "Guarded by a Rogue Exile", + "Guarded by a Unique Boss", + "Revives nearby dead Monsters with Onslaught", + "Guarded by a stream of Monsters", + "Guarded by a stream of Tormented Spirits", + "Guarded by a stream of Monsters", + "Guarded by a Redblade Warband", + "Guarded by a Mutewind Warband", + "Guarded by a Brinerot Warband", + "Guarded by a Renegade Warband", + "Detonates nearby corpses", + "Guarded by camoflaged Monsters", + "Casts a random Hex Curse Spell when activated", + "Guarded by the Ancestors' Power", + "Ignites you when activated", + "Casts Firestorm", + "Summons Volatile Crags", + "Summons Volatile Crags", + "Summons Volatile Crags", + "Summons Volatile Crags", + "Spreads Caustic Ground", + "Spreads Caustic Ground", + "Spreads Caustic Ground", + "Explodes", + "Contained Gems have Experience", + "Contained Gems have Experience", + "Contained Gems have Experience", + "Contains Identified Items", + "Contains # additional Item", + "Contains # additional Item", + "Contains # additional Item", + "Contains # additional Item", + "Contains # additional Item", + "Contains # additional Item", + "Contains # additional Item", + "Contains # additional Magic Item", + "Contains # additional Magic Item", + "Contains # additional Magic Item", + "Contains # additional Magic Item", + "Contains # additional Rare Item", + "Contains # additional Rare Item", + "Contains # additional Rare Item", + "Contains # additional Rare Item", + "Contains # additional Rare Item", + "Contains # additional Rare Item", + "Contains # additional Rare Item", + "Contains # additional Rare Item", + "Contains # additional Rare Item", + "Contained Items have #% Quality", + "Contained Items have #% Quality", + "Contained Items have #% Quality", + "Contained Items have #% Quality", + "Contained Items have #% Quality", + "Contained Items have #% Quality", + "Contained Items have #% Quality", + "Contained Items have #% Quality", + "Contained Items have #% Quality", + "Contained Items have an additional Socket", + "Contained Items have an additional Socket", + "Contained Items have an additional Socket", + "Contained Items have an additional Socket", + "{{Items dropped by Runic Monsters are fully Linked}}", + "{{Items dropped by Runic Monsters are fully Linked}}", + "# Chest level", + "# Chest level", + "# Chest level", + "# Chest level", + "# Chest level", + "# Chest level", + "# Chest level", + "# Chest level", + "# Chest level", + "# Chest level", + "Contains an extra Vaal Gem", + "Contains # Divination Card that has a Full Stack number of #", + "Contains # additional Item", + "Contains # additional Rare Item", + "Socketed Gems Chain # additional times", + "Curse Reflection", + "#% chance to Avoid being Chilled", + "#% chance to Avoid being Chilled", + "#% chance to Avoid being Chilled", + "#% chance to Avoid being Chilled", + "Grants Immunity to Bleeding", + "Traps cannot be Damaged for +# seconds after being Thrown", + "Traps cannot be Damaged for +# seconds after being Thrown", + "Traps cannot be Damaged for +# seconds after being Thrown", + "Traps cannot be Damaged for +# seconds after being Thrown", + "Traps cannot be Damaged for +# seconds after being Thrown", + "Traps cannot be Damaged for +# seconds after being Thrown", + "Traps cannot be Damaged for +# seconds after being Thrown", + "Traps cannot be Damaged for +# seconds after being Thrown", + "Traps cannot be Damaged for +# seconds after being Thrown", + "# to Level of Socketed Vaal Gems", + "# to Level of Socketed Non-Vaal Gems", + "# to Level of Socketed Vaal Gems", + "Strongboxes are guarded by ambushing monsters", + "Unique Boss deals #% increased Damage", + "Minions gain Unholy Might for # seconds on Kill", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "Contains # additional Item", + "Contains # additional Rare Item", + "Contained Items have #% Quality", + "Contained Items have #% Quality", + "Contained Items have #% Quality", + "Contained Items have #% Quality", + "Contains an additional Unique Item", + "Contains an additional Unique Item", + "Contains an additional Unique Item", + "Contained Items have an additional Socket", + "Contains # additional Rare Item", + "Contains # additional Item", + "Contains # additional Rare Item", + "Contains # additional Item", + "Contains # additional Rare Item", + "Contains # additional Item", + "# Chest level", + "# Chest level", + "Contained Items have #% Quality", + "Contained Items have #% Quality", + "Contained Items have #% Quality", + "Contained Items have #% Quality", + "Contained Items have #% Quality", + "Contained Gems have Experience", + "Contains an additional Unique Item", + "Contains an additional Unique Item", + "Contains additional Divination Cards that give Currency", + "{{Items dropped by Runic Monsters are fully Linked}}", + "Contains an additional Unique Item", + "Contains an additional Unique Item", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "Contains additional Divination Cards that give Currency", + "Contains an additional Unique Item", + "Contains an additional Unique Item", + "Contained Items have #% Quality", + "Contained Items have #% Quality", + "Contained Items have #% Quality", + "Contained Gems have Experience", + "# Chest level", + "# Chest level", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "Contains an additional Unique Item", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Quantity of Items Found from Chests", + "#% reduced Quantity of Items Found from Chests", + "#% increased Quantity of Items Found from Chests", + "#% reduced Quantity of Items Found from Chests", + "#% increased Quantity of Items Found from Chests", + "#% reduced Quantity of Items Found from Chests", + "#% increased Quantity of Items Found from Chests", + "#% reduced Quantity of Items Found from Chests", + "#% increased Quantity of Items Found from Chests", + "#% reduced Quantity of Items Found from Chests", + "#% increased Quantity of Items Found from Chests", + "#% reduced Quantity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Attack Speed when on Low Life", + "#% reduced Attack Speed when on Low Life", + "#% increased Attack Speed when on Low Life", + "#% reduced Attack Speed when on Low Life", + "#% increased Attack Speed when on Low Life", + "#% reduced Attack Speed when on Low Life", + "Arrows deal 50% increased Damage with Hits to Targets they Pierce", + "Arrows deal #% increased Damage with Hits to Targets they Pierce", + "Arrows deal #% reduced Damage with Hits to Targets they Pierce", + "You gain Onslaught for # seconds on using a Vaal Skill", + "# to Level of Socketed Support Gems", + "# to Level of Socketed Support Gems", + "# to Level of Socketed Support Gems", + "# to Level of Socketed Support Gems", + "Skills Chain +# times", + "Skills Chain +# times", + "Skills Chain +# times", + "Hexes Transfer to all Enemies in a range of 30 when Hexed Enemy dies", + "#% increased Melee Damage against Ignited Enemies", + "#% reduced Melee Damage against Ignited Enemies", + "#% increased Melee Damage against Shocked Enemies", + "#% reduced Melee Damage against Shocked Enemies", + "#% increased Melee Damage against Frozen Enemies", + "#% reduced Melee Damage against Frozen Enemies", + "Projectiles have #% chance to Shock", + "Projectiles have #% chance to Freeze", + "Projectiles have #% chance to Ignite", + "Socketed Gems are supported by Level # Life Leech", + "Socketed Gems are supported by Level # Life Leech", + "Socketed Gems are supported by Level # Chance to Bleed", + "#% of Elemental Damage from Hits taken as Chaos Damage", + "Light Radius is based on Energy Shield instead of Life", + "# Physical Damage taken from Hits by Animals", + "#% increased Damage taken per Frenzy Charge", + "#% reduced Damage taken per Frenzy Charge", + "#% increased Lightning Damage per Frenzy Charge", + "#% reduced Lightning Damage per Frenzy Charge", + "# Life gained on Kill per Frenzy Charge", + "Cannot be Knocked Back", + "Cannot be Knocked Back", + "Contains no other Items", + "Recover #% of Life on use", + "#% of Maximum Life taken as Chaos Damage per second", + "#% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage", + "Grants Level # Bear Trap Skill", + "Grants Level # Bear Trap Skill", + "Unique Boss gives #% increased Experience", + "Unique Boss drops an additional Currency Item", + "Slaying Enemies in a kill streak grants Rampage bonuses", + "#% chance to gain a Power Charge when you Throw a Trap", + "Slaying Enemies close together can attract monsters from Beyond this realm", + "#% increased Critical Hit Chance per 8 Strength", + "#% increased Attack Speed while Ignited", + "#% reduced Attack Speed while Ignited", + "#% increased Attack Speed while Ignited", + "#% reduced Attack Speed while Ignited", + "#% increased Cast Speed while Ignited", + "#% reduced Cast Speed while Ignited", + "#% increased Cast Speed while Ignited", + "#% reduced Cast Speed while Ignited", + "#% chance to Ignite", + "#% chance to Ignite", + "#% chance to be Ignited", + "#% chance to be Ignited", + "#% chance to Ignite", + "#% chance to Cause Poison on Critical Hit", + "Melee Critical Hits have #% chance to Poison the Enemy", + "#% Chance to Block Attack Damage during Effect", + "#% Chance to Block Attack Damage during Effect", + "#% Chance to Block Spell Damage during Effect", + "#% Chance to Block Spell Damage during Effect", + "Your Curses have infinite Duration", + "#% increased Attack Damage per 450 Evasion Rating", + "#% reduced Attack Damage per 450 Evasion Rating", + "#% increased Damage with Hits against Ignited Enemies", + "#% reduced Damage with Hits against Ignited Enemies", + "#% increased Movement Speed while on Full Energy Shield", + "#% reduced Movement Speed while on Full Energy Shield", + "#% Chance to Cause Monster to Flee on Block", + "Leech Life #% faster", + "Leech Life #% slower", + "Leech #% faster", + "Leech #% slower", + "Leech Life #% faster", + "Leech Life #% slower", + "Leech Life #% faster", + "Leech Life #% slower", + "Leech Life #% faster", + "Leech Life #% slower", + "Leech Life #% faster", + "Leech Life #% slower", + "Leech Life #% faster", + "Leech Life #% slower", + "Leech Mana #% faster", + "Leech Mana #% slower", + "Adds # to # Chaos Damage to Spells", + "Adds # to # Chaos Damage to Spells", + "Adds # to # Chaos Damage to Spells", + "#% Chance to Block Spell Damage", + "Recover #% of Life on Rampage", + "Removes Elemental Ailments on Rampage", + "Gain Immunity to Physical Damage for # second on Rampage", + "Kills grant an additional Vaal Soul if you have Rampaged Recently", + "Creates a Smoke Cloud on Rampage", + "Enemies do not block your movement for # second on Rampage", + "#% Global chance to Blind Enemies on hit", + "Regenerate # Life per second per Level", + "#% increased Global Critical Hit Chance per Level", + "#% reduced Global Critical Hit Chance per Level", + "#% increased Attack Damage per Level", + "#% reduced Attack Damage per Level", + "#% increased Spell Damage per Level", + "#% reduced Spell Damage per Level", + "Gain a Flask Charge when you deal a Critical Hit", + "Enemies you Attack have #% chance to Reflect # to # Chaos Damage to you", + "Rampage", + "Rampage", + "Rampage", + "Melee Hits count as Rampage Kills\\nRampage", + "Rampage", + "Rampage", + "Gain # Mana on Kill per Level", + "Gain # Energy Shield on Kill per Level", + "# to Level of Socketed Skill Gems", + "#% increased Elemental Damage per Level", + "#% reduced Elemental Damage per Level", + "#% increased Chaos Damage per Level", + "#% reduced Chaos Damage per Level", + "Gain # Life on Kill per Level", + "Gain Unholy Might for # second on Rampage", + "Skills Chain +# times", + "Skills Chain +# times", + "#% increased Blind duration", + "#% reduced Blind duration", + "#% Global chance to Blind Enemies on hit", + "#% increased Damage per 10 Levels", + "#% reduced Damage per 10 Levels", + "#% increased Character Size", + "#% reduced Character Size", + "#% increased Character Size", + "#% reduced Character Size", + "#% increased Character Size", + "#% reduced Character Size", + "#% increased Character Size", + "#% reduced Character Size", + "Skills fire an additional Projectile", + "Gain #% of Physical Damage as Extra Fire Damage", + "Gain #% of Physical Damage as Extra Cold Damage", + "Gain #% of Physical Damage as Extra Lightning Damage", + "Gain #% of Physical Damage as Extra Fire Damage", + "Gain #% of Physical Damage as Extra Cold Damage", + "Gain #% of Physical Damage as Extra Lightning Damage", + "Monsters Fracture", + "Monsters drop Burning Ground on death", + "Area is inhabited by an additional Invasion Boss", + "Area is inhabited by an additional Invasion Boss", + "Area contains an additional pack with a Rare monster", + "Area contains an additional pack with a Rare monster", + "25% chance to cause Bleeding on Hit", + "Always Hits", + "Area is inhabited by an additional Invasion Boss", + "Area is inhabited by an additional Invasion Boss", + "Monsters have Onslaught", + "Monsters have Onslaught", + "Prefixes Cannot Be Changed", + "Suffixes Cannot Be Changed", + "Cannot roll Attack Modifiers", + "Cannot roll Caster Modifiers", + "Can have up to 3 Crafted Modifiers", + "Slaying Enemies in a kill streak grants Rampage bonuses", + "Slaying Enemies in a kill streak grants Rampage bonuses", + "Socketed Gems have Elemental Equilibrium", + "Socketed Gems have Secrets of Suffering", + "Unaffected by Ignite or Shock if Maximum Life and Maximum Mana are within 500", + "#% to Fire Resistance when Socketed with a Red Gem", + "#% to Lightning Resistance when Socketed with a Blue Gem", + "#% to Cold Resistance when Socketed with a Green Gem", + "All Sockets are White", + "All Sockets are White", + "Curse Enemies with Punishment when you Block their Melee Damage, ignoring Curse Limit", + "Curse Enemies with Temporal Chains when you Block their Projectile Attack Damage, ignoring Curse Limit", + "Curse Enemies with Elemental Weakness when you Block their Spell Damage, ignoring Curse Limit", + "Enemies slain by Socketed Gems drop #% increased item quantity", + "Enemies slain by Socketed Gems drop #% reduced item quantity", + "Area becomes fatal after some time", + "Magic Monster Packs in next Area will each have a Bloodline Mod", + "Magic Monster Packs in next Area will each have a Bloodline Mod", + "Magic Monster Packs in next Area will each have a Bloodline Mod", + "Curse Enemies with Vulnerability on Block", + "Curse Enemies with Vulnerability on Block", + "#% increased Damage taken", + "#% reduced Damage taken", + "Gain #% of Physical Damage as Extra Lightning Damage", + "Gain #% of Physical Damage as Extra Lightning Damage", + "Runic Monsters apply a random Curse on Hit", + "Runic Monsters apply a random Curse on Hit", + "Gain #% of Physical Damage as Extra Fire Damage", + "Gain #% of Physical Damage as Extra Fire Damage", + "Poison on Hit", + "#% of Physical Damage Converted to Chaos Damage", + "Gain #% of Physical Damage as Extra Damage of a random Element", + "Attacks cannot cause Bleeding", + "Life cannot be Leeched from Monsters", + "#% chance to Steal Power, Frenzy, and Endurance Charges on Hit", + "#% Global chance to Blind Enemies on hit", + "Skills Repeat an additional Time", + "#% increased Physical Damage taken", + "#% reduced Physical Damage taken", + "#% increased Physical Damage taken", + "#% reduced Physical Damage taken", + "#% increased Physical Damage taken", + "#% reduced Physical Damage taken", + "Curse Skills have #% increased Cast Speed", + "Curse Skills have #% reduced Cast Speed", + "Physical Damage from Hits also Contributes to Chill Magnitude", + "Gain #% of Physical Damage as Extra Cold Damage", + "#% chance to gain a Frenzy Charge on Hit", + "#% chance to gain an Endurance Charge on Hit", + "#% chance to gain a Frenzy Charge on Hit", + "#% increased Damage taken", + "#% reduced Damage taken", + "#% chance to create a Smoke Cloud when Hit", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "Tormented Spirits haunt Wraeclast", + "Area is haunted by # additional Tormented Spirit", + "Area is haunted by # additional Tormented Spirit", + "#% increased Elemental Damage with Attack Skills during any Flask Effect", + "#% reduced Elemental Damage with Attack Skills during any Flask Effect", + "#% increased Elemental Damage with Attack Skills during any Flask Effect", + "#% reduced Elemental Damage with Attack Skills during any Flask Effect", + "Phasing", + "Phasing", + "Phasing", + "Phasing", + "Phasing", + "#% increased Fire Damage taken", + "#% reduced Fire Damage taken", + "Adds # to # Fire Damage to Attacks against Ignited Enemies", + "Trigger Socketed Minion Spells on Kill with this Weapon\\nMinion Spells Triggered by this Item have a 0.25 second Cooldown with 5 Uses", + "Minions deal #% increased Damage per 5 Dexterity", + "Minions deal #% reduced Damage per 5 Dexterity", + "#% chance to Trigger Socketed Spells on Killing a Shocked Enemy", + "Cannot gain Power Charges", + "#% increased Damage with Hits per Curse on Enemy", + "#% reduced Damage with Hits per Curse on Enemy", + "#% chance to Steal Power, Frenzy, and Endurance Charges on Hit", + "#% chance to Steal Power, Frenzy, and Endurance Charges on Hit", + "#% increased Physical Damage per Endurance Charge", + "#% reduced Physical Damage per Endurance Charge", + "#% increased Physical Damage per Endurance Charge", + "#% reduced Physical Damage per Endurance Charge", + "#% increased Damage per Power Charge with Hits against Enemies that are on Full Life", + "#% reduced Damage per Power Charge with Hits against Enemies that are on Full Life", + "#% increased Damage per Power Charge with Hits against Enemies on Low Life", + "#% reduced Damage per Power Charge with Hits against Enemies on Low Life", + "Penetrate #% Elemental Resistances per Frenzy Charge", + "#% increased Endurance, Frenzy and Power Charge Duration", + "#% reduced Endurance, Frenzy and Power Charge Duration", + "#% increased Endurance, Frenzy and Power Charge Duration", + "#% reduced Endurance, Frenzy and Power Charge Duration", + "#% increased Duration of Elemental Ailments on Enemies", + "#% reduced Duration of Elemental Ailments on Enemies", + "#% increased Duration of Elemental Ailments on Enemies", + "#% reduced Duration of Elemental Ailments on Enemies", + "#% increased Duration of Elemental Ailments on Enemies", + "#% reduced Duration of Elemental Ailments on Enemies", + "#% increased Attack Speed when on Low Life", + "#% reduced Attack Speed when on Low Life", + "#% increased Movement Speed when on Low Life", + "#% reduced Movement Speed when on Low Life", + "Your Hits can only Kill Frozen Enemies", + "#% increased Freeze Duration on Enemies", + "#% reduced Freeze Duration on Enemies", + "#% increased Freeze Duration on Enemies", + "#% reduced Freeze Duration on Enemies", + "#% increased Freeze Duration on Enemies", + "#% reduced Freeze Duration on Enemies", + "Contains an extra Vaal Fragment", + "Contains an extra Vaal Fragment", + "Contains an extra Vaal Fragment", + "Contains an extra Vaal Fragment", + "Contains # additional Rare Item", + "Contains # additional Rare Item", + "Damage Penetrates #% Elemental Resistances", + "Damage Penetrates #% Elemental Resistances", + "#% of Maximum Energy Shield taken as Physical Damage on Minion Death", + "Deal no Physical Damage", + "Deal no Non-Physical Damage", + "Attacks that Fire Projectiles Consume up to # additional Steel Shard", + "Skills Fire # additional Projectile for 4 seconds after\\nyou consume a total of 12 Steel Shards", + "Ignites you inflict with Attacks deal Damage #% faster", + "Socketed Gems fire Projectiles in a circle", + "Socketed Projectile Spells fire Projectiles in a circle", + "Socketed Gems fire an additional Projectile", + "Socketed Gems fire an additional Projectile", + "Socketed Projectile Spells fire an additional Projectile", + "Socketed Gems have #% increased Skill Effect Duration", + "Socketed Gems have #% reduced Skill Effect Duration", + "Socketed Gems are Supported by Level # Inspiration", + "Socketed Gems are Supported by Level # Generosity", + "#% increased effect of Non-Curse Auras from your Skills", + "#% reduced effect of Non-Curse Auras from your Skills", + "#% increased effect of Non-Curse Auras from your Skills", + "#% reduced effect of Non-Curse Auras from your Skills", + "#% increased Area of Effect of Aura Skills", + "#% reduced Area of Effect of Aura Skills", + "#% increased Area of Effect of Aura Skills", + "#% reduced Area of Effect of Aura Skills", + "#% increased Elemental Damage per Frenzy Charge", + "Mines can be Detonated an additional time", + "You gain Onslaught for # seconds on Culling Strike", + "No Physical Damage", + "#% chance to Avoid being Chilled during Onslaught", + "You and your Totems Regenerate #% of Life per second for each Summoned Totem", + "#% increased Mine Throwing Speed", + "#% reduced Mine Throwing Speed", + "#% increased Mine Throwing Speed", + "#% reduced Mine Throwing Speed", + "Mines have #% increased Detonation Speed", + "Mines have #% reduced Detonation Speed", + "#% more Mine Damage", + "#% less Mine Damage", + "Socketed Gems are Supported by Level # Blastchain Mine", + "#% increased Cold Damage with Attack Skills", + "#% reduced Cold Damage with Attack Skills", + "Adds # to # Lightning Damage to Unarmed Melee Hits", + "Adds # to # Lightning Damage to Spells while Unarmed", + "# Energy Shield gained on Killing a Shocked Enemy", + "# Energy Shield gained on Killing a Shocked Enemy", + "Guarded by a Magic Monster", + "Guarded by a Magic Monster", + "Guarded by a Magic Monster", + "Guarded by a Magic Monster", + "Guarded by a Magic Monster", + "Guarded by a Magic Monster", + "Guarded by a Magic Monster", + "Guarded by a Magic Monster", + "Guarded by a Magic Monster", + "Guarded by a Magic Monster", + "Guarded by a Magic Monster", + "#% increased Character Size", + "#% reduced Character Size", + "#% increased Character Size", + "#% reduced Character Size", + "#% increased Character Size", + "#% reduced Character Size", + "Cannot Knock Enemies Back", + "All Attack Damage Chills when you Stun", + "Nearby Allies gain #% of Life Regenerated per second", + "Nearby Allies gain #% increased Mana Regeneration Rate", + "#% increased Rarity of Items Dropped by Frozen Enemies", + "#% reduced Action Speed", + "#% increased Action Speed", + "#% reduced Action Speed", + "#% increased Action Speed", + "#% reduced Action Speed", + "#% increased Action Speed", + "Gain #% of Physical Damage as Extra Fire Damage with Attacks", + "Allies' Aura Buffs do not affect you", + "Your Aura Buffs do not affect allies", + "#% increased effect of Buffs on you", + "#% increased effect of Buffs on you", + "Powerful Tempests can affect both Monsters and you", + "Knockback direction is reversed", + "Socketed Gems are Supported by Level # Knockback", + "Regenerate # Life per second per Endurance Charge", + "Regenerate # Life per second per Endurance Charge", + "Transmogrification", + "Atziri's Influence", + "Living Weapons", + "#% chance to cause Enemies to Flee on use", + "#% more Melee Physical Damage during effect", + "Adds Knockback to Melee Attacks during Effect", + "Grants # Life and Mana per Enemy Hit", + "Removes # of your Life and Mana per Enemy Hit", + "Grants # Life and Mana per Enemy Hit", + "Removes # of your Life and Mana per Enemy Hit", + "Grants # Life and Mana per Enemy Hit", + "Removes # of your Life and Mana per Enemy Hit", + "Grants # Mana per Enemy Hit", + "Removes # of your Mana per Enemy Hit", + "Grants # Mana per Enemy Hit", + "Removes # of your Mana per Enemy Hit", + "Grants # Mana per Enemy Hit", + "Removes # of your Mana per Enemy Hit", + "Grants Level # Icestorm Skill", + "#% chance to gain a Power Charge when you Stun with Melee Damage", + "#% chance to gain a Power Charge when you Stun", + "Gain Unholy Might for 2 seconds on Melee Critical Hit", + "Gain Unholy Might for 4 seconds on Critical Hit", + "#% chance to Avoid Elemental Ailments", + "#% chance to Avoid Elemental Ailments", + "#% chance to Avoid Elemental Ailments", + "#% chance to Avoid Elemental Ailments", + "#% chance to Avoid Elemental Ailments", + "#% chance to Avoid Elemental Ailments", + "#% chance to Avoid Elemental Ailments", + "#% chance to Avoid Elemental Ailments", + "#% chance to Avoid Elemental Ailments", + "Regenerate #% of Mana per second", + "Enemy Projectiles Pierce you", + "Grants Level # Gluttony of Elements Skill", + "Socketed Gems are Supported by Level # Pierce", + "Regenerate # Life per second per Buff on you", + "#% increased Damage with Axes", + "#% reduced Damage with Axes", + "#% increased Damage with Swords", + "#% reduced Damage with Swords", + "#% increased Damage with Claws", + "#% reduced Damage with Claws", + "#% increased Damage with Daggers", + "#% reduced Damage with Daggers", + "#% increased Damage with Wands", + "#% reduced Damage with Wands", + "Runic Monsters apply a random Curse on Hit", + "#% increased Damage with One Handed Weapons", + "#% reduced Damage with One Handed Weapons", + "#% increased Damage with Two Handed Weapons", + "#% reduced Damage with Two Handed Weapons", + "#% increased Attack Damage while Dual Wielding", + "#% reduced Attack Damage while Dual Wielding", + "#% increased Melee Physical Damage with Unarmed Attacks", + "#% reduced Melee Physical Damage with Unarmed Attacks", + "#% increased Spell Damage while wielding a Staff", + "#% reduced Spell Damage while wielding a Staff", + "#% increased Spell Damage while Dual Wielding", + "#% reduced Spell Damage while Dual Wielding", + "#% increased Spell Damage while holding a Shield", + "#% reduced Spell Damage while holding a Shield", + "#% increased Trap Damage", + "#% reduced Trap Damage", + "#% increased Mine Damage", + "#% reduced Mine Damage", + "#% increased Damage over Time", + "#% reduced Damage over Time", + "#% increased Damage over Time", + "#% reduced Damage over Time", + "#% increased Area Damage", + "#% reduced Area Damage", + "#% increased Attack Speed with Maces or Sceptres", + "#% reduced Attack Speed with Maces or Sceptres", + "#% increased Attack Speed with Axes", + "#% reduced Attack Speed with Axes", + "#% increased Attack Speed with Swords", + "#% reduced Attack Speed with Swords", + "#% increased Attack Speed with Claws", + "#% reduced Attack Speed with Claws", + "#% increased Attack Speed with Daggers", + "#% reduced Attack Speed with Daggers", + "#% increased Attack Speed with Wands", + "#% reduced Attack Speed with Wands", + "#% increased Attack Speed with One Handed Melee Weapons", + "#% reduced Attack Speed with One Handed Melee Weapons", + "#% increased Attack Speed with Two Handed Melee Weapons", + "#% reduced Attack Speed with Two Handed Melee Weapons", + "#% increased Attack Speed while Dual Wielding", + "#% reduced Attack Speed while Dual Wielding", + "#% increased Cast Speed while Dual Wielding", + "#% reduced Cast Speed while Dual Wielding", + "#% increased Attack Speed while holding a Shield", + "#% reduced Attack Speed while holding a Shield", + "#% increased Cast Speed while holding a Shield", + "#% reduced Cast Speed while holding a Shield", + "#% increased Cast Speed while wielding a Staff", + "#% reduced Cast Speed while wielding a Staff", + "#% increased Unarmed Attack Speed with Melee Skills", + "#% reduced Unarmed Attack Speed with Melee Skills", + "#% increased Trap Throwing Speed", + "#% reduced Trap Throwing Speed", + "#% increased Mine Throwing Speed", + "#% reduced Mine Throwing Speed", + "# to Strength and Dexterity", + "# to Strength and Dexterity", + "# to Strength and Intelligence", + "# to Strength and Intelligence", + "# to Dexterity and Intelligence", + "#% increased Attack Damage while holding a Shield", + "#% reduced Attack Damage while holding a Shield", + "#% increased Cast Speed with Fire Skills", + "#% reduced Cast Speed with Fire Skills", + "#% increased Cast Speed with Cold Skills", + "#% reduced Cast Speed with Cold Skills", + "#% increased Cast Speed with Lightning Skills", + "#% reduced Cast Speed with Lightning Skills", + "#% increased Cast Speed with Chaos Skills", + "#% reduced Cast Speed with Chaos Skills", + "Curse Skills have #% increased Cast Speed", + "Curse Skills have #% reduced Cast Speed", + "# to Strength and Dexterity", + "# to Strength and Intelligence", + "# to Dexterity and Intelligence", + "Gain # Energy Shield per Enemy Hit with Attacks", + "Lose # Energy Shield per Enemy Hit with Attacks", + "#% increased Critical Hit Chance with Maces or Sceptres", + "#% reduced Critical Hit Chance with Maces or Sceptres", + "#% increased Critical Hit Chance with Axes", + "#% reduced Critical Hit Chance with Axes", + "#% increased Critical Hit Chance with Swords", + "#% reduced Critical Hit Chance with Swords", + "#% increased Critical Hit Chance with Bows", + "#% reduced Critical Hit Chance with Bows", + "#% increased Critical Hit Chance with Claws", + "#% reduced Critical Hit Chance with Claws", + "#% increased Critical Hit Chance with Daggers", + "#% reduced Critical Hit Chance with Daggers", + "#% increased Critical Hit Chance with Wands", + "#% reduced Critical Hit Chance with Wands", + "#% increased Critical Hit Chance with Quarterstaves", + "#% reduced Critical Hit Chance with Quarterstaves", + "#% to Critical Damage Bonus with Maces or Sceptres", + "#% to Critical Damage Bonus with Axes", + "#% to Critical Damage Bonus with Swords", + "#% increased Critical Damage Bonus with Bows", + "#% to Critical Damage Bonus with Claws", + "#% increased Critical Damage Bonus with Daggers", + "#% to Critical Damage Bonus with Wands", + "#% increased Critical Damage Bonus with Quarterstaves", + "#% reduced Critical Damage Bonus with Quarterstaves", + "#% increased Critical Hit Chance with One Handed Melee Weapons", + "#% reduced Critical Hit Chance with One Handed Melee Weapons", + "#% increased Critical Hit Chance with Two Handed Melee Weapons", + "#% reduced Critical Hit Chance with Two Handed Melee Weapons", + "#% increased Attack Critical Hit Chance while Dual Wielding", + "#% reduced Attack Critical Hit Chance while Dual Wielding", + "#% increased Critical Hit Chance while holding a Shield", + "#% reduced Critical Hit Chance while holding a Shield", + "#% increased Melee Critical Hit Chance", + "#% reduced Melee Critical Hit Chance", + "#% increased Critical Hit Chance with Traps", + "#% reduced Critical Hit Chance with Traps", + "#% increased Critical Hit Chance with Traps", + "#% reduced Critical Hit Chance with Traps", + "#% increased Critical Hit Chance with Mines", + "#% reduced Critical Hit Chance with Mines", + "#% increased Critical Hit Chance with Fire Skills", + "#% reduced Critical Hit Chance with Fire Skills", + "#% increased Critical Hit Chance with Cold Skills", + "#% reduced Critical Hit Chance with Cold Skills", + "#% increased Critical Hit Chance with Lightning Skills", + "#% reduced Critical Hit Chance with Lightning Skills", + "#% increased Critical Hit Chance with Elemental Skills", + "#% reduced Critical Hit Chance with Elemental Skills", + "#% increased Critical Hit Chance with Chaos Skills", + "#% reduced Critical Hit Chance with Chaos Skills", + "#% increased Critical Damage Bonus with One Handed Melee Weapons", + "#% to Critical Damage Bonus with Two Handed Melee Weapons", + "#% to Critical Damage Bonus while Dual Wielding", + "#% to Melee Critical Damage Bonus while holding a Shield", + "#% to Melee Critical Damage Bonus", + "#% to Critical Damage Bonus with Traps", + "#% to Critical Damage Bonus with Mines", + "#% to Critical Damage Bonus with Fire Skills", + "#% to Critical Damage Bonus with Cold Skills", + "#% to Critical Damage Bonus with Lightning Skills", + "#% to Critical Damage Bonus with Elemental Skills", + "#% to Critical Damage Bonus with Chaos Skills", + "#% to Fire and Cold Resistances", + "#% to Fire and Lightning Resistances", + "#% to Cold and Lightning Resistances", + "#% increased Stun Duration on Enemies", + "#% reduced Stun Duration on Enemies", + "#% increased Area of Effect of Aura Skills", + "#% reduced Area of Effect of Aura Skills", + "#% chance to Avoid being Ignited", + "#% chance to Avoid being Shocked", + "#% chance to Avoid being Frozen", + "#% chance to Avoid being Chilled", + "#% chance to Avoid being Stunned", + "Always Freezes Enemies on Hit", + "#% chance to Ignite", + "#% chance to Shock", + "#% increased Frenzy Charge Duration", + "#% reduced Frenzy Charge Duration", + "#% increased Power Charge Duration", + "#% reduced Power Charge Duration", + "#% chance to Knock Enemies Back on hit", + "#% chance to Knock Enemies Back on hit", + "#% Chance to Block Attack Damage while Dual Wielding", + "#% Chance to Block Attack Damage while holding a Shield", + "#% Chance to Block Attack Damage while wielding a Staff", + "#% Chance to Block Spell Damage while Dual Wielding", + "#% Chance to Block Spell Damage while holding a Shield", + "#% Chance to Block Spell Damage while wielding a Staff", + "#% increased Chill and Freeze Duration on Enemies", + "#% reduced Chill and Freeze Duration on Enemies", + "#% increased effect of Chill and Shock on you", + "#% reduced effect of Chill and Shock on you", + "#% increased effect of Curses on you", + "#% reduced effect of Curses on you", + "#% increased Mana Reservation Efficiency of Skills", + "#% reduced Mana Reservation Efficiency of Skills", + "Always Freezes Enemies on Hit", + "#% chance to Shock", + "#% chance to Ignite", + "Attacks cannot cause Bleeding", + "#% chance to Impale Enemies on Hit with Attacks", + "#% increased Burning Damage", + "#% reduced Burning Damage", + "Minions have +#% Chance to Block Attack Damage", + "Minions have +#% to all Elemental Resistances", + "Minions have +#% to all Elemental Resistances", + "Totems gain +#% to all Elemental Resistances", + "Strength from Passives in Radius is Transformed to Dexterity", + "Strength from Passives in Radius is Transformed to Dexterity", + "Dexterity from Passives in Radius is Transformed to Intelligence", + "Dexterity from Passives in Radius is Transformed to Intelligence", + "Intelligence from Passives in Radius is Transformed to Strength", + "Intelligence from Passives in Radius is Transformed to Strength", + "Strength from Passives in Radius is Transformed to Intelligence", + "Strength from Passives in Radius is Transformed to Intelligence", + "Intelligence from Passives in Radius is Transformed to Dexterity", + "Intelligence from Passives in Radius is Transformed to Dexterity", + "Dexterity from Passives in Radius is Transformed to Strength", + "Dexterity from Passives in Radius is Transformed to Strength", + "Knocks Back Enemies in an Area when you use a Flask", + "Your Attacks do not cost Mana", + "Cannot Leech or Regenerate Mana", + "Cannot Leech or Regenerate Mana", + "Resolute Technique", + "#% chance to Avoid being Stunned", + "#% chance to Avoid being Stunned", + "#% chance to Avoid Elemental Ailments", + "#% chance to Avoid Elemental Ailments", + "Attacks cannot cause Bleeding", + "Attacks cannot cause Bleeding", + "Attacks cannot cause Bleeding", + "With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain # of its Modifiers for 20 seconds", + "#% increased Area of Effect while Unarmed", + "#% reduced Area of Effect while Unarmed", + "# to Melee Strike Range while Unarmed", + "Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers", + "#% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius", + "#% reduced Chaos Damage per 10 Intelligence from Allocated Passives in Radius", + "Passives in Radius apply to Minions instead of you", + "#% increased Spell Damage per 10 Intelligence", + "#% reduced Spell Damage per 10 Intelligence", + "Recover #% of Life when you Consume a corpse", + "#% increased Totem Life per 10 Strength Allocated in Radius", + "#% reduced Totem Life per 10 Strength Allocated in Radius", + "Totems cannot be Stunned", + "Minions have +#% chance to Suppress Spell Damage", + "Minions have +#% chance to Suppress Spell Damage", + "Adds # to # Fire Attack Damage per Buff on you", + "Adds # to # Fire Spell Damage per Buff on you", + "Minions Recover #% of their Life when they Block", + "Minions Recover #% of their Life when they Block", + "#% increased Damage while Leeching", + "#% reduced Damage while Leeching", + "#% increased Damage while Leeching", + "#% reduced Damage while Leeching", + "#% increased Damage while Leeching", + "#% reduced Damage while Leeching", + "#% increased Movement Speed while Ignited", + "#% reduced Movement Speed while Ignited", + "#% increased Movement Speed while Ignited", + "#% reduced Movement Speed while Ignited", + "#% increased Movement Speed while Ignited", + "#% reduced Movement Speed while Ignited", + "Melee Hits Fortify", + "#% increased Damage taken", + "#% reduced Damage taken", + "#% increased Damage for each Magic Item Equipped", + "#% reduced Damage for each Magic Item Equipped", + "Totems fire # additional Projectile", + "#% chance to Gain Unholy Might for 4 seconds on Melee Kill", + "#% increased Spell Damage while no Mana is Reserved", + "#% reduced Spell Damage while no Mana is Reserved", + "#% increased Attributes per allocated Keystone", + "#% reduced Attributes per allocated Keystone", + "Gain # Life per Elemental Ailment on Enemies Hit with Attacks", + "Gain # Life per Elemental Ailment on Enemies Hit with Spells", + "Lose # Life per Elemental Ailment on Enemies Hit with Spells", + "Survival", + "Survival", + "Survival", + "Nearby Allies have Culling Strike", + "Nearby Allies have #% increased Item Rarity", + "Nearby Allies have #% reduced Item Rarity", + "Nearby Allies have +#% to Critical Damage Bonus", + "Nearby Allies have +# Fortification", + "#% chance to gain an additional Vaal Soul on Kill", + "#% increased Vaal Skill Effect Duration", + "#% reduced Vaal Skill Effect Duration", + "Vaal Skills have #% chance to regain consumed Souls when used", + "#% increased Vaal Skill Critical Hit Chance", + "#% reduced Vaal Skill Critical Hit Chance", + "#% to Vaal Skill Critical Damage Bonus", + "Flasks applied to you have #% increased Effect", + "Flasks applied to you have #% reduced Effect", + "#% increased Cost of Aura Skills that summon Totems", + "#% reduced Cost of Aura Skills that summon Totems", + "#% chance to gain an additional Vaal Soul per Enemy Shattered", + "#% increased Experience Gain for Corrupted Gems", + "#% reduced Experience Gain for Corrupted Gems", + "With 5 Corrupted Items Equipped: Gain Soul Eater for # seconds on Vaal Skill use", + "Lose #% of Life on Kill", + "Lose #% of Energy Shield on Kill", + "Curses you with Punishment on Kill", + "An additional Curse can be applied to you", + "#% increased Damage per Curse on you", + "#% reduced Damage per Curse on you", + "#% increased Damage taken while on Full Energy Shield", + "#% reduced Damage taken while on Full Energy Shield", + "#% increased Damage taken while on Full Energy Shield", + "#% reduced Damage taken while on Full Energy Shield", + "Your spells have #% chance to Shock against Frozen Enemies", + "1% increased Evasion Rating per # Dexterity Allocated in Radius", + "Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage", + "Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage", + "Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value", + "Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield", + "Adds 1 to Maximum Life per # Intelligence Allocated in Radius", + "Adds 1 maximum Lightning Damage to Attacks per # Dexterity Allocated in Radius", + "Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value", + "Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus", + "#% chance to Ignite", + "Gain # Life when you lose an Endurance Charge", + "#% increased Attack Damage against Bleeding Enemies", + "#% reduced Attack Damage against Bleeding Enemies", + "#% increased Attack Damage against Bleeding Enemies", + "#% reduced Attack Damage against Bleeding Enemies", + "#% increased Attack Damage against Bleeding Enemies", + "#% reduced Attack Damage against Bleeding Enemies", + "Curse Enemies with Flammability on Hit", + "Curse Enemies with Flammability on Hit", + "Grants Level # Lightning Warp Skill", + "#% chance to Avoid being Stunned", + "#% chance to Avoid being Stunned", + "#% chance to Avoid being Stunned", + "#% chance to Avoid being Stunned", + "#% chance to Avoid being Stunned", + "#% chance to Avoid being Stunned", + "#% chance to Avoid being Stunned", + "#% chance to Avoid being Stunned", + "#% chance to Avoid being Stunned", + "Socketed Gems are supported by Level # Multistrike", + "#% increased Melee Damage against Bleeding Enemies", + "#% reduced Melee Damage against Bleeding Enemies", + "#% increased Melee Damage against Bleeding Enemies", + "#% reduced Melee Damage against Bleeding Enemies", + "Adds # to # Fire Damage to Spells", + "Adds # to # Fire Damage to Spells", + "Adds # to # Fire Damage to Spells", + "Adds # to # Fire Damage to Spells", + "Adds # to # Fire Damage to Spells", + "Adds # to # Fire Damage to Spells", + "Adds # to # Fire Damage to Spells", + "Adds # to # Fire Damage to Spells", + "Adds # to # Fire Damage to Spells", + "Adds # to # Fire Damage to Spells", + "Adds # to # Fire Damage to Spells", + "Adds # to # Fire Damage to Spells", + "Adds # to # Fire Damage to Spells", + "Adds # to # Fire Damage to Spells", + "Adds # to # Fire Damage to Spells", + "Battlemage", + "Adds # to # Fire Damage to Spells", + "Adds # to # Cold Damage to Spells", + "Adds # to # Cold Damage to Spells", + "Adds # to # Cold Damage to Spells", + "Adds # to # Cold Damage to Spells", + "Adds # to # Cold Damage to Spells", + "Adds # to # Cold Damage to Spells", + "Adds # to # Cold Damage to Spells", + "Adds # to # Cold Damage to Spells", + "Adds # to # Cold Damage to Spells", + "Adds # to # Cold Damage to Spells", + "Adds # to # Cold Damage to Spells", + "Adds # to # Cold Damage to Spells", + "Adds # to # Cold Damage to Spells", + "Adds # to # Cold Damage to Spells", + "Adds # to # Cold Damage to Spells", + "Adds # to # Cold Damage to Spells", + "Adds # to # Cold Damage to Spells", + "Adds # to # Cold Damage to Spells", + "Adds # to # Lightning Damage to Spells", + "Adds # to # Lightning Damage to Spells", + "Adds # to # Lightning Damage to Spells", + "Adds # to # Lightning Damage to Spells", + "Adds # to # Lightning Damage to Spells", + "Adds # to # Lightning Damage to Spells", + "Adds # to # Lightning Damage to Spells", + "Adds # to # Lightning Damage to Spells", + "Adds # to # Lightning Damage to Spells", + "Adds # to # Lightning Damage to Spells", + "Adds # to # Lightning Damage to Spells", + "Adds # to # Lightning Damage to Spells", + "Adds # to # Lightning Damage to Spells", + "Adds # to # Lightning Damage to Spells", + "Adds # to # Lightning Damage to Spells", + "Adds # to # Lightning Damage to Spells", + "Adds # to # Lightning Damage to Spells", + "Adds # to # Lightning Damage to Spells", + "Adds # to # Fire Damage to Spells", + "Adds # to # Fire Damage to Spells", + "Adds # to # Fire Damage to Spells", + "Adds # to # Fire Damage to Spells", + "Adds # to # Fire Damage to Spells", + "Adds # to # Fire Damage to Spells", + "Adds # to # Fire Damage to Spells", + "Adds # to # Fire Damage to Spells", + "Adds # to # Fire Damage to Spells", + "Adds # to # Fire Damage to Spells", + "Adds # to # Cold Damage to Spells", + "Adds # to # Cold Damage to Spells", + "Adds # to # Cold Damage to Spells", + "Adds # to # Cold Damage to Spells", + "Adds # to # Cold Damage to Spells", + "Adds # to # Cold Damage to Spells", + "Adds # to # Cold Damage to Spells", + "Adds # to # Cold Damage to Spells", + "Adds # to # Cold Damage to Spells", + "Adds # to # Cold Damage to Spells", + "Adds # to # Lightning Damage to Spells", + "Adds # to # Lightning Damage to Spells", + "Adds # to # Lightning Damage to Spells", + "Adds # to # Lightning Damage to Spells", + "Adds # to # Lightning Damage to Spells", + "Adds # to # Lightning Damage to Spells", + "Adds # to # Lightning Damage to Spells", + "Adds # to # Lightning Damage to Spells", + "Adds # to # Lightning Damage to Spells", + "Adds # to # Lightning Damage to Spells", + "Adds # to # Lightning Damage to Spells", + "#% increased Damage per Curse on you", + "#% reduced Damage per Curse on you", + "#% chance to gain an Endurance Charge on Hit", + "#% chance to gain a Frenzy Charge on Hit", + "#% chance to gain an Endurance Charge on Hit", + "#% chance to gain a Frenzy Charge on Hit", + "#% chance to gain an Endurance Charge on Hit", + "Area has patches of desecrated ground", + "Area has patches of desecrated ground", + "Tempest Effects have #% increased Area of Effect", + "Tempest Effects have #% reduced Area of Effect", + "Tempest Effects have #% increased Area of Effect", + "Tempest Effects have #% reduced Area of Effect", + "#% increased Damage with Movement Skills", + "#% reduced Damage with Movement Skills", + "#% increased Damage with Movement Skills", + "#% reduced Damage with Movement Skills", + "#% increased Damage with Movement Skills", + "#% reduced Damage with Movement Skills", + "#% increased Attack Speed with Movement Skills", + "#% reduced Attack Speed with Movement Skills", + "#% increased Attack Speed with Movement Skills", + "#% reduced Attack Speed with Movement Skills", + "Gain # Life per Ignited Enemy Killed", + "Lose # Life per Ignited Enemy Killed", + "Gain # Life per Ignited Enemy Killed", + "Lose # Life per Ignited Enemy Killed", + "#% increased Damage taken from Skeletons", + "#% reduced Damage taken from Skeletons", + "#% increased Damage taken from Ghosts", + "#% reduced Damage taken from Ghosts", + "You cannot be Shocked while Frozen", + "Area is haunted by # additional Tormented Spirit", + "Ancient Talismans possess monsters throughout Wraeclast", + "Gain #% of Physical Damage as Extra Fire Damage", + "Gain #% of Physical Damage as Extra Fire Damage", + "Gain #% of Physical Damage as Extra Cold Damage", + "Gain #% of Physical Damage as Extra Cold Damage", + "Gain #% of Physical Damage as Extra Lightning Damage", + "Gain #% of Physical Damage as Extra Lightning Damage", + "#% increased Damage taken from Melee Attacks", + "#% reduced Damage taken from Melee Attacks", + "#% increased Damage taken from Melee Attacks", + "#% reduced Damage taken from Melee Attacks", + "Shrines are corrupted by Darkness", + "#% increased Global Physical Damage while Frozen", + "#% reduced Global Physical Damage while Frozen", + "Hits that Stun inflict Bleeding", + "Gain #% of Physical Damage as Extra Damage of a random Element", + "Gain #% of Physical Damage as Extra Fire Damage", + "Poison on Hit", + "#% increased Character Size", + "#% reduced Character Size", + "#% chance to grant Unholy Might to nearby Enemies on Kill", + "#% chance to grant Onslaught to nearby Enemies on Kill", + "#% chance to gain Unholy Might for 10 seconds on Kill", + "#% chance to gain Onslaught for 10 seconds on Kill", + "Recover #% of Energy Shield on Kill", + "Lose #% of Energy Shield on Kill", + "Recover #% of Energy Shield on Kill", + "Lose #% of Energy Shield on Kill", + "#% to Fire Damage over Time Multiplier", + "Triggers Level # Manifest Dancing Dervishes on Rampage", + "Triggers Level # Manifest Dancing Dervishes on Rampage", + "With at least 40 Dexterity in Radius, Barrage fires an additional Projectile simultaneously on the first and final attacks", + "With at least 40 Strength in Radius, Ground Slam\\nhas a #% increased angle", + "With at least 40 Strength in Radius, Ground Slam\\nhas a #% reduced angle", + "With at least 40 Strength in Radius, Ground Slam has a #% chance\\nto grant an Endurance Charge when you Stun an Enemy", + "With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to # Skeleton Mages", + "Siege Ballista has +# to maximum number of Summoned Totems per 200 Dexterity", + "Shrapnel Ballista has +# to maximum number of Summoned Totems per 200 Strength", + "Adds # to # Physical Damage to Attacks per 25 Dexterity", + "Adds # to # Physical Damage to Attacks per 25 Strength", + "Nearby Enemies are Blinded", + "Trigger Level # Fire Burst on Kill", + "Nearby Enemies are Hindered, with #% increased Movement Speed", + "Nearby Enemies are Hindered, with #% reduced Movement Speed", + "Socketed Gems are Supported by Level # Hypothermia", + "Socketed Gems are Supported by Level # Ice Bite", + "Socketed Gems are Supported by Level # Ice Bite", + "Socketed Gems are Supported by Level # Cold Penetration", + "Socketed Gems are Supported by Level # Mana Leech", + "Socketed Gems are Supported by Level # Added Cold Damage", + "Socketed Gems are Supported by Level # Added Cold Damage", + "Socketed Gems are Supported by Level # Inspiration", + "Socketed Gems are Supported by Level # Inspiration", + "Consumes 1 Frenzy Charge on use", + "#% increased Critical Hit Chance against Blinded Enemies", + "#% reduced Critical Hit Chance against Blinded Enemies", + "#% increased Critical Hit Chance against Blinded Enemies", + "#% reduced Critical Hit Chance against Blinded Enemies", + "#% increased Damage with Hits against Hindered Enemies", + "#% reduced Damage with Hits against Hindered Enemies", + "#% increased Damage with Hits against Hindered Enemies", + "#% reduced Damage with Hits against Hindered Enemies", + "Area contains a Stone Circle", + "Gain Soul Eater during any Flask Effect", + "Lose all Eaten Souls when you use a Flask", + "Players gain Soul Eater for # seconds on Rare Monster Kill", + "Players gain Modifiers from Slain Rare Monsters for # seconds", + "Players gain a Random Mod from Slain Rare Monsters for # seconds", + "Trigger Level # Fire Burst on Kill", + "Poison on Hit", + "Poison on Hit", + "Poison on Hit", + "Poison on Hit", + "Poison on Hit", + "Poison on Hit", + "#% increased Character Size", + "#% reduced Character Size", + "#% increased Character Size", + "#% reduced Character Size", + "#% increased Character Size", + "#% reduced Character Size", + "#% increased Character Size", + "#% reduced Character Size", + "Deals #% more Damage", + "Deals #% less Damage", + "Socketed Gems have no Reservation\\nYour Blessing Skills are Disabled", + "Grants Level # Illusory Warp Skill", + "Implicit Modifier magnitudes are doubled", + "Implicit Modifier magnitudes are doubled", + "#% increased Damage with Unarmed Attacks against Bleeding Enemies", + "#% reduced Damage with Unarmed Attacks against Bleeding Enemies", + "Modifiers to Claw Damage also apply to Unarmed Attack Damage with Melee Skills", + "#% to Unarmed Melee Attack Critical Hit Chance", + "Gain # Life per Bleeding Enemy Hit", + "Attacks cannot cause Bleeding", + "Trigger Level 10 Summon Spectral Wolf on Kill", + "Trigger Level 10 Summon Spectral Wolf on Kill", + "Trigger Level 10 Summon Spectral Wolf on Kill", + "#% chance to Trigger Level 25 Summon Spectral Wolf on Critical Hit with this Weapon", + "#% increased Attack Speed with Swords", + "#% reduced Attack Speed with Swords", + "#% increased Physical Damage with Axes", + "#% reduced Physical Damage with Axes", + "#% increased Physical Attack Damage while Dual Wielding", + "#% reduced Physical Attack Damage while Dual Wielding", + "Arrows Fork", + "Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed with Melee Skills", + "Modifiers to Claw Critical Hit Chance also apply to Unarmed Critical Hit Chance with Melee Skills", + "#% faster start of Energy Shield Recharge during any Flask Effect", + "#% slower start of Energy Shield Recharge during any Flask Effect", + "#% increased Energy Shield Recharge Rate during any Flask Effect", + "#% reduced Energy Shield Recharge Rate during any Flask Effect", + "Unique Boss drops an additional Map", + "Unique Boss drops an additional Map", + "#% increased Cold Damage per 1% Chance to Block Attack Damage", + "#% reduced Cold Damage per 1% Chance to Block Attack Damage", + "#% increased Maximum Mana per 2% Chance to Block Spell Damage", + "#% reduced Maximum Mana per 2% Chance to Block Spell Damage", + "#% increased Armour while Chilled or Frozen", + "#% reduced Armour while Chilled or Frozen", + "Adds # to # Cold Damage to Spells and Attacks", + "Adds # to # Cold Damage to Spells and Attacks", + "Adds # to # Cold Damage to Spells and Attacks", + "This Map's Modifiers to Quantity of Items found also apply to Rarity", + "Monsters drop items # Level higher", + "Creates a Smoke Cloud on Use", + "Creates Consecrated Ground on Use", + "Creates Chilled Ground on Use", + "Taunts nearby Enemies on use", + "Restores Ward on use", + "An Enemy Writhing Worms escape the Flask when used\\nWrithing Worms are destroyed when Hit", + "You lose all Endurance Charges on reaching maximum Endurance Charges", + "#% chance to Trigger Level 16 Molten Burst on Melee Hit", + "Petrified during Effect", + "#% additional Physical Damage Reduction during Effect", + "Nearby Enemies take {0:d} Lightning Damage per second", + "Flasks do not apply to you", + "Flasks you Use apply to your Raised Zombies and Spectres", + "Triggers Level # Abberath's Fury when Equipped", + "Regenerate #% of Life per second while Frozen", + "#% chance to knockback on Counterattack", + "#% chance for Energy Shield Recharge to start when you Block", + "This Weapon's Critical Hit Chance is {0:d}%", + "Attacks with this Weapon deal Double Damage to Chilled Enemies", + "Zealot's Oath during Effect", + "#% increased Damage while you have no Frenzy Charges", + "#% reduced Damage while you have no Frenzy Charges", + "#% increased Critical Hit Chance against Enemies on Full Life", + "#% reduced Critical Hit Chance against Enemies on Full Life", + "Minions deal # to # additional Attack Physical Damage", + "Gain #% of Physical Damage as Extra Lightning Damage with Attacks", + "Gain #% of Physical Damage as Extra Fire Damage with Attacks", + "Gain #% of Physical Damage as Extra Fire Damage with Attacks", + "# maximum Energy Shield per 5 Strength", + "# to maximum number of Summoned Golems", + "# to maximum number of Summoned Golems", + "# to maximum number of Summoned Golems", + "# to maximum number of Summoned Golems", + "# to maximum number of Summoned Golems", + "Grants Level # Summon Stone Golem Skill", + "Counts as all One Handed Melee Weapon Types", + "Socketed Gems are Supported by Level # Fortify", + "#% increased Energy Shield Recovery rate", + "#% reduced Energy Shield Recovery rate", + "#% increased Damage taken", + "#% reduced Damage taken", + "Caches of Perandus wealth can be found throughout Wraeclast", + "Immunity to Damage during Effect", + "This Weapon's Critical Hit Chance is {0:d}%", + "#% increased Physical Damage Over Time per 10 Dexterity", + "#% reduced Physical Damage Over Time per 10 Dexterity", + "#% increased Bleeding Duration per 12 Intelligence", + "#% reduced Bleeding Duration per 12 Intelligence", + "#% Chance to cause Bleeding Enemies to Flee on hit", + "#% chance to Avoid Fire Damage from Hits", + "#% increased Trap Trigger Area of Effect", + "#% reduced Trap Trigger Area of Effect", + "#% chance to create Chilled Ground when you Freeze an Enemy", + "#% chance to create Consecrated Ground when you Shatter an Enemy", + "#% Chance for Traps to Trigger an additional time", + "Traps and Mines deal # to # additional Physical Damage", + "Grants Last Breath when you Use a Skill during Effect, for #% of Mana Cost", + "Traps and Mines have a #% chance to Poison on Hit", + "Socketed Gems are Supported by Level # Blasphemy", + "Socketed Gems are Supported by Level # Blasphemy", + "Socketed Curse Gems have #% increased Reservation Efficiency", + "Socketed Curse Gems have #% increased Reservation Efficiency", + "#% chance to grant a Power Charge to nearby Allies on Kill", + "#% chance to grant a Frenzy Charge to nearby Allies on Hit", + "#% chance to Trigger Level 10 Summon Raging Spirit on Kill", + "#% of Physical Damage Converted to Chaos Damage", + "#% of Physical Damage Converted to Chaos Damage", + "Glows while in an Area containing a Unique Fish", + "Attacks with this Weapon Maim on hit", + "Always Critical Hit Shocked Enemies", + "You cannot deal Critical Hits against non-Shocked Enemies", + "Minions have #% chance to Blind Enemies on hit", + "Minions cannot be Blinded", + "Socketed Minion Gems are Supported by Level # Life Leech", + "Found Magic Items drop Identified", + "Gain # Mana per Grand Spectrum", + "Gain # Armour per Grand Spectrum", + "#% increased Elemental Damage per Grand Spectrum", + "#% increased Critical Hit Chance per Grand Spectrum", + "#% chance to Avoid Elemental Ailments per Grand Spectrum", + "Minions have +#% to Critical Damage Bonus per Grand Spectrum", + "# to Minimum Endurance Charges per Grand Spectrum", + "# to Minimum Frenzy Charges per Grand Spectrum", + "# to Minimum Power Charges per Grand Spectrum", + "Adds # minimum Cold Damage to Spells per Power Charge", + "Adds # minimum Cold Damage to Spells per Power Charge", + "# Mana gained on Killing a Frozen Enemy", + "#% chance to gain a Power Charge on Killing a Frozen Enemy", + "#% increased Damage if you've Frozen an Enemy Recently", + "#% reduced Damage if you've Frozen an Enemy Recently", + "Adds # to # Lightning Damage to Attacks with this Weapon per 10 Intelligence", + "Adds # to # Lightning Damage to Attacks with this Weapon per 10 Intelligence", + "#% increased Movement Speed while Bleeding", + "#% reduced Movement Speed while Bleeding", + "#% increased Physical Damage taken while moving", + "#% reduced Physical Damage taken while moving", + "#% additional Physical Damage Reduction while stationary", + "Adds # to # Lightning Damage for each Shocked Enemy you've Killed Recently", + "Damage Penetrates #% Cold Resistance against Chilled Enemies", + "Recover # Life when you Ignite an Enemy", + "Recover # Life when you Ignite an Enemy", + "Shock Reflection", + "Reflect Shocks applied to you to all Nearby Enemies", + "Chaos Damage taken does not cause double loss of Energy Shield while not on Low Life", + "Gain a Frenzy Charge on Hit while Bleeding", + "#% increased Cold Damage per Frenzy Charge", + "#% reduced Cold Damage per Frenzy Charge", + "#% increased Cold Damage per Frenzy Charge", + "#% reduced Cold Damage per Frenzy Charge", + "Recover # Life when you Block", + "Grants Level # Reckoning Skill", + "Minions Recover #% of Life on Killing a Poisoned Enemy", + "Gain a Frenzy Charge on reaching Maximum Power Charges", + "Grants Level # Envy Skill", + "Grants Level # Envy Skill", + "# Armour if you've Blocked Recently", + "# Armour if you've Blocked Recently", + "Minions have #% chance to Poison Enemies on Hit", + "Minions have #% chance to Poison Enemies on Hit", + "Trigger Level # Bone Nova when you Hit a Bleeding Enemy", + "Trigger Level # Icicle Burst when you Hit a Frozen Enemy", + "Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies", + "Evasion Rating is increased by Overcapped Cold Resistance", + "Critical Hit Chance is increased by Overcapped Lightning Resistance", + "#% chance to cover Enemies in Ash when they Hit you", + "Chill Enemy for {0:d} second when Hit, reducing their Action Speed by 30%", + "Sockets cannot be modified", + "You can only Socket Corrupted Gems in this item", + "#% chance to Curse Enemies with Vulnerability on Hit", + "Passives granting Fire Resistance or all Elemental Resistances in Radius\\nalso grant Chance to Block Attack Damage at #% of its value", + "Passives granting Cold Resistance or all Elemental Resistances in Radius\\nalso grant Chance to Suppress Spell Damage at #% of its value", + "Passives granting Lightning Resistance or all Elemental Resistances in Radius\\nalso grant Chance to Block Spell Damage at #% of its value", + "Passives granting Fire Resistance or all Elemental Resistances in Radius\\nalso grant an equal chance to gain an Endurance Charge on Kill", + "Passives granting Cold Resistance or all Elemental Resistances in Radius\\nalso grant an equal chance to gain a Frenzy Charge on Kill", + "Passives granting Lightning Resistance or all Elemental Resistances in Radius\\nalso grant an equal chance to gain a Power Charge on Kill", + "Trigger Level # Lightning Bolt when you deal a Critical Hit", + "Trigger Level # Lightning Bolt when you deal a Critical Hit", + "Trigger Level # Lightning Bolt when you deal a Critical Hit", + "#% increased Arctic Armour Buff Effect", + "#% reduced Arctic Armour Buff Effect", + "Arctic Armour has no Reservation", + "Bleeding Enemies you Kill Explode, dealing #% of\\ntheir Maximum Life as Physical Damage", + "#% increased Herald of Ice Damage", + "#% reduced Herald of Ice Damage", + "#% increased Lightning Damage taken", + "#% reduced Lightning Damage taken", + "#% of Lightning Damage is taken from Mana before Life", + "Recover #% of Mana when you Shock an Enemy", + "Trigger Socketed Spells when you Spend at least # Mana on an\\nUpfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown", + "Trigger Socketed Spells when you Spend at least # Mana on an\\nUpfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown", + "#% Chance to Block Attack Damage when in Off Hand", + "#% increased Global Critical Hit Chance when in Main Hand", + "#% to Global Critical Damage Bonus per Green Socket", + "#% of Physical Attack Damage Leeched as Life per Red Socket", + "#% increased Charges gained by Other Flasks during Effect", + "Gains no Charges during Effect of any Overflowing Chalice Flask", + "#% increased Lightning Damage per 10 Intelligence", + "#% reduced Lightning Damage per 10 Intelligence", + "#% increased Melee Damage per Endurance Charge", + "#% reduced Melee Damage per Endurance Charge", + "You cannot be Shocked while at maximum Endurance Charges", + "#% increased Stun Duration on you", + "#% reduced Stun Duration on you", + "Map has a Vaal Side Area", + "Every 10 seconds, gain #% increased Elemental Damage for 4 seconds", + "Every 10 seconds, gain #% reduced Elemental Damage for 4 seconds", + "#% increased Movement Speed if you've used a Warcry Recently", + "#% increased Movement Speed if you've used a Warcry Recently", + "Regenerate #% of Life per second if you've taken a Savage Hit in the past 1 second", + "#% increased Damage taken if you've taken a Savage Hit Recently", + "#% reduced Damage taken if you've taken a Savage Hit Recently", + "#% increased Damage with Hits for each Level higher the Enemy is than you", + "#% reduced Damage with Hits for each Level higher the Enemy is than you", + "#% increased Movement Skill Mana Cost", + "#% reduced Movement Skill Mana Cost", + "#% chance to Avoid Elemental Ailments while Phasing", + "#% increased Evasion Rating during Onslaught", + "#% reduced Evasion Rating during Onslaught", + "#% increased Quantity of Items Dropped by Slain Maimed Enemies", + "#% reduced Quantity of Items Dropped by Slain Maimed Enemies", + "#% increased Rarity of Items Dropped by Slain Maimed Enemies", + "#% reduced Rarity of Items Dropped by Slain Maimed Enemies", + "Skills Chain an additional time while at maximum Frenzy Charges", + "#% chance to gain a Frenzy Charge on Killing a Frozen Enemy", + "You have Phasing if Energy Shield Recharge has started Recently", + "#% increased Evasion Rating while Phasing", + "#% Chance to Block Attack Damage from Taunted Enemies", + "#% increased Armour and Evasion Rating if you've killed a Taunted Enemy Recently", + "#% reduced Armour and Evasion Rating if you've killed a Taunted Enemy Recently", + "Socketed Skills Summon your maximum number of Totems in formation", + "Totems gain +#% to all Elemental Resistances per Summoned Totem", + "Totems have #% increased Cast Speed per Summoned Totem", + "Totems have #% reduced Cast Speed per Summoned Totem", + "Totems have #% increased Attack Speed per Summoned Totem", + "Totems have #% reduced Attack Speed per Summoned Totem", + "#% increased Mana Recovery rate", + "#% reduced Mana Recovery rate", + "Attacks Chain an additional time when in Main Hand", + "Attacks fire an additional Projectile when in Off Hand", + "Adds # to # Cold Damage to Counterattacks", + "#% increased Golem Damage for each Type of Golem you have Summoned", + "#% reduced Golem Damage for each Type of Golem you have Summoned", + "#% increased Maximum Life if no Equipped Items are Corrupted", + "Regenerate # Life per second if no Equipped Items are Corrupted", + "Regenerate # Energy Shield per second if all Equipped items are Corrupted", + "Regenerate # Mana per second if all Equipped Items are Corrupted", + "Regenerate #% of Energy Shield per second while on Low Life", + "Enemies you Attack Reflect # Physical Damage to you", + "Enemies you Attack Reflect # Physical Damage to you", + "Your Hexes can affect Hexproof Enemies", + "Poison Cursed Enemies on hit", + "#% chance to Poison on Hit against Cursed Enemies", + "#% chance to be Shocked", + "#% chance to be Shocked", + "Contains an additional Redblade Unique Item", + "Contains an additional Mutewind Unique Item", + "Contains an additional Brinerot Unique Item", + "Contains an additional Renegade Unique Item", + "Contained Weapons are Animated", + "#% increased Global Defences per White Socket", + "#% reduced Global Defences per White Socket", + "Contains an additional Rare Maraketh Weapon", + "Contains an additional Deshret Item", + "#% increased Quantity of Items found with a Magic Item Equipped", + "#% reduced Quantity of Items found with a Magic Item Equipped", + "#% increased Rarity of Items found with a Normal Item Equipped", + "#% reduced Rarity of Items found with a Normal Item Equipped", + "Attack Skills have +# to maximum number of Summoned Totems", + "Gain #% of Physical Damage as Extra Cold Damage", + "Gain #% of Physical Damage as Extra Cold Damage", + "Gain #% of Physical Damage as Extra Cold Damage", + "Gain #% of Physical Damage as Extra Cold Damage", + "Gain #% of Physical Damage as Extra Cold Damage", + "Gain #% of Physical Damage as Extra Cold Damage", + "Gain #% of Physical Damage as Extra Cold Damage", + "Gain #% of Physical Damage as Extra Cold Damage", + "Gain #% of Physical Damage as Extra Lightning Damage", + "Gain #% of Physical Damage as Extra Lightning Damage", + "Gain #% of Physical Damage as Extra Lightning Damage", + "Gain #% of Physical Damage as Extra Lightning Damage", + "Gain #% of Physical Damage as Extra Lightning Damage", + "Gain #% of Physical Damage as Extra Fire Damage", + "Gain #% of Physical Damage as Extra Fire Damage", + "Gain #% of Physical Damage as Extra Fire Damage", + "Gain #% of Physical Damage as Extra Fire Damage", + "Gain #% of Physical Damage as Extra Fire Damage", + "Gain #% of Physical Damage as Extra Fire Damage", + "Gain #% of Physical Damage as Extra Fire Damage", + "Gain #% of Physical Damage as Extra Fire Damage", + "Gain #% of Physical Damage as extra Chaos Damage", + "Gain #% of Physical Damage as extra Chaos Damage", + "Gain #% of Physical Damage as extra Chaos Damage", + "Minions have +#% to Cold Resistance", + "Minions have +#% to Fire Resistance", + "Minions gain #% of their Physical Damage as Extra Cold Damage", + "Cannot be Stunned during Effect", + "#% chance to gain Phasing for 3 seconds when your Trap is triggered by an Enemy", + "Recover # Energy Shield when your Trap is triggered by an Enemy", + "Recover # Life when your Trap is triggered by an Enemy", + "Recover # Life when your Trap is triggered by an Enemy", + "#% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy", + "Bleeding cannot be inflicted on you", + "Bleeding cannot be inflicted on you", + "#% reduced Elemental Ailment Duration on you", + "#% increased Elemental Ailment Duration on you", + "Melee Attacks have #% chance to Poison on Hit", + "Melee Attacks have #% chance to Poison on Hit", + "#% increased Movement Speed if you've Killed Recently", + "#% reduced Movement Speed if you've Killed Recently", + "#% increased Movement Speed if you've Killed Recently", + "#% reduced Movement Speed if you've Killed Recently", + "Socketed Gems are Supported by Level 10 Controlled Destruction", + "Socketed Gems are Supported by Level # Controlled Destruction", + "Cold Damage from Hits also Contributes to Ignite Chance and Magnitude", + "Regenerate #% of Life per second per Endurance Charge", + "#% increased Area of Effect per Endurance Charge", + "#% reduced Area of Effect per Endurance Charge", + "#% chance to double Stun Duration", + "#% chance to double Stun Duration", + "Gain #% of Physical Damage as Extra Fire Damage with Attacks", + "Gain #% of Physical Damage as Extra Fire Damage", + "Gain #% of Physical Damage as Extra Fire Damage", + "If you've Warcried Recently, you and nearby allies have #% increased Attack, Cast and Movement Speed", + "Chaos Skills have #% increased Skill Effect Duration", + "Chaos Skills have #% reduced Skill Effect Duration", + "Immunity to Freeze, Chill, Curses and Stuns during Effect", + "Gain #% of Physical Damage as Extra Damage of each Element with Attacks", + "Gain #% of Physical Damage as Extra Damage of each Element with Attacks", + "Gain #% of Physical Damage as Extra Damage of each Element with Attacks", + "Casts Fire Nova", + "Empowered by Molten Gold", + "Removes Flask Charges", + "Enemies take increased Damage", + "Enemies are affected by Temporal Chains", + "Enemies take Damage when using Movement skills", + "Causes Bleeding", + "Socketed Gems deal # to # Added Fire Damage", + "Socketed Gems have #% more Attack and Cast Speed", + "Socketed Gems have #% more Attack and Cast Speed", + "Socketed Gems deal #% more Elemental Damage", + "#% of Physical Damage from Hits taken as Cold Damage", + "#% of Physical Damage from Hits taken as Cold Damage", + "Gain #% of Physical Damage as Extra Fire Damage", + "Gain #% of Physical Damage as Extra Fire Damage", + "Area contains many Sentinel Traps", + "#% increased Damage taken", + "#% reduced Damage taken", + "#% increased Chaos Damage taken over time", + "#% reduced Chaos Damage taken over time", + "#% increased Chaos Damage taken over time", + "#% reduced Chaos Damage taken over time", + "Socketed Gems have +3.5% Critical Hit Chance", + "#% increased Attack and Cast Speed during any Flask Effect", + "#% reduced Attack and Cast Speed during any Flask Effect", + "#% increased Movement Speed during any Flask Effect", + "#% reduced Movement Speed during any Flask Effect", + "# to # Added Cold Damage per Frenzy Charge", + "# to # Added Cold Damage per Frenzy Charge", + "Adds # to # Fire Damage if you've Blocked Recently", + "Socketed Gems have #% chance to Ignite", + "Socketed Gems deal #% more Damage while on Low Life", + "Gain #% of Physical Damage as Extra Cold Damage", + "Gain #% of Physical Damage as Extra Lightning Damage", + "Gain #% of Physical Damage as Extra Fire Damage", + "Damage Penetrates #% Elemental Resistances during any Flask Effect", + "#% additional Physical Damage Reduction during any Flask Effect", + "You and your Minions take #% increased Reflected Damage", + "You and your Minions take #% reduced Reflected Damage", + "#% chance to gain a Power Charge when you Block", + "Chill Nearby Enemies when you Block", + "#% chance to Recover 10% of Mana when you use a Skill", + "# to maximum Fortification", + "#% chance to Crush on Hit", + "#% chance to gain Alchemist's Genius when you use a Flask", + "Areas can contain Essences", + "Areas can contain Essences", + "Areas can contain Essences", + "Areas can contain Essences", + "Areas can contain Essences", + "#% chance to gain a Power, Frenzy or Endurance Charge on Kill", + "#% chance to gain a Power, Frenzy or Endurance Charge on Kill", + "Socketed Non-Curse Aura Gems have #% increased Aura Effect", + "Socketed Non-Curse Aura Gems have #% reduced Aura Effect", + "# to Level of Socketed Aura Gems", + "Cast Level 20 Fire Burst on Hit", + "Action Speed cannot be modified to below base value", + "Triggers Level 20 Spectral Spirits when Equipped\\n+# to maximum number of Spectral Spirits", + "#% chance to gain Onslaught for 3 seconds when Hit", + "You gain Onslaught for # seconds when Hit", + "Socketed Gems deal #% more Damage over Time", + "Socketed Gems deal #% less Damage over Time", + "#% Chance to Block Spell Damage while on Low Life", + "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds", + "#% Chance to Block Spell Damage", + "Your Hits inflict Decay, dealing # Chaos Damage per second for 8 seconds", + "#% increased Movement speed while on Burning, Chilled or Shocked ground", + "#% reduced Movement speed while on Burning, Chilled or Shocked ground", + "#% increased Mana Regeneration Rate while Shocked", + "#% reduced Mana Regeneration Rate while Shocked", + "Recover #% of your maximum Mana when you Block", + "Cannot Leech Life from Critical Hits", + "#% chance to Blind Enemies on Critical Hit", + "#% chance to Blind Enemies on Critical Hit", + "50% chance to cause Bleeding on Critical Hit", + "Stun Threshold is based on Energy Shield instead of Life", + "Stun Threshold is based on Energy Shield instead of Life", + "Enemies Taunted by you deal #% more Damage with Hits and\\nAilments against other targets", + "Enemies Taunted by you deal #% less Damage with Hits and\\nAilments against other targets", + "Enemies you Shock have #% increased Cast Speed", + "Enemies you Shock have #% reduced Cast Speed", + "Enemies you Shock have #% increased Movement Speed", + "Enemies you Shock have #% reduced Movement Speed", + "#% increased Burning Damage if you've Ignited an Enemy Recently", + "#% reduced Burning Damage if you've Ignited an Enemy Recently", + "Recover #% of Life when you Ignite an Enemy", + "#% increased Melee Physical Damage against Ignited Enemies", + "#% reduced Melee Physical Damage against Ignited Enemies", + "#% increased Quantity of Items Dropped by Slain Normal Enemies", + "#% reduced Quantity of Items Dropped by Slain Normal Enemies", + "#% increased Rarity of Items Dropped by Slain Magic Enemies", + "#% reduced Rarity of Items Dropped by Slain Magic Enemies", + "Heist Chests have a #% chance to Duplicate their contents", + "Completing a Heist generates an additional Reveal", + "Rogue Perks are doubled", + "#% more Rogue's Marker value of primary Heist Target", + "#% less Rogue's Marker value of primary Heist Target", + "#% increased Critical Hit Chance with arrows that Fork", + "#% reduced Critical Hit Chance with arrows that Fork", + "Arrows Pierce all Targets after Chaining", + "Arrows that Pierce have 50% chance to inflict Bleeding", + "#% increased Projectile Attack Damage per 200 Accuracy Rating", + "#% reduced Projectile Attack Damage per 200 Accuracy Rating", + "Spells fire an additional Projectile", + "Minions deal #% increased Damage if you've Hit Recently", + "Minions deal #% reduced Damage if you've Hit Recently", + "Minions deal #% increased Damage if you've Hit Recently", + "Minions deal #% reduced Damage if you've Hit Recently", + "Increases and Reductions to Minion Damage also affect you at 150% of their value", + "#% more Attack Speed", + "#% less Attack Speed", + "#% increased Critical Hit Chance against Chilled Enemies", + "#% reduced Critical Hit Chance against Chilled Enemies", + "Trigger a Socketed Cold Spell on Melee Critical Hit, with a 0.25 second Cooldown", + "#% increased Area of Effect for Attacks", + "#% reduced Area of Effect for Attacks", + "#% increased Area of Effect for Attacks", + "#% reduced Area of Effect for Attacks", + "#% increased Area of Effect for Attacks", + "#% reduced Area of Effect for Attacks", + "Physical Damage from Hits also Contributes to Shock Chance", + "Deal no Elemental Damage", + "Deal no Elemental Damage", + "Maim on Hit", + "Attacks have #% chance to Maim on Hit", + "Attacks have #% chance to Maim on Hit", + "Attacks have #% chance to Maim on Hit", + "Attacks cannot cause Bleeding", + "With at least 40 Intelligence in Radius, Raised Spectres have a #% chance to gain Soul Eater for 20 seconds on Kill", + "Movement Skills deal no Physical Damage", + "You have Phasing if you've Killed Recently", + "Movement Skills Cost no Mana", + "#% increased Projectile Attack Damage", + "#% reduced Projectile Attack Damage", + "# Mana per 4 Strength", + "#% increased Energy Shield per 10 Strength", + "# Life per 4 Dexterity", + "#% increased Melee Physical Damage per 10 Dexterity", + "# Accuracy Rating per 2 Intelligence", + "#% increased Evasion Rating per 10 Intelligence", + "#% increased Damage taken", + "#% reduced Damage taken", + "#% chance to gain a Frenzy Charge when you Stun an Enemy", + "#% increased Damage Over Time during Effect", + "#% reduced Damage Over Time during Effect", + "Grants Level # Despair Curse Aura during Effect", + "Projectiles Pierce all Targets while you have Phasing", + "Projectiles Pierce an additional Target while you have Phasing", + "#% chance to Avoid Projectiles while Phasing", + "Skills fire an additional Projectile during Effect", + "#% increased Area of Effect during Effect", + "Monster Level: #", + "Monster Level: #", + "Monster Level: #", + "Monster Level: #", + "Monster Level: #", + "Monster Level: #", + "Monster Level: #", + "Monster Level: #", + "Monster Level: #", + "Monster Level: #", + "Monster Level: #", + "Celestial Footprints", + "Unique Boss drops divination cards", + "Unique Boss gives #% increased Experience", + "Minions have #% increased Attack Speed", + "Minions have #% reduced Attack Speed", + "# Flask Charges recovered every 3 seconds", + "Area can contain Breaches", + "Area can contain Breaches", + "Area can contain Breaches", + "Traps from Skills are thrown randomly around targeted location", + "Strongbox Monsters are Enraged", + "Strongbox Monsters are Enraged", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "Contained Items have #% Quality", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "#% increased Rarity of Items Found from Chests", + "#% reduced Rarity of Items Found from Chests", + "# to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped", + "Primordial", + "Primordial", + "Primordial", + "Primordial", + "Golems have #% increased Maximum Life", + "Golems have #% reduced Maximum Life", + "Summoned Golems Regenerate #% of their Life per second", + "#% increased Damage if you Summoned a Golem in the past 8 seconds", + "#% reduced Damage if you Summoned a Golem in the past 8 seconds", + "Golems Summoned in the past 8 seconds deal #% increased Damage", + "Golems Summoned in the past 8 seconds deal #% reduced Damage", + "Golems Summoned in the past 8 seconds deal #% increased Damage", + "Golems Summoned in the past 8 seconds deal #% reduced Damage", + "Golem Skills have #% increased Cooldown Recovery Rate", + "Golem Skills have #% reduced Cooldown Recovery Rate", + "Summoned Golems have #% increased Cooldown Recovery Rate", + "Summoned Golems have #% reduced Cooldown Recovery Rate", + "#% increased Effect of Buffs granted by your Golems", + "#% reduced Effect of Buffs granted by your Golems", + "Golems have #% increased Attack and Cast Speed", + "Golems have #% reduced Attack and Cast Speed", + "Golems have +# to Armour", + "# Armour per Summoned Totem", + "#% increased Spell Damage if you've dealt a Critical Hit in the past 8 seconds", + "#% reduced Spell Damage if you've dealt a Critical Hit in the past 8 seconds", + "#% increased Spell Damage if you've dealt a Critical Hit Recently", + "#% reduced Spell Damage if you've dealt a Critical Hit Recently", + "Critical Hits deal no Damage", + "# Armour while stationary", + "#% chance to create Chilled Ground when Hit with an Attack", + "Unholy Might during Effect", + "Non-Critical Hits deal no Damage", + "Non-Critical Hits deal no Damage", + "#% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently", + "#% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently", + "Enemies Killed by your Hits are destroyed", + "#% to Critical Damage Bonus per 1% Chance to Block Attack Damage", + "1% increased Attack Damage per 200 of the lowest of Armour and Evasion Rating", + "Melee Hits which Stun have #% chance to Fortify", + "You have Onslaught while Fortified", + "Properties are doubled while in a Breach", + "#% chance to Trigger Level 1 Raise Spiders on Kill", + "Cannot Cast Spells", + "Spell Skills deal no Damage", + "Burning Hoofprints", + "#% increased Fire Damage per 20 Strength", + "#% reduced Fire Damage per 20 Strength", + "Summoned Golems are Aggressive", + "#% increased Spell Damage while Shocked", + "#% reduced Spell Damage while Shocked", + "#% to all maximum Resistances while you have no Endurance Charges", + "You have Onslaught while at maximum Endurance Charges", + "Half of your Strength is added to your Minions", + "1 to maximum number of Raised Zombies per # Strength", + "1% increased Rarity of Items found per # Rampage Kills", + "Immune to Burning Ground, Shocked Ground and Chilled Ground", + "# to Maximum Life per 10 Dexterity", + "Regenerate # Life per second while moving", + "Your Spells are disabled", + "# Life per 2% increased Rarity of Items found", + "Your Increases and Reductions to Quantity of Items found also apply to Damage", + "#% increased Quantity of Items found per Chest opened Recently", + "#% reduced Quantity of Items found per Chest opened Recently", + "#% increased Movement Speed per Chest opened Recently", + "#% reduced Movement Speed per Chest opened Recently", + "Contains an additional Pirate Unique item", + "Warcries Knock Back and Interrupt Enemies in a smaller Area", + "#% increased Attack and Cast Speed if you've used a Movement Skill Recently", + "#% reduced Attack and Cast Speed if you've used a Movement Skill Recently", + "Action Speed cannot be modified to below base value", + "Movement Speed cannot be modified to below base value", + "# to Maximum Charges", + "# to Maximum Charges", + "Area contains an additional Leaguestone", + "Your Energy Shield starts at zero", + "Your Energy Shield starts at zero", + "During Effect, Damage Penetrates #% Resistance of each Element for which your Uncapped Elemental Resistance is highest", + "During Effect, #% increased Damage taken of each Element for which your Uncapped Elemental Resistance is lowest", + "During Effect, #% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest", + "Socketed Gems are Supported by Level # Endurance Charge on Melee Stun", + "#% increased Damage with Hits against Chilled Enemies", + "#% reduced Damage with Hits against Chilled Enemies", + "Area contains a Perandus Chest", + "Area contains an additional guarded Vaal Vessel", + "Immune to Freeze and Chill while Ignited", + "Damage Penetrates #% of Fire Resistance if you have Blocked Recently", + "Grants Level # Blood Offering Skill", + "#% chance to Trigger Level 1 Create Lesser Shrine when you Kill an Enemy", + "#% chance to Trigger Level 1 Create Lesser Shrine when you Kill an Enemy", + "You always Ignite while Burning", + "#% Chance to Block Attack Damage while not Cursed", + "#% Chance to Block Spell Damage while Cursed", + "# Maximum Life per Level", + "# Maximum Mana per Level", + "# Maximum Energy Shield per Level", + "Trigger Level # Death Aura when Equipped", + "Mana Reservation of Herald Skills is always 45%", + "35% chance to avoid being Stunned for each Herald Buff affecting you", + "#% increased Damage if you have Shocked an Enemy Recently", + "#% reduced Damage if you have Shocked an Enemy Recently", + "Shocked Enemies you Kill Explode, dealing #% of\\ntheir Life as Lightning Damage which cannot Shock", + "Unaffected by Shock", + "Unaffected by Shock", + "Guarded by a stream of Ghost Pirates\\nGuarded by the Maiden of the Black Crest", + "#% increased Minion Attack Speed per 50 Dexterity", + "#% reduced Minion Attack Speed per 50 Dexterity", + "#% increased Minion Movement Speed per 50 Dexterity", + "#% reduced Minion Movement Speed per 50 Dexterity", + "Minions' Hits can only Kill Ignited Enemies", + "Blocks Projectiles while charging", + "# to Level of Socketed Herald Gems", + "# to Level of Socketed Herald Gems", + "#% increased Area of Effect while you have no Frenzy Charges", + "#% reduced Area of Effect while you have no Frenzy Charges", + "#% Global Critical Damage Bonus while you have no Frenzy Charges", + "# to Accuracy Rating while at Maximum Frenzy Charges", + "Movement Attack Skills have #% increased Attack Speed", + "Movement Attack Skills have #% reduced Attack Speed", + "#% increased Cold Damage if you have used a Fire Skill Recently", + "#% reduced Cold Damage if you have used a Fire Skill Recently", + "#% increased Fire Damage if you have used a Cold Skill Recently", + "#% reduced Fire Damage if you have used a Cold Skill Recently", + "#% increased Damage per Power Charge", + "#% reduced Damage per Power Charge", + "#% chance that if you would gain Power Charges, you instead gain up to\\nyour maximum number of Power Charges", + "Fire Damage from Hits also Contributes to Poison Magnitude", + "Cold Damage from Hits also Contributes to Poison Magnitude", + "Lightning Damage from Hits also Contributes to Poison Magntiude", + "Fire Skills have #% chance to Poison on Hit", + "Cold Skills have #% chance to Poison on Hit", + "Lightning Skills have #% chance to Poison on Hit", + "Area is inhabited by # additional Rogue Exile", + "Area is inhabited by # additional Rogue Exile", + "Area is inhabited by # additional Rogue Exile", + "Area is inhabited by # additional Rogue Exile", + "Area is inhabited by an additional Invasion Boss", + "Area is inhabited by an additional Invasion Boss", + "Area is inhabited by an additional Invasion Boss", + "Area is inhabited by an additional Invasion Boss", + "Area can contain Breaches", + "Area can contain Breaches", + "Area can contain Breaches", + "Area can contain Breaches", + "Area is haunted by # additional Tormented Spirit", + "Area is haunted by # additional Tormented Spirit", + "Area is haunted by # additional Tormented Spirit", + "Area is haunted by # additional Tormented Spirit", + "Area contains an additional Perandus Chest", + "Area contains an additional Perandus Chest", + "Area contains an additional Perandus Chest", + "Area contains an additional Perandus Chest", + "Slaying Enemies close together can attract monsters from Beyond this realm", + "Slaying Enemies close together can attract monsters from Beyond this realm", + "Slaying Enemies close together can attract monsters from Beyond this realm", + "Slaying Enemies close together can attract monsters from Beyond this realm", + "Magic Monster Packs in next Area will each have a Bloodline Mod", + "Rare Monsters in next Area will each have a Nemesis Mod", + "Rare Monsters in next Area will each have a Nemesis Mod", + "Magic Monster Packs in next Area will each have a Bloodline Mod", + "Areas can contain Abysses", + "Areas can contain Abysses", + "Area can contain Mysterious Harbingers", + "Area can contain Mysterious Harbingers", + "Area contains Metamorph Monsters", + "Slaying Enemies close together can attract monsters from Beyond this realm", + "Areas contain Ritual Altars", + "Area contains an Expedition Encounter", + "Monsters take {}% more Damage", + "Monsters take {}% less Damage", + "Monsters take {}% more Damage", + "Monsters take {}% less Damage", + "Monsters take {}% more Damage", + "Monsters take {}% less Damage", + "Monsters take {}% more Damage", + "Monsters take {}% less Damage", + "Monsters take {}% more Damage", + "Monsters take {}% less Damage", + "Monsters deal #% of Physical Damage as Extra Fire", + "Monsters deal #% of Physical Damage as Extra Fire", + "Monsters deal #% of Physical Damage as Extra Fire", + "Monsters deal #% of Physical Damage as Extra Fire", + "Monsters have #% chance to Hinder on Hit with Spells", + "Monsters have #% chance to Maim on Hit with Attacks", + "Area can contain Mysterious Harbingers", + "Areas can contain Essences", + "Items cannot drop as Magic or Rare", + "Grants Level # Doryani's Touch Skill", + "Grants Level 20 Summon Bestial Rhoa Skill", + "Grants Level 20 Summon Bestial Rhoa Skill", + "Grants Level 20 Summon Bestial Rhoa Skill", + "Chaos Resistance is doubled", + "Far Shot", + "#% increased Mana Cost of Minion Skills", + "#% reduced Mana Cost of Minion Skills", + "#% increased Mana Cost of Minion Skills", + "#% reduced Mana Cost of Minion Skills", + "Trigger Level # Intimidating Cry on Hit", + "Trigger Level # Lightning Warp on Hit with this Weapon", + "Trigger Level # Lightning Warp on Hit with this Weapon", + "Summon an additional Skeleton with Summon Skeletons", + "# second to Summon Skeleton Cooldown", + "Area can contain Mysterious Harbingers", + "Area can contain Mysterious Harbingers", + "Area can contain Mysterious Harbingers", + "Area can contain Mysterious Harbingers", + "Area contains an additional Harbinger", + "Area contains an additional Harbinger", + "Energy Shield Recharge starts when you are Stunned", + "Izaro will drop an additional Treasure Key on Death", + "Izaro will drop an additional Unique Item on Death", + "You will receive an additional use of the Divine Font", + "Players in the Labyrinth will be affected by Acceleration Shrine", + "Players in the Labyrinth will be affected by Acceleration Shrine", + "Players in the Labyrinth will be affected by Acceleration Shrine", + "Players in the Labyrinth will be affected by Acceleration Shrine", + "Players in the Labyrinth will be affected by Acceleration Shrine", + "Players in the Labyrinth will be affected by Acceleration Shrine", + "Labyrinth Traps are disabled in the Aspirant's Trial", + "#% increased Damage Taken from Hits from Labyrinth Traps\\n#% increased effectiveness of Damage over Time Debuffs from Labyrinth Traps on Players", + "#% reduced Damage Taken from Hits from Labyrinth Traps\\n#% reduced effectiveness of Damage over Time Debuffs from Labyrinth Traps on Players", + "#% increased Damage Taken from Hits from Labyrinth Traps\\n#% increased effectiveness of Damage over Time Debuffs from Labyrinth Traps on Players", + "#% reduced Damage Taken from Hits from Labyrinth Traps\\n#% reduced effectiveness of Damage over Time Debuffs from Labyrinth Traps on Players", + "#% increased Cooldown Recovery Rate for throwing Traps", + "#% reduced Cooldown Recovery Rate for throwing Traps", + "You take #% increased Extra Damage from Critical Hits while you have no Power Charges", + "You take #% reduced Extra Damage from Critical Hits while you have no Power Charges", + "Gain #% of Physical Damage as Extra Chaos Damage while at maximum Power Charges", + "Grants Level # Scorching Ray Skill", + "Grants Level # Blight Skill", + "Grants Level # Blight Skill", + "Grants Summon Harbinger of the Arcane Skill", + "Grants Summon Harbinger of the Arcane Skill", + "Grants Summon Harbinger of the Arcane Skill", + "Grants Summon Harbinger of the Arcane Skill", + "Grants Summon Harbinger of the Arcane Skill", + "Grants Summon Harbinger of the Arcane Skill", + "Grants Summon Harbinger of the Arcane Skill", + "Grants Summon Harbinger of the Arcane Skill", + "Grants Summon Harbinger of the Arcane Skill", + "Grants Summon Harbinger of the Arcane Skill", + "Grants Summon Harbinger of the Arcane Skill", + "Grants Summon Harbinger of the Arcane Skill", + "Channelling Skills deal #% increased Damage", + "Channelling Skills deal #% reduced Damage", + "#% more Poison Duration", + "#% less Poison Duration", + "Projectile Attack Skills have #% increased Critical Hit Chance", + "Projectile Attack Skills have #% reduced Critical Hit Chance", + "Socketed Gems are Supported by Level # Chance to Poison", + "Socketed Gems are Supported by Level # Vile Toxins", + "Socketed Gems are Supported by Level # Innervate", + "Socketed Gems are Supported by Level # Innervate", + "Socketed Gems are Supported by Level # Ice Bite", + "Trigger Level # Void Gaze when you use a Skill", + "Attacks with this Weapon deal # to # added Chaos Damage against\\nEnemies affected by at least 5 Poisons", + "#% increased Poison Duration per Power Charge", + "#% reduced Poison Duration per Power Charge", + "#% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons", + "#% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons", + "#% increased Poison Duration if you have at least 150 Intelligence", + "#% reduced Poison Duration if you have at least 150 Intelligence", + "Blight has #% increased Hinder Duration", + "Blight has #% reduced Hinder Duration", + "#% chance to Avoid All Damage from Hits", + "#% increased Energy Shield Recovery rate", + "#% reduced Energy Shield Recovery rate", + "Trigger Level # Storm Cascade when you Attack", + "Projectiles from Attacks have #% chance to inflict Bleeding on Hit while\\nyou have a Bestial Minion", + "Projectiles from Attacks have #% chance to Poison on Hit while\\nyou have a Bestial Minion", + "Projectiles from Attacks have #% chance to Maim on Hit while\\nyou have a Bestial Minion", + "Adds # to # Physical Damage to Attacks while you have a Bestial Minion", + "Adds # to # Chaos Damage to Attacks while you have a Bestial Minion", + "#% increased Attack and Movement Speed while you have a Bestial Minion", + "Trigger Level # Darktongue's Kiss when you Cast a Curse Spell", + "#% increased Effect of Lightning Ailments", + "#% reduced Effect of Lightning Ailments", + "#% increased Effect of Lightning Ailments", + "#% reduced Effect of Lightning Ailments", + "#% increased Effect of Lightning Ailments", + "#% reduced Effect of Lightning Ailments", + "Gems can be Socketed in this Item ignoring Socket Colour", + "Has no Attribute Requirements", + "Has no Attribute Requirements", + "Gems Socketed in Red Sockets have +# to Level", + "Gems Socketed in Green Sockets have +#% to Quality", + "Gems Socketed in Blue Sockets gain #% increased Experience", + "Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence", + "#% increased Scorching Ray beam length", + "#% reduced Scorching Ray beam length", + "Grants Level # Purity of Fire Skill", + "Grants Level # Purity of Ice Skill", + "Grants Level # Purity of Lightning Skill", + "Grants Level # Vaal Impurity of Fire Skill", + "Grants Level # Vaal Impurity of Ice Skill", + "Grants Level # Vaal Impurity of Lightning Skill", + "# to Spectre maximum Life", + "Spectres have #% increased maximum Life", + "Spectres have #% reduced maximum Life", + "Gain a Power Charge after Spending a total of 200 Mana", + "#% increased Cast Speed per Power Charge", + "Regenerate # Mana per Second per Power Charge", + "Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary", + "Lose all Frenzy, Endurance, and Power Charges when you Move", + "Area is inhabited by Solaris fanatics", + "Area is inhabited by Lunaris fanatics", + "Areas can contain Abysses", + "Areas can contain Abysses", + "#% increased Effect of non-Keystone Passive Skills in Radius", + "#% reduced Effect of non-Keystone Passive Skills in Radius", + "#% increased Attack, Cast and Movement Speed during Effect", + "#% reduced Attack, Cast and Movement Speed during Effect", + "Triggers Level # Fire Aegis when Equipped", + "Triggers Level # Cold Aegis when Equipped", + "Triggers Level # Lightning Aegis when Equipped", + "Triggers Level # Elemental Aegis when Equipped", + "Triggers Level # Elemental Aegis when Equipped", + "Triggers Level # Physical Aegis when Equipped", + "Socketed Gems are Supported by Level # Blasphemy", + "Grants Level # Summon Doedre's Effigy Skill\\nSocketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned\\nHexes from Socketed Skills can apply 5 additional Curses\\n20% less Effect of Curses from Socketed Hex Skills", + "Grants Level # Summon Doedre's Effigy Skill\\nSocketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned\\nHexes from Socketed Skills can apply 5 additional Curses", + "Poison you inflict is Reflected to you if you have fewer than 100 Poisons on you", + "Bleeding you inflict is Reflected to you", + "#% to Chaos Resistance per Poison on you", + "#% increased Damage for each Poison on you up to a maximum of 75%", + "#% reduced Damage for each Poison on you", + "#% increased Movement Speed for each Poison on you up to a maximum of 50%", + "#% reduced Movement Speed for each Poison on you", + "Poison you inflict with Travel Skills is Reflected to you if you\\nhave fewer than 5 Poisons on you", + "#% increased Armour while Bleeding", + "Cannot be Ignited if Strength is higher than Dexterity", + "Cannot be Frozen if Dexterity is higher than Intelligence", + "Cannot be Shocked if Intelligence is higher than Strength", + "#% increased Damage per 5 of your lowest Attribute", + "#% reduced Damage per 5 of your lowest Attribute", + "#% increased Duration of Ailments on Enemies", + "#% reduced Duration of Ailments on Enemies", + "#% increased Duration of Ailments on Enemies", + "#% reduced Duration of Ailments on Enemies", + "#% increased Duration of Ailments on Enemies", + "#% reduced Duration of Ailments on Enemies", + "Trigger Level # Fog of War when your Trap is triggered", + "Flammability has no Reservation if Cast as an Aura", + "Frostbite has no Reservation if Cast as an Aura", + "Conductivity has no Reservation if Cast as an Aura", + "Vulnerability has no Reservation if Cast as an Aura", + "Despair has no Reservation if Cast as an Aura", + "Temporal Chains has no Reservation if Cast as an Aura", + "Temporal Chains has no Reservation if Cast as an Aura", + "Punishment has no Reservation if Cast as an Aura", + "Enfeeble has no Reservation if Cast as an Aura", + "Elemental Weakness has no Reservation if Cast as an Aura", + "#% reduced Action Speed", + "#% increased Action Speed", + "#% chance to Suppress Spell Damage while your Off Hand is empty", + "#% increased Cold Damage while your Off Hand is empty", + "#% reduced Cold Damage while your Off Hand is empty", + "Every 16 seconds you gain Iron Reflexes for 8 seconds", + "#% more Damage with Arrow Hits at Close Range while you have Iron Reflexes", + "You have Far Shot while you do not have Iron Reflexes", + "#% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes", + "#% reduced Attack, Cast and Movement Speed while you do not have Iron Reflexes", + "All Elemental Damage from Hits Contributes to Shock Chance", + "Triggers Level # Death Walk when Equipped", + "With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks", + "With a Murderous Eye Jewel Socketed, Melee Hits have #% chance to Fortify", + "With a Murderous Eye Jewel Socketed, Melee Attacks grant # Rage on Hit, no more than once every second", + "With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks", + "With a Searching Eye Jewel Socketed, Blind Enemies for 4 seconds on Hit with Attacks", + "With a Searching Eye Jewel Socketed, Attacks have #% chance to grant Onslaught On Kill", + "#% increased Burning Damage", + "#% reduced Burning Damage", + "Deal no Non-Elemental Damage", + "Socketed Gems are Supported by Level # Elemental Penetration", + "Socketed Gems are Supported by Level # Elemental Penetration", + "#% chance to gain a Spirit Charge on Kill", + "Recover #% of Life when you lose a Spirit Charge", + "Recover #% of Life when you lose a Spirit Charge", + "Recover #% of Energy Shield when you lose a Spirit Charge", + "Gain #% of Physical Damage as Extra Damage of each Element per Spirit Charge", + "Trigger Level # Spirit Burst when you Use a Skill while you have a Spirit Charge", + "Gain a Spirit Charge every second", + "You lose all Spirit Charges when taking a Savage Hit", + "# to Maximum Spirit Charges per Abyss Jewel affecting you", + "# to Maximum Spirit Charges per Abyss Jewel affecting you", + "Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy", + "#% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill", + "Trigger Level 20 Shade Form when Hit", + "Adds # to # Physical Damage per Endurance Charge", + "#% to Chaos Resistance per Endurance Charge", + "#% increased Elemental Damage taken from Hits per Endurance Charge", + "#% reduced Elemental Damage taken from Hits per Endurance Charge", + "# to Armour per Endurance Charge", + "# to # Added Cold Damage per Frenzy Charge", + "#% chance to Avoid Elemental Damage from Hits per Frenzy Charge", + "Adds # to # Lightning Damage to Spells per Power Charge", + "#% Critical Hit Chance per Power Charge", + "#% Chance to Block Spell Damage per Power Charge", + "#% Chance to Block Spell Damage per Power Charge", + "#% increased Mana Cost of Raise Spectre", + "#% reduced Mana Cost of Raise Spectre", + "Consumes a Void Charge to Trigger Level # Void Shot when you fire Arrows with a Non-Triggered Skill", + "# Maximum Void Charges", + "Cannot be Stunned by Attacks if your other Ring is an Elder Item", + "#% increased Attack Damage if your other Ring is a Shaper Item", + "#% reduced Attack Damage if your other Ring is a Shaper Item", + "#% increased Spell Damage if your other Ring is an Elder Item", + "#% reduced Spell Damage if your other Ring is an Elder Item", + "Cannot be Stunned by Spells if your other Ring is a Shaper Item", + "Recover #% of Life when you use a Mana Flask", + "DNT Non-instant Recovery from Mana Flasks also applies to Life", + "#% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%", + "#% reduced Spell Damage for each 200 total Mana you have Spent Recently", + "#% increased Cost of Skills for each 200 total Mana Spent Recently", + "#% reduced Cost of Skills for each 200 total Mana Spent Recently", + "Battlemage", + "Adds # to # Physical Damage to Spells", + "#% chance to Trigger Level 20 Tentacle Whip on Kill", + "#% chance to Trigger Level 20 Glimpse of Eternity when Hit", + "#% chance to Trigger Level 20 Summon Volatile Anomaly on Kill", + "Grants Level # Petrification Statue Skill", + "Grants Level # Aspect of the Cat Skill", + "Grants Level # Aspect of the Avian Skill", + "Grants Level # Aspect of the Spider Skill", + "Grants Level # Intimidating Cry Skill", + "Grants Level # Aspect of the Crab Skill", + "Grants Level # Aspect of the Cat Skill", + "Grants Level # Aspect of the Avian Skill", + "Grants Level # Aspect of the Spider Skill", + "Grants Level # Aspect of the Crab Skill", + "Area is influenced by The Shaper", + "Area is influenced by The Shaper", + "#% increased Quantity of Items found when on Low Life", + "#% reduced Quantity of Items found when on Low Life", + "#% increased Damage per 15 Dexterity", + "#% increased Damage per 15 Dexterity", + "Regenerate # Life per second while Ignited", + "#% increased Elemental Damage if you've Killed a Cursed Enemy Recently", + "#% reduced Elemental Damage if you've Killed a Cursed Enemy Recently", + "#% chance to deal Double Damage per 500 Strength", + "Areas contain Beasts to hunt", + "Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy", + "Gain a Frenzy Charge on every 50th Rampage Kill", + "#% increased Area of Effect per 25 Rampage Kills", + "#% reduced Area of Effect per 25 Rampage Kills", + "Unaffected by Curses", + "#% chance to Chill Attackers for 4 seconds on Block", + "#% chance to Chill Attackers for 4 seconds on Block", + "#% chance to Shock Attackers for 4 seconds on Block", + "#% chance to Shock Attackers for 4 seconds on Block", + "Socketed Gems are Supported by Level # Trap And Mine Damage", + "Socketed Gems are Supported by Level # Cluster Trap", + "Adds # to # Cold Damage while you have Avian's Might", + "Adds # to # Lightning Damage while you have Avian's Might", + "# seconds to Avian's Might Duration", + "Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies", + "#% increased Aspect of the Avian Buff Effect", + "#% reduced Aspect of the Avian Buff Effect", + "Regenerate # Life per Second while you have Avian's Flight", + "Regenerate # Mana per Second while you have Avian's Flight", + "# seconds to Avian's Flight Duration", + "Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight", + "Area is Overgrown with Caustic Plants", + "Area is Overgrown with Large Caustic Plants", + "Area is Overgrown with Parasitic Caustic Plants", + "Area is Overgrown with Caustic Plants", + "Area is Overgrown with Caustic Plants", + "Area is Overgrown with Caustic Plants", + "Normal Monsters in this Area Regenerate #% of Life per second", + "Normal Monsters in this Area Regenerate #% of Life per second", + "Normal Monsters in this Area Regenerate #% of Life per second", + "#% Monster Physical Damage Reduction", + "#% Monster Physical Damage Reduction", + "#% Monster Physical Damage Reduction", + "Monsters deal #% of Physical Damage as Extra Fire", + "Monsters deal #% of Physical Damage as Extra Fire", + "Monsters deal #% of Physical Damage as Extra Fire", + "Monsters deal #% of Physical Damage as Extra Lightning", + "Monsters deal #% of Physical Damage as Extra Lightning", + "Monsters deal #% of Physical Damage as Extra Lightning", + "Monsters Poison on Hit", + "Monsters drop items # Level higher", + "Temple Architects drop an additional Map Currency Item", + "Area has a #% chance to contain Cadiro Perandus", + "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire", + "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold", + "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning", + "Areas contain deposits of Voltaxic Sulphite", + "#% increased Frenzy Charge Duration", + "#% reduced Frenzy Charge Duration", + "#% increased Power Charge Duration", + "#% reduced Power Charge Duration", + "#% chance to gain an Endurance Charge on Kill", + "#% chance to gain a Frenzy Charge on Kill", + "#% chance to gain a Power Charge on Kill", + "#% increased Movement Speed per Endurance Charge", + "#% reduced Movement Speed per Endurance Charge", + "#% increased Movement Speed per Power Charge", + "#% reduced Movement Speed per Power Charge", + "Regenerate #% of Life per second per Endurance Charge", + "Regenerate #% of Life per second per Frenzy Charge", + "Regenerate #% of Life per second per Power Charge", + "#% increased Damage per Endurance Charge", + "#% reduced Damage per Endurance Charge", + "#% increased Damage per Frenzy Charge", + "#% reduced Damage per Frenzy Charge", + "#% increased Damage per Power Charge", + "#% reduced Damage per Power Charge", + "# to # Fire Damage per Endurance Charge", + "# to # Added Cold Damage per Frenzy Charge", + "# to # Lightning Damage per Power Charge", + "#% Chance to Block Attack Damage per Endurance Charge", + "#% Chance to Block Attack Damage per Frenzy Charge", + "#% Chance to Block Attack Damage per Power Charge", + "#% chance to Suppress Spell Damage per Endurance Charge", + "#% chance to Suppress Spell Damage per Frenzy Charge", + "#% chance to Suppress Spell Damage per Power Charge", + "Gain #% of Fire Damage as Extra Chaos Damage per Endurance Charge", + "Gain #% of Cold Damage as Extra Chaos Damage per Frenzy Charge", + "Gain #% of Lightning Damage as Chaos Damage per Power Charge", + "#% increased Armour per Endurance Charge", + "#% increased Evasion Rating per Frenzy Charge", + "#% reduced Evasion Rating per Frenzy Charge", + "#% increased Energy Shield per Power Charge", + "#% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", + "#% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges", + "#% chance that if you would gain Power Charges, you instead gain up to\\nyour maximum number of Power Charges", + "Gain # Endurance Charge every second if you've been Hit Recently", + "#% chance to gain a Frenzy Charge on Hit", + "#% increased Attack and Cast Speed per Endurance Charge", + "#% reduced Attack and Cast Speed per Endurance Charge", + "#% increased Accuracy Rating per Frenzy Charge", + "#% reduced Accuracy Rating per Frenzy Charge", + "#% increased Attack and Cast Speed per Power Charge", + "#% reduced Attack and Cast Speed per Power Charge", + "#% increased Critical Hit Chance per Endurance Charge", + "#% reduced Critical Hit Chance per Endurance Charge", + "#% increased Critical Hit Chance per Frenzy Charge", + "#% reduced Critical Hit Chance per Frenzy Charge", + "#% to Chaos Resistance per Endurance Charge", + "#% additional Physical Damage Reduction per Frenzy Charge", + "#% additional Physical Damage Reduction per Power Charge", + "#% chance to Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges", + "#% chance to Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges", + "#% chance to Gain Arcane Surge on Hit with Spells while at maximum Power Charges", + "You cannot be Stunned while at maximum Endurance Charges", + "#% chance to gain a Flask Charge when you deal a Critical Hit while at maximum Frenzy Charges", + "You can apply an additional Curse while at maximum Power Charges", + "You have Iron Reflexes while at maximum Frenzy Charges", + "You have Mind over Matter while at maximum Power Charges", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "Area contains Immortal Syndicate activity", + "Area contains Immortal Syndicate activity", + "You gain Onslaught for # seconds when Hit", + "Gain #% of Physical Damage as Extra Fire Damage", + "Cannot be Knocked Back", + "Poison on Hit", + "Attacks cannot cause Bleeding", + "Hexproof", + "Gain #% of Physical Damage as Extra Cold Damage", + "Life cannot be Leeched from Monsters", + "Skills fire an additional Projectile", + "#% chance to Avoid being Chilled", + "Gain #% of Physical Damage as Extra Lightning Damage", + "Maim on Hit", + "Point Blank", + "#% chance to gain a Frenzy Charge on Hit", + "Deals #% more Attack Damage", + "Deals #% less Attack Damage", + "#% chance to Impale Enemies on Hit with Attacks", + "#% chance to gain an Endurance Charge on Hit", + "#% Global chance to Blind Enemies on hit", + "Melee Hits Fortify", + "Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell", + "#% chance to Hinder Enemies on Hit with Spells", + "Monsters deal #% of Physical Damage as Extra Fire", + "Monsters deal #% of Physical Damage as Extra Fire", + "Monsters deal #% of Physical Damage as Extra Fire", + "Monsters deal #% of Physical Damage as Extra Fire", + "Monsters deal #% of Physical Damage as Extra Fire", + "Life, Mana, Energy Shield and Flasks are not refilled in Towns", + "Players have +#% to All Resistances", + "Players have +#% to All Resistances", + "Players have +#% to All Resistances", + "Players have +#% to All Resistances", + "Players have +#% to All Resistances", + "Stashes cannot be used", + "Items cannot drop as Magic or Rare", + "Items cannot drop as Magic or Rare", + "Items cannot be sold to or purchased from NPCs", + "#% to Chaos Damage over Time Multiplier", + "#% to Chaos Damage over Time Multiplier", + "#% to Cold Damage over Time Multiplier", + "#% to Cold Damage over Time Multiplier", + "#% to Fire Damage over Time Multiplier", + "#% to Fire Damage over Time Multiplier", + "#% to Physical Damage over Time Multiplier", + "#% to Physical Damage over Time Multiplier", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "Area can contain Breaches", + "Area can contain Breaches", + "Area can contain Breaches", + "Area can contain Breaches", + "#% increased Waystones found in Area", + "#% increased Waystones found in Area", + "#% increased Waystones found in Area", + "#% increased Waystones found in Area", + "#% more Unique Items found in Area", + "#% more Unique Items found in Area", + "#% more Unique Items found in Area", + "#% more Unique Items found in Area", + "#% more Rare Shaper Items found in Area", + "#% more Rare Shaper Items found in Area", + "#% more Rare Shaper Items found in Area", + "#% more Rare Shaper Items found in Area", + "#% more Rare Elder Items found in Area", + "#% more Rare Elder Items found in Area", + "#% more Rare Elder Items found in Area", + "#% more Rare Elder Items found in Area", + "#% more Divination Cards found in Area", + "#% more Divination Cards found in Area", + "#% more Divination Cards found in Area", + "#% more Divination Cards found in Area", + "Area is haunted by # additional Tormented Spirit", + "Area is haunted by # additional Tormented Spirit", + "Area is haunted by # additional Tormented Spirit", + "Area is haunted by # additional Tormented Spirit", + "Area contains an additional Harbinger", + "Area contains an additional Harbinger", + "Area contains an additional Harbinger", + "Area contains an additional Harbinger", + "#% chance to contain an Expedition Encounter", + "#% chance to contain an Expedition Encounter", + "#% chance to contain an Expedition Encounter", + "#% chance to contain an Expedition Encounter", + "Area contains Metamorph Monsters", + "Area contains Metamorph Monsters", + "Area contains Metamorph Monsters", + "Area contains Metamorph Monsters", + "Area contains an additional Abyss", + "Area contains an additional Abyss", + "Area contains an additional Abyss", + "Area contains an additional Abyss", + "All Metamorph Monsters have Rewards", + "Abysses in Area spawn #% increased Monsters", + "Abysses in Area spawn #% reduced Monsters", + "Each Legion contains a War Hoard", + "Blight Encounters contain up to # additional Blight Boss", + "Harbingers have #% chance to drop an additional Stack of Currency Shards", + "Each Legion contains a War Hoard", + "Each Legion contains a War Hoard", + "Areas contain Memory Fragments", + "Areas contain Memory Fragments", + "Curse Skills have #% increased Cast Speed", + "Curse Skills have #% reduced Cast Speed", + "Curse Skills have #% increased Cast Speed", + "Curse Skills have #% reduced Cast Speed", + "#% chance to Trigger Socketed Curse Spell when you Cast a Curse Spell, with a 0.25 second Cooldown", + "Gain #% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped", + "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items", + "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Elder Items", + "#% increased Cold Damage per 1% Cold Resistance above 75%", + "#% increased Lightning Damage per 1% Lightning Resistance above 75%", + "Consecrated Ground created by this Flask has Tripled Radius", + "Consecrated Ground created during Effect applies #% increased Damage taken to Enemies", + "#% to Critical Hit Chance against Enemies on Consecrated Ground during Effect", + "#% increased Critical Hit Chance against Enemies on Consecrated Ground during Effect", + "#% reduced Critical Hit Chance against Enemies on Consecrated Ground during Effect", + "Enemies you kill are Shocked", + "#% chance to gain a Divine Charge on Hit", + "You gain Divinity for # seconds on reaching maximum Divine Charges\\nLose all Divine Charges when you gain Divinity", + "Never deal Critical Hits", + "Action Speed cannot be modified to below base value", + "#% reduced Mana Reservation Efficiency of Skills per 250 total Attributes", + "#% increased Mana Reservation Efficiency of Skills per 250 total Attributes", + "#% increased Mana Reservation Efficiency of Skills per 250 total Attributes", + "#% reduced Mana Reservation Efficiency of Skills per 250 total Attributes", + "Nearby Allies have #% increased Defences per 100 Strength you have", + "Nearby Allies have #% reduced Defences per 100 Strength you have", + "Nearby Allies have #% Chance to Block Attack Damage per 100 Strength you have", + "Nearby Allies have +#% to Critical Damage Bonus per 100 Dexterity you have", + "Nearby Allies have #% increased Cast Speed per 100 Intelligence you have", + "Nearby Allies have #% reduced Cast Speed per 100 Intelligence you have", + "Grants Level # Precision Skill", + "Precision has 100% increased Mana Reservation Efficiency", + "Precision has #% increased Mana Reservation Efficiency", + "Precision has #% reduced Mana Reservation Efficiency", + "Socketed Gems are Supported by Level # Divine Blessing", + "#% chance to Trigger a Socketed Bow Skill when you Attack with a Bow, with a 1 second Cooldown", + "#% chance to Trigger a Socketed Bow Skill when you Cast a Spell while wielding a Bow, with a 1 second Cooldown", + "Life Leech effects are not removed when Unreserved Life is Filled", + "When used in the Synthesiser, the new item will have an additional Herald Modifier", + "When used in the Synthesiser, the new item will have an additional Herald Modifier", + "When used in the Synthesiser, the new item will have an additional Herald Modifier", + "When used in the Synthesiser, the new item will have an additional Herald Modifier", + "When used in the Synthesiser, the new item will have an additional Herald Modifier", + "Herald of Thunder has #% reduced Mana Reservation Efficiency", + "Herald of Thunder has #% increased Mana Reservation Efficiency", + "Herald of Thunder has #% increased Mana Reservation Efficiency", + "Herald of Thunder has #% reduced Mana Reservation Efficiency", + "#% increased Lightning Damage while affected by Herald of Thunder", + "#% reduced Lightning Damage while affected by Herald of Thunder", + "Herald of Thunder has #% increased Buff Effect", + "Herald of Thunder has #% reduced Buff Effect", + "#% to maximum Lightning Resistance while affected by Herald of Thunder", + "#% to Lightning Resistance while affected by Herald of Thunder", + "Herald of Ash has #% reduced Mana Reservation Efficiency", + "Herald of Ash has #% increased Mana Reservation Efficiency", + "Herald of Ash has #% increased Mana Reservation Efficiency", + "Herald of Ash has #% reduced Mana Reservation Efficiency", + "#% increased Fire Damage while affected by Herald of Ash", + "#% reduced Fire Damage while affected by Herald of Ash", + "Herald of Ash has #% increased Buff Effect", + "Herald of Ash has #% reduced Buff Effect", + "#% to maximum Fire Resistance while affected by Herald of Ash", + "#% to Fire Resistance while affected by Herald of Ash", + "Herald of Ice has #% reduced Mana Reservation Efficiency", + "Herald of Ice has #% increased Mana Reservation Efficiency", + "Herald of Ice has #% increased Mana Reservation Efficiency", + "Herald of Ice has #% reduced Mana Reservation Efficiency", + "#% increased Cold Damage while affected by Herald of Ice", + "#% reduced Cold Damage while affected by Herald of Ice", + "Herald of Ice has #% increased Buff Effect", + "Herald of Ice has #% reduced Buff Effect", + "#% to maximum Cold Resistance while affected by Herald of Ice", + "#% to Cold Resistance while affected by Herald of Ice", + "Herald of Purity has #% reduced Mana Reservation Efficiency", + "Herald of Purity has #% increased Mana Reservation Efficiency", + "Herald of Purity has #% increased Mana Reservation Efficiency", + "Herald of Purity has #% reduced Mana Reservation Efficiency", + "#% increased Physical Damage while affected by Herald of Purity", + "#% reduced Physical Damage while affected by Herald of Purity", + "Herald of Purity has #% increased Buff Effect", + "Herald of Purity has #% reduced Buff Effect", + "Sentinels of Purity deal #% increased Damage", + "Sentinels of Purity deal #% reduced Damage", + "#% additional Physical Damage Reduction while affected by Herald of Purity", + "Herald of Agony has #% reduced Mana Reservation Efficiency", + "Herald of Agony has #% increased Mana Reservation Efficiency", + "Herald of Agony has #% increased Mana Reservation Efficiency", + "Herald of Agony has #% reduced Mana Reservation Efficiency", + "#% increased Chaos Damage while affected by Herald of Agony", + "#% reduced Chaos Damage while affected by Herald of Agony", + "Herald of Agony has #% increased Buff Effect", + "Herald of Agony has #% reduced Buff Effect", + "Agony Crawler deals #% increased Damage", + "Agony Crawler deals #% reduced Damage", + "#% to Chaos Resistance while affected by Herald of Agony", + "Synthesised Rare Monsters drop an additional Currency Item", + "Synthesised Magic Monsters have #% chance to drop a Currency Item", + "Synthesised Monsters have #% chance to drop a Currency Item", + "Synthesised Rare Monsters drop an additional Quality Currency Item", + "Synthesised Magic Monsters have #% chance to drop a Quality Currency Item", + "Synthesised Monsters have #% chance to drop a Quality Currency Item", + "Synthesised Rare Monsters have #% increased chance to drop a Fractured Item", + "Synthesised Magic Monsters have #% increased chance to drop a Fractured Item", + "Synthesised Monsters have #% increased chance to drop a Fractured Item", + "Items dropped by Synthesised Rare Monsters have #% chance to be Corrupted", + "Items dropped by Synthesised Magic Monsters have #% chance to be Corrupted", + "Items dropped by Synthesised Monsters have #% chance to be Corrupted", + "Synthesised Rare Monsters have #% increased chance to drop a Map", + "Synthesised Magic Monsters have #% increased chance to drop a Map", + "Synthesised Monsters have #% increased chance to drop a Map", + "Synthesised Rare Monsters have #% chance to drop a Divination Card", + "Synthesised Magic Monsters have #% chance to drop a Divination Card", + "Synthesised Monsters have #% chance to drop a Divination Card", + "Synthesised Rare Monsters have #% increased chance to drop a Unique Item", + "Synthesised Magic Monsters have #% increased chance to drop a Unique Item", + "Synthesised Monsters have #% increased chance to drop a Unique Item", + "#% increased Quantity of Items Dropped by Synthesised Rare Monsters", + "#% increased Quantity of Items Dropped by Synthesised Magic Monsters", + "#% increased Quantity of Items Dropped by Synthesised Monsters", + "#% increased Rarity of Items Dropped by Synthesised Rare Monsters", + "#% increased Rarity of Items Dropped by Synthesised Magic Monsters", + "#% increased Rarity of Items Dropped by Synthesised Monsters", + "Synthesised Rare Monsters grant #% increased Experience", + "Synthesised Magic Monsters grant #% increased Experience", + "Synthesised Monsters grant #% increased Experience", + "Synthesised Rare Monsters drop an additional Currency Shard", + "Synthesised Magic Monsters have #% chance to drop a Currency Shard", + "Synthesised Monsters have #% chance to drop a Currency Shard", + "Synthesised Rare Monsters have #% chance to drop a Shaper Item", + "Synthesised Magic Monsters have #% chance to drop a Shaper Item", + "Synthesised Monsters have #% chance to drop a Shaper Item", + "Synthesised Rare Monsters have #% chance to drop an Elder Item", + "Synthesised Magic Monsters have #% chance to drop an Elder Item", + "Synthesised Monsters have #% chance to drop an Elder Item", + "Synthesised Rare Monsters drop an additional Breach Splinter", + "Synthesised Magic Monsters have #% chance to drop a Breach Splinter", + "Synthesised Monsters have #% chance to drop a Breach Splinter", + "Synthesised Rare Monsters have #% chance to drop a Fossil", + "Synthesised Magic Monsters have #% chance to drop a Fossil", + "Synthesised Monsters have #% chance to drop a Fossil", + "Synthesised Rare Monsters have #% chance to drop a Jewel", + "Synthesised Rare Monsters have #% chance to drop an Abyss Jewel", + "Synthesised Rare Monsters have #% chance to drop a Map", + "Synthesised Rare Monsters have #% chance to drop a Talisman", + "Synthesised Rare Monsters have #% chance to drop an Essence", + "Synthesised Rare Monsters have a #% chance to resurrect as an Ally when slain", + "When a Player Kills a Synthesised Rare Monster, they have #% chance to gain its Modifiers for 20 seconds", + "Synthesised Rare Monsters have #% chance to drop a Vaal Fragment", + "Synthesised Rare Monsters have #% chance to drop a Veiled Item", + "Duplicate up to # Synthesised Rare Monsters", + "Duplicate up to # Synthesised Rare Monsters", + "Duplicate up to # Synthesised Rare Monsters", + "#% chance for Synthesised Packs to be upgraded to Magic", + "#% chance for Synthesised Packs to be upgraded to Rare", + "#% chance for Synthesised Rare Packs to have an additional Rare Monster", + "#% increased Size of Synthesised Monster Packs", + "#% increased Size of Synthesised Monster Packs", + "Doubles the values of Memory Modifiers affecting Memories placed on this location", + "Triples the values of Global Mods affecting Memories placed on this location", + "#% increased Experience from Monsters Slain in Memories placed on this Location", + "#% reduced Experience from Monsters Slain in Memories placed on this Location", + "Memories at this location do not collapse", + "Allow for memories at or adjacent to this location have BONUS", + "Area contains # additional Synthesised Chest which contains Normal Monsters", + "Area contains # additional Synthesised Chest which contains Magic Monsters", + "Area contains # additional Synthesised Chest which contains Rare Monsters", + "#% increased Skill Effect Duration while affected by Malevolence", + "#% reduced Skill Effect Duration while affected by Malevolence", + "#% to Damage over Time Multiplier while affected by Malevolence", + "#% to Damage over Time Multiplier while affected by Malevolence", + "#% increased Recovery rate of Life and Energy Shield while affected by Malevolence", + "#% reduced Recovery rate of Life and Energy Shield while affected by Malevolence", + "Unaffected by Poison while affected by Malevolence", + "Unaffected by Bleeding while affected by Malevolence", + "Damaging Ailments you inflict deal Damage #% faster while affected by Malevolence", + "#% to Damage over Time Multiplier while affected by Malevolence", + "Critical Hits Penetrate #% of Enemy Elemental Resistances while affected by Zealotry", + "#% increased Cast Speed while affected by Zealotry", + "#% increased Cast Speed while affected by Zealotry", + "Effects of Consecrated Ground you create while affected by Zealotry Linger for # seconds", + "Consecrated Ground you create while affected by Zealotry causes enemies to take #% increased Damage", + "Consecrated Ground you create while affected by Zealotry causes enemies to take #% reduced Damage", + "Gain Arcane Surge for 4 seconds when you create Consecrated Ground while affected by Zealotry", + "#% increased Critical Hit Chance against Enemies on Consecrated Ground while affected by Zealotry", + "Memories placed on this location are unaffected by Global Mods", + "Doubles the values of Global Mods affecting Memories placed next to this Location", + "Memories placed on this location can be run an additional time before Decaying", + "Memories placed on this location are # Level Higher", + "Monsters Slain within Memories placed on this location drop no Items", + "Doubles bonuses to Quantity of Items Found in Memories placed on this location", + "Doubles bonuses to Rarity of Items Found in Memories placed on this location", + "Doubles bonuses to Monster Pack Size in Memories placed on this location", + "Applies a Memory Modifier to Memories placed on or next to this location", + "Guest Monsters within Memories placed on this location are replaced by Synthesised Monsters", + "Triples the values of Global Mods affecting Memories placed on this location, if all adjacent locations have Memories", + "Memories placed on this location are unaffected by Global Mods", + "Monsters Slain within Memories placed on this location drop no Items", + "Doubles bonuses to Quantity of Items Found in Memories placed on this location", + "#% increased Experience from Monsters Slain in Memories placed on this Location", + "#% reduced Experience from Monsters Slain in Memories placed on this Location", + "#% increased Experience from Monsters Slain in Memories placed on this Location", + "#% reduced Experience from Monsters Slain in Memories placed on this Location", + "Memories placed on this location can be run an additional time before Decaying", + "Memories placed on this location can be run an additional time before Decaying", + "Memories placed on this location can be run an additional time before Decaying", + "Applies a Memory Modifier to Memories placed on or next to this location", + "Applies a Memory Modifier to Memories placed on or next to this location", + "Memories placed on this location are # Level Higher", + "Memories placed on this location are # Level Higher", + "Doubles the values of Memory Modifiers affecting Memories placed on this location", + "#% Global chance to Blind Enemies on hit", + "#% Global chance to Blind Enemies on hit", + "All Elemental Damage from Hits Contributes to Shock Chance", + "Guarded by a Magic Monster", + "Guarded by a Magic Monster", + "#% Chance to Block Attack Damage", + "#% Chance to Block Attack Damage", + "#% Chance to Block Attack Damage", + "#% Chance to Block Spell Damage", + "#% Chance to Block Spell Damage", + "#% Chance to Block Spell Damage", + "#% Chance to Block Attack Damage", + "#% Chance to Block Attack Damage", + "#% Chance to Block Attack Damage", + "#% Chance to Block Attack Damage", + "#% Chance to Block Attack Damage", + "#% Chance to Block Attack Damage", + "#% Chance to Block Attack Damage", + "#% Chance to Block Attack Damage", + "#% Chance to Block Spell Damage", + "#% Chance to Block Spell Damage", + "#% Chance to Block Attack Damage", + "Contains waves of Monsters", + "Contains additional waves of Undead Monsters", + "Area contains additional waves of Ghosts", + "Area contains additional waves of Phantasms", + "Area contains additional waves of Zombies", + "Area contains additional waves of Raging Spirits", + "Area contains additional waves of Bone Rhoas", + "Area contains additional waves of Oriathan Zombies", + "Area contains additional waves of Ravager Maws", + "{{Items dropped by Monsters have #% chance to be Corrupted}}", + "#% increased Damage taken", + "#% reduced Damage taken", + "Bathed in the blood of # sacrificed in the name of Xibaqua\\nPassives in radius are Conquered by the Vaal", + "Bathed in the blood of # sacrificed in the name of Xibaqua\\nPassives in radius are Conquered by the Vaal", + "Bathed in the blood of # sacrificed in the name of Xibaqua\\nPassives in radius are Conquered by the Vaal", + "Bathed in the blood of # sacrificed in the name of Xibaqua\\nPassives in radius are Conquered by the Vaal", + "Bathed in the blood of # sacrificed in the name of Xibaqua\\nPassives in radius are Conquered by the Vaal", + "Bathed in the blood of # sacrificed in the name of Xibaqua\\nPassives in radius are Conquered by the Vaal", + "#% increased Totem Damage per 10 Devotion", + "#% reduced Totem Damage per 10 Devotion", + "#% increased Brand Damage per 10 Devotion", + "#% reduced Brand Damage per 10 Devotion", + "Channelling Skills deal #% increased Damage per 10 Devotion", + "Channelling Skills deal #% reduced Damage per 10 Devotion", + "#% increased Area Damage per 10 Devotion", + "#% reduced Area Damage per 10 Devotion", + "#% increased Elemental Damage per 10 Devotion", + "#% reduced Elemental Damage per 10 Devotion", + "#% to all Elemental Resistances per 10 Devotion", + "#% increased Magnitude of Non-Damaging Ailments you inflict per 10 Devotion", + "#% reduced Magnitude of Non-Damaging Ailments you inflict per 10 Devotion", + "#% reduced Elemental Ailment Duration on you per 10 Devotion", + "#% increased Elemental Ailment Duration on you per 10 Devotion", + "#% increased Duration of Curses on you per 10 Devotion", + "#% reduced Duration of Curses on you per 10 Devotion", + "#% increased Minion Attack and Cast Speed per 10 Devotion", + "#% reduced Minion Attack and Cast Speed per 10 Devotion", + "Minions have +# to Accuracy Rating per 10 Devotion", + "Regenerate # Mana per Second per 10 Devotion", + "#% increased Mana Cost of Skills per 10 Devotion", + "#% reduced Mana Cost of Skills per 10 Devotion", + "#% increased effect of Non-Curse Auras per 10 Devotion", + "#% reduced effect of Non-Curse Auras per 10 Devotion", + "#% increased Defences from Equipped Shield per 10 Devotion", + "#% reduced Defences from Equipped Shield per 10 Devotion", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "Resilient to Fire Towers", + "Resilient to Cold Towers", + "Resilient to Lightning Towers", + "Resilient to Physical Towers", + "Ignores Summoning Towers", + "Natural inhabitants of this area have been removed", + "Natural inhabitants of this area have been removed", + "Areas contain additional Metamorph monsters", + "# to Monster Level of Area", + "Area is inhabited by # additional Rogue Exile", + "Map is occupied by The Enslaver", + "Map is occupied by The Enslaver", + "Map is occupied by The Enslaver", + "Map is occupied by The Enslaver", + "Map is occupied by The Enslaver", + "Map contains Baran's Citadel\\nItem Quantity increases amount of Rewards Baran drops by 20% of its value", + "Map contains Baran's Citadel\\nItem Quantity increases amount of Rewards Baran drops by 20% of its value", + "Map contains Baran's Citadel\\nItem Quantity increases amount of Rewards Baran drops by 20% of its value", + "Map contains Baran's Citadel\\nItem Quantity increases amount of Rewards Baran drops by 20% of its value", + "Map contains Baran's Citadel\\nItem Quantity increases amount of Rewards Baran drops by 20% of its value", + "# to Monster Level of Area", + "Map has # additional Synthesis Global Modifier", + "Map has # additional Synthesis Global Modifier", + "Map has # additional Synthesis Global Modifier", + "#% increased Character Size", + "#% reduced Character Size", + "Nova Spells have #% more Area of Effect", + "Nova Spells have #% less Area of Effect", + "#% more Attack Speed", + "#% less Attack Speed", + "Delirium Reward Type: #", + "Delirium Reward Type: #", + "Delirium Reward Type: #", + "Delirium Reward Type: #", + "Delirium Reward Type: #", + "Delirium Reward Type: #", + "Delirium Reward Type: #", + "Delirium Reward Type: #", + "Delirium Reward Type: #", + "All Monster Damage from Hits always Ignites", + "All Damage from Monsters' Hits Contributes to Chill Magnitude", + "All Damage from Monsters' Hits Contributes to Shock Chance", + "Monsters have #% chance to inflict Brittle", + "Monsters have #% chance to inflict Brittle", + "Monsters have #% chance to inflict Scorch", + "Monsters have #% chance to inflict Scorch", + "Monsters have #% chance to inflict Sapped", + "Monsters have #% chance to inflict Sapped", + "Monsters' skills Chain # additional times", + "Monsters' skills Chain # additional times", + "Monsters deal #% of Physical Damage as Extra Fire", + "Monsters deal #% of Physical Damage as Extra Fire", + "Monsters deal #% of Physical Damage as Extra Fire", + "Monsters deal #% of Physical Damage as Extra Fire", + "Monsters deal #% of Physical Damage as Extra Fire", + "Monsters deal #% of Physical Damage as Extra Fire", + "Monsters deal #% of Physical Damage as Extra Fire", + "Monsters deal #% of Physical Damage as Extra Fire", + "Monsters deal #% of Physical Damage as Extra Fire", + "Monsters deal #% of Physical Damage as Extra Cold", + "Monsters deal #% of Physical Damage as Extra Cold", + "Monsters deal #% of Physical Damage as Extra Cold", + "Monsters deal #% of Physical Damage as Extra Cold", + "Monsters deal #% of Physical Damage as Extra Cold", + "Monsters deal #% of Physical Damage as Extra Cold", + "Monsters deal #% of Physical Damage as Extra Cold", + "Monsters deal #% of Physical Damage as Extra Cold", + "Monsters deal #% of Physical Damage as Extra Cold", + "Monsters deal #% of Physical Damage as Extra Lightning", + "Monsters deal #% of Physical Damage as Extra Lightning", + "Monsters deal #% of Physical Damage as Extra Lightning", + "Monsters deal #% of Physical Damage as Extra Lightning", + "Monsters deal #% of Physical Damage as Extra Lightning", + "Monsters deal #% of Physical Damage as Extra Lightning", + "Monsters deal #% of Physical Damage as Extra Lightning", + "Monsters deal #% of Physical Damage as Extra Lightning", + "Monsters deal #% of Physical Damage as Extra Lightning", + "Monsters deal #% of Physical Damage as Extra Chaos", + "Monsters deal #% of Physical Damage as Extra Chaos", + "Monsters deal #% of Physical Damage as Extra Chaos", + "Monsters deal #% of Physical Damage as Extra Chaos", + "Monsters deal #% of Physical Damage as Extra Chaos", + "Monsters deal #% of Physical Damage as Extra Chaos", + "Monsters deal #% of Physical Damage as Extra Chaos", + "Monsters deal #% of Physical Damage as Extra Chaos", + "Monsters deal #% of Physical Damage as Extra Chaos", + "Monsters Overwhelm #% Physical Damage Reduction", + "Monsters Overwhelm #% Physical Damage Reduction", + "Monsters Overwhelm #% Physical Damage Reduction", + "Monsters Overwhelm #% Physical Damage Reduction", + "Monsters Overwhelm #% Physical Damage Reduction", + "Monsters Overwhelm #% Physical Damage Reduction", + "Monsters have #% chance to Impale with Attacks", + "Monsters have #% chance to Impale with Attacks", + "Monsters have a #% chance to cause Elemental Ailments on Hit", + "Monsters have a #% chance to cause Elemental Ailments on Hit", + "Monsters have a #% chance to cause Elemental Ailments on Hit", + "Monsters have a #% chance to cause Elemental Ailments on Hit", + "Monsters have a #% chance to cause Elemental Ailments on Hit", + "Monsters have a #% chance to cause Elemental Ailments on Hit", + "Monsters remove #% of Mana on hit", + "Monsters remove #% of Mana on hit", + "Monsters have #% chance to remove a Flask Charge on Hit", + "Monsters have #% chance to remove a Flask Charge on Hit", + "Monsters have #% chance to remove Charges on Hit", + "Monsters have #% chance to remove Charges on Hit", + "Monsters have #% chance to remove a Flask Charge on Hit", + "Monsters deal #% of Physical Damage as Extra Lightning", + "Monsters deal #% of Physical Damage as Extra Chaos", + "Monsters deal #% of Physical Damage as Extra Fire", + "Monsters deal #% of Physical Damage as Extra Cold", + "Monsters Overwhelm #% Physical Damage Reduction", + "Monsters drop no items", + "# to Level of dropped Reward Items", + "# to Level of dropped Reward Items", + "Area contains Metamorph Monsters", + "Does not consume Sextant Uses", + "#% chance to not consume Sextant Uses", + "Map has an additional random Modifier from Kirac's Crafting Bench", + "Map Boss is surrounded by Tormented Spirits", + "Unique Boss drops an additional Harbinger Scroll", + "Labyrinth owner receives an additional use of the Divine Font", + "Quality does not increase Damage", + "Quality does not increase Damage", + "Quality does not increase Damage", + "Quality does not increase Damage", + "Quality does not increase Damage", + "Quality does not increase Damage", + "Labyrinth Monsters have #% increased maximum Life", + "Labyrinth Monsters have #% reduced maximum Life", + "Izaro has #% increased maximum Life", + "Izaro has #% reduced maximum Life", + "Labyrinth Monsters have #% increased maximum Life", + "Labyrinth Monsters have #% reduced maximum Life", + "Izaro has #% increased maximum Life", + "Izaro has #% reduced maximum Life", + "Warcries cannot Empower Travel Skills", + "Rare Monsters in next Area will each have a Nemesis Mod", + "Monsters' skills Chain # additional times", + "Monsters' skills Chain # additional times", + "Monsters' Action Speed cannot be modified to below base value", + "All Monster Damage from Hits always Ignites", + "Monsters are Hexproof", + "Monsters cannot be Stunned", + "Monsters cannot be Stunned", + "Monsters cannot be Stunned", + "Monsters cannot be Stunned", + "Monsters cannot be Stunned", + "#% Monster Physical Damage Reduction", + "#% Monster Physical Damage Reduction", + "#% Monster Physical Damage Reduction", + "#% Monster Physical Damage Reduction", + "#% Monster Physical Damage Reduction", + "Monsters deal #% of Physical Damage as Extra Fire", + "Monsters deal #% of Physical Damage as Extra Fire", + "Monsters deal #% of Physical Damage as Extra Fire", + "Monsters deal #% of Physical Damage as Extra Fire", + "Monsters deal #% of Physical Damage as Extra Fire", + "Monsters deal #% of Physical Damage as Extra Cold", + "Monsters deal #% of Physical Damage as Extra Cold", + "Monsters deal #% of Physical Damage as Extra Cold", + "Monsters deal #% of Physical Damage as Extra Cold", + "Monsters deal #% of Physical Damage as Extra Cold", + "Monsters deal #% of Physical Damage as Extra Lightning", + "Monsters deal #% of Physical Damage as Extra Lightning", + "Monsters deal #% of Physical Damage as Extra Lightning", + "Monsters deal #% of Physical Damage as Extra Lightning", + "Monsters deal #% of Physical Damage as Extra Lightning", + "Monsters deal #% of Physical Damage as Extra Chaos", + "Monsters deal #% of Physical Damage as Extra Chaos", + "Monsters reflect #% of Physical Damage", + "Monsters reflect #% of Physical Damage", + "Monsters reflect #% of Physical Damage", + "Monsters reflect #% of Elemental Damage", + "Monsters reflect #% of Elemental Damage", + "Monsters reflect #% of Elemental Damage", + "Monsters have a #% chance to cause Elemental Ailments on Hit", + "Monsters have a #% chance to cause Elemental Ailments on Hit", + "#% Monster Chaos Resistance", + "#% Monster Chaos Resistance", + "#% Monster Chaos Resistance", + "#% Monster Chaos Resistance", + "Monsters have a #% chance to avoid Poison, Impale, and Bleeding", + "Monsters have a #% chance to avoid Poison, Impale, and Bleeding", + "Monsters have a #% chance to avoid Poison, Impale, and Bleeding", + "Monsters have #% chance to Impale with Attacks", + "Monsters have #% chance to Impale with Attacks", + "Monsters have #% chance to Impale with Attacks", + "Monsters have #% chance to Impale with Attacks", + "Monsters have +#% chance to Suppress Spell Damage", + "Monsters have +#% chance to Suppress Spell Damage", + "Monsters have +#% chance to Suppress Spell Damage", + "Monsters have +#% chance to Suppress Spell Damage", + "Patrol Packs have #% increased chance to be replaced by an Elite Patrol Pack", + "Patrol Packs have #% reduced chance to be replaced by an Elite Patrol Pack", + "Patrol Packs have #% increased chance to be replaced by an Elite Patrol Pack", + "Patrol Packs have #% reduced chance to be replaced by an Elite Patrol Pack", + "Patrol Packs have #% increased chance to be replaced by an Elite Patrol Pack", + "Patrol Packs have #% reduced chance to be replaced by an Elite Patrol Pack", + "Patrol Packs have #% increased chance to be replaced by an Elite Patrol Pack", + "Patrol Packs have #% reduced chance to be replaced by an Elite Patrol Pack", + "Patrol Packs have #% increased chance to be replaced by an Elite Patrol Pack", + "Patrol Packs have #% reduced chance to be replaced by an Elite Patrol Pack", + "Patrolling Monsters deal #% increased Damage", + "Patrolling Monsters deal #% reduced Damage", + "Patrolling Monsters deal #% increased Damage", + "Patrolling Monsters deal #% reduced Damage", + "Patrolling Monsters deal #% increased Damage", + "Patrolling Monsters deal #% reduced Damage", + "Patrolling Monsters deal #% increased Damage", + "Patrolling Monsters deal #% reduced Damage", + "Patrolling Monsters deal #% increased Damage", + "Patrolling Monsters deal #% reduced Damage", + "Patrol Packs take #% increased damage", + "Patrol Packs take #% reduced damage", + "Patrol Packs take #% increased damage", + "Patrol Packs take #% reduced damage", + "Patrol Packs take #% increased damage", + "Patrol Packs take #% reduced damage", + "Patrol Packs take #% increased damage", + "Patrol Packs take #% reduced damage", + "Patrol Packs take #% increased damage", + "Patrol Packs take #% reduced damage", + "Reward Room Monsters deal #% increased Damage", + "Reward Room Monsters deal #% reduced Damage", + "Reward Room Monsters deal #% increased Damage", + "Reward Room Monsters deal #% reduced Damage", + "Reward Room Monsters deal #% increased Damage", + "Reward Room Monsters deal #% reduced Damage", + "Reward Room Monsters deal #% increased Damage", + "Reward Room Monsters deal #% reduced Damage", + "Reward Room Monsters deal #% increased Damage", + "Reward Room Monsters deal #% reduced Damage", + "Reward Room Monsters take #% increased Damage", + "Reward Room Monsters take #% reduced Damage", + "Reward Room Monsters take #% increased Damage", + "Reward Room Monsters take #% reduced Damage", + "Reward Room Monsters take #% increased Damage", + "Reward Room Monsters take #% reduced Damage", + "Reward Room Monsters take #% increased Damage", + "Reward Room Monsters take #% reduced Damage", + "Reward Room Monsters take #% increased Damage", + "Reward Room Monsters take #% reduced Damage", + "Guards deal #% increased Damage", + "Guards deal #% reduced Damage", + "Guards deal #% increased Damage", + "Guards deal #% reduced Damage", + "Guards deal #% increased Damage", + "Guards deal #% reduced Damage", + "Guards deal #% increased Damage", + "Guards deal #% reduced Damage", + "Guards deal #% increased Damage", + "Guards deal #% reduced Damage", + "Guards take #% increased Damage", + "Guards take #% reduced Damage", + "Guards take #% increased Damage", + "Guards take #% reduced Damage", + "Guards take #% increased Damage", + "Guards take #% reduced Damage", + "Guards take #% increased Damage", + "Guards take #% reduced Damage", + "Guards take #% increased Damage", + "Guards take #% reduced Damage", + "#% increased Job speed", + "#% reduced Job speed", + "#% increased Job speed", + "#% reduced Job speed", + "#% increased Job speed", + "#% reduced Job speed", + "#% increased Job speed", + "#% reduced Job speed", + "#% increased Job speed", + "#% reduced Job speed", + "Reward Room Monsters deal #% increased Damage", + "Reward Room Monsters deal #% reduced Damage", + "Reward Room Monsters deal #% increased Damage", + "Reward Room Monsters deal #% reduced Damage", + "Reward Room Monsters deal #% increased Damage", + "Reward Room Monsters deal #% reduced Damage", + "Reward Room Monsters deal #% increased Damage", + "Reward Room Monsters deal #% reduced Damage", + "Reward Room Monsters deal #% increased Damage", + "Reward Room Monsters deal #% reduced Damage", + "Reward Room Monsters take #% increased Damage", + "Reward Room Monsters take #% reduced Damage", + "Reward Room Monsters take #% increased Damage", + "Reward Room Monsters take #% reduced Damage", + "Reward Room Monsters take #% increased Damage", + "Reward Room Monsters take #% reduced Damage", + "Reward Room Monsters take #% increased Damage", + "Reward Room Monsters take #% reduced Damage", + "Reward Room Monsters take #% increased Damage", + "Reward Room Monsters take #% reduced Damage", + "Reward Rooms have #% increased Monsters", + "Reward Rooms have #% reduced Monsters", + "Reward Rooms have #% increased Monsters", + "Reward Rooms have #% reduced Monsters", + "Reward Rooms have #% increased Monsters", + "Reward Rooms have #% reduced Monsters", + "Reward Rooms have #% increased Monsters", + "Reward Rooms have #% reduced Monsters", + "Reward Rooms have #% increased Monsters", + "Reward Rooms have #% reduced Monsters", + "Reinforcements have #% increased Movement Speed", + "Reinforcements have #% reduced Movement Speed", + "Reinforcements have #% increased Movement Speed", + "Reinforcements have #% reduced Movement Speed", + "Reinforcements have #% increased Movement Speed", + "Reinforcements have #% reduced Movement Speed", + "Reinforcements have #% increased Movement Speed", + "Reinforcements have #% reduced Movement Speed", + "Reinforcements have #% increased Movement Speed", + "Reinforcements have #% reduced Movement Speed", + "Patrol Pack Members have #% chance to be Magic", + "Patrol Pack Members have #% chance to be Magic", + "Patrol Pack Members have #% chance to be Magic", + "Guards have #% chance to be Rare", + "Lockdown occurs immediately when Alert Level is full", + "Magic Monster Packs in next Area will each have a Bloodline Mod", + "Monsters Poison on Hit", + "Players cannot inflict Exposure", + "Players have Point Blank", + "Monsters have #% chance to gain a Frenzy Charge on Hit", + "Monsters have #% chance to gain a Frenzy Charge on Hit", + "Monsters have #% chance to gain an Endurance Charge on Hit", + "Monsters have #% chance to gain an Endurance Charge on Hit", + "Monsters have #% chance to gain a Power Charge on Hit", + "Monsters have #% chance to gain a Power Charge on Hit", + "Area has patches of Shocked Ground which increase Damage taken by #%", + "Area has patches of Shocked Ground which increase Damage taken by #%", + "Area has patches of Shocked Ground which increase Damage taken by #%", + "Area has patches of Shocked Ground which increase Damage taken by #%", + "Area has patches of desecrated ground", + "Area has patches of desecrated ground", + "Area has patches of desecrated ground", + "Area has patches of desecrated ground", + "Area has patches of Consecrated Ground", + "Area has patches of Consecrated Ground", + "Area has patches of Consecrated Ground", + "Area has patches of Consecrated Ground", + "Players are Cursed with Vulnerability", + "Players are Cursed with Vulnerability", + "Players cannot Regenerate Life, Mana or Energy Shield", + "Cannot Leech from Monsters", + "Monsters have #% chance to Avoid Elemental Ailments", + "Monsters have #% chance to Avoid Elemental Ailments", + "Monsters have #% chance to Avoid Elemental Ailments", + "Players have #% increased Chance to Block", + "Players have #% reduced Chance to Block", + "Players have #% increased Chance to Block", + "Players have #% reduced Chance to Block", + "Players have #% increased Chance to Block", + "Players have #% reduced Chance to Block", + "Players have #% increased Chance to Block", + "Players have #% reduced Chance to Block", + "Players Prevent +#% of Suppressed Spell Damage", + "Players Prevent +#% of Suppressed Spell Damage", + "Players Prevent +#% of Suppressed Spell Damage", + "Players Prevent +#% of Suppressed Spell Damage", + "Players have #% more Area of Effect", + "Players have #% less Area of Effect", + "Players have #% more Area of Effect", + "Players have #% less Area of Effect", + "Players have #% more Area of Effect", + "Players have #% less Area of Effect", + "Players have #% more Area of Effect", + "Players have #% less Area of Effect", + "Monsters have #% chance to Blind on Hit", + "Monsters have #% chance to Maim on Hit with Attacks", + "Monsters have #% chance to Hinder on Hit with Spells", + "Buffs on Players expire #% faster", + "Buffs on Players expire #% faster", + "Buffs on Players expire #% faster", + "Buffs on Players expire #% faster", + "Players have #% increased effect of Non-Curse Auras from Skills", + "Players have #% reduced effect of Non-Curse Auras from Skills", + "Players have #% increased effect of Non-Curse Auras from Skills", + "Players have #% reduced effect of Non-Curse Auras from Skills", + "Players have #% increased effect of Non-Curse Auras from Skills", + "Players have #% reduced effect of Non-Curse Auras from Skills", + "Players have #% increased effect of Non-Curse Auras from Skills", + "Players have #% reduced effect of Non-Curse Auras from Skills", + "Players have #% more Accuracy Rating", + "Players have #% less Accuracy Rating", + "Players have #% more Accuracy Rating", + "Players have #% less Accuracy Rating", + "Players have #% more Accuracy Rating", + "Players have #% less Accuracy Rating", + "Players have #% more Accuracy Rating", + "Players have #% less Accuracy Rating", + "#% increased Total Heist Fee", + "#% reduced Total Heist Fee", + "#% increased Total Heist Fee", + "#% reduced Total Heist Fee", + "#% increased Total Heist Fee", + "#% reduced Total Heist Fee", + "#% increased Total Heist Fee", + "#% reduced Total Heist Fee", + "#% increased Total Heist Fee", + "#% reduced Total Heist Fee", + "#% increased raising of Alert Level from opening Chests", + "#% reduced raising of Alert Level from opening Chests", + "#% increased raising of Alert Level from opening Chests", + "#% reduced raising of Alert Level from opening Chests", + "#% increased raising of Alert Level from opening Chests", + "#% reduced raising of Alert Level from opening Chests", + "#% increased raising of Alert Level from opening Chests", + "#% reduced raising of Alert Level from opening Chests", + "#% increased raising of Alert Level from opening Chests", + "#% reduced raising of Alert Level from opening Chests", + "#% increased raising of Alert Level from Killing Monsters", + "#% reduced raising of Alert Level from Killing Monsters", + "#% increased raising of Alert Level from Killing Monsters", + "#% reduced raising of Alert Level from Killing Monsters", + "#% increased raising of Alert Level from Killing Monsters", + "#% reduced raising of Alert Level from Killing Monsters", + "#% increased raising of Alert Level from Killing Monsters", + "#% reduced raising of Alert Level from Killing Monsters", + "#% increased raising of Alert Level from Killing Monsters", + "#% reduced raising of Alert Level from Killing Monsters", + "The Ring takes no Cut", + "No Travel Cost", + "Alert Level increases by #% per second", + "Alert Level reduces by #% per second", + "Guards add additional Alert Level on Death", + "Guards remove Alert Level on Death", + "#% maximum Player Resistances per 25% Alert Level", + "#% maximum Player Resistances per 25% Alert Level", + "#% Player Fire Resistance per 25% Alert Level", + "#% Player Fire Resistance per 25% Alert Level", + "#% Player Fire Resistance per 25% Alert Level", + "#% Player Cold Resistance per 25% Alert Level", + "#% Player Cold Resistance per 25% Alert Level", + "#% Player Cold Resistance per 25% Alert Level", + "#% Player Lightning Resistance per 25% Alert Level", + "#% Player Lightning Resistance per 25% Alert Level", + "#% Player Lightning Resistance per 25% Alert Level", + "Players have #% more Armour per 25% Alert Level", + "Players have #% less Armour per 25% Alert Level", + "Players have #% more Armour per 25% Alert Level", + "Players have #% less Armour per 25% Alert Level", + "Players have #% more Armour per 25% Alert Level", + "Players have #% less Armour per 25% Alert Level", + "Players have #% more Armour per 25% Alert Level", + "Players have #% less Armour per 25% Alert Level", + "Players have #% more Evasion per 25% Alert Level", + "Players have #% less Evasion per 25% Alert Level", + "Players have #% more Evasion per 25% Alert Level", + "Players have #% less Evasion per 25% Alert Level", + "Players have #% more Evasion per 25% Alert Level", + "Players have #% less Evasion per 25% Alert Level", + "Players have #% more Evasion per 25% Alert Level", + "Players have #% less Evasion per 25% Alert Level", + "Players have #% more Energy Shield Recovery Rate per 25% Alert Level", + "Players have #% less Energy Shield Recovery Rate per 25% Alert Level", + "Players have #% more Energy Shield Recovery Rate per 25% Alert Level", + "Players have #% less Energy Shield Recovery Rate per 25% Alert Level", + "Players have #% more Energy Shield Recovery Rate per 25% Alert Level", + "Players have #% less Energy Shield Recovery Rate per 25% Alert Level", + "Players have #% more Life Recovery Rate per 25% Alert Level", + "Players have #% less Life Recovery Rate per 25% Alert Level", + "Players have #% more Life Recovery Rate per 25% Alert Level", + "Players have #% less Life Recovery Rate per 25% Alert Level", + "Players have #% more Life Recovery Rate per 25% Alert Level", + "Players have #% less Life Recovery Rate per 25% Alert Level", + "Players have #% more Mana Recovery Rate per 25% Alert Level", + "Players have #% less Mana Recovery Rate per 25% Alert Level", + "Players have #% more Mana Recovery Rate per 25% Alert Level", + "Players have #% less Mana Recovery Rate per 25% Alert Level", + "Players have #% more Mana Recovery Rate per 25% Alert Level", + "Players have #% less Mana Recovery Rate per 25% Alert Level", + "Players gain #% increased Flask Charges per 25% Alert Level", + "Players gain #% reduced Flask Charges per 25% Alert Level", + "Players gain #% increased Flask Charges per 25% Alert Level", + "Players gain #% reduced Flask Charges per 25% Alert Level", + "Players gain #% increased Flask Charges per 25% Alert Level", + "Players gain #% reduced Flask Charges per 25% Alert Level", + "Players gain #% increased Flask Charges per 25% Alert Level", + "Players gain #% reduced Flask Charges per 25% Alert Level", + "Players gain #% increased Flask Charges per 25% Alert Level", + "Players gain #% reduced Flask Charges per 25% Alert Level", + "#% increased raising of Alert Level", + "#% reduced raising of Alert Level", + "#% increased raising of Alert Level", + "#% reduced raising of Alert Level", + "#% increased raising of Alert Level", + "#% reduced raising of Alert Level", + "#% increased raising of Alert Level", + "#% reduced raising of Alert Level", + "#% increased Rarity of Items dropped in Heists", + "#% reduced Rarity of Items dropped in Heists", + "#% increased Rarity of Items dropped in Heists", + "#% reduced Rarity of Items dropped in Heists", + "#% increased Rarity of Items dropped in Heists", + "#% reduced Rarity of Items dropped in Heists", + "#% increased Rarity of Items dropped in Heists", + "#% reduced Rarity of Items dropped in Heists", + "#% increased Projectile Attack Damage", + "#% reduced Projectile Attack Damage", + "#% increased Projectile Attack Damage", + "#% reduced Projectile Attack Damage", + "#% increased Projectile Attack Damage", + "#% reduced Projectile Attack Damage", + "#% increased Projectile Attack Damage", + "#% reduced Projectile Attack Damage", + "#% increased Lockpicking speed", + "#% reduced Lockpicking speed", + "#% increased Lockpicking speed", + "#% reduced Lockpicking speed", + "#% increased Lockpicking speed", + "#% reduced Lockpicking speed", + "#% increased Lockpicking speed", + "#% reduced Lockpicking speed", + "#% increased Brute Force speed", + "#% reduced Brute Force speed", + "#% increased Brute Force speed", + "#% reduced Brute Force speed", + "#% increased Brute Force speed", + "#% reduced Brute Force speed", + "#% increased Brute Force speed", + "#% reduced Brute Force speed", + "#% increased Perception speed", + "#% reduced Perception speed", + "#% increased Perception speed", + "#% reduced Perception speed", + "#% increased Perception speed", + "#% reduced Perception speed", + "#% increased Perception speed", + "#% reduced Perception speed", + "#% increased Demolition speed", + "#% reduced Demolition speed", + "#% increased Demolition speed", + "#% reduced Demolition speed", + "#% increased Demolition speed", + "#% reduced Demolition speed", + "#% increased Demolition speed", + "#% reduced Demolition speed", + "#% increased Counter-Thaumaturgy speed", + "#% reduced Counter-Thaumaturgy speed", + "#% increased Counter-Thaumaturgy speed", + "#% reduced Counter-Thaumaturgy speed", + "#% increased Counter-Thaumaturgy speed", + "#% reduced Counter-Thaumaturgy speed", + "#% increased Counter-Thaumaturgy speed", + "#% reduced Counter-Thaumaturgy speed", + "#% increased Trap Disarmament speed", + "#% reduced Trap Disarmament speed", + "#% increased Trap Disarmament speed", + "#% reduced Trap Disarmament speed", + "#% increased Trap Disarmament speed", + "#% reduced Trap Disarmament speed", + "#% increased Trap Disarmament speed", + "#% reduced Trap Disarmament speed", + "#% increased Agility speed", + "#% reduced Agility speed", + "#% increased Agility speed", + "#% reduced Agility speed", + "#% increased Agility speed", + "#% reduced Agility speed", + "#% increased Agility speed", + "#% reduced Agility speed", + "#% increased Deception speed", + "#% reduced Deception speed", + "#% increased Deception speed", + "#% reduced Deception speed", + "#% increased Deception speed", + "#% reduced Deception speed", + "#% increased Deception speed", + "#% reduced Deception speed", + "#% increased Engineering speed", + "#% reduced Engineering speed", + "#% increased Engineering speed", + "#% reduced Engineering speed", + "#% increased Engineering speed", + "#% reduced Engineering speed", + "#% increased Engineering speed", + "#% reduced Engineering speed", + "#% increased time before Lockdown", + "#% reduced time before Lockdown", + "#% increased time before Lockdown", + "#% reduced time before Lockdown", + "#% increased time before Lockdown", + "#% reduced time before Lockdown", + "#% increased time before Lockdown", + "#% reduced time before Lockdown", + "#% increased Job speed", + "#% reduced Job speed", + "#% increased Job speed", + "#% reduced Job speed", + "#% increased Job speed", + "#% reduced Job speed", + "#% increased Job speed", + "#% reduced Job speed", + "#% increased Job Experience gain", + "#% reduced Job Experience gain", + "#% increased Job Experience gain", + "#% reduced Job Experience gain", + "#% increased Job Experience gain", + "#% reduced Job Experience gain", + "#% increased Job Experience gain", + "#% reduced Job Experience gain", + "# to Character Level", + "# to Character Level", + "# to Character Level", + "# to Character Level", + "#% increased Damage with Hits against Enemies that are on Full Life", + "#% reduced Damage with Hits against Enemies that are on Full Life", + "#% increased Damage with Hits against Enemies that are on Full Life", + "#% reduced Damage with Hits against Enemies that are on Full Life", + "#% increased Damage with Hits against Enemies that are on Full Life", + "#% reduced Damage with Hits against Enemies that are on Full Life", + "#% increased Damage with Hits against Enemies that are on Full Life", + "#% reduced Damage with Hits against Enemies that are on Full Life", + "#% increased Damage while area is not in Lockdown\\nPlayers deal #% increased Damage while area is not in Lockdown", + "#% reduced Damage while area is not in Lockdown\\nPlayers deal #% reduced Damage while area is not in Lockdown", + "#% increased Damage while area is not in Lockdown\\nPlayers deal #% increased Damage while area is not in Lockdown", + "#% reduced Damage while area is not in Lockdown\\nPlayers deal #% reduced Damage while area is not in Lockdown", + "#% increased Damage while area is not in Lockdown\\nPlayers deal #% increased Damage while area is not in Lockdown", + "#% reduced Damage while area is not in Lockdown\\nPlayers deal #% reduced Damage while area is not in Lockdown", + "#% increased Damage while area is not in Lockdown\\nPlayers deal #% increased Damage while area is not in Lockdown", + "#% reduced Damage while area is not in Lockdown\\nPlayers deal #% reduced Damage while area is not in Lockdown", + "#% increased Movement Speed while area is not in Lockdown\\nPlayers have #% increased Movement Speed while area is not in Lockdown", + "#% reduced Movement Speed while area is not in Lockdown\\nPlayers have #% reduced Movement Speed while area is not in Lockdown", + "#% increased Movement Speed while area is not in Lockdown\\nPlayers have #% increased Movement Speed while area is not in Lockdown", + "#% reduced Movement Speed while area is not in Lockdown\\nPlayers have #% reduced Movement Speed while area is not in Lockdown", + "#% increased Movement Speed while area is not in Lockdown\\nPlayers have #% increased Movement Speed while area is not in Lockdown", + "#% reduced Movement Speed while area is not in Lockdown\\nPlayers have #% reduced Movement Speed while area is not in Lockdown", + "#% increased Movement Speed while area is not in Lockdown\\nPlayers have #% increased Movement Speed while area is not in Lockdown", + "#% reduced Movement Speed while area is not in Lockdown\\nPlayers have #% reduced Movement Speed while area is not in Lockdown", + "# to # added Physical Damage\\nPlayers and their Minions have # to # added Physical Damage", + "# to # added Physical Damage\\nPlayers and their Minions have # to # added Physical Damage", + "# to # added Physical Damage\\nPlayers and their Minions have # to # added Physical Damage", + "# to # added Physical Damage\\nPlayers and their Minions have # to # added Physical Damage", + "# to # added Fire Damage\\nPlayers and their Minions have # to # added Fire Damage", + "# to # added Fire Damage\\nPlayers and their Minions have # to # added Fire Damage", + "# to # added Fire Damage\\nPlayers and their Minions have # to # added Fire Damage", + "# to # added Fire Damage\\nPlayers and their Minions have # to # added Fire Damage", + "# to # added Cold Damage\\nPlayers and their Minions have # to # added Cold Damage", + "# to # added Cold Damage\\nPlayers and their Minions have # to # added Cold Damage", + "# to # added Cold Damage\\nPlayers and their Minions have # to # added Cold Damage", + "# to # added Cold Damage\\nPlayers and their Minions have # to # added Cold Damage", + "# to # added Lightning Damage\\nPlayers and their Minions have # to # added Lightning Damage", + "# to # added Lightning Damage\\nPlayers and their Minions have # to # added Lightning Damage", + "# to # added Lightning Damage\\nPlayers and their Minions have # to # added Lightning Damage", + "# to # added Lightning Damage\\nPlayers and their Minions have # to # added Lightning Damage", + "#% increased Projectile Attack Damage", + "#% reduced Projectile Attack Damage", + "#% increased Projectile Attack Damage", + "#% reduced Projectile Attack Damage", + "#% increased Projectile Attack Damage", + "#% reduced Projectile Attack Damage", + "#% increased Projectile Attack Damage", + "#% reduced Projectile Attack Damage", + "#% increased Rarity of Items dropped in Heists", + "#% reduced Rarity of Items dropped in Heists", + "#% increased Rarity of Items dropped in Heists", + "#% reduced Rarity of Items dropped in Heists", + "#% increased Rarity of Items dropped in Heists", + "#% reduced Rarity of Items dropped in Heists", + "#% increased Rarity of Items dropped in Heists", + "#% reduced Rarity of Items dropped in Heists", + "#% increased Quantity of Items dropped in Heists", + "#% reduced Quantity of Items dropped in Heists", + "#% increased Quantity of Items dropped in Heists", + "#% reduced Quantity of Items dropped in Heists", + "#% increased Quantity of Items dropped in Heists", + "#% reduced Quantity of Items dropped in Heists", + "#% increased Quantity of Items dropped in Heists", + "#% reduced Quantity of Items dropped in Heists", + "Monsters have #% chance to Duplicate dropped Rogue's Marker", + "Monsters have #% chance to Duplicate dropped Rogue's Marker", + "Monsters have #% chance to Duplicate dropped Rogue's Marker", + "Monsters have #% chance to Duplicate dropped Rogue's Marker", + "#% chance to Avoid being Interrupted", + "#% chance to Avoid being Interrupted", + "#% chance to Avoid being Interrupted", + "#% chance to Avoid being Interrupted", + "# to Level of all Jobs for Heists", + "# to Lockpicking Level for Heists", + "# to Brute Force Level for Heists", + "# to Perception Level for Heists", + "# to Demolition Level for Heists", + "# to Counter-Thaumaturgy Level for Heists", + "# to Trap Disarmament Level for Heists", + "# to Agility Level for Heists", + "# to Deception Level for Heists", + "# to Engineering Level for Heists", + "#% increased Lockpicking Experience gained", + "#% reduced Lockpicking Experience gained", + "#% increased Lockpicking Experience gained", + "#% reduced Lockpicking Experience gained", + "#% increased Lockpicking Experience gained", + "#% reduced Lockpicking Experience gained", + "#% increased Lockpicking Experience gained", + "#% reduced Lockpicking Experience gained", + "#% increased Brute Force Experience gained", + "#% reduced Brute Force Experience gained", + "#% increased Brute Force Experience gained", + "#% reduced Brute Force Experience gained", + "#% increased Brute Force Experience gained", + "#% reduced Brute Force Experience gained", + "#% increased Brute Force Experience gained", + "#% reduced Brute Force Experience gained", + "#% increased Perception Experience gained", + "#% reduced Perception Experience gained", + "#% increased Perception Experience gained", + "#% reduced Perception Experience gained", + "#% increased Perception Experience gained", + "#% reduced Perception Experience gained", + "#% increased Perception Experience gained", + "#% reduced Perception Experience gained", + "#% increased Demolition Experience gained", + "#% reduced Demolition Experience gained", + "#% increased Demolition Experience gained", + "#% reduced Demolition Experience gained", + "#% increased Demolition Experience gained", + "#% reduced Demolition Experience gained", + "#% increased Demolition Experience gained", + "#% reduced Demolition Experience gained", + "#% increased Counter-Thaumaturgy Experience gained", + "#% reduced Counter-Thaumaturgy Experience gained", + "#% increased Counter-Thaumaturgy Experience gained", + "#% reduced Counter-Thaumaturgy Experience gained", + "#% increased Counter-Thaumaturgy Experience gained", + "#% reduced Counter-Thaumaturgy Experience gained", + "#% increased Counter-Thaumaturgy Experience gained", + "#% reduced Counter-Thaumaturgy Experience gained", + "#% increased Trap Disarmament Experience gained", + "#% reduced Trap Disarmament Experience gained", + "#% increased Trap Disarmament Experience gained", + "#% reduced Trap Disarmament Experience gained", + "#% increased Trap Disarmament Experience gained", + "#% reduced Trap Disarmament Experience gained", + "#% increased Trap Disarmament Experience gained", + "#% reduced Trap Disarmament Experience gained", + "#% increased Agility Experience gained", + "#% reduced Agility Experience gained", + "#% increased Agility Experience gained", + "#% reduced Agility Experience gained", + "#% increased Agility Experience gained", + "#% reduced Agility Experience gained", + "#% increased Agility Experience gained", + "#% reduced Agility Experience gained", + "#% increased Deception Experience gained", + "#% reduced Deception Experience gained", + "#% increased Deception Experience gained", + "#% reduced Deception Experience gained", + "#% increased Deception Experience gained", + "#% reduced Deception Experience gained", + "#% increased Deception Experience gained", + "#% reduced Deception Experience gained", + "#% increased Engineering Experience gained", + "#% reduced Engineering Experience gained", + "#% increased Engineering Experience gained", + "#% reduced Engineering Experience gained", + "#% increased Engineering Experience gained", + "#% reduced Engineering Experience gained", + "#% increased Engineering Experience gained", + "#% reduced Engineering Experience gained", + "#% increased Lockpicking speed", + "#% reduced Lockpicking speed", + "#% increased Lockpicking speed", + "#% reduced Lockpicking speed", + "#% increased Lockpicking speed", + "#% reduced Lockpicking speed", + "#% increased Lockpicking speed", + "#% reduced Lockpicking speed", + "#% increased Brute Force speed", + "#% reduced Brute Force speed", + "#% increased Brute Force speed", + "#% reduced Brute Force speed", + "#% increased Brute Force speed", + "#% reduced Brute Force speed", + "#% increased Brute Force speed", + "#% reduced Brute Force speed", + "#% increased Perception speed", + "#% reduced Perception speed", + "#% increased Perception speed", + "#% reduced Perception speed", + "#% increased Perception speed", + "#% reduced Perception speed", + "#% increased Perception speed", + "#% reduced Perception speed", + "#% increased Demolition speed", + "#% reduced Demolition speed", + "#% increased Demolition speed", + "#% reduced Demolition speed", + "#% increased Demolition speed", + "#% reduced Demolition speed", + "#% increased Demolition speed", + "#% reduced Demolition speed", + "#% increased Counter-Thaumaturgy speed", + "#% reduced Counter-Thaumaturgy speed", + "#% increased Counter-Thaumaturgy speed", + "#% reduced Counter-Thaumaturgy speed", + "#% increased Counter-Thaumaturgy speed", + "#% reduced Counter-Thaumaturgy speed", + "#% increased Counter-Thaumaturgy speed", + "#% reduced Counter-Thaumaturgy speed", + "#% increased Trap Disarmament speed", + "#% reduced Trap Disarmament speed", + "#% increased Trap Disarmament speed", + "#% reduced Trap Disarmament speed", + "#% increased Trap Disarmament speed", + "#% reduced Trap Disarmament speed", + "#% increased Trap Disarmament speed", + "#% reduced Trap Disarmament speed", + "#% increased Agility speed", + "#% reduced Agility speed", + "#% increased Agility speed", + "#% reduced Agility speed", + "#% increased Agility speed", + "#% reduced Agility speed", + "#% increased Agility speed", + "#% reduced Agility speed", + "#% increased Deception speed", + "#% reduced Deception speed", + "#% increased Deception speed", + "#% reduced Deception speed", + "#% increased Deception speed", + "#% reduced Deception speed", + "#% increased Deception speed", + "#% reduced Deception speed", + "#% increased Engineering speed", + "#% reduced Engineering speed", + "#% increased Engineering speed", + "#% reduced Engineering speed", + "#% increased Engineering speed", + "#% reduced Engineering speed", + "#% increased Engineering speed", + "#% reduced Engineering speed", + "# seconds to Lockdown Timer", + "# seconds to Lockdown Timer", + "# seconds to Lockdown Timer", + "# seconds to Lockdown Timer", + "#% increased Rogue's Marker value of primary Heist Target", + "#% reduced Rogue's Marker value of primary Heist Target", + "#% increased Rogue's Marker value of primary Heist Target", + "#% reduced Rogue's Marker value of primary Heist Target", + "#% increased Rogue's Marker value of primary Heist Target", + "#% reduced Rogue's Marker value of primary Heist Target", + "#% increased Rogue's Marker value of primary Heist Target", + "#% reduced Rogue's Marker value of primary Heist Target", + "#% increased Hiring Fee of Rogues", + "#% reduced Hiring Fee of Rogues", + "#% increased Hiring Fee of Rogues", + "#% reduced Hiring Fee of Rogues", + "#% increased Hiring Fee of Rogues", + "#% reduced Hiring Fee of Rogues", + "#% increased Hiring Fee of Rogues", + "#% reduced Hiring Fee of Rogues", + "The Ring's Cut increased by #%", + "The Ring's Cut reduced by #%", + "The Ring's Cut increased by #%", + "The Ring's Cut reduced by #%", + "The Ring's Cut increased by #%", + "The Ring's Cut reduced by #%", + "The Ring's Cut increased by #%", + "The Ring's Cut reduced by #%", + "#% increased Travel Fee", + "#% reduced Travel Fee", + "#% increased Travel Fee", + "#% reduced Travel Fee", + "#% increased Travel Fee", + "#% reduced Travel Fee", + "#% increased Travel Fee", + "#% reduced Travel Fee", + "#% increased raising of Alert Level from opening Chests", + "#% reduced raising of Alert Level from opening Chests", + "#% increased raising of Alert Level from opening Chests", + "#% reduced raising of Alert Level from opening Chests", + "#% increased raising of Alert Level from opening Chests", + "#% reduced raising of Alert Level from opening Chests", + "#% increased raising of Alert Level from opening Chests", + "#% reduced raising of Alert Level from opening Chests", + "#% increased Alert Level from killing Patrol Packs", + "#% reduced Alert Level from killing Patrol Packs", + "#% increased Alert Level from killing Patrol Packs", + "#% reduced Alert Level from killing Patrol Packs", + "#% increased Alert Level from killing Patrol Packs", + "#% reduced Alert Level from killing Patrol Packs", + "#% increased Alert Level from killing Patrol Packs", + "#% reduced Alert Level from killing Patrol Packs", + "#% increased Alert Level from killing Guards", + "#% reduced Alert Level from killing Guards", + "#% increased Alert Level from killing Guards", + "#% reduced Alert Level from killing Guards", + "#% increased Alert Level from killing Guards", + "#% reduced Alert Level from killing Guards", + "#% increased Alert Level from killing Guards", + "#% reduced Alert Level from killing Guards", + "#% increased raising of Alert Level from Killing Monsters", + "#% reduced raising of Alert Level from Killing Monsters", + "#% increased raising of Alert Level from Killing Monsters", + "#% reduced raising of Alert Level from Killing Monsters", + "#% increased raising of Alert Level from Killing Monsters", + "#% reduced raising of Alert Level from Killing Monsters", + "#% increased raising of Alert Level from Killing Monsters", + "#% reduced raising of Alert Level from Killing Monsters", + "#% chance on killing an Enemy to not generate Alert Level", + "#% chance on killing an Enemy to not generate Alert Level", + "#% chance on killing an Enemy to not generate Alert Level", + "#% chance on killing an Enemy to not generate Alert Level", + "#% chance on opening a Chest to not generate Alert Level", + "#% chance on opening a Chest to not generate Alert Level", + "#% chance on opening a Chest to not generate Alert Level", + "#% chance on opening a Chest to not generate Alert Level", + "#% chance to not Activate Lockdown in Grand Heists", + "#% chance to not Activate Lockdown in Grand Heists", + "#% increased Critical Hit Chance while area is not in Lockdown\\nPlayers have #% increased Critical Hit Chance while area is not in Lockdown", + "#% reduced Critical Hit Chance while area is not in Lockdown\\nPlayers have #% reduced Critical Hit Chance while area is not in Lockdown", + "#% increased Critical Hit Chance while area is not in Lockdown\\nPlayers have #% increased Critical Hit Chance while area is not in Lockdown", + "#% reduced Critical Hit Chance while area is not in Lockdown\\nPlayers have #% reduced Critical Hit Chance while area is not in Lockdown", + "#% increased Critical Hit Chance while area is not in Lockdown\\nPlayers have #% increased Critical Hit Chance while area is not in Lockdown", + "#% reduced Critical Hit Chance while area is not in Lockdown\\nPlayers have #% reduced Critical Hit Chance while area is not in Lockdown", + "#% increased Critical Hit Chance while area is not in Lockdown\\nPlayers have #% increased Critical Hit Chance while area is not in Lockdown", + "#% reduced Critical Hit Chance while area is not in Lockdown\\nPlayers have #% reduced Critical Hit Chance while area is not in Lockdown", + "#% to Critical Damage Bonus while area is not in Lockdown\\nPlayers have +#% to Critical Damage Bonus while area is not in Lockdown", + "#% to Critical Damage Bonus while area is not in Lockdown\\nPlayers have +#% to Critical Damage Bonus while area is not in Lockdown", + "#% to Critical Damage Bonus while area is not in Lockdown\\nPlayers have +#% to Critical Damage Bonus while area is not in Lockdown", + "#% to Critical Damage Bonus while area is not in Lockdown\\nPlayers have +#% to Critical Damage Bonus while area is not in Lockdown", + "Players and their Minions Regenerate #% of Life per second", + "Players and their Minions Regenerate #% of Life per second", + "Players and their Minions Regenerate #% of Life per second", + "Players and their Minions Regenerate #% of Life per second", + "Players and their Minions have #% increased Mana Regeneration Rate", + "Players and their Minions have #% reduced Mana Regeneration Rate", + "Players and their Minions have #% increased Mana Regeneration Rate", + "Players and their Minions have #% reduced Mana Regeneration Rate", + "Players and their Minions have #% increased Mana Regeneration Rate", + "Players and their Minions have #% reduced Mana Regeneration Rate", + "Players and their Minions have #% increased Mana Regeneration Rate", + "Players and their Minions have #% reduced Mana Regeneration Rate", + "Grants Level # Anger Skill", + "Grants Level # Anger Skill", + "Grants Level # Anger Skill", + "Grants Level # Determination Skill", + "Grants Level # Determination Skill", + "Grants Level # Determination Skill", + "Grants Level # Purity of Fire Skill", + "Grants Level # Purity of Fire Skill", + "Grants Level # Purity of Fire Skill", + "Grants Level # Pride Skill", + "Grants Level # Pride Skill", + "Grants Level # Pride Skill", + "Grants Level # Hatred Skill", + "Grants Level # Hatred Skill", + "Grants Level # Hatred Skill", + "Grants Level # Grace Skill", + "Grants Level # Grace Skill", + "Grants Level # Grace Skill", + "Grants Level # Purity of Ice Skill", + "Grants Level # Purity of Ice Skill", + "Grants Level # Purity of Ice Skill", + "Grants Level # Haste Skill", + "Grants Level # Haste Skill", + "Grants Level # Haste Skill", + "Grants Level # Wrath Skill", + "Grants Level # Wrath Skill", + "Grants Level # Wrath Skill", + "Grants Level # Discipline Skill", + "Grants Level # Discipline Skill", + "Grants Level # Discipline Skill", + "Grants Level # Purity of Lightning Skill", + "Grants Level # Purity of Lightning Skill", + "Grants Level # Purity of Lightning Skill", + "Grants Level # Zealotry Skill", + "Grants Level # Zealotry Skill", + "Grants Level # Zealotry Skill", + "Grants Level # Malevolence Skill", + "Grants Level # Malevolence Skill", + "Grants Level # Malevolence Skill", + "#% chance on completing a Heist to generate an additional Reveal with Whakano", + "#% chance on completing a Heist to generate an additional Reveal with Whakano", + "#% chance on completing a Heist to generate an additional Reveal with Whakano", + "#% chance on completing a Heist to generate an additional Reveal with Whakano", + "#% chance to not generate Alert Level on opening a Chest using Lockpicking", + "#% chance to not generate Alert Level on opening a Chest using Lockpicking", + "#% chance to not generate Alert Level on opening a Chest using Lockpicking", + "#% chance to not generate Alert Level on opening a Chest using Lockpicking", + "#% chance to not generate Alert Level on opening a Chest using Brute Force", + "#% chance to not generate Alert Level on opening a Chest using Brute Force", + "#% chance to not generate Alert Level on opening a Chest using Brute Force", + "#% chance to not generate Alert Level on opening a Chest using Brute Force", + "#% chance to not generate Alert Level on opening a Chest using Perception", + "#% chance to not generate Alert Level on opening a Chest using Perception", + "#% chance to not generate Alert Level on opening a Chest using Perception", + "#% chance to not generate Alert Level on opening a Chest using Perception", + "#% chance to not generate Alert Level on opening a Chest using Demolition", + "#% chance to not generate Alert Level on opening a Chest using Demolition", + "#% chance to not generate Alert Level on opening a Chest using Demolition", + "#% chance to not generate Alert Level on opening a Chest using Demolition", + "#% chance to not generate Alert Level on opening a Chest using Counter-Thaumaturgy", + "#% chance to not generate Alert Level on opening a Chest using Counter-Thaumaturgy", + "#% chance to not generate Alert Level on opening a Chest using Counter-Thaumaturgy", + "#% chance to not generate Alert Level on opening a Chest using Counter-Thaumaturgy", + "#% chance to not generate Alert Level on opening a Chest using Trap Disarmament", + "#% chance to not generate Alert Level on opening a Chest using Trap Disarmament", + "#% chance to not generate Alert Level on opening a Chest using Trap Disarmament", + "#% chance to not generate Alert Level on opening a Chest using Trap Disarmament", + "#% chance to not generate Alert Level on opening a Chest using Agility", + "#% chance to not generate Alert Level on opening a Chest using Agility", + "#% chance to not generate Alert Level on opening a Chest using Agility", + "#% chance to not generate Alert Level on opening a Chest using Agility", + "#% chance to not generate Alert Level on opening a Chest using Deception", + "#% chance to not generate Alert Level on opening a Chest using Deception", + "#% chance to not generate Alert Level on opening a Chest using Deception", + "#% chance to not generate Alert Level on opening a Chest using Deception", + "#% chance to not generate Alert Level on opening a Chest using Engineering", + "#% chance to not generate Alert Level on opening a Chest using Engineering", + "#% chance to not generate Alert Level on opening a Chest using Engineering", + "#% chance to not generate Alert Level on opening a Chest using Engineering", + "Performing Lockpicking during Lockdown doesn't take additional time", + "Performing Brute Force during Lockdown doesn't take additional time", + "Performing Demolition during Lockdown doesn't take additional time", + "Performing Counter-Thaumaturgy during Lockdown doesn't take additional time", + "Performing Engineering during Lockdown doesn't take additional time", + "#% increased Hiring Fee for Lockpicking Jobs", + "#% reduced Hiring Fee for Lockpicking Jobs", + "#% increased Hiring Fee for Lockpicking Jobs", + "#% reduced Hiring Fee for Lockpicking Jobs", + "#% increased Hiring Fee for Lockpicking Jobs", + "#% reduced Hiring Fee for Lockpicking Jobs", + "#% increased Hiring Fee for Lockpicking Jobs", + "#% reduced Hiring Fee for Lockpicking Jobs", + "#% increased Hiring Fee for Brute Force Jobs", + "#% reduced Hiring Fee for Brute Force Jobs", + "#% increased Hiring Fee for Brute Force Jobs", + "#% reduced Hiring Fee for Brute Force Jobs", + "#% increased Hiring Fee for Brute Force Jobs", + "#% reduced Hiring Fee for Brute Force Jobs", + "#% increased Hiring Fee for Brute Force Jobs", + "#% reduced Hiring Fee for Brute Force Jobs", + "#% increased Hiring Fee for Perception Jobs", + "#% reduced Hiring Fee for Perception Jobs", + "#% increased Hiring Fee for Perception Jobs", + "#% reduced Hiring Fee for Perception Jobs", + "#% increased Hiring Fee for Perception Jobs", + "#% reduced Hiring Fee for Perception Jobs", + "#% increased Hiring Fee for Perception Jobs", + "#% reduced Hiring Fee for Perception Jobs", + "#% increased Hiring Fee for Demolition Jobs", + "#% reduced Hiring Fee for Demolition Jobs", + "#% increased Hiring Fee for Demolition Jobs", + "#% reduced Hiring Fee for Demolition Jobs", + "#% increased Hiring Fee for Demolition Jobs", + "#% reduced Hiring Fee for Demolition Jobs", + "#% increased Hiring Fee for Demolition Jobs", + "#% reduced Hiring Fee for Demolition Jobs", + "#% increased Hiring Fee for Counter-Thaumaturgy Jobs", + "#% reduced Hiring Fee for Counter-Thaumaturgy Jobs", + "#% increased Hiring Fee for Counter-Thaumaturgy Jobs", + "#% reduced Hiring Fee for Counter-Thaumaturgy Jobs", + "#% increased Hiring Fee for Counter-Thaumaturgy Jobs", + "#% reduced Hiring Fee for Counter-Thaumaturgy Jobs", + "#% increased Hiring Fee for Counter-Thaumaturgy Jobs", + "#% reduced Hiring Fee for Counter-Thaumaturgy Jobs", + "#% increased Hiring Fee for Trap Disarmament Jobs", + "#% reduced Hiring Fee for Trap Disarmament Jobs", + "#% increased Hiring Fee for Trap Disarmament Jobs", + "#% reduced Hiring Fee for Trap Disarmament Jobs", + "#% increased Hiring Fee for Trap Disarmament Jobs", + "#% reduced Hiring Fee for Trap Disarmament Jobs", + "#% increased Hiring Fee for Trap Disarmament Jobs", + "#% reduced Hiring Fee for Trap Disarmament Jobs", + "#% increased Hiring Fee for Agility Jobs", + "#% reduced Hiring Fee for Agility Jobs", + "#% increased Hiring Fee for Agility Jobs", + "#% reduced Hiring Fee for Agility Jobs", + "#% increased Hiring Fee for Agility Jobs", + "#% reduced Hiring Fee for Agility Jobs", + "#% increased Hiring Fee for Agility Jobs", + "#% reduced Hiring Fee for Agility Jobs", + "#% increased Hiring Fee for Deception Jobs", + "#% reduced Hiring Fee for Deception Jobs", + "#% increased Hiring Fee for Deception Jobs", + "#% reduced Hiring Fee for Deception Jobs", + "#% increased Hiring Fee for Deception Jobs", + "#% reduced Hiring Fee for Deception Jobs", + "#% increased Hiring Fee for Deception Jobs", + "#% reduced Hiring Fee for Deception Jobs", + "#% increased Hiring Fee for Engineering Jobs", + "#% reduced Hiring Fee for Engineering Jobs", + "#% increased Hiring Fee for Engineering Jobs", + "#% reduced Hiring Fee for Engineering Jobs", + "#% increased Hiring Fee for Engineering Jobs", + "#% reduced Hiring Fee for Engineering Jobs", + "#% increased Hiring Fee for Engineering Jobs", + "#% reduced Hiring Fee for Engineering Jobs", + "Heist Chests have a #% chance to Duplicate contained Basic Currency", + "Heist Chests have a #% chance to Duplicate contained Basic Currency", + "Heist Chests have a #% chance to Duplicate contained Basic Currency", + "Heist Chests have a #% chance to Duplicate contained Basic Currency", + "Heist Chests have a #% chance to Duplicate contained Jewels", + "Heist Chests have a #% chance to Duplicate contained Jewels", + "Heist Chests have a #% chance to Duplicate contained Jewels", + "Heist Chests have a #% chance to Duplicate contained Jewels", + "Heist Chests have a #% chance to Duplicate contained Maps", + "Heist Chests have a #% chance to Duplicate contained Maps", + "Heist Chests have a #% chance to Duplicate contained Maps", + "Heist Chests have a #% chance to Duplicate contained Maps", + "Heist Chests have a #% chance to Duplicate contained Sextants", + "Heist Chests have a #% chance to Duplicate contained Sextants", + "Heist Chests have a #% chance to Duplicate contained Sextants", + "Heist Chests have a #% chance to Duplicate contained Sextants", + "Heist Chests have a #% chance to Duplicate contained Map Fragments", + "Heist Chests have a #% chance to Duplicate contained Map Fragments", + "Heist Chests have a #% chance to Duplicate contained Map Fragments", + "Heist Chests have a #% chance to Duplicate contained Map Fragments", + "Heist Chests have a #% chance to Duplicate contained Divination Cards", + "Heist Chests have a #% chance to Duplicate contained Divination Cards", + "Heist Chests have a #% chance to Duplicate contained Divination Cards", + "Heist Chests have a #% chance to Duplicate contained Divination Cards", + "Heist Chests have a #% chance to Duplicate contained Delirium Orbs and Splinters", + "Heist Chests have a #% chance to Duplicate contained Delirium Orbs and Splinters", + "Heist Chests have a #% chance to Duplicate contained Delirium Orbs and Splinters", + "Heist Chests have a #% chance to Duplicate contained Delirium Orbs and Splinters", + "Heist Chests have a #% chance to Duplicate contained Blighted Maps and Catalysts", + "Heist Chests have a #% chance to Duplicate contained Blighted Maps and Catalysts", + "Heist Chests have a #% chance to Duplicate contained Blighted Maps and Catalysts", + "Heist Chests have a #% chance to Duplicate contained Blighted Maps and Catalysts", + "Heist Chests have a #% chance to Duplicate contained Essences", + "Heist Chests have a #% chance to Duplicate contained Essences", + "Heist Chests have a #% chance to Duplicate contained Essences", + "Heist Chests have a #% chance to Duplicate contained Essences", + "Heist Chests have a #% chance to Duplicate contained Breach Splinters", + "Heist Chests have a #% chance to Duplicate contained Breach Splinters", + "Heist Chests have a #% chance to Duplicate contained Breach Splinters", + "Heist Chests have a #% chance to Duplicate contained Breach Splinters", + "Heist Chests have a #% chance to Duplicate contained Scarabs", + "Heist Chests have a #% chance to Duplicate contained Scarabs", + "Heist Chests have a #% chance to Duplicate contained Scarabs", + "Heist Chests have a #% chance to Duplicate contained Scarabs", + "Heist Chests have a #% chance to Duplicate contained Catalysts", + "Heist Chests have a #% chance to Duplicate contained Catalysts", + "Heist Chests have a #% chance to Duplicate contained Catalysts", + "Heist Chests have a #% chance to Duplicate contained Catalysts", + "Heist Chests have a #% chance to Duplicate contained Legion Splinters", + "Heist Chests have a #% chance to Duplicate contained Legion Splinters", + "Heist Chests have a #% chance to Duplicate contained Legion Splinters", + "Heist Chests have a #% chance to Duplicate contained Legion Splinters", + "Heist Chests have a #% chance to Duplicate contained Oils", + "Heist Chests have a #% chance to Duplicate contained Oils", + "Heist Chests have a #% chance to Duplicate contained Oils", + "Heist Chests have a #% chance to Duplicate contained Oils", + "Monsters have #% chance to Duplicate dropped Rogue's Marker", + "Monsters have #% chance to Duplicate dropped Rogue's Marker", + "Monsters have #% chance to Duplicate dropped Rogue's Marker", + "Smuggler's Caches have #% chance to Duplicate contained Rogue's Markers", + "Smuggler's Caches have #% chance to Duplicate contained Rogue's Markers", + "Smuggler's Caches have #% chance to Duplicate contained Rogue's Markers", + "#% chance in Heists for Basic Currency drops to be Duplicated", + "#% chance in Heists for Basic Currency drops to be Duplicated", + "#% chance in Heists for Basic Currency drops to be Duplicated", + "#% increased Rarity of Items dropped in Heists", + "#% reduced Rarity of Items dropped in Heists", + "#% increased Rarity of Items dropped in Heists", + "#% reduced Rarity of Items dropped in Heists", + "#% increased Rarity of Items dropped in Heists", + "#% reduced Rarity of Items dropped in Heists", + "#% increased Quantity of Items dropped in Heists", + "#% reduced Quantity of Items dropped in Heists", + "#% increased Quantity of Items dropped in Heists", + "#% reduced Quantity of Items dropped in Heists", + "#% increased Quantity of Items dropped in Heists", + "#% reduced Quantity of Items dropped in Heists", + "#% chance in Heists for Items to drop Corrupted", + "#% chance in Heists for Items to drop Corrupted", + "#% chance in Heists for Items to drop Corrupted", + "#% chance in Heists for Items to drop Identified", + "#% chance in Heists for Items to drop Identified", + "#% chance in Heists for Items to drop Identified", + "#% chance in Heists for Items to drop with an additional Socket", + "#% chance in Heists for Items to drop with an additional Socket", + "#% chance in Heists for Items to drop with an additional Socket", + "#% chance in Heists for Items to drop fully linked", + "#% chance in Heists for Items to drop fully linked", + "#% chance in Heists for Items to drop fully linked", + "#% chance in Heists for Items to drop with Shaper Influence", + "#% chance in Heists for Items to drop with Elder Influence", + "#% chance in Heists for Orbs of Transmutation to drop as Orbs of Alchemy instead", + "#% chance in Heists for Orbs of Transmutation to drop as Orbs of Alchemy instead", + "#% chance in Heists for Orbs of Transmutation to drop as Orbs of Alchemy instead", + "#% chance in Heists for Orbs of Transmutation to drop as Chaos Orbs instead", + "#% chance in Heists for Orbs of Transmutation to drop as Chaos Orbs instead", + "#% chance in Heists for Orbs of Transmutation to drop as Chaos Orbs instead", + "#% chance in Heists for Orbs of Alteration to drop as Orbs of Alchemy instead", + "#% chance in Heists for Orbs of Alteration to drop as Orbs of Alchemy instead", + "#% chance in Heists for Orbs of Alteration to drop as Orbs of Alchemy instead", + "#% chance in Heists for Orbs of Alteration to drop as Chaos Orbs instead", + "#% chance in Heists for Orbs of Alteration to drop as Chaos Orbs instead", + "#% chance in Heists for Orbs of Alteration to drop as Chaos Orbs instead", + "#% chance in Heists for Orbs of Alteration to drop as Regal Orbs instead", + "#% chance in Heists for Orbs of Augmentation to drop as Orbs of Alchemy instead", + "#% chance in Heists for Orbs of Augmentation to drop as Orbs of Alchemy instead", + "#% chance in Heists for Orbs of Augmentation to drop as Orbs of Alchemy instead", + "#% chance in Heists for Orbs of Augmentation to drop as Chaos Orbs instead", + "#% chance in Heists for Orbs of Augmentation to drop as Chaos Orbs instead", + "#% chance in Heists for Orbs of Augmentation to drop as Chaos Orbs instead", + "#% chance in Heists for Orbs of Augmentation to drop as Regal Orbs instead", + "#% chance in Heists for Chaos Orbs to drop as Divine Orbs instead", + "#% chance in Heists for Chaos Orbs to drop as Exalted Orbs instead", + "#% chance in Heists for Regal Orbs to drop as Divine Orbs instead", + "#% chance in Heists for Regal Orbs to drop as Divine Orbs instead", + "#% chance in Heists for Regal Orbs to drop as Divine Orbs instead", + "#% chance in Heists for Regal Orbs to drop as Exalted Orbs instead", + "#% chance in Heists for Regal Orbs to drop as Exalted Orbs instead", + "#% chance in Heists for Regal Orbs to drop as Exalted Orbs instead", + "#% chance in Heists for Orbs of Scouring to drop as Orbs of Regret instead", + "#% chance in Heists for Orbs of Scouring to drop as Orbs of Regret instead", + "#% chance in Heists for Orbs of Scouring to drop as Orbs of Regret instead", + "#% chance in Heists for Orbs of Scouring to drop as Orbs of Annulment instead", + "#% chance in Heists for Orbs of Regret to drop as Orbs of Annulment instead", + "#% chance in Heists for Chromatic Orbs to drop as Jeweller's Orbs instead", + "#% chance in Heists for Chromatic Orbs to drop as Jeweller's Orbs instead", + "#% chance in Heists for Chromatic Orbs to drop as Jeweller's Orbs instead", + "#% chance in Heists for Chromatic Orbs to drop as Orbs of Fusing instead", + "#% chance in Heists for Chromatic Orbs to drop as Orbs of Fusing instead", + "#% chance in Heists for Chromatic Orbs to drop as Orbs of Fusing instead", + "#% chance in Heists for Jeweller's Orbs to drop as Orbs of Fusing instead", + "#% chance in Heists for Jeweller's Orbs to drop as Orbs of Fusing instead", + "#% chance in Heists for Jeweller's Orbs to drop as Orbs of Fusing instead", + "Heist Chests have a #% chance to Duplicate contained Basic Currency", + "Heist Chests have a #% chance to Duplicate contained Basic Currency", + "Heist Chests have a #% chance to Duplicate contained Basic Currency", + "Heist Chests have a #% chance to contain more valuable Uniques", + "Heist Chests contain more valuable Uniques", + "Heist Chests have a #% chance to contain more valuable Uniques", + "Heist Chests contain more valuable Uniques", + "Heist Chests have a #% chance to contain more valuable Uniques", + "Heist Chests contain more valuable Uniques", + "#% chance to receive additional Armour items when opening a Reward Chest in a Heist", + "#% chance to receive additional Armour items when opening a Reward Chest in a Heist", + "#% chance to receive additional Armour items when opening a Reward Chest in a Heist", + "#% chance to receive additional Weapons when opening a Reward Chest in a Heist", + "#% chance to receive additional Weapons when opening a Reward Chest in a Heist", + "#% chance to receive additional Weapons when opening a Reward Chest in a Heist", + "#% chance to receive additional Jewellery when opening a Reward Chest in a Heist", + "#% chance to receive additional Jewellery when opening a Reward Chest in a Heist", + "#% chance to receive additional Jewellery when opening a Reward Chest in a Heist", + "#% chance to receive additional Gem items when opening a Reward Chest in a Heist", + "#% chance to receive additional Gem items when opening a Reward Chest in a Heist", + "#% chance to receive additional Gem items when opening a Reward Chest in a Heist", + "#% chance to receive additional Essences when opening a Reward Chest in a Heist", + "#% chance to receive additional Essences when opening a Reward Chest in a Heist", + "#% chance to receive additional Essences when opening a Reward Chest in a Heist", + "#% chance to receive additional Divination Card items when opening a Reward Chest in a Heist", + "#% chance to receive additional Divination Card items when opening a Reward Chest in a Heist", + "#% chance to receive additional Divination Card items when opening a Reward Chest in a Heist", + "#% chance to receive additional Unique items when opening a Reward Chest in a Heist", + "#% chance to receive additional Unique items when opening a Reward Chest in a Heist", + "#% chance to receive additional Unique items when opening a Reward Chest in a Heist", + "#% chance to receive additional Talismans when opening a Reward Chest in a Heist", + "#% chance to receive additional Talismans when opening a Reward Chest in a Heist", + "#% chance to receive additional Talismans when opening a Reward Chest in a Heist", + "#% chance to receive additional Abyss items when opening a Reward Chest in a Heist", + "#% chance to receive additional Abyss items when opening a Reward Chest in a Heist", + "#% chance to receive additional Abyss items when opening a Reward Chest in a Heist", + "#% chance to receive additional Breach items when opening a Reward Chest in a Heist", + "#% chance to receive additional Breach items when opening a Reward Chest in a Heist", + "#% chance to receive additional Breach items when opening a Reward Chest in a Heist", + "#% chance to receive additional Metamorph items when opening a Reward Chest in a Heist", + "#% chance to receive additional Metamorph items when opening a Reward Chest in a Heist", + "#% chance to receive additional Delirium items when opening a Reward Chest in a Heist", + "#% chance to receive additional Delirium items when opening a Reward Chest in a Heist", + "#% chance to receive additional Legion items when opening a Reward Chest in a Heist", + "#% chance to receive additional Legion items when opening a Reward Chest in a Heist", + "#% chance to receive additional Legion items when opening a Reward Chest in a Heist", + "#% chance to receive additional Blight items when opening a Reward Chest in a Heist", + "#% chance to receive additional Blight items when opening a Reward Chest in a Heist", + "#% chance to receive additional Blight items when opening a Reward Chest in a Heist", + "#% chance to receive additional Harbinger items when opening a Reward Chest in a Heist", + "#% chance to receive additional Harbinger items when opening a Reward Chest in a Heist", + "#% chance to receive additional Harbinger items when opening a Reward Chest in a Heist", + "#% chance to receive additional Delve items when opening a Reward Chest in a Heist", + "#% chance to receive additional Delve items when opening a Reward Chest in a Heist", + "#% chance to receive additional Delve items when opening a Reward Chest in a Heist", + "Projectiles from Attacks Fork", + "Projectiles from Attacks Fork an additional time", + "Impale Damage dealt to Enemies Impaled by you Overwhelms #% Physical Damage Reduction", + "Minions are Aggressive", + "Areas contain Ritual Altars", + "Consumes Socketed Uncorrupted Support Gems when they reach Maximum Level\\nCan Consume # Uncorrupted Support Gem\\nHas not Consumed any Gems", + "#% increased Damage taken", + "#% reduced Damage taken", + "#% increased Character Size", + "#% reduced Character Size", + "Area contains a Blight Encounter", + "Area can contain Breaches", + "Area can contain Breaches", + "Area can contain Breaches", + "Area can contain Breaches", + "Area contains # additional packs of Elder Fiends", + "Area contains # additional packs of Shaper Creations", + "Curse Reflection", + "Spells lose Intensity with #% increased frequency while moving", + "Spells lose Intensity with #% reduced frequency while moving", + "Monsters do not grant Flask Charges when Slain", + "Monsters' Hits are always Critical Hits", + "Action Speed cannot be modified to below base value", + "Cannot be Stunned", + "Inflict # Grasping Vine on Hit", + "#% more Attack Speed", + "#% less Attack Speed", + "Area is haunted by # additional Tormented Spirit", + "Area is haunted by # additional Tormented Spirit", + "Found Items drop Identified in Area", + "Area contains an Expedition Encounter", + "Area contains an Expedition Encounter", + "Area contains Medved, Feller of Heroes", + "Area contains Medved, Feller of Heroes", + "Area contains Medved, Feller of Heroes", + "Area contains Medved, Feller of Heroes", + "#% increased Stealth", + "#% reduced Stealth", + "DNT Area contains # additional Epic Chest Marker", + "DNT Area contains # additional Uncommon Chest Marker", + "DNT Area contains # additional Common Chest Marker", + "#% increased Quantity of Exotic Coinage dropped by Monsters in Area", + "Maven releases all Bosses at once", + "Maven releases all Bosses at once", + "Maven releases all Bosses at once", + "Players are Cursed with Vulnerability", + "Grants Immunity to Bleeding for # seconds if used while Bleeding\\nGrants Immunity to Corrupted Blood for # seconds if used while affected by Corrupted Blood", + "Grants Immunity to Shock for # seconds if used while Shocked", + "Grants Immunity to Chill for # seconds if used while Chilled\\nGrants Immunity to Freeze for # seconds if used while Frozen", + "Grants Immunity to Ignite for # seconds if used while Ignited\\nRemoves all Burning when used", + "Grants Immunity to Poison for # seconds if used while Poisoned", + "Immunity to Poison during Effect", + "Immunity to Shock during Effect", + "Immunity to Freeze and Chill during Effect", + "Immunity to Ignite during Effect\\nRemoves Burning on use", + "Immunity to Bleeding and Corrupted Blood during Effect", + "#% increased Reflected Damage taken during Effect", + "#% reduced Reflected Damage taken during Effect", + "#% increased Reflected Damage taken during Effect", + "#% reduced Reflected Damage taken during Effect", + "#% chance to Shock", + "#% of Lightning Damage with Attack Skills Converted to Chaos Damage", + "Attacks with this Weapon Penetrate #% Lightning Resistance", + "{{Monsters grant #% increased Experience}}", + "{{Monsters grant #% reduced Experience}}", + "Area contains # additional Map Boss", + "Unique Monsters have #% increased Maximum Life", + "Unique Monsters have #% reduced Maximum Life", + "Area is haunted by # additional Tormented Spirit", + "Area contains an additional Breach", + "Area contains an additional Harbinger", + "Area contains an additional Abyss", + "Area contains Metamorph Monsters", + "Areas contain Ritual Altars", + "Area contains an Expedition Encounter", + "#% chance to contain an Expedition Encounter", + "Modifiers to Item Quantity affect the amount of rewards dropped by the boss by #% of their value", + "Modifiers to Item Quantity will affect the number of encounter rewards dropped by #% of their value", + "Vaal Vessel contains Mortal Fragments", + "Awards an Improved Offering to the Goddess", + "Awards an Offering to the Goddess", + "#% increased Character Size", + "#% reduced Character Size", + "#% increased Character Size", + "#% reduced Character Size", + "#% increased Character Size", + "#% reduced Character Size", + "#% increased Character Size", + "#% reduced Character Size", + "#% increased Character Size", + "#% reduced Character Size", + "#% increased Character Size", + "#% reduced Character Size", + "#% increased Character Size", + "#% reduced Character Size", + "#% increased Character Size", + "#% reduced Character Size", + "#% increased Character Size", + "#% reduced Character Size", + "#% increased Character Size", + "#% reduced Character Size", + "#% increased Character Size", + "#% reduced Character Size", + "#% increased Character Size", + "#% reduced Character Size", + "#% increased Character Size", + "#% reduced Character Size", + "#% increased Character Size", + "#% reduced Character Size", + "#% increased Character Size", + "#% reduced Character Size", + "#% increased Character Size", + "#% reduced Character Size", + "Can only empower Rare or Unique enemies", + "Empowers many enemies in one shot", + "Can only empower Rare enemies", + "#% of Chaos Damage taken bypasses Energy Shield", + "Kill Enemies that have 15% or lower Life on Hit if The Searing Exarch is dominant", + "Critical Hits have #% chance to inflict Malignant Madness if The Eater of Worlds is dominant", + "Socketed Warcry Skills have +# Cooldown Use", + "When you Attack, take #% of Life as Physical Damage for\\neach Warcry Empowering the Attack", + "Skills deal #% more Damage for each Warcry Empowering them", + "Skills deal #% less Damage for each Warcry Empowering them", + "All Damage from Hits Contributes to Chill Magnitude", + "All Damage Taken from Hits can Chill you", + "All Damage Taken from Hits can Ignite you", + "{:+d} second to Duration", + "{:+d} second to Duration", + "{:+d} second to Duration", + "{:+d} second to Duration", + "{:+d} second to Duration", + "Empowers {:+d} Enemies", + "Empowers {:+d} Enemies", + "Empowers {:+d} Enemies", + "Empowers {:+d} Enemies", + "Empowers {:+d} Enemies", + "Empowers {:+d} Enemies", + "Empowers {:+d} Enemies", + "Empowers {:+d} Enemies", + "{:+d} to Charge", + "{:+d} to Charge", + "{:+d} to Charge", + "{:+d} to Charge", + "{:+d} to Charge", + "#% increased number of Empowered Enemies", + "#% reduced number of Empowered Enemies", + "#% increased number of Empowered Enemies", + "#% reduced number of Empowered Enemies", + "#% increased number of Empowered Enemies", + "#% reduced number of Empowered Enemies", + "#% increased number of Empowered Enemies", + "#% reduced number of Empowered Enemies", + "#% increased number of Empowered Enemies", + "#% reduced number of Empowered Enemies", + "#% increased Empowerment", + "#% reduced Empowerment", + "#% increased Empowerment", + "#% reduced Empowerment", + "#% increased Empowerment", + "#% reduced Empowerment", + "#% increased Empowerment", + "#% reduced Empowerment", + "#% increased Empowerment", + "#% reduced Empowerment", + "#% increased Empowerment", + "#% reduced Empowerment", + "Character Gains Unholy Might for 1 second on deployment", + "Character Gains Unholy Might for 1 second on deployment", + "Character Gains Unholy Might for 1 second on deployment", + "Character Gains Tailwind for 1 second on deployment", + "Character Gains Tailwind for 1 second on deployment", + "Character Gains Tailwind for 1 second on deployment", + "Character Gains Acceleration Shrine for 1 second on deployment", + "Character Gains Charged Shrine for 1 second on deployment", + "Character Gains Charged Shrine for 1 second on deployment", + "Character Gains Charged Shrine for 1 second on deployment", + "Character Gains Diamond Shrine for 1 second on deployment", + "Character Gains Diamond Shrine for 1 second on deployment", + "Character Gains Diamond Shrine for 1 second on deployment", + "Character Gains Gloom Shrine for 1 second on deployment", + "Character Gains Gloom Shrine for 1 second on deployment", + "Character Gains Gloom Shrine for 1 second on deployment", + "Character Gains Resistance Shrine for 1 second on deployment", + "Character Gains Resistance Shrine for 1 second on deployment", + "Character Gains Resistance Shrine for 1 second on deployment", + "Character Gains Massive Shrine for 1 second on deployment", + "Character Gains Massive Shrine for 1 second on deployment", + "Character Gains Massive Shrine for 1 second on deployment", + "Character Gains Echoing Shrine for 1 second on deployment", + "Character Gains Impenetrable Shrine for 1 second on deployment", + "Character Gains Impenetrable Shrine for 1 second on deployment", + "Character Gains Impenetrable Shrine for 1 second on deployment", + "Character Gains Adrenaline for 1 second on deployment", + "Character Gains Endurance Charges for 1 second on deployment", + "Character Gains Power Charges for 1 second on deployment", + "Character Gains Frenzy Charges for 1 second on deployment", + "#% chance for Empowered Enemies to have a Currency Reward", + "#% chance for Empowered Enemies to have a Currency Reward", + "#% chance for Empowered Enemies to have a Currency Reward", + "#% chance for Empowered Enemies to have an Essence Reward", + "#% chance for Empowered Enemies to have an Essence Reward", + "#% chance for Empowered Enemies to have an Essence Reward", + "#% chance for Empowered Enemies to have a Unique Reward", + "#% chance for Empowered Enemies to have a Unique Reward", + "#% chance for Empowered Enemies to have a Unique Reward", + "#% chance for Empowered Enemies to have a Gem Reward", + "#% chance for Empowered Enemies to have a Gem Reward", + "#% chance for Empowered Enemies to have a Gem Reward", + "#% chance for Empowered Enemies to have a Map Reward", + "#% chance for Empowered Enemies to have a Map Reward", + "#% chance for Empowered Enemies to have a Map Reward", + "#% chance for Empowered Enemies to have a Jewellery Reward", + "#% chance for Empowered Enemies to have a Jewellery Reward", + "#% chance for Empowered Enemies to have a Jewellery Reward", + "#% chance for Empowered Enemies to have an Armour Reward", + "#% chance for Empowered Enemies to have an Armour Reward", + "#% chance for Empowered Enemies to have an Armour Reward", + "#% chance for Empowered Enemies to have a Weapon Reward", + "#% chance for Empowered Enemies to have a Weapon Reward", + "#% chance for Empowered Enemies to have a Weapon Reward", + "#% chance for Empowered Enemies to have a Fragment Reward", + "#% chance for Empowered Enemies to have a Fragment Reward", + "#% chance for Empowered Enemies to have a Fragment Reward", + "#% chance for Empowered Enemies to have a Scarab Reward", + "#% chance for Empowered Enemies to have a Scarab Reward", + "#% chance for Empowered Enemies to have a Scarab Reward", + "#% chance for Empowered Enemies to have a Divination Card Reward", + "#% chance for Empowered Enemies to have a Divination Card Reward", + "#% chance for Empowered Enemies to have a Divination Card Reward", + "#% chance for Empowered Enemies to have an Abyss Reward", + "#% chance for Empowered Enemies to have an Abyss Reward", + "#% chance for Empowered Enemies to have an Abyss Reward", + "#% chance for Empowered Enemies to have a Harbinger Reward", + "#% chance for Empowered Enemies to have a Harbinger Reward", + "#% chance for Empowered Enemies to have a Harbinger Reward", + "#% chance for Empowered Enemies to have a Breach Reward", + "#% chance for Empowered Enemies to have a Breach Reward", + "#% chance for Empowered Enemies to have a Breach Reward", + "#% chance for Empowered Enemies to have a Fossil Reward", + "#% chance for Empowered Enemies to have a Fossil Reward", + "#% chance for Empowered Enemies to have a Fossil Reward", + "#% chance for Empowered Enemies to have a Legion Reward", + "#% chance for Empowered Enemies to have a Legion Reward", + "#% chance for Empowered Enemies to have a Legion Reward", + "#% chance for Empowered Enemies to have a Blight Reward", + "#% chance for Empowered Enemies to have a Blight Reward", + "#% chance for Empowered Enemies to have a Blight Reward", + "#% chance for Empowered Enemies to have a Metamorphosis Reward", + "#% chance for Empowered Enemies to have a Metamorphosis Reward", + "#% chance for Empowered Enemies to have a Metamorphosis Reward", + "#% chance for Empowered Enemies to have an Expedition Reward", + "#% chance for Empowered Enemies to have an Expedition Reward", + "#% chance for Empowered Enemies to have an Expedition Reward", + "#% chance for Empowered Enemies to have a Heist Reward", + "#% chance for Empowered Enemies to have a Heist Reward", + "#% chance for Empowered Enemies to have a Heist Reward", + "#% chance for Empowered Enemies to have a Ritual Reward", + "#% chance for Empowered Enemies to have a Ritual Reward", + "#% chance for Empowered Enemies to have a Ritual Reward", + "#% chance for Empowered Enemies to have a Delirium Reward", + "#% chance for Empowered Enemies to have a Delirium Reward", + "#% chance for Empowered Enemies to have a Delirium Reward", + "#% chance for Empowered Enemies to have a Sentinel Reward", + "#% chance for Empowered Enemies to have a Sentinel Reward", + "#% chance for Empowered Enemies to have a Sentinel Reward", + "Skills Chain +# times", + "Skills Chain +# times", + "Skills Chain +# times", + "#% increased Chaining range", + "#% reduced Chaining range", + "#% increased Chaining range", + "#% reduced Chaining range", + "#% increased Chaining range", + "#% reduced Chaining range", + "Fires an additional Beam", + "Fires an additional Beam", + "Fires an additional Beam", + "#% chance for Rewards to be Doubled", + "#% chance to be Deployable an additional time", + "Grants Level # Anger Aura", + "Grants Level # Determination Aura", + "Grants Level # Purity of Fire Aura", + "Grants Level # Purity of Elements Aura", + "Grants Level # Hatred Aura", + "Grants Level # Grace Aura", + "Grants Level # Purity of Ice Aura", + "Grants Level # Haste Aura", + "Grants Level # Wrath Aura", + "Grants Level # Discipline Aura", + "Grants Level # Purity of Lightning Aura", + "Grants Level # Zealotry Aura", + "Grants Level # Malevolence Aura", + "Empowered Monsters have #% increased Quantity of Items Found", + "Empowered Monsters have #% reduced Quantity of Items Found", + "Empowered Monsters have #% increased Quantity of Items Found", + "Empowered Monsters have #% reduced Quantity of Items Found", + "Empowered Monsters have #% increased Quantity of Items Found", + "Empowered Monsters have #% reduced Quantity of Items Found", + "Empowered Monsters have #% increased Rarity of Items Found", + "Empowered Monsters have #% reduced Rarity of Items Found", + "Empowered Monsters have #% increased Rarity of Items Found", + "Empowered Monsters have #% reduced Rarity of Items Found", + "Empowered Monsters have #% increased Rarity of Items Found", + "Empowered Monsters have #% reduced Rarity of Items Found", + "Empowered Monsters grant #% increased Sentinel Power", + "Empowered Monsters grant #% reduced Sentinel Power", + "Empowered Monsters grant #% increased Sentinel Power", + "Empowered Monsters grant #% reduced Sentinel Power", + "Empowered Monsters grant #% increased Sentinel Power", + "Empowered Monsters grant #% reduced Sentinel Power", + "Empowered Monsters have #% increased Quantity of Items Found", + "Empowered Monsters have #% reduced Quantity of Items Found", + "Empowered Monsters have #% increased Quantity of Items Found", + "Empowered Monsters have #% reduced Quantity of Items Found", + "Empowered Monsters have #% increased Quantity of Items Found", + "Empowered Monsters have #% reduced Quantity of Items Found", + "Empowered Monsters have #% increased Rarity of Items Found", + "Empowered Monsters have #% reduced Rarity of Items Found", + "Empowered Monsters have #% increased Rarity of Items Found", + "Empowered Monsters have #% reduced Rarity of Items Found", + "Empowered Monsters have #% increased Rarity of Items Found", + "Empowered Monsters have #% reduced Rarity of Items Found", + "Empowered Monsters grant #% increased Sentinel Power", + "Empowered Monsters grant #% reduced Sentinel Power", + "Empowered Monsters grant #% increased Sentinel Power", + "Empowered Monsters grant #% reduced Sentinel Power", + "Empowered Monsters grant #% increased Sentinel Power", + "Empowered Monsters grant #% reduced Sentinel Power", + "#% increased chance to add Rewards", + "#% reduced chance to add Rewards", + "#% increased chance to add Rewards", + "#% reduced chance to add Rewards", + "#% increased chance to add Rewards", + "#% reduced chance to add Rewards", + "#% increased Rewards", + "#% reduced Rewards", + "Skills Chain +# times", + "#% increased Empowerment", + "#% reduced Empowerment", + "#% increased Chaining range", + "#% reduced Chaining range", + "Fires an additional Beam", + "#% increased Empowerment", + "#% reduced Empowerment", + "Empowers {:+d} Enemies", + "#% chance for Rewards to be Doubled", + "#% increased Empowerment", + "#% reduced Empowerment", + "When a Character Kills an Empowered Rare Monster,\\nthey have #% chance to gain its Modifiers for 20 seconds", + "Passives in Radius of {} can be Allocated\\nwithout being connected to your tree", + "Destroyed on Empowering target Enemy", + "Map Item Quantity affects number of rewards from Empowered Enemy", + "Empowered Monsters drop {} Currency Rewards", + "Empowered Monsters drop {} Sentinel Rewards", + "Empowered Monsters drop {} Divination Card Rewards", + "Empowered Monsters drop {} Scarab Rewards", + "Empowered Monsters drop {} Unique Rewards", + "Empowered Monsters drop {} Map Rewards", + "Empowered Monsters drop {} Fragment Rewards", + "Cannot Empower Enemies", + "Empowered Enemies cannot gain Rewards", + "#% more Empowerment for each Enemy Empowered", + "#% less Empowerment for each Enemy Empowered", + "#% increased chance to add a Reward for each Enemy Empowered", + "#% reduced chance to add a Reward for each Enemy Empowered", + "#% chance to upgrade Normal Rarity Enemies to be Rare when they are Empowered", + "Empowered Monsters grant #% increased Sentinel Power", + "Empowered Monsters grant #% reduced Sentinel Power", + "{:+d} to Charge", + "{:+d} to Charge", + "Empowers {:+d} Enemies", + "Empowers {:+d} Enemies", + "Empowers {:+d} Enemies", + "#% increased number of Empowered Enemies", + "#% reduced number of Empowered Enemies", + "#% increased chance to add Rewards", + "#% reduced chance to add Rewards", + "#% increased Empowerment", + "#% reduced Empowerment", + "Grants Level # Anger Aura", + "Grants Level # Determination Aura", + "Grants Level # Purity of Fire Aura", + "Grants Level # Purity of Elements Aura", + "Grants Level # Hatred Aura", + "Grants Level # Grace Aura", + "Grants Level # Purity of Ice Aura", + "Grants Level # Haste Aura", + "Grants Level # Wrath Aura", + "Grants Level # Discipline Aura", + "Grants Level # Purity of Lightning Aura", + "Grants Level # Zealotry Aura", + "Grants Level # Malevolence Aura", + "Spawns Worms", + "Empowered Enemies do not drop Items", + "Cleanses Corrupted Fish", + "Purifies Corrupted Water", + "Petrifies Empowered Enemies for 1 second", + "Character Gains Unholy Might for 1 second on deployment", + "Area is inhabited by # additional Rogue Exile", + "Area is haunted by # additional Tormented Spirit", + "Areas can contain Essences", + "Area can contain Breaches", + "Areas can contain Abysses", + "Areas contain Beasts to hunt", + "Areas contain Temporal Incursions", + "Area contains Immortal Syndicate activity", + "Area contains Metamorph Monsters", + "Areas contain Ritual Altars", + "Area contains an Expedition Encounter", + "Essences imprison a Rogue Exile", + "Strongboxes have #% chance to be an Operative's Strongbox", + "Area is Breached", + "Breach Hands are small", + "Players in Area take on the form of Harbingers", + "Crops in Area are larger in size", + "#% increased Explicit Modifier magnitudes", + "#% reduced Explicit Modifier magnitudes", + "{{Items dropped by Runic Monsters are fully Linked}}", + "Players have #% increased Movement Speed", + "Players have #% reduced Movement Speed", + "Players have #% increased Movement Speed", + "Players have #% reduced Movement Speed", + "Players have #% increased Movement Speed", + "Players have #% reduced Movement Speed", + "Duplicates up to {} random Offer Reward upon defeating the Herald of the Scourge", + "Duplicates up to {} random Offer Reward upon defeating the Herald of the Scourge", + "Cannot be used with Trials below level {}", + "Cannot be used with Trials below level {}", + "Cannot be used with Trials below level {}", + "Cannot be used with Trials below level {}", + "Other Players are classified as Enemies", + "Players can only deal Damage when near # other Players", + "Players can only deal Damage to Monsters of matching Polarity", + "Nearby Enemies are Covered in Ash", + "#% increased Damage taken", + "#% reduced Damage taken", + "#% chance to Crush on Hit", + "Attacks cannot cause Bleeding", + "#% chance to Avoid being Knocked Back", + "Areas Have the Same Layout for all Players", + "Areas Have the Same Layout for all Players", + "Areas Have the Same Layout for all Players", + "#% Chance to Block Attack Damage", + "#% more Attack Speed", + "#% less Attack Speed", + "#% more Attack Speed", + "#% less Attack Speed", + "Cannot be Stunned", + "Found Items have #% chance to drop Corrupted in Area", + "Sacrifice up to {} to receive double on Trial completion", + "Sacrifice up to {} to receive double on Trial completion", + "Sacrifice up to {} to receive double on Trial completion", + "Sacrifice up to {} to receive double on Trial completion", + "Sacrifice up to {} to receive double on Trial completion", + "Sacrifice up to {} to receive double on Trial completion", + "Sacrifice up to {} to receive double on Trial completion", + "Sacrifice up to {} to receive double on Trial completion", + "Sacrifice up to {} to receive double on Trial completion", + "Sacrifice up to {} to receive double on Trial completion", + "Sacrifice up to {} to receive double on Trial completion", + "Sacrifice up to {} to receive double on Trial completion", + "Sacrifice up to {} to receive double on Trial completion", + "Sacrifice up to {} to receive double on Trial completion", + "#% increased Effect of Jewel Socket Passive Skills\\ncontaining Corrupted Magic Basic Jewels", + "#% reduced Effect of Jewel Socket Passive Skills\\ncontaining Corrupted Magic Basic Jewels", + "#% reduced Action Speed", + "#% increased Action Speed", + "#% increased Quantity of Items Found from Chests", + "#% reduced Quantity of Items Found from Chests", + "Monsters' skills Chain # additional times", + "#% Monster Elemental Resistances", + "Monsters have #% increased Skill Speed", + "Monsters have #% reduced Skill Speed", + "Monsters have #% chance to remove Charges on Hit" +] \ No newline at end of file diff --git a/renderer/public/.DS_Store/vendor/client/pyDumps/mods_dump.json b/renderer/public/.DS_Store/vendor/client/pyDumps/en-out/mods_dump.json similarity index 99% rename from renderer/public/.DS_Store/vendor/client/pyDumps/mods_dump.json rename to renderer/public/.DS_Store/vendor/client/pyDumps/en-out/mods_dump.json index 0651ec047..a0520b54d 100644 --- a/renderer/public/.DS_Store/vendor/client/pyDumps/mods_dump.json +++ b/renderer/public/.DS_Store/vendor/client/pyDumps/en-out/mods_dump.json @@ -27679,10 +27679,24 @@ { "string": "Bow Attacks fire an additional Arrow", "negate": false + }, + { + "string": "Bow Attacks fire # additional Arrows", + "negate": false } ], "trade": { - "ids": null + "ids": { + "explicit": [ + "explicit.stat_3885405204" + ], + "implicit": [ + "implicit.stat_3885405204" + ], + "enchant": [ + "enchant.stat_3885405204" + ] + } } }, "AdditionalArrow2": { @@ -27693,10 +27707,24 @@ { "string": "Bow Attacks fire an additional Arrow", "negate": false + }, + { + "string": "Bow Attacks fire # additional Arrows", + "negate": false } ], "trade": { - "ids": null + "ids": { + "explicit": [ + "explicit.stat_3885405204" + ], + "implicit": [ + "implicit.stat_3885405204" + ], + "enchant": [ + "enchant.stat_3885405204" + ] + } } }, "AdditionalAmmo1": { @@ -35578,7 +35606,11 @@ } ], "trade": { - "ids": null + "ids": { + "implicit": [ + "implicit.stat_535217483" + ] + } } }, "SpearImplicitDisableOffhandSlot1": { @@ -35812,10 +35844,24 @@ { "string": "Bow Attacks fire an additional Arrow", "negate": false + }, + { + "string": "Bow Attacks fire # additional Arrows", + "negate": false } ], "trade": { - "ids": null + "ids": { + "explicit": [ + "explicit.stat_3885405204" + ], + "implicit": [ + "implicit.stat_3885405204" + ], + "enchant": [ + "enchant.stat_3885405204" + ] + } } }, "BowImplicitProjectileAttackRange1": { @@ -45823,10 +45869,24 @@ { "string": "Bow Attacks fire an additional Arrow", "negate": false + }, + { + "string": "Bow Attacks fire # additional Arrows", + "negate": false } ], "trade": { - "ids": null + "ids": { + "explicit": [ + "explicit.stat_3885405204" + ], + "implicit": [ + "implicit.stat_3885405204" + ], + "enchant": [ + "enchant.stat_3885405204" + ] + } } }, "CorruptionAdditionalAmmo1": { @@ -65380,10 +65440,24 @@ { "string": "Bow Attacks fire an additional Arrow", "negate": false + }, + { + "string": "Bow Attacks fire # additional Arrows", + "negate": false } ], "trade": { - "ids": null + "ids": { + "explicit": [ + "explicit.stat_3885405204" + ], + "implicit": [ + "implicit.stat_3885405204" + ], + "enchant": [ + "enchant.stat_3885405204" + ] + } } }, "UniqueFlaskLifeRecoveryRate1": { diff --git a/renderer/public/.DS_Store/vendor/client/pyDumps/en/items.ndjson b/renderer/public/.DS_Store/vendor/client/pyDumps/en/items.ndjson index 8a8b0d046..e20c1f44e 100644 --- a/renderer/public/.DS_Store/vendor/client/pyDumps/en/items.ndjson +++ b/renderer/public/.DS_Store/vendor/client/pyDumps/en/items.ndjson @@ -3007,6 +3007,7 @@ {"name": "Grand Spectrum", "refName": "Grand Spectrum", "namespace": "UNIQUE", "unique": {"base": "Emerald"}} {"name": "Grand Spectrum", "refName": "Grand Spectrum", "namespace": "UNIQUE", "unique": {"base": "Ruby"}} {"name": "Grand Spectrum", "refName": "Grand Spectrum", "namespace": "UNIQUE", "unique": {"base": "Sapphire"}} +{"name": "Heroic Tragedy", "refName": "Heroic Tragedy", "namespace": "UNIQUE", "unique": {"base": "Timeless Jewel"}} {"name": "Prism of Belief", "refName": "Prism of Belief", "namespace": "UNIQUE", "unique": {"base": "Diamond"}} {"name": "The Adorned", "refName": "The Adorned", "namespace": "UNIQUE", "unique": {"base": "Diamond"}} {"name": "Brain Rattler", "refName": "Brain Rattler", "namespace": "UNIQUE", "unique": {"base": "Studded Greatclub"}} @@ -3021,6 +3022,11 @@ {"name": "Guiding Palm", "refName": "Guiding Palm", "namespace": "UNIQUE", "unique": {"base": "Shrine Sceptre"}} {"name": "Hoghunt", "refName": "Hoghunt", "namespace": "UNIQUE", "unique": {"base": "Felled Greatclub"}} {"name": "Hrimnor's Hymn", "refName": "Hrimnor's Hymn", "namespace": "UNIQUE", "unique": {"base": "Oak Greathammer"}} +{"name": "INCOMPLETE", "refName": "INCOMPLETE", "namespace": "UNIQUE", "unique": {"base": "War Spear"}} +{"name": "INCOMPLETE", "refName": "INCOMPLETE", "namespace": "UNIQUE", "unique": {"base": "Vampiric Blade"}} +{"name": "INCOMPLETE", "refName": "INCOMPLETE", "namespace": "UNIQUE", "unique": {"base": "Charred Shortsword"}} +{"name": "INCOMPLETE", "refName": "INCOMPLETE", "namespace": "UNIQUE", "unique": {"base": "Corroded Longsword"}} +{"name": "INCOMPLETE", "refName": "INCOMPLETE", "namespace": "UNIQUE", "unique": {"base": "Rippled Greatsword"}} {"name": "Lifesprig", "refName": "Lifesprig", "namespace": "UNIQUE", "unique": {"base": "Attuned Wand"}} {"name": "Matsya", "refName": "Matsya", "namespace": "UNIQUE", "unique": {"base": "Crescent Quarterstaff"}} {"name": "Mist Whisper", "refName": "Mist Whisper", "namespace": "UNIQUE", "unique": {"base": "Makeshift Crossbow"}} diff --git a/renderer/public/.DS_Store/vendor/client/pyDumps/en/stats.ndjson b/renderer/public/.DS_Store/vendor/client/pyDumps/en/stats.ndjson index 2fe07f8fb..4fa2bb24f 100644 --- a/renderer/public/.DS_Store/vendor/client/pyDumps/en/stats.ndjson +++ b/renderer/public/.DS_Store/vendor/client/pyDumps/en/stats.ndjson @@ -114,7 +114,7 @@ {"ref": "+#% to all Maximum Elemental Resistances", "better": 1, "id": "additional_maximum_all_elemental_resistances_%", "matchers": [{"string": "#% to all Maximum Elemental Resistances", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1978899297"], "implicit": ["implicit.stat_1978899297"], "enchant": ["enchant.stat_1978899297"]}}} {"ref": "#% increased Energy Shield Recharge Rate", "better": 1, "id": "energy_shield_recharge_rate_+%", "matchers": [{"string": "#% increased Energy Shield Recharge Rate", "negate": false}, {"string": "#% reduced Energy Shield Recharge Rate", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2339757871"]}}} {"ref": "#% chance to Pierce an Enemy", "better": 1, "id": "base_chance_to_pierce_%", "matchers": [{"string": "#% chance to Pierce an Enemy", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2321178454"], "implicit": ["implicit.stat_2321178454"], "enchant": ["enchant.stat_2321178454"]}}} -{"ref": "Bow Attacks fire an additional Arrow", "better": 1, "id": "number_of_additional_arrows", "matchers": [{"string": "Bow Attacks fire an additional Arrow", "negate": false}], "trade": {"ids": null}} +{"ref": "Bow Attacks fire an additional Arrow", "better": 1, "id": "number_of_additional_arrows", "matchers": [{"string": "Bow Attacks fire an additional Arrow", "negate": false}, {"string": "Bow Attacks fire # additional Arrows", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3885405204"], "implicit": ["implicit.stat_3885405204"], "enchant": ["enchant.stat_3885405204"]}}} {"ref": "Loads an additional bolt", "better": 1, "id": "base_number_of_crossbow_bolts", "matchers": [{"string": "Loads an additional bolt", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1039380318"], "implicit": ["implicit.stat_1039380318"], "enchant": ["enchant.stat_1039380318"]}}} {"ref": "#% increased Flask Life Recovery rate", "better": 1, "id": "flask_life_recovery_rate_+%", "matchers": [{"string": "#% increased Flask Life Recovery rate", "negate": false}, {"string": "#% reduced Flask Life Recovery rate", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_51994685"]}}} {"ref": "#% increased Flask Mana Recovery rate", "better": 1, "id": "flask_mana_recovery_rate_+%", "matchers": [{"string": "#% increased Flask Mana Recovery rate", "negate": false}, {"string": "#% reduced Flask Mana Recovery rate", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1412217137"]}}} @@ -197,7 +197,7 @@ {"ref": "Causes Enemies to Explode on Critical kill, for #% of their Life as Physical Damage", "better": 1, "id": "local_explode_on_kill_with_crit_%_physical_damage_to_deal", "matchers": [{"string": "Causes Enemies to Explode on Critical kill, for #% of their Life as Physical Damage", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_1541903247"]}}} {"ref": "Crushes Enemies on Hit", "better": 1, "id": "local_crush_on_hit", "matchers": [{"string": "Crushes Enemies on Hit", "negate": false}], "trade": {"ids": null}} {"ref": "#% chance to Maim on Hit", "better": 1, "id": "local_maim_on_hit_%", "matchers": [{"string": "#% chance to Maim on Hit", "negate": false}], "trade": {"ids": {"enchant": ["enchant.stat_2763429652"]}}} -{"ref": "#% increased Projectile Speed when thrown", "better": 1, "id": "local_projectile_speed_+%", "matchers": [{"string": "#% increased Projectile Speed when thrown", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Projectile Speed when thrown", "better": 1, "id": "local_projectile_speed_+%", "matchers": [{"string": "#% increased Projectile Speed when thrown", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_535217483"]}}} {"ref": "Uses both hand slots", "better": 1, "id": "local_weapon_uses_both_hands", "matchers": [{"string": "Uses both hand slots", "negate": false}], "trade": {"ids": null}} {"ref": "#% chance to Blind Enemies on hit", "better": 1, "id": "local_chance_to_blind_on_hit_%", "matchers": [{"string": "#% chance to Blind Enemies on hit", "negate": false}], "trade": {"ids": {"enchant": ["enchant.stat_2301191210"]}}} {"ref": "#% chance to Poison on Hit", "better": 1, "id": "local_poison_on_hit_%", "matchers": [{"string": "#% chance to Poison on Hit", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_795138349"], "enchant": ["enchant.stat_3885634897"], "rune": ["rune.stat_3885634897"]}}} diff --git a/renderer/public/.DS_Store/vendor/client/descriptions/.gitkeep b/renderer/public/.DS_Store/vendor/json-api/cmn-Hant/.gitkeep similarity index 100% rename from renderer/public/.DS_Store/vendor/client/descriptions/.gitkeep rename to renderer/public/.DS_Store/vendor/json-api/cmn-Hant/.gitkeep diff --git a/renderer/public/.DS_Store/vendor/json-api/.gitkeep b/renderer/public/.DS_Store/vendor/json-api/en/.gitkeep similarity index 100% rename from renderer/public/.DS_Store/vendor/json-api/.gitkeep rename to renderer/public/.DS_Store/vendor/json-api/en/.gitkeep diff --git a/renderer/public/.DS_Store/vendor/json-api/ko/.gitkeep b/renderer/public/.DS_Store/vendor/json-api/ko/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/renderer/public/.DS_Store/vendor/json-api/ru/.gitkeep b/renderer/public/.DS_Store/vendor/json-api/ru/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/renderer/public/.DS_Store/vendor/pseudo-stats/add-to-new.py b/renderer/public/.DS_Store/vendor/pseudo-stats/add-to-new.py new file mode 100644 index 000000000..3d880bc6c --- /dev/null +++ b/renderer/public/.DS_Store/vendor/pseudo-stats/add-to-new.py @@ -0,0 +1,86 @@ +import json +import os + + +def get_script_dir(): + """Returns the directory where the script is located.""" + return os.path.dirname(os.path.realpath(__file__)) + + +# List of localization codes +localizations = ["en", "ru", "ko", "cmn-Hant"] + + +def process_filtered_pseudo_stats(loc): + filtered_file_path = f"{get_script_dir()}/{loc}/pseudo_stats.ndjson" + stats_file_path = f"{get_script_dir()}/../../data/{loc}/stats.ndjson" + output_file_path = f"{get_script_dir()}/../../data/{loc}/updated_stats.ndjson" + + # Load all stats at the start to avoid repeated loading + with open(stats_file_path, "r", encoding="utf-8") as stats_file: + original_stats_lines = [json.loads(line) for line in stats_file] + + updated_lines = [] + matched_keys = set() # To track keys that have been updated + + with open(filtered_file_path, "r", encoding="utf-8") as filtered_file: + for line in filtered_file: + try: + pseudo_object = json.loads(line) + # Check for non-pseudo keys + if "trade" in pseudo_object and "ids" in pseudo_object["trade"]: + non_pseudo_found = any( + key in pseudo_object["trade"]["ids"] + for key in ["explicit", "implicit", "enchant"] + ) + + if non_pseudo_found: + # Search for the corresponding stat + for stats_object in original_stats_lines: + # Check if the trade.ids matches with non-pseudo keys + for key in ["explicit", "implicit", "enchant"]: + if key in pseudo_object["trade"]["ids"]: + value_to_find = pseudo_object["trade"]["ids"][key] + # Ensure stats_object exists and has 'trade' and 'ids' before accessing + if ( + stats_object.get("trade") is not None + and stats_object["trade"].get("ids") is not None + and stats_object["trade"]["ids"].get(key) + == value_to_find + ): + # Cut the line and add the pseudo value + new_stats_object = ( + stats_object.copy() + ) # Use copy to avoid modifying original + new_stats_object["trade"]["ids"]["pseudo"] = ( + pseudo_object["trade"]["ids"].get("pseudo") + ) + updated_lines.append(new_stats_object) + matched_keys.add( + json.dumps(stats_object, ensure_ascii=False) + ) + break + + # If not matched, add the pseudo object as is + else: + updated_lines.append(pseudo_object) + except json.JSONDecodeError: + print(f"Error parsing JSON from filtered file: {line}") + + # Write updated lines and remaining original stats to a new stats file + with open(output_file_path, "w", encoding="utf-8") as output_file: + # Write new lines at the top + for updated_line in updated_lines: + output_file.write(json.dumps(updated_line, ensure_ascii=False) + "\n") + + # Write the original lines that have not been matched + for original_line in original_stats_lines: + if json.dumps(original_line, ensure_ascii=False) not in matched_keys: + output_file.write(json.dumps(original_line, ensure_ascii=False) + "\n") + + print(f"Updated stats written to {output_file_path} for {loc}.") + + +if __name__ == "__main__": + for loc in localizations: + process_filtered_pseudo_stats(loc) diff --git a/renderer/public/.DS_Store/vendor/pseudo-stats/all-pseudo.ndjson b/renderer/public/.DS_Store/vendor/pseudo-stats/all-pseudo.ndjson new file mode 100644 index 000000000..3fb4a3e9b --- /dev/null +++ b/renderer/public/.DS_Store/vendor/pseudo-stats/all-pseudo.ndjson @@ -0,0 +1,292 @@ +{"ref": "# Crafted Modifiers", "better": 1, "matchers": [{"string": "# Crafted Modifiers "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_crafted_mods"]}}} +{"ref": "# Crafted Prefix Modifiers", "better": 1, "matchers": [{"string": "# Crafted Prefix Modifiers "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_crafted_prefix_mods"]}}} +{"ref": "# Crafted Suffix Modifiers", "better": 1, "matchers": [{"string": "# Crafted Suffix Modifiers "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_crafted_suffix_mods"]}}} +{"ref": "# Empty Modifiers", "better": 1, "matchers": [{"string": "# Empty Modifiers "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_empty_affix_mods"]}}} +{"ref": "# Empty Prefix Modifiers", "better": 1, "matchers": [{"string": "# Empty Prefix Modifiers "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_empty_prefix_mods"]}}} +{"ref": "# Empty Suffix Modifiers", "better": 1, "matchers": [{"string": "# Empty Suffix Modifiers "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_empty_suffix_mods"]}}} +{"ref": "# Enchant Modifiers", "better": 1, "matchers": [{"string": "# Enchant Modifiers "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_enchant_mods"]}}} +{"ref": "# Fractured Modifiers", "better": 1, "matchers": [{"string": "# Fractured Modifiers "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_fractured_mods"]}}} +{"ref": "# Implicit Modifiers", "better": 1, "matchers": [{"string": "# Implicit Modifiers "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_implicit_mods"]}}} +{"ref": "# Life Regenerated per Second", "better": 1, "matchers": [{"string": "# Life Regenerated per Second "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_life_regen"]}}} +{"ref": "# Modifiers", "better": 1, "matchers": [{"string": "# Modifiers "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_affix_mods"]}}} +{"ref": "# Notable Passive Skills", "better": 1, "matchers": [{"string": "# Notable Passive Skills "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_notable_passive_skills"]}}} +{"ref": "# Prefix Modifiers", "better": 1, "matchers": [{"string": "# Prefix Modifiers "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_prefix_mods"]}}} +{"ref": "# Suffix Modifiers", "better": 1, "matchers": [{"string": "# Suffix Modifiers "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_suffix_mods"]}}} +{"ref": "# total Elemental Resistances", "better": 1, "matchers": [{"string": "# total Elemental Resistances "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_count_elemental_resistances"]}}} +{"ref": "# total Resistances", "better": 1, "matchers": [{"string": "# total Resistances "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_count_resistances"]}}} +{"ref": "#% Base Defence Percentile", "better": 1, "matchers": [{"string": "#% Base Defence Percentile "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_base_defence_percentile"]}}} +{"ref": "#% chance for dropped Maps to convert to Atlas Memories", "better": 1, "matchers": [{"string": "#% chance for dropped Maps to convert to Atlas Memories "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_memory_line"]}}} +{"ref": "#% chance for dropped Maps to convert to Conqueror Maps", "better": 1, "matchers": [{"string": "#% chance for dropped Maps to convert to Conqueror Maps "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_conqueror_map"]}}} +{"ref": "#% chance for dropped Maps to convert to Elder Maps", "better": 1, "matchers": [{"string": "#% chance for dropped Maps to convert to Elder Maps "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_elder_map"]}}} +{"ref": "#% chance for dropped Maps to convert to Maven Invitations", "better": 1, "matchers": [{"string": "#% chance for dropped Maps to convert to Maven Invitations "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_maven_invitation"]}}} +{"ref": "#% chance for dropped Maps to convert to Scarabs", "better": 1, "matchers": [{"string": "#% chance for dropped Maps to convert to Scarabs "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_scarab"]}}} +{"ref": "#% chance for dropped Maps to convert to Shaper Maps", "better": 1, "matchers": [{"string": "#% chance for dropped Maps to convert to Shaper Maps "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_shaper_map"]}}} +{"ref": "#% chance for dropped Maps to convert to Unique Maps", "better": 1, "matchers": [{"string": "#% chance for dropped Maps to convert to Unique Maps "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_unique_map"]}}} +{"ref": "#% increased Burning Damage", "better": 1, "matchers": [{"string": "#% increased Burning Damage"}, {"string": "#% reduced Burning Damage", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_burning_damage"], "explicit": ["explicit.stat_1175385867"], "implicit": ["implicit.stat_1175385867"], "fractured": ["fractured.stat_1175385867"]}}} +{"ref": "#% increased Cold Damage", "better": 1, "matchers": [{"string": "#% increased Cold Damage"}, {"string": "#% reduced Cold Damage", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_cold_damage"], "explicit": ["explicit.stat_3291658075"], "implicit": ["implicit.stat_3291658075"], "fractured": ["fractured.stat_3291658075"], "scourge": ["scourge.stat_3291658075"], "crafted": ["crafted.stat_3291658075"]}}} +{"ref": "#% increased Cold Damage with Attack Skills", "better": 1, "matchers": [{"string": "#% increased Cold Damage with Attack Skills"}, {"string": "#% reduced Cold Damage with Attack Skills", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_cold_damage_with_attack_skills"], "explicit": ["explicit.stat_860668586"], "implicit": ["implicit.stat_860668586"]}}} +{"ref": "#% increased Cold Spell Damage", "better": 1, "matchers": [{"string": "#% increased Cold Spell Damage "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_cold_spell_damage"]}}} +{"ref": "#% increased Elemental Damage", "better": 1, "matchers": [{"string": "#% increased Elemental Damage"}, {"string": "Has #% increased Elemental Damage"}, {"string": "#% reduced Elemental Damage", "negate": true}, {"string": "Has #% reduced Elemental Damage", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_elemental_damage"], "explicit": ["explicit.stat_3141070085"], "implicit": ["implicit.stat_3141070085"], "fractured": ["fractured.stat_3141070085"], "enchant": ["enchant.stat_692420067"], "scourge": ["scourge.stat_3141070085"]}}} +{"ref": "#% increased Elemental Damage with Attack Skills", "better": 1, "matchers": [{"string": "#% increased Elemental Damage with Attack Skills"}, {"string": "#% reduced Elemental Damage with Attack Skills", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_elemental_damage_with_attack_skills"], "explicit": ["explicit.stat_387439868"], "implicit": ["implicit.stat_387439868"], "fractured": ["fractured.stat_387439868"], "scourge": ["scourge.stat_387439868"], "crafted": ["crafted.stat_387439868"]}}} +{"ref": "#% increased Fire Damage", "better": 1, "matchers": [{"string": "#% increased Fire Damage"}, {"string": "#% reduced Fire Damage", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_fire_damage"], "explicit": ["explicit.stat_3962278098"], "implicit": ["implicit.stat_3962278098"], "fractured": ["fractured.stat_3962278098"], "scourge": ["scourge.stat_3962278098"], "crafted": ["crafted.stat_3962278098"]}}} +{"ref": "#% increased Fire Damage with Attack Skills", "better": 1, "matchers": [{"string": "#% increased Fire Damage with Attack Skills"}, {"string": "#% reduced Fire Damage with Attack Skills", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_fire_damage_with_attack_skills"], "implicit": ["implicit.stat_2468413380"]}}} +{"ref": "#% increased Fire Spell Damage", "better": 1, "matchers": [{"string": "#% increased Fire Spell Damage "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_fire_spell_damage"]}}} +{"ref": "#% increased Lightning Damage", "better": 1, "matchers": [{"string": "#% increased Lightning Damage"}, {"string": "#% reduced Lightning Damage", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_lightning_damage"], "explicit": ["explicit.stat_2231156303"], "implicit": ["implicit.stat_2231156303"], "fractured": ["fractured.stat_2231156303"], "scourge": ["scourge.stat_2231156303"], "crafted": ["crafted.stat_2231156303"]}}} +{"ref": "#% increased Lightning Damage with Attack Skills", "better": 1, "matchers": [{"string": "#% increased Lightning Damage with Attack Skills"}, {"string": "#% reduced Lightning Damage with Attack Skills", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_lightning_damage_with_attack_skills"], "explicit": ["explicit.stat_4208907162"], "implicit": ["implicit.stat_4208907162"]}}} +{"ref": "#% increased Lightning Spell Damage", "better": 1, "matchers": [{"string": "#% increased Lightning Spell Damage "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_lightning_spell_damage"]}}} +{"ref": "#% increased Mana Regeneration Rate", "better": 1, "matchers": [{"string": "#% increased Mana Regeneration Rate"}, {"string": "#% reduced Mana Regeneration Rate", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_mana_regen"], "explicit": ["explicit.stat_789117908"], "implicit": ["implicit.stat_789117908"], "fractured": ["fractured.stat_789117908"], "scourge": ["scourge.stat_789117908"], "crafted": ["crafted.stat_789117908"]}}} +{"ref": "#% increased Movement Speed", "better": 1, "matchers": [{"string": "#% increased Movement Speed"}, {"string": "#% reduced Movement Speed", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_movement_speed"], "explicit": ["explicit.stat_2250533757"], "implicit": ["implicit.stat_2250533757"], "fractured": ["fractured.stat_2250533757"], "enchant": ["enchant.stat_2250533757"], "scourge": ["scourge.stat_2250533757"], "crafted": ["crafted.stat_2250533757"]}}} +{"ref": "#% increased Rarity of Items found", "better": 1, "matchers": [{"string": "#% increased Rarity of Items found"}, {"string": "#% reduced Rarity of Items found", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_rarity"], "explicit": ["explicit.stat_3917489142"], "implicit": ["implicit.stat_3917489142"], "fractured": ["fractured.stat_3917489142"], "scourge": ["scourge.stat_3917489142"], "crafted": ["crafted.stat_3917489142"]}}} +{"ref": "#% increased Spell Damage", "better": 1, "matchers": [{"string": "#% increased Spell Damage"}, {"string": "#% reduced Spell Damage", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_spell_damage"], "explicit": ["explicit.stat_2974417149"], "implicit": ["implicit.stat_2974417149"], "fractured": ["fractured.stat_2974417149"], "enchant": ["enchant.stat_2974417149"], "scourge": ["scourge.stat_2974417149"], "crafted": ["crafted.stat_2974417149"]}}} +{"ref": "#% of Life Regenerated per Second", "better": 1, "matchers": [{"string": "#% of Life Regenerated per Second "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_percent_life_regen"]}}} +{"ref": "#% of Physical Attack Damage Leeched as Life", "dp": true, "better": 1, "matchers": [{"string": "#% of Physical Attack Damage Leeched as Life"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_physical_attack_damage_leeched_as_life"], "explicit": ["explicit.stat_3593843976", "explicit.stat_55876295"], "implicit": ["implicit.stat_3593843976", "implicit.stat_55876295"], "fractured": ["fractured.stat_3593843976", "fractured.stat_55876295"], "scourge": ["scourge.stat_3593843976"], "crafted": ["crafted.stat_3593843976", "crafted.stat_55876295"]}}} +{"ref": "#% of Physical Attack Damage Leeched as Mana", "dp": true, "better": 1, "matchers": [{"string": "#% of Physical Attack Damage Leeched as Mana"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_physical_attack_damage_leeched_as_mana"], "explicit": ["explicit.stat_3237948413", "explicit.stat_669069897"], "implicit": ["implicit.stat_3237948413", "implicit.stat_669069897"], "fractured": ["fractured.stat_3237948413", "fractured.stat_669069897"], "enchant": ["enchant.stat_669069897"], "scourge": ["scourge.stat_3237948413"], "crafted": ["crafted.stat_3237948413", "crafted.stat_669069897"]}}} +{"ref": "#% total increased maximum Energy Shield", "better": 1, "matchers": [{"string": "#% total increased maximum Energy Shield "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_energy_shield"]}}} +{"ref": "#% total increased Physical Damage", "better": 1, "matchers": [{"string": "#% total increased Physical Damage "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_physical_damage"]}}} +{"ref": "+# total maximum Energy Shield", "better": 1, "matchers": [{"string": "+# total maximum Energy Shield "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_energy_shield"]}}} +{"ref": "+# total maximum Life", "better": 1, "matchers": [{"string": "+# total maximum Life "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_life"]}}} +{"ref": "+# total maximum Mana", "better": 1, "matchers": [{"string": "+# total maximum Mana "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_mana"]}}} +{"ref": "+# total to all Attributes", "better": 1, "matchers": [{"string": "+# total to all Attributes "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_all_attributes"]}}} +{"ref": "+# total to Dexterity", "better": 1, "matchers": [{"string": "+# total to Dexterity "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_dexterity"]}}} +{"ref": "+# total to Intelligence", "better": 1, "matchers": [{"string": "+# total to Intelligence "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_intelligence"]}}} +{"ref": "+# total to Level of Socketed Aura Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Aura Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_aura_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Bow Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Bow Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_bow_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Chaos Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Chaos Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_chaos_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Cold Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Cold Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_cold_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Curse Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Curse Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_curse_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Dexterity Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Dexterity Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_dexterity_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Elemental Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Elemental Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_elemental_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Fire Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Fire Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_fire_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Golem Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Golem Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_golem_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Intelligence Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Intelligence Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_intelligence_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Lightning Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Lightning Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_lightning_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Melee Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Melee Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_melee_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Minion Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Minion Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_minion_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Movement Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Movement Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_movement_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Projectile Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Projectile Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_projectile_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Skill Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Skill Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_skill_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Spell Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Spell Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_spell_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Strength Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Strength Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_strength_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Support Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Support Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_support_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Vaal Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Vaal Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_vaal_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Warcry Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Warcry Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_warcry_gem_levels"]}}} +{"ref": "+# total to Strength", "better": 1, "matchers": [{"string": "+# total to Strength "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_strength"]}}} +{"ref": "+#% Global Critical Strike Chance", "better": 1, "matchers": [{"string": "+#% Global Critical Strike Chance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_global_critical_strike_chance"]}}} +{"ref": "+#% Global Critical Strike Multiplier", "better": 1, "matchers": [{"string": "+#% Global Critical Strike Multiplier "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_global_critical_strike_multiplier"]}}} +{"ref": "+#% total Attack Speed", "better": 1, "matchers": [{"string": "+#% total Attack Speed "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_attack_speed"]}}} +{"ref": "+#% total Cast Speed", "better": 1, "matchers": [{"string": "+#% total Cast Speed "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_cast_speed"]}}} +{"ref": "+#% total Critical Strike Chance for Spells", "better": 1, "matchers": [{"string": "+#% total Critical Strike Chance for Spells "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_critical_strike_chance_for_spells"]}}} +{"ref": "+#% total Elemental Resistance", "better": 1, "matchers": [{"string": "+#% total Elemental Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_elemental_resistance"]}}} +{"ref": "+#% total Resistance", "better": 1, "matchers": [{"string": "+#% total Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_resistance"]}}} +{"ref": "+#% total to all Elemental Resistances", "better": 1, "matchers": [{"string": "+#% total to all Elemental Resistances "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_all_elemental_resistances"]}}} +{"ref": "+#% total to Chaos Resistance", "better": 1, "matchers": [{"string": "+#% total to Chaos Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_chaos_resistance"]}}} +{"ref": "+#% total to Cold Resistance", "better": 1, "matchers": [{"string": "+#% total to Cold Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_cold_resistance"]}}} +{"ref": "+#% total to Fire Resistance", "better": 1, "matchers": [{"string": "+#% total to Fire Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_fire_resistance"]}}} +{"ref": "+#% total to Lightning Resistance", "better": 1, "matchers": [{"string": "+#% total to Lightning Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_lightning_resistance"]}}} +{"ref": "Adds # to # Chaos Damage", "better": 1, "matchers": [{"string": "Adds # to # Chaos Damage"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_chaos_damage"], "explicit": ["explicit.stat_2223678961", "explicit.stat_3531280422"], "implicit": ["implicit.stat_2223678961", "implicit.stat_3531280422"], "fractured": ["fractured.stat_2223678961"], "enchant": ["enchant.stat_2223678961"], "scourge": ["scourge.stat_2223678961"]}}} +{"ref": "Adds # to # Chaos Damage to Attacks", "better": 1, "matchers": [{"string": "Adds # to # Chaos Damage to Attacks"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_chaos_damage_to_attacks"], "explicit": ["explicit.stat_674553446"], "implicit": ["implicit.stat_674553446"], "fractured": ["fractured.stat_674553446"], "crafted": ["crafted.stat_674553446"]}}} +{"ref": "Adds # to # Chaos Damage to Spells", "better": 1, "matchers": [{"string": "Adds # to # Chaos Damage to Spells"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_chaos_damage_to_spells"], "explicit": ["explicit.stat_2300399854"], "implicit": ["implicit.stat_2300399854"], "fractured": ["fractured.stat_2300399854"]}}} +{"ref": "Adds # to # Cold Damage", "better": 1, "matchers": [{"string": "Adds # to # Cold Damage"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_cold_damage"], "explicit": ["explicit.stat_1037193709", "explicit.stat_2387423236"], "implicit": ["implicit.stat_1037193709", "implicit.stat_2387423236"], "fractured": ["fractured.stat_1037193709", "fractured.stat_2387423236"], "enchant": ["enchant.stat_1037193709"], "scourge": ["scourge.stat_1037193709"], "crafted": ["crafted.stat_1037193709", "crafted.stat_2387423236"]}}} +{"ref": "Adds # to # Cold Damage to Attacks", "better": 1, "matchers": [{"string": "Adds # to # Cold Damage to Attacks"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_cold_damage_to_attacks"], "explicit": ["explicit.stat_4067062424"], "implicit": ["implicit.stat_4067062424"], "fractured": ["fractured.stat_4067062424"], "crafted": ["crafted.stat_4067062424"]}}} +{"ref": "Adds # to # Cold Damage to Spells", "better": 1, "matchers": [{"string": "Adds # to # Cold Damage to Spells"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_cold_damage_to_spells"], "explicit": ["explicit.stat_2469416729"], "implicit": ["implicit.stat_2469416729"], "fractured": ["fractured.stat_2469416729"], "scourge": ["scourge.stat_2469416729"], "crafted": ["crafted.stat_2469416729"]}}} +{"ref": "Adds # to # Damage", "better": 1, "matchers": [{"string": "Adds # to # Damage "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_damage"]}}} +{"ref": "Adds # to # Damage to Attacks", "better": 1, "matchers": [{"string": "Adds # to # Damage to Attacks "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_damage_to_attacks"]}}} +{"ref": "Adds # to # Damage to Spells", "better": 1, "matchers": [{"string": "Adds # to # Damage to Spells "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_damage_to_spells"]}}} +{"ref": "Adds # to # Elemental Damage", "better": 1, "matchers": [{"string": "Adds # to # Elemental Damage "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_elemental_damage"]}}} +{"ref": "Adds # to # Elemental Damage to Attacks", "better": 1, "matchers": [{"string": "Adds # to # Elemental Damage to Attacks "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_elemental_damage_to_attacks"]}}} +{"ref": "Adds # to # Elemental Damage to Spells", "better": 1, "matchers": [{"string": "Adds # to # Elemental Damage to Spells "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_elemental_damage_to_spells"]}}} +{"ref": "Adds # to # Fire Damage", "better": 1, "matchers": [{"string": "Adds # to # Fire Damage"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_fire_damage"], "explicit": ["explicit.stat_321077055", "explicit.stat_709508406"], "implicit": ["implicit.stat_321077055", "implicit.stat_709508406"], "fractured": ["fractured.stat_321077055", "fractured.stat_709508406"], "enchant": ["enchant.stat_709508406"], "scourge": ["scourge.stat_709508406"], "crafted": ["crafted.stat_321077055", "crafted.stat_709508406"]}}} +{"ref": "Adds # to # Fire Damage to Attacks", "better": 1, "matchers": [{"string": "Adds # to # Fire Damage to Attacks"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_fire_damage_to_attacks"], "explicit": ["explicit.stat_1573130764"], "implicit": ["implicit.stat_1573130764"], "fractured": ["fractured.stat_1573130764"], "crafted": ["crafted.stat_1573130764"]}}} +{"ref": "Adds # to # Fire Damage to Spells", "better": 1, "matchers": [{"string": "Adds # to # Fire Damage to Spells"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_fire_damage_to_spells"], "explicit": ["explicit.stat_1133016593"], "implicit": ["implicit.stat_1133016593"], "fractured": ["fractured.stat_1133016593"], "scourge": ["scourge.stat_1133016593"], "crafted": ["crafted.stat_1133016593"]}}} +{"ref": "Adds # to # Lightning Damage", "better": 1, "matchers": [{"string": "Adds # to # Lightning Damage"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_lightning_damage"], "explicit": ["explicit.stat_1334060246", "explicit.stat_3336890334"], "implicit": ["implicit.stat_1334060246", "implicit.stat_3336890334"], "fractured": ["fractured.stat_1334060246", "fractured.stat_3336890334"], "enchant": ["enchant.stat_3336890334"], "scourge": ["scourge.stat_3336890334"], "crafted": ["crafted.stat_1334060246", "crafted.stat_3336890334"]}}} +{"ref": "Adds # to # Lightning Damage to Attacks", "better": 1, "matchers": [{"string": "Adds # to # Lightning Damage to Attacks"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_lightning_damage_to_attacks"], "explicit": ["explicit.stat_1754445556"], "implicit": ["implicit.stat_1754445556"], "fractured": ["fractured.stat_1754445556"], "crafted": ["crafted.stat_1754445556"]}}} +{"ref": "Adds # to # Lightning Damage to Spells", "better": 1, "matchers": [{"string": "Adds # to # Lightning Damage to Spells"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_lightning_damage_to_spells"], "explicit": ["explicit.stat_2831165374"], "implicit": ["implicit.stat_2831165374"], "fractured": ["fractured.stat_2831165374"], "scourge": ["scourge.stat_2831165374"], "crafted": ["crafted.stat_2831165374"]}}} +{"ref": "Adds # to # Physical Damage", "better": 1, "matchers": [{"string": "Adds # to # Physical Damage"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_physical_damage"], "explicit": ["explicit.stat_1940865751", "explicit.stat_960081730"], "implicit": ["implicit.stat_1940865751"], "fractured": ["fractured.stat_1940865751", "fractured.stat_960081730"], "scourge": ["scourge.stat_1940865751"], "crafted": ["crafted.stat_1940865751"]}}} +{"ref": "Adds # to # Physical Damage to Attacks", "better": 1, "matchers": [{"string": "Adds # to # Physical Damage to Attacks"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_physical_damage_to_attacks"], "explicit": ["explicit.stat_3032590688"], "implicit": ["implicit.stat_3032590688"], "fractured": ["fractured.stat_3032590688"], "crafted": ["crafted.stat_3032590688"]}}} +{"ref": "Adds # to # Physical Damage to Spells", "better": 1, "matchers": [{"string": "Adds # to # Physical Damage to Spells"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_physical_damage_to_spells"], "explicit": ["explicit.stat_2435536961"], "implicit": ["implicit.stat_2435536961"], "fractured": ["fractured.stat_2435536961"], "scourge": ["scourge.stat_2435536961"]}}} +{"ref": "Has # Influences", "better": 1, "matchers": [{"string": "Has # Influences "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_influence_count"]}}} +{"ref": "Has Crusader Influence", "better": 1, "matchers": [{"string": "Has Crusader Influence "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_crusader_influence"]}}} +{"ref": "Has Elder Influence", "better": 1, "matchers": [{"string": "Has Elder Influence "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_elder_influence"]}}} +{"ref": "Has Hunter Influence", "better": 1, "matchers": [{"string": "Has Hunter Influence "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_hunter_influence"]}}} +{"ref": "Has Logbook Area: Battleground Graves", "better": 1, "matchers": [{"string": "Has Logbook Area: Battleground Graves "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_battleground_graves"]}}} +{"ref": "Has Logbook Area: Bluffs", "better": 1, "matchers": [{"string": "Has Logbook Area: Bluffs "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_bluffs"]}}} +{"ref": "Has Logbook Area: Cemetery", "better": 1, "matchers": [{"string": "Has Logbook Area: Cemetery "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_cemetery"]}}} +{"ref": "Has Logbook Area: Desert Ruins", "better": 1, "matchers": [{"string": "Has Logbook Area: Desert Ruins "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_desert_ruins"]}}} +{"ref": "Has Logbook Area: Dried Riverbed", "better": 1, "matchers": [{"string": "Has Logbook Area: Dried Riverbed "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_dried_riverbed"]}}} +{"ref": "Has Logbook Area: Forest Ruins", "better": 1, "matchers": [{"string": "Has Logbook Area: Forest Ruins "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_forest_ruins"]}}} +{"ref": "Has Logbook Area: Karui Wargraves", "better": 1, "matchers": [{"string": "Has Logbook Area: Karui Wargraves "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_karui_wargraves"]}}} +{"ref": "Has Logbook Area: Mountainside", "better": 1, "matchers": [{"string": "Has Logbook Area: Mountainside "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_mountainside"]}}} +{"ref": "Has Logbook Area: Rotting Temple", "better": 1, "matchers": [{"string": "Has Logbook Area: Rotting Temple "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_rotting_temple"]}}} +{"ref": "Has Logbook Area: Sarn Slums", "better": 1, "matchers": [{"string": "Has Logbook Area: Sarn Slums "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_sarn_slums"]}}} +{"ref": "Has Logbook Area: Scrublands", "better": 1, "matchers": [{"string": "Has Logbook Area: Scrublands "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_scrublands"]}}} +{"ref": "Has Logbook Area: Shipwreck Reef", "better": 1, "matchers": [{"string": "Has Logbook Area: Shipwreck Reef "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_shipwreck_reef"]}}} +{"ref": "Has Logbook Area: Utzaal Outskirts", "better": 1, "matchers": [{"string": "Has Logbook Area: Utzaal Outskirts "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_utzaal_outskirts"]}}} +{"ref": "Has Logbook Area: Vaal Temple", "better": 1, "matchers": [{"string": "Has Logbook Area: Vaal Temple "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_vaal_temple"]}}} +{"ref": "Has Logbook Area: Volcanic Island", "better": 1, "matchers": [{"string": "Has Logbook Area: Volcanic Island "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_volcano"]}}} +{"ref": "Has Logbook Faction: Black Scythe Mercenaries", "better": 0, "matchers": [{"string": "Black Scythe Mercenaries"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_faction_mercenaries"]}}} +{"ref": "Has Logbook Faction: Druids of the Broken Circle", "better": 0, "matchers": [{"string": "Druids of the Broken Circle"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_faction_druids"]}}} +{"ref": "Has Logbook Faction: Knights of the Sun", "better": 0, "matchers": [{"string": "Knights of the Sun"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_faction_knights"]}}} +{"ref": "Has Logbook Faction: Order of the Chalice", "better": 0, "matchers": [{"string": "Order of the Chalice"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_faction_order"]}}} +{"ref": "Has Redeemer Influence", "better": 1, "matchers": [{"string": "Has Redeemer Influence "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_redeemer_influence"]}}} +{"ref": "Has Room: Antechamber", "better": 0, "matchers": [{"string": "Antechamber"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_antechamber"]}, "option": true}} +{"ref": "Has Room: Apex of Ascension (Tier 3)", "better": 0, "matchers": [{"string": "Apex of Ascension (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_sacrifice_room_3"]}, "option": true}} +{"ref": "Has Room: Apex of Atzoatl", "better": 0, "matchers": [{"string": "Apex of Atzoatl"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_apex"]}, "option": true}} +{"ref": "Has Room: Arena of Valour (Tier 2)", "better": 0, "matchers": [{"string": "Arena of Valour (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_weapon_room_2"]}, "option": true}} +{"ref": "Has Room: Armourer's Workshop (Tier 1)", "better": 0, "matchers": [{"string": "Armourer's Workshop (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_armour_room_1"]}, "option": true}} +{"ref": "Has Room: Armoury (Tier 2)", "better": 0, "matchers": [{"string": "Armoury (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_armour_room_2"]}, "option": true}} +{"ref": "Has Room: Atlas of Worlds (Tier 3)", "better": 0, "matchers": [{"string": "Atlas of Worlds (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_cartography_room_3"]}, "option": true}} +{"ref": "Has Room: Automaton Lab (Tier 2)", "better": 0, "matchers": [{"string": "Automaton Lab (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_minions_2"]}, "option": true}} +{"ref": "Has Room: Banquet Hall", "better": 0, "matchers": [{"string": "Banquet Hall"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_banquet_hall"]}, "option": true}} +{"ref": "Has Room: Barracks (Tier 2)", "better": 0, "matchers": [{"string": "Barracks (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_breeding_room_2"]}, "option": true}} +{"ref": "Has Room: Breach Containment Chamber (Tier 2)", "better": 0, "matchers": [{"string": "Breach Containment Chamber (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_breach_room_2"]}, "option": true}} +{"ref": "Has Room: Catalyst of Corruption (Tier 2)", "better": 0, "matchers": [{"string": "Catalyst of Corruption (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_corruption_room_2"]}, "option": true}} +{"ref": "Has Room: Cellar", "better": 0, "matchers": [{"string": "Cellar"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_cellar"]}, "option": true}} +{"ref": "Has Room: Chamber of Iron (Tier 3)", "better": 0, "matchers": [{"string": "Chamber of Iron (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_armour_room_3"]}, "option": true}} +{"ref": "Has Room: Chasm", "better": 0, "matchers": [{"string": "Chasm"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_chasm_room"]}, "option": true}} +{"ref": "Has Room: Cloister", "better": 0, "matchers": [{"string": "Cloister"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_cloister"]}, "option": true}} +{"ref": "Has Room: Conduit of Lightning (Tier 3)", "better": 0, "matchers": [{"string": "Conduit of Lightning (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_lightning_3"]}, "option": true}} +{"ref": "Has Room: Corruption Chamber (Tier 1)", "better": 0, "matchers": [{"string": "Corruption Chamber (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_corruption_room_1"]}, "option": true}} +{"ref": "Has Room: Court of Sealed Death (Tier 3)", "better": 0, "matchers": [{"string": "Court of Sealed Death (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_strongbox_3"]}, "option": true}} +{"ref": "Has Room: Crucible of Flame (Tier 3)", "better": 0, "matchers": [{"string": "Crucible of Flame (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_fire_3"]}, "option": true}} +{"ref": "Has Room: Cultivar Chamber (Tier 2)", "better": 0, "matchers": [{"string": "Cultivar Chamber (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_poison_room_2"]}, "option": true}} +{"ref": "Has Room: Defense Research Lab (Tier 3)", "better": 0, "matchers": [{"string": "Defense Research Lab (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_trap_room_3"]}, "option": true}} +{"ref": "Has Room: Demolition Lab (Tier 2)", "better": 0, "matchers": [{"string": "Demolition Lab (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_explosives_room_2"]}, "option": true}} +{"ref": "Has Room: Department of Thaumaturgy (Tier 2)", "better": 0, "matchers": [{"string": "Department of Thaumaturgy (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_gem_room_2"]}, "option": true}} +{"ref": "Has Room: Doryani's Institute (Tier 3)", "better": 0, "matchers": [{"string": "Doryani's Institute (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_gem_room_3"]}, "option": true}} +{"ref": "Has Room: Engineering Department (Tier 2)", "better": 0, "matchers": [{"string": "Engineering Department (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_workshop_2"]}, "option": true}} +{"ref": "Has Room: Explosives Room (Tier 1)", "better": 0, "matchers": [{"string": "Explosives Room (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_explosives_room_1"]}, "option": true}} +{"ref": "Has Room: Factory (Tier 3)", "better": 0, "matchers": [{"string": "Factory (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_workshop_3"]}, "option": true}} +{"ref": "Has Room: Flame Workshop (Tier 1)", "better": 0, "matchers": [{"string": "Flame Workshop (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_fire_1"]}, "option": true}} +{"ref": "Has Room: Gemcutter's Workshop (Tier 1)", "better": 0, "matchers": [{"string": "Gemcutter's Workshop (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_gem_room_1"]}, "option": true}} +{"ref": "Has Room: Glittering Halls (Tier 3)", "better": 0, "matchers": [{"string": "Glittering Halls (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_trinket_room_3"]}, "option": true}} +{"ref": "Has Room: Guardhouse (Tier 1)", "better": 0, "matchers": [{"string": "Guardhouse (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_breeding_room_1"]}, "option": true}} +{"ref": "Has Room: Hall of Champions (Tier 3)", "better": 0, "matchers": [{"string": "Hall of Champions (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_weapon_room_3"]}, "option": true}} +{"ref": "Has Room: Hall of Heroes (Tier 2)", "better": 0, "matchers": [{"string": "Hall of Heroes (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_legion_2"]}, "option": true}} +{"ref": "Has Room: Hall of Legends (Tier 3)", "better": 0, "matchers": [{"string": "Hall of Legends (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_legion_3"]}, "option": true}} +{"ref": "Has Room: Hall of Locks (Tier 2)", "better": 0, "matchers": [{"string": "Hall of Locks (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_strongbox_2"]}, "option": true}} +{"ref": "Has Room: Hall of Lords (Tier 2)", "better": 0, "matchers": [{"string": "Hall of Lords (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_queens_chambers_2"]}, "option": true}} +{"ref": "Has Room: Hall of Mettle (Tier 1)", "better": 0, "matchers": [{"string": "Hall of Mettle (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_legion_1"]}, "option": true}} +{"ref": "Has Room: Hall of Offerings (Tier 2)", "better": 0, "matchers": [{"string": "Hall of Offerings (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_sacrifice_room_2"]}, "option": true}} +{"ref": "Has Room: Hall of War (Tier 3)", "better": 0, "matchers": [{"string": "Hall of War (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_breeding_room_3"]}, "option": true}} +{"ref": "Has Room: Halls", "better": 0, "matchers": [{"string": "Halls"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_halls"]}, "option": true}} +{"ref": "Has Room: Hatchery (Tier 1)", "better": 0, "matchers": [{"string": "Hatchery (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_minions_1"]}, "option": true}} +{"ref": "Has Room: House of the Others (Tier 3)", "better": 0, "matchers": [{"string": "House of the Others (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_breach_room_3"]}, "option": true}} +{"ref": "Has Room: Hurricane Engine (Tier 2)", "better": 0, "matchers": [{"string": "Hurricane Engine (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_storm_room_2"]}, "option": true}} +{"ref": "Has Room: Hybridisation Chamber (Tier 3)", "better": 0, "matchers": [{"string": "Hybridisation Chamber (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_minions_3"]}, "option": true}} +{"ref": "Has Room: Jeweller's Workshop (Tier 1)", "better": 0, "matchers": [{"string": "Jeweller's Workshop (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_trinket_room_1"]}, "option": true}} +{"ref": "Has Room: Jewellery Forge (Tier 2)", "better": 0, "matchers": [{"string": "Jewellery Forge (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_trinket_room_2"]}, "option": true}} +{"ref": "Has Room: Lightning Workshop (Tier 1)", "better": 0, "matchers": [{"string": "Lightning Workshop (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_lightning_1"]}, "option": true}} +{"ref": "Has Room: Locus of Corruption (Tier 3)", "better": 0, "matchers": [{"string": "Locus of Corruption (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_corruption_room_3"]}, "option": true}} +{"ref": "Has Room: Museum of Artefacts (Tier 3)", "better": 0, "matchers": [{"string": "Museum of Artefacts (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_chests_3"]}, "option": true}} +{"ref": "Has Room: Office of Cartography (Tier 2)", "better": 0, "matchers": [{"string": "Office of Cartography (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_cartography_room_2"]}, "option": true}} +{"ref": "Has Room: Omnitect Forge (Tier 2)", "better": 0, "matchers": [{"string": "Omnitect Forge (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_fire_2"]}, "option": true}} +{"ref": "Has Room: Omnitect Reactor Plant (Tier 2)", "better": 0, "matchers": [{"string": "Omnitect Reactor Plant (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_lightning_2"]}, "option": true}} +{"ref": "Has Room: Passageways", "better": 0, "matchers": [{"string": "Passageways"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_passageways"]}, "option": true}} +{"ref": "Has Room: Pits", "better": 0, "matchers": [{"string": "Pits"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_the_pits"]}, "option": true}} +{"ref": "Has Room: Poison Garden (Tier 1)", "better": 0, "matchers": [{"string": "Poison Garden (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_poison_room_1"]}, "option": true}} +{"ref": "Has Room: Pools of Restoration (Tier 1)", "better": 0, "matchers": [{"string": "Pools of Restoration (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_healing_room_1"]}, "option": true}} +{"ref": "Has Room: Royal Meeting Room (Tier 1)", "better": 0, "matchers": [{"string": "Royal Meeting Room (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_queens_chambers_1"]}, "option": true}} +{"ref": "Has Room: Sacrificial Chamber (Tier 1)", "better": 0, "matchers": [{"string": "Sacrificial Chamber (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_sacrifice_room_1"]}, "option": true}} +{"ref": "Has Room: Sadist's Den (Tier 3)", "better": 0, "matchers": [{"string": "Sadist's Den (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_torment_3"]}, "option": true}} +{"ref": "Has Room: Sanctum of Immortality (Tier 3)", "better": 0, "matchers": [{"string": "Sanctum of Immortality (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_healing_room_3"]}, "option": true}} +{"ref": "Has Room: Sanctum of Unity (Tier 2)", "better": 0, "matchers": [{"string": "Sanctum of Unity (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_empowering_room_2"]}, "option": true}} +{"ref": "Has Room: Sanctum of Vitality (Tier 2)", "better": 0, "matchers": [{"string": "Sanctum of Vitality (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_healing_room_2"]}, "option": true}} +{"ref": "Has Room: Shrine of Empowerment (Tier 1)", "better": 0, "matchers": [{"string": "Shrine of Empowerment (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_empowering_room_1"]}, "option": true}} +{"ref": "Has Room: Shrine of Unmaking (Tier 3)", "better": 0, "matchers": [{"string": "Shrine of Unmaking (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_explosives_room_3"]}, "option": true}} +{"ref": "Has Room: Sparring Room (Tier 1)", "better": 0, "matchers": [{"string": "Sparring Room (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_weapon_room_1"]}, "option": true}} +{"ref": "Has Room: Splinter Research Lab (Tier 1)", "better": 0, "matchers": [{"string": "Splinter Research Lab (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_breach_room_1"]}, "option": true}} +{"ref": "Has Room: Storage Room (Tier 1)", "better": 0, "matchers": [{"string": "Storage Room (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_chests_1"]}, "option": true}} +{"ref": "Has Room: Storm of Corruption (Tier 3)", "better": 0, "matchers": [{"string": "Storm of Corruption (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_storm_room_3"]}, "option": true}} +{"ref": "Has Room: Strongbox Chamber (Tier 1)", "better": 0, "matchers": [{"string": "Strongbox Chamber (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_strongbox_1"]}, "option": true}} +{"ref": "Has Room: Surveyor's Study (Tier 1)", "better": 0, "matchers": [{"string": "Surveyor's Study (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_cartography_room_1"]}, "option": true}} +{"ref": "Has Room: Tempest Generator (Tier 1)", "better": 0, "matchers": [{"string": "Tempest Generator (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_storm_room_1"]}, "option": true}} +{"ref": "Has Room: Temple Defense Workshop (Tier 2)", "better": 0, "matchers": [{"string": "Temple Defense Workshop (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_trap_room_2"]}, "option": true}} +{"ref": "Has Room: Temple Nexus (Tier 3)", "better": 0, "matchers": [{"string": "Temple Nexus (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_empowering_room_3"]}, "option": true}} +{"ref": "Has Room: Throne of Atziri (Tier 3)", "better": 0, "matchers": [{"string": "Throne of Atziri (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_queens_chambers_3"]}, "option": true}} +{"ref": "Has Room: Tombs", "better": 0, "matchers": [{"string": "Tombs"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_tombs"]}, "option": true}} +{"ref": "Has Room: Torment Cells (Tier 1)", "better": 0, "matchers": [{"string": "Torment Cells (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_torment_1"]}, "option": true}} +{"ref": "Has Room: Torture Cages (Tier 2)", "better": 0, "matchers": [{"string": "Torture Cages (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_torment_2"]}, "option": true}} +{"ref": "Has Room: Toxic Grove (Tier 3)", "better": 0, "matchers": [{"string": "Toxic Grove (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_poison_room_3"]}, "option": true}} +{"ref": "Has Room: Trap Workshop (Tier 1)", "better": 0, "matchers": [{"string": "Trap Workshop (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_trap_room_1"]}, "option": true}} +{"ref": "Has Room: Treasury (Tier 2)", "better": 0, "matchers": [{"string": "Treasury (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_currency_vault_2"]}, "option": true}} +{"ref": "Has Room: Tunnels", "better": 0, "matchers": [{"string": "Tunnels"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_tunnels"]}, "option": true}} +{"ref": "Has Room: Vault (Tier 1)", "better": 0, "matchers": [{"string": "Vault (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_currency_vault_1"]}, "option": true}} +{"ref": "Has Room: Warehouses (Tier 2)", "better": 0, "matchers": [{"string": "Warehouses (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_chests_2"]}, "option": true}} +{"ref": "Has Room: Wealth of the Vaal (Tier 3)", "better": 0, "matchers": [{"string": "Wealth of the Vaal (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_currency_vault_3"]}, "option": true}} +{"ref": "Has Room: Workshop (Tier 1)", "better": 0, "matchers": [{"string": "Workshop (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_workshop_1"]}, "option": true}} +{"ref": "Has Shaper Influence", "better": 1, "matchers": [{"string": "Has Shaper Influence "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_shaper_influence"]}}} +{"ref": "Has Warlord Influence", "better": 1, "matchers": [{"string": "Has Warlord Influence "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_warlord_influence"]}}} +{"ref": "Mirrored Tablet has # Islands", "better": 1, "matchers": [{"string": "Mirrored Tablet has # Islands "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_lake_number_of_islands"]}}} +{"ref": "More Currency: #%", "better": 1, "matchers": [{"string": "More Currency: #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_more_currency_drops"]}}} +{"ref": "More Divination Cards: #%", "better": 1, "matchers": [{"string": "More Divination Cards: #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_more_card_drops"]}}} +{"ref": "More Maps: #%", "better": 1, "matchers": [{"string": "More Maps: #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_more_map_drops"]}}} +{"ref": "More Scarabs: #%", "better": 1, "matchers": [{"string": "More Scarabs: #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_more_scarab_drops"]}}} +{"ref": "Quality (Attack Modifiers): #%", "better": 1, "matchers": [{"string": "Quality (Attack Modifiers): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_attack_quality"]}}} +{"ref": "Quality (Attribute Modifiers): #%", "better": 1, "matchers": [{"string": "Quality (Attribute Modifiers): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_attribute_quality"]}}} +{"ref": "Quality (Caster Modifiers): #%", "better": 1, "matchers": [{"string": "Quality (Caster Modifiers): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_caster_quality"]}}} +{"ref": "Quality (Critical Modifiers): #%", "better": 1, "matchers": [{"string": "Quality (Critical Modifiers): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_critical_quality"]}}} +{"ref": "Quality (Currency): #%", "better": 1, "matchers": [{"string": "Quality (Currency): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_quality_currency"]}}} +{"ref": "Quality (Defence Modifiers): #%", "better": 1, "matchers": [{"string": "Quality (Defence Modifiers): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_defense_quality"]}}} +{"ref": "Quality (Divination Cards): #%", "better": 1, "matchers": [{"string": "Quality (Divination Cards): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_quality_cards"]}}} +{"ref": "Quality (Elemental Damage Modifiers): #%", "better": 1, "matchers": [{"string": "Quality (Elemental Damage Modifiers): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_elemental_quality"]}}} +{"ref": "Quality (Life and Mana Modifiers): #%", "better": 1, "matchers": [{"string": "Quality (Life and Mana Modifiers): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_resource_quality"]}}} +{"ref": "Quality (Pack Size): #%", "better": 1, "matchers": [{"string": "Quality (Pack Size): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_quality_pack_size"]}}} +{"ref": "Quality (Physical and Chaos Damage Modifiers): #%", "better": 1, "matchers": [{"string": "Quality (Physical and Chaos Damage Modifiers): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_physical_chaos_quality"]}}} +{"ref": "Quality (Rarity): #%", "better": 1, "matchers": [{"string": "Quality (Rarity): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_quality_rarity"]}}} +{"ref": "Quality (Resistance Modifiers): #%", "better": 1, "matchers": [{"string": "Quality (Resistance Modifiers): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_resistance_quality"]}}} +{"ref": "Quality (Scarabs): #%", "better": 1, "matchers": [{"string": "Quality (Scarabs): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_quality_scarabs"]}}} +{"ref": "Quality (Speed Modifiers): #%", "better": 1, "matchers": [{"string": "Quality (Speed Modifiers): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_speed_quality"]}}} +{"ref": "Reflection of Abyss (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Abyss (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_38892"]}}} +{"ref": "Reflection of Ambush (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Ambush (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_48307"]}}} +{"ref": "Reflection of Angling (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Angling (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_40794"]}}} +{"ref": "Reflection of Azurite (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Azurite (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_40031"]}}} +{"ref": "Reflection of Bestiary (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Bestiary (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_55569"]}}} +{"ref": "Reflection of Breach (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Breach (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_62572"]}}} +{"ref": "Reflection of Brutality (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Brutality (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_29096"]}}} +{"ref": "Reflection of Camaraderie (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Camaraderie (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_35395"]}}} +{"ref": "Reflection of Catalysis (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Catalysis (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_57850"]}}} +{"ref": "Reflection of Chaos (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Chaos (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_50834"]}}} +{"ref": "Reflection of Conflict (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Conflict (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_1931"]}}} +{"ref": "Reflection of Darkness (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Darkness (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_34457"]}}} +{"ref": "Reflection of Delirium (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Delirium (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_22138"]}}} +{"ref": "Reflection of Delve (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Delve (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_18737"]}}} +{"ref": "Reflection of Demonfire (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Demonfire (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_28500"]}}} +{"ref": "Reflection of Domination (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Domination (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_63412"]}}} +{"ref": "Reflection of Entrapment (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Entrapment (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_44399"]}}} +{"ref": "Reflection of Essence (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Essence (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_49862"]}}} +{"ref": "Reflection of Experimentation (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Experimentation (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_55676"]}}} +{"ref": "Reflection of Flame (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Flame (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_42468"]}}} +{"ref": "Reflection of Fractured Dimensions (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Fractured Dimensions (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_49488"]}}} +{"ref": "Reflection of Frost (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Frost (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_38110"]}}} +{"ref": "Reflection of Guilt (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Guilt (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_25480"]}}} +{"ref": "Reflection of Imprisonment (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Imprisonment (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_10363"]}}} +{"ref": "Reflection of Kalandra (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Kalandra (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_36591"]}}} +{"ref": "Reflection of Legion (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Legion (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_403"]}}} +{"ref": "Reflection of Metamorph (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Metamorph (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_3699"]}}} +{"ref": "Reflection of Occultism (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Occultism (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_24451"]}}} +{"ref": "Reflection of Paradise (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Paradise (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_50846"]}}} +{"ref": "Reflection of Perverted Faith (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Perverted Faith (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_27678"]}}} +{"ref": "Reflection of Phaaryl (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Phaaryl (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_7674"]}}} +{"ref": "Reflection of Possession (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Possession (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_25049"]}}} +{"ref": "Reflection of Power (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Power (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_35950"]}}} +{"ref": "Reflection of Scourge (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Scourge (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_62360"]}}} +{"ref": "Reflection of Stasis (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Stasis (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_32968"]}}} +{"ref": "Reflection of Sulphite (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Sulphite (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_45086"]}}} +{"ref": "Reflection of the Black Scythe (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of the Black Scythe (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_9662"]}}} +{"ref": "Reflection of the Breachlord (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of the Breachlord (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_62935"]}}} +{"ref": "Reflection of the Broken Circle (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of the Broken Circle (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_43128"]}}} +{"ref": "Reflection of the Chalice (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of the Chalice (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_64561"]}}} +{"ref": "Reflection of the Chasm (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of the Chasm (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_57101"]}}} +{"ref": "Reflection of the Dream (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of the Dream (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_27117"]}}} +{"ref": "Reflection of the Harbingers (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of the Harbingers (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_37203"]}}} +{"ref": "Reflection of the Hunter (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of the Hunter (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_18816"]}}} +{"ref": "Reflection of the Monolith (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of the Monolith (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_34796"]}}} +{"ref": "Reflection of the Nightmare (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of the Nightmare (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_24232"]}}} +{"ref": "Reflection of the Storm (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of the Storm (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_2745"]}}} +{"ref": "Reflection of the Sun (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of the Sun (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_60034"]}}} +{"ref": "Reflection of the Trove (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of the Trove (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_46772"]}}} +{"ref": "Reflection of the Wilderness (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of the Wilderness (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_29224"]}}} +{"ref": "Reflection of Thralldom (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Thralldom (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_26813"]}}} +{"ref": "Reflection of Torment (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Torment (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_53950"]}}} +{"ref": "Reflection of Tyranny (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Tyranny (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_60981"]}}} diff --git a/renderer/public/.DS_Store/vendor/pseudo-stats/cherry-pick-pseudo.py b/renderer/public/.DS_Store/vendor/pseudo-stats/cherry-pick-pseudo.py new file mode 100644 index 000000000..f7a9e2df2 --- /dev/null +++ b/renderer/public/.DS_Store/vendor/pseudo-stats/cherry-pick-pseudo.py @@ -0,0 +1,81 @@ +import json +import os + + +def get_script_dir(): + """Returns the directory where the script is located.""" + return os.path.dirname(os.path.realpath(__file__)) + + +# List of localization codes +localizations = ["en", "ru", "ko", "cmn-Hant"] + +# File containing the pseudo keys to filter on +keys_file_path = ( + f"{get_script_dir()}/pseudo_keys.ndjson" # Path to your ndjson pseudo keys file +) + + +def load_pseudo_keys(): + pseudo_keys = set() + with open(keys_file_path, "r", encoding="utf-8") as keys_file: + for line in keys_file: + try: + json_object = json.loads(line) + # Assume the pseudo keys are stored under the 'trade.ids.pseudo' path + if ( + "trade" in json_object + and "ids" in json_object["trade"] + and "pseudo" in json_object["trade"]["ids"] + ): + for key in json_object["trade"]["ids"]["pseudo"]: + pseudo_keys.add(key) + except json.JSONDecodeError as e: + print(f"Error parsing JSON in keys file: {e}") + return pseudo_keys + + +def process_localization_file(input_file_path, output_file_path, pseudo_keys): + result_list = [] + + with open(input_file_path, "r", encoding="utf-8") as input_file: + for line in input_file: + try: + json_object = json.loads(line) + # Check if 'trade.ids.pseudo' exists + if has_nested_key(json_object, "trade.ids.pseudo") and any( + value in pseudo_keys + for value in json_object["trade"]["ids"]["pseudo"] + ): + result_list.append(json_object) + except json.JSONDecodeError as e: + print(f"Error parsing JSON: {e}") + + with open(output_file_path, "w", encoding="utf-8") as output_file: + for item in result_list: + output_file.write(json.dumps(item, ensure_ascii=False) + "\n") + + print( + f"Processing complete for {input_file_path}. Check {output_file_path} for results." + ) + + +def has_nested_key(obj, key_path): + keys = key_path.split(".") + for key in keys: + if isinstance(obj, dict) and key in obj: + obj = obj[key] + else: + return False + return True + + +if __name__ == "__main__": + pseudo_keys = load_pseudo_keys() + + for loc in localizations: + input_file_path = f"{get_script_dir()}/../../data/{loc}/stats.ndjson.old" # Path to the input file + output_file_path = ( + f"{get_script_dir()}/{loc}/pseudo_stats.ndjson" # Path to the output file + ) + process_localization_file(input_file_path, output_file_path, pseudo_keys) diff --git a/renderer/public/.DS_Store/vendor/pseudo-stats/cmn-Hant/all-pseudo.ndjson b/renderer/public/.DS_Store/vendor/pseudo-stats/cmn-Hant/all-pseudo.ndjson new file mode 100644 index 000000000..2b8c0f8e8 --- /dev/null +++ b/renderer/public/.DS_Store/vendor/pseudo-stats/cmn-Hant/all-pseudo.ndjson @@ -0,0 +1,292 @@ +{"ref": "# Crafted Modifiers", "better": 1, "matchers": [{"string": "# 工藝詞綴 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_crafted_mods"]}}} +{"ref": "# Crafted Prefix Modifiers", "better": 1, "matchers": [{"string": "# 工藝前綴 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_crafted_prefix_mods"]}}} +{"ref": "# Crafted Suffix Modifiers", "better": 1, "matchers": [{"string": "# 工藝後綴 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_crafted_suffix_mods"]}}} +{"ref": "# Empty Modifiers", "better": 1, "matchers": [{"string": "# 空詞綴 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_empty_affix_mods"]}}} +{"ref": "# Empty Prefix Modifiers", "better": 1, "matchers": [{"string": "# 空前綴 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_empty_prefix_mods"]}}} +{"ref": "# Empty Suffix Modifiers", "better": 1, "matchers": [{"string": "# 空後綴 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_empty_suffix_mods"]}}} +{"ref": "# Enchant Modifiers", "better": 1, "matchers": [{"string": "# 附魔詞綴 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_enchant_mods"]}}} +{"ref": "# Fractured Modifiers", "better": 1, "matchers": [{"string": "# 破裂詞綴 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_fractured_mods"]}}} +{"ref": "# Implicit Modifiers", "better": 1, "matchers": [{"string": "# 固定詞綴 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_implicit_mods"]}}} +{"ref": "# Life Regenerated per Second", "better": 1, "matchers": [{"string": "# 每秒生命回復 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_life_regen"]}}} +{"ref": "# Modifiers", "better": 1, "matchers": [{"string": "# 詞綴 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_affix_mods"]}}} +{"ref": "# Notable Passive Skills", "better": 1, "matchers": [{"string": "# 強力天賦 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_notable_passive_skills"]}}} +{"ref": "# Prefix Modifiers", "better": 1, "matchers": [{"string": "# 前綴 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_prefix_mods"]}}} +{"ref": "# Suffix Modifiers", "better": 1, "matchers": [{"string": "# 後綴 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_suffix_mods"]}}} +{"ref": "# total Elemental Resistances", "better": 1, "matchers": [{"string": "# 元素抗性 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_count_elemental_resistances"]}}} +{"ref": "# total Resistances", "better": 1, "matchers": [{"string": "# 總抗性 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_count_resistances"]}}} +{"ref": "#% Base Defence Percentile", "better": 1, "matchers": [{"string": "#% 基礎防禦百分比 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_base_defence_percentile"]}}} +{"ref": "#% chance for dropped Maps to convert to Atlas Memories", "better": 1, "matchers": [{"string": "掉落的地圖有 #% 機率轉化至輿圖記憶 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_memory_line"]}}} +{"ref": "#% chance for dropped Maps to convert to Conqueror Maps", "better": 1, "matchers": [{"string": "掉落的地圖有 #% 機率轉化至征服者地圖 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_conqueror_map"]}}} +{"ref": "#% chance for dropped Maps to convert to Elder Maps", "better": 1, "matchers": [{"string": "掉落的地圖有 #% 機率轉化至尊師地圖 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_elder_map"]}}} +{"ref": "#% chance for dropped Maps to convert to Maven Invitations", "better": 1, "matchers": [{"string": "掉落的地圖有 #% 機率轉化至釋界之邀 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_maven_invitation"]}}} +{"ref": "#% chance for dropped Maps to convert to Scarabs", "better": 1, "matchers": [{"string": "掉落的地圖有 #% 機率轉化至聖甲蟲 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_scarab"]}}} +{"ref": "#% chance for dropped Maps to convert to Shaper Maps", "better": 1, "matchers": [{"string": "掉落的地圖有 #% 機率轉化至塑界者地圖 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_shaper_map"]}}} +{"ref": "#% chance for dropped Maps to convert to Unique Maps", "better": 1, "matchers": [{"string": "掉落的地圖有 #% 機率轉化至傳奇地圖 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_unique_map"]}}} +{"ref": "#% increased Burning Damage", "better": 1, "matchers": [{"string": "增加 #% 燃燒傷害"}, {"string": "減少 #% 燃燒傷害", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_burning_damage"], "explicit": ["explicit.stat_1175385867"], "implicit": ["implicit.stat_1175385867"], "fractured": ["fractured.stat_1175385867"]}}} +{"ref": "#% increased Cold Damage", "better": 1, "matchers": [{"string": "增加 #% 冰冷傷害"}, {"string": "減少 #% 冰冷傷害", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_cold_damage"], "explicit": ["explicit.stat_3291658075"], "implicit": ["implicit.stat_3291658075"], "fractured": ["fractured.stat_3291658075"], "scourge": ["scourge.stat_3291658075"], "crafted": ["crafted.stat_3291658075"]}}} +{"ref": "#% increased Cold Damage with Attack Skills", "better": 1, "matchers": [{"string": "攻擊技能增加 #% 冰冷傷害"}, {"string": "攻擊技能減少 #% 冰冷傷害", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_cold_damage_with_attack_skills"], "explicit": ["explicit.stat_860668586"], "implicit": ["implicit.stat_860668586"]}}} +{"ref": "#% increased Cold Spell Damage", "better": 1, "matchers": [{"string": "增加 #% 冰冷法術傷害 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_cold_spell_damage"]}}} +{"ref": "#% increased Elemental Damage", "better": 1, "matchers": [{"string": "增加 #% 元素傷害"}, {"string": "有增加 #% 的元素傷害"}, {"string": "有減少 #% 的元素傷害", "negate": true}, {"string": "減少 #% 元素傷害", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_elemental_damage"], "explicit": ["explicit.stat_3141070085"], "implicit": ["implicit.stat_3141070085"], "fractured": ["fractured.stat_3141070085"], "scourge": ["scourge.stat_3141070085"]}}} +{"ref": "#% increased Elemental Damage with Attack Skills", "better": 1, "matchers": [{"string": "攻擊技能增加 #% 元素傷害"}, {"string": "攻擊技能減少 #% 元素傷害", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_elemental_damage_with_attack_skills"], "explicit": ["explicit.stat_387439868"], "implicit": ["implicit.stat_387439868"], "fractured": ["fractured.stat_387439868"], "scourge": ["scourge.stat_387439868"], "crafted": ["crafted.stat_387439868"]}}} +{"ref": "#% increased Fire Damage", "better": 1, "matchers": [{"string": "增加 #% 火焰傷害"}, {"string": "減少 #% 火焰傷害", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_fire_damage"], "explicit": ["explicit.stat_3962278098"], "implicit": ["implicit.stat_3962278098"], "fractured": ["fractured.stat_3962278098"], "scourge": ["scourge.stat_3962278098"], "crafted": ["crafted.stat_3962278098"]}}} +{"ref": "#% increased Fire Damage with Attack Skills", "better": 1, "matchers": [{"string": "攻擊技能增加 #% 火焰傷害"}, {"string": "攻擊技能減少 #% 火焰傷害", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_fire_damage_with_attack_skills"], "implicit": ["implicit.stat_2468413380"]}}} +{"ref": "#% increased Fire Spell Damage", "better": 1, "matchers": [{"string": "增加 #% 火焰法術傷害 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_fire_spell_damage"]}}} +{"ref": "#% increased Lightning Damage", "better": 1, "matchers": [{"string": "增加 #% 閃電傷害"}, {"string": "減少 #% 閃電傷害", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_lightning_damage"], "explicit": ["explicit.stat_2231156303"], "implicit": ["implicit.stat_2231156303"], "fractured": ["fractured.stat_2231156303"], "scourge": ["scourge.stat_2231156303"], "crafted": ["crafted.stat_2231156303"]}}} +{"ref": "#% increased Lightning Damage with Attack Skills", "better": 1, "matchers": [{"string": "攻擊技能增加 #% 閃電傷害"}, {"string": "攻擊技能減少 #% 閃電傷害", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_lightning_damage_with_attack_skills"], "explicit": ["explicit.stat_4208907162"], "implicit": ["implicit.stat_4208907162"]}}} +{"ref": "#% increased Lightning Spell Damage", "better": 1, "matchers": [{"string": "增加 #% 閃電法術傷害 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_lightning_spell_damage"]}}} +{"ref": "#% increased Mana Regeneration Rate", "better": 1, "matchers": [{"string": "增加 #% 魔力回復率"}, {"string": "減少 #% 魔力回復率", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_mana_regen"], "explicit": ["explicit.stat_789117908"], "implicit": ["implicit.stat_789117908"], "fractured": ["fractured.stat_789117908"], "scourge": ["scourge.stat_789117908"], "crafted": ["crafted.stat_789117908"]}}} +{"ref": "#% increased Movement Speed", "better": 1, "matchers": [{"string": "增加 #% 移動速度"}, {"string": "減少 #% 移動速度", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_movement_speed"], "explicit": ["explicit.stat_2250533757"], "implicit": ["implicit.stat_2250533757"], "fractured": ["fractured.stat_2250533757"], "enchant": ["enchant.stat_2250533757"], "scourge": ["scourge.stat_2250533757"], "crafted": ["crafted.stat_2250533757"]}}} +{"ref": "#% increased Rarity of Items found", "better": 1, "matchers": [{"string": "增加 #% 物品稀有度"}, {"string": "減少 #% 物品稀有度", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_rarity"], "explicit": ["explicit.stat_3917489142"], "implicit": ["implicit.stat_3917489142"], "fractured": ["fractured.stat_3917489142"], "scourge": ["scourge.stat_3917489142"], "crafted": ["crafted.stat_3917489142"]}}} +{"ref": "#% increased Spell Damage", "better": 1, "matchers": [{"string": "增加 #% 法術傷害"}, {"string": "減少 #% 法術傷害", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_spell_damage"], "explicit": ["explicit.stat_2974417149"], "implicit": ["implicit.stat_2974417149"], "fractured": ["fractured.stat_2974417149"], "enchant": ["enchant.stat_2974417149"], "scourge": ["scourge.stat_2974417149"], "crafted": ["crafted.stat_2974417149"]}}} +{"ref": "#% of Life Regenerated per Second", "better": 1, "matchers": [{"string": "每秒回復 #% 生命 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_percent_life_regen"]}}} +{"ref": "#% of Physical Attack Damage Leeched as Life", "dp": true, "better": 1, "matchers": [{"string": "#% 的物理攻擊傷害偷取生命"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_physical_attack_damage_leeched_as_life"], "explicit": ["explicit.stat_3593843976", "explicit.stat_55876295"], "implicit": ["implicit.stat_3593843976", "implicit.stat_55876295"], "fractured": ["fractured.stat_3593843976", "fractured.stat_55876295"], "scourge": ["scourge.stat_3593843976"], "crafted": ["crafted.stat_3593843976", "crafted.stat_55876295"]}}} +{"ref": "#% of Physical Attack Damage Leeched as Mana", "dp": true, "better": 1, "matchers": [{"string": "#% 物理攻擊傷害偷取魔力"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_physical_attack_damage_leeched_as_mana"], "explicit": ["explicit.stat_3237948413", "explicit.stat_669069897"], "implicit": ["implicit.stat_3237948413", "implicit.stat_669069897"], "fractured": ["fractured.stat_3237948413", "fractured.stat_669069897"], "scourge": ["scourge.stat_3237948413"], "crafted": ["crafted.stat_3237948413", "crafted.stat_669069897"]}}} +{"ref": "#% total increased maximum Energy Shield", "better": 1, "matchers": [{"string": "增加 #% 最大能量護盾 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_energy_shield"]}}} +{"ref": "#% total increased Physical Damage", "better": 1, "matchers": [{"string": "增加 #% 物裡傷害 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_physical_damage"]}}} +{"ref": "+# total maximum Energy Shield", "better": 1, "matchers": [{"string": "+# 最大能量護盾 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_energy_shield"]}}} +{"ref": "+# total maximum Life", "better": 1, "matchers": [{"string": "+# 最大生命 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_life"]}}} +{"ref": "+# total maximum Mana", "better": 1, "matchers": [{"string": "+# 最大魔力 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_mana"]}}} +{"ref": "+# total to all Attributes", "better": 1, "matchers": [{"string": "+# 全能力 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_all_attributes"]}}} +{"ref": "+# total to Dexterity", "better": 1, "matchers": [{"string": "+# 敏捷 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_dexterity"]}}} +{"ref": "+# total to Intelligence", "better": 1, "matchers": [{"string": "+# 智慧 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_intelligence"]}}} +{"ref": "+# total to Level of Socketed Aura Gems", "better": 1, "matchers": [{"string": "+# 插槽中光環寶石等級 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_aura_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Bow Gems", "better": 1, "matchers": [{"string": "+# 插槽中弓寶石等級 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_bow_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Chaos Gems", "better": 1, "matchers": [{"string": "+# 插槽中混沌寶石等級 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_chaos_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Cold Gems", "better": 1, "matchers": [{"string": "+# 插槽中冰冷寶石等級 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_cold_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Curse Gems", "better": 1, "matchers": [{"string": "+# 插槽中詛咒寶石等級 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_curse_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Dexterity Gems", "better": 1, "matchers": [{"string": "+# 插槽中敏捷寶石等級 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_dexterity_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Elemental Gems", "better": 1, "matchers": [{"string": "+# 插槽中元素寶石等級 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_elemental_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Fire Gems", "better": 1, "matchers": [{"string": "+# 插槽中火焰寶石等級 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_fire_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Gems", "better": 1, "matchers": [{"string": "+# 插槽中寶石等級 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Golem Gems", "better": 1, "matchers": [{"string": "+# 插槽中魔像寶石等級 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_golem_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Intelligence Gems", "better": 1, "matchers": [{"string": "+# 插槽中智慧寶石等級 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_intelligence_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Lightning Gems", "better": 1, "matchers": [{"string": "+# 插槽中閃電寶石等級 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_lightning_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Melee Gems", "better": 1, "matchers": [{"string": "+# 插槽中近戰寶石等級 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_melee_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Minion Gems", "better": 1, "matchers": [{"string": "+# 插槽中召喚物寶石等級 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_minion_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Movement Gems", "better": 1, "matchers": [{"string": "+# 插槽中位移寶石等級 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_movement_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Projectile Gems", "better": 1, "matchers": [{"string": "+# 插槽中投射物寶石等級 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_projectile_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Skill Gems", "better": 1, "matchers": [{"string": "+# 插槽中技能寶石等級 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_skill_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Spell Gems", "better": 1, "matchers": [{"string": "+# 插槽中法術寶石等級 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_spell_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Strength Gems", "better": 1, "matchers": [{"string": "+# 插槽中力量寶石等級 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_strength_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Support Gems", "better": 1, "matchers": [{"string": "+# 插槽中輔助寶石等級 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_support_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Vaal Gems", "better": 1, "matchers": [{"string": "+# 插槽中瓦爾寶石等級 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_vaal_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Warcry Gems", "better": 1, "matchers": [{"string": "+# 插槽中戰吼寶石等級 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_warcry_gem_levels"]}}} +{"ref": "+# total to Strength", "better": 1, "matchers": [{"string": "+# 力量 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_strength"]}}} +{"ref": "+#% Global Critical Strike Chance", "better": 1, "matchers": [{"string": "+#% 全域暴擊機率 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_global_critical_strike_chance"]}}} +{"ref": "+#% Global Critical Strike Multiplier", "better": 1, "matchers": [{"string": "+#% 全域暴擊加成 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_global_critical_strike_multiplier"]}}} +{"ref": "+#% total Attack Speed", "better": 1, "matchers": [{"string": "+#% 攻擊速度 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_attack_speed"]}}} +{"ref": "+#% total Cast Speed", "better": 1, "matchers": [{"string": "+#% 施放速度 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_cast_speed"]}}} +{"ref": "+#% total Critical Strike Chance for Spells", "better": 1, "matchers": [{"string": "+#% 法術暴擊機率 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_critical_strike_chance_for_spells"]}}} +{"ref": "+#% total Elemental Resistance", "better": 1, "matchers": [{"string": "+#% 元素抗性 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_elemental_resistance"]}}} +{"ref": "+#% total Resistance", "better": 1, "matchers": [{"string": "+#% 總抗性 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_resistance"]}}} +{"ref": "+#% total to all Elemental Resistances", "better": 1, "matchers": [{"string": "+#% 元素抗性 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_all_elemental_resistances"]}}} +{"ref": "+#% total to Chaos Resistance", "better": 1, "matchers": [{"string": "+#% 總混沌抗性 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_chaos_resistance"]}}} +{"ref": "+#% total to Cold Resistance", "better": 1, "matchers": [{"string": "+#% 冰冷抗性 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_cold_resistance"]}}} +{"ref": "+#% total to Fire Resistance", "better": 1, "matchers": [{"string": "+#% 火焰抗性 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_fire_resistance"]}}} +{"ref": "+#% total to Lightning Resistance", "better": 1, "matchers": [{"string": "+#% 閃電抗性 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_lightning_resistance"]}}} +{"ref": "Adds # to # Chaos Damage", "better": 1, "matchers": [{"string": "附加 # 至 # 混沌傷害"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_chaos_damage"], "explicit": ["explicit.stat_2223678961", "explicit.stat_3531280422"], "implicit": ["implicit.stat_2223678961", "implicit.stat_3531280422"], "fractured": ["fractured.stat_2223678961"], "enchant": ["enchant.stat_2223678961"], "scourge": ["scourge.stat_2223678961"]}}} +{"ref": "Adds # to # Chaos Damage to Attacks", "better": 1, "matchers": [{"string": "攻擊附加 # 至 # 混沌傷害"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_chaos_damage_to_attacks"], "explicit": ["explicit.stat_674553446"], "implicit": ["implicit.stat_674553446"], "fractured": ["fractured.stat_674553446"], "crafted": ["crafted.stat_674553446"]}}} +{"ref": "Adds # to # Chaos Damage to Spells", "better": 1, "matchers": [{"string": "法術附加 # 至 # 混沌傷害"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_chaos_damage_to_spells"], "explicit": ["explicit.stat_2300399854"], "implicit": ["implicit.stat_2300399854"], "fractured": ["fractured.stat_2300399854"]}}} +{"ref": "Adds # to # Cold Damage", "better": 1, "matchers": [{"string": "附加 # 至 # 冰冷傷害"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_cold_damage"], "explicit": ["explicit.stat_1037193709", "explicit.stat_2387423236"], "implicit": ["implicit.stat_1037193709", "implicit.stat_2387423236"], "fractured": ["fractured.stat_1037193709", "fractured.stat_2387423236"], "enchant": ["enchant.stat_1037193709"], "scourge": ["scourge.stat_1037193709"], "crafted": ["crafted.stat_1037193709", "crafted.stat_2387423236"]}}} +{"ref": "Adds # to # Cold Damage to Attacks", "better": 1, "matchers": [{"string": "攻擊附加 # 至 # 冰冷傷害"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_cold_damage_to_attacks"], "explicit": ["explicit.stat_4067062424"], "implicit": ["implicit.stat_4067062424"], "fractured": ["fractured.stat_4067062424"], "crafted": ["crafted.stat_4067062424"]}}} +{"ref": "Adds # to # Cold Damage to Spells", "better": 1, "matchers": [{"string": "法術附加 # 至 # 冰冷傷害"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_cold_damage_to_spells"], "explicit": ["explicit.stat_2469416729"], "implicit": ["implicit.stat_2469416729"], "fractured": ["fractured.stat_2469416729"], "scourge": ["scourge.stat_2469416729"], "crafted": ["crafted.stat_2469416729"]}}} +{"ref": "Adds # to # Damage", "better": 1, "matchers": [{"string": "附加 # 至 # 傷害 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_damage"]}}} +{"ref": "Adds # to # Damage to Attacks", "better": 1, "matchers": [{"string": "攻擊附加 # 至 # 傷害 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_damage_to_attacks"]}}} +{"ref": "Adds # to # Damage to Spells", "better": 1, "matchers": [{"string": "法術附加 # 至 # 傷害 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_damage_to_spells"]}}} +{"ref": "Adds # to # Elemental Damage", "better": 1, "matchers": [{"string": "附加 # 至 # 元素傷害 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_elemental_damage"]}}} +{"ref": "Adds # to # Elemental Damage to Attacks", "better": 1, "matchers": [{"string": "攻擊附加 # 至 # 元素傷害 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_elemental_damage_to_attacks"]}}} +{"ref": "Adds # to # Elemental Damage to Spells", "better": 1, "matchers": [{"string": "法術附加 # 至 # 元素傷害 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_elemental_damage_to_spells"]}}} +{"ref": "Adds # to # Fire Damage", "better": 1, "matchers": [{"string": "附加 # 至 # 火焰傷害"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_fire_damage"], "explicit": ["explicit.stat_321077055", "explicit.stat_709508406"], "implicit": ["implicit.stat_321077055", "implicit.stat_709508406"], "fractured": ["fractured.stat_321077055", "fractured.stat_709508406"], "enchant": ["enchant.stat_709508406"], "scourge": ["scourge.stat_709508406"], "crafted": ["crafted.stat_321077055", "crafted.stat_709508406"]}}} +{"ref": "Adds # to # Fire Damage to Attacks", "better": 1, "matchers": [{"string": "攻擊附加 # 至 # 火焰傷害"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_fire_damage_to_attacks"], "explicit": ["explicit.stat_1573130764"], "implicit": ["implicit.stat_1573130764"], "fractured": ["fractured.stat_1573130764"], "crafted": ["crafted.stat_1573130764"]}}} +{"ref": "Adds # to # Fire Damage to Spells", "better": 1, "matchers": [{"string": "法術附加 # 至 # 火焰傷害"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_fire_damage_to_spells"], "explicit": ["explicit.stat_1133016593"], "implicit": ["implicit.stat_1133016593"], "fractured": ["fractured.stat_1133016593"], "scourge": ["scourge.stat_1133016593"], "crafted": ["crafted.stat_1133016593"]}}} +{"ref": "Adds # to # Lightning Damage", "better": 1, "matchers": [{"string": "附加 # 至 # 閃電傷害"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_lightning_damage"], "explicit": ["explicit.stat_1334060246", "explicit.stat_3336890334"], "implicit": ["implicit.stat_1334060246", "implicit.stat_3336890334"], "fractured": ["fractured.stat_1334060246", "fractured.stat_3336890334"], "enchant": ["enchant.stat_3336890334"], "scourge": ["scourge.stat_3336890334"], "crafted": ["crafted.stat_1334060246", "crafted.stat_3336890334"]}}} +{"ref": "Adds # to # Lightning Damage to Attacks", "better": 1, "matchers": [{"string": "攻擊附加 # 至 # 閃電傷害"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_lightning_damage_to_attacks"], "explicit": ["explicit.stat_1754445556"], "implicit": ["implicit.stat_1754445556"], "fractured": ["fractured.stat_1754445556"], "crafted": ["crafted.stat_1754445556"]}}} +{"ref": "Adds # to # Lightning Damage to Spells", "better": 1, "matchers": [{"string": "法術附加 # 至 # 閃電傷害"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_lightning_damage_to_spells"], "explicit": ["explicit.stat_2831165374"], "implicit": ["implicit.stat_2831165374"], "fractured": ["fractured.stat_2831165374"], "scourge": ["scourge.stat_2831165374"], "crafted": ["crafted.stat_2831165374"]}}} +{"ref": "Adds # to # Physical Damage", "better": 1, "matchers": [{"string": "附加 # 至 # 物理傷害"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_physical_damage"], "explicit": ["explicit.stat_1940865751", "explicit.stat_960081730"], "implicit": ["implicit.stat_1940865751"], "fractured": ["fractured.stat_1940865751"], "scourge": ["scourge.stat_1940865751"], "crafted": ["crafted.stat_1940865751"]}}} +{"ref": "Adds # to # Physical Damage to Attacks", "better": 1, "matchers": [{"string": "攻擊附加 # 至 # 物理傷害"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_physical_damage_to_attacks"], "explicit": ["explicit.stat_3032590688"], "implicit": ["implicit.stat_3032590688"], "fractured": ["fractured.stat_3032590688"], "crafted": ["crafted.stat_3032590688"]}}} +{"ref": "Adds # to # Physical Damage to Spells", "better": 1, "matchers": [{"string": "法術附加 # 至 # 物理傷害"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_physical_damage_to_spells"], "explicit": ["explicit.stat_2435536961"], "implicit": ["implicit.stat_2435536961"], "fractured": ["fractured.stat_2435536961"], "scourge": ["scourge.stat_2435536961"]}}} +{"ref": "Has # Influences", "better": 1, "matchers": [{"string": "有 # 勢力 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_influence_count"]}}} +{"ref": "Has Crusader Influence", "better": 1, "matchers": [{"string": "有聖戰軍王勢力 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_crusader_influence"]}}} +{"ref": "Has Elder Influence", "better": 1, "matchers": [{"string": "有尊師勢力 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_elder_influence"]}}} +{"ref": "Has Hunter Influence", "better": 1, "matchers": [{"string": "有狩獵者勢力 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_hunter_influence"]}}} +{"ref": "Has Logbook Area: Battleground Graves", "better": 1, "matchers": [{"string": "有日誌區域:烽火墳墓 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_battleground_graves"]}}} +{"ref": "Has Logbook Area: Bluffs", "better": 1, "matchers": [{"string": "有日誌區域:陡岸峭壁 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_bluffs"]}}} +{"ref": "Has Logbook Area: Cemetery", "better": 1, "matchers": [{"string": "有日誌區域:公墓 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_cemetery"]}}} +{"ref": "Has Logbook Area: Desert Ruins", "better": 1, "matchers": [{"string": "有日誌區域:沙漠廢墟 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_desert_ruins"]}}} +{"ref": "Has Logbook Area: Dried Riverbed", "better": 1, "matchers": [{"string": "有日誌區域:乾枯河床 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_dried_riverbed"]}}} +{"ref": "Has Logbook Area: Forest Ruins", "better": 1, "matchers": [{"string": "有日誌區域:森林遺跡 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_forest_ruins"]}}} +{"ref": "Has Logbook Area: Karui Wargraves", "better": 1, "matchers": [{"string": "有日誌區域:卡魯戰爭墓地 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_karui_wargraves"]}}} +{"ref": "Has Logbook Area: Mountainside", "better": 1, "matchers": [{"string": "有日誌區域:迷黯山腰 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_mountainside"]}}} +{"ref": "Has Logbook Area: Rotting Temple", "better": 1, "matchers": [{"string": "有日誌區域:腐朽神殿 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_rotting_temple"]}}} +{"ref": "Has Logbook Area: Sarn Slums", "better": 1, "matchers": [{"string": "有日誌區域:薩恩貧民窟 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_sarn_slums"]}}} +{"ref": "Has Logbook Area: Scrublands", "better": 1, "matchers": [{"string": "有日誌區域:灌木叢 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_scrublands"]}}} +{"ref": "Has Logbook Area: Shipwreck Reef", "better": 1, "matchers": [{"string": "有日誌區域:沉船岩礁 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_shipwreck_reef"]}}} +{"ref": "Has Logbook Area: Utzaal Outskirts", "better": 1, "matchers": [{"string": "有日誌區域:奧札爾郊野 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_utzaal_outskirts"]}}} +{"ref": "Has Logbook Area: Vaal Temple", "better": 1, "matchers": [{"string": "有日誌區域:瓦爾神殿 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_vaal_temple"]}}} +{"ref": "Has Logbook Area: Volcanic Island", "better": 1, "matchers": [{"string": "有日誌區域:火山島 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_volcano"]}}} +{"ref": "Has Logbook Faction: Black Scythe Mercenaries", "better": 0, "matchers": [{"string": "黑鐮傭兵"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_faction_mercenaries"]}}} +{"ref": "Has Logbook Faction: Druids of the Broken Circle", "better": 0, "matchers": [{"string": "破碎環之德魯伊"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_faction_druids"]}}} +{"ref": "Has Logbook Faction: Knights of the Sun", "better": 0, "matchers": [{"string": "豔陽騎士"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_faction_knights"]}}} +{"ref": "Has Logbook Faction: Order of the Chalice", "better": 0, "matchers": [{"string": "聖杯之序"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_faction_order"]}}} +{"ref": "Has Redeemer Influence", "better": 1, "matchers": [{"string": "有救贖者勢力 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_redeemer_influence"]}}} +{"ref": "Has Room: Antechamber", "better": 0, "matchers": [{"string": "神殿前院"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_antechamber"]}, "option": true}} +{"ref": "Has Room: Apex of Ascension (Tier 3)", "better": 0, "matchers": [{"string": "祭祀之巔 (階級 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_sacrifice_room_3"]}, "option": true}} +{"ref": "Has Room: Apex of Atzoatl", "better": 0, "matchers": [{"string": "阿茲瓦特之巔"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_apex"]}, "option": true}} +{"ref": "Has Room: Arena of Valour (Tier 2)", "better": 0, "matchers": [{"string": "傳說對決 (階級 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_weapon_room_2"]}, "option": true}} +{"ref": "Has Room: Armourer's Workshop (Tier 1)", "better": 0, "matchers": [{"string": "裝甲磨坊 (階級 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_armour_room_1"]}, "option": true}} +{"ref": "Has Room: Armoury (Tier 2)", "better": 0, "matchers": [{"string": "軍械庫 (階級 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_armour_room_2"]}, "option": true}} +{"ref": "Has Room: Atlas of Worlds (Tier 3)", "better": 0, "matchers": [{"string": "異界輿圖 (階級 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_cartography_room_3"]}, "option": true}} +{"ref": "Has Room: Automaton Lab (Tier 2)", "better": 0, "matchers": [{"string": "自運研究所 (階級 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_minions_2"]}, "option": true}} +{"ref": "Has Room: Banquet Hall", "better": 0, "matchers": [{"string": "神殿宴會場"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_banquet_hall"]}, "option": true}} +{"ref": "Has Room: Barracks (Tier 2)", "better": 0, "matchers": [{"string": "軍隊憩所 (階級 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_breeding_room_2"]}, "option": true}} +{"ref": "Has Room: Breach Containment Chamber (Tier 2)", "better": 0, "matchers": [{"string": "裂痕異域室 (階級 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_breach_room_2"]}, "option": true}} +{"ref": "Has Room: Catalyst of Corruption (Tier 2)", "better": 0, "matchers": [{"string": "腐敗孳生室 (階級 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_corruption_room_2"]}, "option": true}} +{"ref": "Has Room: Cellar", "better": 0, "matchers": [{"string": "神殿地窖"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_cellar"]}, "option": true}} +{"ref": "Has Room: Chamber of Iron (Tier 3)", "better": 0, "matchers": [{"string": "鋼鍛之室 (階級 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_armour_room_3"]}, "option": true}} +{"ref": "Has Room: Chasm", "better": 0, "matchers": [{"string": "神殿裂口"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_chasm_room"]}, "option": true}} +{"ref": "Has Room: Cloister", "better": 0, "matchers": [{"string": "神殿廟"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_cloister"]}, "option": true}} +{"ref": "Has Room: Conduit of Lightning (Tier 3)", "better": 0, "matchers": [{"string": "雷霆導管 (階級 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_lightning_3"]}, "option": true}} +{"ref": "Has Room: Corruption Chamber (Tier 1)", "better": 0, "matchers": [{"string": "腐敗之室 (階級 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_corruption_room_1"]}, "option": true}} +{"ref": "Has Room: Court of Sealed Death (Tier 3)", "better": 0, "matchers": [{"string": "封亡院庭 (階級 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_strongbox_3"]}, "option": true}} +{"ref": "Has Room: Crucible of Flame (Tier 3)", "better": 0, "matchers": [{"string": "烈焰熔爐 (階級 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_fire_3"]}, "option": true}} +{"ref": "Has Room: Cultivar Chamber (Tier 2)", "better": 0, "matchers": [{"string": "培育秘室 (階級 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_poison_room_2"]}, "option": true}} +{"ref": "Has Room: Defense Research Lab (Tier 3)", "better": 0, "matchers": [{"string": "禦防研究所 (階級 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_trap_room_3"]}, "option": true}} +{"ref": "Has Room: Demolition Lab (Tier 2)", "better": 0, "matchers": [{"string": "拆除庫 (階級 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_explosives_room_2"]}, "option": true}} +{"ref": "Has Room: Department of Thaumaturgy (Tier 2)", "better": 0, "matchers": [{"string": "魔法部 (階級 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_gem_room_2"]}, "option": true}} +{"ref": "Has Room: Doryani's Institute (Tier 3)", "better": 0, "matchers": [{"string": "多里亞尼之院 (階級 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_gem_room_3"]}, "option": true}} +{"ref": "Has Room: Engineering Department (Tier 2)", "better": 0, "matchers": [{"string": "工程部 (階級 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_workshop_2"]}, "option": true}} +{"ref": "Has Room: Explosives Room (Tier 1)", "better": 0, "matchers": [{"string": "彈藥庫 (階級 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_explosives_room_1"]}, "option": true}} +{"ref": "Has Room: Factory (Tier 3)", "better": 0, "matchers": [{"string": "瓦爾工廠 (階級 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_workshop_3"]}, "option": true}} +{"ref": "Has Room: Flame Workshop (Tier 1)", "better": 0, "matchers": [{"string": "獄炎磨坊 (階級 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_fire_1"]}, "option": true}} +{"ref": "Has Room: Gemcutter's Workshop (Tier 1)", "better": 0, "matchers": [{"string": "刻石磨坊 (階級 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_gem_room_1"]}, "option": true}} +{"ref": "Has Room: Glittering Halls (Tier 3)", "better": 0, "matchers": [{"string": "閃耀聖殿 (階級 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_trinket_room_3"]}, "option": true}} +{"ref": "Has Room: Guardhouse (Tier 1)", "better": 0, "matchers": [{"string": "衛兵房 (階級 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_breeding_room_1"]}, "option": true}} +{"ref": "Has Room: Hall of Champions (Tier 3)", "better": 0, "matchers": [{"string": "冠軍聖殿 (階級 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_weapon_room_3"]}, "option": true}} +{"ref": "Has Room: Hall of Heroes (Tier 2)", "better": 0, "matchers": [{"string": "英雄之殿 (階級 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_legion_2"]}, "option": true}} +{"ref": "Has Room: Hall of Legends (Tier 3)", "better": 0, "matchers": [{"string": "神話之殿 (階級 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_legion_3"]}, "option": true}} +{"ref": "Has Room: Hall of Locks (Tier 2)", "better": 0, "matchers": [{"string": "千鎖殿堂 (階級 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_strongbox_2"]}, "option": true}} +{"ref": "Has Room: Hall of Lords (Tier 2)", "better": 0, "matchers": [{"string": "權貴殿堂 (階級 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_queens_chambers_2"]}, "option": true}} +{"ref": "Has Room: Hall of Mettle (Tier 1)", "better": 0, "matchers": [{"string": "勇氣之殿 (階級 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_legion_1"]}, "option": true}} +{"ref": "Has Room: Hall of Offerings (Tier 2)", "better": 0, "matchers": [{"string": "獻祭殿堂 (階級 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_sacrifice_room_2"]}, "option": true}} +{"ref": "Has Room: Hall of War (Tier 3)", "better": 0, "matchers": [{"string": "戰爭聖殿 (階級 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_breeding_room_3"]}, "option": true}} +{"ref": "Has Room: Halls", "better": 0, "matchers": [{"string": "神殿殿堂"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_halls"]}, "option": true}} +{"ref": "Has Room: Hatchery (Tier 1)", "better": 0, "matchers": [{"string": "孵化室 (階級 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_minions_1"]}, "option": true}} +{"ref": "Has Room: House of the Others (Tier 3)", "better": 0, "matchers": [{"string": "異者居所 (階級 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_breach_room_3"]}, "option": true}} +{"ref": "Has Room: Hurricane Engine (Tier 2)", "better": 0, "matchers": [{"string": "颶風引擎室 (階級 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_storm_room_2"]}, "option": true}} +{"ref": "Has Room: Hybridisation Chamber (Tier 3)", "better": 0, "matchers": [{"string": "異種之域 (階級 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_minions_3"]}, "option": true}} +{"ref": "Has Room: Jeweller's Workshop (Tier 1)", "better": 0, "matchers": [{"string": "寶匠磨坊 (階級 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_trinket_room_1"]}, "option": true}} +{"ref": "Has Room: Jewellery Forge (Tier 2)", "better": 0, "matchers": [{"string": "珠寶冶煉室 (階級 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_trinket_room_2"]}, "option": true}} +{"ref": "Has Room: Lightning Workshop (Tier 1)", "better": 0, "matchers": [{"string": "風雷磨坊 (階級 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_lightning_1"]}, "option": true}} +{"ref": "Has Room: Locus of Corruption (Tier 3)", "better": 0, "matchers": [{"string": "腐敗之地 (階級 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_corruption_room_3"]}, "option": true}} +{"ref": "Has Room: Museum of Artefacts (Tier 3)", "better": 0, "matchers": [{"string": "文物展館 (階級 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_chests_3"]}, "option": true}} +{"ref": "Has Room: Office of Cartography (Tier 2)", "better": 0, "matchers": [{"string": "製圖研製室 (階級 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_cartography_room_2"]}, "option": true}} +{"ref": "Has Room: Omnitect Forge (Tier 2)", "better": 0, "matchers": [{"string": "全能冶煉室 (階級 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_fire_2"]}, "option": true}} +{"ref": "Has Room: Omnitect Reactor Plant (Tier 2)", "better": 0, "matchers": [{"string": "全能反應廠 (階級 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_lightning_2"]}, "option": true}} +{"ref": "Has Room: Passageways", "better": 0, "matchers": [{"string": "神殿通道"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_passageways"]}, "option": true}} +{"ref": "Has Room: Pits", "better": 0, "matchers": [{"string": "神殿舊窖"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_the_pits"]}, "option": true}} +{"ref": "Has Room: Poison Garden (Tier 1)", "better": 0, "matchers": [{"string": "監獄花園 (階級 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_poison_room_1"]}, "option": true}} +{"ref": "Has Room: Pools of Restoration (Tier 1)", "better": 0, "matchers": [{"string": "治癒之泉 (階級 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_healing_room_1"]}, "option": true}} +{"ref": "Has Room: Royal Meeting Room (Tier 1)", "better": 0, "matchers": [{"string": "王室宴客室 (階級 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_queens_chambers_1"]}, "option": true}} +{"ref": "Has Room: Sacrificial Chamber (Tier 1)", "better": 0, "matchers": [{"string": "獻祭之室 (階級 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_sacrifice_room_1"]}, "option": true}} +{"ref": "Has Room: Sadist's Den (Tier 3)", "better": 0, "matchers": [{"string": "虐狂之巢 (階級 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_torment_3"]}, "option": true}} +{"ref": "Has Room: Sanctum of Immortality (Tier 3)", "better": 0, "matchers": [{"string": "不朽聖殿 (階級 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_healing_room_3"]}, "option": true}} +{"ref": "Has Room: Sanctum of Unity (Tier 2)", "better": 0, "matchers": [{"string": "統領聖殿 (階級 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_empowering_room_2"]}, "option": true}} +{"ref": "Has Room: Sanctum of Vitality (Tier 2)", "better": 0, "matchers": [{"string": "活力聖殿 (階級 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_healing_room_2"]}, "option": true}} +{"ref": "Has Room: Shrine of Empowerment (Tier 1)", "better": 0, "matchers": [{"string": "恩賜神殿 (階級 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_empowering_room_1"]}, "option": true}} +{"ref": "Has Room: Shrine of Unmaking (Tier 3)", "better": 0, "matchers": [{"string": "毀滅神殿 (階級 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_explosives_room_3"]}, "option": true}} +{"ref": "Has Room: Sparring Room (Tier 1)", "better": 0, "matchers": [{"string": "格鬥場 (階級 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_weapon_room_1"]}, "option": true}} +{"ref": "Has Room: Splinter Research Lab (Tier 1)", "better": 0, "matchers": [{"string": "裂界研究所 (階級 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_breach_room_1"]}, "option": true}} +{"ref": "Has Room: Storage Room (Tier 1)", "better": 0, "matchers": [{"string": "儲物室 (階級 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_chests_1"]}, "option": true}} +{"ref": "Has Room: Storm of Corruption (Tier 3)", "better": 0, "matchers": [{"string": "腐敗風暴 (階級 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_storm_room_3"]}, "option": true}} +{"ref": "Has Room: Strongbox Chamber (Tier 1)", "better": 0, "matchers": [{"string": "寶箱之殿 (階級 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_strongbox_1"]}, "option": true}} +{"ref": "Has Room: Surveyor's Study (Tier 1)", "better": 0, "matchers": [{"string": "研究書房 (階級 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_cartography_room_1"]}, "option": true}} +{"ref": "Has Room: Tempest Generator (Tier 1)", "better": 0, "matchers": [{"string": "暴雷發電室 (階級 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_storm_room_1"]}, "option": true}} +{"ref": "Has Room: Temple Defense Workshop (Tier 2)", "better": 0, "matchers": [{"string": "神殿禦防室 (階級 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_trap_room_2"]}, "option": true}} +{"ref": "Has Room: Temple Nexus (Tier 3)", "better": 0, "matchers": [{"string": "死神靈殿 (階級 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_empowering_room_3"]}, "option": true}} +{"ref": "Has Room: Throne of Atziri (Tier 3)", "better": 0, "matchers": [{"string": "阿茲里宴殿 (階級 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_queens_chambers_3"]}, "option": true}} +{"ref": "Has Room: Tombs", "better": 0, "matchers": [{"string": "神殿陵寢"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_tombs"]}, "option": true}} +{"ref": "Has Room: Torment Cells (Tier 1)", "better": 0, "matchers": [{"string": "磨難牢房 (階級 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_torment_1"]}, "option": true}} +{"ref": "Has Room: Torture Cages (Tier 2)", "better": 0, "matchers": [{"string": "拷刑大牢 (階級 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_torment_2"]}, "option": true}} +{"ref": "Has Room: Toxic Grove (Tier 3)", "better": 0, "matchers": [{"string": "劇毒果園 (階級 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_poison_room_3"]}, "option": true}} +{"ref": "Has Room: Trap Workshop (Tier 1)", "better": 0, "matchers": [{"string": "陷阱磨坊 (階級 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_trap_room_1"]}, "option": true}} +{"ref": "Has Room: Treasury (Tier 2)", "better": 0, "matchers": [{"string": "祕寶庫 (階級 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_currency_vault_2"]}, "option": true}} +{"ref": "Has Room: Tunnels", "better": 0, "matchers": [{"string": "神殿地道"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_tunnels"]}, "option": true}} +{"ref": "Has Room: Vault (Tier 1)", "better": 0, "matchers": [{"string": "藏寶庫 (階級 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_currency_vault_1"]}, "option": true}} +{"ref": "Has Room: Warehouses (Tier 2)", "better": 0, "matchers": [{"string": "倉庫間 (階級 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_chests_2"]}, "option": true}} +{"ref": "Has Room: Wealth of the Vaal (Tier 3)", "better": 0, "matchers": [{"string": "瓦爾聚寶庫 (階級 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_currency_vault_3"]}, "option": true}} +{"ref": "Has Room: Workshop (Tier 1)", "better": 0, "matchers": [{"string": "工作坊 (階級 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_workshop_1"]}, "option": true}} +{"ref": "Has Shaper Influence", "better": 1, "matchers": [{"string": "有塑者勢力 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_shaper_influence"]}}} +{"ref": "Has Warlord Influence", "better": 1, "matchers": [{"string": "有總督軍勢力 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_warlord_influence"]}}} +{"ref": "Mirrored Tablet has # Islands", "better": 1, "matchers": [{"string": "鏡像碑牌有 # 島嶼 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_lake_number_of_islands"]}}} +{"ref": "More Currency: #%", "better": 1, "matchers": [{"string": "更多通貨:#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_more_currency_drops"]}}} +{"ref": "More Divination Cards: #%", "better": 1, "matchers": [{"string": "額外命運卡:#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_more_card_drops"]}}} +{"ref": "More Maps: #%", "better": 1, "matchers": [{"string": "更多地圖:#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_more_map_drops"]}}} +{"ref": "More Scarabs: #%", "better": 1, "matchers": [{"string": "更多聖甲蟲:#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_more_scarab_drops"]}}} +{"ref": "Quality (Attack Modifiers): #%", "better": 1, "matchers": [{"string": "品質(攻擊詞綴):#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_attack_quality"]}}} +{"ref": "Quality (Attribute Modifiers): #%", "better": 1, "matchers": [{"string": "品質(能力值詞綴):#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_attribute_quality"]}}} +{"ref": "Quality (Caster Modifiers): #%", "better": 1, "matchers": [{"string": "品質(法術詞綴):#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_caster_quality"]}}} +{"ref": "Quality (Critical Modifiers): #%", "better": 1, "matchers": [{"string": "品質(暴擊詞綴):#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_critical_quality"]}}} +{"ref": "Quality (Currency): #%", "better": 1, "matchers": [{"string": "品質(通貨):#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_quality_currency"]}}} +{"ref": "Quality (Defence Modifiers): #%", "better": 1, "matchers": [{"string": "品質(防禦詞綴):#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_defense_quality"]}}} +{"ref": "Quality (Divination Cards): #%", "better": 1, "matchers": [{"string": "品質(命運卡):#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_quality_cards"]}}} +{"ref": "Quality (Elemental Damage Modifiers): #%", "better": 1, "matchers": [{"string": "品質(元素傷害詞綴):#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_elemental_quality"]}}} +{"ref": "Quality (Life and Mana Modifiers): #%", "better": 1, "matchers": [{"string": "品質(生命和魔力詞綴):#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_resource_quality"]}}} +{"ref": "Quality (Pack Size): #%", "better": 1, "matchers": [{"string": "品質(怪物群大小):#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_quality_pack_size"]}}} +{"ref": "Quality (Physical and Chaos Damage Modifiers): #%", "better": 1, "matchers": [{"string": "品質(物理和混沌傷害詞綴):#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_physical_chaos_quality"]}}} +{"ref": "Quality (Rarity): #%", "better": 1, "matchers": [{"string": "品質(稀有度):#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_quality_rarity"]}}} +{"ref": "Quality (Resistance Modifiers): #%", "better": 1, "matchers": [{"string": "品質(抗性詞綴):#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_resistance_quality"]}}} +{"ref": "Quality (Scarabs): #%", "better": 1, "matchers": [{"string": "品質(聖甲蟲):#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_quality_scarabs"]}}} +{"ref": "Quality (Speed Modifiers): #%", "better": 1, "matchers": [{"string": "品質(速度詞綴):#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_speed_quality"]}}} +{"ref": "Reflection of Abyss (Difficulty #)", "better": 1, "matchers": [{"string": "深淵映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_38892"]}}} +{"ref": "Reflection of Ambush (Difficulty #)", "better": 1, "matchers": [{"string": "伏擊映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_48307"]}}} +{"ref": "Reflection of Angling (Difficulty #)", "better": 1, "matchers": [{"string": "釣魚映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_40794"]}}} +{"ref": "Reflection of Azurite (Difficulty #)", "better": 1, "matchers": [{"string": "碧藍映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_40031"]}}} +{"ref": "Reflection of Bestiary (Difficulty #)", "better": 1, "matchers": [{"string": "獸獵映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_55569"]}}} +{"ref": "Reflection of Breach (Difficulty #)", "better": 1, "matchers": [{"string": "裂痕映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_62572"]}}} +{"ref": "Reflection of Brutality (Difficulty #)", "better": 1, "matchers": [{"string": "殘暴映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_29096"]}}} +{"ref": "Reflection of Camaraderie (Difficulty #)", "better": 1, "matchers": [{"string": "友誼映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_35395"]}}} +{"ref": "Reflection of Catalysis (Difficulty #)", "better": 1, "matchers": [{"string": "催化映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_57850"]}}} +{"ref": "Reflection of Chaos (Difficulty #)", "better": 1, "matchers": [{"string": "混沌映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_50834"]}}} +{"ref": "Reflection of Conflict (Difficulty #)", "better": 1, "matchers": [{"string": "衝突映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_1931"]}}} +{"ref": "Reflection of Darkness (Difficulty #)", "better": 1, "matchers": [{"string": "黑暗映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_34457"]}}} +{"ref": "Reflection of Delirium (Difficulty #)", "better": 1, "matchers": [{"string": "譫妄映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_22138"]}}} +{"ref": "Reflection of Delve (Difficulty #)", "better": 1, "matchers": [{"string": "掘獄映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_18737"]}}} +{"ref": "Reflection of Demonfire (Difficulty #)", "better": 1, "matchers": [{"string": "業火映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_28500"]}}} +{"ref": "Reflection of Domination (Difficulty #)", "better": 1, "matchers": [{"string": "支配映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_63412"]}}} +{"ref": "Reflection of Entrapment (Difficulty #)", "better": 1, "matchers": [{"string": "誘捕映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_44399"]}}} +{"ref": "Reflection of Essence (Difficulty #)", "better": 1, "matchers": [{"string": "精髓映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_49862"]}}} +{"ref": "Reflection of Experimentation (Difficulty #)", "better": 1, "matchers": [{"string": "實驗映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_55676"]}}} +{"ref": "Reflection of Flame (Difficulty #)", "better": 1, "matchers": [{"string": "烈焰映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_42468"]}}} +{"ref": "Reflection of Fractured Dimensions (Difficulty #)", "better": 1, "matchers": [{"string": "破裂次元映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_49488"]}}} +{"ref": "Reflection of Frost (Difficulty #)", "better": 1, "matchers": [{"string": "寒霜映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_38110"]}}} +{"ref": "Reflection of Guilt (Difficulty #)", "better": 1, "matchers": [{"string": "責難映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_25480"]}}} +{"ref": "Reflection of Imprisonment (Difficulty #)", "better": 1, "matchers": [{"string": "監禁映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_10363"]}}} +{"ref": "Reflection of Kalandra (Difficulty #)", "better": 1, "matchers": [{"string": "卡蘭德映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_36591"]}}} +{"ref": "Reflection of Legion (Difficulty #)", "better": 1, "matchers": [{"string": "戰亂映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_403"]}}} +{"ref": "Reflection of Metamorph (Difficulty #)", "better": 1, "matchers": [{"string": "鍊魔映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_3699"]}}} +{"ref": "Reflection of Occultism (Difficulty #)", "better": 1, "matchers": [{"string": "神秘映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_24451"]}}} +{"ref": "Reflection of Paradise (Difficulty #)", "better": 1, "matchers": [{"string": "天堂映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_50846"]}}} +{"ref": "Reflection of Perverted Faith (Difficulty #)", "better": 1, "matchers": [{"string": "怪其信仰映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_27678"]}}} +{"ref": "Reflection of Phaaryl (Difficulty #)", "better": 1, "matchers": [{"string": "法瑞爾映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_7674"]}}} +{"ref": "Reflection of Possession (Difficulty #)", "better": 1, "matchers": [{"string": "附身映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_25049"]}}} +{"ref": "Reflection of Power (Difficulty #)", "better": 1, "matchers": [{"string": "權力映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_35950"]}}} +{"ref": "Reflection of Scourge (Difficulty #)", "better": 1, "matchers": [{"string": "災魘映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_62360"]}}} +{"ref": "Reflection of Stasis (Difficulty #)", "better": 1, "matchers": [{"string": "靜止映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_32968"]}}} +{"ref": "Reflection of Sulphite (Difficulty #)", "better": 1, "matchers": [{"string": "硫酸映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_45086"]}}} +{"ref": "Reflection of the Black Scythe (Difficulty #)", "better": 1, "matchers": [{"string": "黑暗血鐮映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_9662"]}}} +{"ref": "Reflection of the Breachlord (Difficulty #)", "better": 1, "matchers": [{"string": "裂痕君主映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_62935"]}}} +{"ref": "Reflection of the Broken Circle (Difficulty #)", "better": 1, "matchers": [{"string": "破碎環映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_43128"]}}} +{"ref": "Reflection of the Chalice (Difficulty #)", "better": 1, "matchers": [{"string": "聖杯映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_64561"]}}} +{"ref": "Reflection of the Chasm (Difficulty #)", "better": 1, "matchers": [{"string": "裂口映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_57101"]}}} +{"ref": "Reflection of the Dream (Difficulty #)", "better": 1, "matchers": [{"string": "夢想映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_27117"]}}} +{"ref": "Reflection of the Harbingers (Difficulty #)", "better": 1, "matchers": [{"string": "神諭映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_37203"]}}} +{"ref": "Reflection of the Hunter (Difficulty #)", "better": 1, "matchers": [{"string": "獵人映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_18816"]}}} +{"ref": "Reflection of the Monolith (Difficulty #)", "better": 1, "matchers": [{"string": "石陣映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_34796"]}}} +{"ref": "Reflection of the Nightmare (Difficulty #)", "better": 1, "matchers": [{"string": "噩夢映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_24232"]}}} +{"ref": "Reflection of the Storm (Difficulty #)", "better": 1, "matchers": [{"string": "風暴映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_2745"]}}} +{"ref": "Reflection of the Sun (Difficulty #)", "better": 1, "matchers": [{"string": "豔陽映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_60034"]}}} +{"ref": "Reflection of the Trove (Difficulty #)", "better": 1, "matchers": [{"string": "寶庫映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_46772"]}}} +{"ref": "Reflection of the Wilderness (Difficulty #)", "better": 1, "matchers": [{"string": "荒野映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_29224"]}}} +{"ref": "Reflection of Thralldom (Difficulty #)", "better": 1, "matchers": [{"string": "奴役映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_26813"]}}} +{"ref": "Reflection of Torment (Difficulty #)", "better": 1, "matchers": [{"string": "磨難映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_53950"]}}} +{"ref": "Reflection of Tyranny (Difficulty #)", "better": 1, "matchers": [{"string": "暴政映像 (難度 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_60981"]}}} diff --git a/renderer/public/.DS_Store/vendor/pseudo-stats/cmn-Hant/pseudo_stats.ndjson b/renderer/public/.DS_Store/vendor/pseudo-stats/cmn-Hant/pseudo_stats.ndjson new file mode 100644 index 000000000..86a566995 --- /dev/null +++ b/renderer/public/.DS_Store/vendor/pseudo-stats/cmn-Hant/pseudo_stats.ndjson @@ -0,0 +1,32 @@ +{"ref": "# Life Regenerated per Second", "better": 1, "matchers": [{"string": "# 每秒生命回復 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_life_regen"]}}} +{"ref": "#% increased Burning Damage", "better": 1, "matchers": [{"string": "增加 #% 燃燒傷害"}, {"string": "減少 #% 燃燒傷害", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_burning_damage"], "explicit": ["explicit.stat_1175385867"], "implicit": ["implicit.stat_1175385867"], "fractured": ["fractured.stat_1175385867"]}}} +{"ref": "#% increased Cold Damage", "better": 1, "matchers": [{"string": "增加 #% 冰冷傷害"}, {"string": "減少 #% 冰冷傷害", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_cold_damage"], "explicit": ["explicit.stat_3291658075"], "implicit": ["implicit.stat_3291658075"], "fractured": ["fractured.stat_3291658075"], "scourge": ["scourge.stat_3291658075"], "crafted": ["crafted.stat_3291658075"]}}} +{"ref": "#% increased Cold Spell Damage", "better": 1, "matchers": [{"string": "增加 #% 冰冷法術傷害 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_cold_spell_damage"]}}} +{"ref": "#% increased Elemental Damage", "better": 1, "matchers": [{"string": "增加 #% 元素傷害"}, {"string": "有增加 #% 的元素傷害"}, {"string": "有減少 #% 的元素傷害", "negate": true}, {"string": "減少 #% 元素傷害", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_elemental_damage"], "explicit": ["explicit.stat_3141070085"], "implicit": ["implicit.stat_3141070085"], "fractured": ["fractured.stat_3141070085"], "scourge": ["scourge.stat_3141070085"]}}} +{"ref": "#% increased Elemental Damage with Attack Skills", "better": 1, "matchers": [{"string": "攻擊技能增加 #% 元素傷害"}, {"string": "攻擊技能減少 #% 元素傷害", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_elemental_damage_with_attack_skills"], "explicit": ["explicit.stat_387439868"], "implicit": ["implicit.stat_387439868"], "fractured": ["fractured.stat_387439868"], "scourge": ["scourge.stat_387439868"], "crafted": ["crafted.stat_387439868"]}}} +{"ref": "#% increased Fire Damage", "better": 1, "matchers": [{"string": "增加 #% 火焰傷害"}, {"string": "減少 #% 火焰傷害", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_fire_damage"], "explicit": ["explicit.stat_3962278098"], "implicit": ["implicit.stat_3962278098"], "fractured": ["fractured.stat_3962278098"], "scourge": ["scourge.stat_3962278098"], "crafted": ["crafted.stat_3962278098"]}}} +{"ref": "#% increased Fire Spell Damage", "better": 1, "matchers": [{"string": "增加 #% 火焰法術傷害 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_fire_spell_damage"]}}} +{"ref": "#% increased Lightning Damage", "better": 1, "matchers": [{"string": "增加 #% 閃電傷害"}, {"string": "減少 #% 閃電傷害", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_lightning_damage"], "explicit": ["explicit.stat_2231156303"], "implicit": ["implicit.stat_2231156303"], "fractured": ["fractured.stat_2231156303"], "scourge": ["scourge.stat_2231156303"], "crafted": ["crafted.stat_2231156303"]}}} +{"ref": "#% increased Lightning Spell Damage", "better": 1, "matchers": [{"string": "增加 #% 閃電法術傷害 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_lightning_spell_damage"]}}} +{"ref": "#% increased Mana Regeneration Rate", "better": 1, "matchers": [{"string": "增加 #% 魔力回復率"}, {"string": "減少 #% 魔力回復率", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_mana_regen"], "explicit": ["explicit.stat_789117908"], "implicit": ["implicit.stat_789117908"], "fractured": ["fractured.stat_789117908"], "scourge": ["scourge.stat_789117908"], "crafted": ["crafted.stat_789117908"]}}} +{"ref": "#% increased Movement Speed", "better": 1, "matchers": [{"string": "增加 #% 移動速度"}, {"string": "減少 #% 移動速度", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_movement_speed"], "explicit": ["explicit.stat_2250533757"], "implicit": ["implicit.stat_2250533757"], "fractured": ["fractured.stat_2250533757"], "enchant": ["enchant.stat_2250533757"], "scourge": ["scourge.stat_2250533757"], "crafted": ["crafted.stat_2250533757"]}}} +{"ref": "#% increased Spell Damage", "better": 1, "matchers": [{"string": "增加 #% 法術傷害"}, {"string": "減少 #% 法術傷害", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_spell_damage"], "explicit": ["explicit.stat_2974417149"], "implicit": ["implicit.stat_2974417149"], "fractured": ["fractured.stat_2974417149"], "enchant": ["enchant.stat_2974417149"], "scourge": ["scourge.stat_2974417149"], "crafted": ["crafted.stat_2974417149"]}}} +{"ref": "#% of Physical Attack Damage Leeched as Life", "dp": true, "better": 1, "matchers": [{"string": "#% 的物理攻擊傷害偷取生命"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_physical_attack_damage_leeched_as_life"], "explicit": ["explicit.stat_3593843976", "explicit.stat_55876295"], "implicit": ["implicit.stat_3593843976", "implicit.stat_55876295"], "fractured": ["fractured.stat_3593843976", "fractured.stat_55876295"], "scourge": ["scourge.stat_3593843976"], "crafted": ["crafted.stat_3593843976", "crafted.stat_55876295"]}}} +{"ref": "#% of Physical Attack Damage Leeched as Mana", "dp": true, "better": 1, "matchers": [{"string": "#% 物理攻擊傷害偷取魔力"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_physical_attack_damage_leeched_as_mana"], "explicit": ["explicit.stat_3237948413", "explicit.stat_669069897"], "implicit": ["implicit.stat_3237948413", "implicit.stat_669069897"], "fractured": ["fractured.stat_3237948413", "fractured.stat_669069897"], "scourge": ["scourge.stat_3237948413"], "crafted": ["crafted.stat_3237948413", "crafted.stat_669069897"]}}} +{"ref": "#% total increased Physical Damage", "better": 1, "matchers": [{"string": "增加 #% 物裡傷害 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_physical_damage"]}}} +{"ref": "+# total maximum Energy Shield", "better": 1, "matchers": [{"string": "+# 最大能量護盾 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_energy_shield"]}}} +{"ref": "+# total maximum Life", "better": 1, "matchers": [{"string": "+# 最大生命 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_life"]}}} +{"ref": "+# total maximum Mana", "better": 1, "matchers": [{"string": "+# 最大魔力 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_mana"]}}} +{"ref": "+# total to all Attributes", "better": 1, "matchers": [{"string": "+# 全能力 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_all_attributes"]}}} +{"ref": "+# total to Dexterity", "better": 1, "matchers": [{"string": "+# 敏捷 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_dexterity"]}}} +{"ref": "+# total to Intelligence", "better": 1, "matchers": [{"string": "+# 智慧 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_intelligence"]}}} +{"ref": "+# total to Strength", "better": 1, "matchers": [{"string": "+# 力量 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_strength"]}}} +{"ref": "+#% Global Critical Strike Chance", "better": 1, "matchers": [{"string": "+#% 全域暴擊機率 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_global_critical_strike_chance"]}}} +{"ref": "+#% Global Critical Strike Multiplier", "better": 1, "matchers": [{"string": "+#% 全域暴擊加成 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_global_critical_strike_multiplier"]}}} +{"ref": "+#% total Attack Speed", "better": 1, "matchers": [{"string": "+#% 攻擊速度 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_attack_speed"]}}} +{"ref": "+#% total Cast Speed", "better": 1, "matchers": [{"string": "+#% 施放速度 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_cast_speed"]}}} +{"ref": "+#% total Elemental Resistance", "better": 1, "matchers": [{"string": "+#% 元素抗性 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_elemental_resistance"]}}} +{"ref": "+#% total to Chaos Resistance", "better": 1, "matchers": [{"string": "+#% 總混沌抗性 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_chaos_resistance"]}}} +{"ref": "+#% total to Cold Resistance", "better": 1, "matchers": [{"string": "+#% 冰冷抗性 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_cold_resistance"]}}} +{"ref": "+#% total to Fire Resistance", "better": 1, "matchers": [{"string": "+#% 火焰抗性 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_fire_resistance"]}}} +{"ref": "+#% total to Lightning Resistance", "better": 1, "matchers": [{"string": "+#% 閃電抗性 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_lightning_resistance"]}}} diff --git a/renderer/public/.DS_Store/vendor/pseudo-stats/en/all-pseudo.ndjson b/renderer/public/.DS_Store/vendor/pseudo-stats/en/all-pseudo.ndjson new file mode 100644 index 000000000..3fb4a3e9b --- /dev/null +++ b/renderer/public/.DS_Store/vendor/pseudo-stats/en/all-pseudo.ndjson @@ -0,0 +1,292 @@ +{"ref": "# Crafted Modifiers", "better": 1, "matchers": [{"string": "# Crafted Modifiers "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_crafted_mods"]}}} +{"ref": "# Crafted Prefix Modifiers", "better": 1, "matchers": [{"string": "# Crafted Prefix Modifiers "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_crafted_prefix_mods"]}}} +{"ref": "# Crafted Suffix Modifiers", "better": 1, "matchers": [{"string": "# Crafted Suffix Modifiers "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_crafted_suffix_mods"]}}} +{"ref": "# Empty Modifiers", "better": 1, "matchers": [{"string": "# Empty Modifiers "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_empty_affix_mods"]}}} +{"ref": "# Empty Prefix Modifiers", "better": 1, "matchers": [{"string": "# Empty Prefix Modifiers "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_empty_prefix_mods"]}}} +{"ref": "# Empty Suffix Modifiers", "better": 1, "matchers": [{"string": "# Empty Suffix Modifiers "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_empty_suffix_mods"]}}} +{"ref": "# Enchant Modifiers", "better": 1, "matchers": [{"string": "# Enchant Modifiers "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_enchant_mods"]}}} +{"ref": "# Fractured Modifiers", "better": 1, "matchers": [{"string": "# Fractured Modifiers "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_fractured_mods"]}}} +{"ref": "# Implicit Modifiers", "better": 1, "matchers": [{"string": "# Implicit Modifiers "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_implicit_mods"]}}} +{"ref": "# Life Regenerated per Second", "better": 1, "matchers": [{"string": "# Life Regenerated per Second "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_life_regen"]}}} +{"ref": "# Modifiers", "better": 1, "matchers": [{"string": "# Modifiers "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_affix_mods"]}}} +{"ref": "# Notable Passive Skills", "better": 1, "matchers": [{"string": "# Notable Passive Skills "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_notable_passive_skills"]}}} +{"ref": "# Prefix Modifiers", "better": 1, "matchers": [{"string": "# Prefix Modifiers "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_prefix_mods"]}}} +{"ref": "# Suffix Modifiers", "better": 1, "matchers": [{"string": "# Suffix Modifiers "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_suffix_mods"]}}} +{"ref": "# total Elemental Resistances", "better": 1, "matchers": [{"string": "# total Elemental Resistances "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_count_elemental_resistances"]}}} +{"ref": "# total Resistances", "better": 1, "matchers": [{"string": "# total Resistances "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_count_resistances"]}}} +{"ref": "#% Base Defence Percentile", "better": 1, "matchers": [{"string": "#% Base Defence Percentile "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_base_defence_percentile"]}}} +{"ref": "#% chance for dropped Maps to convert to Atlas Memories", "better": 1, "matchers": [{"string": "#% chance for dropped Maps to convert to Atlas Memories "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_memory_line"]}}} +{"ref": "#% chance for dropped Maps to convert to Conqueror Maps", "better": 1, "matchers": [{"string": "#% chance for dropped Maps to convert to Conqueror Maps "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_conqueror_map"]}}} +{"ref": "#% chance for dropped Maps to convert to Elder Maps", "better": 1, "matchers": [{"string": "#% chance for dropped Maps to convert to Elder Maps "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_elder_map"]}}} +{"ref": "#% chance for dropped Maps to convert to Maven Invitations", "better": 1, "matchers": [{"string": "#% chance for dropped Maps to convert to Maven Invitations "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_maven_invitation"]}}} +{"ref": "#% chance for dropped Maps to convert to Scarabs", "better": 1, "matchers": [{"string": "#% chance for dropped Maps to convert to Scarabs "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_scarab"]}}} +{"ref": "#% chance for dropped Maps to convert to Shaper Maps", "better": 1, "matchers": [{"string": "#% chance for dropped Maps to convert to Shaper Maps "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_shaper_map"]}}} +{"ref": "#% chance for dropped Maps to convert to Unique Maps", "better": 1, "matchers": [{"string": "#% chance for dropped Maps to convert to Unique Maps "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_unique_map"]}}} +{"ref": "#% increased Burning Damage", "better": 1, "matchers": [{"string": "#% increased Burning Damage"}, {"string": "#% reduced Burning Damage", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_burning_damage"], "explicit": ["explicit.stat_1175385867"], "implicit": ["implicit.stat_1175385867"], "fractured": ["fractured.stat_1175385867"]}}} +{"ref": "#% increased Cold Damage", "better": 1, "matchers": [{"string": "#% increased Cold Damage"}, {"string": "#% reduced Cold Damage", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_cold_damage"], "explicit": ["explicit.stat_3291658075"], "implicit": ["implicit.stat_3291658075"], "fractured": ["fractured.stat_3291658075"], "scourge": ["scourge.stat_3291658075"], "crafted": ["crafted.stat_3291658075"]}}} +{"ref": "#% increased Cold Damage with Attack Skills", "better": 1, "matchers": [{"string": "#% increased Cold Damage with Attack Skills"}, {"string": "#% reduced Cold Damage with Attack Skills", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_cold_damage_with_attack_skills"], "explicit": ["explicit.stat_860668586"], "implicit": ["implicit.stat_860668586"]}}} +{"ref": "#% increased Cold Spell Damage", "better": 1, "matchers": [{"string": "#% increased Cold Spell Damage "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_cold_spell_damage"]}}} +{"ref": "#% increased Elemental Damage", "better": 1, "matchers": [{"string": "#% increased Elemental Damage"}, {"string": "Has #% increased Elemental Damage"}, {"string": "#% reduced Elemental Damage", "negate": true}, {"string": "Has #% reduced Elemental Damage", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_elemental_damage"], "explicit": ["explicit.stat_3141070085"], "implicit": ["implicit.stat_3141070085"], "fractured": ["fractured.stat_3141070085"], "enchant": ["enchant.stat_692420067"], "scourge": ["scourge.stat_3141070085"]}}} +{"ref": "#% increased Elemental Damage with Attack Skills", "better": 1, "matchers": [{"string": "#% increased Elemental Damage with Attack Skills"}, {"string": "#% reduced Elemental Damage with Attack Skills", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_elemental_damage_with_attack_skills"], "explicit": ["explicit.stat_387439868"], "implicit": ["implicit.stat_387439868"], "fractured": ["fractured.stat_387439868"], "scourge": ["scourge.stat_387439868"], "crafted": ["crafted.stat_387439868"]}}} +{"ref": "#% increased Fire Damage", "better": 1, "matchers": [{"string": "#% increased Fire Damage"}, {"string": "#% reduced Fire Damage", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_fire_damage"], "explicit": ["explicit.stat_3962278098"], "implicit": ["implicit.stat_3962278098"], "fractured": ["fractured.stat_3962278098"], "scourge": ["scourge.stat_3962278098"], "crafted": ["crafted.stat_3962278098"]}}} +{"ref": "#% increased Fire Damage with Attack Skills", "better": 1, "matchers": [{"string": "#% increased Fire Damage with Attack Skills"}, {"string": "#% reduced Fire Damage with Attack Skills", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_fire_damage_with_attack_skills"], "implicit": ["implicit.stat_2468413380"]}}} +{"ref": "#% increased Fire Spell Damage", "better": 1, "matchers": [{"string": "#% increased Fire Spell Damage "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_fire_spell_damage"]}}} +{"ref": "#% increased Lightning Damage", "better": 1, "matchers": [{"string": "#% increased Lightning Damage"}, {"string": "#% reduced Lightning Damage", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_lightning_damage"], "explicit": ["explicit.stat_2231156303"], "implicit": ["implicit.stat_2231156303"], "fractured": ["fractured.stat_2231156303"], "scourge": ["scourge.stat_2231156303"], "crafted": ["crafted.stat_2231156303"]}}} +{"ref": "#% increased Lightning Damage with Attack Skills", "better": 1, "matchers": [{"string": "#% increased Lightning Damage with Attack Skills"}, {"string": "#% reduced Lightning Damage with Attack Skills", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_lightning_damage_with_attack_skills"], "explicit": ["explicit.stat_4208907162"], "implicit": ["implicit.stat_4208907162"]}}} +{"ref": "#% increased Lightning Spell Damage", "better": 1, "matchers": [{"string": "#% increased Lightning Spell Damage "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_lightning_spell_damage"]}}} +{"ref": "#% increased Mana Regeneration Rate", "better": 1, "matchers": [{"string": "#% increased Mana Regeneration Rate"}, {"string": "#% reduced Mana Regeneration Rate", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_mana_regen"], "explicit": ["explicit.stat_789117908"], "implicit": ["implicit.stat_789117908"], "fractured": ["fractured.stat_789117908"], "scourge": ["scourge.stat_789117908"], "crafted": ["crafted.stat_789117908"]}}} +{"ref": "#% increased Movement Speed", "better": 1, "matchers": [{"string": "#% increased Movement Speed"}, {"string": "#% reduced Movement Speed", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_movement_speed"], "explicit": ["explicit.stat_2250533757"], "implicit": ["implicit.stat_2250533757"], "fractured": ["fractured.stat_2250533757"], "enchant": ["enchant.stat_2250533757"], "scourge": ["scourge.stat_2250533757"], "crafted": ["crafted.stat_2250533757"]}}} +{"ref": "#% increased Rarity of Items found", "better": 1, "matchers": [{"string": "#% increased Rarity of Items found"}, {"string": "#% reduced Rarity of Items found", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_rarity"], "explicit": ["explicit.stat_3917489142"], "implicit": ["implicit.stat_3917489142"], "fractured": ["fractured.stat_3917489142"], "scourge": ["scourge.stat_3917489142"], "crafted": ["crafted.stat_3917489142"]}}} +{"ref": "#% increased Spell Damage", "better": 1, "matchers": [{"string": "#% increased Spell Damage"}, {"string": "#% reduced Spell Damage", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_spell_damage"], "explicit": ["explicit.stat_2974417149"], "implicit": ["implicit.stat_2974417149"], "fractured": ["fractured.stat_2974417149"], "enchant": ["enchant.stat_2974417149"], "scourge": ["scourge.stat_2974417149"], "crafted": ["crafted.stat_2974417149"]}}} +{"ref": "#% of Life Regenerated per Second", "better": 1, "matchers": [{"string": "#% of Life Regenerated per Second "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_percent_life_regen"]}}} +{"ref": "#% of Physical Attack Damage Leeched as Life", "dp": true, "better": 1, "matchers": [{"string": "#% of Physical Attack Damage Leeched as Life"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_physical_attack_damage_leeched_as_life"], "explicit": ["explicit.stat_3593843976", "explicit.stat_55876295"], "implicit": ["implicit.stat_3593843976", "implicit.stat_55876295"], "fractured": ["fractured.stat_3593843976", "fractured.stat_55876295"], "scourge": ["scourge.stat_3593843976"], "crafted": ["crafted.stat_3593843976", "crafted.stat_55876295"]}}} +{"ref": "#% of Physical Attack Damage Leeched as Mana", "dp": true, "better": 1, "matchers": [{"string": "#% of Physical Attack Damage Leeched as Mana"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_physical_attack_damage_leeched_as_mana"], "explicit": ["explicit.stat_3237948413", "explicit.stat_669069897"], "implicit": ["implicit.stat_3237948413", "implicit.stat_669069897"], "fractured": ["fractured.stat_3237948413", "fractured.stat_669069897"], "enchant": ["enchant.stat_669069897"], "scourge": ["scourge.stat_3237948413"], "crafted": ["crafted.stat_3237948413", "crafted.stat_669069897"]}}} +{"ref": "#% total increased maximum Energy Shield", "better": 1, "matchers": [{"string": "#% total increased maximum Energy Shield "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_energy_shield"]}}} +{"ref": "#% total increased Physical Damage", "better": 1, "matchers": [{"string": "#% total increased Physical Damage "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_physical_damage"]}}} +{"ref": "+# total maximum Energy Shield", "better": 1, "matchers": [{"string": "+# total maximum Energy Shield "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_energy_shield"]}}} +{"ref": "+# total maximum Life", "better": 1, "matchers": [{"string": "+# total maximum Life "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_life"]}}} +{"ref": "+# total maximum Mana", "better": 1, "matchers": [{"string": "+# total maximum Mana "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_mana"]}}} +{"ref": "+# total to all Attributes", "better": 1, "matchers": [{"string": "+# total to all Attributes "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_all_attributes"]}}} +{"ref": "+# total to Dexterity", "better": 1, "matchers": [{"string": "+# total to Dexterity "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_dexterity"]}}} +{"ref": "+# total to Intelligence", "better": 1, "matchers": [{"string": "+# total to Intelligence "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_intelligence"]}}} +{"ref": "+# total to Level of Socketed Aura Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Aura Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_aura_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Bow Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Bow Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_bow_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Chaos Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Chaos Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_chaos_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Cold Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Cold Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_cold_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Curse Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Curse Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_curse_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Dexterity Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Dexterity Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_dexterity_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Elemental Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Elemental Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_elemental_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Fire Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Fire Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_fire_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Golem Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Golem Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_golem_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Intelligence Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Intelligence Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_intelligence_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Lightning Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Lightning Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_lightning_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Melee Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Melee Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_melee_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Minion Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Minion Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_minion_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Movement Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Movement Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_movement_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Projectile Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Projectile Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_projectile_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Skill Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Skill Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_skill_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Spell Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Spell Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_spell_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Strength Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Strength Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_strength_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Support Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Support Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_support_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Vaal Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Vaal Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_vaal_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Warcry Gems", "better": 1, "matchers": [{"string": "+# total to Level of Socketed Warcry Gems "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_warcry_gem_levels"]}}} +{"ref": "+# total to Strength", "better": 1, "matchers": [{"string": "+# total to Strength "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_strength"]}}} +{"ref": "+#% Global Critical Strike Chance", "better": 1, "matchers": [{"string": "+#% Global Critical Strike Chance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_global_critical_strike_chance"]}}} +{"ref": "+#% Global Critical Strike Multiplier", "better": 1, "matchers": [{"string": "+#% Global Critical Strike Multiplier "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_global_critical_strike_multiplier"]}}} +{"ref": "+#% total Attack Speed", "better": 1, "matchers": [{"string": "+#% total Attack Speed "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_attack_speed"]}}} +{"ref": "+#% total Cast Speed", "better": 1, "matchers": [{"string": "+#% total Cast Speed "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_cast_speed"]}}} +{"ref": "+#% total Critical Strike Chance for Spells", "better": 1, "matchers": [{"string": "+#% total Critical Strike Chance for Spells "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_critical_strike_chance_for_spells"]}}} +{"ref": "+#% total Elemental Resistance", "better": 1, "matchers": [{"string": "+#% total Elemental Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_elemental_resistance"]}}} +{"ref": "+#% total Resistance", "better": 1, "matchers": [{"string": "+#% total Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_resistance"]}}} +{"ref": "+#% total to all Elemental Resistances", "better": 1, "matchers": [{"string": "+#% total to all Elemental Resistances "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_all_elemental_resistances"]}}} +{"ref": "+#% total to Chaos Resistance", "better": 1, "matchers": [{"string": "+#% total to Chaos Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_chaos_resistance"]}}} +{"ref": "+#% total to Cold Resistance", "better": 1, "matchers": [{"string": "+#% total to Cold Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_cold_resistance"]}}} +{"ref": "+#% total to Fire Resistance", "better": 1, "matchers": [{"string": "+#% total to Fire Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_fire_resistance"]}}} +{"ref": "+#% total to Lightning Resistance", "better": 1, "matchers": [{"string": "+#% total to Lightning Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_lightning_resistance"]}}} +{"ref": "Adds # to # Chaos Damage", "better": 1, "matchers": [{"string": "Adds # to # Chaos Damage"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_chaos_damage"], "explicit": ["explicit.stat_2223678961", "explicit.stat_3531280422"], "implicit": ["implicit.stat_2223678961", "implicit.stat_3531280422"], "fractured": ["fractured.stat_2223678961"], "enchant": ["enchant.stat_2223678961"], "scourge": ["scourge.stat_2223678961"]}}} +{"ref": "Adds # to # Chaos Damage to Attacks", "better": 1, "matchers": [{"string": "Adds # to # Chaos Damage to Attacks"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_chaos_damage_to_attacks"], "explicit": ["explicit.stat_674553446"], "implicit": ["implicit.stat_674553446"], "fractured": ["fractured.stat_674553446"], "crafted": ["crafted.stat_674553446"]}}} +{"ref": "Adds # to # Chaos Damage to Spells", "better": 1, "matchers": [{"string": "Adds # to # Chaos Damage to Spells"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_chaos_damage_to_spells"], "explicit": ["explicit.stat_2300399854"], "implicit": ["implicit.stat_2300399854"], "fractured": ["fractured.stat_2300399854"]}}} +{"ref": "Adds # to # Cold Damage", "better": 1, "matchers": [{"string": "Adds # to # Cold Damage"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_cold_damage"], "explicit": ["explicit.stat_1037193709", "explicit.stat_2387423236"], "implicit": ["implicit.stat_1037193709", "implicit.stat_2387423236"], "fractured": ["fractured.stat_1037193709", "fractured.stat_2387423236"], "enchant": ["enchant.stat_1037193709"], "scourge": ["scourge.stat_1037193709"], "crafted": ["crafted.stat_1037193709", "crafted.stat_2387423236"]}}} +{"ref": "Adds # to # Cold Damage to Attacks", "better": 1, "matchers": [{"string": "Adds # to # Cold Damage to Attacks"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_cold_damage_to_attacks"], "explicit": ["explicit.stat_4067062424"], "implicit": ["implicit.stat_4067062424"], "fractured": ["fractured.stat_4067062424"], "crafted": ["crafted.stat_4067062424"]}}} +{"ref": "Adds # to # Cold Damage to Spells", "better": 1, "matchers": [{"string": "Adds # to # Cold Damage to Spells"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_cold_damage_to_spells"], "explicit": ["explicit.stat_2469416729"], "implicit": ["implicit.stat_2469416729"], "fractured": ["fractured.stat_2469416729"], "scourge": ["scourge.stat_2469416729"], "crafted": ["crafted.stat_2469416729"]}}} +{"ref": "Adds # to # Damage", "better": 1, "matchers": [{"string": "Adds # to # Damage "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_damage"]}}} +{"ref": "Adds # to # Damage to Attacks", "better": 1, "matchers": [{"string": "Adds # to # Damage to Attacks "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_damage_to_attacks"]}}} +{"ref": "Adds # to # Damage to Spells", "better": 1, "matchers": [{"string": "Adds # to # Damage to Spells "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_damage_to_spells"]}}} +{"ref": "Adds # to # Elemental Damage", "better": 1, "matchers": [{"string": "Adds # to # Elemental Damage "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_elemental_damage"]}}} +{"ref": "Adds # to # Elemental Damage to Attacks", "better": 1, "matchers": [{"string": "Adds # to # Elemental Damage to Attacks "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_elemental_damage_to_attacks"]}}} +{"ref": "Adds # to # Elemental Damage to Spells", "better": 1, "matchers": [{"string": "Adds # to # Elemental Damage to Spells "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_elemental_damage_to_spells"]}}} +{"ref": "Adds # to # Fire Damage", "better": 1, "matchers": [{"string": "Adds # to # Fire Damage"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_fire_damage"], "explicit": ["explicit.stat_321077055", "explicit.stat_709508406"], "implicit": ["implicit.stat_321077055", "implicit.stat_709508406"], "fractured": ["fractured.stat_321077055", "fractured.stat_709508406"], "enchant": ["enchant.stat_709508406"], "scourge": ["scourge.stat_709508406"], "crafted": ["crafted.stat_321077055", "crafted.stat_709508406"]}}} +{"ref": "Adds # to # Fire Damage to Attacks", "better": 1, "matchers": [{"string": "Adds # to # Fire Damage to Attacks"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_fire_damage_to_attacks"], "explicit": ["explicit.stat_1573130764"], "implicit": ["implicit.stat_1573130764"], "fractured": ["fractured.stat_1573130764"], "crafted": ["crafted.stat_1573130764"]}}} +{"ref": "Adds # to # Fire Damage to Spells", "better": 1, "matchers": [{"string": "Adds # to # Fire Damage to Spells"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_fire_damage_to_spells"], "explicit": ["explicit.stat_1133016593"], "implicit": ["implicit.stat_1133016593"], "fractured": ["fractured.stat_1133016593"], "scourge": ["scourge.stat_1133016593"], "crafted": ["crafted.stat_1133016593"]}}} +{"ref": "Adds # to # Lightning Damage", "better": 1, "matchers": [{"string": "Adds # to # Lightning Damage"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_lightning_damage"], "explicit": ["explicit.stat_1334060246", "explicit.stat_3336890334"], "implicit": ["implicit.stat_1334060246", "implicit.stat_3336890334"], "fractured": ["fractured.stat_1334060246", "fractured.stat_3336890334"], "enchant": ["enchant.stat_3336890334"], "scourge": ["scourge.stat_3336890334"], "crafted": ["crafted.stat_1334060246", "crafted.stat_3336890334"]}}} +{"ref": "Adds # to # Lightning Damage to Attacks", "better": 1, "matchers": [{"string": "Adds # to # Lightning Damage to Attacks"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_lightning_damage_to_attacks"], "explicit": ["explicit.stat_1754445556"], "implicit": ["implicit.stat_1754445556"], "fractured": ["fractured.stat_1754445556"], "crafted": ["crafted.stat_1754445556"]}}} +{"ref": "Adds # to # Lightning Damage to Spells", "better": 1, "matchers": [{"string": "Adds # to # Lightning Damage to Spells"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_lightning_damage_to_spells"], "explicit": ["explicit.stat_2831165374"], "implicit": ["implicit.stat_2831165374"], "fractured": ["fractured.stat_2831165374"], "scourge": ["scourge.stat_2831165374"], "crafted": ["crafted.stat_2831165374"]}}} +{"ref": "Adds # to # Physical Damage", "better": 1, "matchers": [{"string": "Adds # to # Physical Damage"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_physical_damage"], "explicit": ["explicit.stat_1940865751", "explicit.stat_960081730"], "implicit": ["implicit.stat_1940865751"], "fractured": ["fractured.stat_1940865751", "fractured.stat_960081730"], "scourge": ["scourge.stat_1940865751"], "crafted": ["crafted.stat_1940865751"]}}} +{"ref": "Adds # to # Physical Damage to Attacks", "better": 1, "matchers": [{"string": "Adds # to # Physical Damage to Attacks"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_physical_damage_to_attacks"], "explicit": ["explicit.stat_3032590688"], "implicit": ["implicit.stat_3032590688"], "fractured": ["fractured.stat_3032590688"], "crafted": ["crafted.stat_3032590688"]}}} +{"ref": "Adds # to # Physical Damage to Spells", "better": 1, "matchers": [{"string": "Adds # to # Physical Damage to Spells"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_physical_damage_to_spells"], "explicit": ["explicit.stat_2435536961"], "implicit": ["implicit.stat_2435536961"], "fractured": ["fractured.stat_2435536961"], "scourge": ["scourge.stat_2435536961"]}}} +{"ref": "Has # Influences", "better": 1, "matchers": [{"string": "Has # Influences "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_influence_count"]}}} +{"ref": "Has Crusader Influence", "better": 1, "matchers": [{"string": "Has Crusader Influence "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_crusader_influence"]}}} +{"ref": "Has Elder Influence", "better": 1, "matchers": [{"string": "Has Elder Influence "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_elder_influence"]}}} +{"ref": "Has Hunter Influence", "better": 1, "matchers": [{"string": "Has Hunter Influence "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_hunter_influence"]}}} +{"ref": "Has Logbook Area: Battleground Graves", "better": 1, "matchers": [{"string": "Has Logbook Area: Battleground Graves "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_battleground_graves"]}}} +{"ref": "Has Logbook Area: Bluffs", "better": 1, "matchers": [{"string": "Has Logbook Area: Bluffs "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_bluffs"]}}} +{"ref": "Has Logbook Area: Cemetery", "better": 1, "matchers": [{"string": "Has Logbook Area: Cemetery "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_cemetery"]}}} +{"ref": "Has Logbook Area: Desert Ruins", "better": 1, "matchers": [{"string": "Has Logbook Area: Desert Ruins "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_desert_ruins"]}}} +{"ref": "Has Logbook Area: Dried Riverbed", "better": 1, "matchers": [{"string": "Has Logbook Area: Dried Riverbed "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_dried_riverbed"]}}} +{"ref": "Has Logbook Area: Forest Ruins", "better": 1, "matchers": [{"string": "Has Logbook Area: Forest Ruins "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_forest_ruins"]}}} +{"ref": "Has Logbook Area: Karui Wargraves", "better": 1, "matchers": [{"string": "Has Logbook Area: Karui Wargraves "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_karui_wargraves"]}}} +{"ref": "Has Logbook Area: Mountainside", "better": 1, "matchers": [{"string": "Has Logbook Area: Mountainside "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_mountainside"]}}} +{"ref": "Has Logbook Area: Rotting Temple", "better": 1, "matchers": [{"string": "Has Logbook Area: Rotting Temple "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_rotting_temple"]}}} +{"ref": "Has Logbook Area: Sarn Slums", "better": 1, "matchers": [{"string": "Has Logbook Area: Sarn Slums "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_sarn_slums"]}}} +{"ref": "Has Logbook Area: Scrublands", "better": 1, "matchers": [{"string": "Has Logbook Area: Scrublands "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_scrublands"]}}} +{"ref": "Has Logbook Area: Shipwreck Reef", "better": 1, "matchers": [{"string": "Has Logbook Area: Shipwreck Reef "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_shipwreck_reef"]}}} +{"ref": "Has Logbook Area: Utzaal Outskirts", "better": 1, "matchers": [{"string": "Has Logbook Area: Utzaal Outskirts "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_utzaal_outskirts"]}}} +{"ref": "Has Logbook Area: Vaal Temple", "better": 1, "matchers": [{"string": "Has Logbook Area: Vaal Temple "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_vaal_temple"]}}} +{"ref": "Has Logbook Area: Volcanic Island", "better": 1, "matchers": [{"string": "Has Logbook Area: Volcanic Island "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_volcano"]}}} +{"ref": "Has Logbook Faction: Black Scythe Mercenaries", "better": 0, "matchers": [{"string": "Black Scythe Mercenaries"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_faction_mercenaries"]}}} +{"ref": "Has Logbook Faction: Druids of the Broken Circle", "better": 0, "matchers": [{"string": "Druids of the Broken Circle"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_faction_druids"]}}} +{"ref": "Has Logbook Faction: Knights of the Sun", "better": 0, "matchers": [{"string": "Knights of the Sun"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_faction_knights"]}}} +{"ref": "Has Logbook Faction: Order of the Chalice", "better": 0, "matchers": [{"string": "Order of the Chalice"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_faction_order"]}}} +{"ref": "Has Redeemer Influence", "better": 1, "matchers": [{"string": "Has Redeemer Influence "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_redeemer_influence"]}}} +{"ref": "Has Room: Antechamber", "better": 0, "matchers": [{"string": "Antechamber"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_antechamber"]}, "option": true}} +{"ref": "Has Room: Apex of Ascension (Tier 3)", "better": 0, "matchers": [{"string": "Apex of Ascension (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_sacrifice_room_3"]}, "option": true}} +{"ref": "Has Room: Apex of Atzoatl", "better": 0, "matchers": [{"string": "Apex of Atzoatl"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_apex"]}, "option": true}} +{"ref": "Has Room: Arena of Valour (Tier 2)", "better": 0, "matchers": [{"string": "Arena of Valour (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_weapon_room_2"]}, "option": true}} +{"ref": "Has Room: Armourer's Workshop (Tier 1)", "better": 0, "matchers": [{"string": "Armourer's Workshop (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_armour_room_1"]}, "option": true}} +{"ref": "Has Room: Armoury (Tier 2)", "better": 0, "matchers": [{"string": "Armoury (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_armour_room_2"]}, "option": true}} +{"ref": "Has Room: Atlas of Worlds (Tier 3)", "better": 0, "matchers": [{"string": "Atlas of Worlds (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_cartography_room_3"]}, "option": true}} +{"ref": "Has Room: Automaton Lab (Tier 2)", "better": 0, "matchers": [{"string": "Automaton Lab (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_minions_2"]}, "option": true}} +{"ref": "Has Room: Banquet Hall", "better": 0, "matchers": [{"string": "Banquet Hall"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_banquet_hall"]}, "option": true}} +{"ref": "Has Room: Barracks (Tier 2)", "better": 0, "matchers": [{"string": "Barracks (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_breeding_room_2"]}, "option": true}} +{"ref": "Has Room: Breach Containment Chamber (Tier 2)", "better": 0, "matchers": [{"string": "Breach Containment Chamber (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_breach_room_2"]}, "option": true}} +{"ref": "Has Room: Catalyst of Corruption (Tier 2)", "better": 0, "matchers": [{"string": "Catalyst of Corruption (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_corruption_room_2"]}, "option": true}} +{"ref": "Has Room: Cellar", "better": 0, "matchers": [{"string": "Cellar"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_cellar"]}, "option": true}} +{"ref": "Has Room: Chamber of Iron (Tier 3)", "better": 0, "matchers": [{"string": "Chamber of Iron (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_armour_room_3"]}, "option": true}} +{"ref": "Has Room: Chasm", "better": 0, "matchers": [{"string": "Chasm"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_chasm_room"]}, "option": true}} +{"ref": "Has Room: Cloister", "better": 0, "matchers": [{"string": "Cloister"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_cloister"]}, "option": true}} +{"ref": "Has Room: Conduit of Lightning (Tier 3)", "better": 0, "matchers": [{"string": "Conduit of Lightning (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_lightning_3"]}, "option": true}} +{"ref": "Has Room: Corruption Chamber (Tier 1)", "better": 0, "matchers": [{"string": "Corruption Chamber (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_corruption_room_1"]}, "option": true}} +{"ref": "Has Room: Court of Sealed Death (Tier 3)", "better": 0, "matchers": [{"string": "Court of Sealed Death (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_strongbox_3"]}, "option": true}} +{"ref": "Has Room: Crucible of Flame (Tier 3)", "better": 0, "matchers": [{"string": "Crucible of Flame (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_fire_3"]}, "option": true}} +{"ref": "Has Room: Cultivar Chamber (Tier 2)", "better": 0, "matchers": [{"string": "Cultivar Chamber (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_poison_room_2"]}, "option": true}} +{"ref": "Has Room: Defense Research Lab (Tier 3)", "better": 0, "matchers": [{"string": "Defense Research Lab (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_trap_room_3"]}, "option": true}} +{"ref": "Has Room: Demolition Lab (Tier 2)", "better": 0, "matchers": [{"string": "Demolition Lab (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_explosives_room_2"]}, "option": true}} +{"ref": "Has Room: Department of Thaumaturgy (Tier 2)", "better": 0, "matchers": [{"string": "Department of Thaumaturgy (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_gem_room_2"]}, "option": true}} +{"ref": "Has Room: Doryani's Institute (Tier 3)", "better": 0, "matchers": [{"string": "Doryani's Institute (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_gem_room_3"]}, "option": true}} +{"ref": "Has Room: Engineering Department (Tier 2)", "better": 0, "matchers": [{"string": "Engineering Department (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_workshop_2"]}, "option": true}} +{"ref": "Has Room: Explosives Room (Tier 1)", "better": 0, "matchers": [{"string": "Explosives Room (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_explosives_room_1"]}, "option": true}} +{"ref": "Has Room: Factory (Tier 3)", "better": 0, "matchers": [{"string": "Factory (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_workshop_3"]}, "option": true}} +{"ref": "Has Room: Flame Workshop (Tier 1)", "better": 0, "matchers": [{"string": "Flame Workshop (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_fire_1"]}, "option": true}} +{"ref": "Has Room: Gemcutter's Workshop (Tier 1)", "better": 0, "matchers": [{"string": "Gemcutter's Workshop (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_gem_room_1"]}, "option": true}} +{"ref": "Has Room: Glittering Halls (Tier 3)", "better": 0, "matchers": [{"string": "Glittering Halls (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_trinket_room_3"]}, "option": true}} +{"ref": "Has Room: Guardhouse (Tier 1)", "better": 0, "matchers": [{"string": "Guardhouse (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_breeding_room_1"]}, "option": true}} +{"ref": "Has Room: Hall of Champions (Tier 3)", "better": 0, "matchers": [{"string": "Hall of Champions (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_weapon_room_3"]}, "option": true}} +{"ref": "Has Room: Hall of Heroes (Tier 2)", "better": 0, "matchers": [{"string": "Hall of Heroes (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_legion_2"]}, "option": true}} +{"ref": "Has Room: Hall of Legends (Tier 3)", "better": 0, "matchers": [{"string": "Hall of Legends (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_legion_3"]}, "option": true}} +{"ref": "Has Room: Hall of Locks (Tier 2)", "better": 0, "matchers": [{"string": "Hall of Locks (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_strongbox_2"]}, "option": true}} +{"ref": "Has Room: Hall of Lords (Tier 2)", "better": 0, "matchers": [{"string": "Hall of Lords (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_queens_chambers_2"]}, "option": true}} +{"ref": "Has Room: Hall of Mettle (Tier 1)", "better": 0, "matchers": [{"string": "Hall of Mettle (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_legion_1"]}, "option": true}} +{"ref": "Has Room: Hall of Offerings (Tier 2)", "better": 0, "matchers": [{"string": "Hall of Offerings (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_sacrifice_room_2"]}, "option": true}} +{"ref": "Has Room: Hall of War (Tier 3)", "better": 0, "matchers": [{"string": "Hall of War (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_breeding_room_3"]}, "option": true}} +{"ref": "Has Room: Halls", "better": 0, "matchers": [{"string": "Halls"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_halls"]}, "option": true}} +{"ref": "Has Room: Hatchery (Tier 1)", "better": 0, "matchers": [{"string": "Hatchery (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_minions_1"]}, "option": true}} +{"ref": "Has Room: House of the Others (Tier 3)", "better": 0, "matchers": [{"string": "House of the Others (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_breach_room_3"]}, "option": true}} +{"ref": "Has Room: Hurricane Engine (Tier 2)", "better": 0, "matchers": [{"string": "Hurricane Engine (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_storm_room_2"]}, "option": true}} +{"ref": "Has Room: Hybridisation Chamber (Tier 3)", "better": 0, "matchers": [{"string": "Hybridisation Chamber (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_minions_3"]}, "option": true}} +{"ref": "Has Room: Jeweller's Workshop (Tier 1)", "better": 0, "matchers": [{"string": "Jeweller's Workshop (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_trinket_room_1"]}, "option": true}} +{"ref": "Has Room: Jewellery Forge (Tier 2)", "better": 0, "matchers": [{"string": "Jewellery Forge (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_trinket_room_2"]}, "option": true}} +{"ref": "Has Room: Lightning Workshop (Tier 1)", "better": 0, "matchers": [{"string": "Lightning Workshop (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_lightning_1"]}, "option": true}} +{"ref": "Has Room: Locus of Corruption (Tier 3)", "better": 0, "matchers": [{"string": "Locus of Corruption (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_corruption_room_3"]}, "option": true}} +{"ref": "Has Room: Museum of Artefacts (Tier 3)", "better": 0, "matchers": [{"string": "Museum of Artefacts (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_chests_3"]}, "option": true}} +{"ref": "Has Room: Office of Cartography (Tier 2)", "better": 0, "matchers": [{"string": "Office of Cartography (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_cartography_room_2"]}, "option": true}} +{"ref": "Has Room: Omnitect Forge (Tier 2)", "better": 0, "matchers": [{"string": "Omnitect Forge (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_fire_2"]}, "option": true}} +{"ref": "Has Room: Omnitect Reactor Plant (Tier 2)", "better": 0, "matchers": [{"string": "Omnitect Reactor Plant (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_lightning_2"]}, "option": true}} +{"ref": "Has Room: Passageways", "better": 0, "matchers": [{"string": "Passageways"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_passageways"]}, "option": true}} +{"ref": "Has Room: Pits", "better": 0, "matchers": [{"string": "Pits"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_the_pits"]}, "option": true}} +{"ref": "Has Room: Poison Garden (Tier 1)", "better": 0, "matchers": [{"string": "Poison Garden (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_poison_room_1"]}, "option": true}} +{"ref": "Has Room: Pools of Restoration (Tier 1)", "better": 0, "matchers": [{"string": "Pools of Restoration (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_healing_room_1"]}, "option": true}} +{"ref": "Has Room: Royal Meeting Room (Tier 1)", "better": 0, "matchers": [{"string": "Royal Meeting Room (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_queens_chambers_1"]}, "option": true}} +{"ref": "Has Room: Sacrificial Chamber (Tier 1)", "better": 0, "matchers": [{"string": "Sacrificial Chamber (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_sacrifice_room_1"]}, "option": true}} +{"ref": "Has Room: Sadist's Den (Tier 3)", "better": 0, "matchers": [{"string": "Sadist's Den (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_torment_3"]}, "option": true}} +{"ref": "Has Room: Sanctum of Immortality (Tier 3)", "better": 0, "matchers": [{"string": "Sanctum of Immortality (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_healing_room_3"]}, "option": true}} +{"ref": "Has Room: Sanctum of Unity (Tier 2)", "better": 0, "matchers": [{"string": "Sanctum of Unity (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_empowering_room_2"]}, "option": true}} +{"ref": "Has Room: Sanctum of Vitality (Tier 2)", "better": 0, "matchers": [{"string": "Sanctum of Vitality (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_healing_room_2"]}, "option": true}} +{"ref": "Has Room: Shrine of Empowerment (Tier 1)", "better": 0, "matchers": [{"string": "Shrine of Empowerment (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_empowering_room_1"]}, "option": true}} +{"ref": "Has Room: Shrine of Unmaking (Tier 3)", "better": 0, "matchers": [{"string": "Shrine of Unmaking (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_explosives_room_3"]}, "option": true}} +{"ref": "Has Room: Sparring Room (Tier 1)", "better": 0, "matchers": [{"string": "Sparring Room (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_weapon_room_1"]}, "option": true}} +{"ref": "Has Room: Splinter Research Lab (Tier 1)", "better": 0, "matchers": [{"string": "Splinter Research Lab (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_breach_room_1"]}, "option": true}} +{"ref": "Has Room: Storage Room (Tier 1)", "better": 0, "matchers": [{"string": "Storage Room (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_chests_1"]}, "option": true}} +{"ref": "Has Room: Storm of Corruption (Tier 3)", "better": 0, "matchers": [{"string": "Storm of Corruption (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_storm_room_3"]}, "option": true}} +{"ref": "Has Room: Strongbox Chamber (Tier 1)", "better": 0, "matchers": [{"string": "Strongbox Chamber (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_strongbox_1"]}, "option": true}} +{"ref": "Has Room: Surveyor's Study (Tier 1)", "better": 0, "matchers": [{"string": "Surveyor's Study (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_cartography_room_1"]}, "option": true}} +{"ref": "Has Room: Tempest Generator (Tier 1)", "better": 0, "matchers": [{"string": "Tempest Generator (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_storm_room_1"]}, "option": true}} +{"ref": "Has Room: Temple Defense Workshop (Tier 2)", "better": 0, "matchers": [{"string": "Temple Defense Workshop (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_trap_room_2"]}, "option": true}} +{"ref": "Has Room: Temple Nexus (Tier 3)", "better": 0, "matchers": [{"string": "Temple Nexus (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_empowering_room_3"]}, "option": true}} +{"ref": "Has Room: Throne of Atziri (Tier 3)", "better": 0, "matchers": [{"string": "Throne of Atziri (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_queens_chambers_3"]}, "option": true}} +{"ref": "Has Room: Tombs", "better": 0, "matchers": [{"string": "Tombs"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_tombs"]}, "option": true}} +{"ref": "Has Room: Torment Cells (Tier 1)", "better": 0, "matchers": [{"string": "Torment Cells (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_torment_1"]}, "option": true}} +{"ref": "Has Room: Torture Cages (Tier 2)", "better": 0, "matchers": [{"string": "Torture Cages (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_torment_2"]}, "option": true}} +{"ref": "Has Room: Toxic Grove (Tier 3)", "better": 0, "matchers": [{"string": "Toxic Grove (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_poison_room_3"]}, "option": true}} +{"ref": "Has Room: Trap Workshop (Tier 1)", "better": 0, "matchers": [{"string": "Trap Workshop (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_trap_room_1"]}, "option": true}} +{"ref": "Has Room: Treasury (Tier 2)", "better": 0, "matchers": [{"string": "Treasury (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_currency_vault_2"]}, "option": true}} +{"ref": "Has Room: Tunnels", "better": 0, "matchers": [{"string": "Tunnels"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_tunnels"]}, "option": true}} +{"ref": "Has Room: Vault (Tier 1)", "better": 0, "matchers": [{"string": "Vault (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_currency_vault_1"]}, "option": true}} +{"ref": "Has Room: Warehouses (Tier 2)", "better": 0, "matchers": [{"string": "Warehouses (Tier 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_chests_2"]}, "option": true}} +{"ref": "Has Room: Wealth of the Vaal (Tier 3)", "better": 0, "matchers": [{"string": "Wealth of the Vaal (Tier 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_currency_vault_3"]}, "option": true}} +{"ref": "Has Room: Workshop (Tier 1)", "better": 0, "matchers": [{"string": "Workshop (Tier 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_workshop_1"]}, "option": true}} +{"ref": "Has Shaper Influence", "better": 1, "matchers": [{"string": "Has Shaper Influence "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_shaper_influence"]}}} +{"ref": "Has Warlord Influence", "better": 1, "matchers": [{"string": "Has Warlord Influence "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_warlord_influence"]}}} +{"ref": "Mirrored Tablet has # Islands", "better": 1, "matchers": [{"string": "Mirrored Tablet has # Islands "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_lake_number_of_islands"]}}} +{"ref": "More Currency: #%", "better": 1, "matchers": [{"string": "More Currency: #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_more_currency_drops"]}}} +{"ref": "More Divination Cards: #%", "better": 1, "matchers": [{"string": "More Divination Cards: #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_more_card_drops"]}}} +{"ref": "More Maps: #%", "better": 1, "matchers": [{"string": "More Maps: #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_more_map_drops"]}}} +{"ref": "More Scarabs: #%", "better": 1, "matchers": [{"string": "More Scarabs: #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_more_scarab_drops"]}}} +{"ref": "Quality (Attack Modifiers): #%", "better": 1, "matchers": [{"string": "Quality (Attack Modifiers): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_attack_quality"]}}} +{"ref": "Quality (Attribute Modifiers): #%", "better": 1, "matchers": [{"string": "Quality (Attribute Modifiers): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_attribute_quality"]}}} +{"ref": "Quality (Caster Modifiers): #%", "better": 1, "matchers": [{"string": "Quality (Caster Modifiers): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_caster_quality"]}}} +{"ref": "Quality (Critical Modifiers): #%", "better": 1, "matchers": [{"string": "Quality (Critical Modifiers): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_critical_quality"]}}} +{"ref": "Quality (Currency): #%", "better": 1, "matchers": [{"string": "Quality (Currency): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_quality_currency"]}}} +{"ref": "Quality (Defence Modifiers): #%", "better": 1, "matchers": [{"string": "Quality (Defence Modifiers): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_defense_quality"]}}} +{"ref": "Quality (Divination Cards): #%", "better": 1, "matchers": [{"string": "Quality (Divination Cards): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_quality_cards"]}}} +{"ref": "Quality (Elemental Damage Modifiers): #%", "better": 1, "matchers": [{"string": "Quality (Elemental Damage Modifiers): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_elemental_quality"]}}} +{"ref": "Quality (Life and Mana Modifiers): #%", "better": 1, "matchers": [{"string": "Quality (Life and Mana Modifiers): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_resource_quality"]}}} +{"ref": "Quality (Pack Size): #%", "better": 1, "matchers": [{"string": "Quality (Pack Size): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_quality_pack_size"]}}} +{"ref": "Quality (Physical and Chaos Damage Modifiers): #%", "better": 1, "matchers": [{"string": "Quality (Physical and Chaos Damage Modifiers): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_physical_chaos_quality"]}}} +{"ref": "Quality (Rarity): #%", "better": 1, "matchers": [{"string": "Quality (Rarity): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_quality_rarity"]}}} +{"ref": "Quality (Resistance Modifiers): #%", "better": 1, "matchers": [{"string": "Quality (Resistance Modifiers): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_resistance_quality"]}}} +{"ref": "Quality (Scarabs): #%", "better": 1, "matchers": [{"string": "Quality (Scarabs): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_quality_scarabs"]}}} +{"ref": "Quality (Speed Modifiers): #%", "better": 1, "matchers": [{"string": "Quality (Speed Modifiers): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_speed_quality"]}}} +{"ref": "Reflection of Abyss (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Abyss (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_38892"]}}} +{"ref": "Reflection of Ambush (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Ambush (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_48307"]}}} +{"ref": "Reflection of Angling (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Angling (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_40794"]}}} +{"ref": "Reflection of Azurite (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Azurite (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_40031"]}}} +{"ref": "Reflection of Bestiary (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Bestiary (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_55569"]}}} +{"ref": "Reflection of Breach (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Breach (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_62572"]}}} +{"ref": "Reflection of Brutality (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Brutality (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_29096"]}}} +{"ref": "Reflection of Camaraderie (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Camaraderie (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_35395"]}}} +{"ref": "Reflection of Catalysis (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Catalysis (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_57850"]}}} +{"ref": "Reflection of Chaos (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Chaos (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_50834"]}}} +{"ref": "Reflection of Conflict (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Conflict (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_1931"]}}} +{"ref": "Reflection of Darkness (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Darkness (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_34457"]}}} +{"ref": "Reflection of Delirium (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Delirium (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_22138"]}}} +{"ref": "Reflection of Delve (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Delve (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_18737"]}}} +{"ref": "Reflection of Demonfire (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Demonfire (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_28500"]}}} +{"ref": "Reflection of Domination (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Domination (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_63412"]}}} +{"ref": "Reflection of Entrapment (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Entrapment (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_44399"]}}} +{"ref": "Reflection of Essence (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Essence (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_49862"]}}} +{"ref": "Reflection of Experimentation (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Experimentation (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_55676"]}}} +{"ref": "Reflection of Flame (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Flame (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_42468"]}}} +{"ref": "Reflection of Fractured Dimensions (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Fractured Dimensions (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_49488"]}}} +{"ref": "Reflection of Frost (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Frost (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_38110"]}}} +{"ref": "Reflection of Guilt (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Guilt (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_25480"]}}} +{"ref": "Reflection of Imprisonment (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Imprisonment (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_10363"]}}} +{"ref": "Reflection of Kalandra (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Kalandra (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_36591"]}}} +{"ref": "Reflection of Legion (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Legion (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_403"]}}} +{"ref": "Reflection of Metamorph (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Metamorph (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_3699"]}}} +{"ref": "Reflection of Occultism (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Occultism (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_24451"]}}} +{"ref": "Reflection of Paradise (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Paradise (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_50846"]}}} +{"ref": "Reflection of Perverted Faith (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Perverted Faith (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_27678"]}}} +{"ref": "Reflection of Phaaryl (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Phaaryl (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_7674"]}}} +{"ref": "Reflection of Possession (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Possession (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_25049"]}}} +{"ref": "Reflection of Power (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Power (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_35950"]}}} +{"ref": "Reflection of Scourge (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Scourge (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_62360"]}}} +{"ref": "Reflection of Stasis (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Stasis (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_32968"]}}} +{"ref": "Reflection of Sulphite (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Sulphite (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_45086"]}}} +{"ref": "Reflection of the Black Scythe (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of the Black Scythe (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_9662"]}}} +{"ref": "Reflection of the Breachlord (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of the Breachlord (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_62935"]}}} +{"ref": "Reflection of the Broken Circle (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of the Broken Circle (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_43128"]}}} +{"ref": "Reflection of the Chalice (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of the Chalice (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_64561"]}}} +{"ref": "Reflection of the Chasm (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of the Chasm (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_57101"]}}} +{"ref": "Reflection of the Dream (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of the Dream (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_27117"]}}} +{"ref": "Reflection of the Harbingers (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of the Harbingers (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_37203"]}}} +{"ref": "Reflection of the Hunter (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of the Hunter (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_18816"]}}} +{"ref": "Reflection of the Monolith (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of the Monolith (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_34796"]}}} +{"ref": "Reflection of the Nightmare (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of the Nightmare (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_24232"]}}} +{"ref": "Reflection of the Storm (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of the Storm (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_2745"]}}} +{"ref": "Reflection of the Sun (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of the Sun (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_60034"]}}} +{"ref": "Reflection of the Trove (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of the Trove (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_46772"]}}} +{"ref": "Reflection of the Wilderness (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of the Wilderness (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_29224"]}}} +{"ref": "Reflection of Thralldom (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Thralldom (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_26813"]}}} +{"ref": "Reflection of Torment (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Torment (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_53950"]}}} +{"ref": "Reflection of Tyranny (Difficulty #)", "better": 1, "matchers": [{"string": "Reflection of Tyranny (Difficulty #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_60981"]}}} diff --git a/renderer/public/.DS_Store/vendor/pseudo-stats/en/pseudo_stats.ndjson b/renderer/public/.DS_Store/vendor/pseudo-stats/en/pseudo_stats.ndjson new file mode 100644 index 000000000..282336f5d --- /dev/null +++ b/renderer/public/.DS_Store/vendor/pseudo-stats/en/pseudo_stats.ndjson @@ -0,0 +1,32 @@ +{"ref": "# Life Regenerated per Second", "better": 1, "matchers": [{"string": "# Life Regenerated per Second "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_life_regen"]}}} +{"ref": "#% increased Burning Damage", "better": 1, "matchers": [{"string": "#% increased Burning Damage"}, {"string": "#% reduced Burning Damage", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_burning_damage"], "explicit": ["explicit.stat_1175385867"], "implicit": ["implicit.stat_1175385867"], "fractured": ["fractured.stat_1175385867"]}}} +{"ref": "#% increased Cold Damage", "better": 1, "matchers": [{"string": "#% increased Cold Damage"}, {"string": "#% reduced Cold Damage", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_cold_damage"], "explicit": ["explicit.stat_3291658075"], "implicit": ["implicit.stat_3291658075"], "fractured": ["fractured.stat_3291658075"], "scourge": ["scourge.stat_3291658075"], "crafted": ["crafted.stat_3291658075"]}}} +{"ref": "#% increased Cold Spell Damage", "better": 1, "matchers": [{"string": "#% increased Cold Spell Damage "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_cold_spell_damage"]}}} +{"ref": "#% increased Elemental Damage", "better": 1, "matchers": [{"string": "#% increased Elemental Damage"}, {"string": "Has #% increased Elemental Damage"}, {"string": "#% reduced Elemental Damage", "negate": true}, {"string": "Has #% reduced Elemental Damage", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_elemental_damage"], "explicit": ["explicit.stat_3141070085"], "implicit": ["implicit.stat_3141070085"], "fractured": ["fractured.stat_3141070085"], "enchant": ["enchant.stat_692420067"], "scourge": ["scourge.stat_3141070085"]}}} +{"ref": "#% increased Elemental Damage with Attack Skills", "better": 1, "matchers": [{"string": "#% increased Elemental Damage with Attack Skills"}, {"string": "#% reduced Elemental Damage with Attack Skills", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_elemental_damage_with_attack_skills"], "explicit": ["explicit.stat_387439868"], "implicit": ["implicit.stat_387439868"], "fractured": ["fractured.stat_387439868"], "scourge": ["scourge.stat_387439868"], "crafted": ["crafted.stat_387439868"]}}} +{"ref": "#% increased Fire Damage", "better": 1, "matchers": [{"string": "#% increased Fire Damage"}, {"string": "#% reduced Fire Damage", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_fire_damage"], "explicit": ["explicit.stat_3962278098"], "implicit": ["implicit.stat_3962278098"], "fractured": ["fractured.stat_3962278098"], "scourge": ["scourge.stat_3962278098"], "crafted": ["crafted.stat_3962278098"]}}} +{"ref": "#% increased Fire Spell Damage", "better": 1, "matchers": [{"string": "#% increased Fire Spell Damage "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_fire_spell_damage"]}}} +{"ref": "#% increased Lightning Damage", "better": 1, "matchers": [{"string": "#% increased Lightning Damage"}, {"string": "#% reduced Lightning Damage", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_lightning_damage"], "explicit": ["explicit.stat_2231156303"], "implicit": ["implicit.stat_2231156303"], "fractured": ["fractured.stat_2231156303"], "scourge": ["scourge.stat_2231156303"], "crafted": ["crafted.stat_2231156303"]}}} +{"ref": "#% increased Lightning Spell Damage", "better": 1, "matchers": [{"string": "#% increased Lightning Spell Damage "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_lightning_spell_damage"]}}} +{"ref": "#% increased Mana Regeneration Rate", "better": 1, "matchers": [{"string": "#% increased Mana Regeneration Rate"}, {"string": "#% reduced Mana Regeneration Rate", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_mana_regen"], "explicit": ["explicit.stat_789117908"], "implicit": ["implicit.stat_789117908"], "fractured": ["fractured.stat_789117908"], "scourge": ["scourge.stat_789117908"], "crafted": ["crafted.stat_789117908"]}}} +{"ref": "#% increased Movement Speed", "better": 1, "matchers": [{"string": "#% increased Movement Speed"}, {"string": "#% reduced Movement Speed", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_movement_speed"], "explicit": ["explicit.stat_2250533757"], "implicit": ["implicit.stat_2250533757"], "fractured": ["fractured.stat_2250533757"], "enchant": ["enchant.stat_2250533757"], "scourge": ["scourge.stat_2250533757"], "crafted": ["crafted.stat_2250533757"]}}} +{"ref": "#% increased Spell Damage", "better": 1, "matchers": [{"string": "#% increased Spell Damage"}, {"string": "#% reduced Spell Damage", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_spell_damage"], "explicit": ["explicit.stat_2974417149"], "implicit": ["implicit.stat_2974417149"], "fractured": ["fractured.stat_2974417149"], "enchant": ["enchant.stat_2974417149"], "scourge": ["scourge.stat_2974417149"], "crafted": ["crafted.stat_2974417149"]}}} +{"ref": "#% of Physical Attack Damage Leeched as Life", "dp": true, "better": 1, "matchers": [{"string": "#% of Physical Attack Damage Leeched as Life"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_physical_attack_damage_leeched_as_life"], "explicit": ["explicit.stat_3593843976", "explicit.stat_55876295"], "implicit": ["implicit.stat_3593843976", "implicit.stat_55876295"], "fractured": ["fractured.stat_3593843976", "fractured.stat_55876295"], "scourge": ["scourge.stat_3593843976"], "crafted": ["crafted.stat_3593843976", "crafted.stat_55876295"]}}} +{"ref": "#% of Physical Attack Damage Leeched as Mana", "dp": true, "better": 1, "matchers": [{"string": "#% of Physical Attack Damage Leeched as Mana"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_physical_attack_damage_leeched_as_mana"], "explicit": ["explicit.stat_3237948413", "explicit.stat_669069897"], "implicit": ["implicit.stat_3237948413", "implicit.stat_669069897"], "fractured": ["fractured.stat_3237948413", "fractured.stat_669069897"], "enchant": ["enchant.stat_669069897"], "scourge": ["scourge.stat_3237948413"], "crafted": ["crafted.stat_3237948413", "crafted.stat_669069897"]}}} +{"ref": "#% total increased Physical Damage", "better": 1, "matchers": [{"string": "#% total increased Physical Damage "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_physical_damage"]}}} +{"ref": "+# total maximum Energy Shield", "better": 1, "matchers": [{"string": "+# total maximum Energy Shield "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_energy_shield"]}}} +{"ref": "+# total maximum Life", "better": 1, "matchers": [{"string": "+# total maximum Life "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_life"]}}} +{"ref": "+# total maximum Mana", "better": 1, "matchers": [{"string": "+# total maximum Mana "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_mana"]}}} +{"ref": "+# total to all Attributes", "better": 1, "matchers": [{"string": "+# total to all Attributes "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_all_attributes"]}}} +{"ref": "+# total to Dexterity", "better": 1, "matchers": [{"string": "+# total to Dexterity "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_dexterity"]}}} +{"ref": "+# total to Intelligence", "better": 1, "matchers": [{"string": "+# total to Intelligence "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_intelligence"]}}} +{"ref": "+# total to Strength", "better": 1, "matchers": [{"string": "+# total to Strength "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_strength"]}}} +{"ref": "+#% Global Critical Strike Chance", "better": 1, "matchers": [{"string": "+#% Global Critical Strike Chance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_global_critical_strike_chance"]}}} +{"ref": "+#% Global Critical Strike Multiplier", "better": 1, "matchers": [{"string": "+#% Global Critical Strike Multiplier "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_global_critical_strike_multiplier"]}}} +{"ref": "+#% total Attack Speed", "better": 1, "matchers": [{"string": "+#% total Attack Speed "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_attack_speed"]}}} +{"ref": "+#% total Cast Speed", "better": 1, "matchers": [{"string": "+#% total Cast Speed "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_cast_speed"]}}} +{"ref": "+#% total Elemental Resistance", "better": 1, "matchers": [{"string": "+#% total Elemental Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_elemental_resistance"]}}} +{"ref": "+#% total to Chaos Resistance", "better": 1, "matchers": [{"string": "+#% total to Chaos Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_chaos_resistance"]}}} +{"ref": "+#% total to Cold Resistance", "better": 1, "matchers": [{"string": "+#% total to Cold Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_cold_resistance"]}}} +{"ref": "+#% total to Fire Resistance", "better": 1, "matchers": [{"string": "+#% total to Fire Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_fire_resistance"]}}} +{"ref": "+#% total to Lightning Resistance", "better": 1, "matchers": [{"string": "+#% total to Lightning Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_lightning_resistance"]}}} diff --git a/renderer/public/.DS_Store/vendor/pseudo-stats/ko/all-pseudo.ndjson b/renderer/public/.DS_Store/vendor/pseudo-stats/ko/all-pseudo.ndjson new file mode 100644 index 000000000..96c501be6 --- /dev/null +++ b/renderer/public/.DS_Store/vendor/pseudo-stats/ko/all-pseudo.ndjson @@ -0,0 +1,292 @@ +{"ref": "# Crafted Modifiers", "better": 1, "matchers": [{"string": "# 제작을 통한 속성 부여 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_crafted_mods"]}}} +{"ref": "# Crafted Prefix Modifiers", "better": 1, "matchers": [{"string": "# 제작을 통한 접두어 속성 부여 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_crafted_prefix_mods"]}}} +{"ref": "# Crafted Suffix Modifiers", "better": 1, "matchers": [{"string": "# 제작을 통한 접미어 속성 부여 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_crafted_suffix_mods"]}}} +{"ref": "# Empty Modifiers", "better": 1, "matchers": [{"string": "# 빈 속성 부여 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_empty_affix_mods"]}}} +{"ref": "# Empty Prefix Modifiers", "better": 1, "matchers": [{"string": "# 빈 접두어 속성 부여 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_empty_prefix_mods"]}}} +{"ref": "# Empty Suffix Modifiers", "better": 1, "matchers": [{"string": "# 빈 접미어 속성 부여 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_empty_suffix_mods"]}}} +{"ref": "# Enchant Modifiers", "better": 1, "matchers": [{"string": "# 인챈트 속성 부여 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_enchant_mods"]}}} +{"ref": "# Fractured Modifiers", "better": 1, "matchers": [{"string": "# 분열된 속성 부여 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_fractured_mods"]}}} +{"ref": "# Implicit Modifiers", "better": 1, "matchers": [{"string": "# 고정 속성 부여 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_implicit_mods"]}}} +{"ref": "# Life Regenerated per Second", "better": 1, "matchers": [{"string": "초당 생명력 재생 #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_life_regen"]}}} +{"ref": "# Modifiers", "better": 1, "matchers": [{"string": "# 속성 부여 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_affix_mods"]}}} +{"ref": "# Notable Passive Skills", "better": 1, "matchers": [{"string": "# 주요 패시브 스킬 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_notable_passive_skills"]}}} +{"ref": "# Prefix Modifiers", "better": 1, "matchers": [{"string": "# 접두어 속성 부여 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_prefix_mods"]}}} +{"ref": "# Suffix Modifiers", "better": 1, "matchers": [{"string": "# 접미어 속성 부여 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_suffix_mods"]}}} +{"ref": "# total Elemental Resistances", "better": 1, "matchers": [{"string": "총 원소 저항력 # "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_count_elemental_resistances"]}}} +{"ref": "# total Resistances", "better": 1, "matchers": [{"string": "총 저항 # "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_count_resistances"]}}} +{"ref": "#% Base Defence Percentile", "better": 1, "matchers": [{"string": "#% 기본 방어 백분위수 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_base_defence_percentile"]}}} +{"ref": "#% chance for dropped Maps to convert to Atlas Memories", "better": 1, "matchers": [{"string": "떨어진 지도가 #%의 확률로 아틀라스 기억으로 변환 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_memory_line"]}}} +{"ref": "#% chance for dropped Maps to convert to Conqueror Maps", "better": 1, "matchers": [{"string": "떨어진 지도가 #%의 확률로 정복자 지도로 변환 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_conqueror_map"]}}} +{"ref": "#% chance for dropped Maps to convert to Elder Maps", "better": 1, "matchers": [{"string": "떨어진 지도가 #%의 확률로 엘더 지도로 변환 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_elder_map"]}}} +{"ref": "#% chance for dropped Maps to convert to Maven Invitations", "better": 1, "matchers": [{"string": "떨어진 지도가 #%의 확률로 메이븐의 초대로 변환 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_maven_invitation"]}}} +{"ref": "#% chance for dropped Maps to convert to Scarabs", "better": 1, "matchers": [{"string": "떨어진 지도가 #%의 확률로 갑충석으로 변환 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_scarab"]}}} +{"ref": "#% chance for dropped Maps to convert to Shaper Maps", "better": 1, "matchers": [{"string": "떨어진 지도가 #%의 확률로 쉐이퍼 지도로 변환 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_shaper_map"]}}} +{"ref": "#% chance for dropped Maps to convert to Unique Maps", "better": 1, "matchers": [{"string": "떨어진 지도가 #%의 확률로 고유 지도로 변환 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_unique_map"]}}} +{"ref": "#% increased Burning Damage", "better": 1, "matchers": [{"string": "화상 피해 #% 증가"}, {"string": "화상 피해 #% 감소", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_burning_damage"], "explicit": ["explicit.stat_1175385867"], "implicit": ["implicit.stat_1175385867"], "fractured": ["fractured.stat_1175385867"]}}} +{"ref": "#% increased Cold Damage", "better": 1, "matchers": [{"string": "냉기 피해 #% 증가"}, {"string": "냉기 피해 #% 감소", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_cold_damage"], "explicit": ["explicit.stat_3291658075"], "implicit": ["implicit.stat_3291658075"], "fractured": ["fractured.stat_3291658075"], "scourge": ["scourge.stat_3291658075"], "crafted": ["crafted.stat_3291658075"]}}} +{"ref": "#% increased Cold Damage with Attack Skills", "better": 1, "matchers": [{"string": "공격 스킬의 냉기 피해 #% 증가"}, {"string": "공격 스킬의 냉기 피해 #% 감소", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_cold_damage_with_attack_skills"], "explicit": ["explicit.stat_860668586"], "implicit": ["implicit.stat_860668586"]}}} +{"ref": "#% increased Cold Spell Damage", "better": 1, "matchers": [{"string": "냉기 주문 피해 #% 증가 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_cold_spell_damage"]}}} +{"ref": "#% increased Elemental Damage", "better": 1, "matchers": [{"string": "원소 피해 #% 증가"}, {"string": "원소 피해 #% 감소", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_elemental_damage"], "explicit": ["explicit.stat_3141070085"], "implicit": ["implicit.stat_3141070085"], "fractured": ["fractured.stat_3141070085"], "enchant": ["enchant.stat_692420067"], "scourge": ["scourge.stat_3141070085"]}}} +{"ref": "#% increased Elemental Damage with Attack Skills", "better": 1, "matchers": [{"string": "공격 스킬의 원소 피해 #% 증가"}, {"string": "공격 스킬의 원소 피해 #% 감소", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_elemental_damage_with_attack_skills"], "explicit": ["explicit.stat_387439868"], "implicit": ["implicit.stat_387439868"], "fractured": ["fractured.stat_387439868"], "scourge": ["scourge.stat_387439868"], "crafted": ["crafted.stat_387439868"]}}} +{"ref": "#% increased Fire Damage", "better": 1, "matchers": [{"string": "화염 피해 #% 증가"}, {"string": "화염 피해 #% 감소", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_fire_damage"], "explicit": ["explicit.stat_3962278098"], "implicit": ["implicit.stat_3962278098"], "fractured": ["fractured.stat_3962278098"], "scourge": ["scourge.stat_3962278098"], "crafted": ["crafted.stat_3962278098"]}}} +{"ref": "#% increased Fire Damage with Attack Skills", "better": 1, "matchers": [{"string": "공격 스킬의 화염 피해 #% 증가"}, {"string": "공격 스킬의 화염 피해 #% 감소", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_fire_damage_with_attack_skills"], "implicit": ["implicit.stat_2468413380"]}}} +{"ref": "#% increased Fire Spell Damage", "better": 1, "matchers": [{"string": "화염 주문 피해 #% 증가 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_fire_spell_damage"]}}} +{"ref": "#% increased Lightning Damage", "better": 1, "matchers": [{"string": "번개 피해 #% 증가"}, {"string": "번개 피해 #% 감소", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_lightning_damage"], "explicit": ["explicit.stat_2231156303"], "implicit": ["implicit.stat_2231156303"], "fractured": ["fractured.stat_2231156303"], "scourge": ["scourge.stat_2231156303"], "crafted": ["crafted.stat_2231156303"]}}} +{"ref": "#% increased Lightning Damage with Attack Skills", "better": 1, "matchers": [{"string": "공격 스킬의 번개 피해 #% 증가"}, {"string": "공격 스킬의 번개 피해 #% 감소", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_lightning_damage_with_attack_skills"], "explicit": ["explicit.stat_4208907162"], "implicit": ["implicit.stat_4208907162"]}}} +{"ref": "#% increased Lightning Spell Damage", "better": 1, "matchers": [{"string": "번개 주문 피해 #% 증가 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_lightning_spell_damage"]}}} +{"ref": "#% increased Mana Regeneration Rate", "better": 1, "matchers": [{"string": "마나 재생 속도 #% 증가"}, {"string": "마나 재생 속도 #% 감소", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_mana_regen"], "explicit": ["explicit.stat_789117908"], "implicit": ["implicit.stat_789117908"], "fractured": ["fractured.stat_789117908"], "scourge": ["scourge.stat_789117908"], "crafted": ["crafted.stat_789117908"]}}} +{"ref": "#% increased Movement Speed", "better": 1, "matchers": [{"string": "이동 속도 #% 증가"}, {"string": "이동 속도 #% 감소", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_movement_speed"], "explicit": ["explicit.stat_2250533757"], "implicit": ["implicit.stat_2250533757"], "fractured": ["fractured.stat_2250533757"], "enchant": ["enchant.stat_2250533757"], "scourge": ["scourge.stat_2250533757"], "crafted": ["crafted.stat_2250533757"]}}} +{"ref": "#% increased Rarity of Items found", "better": 1, "matchers": [{"string": "발견하는 아이템 희귀도 #% 증가"}, {"string": "발견하는 아이템 희귀도 #% 감소", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_rarity"], "explicit": ["explicit.stat_3917489142"], "implicit": ["implicit.stat_3917489142"], "fractured": ["fractured.stat_3917489142"], "scourge": ["scourge.stat_3917489142"], "crafted": ["crafted.stat_3917489142"]}}} +{"ref": "#% increased Spell Damage", "better": 1, "matchers": [{"string": "주문 피해 #% 증가"}, {"string": "주문 피해 #% 감소", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_spell_damage"], "explicit": ["explicit.stat_2974417149"], "implicit": ["implicit.stat_2974417149"], "fractured": ["fractured.stat_2974417149"], "enchant": ["enchant.stat_2974417149"], "scourge": ["scourge.stat_2974417149"], "crafted": ["crafted.stat_2974417149"]}}} +{"ref": "#% of Life Regenerated per Second", "better": 1, "matchers": [{"string": "초당 생명력 재생의 #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_percent_life_regen"]}}} +{"ref": "#% of Physical Attack Damage Leeched as Life", "dp": true, "better": 1, "matchers": [{"string": "물리 공격 피해의 #%를 생명력으로 흡수"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_physical_attack_damage_leeched_as_life"], "explicit": ["explicit.stat_3593843976", "explicit.stat_55876295"], "implicit": ["implicit.stat_3593843976", "implicit.stat_55876295"], "fractured": ["fractured.stat_3593843976", "fractured.stat_55876295"], "scourge": ["scourge.stat_3593843976"], "crafted": ["crafted.stat_3593843976", "crafted.stat_55876295"]}}} +{"ref": "#% of Physical Attack Damage Leeched as Mana", "dp": true, "better": 1, "matchers": [{"string": "물리 공격 피해의 #%를 마나로 흡수"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_physical_attack_damage_leeched_as_mana"], "explicit": ["explicit.stat_3237948413", "explicit.stat_669069897"], "implicit": ["implicit.stat_3237948413", "implicit.stat_669069897"], "fractured": ["fractured.stat_3237948413", "fractured.stat_669069897"], "enchant": ["enchant.stat_669069897"], "scourge": ["scourge.stat_3237948413"], "crafted": ["crafted.stat_3237948413", "crafted.stat_669069897"]}}} +{"ref": "#% total increased maximum Energy Shield", "better": 1, "matchers": [{"string": "에너지 보호막 최대치 총 #% 증가 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_energy_shield"]}}} +{"ref": "#% total increased Physical Damage", "better": 1, "matchers": [{"string": "물리 피해 총 #% 증가 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_physical_damage"]}}} +{"ref": "+# total maximum Energy Shield", "better": 1, "matchers": [{"string": "에너지 보호막 최대치 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_energy_shield"]}}} +{"ref": "+# total maximum Life", "better": 1, "matchers": [{"string": "총 최대 생명력 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_life"]}}} +{"ref": "+# total maximum Mana", "better": 1, "matchers": [{"string": "총 최대 마나 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_mana"]}}} +{"ref": "+# total to all Attributes", "better": 1, "matchers": [{"string": "모든 능력치 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_all_attributes"]}}} +{"ref": "+# total to Dexterity", "better": 1, "matchers": [{"string": "민첩 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_dexterity"]}}} +{"ref": "+# total to Intelligence", "better": 1, "matchers": [{"string": "지능 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_intelligence"]}}} +{"ref": "+# total to Level of Socketed Aura Gems", "better": 1, "matchers": [{"string": "장착한 오라 스킬 젬 레벨 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_aura_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Bow Gems", "better": 1, "matchers": [{"string": "장착한 활 스킬 젬 레벨 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_bow_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Chaos Gems", "better": 1, "matchers": [{"string": "장착한 카오스 스킬 젬 레벨 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_chaos_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Cold Gems", "better": 1, "matchers": [{"string": "장착한 냉기 스킬 젬 레벨 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_cold_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Curse Gems", "better": 1, "matchers": [{"string": "장착한 저주 스킬 젬 레벨 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_curse_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Dexterity Gems", "better": 1, "matchers": [{"string": "장착한 민첩 스킬 젬 레벨 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_dexterity_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Elemental Gems", "better": 1, "matchers": [{"string": "장착한 원소 스킬 젬 레벨 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_elemental_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Fire Gems", "better": 1, "matchers": [{"string": "장착한 화염 스킬 젬 레벨 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_fire_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Gems", "better": 1, "matchers": [{"string": "장착된 스킬 젬 레벨 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Golem Gems", "better": 1, "matchers": [{"string": "장착한 골렘 스킬 젬 레벨 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_golem_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Intelligence Gems", "better": 1, "matchers": [{"string": "장착한 지능 스킬 젬 레벨 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_intelligence_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Lightning Gems", "better": 1, "matchers": [{"string": "장착한 번개 스킬 젬 레벨 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_lightning_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Melee Gems", "better": 1, "matchers": [{"string": "장착한 근접 공격 스킬 젬 레벨 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_melee_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Minion Gems", "better": 1, "matchers": [{"string": "장착한 소환수 스킬 젬 레벨 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_minion_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Movement Gems", "better": 1, "matchers": [{"string": "장착한 이동 스킬 젬 레벨 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_movement_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Projectile Gems", "better": 1, "matchers": [{"string": "장착한 투사체 스킬 젬 레벨 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_projectile_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Skill Gems", "better": 1, "matchers": [{"string": "장착한 스킬 젬 레벨 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_skill_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Spell Gems", "better": 1, "matchers": [{"string": "장착한 주문 스킬 젬 레벨 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_spell_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Strength Gems", "better": 1, "matchers": [{"string": "장착한 힘 스킬 젬 레벨 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_strength_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Support Gems", "better": 1, "matchers": [{"string": "장착한 보조 스킬 젬 레벨 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_support_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Vaal Gems", "better": 1, "matchers": [{"string": "장착한 바알 스킬 젬 레벨 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_vaal_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Warcry Gems", "better": 1, "matchers": [{"string": "장착한 함성 스킬 젬 레벨 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_warcry_gem_levels"]}}} +{"ref": "+# total to Strength", "better": 1, "matchers": [{"string": "힘 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_strength"]}}} +{"ref": "+#% Global Critical Strike Chance", "better": 1, "matchers": [{"string": "일반 치명타 확률 +#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_global_critical_strike_chance"]}}} +{"ref": "+#% Global Critical Strike Multiplier", "better": 1, "matchers": [{"string": "일반 치명타 피해 배율 +#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_global_critical_strike_multiplier"]}}} +{"ref": "+#% total Attack Speed", "better": 1, "matchers": [{"string": "총 공격 속도 +#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_attack_speed"]}}} +{"ref": "+#% total Cast Speed", "better": 1, "matchers": [{"string": "총 시전 속도 +#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_cast_speed"]}}} +{"ref": "+#% total Critical Strike Chance for Spells", "better": 1, "matchers": [{"string": "총 주문 치명타 확률 +#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_critical_strike_chance_for_spells"]}}} +{"ref": "+#% total Elemental Resistance", "better": 1, "matchers": [{"string": "원소 저항력 총 +#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_elemental_resistance"]}}} +{"ref": "+#% total Resistance", "better": 1, "matchers": [{"string": "총 저항 +#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_resistance"]}}} +{"ref": "+#% total to all Elemental Resistances", "better": 1, "matchers": [{"string": "모든 원소 저항력 총 +#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_all_elemental_resistances"]}}} +{"ref": "+#% total to Chaos Resistance", "better": 1, "matchers": [{"string": "카오스 저항 총 +#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_chaos_resistance"]}}} +{"ref": "+#% total to Cold Resistance", "better": 1, "matchers": [{"string": "냉기 저항 총 +#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_cold_resistance"]}}} +{"ref": "+#% total to Fire Resistance", "better": 1, "matchers": [{"string": "화염 저항 총 +#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_fire_resistance"]}}} +{"ref": "+#% total to Lightning Resistance", "better": 1, "matchers": [{"string": "번개 저항 총 +#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_lightning_resistance"]}}} +{"ref": "Adds # to # Chaos Damage", "better": 1, "matchers": [{"string": "카오스 피해 #~# 추가"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_chaos_damage"], "explicit": ["explicit.stat_2223678961", "explicit.stat_3531280422"], "implicit": ["implicit.stat_2223678961", "implicit.stat_3531280422"], "fractured": ["fractured.stat_2223678961"], "enchant": ["enchant.stat_2223678961"], "scourge": ["scourge.stat_2223678961"]}}} +{"ref": "Adds # to # Chaos Damage to Attacks", "better": 1, "matchers": [{"string": "공격 시 카오스 피해 #~# 추가"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_chaos_damage_to_attacks"], "explicit": ["explicit.stat_674553446"], "implicit": ["implicit.stat_674553446"], "fractured": ["fractured.stat_674553446"], "crafted": ["crafted.stat_674553446"]}}} +{"ref": "Adds # to # Chaos Damage to Spells", "better": 1, "matchers": [{"string": "주문 시전 시 카오스 피해 #~# 추가"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_chaos_damage_to_spells"], "explicit": ["explicit.stat_2300399854"], "implicit": ["implicit.stat_2300399854"], "fractured": ["fractured.stat_2300399854"]}}} +{"ref": "Adds # to # Cold Damage", "better": 1, "matchers": [{"string": "냉기 피해 #~# 추가"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_cold_damage"], "explicit": ["explicit.stat_1037193709", "explicit.stat_2387423236"], "implicit": ["implicit.stat_1037193709", "implicit.stat_2387423236"], "fractured": ["fractured.stat_1037193709", "fractured.stat_2387423236"], "enchant": ["enchant.stat_1037193709"], "scourge": ["scourge.stat_1037193709"], "crafted": ["crafted.stat_1037193709", "crafted.stat_2387423236"]}}} +{"ref": "Adds # to # Cold Damage to Attacks", "better": 1, "matchers": [{"string": "공격 시 냉기 피해 #~# 추가"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_cold_damage_to_attacks"], "explicit": ["explicit.stat_4067062424"], "implicit": ["implicit.stat_4067062424"], "fractured": ["fractured.stat_4067062424"], "crafted": ["crafted.stat_4067062424"]}}} +{"ref": "Adds # to # Cold Damage to Spells", "better": 1, "matchers": [{"string": "주문 시전 시 냉기 피해 #~# 추가"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_cold_damage_to_spells"], "explicit": ["explicit.stat_2469416729"], "implicit": ["implicit.stat_2469416729"], "fractured": ["fractured.stat_2469416729"], "scourge": ["scourge.stat_2469416729"], "crafted": ["crafted.stat_2469416729"]}}} +{"ref": "Adds # to # Damage", "better": 1, "matchers": [{"string": "# 피해에 # 추가 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_damage"]}}} +{"ref": "Adds # to # Damage to Attacks", "better": 1, "matchers": [{"string": "공격 시 # 피해에 # 추가 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_damage_to_attacks"]}}} +{"ref": "Adds # to # Damage to Spells", "better": 1, "matchers": [{"string": "주문 시전 시 # 피해에 # 추가 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_damage_to_spells"]}}} +{"ref": "Adds # to # Elemental Damage", "better": 1, "matchers": [{"string": "# 원소 피해에 # 추가 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_elemental_damage"]}}} +{"ref": "Adds # to # Elemental Damage to Attacks", "better": 1, "matchers": [{"string": "공격 시 # 원소 피해에 # 추가 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_elemental_damage_to_attacks"]}}} +{"ref": "Adds # to # Elemental Damage to Spells", "better": 1, "matchers": [{"string": "주문 시전 시 # 원소 피해에 # 추가 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_elemental_damage_to_spells"]}}} +{"ref": "Adds # to # Fire Damage", "better": 1, "matchers": [{"string": "화염 피해 #~# 추가"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_fire_damage"], "explicit": ["explicit.stat_321077055", "explicit.stat_709508406"], "implicit": ["implicit.stat_321077055", "implicit.stat_709508406"], "fractured": ["fractured.stat_321077055", "fractured.stat_709508406"], "enchant": ["enchant.stat_709508406"], "scourge": ["scourge.stat_709508406"], "crafted": ["crafted.stat_321077055", "crafted.stat_709508406"]}}} +{"ref": "Adds # to # Fire Damage to Attacks", "better": 1, "matchers": [{"string": "공격 시 화염 피해 #~# 추가"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_fire_damage_to_attacks"], "explicit": ["explicit.stat_1573130764"], "implicit": ["implicit.stat_1573130764"], "fractured": ["fractured.stat_1573130764"], "crafted": ["crafted.stat_1573130764"]}}} +{"ref": "Adds # to # Fire Damage to Spells", "better": 1, "matchers": [{"string": "주문 시전 시 화염 피해 #~# 추가"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_fire_damage_to_spells"], "explicit": ["explicit.stat_1133016593"], "implicit": ["implicit.stat_1133016593"], "fractured": ["fractured.stat_1133016593"], "scourge": ["scourge.stat_1133016593"], "crafted": ["crafted.stat_1133016593"]}}} +{"ref": "Adds # to # Lightning Damage", "better": 1, "matchers": [{"string": "번개 피해 #~# 추가"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_lightning_damage"], "explicit": ["explicit.stat_1334060246", "explicit.stat_3336890334"], "implicit": ["implicit.stat_1334060246", "implicit.stat_3336890334"], "fractured": ["fractured.stat_1334060246", "fractured.stat_3336890334"], "enchant": ["enchant.stat_3336890334"], "scourge": ["scourge.stat_3336890334"], "crafted": ["crafted.stat_1334060246", "crafted.stat_3336890334"]}}} +{"ref": "Adds # to # Lightning Damage to Attacks", "better": 1, "matchers": [{"string": "공격 시 번개 피해 #~# 추가"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_lightning_damage_to_attacks"], "explicit": ["explicit.stat_1754445556"], "implicit": ["implicit.stat_1754445556"], "fractured": ["fractured.stat_1754445556"], "crafted": ["crafted.stat_1754445556"]}}} +{"ref": "Adds # to # Lightning Damage to Spells", "better": 1, "matchers": [{"string": "주문 시전 시 번개 피해 #~# 추가"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_lightning_damage_to_spells"], "explicit": ["explicit.stat_2831165374"], "implicit": ["implicit.stat_2831165374"], "fractured": ["fractured.stat_2831165374"], "scourge": ["scourge.stat_2831165374"], "crafted": ["crafted.stat_2831165374"]}}} +{"ref": "Adds # to # Physical Damage", "better": 1, "matchers": [{"string": "물리 피해 #~# 추가"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_physical_damage"], "explicit": ["explicit.stat_1940865751", "explicit.stat_960081730"], "implicit": ["implicit.stat_1940865751"], "fractured": ["fractured.stat_1940865751", "fractured.stat_960081730"], "scourge": ["scourge.stat_1940865751"], "crafted": ["crafted.stat_1940865751"]}}} +{"ref": "Adds # to # Physical Damage to Attacks", "better": 1, "matchers": [{"string": "공격 시 물리 피해 #~# 추가"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_physical_damage_to_attacks"], "explicit": ["explicit.stat_3032590688"], "implicit": ["implicit.stat_3032590688"], "fractured": ["fractured.stat_3032590688"], "crafted": ["crafted.stat_3032590688"]}}} +{"ref": "Adds # to # Physical Damage to Spells", "better": 1, "matchers": [{"string": "주문 시전 시 물리 피해 #~# 추가"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_physical_damage_to_spells"], "explicit": ["explicit.stat_2435536961"], "implicit": ["implicit.stat_2435536961"], "fractured": ["fractured.stat_2435536961"], "scourge": ["scourge.stat_2435536961"]}}} +{"ref": "Has # Influences", "better": 1, "matchers": [{"string": "# 영향력이 부여되어 있습니다 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_influence_count"]}}} +{"ref": "Has Crusader Influence", "better": 1, "matchers": [{"string": "십자군 영향력이 부여되어 있습니다 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_crusader_influence"]}}} +{"ref": "Has Elder Influence", "better": 1, "matchers": [{"string": "엘더 영향력이 부여되어 있습니다 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_elder_influence"]}}} +{"ref": "Has Hunter Influence", "better": 1, "matchers": [{"string": "사냥꾼 영향력이 부여되어 있습니다 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_hunter_influence"]}}} +{"ref": "Has Logbook Area: Battleground Graves", "better": 1, "matchers": [{"string": "다음 일지 지역 보유: 전장 무덤 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_battleground_graves"]}}} +{"ref": "Has Logbook Area: Bluffs", "better": 1, "matchers": [{"string": "다음 일지 지역 보유: 절벽 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_bluffs"]}}} +{"ref": "Has Logbook Area: Cemetery", "better": 1, "matchers": [{"string": "다음 일지 지역 보유: 공동묘지 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_cemetery"]}}} +{"ref": "Has Logbook Area: Desert Ruins", "better": 1, "matchers": [{"string": "다음 일지 지역 보유: 사막 폐허 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_desert_ruins"]}}} +{"ref": "Has Logbook Area: Dried Riverbed", "better": 1, "matchers": [{"string": "다음 일지 지역 보유: 말라붙은 강바닥 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_dried_riverbed"]}}} +{"ref": "Has Logbook Area: Forest Ruins", "better": 1, "matchers": [{"string": "다음 일지 지역 보유: 숲 폐허 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_forest_ruins"]}}} +{"ref": "Has Logbook Area: Karui Wargraves", "better": 1, "matchers": [{"string": "다음 일지 지역 보유: 카루이 전쟁 무덤 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_karui_wargraves"]}}} +{"ref": "Has Logbook Area: Mountainside", "better": 1, "matchers": [{"string": "다음 일지 지역 보유: 산비탈 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_mountainside"]}}} +{"ref": "Has Logbook Area: Rotting Temple", "better": 1, "matchers": [{"string": "다음 일지 지역 보유: 썩어가는 사원 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_rotting_temple"]}}} +{"ref": "Has Logbook Area: Sarn Slums", "better": 1, "matchers": [{"string": "다음 일지 지역 보유: 사안 빈민가 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_sarn_slums"]}}} +{"ref": "Has Logbook Area: Scrublands", "better": 1, "matchers": [{"string": "다음 일지 지역 보유: 관목지 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_scrublands"]}}} +{"ref": "Has Logbook Area: Shipwreck Reef", "better": 1, "matchers": [{"string": "다음 일지 지역 보유: 난파선 암초 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_shipwreck_reef"]}}} +{"ref": "Has Logbook Area: Utzaal Outskirts", "better": 1, "matchers": [{"string": "다음 일지 지역 보유: 웃자알 외곽 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_utzaal_outskirts"]}}} +{"ref": "Has Logbook Area: Vaal Temple", "better": 1, "matchers": [{"string": "다음 일지 지역 보유: 바알 사원 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_vaal_temple"]}}} +{"ref": "Has Logbook Area: Volcanic Island", "better": 1, "matchers": [{"string": "다음 일지 지역 보유: 화산섬 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_volcano"]}}} +{"ref": "Has Logbook Faction: Black Scythe Mercenaries", "better": 0, "matchers": [{"string": "검은 낫 용병단"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_faction_mercenaries"]}}} +{"ref": "Has Logbook Faction: Druids of the Broken Circle", "better": 0, "matchers": [{"string": "끊어진 원의 드루이드"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_faction_druids"]}}} +{"ref": "Has Logbook Faction: Knights of the Sun", "better": 0, "matchers": [{"string": "태양의 기사단"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_faction_knights"]}}} +{"ref": "Has Logbook Faction: Order of the Chalice", "better": 0, "matchers": [{"string": "성배단"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_faction_order"]}}} +{"ref": "Has Redeemer Influence", "better": 1, "matchers": [{"string": "대속자 영향력이 부여되어 있습니다 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_redeemer_influence"]}}} +{"ref": "Has Room: Antechamber", "better": 0, "matchers": [{"string": "대기실"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_antechamber"]}, "option": true}} +{"ref": "Has Room: Apex of Ascension (Tier 3)", "better": 0, "matchers": [{"string": "승천의 정점 (3등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_sacrifice_room_3"]}, "option": true}} +{"ref": "Has Room: Apex of Atzoatl", "better": 0, "matchers": [{"string": "앗조아틀의 정점"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_apex"]}, "option": true}} +{"ref": "Has Room: Arena of Valour (Tier 2)", "better": 0, "matchers": [{"string": "용맹의 투기장 (2등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_weapon_room_2"]}, "option": true}} +{"ref": "Has Room: Armourer's Workshop (Tier 1)", "better": 0, "matchers": [{"string": "방어구 장인의 작업장 (1등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_armour_room_1"]}, "option": true}} +{"ref": "Has Room: Armoury (Tier 2)", "better": 0, "matchers": [{"string": "갑주 창고 (2등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_armour_room_2"]}, "option": true}} +{"ref": "Has Room: Atlas of Worlds (Tier 3)", "better": 0, "matchers": [{"string": "아틀라스의 세계 (3등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_cartography_room_3"]}, "option": true}} +{"ref": "Has Room: Automaton Lab (Tier 2)", "better": 0, "matchers": [{"string": "오토마톤 제조실 (2등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_minions_2"]}, "option": true}} +{"ref": "Has Room: Banquet Hall", "better": 0, "matchers": [{"string": "연회장"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_banquet_hall"]}, "option": true}} +{"ref": "Has Room: Barracks (Tier 2)", "better": 0, "matchers": [{"string": "주둔지 (2등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_breeding_room_2"]}, "option": true}} +{"ref": "Has Room: Breach Containment Chamber (Tier 2)", "better": 0, "matchers": [{"string": "균열 봉쇄 시설 (2등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_breach_room_2"]}, "option": true}} +{"ref": "Has Room: Catalyst of Corruption (Tier 2)", "better": 0, "matchers": [{"string": "타락의 기폭제 (2등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_corruption_room_2"]}, "option": true}} +{"ref": "Has Room: Cellar", "better": 0, "matchers": [{"string": "저장실"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_cellar"]}, "option": true}} +{"ref": "Has Room: Chamber of Iron (Tier 3)", "better": 0, "matchers": [{"string": "방어구의 방 (3등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_armour_room_3"]}, "option": true}} +{"ref": "Has Room: Chasm", "better": 0, "matchers": [{"string": "절벽길"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_chasm_room"]}, "option": true}} +{"ref": "Has Room: Cloister", "better": 0, "matchers": [{"string": "회랑"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_cloister"]}, "option": true}} +{"ref": "Has Room: Conduit of Lightning (Tier 3)", "better": 0, "matchers": [{"string": "번개의 도관 (3등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_lightning_3"]}, "option": true}} +{"ref": "Has Room: Corruption Chamber (Tier 1)", "better": 0, "matchers": [{"string": "타락의 방 (1등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_corruption_room_1"]}, "option": true}} +{"ref": "Has Room: Court of Sealed Death (Tier 3)", "better": 0, "matchers": [{"string": "봉인된 죽음의 법정 (3등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_strongbox_3"]}, "option": true}} +{"ref": "Has Room: Crucible of Flame (Tier 3)", "better": 0, "matchers": [{"string": "화염의 용광로 (3등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_fire_3"]}, "option": true}} +{"ref": "Has Room: Cultivar Chamber (Tier 2)", "better": 0, "matchers": [{"string": "컬티바의 방 (2등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_poison_room_2"]}, "option": true}} +{"ref": "Has Room: Defense Research Lab (Tier 3)", "better": 0, "matchers": [{"string": "방어물 연구소 (3등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_trap_room_3"]}, "option": true}} +{"ref": "Has Room: Demolition Lab (Tier 2)", "better": 0, "matchers": [{"string": "폭탄 제조실 (2등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_explosives_room_2"]}, "option": true}} +{"ref": "Has Room: Department of Thaumaturgy (Tier 2)", "better": 0, "matchers": [{"string": "마법부 (2등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_gem_room_2"]}, "option": true}} +{"ref": "Has Room: Doryani's Institute (Tier 3)", "better": 0, "matchers": [{"string": "도리아니의 학회 (3등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_gem_room_3"]}, "option": true}} +{"ref": "Has Room: Engineering Department (Tier 2)", "better": 0, "matchers": [{"string": "공학부 (2등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_workshop_2"]}, "option": true}} +{"ref": "Has Room: Explosives Room (Tier 1)", "better": 0, "matchers": [{"string": "폭발물 저장실 (1등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_explosives_room_1"]}, "option": true}} +{"ref": "Has Room: Factory (Tier 3)", "better": 0, "matchers": [{"string": "공장 (3등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_workshop_3"]}, "option": true}} +{"ref": "Has Room: Flame Workshop (Tier 1)", "better": 0, "matchers": [{"string": "화염 작업장 (1등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_fire_1"]}, "option": true}} +{"ref": "Has Room: Gemcutter's Workshop (Tier 1)", "better": 0, "matchers": [{"string": "세공사의 작업장 (1등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_gem_room_1"]}, "option": true}} +{"ref": "Has Room: Glittering Halls (Tier 3)", "better": 0, "matchers": [{"string": "번쩍이는 복도 (3등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_trinket_room_3"]}, "option": true}} +{"ref": "Has Room: Guardhouse (Tier 1)", "better": 0, "matchers": [{"string": "위병소 (1등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_breeding_room_1"]}, "option": true}} +{"ref": "Has Room: Hall of Champions (Tier 3)", "better": 0, "matchers": [{"string": "용사의 전당 (3등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_weapon_room_3"]}, "option": true}} +{"ref": "Has Room: Hall of Heroes (Tier 2)", "better": 0, "matchers": [{"string": "영웅의 전당 (2등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_legion_2"]}, "option": true}} +{"ref": "Has Room: Hall of Legends (Tier 3)", "better": 0, "matchers": [{"string": "전설의 전당 (3등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_legion_3"]}, "option": true}} +{"ref": "Has Room: Hall of Locks (Tier 2)", "better": 0, "matchers": [{"string": "자물쇠의 전당 (2등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_strongbox_2"]}, "option": true}} +{"ref": "Has Room: Hall of Lords (Tier 2)", "better": 0, "matchers": [{"string": "군주의 전당 (2등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_queens_chambers_2"]}, "option": true}} +{"ref": "Has Room: Hall of Mettle (Tier 1)", "better": 0, "matchers": [{"string": "패기의 전당 (1등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_legion_1"]}, "option": true}} +{"ref": "Has Room: Hall of Offerings (Tier 2)", "better": 0, "matchers": [{"string": "공물의 전당 (2등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_sacrifice_room_2"]}, "option": true}} +{"ref": "Has Room: Hall of War (Tier 3)", "better": 0, "matchers": [{"string": "전쟁의 전당 (3등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_breeding_room_3"]}, "option": true}} +{"ref": "Has Room: Halls", "better": 0, "matchers": [{"string": "복도"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_halls"]}, "option": true}} +{"ref": "Has Room: Hatchery (Tier 1)", "better": 0, "matchers": [{"string": "부화장 (1등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_minions_1"]}, "option": true}} +{"ref": "Has Room: House of the Others (Tier 3)", "better": 0, "matchers": [{"string": "다른 존재의 보금자리 (3등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_breach_room_3"]}, "option": true}} +{"ref": "Has Room: Hurricane Engine (Tier 2)", "better": 0, "matchers": [{"string": "폭풍 장치 (2등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_storm_room_2"]}, "option": true}} +{"ref": "Has Room: Hybridisation Chamber (Tier 3)", "better": 0, "matchers": [{"string": "잡종화의 방 (3등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_minions_3"]}, "option": true}} +{"ref": "Has Room: Jeweller's Workshop (Tier 1)", "better": 0, "matchers": [{"string": "보석 상인의 작업장 (1등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_trinket_room_1"]}, "option": true}} +{"ref": "Has Room: Jewellery Forge (Tier 2)", "better": 0, "matchers": [{"string": "장신구 제련소 (2등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_trinket_room_2"]}, "option": true}} +{"ref": "Has Room: Lightning Workshop (Tier 1)", "better": 0, "matchers": [{"string": "번개 작업장 (1등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_lightning_1"]}, "option": true}} +{"ref": "Has Room: Locus of Corruption (Tier 3)", "better": 0, "matchers": [{"string": "타락의 현장 (3등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_corruption_room_3"]}, "option": true}} +{"ref": "Has Room: Museum of Artefacts (Tier 3)", "better": 0, "matchers": [{"string": "유물 박물관 (3등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_chests_3"]}, "option": true}} +{"ref": "Has Room: Office of Cartography (Tier 2)", "better": 0, "matchers": [{"string": "지도 제작소 (2등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_cartography_room_2"]}, "option": true}} +{"ref": "Has Room: Omnitect Forge (Tier 2)", "better": 0, "matchers": [{"string": "종합체 제련소 (2등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_fire_2"]}, "option": true}} +{"ref": "Has Room: Omnitect Reactor Plant (Tier 2)", "better": 0, "matchers": [{"string": "종합체 원전 시설 (2등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_lightning_2"]}, "option": true}} +{"ref": "Has Room: Passageways", "better": 0, "matchers": [{"string": "통로"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_passageways"]}, "option": true}} +{"ref": "Has Room: Pits", "better": 0, "matchers": [{"string": "구덩이"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_the_pits"]}, "option": true}} +{"ref": "Has Room: Poison Garden (Tier 1)", "better": 0, "matchers": [{"string": "독초 정원 (1등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_poison_room_1"]}, "option": true}} +{"ref": "Has Room: Pools of Restoration (Tier 1)", "better": 0, "matchers": [{"string": "회복의 웅덩이 (1등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_healing_room_1"]}, "option": true}} +{"ref": "Has Room: Royal Meeting Room (Tier 1)", "better": 0, "matchers": [{"string": "왕실 회의실 (1등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_queens_chambers_1"]}, "option": true}} +{"ref": "Has Room: Sacrificial Chamber (Tier 1)", "better": 0, "matchers": [{"string": "희생의 방 (1등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_sacrifice_room_1"]}, "option": true}} +{"ref": "Has Room: Sadist's Den (Tier 3)", "better": 0, "matchers": [{"string": "가학자의 굴 (3등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_torment_3"]}, "option": true}} +{"ref": "Has Room: Sanctum of Immortality (Tier 3)", "better": 0, "matchers": [{"string": "불멸의 지성소 (3등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_healing_room_3"]}, "option": true}} +{"ref": "Has Room: Sanctum of Unity (Tier 2)", "better": 0, "matchers": [{"string": "단결의 지성소 (2등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_empowering_room_2"]}, "option": true}} +{"ref": "Has Room: Sanctum of Vitality (Tier 2)", "better": 0, "matchers": [{"string": "활력의 지성소 (2등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_healing_room_2"]}, "option": true}} +{"ref": "Has Room: Shrine of Empowerment (Tier 1)", "better": 0, "matchers": [{"string": "강화의 성소 (1등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_empowering_room_1"]}, "option": true}} +{"ref": "Has Room: Shrine of Unmaking (Tier 3)", "better": 0, "matchers": [{"string": "파괴의 성소 (3등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_explosives_room_3"]}, "option": true}} +{"ref": "Has Room: Sparring Room (Tier 1)", "better": 0, "matchers": [{"string": "격투장 (1등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_weapon_room_1"]}, "option": true}} +{"ref": "Has Room: Splinter Research Lab (Tier 1)", "better": 0, "matchers": [{"string": "파편 연구소 (1등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_breach_room_1"]}, "option": true}} +{"ref": "Has Room: Storage Room (Tier 1)", "better": 0, "matchers": [{"string": "저장고 (1등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_chests_1"]}, "option": true}} +{"ref": "Has Room: Storm of Corruption (Tier 3)", "better": 0, "matchers": [{"string": "타락의 태풍 (3등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_storm_room_3"]}, "option": true}} +{"ref": "Has Room: Strongbox Chamber (Tier 1)", "better": 0, "matchers": [{"string": "금고의 방 (1등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_strongbox_1"]}, "option": true}} +{"ref": "Has Room: Surveyor's Study (Tier 1)", "better": 0, "matchers": [{"string": "측량사의 조사 (1등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_cartography_room_1"]}, "option": true}} +{"ref": "Has Room: Tempest Generator (Tier 1)", "better": 0, "matchers": [{"string": "폭풍 제조기 (1등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_storm_room_1"]}, "option": true}} +{"ref": "Has Room: Temple Defense Workshop (Tier 2)", "better": 0, "matchers": [{"string": "사원 방어물 작업장 (2등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_trap_room_2"]}, "option": true}} +{"ref": "Has Room: Temple Nexus (Tier 3)", "better": 0, "matchers": [{"string": "사원의 연결부 (3등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_empowering_room_3"]}, "option": true}} +{"ref": "Has Room: Throne of Atziri (Tier 3)", "better": 0, "matchers": [{"string": "앗지리의 왕좌 (3등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_queens_chambers_3"]}, "option": true}} +{"ref": "Has Room: Tombs", "better": 0, "matchers": [{"string": "무덤"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_tombs"]}, "option": true}} +{"ref": "Has Room: Torment Cells (Tier 1)", "better": 0, "matchers": [{"string": "고문용 감방 (1등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_torment_1"]}, "option": true}} +{"ref": "Has Room: Torture Cages (Tier 2)", "better": 0, "matchers": [{"string": "고문용 창살 (2등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_torment_2"]}, "option": true}} +{"ref": "Has Room: Toxic Grove (Tier 3)", "better": 0, "matchers": [{"string": "독성 수목원 (3등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_poison_room_3"]}, "option": true}} +{"ref": "Has Room: Trap Workshop (Tier 1)", "better": 0, "matchers": [{"string": "덫 작업장 (1등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_trap_room_1"]}, "option": true}} +{"ref": "Has Room: Treasury (Tier 2)", "better": 0, "matchers": [{"string": "보물 창고 (2등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_currency_vault_2"]}, "option": true}} +{"ref": "Has Room: Tunnels", "better": 0, "matchers": [{"string": "터널"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_tunnels"]}, "option": true}} +{"ref": "Has Room: Vault (Tier 1)", "better": 0, "matchers": [{"string": "금고실 (1등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_currency_vault_1"]}, "option": true}} +{"ref": "Has Room: Warehouses (Tier 2)", "better": 0, "matchers": [{"string": "창고 (2등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_chests_2"]}, "option": true}} +{"ref": "Has Room: Wealth of the Vaal (Tier 3)", "better": 0, "matchers": [{"string": "바알의 재물 (3등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_currency_vault_3"]}, "option": true}} +{"ref": "Has Room: Workshop (Tier 1)", "better": 0, "matchers": [{"string": "작업장 (1등급)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_workshop_1"]}, "option": true}} +{"ref": "Has Shaper Influence", "better": 1, "matchers": [{"string": "쉐이퍼 영향력이 부여되어 있습니다 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_shaper_influence"]}}} +{"ref": "Has Warlord Influence", "better": 1, "matchers": [{"string": "전쟁군주 영향력이 부여되어 있습니다 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_warlord_influence"]}}} +{"ref": "Mirrored Tablet has # Islands", "better": 1, "matchers": [{"string": "복제 서판이 섬 #개 보유 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_lake_number_of_islands"]}}} +{"ref": "More Currency: #%", "better": 1, "matchers": [{"string": "화폐 더 많음: #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_more_currency_drops"]}}} +{"ref": "More Divination Cards: #%", "better": 1, "matchers": [{"string": "점술 카드 더 많음: #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_more_card_drops"]}}} +{"ref": "More Maps: #%", "better": 1, "matchers": [{"string": "지도 더 많음: #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_more_map_drops"]}}} +{"ref": "More Scarabs: #%", "better": 1, "matchers": [{"string": "갑충석 더 많음: #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_more_scarab_drops"]}}} +{"ref": "Quality (Attack Modifiers): #%", "better": 1, "matchers": [{"string": "퀄리티 (공격 속성 부여): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_attack_quality"]}}} +{"ref": "Quality (Attribute Modifiers): #%", "better": 1, "matchers": [{"string": "퀄리티 (능력치 속성 부여): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_attribute_quality"]}}} +{"ref": "Quality (Caster Modifiers): #%", "better": 1, "matchers": [{"string": "퀄리티 (시전 속성 부여): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_caster_quality"]}}} +{"ref": "Quality (Critical Modifiers): #%", "better": 1, "matchers": [{"string": "퀄리티 (치명타 속성 부여): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_critical_quality"]}}} +{"ref": "Quality (Currency): #%", "better": 1, "matchers": [{"string": "퀄리티 (화폐): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_quality_currency"]}}} +{"ref": "Quality (Defence Modifiers): #%", "better": 1, "matchers": [{"string": "퀄리티 (방어 속성 부여): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_defense_quality"]}}} +{"ref": "Quality (Divination Cards): #%", "better": 1, "matchers": [{"string": "퀄리티 (점술 카드): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_quality_cards"]}}} +{"ref": "Quality (Elemental Damage Modifiers): #%", "better": 1, "matchers": [{"string": "퀄리티 (원소 피해 속성 부여): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_elemental_quality"]}}} +{"ref": "Quality (Life and Mana Modifiers): #%", "better": 1, "matchers": [{"string": "퀄리티 (생명력과 마나 속성 부여): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_resource_quality"]}}} +{"ref": "Quality (Pack Size): #%", "better": 1, "matchers": [{"string": "퀄리티 (무리 규모): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_quality_pack_size"]}}} +{"ref": "Quality (Physical and Chaos Damage Modifiers): #%", "better": 1, "matchers": [{"string": "퀄리티 (물리 및 카오스 피해 속성 부여): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_physical_chaos_quality"]}}} +{"ref": "Quality (Rarity): #%", "better": 1, "matchers": [{"string": "퀄리티 (희귀도): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_quality_rarity"]}}} +{"ref": "Quality (Resistance Modifiers): #%", "better": 1, "matchers": [{"string": "퀄리티 (저항 속성 부여): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_resistance_quality"]}}} +{"ref": "Quality (Scarabs): #%", "better": 1, "matchers": [{"string": "퀄리티 (갑충석): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_quality_scarabs"]}}} +{"ref": "Quality (Speed Modifiers): #%", "better": 1, "matchers": [{"string": "퀄리티 (속도 속성 부여): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_speed_quality"]}}} +{"ref": "Reflection of Abyss (Difficulty #)", "better": 1, "matchers": [{"string": "심연의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_38892"]}}} +{"ref": "Reflection of Ambush (Difficulty #)", "better": 1, "matchers": [{"string": "매복의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_48307"]}}} +{"ref": "Reflection of Angling (Difficulty #)", "better": 1, "matchers": [{"string": "강태공의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_40794"]}}} +{"ref": "Reflection of Azurite (Difficulty #)", "better": 1, "matchers": [{"string": "남동석의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_40031"]}}} +{"ref": "Reflection of Bestiary (Difficulty #)", "better": 1, "matchers": [{"string": "야수 도감의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_55569"]}}} +{"ref": "Reflection of Breach (Difficulty #)", "better": 1, "matchers": [{"string": "균열의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_62572"]}}} +{"ref": "Reflection of Brutality (Difficulty #)", "better": 1, "matchers": [{"string": "잔인성의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_29096"]}}} +{"ref": "Reflection of Camaraderie (Difficulty #)", "better": 1, "matchers": [{"string": "전우애의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_35395"]}}} +{"ref": "Reflection of Catalysis (Difficulty #)", "better": 1, "matchers": [{"string": "촉매의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_57850"]}}} +{"ref": "Reflection of Chaos (Difficulty #)", "better": 1, "matchers": [{"string": "혼돈의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_50834"]}}} +{"ref": "Reflection of Conflict (Difficulty #)", "better": 1, "matchers": [{"string": "갈등의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_1931"]}}} +{"ref": "Reflection of Darkness (Difficulty #)", "better": 1, "matchers": [{"string": "어둠의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_34457"]}}} +{"ref": "Reflection of Delirium (Difficulty #)", "better": 1, "matchers": [{"string": "환영의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_22138"]}}} +{"ref": "Reflection of Delve (Difficulty #)", "better": 1, "matchers": [{"string": "탐광의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_18737"]}}} +{"ref": "Reflection of Demonfire (Difficulty #)", "better": 1, "matchers": [{"string": "악마불의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_28500"]}}} +{"ref": "Reflection of Domination (Difficulty #)", "better": 1, "matchers": [{"string": "지배의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_63412"]}}} +{"ref": "Reflection of Entrapment (Difficulty #)", "better": 1, "matchers": [{"string": "속박의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_44399"]}}} +{"ref": "Reflection of Essence (Difficulty #)", "better": 1, "matchers": [{"string": "에센스의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_49862"]}}} +{"ref": "Reflection of Experimentation (Difficulty #)", "better": 1, "matchers": [{"string": "실험의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_55676"]}}} +{"ref": "Reflection of Flame (Difficulty #)", "better": 1, "matchers": [{"string": "화염의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_42468"]}}} +{"ref": "Reflection of Fractured Dimensions (Difficulty #)", "better": 1, "matchers": [{"string": "분열된 차원의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_49488"]}}} +{"ref": "Reflection of Frost (Difficulty #)", "better": 1, "matchers": [{"string": "서리의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_38110"]}}} +{"ref": "Reflection of Guilt (Difficulty #)", "better": 1, "matchers": [{"string": "죄책감의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_25480"]}}} +{"ref": "Reflection of Imprisonment (Difficulty #)", "better": 1, "matchers": [{"string": "갇힘의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_10363"]}}} +{"ref": "Reflection of Kalandra (Difficulty #)", "better": 1, "matchers": [{"string": "칼란드라의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_36591"]}}} +{"ref": "Reflection of Legion (Difficulty #)", "better": 1, "matchers": [{"string": "군단의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_403"]}}} +{"ref": "Reflection of Metamorph (Difficulty #)", "better": 1, "matchers": [{"string": "변형의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_3699"]}}} +{"ref": "Reflection of Occultism (Difficulty #)", "better": 1, "matchers": [{"string": "비술의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_24451"]}}} +{"ref": "Reflection of Paradise (Difficulty #)", "better": 1, "matchers": [{"string": "낙원의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_50846"]}}} +{"ref": "Reflection of Perverted Faith (Difficulty #)", "better": 1, "matchers": [{"string": "엇나간 믿음의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_27678"]}}} +{"ref": "Reflection of Phaaryl (Difficulty #)", "better": 1, "matchers": [{"string": "파아릴의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_7674"]}}} +{"ref": "Reflection of Possession (Difficulty #)", "better": 1, "matchers": [{"string": "빙의의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_25049"]}}} +{"ref": "Reflection of Power (Difficulty #)", "better": 1, "matchers": [{"string": "힘의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_35950"]}}} +{"ref": "Reflection of Scourge (Difficulty #)", "better": 1, "matchers": [{"string": "스컬지의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_62360"]}}} +{"ref": "Reflection of Stasis (Difficulty #)", "better": 1, "matchers": [{"string": "정체의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_32968"]}}} +{"ref": "Reflection of Sulphite (Difficulty #)", "better": 1, "matchers": [{"string": "아황산염의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_45086"]}}} +{"ref": "Reflection of the Black Scythe (Difficulty #)", "better": 1, "matchers": [{"string": "검은 낫의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_9662"]}}} +{"ref": "Reflection of the Breachlord (Difficulty #)", "better": 1, "matchers": [{"string": "균열 군주의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_62935"]}}} +{"ref": "Reflection of the Broken Circle (Difficulty #)", "better": 1, "matchers": [{"string": "끊어진 원의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_43128"]}}} +{"ref": "Reflection of the Chalice (Difficulty #)", "better": 1, "matchers": [{"string": "성배의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_64561"]}}} +{"ref": "Reflection of the Chasm (Difficulty #)", "better": 1, "matchers": [{"string": "절벽길의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_57101"]}}} +{"ref": "Reflection of the Dream (Difficulty #)", "better": 1, "matchers": [{"string": "꿈의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_27117"]}}} +{"ref": "Reflection of the Harbingers (Difficulty #)", "better": 1, "matchers": [{"string": "선구자의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_37203"]}}} +{"ref": "Reflection of the Hunter (Difficulty #)", "better": 1, "matchers": [{"string": "사냥꾼의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_18816"]}}} +{"ref": "Reflection of the Monolith (Difficulty #)", "better": 1, "matchers": [{"string": "기둥의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_34796"]}}} +{"ref": "Reflection of the Nightmare (Difficulty #)", "better": 1, "matchers": [{"string": "악몽의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_24232"]}}} +{"ref": "Reflection of the Storm (Difficulty #)", "better": 1, "matchers": [{"string": "태풍의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_2745"]}}} +{"ref": "Reflection of the Sun (Difficulty #)", "better": 1, "matchers": [{"string": "태양의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_60034"]}}} +{"ref": "Reflection of the Trove (Difficulty #)", "better": 1, "matchers": [{"string": "발견물의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_46772"]}}} +{"ref": "Reflection of the Wilderness (Difficulty #)", "better": 1, "matchers": [{"string": "황야의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_29224"]}}} +{"ref": "Reflection of Thralldom (Difficulty #)", "better": 1, "matchers": [{"string": "예속의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_26813"]}}} +{"ref": "Reflection of Torment (Difficulty #)", "better": 1, "matchers": [{"string": "고통의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_53950"]}}} +{"ref": "Reflection of Tyranny (Difficulty #)", "better": 1, "matchers": [{"string": "폭정의 투영 (난이도 #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_60981"]}}} diff --git a/renderer/public/.DS_Store/vendor/pseudo-stats/ko/pseudo_stats.ndjson b/renderer/public/.DS_Store/vendor/pseudo-stats/ko/pseudo_stats.ndjson new file mode 100644 index 000000000..db271f4ec --- /dev/null +++ b/renderer/public/.DS_Store/vendor/pseudo-stats/ko/pseudo_stats.ndjson @@ -0,0 +1,32 @@ +{"ref": "# Life Regenerated per Second", "better": 1, "matchers": [{"string": "초당 생명력 재생 #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_life_regen"]}}} +{"ref": "#% increased Burning Damage", "better": 1, "matchers": [{"string": "화상 피해 #% 증가"}, {"string": "화상 피해 #% 감소", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_burning_damage"], "explicit": ["explicit.stat_1175385867"], "implicit": ["implicit.stat_1175385867"], "fractured": ["fractured.stat_1175385867"]}}} +{"ref": "#% increased Cold Damage", "better": 1, "matchers": [{"string": "냉기 피해 #% 증가"}, {"string": "냉기 피해 #% 감소", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_cold_damage"], "explicit": ["explicit.stat_3291658075"], "implicit": ["implicit.stat_3291658075"], "fractured": ["fractured.stat_3291658075"], "scourge": ["scourge.stat_3291658075"], "crafted": ["crafted.stat_3291658075"]}}} +{"ref": "#% increased Cold Spell Damage", "better": 1, "matchers": [{"string": "냉기 주문 피해 #% 증가 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_cold_spell_damage"]}}} +{"ref": "#% increased Elemental Damage", "better": 1, "matchers": [{"string": "원소 피해 #% 증가"}, {"string": "원소 피해 #% 감소", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_elemental_damage"], "explicit": ["explicit.stat_3141070085"], "implicit": ["implicit.stat_3141070085"], "fractured": ["fractured.stat_3141070085"], "enchant": ["enchant.stat_692420067"], "scourge": ["scourge.stat_3141070085"]}}} +{"ref": "#% increased Elemental Damage with Attack Skills", "better": 1, "matchers": [{"string": "공격 스킬의 원소 피해 #% 증가"}, {"string": "공격 스킬의 원소 피해 #% 감소", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_elemental_damage_with_attack_skills"], "explicit": ["explicit.stat_387439868"], "implicit": ["implicit.stat_387439868"], "fractured": ["fractured.stat_387439868"], "scourge": ["scourge.stat_387439868"], "crafted": ["crafted.stat_387439868"]}}} +{"ref": "#% increased Fire Damage", "better": 1, "matchers": [{"string": "화염 피해 #% 증가"}, {"string": "화염 피해 #% 감소", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_fire_damage"], "explicit": ["explicit.stat_3962278098"], "implicit": ["implicit.stat_3962278098"], "fractured": ["fractured.stat_3962278098"], "scourge": ["scourge.stat_3962278098"], "crafted": ["crafted.stat_3962278098"]}}} +{"ref": "#% increased Fire Spell Damage", "better": 1, "matchers": [{"string": "화염 주문 피해 #% 증가 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_fire_spell_damage"]}}} +{"ref": "#% increased Lightning Damage", "better": 1, "matchers": [{"string": "번개 피해 #% 증가"}, {"string": "번개 피해 #% 감소", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_lightning_damage"], "explicit": ["explicit.stat_2231156303"], "implicit": ["implicit.stat_2231156303"], "fractured": ["fractured.stat_2231156303"], "scourge": ["scourge.stat_2231156303"], "crafted": ["crafted.stat_2231156303"]}}} +{"ref": "#% increased Lightning Spell Damage", "better": 1, "matchers": [{"string": "번개 주문 피해 #% 증가 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_lightning_spell_damage"]}}} +{"ref": "#% increased Mana Regeneration Rate", "better": 1, "matchers": [{"string": "마나 재생 속도 #% 증가"}, {"string": "마나 재생 속도 #% 감소", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_mana_regen"], "explicit": ["explicit.stat_789117908"], "implicit": ["implicit.stat_789117908"], "fractured": ["fractured.stat_789117908"], "scourge": ["scourge.stat_789117908"], "crafted": ["crafted.stat_789117908"]}}} +{"ref": "#% increased Movement Speed", "better": 1, "matchers": [{"string": "이동 속도 #% 증가"}, {"string": "이동 속도 #% 감소", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_movement_speed"], "explicit": ["explicit.stat_2250533757"], "implicit": ["implicit.stat_2250533757"], "fractured": ["fractured.stat_2250533757"], "enchant": ["enchant.stat_2250533757"], "scourge": ["scourge.stat_2250533757"], "crafted": ["crafted.stat_2250533757"]}}} +{"ref": "#% increased Spell Damage", "better": 1, "matchers": [{"string": "주문 피해 #% 증가"}, {"string": "주문 피해 #% 감소", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_spell_damage"], "explicit": ["explicit.stat_2974417149"], "implicit": ["implicit.stat_2974417149"], "fractured": ["fractured.stat_2974417149"], "enchant": ["enchant.stat_2974417149"], "scourge": ["scourge.stat_2974417149"], "crafted": ["crafted.stat_2974417149"]}}} +{"ref": "#% of Physical Attack Damage Leeched as Life", "dp": true, "better": 1, "matchers": [{"string": "물리 공격 피해의 #%를 생명력으로 흡수"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_physical_attack_damage_leeched_as_life"], "explicit": ["explicit.stat_3593843976", "explicit.stat_55876295"], "implicit": ["implicit.stat_3593843976", "implicit.stat_55876295"], "fractured": ["fractured.stat_3593843976", "fractured.stat_55876295"], "scourge": ["scourge.stat_3593843976"], "crafted": ["crafted.stat_3593843976", "crafted.stat_55876295"]}}} +{"ref": "#% of Physical Attack Damage Leeched as Mana", "dp": true, "better": 1, "matchers": [{"string": "물리 공격 피해의 #%를 마나로 흡수"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_physical_attack_damage_leeched_as_mana"], "explicit": ["explicit.stat_3237948413", "explicit.stat_669069897"], "implicit": ["implicit.stat_3237948413", "implicit.stat_669069897"], "fractured": ["fractured.stat_3237948413", "fractured.stat_669069897"], "enchant": ["enchant.stat_669069897"], "scourge": ["scourge.stat_3237948413"], "crafted": ["crafted.stat_3237948413", "crafted.stat_669069897"]}}} +{"ref": "#% total increased Physical Damage", "better": 1, "matchers": [{"string": "물리 피해 총 #% 증가 "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_physical_damage"]}}} +{"ref": "+# total maximum Energy Shield", "better": 1, "matchers": [{"string": "에너지 보호막 최대치 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_energy_shield"]}}} +{"ref": "+# total maximum Life", "better": 1, "matchers": [{"string": "총 최대 생명력 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_life"]}}} +{"ref": "+# total maximum Mana", "better": 1, "matchers": [{"string": "총 최대 마나 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_mana"]}}} +{"ref": "+# total to all Attributes", "better": 1, "matchers": [{"string": "모든 능력치 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_all_attributes"]}}} +{"ref": "+# total to Dexterity", "better": 1, "matchers": [{"string": "민첩 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_dexterity"]}}} +{"ref": "+# total to Intelligence", "better": 1, "matchers": [{"string": "지능 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_intelligence"]}}} +{"ref": "+# total to Strength", "better": 1, "matchers": [{"string": "힘 총 +# "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_strength"]}}} +{"ref": "+#% Global Critical Strike Chance", "better": 1, "matchers": [{"string": "일반 치명타 확률 +#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_global_critical_strike_chance"]}}} +{"ref": "+#% Global Critical Strike Multiplier", "better": 1, "matchers": [{"string": "일반 치명타 피해 배율 +#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_global_critical_strike_multiplier"]}}} +{"ref": "+#% total Attack Speed", "better": 1, "matchers": [{"string": "총 공격 속도 +#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_attack_speed"]}}} +{"ref": "+#% total Cast Speed", "better": 1, "matchers": [{"string": "총 시전 속도 +#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_cast_speed"]}}} +{"ref": "+#% total Elemental Resistance", "better": 1, "matchers": [{"string": "원소 저항력 총 +#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_elemental_resistance"]}}} +{"ref": "+#% total to Chaos Resistance", "better": 1, "matchers": [{"string": "카오스 저항 총 +#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_chaos_resistance"]}}} +{"ref": "+#% total to Cold Resistance", "better": 1, "matchers": [{"string": "냉기 저항 총 +#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_cold_resistance"]}}} +{"ref": "+#% total to Fire Resistance", "better": 1, "matchers": [{"string": "화염 저항 총 +#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_fire_resistance"]}}} +{"ref": "+#% total to Lightning Resistance", "better": 1, "matchers": [{"string": "번개 저항 총 +#% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_lightning_resistance"]}}} diff --git a/renderer/public/.DS_Store/vendor/pseudo-stats/pseudo-parse.py b/renderer/public/.DS_Store/vendor/pseudo-stats/pseudo-parse.py new file mode 100644 index 000000000..c0a7e2220 --- /dev/null +++ b/renderer/public/.DS_Store/vendor/pseudo-stats/pseudo-parse.py @@ -0,0 +1,54 @@ +import json +import os + + +def get_script_dir(): + """Returns the directory where the script is located.""" + return os.path.dirname(os.path.realpath(__file__)) + + +# List of localization codes +localizations = ["en", "ru", "ko", "cmn-Hant"] + +key_to_find = "trade.ids.pseudo" # The specific key path to check for + + +def has_nested_key(obj, key_path): + keys = key_path.split(".") + for key in keys: + if isinstance(obj, dict) and key in obj: + obj = obj[key] + else: + return False + return True + + +def process_file(input_file_path, output_file_path): + result_list = [] + + # Use 'utf-8' encoding when opening the input file + with open(input_file_path, "r", encoding="utf-8") as input_file: + for line in input_file: + try: + json_object = json.loads(line) + if has_nested_key(json_object, key_to_find): + result_list.append(json_object) + except json.JSONDecodeError as e: + print(f"Error parsing JSON: {e}") + + with open(output_file_path, "w", encoding="utf-8") as output_file: + for item in result_list: + output_file.write(json.dumps(item, ensure_ascii=False) + "\n") + + print( + f"Processing complete for {input_file_path}. Check {output_file_path} for results." + ) + + +if __name__ == "__main__": + for loc in localizations: + input_file_path = f"{get_script_dir()}/../../data/{loc}/stats.ndjson.old" # Path to the input file + output_file_path = ( + f"{get_script_dir()}/{loc}/all-pseudo.ndjson" # Path to the output file + ) + process_file(input_file_path, output_file_path) diff --git a/renderer/public/.DS_Store/vendor/pseudo-stats/pseudo_keys.ndjson b/renderer/public/.DS_Store/vendor/pseudo-stats/pseudo_keys.ndjson new file mode 100644 index 000000000..743c5f47b --- /dev/null +++ b/renderer/public/.DS_Store/vendor/pseudo-stats/pseudo_keys.ndjson @@ -0,0 +1,32 @@ +{"ref": "+#% total Elemental Resistance", "better": 1, "matchers": [{"string": "+#% total Elemental Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_elemental_resistance"]}}} +{"ref": "+#% total to Fire Resistance", "better": 1, "matchers": [{"string": "+#% total to Fire Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_fire_resistance"]}}} +{"ref": "+#% total to Cold Resistance", "better": 1, "matchers": [{"string": "+#% total to Cold Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_cold_resistance"]}}} +{"ref": "+#% total to Lightning Resistance", "better": 1, "matchers": [{"string": "+#% total to Lightning Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_lightning_resistance"]}}} +{"ref": "+#% total to Chaos Resistance", "better": 1, "matchers": [{"string": "+#% total to Chaos Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_chaos_resistance"]}}} +{"ref": "+# total to all Attributes", "better": 1, "matchers": [{"string": "+# total to all Attributes "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_all_attributes"]}}} +{"ref": "+# total to Strength", "better": 1, "matchers": [{"string": "+# total to Strength "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_strength"]}}} +{"ref": "+# total to Dexterity", "better": 1, "matchers": [{"string": "+# total to Dexterity "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_dexterity"]}}} +{"ref": "+# total to Intelligence", "better": 1, "matchers": [{"string": "+# total to Intelligence "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_intelligence"]}}} +{"ref": "+# total maximum Life", "better": 1, "matchers": [{"string": "+# total maximum Life "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_life"]}}} +{"ref": "+# total maximum Mana", "better": 1, "matchers": [{"string": "+# total maximum Mana "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_mana"]}}} +{"ref": "+# total maximum Energy Shield", "better": 1, "matchers": [{"string": "+# total maximum Energy Shield "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_energy_shield"]}}} +{"ref": "+#% total Attack Speed", "better": 1, "matchers": [{"string": "+#% total Attack Speed "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_attack_speed"]}}} +{"ref": "+#% total Cast Speed", "better": 1, "matchers": [{"string": "+#% total Cast Speed "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_cast_speed"]}}} +{"ref": "#% increased Movement Speed", "better": 1, "matchers": [{"string": "#% increased Movement Speed"}, {"string": "#% reduced Movement Speed", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_movement_speed"], "explicit": ["explicit.stat_2250533757"], "implicit": ["implicit.stat_2250533757"], "fractured": ["fractured.stat_2250533757"], "enchant": ["enchant.stat_2250533757"], "scourge": ["scourge.stat_2250533757"], "crafted": ["crafted.stat_2250533757"]}}} +{"ref": "#% total increased Physical Damage", "better": 1, "matchers": [{"string": "#% total increased Physical Damage "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_physical_damage"]}}} +{"ref": "+#% Global Critical Strike Chance", "better": 1, "matchers": [{"string": "+#% Global Critical Strike Chance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_global_critical_strike_chance"]}}} +{"ref": "+#% Global Critical Strike Multiplier", "better": 1, "matchers": [{"string": "+#% Global Critical Strike Multiplier "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_global_critical_strike_multiplier"]}}} +{"ref": "#% increased Elemental Damage", "better": 1, "matchers": [{"string": "#% increased Elemental Damage"}, {"string": "Has #% increased Elemental Damage"}, {"string": "#% reduced Elemental Damage", "negate": true}, {"string": "Has #% reduced Elemental Damage", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_elemental_damage"], "explicit": ["explicit.stat_3141070085"], "implicit": ["implicit.stat_3141070085"], "fractured": ["fractured.stat_3141070085"], "enchant": ["enchant.stat_692420067"], "scourge": ["scourge.stat_3141070085"]}}} +{"ref": "#% increased Lightning Damage", "better": 1, "matchers": [{"string": "#% increased Lightning Damage"}, {"string": "#% reduced Lightning Damage", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_lightning_damage"], "explicit": ["explicit.stat_2231156303"], "implicit": ["implicit.stat_2231156303"], "fractured": ["fractured.stat_2231156303"], "scourge": ["scourge.stat_2231156303"], "crafted": ["crafted.stat_2231156303"]}}} +{"ref": "#% increased Cold Damage", "better": 1, "matchers": [{"string": "#% increased Cold Damage"}, {"string": "#% reduced Cold Damage", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_cold_damage"], "explicit": ["explicit.stat_3291658075"], "implicit": ["implicit.stat_3291658075"], "fractured": ["fractured.stat_3291658075"], "scourge": ["scourge.stat_3291658075"], "crafted": ["crafted.stat_3291658075"]}}} +{"ref": "#% increased Fire Damage", "better": 1, "matchers": [{"string": "#% increased Fire Damage"}, {"string": "#% reduced Fire Damage", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_fire_damage"], "explicit": ["explicit.stat_3962278098"], "implicit": ["implicit.stat_3962278098"], "fractured": ["fractured.stat_3962278098"], "scourge": ["scourge.stat_3962278098"], "crafted": ["crafted.stat_3962278098"]}}} +{"ref": "#% increased Spell Damage", "better": 1, "matchers": [{"string": "#% increased Spell Damage"}, {"string": "#% reduced Spell Damage", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_spell_damage"], "explicit": ["explicit.stat_2974417149"], "implicit": ["implicit.stat_2974417149"], "fractured": ["fractured.stat_2974417149"], "enchant": ["enchant.stat_2974417149"], "scourge": ["scourge.stat_2974417149"], "crafted": ["crafted.stat_2974417149"]}}} +{"ref": "#% increased Lightning Spell Damage", "better": 1, "matchers": [{"string": "#% increased Lightning Spell Damage "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_lightning_spell_damage"]}}} +{"ref": "#% increased Cold Spell Damage", "better": 1, "matchers": [{"string": "#% increased Cold Spell Damage "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_cold_spell_damage"]}}} +{"ref": "#% increased Fire Spell Damage", "better": 1, "matchers": [{"string": "#% increased Fire Spell Damage "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_fire_spell_damage"]}}} +{"ref": "#% increased Elemental Damage with Attack Skills", "better": 1, "matchers": [{"string": "#% increased Elemental Damage with Attack Skills"}, {"string": "#% reduced Elemental Damage with Attack Skills", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_elemental_damage_with_attack_skills"], "explicit": ["explicit.stat_387439868"], "implicit": ["implicit.stat_387439868"], "fractured": ["fractured.stat_387439868"], "scourge": ["scourge.stat_387439868"], "crafted": ["crafted.stat_387439868"]}}} +{"ref": "#% increased Burning Damage", "better": 1, "matchers": [{"string": "#% increased Burning Damage"}, {"string": "#% reduced Burning Damage", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_burning_damage"], "explicit": ["explicit.stat_1175385867"], "implicit": ["implicit.stat_1175385867"], "fractured": ["fractured.stat_1175385867"]}}} +{"ref": "# Life Regenerated per Second", "better": 1, "matchers": [{"string": "# Life Regenerated per Second "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_life_regen"]}}} +{"ref": "#% of Physical Attack Damage Leeched as Life", "dp": true, "better": 1, "matchers": [{"string": "#% of Physical Attack Damage Leeched as Life"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_physical_attack_damage_leeched_as_life"], "explicit": ["explicit.stat_3593843976", "explicit.stat_55876295"], "implicit": ["implicit.stat_3593843976", "implicit.stat_55876295"], "fractured": ["fractured.stat_3593843976", "fractured.stat_55876295"], "scourge": ["scourge.stat_3593843976"], "crafted": ["crafted.stat_3593843976", "crafted.stat_55876295"]}}} +{"ref": "#% of Physical Attack Damage Leeched as Mana", "dp": true, "better": 1, "matchers": [{"string": "#% of Physical Attack Damage Leeched as Mana"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_physical_attack_damage_leeched_as_mana"], "explicit": ["explicit.stat_3237948413", "explicit.stat_669069897"], "implicit": ["implicit.stat_3237948413", "implicit.stat_669069897"], "fractured": ["fractured.stat_3237948413", "fractured.stat_669069897"], "enchant": ["enchant.stat_669069897"], "scourge": ["scourge.stat_3237948413"], "crafted": ["crafted.stat_3237948413", "crafted.stat_669069897"]}}} +{"ref": "#% increased Mana Regeneration Rate", "better": 1, "matchers": [{"string": "#% increased Mana Regeneration Rate"}, {"string": "#% reduced Mana Regeneration Rate", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_mana_regen"], "explicit": ["explicit.stat_789117908"], "implicit": ["implicit.stat_789117908"], "fractured": ["fractured.stat_789117908"], "scourge": ["scourge.stat_789117908"], "crafted": ["crafted.stat_789117908"]}}} diff --git a/renderer/public/.DS_Store/vendor/pseudo-stats/ru/all-pseudo.ndjson b/renderer/public/.DS_Store/vendor/pseudo-stats/ru/all-pseudo.ndjson new file mode 100644 index 000000000..a7842b5cf --- /dev/null +++ b/renderer/public/.DS_Store/vendor/pseudo-stats/ru/all-pseudo.ndjson @@ -0,0 +1,292 @@ +{"ref": "# Crafted Modifiers", "better": 1, "matchers": [{"string": "# ремесленных свойств "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_crafted_mods"]}}} +{"ref": "# Crafted Prefix Modifiers", "better": 1, "matchers": [{"string": "# ремесленных свойств-префиксов "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_crafted_prefix_mods"]}}} +{"ref": "# Crafted Suffix Modifiers", "better": 1, "matchers": [{"string": "# ремесленных свойств-суффиксов "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_crafted_suffix_mods"]}}} +{"ref": "# Empty Modifiers", "better": 1, "matchers": [{"string": "# Пустые свойства "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_empty_affix_mods"]}}} +{"ref": "# Empty Prefix Modifiers", "better": 1, "matchers": [{"string": "# Пустые свойства-префиксы "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_empty_prefix_mods"]}}} +{"ref": "# Empty Suffix Modifiers", "better": 1, "matchers": [{"string": "# Пустые свойства-суффиксы "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_empty_suffix_mods"]}}} +{"ref": "# Enchant Modifiers", "better": 1, "matchers": [{"string": "# зачарованных свойств "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_enchant_mods"]}}} +{"ref": "# Fractured Modifiers", "better": 1, "matchers": [{"string": "# Расколотые свойства "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_fractured_mods"]}}} +{"ref": "# Implicit Modifiers", "better": 1, "matchers": [{"string": "# собственных свойств "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_implicit_mods"]}}} +{"ref": "# Life Regenerated per Second", "better": 1, "matchers": [{"string": "Регенерация # здоровья в секунду "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_life_regen"]}}} +{"ref": "# Modifiers", "better": 1, "matchers": [{"string": "# Свойств "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_affix_mods"]}}} +{"ref": "# Notable Passive Skills", "better": 1, "matchers": [{"string": "# Значимое пассивное умение "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_notable_passive_skills"]}}} +{"ref": "# Prefix Modifiers", "better": 1, "matchers": [{"string": "# Свойств-префиксов "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_prefix_mods"]}}} +{"ref": "# Suffix Modifiers", "better": 1, "matchers": [{"string": "# Свойств-суффиксов "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_number_of_suffix_mods"]}}} +{"ref": "# total Elemental Resistances", "better": 1, "matchers": [{"string": "всего # сопротивления стихиям "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_count_elemental_resistances"]}}} +{"ref": "# total Resistances", "better": 1, "matchers": [{"string": "всего # сопротивления "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_count_resistances"]}}} +{"ref": "#% Base Defence Percentile", "better": 1, "matchers": [{"string": "#% процента базовой защиты "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_base_defence_percentile"]}}} +{"ref": "#% chance for dropped Maps to convert to Atlas Memories", "better": 1, "matchers": [{"string": "#% шанс преобразования выпавших карт в воспоминания Атласа "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_memory_line"]}}} +{"ref": "#% chance for dropped Maps to convert to Conqueror Maps", "better": 1, "matchers": [{"string": "#% шанс преобразования выпавших карт в карты Завоевателей "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_conqueror_map"]}}} +{"ref": "#% chance for dropped Maps to convert to Elder Maps", "better": 1, "matchers": [{"string": "#% шанс преобразования выпавших карт в карты Древнего "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_elder_map"]}}} +{"ref": "#% chance for dropped Maps to convert to Maven Invitations", "better": 1, "matchers": [{"string": "#% шанс преобразования выпавших карт в приглашения Мейвен "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_maven_invitation"]}}} +{"ref": "#% chance for dropped Maps to convert to Scarabs", "better": 1, "matchers": [{"string": "#% шанс выпадения карт в виде скарабеев "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_scarab"]}}} +{"ref": "#% chance for dropped Maps to convert to Shaper Maps", "better": 1, "matchers": [{"string": "#% шанс преобразования выпавших карт в карты Создателя "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_shaper_map"]}}} +{"ref": "#% chance for dropped Maps to convert to Unique Maps", "better": 1, "matchers": [{"string": "#% шанс преобразования выпавших карт в уникальные карты "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_conversion_unique_map"]}}} +{"ref": "#% increased Burning Damage", "better": 1, "matchers": [{"string": "#% увеличение урона от горения"}, {"string": "#% уменьшение урона от горения", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_burning_damage"], "explicit": ["explicit.stat_1175385867"], "implicit": ["implicit.stat_1175385867"], "fractured": ["fractured.stat_1175385867"]}}} +{"ref": "#% increased Cold Damage", "better": 1, "matchers": [{"string": "#% увеличение урона от холода"}, {"string": "#% уменьшение урона от холода", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_cold_damage"], "explicit": ["explicit.stat_3291658075"], "implicit": ["implicit.stat_3291658075"], "fractured": ["fractured.stat_3291658075"], "scourge": ["scourge.stat_3291658075"], "crafted": ["crafted.stat_3291658075"]}}} +{"ref": "#% increased Cold Damage with Attack Skills", "better": 1, "matchers": [{"string": "#% увеличение урона от холода от умений атак"}, {"string": "#% уменьшение урона от холода от умений атак", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_cold_damage_with_attack_skills"], "explicit": ["explicit.stat_860668586"], "implicit": ["implicit.stat_860668586"]}}} +{"ref": "#% increased Cold Spell Damage", "better": 1, "matchers": [{"string": "#% увеличение урона от холода чарами "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_cold_spell_damage"]}}} +{"ref": "#% increased Elemental Damage", "better": 1, "matchers": [{"string": "#% увеличение урона от стихий"}, {"string": "#% уменьшение урона от стихий", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_elemental_damage"], "explicit": ["explicit.stat_3141070085"], "implicit": ["implicit.stat_3141070085"], "fractured": ["fractured.stat_3141070085"], "enchant": ["enchant.stat_692420067"], "scourge": ["scourge.stat_3141070085"]}}} +{"ref": "#% increased Elemental Damage with Attack Skills", "better": 1, "matchers": [{"string": "#% увеличение урона от стихий от умений атак"}, {"string": "#% уменьшение урона от стихий от умений атак", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_elemental_damage_with_attack_skills"], "explicit": ["explicit.stat_387439868"], "implicit": ["implicit.stat_387439868"], "fractured": ["fractured.stat_387439868"], "scourge": ["scourge.stat_387439868"], "crafted": ["crafted.stat_387439868"]}}} +{"ref": "#% increased Fire Damage", "better": 1, "matchers": [{"string": "#% увеличение урона от огня"}, {"string": "#% уменьшение урона от огня", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_fire_damage"], "explicit": ["explicit.stat_3962278098"], "implicit": ["implicit.stat_3962278098"], "fractured": ["fractured.stat_3962278098"], "scourge": ["scourge.stat_3962278098"], "crafted": ["crafted.stat_3962278098"]}}} +{"ref": "#% increased Fire Damage with Attack Skills", "better": 1, "matchers": [{"string": "#% увеличение урона от огня от умений атак"}, {"string": "#% уменьшение урона от огня от умений атак", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_fire_damage_with_attack_skills"], "implicit": ["implicit.stat_2468413380"]}}} +{"ref": "#% increased Fire Spell Damage", "better": 1, "matchers": [{"string": "#% увеличение урона от огня чарами "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_fire_spell_damage"]}}} +{"ref": "#% increased Lightning Damage", "better": 1, "matchers": [{"string": "#% увеличение урона от молнии"}, {"string": "#% уменьшение урона от молнии", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_lightning_damage"], "explicit": ["explicit.stat_2231156303"], "implicit": ["implicit.stat_2231156303"], "fractured": ["fractured.stat_2231156303"], "scourge": ["scourge.stat_2231156303"], "crafted": ["crafted.stat_2231156303"]}}} +{"ref": "#% increased Lightning Damage with Attack Skills", "better": 1, "matchers": [{"string": "#% увеличение урона от молнии от умений атак"}, {"string": "#% уменьшение урона от молнии от умений атак", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_lightning_damage_with_attack_skills"], "explicit": ["explicit.stat_4208907162"], "implicit": ["implicit.stat_4208907162"]}}} +{"ref": "#% increased Lightning Spell Damage", "better": 1, "matchers": [{"string": "#% увеличение урона от молнии чарами "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_lightning_spell_damage"]}}} +{"ref": "#% increased Mana Regeneration Rate", "better": 1, "matchers": [{"string": "#% повышение скорости регенерации маны"}, {"string": "#% снижение скорости регенерации маны", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_mana_regen"], "explicit": ["explicit.stat_789117908"], "implicit": ["implicit.stat_789117908"], "fractured": ["fractured.stat_789117908"], "scourge": ["scourge.stat_789117908"], "crafted": ["crafted.stat_789117908"]}}} +{"ref": "#% increased Movement Speed", "better": 1, "matchers": [{"string": "#% повышение скорости передвижения"}, {"string": "#% снижение скорости передвижения", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_movement_speed"], "explicit": ["explicit.stat_2250533757"], "implicit": ["implicit.stat_2250533757"], "fractured": ["fractured.stat_2250533757"], "enchant": ["enchant.stat_2250533757"], "scourge": ["scourge.stat_2250533757"], "crafted": ["crafted.stat_2250533757"]}}} +{"ref": "#% increased Rarity of Items found", "better": 1, "matchers": [{"string": "#% повышение редкости найденных предметов"}, {"string": "#% снижение редкости найденных предметов", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_rarity"], "explicit": ["explicit.stat_3917489142"], "implicit": ["implicit.stat_3917489142"], "fractured": ["fractured.stat_3917489142"], "scourge": ["scourge.stat_3917489142"], "crafted": ["crafted.stat_3917489142"]}}} +{"ref": "#% increased Spell Damage", "better": 1, "matchers": [{"string": "#% увеличение урона от чар"}, {"string": "#% уменьшение урона от чар", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_spell_damage"], "explicit": ["explicit.stat_2974417149"], "implicit": ["implicit.stat_2974417149"], "fractured": ["fractured.stat_2974417149"], "enchant": ["enchant.stat_2974417149"], "scourge": ["scourge.stat_2974417149"], "crafted": ["crafted.stat_2974417149"]}}} +{"ref": "#% of Life Regenerated per Second", "better": 1, "matchers": [{"string": "Регенерация #% здоровья в секунду "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_percent_life_regen"]}}} +{"ref": "#% of Physical Attack Damage Leeched as Life", "dp": true, "better": 1, "matchers": [{"string": "#% физического урона от атак похищается в виде здоровья"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_physical_attack_damage_leeched_as_life"], "explicit": ["explicit.stat_3593843976", "explicit.stat_55876295"], "implicit": ["implicit.stat_3593843976", "implicit.stat_55876295"], "fractured": ["fractured.stat_3593843976", "fractured.stat_55876295"], "scourge": ["scourge.stat_3593843976"], "crafted": ["crafted.stat_3593843976", "crafted.stat_55876295"]}}} +{"ref": "#% of Physical Attack Damage Leeched as Mana", "dp": true, "better": 1, "matchers": [{"string": "#% физического урона от атак похищается в виде маны"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_physical_attack_damage_leeched_as_mana"], "explicit": ["explicit.stat_3237948413", "explicit.stat_669069897"], "implicit": ["implicit.stat_3237948413", "implicit.stat_669069897"], "fractured": ["fractured.stat_3237948413", "fractured.stat_669069897"], "enchant": ["enchant.stat_669069897"], "scourge": ["scourge.stat_3237948413"], "crafted": ["crafted.stat_3237948413", "crafted.stat_669069897"]}}} +{"ref": "#% total increased maximum Energy Shield", "better": 1, "matchers": [{"string": "Всего #% повышения энергетического щита "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_energy_shield"]}}} +{"ref": "#% total increased Physical Damage", "better": 1, "matchers": [{"string": "Всего +#% к увеличению физического урона "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_physical_damage"]}}} +{"ref": "+# total maximum Energy Shield", "better": 1, "matchers": [{"string": "Всего +# к максимуму энергетического щита "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_energy_shield"]}}} +{"ref": "+# total maximum Life", "better": 1, "matchers": [{"string": "Всего +# к максимуму здоровья "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_life"]}}} +{"ref": "+# total maximum Mana", "better": 1, "matchers": [{"string": "Всего +# к максимуму маны "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_mana"]}}} +{"ref": "+# total to all Attributes", "better": 1, "matchers": [{"string": "Всего +# ко всем характеристикам "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_all_attributes"]}}} +{"ref": "+# total to Dexterity", "better": 1, "matchers": [{"string": "Всего +# к ловкости "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_dexterity"]}}} +{"ref": "+# total to Intelligence", "better": 1, "matchers": [{"string": "Всего +# к интеллекту "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_intelligence"]}}} +{"ref": "+# total to Level of Socketed Aura Gems", "better": 1, "matchers": [{"string": "Всего +# к уровню размещённых камней аур "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_aura_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Bow Gems", "better": 1, "matchers": [{"string": "Всего +# к уровню размещённых камней луков "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_bow_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Chaos Gems", "better": 1, "matchers": [{"string": "Всего +# к уровню размещённых камней хаоса "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_chaos_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Cold Gems", "better": 1, "matchers": [{"string": "Всего +# к уровню размещённых камней холода "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_cold_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Curse Gems", "better": 1, "matchers": [{"string": "Всего +# к уровню размещённых камней проклятий "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_curse_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Dexterity Gems", "better": 1, "matchers": [{"string": "Всего +# к уровню размещённых камней ловкости "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_dexterity_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Elemental Gems", "better": 1, "matchers": [{"string": "Всего +# к уровню размещённых камней стихий "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_elemental_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Fire Gems", "better": 1, "matchers": [{"string": "Всего +# к уровню размещённых камней огня "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_fire_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Gems", "better": 1, "matchers": [{"string": "Всего +# к уровню размещённых камней "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Golem Gems", "better": 1, "matchers": [{"string": "Всего +# к уровню размещённых камней големов "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_golem_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Intelligence Gems", "better": 1, "matchers": [{"string": "Всего +# к уровню размещённых камней интеллекта "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_intelligence_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Lightning Gems", "better": 1, "matchers": [{"string": "Всего +# к уровню размещённых камней молнии "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_lightning_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Melee Gems", "better": 1, "matchers": [{"string": "Всего +# к уровню размещённых камней ближнего боя "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_melee_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Minion Gems", "better": 1, "matchers": [{"string": "Всего +# к уровню размещённых камней приспешников "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_minion_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Movement Gems", "better": 1, "matchers": [{"string": "Всего +# к уровню размещённых камней передвижения "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_movement_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Projectile Gems", "better": 1, "matchers": [{"string": "Всего +# к уровню размещённых камней снарядов "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_projectile_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Skill Gems", "better": 1, "matchers": [{"string": "Всего +# к уровню размещённых камней умений "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_skill_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Spell Gems", "better": 1, "matchers": [{"string": "Всего +# к уровню размещённых камней чар "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_spell_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Strength Gems", "better": 1, "matchers": [{"string": "Всего +# к уровню размещённых камней силы "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_strength_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Support Gems", "better": 1, "matchers": [{"string": "Всего +# к уровню размещённых камней поддержки "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_support_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Vaal Gems", "better": 1, "matchers": [{"string": "Всего +# к уровню размещённых камней ваал "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_vaal_gem_levels"]}}} +{"ref": "+# total to Level of Socketed Warcry Gems", "better": 1, "matchers": [{"string": "Всего +# к уровню размещённых камней боевых кличей "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_additional_warcry_gem_levels"]}}} +{"ref": "+# total to Strength", "better": 1, "matchers": [{"string": "Всего +# к силе "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_strength"]}}} +{"ref": "+#% Global Critical Strike Chance", "better": 1, "matchers": [{"string": "Всего +#% к глобальному шансу критического удара "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_global_critical_strike_chance"]}}} +{"ref": "+#% Global Critical Strike Multiplier", "better": 1, "matchers": [{"string": "Всего +#% к множителю критического удара "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_global_critical_strike_multiplier"]}}} +{"ref": "+#% total Attack Speed", "better": 1, "matchers": [{"string": "Всего +#% к скорости атаки "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_attack_speed"]}}} +{"ref": "+#% total Cast Speed", "better": 1, "matchers": [{"string": "Всего +#% к скорости сотворения чар "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_cast_speed"]}}} +{"ref": "+#% total Critical Strike Chance for Spells", "better": 1, "matchers": [{"string": "Всего +#% к шансу критического удара чарами "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_critical_strike_chance_for_spells"]}}} +{"ref": "+#% total Elemental Resistance", "better": 1, "matchers": [{"string": "Всего +#% сопротивления стихиям "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_elemental_resistance"]}}} +{"ref": "+#% total Resistance", "better": 1, "matchers": [{"string": "Всего +#% сопротивления "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_resistance"]}}} +{"ref": "+#% total to all Elemental Resistances", "better": 1, "matchers": [{"string": "Всего +#% к сопротивлению всем стихиям "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_all_elemental_resistances"]}}} +{"ref": "+#% total to Chaos Resistance", "better": 1, "matchers": [{"string": "Всего +#% к сопротивлению хаосу "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_chaos_resistance"]}}} +{"ref": "+#% total to Cold Resistance", "better": 1, "matchers": [{"string": "Всего +#% к сопротивлению холоду "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_cold_resistance"]}}} +{"ref": "+#% total to Fire Resistance", "better": 1, "matchers": [{"string": "Всего +#% к сопротивлению огню "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_fire_resistance"]}}} +{"ref": "+#% total to Lightning Resistance", "better": 1, "matchers": [{"string": "Всего +#% к сопротивлению молнии "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_lightning_resistance"]}}} +{"ref": "Adds # to # Chaos Damage", "better": 1, "matchers": [{"string": "Добавляет от # до # урона хаосом"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_chaos_damage"], "explicit": ["explicit.stat_2223678961", "explicit.stat_3531280422"], "implicit": ["implicit.stat_2223678961", "implicit.stat_3531280422"], "fractured": ["fractured.stat_2223678961"], "enchant": ["enchant.stat_2223678961"], "scourge": ["scourge.stat_2223678961"]}}} +{"ref": "Adds # to # Chaos Damage to Attacks", "better": 1, "matchers": [{"string": "Добавляет от # до # урона хаосом к атакам"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_chaos_damage_to_attacks"], "explicit": ["explicit.stat_674553446"], "implicit": ["implicit.stat_674553446"], "fractured": ["fractured.stat_674553446"], "crafted": ["crafted.stat_674553446"]}}} +{"ref": "Adds # to # Chaos Damage to Spells", "better": 1, "matchers": [{"string": "Добавляет от # до # урона хаосом к чарам"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_chaos_damage_to_spells"], "explicit": ["explicit.stat_2300399854"], "implicit": ["implicit.stat_2300399854"], "fractured": ["fractured.stat_2300399854"]}}} +{"ref": "Adds # to # Cold Damage", "better": 1, "matchers": [{"string": "Добавляет от # до # урона от холода"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_cold_damage"], "explicit": ["explicit.stat_1037193709", "explicit.stat_2387423236"], "implicit": ["implicit.stat_1037193709", "implicit.stat_2387423236"], "fractured": ["fractured.stat_1037193709", "fractured.stat_2387423236"], "enchant": ["enchant.stat_1037193709"], "scourge": ["scourge.stat_1037193709"], "crafted": ["crafted.stat_1037193709", "crafted.stat_2387423236"]}}} +{"ref": "Adds # to # Cold Damage to Attacks", "better": 1, "matchers": [{"string": "Добавляет от # до # урона от холода к атакам"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_cold_damage_to_attacks"], "explicit": ["explicit.stat_4067062424"], "implicit": ["implicit.stat_4067062424"], "fractured": ["fractured.stat_4067062424"], "crafted": ["crafted.stat_4067062424"]}}} +{"ref": "Adds # to # Cold Damage to Spells", "better": 1, "matchers": [{"string": "Добавляет от # до # урона от холода к чарам"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_cold_damage_to_spells"], "explicit": ["explicit.stat_2469416729"], "implicit": ["implicit.stat_2469416729"], "fractured": ["fractured.stat_2469416729"], "scourge": ["scourge.stat_2469416729"], "crafted": ["crafted.stat_2469416729"]}}} +{"ref": "Adds # to # Damage", "better": 1, "matchers": [{"string": "Добавляет от # до # урона "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_damage"]}}} +{"ref": "Adds # to # Damage to Attacks", "better": 1, "matchers": [{"string": "Добавляет от # до # урона к атакам "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_damage_to_attacks"]}}} +{"ref": "Adds # to # Damage to Spells", "better": 1, "matchers": [{"string": "Добавляет от # до # урона к чарам "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_damage_to_spells"]}}} +{"ref": "Adds # to # Elemental Damage", "better": 1, "matchers": [{"string": "Добавляет от # до # урона от стихий "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_elemental_damage"]}}} +{"ref": "Adds # to # Elemental Damage to Attacks", "better": 1, "matchers": [{"string": "Добавляет от # до # урона от стихий к атакам "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_elemental_damage_to_attacks"]}}} +{"ref": "Adds # to # Elemental Damage to Spells", "better": 1, "matchers": [{"string": "Добавляет от # до # урона от стихий к чарам "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_elemental_damage_to_spells"]}}} +{"ref": "Adds # to # Fire Damage", "better": 1, "matchers": [{"string": "Добавляет от # до # урона от огня"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_fire_damage"], "explicit": ["explicit.stat_321077055", "explicit.stat_709508406"], "implicit": ["implicit.stat_321077055", "implicit.stat_709508406"], "fractured": ["fractured.stat_321077055", "fractured.stat_709508406"], "enchant": ["enchant.stat_709508406"], "scourge": ["scourge.stat_709508406"], "crafted": ["crafted.stat_321077055", "crafted.stat_709508406"]}}} +{"ref": "Adds # to # Fire Damage to Attacks", "better": 1, "matchers": [{"string": "Добавляет от # до # урона от огня к атакам"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_fire_damage_to_attacks"], "explicit": ["explicit.stat_1573130764"], "implicit": ["implicit.stat_1573130764"], "fractured": ["fractured.stat_1573130764"], "crafted": ["crafted.stat_1573130764"]}}} +{"ref": "Adds # to # Fire Damage to Spells", "better": 1, "matchers": [{"string": "Добавляет от # до # урона от огня к чарам"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_fire_damage_to_spells"], "explicit": ["explicit.stat_1133016593"], "implicit": ["implicit.stat_1133016593"], "fractured": ["fractured.stat_1133016593"], "scourge": ["scourge.stat_1133016593"], "crafted": ["crafted.stat_1133016593"]}}} +{"ref": "Adds # to # Lightning Damage", "better": 1, "matchers": [{"string": "Добавляет от # до # урона от молнии"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_lightning_damage"], "explicit": ["explicit.stat_1334060246", "explicit.stat_3336890334"], "implicit": ["implicit.stat_1334060246", "implicit.stat_3336890334"], "fractured": ["fractured.stat_1334060246", "fractured.stat_3336890334"], "enchant": ["enchant.stat_3336890334"], "scourge": ["scourge.stat_3336890334"], "crafted": ["crafted.stat_1334060246", "crafted.stat_3336890334"]}}} +{"ref": "Adds # to # Lightning Damage to Attacks", "better": 1, "matchers": [{"string": "Добавляет от # до # урона от молнии к атакам"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_lightning_damage_to_attacks"], "explicit": ["explicit.stat_1754445556"], "implicit": ["implicit.stat_1754445556"], "fractured": ["fractured.stat_1754445556"], "crafted": ["crafted.stat_1754445556"]}}} +{"ref": "Adds # to # Lightning Damage to Spells", "better": 1, "matchers": [{"string": "Добавляет от # до # урона от молнии к чарам"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_lightning_damage_to_spells"], "explicit": ["explicit.stat_2831165374"], "implicit": ["implicit.stat_2831165374"], "fractured": ["fractured.stat_2831165374"], "scourge": ["scourge.stat_2831165374"], "crafted": ["crafted.stat_2831165374"]}}} +{"ref": "Adds # to # Physical Damage", "better": 1, "matchers": [{"string": "Добавляет от # до # физического урона"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_physical_damage"], "explicit": ["explicit.stat_1940865751", "explicit.stat_960081730"], "implicit": ["implicit.stat_1940865751"], "fractured": ["fractured.stat_1940865751", "fractured.stat_960081730"], "scourge": ["scourge.stat_1940865751"], "crafted": ["crafted.stat_1940865751"]}}} +{"ref": "Adds # to # Physical Damage to Attacks", "better": 1, "matchers": [{"string": "Добавляет от # до # физического урона к атакам"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_physical_damage_to_attacks"], "explicit": ["explicit.stat_3032590688"], "implicit": ["implicit.stat_3032590688"], "fractured": ["fractured.stat_3032590688"], "crafted": ["crafted.stat_3032590688"]}}} +{"ref": "Adds # to # Physical Damage to Spells", "better": 1, "matchers": [{"string": "Добавляет от # до # физического урона к чарам"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_adds_physical_damage_to_spells"], "explicit": ["explicit.stat_2435536961"], "implicit": ["implicit.stat_2435536961"], "fractured": ["fractured.stat_2435536961"], "scourge": ["scourge.stat_2435536961"]}}} +{"ref": "Has # Influences", "better": 1, "matchers": [{"string": "Имеет # влияний "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_influence_count"]}}} +{"ref": "Has Crusader Influence", "better": 1, "matchers": [{"string": "Имеет влияние Крестоносца "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_crusader_influence"]}}} +{"ref": "Has Elder Influence", "better": 1, "matchers": [{"string": "Имеет влияние Древнего "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_elder_influence"]}}} +{"ref": "Has Hunter Influence", "better": 1, "matchers": [{"string": "Имеет влияние Охотника "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_hunter_influence"]}}} +{"ref": "Has Logbook Area: Battleground Graves", "better": 1, "matchers": [{"string": "Содержит область журнала: Захоронение на поле боя "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_battleground_graves"]}}} +{"ref": "Has Logbook Area: Bluffs", "better": 1, "matchers": [{"string": "Содержит область журнала: Откосы "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_bluffs"]}}} +{"ref": "Has Logbook Area: Cemetery", "better": 1, "matchers": [{"string": "Содержит область журнала: Погост "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_cemetery"]}}} +{"ref": "Has Logbook Area: Desert Ruins", "better": 1, "matchers": [{"string": "Содержит область журнала: Пустынные руины "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_desert_ruins"]}}} +{"ref": "Has Logbook Area: Dried Riverbed", "better": 1, "matchers": [{"string": "Содержит область журнала: Высохшее русло "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_dried_riverbed"]}}} +{"ref": "Has Logbook Area: Forest Ruins", "better": 1, "matchers": [{"string": "Содержит область журнала: Развалины в лесу "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_forest_ruins"]}}} +{"ref": "Has Logbook Area: Karui Wargraves", "better": 1, "matchers": [{"string": "Содержит область журнала: Могилы воинов каруи "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_karui_wargraves"]}}} +{"ref": "Has Logbook Area: Mountainside", "better": 1, "matchers": [{"string": "Содержит область журнала: Горный склон "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_mountainside"]}}} +{"ref": "Has Logbook Area: Rotting Temple", "better": 1, "matchers": [{"string": "Содержит область журнала: Гниющий храм "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_rotting_temple"]}}} +{"ref": "Has Logbook Area: Sarn Slums", "better": 1, "matchers": [{"string": "Содержит область журнала: Трущобы Сарна "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_sarn_slums"]}}} +{"ref": "Has Logbook Area: Scrublands", "better": 1, "matchers": [{"string": "Содержит область журнала: Заросли кустарника "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_scrublands"]}}} +{"ref": "Has Logbook Area: Shipwreck Reef", "better": 1, "matchers": [{"string": "Содержит область журнала: Риф разбитых кораблей "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_shipwreck_reef"]}}} +{"ref": "Has Logbook Area: Utzaal Outskirts", "better": 1, "matchers": [{"string": "Содержит область журнала: Окраины Утцааля "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_utzaal_outskirts"]}}} +{"ref": "Has Logbook Area: Vaal Temple", "better": 1, "matchers": [{"string": "Содержит область журнала: Храм ваал "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_vaal_temple"]}}} +{"ref": "Has Logbook Area: Volcanic Island", "better": 1, "matchers": [{"string": "Содержит область журнала: Вулканический остров "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_area_volcano"]}}} +{"ref": "Has Logbook Faction: Black Scythe Mercenaries", "better": 0, "matchers": [{"string": "Наёмники Чёрной косы"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_faction_mercenaries"]}}} +{"ref": "Has Logbook Faction: Druids of the Broken Circle", "better": 0, "matchers": [{"string": "Друиды Разомкнутого круга"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_faction_druids"]}}} +{"ref": "Has Logbook Faction: Knights of the Sun", "better": 0, "matchers": [{"string": "Рыцари Солнца"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_faction_knights"]}}} +{"ref": "Has Logbook Faction: Order of the Chalice", "better": 0, "matchers": [{"string": "Орден Чаши"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_logbook_faction_order"]}}} +{"ref": "Has Redeemer Influence", "better": 1, "matchers": [{"string": "Имеет влияние Избавительницы "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_redeemer_influence"]}}} +{"ref": "Has Room: Antechamber", "better": 0, "matchers": [{"string": "Прихожая"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_antechamber"]}, "option": true}} +{"ref": "Has Room: Apex of Ascension (Tier 3)", "better": 0, "matchers": [{"string": "Пик вознесения (Уровень 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_sacrifice_room_3"]}, "option": true}} +{"ref": "Has Room: Apex of Atzoatl", "better": 0, "matchers": [{"string": "Вершина Ацоатля"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_apex"]}, "option": true}} +{"ref": "Has Room: Arena of Valour (Tier 2)", "better": 0, "matchers": [{"string": "Арена доблести (Уровень 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_weapon_room_2"]}, "option": true}} +{"ref": "Has Room: Armourer's Workshop (Tier 1)", "better": 0, "matchers": [{"string": "Мастерская оружейника (Уровень 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_armour_room_1"]}, "option": true}} +{"ref": "Has Room: Armoury (Tier 2)", "better": 0, "matchers": [{"string": "Оружейная (Уровень 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_armour_room_2"]}, "option": true}} +{"ref": "Has Room: Atlas of Worlds (Tier 3)", "better": 0, "matchers": [{"string": "Атлас миров (Уровень 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_cartography_room_3"]}, "option": true}} +{"ref": "Has Room: Automaton Lab (Tier 2)", "better": 0, "matchers": [{"string": "Лаборатория автоматов (Уровень 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_minions_2"]}, "option": true}} +{"ref": "Has Room: Banquet Hall", "better": 0, "matchers": [{"string": "Зал пиршеств"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_banquet_hall"]}, "option": true}} +{"ref": "Has Room: Barracks (Tier 2)", "better": 0, "matchers": [{"string": "Казармы (Уровень 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_breeding_room_2"]}, "option": true}} +{"ref": "Has Room: Breach Containment Chamber (Tier 2)", "better": 0, "matchers": [{"string": "Изолятор разломов (Уровень 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_breach_room_2"]}, "option": true}} +{"ref": "Has Room: Catalyst of Corruption (Tier 2)", "better": 0, "matchers": [{"string": "Ускоритель осквернения (Уровень 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_corruption_room_2"]}, "option": true}} +{"ref": "Has Room: Cellar", "better": 0, "matchers": [{"string": "Подвал"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_cellar"]}, "option": true}} +{"ref": "Has Room: Chamber of Iron (Tier 3)", "better": 0, "matchers": [{"string": "Железный зал (Уровень 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_armour_room_3"]}, "option": true}} +{"ref": "Has Room: Chasm", "better": 0, "matchers": [{"string": "Расселина"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_chasm_room"]}, "option": true}} +{"ref": "Has Room: Cloister", "better": 0, "matchers": [{"string": "Галерея"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_cloister"]}, "option": true}} +{"ref": "Has Room: Conduit of Lightning (Tier 3)", "better": 0, "matchers": [{"string": "Проводник молний (Уровень 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_lightning_3"]}, "option": true}} +{"ref": "Has Room: Corruption Chamber (Tier 1)", "better": 0, "matchers": [{"string": "Зал осквернения (Уровень 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_corruption_room_1"]}, "option": true}} +{"ref": "Has Room: Court of Sealed Death (Tier 3)", "better": 0, "matchers": [{"string": "Двор запечатанной смерти (Уровень 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_strongbox_3"]}, "option": true}} +{"ref": "Has Room: Crucible of Flame (Tier 3)", "better": 0, "matchers": [{"string": "Тигель пламени (Уровень 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_fire_3"]}, "option": true}} +{"ref": "Has Room: Cultivar Chamber (Tier 2)", "better": 0, "matchers": [{"string": "Зал культивации (Уровень 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_poison_room_2"]}, "option": true}} +{"ref": "Has Room: Defense Research Lab (Tier 3)", "better": 0, "matchers": [{"string": "Оборонная лаборатория (Уровень 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_trap_room_3"]}, "option": true}} +{"ref": "Has Room: Demolition Lab (Tier 2)", "better": 0, "matchers": [{"string": "Лаборатория сноса (Уровень 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_explosives_room_2"]}, "option": true}} +{"ref": "Has Room: Department of Thaumaturgy (Tier 2)", "better": 0, "matchers": [{"string": "Отдел волшебства (Уровень 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_gem_room_2"]}, "option": true}} +{"ref": "Has Room: Doryani's Institute (Tier 3)", "better": 0, "matchers": [{"string": "Аудитория Дориани (Уровень 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_gem_room_3"]}, "option": true}} +{"ref": "Has Room: Engineering Department (Tier 2)", "better": 0, "matchers": [{"string": "Отдел механики (Уровень 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_workshop_2"]}, "option": true}} +{"ref": "Has Room: Explosives Room (Tier 1)", "better": 0, "matchers": [{"string": "Комната взрывчатки (Уровень 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_explosives_room_1"]}, "option": true}} +{"ref": "Has Room: Factory (Tier 3)", "better": 0, "matchers": [{"string": "Фабрика (Уровень 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_workshop_3"]}, "option": true}} +{"ref": "Has Room: Flame Workshop (Tier 1)", "better": 0, "matchers": [{"string": "Мастерская огней (Уровень 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_fire_1"]}, "option": true}} +{"ref": "Has Room: Gemcutter's Workshop (Tier 1)", "better": 0, "matchers": [{"string": "Мастерская камнереза (Уровень 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_gem_room_1"]}, "option": true}} +{"ref": "Has Room: Glittering Halls (Tier 3)", "better": 0, "matchers": [{"string": "Сверкающие залы (Уровень 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_trinket_room_3"]}, "option": true}} +{"ref": "Has Room: Guardhouse (Tier 1)", "better": 0, "matchers": [{"string": "Караульная (Уровень 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_breeding_room_1"]}, "option": true}} +{"ref": "Has Room: Hall of Champions (Tier 3)", "better": 0, "matchers": [{"string": "Зал заступников (Уровень 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_weapon_room_3"]}, "option": true}} +{"ref": "Has Room: Hall of Heroes (Tier 2)", "better": 0, "matchers": [{"string": "Зал героев (Уровень 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_legion_2"]}, "option": true}} +{"ref": "Has Room: Hall of Legends (Tier 3)", "better": 0, "matchers": [{"string": "Зал легенд (Уровень 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_legion_3"]}, "option": true}} +{"ref": "Has Room: Hall of Locks (Tier 2)", "better": 0, "matchers": [{"string": "Зал замков (Уровень 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_strongbox_2"]}, "option": true}} +{"ref": "Has Room: Hall of Lords (Tier 2)", "better": 0, "matchers": [{"string": "Покои владык (Уровень 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_queens_chambers_2"]}, "option": true}} +{"ref": "Has Room: Hall of Mettle (Tier 1)", "better": 0, "matchers": [{"string": "Зал храбрецов (Уровень 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_legion_1"]}, "option": true}} +{"ref": "Has Room: Hall of Offerings (Tier 2)", "better": 0, "matchers": [{"string": "Зал подношений (Уровень 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_sacrifice_room_2"]}, "option": true}} +{"ref": "Has Room: Hall of War (Tier 3)", "better": 0, "matchers": [{"string": "Зал войны (Уровень 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_breeding_room_3"]}, "option": true}} +{"ref": "Has Room: Halls", "better": 0, "matchers": [{"string": "Коридоры"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_halls"]}, "option": true}} +{"ref": "Has Room: Hatchery (Tier 1)", "better": 0, "matchers": [{"string": "Питомник (Уровень 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_minions_1"]}, "option": true}} +{"ref": "Has Room: House of the Others (Tier 3)", "better": 0, "matchers": [{"string": "Дом Иных (Уровень 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_breach_room_3"]}, "option": true}} +{"ref": "Has Room: Hurricane Engine (Tier 2)", "better": 0, "matchers": [{"string": "Механизм ураганов (Уровень 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_storm_room_2"]}, "option": true}} +{"ref": "Has Room: Hybridisation Chamber (Tier 3)", "better": 0, "matchers": [{"string": "Зал гибридизации (Уровень 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_minions_3"]}, "option": true}} +{"ref": "Has Room: Jeweller's Workshop (Tier 1)", "better": 0, "matchers": [{"string": "Мастерская ювелира (Уровень 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_trinket_room_1"]}, "option": true}} +{"ref": "Has Room: Jewellery Forge (Tier 2)", "better": 0, "matchers": [{"string": "Горн ювелира (Уровень 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_trinket_room_2"]}, "option": true}} +{"ref": "Has Room: Lightning Workshop (Tier 1)", "better": 0, "matchers": [{"string": "Мастерская гроз (Уровень 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_lightning_1"]}, "option": true}} +{"ref": "Has Room: Locus of Corruption (Tier 3)", "better": 0, "matchers": [{"string": "Очаг осквернения (Уровень 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_corruption_room_3"]}, "option": true}} +{"ref": "Has Room: Museum of Artefacts (Tier 3)", "better": 0, "matchers": [{"string": "Музей артефактов (Уровень 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_chests_3"]}, "option": true}} +{"ref": "Has Room: Office of Cartography (Tier 2)", "better": 0, "matchers": [{"string": "Кабинет картографии (Уровень 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_cartography_room_2"]}, "option": true}} +{"ref": "Has Room: Omnitect Forge (Tier 2)", "better": 0, "matchers": [{"string": "Горн Всезодчего (Уровень 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_fire_2"]}, "option": true}} +{"ref": "Has Room: Omnitect Reactor Plant (Tier 2)", "better": 0, "matchers": [{"string": "Реактор Всезодчего (Уровень 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_boss_lightning_2"]}, "option": true}} +{"ref": "Has Room: Passageways", "better": 0, "matchers": [{"string": "Переходы"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_passageways"]}, "option": true}} +{"ref": "Has Room: Pits", "better": 0, "matchers": [{"string": "Ямы"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_the_pits"]}, "option": true}} +{"ref": "Has Room: Poison Garden (Tier 1)", "better": 0, "matchers": [{"string": "Ядовитый сад (Уровень 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_poison_room_1"]}, "option": true}} +{"ref": "Has Room: Pools of Restoration (Tier 1)", "better": 0, "matchers": [{"string": "Купели восстановления (Уровень 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_healing_room_1"]}, "option": true}} +{"ref": "Has Room: Royal Meeting Room (Tier 1)", "better": 0, "matchers": [{"string": "Царский зал аудиенций (Уровень 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_queens_chambers_1"]}, "option": true}} +{"ref": "Has Room: Sacrificial Chamber (Tier 1)", "better": 0, "matchers": [{"string": "Жертвенный зал (Уровень 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_sacrifice_room_1"]}, "option": true}} +{"ref": "Has Room: Sadist's Den (Tier 3)", "better": 0, "matchers": [{"string": "Логово садиста (Уровень 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_torment_3"]}, "option": true}} +{"ref": "Has Room: Sanctum of Immortality (Tier 3)", "better": 0, "matchers": [{"string": "Святыня бессмертия (Уровень 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_healing_room_3"]}, "option": true}} +{"ref": "Has Room: Sanctum of Unity (Tier 2)", "better": 0, "matchers": [{"string": "Святилище единения (Уровень 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_empowering_room_2"]}, "option": true}} +{"ref": "Has Room: Sanctum of Vitality (Tier 2)", "better": 0, "matchers": [{"string": "Святилище жизни (Уровень 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_healing_room_2"]}, "option": true}} +{"ref": "Has Room: Shrine of Empowerment (Tier 1)", "better": 0, "matchers": [{"string": "Алтарь усиления (Уровень 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_empowering_room_1"]}, "option": true}} +{"ref": "Has Room: Shrine of Unmaking (Tier 3)", "better": 0, "matchers": [{"string": "Обитель развоплощения (Уровень 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_explosives_room_3"]}, "option": true}} +{"ref": "Has Room: Sparring Room (Tier 1)", "better": 0, "matchers": [{"string": "Тренировочная комната (Уровень 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_weapon_room_1"]}, "option": true}} +{"ref": "Has Room: Splinter Research Lab (Tier 1)", "better": 0, "matchers": [{"string": "Лаборатория изучения осколков (Уровень 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_breach_room_1"]}, "option": true}} +{"ref": "Has Room: Storage Room (Tier 1)", "better": 0, "matchers": [{"string": "Кладовая (Уровень 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_chests_1"]}, "option": true}} +{"ref": "Has Room: Storm of Corruption (Tier 3)", "better": 0, "matchers": [{"string": "Буря осквернения (Уровень 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_storm_room_3"]}, "option": true}} +{"ref": "Has Room: Strongbox Chamber (Tier 1)", "better": 0, "matchers": [{"string": "Запасник (Уровень 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_strongbox_1"]}, "option": true}} +{"ref": "Has Room: Surveyor's Study (Tier 1)", "better": 0, "matchers": [{"string": "Кабинет топографа (Уровень 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_cartography_room_1"]}, "option": true}} +{"ref": "Has Room: Tempest Generator (Tier 1)", "better": 0, "matchers": [{"string": "Генератор бурь (Уровень 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_storm_room_1"]}, "option": true}} +{"ref": "Has Room: Temple Defense Workshop (Tier 2)", "better": 0, "matchers": [{"string": "Цех храмовой защиты (Уровень 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_trap_room_2"]}, "option": true}} +{"ref": "Has Room: Temple Nexus (Tier 3)", "better": 0, "matchers": [{"string": "Средоточие храма (Уровень 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_empowering_room_3"]}, "option": true}} +{"ref": "Has Room: Throne of Atziri (Tier 3)", "better": 0, "matchers": [{"string": "Трон Атзири (Уровень 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_queens_chambers_3"]}, "option": true}} +{"ref": "Has Room: Tombs", "better": 0, "matchers": [{"string": "Усыпальницы"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_tombs"]}, "option": true}} +{"ref": "Has Room: Torment Cells (Tier 1)", "better": 0, "matchers": [{"string": "Клети мучений (Уровень 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_torment_1"]}, "option": true}} +{"ref": "Has Room: Torture Cages (Tier 2)", "better": 0, "matchers": [{"string": "Камеры пыток (Уровень 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_torment_2"]}, "option": true}} +{"ref": "Has Room: Toxic Grove (Tier 3)", "better": 0, "matchers": [{"string": "Ядовитая роща (Уровень 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_poison_room_3"]}, "option": true}} +{"ref": "Has Room: Trap Workshop (Tier 1)", "better": 0, "matchers": [{"string": "Мастерская ловушек (Уровень 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_trap_room_1"]}, "option": true}} +{"ref": "Has Room: Treasury (Tier 2)", "better": 0, "matchers": [{"string": "Сокровищница (Уровень 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_currency_vault_2"]}, "option": true}} +{"ref": "Has Room: Tunnels", "better": 0, "matchers": [{"string": "Тоннели"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_tunnels"]}, "option": true}} +{"ref": "Has Room: Vault (Tier 1)", "better": 0, "matchers": [{"string": "Хранилище (Уровень 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_currency_vault_1"]}, "option": true}} +{"ref": "Has Room: Warehouses (Tier 2)", "better": 0, "matchers": [{"string": "Склады (Уровень 2)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_chests_2"]}, "option": true}} +{"ref": "Has Room: Wealth of the Vaal (Tier 3)", "better": 0, "matchers": [{"string": "Казна ваал (Уровень 3)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_currency_vault_3"]}, "option": true}} +{"ref": "Has Room: Workshop (Tier 1)", "better": 0, "matchers": [{"string": "Мастерская (Уровень 1)"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_temple_workshop_1"]}, "option": true}} +{"ref": "Has Shaper Influence", "better": 1, "matchers": [{"string": "Имеет влияние Создателя "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_shaper_influence"]}}} +{"ref": "Has Warlord Influence", "better": 1, "matchers": [{"string": "Имеет влияние Вождя "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_has_warlord_influence"]}}} +{"ref": "Mirrored Tablet has # Islands", "better": 1, "matchers": [{"string": "Зеркальная табличка имеет # островков "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_lake_number_of_islands"]}}} +{"ref": "More Currency: #%", "better": 1, "matchers": [{"string": "Больше валюты: #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_more_currency_drops"]}}} +{"ref": "More Divination Cards: #%", "better": 1, "matchers": [{"string": "Больше гадальных карт: #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_more_card_drops"]}}} +{"ref": "More Maps: #%", "better": 1, "matchers": [{"string": "Больше карт: #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_more_map_drops"]}}} +{"ref": "More Scarabs: #%", "better": 1, "matchers": [{"string": "Больше скарабеев: #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_more_scarab_drops"]}}} +{"ref": "Quality (Attack Modifiers): #%", "better": 1, "matchers": [{"string": "Качество (свойства атак): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_attack_quality"]}}} +{"ref": "Quality (Attribute Modifiers): #%", "better": 1, "matchers": [{"string": "Качество (свойства характеристик): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_attribute_quality"]}}} +{"ref": "Quality (Caster Modifiers): #%", "better": 1, "matchers": [{"string": "Качество (свойства чар): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_caster_quality"]}}} +{"ref": "Quality (Critical Modifiers): #%", "better": 1, "matchers": [{"string": "Качество (свойства критического удара): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_critical_quality"]}}} +{"ref": "Quality (Currency): #%", "better": 1, "matchers": [{"string": "Качество (валюта): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_quality_currency"]}}} +{"ref": "Quality (Defence Modifiers): #%", "better": 1, "matchers": [{"string": "Качество (свойства защиты): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_defense_quality"]}}} +{"ref": "Quality (Divination Cards): #%", "better": 1, "matchers": [{"string": "Качество (гадальные карты): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_quality_cards"]}}} +{"ref": "Quality (Elemental Damage Modifiers): #%", "better": 1, "matchers": [{"string": "Качество (свойства стихийного урона): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_elemental_quality"]}}} +{"ref": "Quality (Life and Mana Modifiers): #%", "better": 1, "matchers": [{"string": "Качество (свойства здоровья и маны): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_resource_quality"]}}} +{"ref": "Quality (Pack Size): #%", "better": 1, "matchers": [{"string": "Качество (размер групп монстров): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_quality_pack_size"]}}} +{"ref": "Quality (Physical and Chaos Damage Modifiers): #%", "better": 1, "matchers": [{"string": "Качество (свойства физического урона и урона хаосом): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_physical_chaos_quality"]}}} +{"ref": "Quality (Rarity): #%", "better": 1, "matchers": [{"string": "Качество (редкость): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_quality_rarity"]}}} +{"ref": "Quality (Resistance Modifiers): #%", "better": 1, "matchers": [{"string": "Качество (свойства сопротивлений): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_resistance_quality"]}}} +{"ref": "Quality (Scarabs): #%", "better": 1, "matchers": [{"string": "Качество (скарабеи): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_map_quality_scarabs"]}}} +{"ref": "Quality (Speed Modifiers): #%", "better": 1, "matchers": [{"string": "Качество (свойства скорости): #% "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_jewellery_speed_quality"]}}} +{"ref": "Reflection of Abyss (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Бездны (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_38892"]}}} +{"ref": "Reflection of Ambush (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Засады (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_48307"]}}} +{"ref": "Reflection of Angling (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Рыбалки (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_40794"]}}} +{"ref": "Reflection of Azurite (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Лазурита (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_40031"]}}} +{"ref": "Reflection of Bestiary (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Бестиария (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_55569"]}}} +{"ref": "Reflection of Breach (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Разлома (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_62572"]}}} +{"ref": "Reflection of Brutality (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Жестокости (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_29096"]}}} +{"ref": "Reflection of Camaraderie (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Братства (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_35395"]}}} +{"ref": "Reflection of Catalysis (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Катализа (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_57850"]}}} +{"ref": "Reflection of Chaos (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Хаоса (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_50834"]}}} +{"ref": "Reflection of Conflict (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Конфликта (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_1931"]}}} +{"ref": "Reflection of Darkness (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Тьмы (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_34457"]}}} +{"ref": "Reflection of Delirium (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Делириума (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_22138"]}}} +{"ref": "Reflection of Delve (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Спуска (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_18737"]}}} +{"ref": "Reflection of Demonfire (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Демонического пламени (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_28500"]}}} +{"ref": "Reflection of Domination (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Господства (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_63412"]}}} +{"ref": "Reflection of Entrapment (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Ловушек (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_44399"]}}} +{"ref": "Reflection of Essence (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Сущности (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_49862"]}}} +{"ref": "Reflection of Experimentation (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Экспериментов (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_55676"]}}} +{"ref": "Reflection of Flame (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Пламени (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_42468"]}}} +{"ref": "Reflection of Fractured Dimensions (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Расколотых измерений (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_49488"]}}} +{"ref": "Reflection of Frost (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Мороза (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_38110"]}}} +{"ref": "Reflection of Guilt (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Вины (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_25480"]}}} +{"ref": "Reflection of Imprisonment (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Заточения (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_10363"]}}} +{"ref": "Reflection of Kalandra (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Каландры (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_36591"]}}} +{"ref": "Reflection of Legion (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Легиона (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_403"]}}} +{"ref": "Reflection of Metamorph (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Метаморфа (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_3699"]}}} +{"ref": "Reflection of Occultism (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Оккультизма (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_24451"]}}} +{"ref": "Reflection of Paradise (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Рая (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_50846"]}}} +{"ref": "Reflection of Perverted Faith (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Извращённой судьбы (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_27678"]}}} +{"ref": "Reflection of Phaaryl (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Фаарила (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_7674"]}}} +{"ref": "Reflection of Possession (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Одержимости (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_25049"]}}} +{"ref": "Reflection of Power (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Силы (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_35950"]}}} +{"ref": "Reflection of Scourge (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Нашествия (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_62360"]}}} +{"ref": "Reflection of Stasis (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Стазиса (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_32968"]}}} +{"ref": "Reflection of Sulphite (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Сульфита (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_45086"]}}} +{"ref": "Reflection of the Black Scythe (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Чёрной косы (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_9662"]}}} +{"ref": "Reflection of the Breachlord (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Повелителя Разлома (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_62935"]}}} +{"ref": "Reflection of the Broken Circle (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Разомкнутого круга (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_43128"]}}} +{"ref": "Reflection of the Chalice (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Чаши (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_64561"]}}} +{"ref": "Reflection of the Chasm (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Пропасти (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_57101"]}}} +{"ref": "Reflection of the Dream (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Грёз (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_27117"]}}} +{"ref": "Reflection of the Harbingers (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Предвестников (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_37203"]}}} +{"ref": "Reflection of the Hunter (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Охотника (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_18816"]}}} +{"ref": "Reflection of the Monolith (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Монолита (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_34796"]}}} +{"ref": "Reflection of the Nightmare (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Кошмара (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_24232"]}}} +{"ref": "Reflection of the Storm (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Шторма (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_2745"]}}} +{"ref": "Reflection of the Sun (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Солнца (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_60034"]}}} +{"ref": "Reflection of the Trove (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Сокровищ (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_46772"]}}} +{"ref": "Reflection of the Wilderness (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Дикого края (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_29224"]}}} +{"ref": "Reflection of Thralldom (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Рабства (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_26813"]}}} +{"ref": "Reflection of Torment (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Мучений (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_53950"]}}} +{"ref": "Reflection of Tyranny (Difficulty #)", "better": 1, "matchers": [{"string": "Отражение Тирании (Сложность #) "}], "trade": {"ids": {"pseudo": ["pseudo.lake_60981"]}}} diff --git a/renderer/public/.DS_Store/vendor/pseudo-stats/ru/pseudo_stats.ndjson b/renderer/public/.DS_Store/vendor/pseudo-stats/ru/pseudo_stats.ndjson new file mode 100644 index 000000000..3f8205b23 --- /dev/null +++ b/renderer/public/.DS_Store/vendor/pseudo-stats/ru/pseudo_stats.ndjson @@ -0,0 +1,32 @@ +{"ref": "# Life Regenerated per Second", "better": 1, "matchers": [{"string": "Регенерация # здоровья в секунду "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_life_regen"]}}} +{"ref": "#% increased Burning Damage", "better": 1, "matchers": [{"string": "#% увеличение урона от горения"}, {"string": "#% уменьшение урона от горения", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_burning_damage"], "explicit": ["explicit.stat_1175385867"], "implicit": ["implicit.stat_1175385867"], "fractured": ["fractured.stat_1175385867"]}}} +{"ref": "#% increased Cold Damage", "better": 1, "matchers": [{"string": "#% увеличение урона от холода"}, {"string": "#% уменьшение урона от холода", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_cold_damage"], "explicit": ["explicit.stat_3291658075"], "implicit": ["implicit.stat_3291658075"], "fractured": ["fractured.stat_3291658075"], "scourge": ["scourge.stat_3291658075"], "crafted": ["crafted.stat_3291658075"]}}} +{"ref": "#% increased Cold Spell Damage", "better": 1, "matchers": [{"string": "#% увеличение урона от холода чарами "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_cold_spell_damage"]}}} +{"ref": "#% increased Elemental Damage", "better": 1, "matchers": [{"string": "#% увеличение урона от стихий"}, {"string": "#% уменьшение урона от стихий", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_elemental_damage"], "explicit": ["explicit.stat_3141070085"], "implicit": ["implicit.stat_3141070085"], "fractured": ["fractured.stat_3141070085"], "enchant": ["enchant.stat_692420067"], "scourge": ["scourge.stat_3141070085"]}}} +{"ref": "#% increased Elemental Damage with Attack Skills", "better": 1, "matchers": [{"string": "#% увеличение урона от стихий от умений атак"}, {"string": "#% уменьшение урона от стихий от умений атак", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_elemental_damage_with_attack_skills"], "explicit": ["explicit.stat_387439868"], "implicit": ["implicit.stat_387439868"], "fractured": ["fractured.stat_387439868"], "scourge": ["scourge.stat_387439868"], "crafted": ["crafted.stat_387439868"]}}} +{"ref": "#% increased Fire Damage", "better": 1, "matchers": [{"string": "#% увеличение урона от огня"}, {"string": "#% уменьшение урона от огня", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_fire_damage"], "explicit": ["explicit.stat_3962278098"], "implicit": ["implicit.stat_3962278098"], "fractured": ["fractured.stat_3962278098"], "scourge": ["scourge.stat_3962278098"], "crafted": ["crafted.stat_3962278098"]}}} +{"ref": "#% increased Fire Spell Damage", "better": 1, "matchers": [{"string": "#% увеличение урона от огня чарами "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_fire_spell_damage"]}}} +{"ref": "#% increased Lightning Damage", "better": 1, "matchers": [{"string": "#% увеличение урона от молнии"}, {"string": "#% уменьшение урона от молнии", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_lightning_damage"], "explicit": ["explicit.stat_2231156303"], "implicit": ["implicit.stat_2231156303"], "fractured": ["fractured.stat_2231156303"], "scourge": ["scourge.stat_2231156303"], "crafted": ["crafted.stat_2231156303"]}}} +{"ref": "#% increased Lightning Spell Damage", "better": 1, "matchers": [{"string": "#% увеличение урона от молнии чарами "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_lightning_spell_damage"]}}} +{"ref": "#% increased Mana Regeneration Rate", "better": 1, "matchers": [{"string": "#% повышение скорости регенерации маны"}, {"string": "#% снижение скорости регенерации маны", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_mana_regen"], "explicit": ["explicit.stat_789117908"], "implicit": ["implicit.stat_789117908"], "fractured": ["fractured.stat_789117908"], "scourge": ["scourge.stat_789117908"], "crafted": ["crafted.stat_789117908"]}}} +{"ref": "#% increased Movement Speed", "better": 1, "matchers": [{"string": "#% повышение скорости передвижения"}, {"string": "#% снижение скорости передвижения", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_movement_speed"], "explicit": ["explicit.stat_2250533757"], "implicit": ["implicit.stat_2250533757"], "fractured": ["fractured.stat_2250533757"], "enchant": ["enchant.stat_2250533757"], "scourge": ["scourge.stat_2250533757"], "crafted": ["crafted.stat_2250533757"]}}} +{"ref": "#% increased Spell Damage", "better": 1, "matchers": [{"string": "#% увеличение урона от чар"}, {"string": "#% уменьшение урона от чар", "negate": true}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_spell_damage"], "explicit": ["explicit.stat_2974417149"], "implicit": ["implicit.stat_2974417149"], "fractured": ["fractured.stat_2974417149"], "enchant": ["enchant.stat_2974417149"], "scourge": ["scourge.stat_2974417149"], "crafted": ["crafted.stat_2974417149"]}}} +{"ref": "#% of Physical Attack Damage Leeched as Life", "dp": true, "better": 1, "matchers": [{"string": "#% физического урона от атак похищается в виде здоровья"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_physical_attack_damage_leeched_as_life"], "explicit": ["explicit.stat_3593843976", "explicit.stat_55876295"], "implicit": ["implicit.stat_3593843976", "implicit.stat_55876295"], "fractured": ["fractured.stat_3593843976", "fractured.stat_55876295"], "scourge": ["scourge.stat_3593843976"], "crafted": ["crafted.stat_3593843976", "crafted.stat_55876295"]}}} +{"ref": "#% of Physical Attack Damage Leeched as Mana", "dp": true, "better": 1, "matchers": [{"string": "#% физического урона от атак похищается в виде маны"}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_physical_attack_damage_leeched_as_mana"], "explicit": ["explicit.stat_3237948413", "explicit.stat_669069897"], "implicit": ["implicit.stat_3237948413", "implicit.stat_669069897"], "fractured": ["fractured.stat_3237948413", "fractured.stat_669069897"], "enchant": ["enchant.stat_669069897"], "scourge": ["scourge.stat_3237948413"], "crafted": ["crafted.stat_3237948413", "crafted.stat_669069897"]}}} +{"ref": "#% total increased Physical Damage", "better": 1, "matchers": [{"string": "Всего +#% к увеличению физического урона "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_physical_damage"]}}} +{"ref": "+# total maximum Energy Shield", "better": 1, "matchers": [{"string": "Всего +# к максимуму энергетического щита "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_energy_shield"]}}} +{"ref": "+# total maximum Life", "better": 1, "matchers": [{"string": "Всего +# к максимуму здоровья "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_life"]}}} +{"ref": "+# total maximum Mana", "better": 1, "matchers": [{"string": "Всего +# к максимуму маны "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_mana"]}}} +{"ref": "+# total to all Attributes", "better": 1, "matchers": [{"string": "Всего +# ко всем характеристикам "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_all_attributes"]}}} +{"ref": "+# total to Dexterity", "better": 1, "matchers": [{"string": "Всего +# к ловкости "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_dexterity"]}}} +{"ref": "+# total to Intelligence", "better": 1, "matchers": [{"string": "Всего +# к интеллекту "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_intelligence"]}}} +{"ref": "+# total to Strength", "better": 1, "matchers": [{"string": "Всего +# к силе "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_strength"]}}} +{"ref": "+#% Global Critical Strike Chance", "better": 1, "matchers": [{"string": "Всего +#% к глобальному шансу критического удара "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_global_critical_strike_chance"]}}} +{"ref": "+#% Global Critical Strike Multiplier", "better": 1, "matchers": [{"string": "Всего +#% к множителю критического удара "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_global_critical_strike_multiplier"]}}} +{"ref": "+#% total Attack Speed", "better": 1, "matchers": [{"string": "Всего +#% к скорости атаки "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_attack_speed"]}}} +{"ref": "+#% total Cast Speed", "better": 1, "matchers": [{"string": "Всего +#% к скорости сотворения чар "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_cast_speed"]}}} +{"ref": "+#% total Elemental Resistance", "better": 1, "matchers": [{"string": "Всего +#% сопротивления стихиям "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_elemental_resistance"]}}} +{"ref": "+#% total to Chaos Resistance", "better": 1, "matchers": [{"string": "Всего +#% к сопротивлению хаосу "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_chaos_resistance"]}}} +{"ref": "+#% total to Cold Resistance", "better": 1, "matchers": [{"string": "Всего +#% к сопротивлению холоду "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_cold_resistance"]}}} +{"ref": "+#% total to Fire Resistance", "better": 1, "matchers": [{"string": "Всего +#% к сопротивлению огню "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_fire_resistance"]}}} +{"ref": "+#% total to Lightning Resistance", "better": 1, "matchers": [{"string": "Всего +#% к сопротивлению молнии "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_lightning_resistance"]}}} diff --git a/renderer/public/data/cmn-Hant/app_i18n.json b/renderer/public/data/cmn-Hant/app_i18n.json index 1bb7cfd9c..6cb2e02fb 100644 --- a/renderer/public/data/cmn-Hant/app_i18n.json +++ b/renderer/public/data/cmn-Hant/app_i18n.json @@ -1,32 +1,333 @@ { - - "Add": "添加", - "Retry": "重試", - "Offline": "離線", - "Online": "在線", - "You": "你", - "Browser": "瀏覧器", - "Search": "搜尋", - "min": "最小", - "max": " 最大", - "Restart required": "需要重啟", - "Save": "保存", - "Cancel": "取消", - "Enabled": "啟用", - "Disabled": "禁用", - "No": "否", - "Yes": "是", - "Remove": "移除", - "implicit": "固定", - "explicit": "隨機", - "enchant": "附魔", - "crafted": "工藝", - "fractured": "破裂", - "scourge": "天災", - "Not recognized modifier": "無法使用此詞綴", - "Refresh": "刷新", + "please_wait": "請稍候\u2026", + "choose_file": "選擇文件", + "app_is_ready": "已準備就緒並在後台運行", + "reopen_settings": "按 {0} 以繼續編輯。", + "seconds": "秒", + "league": "聯盟", + "realm": "區域", + "realm_intl": "國際", + "app": { + "leagues_loading": "正在加載聯盟\u2026", + "leagues_failed": "加載聯盟失敗", + "leagues_failed_help": "確保該區域未進行維護。也嘗試點擊“瀏覽器”按鈕,可能需要在那裡完成 CAPTCHA 驗證。", + "leagues_failed_help_alt": "價格檢查一個物品,並遵循那裡錯誤描述中的指示。", + "thanks_3rd_party": "這個工具依賴於 {0} 和 {1},考慮支持它們", + "toggle_browser_hint": "按 {0} 在瀏覽器和遊戲間切換。", + "contact_me": "可在 PoE Discord 群組中聯繫我,", + "version": "版本 {0}", + "release_notes": "更新記錄", + "report_bug": "在 GitHub 上報告錯誤", + "quit": "退出" + }, "map.mods.heist": "劫盜", - "map.mods.outdated": "過時", - "Support development on": "支持開發" - -} \ No newline at end of file + "map.mods.uber": "T17", + "map.mods.outdated": "已過時", + "Support development on": "支持開發於\u00A0", + "Blighted": "枯疫", + "Blight-ravaged": "枯疫肆虐", + "Magic": "魔法", + "Shaper": "塑者", + "Elder": "尊師", + "Crusader": "聖戰使者", + "Hunter": "狩獵者", + "Redeemer": "救贖者", + "Warlord": "戰爭領主", + "Superior": "卓越", + "Anomalous": "異常", + "Divergent": "分歧", + "Phantasmal": "幻影", + "item": { + "prop_quality": "品質 {0}%", + "base_percentile": "基礎百分位:{0}%", + "armour": "護甲:{0}", + "evasion_rating": "閃避值:{0}", + "energy_shield": "能量護盾:{0}", + "block": "格擋率:{0}%", + "total_dps": "總 DPS:{0}", + "physical_dps": "物理 DPS:{0}", + "elemental_dps": "元素 DPS:{0}", + "crit": "暴擊率:{0}%", + "aps": "攻擊次數:{0}", + "spirit": "精神:{0}", + "has_empty_modifier": "1 個空的或已製作的修改詞綴", + "has_empty_affix": "任何", + "has_empty_prefix": "前綴", + "has_empty_suffix": "後綴", + "item_level": "物品等級:{0}", + "stock": "庫存:{0}", + "map_tier": "地圖階級:{0}", + "area_level": "區域等級:{0}", + "heist_wings_revealed": "已揭示翼數:{0}", + "linked_sockets": "連接:{0}", + "white_sockets": "白: {0}", + "quality": "品質:{0}", + "gem_level": "等級:{0}", + "gem_sockets": "插槽:{0}", + "rune_sockets": "插槽:{0}", + "sentinel_charge": "充能:{0}", + "find_in_stash": "在儲藏中尋找", + "parse_error": "解析物品時發生錯誤", + "parse_error_help": "這可能是一個錯誤,你可以在 GitHub 上報告。", + "unknown": "未知物品", + "unknown_help": "如果這個物品是在本聯盟中推出的,可能會在下一次應用程序更新中被支持。", + "identification": "您正在嘗試價格檢查未鑑定的獨特物品,其基礎類型為“{0}”。是哪一個?", + "open_on_wiki": "在 Wiki 上開啟物品", + "open_on_poedb": "在 PoEDB 上開啟物品", + "info": "物品信息", + "corrupted": "已腐化", + "not_corrupted": "未腐化", + "mod_tier": "等級:{0}", + "mod_rank": "排名:{0}", + "mod_pseudo": "偽屬性", + "mod_implicit": "隱性屬性", + "mod_fractured": "裂隙", + "mod_explicit": "顯性屬性", + "mod_crafted": "已製作", + "mod_scourge": "災厄", + "unidentified": "未鉴定", + "veiled": "笼罩", + "foil_unique": "閃亮的獨特", + "mirrored": "已镜像", + "not_mirrored": "未镜像" + }, + "item_category": { + "prop": "類別:{0}", + "map": "地圖", + "jewel_abyss": "深淵珠寶", + "accessory_amulet": "護符", + "accessory_belt": "腰帶", + "armour_chest": "身體護甲", + "armour_boots": "靴子", + "weapon_bow": "弓", + "weapon_claw": "爪", + "weapon_dagger": "匕首", + "weapon_rod": "釣魚竿", + "flask": "瓶子", + "armour_gloves": "手套", + "armour_helmet": "頭盔", + "jewel": "珠寶", + "weapon_oneaxe": "單手斧", + "weapon_onemace": "單手錘", + "weapon_onesword": "單手劍", + "armour_quiver": "箭袋", + "accessory_ring": "戒指", + "weapon_runedagger": "符紋匕首", + "weapon_sceptre": "權杖", + "armour_shield": "盾牌", + "weapon_staff": "法杖", + "weapon_twoaxe": "雙手斧", + "weapon_twomace": "雙手錘", + "weapon_twosword": "雙手劍", + "weapon_wand": "魔杖", + "weapon_warstaff": "戰斗法杖", + "jewel_cluster": "星团珠寶", + "heistmission_blueprint": "劫盜藍圖", + "heistmission_contract": "劫盜契約", + "heistequipment_heisttool": "劫盜工具", + "heistequipment_heistreward": "劫盜飾品", + "heistequipment_heistweapon": "劫盜武器", + "heistequipment_heistutility": "劫盜斗篷", + "accessory_trinket": "飾品", + "sanctum_relic": "聖殿遺物", + "tincture": "色澤", + "azmeri_charm": "阿茲麥麗符咒" + }, + "filters": { + "selected_some": "已選擇:{0}/{1},屬性", + "selected_none": "忽略屬性", + "hidden_toggle": "隱藏", + "collapse": "折疊", + "mods_toggle": "修改詞綴", + "empty": "未找到相關屬性", + "tier": "等級 {0}", + "preset_pseudo": "偽屬性", + "preset_base_item": "基礎物品", + "hide_const_roll": "數值不是可變的", + "hide_ele_dps": "元素傷害不是主要的 DPS 來源", + "hide_phys_dps": "物理傷害不是主要的 DPS 來源", + "hide_ele_res": "根據精確的元素抗性過濾不合理地提高價格", + "hide_crafted_chaos": "沒有顯性詞綴的製作混沌抗性不存在價值", + "hide_anointment": "買家可能會更改神佑", + "hide_for_crafting": "僅在作為基礎物品價格檢查時選擇", + "hide_empty_mod": "僅在物品有 6 個詞綴(其中 1 個已製作)或有 5 個詞綴時選擇", + "tag_implicit": "隱性", + "tag_fractured": "裂隙", + "tag_crafted": "已製作", + "tag_scourge": "災厄", + "tag_enchant": "附魔", + "tag_variant": "變體", + "tag_corrupted": "腐化", + "tag_synthesised": "合成", + "tag_eldritch": "異界", + "tag_pseudo": "偽屬性", + "tag_explicit": "顯性", + "tag_explicit_shaper": "塑者", + "tag_explicit_elder": "尊師", + "tag_explicit_crusader": "聖戰使者", + "tag_explicit_hunter": "狩獵者", + "tag_explicit_redeemer": "救贖者", + "tag_explicit_warlord": "戰爭領主", + "tag_explicit_delve": "采掘", + "tag_explicit_veiled": "笼罩", + "tag_explicit_incursion": "侵入" + }, + "online_filter": { + "offline_toggle": "離線 & 在線", + "in_league_toggle": "在聯盟中", + "listed_any_time": "上架時間:不限", + "listed_1day": "1 天前", + "listed_3days": "3 天前", + "listed_1week": "1 週前", + "listed_2weeks": "2 週前", + "listed_1month": "1 個月前", + "listed_2months": "2 個月前", + "currency_any": "任意貨幣", + "currency_only_chaos": "混沌石", + "currency_only_div": "神聖石", + "currency_chaos_div": "兩者皆可" + }, + "widget": { + "title": "小工具標題", + "hide": "隱藏", + "edit": "編輯", + "move": "移動", + "delete": "刪除" + }, + "updates": { + "maybe_outdated": "您的版本可能已過時", + "latest": "您擁有最新版本", + "error": "檢查更新時發生錯誤", + "checking": "正在檢查更新", + "downloading": "正在下載\u2026", + "available": "更新可用:{0}", + "never_checked": "上次檢查:從未", + "last_checked": "上次檢查:{0}", + "check_now": "立即檢查", + "install_now": "立即安裝", + "downloads_page": "開啟下載頁面", + "installed_on_exit": "將在退出時自動安裝", + "download_manually": "您可以從 GitHub 下載", + "download_disabled": "您禁用了自動更新下載" + }, + "widget_menu": { + "add": "添加小工具\u2026", + "always_show": "顯示活躍小工具的按鈕", + "price_check": "價格檢查 (Ctrl + V)" + }, + "stopwatch": { + "name": "秒錶", + "paused": "已暫停", + "toggle_key": "開始和暫停", + "reset_key": "重置" + }, + "stash_search": { + "enable_keys": "按鍵", + "name": "儲藏搜尋", + "search_text": "搜尋文字或正則表達式", + "friendly_name": "友好名稱" + }, + "image_strip": { + "name": "圖像條" + }, + "item_search": { + "name": "物品搜尋", + "input": "按名稱搜尋\u2026", + "reset": "重置物品", + "heist_target": "劫盜目標:", + "target_gem": "技能寶石", + "target_replica": "複製品", + "too_many": "找到的物品過多,請更精確地輸入名稱。", + "not_found": "未找到物品。", + "ocr_gems_key": "執行技能寶石的 OCR" + }, + "map_check": { + "name": "地圖檢查", + "has_outdated": "某些屬性的措辭已更改。檢查並在設置中更新危險地圖詞綴。(此消息將在移除所有過期屬性後隱藏)", + "no_mods": "物品沒有詞綴。", + "profile": "配置文件", + "search_selected": "僅搜索選中的", + "search_stat_col": "屬性(找到:{0})", + "new_mods_icon": "顯示新詞綴圖標" + }, + "trade_result": { + "error": "交易網站請求失敗", + "matched": "匹配:{0}", + "trade": "交易", + "price": "價格", + "bulk": "大宗", + "stock": "庫存", + "fulfill": "完成", + "listed": "上架", + "seller": "賣家", + "item_level": "物品等級", + "gem_level": "等級", + "quality": "品質", + "base_item": "基礎物品", + "graph_7d": "最近 7 天", + "getting_price": "獲取價格 {0}", + "getting_price_from": "來自 poe.ninja \u2026", + "you_have": "您有", + "stack": "堆疊" + }, + "settings": { + "title": "設置 - 流亡交易所 2", + "language": "語言", + "private_league": "或私密聯盟", + "account_name": "賬戶名稱", + "last_char_name": "最後角色名稱", + "chat_cmd_add": "添加命令", + "chat_cmd_send": "按下 Enter", + "no_key": "未設置", + "clear_hotkey": "可按 Backspace 清除快捷鍵", + "overlay": "覆蓋層", + "stash_scroll": "儲藏捲動", + "delve_grid": "探索圖表格網", + "window_title": "PoE 窗口標題", + "thank_you": "應用程序開發感謝:", + "hotkeys": "熱鍵", + "chat": "聊天", + "general": "一般", + "debug": "調試", + "about": "關於", + "font_size": "字體大小", + "overlay_bg": "當覆蓋層可點擊時的背景", + "overlay_bg_none": "透明", + "overlay_bg_focus_game": "點擊背景聚焦遊戲", + "overlay_always_close": "總是完整關閉覆蓋層而不是隱藏", + "poe_log_file": "PoE 日誌文件", + "poe_cfg_file": "PoE 配置文件", + "restore_clipboard": "恢復剪貼板", + "show_overlay_ready": "當覆蓋層檢測到 PoE 窗口時顯示通知", + "debug_hotkeys": "記錄所有按鍵" + }, + "price_check": { + "name": "價格檢查", + "hotkey": "自動隱藏模式", + "hotkey_locked": "開啟無需自動隱藏", + "enable_browser": "啟用內置瀏覽器", + "builtin_browser_warning": "我知道未來的版本可能會包含惡意代碼,可能會竊取我的 POESESSID。", + "highlight_hint": "即使此設置關閉,您的物品也會被突出顯示", + "show_seller": "顯示賣家", + "fill_rolls": "填充屬性值", + "fill_roll_exact": "精確值", + "cursor_pos": "顯示記憶的光標位置", + "extra_delay": "額外時間以防止虛假限制", + "warn_expensive": "以下設置是在增加網站負載和便捷價格檢查/更準確搜索之間的折衷。", + "accurate_collapsed": "在折疊的列表中顯示指示", + "auto_search": "按下時自動搜尋", + "select_stock": "始終選擇“庫存”過濾器", + "show_prediction": "顯示價格預測", + "remember_currency": "記住買方貨幣過濾器" + }, + "poe2_new": { + "beta_warning": "這是 POE2 的測試版,某些功能可能無法正常運作。", + "beta_warning2": "如發現任何問題請回報。", + "pseudo_note": "交易網站不支援偽屬性", + "pseudo_note2": "物品可能會顯示比實際更高的價值", + "parse_error": "由於某些原因,此物品的屬性無法解析。", + "parse_error2": "可能包含尚未支援的詞綴。", + "parse_error3": "(可能是來自 POE1 的新詞綴或修改後的措辭)", + "bulk_exchange": "尚未實現大量交易匯率功能" + } + } \ No newline at end of file diff --git a/renderer/public/data/cmn-Hant/client_strings.js b/renderer/public/data/cmn-Hant/client_strings.js index e87826005..6a0320ecd 100644 --- a/renderer/public/data/cmn-Hant/client_strings.js +++ b/renderer/public/data/cmn-Hant/client_strings.js @@ -101,5 +101,11 @@ export default { CHAT_GUILD: /^&(?:<(?.+?)> )?(?.+?): (?.+)$/, CHAT_WHISPER_TO: /^@向 (?.+?): (?.+)$/, CHAT_WHISPER_FROM: /^@來自 (?:<(?.+?)> )?(?.+?): (?.+)$/, - CHAT_WEBTRADE_GEM: /^等級 (?\d+) (?\d+)% (?.+)$/ + CHAT_WEBTRADE_GEM: /^等級 (?\d+) (?\d+)% (?.+)$/, + REQUIREMENTS: '需求:', + CHARM_SLOTS: '護符欄位:', + BASE_SPIRIT: '精魂:', + QUIVER_HELP_TEXT: '持弓時才可裝備', + FLASK_HELP_TEXT: '右鍵點擊以喝下藥劑。', + CHARM_HELP_TEXT: '達成特定條件時會自動使用。' } diff --git a/renderer/public/data/en/app_i18n.json b/renderer/public/data/en/app_i18n.json index dff2983e9..2725f39e2 100644 --- a/renderer/public/data/en/app_i18n.json +++ b/renderer/public/data/en/app_i18n.json @@ -319,5 +319,15 @@ "select_stock": "Always select \"Stock\" filter", "show_prediction": "Show price prediction", "remember_currency": "Remember the Buyout Currency filter" + }, + "poe2_new": { + "beta_warning": "This is in BETA for POE2, things will not work always as expected.", + "beta_warning2": "Please report any issues.", + "pseudo_note": "Pseudo mods not supported by trade site", + "pseudo_note2": "Items may appear to be more valuable than they actually are", + "parse_error": "For some reason this item's stats did not parse.", + "parse_error2": "It likely has a mod that is not supported yet.", + "parse_error3": "(Potentially new or changed wording from poe1)", + "bulk_exchange": "Bulk exchange rates are not implemented yet" } } \ No newline at end of file diff --git a/renderer/public/data/en/client_strings.js b/renderer/public/data/en/client_strings.js index 35f01e454..e4fd1a31e 100644 --- a/renderer/public/data/en/client_strings.js +++ b/renderer/public/data/en/client_strings.js @@ -102,5 +102,11 @@ export default { CHAT_WHISPER_TO: /^@To (?.+?): (?.+)$/, CHAT_WHISPER_FROM: /^@From (?:<(?.+?)> )?(?.+?): (?.+)$/, CHAT_WEBTRADE_GEM: /^level (?\d+) (?\d+)% (?.+)$/, - REQUIREMENTS: 'Requirements' + REQUIREMENTS: 'Requirements', + CHARM_SLOTS: 'Charm Slots:', + BASE_SPIRIT: 'Spirit:', + QUIVER_HELP_TEXT: 'Can only be equipped', + FLASK_HELP_TEXT: 'Right click to drink.', + CHARM_HELP_TEXT: 'Used automatically when condition' } + diff --git a/renderer/public/data/en/items.ndjson b/renderer/public/data/en/items.ndjson index 80cb24f3b..504916889 100644 --- a/renderer/public/data/en/items.ndjson +++ b/renderer/public/data/en/items.ndjson @@ -3007,6 +3007,7 @@ {"name": "Grand Spectrum", "refName": "Grand Spectrum", "namespace": "UNIQUE", "unique": {"base": "Emerald"}} {"name": "Grand Spectrum", "refName": "Grand Spectrum", "namespace": "UNIQUE", "unique": {"base": "Ruby"}} {"name": "Grand Spectrum", "refName": "Grand Spectrum", "namespace": "UNIQUE", "unique": {"base": "Sapphire"}} +{"name": "Heroic Tragedy", "refName": "Heroic Tragedy", "namespace": "UNIQUE", "unique": {"base": "Timeless Jewel"}} {"name": "Prism of Belief", "refName": "Prism of Belief", "namespace": "UNIQUE", "unique": {"base": "Diamond"}} {"name": "The Adorned", "refName": "The Adorned", "namespace": "UNIQUE", "unique": {"base": "Diamond"}} {"name": "Brain Rattler", "refName": "Brain Rattler", "namespace": "UNIQUE", "unique": {"base": "Studded Greatclub"}} @@ -3021,6 +3022,11 @@ {"name": "Guiding Palm", "refName": "Guiding Palm", "namespace": "UNIQUE", "unique": {"base": "Shrine Sceptre"}} {"name": "Hoghunt", "refName": "Hoghunt", "namespace": "UNIQUE", "unique": {"base": "Felled Greatclub"}} {"name": "Hrimnor's Hymn", "refName": "Hrimnor's Hymn", "namespace": "UNIQUE", "unique": {"base": "Oak Greathammer"}} +{"name": "INCOMPLETE", "refName": "INCOMPLETE", "namespace": "UNIQUE", "unique": {"base": "War Spear"}} +{"name": "INCOMPLETE", "refName": "INCOMPLETE", "namespace": "UNIQUE", "unique": {"base": "Vampiric Blade"}} +{"name": "INCOMPLETE", "refName": "INCOMPLETE", "namespace": "UNIQUE", "unique": {"base": "Charred Shortsword"}} +{"name": "INCOMPLETE", "refName": "INCOMPLETE", "namespace": "UNIQUE", "unique": {"base": "Corroded Longsword"}} +{"name": "INCOMPLETE", "refName": "INCOMPLETE", "namespace": "UNIQUE", "unique": {"base": "Rippled Greatsword"}} {"name": "Lifesprig", "refName": "Lifesprig", "namespace": "UNIQUE", "unique": {"base": "Attuned Wand"}} {"name": "Matsya", "refName": "Matsya", "namespace": "UNIQUE", "unique": {"base": "Crescent Quarterstaff"}} {"name": "Mist Whisper", "refName": "Mist Whisper", "namespace": "UNIQUE", "unique": {"base": "Makeshift Crossbow"}} diff --git a/renderer/public/data/en/stats.ndjson b/renderer/public/data/en/stats.ndjson index 2fe07f8fb..8bc90cd80 100644 --- a/renderer/public/data/en/stats.ndjson +++ b/renderer/public/data/en/stats.ndjson @@ -1,3 +1,33 @@ +{"ref": "+# total maximum Spirit", "better": 1, "id": "base_maximum_spirit", "matchers": [{"string": "# to maximum Spirit", "negate": false}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_spirit"]}}} +{"ref": "# Life Regenerated per Second", "better": 1, "matchers": [{"string": "# Life Regenerated per Second "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_life_regen"]}}} +{"ref": "#% increased Cold Damage", "better": 1, "id": "cold_damage_+%", "matchers": [{"string": "#% increased Cold Damage", "negate": false}, {"string": "#% reduced Cold Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3291658075"], "pseudo": ["pseudo.pseudo_increased_cold_damage"]}}} +{"ref": "#% increased Cold Spell Damage", "better": 1, "matchers": [{"string": "#% increased Cold Spell Damage "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_cold_spell_damage"]}}} +{"ref": "#% increased Elemental Damage", "better": 1, "id": "elemental_damage_+%", "matchers": [{"string": "#% increased Elemental Damage", "negate": false}, {"string": "#% reduced Elemental Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3141070085"], "pseudo": ["pseudo.pseudo_increased_elemental_damage"]}}} +{"ref": "#% increased Elemental Damage with Attacks", "better": 1, "id": "elemental_damage_with_attack_skills_+%", "matchers": [{"string": "#% increased Elemental Damage with Attacks", "negate": false}, {"string": "#% reduced Elemental Damage with Attacks", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_387439868"], "enchant": ["enchant.stat_387439868"], "rune": ["rune.stat_387439868"], "pseudo": ["pseudo.pseudo_increased_elemental_damage_with_attack_skills"]}}} +{"ref": "#% increased Fire Damage", "better": 1, "id": "fire_damage_+%", "matchers": [{"string": "#% increased Fire Damage", "negate": false}, {"string": "#% reduced Fire Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3962278098"], "pseudo": ["pseudo.pseudo_increased_fire_damage"]}}} +{"ref": "#% increased Fire Spell Damage", "better": 1, "matchers": [{"string": "#% increased Fire Spell Damage "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_fire_spell_damage"]}}} +{"ref": "#% increased Lightning Damage", "better": 1, "id": "lightning_damage_+%", "matchers": [{"string": "#% increased Lightning Damage", "negate": false}, {"string": "#% reduced Lightning Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2231156303"], "pseudo": ["pseudo.pseudo_increased_lightning_damage"]}}} +{"ref": "#% increased Lightning Spell Damage", "better": 1, "matchers": [{"string": "#% increased Lightning Spell Damage "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_lightning_spell_damage"]}}} +{"ref": "#% increased Mana Regeneration Rate", "better": 1, "id": "mana_regeneration_rate_+%", "matchers": [{"string": "#% increased Mana Regeneration Rate", "negate": false}, {"string": "#% reduced Mana Regeneration Rate", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_789117908"], "implicit": ["implicit.stat_789117908"], "enchant": ["enchant.stat_789117908"], "rune": ["rune.stat_789117908"], "pseudo": ["pseudo.pseudo_increased_mana_regen"]}}} +{"ref": "#% increased Movement Speed", "better": 1, "id": "base_movement_velocity_+%", "matchers": [{"string": "#% increased Movement Speed", "negate": false}, {"string": "#% reduced Movement Speed", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2250533757"], "implicit": ["implicit.stat_2250533757"], "enchant": ["enchant.stat_2250533757"], "sanctum": ["sanctum.stat_1416455556"], "pseudo": ["pseudo.pseudo_increased_movement_speed"]}}} +{"ref": "#% increased Spell Damage", "better": 1, "id": "spell_damage_+%", "matchers": [{"string": "#% increased Spell Damage", "negate": false}, {"string": "#% reduced Spell Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2974417149"], "enchant": ["enchant.stat_2974417149"], "pseudo": ["pseudo.pseudo_increased_spell_damage"]}}} +{"ref": "#% total increased Physical Damage", "better": 1, "matchers": [{"string": "#% total increased Physical Damage "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_increased_physical_damage"]}}} +{"ref": "+# total maximum Energy Shield", "better": 1, "matchers": [{"string": "+# total maximum Energy Shield "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_energy_shield"]}}} +{"ref": "+# total maximum Life", "better": 1, "matchers": [{"string": "+# total maximum Life "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_life"]}}} +{"ref": "+# total maximum Mana", "better": 1, "matchers": [{"string": "+# total maximum Mana "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_mana"]}}} +{"ref": "+# total to all Attributes", "better": 1, "matchers": [{"string": "+# total to all Attributes "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_all_attributes"]}}} +{"ref": "+# total to Dexterity", "better": 1, "matchers": [{"string": "+# total to Dexterity "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_dexterity"]}}} +{"ref": "+# total to Intelligence", "better": 1, "matchers": [{"string": "+# total to Intelligence "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_intelligence"]}}} +{"ref": "+# total to Strength", "better": 1, "matchers": [{"string": "+# total to Strength "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_strength"]}}} +{"ref": "+#% Global Critical Strike Chance", "better": 1, "matchers": [{"string": "+#% Global Critical Strike Chance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_global_critical_strike_chance"]}}} +{"ref": "+#% Global Critical Strike Multiplier", "better": 1, "matchers": [{"string": "+#% Global Critical Strike Multiplier "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_global_critical_strike_multiplier"]}}} +{"ref": "+#% total Attack Speed", "better": 1, "matchers": [{"string": "+#% total Attack Speed "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_attack_speed"]}}} +{"ref": "+#% total Cast Speed", "better": 1, "matchers": [{"string": "+#% total Cast Speed "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_cast_speed"]}}} +{"ref": "+#% total Elemental Resistance", "better": 1, "matchers": [{"string": "+#% total Elemental Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_elemental_resistance"]}}} +{"ref": "+#% total to Chaos Resistance", "better": 1, "matchers": [{"string": "+#% total to Chaos Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_chaos_resistance"]}}} +{"ref": "+#% total to Cold Resistance", "better": 1, "matchers": [{"string": "+#% total to Cold Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_cold_resistance"]}}} +{"ref": "+#% total to Fire Resistance", "better": 1, "matchers": [{"string": "+#% total to Fire Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_fire_resistance"]}}} +{"ref": "+#% total to Lightning Resistance", "better": 1, "matchers": [{"string": "+#% total to Lightning Resistance "}], "trade": {"ids": {"pseudo": ["pseudo.pseudo_total_lightning_resistance"]}}} {"ref": "+# to Strength", "better": 1, "id": "additional_strength", "matchers": [{"string": "# to Strength", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4080418644"], "implicit": ["implicit.stat_4080418644"], "enchant": ["enchant.stat_4080418644"]}}} {"ref": "+# to Dexterity", "better": 1, "id": "additional_dexterity", "matchers": [{"string": "# to Dexterity", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3261801346"], "implicit": ["implicit.stat_3261801346"], "enchant": ["enchant.stat_3261801346"]}}} {"ref": "+# to Intelligence", "better": 1, "id": "additional_intelligence", "matchers": [{"string": "# to Intelligence", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_328541901"], "implicit": ["implicit.stat_328541901"], "enchant": ["enchant.stat_328541901"]}}} @@ -6,7 +36,7 @@ {"ref": "+#% to Cold Resistance", "better": 1, "id": "base_cold_damage_resistance_%", "matchers": [{"string": "#% to Cold Resistance", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4220027924"], "implicit": ["implicit.stat_4220027924"], "enchant": ["enchant.stat_4220027924"], "rune": ["rune.stat_4220027924"]}}} {"ref": "+#% to Lightning Resistance", "better": 1, "id": "base_lightning_damage_resistance_%", "matchers": [{"string": "#% to Lightning Resistance", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1671376347"], "implicit": ["implicit.stat_1671376347"], "enchant": ["enchant.stat_1671376347"], "rune": ["rune.stat_1671376347"]}}} {"ref": "+#% to all Elemental Resistances", "better": 1, "id": "base_resist_all_elements_%", "matchers": [{"string": "#% to all Elemental Resistances", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2901986750"], "implicit": ["implicit.stat_2901986750"], "enchant": ["enchant.stat_2901986750"], "rune": ["rune.stat_2901986750"]}}} -{"ref": "Allies in your Presence have +#% to all Elemental Resistances", "better": 1, "id": "allies_in_presence_resist_all_elements_%", "matchers": [{"string": "Allies in your Presence have +#% to all Elemental Resistances", "negate": false}], "trade": {"ids": null}} +{"ref": "Allies in your Presence have +#% to all Elemental Resistances", "better": 1, "id": "allies_in_presence_resist_all_elements_%", "matchers": [{"string": "Allies in your Presence have +#% to all Elemental Resistances", "negate": false}, {"string": "Allies in your Presence have #% to all Elemental Resistances", "negate": false}], "trade": {"ids": {"explicit":["explicit.stat_3850614073"]}}} {"ref": "+#% to Chaos Resistance", "better": 1, "id": "base_chaos_damage_resistance_%", "matchers": [{"string": "#% to Chaos Resistance", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2923486259"], "implicit": ["implicit.stat_2923486259"], "enchant": ["enchant.stat_2923486259"], "rune": ["rune.stat_2923486259"]}}} {"ref": "+# to maximum Life", "better": 1, "id": "base_maximum_life", "matchers": [{"string": "# to maximum Life", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3299347043"], "implicit": ["implicit.stat_3299347043"], "enchant": ["enchant.stat_3299347043"], "rune": ["rune.stat_3299347043"]}}} {"ref": "#% increased maximum Life", "better": 1, "id": "maximum_life_+%", "matchers": [{"string": "#% increased maximum Life", "negate": false}, {"string": "#% reduced maximum Life", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_983749596"], "rune": ["rune.stat_983749596"], "sanctum": ["sanctum.stat_1200789871"]}}} @@ -29,7 +59,6 @@ {"ref": "#% increased Evasion and Energy Shield", "better": 1, "id": "local_evasion_and_energy_shield_+%", "matchers": [{"string": "#% increased Evasion and Energy Shield", "negate": false}, {"string": "#% reduced Evasion and Energy Shield", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1999113824"], "enchant": ["enchant.stat_1999113824"]}}} {"ref": "#% increased Attribute Requirements", "better": 1, "id": "local_attribute_requirements_+%", "matchers": [{"string": "#% increased Attribute Requirements", "negate": false}, {"string": "#% reduced Attribute Requirements", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3639275092"], "enchant": ["enchant.stat_3639275092"]}}} {"ref": "+# to Stun Threshold", "better": 1, "id": "stun_threshold_+", "matchers": [{"string": "# to Stun Threshold", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_915769802"], "rune": ["rune.stat_915769802"]}}} -{"ref": "#% increased Movement Speed", "better": 1, "id": "base_movement_velocity_+%", "matchers": [{"string": "#% increased Movement Speed", "negate": false}, {"string": "#% reduced Movement Speed", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2250533757"], "implicit": ["implicit.stat_2250533757"], "enchant": ["enchant.stat_2250533757"], "sanctum": ["sanctum.stat_1416455556"]}}} {"ref": "# to # Physical Thorns damage", "better": 1, "id": "thorns_minimum_base_physical_damage", "matchers": [{"string": "# to # Physical Thorns damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2881298780"]}}} {"ref": "Adds # to # Physical Damage to Attacks", "better": 1, "id": "attack_minimum_added_physical_damage", "matchers": [{"string": "Adds # to # Physical Damage to Attacks", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3032590688"], "implicit": ["implicit.stat_3032590688"]}}} {"ref": "Adds # to # Fire damage to Attacks", "better": 1, "id": "attack_minimum_added_fire_damage", "matchers": [{"string": "Adds # to # Fire damage to Attacks", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1573130764"], "implicit": ["implicit.stat_1573130764"]}}} @@ -45,10 +74,6 @@ {"ref": "Allies in your Presence deal # to # additional Attack Lightning Damage", "better": 1, "id": "allies_in_presence_attack_minimum_added_lightning_damage", "matchers": [{"string": "Allies in your Presence deal # to # additional Attack Lightning Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2854751904"]}}} {"ref": "No Physical Damage", "better": 1, "id": "local_physical_damage_+%", "matchers": [{"string": "No Physical Damage", "negate": false}], "trade": {"ids": null}} {"ref": "Allies in your Presence deal #% increased Damage", "better": 1, "id": "allies_in_presence_damage_+%", "matchers": [{"string": "Allies in your Presence deal #% increased Damage", "negate": false}, {"string": "Allies in your Presence deal #% reduced Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1798257884"], "enchant": ["enchant.stat_1798257884"]}}} -{"ref": "#% increased Spell Damage", "better": 1, "id": "spell_damage_+%", "matchers": [{"string": "#% increased Spell Damage", "negate": false}, {"string": "#% reduced Spell Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2974417149"], "enchant": ["enchant.stat_2974417149"]}}} -{"ref": "#% increased Fire Damage", "better": 1, "id": "fire_damage_+%", "matchers": [{"string": "#% increased Fire Damage", "negate": false}, {"string": "#% reduced Fire Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3962278098"]}}} -{"ref": "#% increased Cold Damage", "better": 1, "id": "cold_damage_+%", "matchers": [{"string": "#% increased Cold Damage", "negate": false}, {"string": "#% reduced Cold Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3291658075"]}}} -{"ref": "#% increased Lightning Damage", "better": 1, "id": "lightning_damage_+%", "matchers": [{"string": "#% increased Lightning Damage", "negate": false}, {"string": "#% reduced Lightning Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2231156303"]}}} {"ref": "#% increased Chaos Damage", "better": 1, "id": "chaos_damage_+%", "matchers": [{"string": "#% increased Chaos Damage", "negate": false}, {"string": "#% reduced Chaos Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_736967255"]}}} {"ref": "#% increased Spell Physical Damage", "better": 1, "id": "spell_physical_damage_+%", "matchers": [{"string": "#% increased Spell Physical Damage", "negate": false}, {"string": "#% reduced Spell Physical Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2768835289"]}}} {"ref": "#% increased Trap Damage", "better": 1, "id": "trap_damage_+%", "matchers": [{"string": "#% increased Trap Damage", "negate": false}, {"string": "#% reduced Trap Damage", "negate": true}], "trade": {"ids": null}} @@ -64,7 +89,6 @@ {"ref": "+# to Level of all Projectile Skills", "better": 1, "id": "projectile_skill_gem_level_+", "matchers": [{"string": "# to Level of all Projectile Skills", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1202301673"]}}} {"ref": "# Life Regeneration per second", "better": 1, "id": "base_life_regeneration_rate_per_minute", "matchers": [{"string": "# Life Regeneration per second", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3325883026"], "implicit": ["implicit.stat_3325883026"]}}} {"ref": "Allies in your Presence Regenerate # Life per second", "better": 1, "id": "allies_in_presence_life_regeneration_rate_per_minute", "matchers": [{"string": "Allies in your Presence Regenerate # Life per second", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4010677958"]}}} -{"ref": "#% increased Mana Regeneration Rate", "better": 1, "id": "mana_regeneration_rate_+%", "matchers": [{"string": "#% increased Mana Regeneration Rate", "negate": false}, {"string": "#% reduced Mana Regeneration Rate", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_789117908"], "implicit": ["implicit.stat_789117908"], "enchant": ["enchant.stat_789117908"], "rune": ["rune.stat_789117908"]}}} {"ref": "Leech #% of Physical Attack Damage as Life", "better": 1, "id": "base_life_leech_from_physical_attack_damage_permyriad", "matchers": [{"string": "Leech #% of Physical Attack Damage as Life", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2557965901"], "enchant": ["enchant.stat_2557965901"]}}} {"ref": "Leeches #% of Physical Damage as Life", "better": 1, "id": "local_life_leech_from_physical_damage_permyriad", "matchers": [{"string": "Leeches #% of Physical Damage as Life", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_55876295"], "rune": ["rune.stat_55876295"]}}} {"ref": "Leech #% of Physical Attack Damage as Mana", "better": 1, "id": "base_mana_leech_from_physical_attack_damage_permyriad", "matchers": [{"string": "Leech #% of Physical Attack Damage as Mana", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_707457662"], "enchant": ["enchant.stat_707457662"]}}} @@ -114,7 +138,7 @@ {"ref": "+#% to all Maximum Elemental Resistances", "better": 1, "id": "additional_maximum_all_elemental_resistances_%", "matchers": [{"string": "#% to all Maximum Elemental Resistances", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1978899297"], "implicit": ["implicit.stat_1978899297"], "enchant": ["enchant.stat_1978899297"]}}} {"ref": "#% increased Energy Shield Recharge Rate", "better": 1, "id": "energy_shield_recharge_rate_+%", "matchers": [{"string": "#% increased Energy Shield Recharge Rate", "negate": false}, {"string": "#% reduced Energy Shield Recharge Rate", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2339757871"]}}} {"ref": "#% chance to Pierce an Enemy", "better": 1, "id": "base_chance_to_pierce_%", "matchers": [{"string": "#% chance to Pierce an Enemy", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2321178454"], "implicit": ["implicit.stat_2321178454"], "enchant": ["enchant.stat_2321178454"]}}} -{"ref": "Bow Attacks fire an additional Arrow", "better": 1, "id": "number_of_additional_arrows", "matchers": [{"string": "Bow Attacks fire an additional Arrow", "negate": false}], "trade": {"ids": null}} +{"ref": "Bow Attacks fire an additional Arrow", "better": 1, "id": "number_of_additional_arrows", "matchers": [{"string": "Bow Attacks fire an additional Arrow", "negate": false}, {"string": "Bow Attacks fire # additional Arrows", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3885405204"], "implicit": ["implicit.stat_3885405204"], "enchant": ["enchant.stat_3885405204"]}}} {"ref": "Loads an additional bolt", "better": 1, "id": "base_number_of_crossbow_bolts", "matchers": [{"string": "Loads an additional bolt", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1039380318"], "implicit": ["implicit.stat_1039380318"], "enchant": ["enchant.stat_1039380318"]}}} {"ref": "#% increased Flask Life Recovery rate", "better": 1, "id": "flask_life_recovery_rate_+%", "matchers": [{"string": "#% increased Flask Life Recovery rate", "negate": false}, {"string": "#% reduced Flask Life Recovery rate", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_51994685"]}}} {"ref": "#% increased Flask Mana Recovery rate", "better": 1, "id": "flask_mana_recovery_rate_+%", "matchers": [{"string": "#% increased Flask Mana Recovery rate", "negate": false}, {"string": "#% reduced Flask Mana Recovery rate", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1412217137"]}}} @@ -132,7 +156,6 @@ {"ref": "#% of Damage taken Recouped as Mana", "better": 1, "id": "damage_taken_goes_to_mana_%", "matchers": [{"string": "#% of Damage taken Recouped as Mana", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_472520716"], "enchant": ["enchant.stat_472520716"]}}} {"ref": "#% increased Stun Duration", "better": 1, "id": "local_base_stun_duration_+%", "matchers": [{"string": "#% increased Stun Duration", "negate": false}, {"string": "#% reduced Stun Duration", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_748522257"]}}} {"ref": "Causes #% increased Stun Buildup", "better": 1, "id": "local_hit_damage_stun_multiplier_+%", "matchers": [{"string": "Causes #% increased Stun Buildup", "negate": false}, {"string": "Causes #% reduced Stun Buildup", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_791928121"], "implicit": ["implicit.stat_791928121"], "enchant": ["enchant.stat_791928121"], "rune": ["rune.stat_791928121"]}}} -{"ref": "#% increased Elemental Damage with Attacks", "better": 1, "id": "elemental_damage_with_attack_skills_+%", "matchers": [{"string": "#% increased Elemental Damage with Attacks", "negate": false}, {"string": "#% reduced Elemental Damage with Attacks", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_387439868"], "enchant": ["enchant.stat_387439868"], "rune": ["rune.stat_387439868"]}}} {"ref": "Gain #% of Damage as Extra Fire Damage", "better": 1, "id": "non_skill_base_all_damage_%_to_gain_as_fire", "matchers": [{"string": "Gain #% of Damage as Extra Fire Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3015669065"]}}} {"ref": "Gain #% of Damage as Extra Cold Damage", "better": 1, "id": "non_skill_base_all_damage_%_to_gain_as_cold", "matchers": [{"string": "Gain #% of Damage as Extra Cold Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2505884597"]}}} {"ref": "Gain #% of Damage as Extra Lightning Damage", "better": 1, "id": "non_skill_base_all_damage_%_to_gain_as_lightning", "matchers": [{"string": "Gain #% of Damage as Extra Lightning Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3278136794"]}}} @@ -197,7 +220,7 @@ {"ref": "Causes Enemies to Explode on Critical kill, for #% of their Life as Physical Damage", "better": 1, "id": "local_explode_on_kill_with_crit_%_physical_damage_to_deal", "matchers": [{"string": "Causes Enemies to Explode on Critical kill, for #% of their Life as Physical Damage", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_1541903247"]}}} {"ref": "Crushes Enemies on Hit", "better": 1, "id": "local_crush_on_hit", "matchers": [{"string": "Crushes Enemies on Hit", "negate": false}], "trade": {"ids": null}} {"ref": "#% chance to Maim on Hit", "better": 1, "id": "local_maim_on_hit_%", "matchers": [{"string": "#% chance to Maim on Hit", "negate": false}], "trade": {"ids": {"enchant": ["enchant.stat_2763429652"]}}} -{"ref": "#% increased Projectile Speed when thrown", "better": 1, "id": "local_projectile_speed_+%", "matchers": [{"string": "#% increased Projectile Speed when thrown", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Projectile Speed when thrown", "better": 1, "id": "local_projectile_speed_+%", "matchers": [{"string": "#% increased Projectile Speed when thrown", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_535217483"]}}} {"ref": "Uses both hand slots", "better": 1, "id": "local_weapon_uses_both_hands", "matchers": [{"string": "Uses both hand slots", "negate": false}], "trade": {"ids": null}} {"ref": "#% chance to Blind Enemies on hit", "better": 1, "id": "local_chance_to_blind_on_hit_%", "matchers": [{"string": "#% chance to Blind Enemies on hit", "negate": false}], "trade": {"ids": {"enchant": ["enchant.stat_2301191210"]}}} {"ref": "#% chance to Poison on Hit", "better": 1, "id": "local_poison_on_hit_%", "matchers": [{"string": "#% chance to Poison on Hit", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_795138349"], "enchant": ["enchant.stat_3885634897"], "rune": ["rune.stat_3885634897"]}}} @@ -254,7 +277,6 @@ {"ref": "#% increased Daze Buildup", "better": 1, "id": "daze_build_up_+%", "matchers": [{"string": "#% increased Daze Buildup", "negate": false}, {"string": "#% reduced Daze Buildup", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1949833742"]}}} {"ref": "Debuffs on you expire #% faster", "better": 1, "id": "debuff_time_passed_+%", "matchers": [{"string": "Debuffs on you expire #% faster", "negate": false}, {"string": "Debuffs on you expire #% slower", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1238227257"]}}} {"ref": "#% increased Duration of Ignite, Shock and Chill on Enemies", "better": 1, "id": "ignite_shock_chill_duration_+%", "matchers": [{"string": "#% increased Duration of Ignite, Shock and Chill on Enemies", "negate": false}, {"string": "#% reduced Duration of Ignite, Shock and Chill on Enemies", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1062710370"]}}} -{"ref": "#% increased Elemental Damage", "better": 1, "id": "elemental_damage_+%", "matchers": [{"string": "#% increased Elemental Damage", "negate": false}, {"string": "#% reduced Elemental Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3141070085"]}}} {"ref": "Empowered Attacks deal #% increased Damage", "better": 1, "id": "empowered_attack_damage_+%", "matchers": [{"string": "Empowered Attacks deal #% increased Damage", "negate": false}, {"string": "Empowered Attacks deal #% reduced Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1569101201"]}}} {"ref": "Meta Skills gain #% increased Energy", "better": 1, "id": "energy_generated_+%", "matchers": [{"string": "Meta Skills gain #% increased Energy", "negate": false}, {"string": "Meta Skills gain #% reduced Energy", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_4236566306"], "enchant": ["enchant.stat_4236566306"]}}} {"ref": "Damaging Ailments deal damage #% faster", "better": 1, "id": "damaging_ailments_deal_damage_+%_faster", "matchers": [{"string": "Damaging Ailments deal damage #% faster", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_538241406"]}}} diff --git a/renderer/public/data/ko/client_strings.js b/renderer/public/data/ko/client_strings.js index a2f487ba7..f6c87debc 100644 --- a/renderer/public/data/ko/client_strings.js +++ b/renderer/public/data/ko/client_strings.js @@ -101,5 +101,11 @@ export default { CHAT_GUILD: /^&(?:<(?.+?)> )?(?.+?): (?.+)$/, CHAT_WHISPER_TO: /^@발신 (?.+?): (?.+)$/, CHAT_WHISPER_FROM: /^@수신 (?:<(?.+?)> )?(?.+?): (?.+)$/, - CHAT_WEBTRADE_GEM: /^уровень (?\d+) (?\d+)% (?.+)$/ + CHAT_WEBTRADE_GEM: /^уровень (?\d+) (?\d+)% (?.+)$/, + REQUIREMENTS: '요구사항:', + CHARM_SLOTS: '호신부 슬롯:', + BASE_SPIRIT: '정신력:', + QUIVER_HELP_TEXT: '활 장착', + FLASK_HELP_TEXT: '마시려면 우클릭하십시오.', + CHARM_HELP_TEXT: '조건이 충족되면 자동으로 ' } diff --git a/renderer/public/data/manual-patch.ndjson b/renderer/public/data/manual-patch.ndjson new file mode 100644 index 000000000..9e3538fa4 --- /dev/null +++ b/renderer/public/data/manual-patch.ndjson @@ -0,0 +1 @@ +{"ref": "Allies in your Presence have +#% to all Elemental Resistances", "better": 1, "id": "allies_in_presence_resist_all_elements_%", "matchers": [{"string": "Allies in your Presence have +#% to all Elemental Resistances", "negate": false}, {"string": "Allies in your Presence have #% to all Elemental Resistances", "negate": false}], "trade": {"ids": {"explicit":["explicit.stat_3850614073"]}}} diff --git a/renderer/public/data/pseudo-pseudo-runes.json b/renderer/public/data/pseudo-pseudo-runes.json new file mode 100644 index 000000000..c83ad10c4 --- /dev/null +++ b/renderer/public/data/pseudo-pseudo-runes.json @@ -0,0 +1,760 @@ +{ + "pseudo.pseudo_total_elemental_resistance": { + "filters": [ + { + "id": "explicit.stat_3372524247", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_3372524247", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "rune.stat_3372524247", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "explicit.stat_4220027924", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_4220027924", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "rune.stat_4220027924", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "explicit.stat_1671376347", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_1671376347", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "rune.stat_1671376347", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_total_resistance": { + "filters": [ + { + "id": "explicit.stat_3372524247", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_3372524247", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "rune.stat_3372524247", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "explicit.stat_4220027924", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_4220027924", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "rune.stat_4220027924", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "explicit.stat_1671376347", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_1671376347", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "rune.stat_1671376347", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "explicit.stat_2923486259", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_2923486259", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "rune.stat_2923486259", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_total_fire_resistance": { + "filters": [ + { + "id": "explicit.stat_3372524247", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_3372524247", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "rune.stat_3372524247", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_total_cold_resistance": { + "filters": [ + { + "id": "explicit.stat_4220027924", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_4220027924", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "rune.stat_4220027924", + "value": { + "weight": 1 + }, + "disabled": false + } + ] + }, + "pseudo.pseudo_total_lightning_resistance": { + "filters": [ + { + "id": "explicit.stat_1671376347", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_1671376347", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "rune.stat_1671376347", + "value": { + "weight": 1 + }, + "disabled": false + } + ] + }, + "pseudo.pseudo_total_chaos_resistance": { + "filters": [ + { + "id": "explicit.stat_2923486259", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_2923486259", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "rune.stat_2923486259", + "value": { + "weight": 1 + }, + "disabled": false + } + ] + }, + "pseudo.pseudo_total_all_attributes": { + "filters": [ + { + "id": "explicit.stat_3261801346", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_3261801346", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "rune.stat_3261801346", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "explicit.stat_4080418644", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_4080418644", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "rune.stat_4080418644", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "explicit.stat_328541901", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_328541901", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "rune.stat_328541901", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_total_dexterity": { + "filters": [ + { + "id": "explicit.stat_3261801346", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_3261801346", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "rune.stat_3261801346", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_total_strength": { + "filters": [ + { + "id": "explicit.stat_4080418644", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_4080418644", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "rune.stat_4080418644", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_total_intelligence": { + "filters": [ + { + "id": "explicit.stat_328541901", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_328541901", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "rune.stat_328541901", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_total_life": { + "filters": [ + { + "id": "explicit.stat_3299347043", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_3299347043", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "rune.stat_3299347043", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_total_mana": { + "filters": [ + { + "id": "explicit.stat_1050105434", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_1050105434", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "rune.stat_1050105434", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo_total_energy_shield": { + "filters": [ + { + "id": "explicit.stat_4052037485", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_3489782002", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "explicit.stat_3489782002", + "value": { + "weight": 1 + }, + "disabled": false + } + ] + }, + "pseudo.pseudo_total_attack_speed": { + "filters": [ + { + "id": "explicit.stat_210067635", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "explicit.stat_681332047", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_681332047", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "rune.stat_210067635", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_total_cast_speed": { + "filters": [ + { + "id": "explicit.stat_2891184298", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_2891184298", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_increased_movement_speed": { + "filters": [ + { + "id": "explicit.stat_2250533757", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_2250533757", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "enchant.stat_2250533757", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_increased_physical_damage": { + "filters": [ + { + "id": "explicit.stat_1509134228", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "rune.stat_1509134228", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_increased_elemental_damage": { + "filters": [ + { + "id": "explicit.stat_3141070085", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "disabled": false + }, + "pseudo.pseudo_increased_fire_damage": { + "filters": [ + { + "id": "explicit.stat_3962278098", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "explicit.stat_3141070085", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_increased_cold_damage": { + "filters": [ + { + "id": "explicit.stat_3291658075", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "explicit.stat_3141070085", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_increased_lightning_damage": { + "filters": [ + { + "id": "explicit.stat_2231156303", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "explicit.stat_3141070085", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_increased_spell_damage": { + "filters": [ + { + "id": "explicit.stat_2974417149", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_increased_fire_spell_damage": { + "filters": [], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_increased_cold_spell_damage": { + "filters": [], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_increased_lightning_spell_damage": { + "filters": [], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_increased_mana_regen": { + "filters": [ + { + "id": "explicit.stat_789117908", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_789117908", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "rune.stat_789117908", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight" + } +} \ No newline at end of file diff --git a/renderer/public/data/pseudo-pseudo.json b/renderer/public/data/pseudo-pseudo.json new file mode 100644 index 000000000..6f094145e --- /dev/null +++ b/renderer/public/data/pseudo-pseudo.json @@ -0,0 +1,620 @@ +{ + "pseudo.pseudo_total_elemental_resistance": { + "filters": [ + { + "id": "explicit.stat_3372524247", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_3372524247", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "explicit.stat_4220027924", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_4220027924", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "explicit.stat_1671376347", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_1671376347", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_total_resistance": { + "filters": [ + { + "id": "explicit.stat_3372524247", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_3372524247", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "explicit.stat_4220027924", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_4220027924", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "explicit.stat_1671376347", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_1671376347", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "explicit.stat_2923486259", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_2923486259", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_total_fire_resistance": { + "filters": [ + { + "id": "explicit.stat_3372524247", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_3372524247", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_total_cold_resistance": { + "filters": [ + { + "id": "explicit.stat_4220027924", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_4220027924", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_total_lightning_resistance": { + "filters": [ + { + "id": "explicit.stat_1671376347", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_1671376347", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_total_chaos_resistance": { + "filters": [ + { + "id": "explicit.stat_2923486259", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_2923486259", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_total_all_attributes": { + "filters": [ + { + "id": "explicit.stat_3261801346", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_3261801346", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "explicit.stat_4080418644", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_4080418644", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "explicit.stat_328541901", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_328541901", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_total_dexterity": { + "filters": [ + { + "id": "explicit.stat_3261801346", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_3261801346", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_total_strength": { + "filters": [ + { + "id": "explicit.stat_4080418644", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_4080418644", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_total_intelligence": { + "filters": [ + { + "id": "explicit.stat_328541901", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_328541901", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_total_life": { + "filters": [ + { + "id": "explicit.stat_3299347043", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_3299347043", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_total_mana": { + "filters": [ + { + "id": "explicit.stat_1050105434", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_1050105434", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo_total_energy_shield": { + "filters": [ + { + "id": "explicit.stat_4052037485", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_3489782002", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "explicit.stat_3489782002", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_total_attack_speed": { + "filters": [ + { + "id": "explicit.stat_210067635", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "explicit.stat_681332047", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_681332047", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_total_cast_speed": { + "filters": [ + { + "id": "explicit.stat_2891184298", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_2891184298", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_increased_movement_speed": { + "filters": [ + { + "id": "explicit.stat_2250533757", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_2250533757", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "enchant.stat_2250533757", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_increased_physical_damage": { + "filters": [ + { + "id": "explicit.stat_1509134228", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "rune.stat_1509134228", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_increased_elemental_damage": { + "filters": [ + { + "id": "explicit.stat_3141070085", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_increased_fire_damage": { + "filters": [ + { + "id": "explicit.stat_3962278098", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "explicit.stat_3141070085", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_increased_cold_damage": { + "filters": [ + { + "id": "explicit.stat_3291658075", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "explicit.stat_3141070085", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_increased_lightning_damage": { + "filters": [ + { + "id": "explicit.stat_2231156303", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "explicit.stat_3141070085", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_increased_mana_regen": { + "filters": [ + { + "id": "explicit.stat_789117908", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_789117908", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + }, + "pseudo.pseudo_total_spirit": { + "filters": [ + { + "id": "explicit.stat_3981240776", + "value": { + "weight": 1 + }, + "disabled": false + }, + { + "id": "implicit.stat_3981240776", + "value": { + "weight": 1 + }, + "disabled": false + } + ], + "type": "weight", + "value": { + "min": 0 + } + } +} \ No newline at end of file diff --git a/renderer/public/data/ru/client_strings.js b/renderer/public/data/ru/client_strings.js index 9c63b642b..8b4eac185 100644 --- a/renderer/public/data/ru/client_strings.js +++ b/renderer/public/data/ru/client_strings.js @@ -135,5 +135,11 @@ export default { CHAT_GUILD: /^&(?:<(?.+?)> )?(?.+?): (?.+)$/, CHAT_WHISPER_TO: /^@Кому (?.+?): (?.+)$/, CHAT_WHISPER_FROM: /^@От кого (?:<(?.+?)> )?(?.+?): (?.+)$/, - CHAT_WEBTRADE_GEM: /^уровень (?\d+) (?\d+)% (?.+)$/ + CHAT_WEBTRADE_GEM: /^уровень (?\d+) (?\d+)% (?.+)$/, + REQUIREMENTS: 'Требования:', + CHARM_SLOTS: 'Ячейки оберегов:', + BASE_SPIRIT: 'Дух:', + QUIVER_HELP_TEXT: 'Можно использовать', + FLASK_HELP_TEXT: 'Щёлкните ПКМ, чтобы выпить.', + CHARM_HELP_TEXT: 'Используется автоматически при определённых условиях' } diff --git a/renderer/src/assets/data/index.ts b/renderer/src/assets/data/index.ts index 492daff7f..6241b5ce6 100644 --- a/renderer/src/assets/data/index.ts +++ b/renderer/src/assets/data/index.ts @@ -2,6 +2,7 @@ import fnv1a from "@sindresorhus/fnv1a"; import type { BaseType, DropEntry, + PseudoIdToTradeRequest, Stat, StatMatcher, TranslationDict, @@ -13,6 +14,7 @@ export let ITEM_DROP: DropEntry[]; export let CLIENT_STRINGS: TranslationDict; export let CLIENT_STRINGS_REF: TranslationDict; export let APP_PATRONS: Array<{ from: string; months: number; style: number }>; +export let PSEUDO_ID_TO_TRADE_REQUEST: PseudoIdToTradeRequest; export let ITEM_BY_TRANSLATED = ( ns: BaseType["namespace"], @@ -239,6 +241,10 @@ export async function init(lang: string) { await fetch(`${import.meta.env.BASE_URL}data/patrons.json`) ).json(); + PSEUDO_ID_TO_TRADE_REQUEST = await ( + await fetch(`${import.meta.env.BASE_URL}data/pseudo-pseudo.json`) + ).json(); + await loadForLang(lang); let failed = false; @@ -252,8 +258,11 @@ export async function init(lang: string) { } } if (failed) { - throw new Error( - `Cannot find stat${missing.length > 1 ? "s" : ""}: ${missing.join("\n")}`, + // throw new Error( + // `Cannot find stat${missing.length > 1 ? "s" : ""}: ${missing.join("\n")}`, + // ); + console.log( + "Cannot find stat" + (missing.length > 1 ? "s" : "") + missing.join("\n"), ); } DELAYED_STAT_VALIDATION.clear(); diff --git a/renderer/src/assets/data/interfaces.ts b/renderer/src/assets/data/interfaces.ts index fb69c3934..fde457fc7 100644 --- a/renderer/src/assets/data/interfaces.ts +++ b/renderer/src/assets/data/interfaces.ts @@ -30,6 +30,7 @@ export interface Stat { [type: string]: string[]; }; }; + // isFakePseudo?: true; } export interface DropEntry { @@ -175,6 +176,11 @@ export interface TranslationDict { FOIL_UNIQUE: string; UNMODIFIABLE: string; REQUIREMENTS: string; + CHARM_SLOTS: string; + BASE_SPIRIT: string; + QUIVER_HELP_TEXT: string; + FLASK_HELP_TEXT: string; + CHARM_HELP_TEXT: string; // --- CHAT_SYSTEM: RegExp; CHAT_TRADE: RegExp; @@ -185,3 +191,23 @@ export interface TranslationDict { CHAT_WHISPER_FROM: RegExp; CHAT_WEBTRADE_GEM: RegExp; } + +export interface Filter { + id: string; + value: { + weight: number; + }; + disabled: boolean; +} + +export interface PseudoIdToTradeRequest { + [id: string]: { + filters: Filter[]; + type: "weight"; + value: { + min?: number; + max?: number; + }; + disabled?: boolean; + }; +} diff --git a/renderer/src/parser/Parser.ts b/renderer/src/parser/Parser.ts index 99979c43b..328d542ff 100644 --- a/renderer/src/parser/Parser.ts +++ b/renderer/src/parser/Parser.ts @@ -65,6 +65,9 @@ const parsers: Array = [ parseArmour, parseWeapon, parseFlask, + parseCharmSlots, + parseSpirit, + parseHelpText, parseStackSize, parseCorrupted, parseFoil, @@ -915,6 +918,60 @@ function parseFlask(section: string[], item: ParsedItem) { return isParsed; } +function parseCharmSlots(section: string[], item: ParsedItem) { + // the purpose of this parser is to "consume" charm slot 1 sections + // so they are not recognized as modifiers + if (item.category !== ItemCategory.Belt) return "PARSER_SKIPPED"; + + let isParsed: SectionParseResult = "SECTION_SKIPPED"; + + for (const line of section) { + if (line.startsWith(_$.CHARM_SLOTS)) { + isParsed = "SECTION_PARSED"; + break; + } + } + + return isParsed; +} + +function parseSpirit(section: string[], item: ParsedItem) { + // the purpose of this parser is to "consume" Spirit: 100 sections + // so they are not recognized as modifiers + if (item.category !== ItemCategory.Sceptre) return "PARSER_SKIPPED"; + + let isParsed: SectionParseResult = "SECTION_SKIPPED"; + + for (const line of section) { + if (line.startsWith(_$.BASE_SPIRIT)) { + isParsed = "SECTION_PARSED"; + break; + } + } + + return isParsed; +} + +function parseHelpText(section: string[], item: ParsedItem) { + if ( + item.category !== ItemCategory.Quiver && + item.category !== ItemCategory.Flask && + item.category !== ItemCategory.Charm + ) + return "PARSER_SKIPPED"; + + for (const line of section) { + if ( + line.startsWith(_$.QUIVER_HELP_TEXT) || + line.startsWith(_$.FLASK_HELP_TEXT) || + line.startsWith(_$.CHARM_HELP_TEXT) + ) { + return "SECTION_PARSED"; + } + } + return "SECTION_SKIPPED"; +} + function parseSentinelCharge(section: string[], item: ParsedItem) { if (item.category !== ItemCategory.Sentinel) return "PARSER_SKIPPED"; diff --git a/renderer/src/parser/en/app_i18n.json b/renderer/src/parser/en/app_i18n.json new file mode 100644 index 000000000..dff2983e9 --- /dev/null +++ b/renderer/src/parser/en/app_i18n.json @@ -0,0 +1,323 @@ +{ + "please_wait": "Please wait\u2026", + "choose_file": "Choose File", + "app_is_ready": "Is ready and running in background", + "reopen_settings": "Press {0} to continue editing.", + "seconds": "seconds", + "league": "League", + "realm": "Realm", + "realm_intl": "International", + "app": { + "leagues_loading": "Loading leagues\u2026", + "leagues_failed": "Failed to load leagues", + "leagues_failed_help": "Make sure the realm is not under maintenance. Also try clicking on the \"Browser\" button, you may need to complete a CAPTCHA there.", + "leagues_failed_help_alt": "Price check an Item, and follow the instructions in the error description there.", + "thanks_3rd_party": "This tool relies on {0} and {1}, consider supporting them as well", + "toggle_browser_hint": "Press {0} to switch between browser and game.", + "contact_me": "Contact me on one of the PoE Discords,", + "version": "Version {0}", + "release_notes": "Release notes", + "report_bug": "Report a bug on GitHub", + "quit": "Quit" + }, + "map.mods.heist": "heist", + "map.mods.uber": "T17", + "map.mods.outdated": "outdated", + "Support development on": "Support development\u00A0on", + "Blighted": "Blighted", + "Blight-ravaged": "Blight-ravaged", + "Magic": "Magic", + "Shaper": "Shaper", + "Elder": "Elder", + "Crusader": "Crusader", + "Hunter": "Hunter", + "Redeemer": "Redeemer", + "Warlord": "Warlord", + "Superior": "Superior", + "Anomalous": "Anomalous", + "Divergent": "Divergent", + "Phantasmal": "Phantasmal", + "item": { + "prop_quality": "Q {0}%", + "base_percentile": "Base Percentile: {0}%", + "armour": "Armour: {0}", + "evasion_rating": "Evasion Rating: {0}", + "energy_shield": "Energy Shield: {0}", + "block": "Block: {0}%", + "total_dps": "Total DPS: {0}", + "physical_dps": "Physical DPS: {0}", + "elemental_dps": "Elemental DPS: {0}", + "crit": "Critical Strike Chance: {0}%", + "aps": "Attacks per Second: {0}", + "spirit": "Spirit: {0}", + "has_empty_modifier": "1 Empty or Crafted Modifier", + "has_empty_affix": "Any", + "has_empty_prefix": "Prefix", + "has_empty_suffix": "Suffix", + "item_level": "Item Level: {0}", + "stock": "Stock: {0}", + "map_tier": "Map Tier: {0}", + "area_level": "Area Level: {0}", + "heist_wings_revealed": "Wings Revealed: {0}", + "linked_sockets": "Links: {0}", + "white_sockets": "White: {0}", + "quality": "Quality: {0}", + "gem_level": "Level: {0}", + "gem_sockets": "Sockets: {0}", + "rune_sockets": "Sockets: {0}", + "sentinel_charge": "Charge: {0}", + "find_in_stash": "Find in Stash", + "parse_error": "An error occurred while parsing the item", + "parse_error_help": "This is probably a bug and you can report it on GitHub.", + "unknown": "Unknown Item", + "unknown_help": "If this Item was introduced in this League, it will likely be supported in the next app update.", + "identification": "You are trying to price check unidentified Unique item with base type \"{0}\". Which one?", + "open_on_wiki": "Open item on wiki", + "open_on_poedb": "Open item on PoEDB", + "info": "Item info", + "corrupted": "Corrupted", + "not_corrupted": "Not Corrupted", + "mod_tier": "Tier: {0}", + "mod_rank": "Rank: {0}", + "mod_pseudo": "Pseudo", + "mod_implicit": "Implicit", + "mod_fractured": "Fractured", + "mod_explicit": "Explicit", + "mod_crafted": "Crafted", + "mod_scourge": "Scourge", + "unidentified": "Unidentified", + "veiled": "Veiled", + "foil_unique": "Foil Unique", + "mirrored": "Mirrored", + "not_mirrored": "Not Mirrored" + }, + "item_category": { + "prop": "Category: {0}", + "map": "Map", + "jewel_abyss": "Abyss Jewel", + "accessory_amulet": "Amulet", + "accessory_belt": "Belt", + "armour_chest": "Body Armour", + "armour_boots": "Boots", + "weapon_bow": "Bow", + "weapon_claw": "Claw", + "weapon_dagger": "Dagger", + "weapon_rod": "Fishing Rod", + "flask": "Flask", + "armour_gloves": "Gloves", + "armour_helmet": "Helmet", + "jewel": "Jewel", + "weapon_oneaxe": "One-Handed Axe", + "weapon_onemace": "One-Handed Mace", + "weapon_onesword": "One-Handed Sword", + "armour_quiver": "Quiver", + "accessory_ring": "Ring", + "weapon_runedagger": "Rune Dagger", + "weapon_sceptre": "Sceptre", + "armour_shield": "Shield", + "weapon_staff": "Staff", + "weapon_twoaxe": "Two-Handed Axe", + "weapon_twomace": "Two-Handed Mace", + "weapon_twosword": "Two-Handed Sword", + "weapon_wand": "Wand", + "weapon_warstaff": "Warstaff", + "jewel_cluster": "Cluster Jewel", + "heistmission_blueprint": "Heist Blueprint", + "heistmission_contract": "Heist Contract", + "heistequipment_heisttool": "Heist Tool", + "heistequipment_heistreward": "Heist Brooch", + "heistequipment_heistweapon": "Heist Gear", + "heistequipment_heistutility": "Heist Cloak", + "accessory_trinket": "Trinket", + "sanctum_relic": "Sanctum Relic", + "tincture": "Tincture", + "azmeri_charm": "Charm" + }, + "filters": { + "selected_some": "{0} of {1}, stats", + "selected_none": "Stats ignored", + "hidden_toggle": "Hidden", + "collapse": "Collapse", + "mods_toggle": "Mods", + "empty": "No relevant stats were found", + "tier": "Tier {0}", + "preset_pseudo": "Pseudo", + "preset_base_item": "Base item", + "hide_const_roll": "Roll is not variable", + "hide_ele_dps": "Elemental damage is not the main source of DPS", + "hide_phys_dps": "Physical damage is not the main source of DPS", + "hide_ele_res": "Filtering by exact Elemental Resistance unreasonably increases the price", + "hide_crafted_chaos": "Crafted Chaos Resistance without Explicit mod has no value", + "hide_anointment": "Buyer will likely change anointment", + "hide_for_crafting": "Select only if price-checking as base item for crafting", + "hide_empty_mod": "Select only if item has 6 modifiers (1 of which is crafted) or if it has 5 modifiers", + "tag_implicit": "implicit", + "tag_fractured": "fractured", + "tag_crafted": "crafted", + "tag_scourge": "scourge", + "tag_enchant": "enchant", + "tag_variant": "variant", + "tag_corrupted": "corrupted", + "tag_synthesised": "synthesised", + "tag_eldritch": "eldritch", + "tag_pseudo": "pseudo", + "tag_explicit": "explicit", + "tag_explicit_shaper": "Shaper", + "tag_explicit_elder": "Elder", + "tag_explicit_crusader": "Crusader", + "tag_explicit_hunter": "Hunter", + "tag_explicit_redeemer": "Redeemer", + "tag_explicit_warlord": "Warlord", + "tag_explicit_delve": "Delve", + "tag_explicit_veiled": "Veiled", + "tag_explicit_incursion": "Incursion" + }, + "online_filter": { + "offline_toggle": "Offline & Online", + "in_league_toggle": "In League", + "listed_any_time": "Listed: Any Time", + "listed_1day": "1 Day Ago", + "listed_3days": "3 Days Ago", + "listed_1week": "1 Week Ago", + "listed_2weeks": "2 Weeks Ago", + "listed_1month": "1 Month Ago", + "listed_2months": "2 Months Ago", + "currency_any": "Any Currency", + "currency_only_chaos": "Chaos Orb", + "currency_only_div": "Divine Orb", + "currency_chaos_div": "Both Orbs" + }, + "widget": { + "title": "widget title", + "hide": "hide", + "edit": "edit", + "move": "move", + "delete": "delete" + }, + "updates": { + "maybe_outdated": "You may have an outdated version", + "latest": "You have the latest version", + "error": "Error while checking for updates", + "checking": "Checking for updates", + "downloading": "Downloading\u2026", + "available": "Update available: {0}", + "never_checked": "Last checked: never", + "last_checked": "Last checked: {0}", + "check_now": "Check now", + "install_now": "Install now", + "downloads_page": "Open the Downloads page", + "installed_on_exit": "It will be installed automatically on exit", + "download_manually": "You can download it from GitHub", + "download_disabled": "You have disabled automatic updates download" + }, + "widget_menu": { + "add": "add widget\u2026", + "always_show": "Show button for active widgets", + "price_check": "Price check (Ctrl + V)" + }, + "stopwatch": { + "name": "Stopwatch", + "paused": "paused", + "toggle_key": "Start and Pause", + "reset_key": "Reset" + }, + "stash_search": { + "enable_keys": "Keys", + "name": "Stash search", + "search_text": "search text or regex", + "friendly_name": "friendly name" + }, + "image_strip": { + "name": "Image strip" + }, + "item_search": { + "name": "Item search", + "input": "Search by name\u2026", + "reset": "Reset items", + "heist_target": "Heist target:", + "target_gem": "Skill Gem", + "target_replica": "Replicas", + "too_many": "Too many items found, enter the name more precisely.", + "not_found": "No items found.", + "ocr_gems_key": "Perform an OCR for a Skill Gem" + }, + "map_check": { + "name": "Map check", + "has_outdated": "Wording of some stats has been changed. Check and update dangerous map mods in the settings. (This message will be hidden as soon as you remove all outdated stats)", + "no_mods": "Item has no modifiers.", + "profile": "Profile", + "search_selected": "Only selected", + "search_stat_col": "Stat (found: {0})", + "new_mods_icon": "Show icon for new mods" + }, + "trade_result": { + "error": "Trade site request failed", + "matched": "Matched: {0}", + "trade": "Trade", + "price": "Price", + "bulk": "bulk", + "stock": "Stock", + "fulfill": "Fulfill", + "listed": "Listed", + "seller": "Seller", + "item_level": "iLvl", + "gem_level": "Level", + "quality": "Quality", + "base_item": "Base item", + "graph_7d": "Last 7 days", + "getting_price": "Getting price {0}", + "getting_price_from": "from poe.ninja \u2026", + "you_have": "You have", + "stack": "Stack" + }, + "settings": { + "title": "Settings - Exiled Exchange 2", + "language": "Language", + "private_league": "or Private League", + "account_name": "Account name", + "last_char_name": "Last character name", + "chat_cmd_add": "Add command", + "chat_cmd_send": "press Enter", + "no_key": "Not Set", + "clear_hotkey": "You can clear hotkey by pressing Backspace", + "overlay": "Overlay", + "stash_scroll": "Stash tab scrolling", + "delve_grid": "Grid for Delve Chart", + "window_title": "PoE window title", + "thank_you": "App development continues thanks to:", + "hotkeys": "Hotkeys", + "chat": "Chat", + "general": "General", + "debug": "Debug", + "about": "About", + "font_size": "Font size", + "overlay_bg": "Background when the Overlay is clickable", + "overlay_bg_none": "Transparent", + "overlay_bg_focus_game": "Clicking on the background focuses the game", + "overlay_always_close": "Always fully close the overlay instead of hiding it", + "poe_log_file": "PoE log file", + "poe_cfg_file": "PoE config file", + "restore_clipboard": "Restore clipboard", + "show_overlay_ready": "Show a notification when the Overlay detects a PoE window", + "debug_hotkeys": "Record all key presses" + }, + "price_check": { + "name": "Price check", + "hotkey": "Auto-hide Mode", + "hotkey_locked": "Open without auto-hide", + "enable_browser": "Enable builtin browser", + "builtin_browser_warning": "I am aware that future releases can potentially contain malicious code that can steal my POESESSID.", + "highlight_hint": "Your items will be highlighted even if this setting is off", + "show_seller": "Show seller", + "fill_rolls": "Fill stat values", + "fill_roll_exact": "Exact value", + "cursor_pos": "Show memorized cursor position", + "extra_delay": "Extra time to prevent spurious Rate limiting", + "warn_expensive": "Settings below are a compromise between increasing load on PoE website and convenient price checking / more accurate search.", + "accurate_collapsed": "Show indication on collapsed listings", + "auto_search": "Perform an auto search, when pressing", + "select_stock": "Always select \"Stock\" filter", + "show_prediction": "Show price prediction", + "remember_currency": "Remember the Buyout Currency filter" + } +} \ No newline at end of file diff --git a/renderer/src/parser/en/client_strings.js b/renderer/src/parser/en/client_strings.js new file mode 100644 index 000000000..e4fd1a31e --- /dev/null +++ b/renderer/src/parser/en/client_strings.js @@ -0,0 +1,112 @@ +// @ts-check +/** @type{import('../../../src/assets/data/interfaces').TranslationDict} */ +export default { + RARITY_NORMAL: 'Normal', + RARITY_MAGIC: 'Magic', + RARITY_RARE: 'Rare', + RARITY_UNIQUE: 'Unique', + RARITY_GEM: 'Gem', + RARITY_CURRENCY: 'Currency', + RARITY_DIVCARD: 'Divination Card', + RARITY_QUEST: 'Quest', + MAP_TIER: 'Map Tier: ', + RARITY: 'Rarity: ', + ITEM_CLASS: 'Item Class: ', + ITEM_LEVEL: 'Item Level: ', + CORPSE_LEVEL: 'Corpse Level: ', + TALISMAN_TIER: 'Talisman Tier: ', + GEM_LEVEL: 'Level: ', + STACK_SIZE: 'Stack Size: ', + SOCKETS: 'Sockets: ', + QUALITY: 'Quality: ', + PHYSICAL_DAMAGE: 'Physical Damage: ', + ELEMENTAL_DAMAGE: 'Elemental Damage: ', + CRIT_CHANCE: 'Critical Strike Chance: ', + ATTACK_SPEED: 'Attacks per Second: ', + ARMOUR: 'Armour: ', + EVASION: 'Evasion Rating: ', + ENERGY_SHIELD: 'Energy Shield: ', + BLOCK_CHANCE: 'Chance to Block: ', + CORRUPTED: 'Corrupted', + UNIDENTIFIED: 'Unidentified', + ITEM_SUPERIOR: /^Superior (.*)$/, + MAP_BLIGHTED: /^Blighted (.*)$/, + MAP_BLIGHT_RAVAGED: /^Blight-ravaged (.*)$/, + INFLUENCE_SHAPER: 'Shaper Item', + INFLUENCE_ELDER: 'Elder Item', + INFLUENCE_CRUSADER: 'Crusader Item', + INFLUENCE_HUNTER: 'Hunter Item', + INFLUENCE_REDEEMER: 'Redeemer Item', + INFLUENCE_WARLORD: 'Warlord Item', + SECTION_SYNTHESISED: 'Synthesised Item', + ITEM_SYNTHESISED: /^Synthesised (.*)$/, + VEILED_PREFIX: 'Veiled Prefix', + VEILED_SUFFIX: 'Veiled Suffix', + FLASK_CHARGES: /^Currently has \d+ Charges$/, + METAMORPH_HELP: "Combine this with four other different samples in Tane's Laboratory.", + BEAST_HELP: 'Right-click to add this to your bestiary.', + VOIDSTONE_HELP: 'Socket this into your Atlas to increase the Tier of all Maps.', + METAMORPH_BRAIN: /^.* Brain$/, + METAMORPH_EYE: /^.* Eye$/, + METAMORPH_LUNG: /^.* Lung$/, + METAMORPH_HEART: /^.* Heart$/, + METAMORPH_LIVER: /^.* Liver$/, + CANNOT_USE_ITEM: 'You cannot use this item. Its stats will be ignored', + QUALITY_ANOMALOUS: /^Anomalous (.*)$/, + QUALITY_DIVERGENT: /^Divergent (.*)$/, + QUALITY_PHANTASMAL: /^Phantasmal (.*)$/, + AREA_LEVEL: 'Area Level: ', + HEIST_WINGS_REVEALED: 'Wings Revealed: ', + HEIST_TARGET: 'Heist Target: ', + HEIST_BLUEPRINT_ENCHANTS: 'Enchanted Armaments', + HEIST_BLUEPRINT_TRINKETS: 'Thieves\' Trinkets or Currency', + HEIST_BLUEPRINT_GEMS: 'Unusual Gems', + HEIST_BLUEPRINT_REPLICAS: 'Replicas or Experimented Items', + MIRRORED: 'Mirrored', + MODIFIER_LINE: /^(?[^"]+)(?:\s+"(?[^"]+)")?(?:\s+\(Tier: (?\d+)\))?(?:\s+\(Rank: (?\d+)\))?$/, + PREFIX_MODIFIER: 'Prefix Modifier', + SUFFIX_MODIFIER: 'Suffix Modifier', + CRAFTED_PREFIX: 'Master Crafted Prefix Modifier', + CRAFTED_SUFFIX: 'Master Crafted Suffix Modifier', + UNSCALABLE_VALUE: ' — Unscalable Value', + CORRUPTED_IMPLICIT: 'Corruption Implicit Modifier', + MODIFIER_INCREASED: /^(.+?)% Increased$/, + INCURSION_OPEN: 'Open Rooms:', + INCURSION_OBSTRUCTED: 'Obstructed Rooms:', + EATER_IMPLICIT: /^Eater of Worlds Implicit Modifier \((?.+)\)$/, + EXARCH_IMPLICIT: /^Searing Exarch Implicit Modifier \((?.+)\)$/, + ELDRITCH_MOD_R1: 'Lesser', + ELDRITCH_MOD_R2: 'Greater', + ELDRITCH_MOD_R3: 'Grand', + ELDRITCH_MOD_R4: 'Exceptional', + ELDRITCH_MOD_R5: 'Exquisite', + ELDRITCH_MOD_R6: 'Perfect', + SENTINEL_CHARGE: 'Charge: ', + SHAPER_MODS: ['of Shaping', "The Shaper's"], + ELDER_MODS: ['of the Elder', "The Elder's"], + CRUSADER_MODS: ["Crusader's", 'of the Crusade'], + HUNTER_MODS: ["Hunter's", 'of the Hunt'], + REDEEMER_MODS: ['of Redemption', "Redeemer's"], + WARLORD_MODS: ["Warlord's", 'of the Conquest'], + DELVE_MODS: ['Subterranean', 'of the Underground'], + VEILED_MODS: ['Chosen', 'of the Order'], + INCURSION_MODS: ["Guatelitzi's", "Xopec's", "Topotante's", "Tacati's", "Matatl's", 'of Matatl', "Citaqualotl's", 'of Citaqualotl', 'of Tacati', 'of Guatelitzi', 'of Puhuarte'], + FOIL_UNIQUE: 'Foil Unique', + UNMODIFIABLE: 'Unmodifiable', + // --- + CHAT_SYSTEM: /^: (?.+)$/, + CHAT_TRADE: /^\$(?:<(?.+?)> )?(?.+?): (?.+)$/, + CHAT_GLOBAL: /^#(?:<(?.+?)> )?(?.+?): (?.+)$/, + CHAT_PARTY: /^%(?:<(?.+?)> )?(?.+?): (?.+)$/, + CHAT_GUILD: /^&(?:<(?.+?)> )?(?.+?): (?.+)$/, + CHAT_WHISPER_TO: /^@To (?.+?): (?.+)$/, + CHAT_WHISPER_FROM: /^@From (?:<(?.+?)> )?(?.+?): (?.+)$/, + CHAT_WEBTRADE_GEM: /^level (?\d+) (?\d+)% (?.+)$/, + REQUIREMENTS: 'Requirements', + CHARM_SLOTS: 'Charm Slots:', + BASE_SPIRIT: 'Spirit:', + QUIVER_HELP_TEXT: 'Can only be equipped', + FLASK_HELP_TEXT: 'Right click to drink.', + CHARM_HELP_TEXT: 'Used automatically when condition' +} + diff --git a/renderer/src/parser/en/interfaces.ts b/renderer/src/parser/en/interfaces.ts new file mode 100644 index 000000000..fb69c3934 --- /dev/null +++ b/renderer/src/parser/en/interfaces.ts @@ -0,0 +1,187 @@ +import type { ItemCategory } from "@/parser"; + +export interface StatMatcher { + string: string; + advanced?: string; + negate?: true; + value?: number; + oils?: string; // Amulet anointment +} + +export enum StatBetter { + NegativeRoll = -1, + PositiveRoll = 1, + NotComparable = 0, +} + +export interface Stat { + ref: string; + dp?: true; + matchers: StatMatcher[]; + better: StatBetter; + fromAreaMods?: true; + fromUberAreaMods?: true; + fromHeistAreaMods?: true; + anointments?: Array<{ roll: number; oils: string }>; // Ring anointments + trade: { + inverted?: true; + option?: true; + ids: { + [type: string]: string[]; + }; + }; +} + +export interface DropEntry { + query: string[]; + items: string[]; +} + +export interface BaseType { + name: string; + refName: string; + namespace: "DIVINATION_CARD" | "CAPTURED_BEAST" | "UNIQUE" | "ITEM" | "GEM"; + icon: string; + w?: number; + h?: number; + tradeTag?: string; + tradeDisc?: string; + disc?: { + propAR?: true; + propEV?: true; + propES?: true; + hasImplicit?: { ref: Stat["ref"] }; + hasExplicit?: { ref: Stat["ref"] }; + sectionText?: string; + mapTier?: "W" | "Y" | "R"; + }; + // extra info + craftable?: { + category: ItemCategory; + corrupted?: true; + uniqueOnly?: true; + }; + unique?: { + base: BaseType["refName"]; + fixedStats?: Array; + }; + map?: { + screenshot?: string; + }; + gem?: { + vaal?: true; + awakened?: true; + transfigured?: true; + normalVariant?: BaseType["refName"]; + }; + armour?: { + ar?: [min: number, max: number]; + ev?: [min: number, max: number]; + es?: [min: number, max: number]; + }; +} + +export interface TranslationDict { + RARITY_NORMAL: string; + RARITY_MAGIC: string; + RARITY_RARE: string; + RARITY_UNIQUE: string; + RARITY_GEM: string; + RARITY_CURRENCY: string; + RARITY_DIVCARD: string; + RARITY_QUEST: string; + MAP_TIER: string; + RARITY: string; + ITEM_CLASS: string; + ITEM_LEVEL: string; + CORPSE_LEVEL: string; + TALISMAN_TIER: string; + GEM_LEVEL: string; + STACK_SIZE: string; + SOCKETS: string; + QUALITY: string; + PHYSICAL_DAMAGE: string; + ELEMENTAL_DAMAGE: string; + CRIT_CHANCE: string; + ATTACK_SPEED: string; + ARMOUR: string; + EVASION: string; + ENERGY_SHIELD: string; + BLOCK_CHANCE: string; + CORRUPTED: string; + UNIDENTIFIED: string; + ITEM_SUPERIOR: RegExp; + MAP_BLIGHTED: RegExp; + MAP_BLIGHT_RAVAGED: RegExp; + INFLUENCE_SHAPER: string; + INFLUENCE_ELDER: string; + INFLUENCE_CRUSADER: string; + INFLUENCE_HUNTER: string; + INFLUENCE_REDEEMER: string; + INFLUENCE_WARLORD: string; + SECTION_SYNTHESISED: string; + ITEM_SYNTHESISED: RegExp; + VEILED_PREFIX: string; + VEILED_SUFFIX: string; + FLASK_CHARGES: RegExp; + METAMORPH_HELP: string; + BEAST_HELP: string; + VOIDSTONE_HELP: string; + METAMORPH_BRAIN: RegExp; + METAMORPH_EYE: RegExp; + METAMORPH_LUNG: RegExp; + METAMORPH_HEART: RegExp; + METAMORPH_LIVER: RegExp; + CANNOT_USE_ITEM: string; + QUALITY_ANOMALOUS: RegExp; + QUALITY_DIVERGENT: RegExp; + QUALITY_PHANTASMAL: RegExp; + AREA_LEVEL: string; + HEIST_WINGS_REVEALED: string; + HEIST_TARGET: string; + HEIST_BLUEPRINT_ENCHANTS: string; + HEIST_BLUEPRINT_TRINKETS: string; + HEIST_BLUEPRINT_GEMS: string; + HEIST_BLUEPRINT_REPLICAS: string; + MIRRORED: string; + MODIFIER_LINE: RegExp; + PREFIX_MODIFIER: string; + SUFFIX_MODIFIER: string; + CRAFTED_PREFIX: string; + CRAFTED_SUFFIX: string; + UNSCALABLE_VALUE: string; + CORRUPTED_IMPLICIT: string; + MODIFIER_INCREASED: RegExp; + INCURSION_OPEN: string; + INCURSION_OBSTRUCTED: string; + EATER_IMPLICIT: RegExp; + EXARCH_IMPLICIT: RegExp; + ELDRITCH_MOD_R1: string; + ELDRITCH_MOD_R2: string; + ELDRITCH_MOD_R3: string; + ELDRITCH_MOD_R4: string; + ELDRITCH_MOD_R5: string; + ELDRITCH_MOD_R6: string; + SENTINEL_CHARGE: string; + SHAPER_MODS: string[]; + ELDER_MODS: string[]; + CRUSADER_MODS: string[]; + HUNTER_MODS: string[]; + REDEEMER_MODS: string[]; + WARLORD_MODS: string[]; + DELVE_MODS: string[]; + VEILED_MODS: string[]; + INCURSION_MODS: string[]; + FOIL_UNIQUE: string; + UNMODIFIABLE: string; + REQUIREMENTS: string; + // --- + CHAT_SYSTEM: RegExp; + CHAT_TRADE: RegExp; + CHAT_GLOBAL: RegExp; + CHAT_PARTY: RegExp; + CHAT_GUILD: RegExp; + CHAT_WHISPER_TO: RegExp; + CHAT_WHISPER_FROM: RegExp; + CHAT_WEBTRADE_GEM: RegExp; +} diff --git a/renderer/src/parser/en/item-drop.json b/renderer/src/parser/en/item-drop.json new file mode 100644 index 000000000..a3c71b7d3 --- /dev/null +++ b/renderer/src/parser/en/item-drop.json @@ -0,0 +1,1286 @@ +[ + { + "query": [ + "ITEM::Splinter of Uul-Netol", + "ITEM::Uul-Netol's Breachstone" + ], + "items": [ + "ITEM::Blessing of Uul-Netol", + "ITEM::Uul-Netol's Flawless Breachstone", + "UNIQUE::The Infinite Pursuit // Goliath Greaves", + "UNIQUE::Uul-Netol's Kiss // Labrys", + "UNIQUE::The Anticipation // Ezomyte Tower Shield" + ] + }, + { + "query": [ + "ITEM::Splinter of Xoph", + "ITEM::Xoph's Breachstone" + ], + "items": [ + "ITEM::Blessing of Xoph", + "ITEM::Xoph's Flawless Breachstone", + "UNIQUE::The Formless Flame // Siege Helmet", + "UNIQUE::Xoph's Heart // Amber Amulet", + "UNIQUE::Xoph's Inception // Bone Bow", + "DIVINATION_CARD::The Escape" + ] + }, + { + "query": [ + "ITEM::Splinter of Tul", + "ITEM::Tul's Breachstone" + ], + "items": [ + "ITEM::Blessing of Tul", + "ITEM::Tul's Flawless Breachstone", + "UNIQUE::Tulborn // Opal Wand", + "UNIQUE::The Halcyon // Jade Amulet", + "UNIQUE::The Snowblind Grace // Coronal Leather", + "DIVINATION_CARD::The Escape" + ] + }, + { + "query": [ + "ITEM::Splinter of Esh", + "ITEM::Esh's Breachstone" + ], + "items": [ + "ITEM::Blessing of Esh", + "ITEM::Esh's Flawless Breachstone", + "UNIQUE::Voice of the Storm // Lapis Amulet", + "UNIQUE::Hand of Thought and Motion // Blinder", + "UNIQUE::Esh's Mirror // Thorium Spirit Shield", + "DIVINATION_CARD::The Escape" + ] + }, + { + "query": [ + "ITEM::Splinter of Chayula", + "ITEM::Chayula's Breachstone" + ], + "items": [ + "ITEM::Blessing of Chayula", + "ITEM::Chayula's Flawless Breachstone", + "UNIQUE::Skin of the Loyal // Simple Robe, 6L", + "UNIQUE::Severed in Sleep // Cutlass", + "UNIQUE::The Blue Dream // Cobalt Jewel", + "UNIQUE::The Green Dream // Viridian Jewel", + "UNIQUE::The Red Dream // Crimson Jewel" + ] + }, + { + "query": [ + "ITEM::Sacrifice at Dawn", + "ITEM::Sacrifice at Midnight", + "ITEM::Sacrifice at Noon", + "ITEM::Sacrifice at Dusk" + ], + "items": [ + "UNIQUE::Atziri's Promise", + "UNIQUE::Doryani's Catalyst // Vaal Sceptre", + "ITEM::Mortal Ignorance", + "ITEM::Mortal Hope", + "ITEM::Mortal Rage", + "ITEM::Mortal Grief", + "DIVINATION_CARD::Alluring Bounty", + "DIVINATION_CARD::The Ethereal" + ] + }, + { + "query": [ + "ITEM::Mortal Ignorance", + "ITEM::Mortal Hope", + "ITEM::Mortal Rage", + "ITEM::Mortal Grief" + ], + "items": [ + "UNIQUE::Atziri's Acuity // Vaal Gauntlets", + "UNIQUE::Atziri's Disfavour // Vaal Axe", + "UNIQUE::The Vertex // Vaal Mask", + "UNIQUE::Atziri's Splendour // ES, Sacrificial Garb", + "UNIQUE::Atziri's Splendour // Evasion/ES/Life, Sacrificial Garb", + "DIVINATION_CARD::Alluring Bounty", + "DIVINATION_CARD::House of Mirrors" + ] + }, + { + "query": [ + "ITEM::Fragment of the Minotaur", + "ITEM::Fragment of the Chimera", + "ITEM::Fragment of the Phoenix", + "ITEM::Fragment of the Hydra" + ], + "items": [ + "ITEM::Orb of Dominance", + "UNIQUE::Dying Sun", + "ITEM::Fragment of Knowledge", + "ITEM::Fragment of Shape", + "UNIQUE::Shaper's Touch // Crusader Gloves", + "UNIQUE::Solstice Vigil // Onyx Amulet", + "UNIQUE::Voidwalker // Murder Boots" + ] + }, + { + "query": [ + "ITEM::Cosmic Fragment" + ], + "items": [ + "UNIQUE::Starforge // Infernal Sword", + "UNIQUE::Echoes of Creation // Royal Burgonet", + "UNIQUE::Entropic Devastation // Assassin's Mitts", + "UNIQUE::The Tides of Time // Vanguard Belt", + "UNIQUE::Sublime Vision // Prismatic Jewel", + "ITEM::Cosmic Reliquary Key" + ] + }, + { + "query": [ + "ITEM::Fragment of Eradication", + "ITEM::Fragment of Enslavement", + "ITEM::Fragment of Purification", + "ITEM::Fragment of Constriction" + ], + "items": [ + "ITEM::Orb of Dominance", + "UNIQUE::Watcher's Eye // Prismatic Jewel", + "ITEM::Fragment of Terror", + "ITEM::Fragment of Emptiness", + "UNIQUE::Impresence // Chaos, Onyx Amulet", + "UNIQUE::Cyclopean Coil // Leather Belt", + "UNIQUE::Hopeshredder // Ranger Bow", + "UNIQUE::Blasphemer's Grasp // Assassin's Mitts", + "UNIQUE::Nebuloch // Nightmare Mace", + "UNIQUE::Shimmeron // Tornado Wand" + ] + }, + { + "query": [ + "ITEM::Fragment of Knowledge", + "ITEM::Fragment of Shape", + "ITEM::Fragment of Terror", + "ITEM::Fragment of Emptiness" + ], + "items": [ + "ITEM::Orb of Dominance", + "UNIQUE::Watcher's Eye // Prismatic Jewel", + "UNIQUE::Disintegrator // Maelström Staff", + "UNIQUE::Voidfletcher // Primal Arrow Quiver", + "UNIQUE::Indigon // Hubris Circlet", + "UNIQUE::Mark of the Elder // Steel Ring", + "UNIQUE::Mark of the Shaper // Opal Ring" + ] + }, + { + "query": [ + "ITEM::Decaying Fragment" + ], + "items": [ + "UNIQUE::Voidforge // Infernal Sword", + "UNIQUE::The Eternity Shroud // Blood Raiment", + "UNIQUE::Call of the Void // Sapphire Ring", + "UNIQUE::Soul Ascension // Carnal Mitts", + "UNIQUE::The Devourer of Minds // Pig-Faced Bascinet", + "UNIQUE::Sublime Vision // Prismatic Jewel", + "UNIQUE::Curio of Decay // Primordial Fragment", + "ITEM::Decaying Reliquary Key" + ] + }, + { + "query": [ + "ITEM::Golden Oil", + "ITEM::Silver Oil", + "ITEM::Opalescent Oil", + "ITEM::Black Oil", + "ITEM::Crimson Oil", + "ITEM::Violet Oil", + "ITEM::Indigo Oil", + "ITEM::Azure Oil", + "ITEM::Teal Oil", + "ITEM::Verdant Oil", + "ITEM::Amber Oil", + "ITEM::Sepia Oil", + "ITEM::Clear Oil" + ], + "items": [ + "ITEM::Reflective Oil", + "ITEM::Tainted Oil", + "ITEM::Prismatic Oil" + ] + }, + { + "query": [ + "ITEM::Tainted Divine Teardrop", + "ITEM::Tainted Orb of Fusing", + "ITEM::Tainted Mythic Orb", + "ITEM::Tainted Exalted Orb", + "ITEM::Tainted Chaos Orb", + "ITEM::Tainted Chromatic Orb", + "ITEM::Tainted Jeweller's Orb" + ], + "items": [] + }, + { + "query": [ + "ITEM::Lesser Eldritch Ember", + "ITEM::Greater Eldritch Ember", + "ITEM::Grand Eldritch Ember", + "ITEM::Exceptional Eldritch Ember" + ], + "items": [ + "ITEM::Lesser Eldritch Ichor", + "ITEM::Greater Eldritch Ichor", + "ITEM::Grand Eldritch Ichor", + "ITEM::Exceptional Eldritch Ichor", + "ITEM::Orb of Conflict" + ] + }, + { + "query": [ + "ITEM::Lesser Eldritch Ichor", + "ITEM::Greater Eldritch Ichor", + "ITEM::Grand Eldritch Ichor", + "ITEM::Exceptional Eldritch Ichor" + ], + "items": [ + "ITEM::Lesser Eldritch Ember", + "ITEM::Greater Eldritch Ember", + "ITEM::Grand Eldritch Ember", + "ITEM::Exceptional Eldritch Ember", + "ITEM::Orb of Conflict" + ] + }, + { + "query": [ + "ITEM::Al-Hezmin's Crest", + "ITEM::Baran's Crest", + "ITEM::Veritania's Crest", + "ITEM::Drox's Crest" + ], + "items": [ + "ITEM::Awakener's Orb", + "ITEM::Orb of Dominance", + "UNIQUE::Crown of the Inward Eye // Prophet Crown", + "UNIQUE::Hands of the High Templar // Crusader Gloves", + "UNIQUE::Thread of Hope // Crimson Jewel", + "UNIQUE::The Burden of Truth // Crystal Belt" + ] + }, + { + "query": [ + "ITEM::Awakening Fragment" + ], + "items": [ + "UNIQUE::The Saviour // Legion Sword", + "UNIQUE::Oriath's End", + "UNIQUE::The Tempest Rising // Goliath Greaves", + "ITEM::Oubliette Reliquary Key" + ] + }, + { + "query": [ + "ITEM::Polaric Invitation" + ], + "items": [ + "UNIQUE::Polaric Devastation // Opal Ring", + "UNIQUE::Sudden Dawn // Steel Circlet", + "UNIQUE::The Eternal Struggle // Onyx Amulet" + ] + }, + { + "query": [ + "ITEM::Incandescent Invitation" + ], + "items": [ + "UNIQUE::Forbidden Flame // Crimson Jewel", + "UNIQUE::Dissolution of the Flesh // Crimson Jewel", + "UNIQUE::Dawnbreaker // Colossal Tower Shield", + "UNIQUE::Dawnstrider // Vaal Greaves", + "ITEM::Exceptional Eldritch Ember" + ] + }, + { + "query": [ + "ITEM::Blazing Fragment" + ], + "items": [ + "UNIQUE::Crystallised Omniscience // Onyx Amulet", + "UNIQUE::The Annihilating Light // Quarterstaff", + "UNIQUE::Annihilation's Approach // Dragonscale Boots", + "UNIQUE::The Celestial Brace // Goliath Gauntlets", + "UNIQUE::Curio of Absorption // Primordial Fragment", + "ITEM::Archive Reliquary Key" + ] + }, + { + "query": [ + "ITEM::Writhing Invitation" + ], + "items": [ + "UNIQUE::Ceaseless Feast // Spiked Gloves", + "UNIQUE::Black Zenith // Fingerless Silk Gloves", + "UNIQUE::The Eternal Struggle // Onyx Amulet", + "DIVINATION_CARD::Choking Guilt" + ] + }, + { + "query": [ + "ITEM::Screaming Invitation" + ], + "items": [ + "UNIQUE::Forbidden Flesh // Cobalt Jewel", + "UNIQUE::Melding of the Flesh // Cobalt Jewel", + "UNIQUE::The Gluttonous Tide // Citadel Bow", + "UNIQUE::Inextricable Fate // Fugitive Boots", + "ITEM::Exceptional Eldritch Ichor" + ] + }, + { + "query": [ + "ITEM::Devouring Fragment" + ], + "items": [ + "UNIQUE::Nimis // Topaz Ring", + "UNIQUE::Ashes of the Stars // Onyx Amulet", + "UNIQUE::Ravenous Passion // Zealot Helmet", + "UNIQUE::Curio of Consumption // Primordial Fragment", + "ITEM::Visceral Reliquary Key" + ] + }, + { + "query": [ + "ITEM::Crescent Splinter", + "ITEM::The Maven's Writ" + ], + "items": [ + "ITEM::Orb of Conflict", + "UNIQUE::Doppelgänger Guise // Sadist Garb", + "UNIQUE::Echoforge // Infernal Sword", + "UNIQUE::Arn's Anguish // Cloth Belt", + "UNIQUE::Graven's Secret // Cloth Belt", + "UNIQUE::Olesya's Delight // Cloth Belt", + "UNIQUE::Legacy of Fury // Wyrmscale Boots" + ] + }, + { + "query": [ + "ITEM::Reality Fragment" + ], + "items": [ + "UNIQUE::Impossible Escape // Viridian Jewel", + "UNIQUE::Viridi's Veil // Praetor Crown", + "UNIQUE::Progenesis", + "UNIQUE::Grace of the Goddess // Prophecy Wand", + "UNIQUE::Curio of Potential // Primordial Fragment", + "ITEM::Shiny Reliquary Key" + ] + }, + { + "query": [ + "ITEM::Abrasive Catalyst", + "ITEM::Fertile Catalyst", + "ITEM::Imbued Catalyst", + "ITEM::Intrinsic Catalyst", + "ITEM::Prismatic Catalyst", + "ITEM::Tempering Catalyst", + "ITEM::Turbulent Catalyst", + "ITEM::Unstable Catalyst", + "ITEM::Accelerating Catalyst", + "ITEM::Noxious Catalyst" + ], + "items": [] + }, + { + "query": [ + "ITEM::Timeless Eternal Empire Splinter", + "ITEM::Timeless Karui Splinter", + "ITEM::Timeless Maraketh Splinter", + "ITEM::Timeless Templar Splinter", + "ITEM::Timeless Vaal Splinter" + ], + "items": [ + "ITEM::Timeless Eternal Emblem", + "ITEM::Timeless Karui Emblem", + "ITEM::Timeless Maraketh Emblem", + "ITEM::Timeless Templar Emblem", + "ITEM::Timeless Vaal Emblem" + ] + }, + { + "query": [ + "ITEM::Timeless Eternal Emblem", + "ITEM::Timeless Karui Emblem", + "ITEM::Timeless Maraketh Emblem", + "ITEM::Timeless Templar Emblem", + "ITEM::Timeless Vaal Emblem" + ], + "items": [] + }, + { + "query": [ + "ITEM::Prime Chaotic Resonator", + "ITEM::Powerful Chaotic Resonator", + "ITEM::Potent Chaotic Resonator", + "ITEM::Primitive Chaotic Resonator" + ], + "items": [] + }, + { + "query": [ + "UNIQUE::The Beachhead // T15" + ], + "items": [ + "UNIQUE::Infused Beachhead // T16" + ] + }, + { + "query": [ + "ITEM::Sacred Blossom" + ], + "items": [ + "ITEM::Sacred Crystallised Lifeforce", + "UNIQUE::Forbidden Shako // Great Crown", + "UNIQUE::Abhorrent Interrogation // Ambush Mitts", + "UNIQUE::Law of the Wilds // Hellion's Paw", + "UNIQUE::Witchhunter's Judgment // Highborn Staff", + "DIVINATION_CARD::The Bitter Blossom", + "DIVINATION_CARD::The Aspirant" + ] + }, + { + "query": [ + "UNIQUE::Farrul's Bite // Harlequin Mask", + "UNIQUE::Farrul's Pounce // Hydrascale Gauntlets", + "UNIQUE::Farrul's Fur // Triumphant Lamellar", + "UNIQUE::Farrul's Chase // Slink Boots" + ], + "items": [] + }, + { + "query": [ + "UNIQUE::Craiceann's Chitin // Magistrate Crown", + "UNIQUE::Craiceann's Carapace // Golden Plate", + "UNIQUE::Craiceann's Pincers // Titan Gauntlets", + "UNIQUE::Craiceann's Tracks // Goliath Greaves" + ], + "items": [] + }, + { + "query": [ + "UNIQUE::Fenumus' Toxins // Necromancer Circlet", + "UNIQUE::Fenumus' Shroud // Widowsilk Robe", + "UNIQUE::Fenumus' Weave // Carnal Mitts", + "UNIQUE::Fenumus' Spinnerets // Assassin's Boots" + ], + "items": [] + }, + { + "query": [ + "UNIQUE::Saqawal's Flock // Silken Hood", + "UNIQUE::Saqawal's Nest // Blood Raiment", + "UNIQUE::Saqawal's Winds // Soldier Gloves", + "UNIQUE::Saqawal's Talons // Hydrascale Boots" + ], + "items": [] + }, + { + "query": [ + "ITEM::Simulacrum Splinter", + "ITEM::Simulacrum" + ], + "items": [ + "UNIQUE::Split Personality // Crimson Jewel", + "UNIQUE::Megalomaniac // Medium Cluster Jewel", + "UNIQUE::Voices // 5 passives, Large Cluster Jewel", + "UNIQUE::Voices // 7 passives, Large Cluster Jewel" + ] + }, + { + "query": [ + "ITEM::Ancient Orb", + "ITEM::Astragali", + "ITEM::Voidborn Reliquary Key" + ], + "items": [ + "UNIQUE::Headhunter // Leather Belt", + "UNIQUE::Mageblood // Heavy Belt", + "UNIQUE::The Squire // Elegant Round Shield" + ] + }, + { + "query": [ + "DIVINATION_CARD::The Doctor", + "DIVINATION_CARD::The Nurse", + "DIVINATION_CARD::The Patient" + ], + "items": [ + "UNIQUE::Headhunter // Leather Belt" + ] + }, + { + "query": [ + "UNIQUE::Hall of Grandmasters // T6" + ], + "items": [ + "DIVINATION_CARD::The Immortal" + ] + }, + { + "query": [ + "DIVINATION_CARD::House of Mirrors", + "DIVINATION_CARD::Seven Years Bad Luck" + ], + "items": [ + "ITEM::Mirror of Kalandra", + "ITEM::Mirror Shard" + ] + }, + { + "query": [ + "ITEM::Offering to the Goddess", + "ITEM::Gift to the Goddess", + "ITEM::Dedication to the Goddess", + "ITEM::Tribute to the Goddess" + ], + "items": [] + }, + { + "query": [ + "ITEM::Eldritch Orb of Annulment", + "ITEM::Eldritch Chaos Orb", + "ITEM::Eldritch Exalted Orb", + "ITEM::Orb of Annulment", + "ITEM::Exalted Orb", + "ITEM::Veiled Orb" + ], + "items": [] + }, + { + "query": [ + "ITEM::Hunter's Exalted Orb", + "ITEM::Warlord's Exalted Orb", + "ITEM::Crusader's Exalted Orb", + "ITEM::Redeemer's Exalted Orb", + "ITEM::Awakener's Orb", + "ITEM::Orb of Dominance" + ], + "items": [] + }, + { + "query": [ + "UNIQUE::Cortex // T11" + ], + "items": [ + "UNIQUE::Bottled Faith", + "UNIQUE::Garb of the Ephemeral // Savant's Robe", + "UNIQUE::Perepiteia // Ezomyte Spiked Shield", + "UNIQUE::Offering to the Serpent // Legion Gloves", + "DIVINATION_CARD::Imperfect Memories" + ] + }, + { + "query": [ + "ITEM::Synthesising Fragment" + ], + "items": [ + "UNIQUE::Rational Doctrine // Cobalt Jewel", + "UNIQUE::The Apostate // Cabalist Regalia", + "UNIQUE::Mask of the Tribunal // Magistrate Crown", + "UNIQUE::Nebulis // Void Sceptre", + "UNIQUE::Circle of Ambition // Prismatic Ring", + "ITEM::Forgotten Reliquary Key" + ] + }, + { + "query": [ + "UNIQUE::Rewritten Distant Memory // T11", + "UNIQUE::Augmented Distant Memory // T11", + "UNIQUE::Altered Distant Memory // T11", + "UNIQUE::Twisted Distant Memory // T11" + ], + "items": [ + "UNIQUE::Circle of Anguish // Ruby Ring", + "UNIQUE::Circle of Fear // Sapphire Ring", + "UNIQUE::Circle of Guilt // Iron Ring", + "UNIQUE::Circle of Nostalgia // Amethyst Ring", + "UNIQUE::Circle of Regret // Topaz Ring", + "UNIQUE::Cortex // T11" + ] + }, + { + "query": [ + "UNIQUE::Contract: Breaking the Unbreakable // Preventative Contract" + ], + "items": [ + "UNIQUE::Apex Mode // Cobalt Jewel", + "UNIQUE::Nadir Mode // Cobalt Jewel" + ] + }, + { + "query": [ + "UNIQUE::Contract: Death to Darnaw // Naval Contract" + ], + "items": [ + "UNIQUE::The Admiral // Varnished Coat" + ] + }, + { + "query": [ + "UNIQUE::Contract: Heart of Glory // Familial Contract" + ], + "items": [ + "UNIQUE::The Fledgling // Lacquered Helmet" + ] + }, + { + "query": [ + "UNIQUE::Contract: The Slaver King // Vigilante Contract" + ], + "items": [ + "UNIQUE::Chains of Emancipation // Chain Belt" + ] + }, + { + "query": [ + "UNIQUE::Contract: The Twins // Vengeful Contract" + ], + "items": [ + "UNIQUE::Leadership's Price // Onyx Amulet" + ] + }, + + + + + + + + + { + "query": [ + "ITEM::Orb of Fusing", + "ITEM::Omen of Connections", + "ITEM::Bestiary Scarab of the Shadowed Crow", + "CAPTURED_BEAST::Black Mórrigan", + "CAPTURED_BEAST::Craicic Sand Spitter" + ], + "items": [] + }, + { + "query": [ + "UNIQUE::Curio of Absorption // Primordial Fragment", + "UNIQUE::Curio of Consumption // Primordial Fragment", + "UNIQUE::Curio of Decay // Primordial Fragment", + "UNIQUE::Curio of Potential // Primordial Fragment" + ], + "items": [ + "UNIQUE::The Utmost // Gold Amulet" + ] + }, + { + "query": [ + "UNIQUE::Primordial Might // Crimson Jewel", + "UNIQUE::Primordial Harmony // Cobalt Jewel", + "UNIQUE::Primordial Eminence // Viridian Jewel" + ], + "items": [ + "UNIQUE::The Anima Stone // Prismatic Jewel" + ] + }, + { + "query": [ + "UNIQUE::Grelwood Shank // Eternal Sword", + "UNIQUE::Beltimber Blade // Eternal Sword" + ], + "items": [ + "UNIQUE::Arborix // Assassin Bow" + ] + }, + { + "query": [ + "UNIQUE::Shade of Solaris // Sage Wand", + "UNIQUE::Light of Lunaris // Jingling Spirit Shield" + ], + "items": [ + "UNIQUE::Duskdawn // Maelström Staff" + ] + }, + { + "query": [ + "UNIQUE::The Goddess Bound // Whalebone Rapier" + ], + "items": [ + "UNIQUE::The Goddess Scorned // Elegant Sword" + ] + }, + { + "query": [ + "UNIQUE::Soul Taker // Siege Axe", + "UNIQUE::Heartbreaker // Royal Skean" + ], + "items": [ + "UNIQUE::Kingmaker // Despot Axe" + ] + }, + { + "query": [ + "UNIQUE::Invictus Solaris // Archon Kite Shield", + "UNIQUE::Vix Lunaris // Cardinal Round Shield" + ], + "items": [ + "UNIQUE::Magna Eclipsis // Pinnacle Tower Shield" + ] + }, + { + "query": [ + "UNIQUE::Feastbind // Rustic Sash", + "UNIQUE::Faminebind // Rustic Sash" + ], + "items": [ + "UNIQUE::The Retch // Rustic Sash" + ] + }, + { + "query": [ + "UNIQUE::Berek's Grip // Two-Stone Ring", + "UNIQUE::Berek's Pass // Two-Stone Ring", + "UNIQUE::Berek's Respite // Two-Stone Ring" + ], + "items": [ + "UNIQUE::The Taming // Prismatic Ring" + ] + }, + { + "query": [ + "UNIQUE::Beauty // Vaal Aspect", + "UNIQUE::Ambition // Vaal Aspect", + "UNIQUE::Cooperation // Vaal Aspect", + "UNIQUE::Curiosity // Vaal Aspect" + ], + "items": [ + "UNIQUE::The Adorned // Crimson Jewel" + ] + }, + { + "query": [ + "UNIQUE::The Tower of Ordeals // T16" + ], + "items": [ + "UNIQUE::Relic of the Pact // Sage Wand", + "UNIQUE::Mahuxotl's Machination // Steel Kite Shield", + "UNIQUE::Temptation Step // Shagreen Boots", + "UNIQUE::Glimpse of Chaos // Vaal Mask", + "UNIQUE::Yaomac's Accord // Vaal Sceptre", + "UNIQUE::Hateforge // Ancient Gauntlets" + ] + }, + { + "query": [ + "UNIQUE::First Piece of Brutality // Imperial Staff Piece", + "UNIQUE::Second Piece of Brutality // Imperial Staff Piece", + "UNIQUE::Third Piece of Brutality // Imperial Staff Piece" + ], + "items": [ + "UNIQUE::The Enmity Divine // Imperial Staff" + ] + }, + { + "query": [ + "UNIQUE::The Enmity Divine // Imperial Staff", + "ITEM::Haemocombustion Scroll" + ], + "items": [ + "UNIQUE::The Yielding Mortality // Imperial Staff" + ] + }, + { + "query": [ + "UNIQUE::First Piece of Directions // Blunt Arrow Quiver Piece", + "UNIQUE::Second Piece of Directions // Blunt Arrow Quiver Piece", + "UNIQUE::Third Piece of Directions // Blunt Arrow Quiver Piece" + ], + "items": [ + "UNIQUE::The Fracturing Spinner // Blunt Arrow Quiver" + ] + }, + { + "query": [ + "UNIQUE::The Fracturing Spinner // Blunt Arrow Quiver", + "ITEM::Fragmentation Scroll" + ], + "items": [ + "UNIQUE::The Shattered Divinity // Blunt Arrow Quiver" + ] + }, + { + "query": [ + "UNIQUE::First Piece of Focus // Archon Kite Shield Piece", + "UNIQUE::Second Piece of Focus // Archon Kite Shield Piece", + "UNIQUE::Third Piece of Focus // Archon Kite Shield Piece", + "UNIQUE::Fourth Piece of Focus // Archon Kite Shield Piece" + ], + "items": [ + "UNIQUE::The Unshattered Will // Archon Kite Shield" + ] + }, + { + "query": [ + "UNIQUE::The Unshattered Will // Archon Kite Shield", + "ITEM::Specularity Scroll" + ], + "items": [ + "UNIQUE::The Immortal Will // Archon Kite Shield" + ] + }, + { + "query": [ + "UNIQUE::First Piece of Storms // Callous Mask Piece", + "UNIQUE::Second Piece of Storms // Callous Mask Piece", + "UNIQUE::Third Piece of Storms // Callous Mask Piece" + ], + "items": [ + "UNIQUE::The Tempest's Binding // Callous Mask" + ] + }, + { + "query": [ + "UNIQUE::The Tempest's Binding // Callous Mask", + "ITEM::Deregulation Scroll" + ], + "items": [ + "UNIQUE::The Tempest's Liberation // Callous Mask" + ] + }, + { + "query": [ + "UNIQUE::First Piece of the Arcane // Legion Sword Piece", + "UNIQUE::Second Piece of the Arcane // Legion Sword Piece", + "UNIQUE::Third Piece of the Arcane // Legion Sword Piece" + ], + "items": [ + "UNIQUE::The Rippling Thoughts // Legion Sword" + ] + }, + { + "query": [ + "UNIQUE::The Rippling Thoughts // Legion Sword", + "ITEM::Electroshock Scroll" + ], + "items": [ + "UNIQUE::The Surging Thoughts // Legion Sword" + ] + }, + { + "query": [ + "UNIQUE::First Piece of Time // Cloth Belt Piece", + "UNIQUE::Second Piece of Time // Cloth Belt Piece" + ], + "items": [ + "UNIQUE::The Flow Untethered // Cloth Belt" + ] + }, + { + "query": [ + "UNIQUE::The Flow Untethered // Cloth Belt", + "ITEM::Time-light Scroll" + ], + "items": [ + "UNIQUE::The Torrent's Reclamation // Cloth Belt" + ] + }, + { + "query": [ + "UNIQUE::The Blue Dream // Cobalt Jewel", + "UNIQUE::Skin of the Loyal // Simple Robe, 6L", + "UNIQUE::The Red Dream // Crimson Jewel", + "UNIQUE::Severed in Sleep // Cutlass", + "UNIQUE::Eye of Chayula // Onyx Amulet", + "UNIQUE::The Green Dream // Viridian Jewel", + "ITEM::Blessing of Chayula" + ], + "items": [ + "UNIQUE::The Blue Nightmare // Cobalt Jewel", + "UNIQUE::Skin of the Lords // Simple Robe", + "UNIQUE::The Red Nightmare // Crimson Jewel", + "UNIQUE::United in Dream // Cutlass", + "UNIQUE::Presence of Chayula // Onyx Amulet", + "UNIQUE::The Green Nightmare // Viridian Jewel" + ] + }, + { + "query": [ + "UNIQUE::Esh's Mirror // Thorium Spirit Shield", + "UNIQUE::Voice of the Storm // Lapis Amulet", + "UNIQUE::Hand of Thought and Motion // Blinder", + "ITEM::Blessing of Esh" + ], + "items": [ + "UNIQUE::Esh's Visage // Vaal Spirit Shield", + "UNIQUE::Choir of the Storm // Lapis Amulet", + "UNIQUE::Hand of Wisdom and Action // Imperial Claw" + ] + }, + { + "query": [ + "UNIQUE::Tulborn // Opal Wand", + "UNIQUE::The Snowblind Grace // Coronal Leather", + "UNIQUE::The Halcyon // Jade Amulet", + "ITEM::Blessing of Tul" + ], + "items": [ + "UNIQUE::Tulfall // Opal Wand", + "UNIQUE::The Perfect Form // Zodiac Leather", + "UNIQUE::The Pandemonius // Jade Amulet" + ] + }, + { + "query": [ + "UNIQUE::The Infinite Pursuit // Goliath Greaves", + "UNIQUE::The Anticipation // Ezomyte Tower Shield", + "UNIQUE::Uul-Netol's Kiss // Labrys", + "ITEM::Blessing of Uul-Netol" + ], + "items": [ + "UNIQUE::The Red Trail // Titan Greaves", + "UNIQUE::The Surrender // Ezomyte Tower Shield", + "UNIQUE::Uul-Netol's Embrace // Vaal Axe" + ] + }, + { + "query": [ + "UNIQUE::The Formless Flame // Siege Helmet", + "UNIQUE::Xoph's Inception // Bone Bow", + "UNIQUE::Xoph's Heart // Amber Amulet", + "ITEM::Blessing of Xoph" + ], + "items": [ + "UNIQUE::The Formless Inferno // Royal Burgonet", + "UNIQUE::Xoph's Nurture // Citadel Bow", + "UNIQUE::Xoph's Blood // Amber Amulet" + ] + }, + { + "query": [ + "ITEM::Vial of Awakening", + "UNIQUE::Apep's Slumber // Vaal Spirit Shield" + ], + "items": [ + "UNIQUE::Apep's Supremacy // Vaal Spirit Shield" + ] + }, + { + "query": [ + "ITEM::Vial of Consequence", + "UNIQUE::Coward's Chains // Chain Belt" + ], + "items": [ + "UNIQUE::Coward's Legacy // Chain Belt" + ] + }, + { + "query": [ + "ITEM::Vial of Dominance", + "UNIQUE::Architect's Hand // Ambush Mitts" + ], + "items": [ + "UNIQUE::Slavedriver's Hand // Ambush Mitts" + ] + }, + { + "query": [ + "ITEM::Vial of Fate", + "UNIQUE::Story of the Vaal // Gemstone Sword" + ], + "items": [ + "UNIQUE::Fate of the Vaal // Gemstone Sword" + ] + }, + { + "query": [ + "ITEM::Vial of Summoning", + "UNIQUE::Mask of the Spirit Drinker // Magistrate Crown" + ], + "items": [ + "UNIQUE::Mask of the Stitched Demon // Magistrate Crown" + ] + }, + { + "query": [ + "ITEM::Vial of the Ritual", + "UNIQUE::Dance of the Offered // Carnal Boots" + ], + "items": [ + "UNIQUE::Omeyocan // Carnal Boots" + ] + }, + { + "query": [ + "UNIQUE::Tempered Flesh // Crimson Jewel", + "UNIQUE::Tempered Spirit // Viridian Jewel", + "UNIQUE::Tempered Mind // Cobalt Jewel", + "ITEM::Vial of Transcendence" + ], + "items": [ + "UNIQUE::Transcendent Flesh // Crimson Jewel", + "UNIQUE::Transcendent Spirit // Viridian Jewel", + "UNIQUE::Transcendent Mind // Cobalt Jewel" + ] + }, + { + "query": [ + "ITEM::Vial of Sacrifice", + "UNIQUE::Sacrificial Heart // Paua Amulet" + ], + "items": [ + "UNIQUE::Zerphi's Heart // Paua Amulet" + ] + }, + { + "query": [ + "ITEM::Vial of the Ghost", + "UNIQUE::Soul Catcher" + ], + "items": [ + "UNIQUE::Soul Ripper" + ] + }, + + { + "query": [ + "ITEM::Deafening Essence of Greed", + "ITEM::Shrieking Essence of Greed", + "ITEM::Screaming Essence of Greed" + ], + "items": [] + }, + { + "query": [ + "ITEM::Deafening Essence of Contempt", + "ITEM::Shrieking Essence of Contempt", + "ITEM::Screaming Essence of Contempt" + ], + "items": [] + }, + { + "query": [ + "ITEM::Deafening Essence of Hatred", + "ITEM::Shrieking Essence of Hatred", + "ITEM::Screaming Essence of Hatred" + ], + "items": [] + }, + { + "query": [ + "ITEM::Deafening Essence of Woe", + "ITEM::Shrieking Essence of Woe", + "ITEM::Screaming Essence of Woe" + ], + "items": [] + }, + { + "query": [ + "ITEM::Deafening Essence of Fear", + "ITEM::Shrieking Essence of Fear", + "ITEM::Screaming Essence of Fear" + ], + "items": [] + }, + { + "query": [ + "ITEM::Deafening Essence of Anger", + "ITEM::Shrieking Essence of Anger", + "ITEM::Screaming Essence of Anger" + ], + "items": [] + }, + { + "query": [ + "ITEM::Deafening Essence of Torment", + "ITEM::Shrieking Essence of Torment", + "ITEM::Screaming Essence of Torment" + ], + "items": [] + }, + { + "query": [ + "ITEM::Deafening Essence of Sorrow", + "ITEM::Shrieking Essence of Sorrow", + "ITEM::Screaming Essence of Sorrow" + ], + "items": [] + }, + { + "query": [ + "ITEM::Deafening Essence of Rage", + "ITEM::Shrieking Essence of Rage", + "ITEM::Screaming Essence of Rage" + ], + "items": [] + }, + { + "query": [ + "ITEM::Deafening Essence of Suffering", + "ITEM::Shrieking Essence of Suffering", + "ITEM::Screaming Essence of Suffering" + ], + "items": [] + }, + { + "query": [ + "ITEM::Deafening Essence of Wrath", + "ITEM::Shrieking Essence of Wrath", + "ITEM::Screaming Essence of Wrath" + ], + "items": [] + }, + { + "query": [ + "ITEM::Deafening Essence of Doubt", + "ITEM::Shrieking Essence of Doubt", + "ITEM::Screaming Essence of Doubt" + ], + "items": [] + }, + { + "query": [ + "ITEM::Deafening Essence of Loathing", + "ITEM::Shrieking Essence of Loathing", + "ITEM::Screaming Essence of Loathing" + ], + "items": [] + }, + { + "query": [ + "ITEM::Deafening Essence of Zeal", + "ITEM::Shrieking Essence of Zeal", + "ITEM::Screaming Essence of Zeal" + ], + "items": [] + }, + { + "query": [ + "ITEM::Deafening Essence of Anguish", + "ITEM::Shrieking Essence of Anguish", + "ITEM::Screaming Essence of Anguish" + ], + "items": [] + }, + { + "query": [ + "ITEM::Deafening Essence of Spite", + "ITEM::Shrieking Essence of Spite", + "ITEM::Screaming Essence of Spite" + ], + "items": [] + }, + { + "query": [ + "ITEM::Deafening Essence of Scorn", + "ITEM::Shrieking Essence of Scorn", + "ITEM::Screaming Essence of Scorn" + ], + "items": [] + }, + { + "query": [ + "ITEM::Deafening Essence of Envy", + "ITEM::Shrieking Essence of Envy", + "ITEM::Screaming Essence of Envy" + ], + "items": [] + }, + { + "query": [ + "ITEM::Deafening Essence of Misery", + "ITEM::Shrieking Essence of Misery", + "ITEM::Screaming Essence of Misery" + ], + "items": [] + }, + { + "query": [ + "ITEM::Deafening Essence of Dread", + "ITEM::Shrieking Essence of Dread", + "ITEM::Screaming Essence of Dread" + ], + "items": [] + }, + { + "query": [ + "ITEM::Remnant of Corruption" + ], + "items": [ + "ITEM::Essence of Insanity", + "ITEM::Essence of Horror", + "ITEM::Essence of Delirium", + "ITEM::Essence of Hysteria" + ] + }, + { + "query": [ + "ITEM::Essence of Insanity", + "ITEM::Essence of Horror", + "ITEM::Essence of Delirium", + "ITEM::Essence of Hysteria" + ], + "items": [ + "ITEM::Remnant of Corruption" + ] + }, + { + "query": [ + "ITEM::Sacred Crystallised Lifeforce", + "ITEM::Primal Crystallised Lifeforce", + "ITEM::Wild Crystallised Lifeforce", + "ITEM::Vivid Crystallised Lifeforce" + ], + "items": [] + }, + { + "query": [ + "UNIQUE::Ventor's Gamble // Gold Ring", + "UNIQUE::Sadima's Touch // Wool Gloves", + "UNIQUE::Bisco's Leash // Heavy Belt", + "UNIQUE::Goldwyrm // Nubuck Boots", + "UNIQUE::Divination Distillate", + "UNIQUE::The Ascetic // Gold Amulet", + "UNIQUE::Greed's Embrace // Golden Plate", + "UNIQUE::Sentari's Answer // Brass Spirit Shield" + ], + "items": [] + }, + { + "query": [ + "GEM::Cast on Death Support", + "UNIQUE::Goldrim // Leather Cap", + "UNIQUE::Tabula Rasa // Simple Robe, 6L", + "UNIQUE::Lochtonial Caress // Iron Gauntlets", + "UNIQUE::Wanderlust // Wool Shoes", + "UNIQUE::Lifesprig // Driftwood Wand", + "UNIQUE::Karui Ward // Jade Amulet" + ], + "items": [] + }, + { + "query": [ + "UNIQUE::The Original Scripture // Relic", + "UNIQUE::The Power and the Promise // Relic", + "UNIQUE::The Blood of Innocence // Relic", + "UNIQUE::The Chains of Castigation // Relic", + "UNIQUE::The Second Sacrament // Relic", + "ITEM::Forbidden Tome" + ], + "items": [ + "UNIQUE::Original Sin // Amethyst Ring", + "UNIQUE::Eternal Damnation // Agate Amulet", + "UNIQUE::The Balance of Terror // Cobalt Jewel", + "UNIQUE::Sandstorm Visage // Necromancer Circlet", + "UNIQUE::The Winds of Fate // Foul Staff", + "UNIQUE::The Gilded Chalice // Relic", + "UNIQUE::The Hour of Divinity // Relic", + "UNIQUE::The First Crest // Relics, Relic", + "UNIQUE::The Night Lamp // Relic", + "UNIQUE::The Broken Censer // Relic" + ] + } +] \ No newline at end of file diff --git a/renderer/src/parser/en/items.ndjson b/renderer/src/parser/en/items.ndjson new file mode 100644 index 000000000..504916889 --- /dev/null +++ b/renderer/src/parser/en/items.ndjson @@ -0,0 +1,3059 @@ +{"name": "\"O' Eternal\"", "refName": "\"O' Eternal\"", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "\"The Kiss Goodnight\"", "refName": "\"The Kiss Goodnight\"", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "\"The Nameless Play\"", "refName": "\"The Nameless Play\"", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Abberathine Horns", "refName": "Abberathine Horns", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Aberrant Fossil", "refName": "Aberrant Fossil", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvQWJiZXJhbnRGb3NzaWwiLCJzY2FsZSI6MX1d/0ebc664beb/AbberantFossil.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Ablation", "refName": "Ablation", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Abyssal Cuirass", "refName": "Abyssal Cuirass", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [445, 445]}, "w": 2, "h": 3} +{"name": "Abyssal Flail", "refName": "Abyssal Flail", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Flail"}, "w": 2, "h": 3} +{"name": "Abyssal Incubator", "refName": "Abyssal Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQWJ5c3MiLCJzY2FsZSI6MX1d/f3c36d1eb4/IncubationAbyss.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Abyssal Incubator", "refName": "Abyssal Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQWJ5c3MiLCJzY2FsZSI6MX1d/f3c36d1eb4/IncubationAbyss.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Acceleration", "refName": "Acceleration", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Acrid Wand", "refName": "Acrid Wand", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Wand"}, "w": 1, "h": 3} +{"name": "Adaptive Catalyst", "refName": "Adaptive Catalyst", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaENhdGFseXN0QXR0cmlidXRlIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/015f6c9ac8/BreachCatalystAttribute.png", "tradeTag": "adaptive-catalyst", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Admiral Darnaw", "refName": "Admiral Darnaw", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Admiral Darnaw's Papers", "refName": "Admiral Darnaw's Papers", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Admiral Darnaw's Papers", "refName": "Admiral Darnaw's Papers", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Admiral Proclar's Pipe", "refName": "Admiral Proclar's Pipe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Adorned Gloves", "refName": "Adorned Gloves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"es": [42, 42]}, "w": 2, "h": 2} +{"name": "Advanced Aged Cuffs", "refName": "Advanced Aged Cuffs", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [54, 54], "es": [19, 19]}, "w": 2, "h": 2} +{"name": "Advanced Altar Robe", "refName": "Advanced Altar Robe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"es": [123, 123]}, "w": 2, "h": 3} +{"name": "Advanced Anchorite Garb", "refName": "Advanced Anchorite Garb", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [170, 170], "es": [65, 65]}, "w": 2, "h": 3} +{"name": "Advanced Antler Focus", "refName": "Advanced Antler Focus", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Focus"}, "armour": {"es": [42, 42]}, "w": 2, "h": 3} +{"name": "Advanced Barrier Quarterstaff", "refName": "Advanced Barrier Quarterstaff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Warstaff"}, "w": 2, "h": 4} +{"name": "Advanced Beaded Circlet", "refName": "Advanced Beaded Circlet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"es": [71, 71]}, "w": 2, "h": 2} +{"name": "Advanced Blazon Crest Shield", "refName": "Advanced Blazon Crest Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [61, 61], "es": [22, 22]}, "w": 2, "h": 3} +{"name": "Advanced Bolstered Mitts", "refName": "Advanced Bolstered Mitts", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [105, 105]}, "w": 2, "h": 2} +{"name": "Advanced Bombard Crossbow", "refName": "Advanced Bombard Crossbow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Crossbow"}, "w": 2, "h": 4} +{"name": "Advanced Bound Bracers", "refName": "Advanced Bound Bracers", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ev": [89, 89]}, "w": 2, "h": 2} +{"name": "Advanced Braced Sabatons", "refName": "Advanced Braced Sabatons", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [81, 81], "ev": [73, 73]}, "w": 2, "h": 2} +{"name": "Advanced Braced Tower Shield", "refName": "Advanced Braced Tower Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [116, 116]}, "w": 2, "h": 4} +{"name": "Advanced Brigand Mace", "refName": "Advanced Brigand Mace", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Mace"}, "w": 2, "h": 3} +{"name": "Advanced Brimmed Helm", "refName": "Advanced Brimmed Helm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [97, 97], "ev": [87, 87]}, "w": 2, "h": 2} +{"name": "Advanced Bronze Greaves", "refName": "Advanced Bronze Greaves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [147, 147]}, "w": 2, "h": 2} +{"name": "Advanced Chain Mail", "refName": "Advanced Chain Mail", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [148, 148], "ev": [133, 133]}, "w": 2, "h": 3} +{"name": "Advanced Chain Tiara", "refName": "Advanced Chain Tiara", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"es": [74, 74]}, "w": 2, "h": 2} +{"name": "Advanced Chiseled Targe", "refName": "Advanced Chiseled Targe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [77, 77], "ev": [70, 70]}, "w": 2, "h": 3} +{"name": "Advanced Cloaked Mail", "refName": "Advanced Cloaked Mail", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [176, 176], "ev": [159, 159]}, "w": 2, "h": 3} +{"name": "Advanced Composite Bow", "refName": "Advanced Composite Bow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Bow"}, "w": 2, "h": 4} +{"name": "Advanced Construct Hammer", "refName": "Advanced Construct Hammer", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Mace"}, "w": 2, "h": 3} +{"name": "Advanced Cowled Helm", "refName": "Advanced Cowled Helm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [115, 115], "ev": [105, 105]}, "w": 2, "h": 2} +{"name": "Advanced Crackling Quarterstaff", "refName": "Advanced Crackling Quarterstaff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Warstaff"}, "w": 2, "h": 4} +{"name": "Advanced Crescent Quarterstaff", "refName": "Advanced Crescent Quarterstaff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Warstaff"}, "w": 2, "h": 4} +{"name": "Advanced Crescent Targe", "refName": "Advanced Crescent Targe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [72, 72], "ev": [65, 65]}, "w": 2, "h": 3} +{"name": "Advanced Crumbling Maul", "refName": "Advanced Crumbling Maul", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Mace"}, "w": 2, "h": 4} +{"name": "Advanced Crystal Focus", "refName": "Advanced Crystal Focus", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Focus"}, "armour": {"es": [46, 46]}, "w": 2, "h": 3} +{"name": "Advanced Cultist Bow", "refName": "Advanced Cultist Bow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Bow"}, "w": 2, "h": 4} +{"name": "Advanced Cultist Crown", "refName": "Advanced Cultist Crown", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [108, 108], "es": [38, 38]}, "w": 2, "h": 2} +{"name": "Advanced Cultist Greathammer", "refName": "Advanced Cultist Greathammer", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Mace"}, "w": 2, "h": 4} +{"name": "Advanced Doubled Gauntlets", "refName": "Advanced Doubled Gauntlets", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [61, 61], "ev": [56, 56]}, "w": 2, "h": 2} +{"name": "Advanced Dualstring Bow", "refName": "Advanced Dualstring Bow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Bow"}, "w": 2, "h": 4} +{"name": "Advanced Dyad Crossbow", "refName": "Advanced Dyad Crossbow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Crossbow"}, "w": 2, "h": 4} +{"name": "Advanced Edged Buckler", "refName": "Advanced Edged Buckler", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ev": [131, 131]}, "w": 2, "h": 2} +{"name": "Advanced Effigial Tower Shield", "refName": "Advanced Effigial Tower Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [123, 123]}, "w": 2, "h": 4} +{"name": "Advanced Elite Greathelm", "refName": "Advanced Elite Greathelm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [223, 223]}, "w": 2, "h": 2} +{"name": "Advanced Emblem Crest Shield", "refName": "Advanced Emblem Crest Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [67, 67], "es": [24, 24]}, "w": 2, "h": 3} +{"name": "Advanced Embossed Boots", "refName": "Advanced Embossed Boots", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ev": [133, 133]}, "w": 2, "h": 2} +{"name": "Advanced Explorer Armour", "refName": "Advanced Explorer Armour", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [187, 187], "ev": [170, 170]}, "w": 2, "h": 3} +{"name": "Advanced Face Mask", "refName": "Advanced Face Mask", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [92, 92], "es": [37, 37]}, "w": 2, "h": 2} +{"name": "Advanced Feathered Robe", "refName": "Advanced Feathered Robe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"es": [97, 97]}, "w": 2, "h": 3} +{"name": "Advanced Feathered Sandals", "refName": "Advanced Feathered Sandals", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"es": [58, 58]}, "w": 2, "h": 2} +{"name": "Advanced Feathered Targe", "refName": "Advanced Feathered Targe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [80, 80], "ev": [73, 73]}, "w": 2, "h": 3} +{"name": "Advanced Feathered Tiara", "refName": "Advanced Feathered Tiara", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"es": [78, 78]}, "w": 2, "h": 2} +{"name": "Advanced Felt Cap", "refName": "Advanced Felt Cap", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [168, 168]}, "w": 2, "h": 2} +{"name": "Advanced Firm Bracers", "refName": "Advanced Firm Bracers", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ev": [79, 79]}, "w": 2, "h": 2} +{"name": "Advanced Forge Maul", "refName": "Advanced Forge Maul", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Mace"}, "w": 2, "h": 4} +{"name": "Advanced Forlorn Crossbow", "refName": "Advanced Forlorn Crossbow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Crossbow"}, "w": 2, "h": 4} +{"name": "Advanced Frayed Shoes", "refName": "Advanced Frayed Shoes", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ev": [65, 65], "es": [26, 26]}, "w": 2, "h": 2} +{"name": "Advanced Full Plate", "refName": "Advanced Full Plate", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [340, 340]}, "w": 2, "h": 3} +{"name": "Advanced Fur Plate", "refName": "Advanced Fur Plate", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [269, 269]}, "w": 2, "h": 3} +{"name": "Advanced Gauze Wraps", "refName": "Advanced Gauze Wraps", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ev": [44, 44], "es": [17, 17]}, "w": 2, "h": 2} +{"name": "Advanced Goldcast Cuffs", "refName": "Advanced Goldcast Cuffs", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [61, 61], "es": [21, 21]}, "w": 2, "h": 2} +{"name": "Advanced Gothic Quarterstaff", "refName": "Advanced Gothic Quarterstaff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Warstaff"}, "w": 2, "h": 4} +{"name": "Advanced Guarded Helm", "refName": "Advanced Guarded Helm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [102, 102], "ev": [92, 92]}, "w": 2, "h": 2} +{"name": "Advanced Hardwood Targe", "refName": "Advanced Hardwood Targe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [61, 61], "ev": [54, 54]}, "w": 2, "h": 3} +{"name": "Advanced Heavy Crown", "refName": "Advanced Heavy Crown", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [123, 123], "es": [43, 43]}, "w": 2, "h": 2} +{"name": "Advanced Heraldric Tower Shield", "refName": "Advanced Heraldric Tower Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [139, 139]}, "w": 2, "h": 4} +{"name": "Advanced Hermit Garb", "refName": "Advanced Hermit Garb", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [133, 133], "es": [53, 53]}, "w": 2, "h": 3} +{"name": "Advanced Hewn Mask", "refName": "Advanced Hewn Mask", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [87, 87], "es": [35, 35]}, "w": 2, "h": 2} +{"name": "Advanced Hexer's Robe", "refName": "Advanced Hexer's Robe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"es": [101, 101]}, "w": 2, "h": 3} +{"name": "Advanced Hooded Mask", "refName": "Advanced Hooded Mask", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [98, 98], "es": [38, 38]}, "w": 2, "h": 2} +{"name": "Advanced Horned Crown", "refName": "Advanced Horned Crown", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [102, 102], "es": [37, 37]}, "w": 2, "h": 2} +{"name": "Advanced Hunter Hood", "refName": "Advanced Hunter Hood", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [203, 203]}, "w": 2, "h": 2} +{"name": "Advanced Hunting Shoes", "refName": "Advanced Hunting Shoes", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ev": [84, 84], "es": [32, 32]}, "w": 2, "h": 2} +{"name": "Advanced Intricate Gloves", "refName": "Advanced Intricate Gloves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"es": [39, 39]}, "w": 2, "h": 2} +{"name": "Advanced Iron Crown", "refName": "Advanced Iron Crown", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [97, 97], "es": [35, 35]}, "w": 2, "h": 2} +{"name": "Advanced Iron Cuirass", "refName": "Advanced Iron Cuirass", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [284, 284]}, "w": 2, "h": 3} +{"name": "Advanced Iron Greaves", "refName": "Advanced Iron Greaves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [132, 132]}, "w": 2, "h": 2} +{"name": "Advanced Ironclad Vestments", "refName": "Advanced Ironclad Vestments", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [187, 187], "es": [65, 65]}, "w": 2, "h": 3} +{"name": "Advanced Jewelled Gloves", "refName": "Advanced Jewelled Gloves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"es": [37, 37]}, "w": 2, "h": 2} +{"name": "Advanced Jingling Crest Shield", "refName": "Advanced Jingling Crest Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [72, 72], "es": [25, 25]}, "w": 2, "h": 3} +{"name": "Advanced Keth Raiment", "refName": "Advanced Keth Raiment", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"es": [112, 112]}, "w": 2, "h": 3} +{"name": "Advanced Lace Hood", "refName": "Advanced Lace Hood", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [177, 177]}, "w": 2, "h": 2} +{"name": "Advanced Laced Boots", "refName": "Advanced Laced Boots", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ev": [119, 119]}, "w": 2, "h": 2} +{"name": "Advanced Lattice Sandals", "refName": "Advanced Lattice Sandals", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"es": [52, 52]}, "w": 2, "h": 2} +{"name": "Advanced Layered Gauntlets", "refName": "Advanced Layered Gauntlets", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [54, 54], "ev": [49, 49]}, "w": 2, "h": 2} +{"name": "Advanced Leaden Greathammer", "refName": "Advanced Leaden Greathammer", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Mace"}, "w": 2, "h": 4} +{"name": "Advanced Linen Wraps", "refName": "Advanced Linen Wraps", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ev": [49, 49], "es": [19, 19]}, "w": 2, "h": 2} +{"name": "Advanced Lizardscale Boots", "refName": "Advanced Lizardscale Boots", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ev": [152, 152]}, "w": 2, "h": 2} +{"name": "Advanced Long Quarterstaff", "refName": "Advanced Long Quarterstaff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Warstaff"}, "w": 2, "h": 4} +{"name": "Advanced Mail Sabatons", "refName": "Advanced Mail Sabatons", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [73, 73], "ev": [65, 65]}, "w": 2, "h": 2} +{"name": "Advanced Mail Vestments", "refName": "Advanced Mail Vestments", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [165, 165], "es": [58, 58]}, "w": 2, "h": 3} +{"name": "Advanced Marabout Garb", "refName": "Advanced Marabout Garb", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [149, 149], "es": [58, 58]}, "w": 2, "h": 3} +{"name": "Advanced Maraketh Cuirass", "refName": "Advanced Maraketh Cuirass", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [299, 299]}, "w": 2, "h": 3} +{"name": "Advanced Martyr Crown", "refName": "Advanced Martyr Crown", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [115, 115], "es": [41, 41]}, "w": 2, "h": 2} +{"name": "Advanced Moulded Mitts", "refName": "Advanced Moulded Mitts", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [111, 111]}, "w": 2, "h": 2} +{"name": "Advanced Oak Greathammer", "refName": "Advanced Oak Greathammer", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Mace"}, "w": 2, "h": 4} +{"name": "Advanced Omen Crest Shield", "refName": "Advanced Omen Crest Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [80, 80], "es": [28, 28]}, "w": 2, "h": 3} +{"name": "Advanced Padded Leggings", "refName": "Advanced Padded Leggings", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [73, 73], "es": [26, 26]}, "w": 2, "h": 2} +{"name": "Advanced Painted Tower Shield", "refName": "Advanced Painted Tower Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [110, 110]}, "w": 2, "h": 4} +{"name": "Advanced Pathfinder Coat", "refName": "Advanced Pathfinder Coat", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [256, 256]}, "w": 2, "h": 3} +{"name": "Advanced Pelage Targe", "refName": "Advanced Pelage Targe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [64, 64], "ev": [58, 58]}, "w": 2, "h": 3} +{"name": "Advanced Pelt Leggings", "refName": "Advanced Pelt Leggings", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [92, 92], "es": [32, 32]}, "w": 2, "h": 2} +{"name": "Advanced Pelt Mantle", "refName": "Advanced Pelt Mantle", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [156, 156], "es": [56, 56]}, "w": 2, "h": 3} +{"name": "Advanced Pilgrim Vestments", "refName": "Advanced Pilgrim Vestments", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [148, 148], "es": [53, 53]}, "w": 2, "h": 3} +{"name": "Advanced Plated Buckler", "refName": "Advanced Plated Buckler", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ev": [105, 105]}, "w": 2, "h": 2} +{"name": "Advanced Plated Mace", "refName": "Advanced Plated Mace", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Mace"}, "w": 2, "h": 3} +{"name": "Advanced Plumed Focus", "refName": "Advanced Plumed Focus", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Focus"}, "armour": {"es": [50, 50]}, "w": 2, "h": 3} +{"name": "Advanced Quilted Vest", "refName": "Advanced Quilted Vest", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [242, 242]}, "w": 2, "h": 3} +{"name": "Advanced Rampart Tower Shield", "refName": "Advanced Rampart Tower Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [131, 131]}, "w": 2, "h": 4} +{"name": "Advanced Rhoahide Coat", "refName": "Advanced Rhoahide Coat", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [271, 271]}, "w": 2, "h": 3} +{"name": "Advanced Ridged Buckler", "refName": "Advanced Ridged Buckler", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ev": [111, 111]}, "w": 2, "h": 2} +{"name": "Advanced Ringed Buckler", "refName": "Advanced Ringed Buckler", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ev": [127, 127]}, "w": 2, "h": 2} +{"name": "Advanced Ringmail Gauntlets", "refName": "Advanced Ringmail Gauntlets", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [48, 48], "ev": [44, 44]}, "w": 2, "h": 2} +{"name": "Advanced Riveted Mitts", "refName": "Advanced Riveted Mitts", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [88, 88]}, "w": 2, "h": 2} +{"name": "Advanced Rogue Armour", "refName": "Advanced Rogue Armour", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [156, 156], "ev": [141, 141]}, "w": 2, "h": 3} +{"name": "Advanced Rope Cuffs", "refName": "Advanced Rope Cuffs", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [48, 48], "es": [17, 17]}, "w": 2, "h": 2} +{"name": "Advanced Rusted Greathelm", "refName": "Advanced Rusted Greathelm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [176, 176]}, "w": 2, "h": 2} +{"name": "Advanced Sacrificial Mantle", "refName": "Advanced Sacrificial Mantle", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [195, 195], "es": [68, 68]}, "w": 2, "h": 3} +{"name": "Advanced Scale Mail", "refName": "Advanced Scale Mail", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [195, 195], "ev": [178, 178]}, "w": 2, "h": 3} +{"name": "Advanced Scalper's Jacket", "refName": "Advanced Scalper's Jacket", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [178, 178], "es": [68, 68]}, "w": 2, "h": 3} +{"name": "Advanced Scout's Vest", "refName": "Advanced Scout's Vest", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [309, 309]}, "w": 2, "h": 3} +{"name": "Advanced Sectarian Crest Shield", "refName": "Advanced Sectarian Crest Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [77, 77], "es": [27, 27]}, "w": 2, "h": 3} +{"name": "Advanced Sectioned Bracers", "refName": "Advanced Sectioned Bracers", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ev": [95, 95]}, "w": 2, "h": 2} +{"name": "Advanced Secured Leggings", "refName": "Advanced Secured Leggings", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [81, 81], "es": [29, 29]}, "w": 2, "h": 2} +{"name": "Advanced Serpentscale Coat", "refName": "Advanced Serpentscale Coat", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [324, 324]}, "w": 2, "h": 3} +{"name": "Advanced Shabby Hood", "refName": "Advanced Shabby Hood", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [158, 158]}, "w": 2, "h": 2} +{"name": "Advanced Shaman Mantle", "refName": "Advanced Shaman Mantle", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [176, 176], "es": [62, 62]}, "w": 2, "h": 3} +{"name": "Advanced Shielded Helm", "refName": "Advanced Shielded Helm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [123, 123], "ev": [111, 111]}, "w": 2, "h": 2} +{"name": "Advanced Shortbow", "refName": "Advanced Shortbow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Bow"}, "w": 2, "h": 4} +{"name": "Advanced Sigil Crest Shield", "refName": "Advanced Sigil Crest Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [64, 64], "es": [23, 23]}, "w": 2, "h": 3} +{"name": "Advanced Silk Robe", "refName": "Advanced Silk Robe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"es": [106, 106]}, "w": 2, "h": 3} +{"name": "Advanced Silk Slippers", "refName": "Advanced Silk Slippers", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"es": [55, 55]}, "w": 2, "h": 2} +{"name": "Advanced Slicing Quarterstaff", "refName": "Advanced Slicing Quarterstaff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Warstaff"}, "w": 2, "h": 4} +{"name": "Advanced Slim Mace", "refName": "Advanced Slim Mace", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Mace"}, "w": 2, "h": 3} +{"name": "Advanced Smithing Hammer", "refName": "Advanced Smithing Hammer", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Mace"}, "w": 2, "h": 3} +{"name": "Advanced Soldier Greathelm", "refName": "Advanced Soldier Greathelm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [186, 186]}, "w": 2, "h": 2} +{"name": "Advanced Sombre Gloves", "refName": "Advanced Sombre Gloves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"es": [32, 32]}, "w": 2, "h": 2} +{"name": "Advanced Spiked Buckler", "refName": "Advanced Spiked Buckler", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ev": [119, 119]}, "w": 2, "h": 2} +{"name": "Advanced Spined Bracers", "refName": "Advanced Spined Bracers", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ev": [101, 101]}, "w": 2, "h": 2} +{"name": "Advanced Spiral Wraps", "refName": "Advanced Spiral Wraps", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ev": [56, 56], "es": [21, 21]}, "w": 2, "h": 2} +{"name": "Advanced Spired Greathelm", "refName": "Advanced Spired Greathelm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [210, 210]}, "w": 2, "h": 2} +{"name": "Advanced Stacked Sabatons", "refName": "Advanced Stacked Sabatons", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [92, 92], "ev": [84, 84]}, "w": 2, "h": 2} +{"name": "Advanced Steel Plate", "refName": "Advanced Steel Plate", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [320, 320]}, "w": 2, "h": 3} +{"name": "Advanced Steeltoe Boots", "refName": "Advanced Steeltoe Boots", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ev": [143, 143]}, "w": 2, "h": 2} +{"name": "Advanced Stitched Gloves", "refName": "Advanced Stitched Gloves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"es": [35, 35]}, "w": 2, "h": 2} +{"name": "Advanced Stone Greaves", "refName": "Advanced Stone Greaves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [167, 167]}, "w": 2, "h": 2} +{"name": "Advanced Stone Tower Shield", "refName": "Advanced Stone Tower Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [144, 144]}, "w": 2, "h": 4} +{"name": "Advanced Studded Targe", "refName": "Advanced Studded Targe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [67, 67], "ev": [61, 61]}, "w": 2, "h": 3} +{"name": "Advanced Studded Vest", "refName": "Advanced Studded Vest", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [290, 290]}, "w": 2, "h": 3} +{"name": "Advanced Sturdy Crossbow", "refName": "Advanced Sturdy Crossbow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Crossbow"}, "w": 2, "h": 4} +{"name": "Advanced Swathed Cap", "refName": "Advanced Swathed Cap", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [190, 190]}, "w": 2, "h": 2} +{"name": "Advanced Tempered Mitts", "refName": "Advanced Tempered Mitts", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [98, 98]}, "w": 2, "h": 2} +{"name": "Advanced Temple Maul", "refName": "Advanced Temple Maul", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Mace"}, "w": 2, "h": 4} +{"name": "Advanced Tense Crossbow", "refName": "Advanced Tense Crossbow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Crossbow"}, "w": 2, "h": 4} +{"name": "Advanced Threaded Shoes", "refName": "Advanced Threaded Shoes", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ev": [73, 73], "es": [29, 29]}, "w": 2, "h": 2} +{"name": "Advanced Tonal Focus", "refName": "Advanced Tonal Focus", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Focus"}, "armour": {"es": [43, 43]}, "w": 2, "h": 3} +{"name": "Advanced Tribal Mask", "refName": "Advanced Tribal Mask", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [111, 111], "es": [43, 43]}, "w": 2, "h": 2} +{"name": "Advanced Trimmed Greaves", "refName": "Advanced Trimmed Greaves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [157, 157]}, "w": 2, "h": 2} +{"name": "Advanced Twig Circlet", "refName": "Advanced Twig Circlet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"es": [63, 63]}, "w": 2, "h": 2} +{"name": "Advanced Vaal Cuirass", "refName": "Advanced Vaal Cuirass", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [355, 355]}, "w": 2, "h": 3} +{"name": "Advanced Vagabond Armour", "refName": "Advanced Vagabond Armour", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [165, 165], "ev": [149, 149]}, "w": 2, "h": 3} +{"name": "Advanced Varnished Crossbow", "refName": "Advanced Varnished Crossbow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Crossbow"}, "w": 2, "h": 4} +{"name": "Advanced Veiled Mask", "refName": "Advanced Veiled Mask", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [105, 105], "es": [41, 41]}, "w": 2, "h": 2} +{"name": "Advanced Visored Helm", "refName": "Advanced Visored Helm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [108, 108], "ev": [98, 98]}, "w": 2, "h": 2} +{"name": "Advanced Voodoo Focus", "refName": "Advanced Voodoo Focus", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Focus"}, "armour": {"es": [49, 49]}, "w": 2, "h": 3} +{"name": "Advanced Votive Raiment", "refName": "Advanced Votive Raiment", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"es": [119, 119]}, "w": 2, "h": 3} +{"name": "Advanced Warden Bow", "refName": "Advanced Warden Bow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Bow"}, "w": 2, "h": 4} +{"name": "Advanced Warpick", "refName": "Advanced Warpick", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Mace"}, "w": 2, "h": 3} +{"name": "Advanced Waxed Jacket", "refName": "Advanced Waxed Jacket", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [141, 141], "es": [56, 56]}, "w": 2, "h": 3} +{"name": "Advanced Wayfarer Jacket", "refName": "Advanced Wayfarer Jacket", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [159, 159], "es": [62, 62]}, "w": 2, "h": 3} +{"name": "Advanced Wicker Tiara", "refName": "Advanced Wicker Tiara", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"es": [67, 67]}, "w": 2, "h": 2} +{"name": "Advanced Wooden Buckler", "refName": "Advanced Wooden Buckler", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ev": [99, 99]}, "w": 2, "h": 2} +{"name": "Advanced Woven Focus", "refName": "Advanced Woven Focus", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Focus"}, "armour": {"es": [40, 40]}, "w": 2, "h": 3} +{"name": "Advanced Wrapped Greathelm", "refName": "Advanced Wrapped Greathelm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [196, 196]}, "w": 2, "h": 2} +{"name": "Advanced Wrapped Sandals", "refName": "Advanced Wrapped Sandals", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"es": [48, 48]}, "w": 2, "h": 2} +{"name": "Advanced Zealot Bow", "refName": "Advanced Zealot Bow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Bow"}, "w": 2, "h": 4} +{"name": "Aegis Buckler", "refName": "Aegis Buckler", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ev": [139, 139]}, "w": 2, "h": 2} +{"name": "Aetheric Fossil", "refName": "Aetheric Fossil", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvQWV0aGVyaWNGb3NzaWwiLCJzY2FsZSI6MX1d/4c874e6fa9/AethericFossil.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Aftershock", "refName": "Aftershock", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Aged Cuffs", "refName": "Aged Cuffs", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [22, 22], "es": [9, 9]}, "w": 2, "h": 2} +{"name": "Aggregator Charm", "refName": "Aggregator Charm", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQWdncmVnYXRvckNoYXJtTWFnaWNTdG9uZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/18dabef4ca/AggregatorCharmMagicStone.png", "craftable": {"category": "HeistEquipmentWeapon"}, "w": 2, "h": 2} +{"name": "Al-Hezmin's Crest", "refName": "Al-Hezmin's Crest", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9IdW50ZXJGcmFnbWVudCIsInNjYWxlIjoxfV0/3ad268c533/HunterFragment.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Albino Rhoa Feather", "refName": "Albino Rhoa Feather", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lSaG9hRmVhdGhlciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a6c81de02d/CurrencyRhoaFeather.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Alchemical Chalice", "refName": "Alchemical Chalice", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Alchemical Supplies", "refName": "Alchemical Supplies", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Alchemist's Boon", "refName": "Alchemist's Boon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Alchemy Shard", "refName": "Alchemy Shard", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Alloy Crossbow", "refName": "Alloy Crossbow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Crossbow"}, "w": 2, "h": 4} +{"name": "Altar Robe", "refName": "Altar Robe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"es": [89, 89]}, "w": 2, "h": 3} +{"name": "Alteration Shard", "refName": "Alteration Shard", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Alva's Memory", "refName": "Alva's Memory", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWVtb3J5TGluZS9BbHZhTWVtb3J5SXRlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5adc01981d/AlvaMemoryItem.png", "craftable": {"category": "MemoryLine"}, "w": 1, "h": 1} +{"name": "Amber Amulet", "refName": "Amber Amulet", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/abb6811fa1/Amulet3.png", "craftable": {"category": "Amulet"}, "w": 1, "h": 1} +{"name": "Ambush", "refName": "Ambush", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BbWJ1c2hTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/92a4cb4028/AmbushSkillGem.png", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Amethyst Charm", "refName": "Amethyst Charm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Charm"}, "w": 1, "h": 1} +{"name": "Amethyst Ring", "refName": "Amethyst Ring", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQW1ldGh5c3RSaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/804d781735/AmethystRing.png", "craftable": {"category": "Ring"}, "w": 1, "h": 1} +{"name": "Ammo Conservation", "refName": "Ammo Conservation", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Amphora Relic", "refName": "Amphora Relic", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Relic"}, "w": 1, "h": 3} +{"name": "Amplifying Power Core", "refName": "Amplifying Power Core", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "An Audience with the King", "refName": "An Audience with the King", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUml0dWFsL1Zvb2Rvb0tpbmdFZmZpZ3kiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/0b02c113cc/VoodooKingEffigy.png", "tradeTag": "an-audience-with-the-king", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Ancestor Tower Shield", "refName": "Ancestor Tower Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [121, 121]}, "w": 2, "h": 4} +{"name": "Ancestral Mail", "refName": "Ancestral Mail", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [162, 162], "ev": [146, 146]}, "w": 2, "h": 3} +{"name": "Ancestral Spirits", "refName": "Ancestral Spirits", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Ancestral Steel", "refName": "Ancestral Steel", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 1} +{"name": "Ancestral Urgency", "refName": "Ancestral Urgency", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Ancestral Warrior Totem", "refName": "Ancestral Warrior Totem", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MetaSkillGem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Anchorite Garb", "refName": "Anchorite Garb", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [101, 101], "es": [43, 43]}, "w": 2, "h": 3} +{"name": "Ancient Apex Sentinel", "refName": "Ancient Apex Sentinel", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "SentinelDrone"}, "w": 2, "h": 2} +{"name": "Ancient Crisis Fragment", "refName": "Ancient Crisis Fragment", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVlc3RJdGVtcy9QaW5uYWNsZUtleTEiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/ef329c74d1/PinnacleKey1.png", "tradeTag": "ancient-crisis-fragment", "w": 1, "h": 1} +{"name": "Ancient Greatblade", "refName": "Ancient Greatblade", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Sword"}, "w": 2, "h": 4} +{"name": "Ancient Orb", "refName": "Ancient Orb", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jaWVudE9yYiIsInNjYWxlIjoxfV0/83015d0dc9/AncientOrb.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Ancient Pandemonium Sentinel", "refName": "Ancient Pandemonium Sentinel", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "SentinelDrone"}, "w": 2, "h": 2} +{"name": "Ancient Reliquary Key", "refName": "Ancient Reliquary Key", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYXVsdE1hcCIsInNjYWxlIjoxfV0/e1342052dd/VaultMap.png", "craftable": {"category": "VaultKey"}, "w": 1, "h": 1} +{"name": "Ancient Seal", "refName": "Ancient Seal", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 4} +{"name": "Ancient Shard", "refName": "Ancient Shard", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5jaWVudFNoYXJkIiwic2NhbGUiOjF9XQ/3695589639/AncientShard.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Ancient Stalker Sentinel", "refName": "Ancient Stalker Sentinel", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "SentinelDrone"}, "w": 2, "h": 2} +{"name": "Anima Quarterstaff", "refName": "Anima Quarterstaff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Warstaff"}, "w": 2, "h": 4} +{"name": "Annulment Shard", "refName": "Annulment Shard", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5udWxsU2hhcmQiLCJzY2FsZSI6MX1d/1cf9962d97/AnnullShard.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Antidote Charm", "refName": "Antidote Charm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Charm"}, "w": 1, "h": 1} +{"name": "Antler Focus", "refName": "Antler Focus", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Focus"}, "armour": {"es": [17, 17]}, "w": 2, "h": 3} +{"name": "Apprentice Cartographer's Seal", "refName": "Apprentice Cartographer's Seal", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Arbiter's Book of Knowledge I", "refName": "Arbiter's Book of Knowledge I", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Arbiter's Book of Knowledge II", "refName": "Arbiter's Book of Knowledge II", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Arbiter's Book of Knowledge III", "refName": "Arbiter's Book of Knowledge III", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Arbiter's Book of Knowledge IV", "refName": "Arbiter's Book of Knowledge IV", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Arc", "refName": "Arc", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BcmMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3778fcf505/Arc.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Arcane Dirk", "refName": "Arcane Dirk", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Dagger"}, "w": 1, "h": 3} +{"name": "Arcane Robe", "refName": "Arcane Robe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"es": [153, 153]}, "w": 2, "h": 3} +{"name": "Arcane Surge", "refName": "Arcane Surge", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Arcane Tempo", "refName": "Arcane Tempo", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Arcanist's Etcher", "refName": "Arcanist's Etcher", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lXZWFwb25NYWdpY1F1YWxpdHkiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/516e8f1131/CurrencyWeaponMagicQuality.png", "tradeTag": "etcher", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Arced Claw", "refName": "Arced Claw", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Claw"}, "w": 2, "h": 2} +{"name": "Arced Longsword", "refName": "Arced Longsword", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Sword"}, "w": 2, "h": 4} +{"name": "Arched Greataxe", "refName": "Arched Greataxe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Axe"}, "w": 2, "h": 4} +{"name": "Archive Reliquary Key", "refName": "Archive Reliquary Key", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TZWFyaW5nRXhhcmNoRm9pbCIsInNjYWxlIjoxfV0/76bce43f6c/SearingExarchFoil.png", "craftable": {"category": "VaultKey"}, "w": 1, "h": 1} +{"name": "Archmage", "refName": "Archmage", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Archnemesis Mod", "refName": "Archnemesis Mod", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 1, "h": 1} +{"name": "Archon Kite Shield Piece", "refName": "Archon Kite Shield Piece", "namespace": "ITEM", "icon": "", "craftable": {"category": "UniqueFragment"}, "w": 1, "h": 2} +{"name": "Archon Kite Shield Piece", "refName": "Archon Kite Shield Piece", "namespace": "ITEM", "icon": "", "craftable": {"category": "UniqueFragment"}, "w": 1, "h": 2} +{"name": "Archon Kite Shield Piece", "refName": "Archon Kite Shield Piece", "namespace": "ITEM", "icon": "", "craftable": {"category": "UniqueFragment"}, "w": 1, "h": 1} +{"name": "Archon Kite Shield Piece", "refName": "Archon Kite Shield Piece", "namespace": "ITEM", "icon": "", "craftable": {"category": "UniqueFragment"}, "w": 1, "h": 1} +{"name": "Arctic Armour", "refName": "Arctic Armour", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTaGllbGQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/22044364a7/IceShield.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Armour Breaker", "refName": "Armour Breaker", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Armour Explosion", "refName": "Armour Explosion", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Armour Piercing Rounds", "refName": "Armour Piercing Rounds", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Armour Recombinator", "refName": "Armour Recombinator", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Armoured Cap", "refName": "Armoured Cap", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [222, 222]}, "w": 2, "h": 2} +{"name": "Armoured Claw", "refName": "Armoured Claw", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Claw"}, "w": 2, "h": 2} +{"name": "Armoured Vest", "refName": "Armoured Vest", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [406, 406]}, "w": 2, "h": 3} +{"name": "Armourer's Scrap", "refName": "Armourer's Scrap", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lBcm1vdXJRdWFsaXR5Iiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/d5868f596d/CurrencyArmourQuality.png", "tradeTag": "scrap", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Aromatic Sceptre", "refName": "Aromatic Sceptre", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Sceptre"}, "w": 2, "h": 3} +{"name": "Array Buckler", "refName": "Array Buckler", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ev": [119, 119]}, "w": 2, "h": 2} +{"name": "Artificer's Orb", "refName": "Artificer's Orb", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lBZGRFcXVpcG1lbnRTb2NrZXQiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/5131fd4774/CurrencyAddEquipmentSocket.png", "tradeTag": "artificers", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Artificer's Shard", "refName": "Artificer's Shard", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lBZGRFcXVpcG1lbnRTb2NrZXRTaGFyZCIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/cdcdd8bf3f/CurrencyAddEquipmentSocketShard.png", "tradeTag": "artificers-shard", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Artillery Ballista", "refName": "Artillery Ballista", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Nb3J0YXJUb3RlbUJvd1NraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5636ae404e/MortarTotemBowSkillGem.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Artillery Bow", "refName": "Artillery Bow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Bow"}, "w": 2, "h": 4} +{"name": "Ascetic Garb", "refName": "Ascetic Garb", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [149, 149], "es": [58, 58]}, "w": 2, "h": 3} +{"name": "Ashen Staff", "refName": "Ashen Staff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Staff"}, "w": 1, "h": 4} +{"name": "Asinia's Memorial Key Piece", "refName": "Asinia's Memorial Key Piece", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 1} +{"name": "Assassin Garb", "refName": "Assassin Garb", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [223, 223], "es": [84, 84]}, "w": 2, "h": 3} +{"name": "Astral Projection", "refName": "Astral Projection", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Atlas Book of Skill", "refName": "Atlas Book of Skill", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Atlas Book of Skill", "refName": "Atlas Book of Skill", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Atlas Book of Skill", "refName": "Atlas Book of Skill", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Atlas Book of Skill", "refName": "Atlas Book of Skill", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Atlas Book of Skill", "refName": "Atlas Book of Skill", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Atlas Book of Skill", "refName": "Atlas Book of Skill", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Attrition", "refName": "Attrition", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Attuned Focus", "refName": "Attuned Focus", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Focus"}, "armour": {"es": [47, 47]}, "w": 2, "h": 3} +{"name": "Attuned Wand", "refName": "Attuned Wand", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Wand"}, "w": 1, "h": 3} +{"name": "Augmenting Power Core", "refName": "Augmenting Power Core", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Aureate Targe", "refName": "Aureate Targe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [74, 74], "ev": [68, 68]}, "w": 2, "h": 3} +{"name": "Auto Reload", "refName": "Auto Reload", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Awakened Sextant", "refName": "Awakened Sextant", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Awakener's Orb", "refName": "Awakener's Orb", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVHJhbnNmZXJPcmIiLCJzY2FsZSI6MX1d/f3b1c1566f/TransferOrb.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Axe Slash", "refName": "Axe Slash", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Axe Slash", "refName": "Axe Slash", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Axe Slash", "refName": "Axe Slash", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Azure Amulet", "refName": "Azure Amulet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Amulet"}, "w": 1, "h": 1} +{"name": "Azurite Flashpowder", "refName": "Azurite Flashpowder", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQXp1cml0ZUZsYXNocG93ZGVyIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/b8addc416a/AzuriteFlashpowder.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Baffling Blueprints", "refName": "Baffling Blueprints", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Balbala's Barya", "refName": "Balbala's Barya", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Ball Lightning", "refName": "Ball Lightning", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CYWxsTGlnaHRuaW5nIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6c73d5c555/BallLightning.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Bandit Hatchet", "refName": "Bandit Hatchet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Axe"}, "w": 2, "h": 3} +{"name": "Baran's Crest", "refName": "Baran's Crest", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9DcnVzYWRlckZyYWdtZW50Iiwic2NhbGUiOjF9XQ/3e2fecf3bc/CrusaderFragment.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Barbed Spear", "refName": "Barbed Spear", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Spear"}, "w": 1, "h": 4} +{"name": "Barrage", "refName": "Barrage", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CYXJyYWdlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/0669bef74e/Barrage.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Barricade Tower Shield", "refName": "Barricade Tower Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [50, 50]}, "w": 2, "h": 4} +{"name": "Barrier Invocation", "refName": "Barrier Invocation", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MetaSkillGem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Barrier Quarterstaff", "refName": "Barrier Quarterstaff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Warstaff"}, "w": 2, "h": 4} +{"name": "Basic Disguise Kit", "refName": "Basic Disguise Kit", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmFzaWNEaXNndWlzZUtpdCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/7be5d4947a/BasicDisguiseKit.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Battle Axe", "refName": "Battle Axe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Axe"}, "w": 2, "h": 3} +{"name": "Beaded Circlet", "refName": "Beaded Circlet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"es": [34, 34]}, "w": 2, "h": 2} +{"name": "Bearded Axe", "refName": "Bearded Axe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Axe"}, "w": 2, "h": 3} +{"name": "Behead", "refName": "Behead", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Berserk", "refName": "Berserk", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CZXNlcmtHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/fb31554c78/BeserkGem.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Bestiary Orb", "refName": "Bestiary Orb", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmVzdGlhcnlPcmJFbXB0eSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/023527ca4e/BestiaryOrbEmpty.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Bind Spectre", "refName": "Bind Spectre", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Binding Shard", "refName": "Binding Shard", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmluZGluZ1NoYXJkIiwic2NhbGUiOjF9XQ/569d09ac86/BindingShard.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Biting Frost", "refName": "Biting Frost", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Black Scythe Artifact", "refName": "Black Scythe Artifact", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXhwZWRpdGlvbi9SdW5lNiIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/2260f34070/Rune6.png", "tradeTag": "black-scythe-artifact", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Blackfire Crossbow", "refName": "Blackfire Crossbow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Crossbow"}, "w": 2, "h": 4} +{"name": "Blackguard Personnel Files", "refName": "Blackguard Personnel Files", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Blacksmith's Whetstone", "refName": "Blacksmith's Whetstone", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lXZWFwb25RdWFsaXR5Iiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/18715ea7be/CurrencyWeaponQuality.png", "tradeTag": "whetstone", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Blacksteel Tower Shield", "refName": "Blacksteel Tower Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [152, 152]}, "w": 2, "h": 4} +{"name": "Bladed Shoes", "refName": "Bladed Shoes", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ev": [91, 91], "es": [35, 35]}, "w": 2, "h": 2} +{"name": "Bladed Trap", "refName": "Bladed Trap", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "TrapTool"}, "w": 2, "h": 2} +{"name": "Blasphemy", "refName": "Blasphemy", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MetaSkillGem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Blazing Lance", "refName": "Blazing Lance", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Blazon Crest Shield", "refName": "Blazon Crest Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [10, 10], "es": [6, 6]}, "w": 2, "h": 3} +{"name": "Bleeding Concoction", "refName": "Bleeding Concoction", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Blessed Claymore", "refName": "Blessed Claymore", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Sword"}, "w": 2, "h": 4} +{"name": "Blessed Orb", "refName": "Blessed Orb", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lJbXBsaWNpdE1vZCIsInNjYWxlIjoxfV0/48e700cc20/CurrencyImplicitMod.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Blessing of Chayula", "refName": "Blessing of Chayula", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFVwZ3JhZGVyQ2hhb3MiLCJzY2FsZSI6MX1d/45e8da717e/BreachUpgraderChaos.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Blessing of Esh", "refName": "Blessing of Esh", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFVwZ3JhZGVyTGlnaHRuaW5nIiwic2NhbGUiOjF9XQ/3d1db83ad2/BreachUpgraderLightning.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Blessing of Tul", "refName": "Blessing of Tul", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFVwZ3JhZGVyQ29sZCIsInNjYWxlIjoxfV0/3573fedbf3/BreachUpgraderCold.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Blessing of Uul-Netol", "refName": "Blessing of Uul-Netol", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFVwZ3JhZGVyUGh5c2ljYWwiLCJzY2FsZSI6MX1d/f230a19a13/BreachUpgraderPhysical.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Blessing of Xoph", "refName": "Blessing of Xoph", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFVwZ3JhZGVyRmlyZSIsInNjYWxlIjoxfV0/16a58db13d/BreachUpgraderFire.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Blighted Incubator", "refName": "Blighted Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQmxpZ2h0Iiwic2NhbGUiOjF9XQ/0f1872598d/IncubationBlight.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Blighted Incubator", "refName": "Blighted Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQmxpZ2h0Iiwic2NhbGUiOjF9XQ/0f1872598d/IncubationBlight.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Blighted Scouting Report", "refName": "Blighted Scouting Report", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Blind", "refName": "Blind", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Blink", "refName": "Blink", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Blink", "refName": "Blink", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Blood Crucible", "refName": "Blood Crucible", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Blood of Innocence", "refName": "Blood of Innocence", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 4} +{"name": "Blood-filled Vessel", "refName": "Blood-filled Vessel", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUml0dWFsL0Jsb29kU29ha2VkRWZmaWd5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1adc81c853/BloodSoakedEffigy.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Bloodletting Dagger", "refName": "Bloodletting Dagger", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Dagger"}, "w": 1, "h": 3} +{"name": "Bloodlust", "refName": "Bloodlust", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Bloodstained Fossil", "refName": "Bloodstained Fossil", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvQmxvb2RzdGFpbmVkRm9zc2lsIiwic2NhbGUiOjF9XQ/91236983e9/BloodstainedFossil.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Bloodstone Amulet", "refName": "Bloodstone Amulet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Amulet"}, "w": 1, "h": 1} +{"name": "Bludgeon", "refName": "Bludgeon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Blue Mushroom", "refName": "Blue Mushroom", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 3} +{"name": "Blueprint: Bunker", "refName": "Blueprint: Bunker", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/03e0a85e57/BlueprintNotApproved.png", "craftable": {"category": "HeistBlueprint"}, "w": 1, "h": 1} +{"name": "Blueprint: Laboratory", "refName": "Blueprint: Laboratory", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/fd4cd3685e/BlueprintNotApproved3.png", "craftable": {"category": "HeistBlueprint"}, "w": 1, "h": 1} +{"name": "Blueprint: Mansion", "refName": "Blueprint: Mansion", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQ5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/c6b8f5dbc2/BlueprintNotApproved9.png", "craftable": {"category": "HeistBlueprint"}, "w": 1, "h": 1} +{"name": "Blueprint: Prohibited Library", "refName": "Blueprint: Prohibited Library", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQ1IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/78c1f7c667/BlueprintNotApproved5.png", "craftable": {"category": "HeistBlueprint"}, "w": 1, "h": 1} +{"name": "Blueprint: Records Office", "refName": "Blueprint: Records Office", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQ4IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/cc90ce9113/BlueprintNotApproved8.png", "craftable": {"category": "HeistBlueprint"}, "w": 1, "h": 1} +{"name": "Blueprint: Repository", "refName": "Blueprint: Repository", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQ0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2705c5829f/BlueprintNotApproved4.png", "craftable": {"category": "HeistBlueprint"}, "w": 1, "h": 1} +{"name": "Blueprint: Smuggler's Den", "refName": "Blueprint: Smuggler's Den", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/cbd577605e/BlueprintNotApproved2.png", "craftable": {"category": "HeistBlueprint"}, "w": 1, "h": 1} +{"name": "Blueprint: Tunnels", "refName": "Blueprint: Tunnels", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQ2IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f2e3a9ec0f/BlueprintNotApproved6.png", "craftable": {"category": "HeistBlueprint"}, "w": 1, "h": 1} +{"name": "Blueprint: Underbelly", "refName": "Blueprint: Underbelly", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQmx1ZXByaW50Tm90QXBwcm92ZWQ3IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/bafd718e24/BlueprintNotApproved7.png", "craftable": {"category": "HeistBlueprint"}, "w": 1, "h": 1} +{"name": "Blunt Arrow Quiver Piece", "refName": "Blunt Arrow Quiver Piece", "namespace": "ITEM", "icon": "", "craftable": {"category": "UniqueFragment"}, "w": 1, "h": 2} +{"name": "Blunt Arrow Quiver Piece", "refName": "Blunt Arrow Quiver Piece", "namespace": "ITEM", "icon": "", "craftable": {"category": "UniqueFragment"}, "w": 1, "h": 2} +{"name": "Blunt Arrow Quiver Piece", "refName": "Blunt Arrow Quiver Piece", "namespace": "ITEM", "icon": "", "craftable": {"category": "UniqueFragment"}, "w": 2, "h": 1} +{"name": "Blunt Quiver", "refName": "Blunt Quiver", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Quiver"}, "w": 2, "h": 3} +{"name": "Boarding Hatchet", "refName": "Boarding Hatchet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Axe"}, "w": 2, "h": 3} +{"name": "Body Rune", "refName": "Body Rune", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUnVuZXMvTGlmZVJ1bmUiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/a09dcb651b/LifeRune.png", "tradeTag": "body-rune", "craftable": {"category": "SoulCore"}, "w": 1, "h": 1} +{"name": "Bold Sabatons", "refName": "Bold Sabatons", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [100, 100], "ev": [91, 91]}, "w": 2, "h": 2} +{"name": "Bolstered Mitts", "refName": "Bolstered Mitts", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [58, 58]}, "w": 2, "h": 2} +{"name": "Bombard Crossbow", "refName": "Bombard Crossbow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Crossbow"}, "w": 2, "h": 4} +{"name": "Bone Blast", "refName": "Bone Blast", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Bone Cage", "refName": "Bone Cage", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Bone Offering", "refName": "Bone Offering", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Cb25lT2ZmZXJpbmciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9918a40b8a/BoneOffering.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Bone Raiment", "refName": "Bone Raiment", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"es": [52, 52]}, "w": 2, "h": 3} +{"name": "Bone Wand", "refName": "Bone Wand", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Wand"}, "w": 1, "h": 3} +{"name": "Boneshatter", "refName": "Boneshatter", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Cb25lc2hhdHRlclNraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9c37514f07/BoneshatterSkillGem.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Bonestorm", "refName": "Bonestorm", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Book of Knowledge I", "refName": "Book of Knowledge I", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Knowledge II", "refName": "Book of Knowledge II", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Knowledge III", "refName": "Book of Knowledge III", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Knowledge IV", "refName": "Book of Knowledge IV", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Knowledge IX", "refName": "Book of Knowledge IX", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Knowledge V", "refName": "Book of Knowledge V", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Knowledge VI", "refName": "Book of Knowledge VI", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Knowledge VII", "refName": "Book of Knowledge VII", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Knowledge VIII", "refName": "Book of Knowledge VIII", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Knowledge X", "refName": "Book of Knowledge X", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Knowledge XI", "refName": "Book of Knowledge XI", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Knowledge XII", "refName": "Book of Knowledge XII", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Knowledge XIII", "refName": "Book of Knowledge XIII", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Knowledge XIV", "refName": "Book of Knowledge XIV", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Knowledge XV", "refName": "Book of Knowledge XV", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Regression", "refName": "Book of Regression", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Regrets", "refName": "Book of Regrets", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Regrets", "refName": "Book of Regrets", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Skill", "refName": "Book of Skill", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Skill", "refName": "Book of Skill", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Skill", "refName": "Book of Skill", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Skill", "refName": "Book of Skill", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Skill", "refName": "Book of Skill", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Skill", "refName": "Book of Skill", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Skill", "refName": "Book of Skill", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Skill", "refName": "Book of Skill", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Skill", "refName": "Book of Skill", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Skill", "refName": "Book of Skill", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Skill", "refName": "Book of Skill", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Specialisation", "refName": "Book of Specialisation", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Specialisation", "refName": "Book of Specialisation", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Specialisation", "refName": "Book of Specialisation", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Specialisation", "refName": "Book of Specialisation", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Specialisation", "refName": "Book of Specialisation", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Book of Specialisation", "refName": "Book of Specialisation", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Bound Bracers", "refName": "Bound Bracers", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ev": [33, 33]}, "w": 2, "h": 2} +{"name": "Bound Fossil", "refName": "Bound Fossil", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUmVzb25hdGluZ0Zvc3NpbCIsInNjYWxlIjoxfV0/9db0326ecc/ResonatingFossil.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Bow Shot", "refName": "Bow Shot", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Box of Tripyxis", "refName": "Box of Tripyxis", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Braced Sabatons", "refName": "Braced Sabatons", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [33, 33], "ev": [28, 28]}, "w": 2, "h": 2} +{"name": "Braced Tower Shield", "refName": "Braced Tower Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [41, 41]}, "w": 2, "h": 4} +{"name": "Breach Precursor Tablet", "refName": "Breach Precursor Tablet", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUHJlY3Vyc29yVGFibGV0cy9QcmVjdXJzb3JUYWJsZXRCcmVhY2giLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/295c0839d7/PrecursorTabletBreach.png", "tradeTag": "breach-precursor-tablet", "craftable": {"category": "TowerAugment"}, "w": 1, "h": 1} +{"name": "Breach Ring", "refName": "Breach Ring", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvQnJlYWNoUmluZyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/c21b912df7/BreachRing.png", "craftable": {"category": "Ring"}, "w": 1, "h": 1} +{"name": "Breach Splinter", "refName": "Breach Splinter", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaHN0b25lU3BsaW50ZXIiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/4abb17ea8e/BreachstoneSplinter.png", "tradeTag": "breach-splinter", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Breachstone", "refName": "Breachstone", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaHN0b25lIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/d60587d724/Breachstone.png", "tradeTag": "breachstone", "craftable": {"category": "Breachstone"}, "w": 1, "h": 1} +{"name": "Break Endurance", "refName": "Break Endurance", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Break Posture", "refName": "Break Posture", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Brigand Mace", "refName": "Brigand Mace", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Mace"}, "w": 2, "h": 3} +{"name": "Brimmed Helm", "refName": "Brimmed Helm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [23, 23], "ev": [18, 18]}, "w": 2, "h": 2} +{"name": "Brimstone Apex Sentinel", "refName": "Brimstone Apex Sentinel", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "SentinelDrone"}, "w": 2, "h": 2} +{"name": "Brimstone Pandemonium Sentinel", "refName": "Brimstone Pandemonium Sentinel", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "SentinelDrone"}, "w": 2, "h": 2} +{"name": "Brimstone Stalker Sentinel", "refName": "Brimstone Stalker Sentinel", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "SentinelDrone"}, "w": 2, "h": 2} +{"name": "Broad Greatsword", "refName": "Broad Greatsword", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Sword"}, "w": 2, "h": 4} +{"name": "Broad Spear", "refName": "Broad Spear", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Spear"}, "w": 1, "h": 4} +{"name": "Broadhead Quiver", "refName": "Broadhead Quiver", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Quiver"}, "w": 2, "h": 3} +{"name": "Broadsword", "refName": "Broadsword", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Sword"}, "w": 2, "h": 3} +{"name": "Broken Circle Artifact", "refName": "Broken Circle Artifact", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXhwZWRpdGlvbi9SdW5lMTYiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/46b487f53f/Rune16.png", "tradeTag": "broken-circle-artifact", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Bronze Apex Sentinel", "refName": "Bronze Apex Sentinel", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "SentinelDrone"}, "w": 2, "h": 2} +{"name": "Bronze Greaves", "refName": "Bronze Greaves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [60, 60]}, "w": 2, "h": 2} +{"name": "Bronze Key", "refName": "Bronze Key", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Bronze Key", "refName": "Bronze Key", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Bronze Pandemonium Sentinel", "refName": "Bronze Pandemonium Sentinel", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "SentinelDrone"}, "w": 2, "h": 2} +{"name": "Bronze Stalker Sentinel", "refName": "Bronze Stalker Sentinel", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "SentinelDrone"}, "w": 2, "h": 2} +{"name": "Brutality", "refName": "Brutality", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Buckled Wraps", "refName": "Buckled Wraps", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ev": [44, 44], "es": [17, 17]}, "w": 2, "h": 2} +{"name": "Bullseye", "refName": "Bullseye", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Burning Heart", "refName": "Burning Heart", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Burning Inscription", "refName": "Burning Inscription", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Burnished Gauntlets", "refName": "Burnished Gauntlets", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [55, 55], "ev": [50, 50]}, "w": 2, "h": 2} +{"name": "Burst Band", "refName": "Burst Band", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQnVyc3RCYW5kTWFnaWNTdG9uZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/01e87b79d4/BurstBandMagicStone.png", "craftable": {"category": "HeistEquipmentWeapon"}, "w": 2, "h": 2} +{"name": "Bursting Plague", "refName": "Bursting Plague", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Bust of Emperor Caspiro", "refName": "Bust of Emperor Caspiro", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Callous Mask Piece", "refName": "Callous Mask Piece", "namespace": "ITEM", "icon": "", "craftable": {"category": "UniqueFragment"}, "w": 1, "h": 1} +{"name": "Callous Mask Piece", "refName": "Callous Mask Piece", "namespace": "ITEM", "icon": "", "craftable": {"category": "UniqueFragment"}, "w": 1, "h": 1} +{"name": "Callous Mask Piece", "refName": "Callous Mask Piece", "namespace": "ITEM", "icon": "", "craftable": {"category": "UniqueFragment"}, "w": 2, "h": 1} +{"name": "Candlemass' Essence", "refName": "Candlemass' Essence", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Candlemass' Essence", "refName": "Candlemass' Essence", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Cannibalism", "refName": "Cannibalism", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Capacitor", "refName": "Capacitor", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Captured Soul of Captain Clayborne, The Accursed", "refName": "Captured Soul of Captain Clayborne, The Accursed", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "PantheonSoul"}, "w": 1, "h": 1} +{"name": "Captured Soul of Captain Tanner Lightfoot", "refName": "Captured Soul of Captain Tanner Lightfoot", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "PantheonSoul"}, "w": 1, "h": 1} +{"name": "Captured Soul of Drek, Apex Hunter", "refName": "Captured Soul of Drek, Apex Hunter", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "PantheonSoul"}, "w": 1, "h": 1} +{"name": "Captured Soul of Erebix, Light's Bane", "refName": "Captured Soul of Erebix, Light's Bane", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "PantheonSoul"}, "w": 1, "h": 1} +{"name": "Captured Soul of Gorulis, Will-Thief", "refName": "Captured Soul of Gorulis, Will-Thief", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "PantheonSoul"}, "w": 1, "h": 1} +{"name": "Captured Soul of Hybrid Widow", "refName": "Captured Soul of Hybrid Widow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "PantheonSoul"}, "w": 1, "h": 1} +{"name": "Captured Soul of Jorus, Sky's Edge", "refName": "Captured Soul of Jorus, Sky's Edge", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "PantheonSoul"}, "w": 1, "h": 1} +{"name": "Captured Soul of Khor, Sister of Shadows", "refName": "Captured Soul of Khor, Sister of Shadows", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "PantheonSoul"}, "w": 1, "h": 1} +{"name": "Captured Soul of Maligaro the Mutilator", "refName": "Captured Soul of Maligaro the Mutilator", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "PantheonSoul"}, "w": 1, "h": 1} +{"name": "Captured Soul of Megaera", "refName": "Captured Soul of Megaera", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "PantheonSoul"}, "w": 1, "h": 1} +{"name": "Captured Soul of Pirate Treasure", "refName": "Captured Soul of Pirate Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "PantheonSoul"}, "w": 1, "h": 1} +{"name": "Captured Soul of Puruna, the Challenger", "refName": "Captured Soul of Puruna, the Challenger", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "PantheonSoul"}, "w": 1, "h": 1} +{"name": "Captured Soul of Queen of the Great Tangle", "refName": "Captured Soul of Queen of the Great Tangle", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "PantheonSoul"}, "w": 1, "h": 1} +{"name": "Captured Soul of Sebbert, Crescent's Point", "refName": "Captured Soul of Sebbert, Crescent's Point", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "PantheonSoul"}, "w": 1, "h": 1} +{"name": "Captured Soul of Stalker of the Endless Dunes", "refName": "Captured Soul of Stalker of the Endless Dunes", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "PantheonSoul"}, "w": 1, "h": 1} +{"name": "Captured Soul of Tahsin, Warmaker", "refName": "Captured Soul of Tahsin, Warmaker", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "PantheonSoul"}, "w": 1, "h": 1} +{"name": "Captured Soul of Terror of the Infinite Drifts", "refName": "Captured Soul of Terror of the Infinite Drifts", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "PantheonSoul"}, "w": 1, "h": 1} +{"name": "Captured Soul of The Infernal King", "refName": "Captured Soul of The Infernal King", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "PantheonSoul"}, "w": 1, "h": 1} +{"name": "Captured Soul of Varhesh, Shimmering Aberration", "refName": "Captured Soul of Varhesh, Shimmering Aberration", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "PantheonSoul"}, "w": 1, "h": 1} +{"name": "Captured Soul of a Redblade Warlord", "refName": "Captured Soul of a Redblade Warlord", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "PantheonSoul"}, "w": 1, "h": 1} +{"name": "Carapace Catalyst", "refName": "Carapace Catalyst", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaENhdGFseXN0RGVmZW5jZXMiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/568ca70b04/BreachCatalystDefences.png", "tradeTag": "carapace-catalyst", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Cartographer's Chisel", "refName": "Cartographer's Chisel", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lNYXBRdWFsaXR5Iiwic2NhbGUiOjF9XQ/0246313b99/CurrencyMapQuality.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Cartographer's Incubator", "refName": "Cartographer's Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uTWFwcyIsInNjYWxlIjoxfV0/3d07c20be0/IncubationMaps.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Cartographer's Incubator", "refName": "Cartographer's Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uTWFwcyIsInNjYWxlIjoxfV0/3d07c20be0/IncubationMaps.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Carved Targe", "refName": "Carved Targe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [63, 63], "ev": [57, 57]}, "w": 2, "h": 3} +{"name": "Carving Hatchet", "refName": "Carving Hatchet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Axe"}, "w": 2, "h": 3} +{"name": "Cast on Block", "refName": "Cast on Block", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MetaSkillGem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Cast on Critical", "refName": "Cast on Critical", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MetaSkillGem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Cast on Death", "refName": "Cast on Death", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MetaSkillGem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Cast on Dodge", "refName": "Cast on Dodge", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MetaSkillGem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Cast on Freeze", "refName": "Cast on Freeze", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MetaSkillGem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Cast on Ignite", "refName": "Cast on Ignite", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MetaSkillGem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Cast on Melee Kill", "refName": "Cast on Melee Kill", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MetaSkillGem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Cast on Melee Stun", "refName": "Cast on Melee Stun", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MetaSkillGem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Cast on Minion Death", "refName": "Cast on Minion Death", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MetaSkillGem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Cast on Shock", "refName": "Cast on Shock", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MetaSkillGem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Cast when Damage Taken", "refName": "Cast when Damage Taken", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MetaSkillGem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Cast when Stunned", "refName": "Cast when Stunned", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MetaSkillGem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Cast while Channelling", "refName": "Cast while Channelling", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MetaSkillGem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Celestial Armoursmith's Incubator", "refName": "Celestial Armoursmith's Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQXJtb3VyIiwic2NhbGUiOjF9XQ/8cd6cd0531/IncubationArmour.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Celestial Armoursmith's Incubator", "refName": "Celestial Armoursmith's Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQXJtb3VyIiwic2NhbGUiOjF9XQ/8cd6cd0531/IncubationArmour.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Celestial Blacksmith's Incubator", "refName": "Celestial Blacksmith's Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uV2VhcG9ucyIsInNjYWxlIjoxfV0/4c2bb7d249/IncubationWeapons.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Celestial Blacksmith's Incubator", "refName": "Celestial Blacksmith's Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uV2VhcG9ucyIsInNjYWxlIjoxfV0/4c2bb7d249/IncubationWeapons.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Celestial Jeweller's Incubator", "refName": "Celestial Jeweller's Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uVHJpbmtldHMiLCJzY2FsZSI6MX1d/74b5811007/IncubationTrinkets.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Celestial Jeweller's Incubator", "refName": "Celestial Jeweller's Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uVHJpbmtldHMiLCJzY2FsZSI6MX1d/74b5811007/IncubationTrinkets.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Celestial Stone", "refName": "Celestial Stone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Census Records", "refName": "Census Records", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Ceremonial Goblet", "refName": "Ceremonial Goblet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Ceremonial Halberd", "refName": "Ceremonial Halberd", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Axe"}, "w": 2, "h": 4} +{"name": "Ceremonial Voidstone", "refName": "Ceremonial Voidstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Chain", "refName": "Chain", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Chain Flail", "refName": "Chain Flail", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Flail"}, "w": 2, "h": 3} +{"name": "Chain Mail", "refName": "Chain Mail", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [25, 25], "ev": [16, 16]}, "w": 2, "h": 3} +{"name": "Chain Tiara", "refName": "Chain Tiara", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"es": [44, 44]}, "w": 2, "h": 2} +{"name": "Champion Cuirass", "refName": "Champion Cuirass", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [335, 335]}, "w": 2, "h": 3} +{"name": "Chance Shard", "refName": "Chance Shard", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Chance to Freeze", "refName": "Chance to Freeze", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Chaos Bolt", "refName": "Chaos Bolt", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Chaos Infusion", "refName": "Chaos Infusion", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Chaos Mastery", "refName": "Chaos Mastery", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Chaos Orb", "refName": "Chaos Orb", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lSZXJvbGxSYXJlIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/c0ca392a78/CurrencyRerollRare.png", "tradeTag": "chaos", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Chaos Shard", "refName": "Chaos Shard", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2hhb3NTaGFyZCIsInNjYWxlIjoxfV0/db7041e193/ChaosShard.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Chaotic Freeze", "refName": "Chaotic Freeze", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Charge Infusion", "refName": "Charge Infusion", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Charged Compass", "refName": "Charged Compass", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Charged Staff", "refName": "Charged Staff", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Charred Shortsword", "refName": "Charred Shortsword", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Sword"}, "w": 2, "h": 3} +{"name": "Chayula's Breachstone", "refName": "Chayula's Breachstone", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaEZyYWdtZW50c0NoYW9zIiwic2NhbGUiOjF9XQ/4c99b7dd49/BreachFragmentsChaos.png", "craftable": {"category": "Breachstone"}, "w": 1, "h": 1} +{"name": "Chayula's Catalyst", "refName": "Chayula's Catalyst", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaENhdGFseXN0Q2hhb3MiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/c80d8d7b1b/BreachCatalystChaos.png", "tradeTag": "chayulas-catalyst", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Chayula's Charged Breachstone", "refName": "Chayula's Charged Breachstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Breachstone"}, "w": 1, "h": 1} +{"name": "Chayula's Enriched Breachstone", "refName": "Chayula's Enriched Breachstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Breachstone"}, "w": 1, "h": 1} +{"name": "Chayula's Flawless Breachstone", "refName": "Chayula's Flawless Breachstone", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0NoYXl1bGFzRmxhd2xlc3NCcmVhY2hzdG9uZSIsInNjYWxlIjoxfV0/daa631766b/ChayulasFlawlessBreachstone.png", "craftable": {"category": "Breachstone"}, "w": 1, "h": 1} +{"name": "Chayula's Pure Breachstone", "refName": "Chayula's Pure Breachstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Breachstone"}, "w": 1, "h": 1} +{"name": "Chieftain Cuirass", "refName": "Chieftain Cuirass", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [294, 294]}, "w": 2, "h": 3} +{"name": "Chimeral Inscribed Ultimatum", "refName": "Chimeral Inscribed Ultimatum", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Chiming Staff", "refName": "Chiming Staff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Staff"}, "w": 1, "h": 4} +{"name": "Chiseled Targe", "refName": "Chiseled Targe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [47, 47], "ev": [41, 41]}, "w": 2, "h": 3} +{"name": "Chromatic Orb", "refName": "Chromatic Orb", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lSZXJvbGxTb2NrZXRDb2xvdXJzIiwic2NhbGUiOjF9XQ/19c8ddae20/CurrencyRerollSocketColours.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Chromium Glennach Cairns Watchstone", "refName": "Chromium Glennach Cairns Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Chromium Haewark Hamlet Watchstone", "refName": "Chromium Haewark Hamlet Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Chromium Lex Ejoris Watchstone", "refName": "Chromium Lex Ejoris Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Chromium Lex Proxima Watchstone", "refName": "Chromium Lex Proxima Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Chromium Lira Arthain Watchstone", "refName": "Chromium Lira Arthain Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Chromium New Vastir Watchstone", "refName": "Chromium New Vastir Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Chromium Tirn's End Watchstone", "refName": "Chromium Tirn's End Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Chromium Valdo's Rest Watchstone", "refName": "Chromium Valdo's Rest Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Chronicle of Atzoatl", "refName": "Chronicle of Atzoatl", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UZW1wbGVNYXAiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9be10cc6b3/TempleMap.png", "craftable": {"category": "MiscMapItem"}, "w": 1, "h": 1} +{"name": "Cinquedea", "refName": "Cinquedea", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Dagger"}, "w": 1, "h": 3} +{"name": "Clamping Trap", "refName": "Clamping Trap", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "TrapTool"}, "w": 2, "h": 2} +{"name": "Clandestine Jacket", "refName": "Clandestine Jacket", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [151, 151], "es": [59, 59]}, "w": 2, "h": 3} +{"name": "Clarity", "refName": "Clarity", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DbGFyaXR5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/30046e480b/Clarity.png", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Clasped Sceptre", "refName": "Clasped Sceptre", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Sceptre"}, "w": 2, "h": 3} +{"name": "Claw Stab", "refName": "Claw Stab", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Claw Stab", "refName": "Claw Stab", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Clay Trap", "refName": "Clay Trap", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "TrapTool"}, "w": 2, "h": 2} +{"name": "Cleric Staff", "refName": "Cleric Staff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Staff"}, "w": 1, "h": 4} +{"name": "Cleric Vestments", "refName": "Cleric Vestments", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [148, 148], "es": [53, 53]}, "w": 2, "h": 3} +{"name": "Cloaked Mail", "refName": "Cloaked Mail", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [95, 95], "ev": [83, 83]}, "w": 2, "h": 3} +{"name": "Close Combat", "refName": "Close Combat", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Closed Helm", "refName": "Closed Helm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [97, 97], "ev": [87, 87]}, "w": 2, "h": 2} +{"name": "Cloth Belt Piece", "refName": "Cloth Belt Piece", "namespace": "ITEM", "icon": "", "craftable": {"category": "UniqueFragment"}, "w": 1, "h": 1} +{"name": "Cloth Belt Piece", "refName": "Cloth Belt Piece", "namespace": "ITEM", "icon": "", "craftable": {"category": "UniqueFragment"}, "w": 1, "h": 1} +{"name": "Cluster Grenade", "refName": "Cluster Grenade", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Cobalt Apex Sentinel", "refName": "Cobalt Apex Sentinel", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "SentinelDrone"}, "w": 2, "h": 2} +{"name": "Cobalt Pandemonium Sentinel", "refName": "Cobalt Pandemonium Sentinel", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "SentinelDrone"}, "w": 2, "h": 2} +{"name": "Cobalt Stalker Sentinel", "refName": "Cobalt Stalker Sentinel", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "SentinelDrone"}, "w": 2, "h": 2} +{"name": "Cobalt Watchstone", "refName": "Cobalt Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Cobalt Watchstone", "refName": "Cobalt Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Cobalt Watchstone", "refName": "Cobalt Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Cobalt Watchstone", "refName": "Cobalt Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Cobalt Watchstone", "refName": "Cobalt Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Cobalt Watchstone", "refName": "Cobalt Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Cobalt Watchstone", "refName": "Cobalt Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Cobalt Watchstone", "refName": "Cobalt Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Coffer Relic", "refName": "Coffer Relic", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljQmFzZTJ4MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/4d7c38a2ac/RelicBase2x2.png", "craftable": {"category": "Relic"}, "w": 2, "h": 2} +{"name": "Coiled Trap", "refName": "Coiled Trap", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "TrapTool"}, "w": 1, "h": 3} +{"name": "Cold Exposure", "refName": "Cold Exposure", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Cold Infusion", "refName": "Cold Infusion", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Cold Mastery", "refName": "Cold Mastery", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Cold Penetration", "refName": "Cold Penetration", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Cold Snap", "refName": "Cold Snap", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db2xkU25hcCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/889f6cb1fd/ColdSnap.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Colossal Life Flask", "refName": "Colossal Life Flask", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrNyIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/a3a05678ea/lifeflask7.png", "craftable": {"category": "Flask"}, "w": 1, "h": 2} +{"name": "Colossal Mana Flask", "refName": "Colossal Mana Flask", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrNyIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/da16d2d8c3/manaflask7.png", "craftable": {"category": "Flask"}, "w": 1, "h": 2} +{"name": "Colosseum Plate", "refName": "Colosseum Plate", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/429eee131d/BodyStr2C.png", "craftable": {"category": "Body Armour"}, "armour": {"ar": [304, 304]}, "w": 2, "h": 3} +{"name": "Combat Frenzy", "refName": "Combat Frenzy", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Combo Finisher", "refName": "Combo Finisher", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Comet", "refName": "Comet", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Coming Soon", "refName": "Coming Soon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Commander Greathelm", "refName": "Commander Greathelm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [176, 176]}, "w": 2, "h": 2} +{"name": "Commander Sword", "refName": "Commander Sword", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Sword"}, "w": 2, "h": 3} +{"name": "Comorbidity", "refName": "Comorbidity", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Composite Bow", "refName": "Composite Bow", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzQiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/d7cd8910cc/Bow4.png", "craftable": {"category": "Bow"}, "w": 2, "h": 4} +{"name": "Comprehensive Scouting Report", "refName": "Comprehensive Scouting Report", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Concentrated Effect", "refName": "Concentrated Effect", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Conduction", "refName": "Conduction", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Conductivity", "refName": "Conductivity", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db25kdWN0aXZpdHkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1d64a0439e/Conductivity.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Conduit Line", "refName": "Conduit Line", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29uZHVpdExpbmVNYWdpY1N0b25lIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/a7c30a541b/ConduitLineMagicStone.png", "craftable": {"category": "HeistEquipmentWeapon"}, "w": 2, "h": 2} +{"name": "Confront Nashta", "refName": "Confront Nashta", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Conqueror Plate", "refName": "Conqueror Plate", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [445, 445]}, "w": 2, "h": 3} +{"name": "Consecrate", "refName": "Consecrate", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Considered Casting", "refName": "Considered Casting", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Construct Crossbow", "refName": "Construct Crossbow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Crossbow"}, "w": 2, "h": 4} +{"name": "Construct Hammer", "refName": "Construct Hammer", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Mace"}, "w": 2, "h": 3} +{"name": "Contagion", "refName": "Contagion", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db250YWdpb25HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a93197f89a/ContagionGem.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Contract: A Matter of Honour", "refName": "Contract: A Matter of Honour", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Contract: A Mundane Sample", "refName": "Contract: A Mundane Sample", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Contract: Bunker", "refName": "Contract: Bunker", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8262f2ca0e/ContractItem.png", "craftable": {"category": "HeistContract"}, "w": 1, "h": 1} +{"name": "Contract: Credit Where Credit's Due", "refName": "Contract: Credit Where Credit's Due", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Contract: Disengagement", "refName": "Contract: Disengagement", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Contract: Enoch's Remains", "refName": "Contract: Enoch's Remains", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Contract: Enoch's Whereabouts", "refName": "Contract: Enoch's Whereabouts", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Contract: Finding Opal", "refName": "Contract: Finding Opal", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Contract: Findings for Fidium", "refName": "Contract: Findings for Fidium", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Contract: Flying False Colours", "refName": "Contract: Flying False Colours", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Contract: Follow the Paper Trail", "refName": "Contract: Follow the Paper Trail", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Contract: Grocery List", "refName": "Contract: Grocery List", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Contract: Hyrri's Gift", "refName": "Contract: Hyrri's Gift", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Contract: Isla's Designs", "refName": "Contract: Isla's Designs", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Contract: Isla's Prototypes", "refName": "Contract: Isla's Prototypes", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Contract: Karst's Revenge", "refName": "Contract: Karst's Revenge", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Contract: Laboratory", "refName": "Contract: Laboratory", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtMyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8838f281b6/ContractItem3.png", "craftable": {"category": "HeistContract"}, "w": 1, "h": 1} +{"name": "Contract: Mansion", "refName": "Contract: Mansion", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtOSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/24220667d4/ContractItem9.png", "craftable": {"category": "HeistContract"}, "w": 1, "h": 1} +{"name": "Contract: Opal's Jewels", "refName": "Contract: Opal's Jewels", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Contract: Prohibited Library", "refName": "Contract: Prohibited Library", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtNSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fd1a9eb91f/ContractItem5.png", "craftable": {"category": "HeistContract"}, "w": 1, "h": 1} +{"name": "Contract: Rational Tools", "refName": "Contract: Rational Tools", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Contract: Records Office", "refName": "Contract: Records Office", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtOCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d28f52922a/ContractItem8.png", "craftable": {"category": "HeistContract"}, "w": 1, "h": 1} +{"name": "Contract: Repository", "refName": "Contract: Repository", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtNCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d555dbf890/ContractItem4.png", "craftable": {"category": "HeistContract"}, "w": 1, "h": 1} +{"name": "Contract: Slaver's Revenge", "refName": "Contract: Slaver's Revenge", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Contract: Smuggler's Den", "refName": "Contract: Smuggler's Den", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtMiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f755c71433/ContractItem2.png", "craftable": {"category": "HeistContract"}, "w": 1, "h": 1} +{"name": "Contract: Stolen Lockpicks", "refName": "Contract: Stolen Lockpicks", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Contract: The Admiral's Records", "refName": "Contract: The Admiral's Records", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Contract: The Book of Jamanra", "refName": "Contract: The Book of Jamanra", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Contract: The Finest Costumes", "refName": "Contract: The Finest Costumes", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Contract: The Nameless Play", "refName": "Contract: The Nameless Play", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Contract: The Negotiation", "refName": "Contract: The Negotiation", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Contract: The Rescue", "refName": "Contract: The Rescue", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Contract: The Vinderi Bomb", "refName": "Contract: The Vinderi Bomb", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Contract: The Wedding Dress", "refName": "Contract: The Wedding Dress", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Contract: Trial Run", "refName": "Contract: Trial Run", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Contract: Tunnels", "refName": "Contract: Tunnels", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtNiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fda76bd516/ContractItem6.png", "craftable": {"category": "HeistContract"}, "w": 1, "h": 1} +{"name": "Contract: Underbelly", "refName": "Contract: Underbelly", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ29udHJhY3RJdGVtNyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/aa8fd5bde5/ContractItem7.png", "craftable": {"category": "HeistContract"}, "w": 1, "h": 1} +{"name": "Controlled Destruction", "refName": "Controlled Destruction", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Convention Treasure", "refName": "Convention Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Convention Treasure", "refName": "Convention Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Convention Treasure", "refName": "Convention Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Convention Treasure", "refName": "Convention Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Convention Treasure", "refName": "Convention Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Convention Treasure", "refName": "Convention Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Convention Treasure", "refName": "Convention Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Convention Treasure", "refName": "Convention Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Convention Treasure", "refName": "Convention Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Convention Treasure", "refName": "Convention Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Convention Treasure", "refName": "Convention Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Convention Treasure", "refName": "Convention Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Convention Treasure", "refName": "Convention Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Convention Treasure", "refName": "Convention Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Convention Treasure", "refName": "Convention Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Convention Treasure", "refName": "Convention Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Convention Treasure", "refName": "Convention Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Convention Treasure", "refName": "Convention Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Convention Treasure", "refName": "Convention Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Convention Treasure", "refName": "Convention Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Convention Treasure", "refName": "Convention Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Convention Treasure", "refName": "Convention Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Convention Treasure", "refName": "Convention Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Convention Treasure", "refName": "Convention Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Convention Treasure", "refName": "Convention Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Convention Treasure", "refName": "Convention Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Convention Treasure", "refName": "Convention Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Convention Treasure", "refName": "Convention Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Convention Treasure", "refName": "Convention Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Convention Treasure", "refName": "Convention Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Convention Treasure", "refName": "Convention Treasure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Coral Circlet", "refName": "Coral Circlet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"es": [63, 63]}, "w": 2, "h": 2} +{"name": "Corpse Conservation", "refName": "Corpse Conservation", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Corpse-snake Venom", "refName": "Corpse-snake Venom", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Corroded Fossil", "refName": "Corroded Fossil", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvQ29ycm9kZWRGb3NzaWwiLCJzY2FsZSI6MX1d/7578bf6bab/CorrodedFossil.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Corroded Longsword", "refName": "Corroded Longsword", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Sword"}, "w": 2, "h": 4} +{"name": "Corrosion", "refName": "Corrosion", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Corrupt", "refName": "Corrupt", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Corrupt", "refName": "Corrupt", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Corrupt", "refName": "Corrupt", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Corrupting Cry", "refName": "Corrupting Cry", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Corsair Cap", "refName": "Corsair Cap", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [158, 158]}, "w": 2, "h": 2} +{"name": "Corsair Vest", "refName": "Corsair Vest", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [242, 242]}, "w": 2, "h": 3} +{"name": "Corvus Mantle", "refName": "Corvus Mantle", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [245, 245], "es": [84, 84]}, "w": 2, "h": 3} +{"name": "Cosmic Apex Sentinel", "refName": "Cosmic Apex Sentinel", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "SentinelDrone"}, "w": 2, "h": 2} +{"name": "Cosmic Reliquary Key", "refName": "Cosmic Reliquary Key", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TaGFwZXJGb2lsIiwic2NhbGUiOjF9XQ/5c88f39bc3/ShaperFoil.png", "craftable": {"category": "VaultKey"}, "w": 1, "h": 1} +{"name": "Count Lachlann's Ring", "refName": "Count Lachlann's Ring", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Coursing Current", "refName": "Coursing Current", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Covered Sabatons", "refName": "Covered Sabatons", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [73, 73], "ev": [65, 65]}, "w": 2, "h": 2} +{"name": "Covert Hood", "refName": "Covert Hood", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [193, 193]}, "w": 2, "h": 2} +{"name": "Cowardly Fate", "refName": "Cowardly Fate", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU291bENvcmVzL1RyaWFsbWFzdGVyS2V5MSIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/661ab60074/TrialmasterKey1.png", "tradeTag": "cowardly-fate", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Cowled Helm", "refName": "Cowled Helm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [62, 62], "ev": [54, 54]}, "w": 2, "h": 2} +{"name": "Crackling Quarterstaff", "refName": "Crackling Quarterstaff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Warstaff"}, "w": 2, "h": 4} +{"name": "Craicic Lure", "refName": "Craicic Lure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Crescendo", "refName": "Crescendo", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Crescent Axe", "refName": "Crescent Axe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Axe"}, "w": 2, "h": 3} +{"name": "Crescent Quarterstaff", "refName": "Crescent Quarterstaff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Warstaff"}, "w": 2, "h": 4} +{"name": "Crescent Splinter", "refName": "Crescent Splinter", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXRsYXMvTWF2ZW5LZXlGcmFnbWVudCIsInNjYWxlIjoxfV0/014d46c630/MavenKeyFragment.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Crescent Targe", "refName": "Crescent Targe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [39, 39], "ev": [34, 34]}, "w": 2, "h": 3} +{"name": "Crest of Ezomyr", "refName": "Crest of Ezomyr", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Crest of the Elderslayers", "refName": "Crest of the Elderslayers", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Crested Golden Idol", "refName": "Crested Golden Idol", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Crimson Amulet", "refName": "Crimson Amulet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Amulet"}, "w": 1, "h": 1} +{"name": "Crimson Watchstone", "refName": "Crimson Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Crimson Watchstone", "refName": "Crimson Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Crimson Watchstone", "refName": "Crimson Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Crimson Watchstone", "refName": "Crimson Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Crimson Watchstone", "refName": "Crimson Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Crimson Watchstone", "refName": "Crimson Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Crimson Watchstone", "refName": "Crimson Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Crimson Watchstone", "refName": "Crimson Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Critical Wand", "refName": "Critical Wand", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Wand"}, "w": 1, "h": 3} +{"name": "Crone Knife", "refName": "Crone Knife", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Dagger"}, "w": 1, "h": 3} +{"name": "Crossblade Spear", "refName": "Crossblade Spear", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Spear"}, "w": 1, "h": 4} +{"name": "Crossbow Shot", "refName": "Crossbow Shot", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Crucible Tower Shield", "refName": "Crucible Tower Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [110, 110]}, "w": 2, "h": 4} +{"name": "Crude Bow", "refName": "Crude Bow", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzEiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/50dd0fd6ac/Bow1.png", "craftable": {"category": "Bow"}, "w": 2, "h": 4} +{"name": "Crude Claw", "refName": "Crude Claw", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Claw"}, "w": 2, "h": 2} +{"name": "Crude Sensing Charm", "refName": "Crude Sensing Charm", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ3J1ZGVTZW5zaW5nQ2hhcm0iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/207cf61525/CrudeSensingCharm.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Crude Ward", "refName": "Crude Ward", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQ3J1ZGVXYXJkIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/0308021b23/CrudeWard.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Crumbling Maul", "refName": "Crumbling Maul", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Mace"}, "w": 2, "h": 4} +{"name": "Crusader's Exalted Orb", "refName": "Crusader's Exalted Orb", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5mbHVlbmNlIEV4YWx0cy9DcnVzYWRlck9yYiIsInNjYWxlIjoxfV0/8b48230188/CrusaderOrb.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Cryptic Apex Sentinel", "refName": "Cryptic Apex Sentinel", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "SentinelDrone"}, "w": 2, "h": 2} +{"name": "Cryptic Pandemonium Sentinel", "refName": "Cryptic Pandemonium Sentinel", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "SentinelDrone"}, "w": 2, "h": 2} +{"name": "Cryptic Stalker Sentinel", "refName": "Cryptic Stalker Sentinel", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "SentinelDrone"}, "w": 2, "h": 2} +{"name": "Crystal Focus", "refName": "Crystal Focus", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Focus"}, "armour": {"es": [28, 28]}, "w": 2, "h": 3} +{"name": "Culling Strike", "refName": "Culling Strike", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Culmination", "refName": "Culmination", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Cultist Bow", "refName": "Cultist Bow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Bow"}, "w": 2, "h": 4} +{"name": "Cultist Crown", "refName": "Cultist Crown", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [44, 44], "es": [19, 19]}, "w": 2, "h": 2} +{"name": "Cultist Greathammer", "refName": "Cultist Greathammer", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Mace"}, "w": 2, "h": 4} +{"name": "Cumbrous Crossbow", "refName": "Cumbrous Crossbow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Crossbow"}, "w": 2, "h": 4} +{"name": "Cursed Ground", "refName": "Cursed Ground", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Cutlass", "refName": "Cutlass", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL09uZUhhbmRTd29yZDMiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/0aa55ff7a1/OneHandSword3.png", "craftable": {"category": "One Hand Sword"}, "w": 2, "h": 3} +{"name": "Dagger Stab", "refName": "Dagger Stab", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Dagger Stab", "refName": "Dagger Stab", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Dance - Duelist", "refName": "Dance - Duelist", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Dance - Marauder", "refName": "Dance - Marauder", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Dance - Ranger", "refName": "Dance - Ranger", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Dance - Scion", "refName": "Dance - Scion", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Dance - Shadow", "refName": "Dance - Shadow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Dance - Templar", "refName": "Dance - Templar", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Dance - Witch", "refName": "Dance - Witch", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Danse Macabre", "refName": "Danse Macabre", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Dark Blade", "refName": "Dark Blade", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Sword"}, "w": 2, "h": 3} +{"name": "Dark Effigy", "refName": "Dark Effigy", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Dark Pact", "refName": "Dark Pact", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ta2VsZXRhbENoYWlucyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5976d42537/SkeletalChains.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Dark Staff", "refName": "Dark Staff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Staff"}, "w": 1, "h": 4} +{"name": "Dart Trap", "refName": "Dart Trap", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "TrapTool"}, "w": 1, "h": 3} +{"name": "Dazing Cry", "refName": "Dazing Cry", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Deadly Fate", "refName": "Deadly Fate", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU291bENvcmVzL1RyaWFsbWFzdGVyS2V5MiIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/cccae44832/TrialmasterKey2.png", "tradeTag": "deadly-fate", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Deadly Herald", "refName": "Deadly Herald", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Deadly Poison", "refName": "Deadly Poison", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Death Mask", "refName": "Death Mask", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [122, 122], "es": [46, 46]}, "w": 2, "h": 2} +{"name": "Decayed Voidstone", "refName": "Decayed Voidstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Decaying Hex", "refName": "Decaying Hex", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Decaying Reliquary Key", "refName": "Decaying Reliquary Key", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FbGRlckZvaWwiLCJzY2FsZSI6MX1d/cbb24273c1/ElderFoil.png", "craftable": {"category": "VaultKey"}, "w": 1, "h": 1} +{"name": "Deceleration", "refName": "Deceleration", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Decompose", "refName": "Decompose", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Decompose", "refName": "Decompose", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Decorated Helm", "refName": "Decorated Helm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [110, 110], "ev": [99, 99]}, "w": 2, "h": 2} +{"name": "Dedalian Crossbow", "refName": "Dedalian Crossbow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Crossbow"}, "w": 2, "h": 4} +{"name": "Dedication to the Goddess", "refName": "Dedication to the Goddess", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9MYWJ5cmludGhIYXJ2ZXN0SW5mdXNlZDIiLCJzY2FsZSI6MX1d/31d582aac1/LabyrinthHarvestInfused2.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Deep Cuts", "refName": "Deep Cuts", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Deep Freeze", "refName": "Deep Freeze", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Defiance Banner", "refName": "Defiance Banner", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Bcm1vdXJhbmRFdmFzaW9uQmFubmVyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b1f3dcfaa6/ArmourandEvasionBanner.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Defiant Tower Shield", "refName": "Defiant Tower Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [137, 137]}, "w": 2, "h": 4} +{"name": "Deft Fossil", "refName": "Deft Fossil", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvRW5jaGFudGVkRm9zc2lsIiwic2NhbGUiOjF9XQ/299ee9bcb8/EnchantedFossil.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Deified Crest Shield", "refName": "Deified Crest Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [84, 84], "es": [29, 29]}, "w": 2, "h": 3} +{"name": "Dekhara's Resolve", "refName": "Dekhara's Resolve", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 4} +{"name": "Delirious Scouting Report", "refName": "Delirious Scouting Report", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Delirium Precursor Tablet", "refName": "Delirium Precursor Tablet", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUHJlY3Vyc29yVGFibGV0cy9QcmVjdXJzb3JUYWJsZXREZWxpcml1bSIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/81acb86b9f/PrecursorTabletDelirium.png", "tradeTag": "delirium-precursor-tablet", "craftable": {"category": "TowerAugment"}, "w": 1, "h": 1} +{"name": "Demolisher", "refName": "Demolisher", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Demon Form", "refName": "Demon Form", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Demon Magus", "refName": "Demon Magus", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MetaSkillGem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Dense Fossil", "refName": "Dense Fossil", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvRGVuc2VGb3NzaWwiLCJzY2FsZSI6MX1d/ac39aaf3cd/DenseFossil.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Deranging Book of Knowledge I", "refName": "Deranging Book of Knowledge I", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Deranging Book of Knowledge II", "refName": "Deranging Book of Knowledge II", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Deranging Book of Knowledge III", "refName": "Deranging Book of Knowledge III", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Deranging Book of Knowledge IV", "refName": "Deranging Book of Knowledge IV", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Deregulation Scroll", "refName": "Deregulation Scroll", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9IYXJiaW5nZXJUb2tlbkhlbG0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ee0bd282eb/HarbingerTokenHelm.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Desert Rune", "refName": "Desert Rune", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUnVuZXMvRmlyZVJ1bmUiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/eeabf0e7a0/FireRune.png", "tradeTag": "desert-rune", "craftable": {"category": "SoulCore"}, "w": 1, "h": 1} +{"name": "Despair", "refName": "Despair", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZXNwYWlyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b4dbf071cd/Despair.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Despoiler", "refName": "Despoiler", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Detailed Mitts", "refName": "Detailed Mitts", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [88, 88]}, "w": 2, "h": 2} +{"name": "Detonate Dead", "refName": "Detonate Dead", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EZXRvbmF0ZURlYWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/109199fc84/DetonateDead.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Detonate Minion", "refName": "Detonate Minion", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Detonating Arrow", "refName": "Detonating Arrow", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Devastate", "refName": "Devastate", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Devotional Sceptre", "refName": "Devotional Sceptre", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Sceptre"}, "w": 2, "h": 3} +{"name": "Devouring Sceptre", "refName": "Devouring Sceptre", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Sceptre"}, "w": 2, "h": 3} +{"name": "Devout Garb", "refName": "Devout Garb", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [223, 223], "es": [84, 84]}, "w": 2, "h": 3} +{"name": "Diamond", "refName": "Diamond", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Jewel"}, "w": 1, "h": 1} +{"name": "Discipline", "refName": "Discipline", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EaXNjaXBsaW5lIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/8fb38b53f4/Discipline.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Discombobulate", "refName": "Discombobulate", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Distilled Despair", "refName": "Distilled Despair", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGlzdGlsbGVkRW1vdGlvbnMvRGlzdGlsbGVkRGVzcGFpciIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/c676bf7dae/DistilledDespair.png", "tradeTag": "distilled-despair", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Distilled Disgust", "refName": "Distilled Disgust", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGlzdGlsbGVkRW1vdGlvbnMvRGlzdGlsbGVkRGlzZ3VzdCIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/f462426de0/DistilledDisgust.png", "tradeTag": "distilled-disgust", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Distilled Envy", "refName": "Distilled Envy", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGlzdGlsbGVkRW1vdGlvbnMvRGlzdGlsbGVkRW52eSIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/abf219916e/DistilledEnvy.png", "tradeTag": "distilled-envy", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Distilled Fear", "refName": "Distilled Fear", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGlzdGlsbGVkRW1vdGlvbnMvRGlzdGlsbGVkRmVhciIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/8cffdae445/DistilledFear.png", "tradeTag": "distilled-fear", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Distilled Greed", "refName": "Distilled Greed", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGlzdGlsbGVkRW1vdGlvbnMvRGlzdGlsbGVkR3JlZWQiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/5888a4ae61/DistilledGreed.png", "tradeTag": "distilled-greed", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Distilled Guilt", "refName": "Distilled Guilt", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGlzdGlsbGVkRW1vdGlvbnMvRGlzdGlsbGVkR3VpbHQiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/21cd0fd17b/DistilledGuilt.png", "tradeTag": "distilled-guilt", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Distilled Ire", "refName": "Distilled Ire", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGlzdGlsbGVkRW1vdGlvbnMvRGlzdGlsbGVkSXJlIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/cbd99f0eff/DistilledIre.png", "tradeTag": "distilled-ire", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Distilled Isolation", "refName": "Distilled Isolation", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGlzdGlsbGVkRW1vdGlvbnMvRGlzdGlsbGVkSXNvbGF0aW9uIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/997a6a442e/DistilledIsolation.png", "tradeTag": "distilled-isolation", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Distilled Paranoia", "refName": "Distilled Paranoia", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGlzdGlsbGVkRW1vdGlvbnMvRGlzdGlsbGVkUGFyYW5vaWEiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/279e807e8f/DistilledParanoia.png", "tradeTag": "distilled-paranoia", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Distilled Suffering", "refName": "Distilled Suffering", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGlzdGlsbGVkRW1vdGlvbnMvRGlzdGlsbGVkU3VmZmVyaW5nIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/801a53662a/DistilledSuffering.png", "tradeTag": "distilled-suffering", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Divine Orb", "refName": "Divine Orb", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lNb2RWYWx1ZXMiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/2986e220b3/CurrencyModValues.png", "tradeTag": "divine", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Divine Vessel", "refName": "Divine Vessel", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TaW5GbGFza0VtcHR5Iiwic2NhbGUiOjF9XQ/3a2d49608a/SinFlaskEmpty.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 2} +{"name": "Divine Vessel", "refName": "Divine Vessel", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TaW5GbGFza0VtcHR5Iiwic2NhbGUiOjF9XQ/3a2d49608a/SinFlaskEmpty.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Diviner Cuffs", "refName": "Diviner Cuffs", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [48, 48], "es": [17, 17]}, "w": 2, "h": 2} +{"name": "Diviner's Incubator", "refName": "Diviner's Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRGl2aW5hdGlvbkNhcmRzIiwic2NhbGUiOjF9XQ/e14c3ef7f9/IncubationDivinationCards.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Diviner's Incubator", "refName": "Diviner's Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRGl2aW5hdGlvbkNhcmRzIiwic2NhbGUiOjF9XQ/e14c3ef7f9/IncubationDivinationCards.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Djinn Barya", "refName": "Djinn Barya", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MiscMapItem"}, "w": 1, "h": 1} +{"name": "Double Barrel", "refName": "Double Barrel", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Double Belt", "refName": "Double Belt", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Belt"}, "w": 2, "h": 1} +{"name": "Double Limb Bow", "refName": "Double Limb Bow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Bow"}, "w": 2, "h": 4} +{"name": "Doubled Gauntlets", "refName": "Doubled Gauntlets", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [37, 37], "ev": [33, 33]}, "w": 2, "h": 2} +{"name": "Dousing Charm", "refName": "Dousing Charm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Charm"}, "w": 1, "h": 1} +{"name": "Drain Ailments", "refName": "Drain Ailments", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Draven's Memorial Key Piece", "refName": "Draven's Memorial Key Piece", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 1} +{"name": "Dread Banner", "refName": "Dread Banner", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9EcmVhZEJhbm5lciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/cbb87b80fb/DreadBanner.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Dread Hatchet", "refName": "Dread Hatchet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Axe"}, "w": 2, "h": 3} +{"name": "Dream Furnace", "refName": "Dream Furnace", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Drox's Crest", "refName": "Drox's Crest", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9XYXJsb3JkRnJhZ21lbnQiLCJzY2FsZSI6MX1d/3d735a8303/WarlordFragment.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Dualstring Bow", "refName": "Dualstring Bow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Bow"}, "w": 2, "h": 4} +{"name": "Dueling Greathelm", "refName": "Dueling Greathelm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [200, 200]}, "w": 2, "h": 2} +{"name": "Dueling Wand", "refName": "Dueling Wand", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Wand"}, "w": 1, "h": 3} +{"name": "Dull Hatchet", "refName": "Dull Hatchet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Axe"}, "w": 2, "h": 3} +{"name": "Dyad Crossbow", "refName": "Dyad Crossbow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Crossbow"}, "w": 2, "h": 4} +{"name": "Earthquake", "refName": "Earthquake", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9RdWFrZVNsYW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3a3c0f1c46/QuakeSlam.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Earthshatter", "refName": "Earthshatter", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGlrZVNsYW1HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f366aab2cf/SpikeSlamGem.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Eber's Key", "refName": "Eber's Key", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Eber's Key", "refName": "Eber's Key", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Edged Buckler", "refName": "Edged Buckler", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ev": [87, 87]}, "w": 2, "h": 2} +{"name": "Edged Claw", "refName": "Edged Claw", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Claw"}, "w": 2, "h": 2} +{"name": "Eelskin Sole", "refName": "Eelskin Sole", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRWVsc2tpblNvbGUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/38cd92718b/EelskinSole.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Effigial Tower Shield", "refName": "Effigial Tower Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [60, 60]}, "w": 2, "h": 4} +{"name": "Einhar's Memory", "refName": "Einhar's Memory", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWVtb3J5TGluZS9FaW5oYXJNZW1vcnlJdGVtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5e4c7a8f89/EinharMemoryItem.png", "craftable": {"category": "MemoryLine"}, "w": 1, "h": 1} +{"name": "Elaborate Sandals", "refName": "Elaborate Sandals", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"es": [63, 63]}, "w": 2, "h": 2} +{"name": "Elder's Orb", "refName": "Elder's Orb", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Eldritch Chaos Orb", "refName": "Eldritch Chaos Orb", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRWxkcml0Y2hDaGFvc09yYiIsInNjYWxlIjoxfV0/98091fc653/EldritchChaosOrb.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Eldritch Exalted Orb", "refName": "Eldritch Exalted Orb", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRWxkcml0Y2hFeGFsdGVkT3JiIiwic2NhbGUiOjF9XQ/2da131e652/EldritchExaltedOrb.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Eldritch Incubator", "refName": "Eldritch Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uTWFwcyIsInNjYWxlIjoxfV0/3d07c20be0/IncubationMaps.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Eldritch Incubator", "refName": "Eldritch Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uTWFwcyIsInNjYWxlIjoxfV0/3d07c20be0/IncubationMaps.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Eldritch Orb of Annulment", "refName": "Eldritch Orb of Annulment", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRWxkcml0Y2hBbm51bG1lbnRPcmIiLCJzY2FsZSI6MX1d/b58add03eb/EldritchAnnulmentOrb.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Electrocute", "refName": "Electrocute", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Electrocuting Arrow", "refName": "Electrocuting Arrow", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Electroshock Scroll", "refName": "Electroshock Scroll", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9IYXJiaW5nZXJUb2tlblN3b3JkIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/e3cec18702/HarbingerTokenSword.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Elegant Focus", "refName": "Elegant Focus", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Focus"}, "armour": {"es": [44, 44]}, "w": 2, "h": 3} +{"name": "Elegant Glaive", "refName": "Elegant Glaive", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Axe"}, "w": 2, "h": 4} +{"name": "Elegant Idol", "refName": "Elegant Idol", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Elemental Army", "refName": "Elemental Army", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Elemental Conflux", "refName": "Elemental Conflux", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Elemental Discharge", "refName": "Elemental Discharge", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Elemental Expression", "refName": "Elemental Expression", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Elemental Focus", "refName": "Elemental Focus", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Elemental Invocation", "refName": "Elemental Invocation", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MetaSkillGem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Elemental Storm", "refName": "Elemental Storm", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Elementalist Robe", "refName": "Elementalist Robe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"es": [97, 97]}, "w": 2, "h": 3} +{"name": "Elevated Sextant", "refName": "Elevated Sextant", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Elite Greathelm", "refName": "Elite Greathelm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [136, 136]}, "w": 2, "h": 2} +{"name": "Ember Fusillade", "refName": "Ember Fusillade", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Ember Fusillade", "refName": "Ember Fusillade", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Ember Greataxe", "refName": "Ember Greataxe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Axe"}, "w": 2, "h": 4} +{"name": "Emberstone Apex Sentinel", "refName": "Emberstone Apex Sentinel", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "SentinelDrone"}, "w": 2, "h": 2} +{"name": "Emberstone Pandemonium Sentinel", "refName": "Emberstone Pandemonium Sentinel", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "SentinelDrone"}, "w": 2, "h": 2} +{"name": "Emberstone Stalker Sentinel", "refName": "Emberstone Stalker Sentinel", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "SentinelDrone"}, "w": 2, "h": 2} +{"name": "Emblem Crest Shield", "refName": "Emblem Crest Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [27, 27], "es": [12, 12]}, "w": 2, "h": 3} +{"name": "Embossed Boots", "refName": "Embossed Boots", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ev": [50, 50]}, "w": 2, "h": 2} +{"name": "Embroidered Boots", "refName": "Embroidered Boots", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ev": [166, 166]}, "w": 2, "h": 2} +{"name": "Embroidered Gloves", "refName": "Embroidered Gloves", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvR2xvdmVzSW50NCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/484e9bd879/GlovesInt4.png", "craftable": {"category": "Gloves"}, "armour": {"es": [35, 35]}, "w": 2, "h": 2} +{"name": "Emerald", "refName": "Emerald", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Jewel"}, "w": 1, "h": 1} +{"name": "Emerald Ring", "refName": "Emerald Ring", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Ring"}, "w": 1, "h": 1} +{"name": "Emergency Reload", "refName": "Emergency Reload", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Empty Decanter Djinnus", "refName": "Empty Decanter Djinnus", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 2} +{"name": "Empyreal Crest Shield", "refName": "Empyreal Crest Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [74, 74], "es": [26, 26]}, "w": 2, "h": 3} +{"name": "Enamel Brooch", "refName": "Enamel Brooch", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRW5hbWVsQnJvb2NoIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/0d1e9c956e/EnamelBrooch.png", "craftable": {"category": "HeistEquipmentReward"}, "w": 1, "h": 1} +{"name": "Encase in Jade", "refName": "Encase in Jade", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Enchanted Incubator", "refName": "Enchanted Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uTGFieXJpbnRoIiwic2NhbGUiOjF9XQ/755a289f04/IncubationLabyrinth.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Enchanted Incubator", "refName": "Enchanted Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uTGFieXJpbnRoIiwic2NhbGUiOjF9XQ/755a289f04/IncubationLabyrinth.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Encumbrance", "refName": "Encumbrance", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Energy Barrier", "refName": "Energy Barrier", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Energy Blade", "refName": "Energy Blade", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdG9ybUJsYWRlR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/387697170b/StormBladeGem.png", "craftable": {"category": "One Hand Sword"}, "w": 2, "h": 3} +{"name": "Energy Blade", "refName": "Energy Blade", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdG9ybUJsYWRlR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/387697170b/StormBladeGem.png", "craftable": {"category": "Two Hand Sword"}, "w": 2, "h": 4} +{"name": "Energy Retention", "refName": "Energy Retention", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Enervation", "refName": "Enervation", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Enfeeble", "refName": "Enfeeble", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbmZlZWJsZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e85edd0ad5/Enfeeble.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Engineer's Orb", "refName": "Engineer's Orb", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRW5naW5lZXJzT3JiIiwic2NhbGUiOjF9XQ/114b671d41/EngineersOrb.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Engineer's Shard", "refName": "Engineer's Shard", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRW5naW5lZXJzU2hhcmQiLCJzY2FsZSI6MX1d/9fe1384ff9/EngineersShard.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Engraved Bracers", "refName": "Engraved Bracers", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ev": [111, 111]}, "w": 2, "h": 2} +{"name": "Engraved Focus", "refName": "Engraved Focus", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Focus"}, "armour": {"es": [21, 21]}, "w": 2, "h": 3} +{"name": "Engraved Knife", "refName": "Engraved Knife", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Dagger"}, "w": 1, "h": 3} +{"name": "Enigmatic Assembly A4", "refName": "Enigmatic Assembly A4", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Enigmatic Assembly B2", "refName": "Enigmatic Assembly B2", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Enigmatic Assembly C5", "refName": "Enigmatic Assembly C5", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Enigmatic Assembly D1", "refName": "Enigmatic Assembly D1", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Enkindling Orb", "refName": "Enkindling Orb", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXhwZWRpdGlvbi9GbGFza1BsYXRlIiwic2NhbGUiOjF9XQ/7c1a584a8d/FlaskPlate.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Enlightened Robe", "refName": "Enlightened Robe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"es": [153, 153]}, "w": 2, "h": 3} +{"name": "Enoch's Tags", "refName": "Enoch's Tags", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Enraged Warcry", "refName": "Enraged Warcry", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Envenom", "refName": "Envenom", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Escape Shot", "refName": "Escape Shot", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Esh's Breachstone", "refName": "Esh's Breachstone", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaEZyYWdtZW50c0xpZ2h0bmluZyIsInNjYWxlIjoxfV0/a281438d22/BreachFragmentsLightning.png", "craftable": {"category": "Breachstone"}, "w": 1, "h": 1} +{"name": "Esh's Catalyst", "refName": "Esh's Catalyst", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaENhdGFseXN0TGlnaHRuaW5nIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/299e62fc33/BreachCatalystLightning.png", "tradeTag": "eshs-catalyst", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Esh's Charged Breachstone", "refName": "Esh's Charged Breachstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Breachstone"}, "w": 1, "h": 1} +{"name": "Esh's Enriched Breachstone", "refName": "Esh's Enriched Breachstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Breachstone"}, "w": 1, "h": 1} +{"name": "Esh's Flawless Breachstone", "refName": "Esh's Flawless Breachstone", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0VzaHNGbGF3bGVzc0JyZWFjaHN0b25lIiwic2NhbGUiOjF9XQ/bd6b28f988/EshsFlawlessBreachstone.png", "craftable": {"category": "Breachstone"}, "w": 1, "h": 1} +{"name": "Esh's Pure Breachstone", "refName": "Esh's Pure Breachstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Breachstone"}, "w": 1, "h": 1} +{"name": "Esoteric Crossbow", "refName": "Esoteric Crossbow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Crossbow"}, "w": 2, "h": 4} +{"name": "Espionage Disguise Kit", "refName": "Espionage Disguise Kit", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvUmVnaWNpZGVEaXNndWlzZUtpdCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/e52bff7d39/RegicideDisguiseKit.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Essence Burner", "refName": "Essence Burner", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 4} +{"name": "Essence Drain", "refName": "Essence Drain", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaXBob25HZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/97ff6075bf/SiphonGem.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Essence Harvest", "refName": "Essence Harvest", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Essence of Battle", "refName": "Essence of Battle", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9BdHRhY2tFc3NlbmNlIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/3cece29e19/AttackEssence.png", "tradeTag": "essence-of-battle", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Essence of Electricity", "refName": "Essence of Electricity", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9MaWdodG5pbmdFc3NlbmNlIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/2c3725fdad/LightningEssence.png", "tradeTag": "essence-of-electricity", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Essence of Enhancement", "refName": "Essence of Enhancement", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9EZWZlbmNlc0Vzc2VuY2UiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/e1e5c1ccb8/DefencesEssence.png", "tradeTag": "essence-of-enhancement", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Essence of Flames", "refName": "Essence of Flames", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9GaXJlRXNzZW5jZSIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/add6c12f64/FireEssence.png", "tradeTag": "essence-of-flames", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Essence of Haste", "refName": "Essence of Haste", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9TcGVlZEVzc2VuY2UiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/affda36f07/SpeedEssence.png", "tradeTag": "essence-of-haste", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Essence of Ice", "refName": "Essence of Ice", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9Db2xkRXNzZW5jZSIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/73d9fd8619/ColdEssence.png", "tradeTag": "essence-of-ice", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Essence of Ruin", "refName": "Essence of Ruin", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9DaGFvc0Vzc2VuY2UiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/5f0d3c7014/ChaosEssence.png", "tradeTag": "essence-of-ruin", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Essence of Sorcery", "refName": "Essence of Sorcery", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9DYXN0ZXJFc3NlbmNlIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/6bb099115a/CasterEssence.png", "tradeTag": "essence-of-sorcery", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Essence of Torment", "refName": "Essence of Torment", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9QaHlzaWNhbEVzc2VuY2UiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/e52cd05eeb/PhysicalEssence.png", "tradeTag": "essence-of-torment", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Essence of the Body", "refName": "Essence of the Body", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9MaWZlRXNzZW5jZSIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/638d6c4cbe/LifeEssence.png", "tradeTag": "essence-of-the-body", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Essence of the Infinite", "refName": "Essence of the Infinite", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9BdHRyaWJ1dGVFc3NlbmNlIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/58f9516082/AttributeEssence.png", "tradeTag": "essence-of-the-infinite", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Essence of the Mind", "refName": "Essence of the Mind", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9NYW5hRXNzZW5jZSIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/c881e6273c/ManaEssence.png", "tradeTag": "essence-of-the-mind", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Essential Keyring", "refName": "Essential Keyring", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRXNzZW50aWFsS2V5cmluZyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/03fd96aa15/EssentialKeyring.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Eternal Flame", "refName": "Eternal Flame", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Eternal Orb", "refName": "Eternal Orb", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Ethereal Blade", "refName": "Ethereal Blade", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Dagger"}, "w": 1, "h": 3} +{"name": "Exalted Orb", "refName": "Exalted Orb", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lBZGRNb2RUb1JhcmUiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/ad7c366789/CurrencyAddModToRare.png", "tradeTag": "exalted", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Exalted Shard", "refName": "Exalted Shard", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXhhbHRlZFNoYXJkIiwic2NhbGUiOjF9XQ/b9e4013af5/ExaltedShard.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Exceptional Eldritch Ember", "refName": "Exceptional Eldritch Ember", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2xlYW5zaW5nRmlyZU9yYlJhbms0Iiwic2NhbGUiOjF9XQ/c2c828fa16/CleansingFireOrbRank4.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Exceptional Eldritch Ichor", "refName": "Exceptional Eldritch Ichor", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVGFuZ2xlT3JiUmFuazQiLCJzY2FsZSI6MX1d/dcf73ecd8e/TangleOrbRank4.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Exceptional Idol", "refName": "Exceptional Idol", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Excise", "refName": "Excise", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Execrate", "refName": "Execrate", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Execratus Hammer", "refName": "Execratus Hammer", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Mace"}, "w": 2, "h": 3} +{"name": "Execute", "refName": "Execute", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Executioner Greataxe", "refName": "Executioner Greataxe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Axe"}, "w": 2, "h": 4} +{"name": "Exotic Coinage", "refName": "Exotic Coinage", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXhwZWRpdGlvbi9CYXJ0ZXJSZWZyZXNoQ3VycmVuY3kiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/8a4fe1f468/BarterRefreshCurrency.png", "tradeTag": "exotic-coinage", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Expanding Ground", "refName": "Expanding Ground", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Expanse", "refName": "Expanse", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Expedition Logbook", "refName": "Expedition Logbook", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FeHBlZGl0aW9uQ2hyb25pY2xlMyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/2802fe605e/ExpeditionChronicle3.png", "craftable": {"category": "ExpeditionLogbook"}, "w": 1, "h": 1} +{"name": "Expedition Precursor Tablet", "refName": "Expedition Precursor Tablet", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUHJlY3Vyc29yVGFibGV0cy9QcmVjdXJzb3JUYWJsZXRFeHBlZGl0aW9uIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/4450dac451/PrecursorTabletExpedition.png", "tradeTag": "expedition-precursor-tablet", "craftable": {"category": "TowerAugment"}, "w": 1, "h": 1} +{"name": "Expert Aged Cuffs", "refName": "Expert Aged Cuffs", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [74, 74], "es": [25, 25]}, "w": 2, "h": 2} +{"name": "Expert Altar Robe", "refName": "Expert Altar Robe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"es": [153, 153]}, "w": 2, "h": 3} +{"name": "Expert Antler Focus", "refName": "Expert Antler Focus", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Focus"}, "armour": {"es": [52, 52]}, "w": 2, "h": 3} +{"name": "Expert Barrier Quarterstaff", "refName": "Expert Barrier Quarterstaff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Warstaff"}, "w": 2, "h": 4} +{"name": "Expert Bolstered Mitts", "refName": "Expert Bolstered Mitts", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [134, 134]}, "w": 2, "h": 2} +{"name": "Expert Bombard Crossbow", "refName": "Expert Bombard Crossbow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Crossbow"}, "w": 2, "h": 4} +{"name": "Expert Braced Sabatons", "refName": "Expert Braced Sabatons", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [110, 110], "ev": [101, 101]}, "w": 2, "h": 2} +{"name": "Expert Braced Tower Shield", "refName": "Expert Braced Tower Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [152, 152]}, "w": 2, "h": 4} +{"name": "Expert Brigand Mace", "refName": "Expert Brigand Mace", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Mace"}, "w": 2, "h": 3} +{"name": "Expert Chain Tiara", "refName": "Expert Chain Tiara", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"es": [92, 92]}, "w": 2, "h": 2} +{"name": "Expert Cloaked Mail", "refName": "Expert Cloaked Mail", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [245, 245], "ev": [223, 223]}, "w": 2, "h": 3} +{"name": "Expert Cloaked Mail", "refName": "Expert Cloaked Mail", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [245, 245], "ev": [223, 223]}, "w": 2, "h": 3} +{"name": "Expert Cloaked Mail", "refName": "Expert Cloaked Mail", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [245, 245], "ev": [223, 223]}, "w": 2, "h": 3} +{"name": "Expert Composite Bow", "refName": "Expert Composite Bow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Bow"}, "w": 2, "h": 4} +{"name": "Expert Construct Hammer", "refName": "Expert Construct Hammer", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Mace"}, "w": 2, "h": 3} +{"name": "Expert Cowled Helm", "refName": "Expert Cowled Helm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [147, 147], "ev": [134, 134]}, "w": 2, "h": 2} +{"name": "Expert Crackling Quarterstaff", "refName": "Expert Crackling Quarterstaff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Warstaff"}, "w": 2, "h": 4} +{"name": "Expert Crescent Quarterstaff", "refName": "Expert Crescent Quarterstaff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Warstaff"}, "w": 2, "h": 4} +{"name": "Expert Crescent Targe", "refName": "Expert Crescent Targe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [92, 92], "ev": [84, 84]}, "w": 2, "h": 3} +{"name": "Expert Crumbling Maul", "refName": "Expert Crumbling Maul", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Mace"}, "w": 2, "h": 4} +{"name": "Expert Crystal Focus", "refName": "Expert Crystal Focus", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Focus"}, "armour": {"es": [58, 58]}, "w": 2, "h": 3} +{"name": "Expert Cultist Bow", "refName": "Expert Cultist Bow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Bow"}, "w": 2, "h": 4} +{"name": "Expert Cultist Greathammer", "refName": "Expert Cultist Greathammer", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Mace"}, "w": 2, "h": 4} +{"name": "Expert Doubled Gauntlets", "refName": "Expert Doubled Gauntlets", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [80, 80], "ev": [73, 73]}, "w": 2, "h": 2} +{"name": "Expert Dualstring Bow", "refName": "Expert Dualstring Bow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Bow"}, "w": 2, "h": 4} +{"name": "Expert Dyad Crossbow", "refName": "Expert Dyad Crossbow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Crossbow"}, "w": 2, "h": 4} +{"name": "Expert Edged Buckler", "refName": "Expert Edged Buckler", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ev": [166, 166]}, "w": 2, "h": 2} +{"name": "Expert Elite Greathelm", "refName": "Expert Elite Greathelm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [292, 292]}, "w": 2, "h": 2} +{"name": "Expert Face Mask", "refName": "Expert Face Mask", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [122, 122], "es": [46, 46]}, "w": 2, "h": 2} +{"name": "Expert Feathered Sandals", "refName": "Expert Feathered Sandals", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"es": [75, 75]}, "w": 2, "h": 2} +{"name": "Expert Feathered Targe", "refName": "Expert Feathered Targe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [100, 100], "ev": [91, 91]}, "w": 2, "h": 3} +{"name": "Expert Feathered Tiara", "refName": "Expert Feathered Tiara", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"es": [101, 101]}, "w": 2, "h": 2} +{"name": "Expert Felt Cap", "refName": "Expert Felt Cap", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [222, 222]}, "w": 2, "h": 2} +{"name": "Expert Firm Bracers", "refName": "Expert Firm Bracers", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ev": [111, 111]}, "w": 2, "h": 2} +{"name": "Expert Forge Maul", "refName": "Expert Forge Maul", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Mace"}, "w": 2, "h": 4} +{"name": "Expert Forlorn Crossbow", "refName": "Expert Forlorn Crossbow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Crossbow"}, "w": 2, "h": 4} +{"name": "Expert Frayed Shoes", "refName": "Expert Frayed Shoes", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ev": [91, 91], "es": [35, 35]}, "w": 2, "h": 2} +{"name": "Expert Gauze Wraps", "refName": "Expert Gauze Wraps", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ev": [61, 61], "es": [23, 23]}, "w": 2, "h": 2} +{"name": "Expert Goldcast Cuffs", "refName": "Expert Goldcast Cuffs", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [80, 80], "es": [28, 28]}, "w": 2, "h": 2} +{"name": "Expert Gothic Quarterstaff", "refName": "Expert Gothic Quarterstaff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Warstaff"}, "w": 2, "h": 4} +{"name": "Expert Guarded Helm", "refName": "Expert Guarded Helm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [134, 134], "ev": [122, 122]}, "w": 2, "h": 2} +{"name": "Expert Heavy Crown", "refName": "Expert Heavy Crown", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [160, 160], "es": [55, 55]}, "w": 2, "h": 2} +{"name": "Expert Hexer's Robe", "refName": "Expert Hexer's Robe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"es": [184, 184]}, "w": 2, "h": 3} +{"name": "Expert Horned Crown", "refName": "Expert Horned Crown", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [134, 134], "es": [46, 46]}, "w": 2, "h": 2} +{"name": "Expert Hunter Hood", "refName": "Expert Hunter Hood", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [266, 266]}, "w": 2, "h": 2} +{"name": "Expert Hunting Shoes", "refName": "Expert Hunting Shoes", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ev": [110, 110], "es": [42, 42]}, "w": 2, "h": 2} +{"name": "Expert Intricate Gloves", "refName": "Expert Intricate Gloves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"es": [50, 50]}, "w": 2, "h": 2} +{"name": "Expert Iron Cuirass", "refName": "Expert Iron Cuirass", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [534, 534]}, "w": 2, "h": 3} +{"name": "Expert Iron Greaves", "refName": "Expert Iron Greaves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [182, 182]}, "w": 2, "h": 2} +{"name": "Expert Jewelled Gloves", "refName": "Expert Jewelled Gloves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"es": [46, 46]}, "w": 2, "h": 2} +{"name": "Expert Jingling Crest Shield", "refName": "Expert Jingling Crest Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [92, 92], "es": [32, 32]}, "w": 2, "h": 3} +{"name": "Expert Keth Raiment", "refName": "Expert Keth Raiment", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"es": [153, 153]}, "w": 2, "h": 3} +{"name": "Expert Laced Boots", "refName": "Expert Laced Boots", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ev": [166, 166]}, "w": 2, "h": 2} +{"name": "Expert Layered Gauntlets", "refName": "Expert Layered Gauntlets", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [74, 74], "ev": [67, 67]}, "w": 2, "h": 2} +{"name": "Expert Leaden Greathammer", "refName": "Expert Leaden Greathammer", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Mace"}, "w": 2, "h": 4} +{"name": "Expert Linen Wraps", "refName": "Expert Linen Wraps", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ev": [67, 67], "es": [25, 25]}, "w": 2, "h": 2} +{"name": "Expert Lizardscale Boots", "refName": "Expert Lizardscale Boots", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ev": [200, 200]}, "w": 2, "h": 2} +{"name": "Expert Long Quarterstaff", "refName": "Expert Long Quarterstaff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Warstaff"}, "w": 2, "h": 4} +{"name": "Expert Mail Sabatons", "refName": "Expert Mail Sabatons", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [100, 100], "ev": [91, 91]}, "w": 2, "h": 2} +{"name": "Expert Martyr Crown", "refName": "Expert Martyr Crown", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [147, 147], "es": [51, 51]}, "w": 2, "h": 2} +{"name": "Expert Moulded Mitts", "refName": "Expert Moulded Mitts", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [146, 146]}, "w": 2, "h": 2} +{"name": "Expert Oak Greathammer", "refName": "Expert Oak Greathammer", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Mace"}, "w": 2, "h": 4} +{"name": "Expert Omen Crest Shield", "refName": "Expert Omen Crest Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [100, 100], "es": [35, 35]}, "w": 2, "h": 3} +{"name": "Expert Padded Leggings", "refName": "Expert Padded Leggings", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [100, 100], "es": [35, 35]}, "w": 2, "h": 2} +{"name": "Expert Pathfinder Coat", "refName": "Expert Pathfinder Coat", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [406, 406]}, "w": 2, "h": 3} +{"name": "Expert Pelage Targe", "refName": "Expert Pelage Targe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [84, 84], "ev": [76, 76]}, "w": 2, "h": 3} +{"name": "Expert Pelt Leggings", "refName": "Expert Pelt Leggings", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [120, 120], "es": [42, 42]}, "w": 2, "h": 2} +{"name": "Expert Pelt Mantle", "refName": "Expert Pelt Mantle", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [294, 294], "es": [101, 101]}, "w": 2, "h": 3} +{"name": "Expert Plated Buckler", "refName": "Expert Plated Buckler", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ev": [139, 139]}, "w": 2, "h": 2} +{"name": "Expert Plated Mace", "refName": "Expert Plated Mace", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Mace"}, "w": 2, "h": 3} +{"name": "Expert Plumed Focus", "refName": "Expert Plumed Focus", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Focus"}, "armour": {"es": [63, 63]}, "w": 2, "h": 3} +{"name": "Expert Rampart Tower Shield", "refName": "Expert Rampart Tower Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [167, 167]}, "w": 2, "h": 4} +{"name": "Expert Ringmail Gauntlets", "refName": "Expert Ringmail Gauntlets", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [67, 67], "ev": [61, 61]}, "w": 2, "h": 2} +{"name": "Expert Riveted Mitts", "refName": "Expert Riveted Mitts", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [122, 122]}, "w": 2, "h": 2} +{"name": "Expert Rogue Armour", "refName": "Expert Rogue Armour", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [245, 245], "ev": [223, 223]}, "w": 2, "h": 3} +{"name": "Expert Rope Cuffs", "refName": "Expert Rope Cuffs", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [67, 67], "es": [23, 23]}, "w": 2, "h": 2} +{"name": "Expert Sacrificial Mantle", "refName": "Expert Sacrificial Mantle", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [245, 245], "es": [84, 84]}, "w": 2, "h": 3} +{"name": "Expert Scale Mail", "refName": "Expert Scale Mail", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [294, 294], "ev": [268, 268]}, "w": 2, "h": 3} +{"name": "Expert Scalper's Jacket", "refName": "Expert Scalper's Jacket", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [223, 223], "es": [84, 84]}, "w": 2, "h": 3} +{"name": "Expert Sectioned Bracers", "refName": "Expert Sectioned Bracers", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ev": [122, 122]}, "w": 2, "h": 2} +{"name": "Expert Secured Leggings", "refName": "Expert Secured Leggings", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [110, 110], "es": [38, 38]}, "w": 2, "h": 2} +{"name": "Expert Serpentscale Coat", "refName": "Expert Serpentscale Coat", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [406, 406]}, "w": 2, "h": 3} +{"name": "Expert Shaman Mantle", "refName": "Expert Shaman Mantle", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [245, 245], "es": [84, 84]}, "w": 2, "h": 3} +{"name": "Expert Shielded Helm", "refName": "Expert Shielded Helm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [160, 160], "ev": [146, 146]}, "w": 2, "h": 2} +{"name": "Expert Shortbow", "refName": "Expert Shortbow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Bow"}, "w": 2, "h": 4} +{"name": "Expert Sigil Crest Shield", "refName": "Expert Sigil Crest Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [84, 84], "es": [29, 29]}, "w": 2, "h": 3} +{"name": "Expert Silk Slippers", "refName": "Expert Silk Slippers", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"es": [69, 69]}, "w": 2, "h": 2} +{"name": "Expert Slicing Quarterstaff", "refName": "Expert Slicing Quarterstaff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Warstaff"}, "w": 2, "h": 4} +{"name": "Expert Slim Mace", "refName": "Expert Slim Mace", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Mace"}, "w": 2, "h": 3} +{"name": "Expert Smithing Hammer", "refName": "Expert Smithing Hammer", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Mace"}, "w": 2, "h": 3} +{"name": "Expert Soldier Greathelm", "refName": "Expert Soldier Greathelm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [243, 243]}, "w": 2, "h": 2} +{"name": "Expert Sombre Gloves", "refName": "Expert Sombre Gloves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"es": [42, 42]}, "w": 2, "h": 2} +{"name": "Expert Spiked Buckler", "refName": "Expert Spiked Buckler", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ev": [152, 152]}, "w": 2, "h": 2} +{"name": "Expert Spined Bracers", "refName": "Expert Spined Bracers", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ev": [133, 133]}, "w": 2, "h": 2} +{"name": "Expert Spiral Wraps", "refName": "Expert Spiral Wraps", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ev": [73, 73], "es": [28, 28]}, "w": 2, "h": 2} +{"name": "Expert Spired Greathelm", "refName": "Expert Spired Greathelm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [267, 267]}, "w": 2, "h": 2} +{"name": "Expert Stacked Sabatons", "refName": "Expert Stacked Sabatons", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [120, 120], "ev": [110, 110]}, "w": 2, "h": 2} +{"name": "Expert Steel Plate", "refName": "Expert Steel Plate", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [445, 445]}, "w": 2, "h": 3} +{"name": "Expert Steeltoe Boots", "refName": "Expert Steeltoe Boots", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ev": [183, 183]}, "w": 2, "h": 2} +{"name": "Expert Stone Greaves", "refName": "Expert Stone Greaves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [219, 219]}, "w": 2, "h": 2} +{"name": "Expert Stone Tower Shield", "refName": "Expert Stone Tower Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [182, 182]}, "w": 2, "h": 4} +{"name": "Expert Studded Vest", "refName": "Expert Studded Vest", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [487, 487]}, "w": 2, "h": 3} +{"name": "Expert Sturdy Crossbow", "refName": "Expert Sturdy Crossbow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Crossbow"}, "w": 2, "h": 4} +{"name": "Expert Swathed Cap", "refName": "Expert Swathed Cap", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [244, 244]}, "w": 2, "h": 2} +{"name": "Expert Temple Maul", "refName": "Expert Temple Maul", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Mace"}, "w": 2, "h": 4} +{"name": "Expert Tense Crossbow", "refName": "Expert Tense Crossbow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Crossbow"}, "w": 2, "h": 4} +{"name": "Expert Threaded Shoes", "refName": "Expert Threaded Shoes", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ev": [101, 101], "es": [38, 38]}, "w": 2, "h": 2} +{"name": "Expert Tribal Mask", "refName": "Expert Tribal Mask", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [146, 146], "es": [55, 55]}, "w": 2, "h": 2} +{"name": "Expert Trimmed Greaves", "refName": "Expert Trimmed Greaves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [200, 200]}, "w": 2, "h": 2} +{"name": "Expert Vaal Cuirass", "refName": "Expert Vaal Cuirass", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [445, 445]}, "w": 2, "h": 3} +{"name": "Expert Varnished Crossbow", "refName": "Expert Varnished Crossbow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Crossbow"}, "w": 2, "h": 4} +{"name": "Expert Veiled Mask", "refName": "Expert Veiled Mask", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [134, 134], "es": [51, 51]}, "w": 2, "h": 2} +{"name": "Expert Warden Bow", "refName": "Expert Warden Bow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Bow"}, "w": 2, "h": 4} +{"name": "Expert Warpick", "refName": "Expert Warpick", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Mace"}, "w": 2, "h": 3} +{"name": "Expert Waxed Jacket", "refName": "Expert Waxed Jacket", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [268, 268], "es": [101, 101]}, "w": 2, "h": 3} +{"name": "Expert Wayfarer Jacket", "refName": "Expert Wayfarer Jacket", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [223, 223], "es": [84, 84]}, "w": 2, "h": 3} +{"name": "Expert Wicker Tiara", "refName": "Expert Wicker Tiara", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"es": [84, 84]}, "w": 2, "h": 2} +{"name": "Expert Wrapped Sandals", "refName": "Expert Wrapped Sandals", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"es": [63, 63]}, "w": 2, "h": 2} +{"name": "Expert Zealot Bow", "refName": "Expert Zealot Bow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Bow"}, "w": 2, "h": 4} +{"name": "Exploit Weakness", "refName": "Exploit Weakness", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Explorer Armour", "refName": "Explorer Armour", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [114, 114], "ev": [101, 101]}, "w": 2, "h": 3} +{"name": "Explorer's Scouting Report", "refName": "Explorer's Scouting Report", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Explosive Concoction", "refName": "Explosive Concoction", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FeHBsb3NpdmVGbGFza1NraWxsR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9114018038/ExplosiveFlaskSkillGem.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Explosive Grenade", "refName": "Explosive Grenade", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Explosive Shot", "refName": "Explosive Shot", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Exquisite Idol", "refName": "Exquisite Idol", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Exquisite Vest", "refName": "Exquisite Vest", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [487, 487]}, "w": 2, "h": 3} +{"name": "Exsanguinate", "refName": "Exsanguinate", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZFRlbmRyaWxzU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d421c5c70e/BloodTendrilsSkillGem.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Extended Cleaver", "refName": "Extended Cleaver", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Axe"}, "w": 2, "h": 3} +{"name": "Extraction", "refName": "Extraction", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Eye of Winter", "refName": "Eye of Winter", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm96ZW5TcGhlcmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b51924877e/FrozenSphereSkillGem.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Ez Myrae Tome", "refName": "Ez Myrae Tome", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Face Mask", "refName": "Face Mask", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [26, 26], "es": [15, 15]}, "w": 2, "h": 2} +{"name": "Faceted Fossil", "refName": "Faceted Fossil", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvRmFjZXRlZEZvc3NpbCIsInNjYWxlIjoxfV0/473889cafb/FacetedFossil.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Facetor's Lens", "refName": "Facetor's Lens", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lHZW1FeHBlcmllbmNlIiwic2NhbGUiOjF9XQ/7011b1ed48/CurrencyGemExperience.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Faded Crisis Fragment", "refName": "Faded Crisis Fragment", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVlc3RJdGVtcy9QaW5uYWNsZUtleTIiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/5709c39ee7/PinnacleKey2.png", "tradeTag": "faded-crisis-fragment", "w": 1, "h": 1} +{"name": "Falchion", "refName": "Falchion", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Sword"}, "w": 2, "h": 3} +{"name": "Falling Thunder", "refName": "Falling Thunder", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Familial Contract", "refName": "Familial Contract", "namespace": "ITEM", "icon": "", "craftable": {"category": "HeistContract"}, "w": 1, "h": 1} +{"name": "Farric Lure", "refName": "Farric Lure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Fast Forward", "refName": "Fast Forward", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Feathered Robe", "refName": "Feathered Robe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"es": [35, 35]}, "w": 2, "h": 3} +{"name": "Feathered Sandals", "refName": "Feathered Sandals", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"es": [38, 38]}, "w": 2, "h": 2} +{"name": "Feathered Targe", "refName": "Feathered Targe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [51, 51], "ev": [46, 46]}, "w": 2, "h": 3} +{"name": "Feathered Tiara", "refName": "Feathered Tiara", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"es": [51, 51]}, "w": 2, "h": 2} +{"name": "Feeding Frenzy", "refName": "Feeding Frenzy", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Felled Greatclub", "refName": "Felled Greatclub", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Mace"}, "w": 2, "h": 4} +{"name": "Felt Cap", "refName": "Felt Cap", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [48, 48]}, "w": 2, "h": 2} +{"name": "Fenumal Lure", "refName": "Fenumal Lure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Feral Incubator", "refName": "Feral Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQmVzdGlhcnkiLCJzY2FsZSI6MX1d/7c98be601d/IncubationBestiary.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Feral Incubator", "refName": "Feral Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQmVzdGlhcnkiLCJzY2FsZSI6MX1d/7c98be601d/IncubationBestiary.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Ferocious Roar", "refName": "Ferocious Roar", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MetaSkillGem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Ferocity", "refName": "Ferocity", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Fierce Greathelm", "refName": "Fierce Greathelm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [196, 196]}, "w": 2, "h": 2} +{"name": "Fiery Death", "refName": "Fiery Death", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Final Letter", "refName": "Final Letter", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Fine Belt", "refName": "Fine Belt", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Belt"}, "w": 2, "h": 1} +{"name": "Fine Bracers", "refName": "Fine Bracers", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ev": [79, 79]}, "w": 2, "h": 2} +{"name": "Fine Incubator", "refName": "Fine Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQ3VycmVuY3kiLCJzY2FsZSI6MX1d/e8a6d32623/IncubationCurrency.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Fine Incubator", "refName": "Fine Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQ3VycmVuY3kiLCJzY2FsZSI6MX1d/e8a6d32623/IncubationCurrency.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Fine Lockpick", "refName": "Fine Lockpick", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRmluZUxvY2twaWNrIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/c894ea53b2/FineLockpick.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Fine Sensing Charm", "refName": "Fine Sensing Charm", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRmluZVNlbnNpbmdDaGFybSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/5725075134/FineSensingCharm.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Fine Sharpening Stone", "refName": "Fine Sharpening Stone", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRmluZVNoYXJwZW5pbmdTdG9uZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/eee568b5c8/FineSharpeningStone.png", "craftable": {"category": "HeistEquipmentWeapon"}, "w": 2, "h": 2} +{"name": "Fire Exposure", "refName": "Fire Exposure", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Fire Infusion", "refName": "Fire Infusion", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Fire Mastery", "refName": "Fire Mastery", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Fire Penetration", "refName": "Fire Penetration", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Fire Quiver", "refName": "Fire Quiver", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Quiver"}, "w": 2, "h": 3} +{"name": "Fireball", "refName": "Fireball", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlYmFsbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8f374db219/Fireball.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Firebolt", "refName": "Firebolt", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Firestorm", "refName": "Firestorm", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlc3Rvcm0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/86d85233c1/Firestorm.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Firm Bracers", "refName": "Firm Bracers", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ev": [26, 26]}, "w": 2, "h": 2} +{"name": "Fishing Rod", "refName": "Fishing Rod", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9GaXNoaW5nUm9kcy9GaXNoaW5nUm9kMSIsInciOjEsImgiOjQsInNjYWxlIjoxfV0/d2a4a8b57a/FishingRod1.png", "craftable": {"category": "FishingRod"}, "w": 1, "h": 4} +{"name": "Fist of War", "refName": "Fist of War", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Flail Strike", "refName": "Flail Strike", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Flame Wall", "refName": "Flame Wall", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJld2FsbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/d3c69ec0a3/Firewall.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Flameblast", "refName": "Flameblast", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaGFyZ2VkQmxhc3QiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/90adc64f44/ChargedBlast.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Flammability", "refName": "Flammability", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtbWFiaWxpdHkiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ba43e87752/Flammability.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Flanged Arrowhead", "refName": "Flanged Arrowhead", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQXJyb3doZWFkRmxhbmdlZCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/2f2fd20710/ArrowheadFlanged.png", "craftable": {"category": "HeistEquipmentWeapon"}, "w": 2, "h": 2} +{"name": "Flanged Drill", "refName": "Flanged Drill", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRHJpbGxBZHYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/bf2c8d3b0b/DrillAdv.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Flanged Greatblade", "refName": "Flanged Greatblade", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Sword"}, "w": 2, "h": 4} +{"name": "Flared Boots", "refName": "Flared Boots", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ev": [119, 119]}, "w": 2, "h": 2} +{"name": "Flash Grenade", "refName": "Flash Grenade", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Flashpowder Keg", "refName": "Flashpowder Keg", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "IncursionItem"}, "w": 1, "h": 1} +{"name": "Flask of Welakath", "refName": "Flask of Welakath", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Flax Sandals", "refName": "Flax Sandals", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"es": [48, 48]}, "w": 2, "h": 2} +{"name": "Fleet Orders", "refName": "Fleet Orders", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Flesh Catalyst", "refName": "Flesh Catalyst", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaENhdGFseXN0TGlmZSIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/06ec489870/BreachCatalystLife.png", "tradeTag": "flesh-catalyst", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Flesh Compass", "refName": "Flesh Compass", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Flexile Sabatons", "refName": "Flexile Sabatons", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [82, 82], "ev": [74, 74]}, "w": 2, "h": 2} +{"name": "Flicker Strike", "refName": "Flicker Strike", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGlja2VyU3RyaWtlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4d16009413/FlickerStrike.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Focal Stone", "refName": "Focal Stone", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRm9jYWxNYWdpY1N0b25lIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/65ffdbcd59/FocalMagicStone.png", "craftable": {"category": "HeistEquipmentWeapon"}, "w": 2, "h": 2} +{"name": "Focused Curse", "refName": "Focused Curse", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Foliate Brooch", "refName": "Foliate Brooch", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRm9saWF0ZUJyb29jaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/72a57eb200/FoliateBrooch.png", "craftable": {"category": "HeistEquipmentReward"}, "w": 1, "h": 1} +{"name": "Font of Blood", "refName": "Font of Blood", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Font of Mana", "refName": "Font of Mana", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Font of Rage", "refName": "Font of Rage", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Forbidden Contract", "refName": "Forbidden Contract", "namespace": "ITEM", "icon": "", "craftable": {"category": "HeistContract"}, "w": 1, "h": 1} +{"name": "Forbidden Lamp", "refName": "Forbidden Lamp", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Foreboding Incubator", "refName": "Foreboding Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uSGFyYmluZ2VyIiwic2NhbGUiOjF9XQ/11f4bcf0ee/IncubationHarbinger.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Foreboding Incubator", "refName": "Foreboding Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uSGFyYmluZ2VyIiwic2NhbGUiOjF9XQ/11f4bcf0ee/IncubationHarbinger.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Forge Maul", "refName": "Forge Maul", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Mace"}, "w": 2, "h": 4} +{"name": "Forgotten Reliquary Key", "refName": "Forgotten Reliquary Key", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WZW5hcml1c0ZvaWwiLCJzY2FsZSI6MX1d/ba2d66a470/VenariusFoil.png", "craftable": {"category": "VaultKey"}, "w": 1, "h": 1} +{"name": "Fork", "refName": "Fork", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Forked Claw", "refName": "Forked Claw", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Claw"}, "w": 2, "h": 2} +{"name": "Forked Spear", "refName": "Forked Spear", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Spear"}, "w": 1, "h": 4} +{"name": "Fortress", "refName": "Fortress", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Fossilised Incubator", "refName": "Fossilised Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRm9zc2lscyIsInNjYWxlIjoxfV0/bb7663432d/IncubationFossils.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Fossilised Incubator", "refName": "Fossilised Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRm9zc2lscyIsInNjYWxlIjoxfV0/bb7663432d/IncubationFossils.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Foxhide Sole", "refName": "Foxhide Sole", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRm94aGlkZVNvbGUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/55215f9d79/FoxhideSole.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Fractured Fossil", "refName": "Fractured Fossil", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvRnJhY3R1cmVkRm9zc2lsIiwic2NhbGUiOjF9XQ/328d2256ce/FracturedFossil.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Fracturing Orb", "refName": "Fracturing Orb", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRnJhY3R1cmluZ09yYkNvbWJpbmVkIiwic2NhbGUiOjF9XQ/3fb18e8a5b/FracturingOrbCombined.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Fracturing Shard", "refName": "Fracturing Shard", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRnJhY3R1cmluZ09yYlNoYXJkIiwic2NhbGUiOjF9XQ/34fdc6a813/FracturingOrbShard.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Fragment of Constriction", "refName": "Fragment of Constriction", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcEd1YXJkaWFuSG9seSIsInNjYWxlIjoxfV0/b9ef66f983/AtlasMapGuardianHoly.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Fragment of Emptiness", "refName": "Fragment of Emptiness", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyRWxkZXIwMiIsInNjYWxlIjoxfV0/085f7abd0b/UberElder02.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Fragment of Enslavement", "refName": "Fragment of Enslavement", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcEd1YXJkaWFuRmlyZSIsInNjYWxlIjoxfV0/7497ffd64d/AtlasMapGuardianFire.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Fragment of Eradication", "refName": "Fragment of Eradication", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcEd1YXJkaWFuTGlnaHRuaW5nIiwic2NhbGUiOjF9XQ/e6e792e80e/AtlasMapGuardianLightning.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Fragment of Knowledge", "refName": "Fragment of Knowledge", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyRWxkZXIwNCIsInNjYWxlIjoxfV0/096ec774b0/UberElder04.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Fragment of Purification", "refName": "Fragment of Purification", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcEd1YXJkaWFuQ2hhb3MiLCJzY2FsZSI6MX1d/7938e7a7ee/AtlasMapGuardianChaos.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Fragment of Shape", "refName": "Fragment of Shape", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyRWxkZXIwMyIsInNjYWxlIjoxfV0/4a8c196777/UberElder03.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Fragment of Terror", "refName": "Fragment of Terror", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyRWxkZXIwMSIsInNjYWxlIjoxfV0/322988dd38/UberElder01.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Fragment of the Chimera", "refName": "Fragment of the Chimera", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcHMvRnJhZ21lbnRDaGltZXJhIiwic2NhbGUiOjF9XQ/191b838e55/FragmentChimera.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Fragment of the Chimera", "refName": "Fragment of the Chimera", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcHMvRnJhZ21lbnRDaGltZXJhIiwic2NhbGUiOjF9XQ/191b838e55/FragmentChimera.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Fragment of the Hydra", "refName": "Fragment of the Hydra", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcHMvRnJhZ21lbnRIeWRyYSIsInNjYWxlIjoxfV0/975dcd6b1c/FragmentHydra.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Fragment of the Hydra", "refName": "Fragment of the Hydra", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcHMvRnJhZ21lbnRIeWRyYSIsInNjYWxlIjoxfV0/975dcd6b1c/FragmentHydra.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Fragment of the Minotaur", "refName": "Fragment of the Minotaur", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcHMvRnJhZ21lbnRNaW5vdGF1ciIsInNjYWxlIjoxfV0/e976236f7a/FragmentMinotaur.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Fragment of the Minotaur", "refName": "Fragment of the Minotaur", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcHMvRnJhZ21lbnRNaW5vdGF1ciIsInNjYWxlIjoxfV0/e976236f7a/FragmentMinotaur.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Fragment of the Phoenix", "refName": "Fragment of the Phoenix", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcHMvRnJhZ21lbnRQaG9lbml4Iiwic2NhbGUiOjF9XQ/3091d971ad/FragmentPhoenix.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Fragment of the Phoenix", "refName": "Fragment of the Phoenix", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9BdGxhc01hcHMvRnJhZ21lbnRQaG9lbml4Iiwic2NhbGUiOjF9XQ/3091d971ad/FragmentPhoenix.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Fragmentation Rounds", "refName": "Fragmentation Rounds", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Fragmentation Scroll", "refName": "Fragmentation Scroll", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9IYXJiaW5nZXJUb2tlblF1aXZlciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a6017fd37d/HarbingerTokenQuiver.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Fragmented Incubator", "refName": "Fragmented Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRnJhZ21lbnRzIiwic2NhbGUiOjF9XQ/a3cf9d4a10/IncubationFragments.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Fragmented Incubator", "refName": "Fragmented Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRnJhZ21lbnRzIiwic2NhbGUiOjF9XQ/a3cf9d4a10/IncubationFragments.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Fragmenting Arrowhead", "refName": "Fragmenting Arrowhead", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQXJyb3doZWFkRnJhZ21lbnRpbmciLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/14b9a9dba3/ArrowheadFragmenting.png", "craftable": {"category": "HeistEquipmentWeapon"}, "w": 2, "h": 2} +{"name": "Frayed Shoes", "refName": "Frayed Shoes", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ev": [13, 13], "es": [9, 9]}, "w": 2, "h": 2} +{"name": "Freezing Mark", "refName": "Freezing Mark", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Freezing Salvo", "refName": "Freezing Salvo", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Freezing Shards", "refName": "Freezing Shards", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Fresh Clip", "refName": "Fresh Clip", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Frigid Fossil", "refName": "Frigid Fossil", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvQW1iZXJGYW5nIiwic2NhbGUiOjF9XQ/2e63199a3e/AmberFang.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Frigid Wand", "refName": "Frigid Wand", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Wand"}, "w": 1, "h": 3} +{"name": "Frost Bomb", "refName": "Frost Bomb", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdEJvbWIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/c8aeb75684/FrostBomb.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Frost Core", "refName": "Frost Core", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "InstanceLocalItem"}, "w": 1, "h": 2} +{"name": "Frost Core", "refName": "Frost Core", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "InstanceLocalItem"}, "w": 1, "h": 2} +{"name": "Frost Nexus", "refName": "Frost Nexus", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Frost Wall", "refName": "Frost Wall", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdFdhbGwiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6b6d630e19/FrostWall.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Frostbolt", "refName": "Frostbolt", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Gcm9zdEJvbHQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/33202c1f22/FrostBolt.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Frostfire", "refName": "Frostfire", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Frozen Locus", "refName": "Frozen Locus", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Frozen Vortex", "refName": "Frozen Vortex", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Full Decanter Djinnus", "refName": "Full Decanter Djinnus", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 2} +{"name": "Full Plate", "refName": "Full Plate", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyMUMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/94a3d5d98e/BodyStr1C.png", "craftable": {"category": "Body Armour"}, "armour": {"ar": [208, 208]}, "w": 2, "h": 3} +{"name": "Fulminating Concoction", "refName": "Fulminating Concoction", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Fumarole Tar", "refName": "Fumarole Tar", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Fundamental Fossil", "refName": "Fundamental Fossil", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvRW5jcnVzdGVkRm9zc2lsIiwic2NhbGUiOjF9XQ/17b85500f2/EncrustedFossil.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Fur Plate", "refName": "Fur Plate", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [60, 60]}, "w": 2, "h": 3} +{"name": "Furious Slam", "refName": "Furious Slam", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Furtive Wraps", "refName": "Furtive Wraps", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ev": [50, 50], "es": [19, 19]}, "w": 2, "h": 2} +{"name": "Fury Cleaver", "refName": "Fury Cleaver", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Axe"}, "w": 2, "h": 3} +{"name": "Fusillade", "refName": "Fusillade", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Gallant Helm", "refName": "Gallant Helm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [134, 134], "ev": [122, 122]}, "w": 2, "h": 2} +{"name": "Galvanic Field", "refName": "Galvanic Field", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9HYWx2YW5pY0ZpZWxkU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/8aa27ccb46/GalvanicFieldSkillGem.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Galvanic Shards", "refName": "Galvanic Shards", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Galvanic Wand", "refName": "Galvanic Wand", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Wand"}, "w": 1, "h": 3} +{"name": "Gargantuan Life Flask", "refName": "Gargantuan Life Flask", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Flask"}, "w": 1, "h": 2} +{"name": "Gargantuan Mana Flask", "refName": "Gargantuan Mana Flask", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Flask"}, "w": 1, "h": 2} +{"name": "Garment", "refName": "Garment", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "w": 2, "h": 3} +{"name": "Gas Arrow", "refName": "Gas Arrow", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Gas Filled Bladder", "refName": "Gas Filled Bladder", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 1} +{"name": "Gas Grenade", "refName": "Gas Grenade", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Gathering Storm", "refName": "Gathering Storm", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Gauze Wraps", "refName": "Gauze Wraps", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ev": [8, 8], "es": [6, 6]}, "w": 2, "h": 2} +{"name": "Gelid Staff", "refName": "Gelid Staff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Staff"}, "w": 1, "h": 4} +{"name": "Gembloom Skull", "refName": "Gembloom Skull", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Gemcrust Skull", "refName": "Gemcrust Skull", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Gemcutter's Incubator", "refName": "Gemcutter's Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uR2VtcyIsInNjYWxlIjoxfV0/7df785d740/IncubationGems.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Gemcutter's Incubator", "refName": "Gemcutter's Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uR2VtcyIsInNjYWxlIjoxfV0/7df785d740/IncubationGems.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Gemcutter's Prism", "refName": "Gemcutter's Prism", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lHZW1RdWFsaXR5Iiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/f4bace18d7/CurrencyGemQuality.png", "tradeTag": "gcp", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Gemrot Skull", "refName": "Gemrot Skull", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Geomancer's Incubator", "refName": "Geomancer's Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQXJtb3VyIiwic2NhbGUiOjF9XQ/8cd6cd0531/IncubationArmour.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Geomancer's Incubator", "refName": "Geomancer's Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQXJtb3VyIiwic2NhbGUiOjF9XQ/8cd6cd0531/IncubationArmour.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Ghost Dance", "refName": "Ghost Dance", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Giant Life Flask", "refName": "Giant Life Flask", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrNiIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/13cd1c8a08/lifeflask6.png", "craftable": {"category": "Flask"}, "w": 1, "h": 2} +{"name": "Giant Mana Flask", "refName": "Giant Mana Flask", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrNiIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/61993fdd4b/manaflask6.png", "craftable": {"category": "Flask"}, "w": 1, "h": 2} +{"name": "Giant Maul", "refName": "Giant Maul", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Mace"}, "w": 2, "h": 4} +{"name": "Gift to the Goddess", "refName": "Gift to the Goddess", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9MYWJ5cmludGhIYXJ2ZXN0SW5mdXNlZDEiLCJzY2FsZSI6MX1d/a5254d7933/LabyrinthHarvestInfused1.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Gilded Abyss Scarab", "refName": "Gilded Abyss Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Gilded Ambush Scarab", "refName": "Gilded Ambush Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Gilded Bestiary Scarab", "refName": "Gilded Bestiary Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Gilded Blight Scarab", "refName": "Gilded Blight Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Gilded Breach Scarab", "refName": "Gilded Breach Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Gilded Cartography Scarab", "refName": "Gilded Cartography Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Gilded Divination Scarab", "refName": "Gilded Divination Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Gilded Elder Scarab", "refName": "Gilded Elder Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Gilded Expedition Scarab", "refName": "Gilded Expedition Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Gilded Fossil", "refName": "Gilded Fossil", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvU2FuY3RpZmllZEZvc3NpbCIsInNjYWxlIjoxfV0/7240f907f2/SanctifiedFossil.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Gilded Harbinger Scarab", "refName": "Gilded Harbinger Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Gilded Legion Scarab", "refName": "Gilded Legion Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Gilded Metamorph Scarab", "refName": "Gilded Metamorph Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Gilded Reliquary Scarab", "refName": "Gilded Reliquary Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Gilded Shaper Scarab", "refName": "Gilded Shaper Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Gilded Sulphite Scarab", "refName": "Gilded Sulphite Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Gilded Torment Scarab", "refName": "Gilded Torment Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Gilded Vestments", "refName": "Gilded Vestments", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [167, 167], "es": [59, 59]}, "w": 2, "h": 3} +{"name": "Gilt Leggings", "refName": "Gilt Leggings", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [82, 82], "es": [29, 29]}, "w": 2, "h": 2} +{"name": "Glacial Bolt", "refName": "Glacial Bolt", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Glacial Cascade", "refName": "Glacial Cascade", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9VcGhlYXZhbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e29730bc66/Upheaval.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Glacial Rune", "refName": "Glacial Rune", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUnVuZXMvQ29sZFJ1bmUiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/499bfe179a/ColdRune.png", "tradeTag": "glacial-rune", "craftable": {"category": "SoulCore"}, "w": 1, "h": 1} +{"name": "Glaciation", "refName": "Glaciation", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Glacier", "refName": "Glacier", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Gladiator Armour", "refName": "Gladiator Armour", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [184, 184], "ev": [167, 167]}, "w": 2, "h": 3} +{"name": "Glass Shank", "refName": "Glass Shank", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjEiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/aeb581e270/Dagger1.png", "craftable": {"category": "Dagger"}, "w": 1, "h": 3} +{"name": "Glassblower's Bauble", "refName": "Glassblower's Bauble", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lGbGFza1F1YWxpdHkiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/1cec279e01/CurrencyFlaskQuality.png", "tradeTag": "bauble", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Glorious Idol", "refName": "Glorious Idol", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Glorious Plate", "refName": "Glorious Plate", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5U3RyM0MiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/09903268a5/BodyStr3C.png", "craftable": {"category": "Body Armour"}, "armour": {"ar": [534, 534]}, "w": 2, "h": 3} +{"name": "Glyphic Fossil", "refName": "Glyphic Fossil", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvR2x5cGhpY0Zvc3NpbCIsInNjYWxlIjoxfV0/3e6fb90b9d/GlyphicFossil.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Gold", "refName": "Gold", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Gold Amulet", "refName": "Gold Amulet", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQ2IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9c1412b6dd/Amulet6.png", "craftable": {"category": "Amulet"}, "w": 1, "h": 1} +{"name": "Gold Circlet", "refName": "Gold Circlet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"es": [58, 58]}, "w": 2, "h": 2} +{"name": "Gold Key", "refName": "Gold Key", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Gold Key", "refName": "Gold Key", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Gold Ring", "refName": "Gold Ring", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/2164e44179/Ring4.png", "craftable": {"category": "Ring"}, "w": 1, "h": 1} +{"name": "Goldcast Cuffs", "refName": "Goldcast Cuffs", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [37, 37], "es": [14, 14]}, "w": 2, "h": 2} +{"name": "Golden Blade", "refName": "Golden Blade", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kU3dvcmRzL0RlbWlnb2RzQXV0aG9yaXR5IiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/be10fa5951/DemigodsAuthority.png", "craftable": {"category": "One Hand Sword"}, "w": 2, "h": 3} +{"name": "Golden Bracers", "refName": "Golden Bracers", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9HbG92ZXMvRGVtaWdvZHNUb3VjaCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/f0cc5eee0b/DemigodsTouch.png", "craftable": {"category": "Gloves"}, "w": 2, "h": 2} +{"name": "Golden Brooch", "refName": "Golden Brooch", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvR29sZGVuQnJvb2NoIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ef48504f78/GoldenBrooch.png", "craftable": {"category": "HeistEquipmentReward"}, "w": 1, "h": 1} +{"name": "Golden Caligae", "refName": "Golden Caligae", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9EZW1pZ29kc1N0cmlkZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/b58f10a704/DemigodsStride.png", "craftable": {"category": "Boots"}, "w": 2, "h": 2} +{"name": "Golden Ceremonial Mask", "refName": "Golden Ceremonial Mask", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Golden Charm", "refName": "Golden Charm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Charm"}, "w": 1, "h": 1} +{"name": "Golden Flame", "refName": "Golden Flame", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL0RlbWlnb2RzU2hpZWxkIiwidyI6MiwiaCI6Mywic2NhbGUiOjF9XQ/c838c8c4a7/DemigodsShield.png", "craftable": {"category": "Shield"}, "w": 2, "h": 3} +{"name": "Golden Grotesque", "refName": "Golden Grotesque", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Golden Hetzapal Idol", "refName": "Golden Hetzapal Idol", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Golden Hoop", "refName": "Golden Hoop", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvRGVtaWdvZHNCYW5kIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ed7fdf1fb6/DemigodsBand.png", "craftable": {"category": "Ring"}, "w": 1, "h": 1} +{"name": "Golden Idol", "refName": "Golden Idol", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Golden Mantle", "refName": "Golden Mantle", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9EZW1pZ29kc0FybW91ciIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/c491aef3bb/DemigodsArmour.png", "craftable": {"category": "Body Armour"}, "armour": {"ar": [51, 51], "ev": [44, 44], "es": [21, 21]}, "w": 2, "h": 3} +{"name": "Golden Matatl Idol", "refName": "Golden Matatl Idol", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Golden Napuatzi Idol", "refName": "Golden Napuatzi Idol", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Golden Obi", "refName": "Golden Obi", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvRGVtaWJlbHQxIiwidyI6MiwiaCI6MSwic2NhbGUiOjF9XQ/aff71be0d1/Demibelt1.png", "craftable": {"category": "Belt"}, "w": 2, "h": 1} +{"name": "Golden Prayer Idol", "refName": "Golden Prayer Idol", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Golden Sacrificial Glyph", "refName": "Golden Sacrificial Glyph", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Golden Slave Idol", "refName": "Golden Slave Idol", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Golden Visage", "refName": "Golden Visage", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0RlbWlnb2RzSW1tb3J0YWxpdHkiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/49ce309a2f/DemigodsImmortality.png", "craftable": {"category": "Helmet"}, "w": 2, "h": 2} +{"name": "Golden Watchstone", "refName": "Golden Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Golden Watchstone", "refName": "Golden Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Golden Watchstone", "refName": "Golden Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Golden Watchstone", "refName": "Golden Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Golden Watchstone", "refName": "Golden Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Golden Watchstone", "refName": "Golden Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Golden Watchstone", "refName": "Golden Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Golden Watchstone", "refName": "Golden Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Golden Wreath", "refName": "Golden Wreath", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0RlbWlnb2RzdHJpdW1waCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/4af6a35515/Demigodstriumph.png", "craftable": {"category": "Helmet"}, "w": 2, "h": 2} +{"name": "Golden Xoplotli Idol", "refName": "Golden Xoplotli Idol", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Goliath Greathelm", "refName": "Goliath Greathelm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [216, 216]}, "w": 2, "h": 2} +{"name": "Gothic Quarterstaff", "refName": "Gothic Quarterstaff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Warstaff"}, "w": 2, "h": 4} +{"name": "Graceful Quarterstaff", "refName": "Graceful Quarterstaff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Warstaff"}, "w": 2, "h": 4} +{"name": "Grand Cuisses", "refName": "Grand Cuisses", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [66, 66], "ev": [60, 60], "es": [23, 23]}, "w": 2, "h": 2} +{"name": "Grand Eldritch Ember", "refName": "Grand Eldritch Ember", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2xlYW5zaW5nRmlyZU9yYlJhbmszIiwic2NhbGUiOjF9XQ/0486f1ac82/CleansingFireOrbRank3.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Grand Eldritch Ichor", "refName": "Grand Eldritch Ichor", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVGFuZ2xlT3JiUmFuazMiLCJzY2FsZSI6MX1d/199f3b36f3/TangleOrbRank3.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Grand Idol", "refName": "Grand Idol", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Grand Life Flask", "refName": "Grand Life Flask", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrNSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/52f0b42c56/lifeflask5.png", "craftable": {"category": "Flask"}, "w": 1, "h": 2} +{"name": "Grand Mana Flask", "refName": "Grand Mana Flask", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrNSIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/035910bcbc/manaflask5.png", "craftable": {"category": "Flask"}, "w": 1, "h": 2} +{"name": "Grand Manchettes", "refName": "Grand Manchettes", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [44, 44], "ev": [40, 40], "es": [15, 15]}, "w": 2, "h": 2} +{"name": "Grand Mitts", "refName": "Grand Mitts", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [122, 122]}, "w": 2, "h": 2} +{"name": "Grand Regalia", "refName": "Grand Regalia", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [135, 135], "ev": [123, 123], "es": [46, 46]}, "w": 2, "h": 3} +{"name": "Grand Targe", "refName": "Grand Targe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [84, 84], "ev": [76, 76]}, "w": 2, "h": 3} +{"name": "Grand Visage", "refName": "Grand Visage", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [88, 88], "ev": [80, 80], "es": [30, 30]}, "w": 2, "h": 2} +{"name": "Grandmaster Keyring", "refName": "Grandmaster Keyring", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvR3JhbmRtYXN0ZXJLZXlyaW5nIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/0c53c85ef3/GrandmasterKeyring.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Grasping Voidstone", "refName": "Grasping Voidstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Great Flail", "refName": "Great Flail", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Flail"}, "w": 2, "h": 3} +{"name": "Greatbow", "refName": "Greatbow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Bow"}, "w": 2, "h": 4} +{"name": "Greater Eldritch Ember", "refName": "Greater Eldritch Ember", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2xlYW5zaW5nRmlyZU9yYlJhbmsyIiwic2NhbGUiOjF9XQ/698817b93d/CleansingFireOrbRank2.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Greater Eldritch Ichor", "refName": "Greater Eldritch Ichor", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVGFuZ2xlT3JiUmFuazIiLCJzY2FsZSI6MX1d/689d1897c7/TangleOrbRank2.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Greater Essence of Battle", "refName": "Greater Essence of Battle", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVhdGVyQXR0YWNrRXNzZW5jZSIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/e2bb5332b8/GreaterAttackEssence.png", "tradeTag": "greater-essence-of-battle", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Greater Essence of Electricity", "refName": "Greater Essence of Electricity", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVhdGVyTGlnaHRuaW5nRXNzZW5jZSIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/c6df464bb9/GreaterLightningEssence.png", "tradeTag": "greater-essence-of-electricity", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Greater Essence of Enhancement", "refName": "Greater Essence of Enhancement", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVhdGVyRGVmZW5jZXNFc3NlbmNlIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/a0ed2df82c/GreaterDefencesEssence.png", "tradeTag": "greater-essence-of-enhancement", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Greater Essence of Flames", "refName": "Greater Essence of Flames", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVhdGVyRmlyZUVzc2VuY2UiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/9b8d6e7b4e/GreaterFireEssence.png", "tradeTag": "greater-essence-of-flames", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Greater Essence of Haste", "refName": "Greater Essence of Haste", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVhdGVyU3BlZWRFc3NlbmNlIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/5a72f95c24/GreaterSpeedEssence.png", "tradeTag": "greater-essence-of-haste", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Greater Essence of Ice", "refName": "Greater Essence of Ice", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVhdGVyQ29sZEVzc2VuY2UiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/e5224bace0/GreaterColdEssence.png", "tradeTag": "greater-essence-of-ice", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Greater Essence of Ruin", "refName": "Greater Essence of Ruin", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVhdGVyQ2hhb3NFc3NlbmNlIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/5c71ec7418/GreaterChaosEssence.png", "tradeTag": "greater-essence-of-ruin", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Greater Essence of Sorcery", "refName": "Greater Essence of Sorcery", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVhdGVyQ2FzdGVyRXNzZW5jZSIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/14b7e4c8ef/GreaterCasterEssence.png", "tradeTag": "greater-essence-of-sorcery", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Greater Essence of Torment", "refName": "Greater Essence of Torment", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVhdGVyUGh5c2ljYWxFc3NlbmNlIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/a28c932def/GreaterPhysicalEssence.png", "tradeTag": "greater-essence-of-torment", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Greater Essence of the Body", "refName": "Greater Essence of the Body", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVhdGVyTGlmZUVzc2VuY2UiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/8906b401fe/GreaterLifeEssence.png", "tradeTag": "greater-essence-of-the-body", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Greater Essence of the Infinite", "refName": "Greater Essence of the Infinite", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVhdGVyQXR0cmlidXRlRXNzZW5jZSIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/8a8cb823af/GreaterAttributeEssence.png", "tradeTag": "greater-essence-of-the-infinite", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Greater Essence of the Mind", "refName": "Greater Essence of the Mind", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXNzZW5jZS9HcmVhdGVyTWFuYUVzc2VuY2UiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/f9e17e6d47/GreaterManaEssence.png", "tradeTag": "greater-essence-of-the-mind", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Greater Jeweller's Orb", "refName": "Greater Jeweller's Orb", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Greater Life Flask", "refName": "Greater Life Flask", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrNCIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/2601beea57/lifeflask4.png", "craftable": {"category": "Flask"}, "w": 1, "h": 2} +{"name": "Greater Mana Flask", "refName": "Greater Mana Flask", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrNCIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/54e8624da7/manaflask4.png", "craftable": {"category": "Flask"}, "w": 1, "h": 2} +{"name": "Greatmace", "refName": "Greatmace", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Mace"}, "w": 2, "h": 4} +{"name": "Green Mushroom", "refName": "Green Mushroom", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 2} +{"name": "Grim Feast", "refName": "Grim Feast", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Grounding Charm", "refName": "Grounding Charm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Charm"}, "w": 1, "h": 1} +{"name": "Guarded Flail", "refName": "Guarded Flail", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Flail"}, "w": 2, "h": 3} +{"name": "Guarded Helm", "refName": "Guarded Helm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [34, 34], "ev": [28, 28]}, "w": 2, "h": 2} +{"name": "Guardian Greathelm", "refName": "Guardian Greathelm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [243, 243]}, "w": 2, "h": 2} +{"name": "Haemocombustion Scroll", "refName": "Haemocombustion Scroll", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9IYXJiaW5nZXJUb2tlblN0YWZmIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/3bac452156/HarbingerTokenStaff.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Hailstorm Rounds", "refName": "Hailstorm Rounds", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Hallowed Sceptre", "refName": "Hallowed Sceptre", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Sceptre"}, "w": 2, "h": 3} +{"name": "Hammer of the Gods", "refName": "Hammer of the Gods", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Hand of Arimor", "refName": "Hand of Arimor", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Hand of Chayula", "refName": "Hand of Chayula", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MetaSkillGem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Hapihapi's Charm", "refName": "Hapihapi's Charm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Harbinger's Orb", "refName": "Harbinger's Orb", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFyYmluZ2VyT3JiIiwic2NhbGUiOjF9XQ/0a26e01f15/HarbingerOrb.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Harbinger's Shard", "refName": "Harbinger's Shard", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFyYmluZ2VyU2hhcmQiLCJzY2FsZSI6MX1d/ad19e27b2f/HarbingerShard.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Hardened Bracers", "refName": "Hardened Bracers", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ev": [90, 90]}, "w": 2, "h": 2} +{"name": "Hardleather Coat", "refName": "Hardleather Coat", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [295, 295]}, "w": 2, "h": 3} +{"name": "Hardwood Spear", "refName": "Hardwood Spear", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Spear"}, "w": 1, "h": 4} +{"name": "Hardwood Targe", "refName": "Hardwood Targe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [10, 10], "ev": [7, 7]}, "w": 2, "h": 3} +{"name": "Havoc Raiment", "refName": "Havoc Raiment", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"es": [184, 184]}, "w": 2, "h": 3} +{"name": "Head of the Winter Wolf", "refName": "Head of the Winter Wolf", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Heart Coil", "refName": "Heart Coil", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Heavy Belt", "refName": "Heavy Belt", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQmVsdHMvQmVsdDUiLCJ3IjoyLCJoIjoxLCJzY2FsZSI6MSwiZWxkZXIiOnRydWV9XQ/440fb77647/Belt5.png", "craftable": {"category": "Belt"}, "w": 2, "h": 1} +{"name": "Heavy Bow", "refName": "Heavy Bow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Bow"}, "w": 2, "h": 4} +{"name": "Heavy Crown", "refName": "Heavy Crown", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [75, 75], "es": [28, 28]}, "w": 2, "h": 2} +{"name": "Heavy Swing", "refName": "Heavy Swing", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Heft", "refName": "Heft", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Hefty Quarterstaff", "refName": "Hefty Quarterstaff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Warstaff"}, "w": 2, "h": 4} +{"name": "Heightened Curse", "refName": "Heightened Curse", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Helix Spear", "refName": "Helix Spear", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Spear"}, "w": 1, "h": 4} +{"name": "Herald of Ash", "refName": "Herald of Ash", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IZXJhbGRvZkFzaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/10697bcbfe/HeraldofAsh.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Herald of Ice", "refName": "Herald of Ice", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IZXJhbGRvZkljZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ce4dc073c8/HeraldofIce.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Herald of Plague", "refName": "Herald of Plague", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Herald of Thunder", "refName": "Herald of Thunder", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9IZXJhbGRvZlRodW5kZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/567f7d8ad4/HeraldofThunder.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Heraldric Tower Shield", "refName": "Heraldric Tower Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [85, 85]}, "w": 2, "h": 4} +{"name": "Herbalism", "refName": "Herbalism", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Hermit Garb", "refName": "Hermit Garb", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [16, 16], "es": [16, 16]}, "w": 2, "h": 3} +{"name": "Heroic Armour", "refName": "Heroic Armour", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [245, 245], "ev": [223, 223]}, "w": 2, "h": 3} +{"name": "Hewn Mask", "refName": "Hewn Mask", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [18, 18], "es": [12, 12]}, "w": 2, "h": 2} +{"name": "Hex Bloom", "refName": "Hex Bloom", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Hexblast", "refName": "Hexblast", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb29tQmxhc3RTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1866f44c9d/DoomBlastSkillGem.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Hexer's Robe", "refName": "Hexer's Robe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"es": [44, 44]}, "w": 2, "h": 3} +{"name": "Hidden Item", "refName": "Hidden Item", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 1, "h": 1} +{"name": "Hidden Item", "refName": "Hidden Item", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 1, "h": 2} +{"name": "Hidden Item", "refName": "Hidden Item", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 1, "h": 3} +{"name": "Hidden Item", "refName": "Hidden Item", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 1, "h": 4} +{"name": "Hidden Item", "refName": "Hidden Item", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 1} +{"name": "Hidden Item", "refName": "Hidden Item", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Hidden Item", "refName": "Hidden Item", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 3} +{"name": "Hidden Item", "refName": "Hidden Item", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 4} +{"name": "Hidden Item", "refName": "Hidden Item", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 3, "h": 2} +{"name": "Hidden Item", "refName": "Hidden Item", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 3, "h": 1} +{"name": "Hidden Item", "refName": "Hidden Item", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 4, "h": 1} +{"name": "Hidden Item", "refName": "Hidden Item", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 1, "h": 1} +{"name": "Hidden Item", "refName": "Hidden Item", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 1, "h": 2} +{"name": "Hidden Item", "refName": "Hidden Item", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 1, "h": 3} +{"name": "Hidden Item", "refName": "Hidden Item", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 1, "h": 4} +{"name": "Hidden Item", "refName": "Hidden Item", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 1} +{"name": "Hidden Item", "refName": "Hidden Item", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Hidden Item", "refName": "Hidden Item", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 3} +{"name": "Hidden Item", "refName": "Hidden Item", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 4} +{"name": "Hidden Item", "refName": "Hidden Item", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 3, "h": 2} +{"name": "Hidden Item", "refName": "Hidden Item", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 3, "h": 1} +{"name": "Hidden Item", "refName": "Hidden Item", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 4, "h": 1} +{"name": "High Velocity Rounds", "refName": "High Velocity Rounds", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Hinder", "refName": "Hinder", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Hollow Fossil", "refName": "Hollow Fossil", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvQW1iZXJFeWUiLCJzY2FsZSI6MX1d/542a2b7b0a/AmberEye.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Hollowpoint Arrowhead", "refName": "Hollowpoint Arrowhead", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQXJyb3doZWFkSG9sbG93cG9pbnQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/517705408e/ArrowheadHollowpoint.png", "craftable": {"category": "HeistEquipmentWeapon"}, "w": 2, "h": 2} +{"name": "Holy Descent", "refName": "Holy Descent", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Holy Flail", "refName": "Holy Flail", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Flail"}, "w": 2, "h": 3} +{"name": "Hooded Cloak", "refName": "Hooded Cloak", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvSG9vZGVkQ2xvYWsiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/cc1771375c/HoodedCloak.png", "craftable": {"category": "HeistEquipmentUtility"}, "w": 2, "h": 2} +{"name": "Hooded Mask", "refName": "Hooded Mask", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [37, 37], "es": [19, 19]}, "w": 2, "h": 2} +{"name": "Hook Axe", "refName": "Hook Axe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Axe"}, "w": 2, "h": 3} +{"name": "Hooked Claw", "refName": "Hooked Claw", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Claw"}, "w": 2, "h": 2} +{"name": "Horizon Shard", "refName": "Horizon Shard", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSG9yaXpvblNoYXJkIiwic2NhbGUiOjF9XQ/627ae5f273/HorizonShard.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Horned Crown", "refName": "Horned Crown", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [33, 33], "es": [15, 15]}, "w": 2, "h": 2} +{"name": "Hourglass", "refName": "Hourglass", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Hunter Hood", "refName": "Hunter Hood", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9IZWxtZXRzL0hlbG1ldERleDUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/00026e167c/HelmetDex5.png", "craftable": {"category": "Helmet"}, "armour": {"ev": [121, 121]}, "w": 2, "h": 2} +{"name": "Hunter's Exalted Orb", "refName": "Hunter's Exalted Orb", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5mbHVlbmNlIEV4YWx0cy9CYXNpbGlza09yYiIsInNjYWxlIjoxfV0/cd2131d564/BasiliskOrb.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Hunting Shoes", "refName": "Hunting Shoes", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ev": [50, 50], "es": [21, 21]}, "w": 2, "h": 2} +{"name": "Hunting Spear", "refName": "Hunting Spear", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Spear"}, "w": 1, "h": 4} +{"name": "Hydra Familiar", "refName": "Hydra Familiar", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MetaSkillGem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Hypothermia", "refName": "Hypothermia", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Ice Bite", "refName": "Ice Bite", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Ice Nova", "refName": "Ice Nova", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VOb3ZhIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/65f9588dac/IceNova.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Ice Shards", "refName": "Ice Shards", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Ice Shot", "refName": "Ice Shot", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTaG90IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6ebe439727/IceShot.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Ice Spear", "refName": "Ice Spear", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JY2VTcGVhciIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/1ba7d15d5d/IceSpear.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Ice Strike", "refName": "Ice Strike", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Icicle", "refName": "Icicle", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Icicle Flail", "refName": "Icicle Flail", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Flail"}, "w": 2, "h": 3} +{"name": "Icicle Staff", "refName": "Icicle Staff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Staff"}, "w": 1, "h": 4} +{"name": "Ignagduk's Ghastly Spear", "refName": "Ignagduk's Ghastly Spear", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 3} +{"name": "Ignition", "refName": "Ignition", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Immolate", "refName": "Immolate", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Impact Shockwave", "refName": "Impact Shockwave", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Impale", "refName": "Impale", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Impending Doom", "refName": "Impending Doom", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Imperial Robe", "refName": "Imperial Robe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"es": [108, 108]}, "w": 2, "h": 3} +{"name": "Imperial Staff Piece", "refName": "Imperial Staff Piece", "namespace": "ITEM", "icon": "", "craftable": {"category": "UniqueFragment"}, "w": 1, "h": 2} +{"name": "Imperial Staff Piece", "refName": "Imperial Staff Piece", "namespace": "ITEM", "icon": "", "craftable": {"category": "UniqueFragment"}, "w": 1, "h": 2} +{"name": "Imperial Staff Piece", "refName": "Imperial Staff Piece", "namespace": "ITEM", "icon": "", "craftable": {"category": "UniqueFragment"}, "w": 2, "h": 2} +{"name": "Impetus", "refName": "Impetus", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Impossible Crystal", "refName": "Impossible Crystal", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Imprint", "refName": "Imprint", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Imprinted Bestiary Orb", "refName": "Imprinted Bestiary Orb", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Incandescent Invitation", "refName": "Incandescent Invitation", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVlc3RJdGVtcy9DbGVhbnNpbmdGaXJlT3JiUXVlc3Q1Iiwic2NhbGUiOjF9XQ/d5ac505898/CleansingFireOrbQuest5.png", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Incandescent Invitation", "refName": "Incandescent Invitation", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVlc3RJdGVtcy9DbGVhbnNpbmdGaXJlT3JiUXVlc3Q1Iiwic2NhbGUiOjF9XQ/d5ac505898/CleansingFireOrbQuest5.png", "craftable": {"category": "MiscMapItem"}, "w": 1, "h": 1} +{"name": "Incendiary Shot", "refName": "Incendiary Shot", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Incense Relic", "refName": "Incense Relic", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Relic"}, "w": 4, "h": 1} +{"name": "Incense Trap", "refName": "Incense Trap", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "TrapTool"}, "w": 1, "h": 3} +{"name": "Incense of Keth", "refName": "Incense of Keth", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Incinerate", "refName": "Incinerate", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GbGFtZXRocm93ZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/d7c85f1aa4/Flamethrower.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Inevitable Critical", "refName": "Inevitable Critical", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Infernal Cry", "refName": "Infernal Cry", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9JbmZlcm5hbENyeSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/dccf976e24/InfernalCry.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Infernal Legion", "refName": "Infernal Legion", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Influenced Scouting Report", "refName": "Influenced Scouting Report", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Infused Engineer's Orb", "refName": "Infused Engineer's Orb", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Infused Incubator", "refName": "Infused Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRXNzZW5jZSIsInNjYWxlIjoxfV0/839bf6cef9/IncubationEssence.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Infused Incubator", "refName": "Infused Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRXNzZW5jZSIsInNjYWxlIjoxfV0/839bf6cef9/IncubationEssence.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Infusion", "refName": "Infusion", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Ingenuity", "refName": "Ingenuity", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Innervate", "refName": "Innervate", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Inscribed Ultimatum", "refName": "Inscribed Ultimatum", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VbHRpbWF0dW1UcmlhbEJhc2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b65f1edffb/UltimatumTrialBase.png", "craftable": {"category": "MiscMapItem"}, "w": 1, "h": 1} +{"name": "Inscribed Ultimatum", "refName": "Inscribed Ultimatum", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VbHRpbWF0dW1UcmlhbEJhc2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b65f1edffb/UltimatumTrialBase.png", "craftable": {"category": "MiscMapItem"}, "w": 1, "h": 1} +{"name": "Inscribed Ultimatum", "refName": "Inscribed Ultimatum", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VbHRpbWF0dW1UcmlhbEJhc2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b65f1edffb/UltimatumTrialBase.png", "craftable": {"category": "MiscMapItem"}, "w": 1, "h": 1} +{"name": "Inspiration", "refName": "Inspiration", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Inspiration Rune", "refName": "Inspiration Rune", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUnVuZXMvTWFuYVJlY292ZXJ5UnVuZSIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/5154db8cf8/ManaRecoveryRune.png", "tradeTag": "inspiration-rune", "craftable": {"category": "SoulCore"}, "w": 1, "h": 1} +{"name": "Instilling Orb", "refName": "Instilling Orb", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXhwZWRpdGlvbi9GbGFza0luamVjdG9yIiwic2NhbGUiOjF9XQ/efc518b1be/FlaskInjector.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Intense Agony", "refName": "Intense Agony", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Into the Breach", "refName": "Into the Breach", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Intricate Gloves", "refName": "Intricate Gloves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"es": [26, 26]}, "w": 2, "h": 2} +{"name": "Intricate Trap", "refName": "Intricate Trap", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "TrapTool"}, "w": 1, "h": 3} +{"name": "Invocation", "refName": "Invocation", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Inya's Key", "refName": "Inya's Key", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Inya's Key", "refName": "Inya's Key", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Iron Buckler", "refName": "Iron Buckler", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ev": [42, 42]}, "w": 2, "h": 2} +{"name": "Iron Crown", "refName": "Iron Crown", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [23, 23], "es": [12, 12]}, "w": 2, "h": 2} +{"name": "Iron Cuirass", "refName": "Iron Cuirass", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [96, 96]}, "w": 2, "h": 3} +{"name": "Iron Flail", "refName": "Iron Flail", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Flail"}, "w": 2, "h": 3} +{"name": "Iron Greatsword", "refName": "Iron Greatsword", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Sword"}, "w": 2, "h": 4} +{"name": "Iron Greaves", "refName": "Iron Greaves", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c1N0cjEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/10332346d1/BootsStr1.png", "craftable": {"category": "Boots"}, "armour": {"ar": [47, 47]}, "w": 2, "h": 2} +{"name": "Iron Ring", "refName": "Iron Ring", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/bf29c9d45e/Ring1.png", "craftable": {"category": "Ring"}, "w": 1, "h": 1} +{"name": "Iron Rune", "refName": "Iron Rune", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUnVuZXMvRW5oYW5jZVJ1bmUiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/cfeb426ee0/EnhanceRune.png", "tradeTag": "iron-rune", "craftable": {"category": "SoulCore"}, "w": 1, "h": 1} +{"name": "Ironclad Vestments", "refName": "Ironclad Vestments", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [114, 114], "es": [43, 43]}, "w": 2, "h": 3} +{"name": "Ironhead Spear", "refName": "Ironhead Spear", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Spear"}, "w": 1, "h": 4} +{"name": "Ironwood", "refName": "Ironwood", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Ivory Watchstone", "refName": "Ivory Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Jade Amulet", "refName": "Jade Amulet", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQ0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/ffc5888355/Amulet4.png", "craftable": {"category": "Amulet"}, "w": 1, "h": 1} +{"name": "Jade Club", "refName": "Jade Club", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Mace"}, "w": 2, "h": 3} +{"name": "Jade Focus", "refName": "Jade Focus", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Focus"}, "armour": {"es": [40, 40]}, "w": 2, "h": 3} +{"name": "Jade Tiara", "refName": "Jade Tiara", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"es": [69, 69]}, "w": 2, "h": 2} +{"name": "Jagged Fossil", "refName": "Jagged Fossil", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvSmFnZ2VkRm9zc2lsIiwic2NhbGUiOjF9XQ/ca9c17d7d9/JaggedFossil.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Jagged Greataxe", "refName": "Jagged Greataxe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Axe"}, "w": 2, "h": 4} +{"name": "Jagged Ground", "refName": "Jagged Ground", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Jamanra, the Legendary Warrior", "refName": "Jamanra, the Legendary Warrior", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Jewelled Gloves", "refName": "Jewelled Gloves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"es": [22, 22]}, "w": 2, "h": 2} +{"name": "Jewellery Recombinator", "refName": "Jewellery Recombinator", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Jingling Crest Shield", "refName": "Jingling Crest Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [41, 41], "es": [16, 16]}, "w": 2, "h": 3} +{"name": "Journeyman Cartographer's Seal", "refName": "Journeyman Cartographer's Seal", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Juggernaut Plate", "refName": "Juggernaut Plate", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [269, 269]}, "w": 2, "h": 3} +{"name": "Kabala Clan Relic", "refName": "Kabala Clan Relic", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 2} +{"name": "Kalguuran Incubator", "refName": "Kalguuran Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRXhwZWRpdGlvbiIsInNjYWxlIjoxfV0/2916070090/IncubationExpedition.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Kalguuran Incubator", "refName": "Kalguuran Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRXhwZWRpdGlvbiIsInNjYWxlIjoxfV0/2916070090/IncubationExpedition.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Karst's Lockpicks", "refName": "Karst's Lockpicks", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Keen Greatsword", "refName": "Keen Greatsword", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Sword"}, "w": 2, "h": 4} +{"name": "Keth Raiment", "refName": "Keth Raiment", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"es": [70, 70]}, "w": 2, "h": 3} +{"name": "Key to Decay", "refName": "Key to Decay", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Key to the Crucible", "refName": "Key to the Crucible", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 2, "h": 2} +{"name": "Keyblade", "refName": "Keyblade", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Sword"}, "w": 2, "h": 4} +{"name": "Killing Palm", "refName": "Killing Palm", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Kirac's Memory", "refName": "Kirac's Memory", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWVtb3J5TGluZS9LaXJhY01lbW9yeUl0ZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/def36e7b78/KiracMemoryItem.png", "craftable": {"category": "MemoryLine"}, "w": 1, "h": 1} +{"name": "Knight Armour", "refName": "Knight Armour", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [148, 148], "ev": [133, 133]}, "w": 2, "h": 3} +{"name": "Kris Knife", "refName": "Kris Knife", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Dagger"}, "w": 1, "h": 3} +{"name": "Lace Hood", "refName": "Lace Hood", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [67, 67]}, "w": 2, "h": 2} +{"name": "Laced Boots", "refName": "Laced Boots", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ev": [38, 38]}, "w": 2, "h": 2} +{"name": "Lacerate", "refName": "Lacerate", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Eb3VibGVTbGFzaCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/fb44a829bd/DoubleSlash.png", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Lamellar Mail", "refName": "Lamellar Mail", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [167, 167], "ev": [151, 151]}, "w": 2, "h": 3} +{"name": "Laminate Buckler", "refName": "Laminate Buckler", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ev": [99, 99]}, "w": 2, "h": 2} +{"name": "Lapis Amulet", "refName": "Lapis Amulet", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9BbXVsZXQ1IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/998c42287b/Amulet5.png", "craftable": {"category": "Amulet"}, "w": 1, "h": 1} +{"name": "Large Soul Core", "refName": "Large Soul Core", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Last Gasp", "refName": "Last Gasp", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Lasting Shock", "refName": "Lasting Shock", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Lattice Sandals", "refName": "Lattice Sandals", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"es": [25, 25]}, "w": 2, "h": 2} +{"name": "Lavish Crown", "refName": "Lavish Crown", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [110, 110], "es": [39, 39]}, "w": 2, "h": 2} +{"name": "Layered Gauntlets", "refName": "Layered Gauntlets", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [22, 22], "ev": [18, 18]}, "w": 2, "h": 2} +{"name": "Lazuli Ring", "refName": "Lazuli Ring", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Ring"}, "w": 1, "h": 1} +{"name": "Lead Trap", "refName": "Lead Trap", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "TrapTool"}, "w": 2, "h": 2} +{"name": "Leaden Greathammer", "refName": "Leaden Greathammer", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Mace"}, "w": 2, "h": 4} +{"name": "Leap Slam", "refName": "Leap Slam", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MZWFwU2xhbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f65891de7a/LeapSlam.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Leather Bracers", "refName": "Leather Bracers", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQnJhY2VyQmFzZVR5cGVfbGVhdGhlciIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/863a42f603/BracerBaseType_leather.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Leather Buckler", "refName": "Leather Buckler", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ev": [12, 12]}, "w": 2, "h": 2} +{"name": "Leather Vest", "refName": "Leather Vest", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [30, 30]}, "w": 2, "h": 3} +{"name": "Leatherbound Hood", "refName": "Leatherbound Hood", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [177, 177]}, "w": 2, "h": 2} +{"name": "Leatherplate Boots", "refName": "Leatherplate Boots", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ev": [135, 135]}, "w": 2, "h": 2} +{"name": "Legion Sword Piece", "refName": "Legion Sword Piece", "namespace": "ITEM", "icon": "", "craftable": {"category": "UniqueFragment"}, "w": 1, "h": 2} +{"name": "Legion Sword Piece", "refName": "Legion Sword Piece", "namespace": "ITEM", "icon": "", "craftable": {"category": "UniqueFragment"}, "w": 1, "h": 2} +{"name": "Legion Sword Piece", "refName": "Legion Sword Piece", "namespace": "ITEM", "icon": "", "craftable": {"category": "UniqueFragment"}, "w": 2, "h": 1} +{"name": "Lesser Eldritch Ember", "refName": "Lesser Eldritch Ember", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ2xlYW5zaW5nRmlyZU9yYlJhbmsxIiwic2NhbGUiOjF9XQ/c7df0e0316/CleansingFireOrbRank1.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Lesser Eldritch Ichor", "refName": "Lesser Eldritch Ichor", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVGFuZ2xlT3JiUmFuazEiLCJzY2FsZSI6MX1d/70e5e53590/TangleOrbRank1.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Lesser Jeweller's Orb", "refName": "Lesser Jeweller's Orb", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Lesser Life Flask", "refName": "Lesser Life Flask", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Flask"}, "w": 1, "h": 2} +{"name": "Lesser Mana Flask", "refName": "Lesser Mana Flask", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Flask"}, "w": 1, "h": 2} +{"name": "Leverage", "refName": "Leverage", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Life Bounty", "refName": "Life Bounty", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Life Drain", "refName": "Life Drain", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Life Remnants", "refName": "Life Remnants", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Life Thief", "refName": "Life Thief", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Lifetap", "refName": "Lifetap", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Light Halberd", "refName": "Light Halberd", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Axe"}, "w": 2, "h": 4} +{"name": "Lightning Arrow", "refName": "Lightning Arrow", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdBcnJvdyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/f5ad901f20/LightningArrow.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Lightning Bolt", "refName": "Lightning Bolt", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Lightning Bolt", "refName": "Lightning Bolt", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Lightning Conduit", "refName": "Lightning Conduit", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9FbmVyZ3lSZWxlYXNlU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/5a89cebfb0/EnergyReleaseSkillGem.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Lightning Exposure", "refName": "Lightning Exposure", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Lightning Infusion", "refName": "Lightning Infusion", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Lightning Mastery", "refName": "Lightning Mastery", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Lightning Penetration", "refName": "Lightning Penetration", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Lightning Rod", "refName": "Lightning Rod", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Lightning Storm", "refName": "Lightning Storm", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Lightning Warp", "refName": "Lightning Warp", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdXYXJwIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5f79874aa8/LightningWarp.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Linen Belt", "refName": "Linen Belt", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Belt"}, "w": 2, "h": 1} +{"name": "Linen Wraps", "refName": "Linen Wraps", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ev": [18, 18], "es": [9, 9]}, "w": 2, "h": 2} +{"name": "Lingering Illusion", "refName": "Lingering Illusion", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Living Bomb", "refName": "Living Bomb", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Living Ice", "refName": "Living Ice", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Lizardscale Boots", "refName": "Lizardscale Boots", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ev": [90, 90]}, "w": 2, "h": 2} +{"name": "Lockdown", "refName": "Lockdown", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Long Belt", "refName": "Long Belt", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Belt"}, "w": 2, "h": 1} +{"name": "Long Fuse", "refName": "Long Fuse", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Long Quarterstaff", "refName": "Long Quarterstaff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Warstaff"}, "w": 2, "h": 4} +{"name": "Longshot", "refName": "Longshot", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Lucent Fossil", "refName": "Lucent Fossil", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvTHVjZW50Rm9zc2lsIiwic2NhbGUiOjF9XQ/0cf6de72d4/LucentFossil.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Lumen Mace", "refName": "Lumen Mace", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Mace"}, "w": 2, "h": 3} +{"name": "Luminous Astrolabe", "refName": "Luminous Astrolabe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Lunar Amulet", "refName": "Lunar Amulet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Amulet"}, "w": 1, "h": 1} +{"name": "Lupine Sceptre", "refName": "Lupine Sceptre", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Sceptre"}, "w": 2, "h": 3} +{"name": "Lustrous Ward", "refName": "Lustrous Ward", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvTHVtaW5vdXNXYXJkIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/0be7aaf163/LuminousWard.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "MTX Wrapper", "refName": "MTX Wrapper", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 1, "h": 1} +{"name": "MTX Wrapper", "refName": "MTX Wrapper", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 1, "h": 2} +{"name": "MTX Wrapper", "refName": "MTX Wrapper", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 1} +{"name": "MTX Wrapper", "refName": "MTX Wrapper", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "MTX Wrapper", "refName": "MTX Wrapper", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 3} +{"name": "Mace Strike", "refName": "Mace Strike", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Mace Strike", "refName": "Mace Strike", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Mace Strike", "refName": "Mace Strike", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Maddening Incubator", "refName": "Maddening Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRGVsaXJpdW0iLCJzY2FsZSI6MX1d/74f49a934c/IncubationDelirium.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Maddening Incubator", "refName": "Maddening Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRGVsaXJpdW0iLCJzY2FsZSI6MX1d/74f49a934c/IncubationDelirium.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Maddening Object", "refName": "Maddening Object", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Maggot Husk", "refName": "Maggot Husk", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 3} +{"name": "Magma Barrier", "refName": "Magma Barrier", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Magnetic Salvo", "refName": "Magnetic Salvo", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Magnified Effect", "refName": "Magnified Effect", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Magus Focus", "refName": "Magus Focus", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Focus"}, "armour": {"es": [52, 52]}, "w": 2, "h": 3} +{"name": "Magus Tiara", "refName": "Magus Tiara", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"es": [84, 84]}, "w": 2, "h": 2} +{"name": "Mail Belt", "refName": "Mail Belt", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Belt"}, "w": 2, "h": 1} +{"name": "Mail Breaker", "refName": "Mail Breaker", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Dagger"}, "w": 1, "h": 3} +{"name": "Mail Coat", "refName": "Mail Coat", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [406, 406]}, "w": 2, "h": 3} +{"name": "Mail Sabatons", "refName": "Mail Sabatons", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [19, 19], "ev": [15, 15]}, "w": 2, "h": 2} +{"name": "Mail Vestments", "refName": "Mail Vestments", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [67, 67], "es": [28, 28]}, "w": 2, "h": 3} +{"name": "Maim", "refName": "Maim", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Makeshift Crossbow", "refName": "Makeshift Crossbow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Crossbow"}, "w": 2, "h": 4} +{"name": "Malice", "refName": "Malice", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Mana Bounty", "refName": "Mana Bounty", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Mana Drain", "refName": "Mana Drain", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Mana Flare", "refName": "Mana Flare", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Mana Remnants", "refName": "Mana Remnants", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Mana Tempest", "refName": "Mana Tempest", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Mantra of Destruction", "refName": "Mantra of Destruction", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Marabout Garb", "refName": "Marabout Garb", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [56, 56], "es": [28, 28]}, "w": 2, "h": 3} +{"name": "Maraketh Cuirass", "refName": "Maraketh Cuirass", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [141, 141]}, "w": 2, "h": 3} +{"name": "Martial Tempo", "refName": "Martial Tempo", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Martyr Crown", "refName": "Martyr Crown", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [66, 66], "es": [25, 25]}, "w": 2, "h": 2} +{"name": "Master Cartographer's Seal", "refName": "Master Cartographer's Seal", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Master Key", "refName": "Master Key", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Master Lockpick", "refName": "Master Lockpick", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvTWFzdGVyTG9ja3BpY2siLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/c0ac4addef/MasterLockpick.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Mastodon Tusks", "refName": "Mastodon Tusks", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 3, "h": 2} +{"name": "Maul", "refName": "Maul", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Maven's Invitation: Glennach Cairns", "refName": "Maven's Invitation: Glennach Cairns", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Glennach Cairns", "refName": "Maven's Invitation: Glennach Cairns", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Glennach Cairns", "refName": "Maven's Invitation: Glennach Cairns", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Glennach Cairns", "refName": "Maven's Invitation: Glennach Cairns", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Glennach Cairns", "refName": "Maven's Invitation: Glennach Cairns", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MiscMapItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Haewark Hamlet", "refName": "Maven's Invitation: Haewark Hamlet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Haewark Hamlet", "refName": "Maven's Invitation: Haewark Hamlet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Haewark Hamlet", "refName": "Maven's Invitation: Haewark Hamlet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Haewark Hamlet", "refName": "Maven's Invitation: Haewark Hamlet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Haewark Hamlet", "refName": "Maven's Invitation: Haewark Hamlet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MiscMapItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Lex Ejoris", "refName": "Maven's Invitation: Lex Ejoris", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Lex Ejoris", "refName": "Maven's Invitation: Lex Ejoris", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Lex Ejoris", "refName": "Maven's Invitation: Lex Ejoris", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Lex Ejoris", "refName": "Maven's Invitation: Lex Ejoris", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Lex Ejoris", "refName": "Maven's Invitation: Lex Ejoris", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MiscMapItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Lex Proxima", "refName": "Maven's Invitation: Lex Proxima", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Lex Proxima", "refName": "Maven's Invitation: Lex Proxima", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Lex Proxima", "refName": "Maven's Invitation: Lex Proxima", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Lex Proxima", "refName": "Maven's Invitation: Lex Proxima", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Lex Proxima", "refName": "Maven's Invitation: Lex Proxima", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MiscMapItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Lira Arthain", "refName": "Maven's Invitation: Lira Arthain", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Lira Arthain", "refName": "Maven's Invitation: Lira Arthain", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Lira Arthain", "refName": "Maven's Invitation: Lira Arthain", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Lira Arthain", "refName": "Maven's Invitation: Lira Arthain", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Lira Arthain", "refName": "Maven's Invitation: Lira Arthain", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MiscMapItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: New Vastir", "refName": "Maven's Invitation: New Vastir", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: New Vastir", "refName": "Maven's Invitation: New Vastir", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: New Vastir", "refName": "Maven's Invitation: New Vastir", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: New Vastir", "refName": "Maven's Invitation: New Vastir", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: New Vastir", "refName": "Maven's Invitation: New Vastir", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MiscMapItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: The Atlas", "refName": "Maven's Invitation: The Atlas", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: The Atlas", "refName": "Maven's Invitation: The Atlas", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: The Atlas", "refName": "Maven's Invitation: The Atlas", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: The Atlas", "refName": "Maven's Invitation: The Atlas", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: The Atlas", "refName": "Maven's Invitation: The Atlas", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MiscMapItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: The Elderslayers", "refName": "Maven's Invitation: The Elderslayers", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MiscMapItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: The Feared", "refName": "Maven's Invitation: The Feared", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MiscMapItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: The Forgotten", "refName": "Maven's Invitation: The Forgotten", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MiscMapItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: The Formed", "refName": "Maven's Invitation: The Formed", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MiscMapItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: The Hidden", "refName": "Maven's Invitation: The Hidden", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MiscMapItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: The Twisted", "refName": "Maven's Invitation: The Twisted", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MiscMapItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Tirn's End", "refName": "Maven's Invitation: Tirn's End", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Tirn's End", "refName": "Maven's Invitation: Tirn's End", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Tirn's End", "refName": "Maven's Invitation: Tirn's End", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Tirn's End", "refName": "Maven's Invitation: Tirn's End", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Tirn's End", "refName": "Maven's Invitation: Tirn's End", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MiscMapItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Valdo's Rest", "refName": "Maven's Invitation: Valdo's Rest", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Valdo's Rest", "refName": "Maven's Invitation: Valdo's Rest", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Valdo's Rest", "refName": "Maven's Invitation: Valdo's Rest", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Valdo's Rest", "refName": "Maven's Invitation: Valdo's Rest", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Maven's Invitation: Valdo's Rest", "refName": "Maven's Invitation: Valdo's Rest", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MiscMapItem"}, "w": 1, "h": 1} +{"name": "Meat Shield", "refName": "Meat Shield", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Medallion Trap", "refName": "Medallion Trap", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "TrapTool"}, "w": 2, "h": 2} +{"name": "Meditate", "refName": "Meditate", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Medium Life Flask", "refName": "Medium Life Flask", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbGlmZWZsYXNrMiIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/c06020a713/lifeflask2.png", "craftable": {"category": "Flask"}, "w": 1, "h": 2} +{"name": "Medium Mana Flask", "refName": "Medium Mana Flask", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzksMTQseyJmIjoiMkRJdGVtcy9GbGFza3MvbWFuYWZsYXNrMiIsInciOjEsImgiOjIsInNjYWxlIjoxLCJsZXZlbCI6MX1d/3c612edd38/manaflask2.png", "craftable": {"category": "Flask"}, "w": 1, "h": 2} +{"name": "Medium Soul Core", "refName": "Medium Soul Core", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "InstanceLocalItem"}, "w": 2, "h": 2} +{"name": "Medium Soul Core", "refName": "Medium Soul Core", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "InstanceLocalItem"}, "w": 2, "h": 2} +{"name": "Memory Fragment I", "refName": "Memory Fragment I", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 1} +{"name": "Memory Fragment II", "refName": "Memory Fragment II", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 1} +{"name": "Memory Fragment III", "refName": "Memory Fragment III", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 1} +{"name": "Memory Fragment IV", "refName": "Memory Fragment IV", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 1} +{"name": "Memory Fragment IX", "refName": "Memory Fragment IX", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 1} +{"name": "Memory Fragment V", "refName": "Memory Fragment V", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 1} +{"name": "Memory Fragment VI", "refName": "Memory Fragment VI", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 1} +{"name": "Memory Fragment VII", "refName": "Memory Fragment VII", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 1} +{"name": "Memory Fragment VIII", "refName": "Memory Fragment VIII", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 1} +{"name": "Memory Fragment X", "refName": "Memory Fragment X", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 1} +{"name": "Memory Fragment XI", "refName": "Memory Fragment XI", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 1} +{"name": "Memory Fragment XII", "refName": "Memory Fragment XII", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 1} +{"name": "Memory Fragment XIII", "refName": "Memory Fragment XIII", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 1} +{"name": "Memory Fragment XIV", "refName": "Memory Fragment XIV", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 1} +{"name": "Memory Fragment XV", "refName": "Memory Fragment XV", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 1} +{"name": "Merveil's Wedding Dress", "refName": "Merveil's Wedding Dress", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Messer", "refName": "Messer", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Sword"}, "w": 2, "h": 3} +{"name": "Metallic Fossil", "refName": "Metallic Fossil", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvTWV0YWxsaWNGb3NzaWwiLCJzY2FsZSI6MX1d/5a8a5bd1b1/MetallicFossil.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Mind Rune", "refName": "Mind Rune", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUnVuZXMvTWFuYVJ1bmUiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/4be6331480/ManaRune.png", "tradeTag": "mind-rune", "craftable": {"category": "SoulCore"}, "w": 1, "h": 1} +{"name": "Minion Instability", "refName": "Minion Instability", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Minion Mastery", "refName": "Minion Mastery", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Minion Pact", "refName": "Minion Pact", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Mirror Shard", "refName": "Mirror Shard", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWlycm9yU2hhcmQiLCJzY2FsZSI6MX1d/698183ea2b/MirrorShard.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Mirror of Kalandra", "refName": "Mirror of Kalandra", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lEdXBsaWNhdGUiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/26bc31680e/CurrencyDuplicate.png", "tradeTag": "mirror", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Mirror of Teklatipitzi", "refName": "Mirror of Teklatipitzi", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Mobility", "refName": "Mobility", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Molten Blast", "refName": "Molten Blast", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Momentum", "refName": "Momentum", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Monastic Garb", "refName": "Monastic Garb", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [162, 162], "es": [63, 63]}, "w": 2, "h": 3} +{"name": "Monument Greataxe", "refName": "Monument Greataxe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Axe"}, "w": 2, "h": 4} +{"name": "Monument Greaves", "refName": "Monument Greaves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [150, 150]}, "w": 2, "h": 2} +{"name": "Moon Dagger", "refName": "Moon Dagger", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Dagger"}, "w": 1, "h": 3} +{"name": "Morning Star", "refName": "Morning Star", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Ud29IYW5kTWFjZXMvVHdvSGFuZE1hY2U4IiwidyI6MiwiaCI6NCwic2NhbGUiOjF9XQ/d7f01f7a37/TwoHandMace8.png", "craftable": {"category": "One Hand Mace"}, "w": 2, "h": 3} +{"name": "Morphing Incubator", "refName": "Morphing Incubator", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Morphing Incubator", "refName": "Morphing Incubator", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Mortal Grief", "refName": "Mortal Grief", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyVmFhbDA0Iiwic2NhbGUiOjF9XQ/fa8dd8fea2/UberVaal04.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Mortal Grief", "refName": "Mortal Grief", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyVmFhbDA0Iiwic2NhbGUiOjF9XQ/fa8dd8fea2/UberVaal04.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Mortal Hope", "refName": "Mortal Hope", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyVmFhbDAyIiwic2NhbGUiOjF9XQ/9f6c126c9e/UberVaal02.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Mortal Hope", "refName": "Mortal Hope", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyVmFhbDAyIiwic2NhbGUiOjF9XQ/9f6c126c9e/UberVaal02.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Mortal Ignorance", "refName": "Mortal Ignorance", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyVmFhbDAzIiwic2NhbGUiOjF9XQ/3d126fe51b/UberVaal03.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Mortal Ignorance", "refName": "Mortal Ignorance", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyVmFhbDAzIiwic2NhbGUiOjF9XQ/3d126fe51b/UberVaal03.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Mortal Rage", "refName": "Mortal Rage", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyVmFhbDAxIiwic2NhbGUiOjF9XQ/9dca208434/UberVaal01.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Mortal Rage", "refName": "Mortal Rage", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9VYmVyVmFhbDAxIiwic2NhbGUiOjF9XQ/9dca208434/UberVaal01.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Mortal Set", "refName": "Mortal Set", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 2, "h": 2} +{"name": "Mosaic Targe", "refName": "Mosaic Targe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [69, 69], "ev": [62, 62]}, "w": 2, "h": 3} +{"name": "Moulded Mitts", "refName": "Moulded Mitts", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [68, 68]}, "w": 2, "h": 2} +{"name": "Murderous Intent", "refName": "Murderous Intent", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Mysterious Incubator", "refName": "Mysterious Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uR2VuZXJpYyIsInNjYWxlIjoxfV0/9476a818a5/IncubationGeneric.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Mysterious Incubator", "refName": "Mysterious Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uR2VuZXJpYyIsInNjYWxlIjoxfV0/9476a818a5/IncubationGeneric.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Mystery Box", "refName": "Mystery Box", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Mystery Leaguestone", "refName": "Mystery Leaguestone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Mystic Raiment", "refName": "Mystic Raiment", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"es": [100, 100]}, "w": 2, "h": 3} +{"name": "Nashta's War Journal", "refName": "Nashta's War Journal", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Naval Contract", "refName": "Naval Contract", "namespace": "ITEM", "icon": "", "craftable": {"category": "HeistContract"}, "w": 1, "h": 1} +{"name": "Necromancy Net", "refName": "Necromancy Net", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Negotiate with the Client", "refName": "Negotiate with the Client", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Neural Catalyst", "refName": "Neural Catalyst", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaENhdGFseXN0TWFuYSIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/61d3a7a832/BreachCatalystMana.png", "tradeTag": "neural-catalyst", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Neural Overload", "refName": "Neural Overload", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Niko's Memory", "refName": "Niko's Memory", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWVtb3J5TGluZS9OaWtvTWVtb3J5SXRlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5c560ea8fd/NikoMemoryItem.png", "craftable": {"category": "MemoryLine"}, "w": 1, "h": 1} +{"name": "Nimble Reload", "refName": "Nimble Reload", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Noble Circlet", "refName": "Noble Circlet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"es": [71, 71]}, "w": 2, "h": 2} +{"name": "Oak Greathammer", "refName": "Oak Greathammer", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Mace"}, "w": 2, "h": 4} +{"name": "Obscured Incubator", "refName": "Obscured Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQnJlYWNoIiwic2NhbGUiOjF9XQ/e9b256aff0/IncubationBreach.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Obscured Incubator", "refName": "Obscured Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQnJlYWNoIiwic2NhbGUiOjF9XQ/e9b256aff0/IncubationBreach.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Obsidian Apex Sentinel", "refName": "Obsidian Apex Sentinel", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "SentinelDrone"}, "w": 2, "h": 2} +{"name": "Obsidian Dagger", "refName": "Obsidian Dagger", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Dagger"}, "w": 1, "h": 3} +{"name": "Obsidian Greatsword", "refName": "Obsidian Greatsword", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Sword"}, "w": 2, "h": 4} +{"name": "Obsidian Pandemonium Sentinel", "refName": "Obsidian Pandemonium Sentinel", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "SentinelDrone"}, "w": 2, "h": 2} +{"name": "Obsidian Sharpening Stone", "refName": "Obsidian Sharpening Stone", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvT2JzaWRpYW5TaGFycGVuaW5nU3RvbmUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/3b585d05fe/ObsidianSharpeningStone.png", "craftable": {"category": "HeistEquipmentWeapon"}, "w": 2, "h": 2} +{"name": "Obsidian Stalker Sentinel", "refName": "Obsidian Stalker Sentinel", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "SentinelDrone"}, "w": 2, "h": 2} +{"name": "Ochre Sceptre", "refName": "Ochre Sceptre", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9TY2VwdGVycy9zY2VwdGVyNiIsInciOjIsImgiOjMsInNjYWxlIjoxfV0/35e149f5cf/scepter6.png", "craftable": {"category": "Sceptre"}, "w": 2, "h": 3} +{"name": "Offering Wand", "refName": "Offering Wand", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Wand"}, "w": 1, "h": 3} +{"name": "Offering to the Goddess", "refName": "Offering to the Goddess", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9MYWJ5cmludGgiLCJzY2FsZSI6MX1d/24fe6dc261/Labyrinth.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Ogham Candelabra", "refName": "Ogham Candelabra", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Oil Extractor", "refName": "Oil Extractor", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT2lscy9JY2hvckV4dHJhY3RvciIsInNjYWxlIjoxfV0/e020224caf/IchorExtractor.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Oil Grenade", "refName": "Oil Grenade", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Omen Crest Shield", "refName": "Omen Crest Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [50, 50], "es": [19, 19]}, "w": 2, "h": 3} +{"name": "Omen Sceptre", "refName": "Omen Sceptre", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Sceptre"}, "w": 2, "h": 3} +{"name": "Omen of Amelioration", "refName": "Omen of Amelioration", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT21lbnMvVm9vZG9vT21lbnMzQmx1ZSIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/b5ee965352/VoodooOmens3Blue.png", "tradeTag": "omen-of-amelioration", "craftable": {"category": "Omen"}, "w": 1, "h": 1} +{"name": "Omen of Corruption", "refName": "Omen of Corruption", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT21lbnMvVm9vZG9vT21lbnMzUmVkIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/9cfdcc9e1a/VoodooOmens3Red.png", "tradeTag": "omen-of-corruption", "craftable": {"category": "Omen"}, "w": 1, "h": 1} +{"name": "Omen of Dextral Alchemy", "refName": "Omen of Dextral Alchemy", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT21lbnMvVm9vZG9vT21lbnMyR3JlZW4iLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/0ff0cfbb93/VoodooOmens2Green.png", "tradeTag": "omen-of-dextral-alchemy", "craftable": {"category": "Omen"}, "w": 1, "h": 1} +{"name": "Omen of Dextral Annulment", "refName": "Omen of Dextral Annulment", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT21lbnMvVm9vZG9vT21lbnMzUHVycGxlIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/d901658529/VoodooOmens3Purple.png", "tradeTag": "omen-of-dextral-annulment", "craftable": {"category": "Omen"}, "w": 1, "h": 1} +{"name": "Omen of Dextral Coronation", "refName": "Omen of Dextral Coronation", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT21lbnMvVm9vZG9vT21lbnMyUmVkIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/f1bbb78614/VoodooOmens2Red.png", "tradeTag": "omen-of-dextral-coronation", "craftable": {"category": "Omen"}, "w": 1, "h": 1} +{"name": "Omen of Dextral Erasure", "refName": "Omen of Dextral Erasure", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT21lbnMvVm9vZG9vT21lbnMzRGFyayIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/6e2bb52963/VoodooOmens3Dark.png", "tradeTag": "omen-of-dextral-erasure", "craftable": {"category": "Omen"}, "w": 1, "h": 1} +{"name": "Omen of Dextral Exaltation", "refName": "Omen of Dextral Exaltation", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT21lbnMvVm9vZG9vT21lbnMzWWVsbG93Iiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/ed7cf06fa4/VoodooOmens3Yellow.png", "tradeTag": "omen-of-dextral-exaltation", "craftable": {"category": "Omen"}, "w": 1, "h": 1} +{"name": "Omen of Greater Annulment", "refName": "Omen of Greater Annulment", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT21lbnMvVm9vZG9vT21lbnMxUHVycGxlIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/a6848dff1c/VoodooOmens1Purple.png", "tradeTag": "omen-of-greater-annulment", "craftable": {"category": "Omen"}, "w": 1, "h": 1} +{"name": "Omen of Greater Exaltation", "refName": "Omen of Greater Exaltation", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT21lbnMvVm9vZG9vT21lbnMxWWVsbG93Iiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/22d9b6478d/VoodooOmens1Yellow.png", "tradeTag": "omen-of-greater-exaltation", "craftable": {"category": "Omen"}, "w": 1, "h": 1} +{"name": "Omen of Refreshment", "refName": "Omen of Refreshment", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT21lbnMvVm9vZG9vT21lbnMxQmx1ZSIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/213474d1d5/VoodooOmens1Blue.png", "tradeTag": "omen-of-refreshment", "craftable": {"category": "Omen"}, "w": 1, "h": 1} +{"name": "Omen of Resurgence", "refName": "Omen of Resurgence", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT21lbnMvVm9vZG9vT21lbnMyQmx1ZSIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/044d5086da/VoodooOmens2Blue.png", "tradeTag": "omen-of-resurgence", "craftable": {"category": "Omen"}, "w": 1, "h": 1} +{"name": "Omen of Sinistral Alchemy", "refName": "Omen of Sinistral Alchemy", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT21lbnMvVm9vZG9vT21lbnMxR3JlZW4iLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/11c49d2322/VoodooOmens1Green.png", "tradeTag": "omen-of-sinistral-alchemy", "craftable": {"category": "Omen"}, "w": 1, "h": 1} +{"name": "Omen of Sinistral Annulment", "refName": "Omen of Sinistral Annulment", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT21lbnMvVm9vZG9vT21lbnMyUHVycGxlIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/b9eaf38592/VoodooOmens2Purple.png", "tradeTag": "omen-of-sinistral-annulment", "craftable": {"category": "Omen"}, "w": 1, "h": 1} +{"name": "Omen of Sinistral Coronation", "refName": "Omen of Sinistral Coronation", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT21lbnMvVm9vZG9vT21lbnMxUmVkIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/b8e2b8ed3f/VoodooOmens1Red.png", "tradeTag": "omen-of-sinistral-coronation", "craftable": {"category": "Omen"}, "w": 1, "h": 1} +{"name": "Omen of Sinistral Erasure", "refName": "Omen of Sinistral Erasure", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT21lbnMvVm9vZG9vT21lbnMyRGFyayIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/0cfa6959be/VoodooOmens2Dark.png", "tradeTag": "omen-of-sinistral-erasure", "craftable": {"category": "Omen"}, "w": 1, "h": 1} +{"name": "Omen of Sinistral Exaltation", "refName": "Omen of Sinistral Exaltation", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT21lbnMvVm9vZG9vT21lbnMyWWVsbG93Iiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/6d316b47ee/VoodooOmens2Yellow.png", "tradeTag": "omen-of-sinistral-exaltation", "craftable": {"category": "Omen"}, "w": 1, "h": 1} +{"name": "Omen of Whittling", "refName": "Omen of Whittling", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvT21lbnMvVm9vZG9vT21lbnMxRGFyayIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/2dea0999d5/VoodooOmens1Dark.png", "tradeTag": "omen-of-whittling", "craftable": {"category": "Omen"}, "w": 1, "h": 1} +{"name": "Omniscient Voidstone", "refName": "Omniscient Voidstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Operative's Scouting Report", "refName": "Operative's Scouting Report", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Orb of Alchemy", "refName": "Orb of Alchemy", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lVcGdyYWRlVG9SYXJlIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/9b80b44821/CurrencyUpgradeToRare.png", "tradeTag": "alch", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Orb of Alteration", "refName": "Orb of Alteration", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lSZXJvbGxNYWdpYyIsInNjYWxlIjoxfV0/6308fc8ca2/CurrencyRerollMagic.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Orb of Annulment", "refName": "Orb of Annulment", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQW5udWxsT3JiIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/2daba8ccca/AnnullOrb.png", "tradeTag": "annul", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Orb of Augmentation", "refName": "Orb of Augmentation", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lBZGRNb2RUb01hZ2ljIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/c8ad0ddc84/CurrencyAddModToMagic.png", "tradeTag": "aug", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Orb of Binding", "refName": "Orb of Binding", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQmluZGluZ09yYiIsInNjYWxlIjoxfV0/aac9579bd2/BindingOrb.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Orb of Chance", "refName": "Orb of Chance", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lVcGdyYWRlVG9VbmlxdWUiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/93c6cc8d5b/CurrencyUpgradeToUnique.png", "tradeTag": "chance", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Orb of Conflict", "refName": "Orb of Conflict", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ29uZmxpY3RPcmJSYW5rMSIsInNjYWxlIjoxfV0/7e02c990fc/ConflictOrbRank1.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Orb of Dominance", "refName": "Orb of Dominance", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvTWF2ZW5PcmIiLCJzY2FsZSI6MX1d/f307d80bfd/MavenOrb.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Orb of Fusing", "refName": "Orb of Fusing", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lSZXJvbGxTb2NrZXRMaW5rcyIsInNjYWxlIjoxfV0/c5e1959880/CurrencyRerollSocketLinks.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Orb of Horizons", "refName": "Orb of Horizons", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSG9yaXpvbk9yYiIsInNjYWxlIjoxfV0/0891338fb0/HorizonOrb.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Orb of Regret", "refName": "Orb of Regret", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lQYXNzaXZlU2tpbGxSZWZ1bmQiLCJzY2FsZSI6MX1d/32d499f562/CurrencyPassiveSkillRefund.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Orb of Scouring", "refName": "Orb of Scouring", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lDb252ZXJ0VG9Ob3JtYWwiLCJzY2FsZSI6MX1d/a0981d67fe/CurrencyConvertToNormal.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Orb of Storms", "refName": "Orb of Storms", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TdG9ybUNsb3VkR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/5b77e4b3b2/StormCloudGem.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Orb of Transmutation", "refName": "Orb of Transmutation", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lVcGdyYWRlVG9NYWdpYyIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/2f8e1ff9f8/CurrencyUpgradeToMagic.png", "tradeTag": "transmute", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Orb of Unmaking", "refName": "Orb of Unmaking", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUmVncmV0T3JiIiwic2NhbGUiOjF9XQ/beae1b00c7/RegretOrb.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Orbala's Fifth Adventure", "refName": "Orbala's Fifth Adventure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 4} +{"name": "Order Artifact", "refName": "Order Artifact", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXhwZWRpdGlvbi9SdW5lMTMiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/47a41c9782/Rune13.png", "tradeTag": "order-artifact", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Ornate Belt", "refName": "Ornate Belt", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Belt"}, "w": 2, "h": 1} +{"name": "Ornate Buckler", "refName": "Ornate Buckler", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ev": [113, 113]}, "w": 2, "h": 2} +{"name": "Ornate Gauntlets", "refName": "Ornate Gauntlets", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [67, 67], "ev": [61, 61]}, "w": 2, "h": 2} +{"name": "Ornate Incubator", "refName": "Ornate Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQ3VycmVuY3kiLCJzY2FsZSI6MX1d/e8a6d32623/IncubationCurrency.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Ornate Incubator", "refName": "Ornate Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uQ3VycmVuY3kiLCJzY2FsZSI6MX1d/e8a6d32623/IncubationCurrency.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Otherworldly Book of Knowledge I", "refName": "Otherworldly Book of Knowledge I", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Otherworldly Book of Knowledge II", "refName": "Otherworldly Book of Knowledge II", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Otherworldly Book of Knowledge III", "refName": "Otherworldly Book of Knowledge III", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Otherworldly Book of Knowledge IV", "refName": "Otherworldly Book of Knowledge IV", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Otherworldly Incubator", "refName": "Otherworldly Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uTWFwcyIsInNjYWxlIjoxfV0/3d07c20be0/IncubationMaps.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Otherworldly Incubator", "refName": "Otherworldly Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uTWFwcyIsInNjYWxlIjoxfV0/3d07c20be0/IncubationMaps.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Otherworldly Scouting Report", "refName": "Otherworldly Scouting Report", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Oubliette Reliquary Key", "refName": "Oubliette Reliquary Key", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9TaXJ1c0ZvaWwiLCJzY2FsZSI6MX1d/1ada8ca2a7/SirusFoil.png", "craftable": {"category": "VaultKey"}, "w": 1, "h": 1} +{"name": "Overabundance", "refName": "Overabundance", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Overcharge", "refName": "Overcharge", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Overpower", "refName": "Overpower", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Overwhelming Presence", "refName": "Overwhelming Presence", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Padded Leggings", "refName": "Padded Leggings", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [18, 18], "es": [9, 9]}, "w": 2, "h": 2} +{"name": "Pain Offering", "refName": "Pain Offering", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Painted Tower Shield", "refName": "Painted Tower Shield", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjciLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/80f9f1abea/ShieldStr7.png", "craftable": {"category": "Shield"}, "armour": {"ar": [29, 29]}, "w": 2, "h": 4} +{"name": "Pale Court Set", "refName": "Pale Court Set", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 2, "h": 2} +{"name": "Paralysing Staff", "refName": "Paralysing Staff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Staff"}, "w": 1, "h": 4} +{"name": "Parrying Dagger", "refName": "Parrying Dagger", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Dagger"}, "w": 1, "h": 3} +{"name": "Pathfinder Coat", "refName": "Pathfinder Coat", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [78, 78]}, "w": 2, "h": 3} +{"name": "Paua Focus", "refName": "Paua Focus", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Focus"}, "armour": {"es": [43, 43]}, "w": 2, "h": 3} +{"name": "Pauascale Gloves", "refName": "Pauascale Gloves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"es": [32, 32]}, "w": 2, "h": 2} +{"name": "Payload", "refName": "Payload", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Pearl Buckler", "refName": "Pearl Buckler", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ev": [105, 105]}, "w": 2, "h": 2} +{"name": "Pearl Ring", "refName": "Pearl Ring", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Ring"}, "w": 1, "h": 1} +{"name": "Pelage Targe", "refName": "Pelage Targe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [18, 18], "ev": [14, 14]}, "w": 2, "h": 3} +{"name": "Pelt Leggings", "refName": "Pelt Leggings", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [56, 56], "es": [21, 21]}, "w": 2, "h": 2} +{"name": "Pelt Mantle", "refName": "Pelt Mantle", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [50, 50], "es": [23, 23]}, "w": 2, "h": 3} +{"name": "Penetrating Quiver", "refName": "Penetrating Quiver", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Quiver"}, "w": 2, "h": 3} +{"name": "Perandus Coin", "refName": "Perandus Coin", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Perfect Fossil", "refName": "Perfect Fossil", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Perfect Jeweller's Orb", "refName": "Perfect Jeweller's Orb", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Perfect Strike", "refName": "Perfect Strike", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Permafrost Bolts", "refName": "Permafrost Bolts", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Perpetual Charge", "refName": "Perpetual Charge", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Persistence", "refName": "Persistence", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Phalanx Tower Shield", "refName": "Phalanx Tower Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [125, 125]}, "w": 2, "h": 4} +{"name": "Physical Mastery", "refName": "Physical Mastery", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Pict Claw", "refName": "Pict Claw", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Claw"}, "w": 2, "h": 2} +{"name": "Pierce", "refName": "Pierce", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Piercing Claw", "refName": "Piercing Claw", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Claw"}, "w": 2, "h": 2} +{"name": "Piercing Crossbow", "refName": "Piercing Crossbow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Crossbow"}, "w": 2, "h": 4} +{"name": "Pile of Inexplicable Junk", "refName": "Pile of Inexplicable Junk", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Pilgrim Vestments", "refName": "Pilgrim Vestments", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [25, 25], "es": [16, 16]}, "w": 2, "h": 3} +{"name": "Pin", "refName": "Pin", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Pinpoint Critical", "refName": "Pinpoint Critical", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Pious Leggings", "refName": "Pious Leggings", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [100, 100], "es": [35, 35]}, "w": 2, "h": 2} +{"name": "Pious Sceptre", "refName": "Pious Sceptre", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Sceptre"}, "w": 2, "h": 3} +{"name": "Plague Bearer", "refName": "Plague Bearer", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QbGFndWVCZWFyZXJHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9b3e8e4025/PlagueBearerGem.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Plasma Blast", "refName": "Plasma Blast", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Plate Belt", "refName": "Plate Belt", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Belt"}, "w": 2, "h": 1} +{"name": "Plate Gauntlets", "refName": "Plate Gauntlets", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [48, 48], "ev": [44, 44]}, "w": 2, "h": 2} +{"name": "Plated Buckler", "refName": "Plated Buckler", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ev": [32, 32]}, "w": 2, "h": 2} +{"name": "Plated Claw", "refName": "Plated Claw", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Claw"}, "w": 2, "h": 2} +{"name": "Plated Mace", "refName": "Plated Mace", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Mace"}, "w": 2, "h": 3} +{"name": "Plated Raiment", "refName": "Plated Raiment", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"es": [117, 117]}, "w": 2, "h": 3} +{"name": "Platinum Glennach Cairns Watchstone", "refName": "Platinum Glennach Cairns Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Platinum Haewark Hamlet Watchstone", "refName": "Platinum Haewark Hamlet Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Platinum Lex Ejoris Watchstone", "refName": "Platinum Lex Ejoris Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Platinum Lex Proxima Watchstone", "refName": "Platinum Lex Proxima Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Platinum Lira Arthain Watchstone", "refName": "Platinum Lira Arthain Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Platinum New Vastir Watchstone", "refName": "Platinum New Vastir Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Platinum Tirn's End Watchstone", "refName": "Platinum Tirn's End Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Platinum Valdo's Rest Watchstone", "refName": "Platinum Valdo's Rest Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Playtest Attack", "refName": "Playtest Attack", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Playtest Slam", "refName": "Playtest Slam", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Playtest Spell", "refName": "Playtest Spell", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Plumed Focus", "refName": "Plumed Focus", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Focus"}, "armour": {"es": [34, 34]}, "w": 2, "h": 3} +{"name": "Pointed Maul", "refName": "Pointed Maul", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Mace"}, "w": 2, "h": 4} +{"name": "Poisonburst Arrow", "refName": "Poisonburst Arrow", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Poisoned Lockpick", "refName": "Poisoned Lockpick", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Poisonous Concoction", "refName": "Poisonous Concoction", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb2lzb25vdXNDb25jb2N0aW9uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/b1cde568a6/PoisonousConcoction.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Polaric Invitation", "refName": "Polaric Invitation", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVlc3RJdGVtcy9DbGVhbnNpbmdGaXJlT3JiUXVlc3QwIiwic2NhbGUiOjF9XQ/b5b962d0c8/CleansingFireOrbQuest0.png", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Polaric Invitation", "refName": "Polaric Invitation", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVlc3RJdGVtcy9DbGVhbnNpbmdGaXJlT3JiUXVlc3QwIiwic2NhbGUiOjF9XQ/b5b962d0c8/CleansingFireOrbQuest0.png", "craftable": {"category": "MiscMapItem"}, "w": 1, "h": 1} +{"name": "Polished Abyss Scarab", "refName": "Polished Abyss Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Polished Ambush Scarab", "refName": "Polished Ambush Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Polished Bestiary Scarab", "refName": "Polished Bestiary Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Polished Blight Scarab", "refName": "Polished Blight Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Polished Breach Scarab", "refName": "Polished Breach Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Polished Cartography Scarab", "refName": "Polished Cartography Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Polished Divination Scarab", "refName": "Polished Divination Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Polished Elder Scarab", "refName": "Polished Elder Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Polished Expedition Scarab", "refName": "Polished Expedition Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Polished Harbinger Scarab", "refName": "Polished Harbinger Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Polished Legion Scarab", "refName": "Polished Legion Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Polished Metamorph Scarab", "refName": "Polished Metamorph Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Polished Reliquary Scarab", "refName": "Polished Reliquary Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Polished Sensing Charm", "refName": "Polished Sensing Charm", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvUG9saXNoZWRTZW5zaW5nQ2hhcm0iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/395f37968e/PolishedSensingCharm.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Polished Shaper Scarab", "refName": "Polished Shaper Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Polished Sulphite Scarab", "refName": "Polished Sulphite Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Polished Torment Scarab", "refName": "Polished Torment Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Portal Scroll", "refName": "Portal Scroll", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lQb3J0YWwiLCJzY2FsZSI6MX1d/d92d3478a0/CurrencyPortal.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Potent Alchemical Resonator", "refName": "Potent Alchemical Resonator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvVXBncmFkZTJ4MUIiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MX1d/0a97cfef85/Upgrade2x1B.png", "craftable": {"category": "DelveSocketableCurrency"}, "w": 1, "h": 2} +{"name": "Potent Alchemical Resonator", "refName": "Potent Alchemical Resonator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvVXBncmFkZTJ4MUIiLCJ3IjoxLCJoIjoyLCJzY2FsZSI6MX1d/0a97cfef85/Upgrade2x1B.png", "craftable": {"category": "DelveSocketableCurrency"}, "w": 1, "h": 2} +{"name": "Potent Chaotic Resonator", "refName": "Potent Chaotic Resonator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUmVyb2xsMngxQSIsInNjYWxlIjoxfV0/bee1bcfe36/Reroll2x1A.png", "craftable": {"category": "DelveSocketableCurrency"}, "w": 1, "h": 2} +{"name": "Potent Chaotic Resonator", "refName": "Potent Chaotic Resonator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUmVyb2xsMngxQSIsInNjYWxlIjoxfV0/bee1bcfe36/Reroll2x1A.png", "craftable": {"category": "DelveSocketableCurrency"}, "w": 1, "h": 2} +{"name": "Potential", "refName": "Potential", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Power Core", "refName": "Power Core", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Power Siphon", "refName": "Power Siphon", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qb3dlclNpcGhvbiIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/8c00738194/PowerSiphon.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Powerful Alchemical Resonator", "refName": "Powerful Alchemical Resonator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvVXBncmFkZTJ4MkEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/30b32cdb00/Upgrade2x2A.png", "craftable": {"category": "DelveSocketableCurrency"}, "w": 2, "h": 2} +{"name": "Powerful Alchemical Resonator", "refName": "Powerful Alchemical Resonator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvVXBncmFkZTJ4MkEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/30b32cdb00/Upgrade2x2A.png", "craftable": {"category": "DelveSocketableCurrency"}, "w": 2, "h": 2} +{"name": "Powerful Chaotic Resonator", "refName": "Powerful Chaotic Resonator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUmVyb2xsMngyQSIsInNjYWxlIjoxfV0/80b90b6b94/Reroll2x2A.png", "craftable": {"category": "DelveSocketableCurrency"}, "w": 2, "h": 2} +{"name": "Powerful Chaotic Resonator", "refName": "Powerful Chaotic Resonator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUmVyb2xsMngyQSIsInNjYWxlIjoxfV0/80b90b6b94/Reroll2x2A.png", "craftable": {"category": "DelveSocketableCurrency"}, "w": 2, "h": 2} +{"name": "Practiced Combo", "refName": "Practiced Combo", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Precise Arrowhead", "refName": "Precise Arrowhead", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQXJyb3doZWFkUHJlY2lzZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/6cb3029c66/ArrowheadPrecise.png", "craftable": {"category": "HeistEquipmentWeapon"}, "w": 2, "h": 2} +{"name": "Precise Greathammer", "refName": "Precise Greathammer", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Mace"}, "w": 2, "h": 4} +{"name": "Precision", "refName": "Precision", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9BY2N1cmFjeWFuZENyaXRpY2FsQ2hhbmNlQXVyYSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/3996a0a9cf/AccuracyandCriticalChanceAura.png", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Precursor Tablet", "refName": "Precursor Tablet", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUHJlY3Vyc29yVGFibGV0cy9QcmVjdXJzb3JUYWJsZXRHZW5lcmljIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/5658ce7f2d/PrecursorTabletGeneric.png", "tradeTag": "precursor-tablet", "craftable": {"category": "TowerAugment"}, "w": 1, "h": 1} +{"name": "Premeditation", "refName": "Premeditation", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Preventative Contract", "refName": "Preventative Contract", "namespace": "ITEM", "icon": "", "craftable": {"category": "HeistContract"}, "w": 1, "h": 1} +{"name": "Primal Armament", "refName": "Primal Armament", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Primal Crystallised Lifeforce", "refName": "Primal Crystallised Lifeforce", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9QcmltYWxMaWZlZm9yY2UiLCJzY2FsZSI6MX1d/c498cdfd7f/PrimalLifeforce.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Primal Incubator", "refName": "Primal Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uVGFsaXNtYW5zIiwic2NhbGUiOjF9XQ/994245860e/IncubationTalismans.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Primal Incubator", "refName": "Primal Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uVGFsaXNtYW5zIiwic2NhbGUiOjF9XQ/994245860e/IncubationTalismans.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Prime Alchemical Resonator", "refName": "Prime Alchemical Resonator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvVXBncmFkZTJ4MkMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5192b134c8/Upgrade2x2C.png", "craftable": {"category": "DelveSocketableCurrency"}, "w": 2, "h": 2} +{"name": "Prime Alchemical Resonator", "refName": "Prime Alchemical Resonator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvVXBncmFkZTJ4MkMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5192b134c8/Upgrade2x2C.png", "craftable": {"category": "DelveSocketableCurrency"}, "w": 2, "h": 2} +{"name": "Prime Chaotic Resonator", "refName": "Prime Chaotic Resonator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUmVyb2xsMngyQyIsInNjYWxlIjoxfV0/c624d45072/Reroll2x2C.png", "craftable": {"category": "DelveSocketableCurrency"}, "w": 2, "h": 2} +{"name": "Prime Chaotic Resonator", "refName": "Prime Chaotic Resonator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUmVyb2xsMngyQyIsInNjYWxlIjoxfV0/c624d45072/Reroll2x2C.png", "craftable": {"category": "DelveSocketableCurrency"}, "w": 2, "h": 2} +{"name": "Prime Regrading Lens", "refName": "Prime Regrading Lens", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Prime Sextant", "refName": "Prime Sextant", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Primed Quiver", "refName": "Primed Quiver", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Quiver"}, "w": 2, "h": 3} +{"name": "Primeval Apex Sentinel", "refName": "Primeval Apex Sentinel", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "SentinelDrone"}, "w": 2, "h": 2} +{"name": "Primeval Pandemonium Sentinel", "refName": "Primeval Pandemonium Sentinel", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "SentinelDrone"}, "w": 2, "h": 2} +{"name": "Primeval Stalker Sentinel", "refName": "Primeval Stalker Sentinel", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "SentinelDrone"}, "w": 2, "h": 2} +{"name": "Primitive Alchemical Resonator", "refName": "Primitive Alchemical Resonator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvVXBncmFkZTF4MUEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/bf5a71a635/Upgrade1x1A.png", "craftable": {"category": "DelveSocketableCurrency"}, "w": 1, "h": 1} +{"name": "Primitive Alchemical Resonator", "refName": "Primitive Alchemical Resonator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvVXBncmFkZTF4MUEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/bf5a71a635/Upgrade1x1A.png", "craftable": {"category": "DelveSocketableCurrency"}, "w": 1, "h": 1} +{"name": "Primitive Chaotic Resonator", "refName": "Primitive Chaotic Resonator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUmVyb2xsMXgxQSIsInNjYWxlIjoxfV0/9c7dcd6158/Reroll1x1A.png", "craftable": {"category": "DelveSocketableCurrency"}, "w": 1, "h": 1} +{"name": "Primitive Chaotic Resonator", "refName": "Primitive Chaotic Resonator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUmVyb2xsMXgxQSIsInNjYWxlIjoxfV0/9c7dcd6158/Reroll1x1A.png", "craftable": {"category": "DelveSocketableCurrency"}, "w": 1, "h": 1} +{"name": "Primordial Wand", "refName": "Primordial Wand", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Wand"}, "w": 1, "h": 3} +{"name": "Prismatic Fossil", "refName": "Prismatic Fossil", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUHJpc21hdGljRm9zc2lsIiwic2NhbGUiOjF9XQ/af5347946f/PrismaticFossil.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Prismatic Ring", "refName": "Prismatic Ring", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzEyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/51db874b5c/Ring12.png", "craftable": {"category": "Ring"}, "w": 1, "h": 1} +{"name": "Pristine Fossil", "refName": "Pristine Fossil", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvUHJpc3RpbmVGb3NzaWwiLCJzY2FsZSI6MX1d/bc91a1b44b/PristineFossil.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Profane Cleaver", "refName": "Profane Cleaver", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Axe"}, "w": 2, "h": 3} +{"name": "Profane Ritual", "refName": "Profane Ritual", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Profusion", "refName": "Profusion", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Prophecy", "refName": "Prophecy", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Punch", "refName": "Punch", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Puncture", "refName": "Puncture", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9QdW5jdHVyZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5c16efd68b/Puncture.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Purity of Fire", "refName": "Purity of Fire", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlUmVzaXN0QXVyYSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/973e94bf0a/FireResistAura.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Purity of Ice", "refName": "Purity of Ice", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Db2xkUmVzaXN0QXVyYSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/0ebc7da568/ColdResistAura.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Purity of Lightning", "refName": "Purity of Lightning", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9MaWdodG5pbmdSZXNpc3RBdXJhIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/4c883997e3/LightningResistAura.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Pyrophyte Staff", "refName": "Pyrophyte Staff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Staff"}, "w": 1, "h": 4} +{"name": "Quarterstaff Strike", "refName": "Quarterstaff Strike", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Quilted Vest", "refName": "Quilted Vest", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [44, 44]}, "w": 2, "h": 3} +{"name": "Rage", "refName": "Rage", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Rageforged", "refName": "Rageforged", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Raging Cry", "refName": "Raging Cry", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Raging Spirits", "refName": "Raging Spirits", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Raider Plate", "refName": "Raider Plate", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [121, 121]}, "w": 2, "h": 3} +{"name": "Rain of Arrows", "refName": "Rain of Arrows", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlub2ZBcnJvd3MiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a7e02c03ad/RainofArrows.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Raise Shield", "refName": "Raise Shield", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Raise Zombie", "refName": "Raise Zombie", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9SYWlzZVpvbWJpZSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/91518203be/RaiseZombie.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Rampage", "refName": "Rampage", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Rampart Tower Shield", "refName": "Rampart Tower Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [75, 75]}, "w": 2, "h": 4} +{"name": "Random Amulet", "refName": "Random Amulet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 1, "h": 1} +{"name": "Random Belt", "refName": "Random Belt", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 1} +{"name": "Random Body Armour", "refName": "Random Body Armour", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 3} +{"name": "Random Body Armour", "refName": "Random Body Armour", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 3} +{"name": "Random Body Armour", "refName": "Random Body Armour", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 3} +{"name": "Random Body Armour", "refName": "Random Body Armour", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 3} +{"name": "Random Body Armour", "refName": "Random Body Armour", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 3} +{"name": "Random Body Armour", "refName": "Random Body Armour", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 3} +{"name": "Random Boots", "refName": "Random Boots", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Random Boots", "refName": "Random Boots", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Random Boots", "refName": "Random Boots", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Random Boots", "refName": "Random Boots", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Random Boots", "refName": "Random Boots", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Random Boots", "refName": "Random Boots", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Random Bow", "refName": "Random Bow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 4} +{"name": "Random Buckler", "refName": "Random Buckler", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Random Claw", "refName": "Random Claw", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Random Crossbow", "refName": "Random Crossbow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 4} +{"name": "Random Dagger", "refName": "Random Dagger", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 1, "h": 3} +{"name": "Random Flail", "refName": "Random Flail", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 3} +{"name": "Random Focus", "refName": "Random Focus", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 3} +{"name": "Random Gloves", "refName": "Random Gloves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Random Gloves", "refName": "Random Gloves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Random Gloves", "refName": "Random Gloves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Random Gloves", "refName": "Random Gloves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Random Gloves", "refName": "Random Gloves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Random Gloves", "refName": "Random Gloves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Random Helmet", "refName": "Random Helmet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Random Helmet", "refName": "Random Helmet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Random Helmet", "refName": "Random Helmet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Random Helmet", "refName": "Random Helmet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Random Helmet", "refName": "Random Helmet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Random Helmet", "refName": "Random Helmet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Random One Handed Axe", "refName": "Random One Handed Axe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 3} +{"name": "Random One Handed Mace", "refName": "Random One Handed Mace", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 3} +{"name": "Random One Handed Sword", "refName": "Random One Handed Sword", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 3} +{"name": "Random Quarterstaff", "refName": "Random Quarterstaff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 4} +{"name": "Random Quiver", "refName": "Random Quiver", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 3} +{"name": "Random Ring", "refName": "Random Ring", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 1, "h": 1} +{"name": "Random Sceptre", "refName": "Random Sceptre", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 3} +{"name": "Random Shield", "refName": "Random Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 4} +{"name": "Random Shield", "refName": "Random Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 3} +{"name": "Random Shield", "refName": "Random Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 3} +{"name": "Random Spear", "refName": "Random Spear", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 1, "h": 4} +{"name": "Random Staff", "refName": "Random Staff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 1, "h": 4} +{"name": "Random Trap", "refName": "Random Trap", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Random Two Handed Axe", "refName": "Random Two Handed Axe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 4} +{"name": "Random Two Handed Mace", "refName": "Random Two Handed Mace", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 4} +{"name": "Random Two Handed Sword", "refName": "Random Two Handed Sword", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 4} +{"name": "Random Wand", "refName": "Random Wand", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 1, "h": 3} +{"name": "Rapid Assault", "refName": "Rapid Assault", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Rapid Shot", "refName": "Rapid Shot", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Rattling Sceptre", "refName": "Rattling Sceptre", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Sceptre"}, "w": 2, "h": 3} +{"name": "Rawhide Belt", "refName": "Rawhide Belt", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Belt"}, "w": 2, "h": 1} +{"name": "Rawhide Boots", "refName": "Rawhide Boots", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0RleDEiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/d9494fc647/BootsDex1.png", "craftable": {"category": "Boots"}, "armour": {"ev": [15, 15]}, "w": 2, "h": 2} +{"name": "Razorglass Claw", "refName": "Razorglass Claw", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Claw"}, "w": 2, "h": 2} +{"name": "Reap", "refName": "Reap", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9CbG9vZHJlYXBHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/a57bea32ba/BloodreapGem.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Reaper's Invocation", "refName": "Reaper's Invocation", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MetaSkillGem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Reaping Staff", "refName": "Reaping Staff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Staff"}, "w": 1, "h": 4} +{"name": "Reaver Catalyst", "refName": "Reaver Catalyst", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaENhdGFseXN0QXR0YWNrIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/ccc363f502/BreachCatalystAttack.png", "tradeTag": "reaver-catalyst", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Reaver Glaive", "refName": "Reaver Glaive", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Axe"}, "w": 2, "h": 4} +{"name": "Rebirth Rune", "refName": "Rebirth Rune", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUnVuZXMvTGlmZVJlY292ZXJ5UnVuZSIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/bbbb060773/LifeRecoveryRune.png", "tradeTag": "rebirth-rune", "craftable": {"category": "SoulCore"}, "w": 1, "h": 1} +{"name": "Recurve Bow", "refName": "Recurve Bow", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9Ud29IYW5kV2VhcG9ucy9Cb3dzL0JvdzUiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/2c90c93faf/Bow5.png", "craftable": {"category": "Bow"}, "w": 2, "h": 4} +{"name": "Red Mushroom", "refName": "Red Mushroom", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 2} +{"name": "Redeemer's Exalted Orb", "refName": "Redeemer's Exalted Orb", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5mbHVlbmNlIEV4YWx0cy9FeXJpZU9yYiIsInNjYWxlIjoxfV0/8ec9b52d65/EyrieOrb.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Reefsteel Greaves", "refName": "Reefsteel Greaves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [132, 132]}, "w": 2, "h": 2} +{"name": "Refined Trap", "refName": "Refined Trap", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "TrapTool"}, "w": 2, "h": 2} +{"name": "Regal Orb", "refName": "Regal Orb", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lVcGdyYWRlTWFnaWNUb1JhcmUiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/e8fb148e80/CurrencyUpgradeMagicToRare.png", "tradeTag": "regal", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Regal Shard", "refName": "Regal Shard", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lVcGdyYWRlTWFnaWNUb1JhcmVTaGFyZCIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/e4128abe92/CurrencyUpgradeMagicToRareShard.png", "tradeTag": "regal-shard", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Regalia Longsword", "refName": "Regalia Longsword", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Sword"}, "w": 2, "h": 4} +{"name": "Regicide Disguise Kit", "refName": "Regicide Disguise Kit", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVGhlYXRyZURpc2d1aXNlS2l0IiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/5a52352c52/TheatreDisguiseKit.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Reinforced Iron Net", "refName": "Reinforced Iron Net", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Reinforced Rope Net", "refName": "Reinforced Rope Net", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Reinforced Steel Net", "refName": "Reinforced Steel Net", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Rending Halberd", "refName": "Rending Halberd", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Axe"}, "w": 2, "h": 4} +{"name": "Rending Staff", "refName": "Rending Staff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Staff"}, "w": 1, "h": 4} +{"name": "Rescue Hana", "refName": "Rescue Hana", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Resonating Shield", "refName": "Resonating Shield", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Revered Vestments", "refName": "Revered Vestments", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [245, 245], "es": [84, 84]}, "w": 2, "h": 3} +{"name": "Rhoahide Coat", "refName": "Rhoahide Coat", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [131, 131]}, "w": 2, "h": 3} +{"name": "Ricochet", "refName": "Ricochet", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Ridged Buckler", "refName": "Ridged Buckler", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ev": [54, 54]}, "w": 2, "h": 2} +{"name": "Righteous Cuffs", "refName": "Righteous Cuffs", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [55, 55], "es": [19, 19]}, "w": 2, "h": 2} +{"name": "Ring", "refName": "Ring", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Ring"}, "w": 1, "h": 1} +{"name": "Ring Flail", "refName": "Ring Flail", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Flail"}, "w": 2, "h": 3} +{"name": "Ringed Buckler", "refName": "Ringed Buckler", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ev": [75, 75]}, "w": 2, "h": 2} +{"name": "Ringmail Gauntlets", "refName": "Ringmail Gauntlets", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [13, 13], "ev": [10, 10]}, "w": 2, "h": 2} +{"name": "Rippled Greatsword", "refName": "Rippled Greatsword", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Sword"}, "w": 2, "h": 4} +{"name": "Ripwire Ballista", "refName": "Ripwire Ballista", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Rising Tempest", "refName": "Rising Tempest", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Ritual Precursor Tablet", "refName": "Ritual Precursor Tablet", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUHJlY3Vyc29yVGFibGV0cy9QcmVjdXJzb3JUYWJsZXRSaXR1YWwiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/7c49d00f07/PrecursorTabletRitual.png", "tradeTag": "ritual-precursor-tablet", "craftable": {"category": "TowerAugment"}, "w": 1, "h": 1} +{"name": "Ritual Splinter", "refName": "Ritual Splinter", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUml0dWFsL1JpdHVhbFNwbGludGVyIiwic2NhbGUiOjF9XQ/702c7441d8/RitualSplinter.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Ritual Vessel", "refName": "Ritual Vessel", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUml0dWFsL0VmZmlneSIsInNjYWxlIjoxfV0/1686de4490/Effigy.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Ritualistic Book of Knowledge I", "refName": "Ritualistic Book of Knowledge I", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Ritualistic Book of Knowledge II", "refName": "Ritualistic Book of Knowledge II", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Ritualistic Book of Knowledge III", "refName": "Ritualistic Book of Knowledge III", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Ritualistic Book of Knowledge IV", "refName": "Ritualistic Book of Knowledge IV", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Ritualistic Curse", "refName": "Ritualistic Curse", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Riveted Mitts", "refName": "Riveted Mitts", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [31, 31]}, "w": 2, "h": 2} +{"name": "Roaring Staff", "refName": "Roaring Staff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Staff"}, "w": 1, "h": 4} +{"name": "Rogue Armour", "refName": "Rogue Armour", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [53, 53], "ev": [43, 43]}, "w": 2, "h": 3} +{"name": "Rogue's Marker", "refName": "Rogue's Marker", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvSGVpc3RDb2luQ3VycmVuY3kiLCJzY2FsZSI6MX1d/335e66630d/HeistCoinCurrency.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Rolling Magma", "refName": "Rolling Magma", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9GaXJlTW9ydGFyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/9339ca9a6b/FireMortar.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Rolling Slam", "refName": "Rolling Slam", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Rope Cuffs", "refName": "Rope Cuffs", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [12, 12], "es": [6, 6]}, "w": 2, "h": 2} +{"name": "Rough Greaves", "refName": "Rough Greaves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [22, 22]}, "w": 2, "h": 2} +{"name": "Rough Sharpening Stone", "refName": "Rough Sharpening Stone", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvUm91Z2hTaGFycGVuaW5nU3RvbmUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/16a700882f/RoughSharpeningStone.png", "craftable": {"category": "HeistEquipmentWeapon"}, "w": 2, "h": 2} +{"name": "Ruby", "refName": "Ruby", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Jewel"}, "w": 1, "h": 1} +{"name": "Ruby Charm", "refName": "Ruby Charm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Charm"}, "w": 1, "h": 1} +{"name": "Ruby Ring", "refName": "Ruby Ring", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzciLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0e04df86a3/Ring7.png", "craftable": {"category": "Ring"}, "w": 1, "h": 1} +{"name": "Runed Bracers", "refName": "Runed Bracers", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQnJhY2VyQmFzZVR5cGVfcnVuZWQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/7fedd82771/BracerBaseType_runed.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Runed Girdle", "refName": "Runed Girdle", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 1} +{"name": "Runed Guard", "refName": "Runed Guard", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 2} +{"name": "Runed Skull Cap", "refName": "Runed Skull Cap", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Runed Spikes", "refName": "Runed Spikes", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Runic Book of Knowledge I", "refName": "Runic Book of Knowledge I", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Runic Book of Knowledge II", "refName": "Runic Book of Knowledge II", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Runic Book of Knowledge III", "refName": "Runic Book of Knowledge III", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Runic Book of Knowledge IV", "refName": "Runic Book of Knowledge IV", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Runic Shortsword", "refName": "Runic Shortsword", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Sword"}, "w": 2, "h": 3} +{"name": "Rupture", "refName": "Rupture", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Rusted Abyss Scarab", "refName": "Rusted Abyss Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Rusted Ambush Scarab", "refName": "Rusted Ambush Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Rusted Bestiary Scarab", "refName": "Rusted Bestiary Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Rusted Blight Scarab", "refName": "Rusted Blight Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Rusted Breach Scarab", "refName": "Rusted Breach Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Rusted Cartography Scarab", "refName": "Rusted Cartography Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Rusted Cuirass", "refName": "Rusted Cuirass", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [45, 45]}, "w": 2, "h": 3} +{"name": "Rusted Divination Scarab", "refName": "Rusted Divination Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Rusted Elder Scarab", "refName": "Rusted Elder Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Rusted Expedition Scarab", "refName": "Rusted Expedition Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Rusted Greathelm", "refName": "Rusted Greathelm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [29, 29]}, "w": 2, "h": 2} +{"name": "Rusted Harbinger Scarab", "refName": "Rusted Harbinger Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Rusted Legion Scarab", "refName": "Rusted Legion Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Rusted Metamorph Scarab", "refName": "Rusted Metamorph Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Rusted Reliquary Scarab", "refName": "Rusted Reliquary Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Rusted Shaper Scarab", "refName": "Rusted Shaper Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Rusted Stalker Sentinel", "refName": "Rusted Stalker Sentinel", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "SentinelDrone"}, "w": 2, "h": 2} +{"name": "Rusted Sulphite Scarab", "refName": "Rusted Sulphite Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Rusted Torment Scarab", "refName": "Rusted Torment Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Ruthless", "refName": "Ruthless", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Sacral Quiver", "refName": "Sacral Quiver", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Quiver"}, "w": 2, "h": 3} +{"name": "Sacred Blossom", "refName": "Sacred Blossom", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9Pc2hhYmlNYXAiLCJzY2FsZSI6MX1d/ae20ec4d5f/OshabiMap.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Sacred Crystallised Lifeforce", "refName": "Sacred Crystallised Lifeforce", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9TYWNyZWRMaWZlZm9yY2UiLCJzY2FsZSI6MX1d/edfba3c893/SacredLifeforce.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Sacred Orb", "refName": "Sacred Orb", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2FjcmVkT3JiIiwic2NhbGUiOjF9XQ/0380fd0dba/SacredOrb.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Sacrifice", "refName": "Sacrifice", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Sacrifice Set", "refName": "Sacrifice Set", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 2, "h": 2} +{"name": "Sacrifice at Dawn", "refName": "Sacrifice at Dawn", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYWFsMDIiLCJzY2FsZSI6MX1d/3516d95235/Vaal02.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Sacrifice at Dawn", "refName": "Sacrifice at Dawn", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYWFsMDIiLCJzY2FsZSI6MX1d/3516d95235/Vaal02.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Sacrifice at Dusk", "refName": "Sacrifice at Dusk", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYWFsMDQiLCJzY2FsZSI6MX1d/3be8311430/Vaal04.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Sacrifice at Dusk", "refName": "Sacrifice at Dusk", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYWFsMDQiLCJzY2FsZSI6MX1d/3be8311430/Vaal04.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Sacrifice at Midnight", "refName": "Sacrifice at Midnight", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYWFsMDEiLCJzY2FsZSI6MX1d/c7cd8058f6/Vaal01.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Sacrifice at Midnight", "refName": "Sacrifice at Midnight", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYWFsMDEiLCJzY2FsZSI6MX1d/c7cd8058f6/Vaal01.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Sacrifice at Noon", "refName": "Sacrifice at Noon", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYWFsMDMiLCJzY2FsZSI6MX1d/55524425f4/Vaal03.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Sacrifice at Noon", "refName": "Sacrifice at Noon", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYWFsMDMiLCJzY2FsZSI6MX1d/55524425f4/Vaal03.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Sacrificial Axe", "refName": "Sacrificial Axe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Axe"}, "w": 2, "h": 3} +{"name": "Sacrificial Dagger", "refName": "Sacrificial Dagger", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 3} +{"name": "Sacrificial Heart", "refName": "Sacrificial Heart", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQW11bGV0cy9TYWNyaWZpY2lhbF9IZWFydCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/e3daa4cd32/Sacrificial_Heart.png", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Sacrificial Lamb", "refName": "Sacrificial Lamb", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Sacrificial Mantle", "refName": "Sacrificial Mantle", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [123, 123], "es": [46, 46]}, "w": 2, "h": 3} +{"name": "Sanctified Fossil", "refName": "Sanctified Fossil", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvR2lsZGVkRm9zc2lsIiwic2NhbGUiOjF9XQ/fc2d3fdf51/GildedFossil.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Sanctified Relic", "refName": "Sanctified Relic", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Relic"}, "w": 1, "h": 2} +{"name": "Sanctified Relic", "refName": "Sanctified Relic", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Relic"}, "w": 1, "h": 2} +{"name": "Sanctified Relic", "refName": "Sanctified Relic", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Relic"}, "w": 1, "h": 2} +{"name": "Sapphire", "refName": "Sapphire", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Jewel"}, "w": 1, "h": 1} +{"name": "Sapphire Charm", "refName": "Sapphire Charm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Charm"}, "w": 1, "h": 1} +{"name": "Sapphire Ring", "refName": "Sapphire Ring", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzYiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/74a5d719fd/Ring6.png", "craftable": {"category": "Ring"}, "w": 1, "h": 1} +{"name": "Saqawine Lure", "refName": "Saqawine Lure", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Savage Greataxe", "refName": "Savage Greataxe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Axe"}, "w": 2, "h": 4} +{"name": "Scale Mail", "refName": "Scale Mail", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [125, 125], "ev": [112, 112]}, "w": 2, "h": 3} +{"name": "Scalper's Jacket", "refName": "Scalper's Jacket", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [117, 117], "es": [48, 48]}, "w": 2, "h": 3} +{"name": "Scattershot", "refName": "Scattershot", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Scavenged Plating", "refName": "Scavenged Plating", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Scimitar", "refName": "Scimitar", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Sword"}, "w": 2, "h": 3} +{"name": "Scorched Fossil", "refName": "Scorched Fossil", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvQW1iZXJGaXJlRmx5Iiwic2NhbGUiOjF9XQ/0954934026/AmberFireFly.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Scoundrel Jacket", "refName": "Scoundrel Jacket", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [133, 133], "es": [53, 53]}, "w": 2, "h": 3} +{"name": "Scout's Vest", "refName": "Scout's Vest", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [184, 184]}, "w": 2, "h": 3} +{"name": "Screaming Invitation", "refName": "Screaming Invitation", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVlc3RJdGVtcy9UYW5nbGVkT3JiUXVlc3Q1Iiwic2NhbGUiOjF9XQ/aad87e6738/TangledOrbQuest5.png", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Screaming Invitation", "refName": "Screaming Invitation", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVlc3RJdGVtcy9UYW5nbGVkT3JiUXVlc3Q1Iiwic2NhbGUiOjF9XQ/aad87e6738/TangledOrbQuest5.png", "craftable": {"category": "MiscMapItem"}, "w": 1, "h": 1} +{"name": "Scroll Fragment", "refName": "Scroll Fragment", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Scroll of Wisdom", "refName": "Scroll of Wisdom", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lJZGVudGlmaWNhdGlvbiIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/884f7bc58b/CurrencyIdentification.png", "tradeTag": "wisdom", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Seaglass Spear", "refName": "Seaglass Spear", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Spear"}, "w": 1, "h": 4} +{"name": "Seal Relic", "refName": "Seal Relic", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Relic"}, "w": 2, "h": 1} +{"name": "Seal of Lunaris", "refName": "Seal of Lunaris", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Seal of Solaris", "refName": "Seal of Solaris", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Searing Flame", "refName": "Searing Flame", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Second Wind", "refName": "Second Wind", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Secondary Regrading Lens", "refName": "Secondary Regrading Lens", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Sectarian Crest Shield", "refName": "Sectarian Crest Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [47, 47], "es": [18, 18]}, "w": 2, "h": 3} +{"name": "Sectioned Bracers", "refName": "Sectioned Bracers", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ev": [52, 52]}, "w": 2, "h": 2} +{"name": "Secured Leggings", "refName": "Secured Leggings", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [33, 33], "es": [14, 14]}, "w": 2, "h": 2} +{"name": "Seer Crest Shield", "refName": "Seer Crest Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [65, 65], "es": [23, 23]}, "w": 2, "h": 3} +{"name": "Seismic Cry", "refName": "Seismic Cry", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TZWlzbWljQ3J5U2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f15f5c64ff/SeismicCrySkillGem.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Sentinel Controller", "refName": "Sentinel Controller", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Serpentscale Coat", "refName": "Serpentscale Coat", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [198, 198]}, "w": 2, "h": 3} +{"name": "Serrated Fossil", "refName": "Serrated Fossil", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvU2VycmF0ZWRGb3NzaWwiLCJzY2FsZSI6MX1d/227ff121c8/SerratedFossil.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Serrated Quiver", "refName": "Serrated Quiver", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Quiver"}, "w": 2, "h": 3} +{"name": "Shabby Hood", "refName": "Shabby Hood", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [19, 19]}, "w": 2, "h": 2} +{"name": "Shaded Mask", "refName": "Shaded Mask", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [99, 99], "es": [39, 39]}, "w": 2, "h": 2} +{"name": "Shaman Mantle", "refName": "Shaman Mantle", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [100, 100], "es": [39, 39]}, "w": 2, "h": 3} +{"name": "Shaper's Orb (Tier 1)", "refName": "Shaper's Orb (Tier 1)", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Shaper's Orb (Tier 10)", "refName": "Shaper's Orb (Tier 10)", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Shaper's Orb (Tier 10)", "refName": "Shaper's Orb (Tier 10)", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Shaper's Orb (Tier 10)", "refName": "Shaper's Orb (Tier 10)", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Shaper's Orb (Tier 2)", "refName": "Shaper's Orb (Tier 2)", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Shaper's Orb (Tier 3)", "refName": "Shaper's Orb (Tier 3)", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Shaper's Orb (Tier 4)", "refName": "Shaper's Orb (Tier 4)", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Shaper's Orb (Tier 5)", "refName": "Shaper's Orb (Tier 5)", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Shaper's Orb (Tier 6)", "refName": "Shaper's Orb (Tier 6)", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Shaper's Orb (Tier 7)", "refName": "Shaper's Orb (Tier 7)", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Shaper's Orb (Tier 8)", "refName": "Shaper's Orb (Tier 8)", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Shaper's Orb (Tier 8)", "refName": "Shaper's Orb (Tier 8)", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Shaper's Orb (Tier 9)", "refName": "Shaper's Orb (Tier 9)", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Shaper's Orb (Tier 9)", "refName": "Shaper's Orb (Tier 9)", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Shaper's Orb (Tier 9)", "refName": "Shaper's Orb (Tier 9)", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Shard Scavenger", "refName": "Shard Scavenger", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Sharktooth Claw", "refName": "Sharktooth Claw", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9DbGF3cy9DbGF3MiIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/8b8d9559cd/Claw2.png", "craftable": {"category": "Claw"}, "w": 2, "h": 2} +{"name": "Shattering Concoction", "refName": "Shattering Concoction", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Shattering Palm", "refName": "Shattering Palm", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Shield Charge", "refName": "Shield Charge", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaGllbGRDaGFyZ2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/1749dcaa1d/ShieldCharge.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Shield Wall", "refName": "Shield Wall", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Shielded Helm", "refName": "Shielded Helm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [75, 75], "ev": [66, 66]}, "w": 2, "h": 2} +{"name": "Shielding Cry", "refName": "Shielding Cry", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Shining Ward", "refName": "Shining Ward", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvU2hpbmluZ1dhcmQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/275019d027/ShiningWard.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Shiny Reliquary Key", "refName": "Shiny Reliquary Key", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9NYXZlbkZvaWwiLCJzY2FsZSI6MX1d/09cccd8ddb/MavenFoil.png", "craftable": {"category": "VaultKey"}, "w": 1, "h": 1} +{"name": "Shock Nova", "refName": "Shock Nova", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaG9ja05vdmEiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/671a5ad79a/ShockNova.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Shock Siphon", "refName": "Shock Siphon", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Shockburst Rounds", "refName": "Shockburst Rounds", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Shockchain Arrow", "refName": "Shockchain Arrow", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Shockwave Totem", "refName": "Shockwave Totem", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaG9ja3dhdmVUb3RlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/406bc8da09/ShockwaveTotem.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Shortbow", "refName": "Shortbow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Bow"}, "w": 2, "h": 4} +{"name": "Shortsword", "refName": "Shortsword", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Sword"}, "w": 2, "h": 3} +{"name": "Shrapnel Trap", "refName": "Shrapnel Trap", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "TrapTool"}, "w": 1, "h": 3} +{"name": "Shrine Sceptre", "refName": "Shrine Sceptre", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Sceptre"}, "w": 2, "h": 3} +{"name": "Shrine Sceptre", "refName": "Shrine Sceptre", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Sceptre"}, "w": 2, "h": 3} +{"name": "Shrine Sceptre", "refName": "Shrine Sceptre", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Sceptre"}, "w": 2, "h": 3} +{"name": "Shroud", "refName": "Shroud", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Shrouded Vest", "refName": "Shrouded Vest", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [102, 102]}, "w": 2, "h": 3} +{"name": "Shuddering Fossil", "refName": "Shuddering Fossil", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvU2h1ZGRlcmluZ0Zvc3NpbCIsInNjYWxlIjoxfV0/ecd4122277/ShudderingFossil.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Sibilant Catalyst", "refName": "Sibilant Catalyst", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaENhdGFseXN0Q2FzdGVyIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/51dc6bc317/BreachCatalystCaster.png", "tradeTag": "sibilant-catalyst", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Sickle Sword", "refName": "Sickle Sword", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Sword"}, "w": 2, "h": 3} +{"name": "Siege Cascade", "refName": "Siege Cascade", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Sigil Crest Shield", "refName": "Sigil Crest Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [17, 17], "es": [8, 8]}, "w": 2, "h": 3} +{"name": "Sigil of Power", "refName": "Sigil of Power", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaXJjbGVvZlBvd2VyU2tpbGxHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b47a71c6bf/CircleofPowerSkillGem.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Sigil of the Third Pact", "refName": "Sigil of the Third Pact", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Signet Cuffs", "refName": "Signet Cuffs", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [67, 67], "es": [23, 23]}, "w": 2, "h": 2} +{"name": "Silk Robe", "refName": "Silk Robe", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb2R5QXJtb3Vycy9Cb2R5SW50MkMiLCJ3IjoyLCJoIjozLCJzY2FsZSI6MX1d/8b200fbbb5/BodyInt2C.png", "craftable": {"category": "Body Armour"}, "armour": {"es": [61, 61]}, "w": 2, "h": 3} +{"name": "Silk Slippers", "refName": "Silk Slippers", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9Cb290cy9Cb290c0ludDMiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/036cf97e61/BootsInt3.png", "craftable": {"category": "Boots"}, "armour": {"es": [34, 34]}, "w": 2, "h": 2} +{"name": "Silkweave Sole", "refName": "Silkweave Sole", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvU2lsa3dlYXZlU29sZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/0139320677/SilkweaveSole.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Silver Brooch", "refName": "Silver Brooch", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvU2lsdmVyQnJvb2NoIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6601ca4fe0/SilverBrooch.png", "craftable": {"category": "HeistEquipmentReward"}, "w": 1, "h": 1} +{"name": "Silver Charm", "refName": "Silver Charm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Charm"}, "w": 1, "h": 1} +{"name": "Silver Coin", "refName": "Silver Coin", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Silver Key", "refName": "Silver Key", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Silver Key", "refName": "Silver Key", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Simple Dagger", "refName": "Simple Dagger", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Dagger"}, "w": 1, "h": 3} +{"name": "Simple Iron Net", "refName": "Simple Iron Net", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Simple Lockpick", "refName": "Simple Lockpick", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvU2ltcGxlTG9ja3BpY2siLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/6dbc6c1463/SimpleLockpick.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Simple Rope Net", "refName": "Simple Rope Net", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Simple Sextant", "refName": "Simple Sextant", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Simple Steel Net", "refName": "Simple Steel Net", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Simulacrum", "refName": "Simulacrum", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9EZWxpcml1bUZyYWdtZW50Iiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/cce2c7e1b3/DeliriumFragment.png", "tradeTag": "simulacrum", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Simulacrum Splinter", "refName": "Simulacrum Splinter", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9EZWxpcml1bVNwbGludGVyIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/296e6ffc57/DeliriumSplinter.png", "tradeTag": "simulacrum-splinter", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Singular Incubator", "refName": "Singular Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uVW5pcXVlcyIsInNjYWxlIjoxfV0/72b48d1f1b/IncubationUniques.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Singular Incubator", "refName": "Singular Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uVW5pcXVlcyIsInNjYWxlIjoxfV0/72b48d1f1b/IncubationUniques.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Singular Scouting Report", "refName": "Singular Scouting Report", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Siphoning Strike", "refName": "Siphoning Strike", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Siphoning Wand", "refName": "Siphoning Wand", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Wand"}, "w": 1, "h": 3} +{"name": "Skeletal Arsonist", "refName": "Skeletal Arsonist", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Skeletal Brute", "refName": "Skeletal Brute", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Skeletal Cleric", "refName": "Skeletal Cleric", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Skeletal Frost Mage", "refName": "Skeletal Frost Mage", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Skeletal Reaver", "refName": "Skeletal Reaver", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Skeletal Sniper", "refName": "Skeletal Sniper", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Skeletal Storm Mage", "refName": "Skeletal Storm Mage", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Skeletal Warrior", "refName": "Skeletal Warrior", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Skeletal Warrior", "refName": "Skeletal Warrior", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Skeleton Keyring", "refName": "Skeleton Keyring", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvTWFzdGVyS2V5cmluZyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/d43f92c4ad/MasterKeyring.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Skinning Knife", "refName": "Skinning Knife", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9EYWdnZXJzL0RhZ2dlcjIiLCJ3IjoxLCJoIjozLCJzY2FsZSI6MX1d/c2c0a06eec/Dagger2.png", "craftable": {"category": "Dagger"}, "w": 1, "h": 3} +{"name": "Skittering Catalyst", "refName": "Skittering Catalyst", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaENhdGFseXN0U3BlZWQiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/14b5db3c3c/BreachCatalystSpeed.png", "tradeTag": "skittering-catalyst", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Skittering Incubator", "refName": "Skittering Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uU2NhcmFicyIsInNjYWxlIjoxfV0/1627db84fb/IncubationScarabs.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Skittering Incubator", "refName": "Skittering Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uU2NhcmFicyIsInNjYWxlIjoxfV0/1627db84fb/IncubationScarabs.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Slaver's Records", "refName": "Slaver's Records", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Slayer Armour", "refName": "Slayer Armour", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [294, 294], "ev": [268, 268]}, "w": 2, "h": 3} +{"name": "Slender Flail", "refName": "Slender Flail", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Flail"}, "w": 2, "h": 3} +{"name": "Slicing Quarterstaff", "refName": "Slicing Quarterstaff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Warstaff"}, "w": 2, "h": 4} +{"name": "Slim Mace", "refName": "Slim Mace", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Mace"}, "w": 2, "h": 3} +{"name": "Small Soul Core", "refName": "Small Soul Core", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "InstanceLocalItem"}, "w": 1, "h": 2} +{"name": "Small Soul Core", "refName": "Small Soul Core", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "InstanceLocalItem"}, "w": 1, "h": 2} +{"name": "Small Soul Core", "refName": "Small Soul Core", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "InstanceLocalItem"}, "w": 1, "h": 2} +{"name": "Small Soul Core", "refName": "Small Soul Core", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "InstanceLocalItem"}, "w": 1, "h": 2} +{"name": "Smithing Hammer", "refName": "Smithing Hammer", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Mace"}, "w": 2, "h": 3} +{"name": "Smithing Tools", "refName": "Smithing Tools", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 3, "h": 2} +{"name": "Smooth Quarterstaff", "refName": "Smooth Quarterstaff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Warstaff"}, "w": 2, "h": 4} +{"name": "Smuggler Coat", "refName": "Smuggler Coat", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [256, 256]}, "w": 2, "h": 3} +{"name": "Snipe", "refName": "Snipe", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TbmlwZXJTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ae5061110b/SniperSkillGem.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Sniper's Mark", "refName": "Sniper's Mark", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Qcm9qZWN0aWxlV2Vha25lc3MiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/3dd2dfcc61/ProjectileWeakness.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Solar Amulet", "refName": "Solar Amulet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Amulet"}, "w": 1, "h": 1} +{"name": "Solar Orb", "refName": "Solar Orb", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Soldier Greathelm", "refName": "Soldier Greathelm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [66, 66]}, "w": 2, "h": 2} +{"name": "Solerai's Spear", "refName": "Solerai's Spear", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Solid Mask", "refName": "Solid Mask", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [87, 87], "es": [35, 35]}, "w": 2, "h": 2} +{"name": "Sombre Gloves", "refName": "Sombre Gloves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"es": [15, 15]}, "w": 2, "h": 2} +{"name": "Sorcery Ward", "refName": "Sorcery Ward", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Soul Core of Atmohua", "refName": "Soul Core of Atmohua", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU291bENvcmVzL0dyZWF0ZXJTb3VsQ29yZUNyaXQiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/b453416064/GreaterSoulCoreCrit.png", "tradeTag": "soul-core-of-atmohua", "craftable": {"category": "SoulCore"}, "w": 1, "h": 1} +{"name": "Soul Core of Azcapa", "refName": "Soul Core of Azcapa", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU291bENvcmVzL0dyZWF0ZXJTb3VsQ29yZVdlYWx0aFJhcml0eSIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/6a69033a04/GreaterSoulCoreWealthRarity.png", "tradeTag": "soul-core-of-azcapa", "craftable": {"category": "SoulCore"}, "w": 1, "h": 1} +{"name": "Soul Core of Cholotl", "refName": "Soul Core of Cholotl", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU291bENvcmVzL0dyZWF0ZXJTb3VsQ29yZUNyaXQiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/b453416064/GreaterSoulCoreCrit.png", "tradeTag": "soul-core-of-cholotl", "craftable": {"category": "SoulCore"}, "w": 1, "h": 1} +{"name": "Soul Core of Citaqualotl", "refName": "Soul Core of Citaqualotl", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU291bENvcmVzL1NvdWxDb3JlUGh5c2ljYWwiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/f48f9f0c62/SoulCorePhysical.png", "tradeTag": "soul-core-of-citaqualotl", "craftable": {"category": "SoulCore"}, "w": 1, "h": 1} +{"name": "Soul Core of Jiquani", "refName": "Soul Core of Jiquani", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU291bENvcmVzL0dyZWF0ZXJTb3VsQ29yZUxpZmUiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/bb83a9f337/GreaterSoulCoreLife.png", "tradeTag": "soul-core-of-jiquani", "craftable": {"category": "SoulCore"}, "w": 1, "h": 1} +{"name": "Soul Core of Opiloti", "refName": "Soul Core of Opiloti", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU291bENvcmVzL0dyZWF0ZXJTb3VsQ29yZVBoeXNpY2FsIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/366f87b8f2/GreaterSoulCorePhysical.png", "tradeTag": "soul-core-of-opiloti", "craftable": {"category": "SoulCore"}, "w": 1, "h": 1} +{"name": "Soul Core of Puhuarte", "refName": "Soul Core of Puhuarte", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU291bENvcmVzL0dyZWF0ZXJTb3VsQ29yZUZpcmUiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/6390ebeaa6/GreaterSoulCoreFire.png", "tradeTag": "soul-core-of-puhuarte", "craftable": {"category": "SoulCore"}, "w": 1, "h": 1} +{"name": "Soul Core of Quipolatl", "refName": "Soul Core of Quipolatl", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU291bENvcmVzL0dyZWF0ZXJTb3VsQ29yZVNwZWVkIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/d4967ad0f1/GreaterSoulCoreSpeed.png", "tradeTag": "soul-core-of-quipolatl", "craftable": {"category": "SoulCore"}, "w": 1, "h": 1} +{"name": "Soul Core of Tacati", "refName": "Soul Core of Tacati", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU291bENvcmVzL0dyZWF0ZXJTb3VsQ29yZUNoYW9zIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/cd9c4fb0a7/GreaterSoulCoreChaos.png", "tradeTag": "soul-core-of-tacati", "craftable": {"category": "SoulCore"}, "w": 1, "h": 1} +{"name": "Soul Core of Ticaba", "refName": "Soul Core of Ticaba", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU291bENvcmVzL0dyZWF0ZXJTb3VsQ29yZUNyaXQiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/b453416064/GreaterSoulCoreCrit.png", "tradeTag": "soul-core-of-ticaba", "craftable": {"category": "SoulCore"}, "w": 1, "h": 1} +{"name": "Soul Core of Topotante", "refName": "Soul Core of Topotante", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU291bENvcmVzL0dyZWF0ZXJTb3VsQ29yZVRyaUVsZW1lbnQiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/ae7a949b3a/GreaterSoulCoreTriElement.png", "tradeTag": "soul-core-of-topotante", "craftable": {"category": "SoulCore"}, "w": 1, "h": 1} +{"name": "Soul Core of Tzamoto", "refName": "Soul Core of Tzamoto", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU291bENvcmVzL0dyZWF0ZXJTb3VsQ29yZUNvbGQiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/d437c04d5e/GreaterSoulCoreCold.png", "tradeTag": "soul-core-of-tzamoto", "craftable": {"category": "SoulCore"}, "w": 1, "h": 1} +{"name": "Soul Core of Xopec", "refName": "Soul Core of Xopec", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU291bENvcmVzL0dyZWF0ZXJTb3VsQ29yZUxpZ2h0bmluZyIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/3dffadfa9a/GreaterSoulCoreLightning.png", "tradeTag": "soul-core-of-xopec", "craftable": {"category": "SoulCore"}, "w": 1, "h": 1} +{"name": "Soul Core of Zalatl", "refName": "Soul Core of Zalatl", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU291bENvcmVzL0dyZWF0ZXJTb3VsQ29yZU1hbmEiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/1437190de2/GreaterSoulCoreMana.png", "tradeTag": "soul-core-of-zalatl", "craftable": {"category": "SoulCore"}, "w": 1, "h": 1} +{"name": "Soul Core of Zantipi", "refName": "Soul Core of Zantipi", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU291bENvcmVzL0dyZWF0ZXJTb3VsQ29yZUNyaXQiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/b453416064/GreaterSoulCoreCrit.png", "tradeTag": "soul-core-of-zantipi", "craftable": {"category": "SoulCore"}, "w": 1, "h": 1} +{"name": "Soul Drain", "refName": "Soul Drain", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Soul Offering", "refName": "Soul Offering", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Soul Thief", "refName": "Soul Thief", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Soulbreaker", "refName": "Soulbreaker", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Soulrend", "refName": "Soulrend", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Tb3VscmVuZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/ff1bb335b0/Soulrend.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Spark", "refName": "Spark", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGFyayIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/60a5c0ff13/Spark.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Spark", "refName": "Spark", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TcGFyayIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/60a5c0ff13/Spark.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Spear Stab", "refName": "Spear Stab", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Spearfield", "refName": "Spearfield", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Spectre: {0}", "refName": "Spectre: {0}", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Specularity Scroll", "refName": "Specularity Scroll", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9IYXJiaW5nZXJUb2tlblNoaWVsZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7e0479ea6e/HarbingerTokenShield.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Spell Cascade", "refName": "Spell Cascade", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Spell Echo", "refName": "Spell Echo", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Spike Trap", "refName": "Spike Trap", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "TrapTool"}, "w": 2, "h": 2} +{"name": "Spiked Buckler", "refName": "Spiked Buckler", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ev": [62, 62]}, "w": 2, "h": 2} +{"name": "Spiked Club", "refName": "Spiked Club", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvV2VhcG9ucy9PbmVIYW5kV2VhcG9ucy9PbmVIYW5kTWFjZXMvT25lSGFuZE1hY2UzIiwidyI6MSwiaCI6Mywic2NhbGUiOjF9XQ/a3a1dace2a/OneHandMace3.png", "craftable": {"category": "One Hand Mace"}, "w": 2, "h": 3} +{"name": "Spined Bracers", "refName": "Spined Bracers", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ev": [60, 60]}, "w": 2, "h": 2} +{"name": "Spinning Inferno", "refName": "Spinning Inferno", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Spiral Volley", "refName": "Spiral Volley", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Spiral Wraps", "refName": "Spiral Wraps", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ev": [33, 33], "es": [14, 14]}, "w": 2, "h": 2} +{"name": "Spired Greathelm", "refName": "Spired Greathelm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [116, 116]}, "w": 2, "h": 2} +{"name": "Spiritbone Crown", "refName": "Spiritbone Crown", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [97, 97], "es": [35, 35]}, "w": 2, "h": 2} +{"name": "Splinter", "refName": "Splinter", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Splinter of Chayula", "refName": "Splinter of Chayula", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFNoYXJkQ2hhb3MiLCJzY2FsZSI6MX1d/14332eaec8/BreachShardChaos.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Splinter of Esh", "refName": "Splinter of Esh", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFNoYXJkTGlnaHRuaW5nIiwic2NhbGUiOjF9XQ/38665f5bda/BreachShardLightning.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Splinter of Tul", "refName": "Splinter of Tul", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFNoYXJkQ29sZCIsInNjYWxlIjoxfV0/6fb888d0e1/BreachShardCold.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Splinter of Uul-Netol", "refName": "Splinter of Uul-Netol", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFNoYXJkUGh5c2ljYWwiLCJzY2FsZSI6MX1d/3919f62b2a/BreachShardPhysical.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Splinter of Xoph", "refName": "Splinter of Xoph", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaFNoYXJkRmlyZSIsInNjYWxlIjoxfV0/b53a90ea19/BreachShardFire.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Splintered Flail", "refName": "Splintered Flail", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Flail"}, "w": 2, "h": 3} +{"name": "Splintered Tower Shield", "refName": "Splintered Tower Shield", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQXJtb3Vycy9TaGllbGRzL1NoaWVsZFN0cjEiLCJ3IjoyLCJoIjo0LCJzY2FsZSI6MX1d/3c332a170f/ShieldStr1.png", "craftable": {"category": "Shield"}, "armour": {"ar": [18, 18]}, "w": 2, "h": 4} +{"name": "Splitting Greataxe", "refName": "Splitting Greataxe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Axe"}, "w": 2, "h": 4} +{"name": "Spreading Frost", "refName": "Spreading Frost", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Spriggan Staff", "refName": "Spriggan Staff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Staff"}, "w": 1, "h": 4} +{"name": "Stacked Sabatons", "refName": "Stacked Sabatons", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [56, 56], "ev": [50, 50]}, "w": 2, "h": 2} +{"name": "Staff of the First Sin Eater", "refName": "Staff of the First Sin Eater", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 4} +{"name": "Staggering Palm", "refName": "Staggering Palm", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Stampede", "refName": "Stampede", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Standard Lockpick", "refName": "Standard Lockpick", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvU3RhbmRhcmRMb2NrcGljayIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/c07ad566fa/StandardLockpick.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Standard Sharpening Stone", "refName": "Standard Sharpening Stone", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvU3RhbmRhcmRTaGFycGVuaW5nU3RvbmUiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/451be8e369/StandardSharpeningStone.png", "craftable": {"category": "HeistEquipmentWeapon"}, "w": 2, "h": 2} +{"name": "Staunching Charm", "refName": "Staunching Charm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Charm"}, "w": 1, "h": 1} +{"name": "Steel Bracers", "refName": "Steel Bracers", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQnJhY2VyQmFzZVR5cGVfbWV0YWwiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/9922db6069/BracerBaseType_metal.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Steel Drill", "refName": "Steel Drill", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRHJpbGxTdGQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/918de329aa/DrillStd.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Steel Plate", "refName": "Steel Plate", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [177, 177]}, "w": 2, "h": 3} +{"name": "Steelpoint Quarterstaff", "refName": "Steelpoint Quarterstaff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Warstaff"}, "w": 2, "h": 4} +{"name": "Steelpoint Shoes", "refName": "Steelpoint Shoes", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ev": [65, 65], "es": [26, 26]}, "w": 2, "h": 2} +{"name": "Steeltoe Boots", "refName": "Steeltoe Boots", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ev": [79, 79]}, "w": 2, "h": 2} +{"name": "Stellar Amulet", "refName": "Stellar Amulet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Amulet"}, "w": 1, "h": 1} +{"name": "Stitched Bladder", "refName": "Stitched Bladder", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 1} +{"name": "Stitched Gloves", "refName": "Stitched Gloves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"es": [17, 17]}, "w": 2, "h": 2} +{"name": "Stocky Mitts", "refName": "Stocky Mitts", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [15, 15]}, "w": 2, "h": 2} +{"name": "Stoic Crest Shield", "refName": "Stoic Crest Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [69, 69], "es": [24, 24]}, "w": 2, "h": 3} +{"name": "Stoic Sceptre", "refName": "Stoic Sceptre", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Sceptre"}, "w": 2, "h": 3} +{"name": "Stomping Ground", "refName": "Stomping Ground", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Stone Charm", "refName": "Stone Charm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Charm"}, "w": 1, "h": 1} +{"name": "Stone Flail", "refName": "Stone Flail", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Flail"}, "w": 2, "h": 3} +{"name": "Stone Greatsword", "refName": "Stone Greatsword", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Sword"}, "w": 2, "h": 4} +{"name": "Stone Greaves", "refName": "Stone Greaves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [102, 102]}, "w": 2, "h": 2} +{"name": "Stone Rune", "refName": "Stone Rune", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUnVuZXMvU3R1blJ1bmUiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/f7830fb594/StunRune.png", "tradeTag": "stone-rune", "craftable": {"category": "SoulCore"}, "w": 1, "h": 1} +{"name": "Stone Tower Shield", "refName": "Stone Tower Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [91, 91]}, "w": 2, "h": 4} +{"name": "Stone of Passage", "refName": "Stone of Passage", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "IncursionItem"}, "w": 1, "h": 1} +{"name": "Storm Rune", "refName": "Storm Rune", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUnVuZXMvTGlnaHRuaW5nUnVuZSIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/98319b3998/LightningRune.png", "tradeTag": "storm-rune", "craftable": {"category": "SoulCore"}, "w": 1, "h": 1} +{"name": "Storm Spear", "refName": "Storm Spear", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Storm Surge", "refName": "Storm Surge", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Storm Wave", "refName": "Storm Wave", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Stormblast Bolts", "refName": "Stormblast Bolts", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Stormcaller Arrow", "refName": "Stormcaller Arrow", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Stormfire", "refName": "Stormfire", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvU3Rvcm1GaXJlIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6b3db4e8df/StormFire.png", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Stratified Targe", "refName": "Stratified Targe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [61, 61], "ev": [54, 54]}, "w": 2, "h": 3} +{"name": "Straw Sandals", "refName": "Straw Sandals", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"es": [14, 14]}, "w": 2, "h": 2} +{"name": "Strider Vest", "refName": "Strider Vest", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [275, 275]}, "w": 2, "h": 3} +{"name": "Striking Spear", "refName": "Striking Spear", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Spear"}, "w": 1, "h": 4} +{"name": "Strip Away", "refName": "Strip Away", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Strong Iron Net", "refName": "Strong Iron Net", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Strong Rope Net", "refName": "Strong Rope Net", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Strong Steel Net", "refName": "Strong Steel Net", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Studded Bracers", "refName": "Studded Bracers", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvQnJhY2VyQmFzZVR5cGVfc3R1ZGRlZCIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/1dc4ea1d4c/BracerBaseType_studded.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Studded Greatclub", "refName": "Studded Greatclub", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Mace"}, "w": 2, "h": 4} +{"name": "Studded Sandals", "refName": "Studded Sandals", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"es": [53, 53]}, "w": 2, "h": 2} +{"name": "Studded Targe", "refName": "Studded Targe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [27, 27], "ev": [23, 23]}, "w": 2, "h": 3} +{"name": "Studded Vest", "refName": "Studded Vest", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [150, 150]}, "w": 2, "h": 3} +{"name": "Sturdy Crossbow", "refName": "Sturdy Crossbow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Crossbow"}, "w": 2, "h": 4} +{"name": "Suede Bracers", "refName": "Suede Bracers", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ev": [10, 10]}, "w": 2, "h": 2} +{"name": "Sulphur Blowtorch", "refName": "Sulphur Blowtorch", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVG9yY2hTdGQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/9291e5d539/TorchStd.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Summon Companion", "refName": "Summon Companion", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MetaSkillGem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Summon Infernal Hound", "refName": "Summon Infernal Hound", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Summon Rhoa Mount", "refName": "Summon Rhoa Mount", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Summon Wolf", "refName": "Summon Wolf", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Sun Artifact", "refName": "Sun Artifact", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRXhwZWRpdGlvbi9SdW5lMTciLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/ca2335fdef/Rune17.png", "tradeTag": "sun-artifact", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Sun Clan Relic", "refName": "Sun Clan Relic", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 2} +{"name": "Sunder", "refName": "Sunder", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9TaG9ja3dhdmVTbGFtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6e2b0e71d5/ShockwaveSlam.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Supercharged Slam", "refName": "Supercharged Slam", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Supercritical", "refName": "Supercritical", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Surveyor's Compass", "refName": "Surveyor's Compass", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Swathed Cap", "refName": "Swathed Cap", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [98, 98]}, "w": 2, "h": 2} +{"name": "Swift Affliction", "refName": "Swift Affliction", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Sword Slash", "refName": "Sword Slash", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Sword Slash", "refName": "Sword Slash", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Sword Slash", "refName": "Sword Slash", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Sword Spear", "refName": "Sword Spear", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Spear"}, "w": 1, "h": 4} +{"name": "Sword of the Inverse Relic", "refName": "Sword of the Inverse Relic", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 4} +{"name": "Tailoring Orb", "refName": "Tailoring Orb", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGl2aW5lRW5jaGFudFdlYXBvbkN1cnJlbmN5Iiwic2NhbGUiOjF9XQ/d417654a23/DivineEnchantWeaponCurrency.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Tainted Armourer's Scrap", "refName": "Tainted Armourer's Scrap", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZUFybW91cmVyc1NjcmFwIiwic2NhbGUiOjF9XQ/9ee0a10625/HellscapeArmourersScrap.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Tainted Blacksmith's Whetstone", "refName": "Tainted Blacksmith's Whetstone", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZUJsYWNrc21pdGhXaGV0c3RvbmUiLCJzY2FsZSI6MX1d/0309648ccb/HellscapeBlacksmithWhetstone.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Tainted Chaos Orb", "refName": "Tainted Chaos Orb", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZUNoYW9zT3JiIiwic2NhbGUiOjF9XQ/64d1f4db99/HellscapeChaosOrb.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Tainted Chromatic Orb", "refName": "Tainted Chromatic Orb", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZUNocm9tYXRpY09yYiIsInNjYWxlIjoxfV0/702d29c7ab/HellscapeChromaticOrb.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Tainted Divine Teardrop", "refName": "Tainted Divine Teardrop", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZVRlYXJkcm9wT3JiIiwic2NhbGUiOjF9XQ/0d251b9d52/HellscapeTeardropOrb.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Tainted Exalted Orb", "refName": "Tainted Exalted Orb", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZUV4YWx0ZWRPcmIiLCJzY2FsZSI6MX1d/68a0ea3020/HellscapeExaltedOrb.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Tainted Jeweller's Orb", "refName": "Tainted Jeweller's Orb", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZUpld2VsbGVyc09yYiIsInNjYWxlIjoxfV0/f146c29db2/HellscapeJewellersOrb.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Tainted Mythic Orb", "refName": "Tainted Mythic Orb", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZU15dGhpY09yYiIsInNjYWxlIjoxfV0/72ba97d1a8/HellscapeMythicOrb.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Tainted Orb of Fusing", "refName": "Tainted Orb of Fusing", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVsbHNjYXBlL0hlbGxzY2FwZU9yYk9mRnVzaW5nIiwic2NhbGUiOjF9XQ/845f3c20ed/HellscapeOrbOfFusing.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Talon Claw", "refName": "Talon Claw", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Claw"}, "w": 2, "h": 2} +{"name": "Tangled Fossil", "refName": "Tangled Fossil", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGVsdmUvVGFuZ2xlZEZvc3NpbCIsInNjYWxlIjoxfV0/b96bdfe155/TangledFossil.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Tapestry Relic", "refName": "Tapestry Relic", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Relic"}, "w": 3, "h": 1} +{"name": "Tattered Cloak", "refName": "Tattered Cloak", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVGF0dGVyZWRDbG9hayIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/9c3ef0c0c4/TatteredCloak.png", "craftable": {"category": "HeistEquipmentUtility"}, "w": 2, "h": 2} +{"name": "Tattered Robe", "refName": "Tattered Robe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"es": [28, 28]}, "w": 2, "h": 3} +{"name": "Tearing Flail", "refName": "Tearing Flail", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Flail"}, "w": 2, "h": 3} +{"name": "Tempered Mitts", "refName": "Tempered Mitts", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [40, 40]}, "w": 2, "h": 2} +{"name": "Tempering Orb", "refName": "Tempering Orb", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvRGl2aW5lRW5jaGFudEJvZHlBcm1vdXJDdXJyZW5jeSIsInNjYWxlIjoxfV0/37681eda1c/DivineEnchantBodyArmourCurrency.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Tempest Bell", "refName": "Tempest Bell", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Tempest Flurry", "refName": "Tempest Flurry", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Templar Crown", "refName": "Templar Crown", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [134, 134], "es": [46, 46]}, "w": 2, "h": 2} +{"name": "Templar Uniforms", "refName": "Templar Uniforms", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Temple Door Idol", "refName": "Temple Door Idol", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Temple Maul", "refName": "Temple Maul", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Mace"}, "w": 2, "h": 4} +{"name": "Temporal Chains", "refName": "Temporal Chains", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9UZW1wb3JhbENoYWlucyIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/9746170624/TemporalChains.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Temporal Rift", "refName": "Temporal Rift", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9DaHJvbm9tYW5jZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/9977b27b7c/Chronomancer.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Tense Crossbow", "refName": "Tense Crossbow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Crossbow"}, "w": 2, "h": 4} +{"name": "Test of Cunning Barya", "refName": "Test of Cunning Barya", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MiscMapItem"}, "w": 1, "h": 1} +{"name": "Test of Strength Barya", "refName": "Test of Strength Barya", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MiscMapItem"}, "w": 1, "h": 1} +{"name": "Test of Time Barya", "refName": "Test of Time Barya", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MiscMapItem"}, "w": 1, "h": 1} +{"name": "Test of Will Barya", "refName": "Test of Will Barya", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MiscMapItem"}, "w": 1, "h": 1} +{"name": "Thaumaturge's Incubator", "refName": "Thaumaturge's Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uR2VtcyIsInNjYWxlIjoxfV0/7df785d740/IncubationGems.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Thaumaturge's Incubator", "refName": "Thaumaturge's Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uR2VtcyIsInNjYWxlIjoxfV0/7df785d740/IncubationGems.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Thaumaturgical Net", "refName": "Thaumaturgical Net", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Thaumaturgical Sensing Charm", "refName": "Thaumaturgical Sensing Charm", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVGhhdW1hdHVyZ2ljYWxTZW5zaW5nQ2hhcm0iLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/7717c977a0/ThaumaturgicalSensingCharm.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Thaumaturgical Ward", "refName": "Thaumaturgical Ward", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVGhhdW1hdHVyZ2ljYWxXYXJkIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/5c04225225/ThaumaturgicalWard.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Thaumetic Blowtorch", "refName": "Thaumetic Blowtorch", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVG9yY2hBZHYiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/56e93dd6de/TorchAdv.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Thaumetic Flashpowder", "refName": "Thaumetic Flashpowder", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVGhhdW1ldGljRmxhc2hwb3dkZXIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/1544d0cf33/ThaumeticFlashpowder.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Thawing Charm", "refName": "Thawing Charm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Charm"}, "w": 1, "h": 1} +{"name": "The Blood Idol", "refName": "The Blood Idol", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "The Book of Jamanra", "refName": "The Book of Jamanra", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "The Essence of Water", "refName": "The Essence of Water", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "The Flame Core", "refName": "The Flame Core", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "The Flame Ruby", "refName": "The Flame Ruby", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "The Goddess of Water", "refName": "The Goddess of Water", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "The Golden Ibis", "refName": "The Golden Ibis", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "The Hammer of Kamasa", "refName": "The Hammer of Kamasa", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 3, "h": 2} +{"name": "The Horn of the Vastiri", "refName": "The Horn of the Vastiri", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 4, "h": 2} +{"name": "The Maven's Beacon", "refName": "The Maven's Beacon", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "The Maven's Writ", "refName": "The Maven's Writ", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXRsYXMvTWF2ZW5LZXkiLCJzY2FsZSI6MX1d/40683e487b/MavenKey.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "The Sea Pearl Heirloom", "refName": "The Sea Pearl Heirloom", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "The Shaper's Key", "refName": "The Shaper's Key", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "The Thought Extractor", "refName": "The Thought Extractor", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "The Unbreakable", "refName": "The Unbreakable", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "The Vox Twins", "refName": "The Vox Twins", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Theatre Disguise Kit", "refName": "Theatre Disguise Kit", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvRXNwaW9uYWdlRGlzZ3Vpc2VLaXQiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/e450ea475f/EspionageDisguiseKit.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Threaded Shoes", "refName": "Threaded Shoes", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ev": [28, 28], "es": [14, 14]}, "w": 2, "h": 2} +{"name": "Tibbs' Wealth", "refName": "Tibbs' Wealth", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Tideseer Mantle", "refName": "Tideseer Mantle", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [165, 165], "es": [58, 58]}, "w": 2, "h": 3} +{"name": "Time Freeze", "refName": "Time Freeze", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Time Snap", "refName": "Time Snap", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Time of Need", "refName": "Time of Need", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Time-Lost Diamond", "refName": "Time-Lost Diamond", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Jewel"}, "w": 1, "h": 1} +{"name": "Time-Lost Emerald", "refName": "Time-Lost Emerald", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Jewel"}, "w": 1, "h": 1} +{"name": "Time-Lost Incubator", "refName": "Time-Lost Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uVW5pcXVlcyIsInNjYWxlIjoxfV0/72b48d1f1b/IncubationUniques.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Time-Lost Incubator", "refName": "Time-Lost Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uVW5pcXVlcyIsInNjYWxlIjoxfV0/72b48d1f1b/IncubationUniques.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Time-Lost Ruby", "refName": "Time-Lost Ruby", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Jewel"}, "w": 1, "h": 1} +{"name": "Time-Lost Sapphire", "refName": "Time-Lost Sapphire", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Jewel"}, "w": 1, "h": 1} +{"name": "Time-light Scroll", "refName": "Time-light Scroll", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9IYXJiaW5nZXJUb2tlbkJlbHQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/cd4f70a070/HarbingerTokenBelt.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Timeless Eternal Emblem", "refName": "Timeless Eternal Emblem", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FdGVybmFsRW1waXJlRnJhZ21lbnQiLCJzY2FsZSI6MX1d/974fcca603/EternalEmpireFragment.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Timeless Eternal Empire Splinter", "refName": "Timeless Eternal Empire Splinter", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FdGVybmFsRW1waXJlU2hhcmQiLCJzY2FsZSI6MX1d/f404e7925c/EternalEmpireShard.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Timeless Jewel", "refName": "Timeless Jewel", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvSmV3ZWxzL1RpbWVsZXNzIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/2cc52f22d7/Timeless.png", "craftable": {"category": "Jewel"}, "w": 1, "h": 1} +{"name": "Timeless Karui Emblem", "refName": "Timeless Karui Emblem", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9LYXJ1aUZyYWdtZW50Iiwic2NhbGUiOjF9XQ/c616b0ee65/KaruiFragment.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Timeless Karui Splinter", "refName": "Timeless Karui Splinter", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9LYXJ1aVNoYXJkIiwic2NhbGUiOjF9XQ/dd21055148/KaruiShard.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Timeless Maraketh Emblem", "refName": "Timeless Maraketh Emblem", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9NYXJha2V0aEZyYWdtZW50Iiwic2NhbGUiOjF9XQ/a81c4968ab/MarakethFragment.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Timeless Maraketh Splinter", "refName": "Timeless Maraketh Splinter", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9NYXJha2V0aFNoYXJkIiwic2NhbGUiOjF9XQ/04ec0d80fe/MarakethShard.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Timeless Templar Emblem", "refName": "Timeless Templar Emblem", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UZW1wbGFyRnJhZ21lbnQiLCJzY2FsZSI6MX1d/e7ede9f816/TemplarFragment.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Timeless Templar Splinter", "refName": "Timeless Templar Splinter", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UZW1wbGFyU2hhcmQiLCJzY2FsZSI6MX1d/fd3d766dd5/TemplarShard.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Timeless Vaal Emblem", "refName": "Timeless Vaal Emblem", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYWFsRnJhZ21lbnQiLCJzY2FsZSI6MX1d/1f8bc8f5ad/VaalFragment.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Timeless Vaal Splinter", "refName": "Timeless Vaal Splinter", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYWFsU2hhcmQiLCJzY2FsZSI6MX1d/6b356215ac/VaalShard.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Timeworn Reliquary Key", "refName": "Timeworn Reliquary Key", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYXVsdE1hcDMiLCJzY2FsZSI6MX1d/b7e8aacbaa/VaultMap3.png", "craftable": {"category": "VaultKey"}, "w": 1, "h": 1} +{"name": "Titan Mitts", "refName": "Titan Mitts", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ar": [100, 100]}, "w": 2, "h": 2} +{"name": "Titanium Glennach Cairns Watchstone", "refName": "Titanium Glennach Cairns Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Titanium Haewark Hamlet Watchstone", "refName": "Titanium Haewark Hamlet Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Titanium Lex Ejoris Watchstone", "refName": "Titanium Lex Ejoris Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Titanium Lex Proxima Watchstone", "refName": "Titanium Lex Proxima Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Titanium Lira Arthain Watchstone", "refName": "Titanium Lira Arthain Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Titanium New Vastir Watchstone", "refName": "Titanium New Vastir Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Titanium Tirn's End Watchstone", "refName": "Titanium Tirn's End Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Titanium Valdo's Rest Watchstone", "refName": "Titanium Valdo's Rest Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Tonal Focus", "refName": "Tonal Focus", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Focus"}, "armour": {"es": [25, 25]}, "w": 2, "h": 3} +{"name": "Topaz Charm", "refName": "Topaz Charm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Charm"}, "w": 1, "h": 1} +{"name": "Topaz Ring", "refName": "Topaz Ring", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvUmluZzUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/6f90cd3c4b/Ring5.png", "craftable": {"category": "Ring"}, "w": 1, "h": 1} +{"name": "Torment Club", "refName": "Torment Club", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Mace"}, "w": 2, "h": 3} +{"name": "Torment Jacket", "refName": "Torment Jacket", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [268, 268], "es": [101, 101]}, "w": 2, "h": 3} +{"name": "Torn Cloak", "refName": "Torn Cloak", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVG9ybkNsb2FrIiwidyI6MiwiaCI6Miwic2NhbGUiOjF9XQ/8857eabe4c/TornCloak.png", "craftable": {"category": "HeistEquipmentUtility"}, "w": 2, "h": 2} +{"name": "Torn Gloves", "refName": "Torn Gloves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"es": [9, 9]}, "w": 2, "h": 2} +{"name": "Tornado", "refName": "Tornado", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ub3JuYWRvR2VtIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/6ff8d3b903/TornadoGem.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Tornado Shot", "refName": "Tornado Shot", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Ub3JuYWRvU2hvdCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/7299d3edf8/TornadoShot.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Torture Wand", "refName": "Torture Wand", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Wand"}, "w": 1, "h": 3} +{"name": "Totemic Greatclub", "refName": "Totemic Greatclub", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Mace"}, "w": 2, "h": 4} +{"name": "Totemic Greaves", "refName": "Totemic Greaves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [182, 182]}, "w": 2, "h": 2} +{"name": "Tournament Mail", "refName": "Tournament Mail", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [245, 245], "ev": [223, 223]}, "w": 2, "h": 3} +{"name": "Tournament Mail", "refName": "Tournament Mail", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [245, 245], "ev": [223, 223]}, "w": 2, "h": 3} +{"name": "Tournament Mail", "refName": "Tournament Mail", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [245, 245], "ev": [223, 223]}, "w": 2, "h": 3} +{"name": "Toxic Growth", "refName": "Toxic Growth", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Toxic Quiver", "refName": "Toxic Quiver", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Quiver"}, "w": 2, "h": 3} +{"name": "Transcendent Life Flask", "refName": "Transcendent Life Flask", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Flask"}, "w": 1, "h": 2} +{"name": "Transcendent Mana Flask", "refName": "Transcendent Mana Flask", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Flask"}, "w": 1, "h": 2} +{"name": "Transforming Power Core", "refName": "Transforming Power Core", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Transmutation Shard", "refName": "Transmutation Shard", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lVcGdyYWRlVG9NYWdpY1NoYXJkIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/e67bca229b/CurrencyUpgradeToMagicShard.png", "tradeTag": "transmutation-shard", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Trarthan Flashpowder", "refName": "Trarthan Flashpowder", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVHJhcnRocmFuRmxhc2hwb3dkZXIiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/8f197f178c/TrarthranFlashpowder.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Treasured Blade", "refName": "Treasured Blade", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Sword"}, "w": 2, "h": 3} +{"name": "Tribal Bow", "refName": "Tribal Bow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Bow"}, "w": 2, "h": 4} +{"name": "Tribal Mask", "refName": "Tribal Mask", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [66, 66], "es": [28, 28]}, "w": 2, "h": 2} +{"name": "Tribute to the Goddess", "refName": "Tribute to the Goddess", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9MYWJ5cmludGhIYXJ2ZXN0Iiwic2NhbGUiOjF9XQ/81054ff374/LabyrinthHarvest.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Trimmed Greaves", "refName": "Trimmed Greaves", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [87, 87]}, "w": 2, "h": 2} +{"name": "Tul's Breachstone", "refName": "Tul's Breachstone", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaEZyYWdtZW50c0NvbGQiLCJzY2FsZSI6MX1d/d1a2906729/BreachFragmentsCold.png", "craftable": {"category": "Breachstone"}, "w": 1, "h": 1} +{"name": "Tul's Catalyst", "refName": "Tul's Catalyst", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaENhdGFseXN0Q29sZCIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/c3bc9abf43/BreachCatalystCold.png", "tradeTag": "tuls-catalyst", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Tul's Charged Breachstone", "refName": "Tul's Charged Breachstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Breachstone"}, "w": 1, "h": 1} +{"name": "Tul's Enriched Breachstone", "refName": "Tul's Enriched Breachstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Breachstone"}, "w": 1, "h": 1} +{"name": "Tul's Flawless Breachstone", "refName": "Tul's Flawless Breachstone", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL1R1bHNGbGF3bGVzc0JyZWFjaHN0b25lIiwic2NhbGUiOjF9XQ/f238a20f9a/TulsFlawlessBreachstone.png", "craftable": {"category": "Breachstone"}, "w": 1, "h": 1} +{"name": "Tul's Pure Breachstone", "refName": "Tul's Pure Breachstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Breachstone"}, "w": 1, "h": 1} +{"name": "Tullina's Engagement Ring", "refName": "Tullina's Engagement Ring", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Tusked Hominid Skull", "refName": "Tusked Hominid Skull", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Twig Circlet", "refName": "Twig Circlet", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"es": [19, 19]}, "w": 2, "h": 2} +{"name": "Twig Focus", "refName": "Twig Focus", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Focus"}, "armour": {"es": [12, 12]}, "w": 2, "h": 3} +{"name": "Twilight Tiara", "refName": "Twilight Tiara", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"es": [77, 77]}, "w": 2, "h": 2} +{"name": "Twin Flail", "refName": "Twin Flail", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Flail"}, "w": 2, "h": 3} +{"name": "Two-Point Quiver", "refName": "Two-Point Quiver", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Quiver"}, "w": 2, "h": 3} +{"name": "Ultimate Life Flask", "refName": "Ultimate Life Flask", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Flask"}, "w": 1, "h": 2} +{"name": "Ultimate Mana Flask", "refName": "Ultimate Mana Flask", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Flask"}, "w": 1, "h": 2} +{"name": "Ultimatum Aspect", "refName": "Ultimatum Aspect", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "UniqueFragment"}, "w": 1, "h": 2} +{"name": "Ultimatum Aspect", "refName": "Ultimatum Aspect", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "UniqueFragment"}, "w": 3, "h": 1} +{"name": "Ultimatum Aspect", "refName": "Ultimatum Aspect", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "UniqueFragment"}, "w": 1, "h": 2} +{"name": "Ultimatum Aspect", "refName": "Ultimatum Aspect", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "UniqueFragment"}, "w": 1, "h": 2} +{"name": "Ultra Greatsword", "refName": "Ultra Greatsword", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Sword"}, "w": 2, "h": 4} +{"name": "Una's Lute", "refName": "Una's Lute", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 3} +{"name": "Unbound Avatar", "refName": "Unbound Avatar", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Unbreakable", "refName": "Unbreakable", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Uncarved Gemstone", "refName": "Uncarved Gemstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Uncut Skill Gem", "refName": "Uncut Skill Gem", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "UncutSkillGem"}, "w": 1, "h": 1} +{"name": "Uncut Skill Gem", "refName": "Uncut Skill Gem", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "UncutSkillGem"}, "w": 1, "h": 1} +{"name": "Uncut Spirit Gem", "refName": "Uncut Spirit Gem", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "UncutSkillGem"}, "w": 1, "h": 1} +{"name": "Uncut Support Gem", "refName": "Uncut Support Gem", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "UncutSkillGem"}, "w": 1, "h": 1} +{"name": "Unearth", "refName": "Unearth", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Cb25lTGFuY2UiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ba9f4da647/BoneLance.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Unleash", "refName": "Unleash", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Unleash", "refName": "Unleash", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Unrelenting Timeless Eternal Emblem", "refName": "Unrelenting Timeless Eternal Emblem", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UaW1lbGVzc0NvbmZsaWN0S2FydWkiLCJzY2FsZSI6MX1d/48dd647843/TimelessConflictKarui.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Unrelenting Timeless Karui Emblem", "refName": "Unrelenting Timeless Karui Emblem", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UaW1lbGVzc0NvbmZsaWN0RXRlcm5hbCIsInNjYWxlIjoxfV0/f96320f889/TimelessConflictEternal.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Unrelenting Timeless Maraketh Emblem", "refName": "Unrelenting Timeless Maraketh Emblem", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UaW1lbGVzc0NvbmZsaWN0TWFyYWtldGgiLCJzY2FsZSI6MX1d/8eca6f27b3/TimelessConflictMaraketh.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Unrelenting Timeless Templar Emblem", "refName": "Unrelenting Timeless Templar Emblem", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UaW1lbGVzc0NvbmZsaWN0VGVtcGxhciIsInNjYWxlIjoxfV0/b0a76a5f78/TimelessConflictTemplar.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Unrelenting Timeless Vaal Emblem", "refName": "Unrelenting Timeless Vaal Emblem", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9UaW1lbGVzc0NvbmZsaWN0VmFhbCIsInNjYWxlIjoxfV0/895e0137f2/TimelessConflictVaal.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Unset Ring", "refName": "Unset Ring", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmluZ3MvRW1wdHktU29ja2V0IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/82146b3aa4/Empty-Socket.png", "craftable": {"category": "Ring"}, "w": 1, "h": 1} +{"name": "Unshaping Orb", "refName": "Unshaping Orb", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQXRsYXNEb3duZ3JhZGUiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/0f3716b72b/AtlasDowngrade.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Upheaval", "refName": "Upheaval", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Urn Relic", "refName": "Urn Relic", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUmVsaWNzL1JlbGljQmFzZTJ4MSIsInciOjIsImgiOjEsInNjYWxlIjoxfV0/676ca95b04/RelicBase2x1.png", "craftable": {"category": "Relic"}, "w": 1, "h": 2} +{"name": "Urn Trap", "refName": "Urn Trap", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "TrapTool"}, "w": 2, "h": 2} +{"name": "Urn of Farud", "refName": "Urn of Farud", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Urn of the Original Ashes", "refName": "Urn of the Original Ashes", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistObjective"}, "w": 2, "h": 2} +{"name": "Utility Belt", "refName": "Utility Belt", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Belt"}, "w": 2, "h": 1} +{"name": "Utility Wraps", "refName": "Utility Wraps", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Gloves"}, "armour": {"ev": [61, 61], "es": [23, 23]}, "w": 2, "h": 2} +{"name": "Uul-Netol's Breachstone", "refName": "Uul-Netol's Breachstone", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaEZyYWdtZW50c1BoeXNpY2FsIiwic2NhbGUiOjF9XQ/2b4821437a/BreachFragmentsPhysical.png", "craftable": {"category": "Breachstone"}, "w": 1, "h": 1} +{"name": "Uul-Netol's Catalyst", "refName": "Uul-Netol's Catalyst", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaENhdGFseXN0UGh5c2ljYWwiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/bc9406c106/BreachCatalystPhysical.png", "tradeTag": "uul-netols-catalyst", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Uul-Netol's Charged Breachstone", "refName": "Uul-Netol's Charged Breachstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Breachstone"}, "w": 1, "h": 1} +{"name": "Uul-Netol's Enriched Breachstone", "refName": "Uul-Netol's Enriched Breachstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Breachstone"}, "w": 1, "h": 1} +{"name": "Uul-Netol's Flawless Breachstone", "refName": "Uul-Netol's Flawless Breachstone", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL1V1bE5ldG9sc0ZsYXdsZXNzQnJlYWNoc3RvbmUiLCJzY2FsZSI6MX1d/afcbb96429/UulNetolsFlawlessBreachstone.png", "craftable": {"category": "Breachstone"}, "w": 1, "h": 1} +{"name": "Uul-Netol's Pure Breachstone", "refName": "Uul-Netol's Pure Breachstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Breachstone"}, "w": 1, "h": 1} +{"name": "Vaal Cuirass", "refName": "Vaal Cuirass", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [228, 228]}, "w": 2, "h": 3} +{"name": "Vaal Orb", "refName": "Vaal Orb", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQ3VycmVuY3lWYWFsIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/72bc84396c/CurrencyVaal.png", "tradeTag": "vaal", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Vaal Reliquary Key", "refName": "Vaal Reliquary Key", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9WYXVsdE1hcDQiLCJzY2FsZSI6MX1d/7d798c8941/VaultMap4.png", "craftable": {"category": "VaultKey"}, "w": 1, "h": 1} +{"name": "Vaal Scouting Report", "refName": "Vaal Scouting Report", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU2NvdXRpbmdSZXBvcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/584635f3c8/ScoutingReport.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Vagabond Armour", "refName": "Vagabond Armour", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [67, 67], "ev": [56, 56]}, "w": 2, "h": 3} +{"name": "Vagrant's Brew", "refName": "Vagrant's Brew", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Vampiric Blade", "refName": "Vampiric Blade", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Sword"}, "w": 2, "h": 3} +{"name": "Vanquisher's Book of Knowledge I", "refName": "Vanquisher's Book of Knowledge I", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Vanquisher's Book of Knowledge II", "refName": "Vanquisher's Book of Knowledge II", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Vanquisher's Book of Knowledge III", "refName": "Vanquisher's Book of Knowledge III", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Vanquisher's Book of Knowledge IV", "refName": "Vanquisher's Book of Knowledge IV", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Vanquisher's Book of Knowledge V", "refName": "Vanquisher's Book of Knowledge V", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Varnished Crossbow", "refName": "Varnished Crossbow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Crossbow"}, "w": 2, "h": 4} +{"name": "Vase Relic", "refName": "Vase Relic", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Relic"}, "w": 1, "h": 4} +{"name": "Vault Key", "refName": "Vault Key", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Vaulting Impact", "refName": "Vaulting Impact", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Veiled Chaos Orb", "refName": "Veiled Chaos Orb", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Veiled Mask", "refName": "Veiled Mask", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [58, 58], "es": [25, 25]}, "w": 2, "h": 2} +{"name": "Velour Shoes", "refName": "Velour Shoes", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ev": [74, 74], "es": [29, 29]}, "w": 2, "h": 2} +{"name": "Velvet Cap", "refName": "Velvet Cap", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [181, 181]}, "w": 2, "h": 2} +{"name": "Venerated Mantle", "refName": "Venerated Mantle", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [173, 173], "es": [61, 61]}, "w": 2, "h": 3} +{"name": "Vengeful Contract", "refName": "Vengeful Contract", "namespace": "ITEM", "icon": "", "craftable": {"category": "HeistContract"}, "w": 1, "h": 1} +{"name": "Venom Draught of Clarity", "refName": "Venom Draught of Clarity", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 2} +{"name": "Venom Draught of Stone", "refName": "Venom Draught of Stone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 2} +{"name": "Venom Draught of the Lost", "refName": "Venom Draught of the Lost", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 2} +{"name": "Venom Draught of the Marshes", "refName": "Venom Draught of the Marshes", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 2} +{"name": "Venom Draught of the Sky", "refName": "Venom Draught of the Sky", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 2} +{"name": "Venom Draught of the Veil", "refName": "Venom Draught of the Veil", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 2} +{"name": "Veritania's Crest", "refName": "Veritania's Crest", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9SZWRlZW1lckZyYWdtZW50Iiwic2NhbGUiOjF9XQ/86d22a34cc/RedeemerFragment.png", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Versatile Keyring", "refName": "Versatile Keyring", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVmVyc2F0aWxlS2V5cmluZyIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/eda0c08359/VersatileKeyring.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Vial of Awakening", "refName": "Vial of Awakening", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbFNsdW1iZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/153f99e185/VialSlumber.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Vial of Consequence", "refName": "Vial of Consequence", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbENvd2FyZHNDaGFpbnMiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/49367d5e04/VialCowardsChains.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Vial of Dominance", "refName": "Vial of Dominance", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbEFyY2hpdGVjdHNIYW5kIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/dbe46fb20c/VialArchitectsHand.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Vial of Fate", "refName": "Vial of Fate", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbFN0b3J5VmFhbCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/5cc747026e/VialStoryVaal.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Vial of Sacrifice", "refName": "Vial of Sacrifice", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbFNhY3JpZmljaWFsSGVhcnQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/7f68150b22/VialSacrificialHeart.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Vial of Summoning", "refName": "Vial of Summoning", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbFNwaXJpdERyaW5rZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/b4c71ef906/VialSpiritDrinker.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Vial of Transcendence", "refName": "Vial of Transcendence", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbFRlbXBlcmVkRmxlc2giLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/ff6f1f931e/VialTemperedFlesh.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Vial of the Ghost", "refName": "Vial of the Ghost", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbFNvdWxDYXRjaGVyIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/41cbc9ed1d/VialSoulCatcher.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Vial of the Ritual", "refName": "Vial of the Ritual", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvVmlhbERhbmNlT2ZmZXJlZCIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/a21fb783fd/VialDanceOffered.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Victorious Fate", "refName": "Victorious Fate", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvU291bENvcmVzL1RyaWFsbWFzdGVyS2V5MyIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/0270951a73/TrialmasterKey3.png", "tradeTag": "victorious-fate", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Vigilante Contract", "refName": "Vigilante Contract", "namespace": "ITEM", "icon": "", "craftable": {"category": "HeistContract"}, "w": 1, "h": 1} +{"name": "Vile Greataxe", "refName": "Vile Greataxe", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Two Hand Axe"}, "w": 2, "h": 4} +{"name": "Vine Arrow", "refName": "Vine Arrow", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Viper Cap", "refName": "Viper Cap", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ev": [136, 136]}, "w": 2, "h": 2} +{"name": "Viridi's Finger", "refName": "Viridi's Finger", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Viridian Watchstone", "refName": "Viridian Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Viridian Watchstone", "refName": "Viridian Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Viridian Watchstone", "refName": "Viridian Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Viridian Watchstone", "refName": "Viridian Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Viridian Watchstone", "refName": "Viridian Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Viridian Watchstone", "refName": "Viridian Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Viridian Watchstone", "refName": "Viridian Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Viridian Watchstone", "refName": "Viridian Watchstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "AtlasUpgradeItem"}, "w": 1, "h": 1} +{"name": "Viscera Cauldron", "refName": "Viscera Cauldron", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "Visceral Quiver", "refName": "Visceral Quiver", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Quiver"}, "w": 2, "h": 3} +{"name": "Visceral Reliquary Key", "refName": "Visceral Reliquary Key", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FYXRlck9mV29ybGRzRm9pbCIsInNjYWxlIjoxfV0/9b4e8c2e7c/EaterOfWorldsFoil.png", "craftable": {"category": "VaultKey"}, "w": 1, "h": 1} +{"name": "Vision Rune", "refName": "Vision Rune", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvUnVuZXMvQWNjdXJhY3lSdW5lIiwic2NhbGUiOjEsInJlYWxtIjoicG9lMiJ9XQ/8e7841f0ef/AccuracyRune.png", "tradeTag": "vision-rune", "craftable": {"category": "SoulCore"}, "w": 1, "h": 1} +{"name": "Visored Helm", "refName": "Visored Helm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [44, 44], "ev": [37, 37]}, "w": 2, "h": 2} +{"name": "Vitality", "refName": "Vitality", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9WaXRhbGl0eSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/125dbe04db/Vitality.png", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Vivid Crystallised Lifeforce", "refName": "Vivid Crystallised Lifeforce", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9WaXZpZExpZmVmb3JjZSIsInNjYWxlIjoxfV0/a355b8a5a2/VividLifeforce.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Voidborn Reliquary Key", "refName": "Voidborn Reliquary Key", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9Db3NtaWNDb3JlU3VwcG9ydGVyVmF1bHRLZXkiLCJzY2FsZSI6MX1d/1f2d34a36d/CosmicCoreSupporterVaultKey.png", "craftable": {"category": "VaultKey"}, "w": 1, "h": 1} +{"name": "Voidborn Reliquary Key", "refName": "Voidborn Reliquary Key", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9Db3NtaWNDb3JlU3VwcG9ydGVyVmF1bHRLZXkiLCJzY2FsZSI6MX1d/1f2d34a36d/CosmicCoreSupporterVaultKey.png", "craftable": {"category": "VaultKey"}, "w": 1, "h": 1} +{"name": "Volant Quiver", "refName": "Volant Quiver", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Quiver"}, "w": 2, "h": 3} +{"name": "Volatile Dead", "refName": "Volatile Dead", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Wb2xhdGlsZURlYWQiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/75c543dab5/VolatileDead.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Volatile Wand", "refName": "Volatile Wand", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Wand"}, "w": 1, "h": 3} +{"name": "Volcanic Fissure", "refName": "Volcanic Fissure", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9Wb2xjYW5pY0Zpc3N1cmVTa2lsbEdlbSIsInciOjEsImgiOjEsInNjYWxlIjoxfV0/b12b9ef422/VolcanicFissureSkillGem.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Volcano", "refName": "Volcano", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Volkuur's Key", "refName": "Volkuur's Key", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Volkuur's Key", "refName": "Volkuur's Key", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Voltaic Grenade", "refName": "Voltaic Grenade", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Voltaic Mark", "refName": "Voltaic Mark", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Voltaic Staff", "refName": "Voltaic Staff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Staff"}, "w": 1, "h": 4} +{"name": "Voltaxic Flashpowder", "refName": "Voltaxic Flashpowder", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvVm9sdGF4aWNGbGFzaHBvd2RlciIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/2df5470ba8/VoltaxicFlashpowder.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Voodoo Focus", "refName": "Voodoo Focus", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Focus"}, "armour": {"es": [32, 32]}, "w": 2, "h": 3} +{"name": "Votive Raiment", "refName": "Votive Raiment", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"es": [78, 78]}, "w": 2, "h": 3} +{"name": "Vulnerability", "refName": "Vulnerability", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9WdWxuZXJhYmlsaXR5IiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/1235ccd6b3/Vulnerability.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "War Banner", "refName": "War Banner", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9XYXJiYW5uZXIiLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/bad44cab15/Warbanner.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "War Spear", "refName": "War Spear", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Spear"}, "w": 1, "h": 4} +{"name": "Warden Bow", "refName": "Warden Bow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Bow"}, "w": 2, "h": 4} +{"name": "Warlord's Exalted Orb", "refName": "Warlord's Exalted Orb", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5mbHVlbmNlIEV4YWx0cy9Db25xdWVyb3JPcmIiLCJzY2FsZSI6MX1d/57f0d85951/ConquerorOrb.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Warpick", "refName": "Warpick", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Mace"}, "w": 2, "h": 3} +{"name": "Warrior Greathelm", "refName": "Warrior Greathelm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [146, 146]}, "w": 2, "h": 2} +{"name": "Wave of Frost", "refName": "Wave of Frost", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Waxed Jacket", "refName": "Waxed Jacket", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [43, 43], "es": [24, 24]}, "w": 2, "h": 3} +{"name": "Wayfarer Jacket", "refName": "Wayfarer Jacket", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ev": [88, 88], "es": [39, 39]}, "w": 2, "h": 3} +{"name": "Waystone (Tier 1)", "refName": "Waystone (Tier 1)", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FbmRnYW1lTWFwcy9FbmRnYW1lTWFwMSIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/bb4c55989d/EndgameMap1.png", "tradeTag": "waystone-1", "craftable": {"category": "Map"}, "w": 1, "h": 1} +{"name": "Waystone (Tier 10)", "refName": "Waystone (Tier 10)", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FbmRnYW1lTWFwcy9FbmRnYW1lTWFwMTAiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/4a1266867a/EndgameMap10.png", "tradeTag": "waystone-10", "craftable": {"category": "Map"}, "w": 1, "h": 1} +{"name": "Waystone (Tier 11)", "refName": "Waystone (Tier 11)", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FbmRnYW1lTWFwcy9FbmRnYW1lTWFwMTEiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/77da168a75/EndgameMap11.png", "tradeTag": "waystone-11", "craftable": {"category": "Map"}, "w": 1, "h": 1} +{"name": "Waystone (Tier 12)", "refName": "Waystone (Tier 12)", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FbmRnYW1lTWFwcy9FbmRnYW1lTWFwMTIiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/1b37ec5864/EndgameMap12.png", "tradeTag": "waystone-12", "craftable": {"category": "Map"}, "w": 1, "h": 1} +{"name": "Waystone (Tier 13)", "refName": "Waystone (Tier 13)", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FbmRnYW1lTWFwcy9FbmRnYW1lTWFwMTMiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/4877b17436/EndgameMap13.png", "tradeTag": "waystone-13", "craftable": {"category": "Map"}, "w": 1, "h": 1} +{"name": "Waystone (Tier 14)", "refName": "Waystone (Tier 14)", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FbmRnYW1lTWFwcy9FbmRnYW1lTWFwMTQiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/9149454787/EndgameMap14.png", "tradeTag": "waystone-14", "craftable": {"category": "Map"}, "w": 1, "h": 1} +{"name": "Waystone (Tier 15)", "refName": "Waystone (Tier 15)", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FbmRnYW1lTWFwcy9FbmRnYW1lTWFwMTUiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/cea6af97d7/EndgameMap15.png", "tradeTag": "waystone-15", "craftable": {"category": "Map"}, "w": 1, "h": 1} +{"name": "Waystone (Tier 16)", "refName": "Waystone (Tier 16)", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FbmRnYW1lTWFwcy9FbmRnYW1lTWFwMTYiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/098fff71c2/EndgameMap16.png", "tradeTag": "waystone-16", "craftable": {"category": "Map"}, "w": 1, "h": 1} +{"name": "Waystone (Tier 2)", "refName": "Waystone (Tier 2)", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FbmRnYW1lTWFwcy9FbmRnYW1lTWFwMiIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/b4ffda8e35/EndgameMap2.png", "tradeTag": "waystone-2", "craftable": {"category": "Map"}, "w": 1, "h": 1} +{"name": "Waystone (Tier 3)", "refName": "Waystone (Tier 3)", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FbmRnYW1lTWFwcy9FbmRnYW1lTWFwMyIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/7940d0ad1a/EndgameMap3.png", "tradeTag": "waystone-3", "craftable": {"category": "Map"}, "w": 1, "h": 1} +{"name": "Waystone (Tier 4)", "refName": "Waystone (Tier 4)", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FbmRnYW1lTWFwcy9FbmRnYW1lTWFwNCIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/e405b6783b/EndgameMap4.png", "tradeTag": "waystone-4", "craftable": {"category": "Map"}, "w": 1, "h": 1} +{"name": "Waystone (Tier 5)", "refName": "Waystone (Tier 5)", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FbmRnYW1lTWFwcy9FbmRnYW1lTWFwNSIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/22247ac187/EndgameMap5.png", "tradeTag": "waystone-5", "craftable": {"category": "Map"}, "w": 1, "h": 1} +{"name": "Waystone (Tier 6)", "refName": "Waystone (Tier 6)", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FbmRnYW1lTWFwcy9FbmRnYW1lTWFwNiIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/f64d3b6889/EndgameMap6.png", "tradeTag": "waystone-6", "craftable": {"category": "Map"}, "w": 1, "h": 1} +{"name": "Waystone (Tier 7)", "refName": "Waystone (Tier 7)", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FbmRnYW1lTWFwcy9FbmRnYW1lTWFwNyIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/7f32b3664e/EndgameMap7.png", "tradeTag": "waystone-7", "craftable": {"category": "Map"}, "w": 1, "h": 1} +{"name": "Waystone (Tier 8)", "refName": "Waystone (Tier 8)", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FbmRnYW1lTWFwcy9FbmRnYW1lTWFwOCIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/fb8a8651b5/EndgameMap8.png", "tradeTag": "waystone-8", "craftable": {"category": "Map"}, "w": 1, "h": 1} +{"name": "Waystone (Tier 9)", "refName": "Waystone (Tier 9)", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI4LDE0LHsiZiI6IjJESXRlbXMvTWFwcy9FbmRnYW1lTWFwcy9FbmRnYW1lTWFwOSIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/420f1c6412/EndgameMap9.png", "tradeTag": "waystone-9", "craftable": {"category": "Map"}, "w": 1, "h": 1} +{"name": "Wayward Crest Shield", "refName": "Wayward Crest Shield", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ar": [61, 61], "es": [22, 22]}, "w": 2, "h": 3} +{"name": "Weapon Recombinator", "refName": "Weapon Recombinator", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Weathered Crisis Fragment", "refName": "Weathered Crisis Fragment", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVlc3RJdGVtcy9QaW5uYWNsZUtleTMiLCJzY2FsZSI6MSwicmVhbG0iOiJwb2UyIn1d/32e6544250/PinnacleKey3.png", "tradeTag": "weathered-crisis-fragment", "w": 1, "h": 1} +{"name": "Weaver Leggings", "refName": "Weaver Leggings", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"ar": [73, 73], "es": [26, 26]}, "w": 2, "h": 2} +{"name": "Whirling Assault", "refName": "Whirling Assault", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Whirling Slash", "refName": "Whirling Slash", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Whisper-woven Cloak", "refName": "Whisper-woven Cloak", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvV2hpc3BlcldvdmVuQ2xvYWsiLCJ3IjoyLCJoIjoyLCJzY2FsZSI6MX1d/5d44c09a37/WhisperWovenCloak.png", "craftable": {"category": "HeistEquipmentUtility"}, "w": 2, "h": 2} +{"name": "Whispering Incubator", "refName": "Whispering Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRXNzZW5jZSIsInNjYWxlIjoxfV0/839bf6cef9/IncubationEssence.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Whispering Incubator", "refName": "Whispering Incubator", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSW5jdWJhdGlvbi9JbmN1YmF0aW9uRXNzZW5jZSIsInNjYWxlIjoxfV0/839bf6cef9/IncubationEssence.png", "craftable": {"category": "Incubator"}, "w": 1, "h": 1} +{"name": "Wicker Tiara", "refName": "Wicker Tiara", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"es": [28, 28]}, "w": 2, "h": 2} +{"name": "Wide Belt", "refName": "Wide Belt", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Belt"}, "w": 2, "h": 1} +{"name": "Wild Crystallised Lifeforce", "refName": "Wild Crystallised Lifeforce", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGFydmVzdC9XaWxkTGlmZWZvcmNlIiwic2NhbGUiOjF9XQ/e3d0b372b0/WildLifeforce.png", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Wildfire", "refName": "Wildfire", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Wildshards", "refName": "Wildshards", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Wind Blast", "refName": "Wind Blast", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Wind Dancer", "refName": "Wind Dancer", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Wind Wave", "refName": "Wind Wave", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Window of Opportunity", "refName": "Window of Opportunity", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Winged Abyss Scarab", "refName": "Winged Abyss Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Winged Ambush Scarab", "refName": "Winged Ambush Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Winged Bestiary Scarab", "refName": "Winged Bestiary Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Winged Blight Scarab", "refName": "Winged Blight Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Winged Breach Scarab", "refName": "Winged Breach Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Winged Cartography Scarab", "refName": "Winged Cartography Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Winged Divination Scarab", "refName": "Winged Divination Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Winged Elder Scarab", "refName": "Winged Elder Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Winged Expedition Scarab", "refName": "Winged Expedition Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Winged Harbinger Scarab", "refName": "Winged Harbinger Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Winged Legion Scarab", "refName": "Winged Legion Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Winged Metamorph Scarab", "refName": "Winged Metamorph Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Winged Reliquary Scarab", "refName": "Winged Reliquary Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Winged Shaper Scarab", "refName": "Winged Shaper Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Winged Sole", "refName": "Winged Sole", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvSGVpc3QvV2luZ2VkU29sZSIsInciOjIsImgiOjIsInNjYWxlIjoxfV0/6b844e2bd0/WingedSole.png", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "Winged Spear", "refName": "Winged Spear", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Spear"}, "w": 1, "h": 4} +{"name": "Winged Sulphite Scarab", "refName": "Winged Sulphite Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Winged Torment Scarab", "refName": "Winged Torment Scarab", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Wither", "refName": "Wither", "namespace": "GEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvR2Vtcy9XaXRoZXJHZW0iLCJ3IjoxLCJoIjoxLCJzY2FsZSI6MX1d/f4a77cf6bc/WitherGem.png", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Withered Wand", "refName": "Withered Wand", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Wand"}, "w": 1, "h": 3} +{"name": "Withering Presence", "refName": "Withering Presence", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Withering Touch", "refName": "Withering Touch", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Support Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "Wolfbone Claw", "refName": "Wolfbone Claw", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Claw"}, "w": 2, "h": 2} +{"name": "Wooden Buckler", "refName": "Wooden Buckler", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Shield"}, "armour": {"ev": [20, 20]}, "w": 2, "h": 2} +{"name": "Wooden Club", "refName": "Wooden Club", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "One Hand Mace"}, "w": 2, "h": 3} +{"name": "Woven Focus", "refName": "Woven Focus", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Focus"}, "armour": {"es": [15, 15]}, "w": 2, "h": 3} +{"name": "Wrapped Gift", "refName": "Wrapped Gift", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 1, "h": 1} +{"name": "Wrapped Gift", "refName": "Wrapped Gift", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 1, "h": 2} +{"name": "Wrapped Gift", "refName": "Wrapped Gift", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 1, "h": 3} +{"name": "Wrapped Gift", "refName": "Wrapped Gift", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 1, "h": 4} +{"name": "Wrapped Gift", "refName": "Wrapped Gift", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 1} +{"name": "Wrapped Gift", "refName": "Wrapped Gift", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 2} +{"name": "Wrapped Gift", "refName": "Wrapped Gift", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 3} +{"name": "Wrapped Gift", "refName": "Wrapped Gift", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 2, "h": 4} +{"name": "Wrapped Gift", "refName": "Wrapped Gift", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 3, "h": 2} +{"name": "Wrapped Gift", "refName": "Wrapped Gift", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 3, "h": 1} +{"name": "Wrapped Gift", "refName": "Wrapped Gift", "namespace": "ITEM", "icon": "%NOT_FOUND%", "w": 4, "h": 1} +{"name": "Wrapped Greathelm", "refName": "Wrapped Greathelm", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Helmet"}, "armour": {"ar": [79, 79]}, "w": 2, "h": 2} +{"name": "Wrapped Quarterstaff", "refName": "Wrapped Quarterstaff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Warstaff"}, "w": 2, "h": 4} +{"name": "Wrapped Sandals", "refName": "Wrapped Sandals", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Boots"}, "armour": {"es": [22, 22]}, "w": 2, "h": 2} +{"name": "Wrath Sceptre", "refName": "Wrath Sceptre", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Sceptre"}, "w": 2, "h": 3} +{"name": "Writhing Invitation", "refName": "Writhing Invitation", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVlc3RJdGVtcy9UYW5nbGVkT3JiUXVlc3QwIiwic2NhbGUiOjF9XQ/7a2f21c33e/TangledOrbQuest0.png", "craftable": {"category": "QuestItem"}, "w": 1, "h": 1} +{"name": "Writhing Invitation", "refName": "Writhing Invitation", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvUXVlc3RJdGVtcy9UYW5nbGVkT3JiUXVlc3QwIiwic2NhbGUiOjF9XQ/7a2f21c33e/TangledOrbQuest0.png", "craftable": {"category": "MiscMapItem"}, "w": 1, "h": 1} +{"name": "Wyrm Quarterstaff", "refName": "Wyrm Quarterstaff", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Warstaff"}, "w": 2, "h": 4} +{"name": "Xoph's Breachstone", "refName": "Xoph's Breachstone", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaEZyYWdtZW50c0ZpcmUiLCJzY2FsZSI6MX1d/2fc9d593d6/BreachFragmentsFire.png", "craftable": {"category": "Breachstone"}, "w": 1, "h": 1} +{"name": "Xoph's Catalyst", "refName": "Xoph's Catalyst", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL0JyZWFjaENhdGFseXN0RmlyZSIsInNjYWxlIjoxLCJyZWFsbSI6InBvZTIifV0/05b1999374/BreachCatalystFire.png", "tradeTag": "xophs-catalyst", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "Xoph's Charged Breachstone", "refName": "Xoph's Charged Breachstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Breachstone"}, "w": 1, "h": 1} +{"name": "Xoph's Enriched Breachstone", "refName": "Xoph's Enriched Breachstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Breachstone"}, "w": 1, "h": 1} +{"name": "Xoph's Flawless Breachstone", "refName": "Xoph's Flawless Breachstone", "namespace": "ITEM", "icon": "https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvQ3VycmVuY3kvQnJlYWNoL1hvcGhzRmxhd2xlc3NCcmVhY2hzdG9uZSIsInNjYWxlIjoxfV0/a9d5100ceb/XophsFlawlessBreachstone.png", "craftable": {"category": "Breachstone"}, "w": 1, "h": 1} +{"name": "Xoph's Pure Breachstone", "refName": "Xoph's Pure Breachstone", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Breachstone"}, "w": 1, "h": 1} +{"name": "Yriel's Key", "refName": "Yriel's Key", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Yriel's Key", "refName": "Yriel's Key", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MapFragment"}, "w": 1, "h": 1} +{"name": "Zealot Bow", "refName": "Zealot Bow", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Bow"}, "w": 2, "h": 4} +{"name": "Zenith Vestments", "refName": "Zenith Vestments", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Body Armour"}, "armour": {"ar": [294, 294], "es": [101, 101]}, "w": 2, "h": 3} +{"name": "[DNT] Axe Chop", "refName": "[DNT] Axe Chop", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Axe Execute", "refName": "[DNT] Axe Execute", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Axe Heavy Cleave", "refName": "[DNT] Axe Heavy Cleave", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Axe Leaping Chop", "refName": "[DNT] Axe Leaping Chop", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Axe Raised Chop", "refName": "[DNT] Axe Raised Chop", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Axe Slash", "refName": "[DNT] Axe Slash", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Axe Whirling Slash", "refName": "[DNT] Axe Whirling Slash", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Bind Spectre Token", "refName": "[DNT] Bind Spectre Token", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Currency"}, "w": 1, "h": 1} +{"name": "[DNT] Blade Dance", "refName": "[DNT] Blade Dance", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Blade Nova", "refName": "[DNT] Blade Nova", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Bone Cultist Shield Boss Drop", "refName": "[DNT] Bone Cultist Shield Boss Drop", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "[DNT] Claw Rake", "refName": "[DNT] Claw Rake", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Combo Knife Throw", "refName": "[DNT] Combo Knife Throw", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Detonation", "refName": "[DNT] Detonation", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Dodge Roll", "refName": "[DNT] Dodge Roll", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Dominating Aura", "refName": "[DNT] Dominating Aura", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Dredge Fiend Shaman Boss Drop", "refName": "[DNT] Dredge Fiend Shaman Boss Drop", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "[DNT] Eel Monster Boss Drop", "refName": "[DNT] Eel Monster Boss Drop", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "[DNT] Evasive Strike", "refName": "[DNT] Evasive Strike", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Flame Slice", "refName": "[DNT] Flame Slice", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Gargoyle Golem Drop", "refName": "[DNT] Gargoyle Golem Drop", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "[DNT] Gas Cloud", "refName": "[DNT] Gas Cloud", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Guillotine Executioner Drop", "refName": "[DNT] Guillotine Executioner Drop", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "[DNT] Howl", "refName": "[DNT] Howl", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Hyper Slash", "refName": "[DNT] Hyper Slash", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Infusing Strike", "refName": "[DNT] Infusing Strike", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Knife Flip", "refName": "[DNT] Knife Flip", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Leaping Axe Catch", "refName": "[DNT] Leaping Axe Catch", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Leaping Claw", "refName": "[DNT] Leaping Claw", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Meta Bow Totem", "refName": "[DNT] Meta Bow Totem", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MetaSkillGem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Meta Spell Totem", "refName": "[DNT] Meta Spell Totem", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "MetaSkillGem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Plunging Blade", "refName": "[DNT] Plunging Blade", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Quadrilla Boss Drop", "refName": "[DNT] Quadrilla Boss Drop", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "[DNT] RingOfBlades", "refName": "[DNT] RingOfBlades", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Sandstorm Swipe", "refName": "[DNT] Sandstorm Swipe", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Scarecrow Drop", "refName": "[DNT] Scarecrow Drop", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "[DNT] Shadow Ambush", "refName": "[DNT] Shadow Ambush", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Shadow Dash", "refName": "[DNT] Shadow Dash", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Shadow Thief Slash", "refName": "[DNT] Shadow Thief Slash", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Spear Mine", "refName": "[DNT] Spear Mine", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Spear Vortex", "refName": "[DNT] Spear Vortex", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Spinning Flail", "refName": "[DNT] Spinning Flail", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Spinning Throw", "refName": "[DNT] Spinning Throw", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Spiral Throw", "refName": "[DNT] Spiral Throw", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Storm Blade", "refName": "[DNT] Storm Blade", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Sword Leap Slash", "refName": "[DNT] Sword Leap Slash", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Sword Lunge", "refName": "[DNT] Sword Lunge", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Triple Slash Combo", "refName": "[DNT] Triple Slash Combo", "namespace": "GEM", "icon": "%NOT_FOUND%", "craftable": {"category": "Active Skill Gem"}, "w": 1, "h": 1, "gem": {"awakened": false, "transfigured": false}} +{"name": "[DNT] Vaal Blood Priestess Boss Drop", "refName": "[DNT] Vaal Blood Priestess Boss Drop", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "[DNT] Vaal Sun Worshipper Boss Drop", "refName": "[DNT] Vaal Sun Worshipper Boss Drop", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "[DNT] Viper Napuatzi Drop", "refName": "[DNT] Viper Napuatzi Drop", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "QuestItem"}, "w": 2, "h": 2} +{"name": "[UNUSED] Heist Test Reward Equipment", "refName": "[UNUSED] Heist Test Reward Equipment", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistEquipmentReward"}, "w": 1, "h": 1} +{"name": "[UNUSED] Heist Test Tool", "refName": "[UNUSED] Heist Test Tool", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistEquipmentTool"}, "w": 2, "h": 2} +{"name": "[UNUSED] Heist Test Utility Equipment", "refName": "[UNUSED] Heist Test Utility Equipment", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistEquipmentUtility"}, "w": 2, "h": 2} +{"name": "[UNUSED] Heist Test Weapon", "refName": "[UNUSED] Heist Test Weapon", "namespace": "ITEM", "icon": "%NOT_FOUND%", "craftable": {"category": "HeistEquipmentWeapon"}, "w": 2, "h": 2} +{"name": "Andvarius", "refName": "Andvarius", "namespace": "UNIQUE", "unique": {"base": "Gold Ring"}} +{"name": "Astramentis", "refName": "Astramentis", "namespace": "UNIQUE", "unique": {"base": "Stellar Amulet"}} +{"name": "Beacon of Azis", "refName": "Beacon of Azis", "namespace": "UNIQUE", "unique": {"base": "Solar Amulet"}} +{"name": "Birthright Buckle", "refName": "Birthright Buckle", "namespace": "UNIQUE", "unique": {"base": "Wide Belt"}} +{"name": "Blackflame", "refName": "Blackflame", "namespace": "UNIQUE", "unique": {"base": "Amethyst Ring"}} +{"name": "Blackheart", "refName": "Blackheart", "namespace": "UNIQUE", "unique": {"base": "Iron Ring"}} +{"name": "Blistering Bond", "refName": "Blistering Bond", "namespace": "UNIQUE", "unique": {"base": "Ruby Ring"}} +{"name": "Brynabas", "refName": "Brynabas", "namespace": "UNIQUE", "unique": {"base": "Wide Belt"}} +{"name": "Call of the Brotherhood", "refName": "Call of the Brotherhood", "namespace": "UNIQUE", "unique": {"base": "Topaz Ring"}} +{"name": "Carnage Heart", "refName": "Carnage Heart", "namespace": "UNIQUE", "unique": {"base": "Amber Amulet"}} +{"name": "Choir of the Storm", "refName": "Choir of the Storm", "namespace": "UNIQUE", "unique": {"base": "Jade Amulet"}} +{"name": "Coward's Legacy", "refName": "Coward's Legacy", "namespace": "UNIQUE", "unique": {"base": "Mail Belt"}} +{"name": "Cracklecreep", "refName": "Cracklecreep", "namespace": "UNIQUE", "unique": {"base": "Ruby Ring"}} +{"name": "Death Rush", "refName": "Death Rush", "namespace": "UNIQUE", "unique": {"base": "Emerald Ring"}} +{"name": "Defiance of Destiny", "refName": "Defiance of Destiny", "namespace": "UNIQUE", "unique": {"base": "Jade Amulet"}} +{"name": "Doedre's Damning", "refName": "Doedre's Damning", "namespace": "UNIQUE", "unique": {"base": "Lazuli Ring"}} +{"name": "Dream Fragments", "refName": "Dream Fragments", "namespace": "UNIQUE", "unique": {"base": "Sapphire Ring"}} +{"name": "Eye of Chayula", "refName": "Eye of Chayula", "namespace": "UNIQUE", "unique": {"base": "Gold Amulet"}} +{"name": "Fireflower", "refName": "Fireflower", "namespace": "UNIQUE", "unique": {"base": "Solar Amulet"}} +{"name": "Fixation of Yix", "refName": "Fixation of Yix", "namespace": "UNIQUE", "unique": {"base": "Stellar Amulet"}} +{"name": "Glowswarm", "refName": "Glowswarm", "namespace": "UNIQUE", "unique": {"base": "Lazuli Ring"}} +{"name": "Headhunter", "refName": "Headhunter", "namespace": "UNIQUE", "unique": {"base": "Heavy Belt"}} +{"name": "Heartbound Loop", "refName": "Heartbound Loop", "namespace": "UNIQUE", "unique": {"base": "Pearl Ring"}} +{"name": "Idol of Uldurn", "refName": "Idol of Uldurn", "namespace": "UNIQUE", "unique": {"base": "Crimson Amulet"}} +{"name": "Igniferis", "refName": "Igniferis", "namespace": "UNIQUE", "unique": {"base": "Crimson Amulet"}} +{"name": "Infernoclasp", "refName": "Infernoclasp", "namespace": "UNIQUE", "unique": {"base": "Plate Belt"}} +{"name": "Ingenuity", "refName": "Ingenuity", "namespace": "UNIQUE", "unique": {"base": "Utility Belt"}} +{"name": "Kalandra's Touch", "refName": "Kalandra's Touch", "namespace": "UNIQUE", "unique": {"base": "Ring"}} +{"name": "Keelhaul", "refName": "Keelhaul", "namespace": "UNIQUE", "unique": {"base": "Linen Belt"}} +{"name": "Levinstone", "refName": "Levinstone", "namespace": "UNIQUE", "unique": {"base": "Topaz Ring"}} +{"name": "Ligurium Talisman", "refName": "Ligurium Talisman", "namespace": "UNIQUE", "unique": {"base": "Lapis Amulet"}} +{"name": "Meginord's Girdle", "refName": "Meginord's Girdle", "namespace": "UNIQUE", "unique": {"base": "Rawhide Belt"}} +{"name": "Midnight Braid", "refName": "Midnight Braid", "namespace": "UNIQUE", "unique": {"base": "Rawhide Belt"}} +{"name": "Ming's Heart", "refName": "Ming's Heart", "namespace": "UNIQUE", "unique": {"base": "Amethyst Ring"}} +{"name": "Original Sin", "refName": "Original Sin", "namespace": "UNIQUE", "unique": {"base": "Amethyst Ring"}} +{"name": "Perandus Seal", "refName": "Perandus Seal", "namespace": "UNIQUE", "unique": {"base": "Gold Ring"}} +{"name": "Polcirkeln", "refName": "Polcirkeln", "namespace": "UNIQUE", "unique": {"base": "Sapphire Ring"}} +{"name": "Revered Resin", "refName": "Revered Resin", "namespace": "UNIQUE", "unique": {"base": "Amber Amulet"}} +{"name": "Rondel of Fragility", "refName": "Rondel of Fragility", "namespace": "UNIQUE", "unique": {"base": "Lunar Amulet"}} +{"name": "Ryslatha's Coil", "refName": "Ryslatha's Coil", "namespace": "UNIQUE", "unique": {"base": "Ornate Belt"}} +{"name": "Seed of Cataclysm", "refName": "Seed of Cataclysm", "namespace": "UNIQUE", "unique": {"base": "Lazuli Ring"}} +{"name": "Sekhema's Resolve", "refName": "Sekhema's Resolve", "namespace": "UNIQUE", "unique": {"base": "Ring"}} +{"name": "Serpent's Egg", "refName": "Serpent's Egg", "namespace": "UNIQUE", "unique": {"base": "Gold Amulet"}} +{"name": "Shavronne's Satchel", "refName": "Shavronne's Satchel", "namespace": "UNIQUE", "unique": {"base": "Fine Belt"}} +{"name": "Snakepit", "refName": "Snakepit", "namespace": "UNIQUE", "unique": {"base": "Pearl Ring"}} +{"name": "Soul Tether", "refName": "Soul Tether", "namespace": "UNIQUE", "unique": {"base": "Long Belt"}} +{"name": "Surefooted Sigil", "refName": "Surefooted Sigil", "namespace": "UNIQUE", "unique": {"base": "Jade Amulet"}} +{"name": "The Anvil", "refName": "The Anvil", "namespace": "UNIQUE", "unique": {"base": "Bloodstone Amulet"}} +{"name": "The Burrower", "refName": "The Burrower", "namespace": "UNIQUE", "unique": {"base": "Topaz Ring"}} +{"name": "The Everlasting Gaze", "refName": "The Everlasting Gaze", "namespace": "UNIQUE", "unique": {"base": "Azure Amulet"}} +{"name": "The Pandemonius", "refName": "The Pandemonius", "namespace": "UNIQUE", "unique": {"base": "Lapis Amulet"}} +{"name": "Thief's Torment", "refName": "Thief's Torment", "namespace": "UNIQUE", "unique": {"base": "Emerald Ring"}} +{"name": "Ungil's Harmony", "refName": "Ungil's Harmony", "namespace": "UNIQUE", "unique": {"base": "Azure Amulet"}} +{"name": "Ventor's Gamble", "refName": "Ventor's Gamble", "namespace": "UNIQUE", "unique": {"base": "Gold Ring"}} +{"name": "Whisper of the Brotherhood", "refName": "Whisper of the Brotherhood", "namespace": "UNIQUE", "unique": {"base": "Sapphire Ring"}} +{"name": "Xoph's Blood", "refName": "Xoph's Blood", "namespace": "UNIQUE", "unique": {"base": "Amber Amulet"}} +{"name": "Zerphi's Genesis", "refName": "Zerphi's Genesis", "namespace": "UNIQUE", "unique": {"base": "Heavy Belt"}} +{"name": "Ab Aeterno", "refName": "Ab Aeterno", "namespace": "UNIQUE", "unique": {"base": "Grand Cuisses"}} +{"name": "Aerisvane's Wings", "refName": "Aerisvane's Wings", "namespace": "UNIQUE", "unique": {"base": "Burnished Gauntlets"}} +{"name": "Alkem Eira", "refName": "Alkem Eira", "namespace": "UNIQUE", "unique": {"base": "Blazon Crest Shield"}} +{"name": "Alpha's Howl", "refName": "Alpha's Howl", "namespace": "UNIQUE", "unique": {"base": "Armoured Cap"}} +{"name": "Apron of Emiran", "refName": "Apron of Emiran", "namespace": "UNIQUE", "unique": {"base": "Hermit Garb"}} +{"name": "Arvil's Wheel", "refName": "Arvil's Wheel", "namespace": "UNIQUE", "unique": {"base": "Hardwood Targe"}} +{"name": "Ashrend", "refName": "Ashrend", "namespace": "UNIQUE", "unique": {"base": "Pathfinder Coat"}} +{"name": "Asphyxia's Wrath", "refName": "Asphyxia's Wrath", "namespace": "UNIQUE", "unique": {"base": "Broadhead Quiver"}} +{"name": "Assailum", "refName": "Assailum", "namespace": "UNIQUE", "unique": {"base": "Closed Helm"}} +{"name": "Atsak's Sight", "refName": "Atsak's Sight", "namespace": "UNIQUE", "unique": {"base": "Veiled Mask"}} +{"name": "Atziri's Acuity", "refName": "Atziri's Acuity", "namespace": "UNIQUE", "unique": {"base": "Moulded Mitts"}} +{"name": "Atziri's Disdain", "refName": "Atziri's Disdain", "namespace": "UNIQUE", "unique": {"base": "Gold Circlet"}} +{"name": "Aurseize", "refName": "Aurseize", "namespace": "UNIQUE", "unique": {"base": "Layered Gauntlets"}} +{"name": "Beetlebite", "refName": "Beetlebite", "namespace": "UNIQUE", "unique": {"base": "Velour Shoes"}} +{"name": "Belly of the Beast", "refName": "Belly of the Beast", "namespace": "UNIQUE", "unique": {"base": "Explorer Armour"}} +{"name": "Beyond Reach", "refName": "Beyond Reach", "namespace": "UNIQUE", "unique": {"base": "Visceral Quiver"}} +{"name": "Birth of Fury", "refName": "Birth of Fury", "namespace": "UNIQUE", "unique": {"base": "Stone Greaves"}} +{"name": "Bitterbloom", "refName": "Bitterbloom", "namespace": "UNIQUE", "unique": {"base": "Feathered Robe"}} +{"name": "Blackbraid", "refName": "Blackbraid", "namespace": "UNIQUE", "unique": {"base": "Fur Plate"}} +{"name": "Blackgleam", "refName": "Blackgleam", "namespace": "UNIQUE", "unique": {"base": "Fire Quiver"}} +{"name": "Black Sun Crest", "refName": "Black Sun Crest", "namespace": "UNIQUE", "unique": {"base": "Wrapped Greathelm"}} +{"name": "Blessed Bonds", "refName": "Blessed Bonds", "namespace": "UNIQUE", "unique": {"base": "Linen Wraps"}} +{"name": "Blueflame Bracers", "refName": "Blueflame Bracers", "namespace": "UNIQUE", "unique": {"base": "Goldcast Cuffs"}} +{"name": "Bones of Ullr", "refName": "Bones of Ullr", "namespace": "UNIQUE", "unique": {"base": "Lattice Sandals"}} +{"name": "Bramblejack", "refName": "Bramblejack", "namespace": "UNIQUE", "unique": {"base": "Rusted Cuirass"}} +{"name": "Briarpatch", "refName": "Briarpatch", "namespace": "UNIQUE", "unique": {"base": "Laced Boots"}} +{"name": "Briskwrap", "refName": "Briskwrap", "namespace": "UNIQUE", "unique": {"base": "Rhoahide Coat"}} +{"name": "Bristleboar", "refName": "Bristleboar", "namespace": "UNIQUE", "unique": {"base": "Leather Vest"}} +{"name": "Bronzebeard", "refName": "Bronzebeard", "namespace": "UNIQUE", "unique": {"base": "Horned Crown"}} +{"name": "Bushwhack", "refName": "Bushwhack", "namespace": "UNIQUE", "unique": {"base": "Lizardscale Boots"}} +{"name": "Candlemaker", "refName": "Candlemaker", "namespace": "UNIQUE", "unique": {"base": "Sombre Gloves"}} +{"name": "Carrion Call", "refName": "Carrion Call", "namespace": "UNIQUE", "unique": {"base": "Engraved Focus"}} +{"name": "Cloak of Flame", "refName": "Cloak of Flame", "namespace": "UNIQUE", "unique": {"base": "Silk Robe"}} +{"name": "Coat of Red", "refName": "Coat of Red", "namespace": "UNIQUE", "unique": {"base": "Chain Mail"}} +{"name": "Cornathaum", "refName": "Cornathaum", "namespace": "UNIQUE", "unique": {"base": "Heavy Crown"}} +{"name": "Corona of the Red Sun", "refName": "Corona of the Red Sun", "namespace": "UNIQUE", "unique": {"base": "Warrior Greathelm"}} +{"name": "Corpsewade", "refName": "Corpsewade", "namespace": "UNIQUE", "unique": {"base": "Iron Greaves"}} +{"name": "Couture of Crimson", "refName": "Couture of Crimson", "namespace": "UNIQUE", "unique": {"base": "Gilded Vestments"}} +{"name": "Crest of Ardura", "refName": "Crest of Ardura", "namespace": "UNIQUE", "unique": {"base": "Jingling Crest Shield"}} +{"name": "Crown of the Pale King", "refName": "Crown of the Pale King", "namespace": "UNIQUE", "unique": {"base": "Cultist Crown"}} +{"name": "Crown of the Victor", "refName": "Crown of the Victor", "namespace": "UNIQUE", "unique": {"base": "Iron Crown"}} +{"name": "Crown of Thorns", "refName": "Crown of Thorns", "namespace": "UNIQUE", "unique": {"base": "Twig Circlet"}} +{"name": "Darkray Vectors", "refName": "Darkray Vectors", "namespace": "UNIQUE", "unique": {"base": "Braced Sabatons"}} +{"name": "Deathblow", "refName": "Deathblow", "namespace": "UNIQUE", "unique": {"base": "Doubled Gauntlets"}} +{"name": "Deathrattle", "refName": "Deathrattle", "namespace": "UNIQUE", "unique": {"base": "Twig Focus"}} +{"name": "Deidbell", "refName": "Deidbell", "namespace": "UNIQUE", "unique": {"base": "Elite Greathelm"}} +{"name": "Demon Stitcher", "refName": "Demon Stitcher", "namespace": "UNIQUE", "unique": {"base": "Intricate Gloves"}} +{"name": "Dionadair", "refName": "Dionadair", "namespace": "UNIQUE", "unique": {"base": "Splintered Tower Shield"}} +{"name": "Doedre's Tenure", "refName": "Doedre's Tenure", "namespace": "UNIQUE", "unique": {"base": "Stitched Gloves"}} +{"name": "Doomgate", "refName": "Doomgate", "namespace": "UNIQUE", "unique": {"base": "Braced Tower Shield"}} +{"name": "Doryani's Prototype", "refName": "Doryani's Prototype", "namespace": "UNIQUE", "unique": {"base": "Scale Mail"}} +{"name": "Dustbloom", "refName": "Dustbloom", "namespace": "UNIQUE", "unique": {"base": "Studded Vest"}} +{"name": "Edyrn's Tusks", "refName": "Edyrn's Tusks", "namespace": "UNIQUE", "unique": {"base": "Iron Cuirass"}} +{"name": "Elevore", "refName": "Elevore", "namespace": "UNIQUE", "unique": {"base": "Hunter Hood"}} +{"name": "Enfolding Dawn", "refName": "Enfolding Dawn", "namespace": "UNIQUE", "unique": {"base": "Pilgrim Vestments"}} +{"name": "Erian's Cobble", "refName": "Erian's Cobble", "namespace": "UNIQUE", "unique": {"base": "Guarded Helm"}} +{"name": "Ezomyte Peak", "refName": "Ezomyte Peak", "namespace": "UNIQUE", "unique": {"base": "Soldier Greathelm"}} +{"name": "Feathered Fortress", "refName": "Feathered Fortress", "namespace": "UNIQUE", "unique": {"base": "Crescent Targe"}} +{"name": "Forbidden Gaze", "refName": "Forbidden Gaze", "namespace": "UNIQUE", "unique": {"base": "Chain Tiara"}} +{"name": "Foxshade", "refName": "Foxshade", "namespace": "UNIQUE", "unique": {"base": "Quilted Vest"}} +{"name": "Gamblesprint", "refName": "Gamblesprint", "namespace": "UNIQUE", "unique": {"base": "Embossed Boots"}} +{"name": "Ghostmarch", "refName": "Ghostmarch", "namespace": "UNIQUE", "unique": {"base": "Threaded Shoes"}} +{"name": "Ghostwrithe", "refName": "Ghostwrithe", "namespace": "UNIQUE", "unique": {"base": "Tattered Robe"}} +{"name": "Glimpse of Chaos", "refName": "Glimpse of Chaos", "namespace": "UNIQUE", "unique": {"base": "Tribal Mask"}} +{"name": "Gloomform", "refName": "Gloomform", "namespace": "UNIQUE", "unique": {"base": "Waxed Jacket"}} +{"name": "Goldrim", "refName": "Goldrim", "namespace": "UNIQUE", "unique": {"base": "Felt Cap"}} +{"name": "Gravebind", "refName": "Gravebind", "namespace": "UNIQUE", "unique": {"base": "Rope Cuffs"}} +{"name": "Greed's Embrace", "refName": "Greed's Embrace", "namespace": "UNIQUE", "unique": {"base": "Vaal Cuirass"}} +{"name": "Greymake", "refName": "Greymake", "namespace": "UNIQUE", "unique": {"base": "Brimmed Helm"}} +{"name": "Grip of Winter", "refName": "Grip of Winter", "namespace": "UNIQUE", "unique": {"base": "Firm Bracers"}} +{"name": "Hand of Wisdom and Action", "refName": "Hand of Wisdom and Action", "namespace": "UNIQUE", "unique": {"base": "Furtive Wraps"}} +{"name": "Hateforge", "refName": "Hateforge", "namespace": "UNIQUE", "unique": {"base": "Moulded Mitts"}} +{"name": "Horns of Bynden", "refName": "Horns of Bynden", "namespace": "UNIQUE", "unique": {"base": "Rusted Greathelm"}} +{"name": "Husk of Dreams", "refName": "Husk of Dreams", "namespace": "UNIQUE", "unique": {"base": "Shaman Mantle"}} +{"name": "Icetomb", "refName": "Icetomb", "namespace": "UNIQUE", "unique": {"base": "Mail Vestments"}} +{"name": "Idle Hands", "refName": "Idle Hands", "namespace": "UNIQUE", "unique": {"base": "Sectioned Bracers"}} +{"name": "Innsmouth", "refName": "Innsmouth", "namespace": "UNIQUE", "unique": {"base": "Shabby Hood"}} +{"name": "Irongrasp", "refName": "Irongrasp", "namespace": "UNIQUE", "unique": {"base": "Vagabond Armour"}} +{"name": "Ironride", "refName": "Ironride", "namespace": "UNIQUE", "unique": {"base": "Visored Helm"}} +{"name": "Jarngreipr", "refName": "Jarngreipr", "namespace": "UNIQUE", "unique": {"base": "Ringmail Gauntlets"}} +{"name": "Kaom's Heart", "refName": "Kaom's Heart", "namespace": "UNIQUE", "unique": {"base": "Conqueror Plate"}} +{"name": "Keeper of the Arc", "refName": "Keeper of the Arc", "namespace": "UNIQUE", "unique": {"base": "Spiritbone Crown"}} +{"name": "Killjoy", "refName": "Killjoy", "namespace": "UNIQUE", "unique": {"base": "Linen Wraps"}} +{"name": "Kingsguard", "refName": "Kingsguard", "namespace": "UNIQUE", "unique": {"base": "Full Plate"}} +{"name": "Kitoko's Current", "refName": "Kitoko's Current", "namespace": "UNIQUE", "unique": {"base": "Jewelled Gloves"}} +{"name": "Leer Cast", "refName": "Leer Cast", "namespace": "UNIQUE", "unique": {"base": "Hooded Mask"}} +{"name": "Legionstride", "refName": "Legionstride", "namespace": "UNIQUE", "unique": {"base": "Rough Greaves"}} +{"name": "Lochtonial Caress", "refName": "Lochtonial Caress", "namespace": "UNIQUE", "unique": {"base": "Tempered Mitts"}} +{"name": "Luminous Pace", "refName": "Luminous Pace", "namespace": "UNIQUE", "unique": {"base": "Straw Sandals"}} +{"name": "Lycosidae", "refName": "Lycosidae", "namespace": "UNIQUE", "unique": {"base": "Rampart Tower Shield"}} +{"name": "Mahuxotl's Machination", "refName": "Mahuxotl's Machination", "namespace": "UNIQUE", "unique": {"base": "Omen Crest Shield"}} +{"name": "Maligaro's Virtuosity", "refName": "Maligaro's Virtuosity", "namespace": "UNIQUE", "unique": {"base": "Fine Bracers"}} +{"name": "Mask of the Sanguimancer", "refName": "Mask of the Sanguimancer", "namespace": "UNIQUE", "unique": {"base": "Face Mask"}} +{"name": "Mask of the Stitched Demon", "refName": "Mask of the Stitched Demon", "namespace": "UNIQUE", "unique": {"base": "Feathered Tiara"}} +{"name": "Merit of Service", "refName": "Merit of Service", "namespace": "UNIQUE", "unique": {"base": "Pelage Targe"}} +{"name": "Morior Invictus", "refName": "Morior Invictus", "namespace": "UNIQUE", "unique": {"base": "Grand Regalia"}} +{"name": "Myris Uxor", "refName": "Myris Uxor", "namespace": "UNIQUE", "unique": {"base": "Covert Hood"}} +{"name": "Necromantle", "refName": "Necromantle", "namespace": "UNIQUE", "unique": {"base": "Bone Raiment"}} +{"name": "Northpaw", "refName": "Northpaw", "namespace": "UNIQUE", "unique": {"base": "Suede Bracers"}} +{"name": "Oaksworn", "refName": "Oaksworn", "namespace": "UNIQUE", "unique": {"base": "Sigil Crest Shield"}} +{"name": "Obern's Bastion", "refName": "Obern's Bastion", "namespace": "UNIQUE", "unique": {"base": "Stacked Sabatons"}} +{"name": "Painter's Servant", "refName": "Painter's Servant", "namespace": "UNIQUE", "unique": {"base": "Torn Gloves"}} +{"name": "Pariah's Embrace", "refName": "Pariah's Embrace", "namespace": "UNIQUE", "unique": {"base": "Cloaked Mail"}} +{"name": "Perfidy", "refName": "Perfidy", "namespace": "UNIQUE", "unique": {"base": "Knight Armour"}} +{"name": "Plaguefinger", "refName": "Plaguefinger", "namespace": "UNIQUE", "unique": {"base": "Gauze Wraps"}} +{"name": "Powertread", "refName": "Powertread", "namespace": "UNIQUE", "unique": {"base": "Hunting Shoes"}} +{"name": "Pragmatism", "refName": "Pragmatism", "namespace": "UNIQUE", "unique": {"base": "Explorer Armour"}} +{"name": "Prayers for Rain", "refName": "Prayers for Rain", "namespace": "UNIQUE", "unique": {"base": "Keth Raiment"}} +{"name": "Quatl's Molt", "refName": "Quatl's Molt", "namespace": "UNIQUE", "unique": {"base": "Serpentscale Coat"}} +{"name": "Queen of the Forest", "refName": "Queen of the Forest", "namespace": "UNIQUE", "unique": {"base": "Smuggler Coat"}} +{"name": "Radiant Grief", "refName": "Radiant Grief", "namespace": "UNIQUE", "unique": {"base": "Lace Hood"}} +{"name": "Redflare Conduit", "refName": "Redflare Conduit", "namespace": "UNIQUE", "unique": {"base": "Anchorite Garb"}} +{"name": "Rise of the Phoenix", "refName": "Rise of the Phoenix", "namespace": "UNIQUE", "unique": {"base": "Omen Crest Shield"}} +{"name": "Saffell's Frame", "refName": "Saffell's Frame", "namespace": "UNIQUE", "unique": {"base": "Emblem Crest Shield"}} +{"name": "Sandstorm Visage", "refName": "Sandstorm Visage", "namespace": "UNIQUE", "unique": {"base": "Chain Tiara"}} +{"name": "Serpent's Lesson", "refName": "Serpent's Lesson", "namespace": "UNIQUE", "unique": {"base": "Tonal Focus"}} +{"name": "Shackles of the Wretched", "refName": "Shackles of the Wretched", "namespace": "UNIQUE", "unique": {"base": "Aged Cuffs"}} +{"name": "Sierran Inheritance", "refName": "Sierran Inheritance", "namespace": "UNIQUE", "unique": {"base": "Marabout Garb"}} +{"name": "Sine Aequo", "refName": "Sine Aequo", "namespace": "UNIQUE", "unique": {"base": "Grand Manchettes"}} +{"name": "Skin of the Loyal", "refName": "Skin of the Loyal", "namespace": "UNIQUE", "unique": {"base": "Garment"}} +{"name": "Snakebite", "refName": "Snakebite", "namespace": "UNIQUE", "unique": {"base": "Spined Bracers"}} +{"name": "Solus Ipse", "refName": "Solus Ipse", "namespace": "UNIQUE", "unique": {"base": "Grand Visage"}} +{"name": "Svalinn", "refName": "Svalinn", "namespace": "UNIQUE", "unique": {"base": "Crucible Tower Shield"}} +{"name": "Temporalis", "refName": "Temporalis", "namespace": "UNIQUE", "unique": {"base": "Silk Robe"}} +{"name": "Tetzlapokal's Desire", "refName": "Tetzlapokal's Desire", "namespace": "UNIQUE", "unique": {"base": "Votive Raiment"}} +{"name": "The Barrow Dweller", "refName": "The Barrow Dweller", "namespace": "UNIQUE", "unique": {"base": "Rogue Armour"}} +{"name": "The Black Doubt", "refName": "The Black Doubt", "namespace": "UNIQUE", "unique": {"base": "Hexer's Robe"}} +{"name": "The Brass Dome", "refName": "The Brass Dome", "namespace": "UNIQUE", "unique": {"base": "Champion Cuirass"}} +{"name": "The Covenant", "refName": "The Covenant", "namespace": "UNIQUE", "unique": {"base": "Altar Robe"}} +{"name": "The Dancing Mirage", "refName": "The Dancing Mirage", "namespace": "UNIQUE", "unique": {"base": "Wayfarer Jacket"}} +{"name": "The Devouring Diadem", "refName": "The Devouring Diadem", "namespace": "UNIQUE", "unique": {"base": "Wicker Tiara"}} +{"name": "The Eternal Spark", "refName": "The Eternal Spark", "namespace": "UNIQUE", "unique": {"base": "Crystal Focus"}} +{"name": "The Hollow Mask", "refName": "The Hollow Mask", "namespace": "UNIQUE", "unique": {"base": "Hewn Mask"}} +{"name": "The Immortan", "refName": "The Immortan", "namespace": "UNIQUE", "unique": {"base": "Raider Plate"}} +{"name": "The Infinite Pursuit", "refName": "The Infinite Pursuit", "namespace": "UNIQUE", "unique": {"base": "Bronze Greaves"}} +{"name": "The Knight-errant", "refName": "The Knight-errant", "namespace": "UNIQUE", "unique": {"base": "Mail Sabatons"}} +{"name": "The Rat Cage", "refName": "The Rat Cage", "namespace": "UNIQUE", "unique": {"base": "Scout's Vest"}} +{"name": "The Smiling Knight", "refName": "The Smiling Knight", "namespace": "UNIQUE", "unique": {"base": "Cowled Helm"}} +{"name": "The Surrender", "refName": "The Surrender", "namespace": "UNIQUE", "unique": {"base": "Stone Tower Shield"}} +{"name": "The Three Dragons", "refName": "The Three Dragons", "namespace": "UNIQUE", "unique": {"base": "Solid Mask"}} +{"name": "The Vertex", "refName": "The Vertex", "namespace": "UNIQUE", "unique": {"base": "Tribal Mask"}} +{"name": "The Vile Knight", "refName": "The Vile Knight", "namespace": "UNIQUE", "unique": {"base": "Shielded Helm"}} +{"name": "The Wailing Wall", "refName": "The Wailing Wall", "namespace": "UNIQUE", "unique": {"base": "Effigial Tower Shield"}} +{"name": "Threaded Light", "refName": "Threaded Light", "namespace": "UNIQUE", "unique": {"base": "Woven Focus"}} +{"name": "Thrillsteel", "refName": "Thrillsteel", "namespace": "UNIQUE", "unique": {"base": "Spired Greathelm"}} +{"name": "Thunderstep", "refName": "Thunderstep", "namespace": "UNIQUE", "unique": {"base": "Steeltoe Boots"}} +{"name": "Titanrot Cataphract", "refName": "Titanrot Cataphract", "namespace": "UNIQUE", "unique": {"base": "Maraketh Cuirass"}} +{"name": "Trampletoe", "refName": "Trampletoe", "namespace": "UNIQUE", "unique": {"base": "Trimmed Greaves"}} +{"name": "Treefingers", "refName": "Treefingers", "namespace": "UNIQUE", "unique": {"base": "Riveted Mitts"}} +{"name": "Veil of the Night", "refName": "Veil of the Night", "namespace": "UNIQUE", "unique": {"base": "Martyr Crown"}} +{"name": "Visage of Ayah", "refName": "Visage of Ayah", "namespace": "UNIQUE", "unique": {"base": "Beaded Circlet"}} +{"name": "Voll's Protector", "refName": "Voll's Protector", "namespace": "UNIQUE", "unique": {"base": "Ironclad Vestments"}} +{"name": "Wake of Destruction", "refName": "Wake of Destruction", "namespace": "UNIQUE", "unique": {"base": "Secured Leggings"}} +{"name": "Wandering Reliquary", "refName": "Wandering Reliquary", "namespace": "UNIQUE", "unique": {"base": "Steel Plate"}} +{"name": "Wanderlust", "refName": "Wanderlust", "namespace": "UNIQUE", "unique": {"base": "Wrapped Sandals"}} +{"name": "Windscream", "refName": "Windscream", "namespace": "UNIQUE", "unique": {"base": "Feathered Sandals"}} +{"name": "Wings of Caelyn", "refName": "Wings of Caelyn", "namespace": "UNIQUE", "unique": {"base": "Rusted Greathelm"}} +{"name": "Wondertrap", "refName": "Wondertrap", "namespace": "UNIQUE", "unique": {"base": "Silk Slippers"}} +{"name": "Wulfsbane", "refName": "Wulfsbane", "namespace": "UNIQUE", "unique": {"base": "Painted Tower Shield"}} +{"name": "Melting Maelstrom", "refName": "Melting Maelstrom", "namespace": "UNIQUE", "unique": {"base": "Ultimate Mana Flask"}} +{"name": "Olroth's Resolve", "refName": "Olroth's Resolve", "namespace": "UNIQUE", "unique": {"base": "Ultimate Life Flask"}} +{"name": "Against the Darkness", "refName": "Against the Darkness", "namespace": "UNIQUE", "unique": {"base": "Time-Lost Diamond"}} +{"name": "Controlled Metamorphosis", "refName": "Controlled Metamorphosis", "namespace": "UNIQUE", "unique": {"base": "Diamond"}} +{"name": "From Nothing", "refName": "From Nothing", "namespace": "UNIQUE", "unique": {"base": "Diamond"}} +{"name": "Grand Spectrum", "refName": "Grand Spectrum", "namespace": "UNIQUE", "unique": {"base": "Emerald"}} +{"name": "Grand Spectrum", "refName": "Grand Spectrum", "namespace": "UNIQUE", "unique": {"base": "Ruby"}} +{"name": "Grand Spectrum", "refName": "Grand Spectrum", "namespace": "UNIQUE", "unique": {"base": "Sapphire"}} +{"name": "Heroic Tragedy", "refName": "Heroic Tragedy", "namespace": "UNIQUE", "unique": {"base": "Timeless Jewel"}} +{"name": "Prism of Belief", "refName": "Prism of Belief", "namespace": "UNIQUE", "unique": {"base": "Diamond"}} +{"name": "The Adorned", "refName": "The Adorned", "namespace": "UNIQUE", "unique": {"base": "Diamond"}} +{"name": "Brain Rattler", "refName": "Brain Rattler", "namespace": "UNIQUE", "unique": {"base": "Studded Greatclub"}} +{"name": "Brynhand's Mark", "refName": "Brynhand's Mark", "namespace": "UNIQUE", "unique": {"base": "Wooden Club"}} +{"name": "Chober Chaber", "refName": "Chober Chaber", "namespace": "UNIQUE", "unique": {"base": "Leaden Greathammer"}} +{"name": "Death's Harp", "refName": "Death's Harp", "namespace": "UNIQUE", "unique": {"base": "Dualstring Bow"}} +{"name": "Dusk Vigil", "refName": "Dusk Vigil", "namespace": "UNIQUE", "unique": {"base": "Ashen Staff"}} +{"name": "Earthbound", "refName": "Earthbound", "namespace": "UNIQUE", "unique": {"base": "Voltaic Staff"}} +{"name": "Enezun's Charge", "refName": "Enezun's Charge", "namespace": "UNIQUE", "unique": {"base": "Volatile Wand"}} +{"name": "Font of Power", "refName": "Font of Power", "namespace": "UNIQUE", "unique": {"base": "Omen Sceptre"}} +{"name": "Frostbreath", "refName": "Frostbreath", "namespace": "UNIQUE", "unique": {"base": "Slim Mace"}} +{"name": "Guiding Palm", "refName": "Guiding Palm", "namespace": "UNIQUE", "unique": {"base": "Shrine Sceptre"}} +{"name": "Hoghunt", "refName": "Hoghunt", "namespace": "UNIQUE", "unique": {"base": "Felled Greatclub"}} +{"name": "Hrimnor's Hymn", "refName": "Hrimnor's Hymn", "namespace": "UNIQUE", "unique": {"base": "Oak Greathammer"}} +{"name": "INCOMPLETE", "refName": "INCOMPLETE", "namespace": "UNIQUE", "unique": {"base": "War Spear"}} +{"name": "INCOMPLETE", "refName": "INCOMPLETE", "namespace": "UNIQUE", "unique": {"base": "Vampiric Blade"}} +{"name": "INCOMPLETE", "refName": "INCOMPLETE", "namespace": "UNIQUE", "unique": {"base": "Charred Shortsword"}} +{"name": "INCOMPLETE", "refName": "INCOMPLETE", "namespace": "UNIQUE", "unique": {"base": "Corroded Longsword"}} +{"name": "INCOMPLETE", "refName": "INCOMPLETE", "namespace": "UNIQUE", "unique": {"base": "Rippled Greatsword"}} +{"name": "Lifesprig", "refName": "Lifesprig", "namespace": "UNIQUE", "unique": {"base": "Attuned Wand"}} +{"name": "Matsya", "refName": "Matsya", "namespace": "UNIQUE", "unique": {"base": "Crescent Quarterstaff"}} +{"name": "Mist Whisper", "refName": "Mist Whisper", "namespace": "UNIQUE", "unique": {"base": "Makeshift Crossbow"}} +{"name": "Nazir's Judgement", "refName": "Nazir's Judgement", "namespace": "UNIQUE", "unique": {"base": "Steelpoint Quarterstaff"}} +{"name": "Olrovasara", "refName": "Olrovasara", "namespace": "UNIQUE", "unique": {"base": "Torment Club"}} +{"name": "Pillar of the Caged God", "refName": "Pillar of the Caged God", "namespace": "UNIQUE", "unique": {"base": "Long Quarterstaff"}} +{"name": "Quecholli", "refName": "Quecholli", "namespace": "UNIQUE", "unique": {"base": "Crumbling Maul"}} +{"name": "Quill Rain", "refName": "Quill Rain", "namespace": "UNIQUE", "unique": {"base": "Shortbow"}} +{"name": "Rampart Raptor", "refName": "Rampart Raptor", "namespace": "UNIQUE", "unique": {"base": "Tense Crossbow"}} +{"name": "Sacred Flame", "refName": "Sacred Flame", "namespace": "UNIQUE", "unique": {"base": "Shrine Sceptre"}} +{"name": "Sanguine Diviner", "refName": "Sanguine Diviner", "namespace": "UNIQUE", "unique": {"base": "Bone Wand"}} +{"name": "Seeing Stars", "refName": "Seeing Stars", "namespace": "UNIQUE", "unique": {"base": "Plated Mace"}} +{"name": "Splinterheart", "refName": "Splinterheart", "namespace": "UNIQUE", "unique": {"base": "Recurve Bow"}} +{"name": "Taryn's Shiver", "refName": "Taryn's Shiver", "namespace": "UNIQUE", "unique": {"base": "Gelid Staff"}} +{"name": "The Blood Thorn", "refName": "The Blood Thorn", "namespace": "UNIQUE", "unique": {"base": "Wrapped Quarterstaff"}} +{"name": "The Burden of Shadows", "refName": "The Burden of Shadows", "namespace": "UNIQUE", "unique": {"base": "Chiming Staff"}} +{"name": "The Dark Defiler", "refName": "The Dark Defiler", "namespace": "UNIQUE", "unique": {"base": "Rattling Sceptre"}} +{"name": "The Searing Touch", "refName": "The Searing Touch", "namespace": "UNIQUE", "unique": {"base": "Pyrophyte Staff"}} +{"name": "The Sentry", "refName": "The Sentry", "namespace": "UNIQUE", "unique": {"base": "Gothic Quarterstaff"}} +{"name": "Trenchtimbre", "refName": "Trenchtimbre", "namespace": "UNIQUE", "unique": {"base": "Spiked Club"}} +{"name": "Trephina", "refName": "Trephina", "namespace": "UNIQUE", "unique": {"base": "Forge Maul"}} +{"name": "Widowhail", "refName": "Widowhail", "namespace": "UNIQUE", "unique": {"base": "Crude Bow"}} +{"name": "Winter's Bite", "refName": "Winter's Bite", "namespace": "UNIQUE", "unique": {"base": "Glass Shank"}} +{"name": "Wylund's Stake", "refName": "Wylund's Stake", "namespace": "UNIQUE", "unique": {"base": "Smithing Hammer"}} +{"name": "The Burden of Leadership", "refName": "The Burden of Leadership", "namespace": "UNIQUE", "unique": {"base": "Tapestry Relic"}} +{"name": "The Changing Seasons", "refName": "The Changing Seasons", "namespace": "UNIQUE", "unique": {"base": "Seal Relic"}} +{"name": "The Desperate Alliance", "refName": "The Desperate Alliance", "namespace": "UNIQUE", "unique": {"base": "Vase Relic"}} +{"name": "The Last Flame", "refName": "The Last Flame", "namespace": "UNIQUE", "unique": {"base": "Incense Relic"}} +{"name": "The Peacemaker's Draught", "refName": "The Peacemaker's Draught", "namespace": "UNIQUE", "unique": {"base": "Amphora Relic"}} +{"name": "The Remembered Tales", "refName": "The Remembered Tales", "namespace": "UNIQUE", "unique": {"base": "Coffer Relic"}} diff --git a/renderer/src/parser/en/patrons.json b/renderer/src/parser/en/patrons.json new file mode 100644 index 000000000..3e538437e --- /dev/null +++ b/renderer/src/parser/en/patrons.json @@ -0,0 +1,191 @@ +[ + {"from": "A. Førde", "months": 3, "style": 1}, + {"from": "A. Koenig", "months": 1, "style": 1}, + {"from": "A. Logos", "months": 20, "style": 2}, + {"from": "A. Miller", "months": 11, "style": 1}, + {"from": "A. Nakarada", "months": 7, "style": 2}, + {"from": "A. Robinson", "months": 7, "style": 3}, + {"from": "A. West", "months": 27, "style": 3}, + {"from": "A. Zastre", "months": 5, "style": 1}, + {"from": "AbedNego", "months": 6, "style": 1}, + {"from": "aikodz", "months": 3, "style": 1}, + {"from": "Andrew S", "months": 1, "style": 1}, + {"from": "angrymouse", "months": 6, "style": 1}, + {"from": "aNitMotD", "months": 2, "style": 3}, + {"from": "applejacked", "months": 20, "style": 2}, + {"from": "Arte Lope", "months": 17, "style": 2}, + {"from": "Askanor", "months": 1, "style": 1}, + {"from": "Athena", "months": 10, "style": 3}, + {"from": "AZ", "months": 3, "style": 1}, + {"from": "B. Maszlag", "months": 16, "style": 2}, + {"from": "B. Stone", "months": 1, "style": 1}, + {"from": "B3ginner", "months": 1, "style": 1}, + {"from": "Baang", "months": 35, "style": 5}, + {"from": "bashcoder", "months": 4, "style": 1}, + {"from": "BearsInTheSky", "months": 1, "style": 1}, + {"from": "Bjoern B.", "months": 4, "style": 1}, + {"from": "Brotango", "months": 3, "style": 1}, + {"from": "Budget Boudica", "months": 23, "style": 3}, + {"from": "C. Niemeier", "months": 10, "style": 2}, + {"from": "C. Szilagy", "months": 15, "style": 2}, + {"from": "C.M. Tolman", "months": 4, "style": 2}, + {"from": "Calyx", "months": 36, "style": 5}, + {"from": "camenre", "months": 2, "style": 1}, + {"from": "Chee", "months": 2, "style": 1}, + {"from": "clopnaz", "months": 3, "style": 1}, + {"from": "Cod Smack", "months": 28, "style": 3}, + {"from": "Coolulder", "months": 42, "style": 5}, + {"from": "Cry0nicS", "months": 1, "style": 1}, + {"from": "cuinhellcat", "months": 2, "style": 1}, + {"from": "CysDg", "months": 1, "style": 1}, + {"from": "D. Bryan", "months": 2, "style": 1}, + {"from": "D. Ivanov", "months": 16, "style": 4}, + {"from": "D. Paulino", "months": 30, "style": 5}, + {"from": "D. Ward", "months": 8, "style": 2}, + {"from": "d0mEsPLiTa", "months": 12, "style": 3}, + {"from": "Dadaless", "months": 4, "style": 1}, + {"from": "Dante M.", "months": 27, "style": 4}, + {"from": "Darkscion", "months": 1, "style": 1}, + {"from": "deeray", "months": 38, "style": 3}, + {"from": "delasteve", "months": 1, "style": 2}, + {"from": "digininja", "months": 39, "style": 3}, + {"from": "dreamweaverkara", "months": 4, "style": 2}, + {"from": "DTauro", "months": 6, "style": 1}, + {"from": "Dvoth", "months": 3, "style": 1}, + {"from": "E. Giegerich", "months": 2, "style": 1}, + {"from": "E. Manhattan", "months": 12, "style": 2}, + {"from": "E. Troyak", "months": 4, "style": 3}, + {"from": "Ellendar", "months": 45, "style": 5}, + {"from": "EllieJelly", "months": 38, "style": 4}, + {"from": "facemask12", "months": 4, "style": 2}, + {"from": "FARIS2", "months": 4, "style": 2}, + {"from": "frsm", "months": 37, "style": 3}, + {"from": "gamingrobot", "months": 9, "style": 2}, + {"from": "Gdubz", "months": 4, "style": 3}, + {"from": "GRIMGeek", "months": 37, "style": 3}, + {"from": "Grotok", "months": 19, "style": 3}, + {"from": "gurthymyco", "months": 1, "style": 1}, + {"from": "haliun", "months": 7, "style": 3}, + {"from": "Harometras", "months": 3, "style": 1}, + {"from": "Heikki", "months": 34, "style": 3}, + {"from": "Holonaut", "months": 7, "style": 2}, + {"from": "HOOSIER", "months": 21, "style": 2}, + {"from": "Horstusius", "months": 8, "style": 2}, + {"from": "hyronimus84", "months": 1, "style": 1}, + {"from": "imaapty", "months": 4, "style": 2}, + {"from": "iqdrive", "months": 2, "style": 1}, + {"from": "J. Harmer", "months": 10, "style": 2}, + {"from": "J. Krzeminski", "months": 14, "style": 2}, + {"from": "J. Madill", "months": 19, "style": 2}, + {"from": "J. Müller", "months": 26, "style": 3}, + {"from": "J. Pollard", "months": 4, "style": 1}, + {"from": "J. Porter", "months": 35, "style": 3}, + {"from": "J. Rapp", "months": 23, "style": 3}, + {"from": "J. Reed", "months": 6, "style": 2}, + {"from": "J. Stratmann", "months": 43, "style": 3}, + {"from": "J. Wiegand", "months": 10, "style": 3}, + {"from": "jerbear_pnw", "months": 14, "style": 4}, + {"from": "Jordan", "months": 1, "style": 1}, + {"from": "JoyFired", "months": 7, "style": 1}, + {"from": "JP Bagdonas", "months": 8, "style": 3}, + {"from": "Jr Honorio", "months": 5, "style": 2}, + {"from": "K_fudge", "months": 1, "style": 2}, + {"from": "K. Hafenscher", "months": 26, "style": 4}, + {"from": "K. Hardy", "months": 4, "style": 4}, + {"from": "K. Kaptur", "months": 8, "style": 1}, + {"from": "K. Mohin", "months": 1, "style": 1}, + {"from": "KhaozNZ", "months": 5, "style": 1}, + {"from": "khay", "months": 20, "style": 2}, + {"from": "Kloozy", "months": 6, "style": 1}, + {"from": "kmalex4", "months": 33, "style": 3}, + {"from": "kruderf", "months": 1, "style": 1}, + {"from": "L. Chien", "months": 12, "style": 3}, + {"from": "L. Kelly", "months": 8, "style": 2}, + {"from": "L. MacNeil", "months": 32, "style": 5}, + {"from": "L. Sampaio Dias", "months": 2, "style": 1}, + {"from": "lecruz01", "months": 2, "style": 1}, + {"from": "Lendoria", "months": 22, "style": 4}, + {"from": "livejamie", "months": 26, "style": 2}, + {"from": "lord_lengl", "months": 2, "style": 1}, + {"from": "Lordius", "months": 1, "style": 1}, + {"from": "louislo", "months": 6, "style": 1}, + {"from": "Ludion R", "months": 3, "style": 1}, + {"from": "M. Aldous", "months": 30, "style": 3}, + {"from": "M. Kimble", "months": 34, "style": 4}, + {"from": "M. Lopez", "months": 10, "style": 3}, + {"from": "martin1*5", "months": 12, "style": 3}, + {"from": "Max10969", "months": 16, "style": 3}, + {"from": "Melu", "months": 1, "style": 1}, + {"from": "Mike", "months": 6, "style": 2}, + {"from": "MiksLynx", "months": 14, "style": 2}, + {"from": "Mindfire", "months": 2, "style": 1}, + {"from": "mmastrocinque", "months": 11, "style": 2}, + {"from": "Mr. Ozarka", "months": 10, "style": 2}, + {"from": "N. Baldwin", "months": 23, "style": 4}, + {"from": "N. Juretic", "months": 15, "style": 4}, + {"from": "N. Pawlawski", "months": 3, "style": 1}, + {"from": "N. Sabin", "months": 1, "style": 1}, + {"from": "Nakoma", "months": 2, "style": 1}, + {"from": "ninni", "months": 12, "style": 2}, + {"from": "nipser", "months": 3, "style": 1}, + {"from": "P. Pandian", "months": 8, "style": 3}, + {"from": "P. Roeper", "months": 26, "style": 3}, + {"from": "Pieman807", "months": 12, "style": 3}, + {"from": "Praestrom", "months": 2, "style": 1}, + {"from": "Quezion", "months": 29, "style": 4}, + {"from": "R. Chow", "months": 40, "style": 3}, + {"from": "R. Fidel", "months": 14, "style": 4}, + {"from": "R. Klippert", "months": 26, "style": 3}, + {"from": "R. Meliksetyan", "months": 1, "style": 1}, + {"from": "R. Myers", "months": 1, "style": 1}, + {"from": "Rafnak", "months": 3, "style": 1}, + {"from": "roxzin", "months": 4, "style": 1}, + {"from": "Rutschi", "months": 4, "style": 2}, + {"from": "rw", "months": 31, "style": 4}, + {"from": "Ryndaar", "months": 2, "style": 1}, + {"from": "S. Barton", "months": 20, "style": 3}, + {"from": "S. Bejan", "months": 16, "style": 2}, + {"from": "S. Goozey", "months": 25, "style": 2}, + {"from": "S. Jones", "months": 8, "style": 2}, + {"from": "Sanii", "months": 35, "style": 5}, + {"from": "SasQ", "months": 1, "style": 1}, + {"from": "Secret Wizard", "months": 6, "style": 2}, + {"from": "Seppi", "months": 1, "style": 1}, + {"from": "sergeantglasc", "months": 1, "style": 1}, + {"from": "smartmusic", "months": 2, "style": 1}, + {"from": "smifli", "months": 3, "style": 2}, + {"from": "sn0cr4sh", "months": 31, "style": 4}, + {"from": "snape3619", "months": 3, "style": 1}, + {"from": "Solaarian", "months": 15, "style": 2}, + {"from": "Splat", "months": 7, "style": 1}, + {"from": "stark4machines", "months": 13, "style": 2}, + {"from": "Steve O.", "months": 6, "style": 1}, + {"from": "StrangerKill", "months": 29, "style": 3}, + {"from": "Sy", "months": 23, "style": 2}, + {"from": "sycofly", "months": 14, "style": 2}, + {"from": "symphony", "months": 20, "style": 2}, + {"from": "T. Boone", "months": 3, "style": 1}, + {"from": "T. Pluta", "months": 16, "style": 3}, + {"from": "T. Rayne", "months": 3, "style": 1}, + {"from": "T. Trav", "months": 15, "style": 4}, + {"from": "Tactical96", "months": 2, "style": 1}, + {"from": "TH", "months": 11, "style": 1}, + {"from": "ThatGuyWasTaken", "months": 38, "style": 5}, + {"from": "TheDriveHome", "months": 31, "style": 4}, + {"from": "tony", "months": 1, "style": 1}, + {"from": "Traceur", "months": 11, "style": 3}, + {"from": "turmalin", "months": 4, "style": 2}, + {"from": "V. Chernenko", "months": 2, "style": 1}, + {"from": "Vandi", "months": 30, "style": 3}, + {"from": "vervalsen", "months": 1, "style": 1}, + {"from": "vii", "months": 13, "style": 4}, + {"from": "Vindexus", "months": 6, "style": 2}, + {"from": "vivi", "months": 3, "style": 1}, + {"from": "Vulinux", "months": 4, "style": 1}, + {"from": "W. Milas", "months": 42, "style": 4}, + {"from": "Washclof", "months": 4, "style": 1}, + {"from": "Wiggles", "months": 21, "style": 4}, + {"from": "Zach H", "months": 11, "style": 5}, + {"from": "Zigra", "months": 4, "style": 2}, + {"from": "zlajo", "months": 8, "style": 1} +] \ No newline at end of file diff --git a/renderer/src/parser/en/stats.ndjson b/renderer/src/parser/en/stats.ndjson new file mode 100644 index 000000000..4fa2bb24f --- /dev/null +++ b/renderer/src/parser/en/stats.ndjson @@ -0,0 +1,2910 @@ +{"ref": "+# to Strength", "better": 1, "id": "additional_strength", "matchers": [{"string": "# to Strength", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4080418644"], "implicit": ["implicit.stat_4080418644"], "enchant": ["enchant.stat_4080418644"]}}} +{"ref": "+# to Dexterity", "better": 1, "id": "additional_dexterity", "matchers": [{"string": "# to Dexterity", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3261801346"], "implicit": ["implicit.stat_3261801346"], "enchant": ["enchant.stat_3261801346"]}}} +{"ref": "+# to Intelligence", "better": 1, "id": "additional_intelligence", "matchers": [{"string": "# to Intelligence", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_328541901"], "implicit": ["implicit.stat_328541901"], "enchant": ["enchant.stat_328541901"]}}} +{"ref": "+# to all Attributes", "better": 1, "id": "additional_all_attributes", "matchers": [{"string": "# to all Attributes", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1379411836"], "implicit": ["implicit.stat_1379411836"]}}} +{"ref": "+#% to Fire Resistance", "better": 1, "id": "base_fire_damage_resistance_%", "matchers": [{"string": "#% to Fire Resistance", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3372524247"], "implicit": ["implicit.stat_3372524247"], "enchant": ["enchant.stat_3372524247"], "rune": ["rune.stat_3372524247"]}}} +{"ref": "+#% to Cold Resistance", "better": 1, "id": "base_cold_damage_resistance_%", "matchers": [{"string": "#% to Cold Resistance", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4220027924"], "implicit": ["implicit.stat_4220027924"], "enchant": ["enchant.stat_4220027924"], "rune": ["rune.stat_4220027924"]}}} +{"ref": "+#% to Lightning Resistance", "better": 1, "id": "base_lightning_damage_resistance_%", "matchers": [{"string": "#% to Lightning Resistance", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1671376347"], "implicit": ["implicit.stat_1671376347"], "enchant": ["enchant.stat_1671376347"], "rune": ["rune.stat_1671376347"]}}} +{"ref": "+#% to all Elemental Resistances", "better": 1, "id": "base_resist_all_elements_%", "matchers": [{"string": "#% to all Elemental Resistances", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2901986750"], "implicit": ["implicit.stat_2901986750"], "enchant": ["enchant.stat_2901986750"], "rune": ["rune.stat_2901986750"]}}} +{"ref": "Allies in your Presence have +#% to all Elemental Resistances", "better": 1, "id": "allies_in_presence_resist_all_elements_%", "matchers": [{"string": "Allies in your Presence have +#% to all Elemental Resistances", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Chaos Resistance", "better": 1, "id": "base_chaos_damage_resistance_%", "matchers": [{"string": "#% to Chaos Resistance", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2923486259"], "implicit": ["implicit.stat_2923486259"], "enchant": ["enchant.stat_2923486259"], "rune": ["rune.stat_2923486259"]}}} +{"ref": "+# to maximum Life", "better": 1, "id": "base_maximum_life", "matchers": [{"string": "# to maximum Life", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3299347043"], "implicit": ["implicit.stat_3299347043"], "enchant": ["enchant.stat_3299347043"], "rune": ["rune.stat_3299347043"]}}} +{"ref": "#% increased maximum Life", "better": 1, "id": "maximum_life_+%", "matchers": [{"string": "#% increased maximum Life", "negate": false}, {"string": "#% reduced maximum Life", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_983749596"], "rune": ["rune.stat_983749596"], "sanctum": ["sanctum.stat_1200789871"]}}} +{"ref": "+# to maximum Mana", "better": 1, "id": "base_maximum_mana", "matchers": [{"string": "# to maximum Mana", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1050105434"], "implicit": ["implicit.stat_1050105434"], "enchant": ["enchant.stat_1050105434"], "rune": ["rune.stat_1050105434"]}}} +{"ref": "#% increased maximum Mana", "better": 1, "id": "maximum_mana_+%", "matchers": [{"string": "#% increased maximum Mana", "negate": false}, {"string": "#% reduced maximum Mana", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2748665614"], "rune": ["rune.stat_2748665614"]}}} +{"ref": "+# to Armour", "better": 1, "id": "base_physical_damage_reduction_rating", "matchers": [{"string": "# to Armour", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3484657501", "explicit.stat_809229260"], "implicit": ["implicit.stat_809229260"]}}} +{"ref": "+# to Evasion Rating", "better": 1, "id": "base_evasion_rating", "matchers": [{"string": "# to Evasion Rating", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_53045048", "explicit.stat_2144192055"]}}} +{"ref": "+# to maximum Energy Shield", "better": 1, "id": "base_maximum_energy_shield", "matchers": [{"string": "# to maximum Energy Shield", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4052037485", "explicit.stat_3489782002"], "implicit": ["implicit.stat_3489782002"]}}} +{"ref": "#% increased Armour", "better": 1, "id": "physical_damage_reduction_rating_+%", "matchers": [{"string": "#% increased Armour", "negate": false}, {"string": "#% reduced Armour", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1062208444", "explicit.stat_2866361420"], "enchant": ["enchant.stat_1062208444", "enchant.stat_2866361420"], "sanctum": ["sanctum.stat_1737465970"]}}} +{"ref": "#% increased Evasion Rating", "better": 1, "id": "evasion_rating_+%", "matchers": [{"string": "#% increased Evasion Rating", "negate": false}, {"string": "#% reduced Evasion Rating", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_124859000", "explicit.stat_2106365538"], "enchant": ["enchant.stat_124859000", "enchant.stat_2106365538"], "sanctum": ["sanctum.stat_3882471944"]}}} +{"ref": "#% increased maximum Energy Shield", "better": 1, "id": "maximum_energy_shield_+%", "matchers": [{"string": "#% increased maximum Energy Shield", "negate": false}, {"string": "#% reduced maximum Energy Shield", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2482852589"], "enchant": ["enchant.stat_2482852589"], "sanctum": ["sanctum.stat_1707887759"]}}} +{"ref": "+# to Armour", "better": 1, "id": "local_base_physical_damage_reduction_rating", "matchers": [{"string": "# to Armour", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3484657501", "explicit.stat_809229260"], "implicit": ["implicit.stat_809229260"]}}} +{"ref": "+# to Evasion Rating", "better": 1, "id": "local_base_evasion_rating", "matchers": [{"string": "# to Evasion Rating", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_53045048", "explicit.stat_2144192055"]}}} +{"ref": "+# to maximum Energy Shield", "better": 1, "id": "local_energy_shield", "matchers": [{"string": "# to maximum Energy Shield", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4052037485", "explicit.stat_3489782002"], "implicit": ["implicit.stat_3489782002"]}}} +{"ref": "#% increased Armour", "better": 1, "id": "local_physical_damage_reduction_rating_+%", "matchers": [{"string": "#% increased Armour", "negate": false}, {"string": "#% reduced Armour", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1062208444", "explicit.stat_2866361420"], "enchant": ["enchant.stat_1062208444", "enchant.stat_2866361420"], "sanctum": ["sanctum.stat_1737465970"]}}} +{"ref": "#% increased Evasion Rating", "better": 1, "id": "local_evasion_rating_+%", "matchers": [{"string": "#% increased Evasion Rating", "negate": false}, {"string": "#% reduced Evasion Rating", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_124859000", "explicit.stat_2106365538"], "enchant": ["enchant.stat_124859000", "enchant.stat_2106365538"], "sanctum": ["sanctum.stat_3882471944"]}}} +{"ref": "#% increased Energy Shield", "better": 1, "id": "local_energy_shield_+%", "matchers": [{"string": "#% increased Energy Shield", "negate": false}, {"string": "#% reduced Energy Shield", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_4015621042"], "enchant": ["enchant.stat_4015621042"]}}} +{"ref": "#% increased Armour and Evasion", "better": 1, "id": "local_armour_and_evasion_+%", "matchers": [{"string": "#% increased Armour and Evasion", "negate": false}, {"string": "#% reduced Armour and Evasion", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2451402625"], "enchant": ["enchant.stat_2451402625"]}}} +{"ref": "#% increased Armour and Energy Shield", "better": 1, "id": "local_armour_and_energy_shield_+%", "matchers": [{"string": "#% increased Armour and Energy Shield", "negate": false}, {"string": "#% reduced Armour and Energy Shield", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3321629045"], "enchant": ["enchant.stat_3321629045"]}}} +{"ref": "#% increased Evasion and Energy Shield", "better": 1, "id": "local_evasion_and_energy_shield_+%", "matchers": [{"string": "#% increased Evasion and Energy Shield", "negate": false}, {"string": "#% reduced Evasion and Energy Shield", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1999113824"], "enchant": ["enchant.stat_1999113824"]}}} +{"ref": "#% increased Attribute Requirements", "better": 1, "id": "local_attribute_requirements_+%", "matchers": [{"string": "#% increased Attribute Requirements", "negate": false}, {"string": "#% reduced Attribute Requirements", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3639275092"], "enchant": ["enchant.stat_3639275092"]}}} +{"ref": "+# to Stun Threshold", "better": 1, "id": "stun_threshold_+", "matchers": [{"string": "# to Stun Threshold", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_915769802"], "rune": ["rune.stat_915769802"]}}} +{"ref": "#% increased Movement Speed", "better": 1, "id": "base_movement_velocity_+%", "matchers": [{"string": "#% increased Movement Speed", "negate": false}, {"string": "#% reduced Movement Speed", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2250533757"], "implicit": ["implicit.stat_2250533757"], "enchant": ["enchant.stat_2250533757"], "sanctum": ["sanctum.stat_1416455556"]}}} +{"ref": "# to # Physical Thorns damage", "better": 1, "id": "thorns_minimum_base_physical_damage", "matchers": [{"string": "# to # Physical Thorns damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2881298780"]}}} +{"ref": "Adds # to # Physical Damage to Attacks", "better": 1, "id": "attack_minimum_added_physical_damage", "matchers": [{"string": "Adds # to # Physical Damage to Attacks", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3032590688"], "implicit": ["implicit.stat_3032590688"]}}} +{"ref": "Adds # to # Fire damage to Attacks", "better": 1, "id": "attack_minimum_added_fire_damage", "matchers": [{"string": "Adds # to # Fire damage to Attacks", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1573130764"], "implicit": ["implicit.stat_1573130764"]}}} +{"ref": "Adds # to # Cold damage to Attacks", "better": 1, "id": "attack_minimum_added_cold_damage", "matchers": [{"string": "Adds # to # Cold damage to Attacks", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4067062424"]}}} +{"ref": "Adds # to # Lightning damage to Attacks", "better": 1, "id": "attack_minimum_added_lightning_damage", "matchers": [{"string": "Adds # to # Lightning damage to Attacks", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1754445556"]}}} +{"ref": "Adds # to # Physical Damage", "better": 1, "id": "local_minimum_added_physical_damage", "matchers": [{"string": "Adds # to # Physical Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1940865751"]}}} +{"ref": "Adds # to # Fire Damage", "better": 1, "id": "local_minimum_added_fire_damage", "matchers": [{"string": "Adds # to # Fire Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_709508406"], "enchant": ["enchant.stat_709508406"], "rune": ["rune.stat_709508406"]}}} +{"ref": "Adds # to # Cold Damage", "better": 1, "id": "local_minimum_added_cold_damage", "matchers": [{"string": "Adds # to # Cold Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1037193709"], "enchant": ["enchant.stat_1037193709"], "rune": ["rune.stat_1037193709"]}}} +{"ref": "Adds # to # Lightning Damage", "better": 1, "id": "local_minimum_added_lightning_damage", "matchers": [{"string": "Adds # to # Lightning Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3336890334"], "enchant": ["enchant.stat_3336890334"], "rune": ["rune.stat_3336890334"]}}} +{"ref": "Allies in your Presence deal # to # additional Attack Physical Damage", "better": 1, "id": "allies_in_presence_attack_minimum_added_physical_damage", "matchers": [{"string": "Allies in your Presence deal # to # additional Attack Physical Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1574590649"]}}} +{"ref": "Allies in your Presence deal # to # additional Attack Fire Damage", "better": 1, "id": "allies_in_presence_attack_minimum_added_fire_damage", "matchers": [{"string": "Allies in your Presence deal # to # additional Attack Fire Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_849987426"]}}} +{"ref": "Allies in your Presence deal # to # additional Attack Cold Damage", "better": 1, "id": "allies_in_presence_attack_minimum_added_cold_damage", "matchers": [{"string": "Allies in your Presence deal # to # additional Attack Cold Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2347036682"]}}} +{"ref": "Allies in your Presence deal # to # additional Attack Lightning Damage", "better": 1, "id": "allies_in_presence_attack_minimum_added_lightning_damage", "matchers": [{"string": "Allies in your Presence deal # to # additional Attack Lightning Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2854751904"]}}} +{"ref": "No Physical Damage", "better": 1, "id": "local_physical_damage_+%", "matchers": [{"string": "No Physical Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Allies in your Presence deal #% increased Damage", "better": 1, "id": "allies_in_presence_damage_+%", "matchers": [{"string": "Allies in your Presence deal #% increased Damage", "negate": false}, {"string": "Allies in your Presence deal #% reduced Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1798257884"], "enchant": ["enchant.stat_1798257884"]}}} +{"ref": "#% increased Spell Damage", "better": 1, "id": "spell_damage_+%", "matchers": [{"string": "#% increased Spell Damage", "negate": false}, {"string": "#% reduced Spell Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2974417149"], "enchant": ["enchant.stat_2974417149"]}}} +{"ref": "#% increased Fire Damage", "better": 1, "id": "fire_damage_+%", "matchers": [{"string": "#% increased Fire Damage", "negate": false}, {"string": "#% reduced Fire Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3962278098"]}}} +{"ref": "#% increased Cold Damage", "better": 1, "id": "cold_damage_+%", "matchers": [{"string": "#% increased Cold Damage", "negate": false}, {"string": "#% reduced Cold Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3291658075"]}}} +{"ref": "#% increased Lightning Damage", "better": 1, "id": "lightning_damage_+%", "matchers": [{"string": "#% increased Lightning Damage", "negate": false}, {"string": "#% reduced Lightning Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2231156303"]}}} +{"ref": "#% increased Chaos Damage", "better": 1, "id": "chaos_damage_+%", "matchers": [{"string": "#% increased Chaos Damage", "negate": false}, {"string": "#% reduced Chaos Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_736967255"]}}} +{"ref": "#% increased Spell Physical Damage", "better": 1, "id": "spell_physical_damage_+%", "matchers": [{"string": "#% increased Spell Physical Damage", "negate": false}, {"string": "#% reduced Spell Physical Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2768835289"]}}} +{"ref": "#% increased Trap Damage", "better": 1, "id": "trap_damage_+%", "matchers": [{"string": "#% increased Trap Damage", "negate": false}, {"string": "#% reduced Trap Damage", "negate": true}], "trade": {"ids": null}} +{"ref": "+# to Level of all Spell Skills", "better": 1, "id": "spell_skill_gem_level_+", "matchers": [{"string": "# to Level of all Spell Skills", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_124131830"]}}} +{"ref": "+# to Level of all Fire Spell Skills", "better": 1, "id": "fire_spell_skill_gem_level_+", "matchers": [{"string": "# to Level of all Fire Spell Skills", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_591105508"], "enchant": ["enchant.stat_591105508"]}}} +{"ref": "+# to Level of all Cold Spell Skills", "better": 1, "id": "cold_spell_skill_gem_level_+", "matchers": [{"string": "# to Level of all Cold Spell Skills", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2254480358"], "enchant": ["enchant.stat_2254480358"]}}} +{"ref": "+# to Level of all Lightning Spell Skills", "better": 1, "id": "lightning_spell_skill_gem_level_+", "matchers": [{"string": "# to Level of all Lightning Spell Skills", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1545858329"], "enchant": ["enchant.stat_1545858329"]}}} +{"ref": "+# to Level of all Chaos Spell Skills", "better": 1, "id": "chaos_spell_skill_gem_level_+", "matchers": [{"string": "# to Level of all Chaos Spell Skills", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4226189338"], "enchant": ["enchant.stat_4226189338"]}}} +{"ref": "+# to Level of all Physical Spell Skills", "better": 1, "id": "physical_spell_skill_gem_level_+", "matchers": [{"string": "# to Level of all Physical Spell Skills", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1600707273"], "enchant": ["enchant.stat_1600707273"]}}} +{"ref": "+# to Level of all Minion Skills", "better": 1, "id": "minion_skill_gem_level_+", "matchers": [{"string": "# to Level of all Minion Skills", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2162097452"], "enchant": ["enchant.stat_2162097452"]}}} +{"ref": "+# to Level of all Trap Skill Gems", "better": 1, "id": "trap_skill_gem_level_+", "matchers": [{"string": "# to Level of all Trap Skill Gems", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Level of all Melee Skills", "better": 1, "id": "melee_skill_gem_level_+", "matchers": [{"string": "# to Level of all Melee Skills", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_9187492"], "enchant": ["enchant.stat_9187492"]}}} +{"ref": "+# to Level of all Projectile Skills", "better": 1, "id": "projectile_skill_gem_level_+", "matchers": [{"string": "# to Level of all Projectile Skills", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1202301673"]}}} +{"ref": "# Life Regeneration per second", "better": 1, "id": "base_life_regeneration_rate_per_minute", "matchers": [{"string": "# Life Regeneration per second", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3325883026"], "implicit": ["implicit.stat_3325883026"]}}} +{"ref": "Allies in your Presence Regenerate # Life per second", "better": 1, "id": "allies_in_presence_life_regeneration_rate_per_minute", "matchers": [{"string": "Allies in your Presence Regenerate # Life per second", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4010677958"]}}} +{"ref": "#% increased Mana Regeneration Rate", "better": 1, "id": "mana_regeneration_rate_+%", "matchers": [{"string": "#% increased Mana Regeneration Rate", "negate": false}, {"string": "#% reduced Mana Regeneration Rate", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_789117908"], "implicit": ["implicit.stat_789117908"], "enchant": ["enchant.stat_789117908"], "rune": ["rune.stat_789117908"]}}} +{"ref": "Leech #% of Physical Attack Damage as Life", "better": 1, "id": "base_life_leech_from_physical_attack_damage_permyriad", "matchers": [{"string": "Leech #% of Physical Attack Damage as Life", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2557965901"], "enchant": ["enchant.stat_2557965901"]}}} +{"ref": "Leeches #% of Physical Damage as Life", "better": 1, "id": "local_life_leech_from_physical_damage_permyriad", "matchers": [{"string": "Leeches #% of Physical Damage as Life", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_55876295"], "rune": ["rune.stat_55876295"]}}} +{"ref": "Leech #% of Physical Attack Damage as Mana", "better": 1, "id": "base_mana_leech_from_physical_attack_damage_permyriad", "matchers": [{"string": "Leech #% of Physical Attack Damage as Mana", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_707457662"], "enchant": ["enchant.stat_707457662"]}}} +{"ref": "Leeches #% of Physical Damage as Mana", "better": 1, "id": "local_mana_leech_from_physical_damage_permyriad", "matchers": [{"string": "Leeches #% of Physical Damage as Mana", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_669069897"], "rune": ["rune.stat_669069897"]}}} +{"ref": "Gain # Life per Enemy Killed", "better": 1, "id": "base_life_gained_on_enemy_death", "matchers": [{"string": "Gain # Life per Enemy Killed", "negate": false}, {"string": "Lose # Life per Enemy Killed", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3695891184"], "enchant": ["enchant.stat_3695891184"], "rune": ["rune.stat_3695891184"]}}} +{"ref": "Gain # Mana per Enemy Killed", "better": 1, "id": "base_mana_gained_on_enemy_death", "matchers": [{"string": "Gain # Mana per Enemy Killed", "negate": false}, {"string": "Lose # Mana per Enemy Killed", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1368271171"], "enchant": ["enchant.stat_1368271171"], "rune": ["rune.stat_1368271171"]}}} +{"ref": "Gain # Life per Enemy Hit with Attacks", "better": 1, "id": "base_life_gain_per_target", "matchers": [{"string": "Gain # Life per Enemy Hit with Attacks", "negate": false}, {"string": "Lose # Life per Enemy Hit with Attacks", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2797971005"], "implicit": ["implicit.stat_2797971005"]}}} +{"ref": "Grants # Life per Enemy Hit", "better": 1, "id": "local_life_gain_per_target", "matchers": [{"string": "Grants # Life per Enemy Hit", "negate": false}, {"string": "Removes # of your Life per Enemy Hit", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_821021828"]}}} +{"ref": "#% increased Attack Speed", "better": 1, "id": "attack_speed_+%", "matchers": [{"string": "#% increased Attack Speed", "negate": false}, {"string": "#% reduced Attack Speed", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_210067635", "explicit.stat_681332047"], "implicit": ["implicit.stat_681332047"], "enchant": ["enchant.stat_210067635"], "rune": ["rune.stat_210067635"]}}} +{"ref": "#% increased Attack Speed", "better": 1, "id": "local_attack_speed_+%", "matchers": [{"string": "#% increased Attack Speed", "negate": false}, {"string": "#% reduced Attack Speed", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_210067635", "explicit.stat_681332047"], "implicit": ["implicit.stat_681332047"], "enchant": ["enchant.stat_210067635"], "rune": ["rune.stat_210067635"]}}} +{"ref": "Allies in your Presence have #% increased Attack Speed", "better": 1, "id": "allies_in_presence_attack_speed_+%", "matchers": [{"string": "Allies in your Presence have #% increased Attack Speed", "negate": false}, {"string": "Allies in your Presence have #% reduced Attack Speed", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1998951374"], "enchant": ["enchant.stat_1998951374"]}}} +{"ref": "#% increased Cast Speed", "better": 1, "id": "base_cast_speed_+%", "matchers": [{"string": "#% increased Cast Speed", "negate": false}, {"string": "#% reduced Cast Speed", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2891184298"], "implicit": ["implicit.stat_2891184298"], "enchant": ["enchant.stat_2891184298"]}}} +{"ref": "Allies in your Presence have #% increased Cast Speed", "better": 1, "id": "allies_in_presence_cast_speed_+%", "matchers": [{"string": "Allies in your Presence have #% increased Cast Speed", "negate": false}, {"string": "Allies in your Presence have #% reduced Cast Speed", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_289128254"], "enchant": ["enchant.stat_289128254"]}}} +{"ref": "#% increased Trap Throwing Speed", "better": 1, "id": "trap_throwing_speed_+%", "matchers": [{"string": "#% increased Trap Throwing Speed", "negate": false}, {"string": "#% reduced Trap Throwing Speed", "negate": true}], "trade": {"ids": null}} +{"ref": "+# to Accuracy Rating", "better": 1, "id": "accuracy_rating", "matchers": [{"string": "# to Accuracy Rating", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_803737631", "explicit.stat_691932474"], "implicit": ["implicit.stat_803737631"], "enchant": ["enchant.stat_803737631"], "rune": ["rune.stat_691932474"]}}} +{"ref": "+# to Accuracy Rating", "better": 1, "id": "local_accuracy_rating", "matchers": [{"string": "# to Accuracy Rating", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_803737631", "explicit.stat_691932474"], "implicit": ["implicit.stat_803737631"], "enchant": ["enchant.stat_803737631"], "rune": ["rune.stat_691932474"]}}} +{"ref": "Allies in your Presence have +# to Accuracy Rating", "better": 1, "id": "allies_in_presence_accuracy_rating", "matchers": [{"string": "Allies in your Presence have +# to Accuracy Rating", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Critical Hit Chance", "better": 1, "id": "critical_strike_chance_+%", "matchers": [{"string": "#% increased Critical Hit Chance", "negate": false}, {"string": "#% reduced Critical Hit Chance", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_587431675"]}}} +{"ref": "+#% to Critical Hit Chance", "better": 1, "id": "local_critical_strike_chance", "matchers": [{"string": "#% to Critical Hit Chance", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_518292764"]}}} +{"ref": "#% increased Critical Hit Chance for Spells", "better": 1, "id": "spell_critical_strike_chance_+%", "matchers": [{"string": "#% increased Critical Hit Chance for Spells", "negate": false}, {"string": "#% reduced Critical Hit Chance for Spells", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_737908626"], "enchant": ["enchant.stat_737908626"]}}} +{"ref": "#% increased Critical Hit Chance for Attacks", "better": 1, "id": "attack_critical_strike_chance_+%", "matchers": [{"string": "#% increased Critical Hit Chance for Attacks", "negate": false}, {"string": "#% reduced Critical Hit Chance for Attacks", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2194114101"], "implicit": ["implicit.stat_2194114101"]}}} +{"ref": "#% increased Critical Hit Chance with Traps", "better": 1, "id": "trap_critical_strike_chance_+%", "matchers": [{"string": "#% increased Critical Hit Chance with Traps", "negate": false}, {"string": "#% reduced Critical Hit Chance with Traps", "negate": true}], "trade": {"ids": null}} +{"ref": "Allies in your Presence have #% increased Critical Hit Chance", "better": 1, "id": "allies_in_presence_critical_strike_chance_+%", "matchers": [{"string": "Allies in your Presence have #% increased Critical Hit Chance", "negate": false}, {"string": "Allies in your Presence have #% reduced Critical Hit Chance", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1250712710"]}}} +{"ref": "#% increased Critical Damage Bonus", "better": 1, "id": "base_critical_strike_multiplier_+", "matchers": [{"string": "#% increased Critical Damage Bonus", "negate": false}, {"string": "#% reduced Critical Damage Bonus", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3556824919"], "enchant": ["enchant.stat_3556824919"]}}} +{"ref": "+#% to Critical Damage Bonus", "better": 1, "id": "local_critical_strike_multiplier_+", "matchers": [{"string": "#% to Critical Damage Bonus", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2694482655"], "implicit": ["implicit.stat_2694482655"], "enchant": ["enchant.stat_2694482655"], "rune": ["rune.stat_2694482655"]}}} +{"ref": "#% increased Critical Spell Damage Bonus", "better": 1, "id": "base_spell_critical_strike_multiplier_+", "matchers": [{"string": "#% increased Critical Spell Damage Bonus", "negate": false}, {"string": "#% reduced Critical Spell Damage Bonus", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_274716455"]}}} +{"ref": "#% increased Critical Damage Bonus for Attack Damage", "better": 1, "id": "attack_critical_strike_multiplier_+", "matchers": [{"string": "#% increased Critical Damage Bonus for Attack Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3714003708"]}}} +{"ref": "+#% to Critical Damage Bonus with Traps", "better": 1, "id": "trap_critical_strike_multiplier_+", "matchers": [{"string": "#% to Critical Damage Bonus with Traps", "negate": false}], "trade": {"ids": null}} +{"ref": "Allies in your Presence have #% increased Critical Damage Bonus", "better": 1, "id": "allies_in_presence_critical_strike_multiplier_+", "matchers": [{"string": "Allies in your Presence have #% increased Critical Damage Bonus", "negate": false}, {"string": "Allies in your Presence have #% reduced Critical Damage Bonus", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3057012405"], "enchant": ["enchant.stat_3057012405"]}}} +{"ref": "#% increased Rarity of Items found", "better": 1, "id": "base_item_found_rarity_+%", "matchers": [{"string": "#% increased Rarity of Items found", "negate": false}, {"string": "#% reduced Rarity of Items found", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3917489142"], "implicit": ["implicit.stat_3917489142"], "enchant": ["enchant.stat_3917489142"], "rune": ["rune.stat_3917489142"]}}} +{"ref": "#% increased Light Radius", "better": 1, "id": "light_radius_+%", "matchers": [{"string": "#% increased Light Radius", "negate": false}, {"string": "#% reduced Light Radius", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1263695895"]}}} +{"ref": "#% increased Block chance", "better": 1, "id": "local_block_chance_+%", "matchers": [{"string": "#% increased Block chance", "negate": false}, {"string": "#% reduced Block chance", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2481353198", "explicit.stat_4147897060"], "enchant": ["enchant.stat_2481353198"]}}} +{"ref": "+# to Spirit", "better": 1, "id": "base_spirit_from_equipment", "matchers": [{"string": "# to Spirit", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3981240776"], "implicit": ["implicit.stat_3981240776"], "enchant": ["enchant.stat_3981240776"], "rune": ["rune.stat_3981240776"]}}} +{"ref": "#% increased Spirit", "better": 1, "id": "local_spirit_+%", "matchers": [{"string": "#% increased Spirit", "negate": false}, {"string": "#% reduced Spirit", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3984865854"], "enchant": ["enchant.stat_3984865854"]}}} +{"ref": "#% increased Bleeding Duration on you", "better": 1, "id": "self_bleed_duration_+%", "matchers": [{"string": "#% increased Bleeding Duration on you", "negate": false}, {"string": "#% reduced Bleeding Duration on you", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1692879867"]}}} +{"ref": "#% increased Poison Duration on you", "better": 1, "id": "self_poison_duration_+%", "matchers": [{"string": "#% increased Poison Duration on you", "negate": false}, {"string": "#% reduced Poison Duration on you", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3301100256"]}}} +{"ref": "#% reduced Ignite Duration on you", "better": 1, "id": "base_self_ignite_duration_-%", "matchers": [{"string": "#% reduced Ignite Duration on you", "negate": false}, {"string": "#% increased Ignite Duration on you", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_986397080"]}}} +{"ref": "#% reduced Shock duration on you", "better": 1, "id": "base_self_shock_duration_-%", "matchers": [{"string": "#% reduced Shock duration on you", "negate": false}, {"string": "#% increased Shock duration on you", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_99927264"]}}} +{"ref": "#% reduced Chill Duration on you", "better": 1, "id": "base_self_chill_duration_-%", "matchers": [{"string": "#% reduced Chill Duration on you", "negate": false}, {"string": "#% increased Chill Duration on you", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1874553720"]}}} +{"ref": "#% reduced Freeze Duration on you", "better": 1, "id": "base_self_freeze_duration_-%", "matchers": [{"string": "#% reduced Freeze Duration on you", "negate": false}, {"string": "#% increased Freeze Duration on you", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2160282525"]}}} +{"ref": "Hits against you have #% reduced Critical Damage Bonus", "better": 1, "id": "base_self_critical_strike_multiplier_-%", "matchers": [{"string": "Hits against you have #% reduced Critical Damage Bonus", "negate": false}, {"string": "Hits against you have #% increased Critical Damage Bonus", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3855016469"], "rune": ["rune.stat_3855016469"], "sanctum": ["sanctum.stat_2948404493"]}}} +{"ref": "#% additional Physical Damage Reduction", "better": 1, "id": "base_additional_physical_damage_reduction_%", "matchers": [{"string": "#% additional Physical Damage Reduction", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3771516363"], "enchant": ["enchant.stat_3771516363"], "sanctum": ["sanctum.stat_3470883829"]}}} +{"ref": "+#% to Maximum Fire Resistance", "better": 1, "id": "base_maximum_fire_damage_resistance_%", "matchers": [{"string": "#% to Maximum Fire Resistance", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4095671657"], "enchant": ["enchant.stat_4095671657"], "rune": ["rune.stat_4095671657"]}}} +{"ref": "+#% to Maximum Cold Resistance", "better": 1, "id": "base_maximum_cold_damage_resistance_%", "matchers": [{"string": "#% to Maximum Cold Resistance", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3676141501"], "enchant": ["enchant.stat_3676141501"], "rune": ["rune.stat_3676141501"]}}} +{"ref": "+#% to Maximum Lightning Resistance", "better": 1, "id": "base_maximum_lightning_damage_resistance_%", "matchers": [{"string": "#% to Maximum Lightning Resistance", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1011760251"], "enchant": ["enchant.stat_1011760251"], "rune": ["rune.stat_1011760251"]}}} +{"ref": "+#% to Maximum Chaos Resistance", "better": 1, "id": "base_maximum_chaos_damage_resistance_%", "matchers": [{"string": "#% to Maximum Chaos Resistance", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1301765461"]}}} +{"ref": "+#% to all Maximum Elemental Resistances", "better": 1, "id": "additional_maximum_all_elemental_resistances_%", "matchers": [{"string": "#% to all Maximum Elemental Resistances", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1978899297"], "implicit": ["implicit.stat_1978899297"], "enchant": ["enchant.stat_1978899297"]}}} +{"ref": "#% increased Energy Shield Recharge Rate", "better": 1, "id": "energy_shield_recharge_rate_+%", "matchers": [{"string": "#% increased Energy Shield Recharge Rate", "negate": false}, {"string": "#% reduced Energy Shield Recharge Rate", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2339757871"]}}} +{"ref": "#% chance to Pierce an Enemy", "better": 1, "id": "base_chance_to_pierce_%", "matchers": [{"string": "#% chance to Pierce an Enemy", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2321178454"], "implicit": ["implicit.stat_2321178454"], "enchant": ["enchant.stat_2321178454"]}}} +{"ref": "Bow Attacks fire an additional Arrow", "better": 1, "id": "number_of_additional_arrows", "matchers": [{"string": "Bow Attacks fire an additional Arrow", "negate": false}, {"string": "Bow Attacks fire # additional Arrows", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3885405204"], "implicit": ["implicit.stat_3885405204"], "enchant": ["enchant.stat_3885405204"]}}} +{"ref": "Loads an additional bolt", "better": 1, "id": "base_number_of_crossbow_bolts", "matchers": [{"string": "Loads an additional bolt", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1039380318"], "implicit": ["implicit.stat_1039380318"], "enchant": ["enchant.stat_1039380318"]}}} +{"ref": "#% increased Flask Life Recovery rate", "better": 1, "id": "flask_life_recovery_rate_+%", "matchers": [{"string": "#% increased Flask Life Recovery rate", "negate": false}, {"string": "#% reduced Flask Life Recovery rate", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_51994685"]}}} +{"ref": "#% increased Flask Mana Recovery rate", "better": 1, "id": "flask_mana_recovery_rate_+%", "matchers": [{"string": "#% increased Flask Mana Recovery rate", "negate": false}, {"string": "#% reduced Flask Mana Recovery rate", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1412217137"]}}} +{"ref": "#% increased Charm Effect Duration", "better": 1, "id": "charm_duration_+%", "matchers": [{"string": "#% increased Charm Effect Duration", "negate": false}, {"string": "#% reduced Charm Effect Duration", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1389754388"], "implicit": ["implicit.stat_1389754388"]}}} +{"ref": "#% increased Flask Charges gained", "better": 1, "id": "flask_charges_gained_+%", "matchers": [{"string": "#% increased Flask Charges gained", "negate": false}, {"string": "#% reduced Flask Charges gained", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1836676211"], "implicit": ["implicit.stat_1836676211"]}}} +{"ref": "#% increased Flask Charges used", "better": 1, "id": "flask_charges_used_+%", "matchers": [{"string": "#% increased Flask Charges used", "negate": false}, {"string": "#% reduced Flask Charges used", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_644456512"], "implicit": ["implicit.stat_644456512"]}}} +{"ref": "#% increased Charm Charges gained", "better": 1, "id": "charm_charges_gained_+%", "matchers": [{"string": "#% increased Charm Charges gained", "negate": false}, {"string": "#% reduced Charm Charges gained", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3585532255"], "implicit": ["implicit.stat_3585532255"], "rune": ["rune.stat_3585532255"]}}} +{"ref": "#% increased Charm Charges used", "better": 1, "id": "charm_charges_used_+%", "matchers": [{"string": "#% increased Charm Charges used", "negate": false}, {"string": "#% reduced Charm Charges used", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1570770415"], "implicit": ["implicit.stat_1570770415"]}}} +{"ref": "+# Charm Slot", "better": 1, "id": "local_charm_slots", "matchers": [{"string": "# Charm Slot", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1416292992"]}}} +{"ref": "#% increased chance to Ignite", "better": 1, "id": "ignite_chance_+%", "matchers": [{"string": "#% increased chance to Ignite", "negate": false}, {"string": "#% reduced chance to Ignite", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2968503605"], "enchant": ["enchant.stat_2968503605"], "rune": ["rune.stat_2968503605"]}}} +{"ref": "#% increased Freeze Buildup", "better": 1, "id": "hit_damage_freeze_multiplier_+%", "matchers": [{"string": "#% increased Freeze Buildup", "negate": false}, {"string": "#% reduced Freeze Buildup", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_473429811"], "enchant": ["enchant.stat_473429811"], "rune": ["rune.stat_473429811"]}}} +{"ref": "#% increased chance to Shock", "better": 1, "id": "shock_chance_+%", "matchers": [{"string": "#% increased chance to Shock", "negate": false}, {"string": "#% reduced chance to Shock", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_293638271"], "enchant": ["enchant.stat_293638271"], "rune": ["rune.stat_293638271"]}}} +{"ref": "#% increased Projectile Speed", "better": 1, "id": "base_projectile_speed_+%", "matchers": [{"string": "#% increased Projectile Speed", "negate": false}, {"string": "#% reduced Projectile Speed", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3759663284"]}}} +{"ref": "#% of Damage taken Recouped as Life", "better": 1, "id": "damage_taken_goes_to_life_over_4_seconds_%", "matchers": [{"string": "#% of Damage taken Recouped as Life", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1444556985"], "enchant": ["enchant.stat_1444556985"]}}} +{"ref": "#% of Damage taken Recouped as Mana", "better": 1, "id": "damage_taken_goes_to_mana_%", "matchers": [{"string": "#% of Damage taken Recouped as Mana", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_472520716"], "enchant": ["enchant.stat_472520716"]}}} +{"ref": "#% increased Stun Duration", "better": 1, "id": "local_base_stun_duration_+%", "matchers": [{"string": "#% increased Stun Duration", "negate": false}, {"string": "#% reduced Stun Duration", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_748522257"]}}} +{"ref": "Causes #% increased Stun Buildup", "better": 1, "id": "local_hit_damage_stun_multiplier_+%", "matchers": [{"string": "Causes #% increased Stun Buildup", "negate": false}, {"string": "Causes #% reduced Stun Buildup", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_791928121"], "implicit": ["implicit.stat_791928121"], "enchant": ["enchant.stat_791928121"], "rune": ["rune.stat_791928121"]}}} +{"ref": "#% increased Elemental Damage with Attacks", "better": 1, "id": "elemental_damage_with_attack_skills_+%", "matchers": [{"string": "#% increased Elemental Damage with Attacks", "negate": false}, {"string": "#% reduced Elemental Damage with Attacks", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_387439868"], "enchant": ["enchant.stat_387439868"], "rune": ["rune.stat_387439868"]}}} +{"ref": "Gain #% of Damage as Extra Fire Damage", "better": 1, "id": "non_skill_base_all_damage_%_to_gain_as_fire", "matchers": [{"string": "Gain #% of Damage as Extra Fire Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3015669065"]}}} +{"ref": "Gain #% of Damage as Extra Cold Damage", "better": 1, "id": "non_skill_base_all_damage_%_to_gain_as_cold", "matchers": [{"string": "Gain #% of Damage as Extra Cold Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2505884597"]}}} +{"ref": "Gain #% of Damage as Extra Lightning Damage", "better": 1, "id": "non_skill_base_all_damage_%_to_gain_as_lightning", "matchers": [{"string": "Gain #% of Damage as Extra Lightning Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3278136794"]}}} +{"ref": "#% increased Damage with Bow Skills", "better": 1, "id": "damage_+%_with_bow_skills", "matchers": [{"string": "#% increased Damage with Bow Skills", "negate": false}, {"string": "#% reduced Damage with Bow Skills", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1241625305"]}}} +{"ref": "#% increased Presence Area of Effect", "better": 1, "id": "presence_area_+%", "matchers": [{"string": "#% increased Presence Area of Effect", "negate": false}, {"string": "#% reduced Presence Area of Effect", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_101878827"], "enchant": ["enchant.stat_101878827"]}}} +{"ref": "Minions have #% increased maximum Life", "better": 1, "id": "minion_maximum_life_+%", "matchers": [{"string": "Minions have #% increased maximum Life", "negate": false}, {"string": "Minions have #% reduced maximum Life", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_770672621"]}}} +{"ref": "#% increased Trap Trigger Area of Effect", "better": 1, "id": "trap_trigger_radius_+%", "matchers": [{"string": "#% increased Trap Trigger Area of Effect", "negate": false}, {"string": "#% reduced Trap Trigger Area of Effect", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Charges gained", "better": 1, "id": "local_charges_added_+%", "matchers": [{"string": "#% increased Charges gained", "negate": false}, {"string": "#% reduced Charges gained", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3196823591"]}}} +{"ref": "#% increased Charges", "better": 1, "id": "local_max_charges_+%", "matchers": [{"string": "#% increased Charges", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1366840608"]}}} +{"ref": "#% increased Charges per use", "better": 1, "id": "local_charges_used_+%", "matchers": [{"string": "#% increased Charges per use", "negate": false}, {"string": "#% reduced Charges per use", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_388617051"]}}} +{"ref": "#% Chance to gain a Charge when you Kill an Enemy", "better": 1, "id": "local_%_chance_to_gain_flask_charge_on_kill", "matchers": [{"string": "#% Chance to gain a Charge when you Kill an Enemy", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_828533480"]}}} +{"ref": "Gains # Charges per Second", "better": 1, "id": "local_flask_gain_X_charges_every_minute", "matchers": [{"string": "Gains # Charges per Second", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1873752457"]}}} +{"ref": "#% increased Recovery rate", "better": 1, "id": "local_flask_recovery_speed_+%", "matchers": [{"string": "#% increased Recovery rate", "negate": false}, {"string": "#% reduced Recovery rate", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_173226756"]}}} +{"ref": "#% increased Amount Recovered", "better": 1, "id": "local_flask_amount_to_recover_+%", "matchers": [{"string": "#% increased Amount Recovered", "negate": false}, {"string": "#% reduced Amount Recovered", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_700317374"]}}} +{"ref": "#% more Recovery if used while on Low Life", "better": 1, "id": "local_flask_amount_to_recover_+%_when_on_low_life", "matchers": [{"string": "#% more Recovery if used while on Low Life", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_886931978"]}}} +{"ref": "#% more Recovery if used while on Low Mana", "better": 1, "id": "local_flask_amount_to_recover_+%_when_on_low_mana", "matchers": [{"string": "#% more Recovery if used while on Low Mana", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3276224428"]}}} +{"ref": "#% increased Life Recovered", "better": 1, "id": "local_flask_life_to_recover_+%", "matchers": [{"string": "#% increased Life Recovered", "negate": false}, {"string": "#% reduced Life Recovered", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1261982764"]}}} +{"ref": "#% increased Mana Recovered", "better": 1, "id": "local_flask_mana_to_recover_+%", "matchers": [{"string": "#% increased Mana Recovered", "negate": false}, {"string": "#% reduced Mana Recovered", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1811130680"]}}} +{"ref": "#% of Recovery applied Instantly", "better": 1, "id": "local_flask_recovery_amount_%_to_recover_instantly", "matchers": [{"string": "#% of Recovery applied Instantly", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2503377690"]}}} +{"ref": "Instant Recovery", "better": 1, "id": "local_flask_recovers_instantly", "matchers": [{"string": "Instant Recovery", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1526933524"]}}} +{"ref": "Grants #% of Life Recovery to Minions", "better": 1, "id": "local_flask_minion_heal_%", "matchers": [{"string": "Grants #% of Life Recovery to Minions", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2416869319"]}}} +{"ref": "#% increased Duration", "better": 1, "id": "local_charm_duration_+%", "matchers": [{"string": "#% increased Duration", "negate": false}, {"string": "#% reduced Duration", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2541588185", "explicit.stat_1256719186"]}}} +{"ref": "Recover # Life when Used", "better": 1, "id": "charm_recover_X_life_when_used", "matchers": [{"string": "Recover # Life when Used", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2365392475"]}}} +{"ref": "Recover # Mana when Used", "better": 1, "id": "charm_recover_X_mana_when_used", "matchers": [{"string": "Recover # Mana when Used", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1120862500"]}}} +{"ref": "Gain # Guard during Effect", "better": 1, "id": "charm_gain_X_guard_for_duration", "matchers": [{"string": "Gain # Guard during Effect", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2676834156"]}}} +{"ref": "#% increased Accuracy Rating", "better": 1, "id": "accuracy_rating_+%", "matchers": [{"string": "#% increased Accuracy Rating", "negate": false}, {"string": "#% reduced Accuracy Rating", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_624954515"], "implicit": ["implicit.stat_624954515"]}}} +{"ref": "#% reduced Enemy Stun Threshold", "better": 1, "id": "base_stun_threshold_reduction_+%", "matchers": [{"string": "#% reduced Enemy Stun Threshold", "negate": false}, {"string": "#% increased Enemy Stun Threshold", "negate": true}], "trade": {"ids": {"implicit": ["implicit.stat_1443060084"]}}} +{"ref": "#% chance to Poison on Hit with Attacks", "better": 1, "id": "chance_to_poison_on_hit_with_attacks_%", "matchers": [{"string": "#% chance to Poison on Hit with Attacks", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_3954735777"]}}} +{"ref": "Attacks cannot cause Bleeding", "better": 1, "id": "bleed_on_hit_with_attacks_%", "matchers": [{"string": "Attacks cannot cause Bleeding", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Arrow Speed", "better": 1, "id": "base_arrow_speed_+%", "matchers": [{"string": "#% increased Arrow Speed", "negate": false}, {"string": "#% reduced Arrow Speed", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1207554355"], "implicit": ["implicit.stat_1207554355"]}}} +{"ref": "Grants 1 additional Skill Slot", "better": 1, "id": "local_item_additional_skill_slots", "matchers": [{"string": "Grants 1 additional Skill Slot", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_958696139"]}}} +{"ref": "Maximum Quality is #%", "better": 1, "id": "local_maximum_quality_is_%", "matchers": [{"string": "Maximum Quality is #%", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_275498888"]}}} +{"ref": "#% increased Life Recovery from Flasks", "better": 1, "id": "flask_life_to_recover_+%", "matchers": [{"string": "#% increased Life Recovery from Flasks", "negate": false}, {"string": "#% reduced Life Recovery from Flasks", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_821241191"], "implicit": ["implicit.stat_821241191"]}}} +{"ref": "#% increased Mana Recovery from Flasks", "better": 1, "id": "flask_mana_to_recover_+%", "matchers": [{"string": "#% increased Mana Recovery from Flasks", "negate": false}, {"string": "#% reduced Mana Recovery from Flasks", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2222186378"], "implicit": ["implicit.stat_2222186378"]}}} +{"ref": "#% increased Stun Threshold", "better": 1, "id": "stun_threshold_+%", "matchers": [{"string": "#% increased Stun Threshold", "negate": false}, {"string": "#% reduced Stun Threshold", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_680068163"], "implicit": ["implicit.stat_680068163"], "enchant": ["enchant.stat_680068163"]}}} +{"ref": "#% of Flask Recovery applied Instantly", "better": 1, "id": "flask_recovery_amount_%_to_recover_instantly", "matchers": [{"string": "#% of Flask Recovery applied Instantly", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_462041840"]}}} +{"ref": "Flasks gain # charges per Second", "better": 1, "id": "generate_x_charges_for_any_flask_per_minute", "matchers": [{"string": "Flasks gain # charges per Second", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_731781020"]}}} +{"ref": "Used when you become Frozen", "better": 1, "id": "local_flask_use_on_affected_by_freeze", "matchers": [{"string": "Used when you become Frozen", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_1691862754"]}}} +{"ref": "Used when you start Bleeding", "better": 1, "id": "local_flask_use_on_affected_by_bleed", "matchers": [{"string": "Used when you start Bleeding", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_3676540188"]}}} +{"ref": "Used when you become Poisoned", "better": 1, "id": "local_flask_use_on_affected_by_poison", "matchers": [{"string": "Used when you become Poisoned", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_1412682799"]}}} +{"ref": "Used when you become Ignited", "better": 1, "id": "local_flask_use_on_affected_by_ignite", "matchers": [{"string": "Used when you become Ignited", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_585126960"]}}} +{"ref": "Used when you become Shocked", "better": 1, "id": "local_flask_use_on_affected_by_shock", "matchers": [{"string": "Used when you become Shocked", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_3699444296"]}}} +{"ref": "Used when you become Stunned", "better": 1, "id": "local_flask_use_on_stunned", "matchers": [{"string": "Used when you become Stunned", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_1810482573"]}}} +{"ref": "Used when you are affected by a Slow", "better": 1, "id": "local_flask_use_on_affected_by_slow", "matchers": [{"string": "Used when you are affected by a Slow", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_2778646494"]}}} +{"ref": "Used when you take Fire damage from a Hit", "better": 1, "id": "local_flask_use_on_fire_damage_taken", "matchers": [{"string": "Used when you take Fire damage from a Hit", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_3854901951"]}}} +{"ref": "Used when you take Cold damage from a Hit", "better": 1, "id": "local_flask_use_on_cold_damage_taken", "matchers": [{"string": "Used when you take Cold damage from a Hit", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_2994271459"]}}} +{"ref": "Used when you take Lightning damage from a Hit", "better": 1, "id": "local_flask_use_on_lightning_damage_taken", "matchers": [{"string": "Used when you take Lightning damage from a Hit", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_2016937536"]}}} +{"ref": "Used when you take Chaos damage from a Hit", "better": 1, "id": "local_flask_use_on_chaos_damage_taken", "matchers": [{"string": "Used when you take Chaos damage from a Hit", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_3310778564"]}}} +{"ref": "Used when you Kill a Rare or Unique Enemy", "better": 1, "id": "local_flask_use_on_killing_rare_or_unique_enemy", "matchers": [{"string": "Used when you Kill a Rare or Unique Enemy", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_4010341289"]}}} +{"ref": "Regenerate #% of Life per second", "better": 1, "id": "life_regeneration_rate_per_minute_%", "matchers": [{"string": "Regenerate #% of Life per second", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_836936635"], "implicit": ["implicit.stat_836936635"], "enchant": ["enchant.stat_836936635"], "rune": ["rune.stat_836936635"]}}} +{"ref": "#% increased Elemental Ailment Threshold", "better": 1, "id": "ailment_threshold_+%", "matchers": [{"string": "#% increased Elemental Ailment Threshold", "negate": false}, {"string": "#% reduced Elemental Ailment Threshold", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3544800472"], "implicit": ["implicit.stat_3544800472"], "rune": ["rune.stat_3544800472"]}}} +{"ref": "#% increased Slowing Potency of Debuffs on You", "better": 1, "id": "base_slow_potency_+%", "matchers": [{"string": "#% increased Slowing Potency of Debuffs on You", "negate": false}, {"string": "#% reduced Slowing Potency of Debuffs on You", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_924253255"], "implicit": ["implicit.stat_924253255"], "enchant": ["enchant.stat_924253255"], "rune": ["rune.stat_924253255"], "sanctum": ["sanctum.stat_978111083"]}}} +{"ref": "#% faster start of Energy Shield Recharge", "better": 1, "id": "energy_shield_delay_-%", "matchers": [{"string": "#% faster start of Energy Shield Recharge", "negate": false}, {"string": "#% slower start of Energy Shield Recharge", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1782086450"], "implicit": ["implicit.stat_1782086450"], "enchant": ["enchant.stat_1782086450"]}}} +{"ref": "Gain # Rage on Hit", "better": 1, "id": "local_gain_X_rage_on_hit", "matchers": [{"string": "Gain # Rage on Hit", "negate": false}], "trade": {"ids": {"enchant": ["enchant.stat_1725749947"]}}} +{"ref": "Has no Accuracy Penalty from Range", "better": 1, "id": "local_weapon_accuracy_is_unaffected_by_distance", "matchers": [{"string": "Has no Accuracy Penalty from Range", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Damage taken", "better": 1, "id": "base_damage_taken_+%", "matchers": [{"string": "#% increased Damage taken", "negate": false}, {"string": "#% reduced Damage taken", "negate": true}], "trade": {"ids": null}} +{"ref": "Culling Strike", "better": 1, "id": "local_culling_strike", "matchers": [{"string": "Culling Strike", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2524254339"]}}} +{"ref": "#% chance to cause Bleeding on Hit", "better": 1, "id": "local_chance_to_bleed_on_hit_%", "matchers": [{"string": "#% chance to cause Bleeding on Hit", "negate": false}], "trade": {"ids": {"enchant": ["enchant.stat_1519615863"], "rune": ["rune.stat_1519615863"]}}} +{"ref": "Causes Daze buildup equal to #% of Damage dealt", "better": 1, "id": "local_weapon_damage_%_to_gain_as_daze_build_up", "matchers": [{"string": "Causes Daze buildup equal to #% of Damage dealt", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1559935218"], "implicit": ["implicit.stat_1559935218"]}}} +{"ref": "Always Hits", "better": 1, "id": "local_always_hit", "matchers": [{"string": "Always Hits", "negate": false}], "trade": {"ids": null}} +{"ref": "Strikes deal Splash damage to targets within 1.8 metres", "better": 1, "id": "melee_splash", "matchers": [{"string": "Strikes deal Splash damage to targets within 1.8 metres", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_3675300253"]}}} +{"ref": "Causes Enemies to Explode on Critical kill, for #% of their Life as Physical Damage", "better": 1, "id": "local_explode_on_kill_with_crit_%_physical_damage_to_deal", "matchers": [{"string": "Causes Enemies to Explode on Critical kill, for #% of their Life as Physical Damage", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_1541903247"]}}} +{"ref": "Crushes Enemies on Hit", "better": 1, "id": "local_crush_on_hit", "matchers": [{"string": "Crushes Enemies on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Maim on Hit", "better": 1, "id": "local_maim_on_hit_%", "matchers": [{"string": "#% chance to Maim on Hit", "negate": false}], "trade": {"ids": {"enchant": ["enchant.stat_2763429652"]}}} +{"ref": "#% increased Projectile Speed when thrown", "better": 1, "id": "local_projectile_speed_+%", "matchers": [{"string": "#% increased Projectile Speed when thrown", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_535217483"]}}} +{"ref": "Uses both hand slots", "better": 1, "id": "local_weapon_uses_both_hands", "matchers": [{"string": "Uses both hand slots", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Blind Enemies on hit", "better": 1, "id": "local_chance_to_blind_on_hit_%", "matchers": [{"string": "#% chance to Blind Enemies on hit", "negate": false}], "trade": {"ids": {"enchant": ["enchant.stat_2301191210"]}}} +{"ref": "#% chance to Poison on Hit", "better": 1, "id": "local_poison_on_hit_%", "matchers": [{"string": "#% chance to Poison on Hit", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_795138349"], "enchant": ["enchant.stat_3885634897"], "rune": ["rune.stat_3885634897"]}}} +{"ref": "Grants # Mana per Enemy Hit", "better": 1, "id": "local_mana_gain_per_target", "matchers": [{"string": "Grants # Mana per Enemy Hit", "negate": false}, {"string": "Removes # of your Mana per Enemy Hit", "negate": true}], "trade": {"ids": null}} +{"ref": "#% of Spell Mana Cost Converted to Life Cost", "better": 1, "id": "spells_cost_life_instead_of_mana_%", "matchers": [{"string": "#% of Spell Mana Cost Converted to Life Cost", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3544050945"]}}} +{"ref": "Breaks # Armour on Critical Hit", "better": 1, "id": "local_apply_X_armour_break_on_crit", "matchers": [{"string": "Breaks # Armour on Critical Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Unblockable", "better": 1, "id": "local_attacks_cannot_be_blocked", "matchers": [{"string": "Unblockable", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Range", "better": 1, "id": "local_+%_weapon_range", "matchers": [{"string": "#% increased Range", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_548198834"], "enchant": ["enchant.stat_548198834"]}}} +{"ref": "+#% to Block chance", "better": 1, "id": "additional_block_%", "matchers": [{"string": "#% to Block chance", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1702195217"], "implicit": ["implicit.stat_1702195217"]}}} +{"ref": "#% chance to Chain an additional time", "better": 1, "id": "local_additional_attack_chain_chance_%", "matchers": [{"string": "#% chance to Chain an additional time", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_1028592286"]}}} +{"ref": "#% increased Projectile Range", "better": 1, "id": "projectile_attack_range_+%", "matchers": [{"string": "#% increased Projectile Range", "negate": false}, {"string": "#% reduced Projectile Range", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Bolt Speed", "better": 1, "id": "projectile_speed_+%_with_crossbow_skills", "matchers": [{"string": "#% increased Bolt Speed", "negate": false}, {"string": "#% reduced Bolt Speed", "negate": true}], "trade": {"ids": {"implicit": ["implicit.stat_1803308202"]}}} +{"ref": "Grenade Skills Fire an additional Projectile", "better": 1, "id": "grenade_skill_number_of_additional_projectiles", "matchers": [{"string": "Grenade Skills Fire an additional Projectile", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_1980802737"]}}} +{"ref": "+# to maximum number of Summoned Ballista Totems", "better": 1, "id": "additional_ballista_totems_allowed", "matchers": [{"string": "# to maximum number of Summoned Ballista Totems", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Cooldown Recovery Rate for throwing Traps", "better": 1, "id": "placing_traps_cooldown_recovery_+%", "matchers": [{"string": "#% increased Cooldown Recovery Rate for throwing Traps", "negate": false}, {"string": "#% reduced Cooldown Recovery Rate for throwing Traps", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased chance to inflict Ailments", "better": 1, "id": "ailment_chance_+%", "matchers": [{"string": "#% increased chance to inflict Ailments", "negate": false}, {"string": "#% reduced chance to inflict Ailments", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1772247089"]}}} +{"ref": "#% increased Magnitude of Ailments you inflict", "better": 1, "id": "ailment_effect_+%", "matchers": [{"string": "#% increased Magnitude of Ailments you inflict", "negate": false}, {"string": "#% reduced Magnitude of Ailments you inflict", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1303248024"]}}} +{"ref": "#% increased Area of Effect", "better": 1, "id": "base_skill_area_of_effect_+%", "matchers": [{"string": "#% increased Area of Effect", "negate": false}, {"string": "#% reduced Area of Effect", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_280731498"], "enchant": ["enchant.stat_280731498"]}}} +{"ref": "Break #% increased Armour", "better": 1, "id": "armour_break_amount_+%", "matchers": [{"string": "Break #% increased Armour", "negate": false}, {"string": "Break #% reduced Armour", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1776411443"], "enchant": ["enchant.stat_1776411443"]}}} +{"ref": "#% increased Armour Break Duration", "better": 1, "id": "armour_break_duration_+%", "matchers": [{"string": "#% increased Armour Break Duration", "negate": false}, {"string": "#% reduced Armour Break Duration", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2215233444"]}}} +{"ref": "#% increased Attack Damage", "better": 1, "id": "attack_damage_+%", "matchers": [{"string": "#% increased Attack Damage", "negate": false}, {"string": "#% reduced Attack Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2843214518"]}}} +{"ref": "#% increased Effect of Auras from your Skills", "better": 1, "id": "aura_effect_+%", "matchers": [{"string": "#% increased Effect of Auras from your Skills", "negate": false}, {"string": "#% reduced Effect of Auras from your Skills", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_315791320"]}}} +{"ref": "#% increased Damage with Axes", "better": 1, "id": "axe_damage_+%", "matchers": [{"string": "#% increased Damage with Axes", "negate": false}, {"string": "#% reduced Damage with Axes", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Attack Speed with Axes", "better": 1, "id": "axe_attack_speed_+%", "matchers": [{"string": "#% increased Attack Speed with Axes", "negate": false}, {"string": "#% reduced Attack Speed with Axes", "negate": true}], "trade": {"ids": null}} +{"ref": "#% chance to inflict Bleeding on Hit", "better": 1, "id": "base_chance_to_inflict_bleeding_%", "matchers": [{"string": "#% chance to inflict Bleeding on Hit", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2174054121"]}}} +{"ref": "#% increased Bleeding Duration", "better": 1, "id": "base_bleed_duration_+%", "matchers": [{"string": "#% increased Bleeding Duration", "negate": false}, {"string": "#% reduced Bleeding Duration", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1459321413"]}}} +{"ref": "#% increased Blind Effect", "better": 1, "id": "blind_effect_+%", "matchers": [{"string": "#% increased Blind Effect", "negate": false}, {"string": "#% reduced Blind Effect", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1585769763"]}}} +{"ref": "#% chance to Blind Enemies on Hit with Attacks", "better": 1, "id": "attacks_chance_to_blind_on_hit_%", "matchers": [{"string": "#% chance to Blind Enemies on Hit with Attacks", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_318953428"]}}} +{"ref": "#% increased Block chance", "better": 1, "id": "block_chance_+%", "matchers": [{"string": "#% increased Block chance", "negate": false}, {"string": "#% reduced Block chance", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2481353198", "explicit.stat_4147897060"], "enchant": ["enchant.stat_2481353198"]}}} +{"ref": "#% increased Damage with Hits against Rare and Unique Enemies", "better": 1, "id": "damage_+%_to_rare_and_unique_enemies", "matchers": [{"string": "#% increased Damage with Hits against Rare and Unique Enemies", "negate": false}, {"string": "#% reduced Damage with Hits against Rare and Unique Enemies", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1852872083"]}}} +{"ref": "#% increased Accuracy Rating with Bows", "better": 1, "id": "bow_accuracy_rating_+%", "matchers": [{"string": "#% increased Accuracy Rating with Bows", "negate": false}, {"string": "#% reduced Accuracy Rating with Bows", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_169946467"]}}} +{"ref": "#% increased Damage with Bows", "better": 1, "id": "bow_damage_+%", "matchers": [{"string": "#% increased Damage with Bows", "negate": false}, {"string": "#% reduced Damage with Bows", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_4188894176"]}}} +{"ref": "#% increased Attack Speed with Bows", "better": 1, "id": "bow_attack_speed_+%", "matchers": [{"string": "#% increased Attack Speed with Bows", "negate": false}, {"string": "#% reduced Attack Speed with Bows", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3759735052"]}}} +{"ref": "Projectiles have #% chance to Chain an additional time from terrain", "better": 1, "id": "projectile_chance_to_chain_1_extra_time_from_terrain_%", "matchers": [{"string": "Projectiles have #% chance to Chain an additional time from terrain", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4081947835"], "enchant": ["enchant.stat_4081947835"]}}} +{"ref": "#% increased Damage while you have an active Charm", "better": 1, "id": "damage_+%_while_using_charm", "matchers": [{"string": "#% increased Damage while you have an active Charm", "negate": false}, {"string": "#% reduced Damage while you have an active Charm", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_627767961"]}}} +{"ref": "#% increased Chill Duration on Enemies", "better": 1, "id": "chill_duration_+%", "matchers": [{"string": "#% increased Chill Duration on Enemies", "negate": false}, {"string": "#% reduced Chill Duration on Enemies", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3485067555"]}}} +{"ref": "Damage Penetrates #% Cold Resistance", "better": 1, "id": "base_reduce_enemy_cold_resistance_%", "matchers": [{"string": "Damage Penetrates #% Cold Resistance", "negate": false}, {"string": "Your Hits treat Cold Resistance as #% higher than actual value", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3417711605"], "enchant": ["enchant.stat_3417711605"]}}} +{"ref": "#% increased Cooldown Recovery Rate", "better": 1, "id": "base_cooldown_speed_+%", "matchers": [{"string": "#% increased Cooldown Recovery Rate", "negate": false}, {"string": "#% reduced Cooldown Recovery Rate", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1004011302"], "enchant": ["enchant.stat_1004011302"]}}} +{"ref": "#% increased Damage if you have Consumed a Corpse Recently", "better": 1, "id": "damage_+%_if_you_have_consumed_a_corpse_recently", "matchers": [{"string": "#% increased Damage if you have Consumed a Corpse Recently", "negate": false}, {"string": "#% reduced Damage if you have Consumed a Corpse Recently", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2118708619"]}}} +{"ref": "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", "better": 1, "id": "critical_hit_damaging_ailment_effect_+%", "matchers": [{"string": "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", "negate": false}, {"string": "#% reduced Magnitude of Damaging Ailments you inflict with Critical Hits", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_440490623"]}}} +{"ref": "#% increased Damage with Crossbows", "better": 1, "id": "crossbow_damage_+%", "matchers": [{"string": "#% increased Damage with Crossbows", "negate": false}, {"string": "#% reduced Damage with Crossbows", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_427684353"]}}} +{"ref": "#% increased Crossbow Reload Speed", "better": 1, "id": "reload_speed_+%", "matchers": [{"string": "#% increased Crossbow Reload Speed", "negate": false}, {"string": "#% reduced Crossbow Reload Speed", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3192728503"]}}} +{"ref": "#% increased Attack Speed with Crossbows", "better": 1, "id": "crossbow_attack_speed_+%", "matchers": [{"string": "#% increased Attack Speed with Crossbows", "negate": false}, {"string": "#% reduced Attack Speed with Crossbows", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1135928777"]}}} +{"ref": "#% increased Area of Effect of Curses", "better": 1, "id": "curse_area_of_effect_+%", "matchers": [{"string": "#% increased Area of Effect of Curses", "negate": false}, {"string": "#% reduced Area of Effect of Curses", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_153777645"]}}} +{"ref": "#% slower Curse Activation", "better": 1, "id": "curse_delay_+%", "matchers": [{"string": "#% slower Curse Activation", "negate": false}, {"string": "#% faster Curse Activation", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1104825894"]}}} +{"ref": "#% increased Curse Duration", "better": 1, "id": "base_curse_duration_+%", "matchers": [{"string": "#% increased Curse Duration", "negate": false}, {"string": "#% reduced Curse Duration", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3824372849"]}}} +{"ref": "#% increased Effect of your Curses", "better": 1, "id": "curse_effect_+%", "matchers": [{"string": "#% increased Effect of your Curses", "negate": false}, {"string": "#% reduced Effect of your Curses", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2353576063"], "enchant": ["enchant.stat_2353576063"]}}} +{"ref": "#% increased Critical Hit Chance with Daggers", "better": 1, "id": "dagger_critical_strike_chance_+%", "matchers": [{"string": "#% increased Critical Hit Chance with Daggers", "negate": false}, {"string": "#% reduced Critical Hit Chance with Daggers", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Damage with Daggers", "better": 1, "id": "dagger_damage_+%", "matchers": [{"string": "#% increased Damage with Daggers", "negate": false}, {"string": "#% reduced Damage with Daggers", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Attack Speed with Daggers", "better": 1, "id": "dagger_attack_speed_+%", "matchers": [{"string": "#% increased Attack Speed with Daggers", "negate": false}, {"string": "#% reduced Attack Speed with Daggers", "negate": true}], "trade": {"ids": null}} +{"ref": "#% of Damage is taken from Mana before Life", "better": 1, "id": "base_damage_removed_from_mana_before_life_%", "matchers": [{"string": "#% of Damage is taken from Mana before Life", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_458438597"]}}} +{"ref": "#% increased Damage against Enemies with Fully Broken Armour", "better": 1, "id": "damage_+%_against_enemies_with_fully_broken_armour", "matchers": [{"string": "#% increased Damage against Enemies with Fully Broken Armour", "negate": false}, {"string": "#% reduced Damage against Enemies with Fully Broken Armour", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2301718443"]}}} +{"ref": "#% increased Duration of Damaging Ailments on Enemies", "better": 1, "id": "damaging_ailment_duration_+%", "matchers": [{"string": "#% increased Duration of Damaging Ailments on Enemies", "negate": false}, {"string": "#% reduced Duration of Damaging Ailments on Enemies", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1829102168"]}}} +{"ref": "#% increased Daze Buildup", "better": 1, "id": "daze_build_up_+%", "matchers": [{"string": "#% increased Daze Buildup", "negate": false}, {"string": "#% reduced Daze Buildup", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1949833742"]}}} +{"ref": "Debuffs on you expire #% faster", "better": 1, "id": "debuff_time_passed_+%", "matchers": [{"string": "Debuffs on you expire #% faster", "negate": false}, {"string": "Debuffs on you expire #% slower", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1238227257"]}}} +{"ref": "#% increased Duration of Ignite, Shock and Chill on Enemies", "better": 1, "id": "ignite_shock_chill_duration_+%", "matchers": [{"string": "#% increased Duration of Ignite, Shock and Chill on Enemies", "negate": false}, {"string": "#% reduced Duration of Ignite, Shock and Chill on Enemies", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1062710370"]}}} +{"ref": "#% increased Elemental Damage", "better": 1, "id": "elemental_damage_+%", "matchers": [{"string": "#% increased Elemental Damage", "negate": false}, {"string": "#% reduced Elemental Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3141070085"]}}} +{"ref": "Empowered Attacks deal #% increased Damage", "better": 1, "id": "empowered_attack_damage_+%", "matchers": [{"string": "Empowered Attacks deal #% increased Damage", "negate": false}, {"string": "Empowered Attacks deal #% reduced Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1569101201"]}}} +{"ref": "Meta Skills gain #% increased Energy", "better": 1, "id": "energy_generated_+%", "matchers": [{"string": "Meta Skills gain #% increased Energy", "negate": false}, {"string": "Meta Skills gain #% reduced Energy", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_4236566306"], "enchant": ["enchant.stat_4236566306"]}}} +{"ref": "Damaging Ailments deal damage #% faster", "better": 1, "id": "damaging_ailments_deal_damage_+%_faster", "matchers": [{"string": "Damaging Ailments deal damage #% faster", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_538241406"]}}} +{"ref": "Damage Penetrates #% Fire Resistance", "better": 1, "id": "base_reduce_enemy_fire_resistance_%", "matchers": [{"string": "Damage Penetrates #% Fire Resistance", "negate": false}, {"string": "Your Hits treat Fire Resistance as #% higher than actual value", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2653955271"], "enchant": ["enchant.stat_2653955271"]}}} +{"ref": "#% increased Critical Hit Chance with Flails", "better": 1, "id": "flail_critical_strike_chance_+%", "matchers": [{"string": "#% increased Critical Hit Chance with Flails", "negate": false}, {"string": "#% reduced Critical Hit Chance with Flails", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Damage with Flails", "better": 1, "id": "flail_damage_+%", "matchers": [{"string": "#% increased Damage with Flails", "negate": false}, {"string": "#% reduced Damage with Flails", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Flask Effect Duration", "better": 1, "id": "flask_duration_+%", "matchers": [{"string": "#% increased Flask Effect Duration", "negate": false}, {"string": "#% reduced Flask Effect Duration", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3741323227"]}}} +{"ref": "#% increased Energy Shield from Equipped Focus", "better": 1, "id": "energy_shield_from_focus_+%", "matchers": [{"string": "#% increased Energy Shield from Equipped Focus", "negate": false}, {"string": "#% reduced Energy Shield from Equipped Focus", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3174700878"]}}} +{"ref": "Projectiles have #% chance for an additional Projectile when Forking", "better": 1, "id": "chance_to_fork_extra_projectile_%", "matchers": [{"string": "Projectiles have #% chance for an additional Projectile when Forking", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3003542304"]}}} +{"ref": "#% increased Freeze Threshold", "better": 1, "id": "freeze_threshold_+%", "matchers": [{"string": "#% increased Freeze Threshold", "negate": false}, {"string": "#% reduced Freeze Threshold", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3780644166"], "enchant": ["enchant.stat_3780644166"]}}} +{"ref": "Herald Skills deal #% increased Damage", "better": 1, "id": "damage_+%_with_herald_skills", "matchers": [{"string": "Herald Skills deal #% increased Damage", "negate": false}, {"string": "Herald Skills deal #% reduced Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_21071013"]}}} +{"ref": "#% increased Magnitude of Ignite you inflict", "better": 1, "id": "base_ignite_effect_+%", "matchers": [{"string": "#% increased Magnitude of Ignite you inflict", "negate": false}, {"string": "#% reduced Magnitude of Ignite you inflict", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3791899485"]}}} +{"ref": "#% increased Skill Effect Duration", "better": 1, "id": "skill_effect_duration_+%", "matchers": [{"string": "#% increased Skill Effect Duration", "negate": false}, {"string": "#% reduced Skill Effect Duration", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3377888098"], "enchant": ["enchant.stat_3377888098"]}}} +{"ref": "#% increased Knockback Distance", "better": 1, "id": "knockback_distance_+%", "matchers": [{"string": "#% increased Knockback Distance", "negate": false}, {"string": "#% reduced Knockback Distance", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_565784293"]}}} +{"ref": "#% of Skill Mana Costs Converted to Life Costs", "better": 1, "id": "base_skill_cost_life_instead_of_mana_%", "matchers": [{"string": "#% of Skill Mana Costs Converted to Life Costs", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2480498143"]}}} +{"ref": "#% increased Life Flask Charges gained", "better": 1, "id": "life_flask_charges_gained_+%", "matchers": [{"string": "#% increased Life Flask Charges gained", "negate": false}, {"string": "#% reduced Life Flask Charges gained", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_4009879772"]}}} +{"ref": "#% increased amount of Life Leeched", "better": 1, "id": "base_life_leech_amount_+%", "matchers": [{"string": "#% increased amount of Life Leeched", "negate": false}, {"string": "#% reduced amount of Life Leeched", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2112395885"]}}} +{"ref": "Recover #% of Life on Kill", "better": 1, "id": "recover_%_maximum_life_on_kill", "matchers": [{"string": "Recover #% of Life on Kill", "negate": false}, {"string": "Lose #% of Life on Kill", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2023107756"], "rune": ["rune.stat_2023107756"]}}} +{"ref": "#% increased Life Regeneration rate", "better": 1, "id": "life_regeneration_rate_+%", "matchers": [{"string": "#% increased Life Regeneration rate", "negate": false}, {"string": "#% reduced Life Regeneration rate", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_44972811"]}}} +{"ref": "Damage Penetrates #% Lightning Resistance", "better": 1, "id": "base_reduce_enemy_lightning_resistance_%", "matchers": [{"string": "Damage Penetrates #% Lightning Resistance", "negate": false}, {"string": "Your Hits treat Lightning Resistance as #% higher than actual value", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_818778753"], "enchant": ["enchant.stat_818778753"]}}} +{"ref": "#% increased Damage with Maces", "better": 1, "id": "mace_damage_+%", "matchers": [{"string": "#% increased Damage with Maces", "negate": false}, {"string": "#% reduced Damage with Maces", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1181419800"]}}} +{"ref": "#% increased Stun Buildup with Maces", "better": 1, "id": "mace_hit_damage_stun_multiplier_+%", "matchers": [{"string": "#% increased Stun Buildup with Maces", "negate": false}, {"string": "#% reduced Stun Buildup with Maces", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_872504239"]}}} +{"ref": "#% increased Mana Flask Charges gained", "better": 1, "id": "mana_flask_charges_gained_+%", "matchers": [{"string": "#% increased Mana Flask Charges gained", "negate": false}, {"string": "#% reduced Mana Flask Charges gained", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3590792340"]}}} +{"ref": "#% increased amount of Mana Leeched", "better": 1, "id": "base_mana_leech_amount_+%", "matchers": [{"string": "#% increased amount of Mana Leeched", "negate": false}, {"string": "#% reduced amount of Mana Leeched", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2839066308"]}}} +{"ref": "Recover #% of Mana on Kill", "better": 1, "id": "maximum_mana_%_gained_on_kill", "matchers": [{"string": "Recover #% of Mana on Kill", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1030153674", "explicit.stat_1604736568"], "rune": ["rune.stat_1030153674"]}}} +{"ref": "Mark Skills have #% increased Cast Speed", "better": 1, "id": "mark_skill_cast_speed_+%", "matchers": [{"string": "Mark Skills have #% increased Cast Speed", "negate": false}, {"string": "Mark Skills have #% reduced Cast Speed", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_4189061307"]}}} +{"ref": "Mark Skills have #% increased Skill Effect Duration", "better": 1, "id": "mark_skill_duration_+%", "matchers": [{"string": "Mark Skills have #% increased Skill Effect Duration", "negate": false}, {"string": "Mark Skills have #% reduced Skill Effect Duration", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2594634307"]}}} +{"ref": "#% increased Effect of your Mark Skills", "better": 1, "id": "mark_effect_+%", "matchers": [{"string": "#% increased Effect of your Mark Skills", "negate": false}, {"string": "#% reduced Effect of your Mark Skills", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_712554801"]}}} +{"ref": "+# to Maximum Rage", "better": 1, "id": "maximum_rage", "matchers": [{"string": "# to Maximum Rage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1181501418"]}}} +{"ref": "#% increased Melee Damage", "better": 1, "id": "melee_damage_+%", "matchers": [{"string": "#% increased Melee Damage", "negate": false}, {"string": "#% reduced Melee Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1002362373"]}}} +{"ref": "#% increased Minion Accuracy Rating", "better": 1, "id": "minion_accuracy_rating_+%", "matchers": [{"string": "#% increased Minion Accuracy Rating", "negate": false}, {"string": "#% reduced Minion Accuracy Rating", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1718147982"]}}} +{"ref": "Minions have #% increased Area of Effect", "better": 1, "id": "minion_skill_area_of_effect_+%", "matchers": [{"string": "Minions have #% increased Area of Effect", "negate": false}, {"string": "Minions have #% reduced Area of Effect", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3811191316"]}}} +{"ref": "Minions have #% increased Attack and Cast Speed", "better": 1, "id": "minion_attack_and_cast_speed_+%", "matchers": [{"string": "Minions have #% increased Attack and Cast Speed", "negate": false}, {"string": "Minions have #% reduced Attack and Cast Speed", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3091578504"]}}} +{"ref": "Minions have +#% to Chaos Resistance", "better": 1, "id": "minion_chaos_resistance_%", "matchers": [{"string": "Minions have +#% to Chaos Resistance", "negate": false}], "trade": {"ids": null}} +{"ref": "Minions have #% increased Critical Hit Chance", "better": 1, "id": "minion_critical_strike_chance_+%", "matchers": [{"string": "Minions have #% increased Critical Hit Chance", "negate": false}, {"string": "Minions have #% reduced Critical Hit Chance", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_491450213"]}}} +{"ref": "Minions have #% increased Critical Damage Bonus", "better": 1, "id": "minion_critical_strike_multiplier_+", "matchers": [{"string": "Minions have #% increased Critical Damage Bonus", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1854213750"]}}} +{"ref": "Minions deal #% increased Damage", "better": 1, "id": "minion_damage_+%", "matchers": [{"string": "Minions deal #% increased Damage", "negate": false}, {"string": "Minions deal #% reduced Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1589917703"]}}} +{"ref": "Minions have #% additional Physical Damage Reduction", "better": 1, "id": "minion_additional_physical_damage_reduction_%", "matchers": [{"string": "Minions have #% additional Physical Damage Reduction", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3119612865"]}}} +{"ref": "Minions have +#% to all Elemental Resistances", "better": 1, "id": "minion_elemental_resistance_%", "matchers": [{"string": "Minions have +#% to all Elemental Resistances", "negate": false}], "trade": {"ids": null}} +{"ref": "Minions Revive #% faster", "better": 1, "id": "minion_resummon_speed_+%", "matchers": [{"string": "Minions Revive #% faster", "negate": false}, {"string": "Minions Revive #% slower", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2639966148"]}}} +{"ref": "Offering Skills have #% increased Duration", "better": 1, "id": "offering_duration_+%", "matchers": [{"string": "Offering Skills have #% increased Duration", "negate": false}, {"string": "Offering Skills have #% reduced Duration", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2957407601"]}}} +{"ref": "Offerings have #% increased Maximum Life", "better": 1, "id": "offering_life_+%", "matchers": [{"string": "Offerings have #% increased Maximum Life", "negate": false}, {"string": "Offerings have #% reduced Maximum Life", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3787460122"]}}} +{"ref": "#% increased Global Physical Damage", "better": 1, "id": "physical_damage_+%", "matchers": [{"string": "#% increased Global Physical Damage", "negate": false}, {"string": "#% reduced Global Physical Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1310194496"]}}} +{"ref": "#% increased Pin Buildup", "better": 1, "id": "hit_damage_pin_multiplier_+%", "matchers": [{"string": "#% increased Pin Buildup", "negate": false}, {"string": "#% reduced Pin Buildup", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3473929743"]}}} +{"ref": "#% chance to Poison on Hit", "better": 1, "id": "base_chance_to_poison_on_hit_%", "matchers": [{"string": "#% chance to Poison on Hit", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_795138349"], "enchant": ["enchant.stat_3885634897"], "rune": ["rune.stat_3885634897"]}}} +{"ref": "#% increased Magnitude of Poison you inflict", "better": 1, "id": "base_poison_effect_+%", "matchers": [{"string": "#% increased Magnitude of Poison you inflict", "negate": false}, {"string": "#% reduced Magnitude of Poison you inflict", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2487305362"]}}} +{"ref": "#% increased Poison Duration", "better": 1, "id": "base_poison_duration_+%", "matchers": [{"string": "#% increased Poison Duration", "negate": false}, {"string": "#% reduced Poison Duration", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2011656677"]}}} +{"ref": "#% increased Projectile Damage", "better": 1, "id": "projectile_damage_+%", "matchers": [{"string": "#% increased Projectile Damage", "negate": false}, {"string": "#% reduced Projectile Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1839076647"]}}} +{"ref": "#% increased Damage with Quarterstaves", "better": 1, "id": "quarterstaff_damage_+%", "matchers": [{"string": "#% increased Damage with Quarterstaves", "negate": false}, {"string": "#% reduced Damage with Quarterstaves", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_4045894391"]}}} +{"ref": "#% increased Freeze Buildup with Quarterstaves", "better": 1, "id": "quarterstaff_hit_damage_freeze_multiplier_+%", "matchers": [{"string": "#% increased Freeze Buildup with Quarterstaves", "negate": false}, {"string": "#% reduced Freeze Buildup with Quarterstaves", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1697447343"]}}} +{"ref": "#% increased Attack Speed with Quarterstaves", "better": 1, "id": "quarterstaff_attack_speed_+%", "matchers": [{"string": "#% increased Attack Speed with Quarterstaves", "negate": false}, {"string": "#% reduced Attack Speed with Quarterstaves", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3283482523"]}}} +{"ref": "#% increased bonuses gained from Equipped Quiver", "better": 1, "id": "quiver_mod_effect_+%", "matchers": [{"string": "#% increased bonuses gained from Equipped Quiver", "negate": false}, {"string": "#% reduced bonuses gained from Equipped Quiver", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1200678966"]}}} +{"ref": "Gain # Rage on Melee Hit", "better": 1, "id": "gain_x_rage_on_melee_hit", "matchers": [{"string": "Gain # Rage on Melee Hit", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2709367754"]}}} +{"ref": "Gain # Rage when Hit by an Enemy", "better": 1, "id": "gain_x_rage_when_hit", "matchers": [{"string": "Gain # Rage when Hit by an Enemy", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3292710273"]}}} +{"ref": "#% increased Defences from Equipped Shield", "better": 1, "id": "shield_armour_+%", "matchers": [{"string": "#% increased Defences from Equipped Shield", "negate": false}, {"string": "#% reduced Defences from Equipped Shield", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1215155013"]}}} +{"ref": "#% increased Shock Duration", "better": 1, "id": "shock_duration_+%", "matchers": [{"string": "#% increased Shock Duration", "negate": false}, {"string": "#% reduced Shock Duration", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3668351662"]}}} +{"ref": "#% increased Magnitude of Shock you inflict", "better": 1, "id": "shock_effect_+%", "matchers": [{"string": "#% increased Magnitude of Shock you inflict", "negate": false}, {"string": "#% reduced Magnitude of Shock you inflict", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2527686725"]}}} +{"ref": "#% increased Attack Speed with Spears", "better": 1, "id": "spear_attack_speed_+%", "matchers": [{"string": "#% increased Attack Speed with Spears", "negate": false}, {"string": "#% reduced Attack Speed with Spears", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Critical Hit Chance with Spears", "better": 1, "id": "spear_critical_strike_chance_+%", "matchers": [{"string": "#% increased Critical Hit Chance with Spears", "negate": false}, {"string": "#% reduced Critical Hit Chance with Spears", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Damage with Spears", "better": 1, "id": "spear_damage_+%", "matchers": [{"string": "#% increased Damage with Spears", "negate": false}, {"string": "#% reduced Damage with Spears", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Stun Buildup", "better": 1, "id": "hit_damage_stun_multiplier_+%", "matchers": [{"string": "#% increased Stun Buildup", "negate": false}, {"string": "#% reduced Stun Buildup", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_239367161"]}}} +{"ref": "Gain #% of maximum Energy Shield as additional Stun Threshold", "better": 1, "id": "stun_threshold_+_from_%_maximum_energy_shield", "matchers": [{"string": "Gain #% of maximum Energy Shield as additional Stun Threshold", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_416040624"]}}} +{"ref": "#% increased Stun Threshold if you haven't been Stunned Recently", "better": 1, "id": "stun_threshold_+%_when_not_stunned_recently", "matchers": [{"string": "#% increased Stun Threshold if you haven't been Stunned Recently", "negate": false}, {"string": "#% reduced Stun Threshold if you haven't been Stunned Recently", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1405298142"]}}} +{"ref": "#% increased Magnitude of Bleeding you inflict", "better": 1, "id": "base_bleeding_effect_+%", "matchers": [{"string": "#% increased Magnitude of Bleeding you inflict", "negate": false}, {"string": "#% reduced Magnitude of Bleeding you inflict", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3166958180"]}}} +{"ref": "#% increased Damage with Swords", "better": 1, "id": "sword_damage_+%", "matchers": [{"string": "#% increased Damage with Swords", "negate": false}, {"string": "#% reduced Damage with Swords", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Attack Speed with Swords", "better": 1, "id": "sword_attack_speed_+%", "matchers": [{"string": "#% increased Attack Speed with Swords", "negate": false}, {"string": "#% reduced Attack Speed with Swords", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Thorns damage", "better": 1, "id": "thorns_damage_+%", "matchers": [{"string": "#% increased Thorns damage", "negate": false}, {"string": "#% reduced Thorns damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1315743832"], "enchant": ["enchant.stat_1315743832"]}}} +{"ref": "#% increased Totem Damage", "better": 1, "id": "totem_damage_+%", "matchers": [{"string": "#% increased Totem Damage", "negate": false}, {"string": "#% reduced Totem Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3851254963"]}}} +{"ref": "#% increased Totem Life", "better": 1, "id": "totem_life_+%", "matchers": [{"string": "#% increased Totem Life", "negate": false}, {"string": "#% reduced Totem Life", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_686254215"]}}} +{"ref": "#% increased Totem Placement speed", "better": 1, "id": "summon_totem_cast_speed_+%", "matchers": [{"string": "#% increased Totem Placement speed", "negate": false}, {"string": "#% reduced Totem Placement speed", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3374165039"]}}} +{"ref": "Triggered Spells deal #% increased Spell Damage", "better": 1, "id": "triggered_spell_spell_damage_+%", "matchers": [{"string": "Triggered Spells deal #% increased Spell Damage", "negate": false}, {"string": "Triggered Spells deal #% reduced Spell Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3067892458"]}}} +{"ref": "#% increased Damage with Unarmed Attacks", "better": 1, "id": "damage_+%_while_unarmed", "matchers": [{"string": "#% increased Damage with Unarmed Attacks", "negate": false}, {"string": "#% reduced Damage with Unarmed Attacks", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Warcry Buff Effect", "better": 1, "id": "warcry_buff_effect_+%", "matchers": [{"string": "#% increased Warcry Buff Effect", "negate": false}, {"string": "#% reduced Warcry Buff Effect", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3037553757"]}}} +{"ref": "#% increased Warcry Cooldown Recovery Rate", "better": 1, "id": "warcry_cooldown_speed_+%", "matchers": [{"string": "#% increased Warcry Cooldown Recovery Rate", "negate": false}, {"string": "#% reduced Warcry Cooldown Recovery Rate", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_4159248054"]}}} +{"ref": "#% increased Damage with Warcries", "better": 1, "id": "warcry_damage_+%", "matchers": [{"string": "#% increased Damage with Warcries", "negate": false}, {"string": "#% reduced Damage with Warcries", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1594812856"]}}} +{"ref": "#% increased Warcry Speed", "better": 1, "id": "warcry_speed_+%", "matchers": [{"string": "#% increased Warcry Speed", "negate": false}, {"string": "#% reduced Warcry Speed", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1316278494"], "enchant": ["enchant.stat_1316278494"]}}} +{"ref": "#% increased Weapon Swap Speed", "better": 1, "id": "weapon_swap_speed_+%", "matchers": [{"string": "#% increased Weapon Swap Speed", "negate": false}, {"string": "#% reduced Weapon Swap Speed", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3233599707"], "enchant": ["enchant.stat_3233599707"]}}} +{"ref": "#% increased Effect of Withered", "better": 1, "id": "withered_effect_+%", "matchers": [{"string": "#% increased Effect of Withered", "negate": false}, {"string": "#% reduced Effect of Withered", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2545584555"]}}} +{"ref": "#% increased Unarmed Attack Speed", "better": 1, "id": "unarmed_attack_speed_+%", "matchers": [{"string": "#% increased Unarmed Attack Speed", "negate": false}, {"string": "#% reduced Unarmed Attack Speed", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Effect of Small Passive Skills in Radius", "better": 1, "id": "local_jewel_small_passive_in_radius_effect_+%", "matchers": [{"string": "#% increased Effect of Small Passive Skills in Radius", "negate": false}, {"string": "#% reduced Effect of Small Passive Skills in Radius", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1060572482"]}}} +{"ref": "#% increased Strength", "better": 1, "id": "strength_+%", "matchers": [{"string": "#% increased Strength", "negate": false}, {"string": "#% reduced Strength", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_734614379"]}}} +{"ref": "#% increased Intelligence", "better": 1, "id": "intelligence_+%", "matchers": [{"string": "#% increased Intelligence", "negate": false}, {"string": "#% reduced Intelligence", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_656461285"]}}} +{"ref": "#% increased Dexterity", "better": 1, "id": "dexterity_+%", "matchers": [{"string": "#% increased Dexterity", "negate": false}, {"string": "#% reduced Dexterity", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_4139681126"]}}} +{"ref": "+# to Spirit", "better": 1, "id": "base_spirit", "matchers": [{"string": "# to Spirit", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3981240776"], "implicit": ["implicit.stat_3981240776"], "enchant": ["enchant.stat_3981240776"], "rune": ["rune.stat_3981240776"]}}} +{"ref": "Gain #% of Damage as Extra Chaos Damage", "better": 1, "id": "non_skill_base_all_damage_%_to_gain_as_chaos", "matchers": [{"string": "Gain #% of Damage as Extra Chaos Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3398787959"], "enchant": ["enchant.stat_3398787959"]}}} +{"ref": "+# to Maximum Endurance Charges", "better": 1, "id": "max_endurance_charges", "matchers": [{"string": "# to Maximum Endurance Charges", "negate": false}], "trade": {"ids": {"enchant": ["enchant.stat_1515657623"]}}} +{"ref": "+# to Maximum Frenzy Charges", "better": 1, "id": "max_frenzy_charges", "matchers": [{"string": "# to Maximum Frenzy Charges", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4078695"], "enchant": ["enchant.stat_4078695"]}}} +{"ref": "+# to Maximum Power Charges", "better": 1, "id": "max_power_charges", "matchers": [{"string": "# to Maximum Power Charges", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_227523295"], "enchant": ["enchant.stat_227523295"]}}} +{"ref": "+#% to maximum Block chance", "better": 1, "id": "additional_maximum_block_%", "matchers": [{"string": "#% to maximum Block chance", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_480796730"], "enchant": ["enchant.stat_480796730"]}}} +{"ref": "# Life gained when you Block", "better": 1, "id": "life_gained_on_block", "matchers": [{"string": "# Life gained when you Block", "negate": false}, {"string": "Lose # Life when you Block", "negate": true}], "trade": {"ids": {"enchant": ["enchant.stat_762600725"]}}} +{"ref": "# Mana gained when you Block", "better": 1, "id": "mana_gained_on_block", "matchers": [{"string": "# Mana gained when you Block", "negate": false}, {"string": "Lose # Mana when you Block", "negate": true}], "trade": {"ids": {"enchant": ["enchant.stat_2122183138"]}}} +{"ref": "#% increased Damage", "better": 1, "id": "damage_+%", "matchers": [{"string": "#% increased Damage", "negate": false}, {"string": "#% reduced Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2154246560"], "enchant": ["enchant.stat_2154246560"]}}} +{"ref": "#% increased Skill Speed", "better": 1, "id": "skill_speed_+%", "matchers": [{"string": "#% increased Skill Speed", "negate": false}, {"string": "#% reduced Skill Speed", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_970213192"], "enchant": ["enchant.stat_970213192"]}}} +{"ref": "+# to Level of all Skills", "better": 1, "id": "all_skill_gem_level_+", "matchers": [{"string": "# to Level of all Skills", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4283407333"], "enchant": ["enchant.stat_4283407333"]}}} +{"ref": "Debuffs you inflict have #% increased Slow Magnitude", "better": 1, "id": "base_debuff_slow_magnitude_+%", "matchers": [{"string": "Debuffs you inflict have #% increased Slow Magnitude", "negate": false}, {"string": "Debuffs you inflict have #% reduced Slow Magnitude", "negate": true}], "trade": {"ids": {"enchant": ["enchant.stat_3650992555"]}}} +{"ref": "Life Flasks gain # charges per Second", "better": 1, "id": "generate_x_charges_for_life_flasks_per_minute", "matchers": [{"string": "Life Flasks gain # charges per Second", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1102738251"], "enchant": ["enchant.stat_1102738251"]}}} +{"ref": "Mana Flasks gain # charges per Second", "better": 1, "id": "generate_x_charges_for_mana_flasks_per_minute", "matchers": [{"string": "Mana Flasks gain # charges per Second", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2200293569"], "enchant": ["enchant.stat_2200293569"]}}} +{"ref": "Charms gain # charges per Second", "better": 1, "id": "generate_x_charges_for_charms_per_minute", "matchers": [{"string": "Charms gain # charges per Second", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_185580205"], "enchant": ["enchant.stat_185580205"]}}} +{"ref": "Adds # to # Chaos Damage", "better": 1, "id": "local_minimum_added_chaos_damage", "matchers": [{"string": "Adds # to # Chaos Damage", "negate": false}], "trade": {"ids": {"enchant": ["enchant.stat_2223678961"]}}} +{"ref": "Immune to Maim", "better": 1, "id": "immune_to_maim", "matchers": [{"string": "Immune to Maim", "negate": false}], "trade": {"ids": {"enchant": ["enchant.stat_3429557654"]}}} +{"ref": "You cannot be Hindered", "better": 1, "id": "you_cannot_be_hindered", "matchers": [{"string": "You cannot be Hindered", "negate": false}], "trade": {"ids": {"enchant": ["enchant.stat_721014846"]}}} +{"ref": "Corrupted Blood cannot be inflicted on you", "better": 1, "id": "cannot_be_inflicted_by_corrupted_blood", "matchers": [{"string": "Corrupted Blood cannot be inflicted on you", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1658498488"], "enchant": ["enchant.stat_1658498488"]}}} +{"ref": "Cannot be Blinded", "better": 1, "id": "cannot_be_blinded", "matchers": [{"string": "Cannot be Blinded", "negate": false}], "trade": {"ids": {"enchant": ["enchant.stat_1436284579"]}}} +{"ref": "#% increased Armour, Evasion and Energy Shield", "better": 1, "id": "local_armour_and_evasion_and_energy_shield_+%", "matchers": [{"string": "#% increased Armour, Evasion and Energy Shield", "negate": false}, {"string": "#% reduced Armour, Evasion and Energy Shield", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3523867985"], "rune": ["rune.stat_3523867985"]}}} +{"ref": "Adds # to # Chaos Damage to Attacks", "better": 1, "id": "attack_minimum_added_chaos_damage", "matchers": [{"string": "Adds # to # Chaos Damage to Attacks", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_674553446"]}}} +{"ref": "+# to Level of all Fire Skills", "better": 1, "id": "fire_skill_gem_level_+", "matchers": [{"string": "# to Level of all Fire Skills", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_599749213"]}}} +{"ref": "+# to Level of all Lightning Skills", "better": 1, "id": "lightning_skill_gem_level_+", "matchers": [{"string": "# to Level of all Lightning Skills", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1147690586"]}}} +{"ref": "+# to Level of all Elemental Skills", "better": 1, "id": "elemental_skill_gem_level_+", "matchers": [{"string": "# to Level of all Elemental Skills", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain # Mana per Enemy Hit with Attacks", "better": 1, "id": "mana_gain_per_target", "matchers": [{"string": "Gain # Mana per Enemy Hit with Attacks", "negate": false}, {"string": "Lose # Mana per Enemy Hit with Attacks", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_820939409"]}}} +{"ref": "Dodge Roll passes through Enemies", "better": 1, "id": "dodge_roll_phasing_without_visual", "matchers": [{"string": "Dodge Roll passes through Enemies", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1298316550"]}}} +{"ref": "Recover #% of Mana on Kill", "better": 1, "id": "recover_%_maximum_mana_on_kill", "matchers": [{"string": "Recover #% of Mana on Kill", "negate": false}, {"string": "Lose #% of Mana on Kill", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1030153674", "explicit.stat_1604736568"], "rune": ["rune.stat_1030153674"]}}} +{"ref": "# to # Fire Thorns damage", "better": 1, "id": "thorns_minimum_base_fire_damage", "matchers": [{"string": "# to # Fire Thorns damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1993950627"]}}} +{"ref": "# to # Cold Thorns damage", "better": 1, "id": "thorns_minimum_base_cold_damage", "matchers": [{"string": "# to # Cold Thorns damage", "negate": false}], "trade": {"ids": null}} +{"ref": "#% of Physical Damage taken as Fire Damage", "better": 1, "id": "physical_hit_and_dot_damage_%_taken_as_fire", "matchers": [{"string": "#% of Physical Damage taken as Fire Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1004468512"]}}} +{"ref": "+# to all Attributes per Level", "better": 1, "id": "local_all_attributes_-_per_level", "matchers": [{"string": "# to all Attributes per Level", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2333085568"]}}} +{"ref": "No Physical Damage", "better": 1, "id": "local_weapon_no_physical_damage", "matchers": [{"string": "No Physical Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Freezes Enemies that are on Full Life", "better": 1, "id": "local_always_freeze_on_full_life", "matchers": [{"string": "Freezes Enemies that are on Full Life", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2260055669"]}}} +{"ref": "#% increased Attack Damage when on Low Life", "better": 1, "id": "attack_damage_+%_when_on_low_life", "matchers": [{"string": "#% increased Attack Damage when on Low Life", "negate": false}, {"string": "#% reduced Attack Damage when on Low Life", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Attack Damage while not on Low Mana", "better": 1, "id": "attack_damage_+%_while_not_on_low_mana", "matchers": [{"string": "#% increased Attack Damage while not on Low Mana", "negate": false}, {"string": "#% reduced Attack Damage while not on Low Mana", "negate": true}], "trade": {"ids": null}} +{"ref": "Damage over Time bypasses your Energy Shield\\nWhile not on Full Life, Sacrifice #% of Mana per Second to Recover that much Life", "better": 1, "id": "unique_body_armour_black_doubt_drain_%_mana_to_recover_life_until_full_and_dot_bypasses_es", "matchers": [{"string": "Damage over Time bypasses your Energy Shield\\nWhile not on Full Life, Sacrifice #% of Mana per Second to Recover that much Life", "negate": false}], "trade": {"ids": null}} +{"ref": "Drop Ignited Ground while moving, which lasts 8 seconds and Ignites as though dealing Fire Damage equal to #% of your maximum Life", "better": 1, "id": "unique_boots_secondary_ground_ignite_while_moving_base_fire_damage_%_of_life", "matchers": [{"string": "Drop Ignited Ground while moving, which lasts 8 seconds and Ignites as though dealing Fire Damage equal to #% of your maximum Life", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2356156926"]}}} +{"ref": "Drop Shocked Ground while moving, lasting 8 seconds", "better": 1, "id": "unique_boots_secondary_ground_shock_while_moving", "matchers": [{"string": "Drop Shocked Ground while moving, lasting 8 seconds", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_65133983"]}}} +{"ref": "Cannot be Poisoned", "better": 1, "id": "cannot_be_poisoned", "matchers": [{"string": "Cannot be Poisoned", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3835551335"]}}} +{"ref": "Chance to Ignite is doubled", "better": 1, "id": "chance_to_ignite_is_doubled", "matchers": [{"string": "Chance to Ignite is doubled", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1540254896"]}}} +{"ref": "You have no Spirit", "better": 1, "id": "you_have_no_spirit", "matchers": [{"string": "You have no Spirit", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4091659555"]}}} +{"ref": "Leeches #% of maximum Life when you Cast a Spell", "better": 1, "id": "life_leech_%_maximum_life_on_spell_cast", "matchers": [{"string": "Leeches #% of maximum Life when you Cast a Spell", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_335699483"]}}} +{"ref": "#% more Attack Damage", "better": 1, "id": "unique_quill_rain_damage_+%_final", "matchers": [{"string": "#% more Attack Damage", "negate": false}, {"string": "#% less Attack Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_412462523"]}}} +{"ref": "#% chance for Energy Shield Recharge to start when you Kill an Enemy", "better": 1, "id": "energy_shield_recharges_on_kill_%", "matchers": [{"string": "#% chance for Energy Shield Recharge to start when you Kill an Enemy", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1618482990"]}}} +{"ref": "Causes Bleeding on Hit", "better": 1, "id": "local_bleed_on_hit", "matchers": [{"string": "Causes Bleeding on Hit", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2091621414"]}}} +{"ref": "You can apply one fewer Curse", "better": 1, "id": "number_of_additional_curses_allowed", "matchers": [{"string": "You can apply one fewer Curse", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Life and Mana Recovery from Flasks", "better": 1, "id": "flask_life_and_mana_to_recover_+%", "matchers": [{"string": "#% increased Life and Mana Recovery from Flasks", "negate": false}, {"string": "#% reduced Life and Mana Recovery from Flasks", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2310741722"], "rune": ["rune.stat_2310741722"]}}} +{"ref": "You count as on Low Life while at #% of maximum Life or below", "better": 1, "id": "low_life_threshold_%_override", "matchers": [{"string": "You count as on Low Life while at #% of maximum Life or below", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_356835700"]}}} +{"ref": "Lose # Life when you use a Skill", "better": 1, "id": "lose_x_life_when_you_use_skill", "matchers": [{"string": "Lose # Life when you use a Skill", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1902409192"]}}} +{"ref": "#% chance to Avoid Death from Hits", "better": 1, "id": "chance_to_avoid_death_%", "matchers": [{"string": "#% chance to Avoid Death from Hits", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1689729380"]}}} +{"ref": "You count as on Low Life while at #% of maximum Mana or below", "better": 1, "id": "unique_you_count_as_on_low_life_while_at_%_of_maximum_mana_or_below", "matchers": [{"string": "You count as on Low Life while at #% of maximum Mana or below", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3154256486"]}}} +{"ref": "You count as on Low Mana while at #% of maximum Life or below", "better": 1, "id": "unique_you_count_as_on_low_mana_while_at_%_of_maximum_health_or_below", "matchers": [{"string": "You count as on Low Mana while at #% of maximum Life or below", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1143240184"]}}} +{"ref": "#% of Armour applies to Elemental Damage", "better": 1, "id": "armour_%_applies_to_fire_cold_lightning_damage", "matchers": [{"string": "#% of Armour applies to Elemental Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3362812763"]}}} +{"ref": "Moving while Bleeding doesn't cause you to take extra damage", "better": 1, "id": "no_extra_bleeding_damage_while_moving", "matchers": [{"string": "Moving while Bleeding doesn't cause you to take extra damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4112450013"]}}} +{"ref": "When you Kill a Rare monster, you gain its Modifiers for 20 seconds", "better": 1, "id": "gain_rare_monster_mods_on_kill_ms", "matchers": [{"string": "When you Kill a Rare monster, you gain its Modifiers for 20 seconds", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2913235441"]}}} +{"ref": "Blocking Damage Poisons the Enemy as though dealing # Base Chaos Damage", "better": 1, "id": "poison_as_though_dealing_X_damage_on_block", "matchers": [{"string": "Blocking Damage Poisons the Enemy as though dealing # Base Chaos Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4195198267"]}}} +{"ref": "Accuracy Rating is Doubled", "better": 1, "id": "accuracy_rating_is_doubled", "matchers": [{"string": "Accuracy Rating is Doubled", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2161347476"]}}} +{"ref": "#% increased Weapon Damage per 5 Strength", "better": 1, "id": "weapon_damage_+%_per_5_str", "matchers": [{"string": "#% increased Weapon Damage per 5 Strength", "negate": false}, {"string": "#% reduced Weapon Damage per 5 Strength", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_868290738"]}}} +{"ref": "#% increased Attack Speed per 5 Dexterity", "better": 1, "id": "attack_speed_+%_per_5_dex", "matchers": [{"string": "#% increased Attack Speed per 5 Dexterity", "negate": false}, {"string": "#% reduced Attack Speed per 5 Dexterity", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3356155703"]}}} +{"ref": "#% increased Area of Effect for Attacks per 5 Intelligence", "better": 1, "id": "attack_area_of_effect_+%_per_5_int", "matchers": [{"string": "#% increased Area of Effect for Attacks per 5 Intelligence", "negate": false}, {"string": "#% reduced Area of Effect for Attacks per 5 Intelligence", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2082207021"]}}} +{"ref": "Your Maximum Resistances are #%", "better": 1, "id": "override_maximum_damage_resistance_%", "matchers": [{"string": "Your Maximum Resistances are #%", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain #% of Damage as Chaos Damage per Undead Minion", "better": 1, "id": "non_skill_base_all_damage_%_to_gain_as_chaos_per_active_undead_minion", "matchers": [{"string": "Gain #% of Damage as Chaos Damage per Undead Minion", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_997343726"]}}} +{"ref": "You take #% of damage from Blocked Hits", "better": 1, "id": "base_block_%_damage_taken", "matchers": [{"string": "You take #% of damage from Blocked Hits", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2905515354"]}}} +{"ref": "Enemies are Culled on Block", "better": 1, "id": "culling_strike_enemies_on_block", "matchers": [{"string": "Enemies are Culled on Block", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_381470861"]}}} +{"ref": "#% more Physical Damage with Unarmed Melee Attacks", "better": 1, "id": "unique_facebreaker_unarmed_melee_physical_damage_+%_final", "matchers": [{"string": "#% more Physical Damage with Unarmed Melee Attacks", "negate": false}, {"string": "#% less Physical Damage with Unarmed Melee Attacks", "negate": true}], "trade": {"ids": null}} +{"ref": "Gain # Rage when Critically Hit by an Enemy", "better": 1, "id": "gain_x_rage_when_taken_crit", "matchers": [{"string": "Gain # Rage when Critically Hit by an Enemy", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1466716929"]}}} +{"ref": "#% increased Ignite Duration on Enemies", "better": 1, "id": "ignite_duration_+%", "matchers": [{"string": "#% increased Ignite Duration on Enemies", "negate": false}, {"string": "#% reduced Ignite Duration on Enemies", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1086147743"]}}} +{"ref": "Enemies Ignited by you take Chaos Damage instead of Fire Damage from Ignite", "better": 1, "id": "enemies_you_ignite_take_chaos_damage_from_ignite_instead", "matchers": [{"string": "Enemies Ignited by you take Chaos Damage instead of Fire Damage from Ignite", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2714810050"]}}} +{"ref": "Damage Blocked is Recouped as Mana", "better": 1, "id": "damage_blocked_%_recouped_as_mana", "matchers": [{"string": "Damage Blocked is Recouped as Mana", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2875218423"]}}} +{"ref": "Take no Extra Damage from Critical Hits", "better": 1, "id": "self_take_no_extra_damage_from_critical_strikes", "matchers": [{"string": "Take no Extra Damage from Critical Hits", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4294267596"]}}} +{"ref": "Life Flasks do not recover Life", "better": 1, "id": "base_life_flasks_do_not_recover_life", "matchers": [{"string": "Life Flasks do not recover Life", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_265717301"]}}} +{"ref": "On-Kill Effects happen twice", "better": 1, "id": "on_kill_effects_occur_twice", "matchers": [{"string": "On-Kill Effects happen twice", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_259470957"]}}} +{"ref": "#% chance to be inflicted with Bleeding when Hit", "better": 1, "id": "receive_bleeding_chance_%_when_hit", "matchers": [{"string": "#% chance to be inflicted with Bleeding when Hit", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3423694372"]}}} +{"ref": "You cannot be Chilled or Frozen", "better": 1, "id": "base_cannot_be_chilled_or_frozen", "matchers": [{"string": "You cannot be Chilled or Frozen", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2996245527"]}}} +{"ref": "Every 3 seconds, Consume a nearby Corpse to Recover #% of Life", "better": 1, "id": "consume_nearby_corpse_every_3_seconds_to_recover_%_maximum_life", "matchers": [{"string": "Every 3 seconds, Consume a nearby Corpse to Recover #% of Life", "negate": false}, {"string": "Every 3 seconds, Consume a nearby Corpse to Lose #% of Life", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3764198549"]}}} +{"ref": "You have a Smoke Cloud around you while stationary", "better": 1, "id": "smoke_cloud_while_stationary_radius", "matchers": [{"string": "You have a Smoke Cloud around you while stationary", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2592455368"]}}} +{"ref": "#% increased Evasion Rating when on Full Life", "better": 1, "id": "evasion_rating_+%_when_on_full_life", "matchers": [{"string": "#% increased Evasion Rating when on Full Life", "negate": false}, {"string": "#% reduced Evasion Rating when on Full Life", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_88817332"]}}} +{"ref": "#% increased Movement Speed when on Full Life", "better": 1, "id": "movement_velocity_+%_when_on_full_life", "matchers": [{"string": "#% increased Movement Speed when on Full Life", "negate": false}, {"string": "#% reduced Movement Speed when on Full Life", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3393547195"]}}} +{"ref": "All damage with this Weapon causes Electrocution buildup", "better": 1, "id": "local_all_damage_can_electrocute", "matchers": [{"string": "All damage with this Weapon causes Electrocution buildup", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1910743684"]}}} +{"ref": "All Damage from Hits with this Weapon Contributes to Freeze Buildup", "better": 1, "id": "local_all_damage_can_freeze", "matchers": [{"string": "All Damage from Hits with this Weapon Contributes to Freeze Buildup", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3761294489"]}}} +{"ref": "Culling Strike against Frozen Enemies", "better": 1, "id": "local_cull_frozen_enemies_on_hit", "matchers": [{"string": "Culling Strike against Frozen Enemies", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1158324489"]}}} +{"ref": "Enemies Frozen by you take #% increased Damage", "better": 1, "id": "frozen_monsters_take_increased_damage", "matchers": [{"string": "Enemies Frozen by you take #% increased Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_849085925"]}}} +{"ref": "#% of Maximum Life Converted to Energy Shield", "better": 1, "id": "maximum_life_%_to_convert_to_maximum_energy_shield", "matchers": [{"string": "#% of Maximum Life Converted to Energy Shield", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2458962764"]}}} +{"ref": "#% more Damage taken if you have not been Hit Recently", "better": 1, "id": "damage_taken_+%_if_not_hit_recently_final", "matchers": [{"string": "#% more Damage taken if you have not been Hit Recently", "negate": false}, {"string": "#% less Damage taken if you have not been Hit Recently", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_67637087"]}}} +{"ref": "#% increased Evasion Rating if you have been Hit Recently", "better": 1, "id": "evasion_+%_if_hit_recently", "matchers": [{"string": "#% increased Evasion Rating if you have been Hit Recently", "negate": false}, {"string": "#% reduced Evasion Rating if you have been Hit Recently", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1073310669"]}}} +{"ref": "Undead Minions have #% increased Reservation", "better": 1, "id": "undead_minion_reservation_+%", "matchers": [{"string": "Undead Minions have #% increased Reservation", "negate": false}, {"string": "Undead Minions have #% reduced Reservation", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1176947534"]}}} +{"ref": "#% increased Rarity of Items found when on Low Life", "better": 1, "id": "item_found_rarity_+%_when_on_low_life", "matchers": [{"string": "#% increased Rarity of Items found when on Low Life", "negate": false}, {"string": "#% reduced Rarity of Items found when on Low Life", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2929867083"]}}} +{"ref": "You cannot be Chilled for # second after being Chilled", "better": 1, "id": "chill_prevention_ms_when_chilled", "matchers": [{"string": "You cannot be Chilled for # second after being Chilled", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2306924373"]}}} +{"ref": "You cannot be Frozen for # second after being Frozen", "better": 1, "id": "freeze_prevention_ms_when_frozen", "matchers": [{"string": "You cannot be Frozen for # second after being Frozen", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3612464552"]}}} +{"ref": "You cannot be Ignited for # second after being Ignited", "better": 1, "id": "ignite_prevention_ms_when_ignited", "matchers": [{"string": "You cannot be Ignited for # second after being Ignited", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_947072590"]}}} +{"ref": "You cannot be Shocked for # second after being Shocked", "better": 1, "id": "shock_prevention_ms_when_shocked", "matchers": [{"string": "You cannot be Shocked for # second after being Shocked", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_215346464"]}}} +{"ref": "Curses you inflict are reflected back to you", "better": 1, "id": "curses_reflected_to_self", "matchers": [{"string": "Curses you inflict are reflected back to you", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4275855121"]}}} +{"ref": "#% increased Attack and Cast Speed", "better": 1, "id": "attack_and_cast_speed_+%", "matchers": [{"string": "#% increased Attack and Cast Speed", "negate": false}, {"string": "#% reduced Attack and Cast Speed", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2672805335"]}}} +{"ref": "Share Charges with Allies in your Presence", "better": 1, "id": "share_charges_with_allies_in_your_presence", "matchers": [{"string": "Share Charges with Allies in your Presence", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2535267021"]}}} +{"ref": "Base Critical Hit Chance for Attacks with Weapons is #%", "better": 1, "id": "override_weapon_base_critical_strike_chance", "matchers": [{"string": "Base Critical Hit Chance for Attacks with Weapons is #%", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2635559734"]}}} +{"ref": "Enemies killed by anyone in your Presence count as being killed by you instead", "better": 1, "id": "deathgrip_presence", "matchers": [{"string": "Enemies killed by anyone in your Presence count as being killed by you instead", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1576794517"]}}} +{"ref": "All Damage from Hits Contributes to Poison Magnitude", "better": 1, "id": "all_damage_can_poison", "matchers": [{"string": "All Damage from Hits Contributes to Poison Magnitude", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4012215578"]}}} +{"ref": "Freeze as though dealing Cold damage equal to #% of your maximum Mana when Hit", "better": 1, "id": "freeze_damage_equal_to_%_of_maximum_mana_to_return_when_hit", "matchers": [{"string": "Freeze as though dealing Cold damage equal to #% of your maximum Mana when Hit", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2006107135"]}}} +{"ref": "+# Physical damage taken from Projectile Attacks", "better": 1, "id": "physical_ranged_attack_damage_taken_+", "matchers": [{"string": "# Physical damage taken from Projectile Attacks", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3612407781"]}}} +{"ref": "#% increased Magnitude of Chill you inflict", "better": 1, "id": "chill_effect_+%", "matchers": [{"string": "#% increased Magnitude of Chill you inflict", "negate": false}, {"string": "#% reduced Magnitude of Chill you inflict", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_828179689"]}}} +{"ref": "#% reduced Mana Cost of Skills", "better": 1, "id": "base_mana_cost_-%", "matchers": [{"string": "#% reduced Mana Cost of Skills", "negate": false}, {"string": "#% increased Mana Cost of Skills", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_474294393"]}}} +{"ref": "Lightning damage from Hits Contributes to Electrocution Buildup", "better": 1, "id": "base_lightning_damage_can_electrocute", "matchers": [{"string": "Lightning damage from Hits Contributes to Electrocution Buildup", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1017648537"]}}} +{"ref": "Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", "better": 1, "id": "strength_can_satisfy_dexterity_and_intelligence_requirements_of_melee_weapons_and_skills", "matchers": [{"string": "Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2230687504"]}}} +{"ref": "#% increased effect of Ignite on you", "better": 1, "id": "ignite_effect_on_self_+%", "matchers": [{"string": "#% increased effect of Ignite on you", "negate": false}, {"string": "#% reduced effect of Ignite on you", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1269971728"]}}} +{"ref": "#% increased Effect of Chill on you", "better": 1, "id": "chill_effectiveness_on_self_+%", "matchers": [{"string": "#% increased Effect of Chill on you", "negate": false}, {"string": "#% reduced Effect of Chill on you", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1478653032"]}}} +{"ref": "#% increased effect of Shock on you", "better": 1, "id": "shocked_effect_on_self_+%", "matchers": [{"string": "#% increased effect of Shock on you", "negate": false}, {"string": "#% reduced effect of Shock on you", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3801067695"]}}} +{"ref": "Thorns damage is triggered by all Hits", "better": 1, "id": "thorns_proc_off_any_hit", "matchers": [{"string": "Thorns damage is triggered by all Hits", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3414243317"]}}} +{"ref": "Trigger Decompose Skill on Step", "better": 1, "id": "local_display_triggers_level_x_corpse_cloud_on_footstep", "matchers": [{"string": "Trigger Decompose Skill on Step", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4036087867"]}}} +{"ref": "Deal #% of Overkill damage to enemies within 2 metres of the enemy killed", "better": 1, "id": "overkill_damage_%_as_physical_to_nearby_enemies", "matchers": [{"string": "Deal #% of Overkill damage to enemies within 2 metres of the enemy killed", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2301852600"]}}} +{"ref": "Regenerate #% of Life per second per Endurance Charge", "better": 1, "id": "life_regeneration_rate_per_minute_%_per_endurance_charge", "matchers": [{"string": "Regenerate #% of Life per second per Endurance Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Movement Speed per Frenzy Charge", "better": 1, "id": "movement_velocity_+%_per_frenzy_charge", "matchers": [{"string": "#% increased Movement Speed per Frenzy Charge", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1541516339"]}}} +{"ref": "+#% to Critical Damage Bonus per Power Charge", "better": 1, "id": "critical_strike_multiplier_+_per_power_charge", "matchers": [{"string": "#% to Critical Damage Bonus per Power Charge", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4164870816"]}}} +{"ref": "Leech from Critical Hits is instant", "better": 1, "id": "base_leech_is_instant_on_critical", "matchers": [{"string": "Leech from Critical Hits is instant", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3389184522"]}}} +{"ref": "Targets can be affected by +# of your Poisons at the same time", "better": 1, "id": "number_of_additional_poison_stacks", "matchers": [{"string": "Targets can be affected by +# of your Poisons at the same time", "negate": false}], "trade": {"ids": null}} +{"ref": "Sacrifice #% of Life to gain that much Energy Shield when you Cast a Spell", "better": 1, "id": "sacrifice_%_maximum_life_to_gain_as_es_on_spell_cast", "matchers": [{"string": "Sacrifice #% of Life to gain that much Energy Shield when you Cast a Spell", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_613752285"]}}} +{"ref": "Culling Strike", "better": 1, "id": "kill_enemy_on_hit_if_under_10%_life", "matchers": [{"string": "Culling Strike", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2524254339"]}}} +{"ref": "Decimating Strike", "better": 1, "id": "decimating_strike", "matchers": [{"string": "Decimating Strike", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3872034802"]}}} +{"ref": "Cannot be Ignited", "better": 1, "id": "base_cannot_be_ignited", "matchers": [{"string": "Cannot be Ignited", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_331731406"]}}} +{"ref": "+# Physical Damage taken from Attack Hits", "better": 1, "id": "physical_attack_damage_taken_+", "matchers": [{"string": "# Physical Damage taken from Attack Hits", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3441651621"]}}} +{"ref": "Intelligence provides no inherent bonus to Maximum Mana", "better": 1, "id": "gain_no_maximum_mana_from_intelligence", "matchers": [{"string": "Intelligence provides no inherent bonus to Maximum Mana", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2546599258"]}}} +{"ref": "You have no Life Regeneration", "better": 1, "id": "no_life_regeneration", "matchers": [{"string": "You have no Life Regeneration", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_854225133"]}}} +{"ref": "Maximum # Fragile Regrowth", "better": 1, "id": "base_maximum_fragile_regrowth", "matchers": [{"string": "Maximum # Fragile Regrowth", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1173537953"]}}} +{"ref": "The Effect of Chill on you is reversed", "better": 1, "id": "chill_effect_is_reversed", "matchers": [{"string": "The Effect of Chill on you is reversed", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2955966707"]}}} +{"ref": "#% of Melee Physical Damage taken reflected to Attacker", "better": 1, "id": "melee_physical_damage_taken_%_to_deal_to_attacker", "matchers": [{"string": "#% of Melee Physical Damage taken reflected to Attacker", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1092987622"]}}} +{"ref": "#% of Physical Damage prevented Recouped as Life", "better": 1, "id": "physical_damage_prevented_recouped_as_life_%", "matchers": [{"string": "#% of Physical Damage prevented Recouped as Life", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1374654984"]}}} +{"ref": "Energy Shield Recharge is not interrupted by Damage if Recharge began Recently", "better": 1, "id": "energy_shield_recharge_is_not_interrupted_if_recharge_begaen_recently", "matchers": [{"string": "Energy Shield Recharge is not interrupted by Damage if Recharge began Recently", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1419390131"]}}} +{"ref": "Minions gain #% of their Maximum Life as Extra Maximum Energy Shield", "better": 1, "id": "minion_maximum_life_%_to_gain_as_maximum_energy_shield", "matchers": [{"string": "Minions gain #% of their Maximum Life as Extra Maximum Energy Shield", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_943702197"]}}} +{"ref": "Cannot be Shocked", "better": 1, "id": "base_cannot_be_shocked", "matchers": [{"string": "Cannot be Shocked", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_491899612"]}}} +{"ref": "#% chance for Flasks you use to not consume Charges", "better": 1, "id": "flasks_%_chance_to_not_consume_charges", "matchers": [{"string": "#% chance for Flasks you use to not consume Charges", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_311641062"]}}} +{"ref": "You have no Elemental Resistances", "better": 1, "id": "your_elemental_resistances_do_not_exist", "matchers": [{"string": "You have no Elemental Resistances", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1776968075"]}}} +{"ref": "Critical Hits Poison the enemy", "better": 1, "id": "poison_on_critical_strike", "matchers": [{"string": "Critical Hits Poison the enemy", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_62849030"]}}} +{"ref": "Reflects your other Ring", "better": 1, "id": "local_ring_duplicate_other_ring", "matchers": [{"string": "Reflects your other Ring", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_746505085"]}}} +{"ref": "#% more minimum Physical Attack Damage", "better": 1, "id": "unique_ryuslathas_clutches_minimum_physical_attack_damage_+%_final", "matchers": [{"string": "#% more minimum Physical Attack Damage", "negate": false}, {"string": "#% less minimum Physical Attack Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1715495976"]}}} +{"ref": "#% more maximum Physical Attack Damage", "better": 1, "id": "unique_ryuslathas_clutches_maximum_physical_attack_damage_+%_final", "matchers": [{"string": "#% more maximum Physical Attack Damage", "negate": false}, {"string": "#% less maximum Physical Attack Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3029185248"]}}} +{"ref": "Equipment and Skill Gems have #% increased Attribute Requirements", "better": 1, "id": "global_item_attribute_requirements_+%", "matchers": [{"string": "Equipment and Skill Gems have #% increased Attribute Requirements", "negate": false}, {"string": "Equipment and Skill Gems have #% reduced Attribute Requirements", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_752930724"]}}} +{"ref": "Permanently Intimidate enemies on Block", "better": 1, "id": "permanently_intimidate_enemy_on_block", "matchers": [{"string": "Permanently Intimidate enemies on Block", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2930706364"]}}} +{"ref": "Onslaught", "better": 1, "id": "base_should_have_onslaught_from_stat", "matchers": [{"string": "Onslaught", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1520059289"]}}} +{"ref": "#% chance to Intimidate Enemies for 4 seconds on Hit", "better": 1, "id": "chance_to_intimidate_on_hit_%", "matchers": [{"string": "#% chance to Intimidate Enemies for 4 seconds on Hit", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_78985352"]}}} +{"ref": "#% increased Experience gain", "better": 1, "id": "experience_gain_+%", "matchers": [{"string": "#% increased Experience gain", "negate": false}, {"string": "#% reduced Experience gain", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_57434274", "explicit.stat_3666934677"]}}} +{"ref": "#% chance to gain a Power Charge on Critical Hit", "better": 1, "id": "add_power_charge_on_critical_strike_%", "matchers": [{"string": "#% chance to gain a Power Charge on Critical Hit", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3814876985"]}}} +{"ref": "#% increased Strength Requirement", "better": 1, "id": "local_strength_requirement_+%", "matchers": [{"string": "#% increased Strength Requirement", "negate": false}, {"string": "#% reduced Strength Requirement", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_295075366"]}}} +{"ref": "Energy Shield Recharge starts when you use a Mana Flask", "better": 1, "id": "start_energy_shield_recharge_when_you_use_a_mana_flask", "matchers": [{"string": "Energy Shield Recharge starts when you use a Mana Flask", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2402413437"]}}} +{"ref": "#% increased Chance to be afflicted by Ailments when Hit", "better": 1, "id": "chance_to_be_inflicted_with_an_ailment_+%", "matchers": [{"string": "#% increased Chance to be afflicted by Ailments when Hit", "negate": false}, {"string": "#% reduced Chance to be afflicted by Ailments when Hit", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_892489594"]}}} +{"ref": "#% increased Movement Speed while affected by an Ailment", "better": 1, "id": "movement_speed_+%_while_affected_by_ailment", "matchers": [{"string": "#% increased Movement Speed while affected by an Ailment", "negate": false}, {"string": "#% reduced Movement Speed while affected by an Ailment", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_610276769"]}}} +{"ref": "Your Minions spread Caustic Ground on Death, dealing #% of their maximum Life as Chaos Damage per second", "better": 1, "id": "minion_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%", "matchers": [{"string": "Your Minions spread Caustic Ground on Death, dealing #% of their maximum Life as Chaos Damage per second", "negate": false}], "trade": {"ids": null}} +{"ref": "Causes Double Stun Buildup", "better": 1, "id": "local_double_hit_damage_stun_build_up", "matchers": [{"string": "Causes Double Stun Buildup", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_769129523"]}}} +{"ref": "Hits Break # Armour", "better": 1, "id": "local_apply_X_armour_break_on_hit", "matchers": [{"string": "Hits Break # Armour", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_289086688"]}}} +{"ref": "Apply Fire Exposure when fully breaking enemy Armour", "better": 1, "id": "local_apply_fire_exposure_on_full_armour_break", "matchers": [{"string": "Apply Fire Exposure when fully breaking enemy Armour", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3439162551"]}}} +{"ref": "Double Stun Threshold while Shield is Raised", "better": 1, "id": "local_shield_double_stun_threshold_while_active_blocking", "matchers": [{"string": "Double Stun Threshold while Shield is Raised", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3686997387"]}}} +{"ref": "Every Rage also grants #% increased Stun Threshold", "better": 1, "id": "stun_threshold_+%_per_rage", "matchers": [{"string": "Every Rage also grants #% increased Stun Threshold", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_352044736"]}}} +{"ref": "Every Rage also grants #% increased Armour", "better": 1, "id": "armour_+%_per_rage", "matchers": [{"string": "Every Rage also grants #% increased Armour", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2995914769"]}}} +{"ref": "Physical Damage is Pinning", "better": 1, "id": "base_physical_damage_can_pin", "matchers": [{"string": "Physical Damage is Pinning", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2041668411"]}}} +{"ref": "Gain #% of Physical Damage as Extra Damage of each Element with Attacks", "better": 1, "id": "non_skill_physical_damage_%_to_gain_as_each_element_with_attacks", "matchers": [{"string": "Gain #% of Physical Damage as Extra Damage of each Element with Attacks", "negate": false}], "trade": {"ids": null}} +{"ref": "Allies in your Presence have Block Chance equal to yours", "better": 1, "id": "override_block_chance_for_allies_in_your_presence", "matchers": [{"string": "Allies in your Presence have Block Chance equal to yours", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1361645249"]}}} +{"ref": "No Movement Speed Penalty while Shield is Raised", "better": 1, "id": "no_movement_penalty_while_shield_is_raised", "matchers": [{"string": "No Movement Speed Penalty while Shield is Raised", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_585231074"]}}} +{"ref": "Maim on Critical Hit", "better": 1, "id": "local_always_maim_on_crit", "matchers": [{"string": "Maim on Critical Hit", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2895144208"]}}} +{"ref": "Always deals Critical Hits against Heavy Stunned Enemies", "better": 1, "id": "local_always_crit_heavy_stunned_enemies", "matchers": [{"string": "Always deals Critical Hits against Heavy Stunned Enemies", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2214130968"]}}} +{"ref": "#% of your Life Regeneration is granted to Allies in your Presence", "better": 1, "id": "total_base_life_regeneration_rate_per_minute_%_granted_to_allies_in_your_presence", "matchers": [{"string": "#% of your Life Regeneration is granted to Allies in your Presence", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4287671144"]}}} +{"ref": "When a Party Member in your Presence Casts a Spell, you\\nSacrifice #% of Mana and they Leech that Mana", "better": 1, "id": "unique_%_maximum_mana_to_sacrifice_to_party_members_in_your_presence_when_they_cast_a_spell", "matchers": [{"string": "When a Party Member in your Presence Casts a Spell, you\\nSacrifice #% of Mana and they Leech that Mana", "negate": false}], "trade": {"ids": null}} +{"ref": "You cannot Block", "better": 1, "id": "cannot_block_attacks", "matchers": [{"string": "You cannot Block", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3162258068"]}}} +{"ref": "No Chance to Block", "better": 1, "id": "local_no_block_chance", "matchers": [{"string": "No Chance to Block", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1023752508"]}}} +{"ref": "Modifiers to Maximum Block Chance instead apply to Maximum Resistances", "better": 1, "id": "maximum_block_modifiers_apply_to_maximum_resistances_instead", "matchers": [{"string": "Modifiers to Maximum Block Chance instead apply to Maximum Resistances", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3679696791"]}}} +{"ref": "Can Block damage from all Hits", "better": 1, "id": "can_block_all_hits", "matchers": [{"string": "Can Block damage from all Hits", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3902042119"]}}} +{"ref": "Cannot use Shield Skills", "better": 1, "id": "your_shield_skills_are_disabled", "matchers": [{"string": "Cannot use Shield Skills", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_65135897"]}}} +{"ref": "You count as on Full Mana while at #% of maximum Mana or above", "better": 1, "id": "full_mana_threshold_%_override", "matchers": [{"string": "You count as on Full Mana while at #% of maximum Mana or above", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_423304126"]}}} +{"ref": "#% increased Attack Speed while on Full Mana", "better": 1, "id": "attack_speed_+%_while_on_full_mana", "matchers": [{"string": "#% increased Attack Speed while on Full Mana", "negate": false}, {"string": "#% reduced Attack Speed while on Full Mana", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_4145314483"]}}} +{"ref": "Fire Damage from Hits Contributes to Shock Chance instead of Ignite Chance and Magnitude", "better": 1, "id": "unique_fire_damage_shocks", "matchers": [{"string": "Fire Damage from Hits Contributes to Shock Chance instead of Ignite Chance and Magnitude", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2949096603"]}}} +{"ref": "Cold Damage from Hits Contributes to Ignite Chance and Magnitude instead of Chill Magnitude", "better": 1, "id": "unique_cold_damage_ignites", "matchers": [{"string": "Cold Damage from Hits Contributes to Ignite Chance and Magnitude instead of Chill Magnitude", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1261612903"]}}} +{"ref": "Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance", "better": 1, "id": "unique_lightning_damage_freezes", "matchers": [{"string": "Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1011772129"]}}} +{"ref": "Skills gain a Base Life Cost equal to #% of Base Mana Cost", "better": 1, "id": "base_skill_gain_life_cost_%_of_mana_cost", "matchers": [{"string": "Skills gain a Base Life Cost equal to #% of Base Mana Cost", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3605834869"]}}} +{"ref": "#% of Spell Damage Leeched as Life", "better": 1, "id": "base_life_leech_from_all_spell_damage_permyriad", "matchers": [{"string": "#% of Spell Damage Leeched as Life", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_782941180"]}}} +{"ref": "#% of Fire Damage from Hits taken as Physical Damage", "better": 1, "id": "base_fire_hit_damage_taken_%_as_physical", "matchers": [{"string": "#% of Fire Damage from Hits taken as Physical Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3205239847"]}}} +{"ref": "Your Critical Damage Bonus is 300%", "better": 1, "id": "critical_strike_multiplier_is_300", "matchers": [{"string": "Your Critical Damage Bonus is 300%", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_824024007"]}}} +{"ref": "Enemies in your Presence are Ignited as though dealt # Base Fire Damage", "better": 1, "id": "ignite_as_though_dealing_X_damage_in_your_presence", "matchers": [{"string": "Enemies in your Presence are Ignited as though dealt # Base Fire Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1433051415"]}}} +{"ref": "Reflects # to # Lightning Damage to Melee Attackers", "better": 1, "id": "minimum_lightning_damage_to_return_to_melee_attacker", "matchers": [{"string": "Reflects # to # Lightning Damage to Melee Attackers", "negate": false}], "trade": {"ids": null}} +{"ref": "Damage cannot bypass Energy Shield", "better": 1, "id": "unique_body_armour_shavronnes_wrappings_damage_cannot_bypass_energy_shield", "matchers": [{"string": "Damage cannot bypass Energy Shield", "negate": false}], "trade": {"ids": null}} +{"ref": "Bleeding you inflict is Aggravated", "better": 1, "id": "aggravate_inflicted_bleeding", "matchers": [{"string": "Bleeding you inflict is Aggravated", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_841429130"]}}} +{"ref": "#% chance to Aggravate Bleeding on targets you Critically Hit with Attacks", "better": 1, "id": "aggravate_bleeding_on_attack_crit_chance_%", "matchers": [{"string": "#% chance to Aggravate Bleeding on targets you Critically Hit with Attacks", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2438634449"]}}} +{"ref": "When you Leech Life from a Hit, Allies in your Presence also Leech the same amount of Life", "better": 1, "id": "life_leeched_from_hits_also_leeches_same_amount_to_allies_in_presence", "matchers": [{"string": "When you Leech Life from a Hit, Allies in your Presence also Leech the same amount of Life", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3605721598"]}}} +{"ref": "Gain 0% to #% increased Movement Speed at random when Hit, until Hit again", "better": 1, "id": "maximum_random_movement_velocity_+%_when_hit", "matchers": [{"string": "Gain 0% to #% increased Movement Speed at random when Hit, until Hit again", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_796381300"]}}} +{"ref": "Projectiles Split towards +# targets", "better": 1, "id": "projectile_number_to_split", "matchers": [{"string": "Projectiles Split towards +# targets", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to gain a Power Charge on Hit", "better": 1, "id": "add_power_charge_on_skill_hit_%", "matchers": [{"string": "#% chance to gain a Power Charge on Hit", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1453197917"]}}} +{"ref": "Lose all Power Charges on reaching maximum Power Charges", "better": 1, "id": "lose_all_power_charges_on_reaching_maximum_power_charges", "matchers": [{"string": "Lose all Power Charges on reaching maximum Power Charges", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2135899247"]}}} +{"ref": "Shocks you when you reach maximum Power Charges", "better": 1, "id": "shocked_for_4_seconds_on_reaching_maximum_power_charges", "matchers": [{"string": "Shocks you when you reach maximum Power Charges", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4256314560"]}}} +{"ref": "Minions deal #% of your Life as additional Cold Damage with Attacks", "better": 1, "id": "minion_attack_added_cold_damage_as_%_parent_maximum_life", "matchers": [{"string": "Minions deal #% of your Life as additional Cold Damage with Attacks", "negate": false}], "trade": {"ids": null}} +{"ref": "Reserves #% of Life", "better": 1, "id": "life_reserved_by_stat_%", "matchers": [{"string": "Reserves #% of Life", "negate": false}], "trade": {"ids": null}} +{"ref": "#% of Elemental Damage from Hits taken as Chaos Damage", "better": 1, "id": "elemental_damage_taken_%_as_chaos", "matchers": [{"string": "#% of Elemental Damage from Hits taken as Chaos Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% chance to be Poisoned", "better": 1, "id": "chance_to_be_poisoned_%", "matchers": [{"string": "#% chance to be Poisoned", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Endurance Charge Duration", "better": 1, "id": "endurance_charge_duration_+%", "matchers": [{"string": "#% increased Endurance Charge Duration", "negate": false}, {"string": "#% reduced Endurance Charge Duration", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1170174456"]}}} +{"ref": "Recover #% of Life for each Endurance Charge consumed", "better": 1, "id": "recover_%_life_per_endurance_charge_consumed", "matchers": [{"string": "Recover #% of Life for each Endurance Charge consumed", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_939832726"]}}} +{"ref": "#% increased Culling Strike Threshold", "better": 1, "id": "culling_strike_threshold_+%", "matchers": [{"string": "#% increased Culling Strike Threshold", "negate": false}, {"string": "#% reduced Culling Strike Threshold", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3563080185"]}}} +{"ref": "Your speed is unaffected by Slows", "better": 1, "id": "slows_have_no_potency_on_you", "matchers": [{"string": "Your speed is unaffected by Slows", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_50721145"]}}} +{"ref": "Regenerate #% of Life per second while on Low Life", "better": 1, "id": "life_regeneration_rate_per_minute_%_when_on_low_life", "matchers": [{"string": "Regenerate #% of Life per second while on Low Life", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3942946753"]}}} +{"ref": "+#% to Fire Resistance while on Low Life", "better": 1, "id": "fire_damage_resistance_%_when_on_low_life", "matchers": [{"string": "#% to Fire Resistance while on Low Life", "negate": false}, {"string": "#% to Fire Resistance while on Low Life", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_38301299"]}}} +{"ref": "#% increased Spell Damage per 10 Spirit", "better": 1, "id": "spell_damage_+%_per_10_spirit", "matchers": [{"string": "#% increased Spell Damage per 10 Spirit", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2412053423"]}}} +{"ref": "Life Recovery from Flasks also applies to Energy Shield", "better": 1, "id": "life_recovery_from_flasks_also_recovers_energy_shield", "matchers": [{"string": "Life Recovery from Flasks also applies to Energy Shield", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2812872407"]}}} +{"ref": "Unaffected by Curses", "better": 1, "id": "unaffected_by_curses", "matchers": [{"string": "Unaffected by Curses", "negate": false}], "trade": {"ids": null}} +{"ref": "Curse Reflection", "better": 1, "id": "reflect_curses", "matchers": [{"string": "Curse Reflection", "negate": false}], "trade": {"ids": null}} +{"ref": "You are Chilled while you are Bleeding", "better": 1, "id": "chilled_while_bleeding", "matchers": [{"string": "You are Chilled while you are Bleeding", "negate": false}], "trade": {"ids": null}} +{"ref": "You are Chilled when you are Poisoned", "better": 1, "id": "chilled_while_poisoned", "matchers": [{"string": "You are Chilled when you are Poisoned", "negate": false}], "trade": {"ids": null}} +{"ref": "Non-Chilled Enemies you inflict Bleeding on are Chilled", "better": 1, "id": "non_chilled_enemies_you_bleed_are_chilled", "matchers": [{"string": "Non-Chilled Enemies you inflict Bleeding on are Chilled", "negate": false}], "trade": {"ids": null}} +{"ref": "Non-Chilled Enemies you Poison are Chilled", "better": 1, "id": "non_chilled_enemies_you_poison_are_chilled", "matchers": [{"string": "Non-Chilled Enemies you Poison are Chilled", "negate": false}], "trade": {"ids": null}} +{"ref": "Armour also applies to Lightning damage taken from Hits", "better": 1, "id": "base_armour_applies_to_lightning_damage", "matchers": [{"string": "Armour also applies to Lightning damage taken from Hits", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2134207902"]}}} +{"ref": "Lightning Resistance does not affect Lightning damage taken", "better": 1, "id": "lightning_resistance_does_not_apply_to_lighting_damage", "matchers": [{"string": "Lightning Resistance does not affect Lightning damage taken", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3999959974"]}}} +{"ref": "Enemies in your Presence have Lightning Resistance equal to yours", "better": 1, "id": "enemies_in_presence_lightning_resist_equal_to_yours", "matchers": [{"string": "Enemies in your Presence have Lightning Resistance equal to yours", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1546580830"]}}} +{"ref": "#% of Physical damage from Hits taken as Lightning damage", "better": 1, "id": "physical_damage_taken_%_as_lightning", "matchers": [{"string": "#% of Physical damage from Hits taken as Lightning damage", "negate": false}], "trade": {"ids": null}} +{"ref": "You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently", "better": 1, "id": "max_chance_to_block_attacks_if_not_blocked_recently", "matchers": [{"string": "You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently", "negate": false}], "trade": {"ids": null}} +{"ref": "Life Recovery from Flasks is instant", "better": 1, "id": "life_flask_recovery_is_instant", "matchers": [{"string": "Life Recovery from Flasks is instant", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_720388959"]}}} +{"ref": "Life Leech can Overflow Maximum Life", "better": 1, "id": "life_leech_can_overcap_life", "matchers": [{"string": "Life Leech can Overflow Maximum Life", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2714890129"]}}} +{"ref": "Soul Eater", "better": 1, "id": "unique_gain_soul_eater", "matchers": [{"string": "Soul Eater", "negate": false}], "trade": {"ids": null}} +{"ref": "Presence Radius is doubled", "better": 1, "id": "unique_double_presence_radius", "matchers": [{"string": "Presence Radius is doubled", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1810907437"]}}} +{"ref": "Chaos Resistance is Zero", "better": 1, "id": "zero_chaos_resistance", "matchers": [{"string": "Chaos Resistance is Zero", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2439129490"]}}} +{"ref": "Recover #% of Life when you Block", "better": 1, "id": "recover_%_of_maximum_life_on_block", "matchers": [{"string": "Recover #% of Life when you Block", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2442647190"]}}} +{"ref": "Enemies you Curse are Intimidated", "better": 1, "id": "enemies_you_curse_are_intimidated", "matchers": [{"string": "Enemies you Curse are Intimidated", "negate": false}], "trade": {"ids": null}} +{"ref": "#% reduced Elemental Ailment Duration on you", "better": 1, "id": "self_elemental_status_duration_-%", "matchers": [{"string": "#% reduced Elemental Ailment Duration on you", "negate": false}, {"string": "#% increased Elemental Ailment Duration on you", "negate": true}], "trade": {"ids": null}} +{"ref": "Curses have no Activation Delay", "better": 1, "id": "unique_no_curse_delay", "matchers": [{"string": "Curses have no Activation Delay", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3751072557"]}}} +{"ref": "1% increased Movement Speed per # Evasion Rating\\nOther Modifiers to Movement Speed do not apply", "better": 1, "id": "movement_speed_is_only_base_+1%_per_x_evasion_rating", "matchers": [{"string": "1% increased Movement Speed per # Evasion Rating\\nOther Modifiers to Movement Speed do not apply", "negate": false}], "trade": {"ids": null}} +{"ref": "Life Flasks used while on Low Life apply Recovery Instantly", "better": 1, "id": "life_flask_recovery_is_instant_while_on_low_life", "matchers": [{"string": "Life Flasks used while on Low Life apply Recovery Instantly", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1200347828"]}}} +{"ref": "Mana Flasks used while on Low Mana apply Recovery Instantly", "better": 1, "id": "mana_flask_recovery_is_instant_while_on_low_mana", "matchers": [{"string": "Mana Flasks used while on Low Mana apply Recovery Instantly", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1839832419"]}}} +{"ref": "Attacks Gain #% of Damage as Extra Fire Damage", "better": 1, "id": "non_skill_base_all_damage_%_to_gain_as_fire_with_attacks", "matchers": [{"string": "Attacks Gain #% of Damage as Extra Fire Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1049080093"]}}} +{"ref": "Attacks Gain #% of Damage as Extra Cold Damage", "better": 1, "id": "non_skill_base_all_damage_%_to_gain_as_cold_with_attacks", "matchers": [{"string": "Attacks Gain #% of Damage as Extra Cold Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1484500028"]}}} +{"ref": "Attacks Gain #% of Physical Damage as extra Chaos Damage", "better": 1, "id": "non_skill_base_physical_damage_%_to_gain_as_chaos_with_attacks", "matchers": [{"string": "Attacks Gain #% of Physical Damage as extra Chaos Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_261503687"]}}} +{"ref": "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", "better": 1, "id": "enemies_chilled_by_hits_take_damage_increased_by_chill_effect", "matchers": [{"string": "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1816894864"]}}} +{"ref": "# Physical Damage taken on Minion Death", "better": 1, "id": "physical_damage_taken_on_minion_death", "matchers": [{"string": "# Physical Damage taken on Minion Death", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4176970656"]}}} +{"ref": "You gain Onslaught for # seconds on Kill", "better": 1, "id": "onslaught_buff_duration_on_kill_ms", "matchers": [{"string": "You gain Onslaught for # seconds on Kill", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1195849808"]}}} +{"ref": "Deal #% increased Damage with Hits to Rare or Unique Enemies for each second they've ever been in your Presence, up to a maximum of 200%", "better": 1, "id": "unique_damage_+%_vs_rare_or_unique_enemy_per_second_ever_in_presence_up_to_max", "matchers": [{"string": "Deal #% increased Damage with Hits to Rare or Unique Enemies for each second they've ever been in your Presence, up to a maximum of 200%", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4258409981"]}}} +{"ref": "Projectiles Pierce all Ignited enemies", "better": 1, "id": "always_pierce_burning_enemies", "matchers": [{"string": "Projectiles Pierce all Ignited enemies", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2214228141"]}}} +{"ref": "#% increased Stun Recovery", "better": 1, "id": "base_stun_recovery_+%", "matchers": [{"string": "#% increased Stun Recovery", "negate": false}, {"string": "#% reduced Stun Recovery", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2511217560"]}}} +{"ref": "Increases and Reductions to Spell Damage also apply to Attacks", "better": 1, "id": "additive_spell_damage_modifiers_apply_to_attack_damage", "matchers": [{"string": "Increases and Reductions to Spell Damage also apply to Attacks", "negate": false}], "trade": {"ids": null}} +{"ref": "Life Recharges", "better": 1, "id": "base_life_recharges_like_energy_shield", "matchers": [{"string": "Life Recharges", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3971919056"]}}} +{"ref": "+# to maximum number of Summoned Totems", "better": 1, "id": "number_of_additional_totems_allowed", "matchers": [{"string": "# to maximum number of Summoned Totems", "negate": false}], "trade": {"ids": null}} +{"ref": "Inflicts a random Hex on you when your Totems die", "better": 1, "id": "randomly_cursed_when_totems_die_curse_level", "matchers": [{"string": "Inflicts a random Hex on you when your Totems die", "negate": false}], "trade": {"ids": null}} +{"ref": "Corpses in your Presence Explode when you Warcry,\\ndealing #% of their Life as Physical Damage", "better": 1, "id": "corpses_in_your_presence_explode_dealing_%_maximum_life_physical_damage_on_warcry", "matchers": [{"string": "Corpses in your Presence Explode when you Warcry,\\ndealing #% of their Life as Physical Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Warcry Skills have #% increased Area of Effect", "better": 1, "id": "warcry_skill_area_of_effect_+%", "matchers": [{"string": "Warcry Skills have #% increased Area of Effect", "negate": false}, {"string": "Warcry Skills have #% reduced Area of Effect", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2567751411"]}}} +{"ref": "Totems Reflect #% of their maximum Life as Fire Damage to nearby Enemies when Hit", "better": 1, "id": "totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit", "matchers": [{"string": "Totems Reflect #% of their maximum Life as Fire Damage to nearby Enemies when Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Melee Critical Damage Bonus", "better": 1, "id": "melee_weapon_critical_strike_multiplier_+", "matchers": [{"string": "#% to Melee Critical Damage Bonus", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Physical Damage taken", "better": 1, "id": "physical_damage_taken_+%", "matchers": [{"string": "#% increased Physical Damage taken", "negate": false}, {"string": "#% reduced Physical Damage taken", "negate": true}], "trade": {"ids": null}} +{"ref": "Gain # Rage after Spending a total of 200 Mana", "better": 1, "id": "gain_x_rage_per_200_mana_spent", "matchers": [{"string": "Gain # Rage after Spending a total of 200 Mana", "negate": false}], "trade": {"ids": null}} +{"ref": "Rage grants Spell Damage instead of Attack Damage", "better": 1, "id": "rage_grants_spell_damage_instead", "matchers": [{"string": "Rage grants Spell Damage instead of Attack Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Global Defences", "better": 1, "id": "global_defences_+%", "matchers": [{"string": "#% increased Global Defences", "negate": false}, {"string": "#% reduced Global Defences", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1389153006"]}}} +{"ref": "#% increased Quantity of Gold Dropped by Slain Enemies", "better": 1, "id": "gold_+%_from_enemies", "matchers": [{"string": "#% increased Quantity of Gold Dropped by Slain Enemies", "negate": false}, {"string": "#% reduced Quantity of Gold Dropped by Slain Enemies", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3175163625"]}}} +{"ref": "Cannot have Energy Shield", "better": 1, "id": "cannot_have_current_energy_shield", "matchers": [{"string": "Cannot have Energy Shield", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_410952253"]}}} +{"ref": "Regenerate # Life per second per Maximum Energy Shield", "better": 1, "id": "life_regeneration_per_minute_per_maximum_energy_shield", "matchers": [{"string": "Regenerate # Life per second per Maximum Energy Shield", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3276271783"]}}} +{"ref": "Recover #% of Missing Life before being Hit by an Enemy", "better": 1, "id": "missing_life_%_gained_as_life_before_hit", "matchers": [{"string": "Recover #% of Missing Life before being Hit by an Enemy", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1990472846"]}}} +{"ref": "You have no Accuracy Penalty at Distance", "better": 1, "id": "deadeye_accuracy_unaffected_by_range", "matchers": [{"string": "You have no Accuracy Penalty at Distance", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3070990531"]}}} +{"ref": "Increases and Reductions to Minion Damage also affect you", "better": 1, "id": "minion_damage_increases_and_reductions_also_affects_you", "matchers": [{"string": "Increases and Reductions to Minion Damage also affect you", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1631928082"]}}} +{"ref": "Increases and Reductions to Minion Attack Speed also affect you", "better": 1, "id": "additive_modifiers_to_minion_attack_speed_also_affect_you", "matchers": [{"string": "Increases and Reductions to Minion Attack Speed also affect you", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2293111154"]}}} +{"ref": "#% increased Mana Regeneration Rate while stationary", "better": 1, "id": "mana_regeneration_rate_+%_while_stationary", "matchers": [{"string": "#% increased Mana Regeneration Rate while stationary", "negate": false}, {"string": "#% reduced Mana Regeneration Rate while stationary", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3308030688"]}}} +{"ref": "Gain #% of Maximum Life as Extra Maximum Energy Shield", "better": 1, "id": "maximum_life_%_to_gain_as_maximum_energy_shield", "matchers": [{"string": "Gain #% of Maximum Life as Extra Maximum Energy Shield", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1228337241"]}}} +{"ref": "#% of Damage taken bypasses Energy Shield", "better": 1, "id": "base_all_damage_bypass_energy_shield_%", "matchers": [{"string": "#% of Damage taken bypasses Energy Shield", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2448633171"]}}} +{"ref": "You lose #% of Energy Shield per second", "better": 1, "id": "energy_shield_lost_per_minute_%", "matchers": [{"string": "You lose #% of Energy Shield per second", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2350411833"]}}} +{"ref": "Excess Life Recovery from Leech is applied to Energy Shield", "better": 1, "id": "life_leech_excess_goes_to_energy_shield", "matchers": [{"string": "Excess Life Recovery from Leech is applied to Energy Shield", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_999436592"]}}} +{"ref": "Minions in Presence lose Life when you lose Life\\nMinions in Presence gain Life when you gain Life", "better": 1, "id": "unique_minions_in_presence_gain_and_lose_life_when_you_do", "matchers": [{"string": "Minions in Presence lose Life when you lose Life\\nMinions in Presence gain Life when you gain Life", "negate": false}], "trade": {"ids": null}} +{"ref": "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 2 seconds", "better": 1, "id": "ignite_proliferation_radius_15", "matchers": [{"string": "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 2 seconds", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3314057862"]}}} +{"ref": "Your Critical Hits do not deal extra Damage", "better": 1, "id": "no_critical_strike_multiplier", "matchers": [{"string": "Your Critical Hits do not deal extra Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4058681894"]}}} +{"ref": "Critical Hits do not deal extra Damage", "better": 1, "id": "local_no_critical_strike_multiplier", "matchers": [{"string": "Critical Hits do not deal extra Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1508661598"]}}} +{"ref": "+#% to Thorns Critical Hit Chance", "better": 1, "id": "base_thorns_critical_strike_chance", "matchers": [{"string": "#% to Thorns Critical Hit Chance", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2715190555"]}}} +{"ref": "#% chance for Slam Skills you use yourself to cause Aftershocks", "better": 1, "id": "slam_aftershock_chance_%", "matchers": [{"string": "#% chance for Slam Skills you use yourself to cause Aftershocks", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1157523820"]}}} +{"ref": "Energy Generation is doubled", "better": 1, "id": "energy_generation_is_doubled", "matchers": [{"string": "Energy Generation is doubled", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_793801176"]}}} +{"ref": "#% increased Reload Speed", "better": 1, "id": "local_reload_speed_+%", "matchers": [{"string": "#% increased Reload Speed", "negate": false}, {"string": "#% reduced Reload Speed", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_710476746"]}}} +{"ref": "#% chance to not consume a bolt if you've Reloaded Recently", "better": 1, "id": "crossbow_attack_%_chance_to_not_consume_ammo_if_reloaded_recently", "matchers": [{"string": "#% chance to not consume a bolt if you've Reloaded Recently", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_842299438"]}}} +{"ref": "Skills reserve 50% less Spirit", "better": 1, "id": "unique_spirit_reservations_are_halved", "matchers": [{"string": "Skills reserve 50% less Spirit", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2838161567"]}}} +{"ref": "This Weapon's Critical Hit Chance is {0:d}%", "better": 1, "id": "local_weapon_base_crit_chance_permyriad_override", "matchers": [{"string": "This Weapon's Critical Hit Chance is {0:d}%", "negate": false}], "trade": {"ids": null}} +{"ref": "Attacks Chain an additional time", "better": 1, "id": "attacks_num_of_additional_chains", "matchers": [{"string": "Attacks Chain an additional time", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3868118796"]}}} +{"ref": "+# Intelligence Requirement", "better": 1, "id": "local_intelligence_requirement_+", "matchers": [{"string": "# Intelligence Requirement", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2153364323"]}}} +{"ref": "Enemies Chilled by your Hits can be Shattered as though Frozen", "better": 1, "id": "chills_from_your_hits_cause_shattering", "matchers": [{"string": "Enemies Chilled by your Hits can be Shattered as though Frozen", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3119292058"]}}} +{"ref": "Trigger Ember Fusillade Skill on casting a Spell", "better": 1, "id": "local_display_triggers_level_x_ember_fusillade_on_spell_cast", "matchers": [{"string": "Trigger Ember Fusillade Skill on casting a Spell", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_826162720"]}}} +{"ref": "Trigger Spark Skill on killing a Shocked Enemy", "better": 1, "id": "local_display_triggers_level_x_spark_on_killing_shocked_enemy_with_enemy_location_as_origin", "matchers": [{"string": "Trigger Spark Skill on killing a Shocked Enemy", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_811217923"]}}} +{"ref": "Trigger Lightning Bolt Skill on Critical Hit", "better": 1, "id": "local_display_triggers_level_x_lightning_bolt_on_critical_strike", "matchers": [{"string": "Trigger Lightning Bolt Skill on Critical Hit", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_704919631"]}}} +{"ref": "You can only Socket Ruby Jewels in this item", "better": 1, "id": "local_can_only_socket_ruby_gems", "matchers": [{"string": "You can only Socket Ruby Jewels in this item", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4031148736"]}}} +{"ref": "You can only Socket Emerald Jewels in this item", "better": 1, "id": "local_can_only_socket_emerald_gems", "matchers": [{"string": "You can only Socket Emerald Jewels in this item", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3598729471"]}}} +{"ref": "You can only Socket Sapphire Jewels in this item", "better": 1, "id": "local_can_only_socket_sapphire_gems", "matchers": [{"string": "You can only Socket Sapphire Jewels in this item", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_21302430"]}}} +{"ref": "Fire Resistance is unaffected by Area Penalties", "better": 1, "id": "fire_resist_unaffected_by_area_penalties", "matchers": [{"string": "Fire Resistance is unaffected by Area Penalties", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3247805335"]}}} +{"ref": "Cold Resistance is unaffected by Area Penalties", "better": 1, "id": "cold_resist_unaffected_by_area_penalties", "matchers": [{"string": "Cold Resistance is unaffected by Area Penalties", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4207433208"]}}} +{"ref": "Lightning Resistance is unaffected by Area Penalties", "better": 1, "id": "lightning_resist_unaffected_by_area_penalties", "matchers": [{"string": "Lightning Resistance is unaffected by Area Penalties", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3631920880"]}}} +{"ref": "DNT Trigger Gas Cloud Skill on Hitting with your Main Hand", "better": 1, "id": "local_display_triggers_level_x_gas_cloud_on_main_hand_hit", "matchers": [{"string": "DNT Trigger Gas Cloud Skill on Hitting with your Main Hand", "negate": false}], "trade": {"ids": null}} +{"ref": "DNT Trigger Detonation Skill on Hitting with your Off Hand", "better": 1, "id": "local_display_triggers_level_x_detonation_on_off_hand_hit", "matchers": [{"string": "DNT Trigger Detonation Skill on Hitting with your Off Hand", "negate": false}], "trade": {"ids": null}} +{"ref": "Take # Fire Damage when you Ignite an Enemy", "better": 1, "id": "fire_damage_taken_when_enemy_ignited", "matchers": [{"string": "Take # Fire Damage when you Ignite an Enemy", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2518598473"]}}} +{"ref": "+# metre to Dodge Roll distance", "better": 1, "id": "dodge_roll_base_travel_distance", "matchers": [{"string": "# metre to Dodge Roll distance", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_258119672"], "sanctum": ["sanctum.stat_1040593638"]}}} +{"ref": "#% increased Evasion Rating if you've Dodge Rolled Recently", "better": 1, "id": "evasion_rating_+%_if_you_dodge_rolled_recently", "matchers": [{"string": "#% increased Evasion Rating if you've Dodge Rolled Recently", "negate": false}, {"string": "#% reduced Evasion Rating if you've Dodge Rolled Recently", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1040569494"]}}} +{"ref": "Critical Hits ignore Enemy Monster Elemental Resistances", "better": 1, "id": "critical_strikes_ignore_elemental_resistances", "matchers": [{"string": "Critical Hits ignore Enemy Monster Elemental Resistances", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1094937621"]}}} +{"ref": "Life Regeneration is applied to Energy Shield instead", "better": 1, "id": "regenerate_energy_shield_instead_of_life", "matchers": [{"string": "Life Regeneration is applied to Energy Shield instead", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_632761194"]}}} +{"ref": "Gain #% of Maximum Mana as Extra Maximum Energy Shield", "better": 1, "id": "mana_%_to_gain_as_energy_shield", "matchers": [{"string": "Gain #% of Maximum Mana as Extra Maximum Energy Shield", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3027830452"]}}} +{"ref": "#% chance when you gain a Charge to gain an additional Charge", "better": 1, "id": "chance_to_gain_1_more_charge_%", "matchers": [{"string": "#% chance when you gain a Charge to gain an additional Charge", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1555237944"]}}} +{"ref": "Can be modified while Corrupted", "better": 1, "id": "local_item_allow_modification_while_corrupted", "matchers": [{"string": "Can be modified while Corrupted", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1161337167"]}}} +{"ref": "#% of charges used by Charms granted to your Life Flasks", "better": 1, "id": "charm_charges_used_%_granted_to_life_flasks", "matchers": [{"string": "#% of charges used by Charms granted to your Life Flasks", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2369960685"]}}} +{"ref": "#% increased effect of Socketed Soul Cores", "better": 1, "id": "local_soul_core_effect_+%", "matchers": [{"string": "#% increased effect of Socketed Soul Cores", "negate": false}, {"string": "#% reduced effect of Socketed Soul Cores", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_4065505214"]}}} +{"ref": "Gain # random Charge on reaching Maximum Rage", "better": 1, "id": "gain_X_random_charges_on_reaching_maximum_rage", "matchers": [{"string": "Gain # random Charge on reaching Maximum Rage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2906384323"]}}} +{"ref": "Lose all Rage on reaching Maximum Rage", "better": 1, "id": "lose_all_rage_on_reaching_maximum_rage", "matchers": [{"string": "Lose all Rage on reaching Maximum Rage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3851480592"]}}} +{"ref": "Life Recovery from Regeneration is not applied", "better": 1, "id": "life_recovery_from_regeneration_is_not_applied", "matchers": [{"string": "Life Recovery from Regeneration is not applied", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3947672598"]}}} +{"ref": "Every 4 seconds, Recover 1 Life for every # Life Recovery per second from Regeneration", "better": 1, "id": "recover_1_life_per_x_life_regeneration_per_minute_every_4_seconds", "matchers": [{"string": "Every 4 seconds, Recover 1 Life for every # Life Recovery per second from Regeneration", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1457411584"]}}} +{"ref": "Skills have +# to Limit", "better": 1, "id": "base_limit_+", "matchers": [{"string": "Skills have +# to Limit", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2942704390"]}}} +{"ref": "Inflict Fire Exposure on Shocking an Enemy", "better": 1, "id": "inflict_fire_exposure_on_shock", "matchers": [{"string": "Inflict Fire Exposure on Shocking an Enemy", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1538879632"]}}} +{"ref": "Inflict Cold Exposure on Igniting an Enemy", "better": 1, "id": "inflict_cold_exposure_on_ignite", "matchers": [{"string": "Inflict Cold Exposure on Igniting an Enemy", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3314536008"]}}} +{"ref": "Inflict Lightning Exposure on Critical Hit", "better": 1, "id": "inflict_lightning_exposure_on_crit", "matchers": [{"string": "Inflict Lightning Exposure on Critical Hit", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2665488635"]}}} +{"ref": "Enemies in your Presence gain Critical Weakness every second", "better": 1, "id": "enemies_in_presence_gain_critical_weakness_every_second", "matchers": [{"string": "Enemies in your Presence gain Critical Weakness every second", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3587857709"]}}} +{"ref": "Enemies in your Presence are Blinded", "better": 1, "id": "enemies_in_presence_are_blinded", "matchers": [{"string": "Enemies in your Presence are Blinded", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1464727508"]}}} +{"ref": "Skills have +# seconds to Cooldown", "better": 1, "id": "unique_cooldown_modifier_ms", "matchers": [{"string": "Skills have +# seconds to Cooldown", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to not destroy Corpses when Consuming Corpses", "better": 1, "id": "base_chance_to_not_consume_corpse_%", "matchers": [{"string": "#% chance to not destroy Corpses when Consuming Corpses", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_965913123"]}}} +{"ref": "Can't use other Rings", "better": 1, "id": "local_ring_disable_other_ring", "matchers": [{"string": "Can't use other Rings", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_64726306"]}}} +{"ref": "#% increased Duration of Curses on you", "better": 1, "id": "self_curse_duration_+%", "matchers": [{"string": "#% increased Duration of Curses on you", "negate": false}, {"string": "#% reduced Duration of Curses on you", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2920970371"]}}} +{"ref": "Left ring slot: Projectiles from Spells Fork", "better": 1, "id": "local_left_ring_slot_projectiles_from_spells_fork", "matchers": [{"string": "Left ring slot: Projectiles from Spells Fork", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2437476305"]}}} +{"ref": "Left ring slot: Projectiles from Spells cannot Chain", "better": 1, "id": "local_left_ring_slot_projectiles_from_spells_cannot_chain", "matchers": [{"string": "Left ring slot: Projectiles from Spells cannot Chain", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3647242059"]}}} +{"ref": "Right ring slot: Projectiles from Spells Chain +# times", "better": 1, "id": "local_right_ring_slot_number_of_additional_chains_for_spell_projectiles", "matchers": [{"string": "Right ring slot: Projectiles from Spells Chain +# times", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1555918911"]}}} +{"ref": "Right ring slot: Projectiles from Spells cannot Fork", "better": 1, "id": "local_right_ring_slot_projectiles_from_spells_cannot_fork", "matchers": [{"string": "Right ring slot: Projectiles from Spells cannot Fork", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2933024469"]}}} +{"ref": "Projectiles from Spells cannot Pierce", "better": 1, "id": "projectiles_from_spells_cannot_pierce", "matchers": [{"string": "Projectiles from Spells cannot Pierce", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3826125995"]}}} +{"ref": "Excess Life Recovery added as Guard for # seconds", "better": 1, "id": "local_unique_flask_life_recovered_above_effective_life_is_instead_added_as_guard_for_X_seconds", "matchers": [{"string": "Excess Life Recovery added as Guard for # seconds", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_636464211"]}}} +{"ref": "Alternating every 5 seconds:\\nTake #% more Damage from Hits\\nTake #% more Damage over time", "better": 1, "id": "has_trickster_alternating_damage_taken_+%_final", "matchers": [{"string": "Alternating every 5 seconds:\\nTake #% more Damage from Hits\\nTake #% more Damage over time", "negate": false}, {"string": "Alternating every 5 seconds:\\nTake #% less Damage from Hits\\nTake #% less Damage over time", "negate": true}], "trade": {"ids": null}} +{"ref": "Block chance is Lucky", "better": 1, "id": "block_chance_is_lucky", "matchers": [{"string": "Block chance is Lucky", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1469179771"]}}} +{"ref": "Charms use no Charges", "better": 1, "id": "charms_use_no_charges", "matchers": [{"string": "Charms use no Charges", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2620375641"]}}} +{"ref": "Aggravate Bleeding on Enemies when they Enter your Presence", "better": 1, "id": "aggravate_bleeding_on_enemies_when_they_enter_your_presence", "matchers": [{"string": "Aggravate Bleeding on Enemies when they Enter your Presence", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_874646180"]}}} +{"ref": "Skills gain #% of Damage as Chaos Damage per 3 Life Cost", "better": 1, "id": "non_skill_all_damage_%_to_gain_as_chaos_per_3_life_cost", "matchers": [{"string": "Skills gain #% of Damage as Chaos Damage per 3 Life Cost", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4117005593"]}}} +{"ref": "+# to Spirit per Socketed Rune or Soul Core", "better": 1, "id": "local_spirit_+_per_rune_or_soul_core", "matchers": [{"string": "# to Spirit per Socketed Rune or Soul Core", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Maximum Life per Socketed Rune or Soul Core", "better": 1, "id": "local_maximum_life_+%_per_rune_or_soul_core", "matchers": [{"string": "#% increased Maximum Life per Socketed Rune or Soul Core", "negate": false}, {"string": "#% reduced Maximum Life per Socketed Rune or Soul Core", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2702182380"]}}} +{"ref": "#% increased Maximum Mana per Socketed Rune or Soul Core", "better": 1, "id": "local_maximum_mana_+%_per_rune_or_soul_core", "matchers": [{"string": "#% increased Maximum Mana per Socketed Rune or Soul Core", "negate": false}, {"string": "#% reduced Maximum Mana per Socketed Rune or Soul Core", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_911712882"]}}} +{"ref": "#% increased Global Defences per Socketed Rune or Soul Core", "better": 1, "id": "local_global_defences_+%_per_rune_or_soul_core", "matchers": [{"string": "#% increased Global Defences per Socketed Rune or Soul Core", "negate": false}, {"string": "#% reduced Global Defences per Socketed Rune or Soul Core", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1225174187"]}}} +{"ref": "#% increased Rarity of Items found per Socketed Rune or Soul Core", "better": 1, "id": "local_item_found_rarity_+%_per_rune_or_soul_core", "matchers": [{"string": "#% increased Rarity of Items found per Socketed Rune or Soul Core", "negate": false}, {"string": "#% reduced Rarity of Items found per Socketed Rune or Soul Core", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_313223231"]}}} +{"ref": "+#% to all Elemental Resistances per Socketed Rune or Soul Core", "better": 1, "id": "local_resist_all_elements_+%_per_rune_or_soul_core", "matchers": [{"string": "#% to all Elemental Resistances per Socketed Rune or Soul Core", "negate": false}, {"string": "-#% to all Elemental Resistances per Socketed Rune or Soul Core", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Attributes per Socketed Rune or Soul Core", "better": 1, "id": "local_all_attributes_+%_per_rune_or_soul_core", "matchers": [{"string": "#% increased Attributes per Socketed Rune or Soul Core", "negate": false}, {"string": "#% reduced Attributes per Socketed Rune or Soul Core", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2513318031"]}}} +{"ref": "On Hitting an enemy, gains maximum added Lightning damage equal to\\nthe enemy's Power for 6 seconds, up to a total of #", "better": 1, "id": "local_maximum_added_lightning_damage_equal_to_total_monster_power_of_enemies_hit_in_past_6_seconds_up_to_X", "matchers": [{"string": "On Hitting an enemy, gains maximum added Lightning damage equal to\\nthe enemy's Power for 6 seconds, up to a total of #", "negate": false}], "trade": {"ids": null}} +{"ref": "You can use two copies of the same Support Gem in different Skills", "better": 1, "id": "support_gem_limit_+", "matchers": [{"string": "You can use two copies of the same Support Gem in different Skills", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_898131228"]}}} +{"ref": "Immobilise enemies at #% buildup instead of 100%", "better": 1, "id": "crowd_control_effects_are_triggered_at_%_poise_threshold_instead", "matchers": [{"string": "Immobilise enemies at #% buildup instead of 100%", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4238331303"]}}} +{"ref": "Enemies Immobilised by you take #% less Damage", "better": 1, "id": "unique_crowd_controlled_enemy_damage_taken_-%_final", "matchers": [{"string": "Enemies Immobilised by you take #% less Damage", "negate": false}, {"string": "Enemies Immobilised by you take #% more Damage", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1613322341"]}}} +{"ref": "Dodge Roll avoids all Hits", "better": 1, "id": "dodge_roll_can_avoid_all_damage", "matchers": [{"string": "Dodge Roll avoids all Hits", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3518087336"]}}} +{"ref": "#% less Movement and Skill Speed per Dodge Roll in the past 20 seconds", "better": 1, "id": "unique_movement_speed_and_skill_speed_-%_final_per_number_of_times_dodge_rolled_in_past_20_seconds", "matchers": [{"string": "#% less Movement and Skill Speed per Dodge Roll in the past 20 seconds", "negate": false}, {"string": "#% more Movement and Skill Speed per Dodge Roll in the past 20 seconds", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3156445245"]}}} +{"ref": "Allies in your Presence Gain #% of Damage as Extra Fire Damage", "better": 1, "id": "allies_in_presence_damage_%_to_gain_as_fire", "matchers": [{"string": "Allies in your Presence Gain #% of Damage as Extra Fire Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2173791158"]}}} +{"ref": "Allies in your Presence Regenerate #% of their Maximum Life per second", "better": 1, "id": "allies_in_presence_life_regeneration_rate_per_minute_equal_to_their_maximum_life_%", "matchers": [{"string": "Allies in your Presence Regenerate #% of their Maximum Life per second", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3081479811"]}}} +{"ref": "Enemies in your Presence Resist Elemental Damage based on their Lowest Resistance", "better": 1, "id": "enemies_in_presence_elemental_damage_resisted_by_lowest_elemental_resistance", "matchers": [{"string": "Enemies in your Presence Resist Elemental Damage based on their Lowest Resistance", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2786852525"]}}} +{"ref": "Enemies in your Presence are Intimidated", "better": 1, "id": "enemies_in_presence_are_intimidated", "matchers": [{"string": "Enemies in your Presence are Intimidated", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3491722585"]}}} +{"ref": "#% chance to Avoid Physical Damage from Hits", "better": 1, "id": "avoid_physical_damage_%", "matchers": [{"string": "#% chance to Avoid Physical Damage from Hits", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2415497478"]}}} +{"ref": "#% chance to Avoid Chaos Damage from Hits", "better": 1, "id": "avoid_chaos_damage_%", "matchers": [{"string": "#% chance to Avoid Chaos Damage from Hits", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1563503803"]}}} +{"ref": "Skills have a #% longer Perfect Timing window", "better": 1, "id": "perfect_timing_window_ms_+%", "matchers": [{"string": "Skills have a #% longer Perfect Timing window", "negate": false}, {"string": "Skills have a #% shorter Perfect Timing window", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1373370443"]}}} +{"ref": "Recover all Mana when Used", "better": 1, "id": "local_unique_flask_recover_all_mana_on_use", "matchers": [{"string": "Recover all Mana when Used", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1002973905"]}}} +{"ref": "Every 3 seconds during Effect, deal #% of Mana spent in those seconds as Chaos Damage to Enemies within 3 metres", "better": 1, "id": "local_unique_flask_nova_with_chaos_damage_equal_to_%_mana_spent_during_flask_effect", "matchers": [{"string": "Every 3 seconds during Effect, deal #% of Mana spent in those seconds as Chaos Damage to Enemies within 3 metres", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1910039112"]}}} +{"ref": "Deals #% of current Mana as Chaos Damage to you when Effect ends", "better": 1, "id": "local_unique_flask_take_chaos_damage_equal_to_current_mana_%_when_flask_effect_ends", "matchers": [{"string": "Deals #% of current Mana as Chaos Damage to you when Effect ends", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3311259821"]}}} +{"ref": "Effect is not removed when Unreserved Mana is Filled", "better": 1, "id": "local_flask_effect_not_removed_at_full_mana", "matchers": [{"string": "Effect is not removed when Unreserved Mana is Filled", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3969608626"]}}} +{"ref": "#% chance for Trigger skills to refund half of Energy Spent", "better": 1, "id": "trigger_skills_refund_half_energy_spent_chance_%", "matchers": [{"string": "#% chance for Trigger skills to refund half of Energy Spent", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased bonuses gained from Equipped Rings", "better": 1, "id": "equipped_rings_effect_of_bonuses_+%", "matchers": [{"string": "#% increased bonuses gained from Equipped Rings", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2793222406"]}}} +{"ref": "Enemies in your Presence have Fire Exposure", "better": 1, "id": "enemies_in_presence_have_fire_exposure", "matchers": [{"string": "Enemies in your Presence have Fire Exposure", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1069772386"]}}} +{"ref": "Critical Hits Ignore Enemy Monster Lightning Resistance", "better": 1, "id": "critical_strikes_ignore_lightning_resistance", "matchers": [{"string": "Critical Hits Ignore Enemy Monster Lightning Resistance", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1289045485"]}}} +{"ref": "Blind Chilled enemies on Hit", "better": 1, "id": "blind_chilled_enemies_on_hit_%", "matchers": [{"string": "Blind Chilled enemies on Hit", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3450276548"]}}} +{"ref": "Armour is increased by Overcapped Fire Resistance", "better": 1, "id": "armour_increased_by_overcapped_fire_resistance", "matchers": [{"string": "Armour is increased by Overcapped Fire Resistance", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2129352930"]}}} +{"ref": "Evasion Rating is increased by Overcapped Lightning Resistance", "better": 1, "id": "evasion_rating_increased_by_overcapped_lightning_resistance", "matchers": [{"string": "Evasion Rating is increased by Overcapped Lightning Resistance", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3924187855"]}}} +{"ref": "Energy Shield is increased by Overcapped Cold Resistance", "better": 1, "id": "energy_shield_increased_by_overcapped_cold_resistance", "matchers": [{"string": "Energy Shield is increased by Overcapped Cold Resistance", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3377256514"]}}} +{"ref": "Elemental Ailment Threshold is increased by Overcapped Chaos Resistance", "better": 1, "id": "ailment_threshold_increased_by_overcapped_chaos_resistance", "matchers": [{"string": "Elemental Ailment Threshold is increased by Overcapped Chaos Resistance", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_83828836"]}}} +{"ref": "Chaos Damage from Hits also Contributes to Freeze Buildup", "better": 1, "id": "chaos_damage_can_freeze", "matchers": [{"string": "Chaos Damage from Hits also Contributes to Freeze Buildup", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2973498992"]}}} +{"ref": "Chaos Damage from Hits also Contributes to Electrocute Buildup", "better": 1, "id": "base_chaos_damage_can_electrocute", "matchers": [{"string": "Chaos Damage from Hits also Contributes to Electrocute Buildup", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2315177528"]}}} +{"ref": "Adds # to # Lightning Damage to Attacks per 10 Intelligence", "better": 1, "id": "minimum_added_lightning_damage_to_attacks_per_10_intelligence", "matchers": [{"string": "Adds # to # Lightning Damage to Attacks per 10 Intelligence", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3168149399"]}}} +{"ref": "#% increased Attack Speed per 25 Dexterity", "better": 1, "id": "attack_speed_+%_per_25_dex", "matchers": [{"string": "#% increased Attack Speed per 25 Dexterity", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2241560081"]}}} +{"ref": "Minions' Resistances are equal to yours", "better": 1, "id": "minion_resistances_equal_yours", "matchers": [{"string": "Minions' Resistances are equal to yours", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3045072899"]}}} +{"ref": "You take Fire Damage instead of Physical Damage from Bleeding", "better": 1, "id": "bleeding_damage_on_self_taken_as_fire_instead", "matchers": [{"string": "You take Fire Damage instead of Physical Damage from Bleeding", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2022332470"]}}} +{"ref": "Lightning Damage of Enemies Hitting you is Lucky", "better": 1, "id": "enemies_extra_damage_rolls_with_lightning_damage", "matchers": [{"string": "Lightning Damage of Enemies Hitting you is Lucky", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4224965099"]}}} +{"ref": "#% increased Maximum Life per socketed Grand Spectrum", "better": 1, "id": "maximum_life_+%_per_stackable_unique_jewel", "matchers": [{"string": "#% increased Maximum Life per socketed Grand Spectrum", "negate": false}, {"string": "#% reduced Maximum Life per socketed Grand Spectrum", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_332217711"]}}} +{"ref": "+#% to all Elemental Resistances per socketed Grand Spectrum", "better": 1, "id": "elemental_resistance_%_per_stackable_unique_jewel", "matchers": [{"string": "#% to all Elemental Resistances per socketed Grand Spectrum", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_242161915"]}}} +{"ref": "#% increased Spirit per socketed Grand Spectrum", "better": 1, "id": "spirit_+%_per_stackable_unique_jewel", "matchers": [{"string": "#% increased Spirit per socketed Grand Spectrum", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1430165758"]}}} +{"ref": "#% of Fire Damage Converted to Cold Damage", "better": 1, "id": "non_skill_base_fire_damage_%_to_convert_to_cold", "matchers": [{"string": "#% of Fire Damage Converted to Cold Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3503160529"]}}} +{"ref": "#% of Fire Damage Converted to Lightning Damage", "better": 1, "id": "non_skill_base_fire_damage_%_to_convert_to_lightning", "matchers": [{"string": "#% of Fire Damage Converted to Lightning Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "#% of Lightning Damage Converted to Cold Damage", "better": 1, "id": "non_skill_base_lightning_damage_%_to_convert_to_cold", "matchers": [{"string": "#% of Lightning Damage Converted to Cold Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3627052716"]}}} +{"ref": "#% of Cold Damage Converted to Lightning Damage", "better": 1, "id": "non_skill_base_cold_damage_%_to_convert_to_lightning", "matchers": [{"string": "#% of Cold Damage Converted to Lightning Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1686824704"]}}} +{"ref": "#% of Elemental Damage Converted to Fire Damage", "better": 1, "id": "non_skill_base_elemental_damage_%_to_convert_to_fire", "matchers": [{"string": "#% of Elemental Damage Converted to Fire Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_40154188"]}}} +{"ref": "#% of Elemental Damage Converted to Cold Damage", "better": 1, "id": "non_skill_base_elemental_damage_%_to_convert_to_cold", "matchers": [{"string": "#% of Elemental Damage Converted to Cold Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_210092264"]}}} +{"ref": "#% of Elemental Damage Converted to Lightning Damage", "better": 1, "id": "non_skill_base_elemental_damage_%_to_convert_to_lightning", "matchers": [{"string": "#% of Elemental Damage Converted to Lightning Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_289540902"]}}} +{"ref": "#% of Elemental Damage Converted to Chaos Damage", "better": 1, "id": "non_skill_base_elemental_damage_%_to_convert_to_chaos", "matchers": [{"string": "#% of Elemental Damage Converted to Chaos Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2295988214"]}}} +{"ref": "Pain Attunement", "better": 1, "id": "keystone_pain_attunement", "matchers": [{"string": "Pain Attunement", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_98977150"]}}} +{"ref": "Iron Reflexes", "better": 1, "id": "keystone_iron_reflexes", "matchers": [{"string": "Iron Reflexes", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_326965591"]}}} +{"ref": "Blood Magic", "better": 1, "id": "keystone_blood_magic", "matchers": [{"string": "Blood Magic", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2801937280"]}}} +{"ref": "Eldritch Battery", "better": 1, "id": "keystone_eldritch_battery", "matchers": [{"string": "Eldritch Battery", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2262736444"]}}} +{"ref": "Giant's Blood", "better": 1, "id": "keystone_giants_blood", "matchers": [{"string": "Giant's Blood", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1875158664"]}}} +{"ref": "Unwavering Stance", "better": 1, "id": "keystone_unwavering_stance", "matchers": [{"string": "Unwavering Stance", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1683578560"]}}} +{"ref": "Iron Grip", "better": 1, "id": "keystone_strong_bowman", "matchers": [{"string": "Iron Grip", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_573347393"]}}} +{"ref": "Iron Will", "better": 1, "id": "strong_casting", "matchers": [{"string": "Iron Will", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4092697134"]}}} +{"ref": "Can have a second Instilled Modifier", "better": 1, "id": "local_item_can_have_x_additional_enchantments", "matchers": [{"string": "Can have a second Instilled Modifier", "negate": false}], "trade": {"ids": null}} +{"ref": "Poison on Hit", "better": 1, "id": "global_poison_on_hit", "matchers": [{"string": "Poison on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Inflict Bleeding on Hit", "better": 1, "id": "global_bleed_on_hit", "matchers": [{"string": "Inflict Bleeding on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Cannot be Stunned", "better": 1, "id": "base_cannot_be_stunned", "matchers": [{"string": "Cannot be Stunned", "negate": false}], "trade": {"ids": null}} +{"ref": "Break Armour equal to #% of Physical Damage dealt", "better": 1, "id": "armour_break_physical_damage_%_dealt_as_armour_break", "matchers": [{"string": "Break Armour equal to #% of Physical Damage dealt", "negate": false}], "trade": {"ids": null}} +{"ref": "Skills fire an additional Projectile", "better": 1, "id": "number_of_additional_projectiles", "matchers": [{"string": "Skills fire an additional Projectile", "negate": false}], "trade": {"ids": null}} +{"ref": "DNT #% more Area of Effect", "better": 1, "id": "rare_monster_mod_area_of_effect_+%_final", "matchers": [{"string": "DNT #% more Area of Effect", "negate": false}, {"string": "DNT #% less Area of Effect", "negate": true}], "trade": {"ids": null}} +{"ref": "All Damage from Hits Contributes to Ignite Chance and Magnitude", "better": 1, "id": "all_damage_can_ignite", "matchers": [{"string": "All Damage from Hits Contributes to Ignite Chance and Magnitude", "negate": false}], "trade": {"ids": null}} +{"ref": "All Damage from Hits Contributes to Chill Magnitude", "better": 1, "id": "all_damage_can_chill", "matchers": [{"string": "All Damage from Hits Contributes to Chill Magnitude", "negate": false}], "trade": {"ids": null}} +{"ref": "All Damage from Hits Contributes to Shock Chance", "better": 1, "id": "all_damage_can_shock", "matchers": [{"string": "All Damage from Hits Contributes to Shock Chance", "negate": false}], "trade": {"ids": null}} +{"ref": "DNT #% more Slowing Potency of Debuffs against this monster", "better": 1, "id": "monster_slow_potency_+%_final", "matchers": [{"string": "DNT #% more Slowing Potency of Debuffs against this monster", "negate": false}, {"string": "DNT #% less Slowing Potency of Debuffs against this monster", "negate": true}], "trade": {"ids": null}} +{"ref": "DNT #% less Life Leeched from", "better": 1, "id": "life_leeched_from_-permyriad", "matchers": [{"string": "DNT #% less Life Leeched from", "negate": false}, {"string": "DNT #% more Life Leeched from", "negate": true}], "trade": {"ids": null}} +{"ref": "Hexproof", "better": 1, "id": "hexproof", "matchers": [{"string": "Hexproof", "negate": false}], "trade": {"ids": null}} +{"ref": "Skills Chain +# times", "better": 1, "id": "number_of_chains", "matchers": [{"string": "Skills Chain +# times", "negate": false}], "trade": {"ids": null}} +{"ref": "Projectiles gain Damage as they travel farther, dealing up\\nto #% increased Damage with Hits to targets", "better": 1, "id": "projectile_damage_+%_max_as_distance_travelled_increases", "matchers": [{"string": "Projectiles gain Damage as they travel farther, dealing up\\nto #% increased Damage with Hits to targets", "negate": false}], "trade": {"ids": null}} +{"ref": "#% reduced Action Speed", "better": 1, "id": "action_speed_-%", "matchers": [{"string": "#% reduced Action Speed", "negate": false}, {"string": "#% increased Action Speed", "negate": true}], "trade": {"ids": null}} +{"ref": "Cannot Recover Life or Energy Shield to above #%", "better": 1, "id": "cannot_recover_life_or_energy_shield_above_%", "matchers": [{"string": "Cannot Recover Life or Energy Shield to above #%", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Quantity of Items found in this Area", "better": 1, "id": "map_item_drop_quantity_+%", "matchers": [{"string": "#% increased Quantity of Items found in this Area", "negate": false}, {"string": "#% reduced Quantity of Items found in this Area", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2390685262"]}}} +{"ref": "#% increased Rarity of Items found in this Area", "better": 1, "id": "map_item_drop_rarity_+%", "matchers": [{"string": "#% increased Rarity of Items found in this Area", "negate": false}, {"string": "#% reduced Rarity of Items found in this Area", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2306002879"], "enchant": ["enchant.stat_2306002879"]}}} +{"ref": "#% increased Gold found in this Area", "better": 1, "id": "map_gold_+%", "matchers": [{"string": "#% increased Gold found in this Area", "negate": false}, {"string": "#% reduced Gold found in this Area", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1133965702"]}}} +{"ref": "#% increased Experience gain", "better": 1, "id": "map_experience_gain_+%", "matchers": [{"string": "#% increased Experience gain", "negate": false}, {"string": "#% reduced Experience gain", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_57434274", "explicit.stat_3666934677"]}}} +{"ref": "#% increased Pack size", "better": 1, "id": "map_pack_size_+%", "matchers": [{"string": "#% increased Pack size", "negate": false}, {"string": "#% reduced Pack size", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2017682521"], "enchant": ["enchant.stat_2017682521"]}}} +{"ref": "#% increased number of Monster Packs", "better": 1, "id": "map_monster_tre_+%", "matchers": [{"string": "#% increased number of Monster Packs", "negate": false}, {"string": "#% reduced number of Monster Packs", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2624927319"]}}} +{"ref": "#% increased amount of Chests", "better": 1, "id": "map_chest_amount_+%", "matchers": [{"string": "#% increased amount of Chests", "negate": false}, {"string": "#% reduced amount of Chests", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2745845732"]}}} +{"ref": "#% increased Magic Monsters", "better": 1, "id": "map_number_of_magic_packs_+%", "matchers": [{"string": "#% increased Magic Monsters", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3873704640"], "enchant": ["enchant.stat_3873704640"]}}} +{"ref": "#% increased number of Rare Monsters", "better": 1, "id": "map_number_of_rare_packs_+%", "matchers": [{"string": "#% increased number of Rare Monsters", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3793155082"], "enchant": ["enchant.stat_3793155082"]}}} +{"ref": "#% increased amount of Magic Chests", "better": 1, "id": "map_magic_chest_amount_+%", "matchers": [{"string": "#% increased amount of Magic Chests", "negate": false}, {"string": "#% reduced amount of Magic Chests", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2898517796"]}}} +{"ref": "#% increased amount of Rare Chests", "better": 1, "id": "map_rare_chest_amount_+%", "matchers": [{"string": "#% increased amount of Rare Chests", "negate": false}, {"string": "#% reduced amount of Rare Chests", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_798469000"]}}} +{"ref": "#% increased Magic Pack Size", "better": 1, "id": "map_magic_pack_size_+%", "matchers": [{"string": "#% increased Magic Pack Size", "negate": false}, {"string": "#% reduced Magic Pack Size", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1714706956"]}}} +{"ref": "Rare Monsters have # additional Modifier", "better": 1, "id": "map_rare_monster_num_additional_modifiers", "matchers": [{"string": "Rare Monsters have # additional Modifier", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2550456553"]}}} +{"ref": "Area contains an additional Shrine", "better": 1, "id": "map_num_extra_shrines", "matchers": [{"string": "Area contains an additional Shrine", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1468737867"]}}} +{"ref": "Area contains an additional Strongbox", "better": 1, "id": "map_num_extra_strongboxes", "matchers": [{"string": "Area contains an additional Strongbox", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3240183538"]}}} +{"ref": "Area contains an additional Essence", "better": 1, "id": "map_extra_monoliths", "matchers": [{"string": "Area contains an additional Essence", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_395808938"]}}} +{"ref": "Area contains # additional packs of Undead", "better": 1, "id": "map_monster_additional_undead_packs", "matchers": [{"string": "Area contains # additional packs of Undead", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_240445958"]}}} +{"ref": "Area contains # additional packs of Beasts", "better": 1, "id": "map_monster_additional_beasts_packs", "matchers": [{"string": "Area contains # additional packs of Beasts", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3757259819"]}}} +{"ref": "Area contains # additional packs of Ezomyte Monsters", "better": 1, "id": "map_monster_additional_ezomyte_packs", "matchers": [{"string": "Area contains # additional packs of Ezomyte Monsters", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1436812886"]}}} +{"ref": "Area contains # additional packs of Faridun Monsters", "better": 1, "id": "map_monster_additional_faridun_packs", "matchers": [{"string": "Area contains # additional packs of Faridun Monsters", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4130878258"]}}} +{"ref": "Area contains # additional packs of Vaal Monsters", "better": 1, "id": "map_monster_additional_vaal_packs", "matchers": [{"string": "Area contains # additional packs of Vaal Monsters", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4181857719"]}}} +{"ref": "Area contains # additional packs of Iron Guards", "better": 1, "id": "map_monster_additional_baron_packs", "matchers": [{"string": "Area contains # additional packs of Iron Guards", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2949706590"]}}} +{"ref": "Area contains # additional packs of Plagued Monsters", "better": 1, "id": "map_monster_additional_perennial_packs", "matchers": [{"string": "Area contains # additional packs of Plagued Monsters", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3592067990"]}}} +{"ref": "Area contains # additional packs of Transcended Monsters", "better": 1, "id": "map_monster_additional_doryani_packs", "matchers": [{"string": "Area contains # additional packs of Transcended Monsters", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1689473577"]}}} +{"ref": "Area contains # additional packs of Bramble Monsters", "better": 1, "id": "map_monster_additional_bramble_packs", "matchers": [{"string": "Area contains # additional packs of Bramble Monsters", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3309089125"]}}} +{"ref": "Monsters deal #% of Damage as Extra Fire", "better": 1, "id": "map_monsters_%_all_damage_to_gain_as_fire", "matchers": [{"string": "Monsters deal #% of Damage as Extra Fire", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_92381065"]}}} +{"ref": "Monsters deal #% of Damage as Extra Cold", "better": 1, "id": "map_monsters_%_all_damage_to_gain_as_cold", "matchers": [{"string": "Monsters deal #% of Damage as Extra Cold", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_211727"]}}} +{"ref": "Monsters deal #% of Damage as Extra Lightning", "better": 1, "id": "map_monsters_%_all_damage_to_gain_as_lightning", "matchers": [{"string": "Monsters deal #% of Damage as Extra Lightning", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_512071314"]}}} +{"ref": "#% increased Monster Damage", "better": 1, "id": "map_monsters_damage_+%", "matchers": [{"string": "#% increased Monster Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1890519597"]}}} +{"ref": "#% increased Monster Movement Speed", "better": 1, "id": "map_monsters_movement_speed_+%", "matchers": [{"string": "#% increased Monster Movement Speed", "negate": false}, {"string": "#% reduced Monster Movement Speed", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2306522833"]}}} +{"ref": "Monsters have #% increased Critical Hit Chance", "better": 1, "id": "map_monsters_critical_strike_chance_+%", "matchers": [{"string": "Monsters have #% increased Critical Hit Chance", "negate": false}, {"string": "Monsters have #% reduced Critical Hit Chance", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2753083623"]}}} +{"ref": "#% more Monster Life", "better": 1, "id": "map_monsters_life_+%", "matchers": [{"string": "#% more Monster Life", "negate": false}, {"string": "#% less Monster Life", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_95249895"]}}} +{"ref": "+#% Monster Elemental Resistances", "better": 1, "id": "map_monsters_additional_elemental_resistance", "matchers": [{"string": "#% Monster Elemental Resistances", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters are Armoured", "better": 1, "id": "map_monsters_additional_strength_ratio_%_for_armour", "matchers": [{"string": "Monsters are Armoured", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2539290279"]}}} +{"ref": "Monsters are Evasive", "better": 1, "id": "map_monsters_additional_dexterity_ratio_%_for_evasion", "matchers": [{"string": "Monsters are Evasive", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2570249991"]}}} +{"ref": "Monsters gain #% of Maximum Life as Extra Maximum Energy Shield", "better": 1, "id": "map_monsters_maximum_life_%_to_add_to_maximum_energy_shield", "matchers": [{"string": "Monsters gain #% of Maximum Life as Extra Maximum Energy Shield", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2887760183"]}}} +{"ref": "Monsters have #% chance to Poison on Hit", "better": 1, "id": "map_monsters_chance_to_poison_on_hit_%", "matchers": [{"string": "Monsters have #% chance to Poison on Hit", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_95221307"]}}} +{"ref": "Monsters have #% chance to Bleed on Hit", "better": 1, "id": "map_monsters_chance_to_inflict_bleeding_%", "matchers": [{"string": "Monsters have #% chance to Bleed on Hit", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2506820610"]}}} +{"ref": "Monsters have #% increased Stun Threshold", "better": 1, "id": "map_monsters_stun_threshold_+%", "matchers": [{"string": "Monsters have #% increased Stun Threshold", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4101943684"]}}} +{"ref": "Monsters Break Armour equal to #% of Physical Damage dealt", "better": 1, "id": "map_monsters_armour_break_physical_damage_%_dealt_as_armour_break", "matchers": [{"string": "Monsters Break Armour equal to #% of Physical Damage dealt", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1879340377"]}}} +{"ref": "Monsters have #% increased Accuracy Rating", "better": 1, "id": "map_monsters_accuracy_rating_+%", "matchers": [{"string": "Monsters have #% increased Accuracy Rating", "negate": false}, {"string": "Monsters have #% reduced Accuracy Rating", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1588049749"]}}} +{"ref": "Monsters deal #% of Damage as Extra Chaos", "better": 1, "id": "map_monsters_%_all_damage_to_gain_as_chaos", "matchers": [{"string": "Monsters deal #% of Damage as Extra Chaos", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2200661314"]}}} +{"ref": "Monsters have #% increased Stun Buildup", "better": 1, "id": "map_monsters_hit_damage_stun_multiplier_+%", "matchers": [{"string": "Monsters have #% increased Stun Buildup", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_115425161"]}}} +{"ref": "Monsters have #% increased Ignite Chance", "better": 1, "id": "map_monsters_ignite_chance_+%", "matchers": [{"string": "Monsters have #% increased Ignite Chance", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2508044078"]}}} +{"ref": "Monsters fire # additional Projectiles", "better": 1, "id": "map_monsters_additional_number_of_projecitles", "matchers": [{"string": "Monsters fire # additional Projectiles", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1309819744"]}}} +{"ref": "Monsters have #% increased Area of Effect", "better": 1, "id": "map_monsters_area_of_effect_+%", "matchers": [{"string": "Monsters have #% increased Area of Effect", "negate": false}, {"string": "Monsters have #% reduced Area of Effect", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1708461270"]}}} +{"ref": "Players are Cursed with Enfeeble", "better": 1, "id": "map_player_has_level_X_enfeeble", "matchers": [{"string": "Players are Cursed with Enfeeble", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4103440490"]}}} +{"ref": "Players are Cursed with Temporal Chains", "better": 1, "id": "map_player_has_level_X_temporal_chains", "matchers": [{"string": "Players are Cursed with Temporal Chains", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2326202293"]}}} +{"ref": "Players are Cursed with Elemental Weakness", "better": 1, "id": "map_player_has_level_X_elemental_weakness", "matchers": [{"string": "Players are Cursed with Elemental Weakness", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_558910024"]}}} +{"ref": "Area has patches of Burning Ground", "better": 1, "id": "map_base_ground_fire_damage_to_deal_per_10_seconds", "matchers": [{"string": "Area has patches of Burning Ground", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_133340941"]}}} +{"ref": "Area has patches of Chilled Ground", "better": 1, "id": "map_ground_ice_base_magnitude", "matchers": [{"string": "Area has patches of Chilled Ground", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_349586058"]}}} +{"ref": "Area has patches of Shocked Ground", "better": 1, "id": "map_ground_lightning", "matchers": [{"string": "Area has patches of Shocked Ground", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3477720557"]}}} +{"ref": "Monster Damage Penetrates #% Elemental Resistances", "better": 1, "id": "map_monsters_penetrate_elemental_resistances_%", "matchers": [{"string": "Monster Damage Penetrates #% Elemental Resistances", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1898978455"]}}} +{"ref": "#% maximum Player Resistances", "better": 1, "id": "map_additional_player_maximum_resistances_%", "matchers": [{"string": "#% maximum Player Resistances", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3376488707"]}}} +{"ref": "Players gain #% increased Flask Charges", "better": 1, "id": "map_player_charges_gained_+%", "matchers": [{"string": "Players gain #% increased Flask Charges", "negate": false}, {"string": "Players gain #% reduced Flask Charges", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2549889921"]}}} +{"ref": "Players have #% more Recovery Rate of Life and Energy Shield", "better": 1, "id": "map_player_life_and_es_recovery_speed_+%_final", "matchers": [{"string": "Players have #% more Recovery Rate of Life and Energy Shield", "negate": false}, {"string": "Players have #% less Recovery Rate of Life and Energy Shield", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_4181072906"]}}} +{"ref": "Players have #% more Cooldown Recovery Rate", "better": 1, "id": "map_player_cooldown_speed_+%_final", "matchers": [{"string": "Players have #% more Cooldown Recovery Rate", "negate": false}, {"string": "Players have #% less Cooldown Recovery Rate", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_941368244"]}}} +{"ref": "Monsters take #% reduced Extra Damage from Critical Hits", "better": 1, "id": "map_monsters_base_self_critical_strike_multiplier_-%", "matchers": [{"string": "Monsters take #% reduced Extra Damage from Critical Hits", "negate": false}, {"string": "Monsters take #% increased Extra Damage from Critical Hits", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_337935900"]}}} +{"ref": "#% more effect of Curses on Monsters", "better": 1, "id": "map_monsters_curse_effect_on_self_+%_final", "matchers": [{"string": "#% more effect of Curses on Monsters", "negate": false}, {"string": "#% less effect of Curses on Monsters", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3796523155"]}}} +{"ref": "Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit", "better": 1, "id": "map_monsters_steal_charges", "matchers": [{"string": "Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3222482040"]}}} +{"ref": "# Maps in Range are Irradiated", "better": 1, "id": "tower_add_irradiated_to_X_maps", "matchers": [{"string": "# Maps in Range are Irradiated", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_4041853756"]}}} +{"ref": "# Maps in Range contain Breaches", "better": 1, "id": "tower_add_breach_to_X_maps", "matchers": [{"string": "# Maps in Range contain Breaches", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_2219129443"]}}} +{"ref": "# Maps in Range contain Expedition Encounters", "better": 1, "id": "tower_add_expedition_to_X_maps", "matchers": [{"string": "# Maps in Range contain Expedition Encounters", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_1714888636"]}}} +{"ref": "# Maps in Range contain Mirrors of Delirium", "better": 1, "id": "tower_add_delirium_to_X_maps", "matchers": [{"string": "# Maps in Range contain Mirrors of Delirium", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_3879011313"]}}} +{"ref": "# Maps in Range contain Ritual Altars", "better": 1, "id": "tower_add_ritual_to_X_maps", "matchers": [{"string": "# Maps in Range contain Ritual Altars", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_3166002380"]}}} +{"ref": "#% increased Waystones found in Area", "better": 1, "id": "map_map_item_drop_chance_+%", "matchers": [{"string": "#% increased Waystones found in Area", "negate": false}], "trade": {"ids": null}} +{"ref": "Rare Monsters have a #% chance to have an additional Modifier", "better": 1, "id": "map_rare_monster_additional_modifier_chance_%_with_rollover", "matchers": [{"string": "Rare Monsters have a #% chance to have an additional Modifier", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3732878551"], "enchant": ["enchant.stat_3732878551"]}}} +{"ref": "Map has # additional random Modifier", "better": 1, "id": "map_number_of_additional_mods", "matchers": [{"string": "Map has # additional random Modifier", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_588512487"]}}} +{"ref": "Breaches have #% increased Monster density", "better": 1, "id": "map_breach_monster_quantity_+%", "matchers": [{"string": "Breaches have #% increased Monster density", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1210760818"]}}} +{"ref": "Breaches open and close #% faster", "better": 1, "id": "map_breach_time_passed_+%", "matchers": [{"string": "Breaches open and close #% faster", "negate": false}, {"string": "Breaches open and close #% slower", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2504358770"]}}} +{"ref": "Breaches in Area contain # additional Clasped Hand", "better": 1, "id": "map_breaches_num_additional_chests_to_spawn", "matchers": [{"string": "Breaches in Area contain # additional Clasped Hand", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2224050171"]}}} +{"ref": "#% increased quantity of Artifacts dropped by Monsters", "better": 1, "id": "map_expedition_artifact_quantity_+%", "matchers": [{"string": "#% increased quantity of Artifacts dropped by Monsters", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4219583418"], "implicit": ["implicit.stat_4219583418"]}}} +{"ref": "#% increased Explosive Placement Range", "better": 1, "id": "map_expedition_maximum_placement_distance_+%", "matchers": [{"string": "#% increased Explosive Placement Range", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1539368271"], "implicit": ["implicit.stat_1539368271"]}}} +{"ref": "Expeditions in Area have +# Remnants", "better": 1, "id": "map_expedition_relics_+", "matchers": [{"string": "Expeditions in Area have +# Remnants", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Explosive Radius", "better": 1, "id": "map_expedition_explosion_radius_+%", "matchers": [{"string": "#% increased Explosive Radius", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3289828378"], "implicit": ["implicit.stat_3289828378"]}}} +{"ref": "#% increased Quantity of Expedition Logbooks dropped by Runic Monsters", "better": 1, "id": "expedition_monsters_logbook_chance_+%", "matchers": [{"string": "#% increased Quantity of Expedition Logbooks dropped by Runic Monsters", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1083387327"]}}} +{"ref": "Area contains #% increased number of Runic Monster Markers", "better": 1, "id": "map_expedition_elite_marker_count_+%", "matchers": [{"string": "Area contains #% increased number of Runic Monster Markers", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1640965354"], "implicit": ["implicit.stat_1640965354"]}}} +{"ref": "#% increased Stack size of Simulacrum Splinters found in Area", "better": 1, "id": "map_delirium_splinter_amount_+%", "matchers": [{"string": "#% increased Stack size of Simulacrum Splinters found in Area", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2301218725"], "enchant": ["enchant.stat_2301218725"]}}} +{"ref": "Monsters Sacrificed at Ritual Altars in Area grant #% increased Tribute", "better": 1, "id": "map_ritual_tribute_+%", "matchers": [{"string": "Monsters Sacrificed at Ritual Altars in Area grant #% increased Tribute", "negate": false}, {"string": "Monsters Sacrificed at Ritual Altars in Area grant #% reduced Tribute", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_159726667"]}}} +{"ref": "Ritual Altars in Area allow rerolling Favours an additional time", "better": 1, "id": "map_ritual_additional_reward_rerolls", "matchers": [{"string": "Ritual Altars in Area allow rerolling Favours an additional time", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_120737942"]}}} +{"ref": "+# to Monster Level of Area", "better": 1, "id": "map_level_+", "matchers": [{"string": "# to Monster Level of Area", "negate": false}], "trade": {"ids": null}} +{"ref": "Slaying Enemies has a #% increased chance to spawn Coalesced Corruption", "better": 1, "id": "map_beyond_portal_chance_+%", "matchers": [{"string": "Slaying Enemies has a #% increased chance to spawn Coalesced Corruption", "negate": false}, {"string": "Slaying Enemies has a #% reduced chance to spawn Coalesced Corruption", "negate": true}], "trade": {"ids": null}} +{"ref": "Monsters drop no items", "better": 1, "id": "map_monster_no_drops", "matchers": [{"string": "Monsters drop no items", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Quantity of Items Found from Chests", "better": 1, "id": "chest_item_quantity_+%", "matchers": [{"string": "#% increased Quantity of Items Found from Chests", "negate": false}, {"string": "#% reduced Quantity of Items Found from Chests", "negate": true}], "trade": {"ids": null}} +{"ref": "{{#% increased Rarity of Items Found in Excavated Chests}}", "better": 1, "id": "chest_item_rarity_+%_final_from_mod", "matchers": [{"string": "{{#% increased Rarity of Items Found in Excavated Chests}}", "negate": false}, {"string": "{{#% reduced Rarity of Items Found in Excavated Chests}}", "negate": true}], "trade": {"ids": null}} +{"ref": "Contains an additional Unique Item", "better": 1, "id": "chest_drop_additional_unqiue_items", "matchers": [{"string": "Contains an additional Unique Item", "negate": false}], "trade": {"ids": null}} +{"ref": "+# Chest level", "better": 1, "id": "chest_dropped_item_level_+", "matchers": [{"string": "# Chest level", "negate": false}], "trade": {"ids": null}} +{"ref": "Contains Identified Items", "better": 1, "id": "chest_items_drop_identified", "matchers": [{"string": "Contains Identified Items", "negate": false}], "trade": {"ids": null}} +{"ref": "Contained Items have #% Quality", "better": 1, "id": "chest_dropped_equipment_flasks_charms_have_quality_%", "matchers": [{"string": "Contained Items have #% Quality", "negate": false}], "trade": {"ids": null}} +{"ref": "Contained Items have an additional Socket", "better": 1, "id": "dropped_items_have_additional_sockets", "matchers": [{"string": "Contained Items have an additional Socket", "negate": false}], "trade": {"ids": null}} +{"ref": "Contains # additional Rune", "better": 1, "id": "drop_additional_runes", "matchers": [{"string": "Contains # additional Rune", "negate": false}], "trade": {"ids": null}} +{"ref": "Contains # additional Djinn Barya", "better": 1, "id": "drop_additional_sanctum_key", "matchers": [{"string": "Contains # additional Djinn Barya", "negate": false}], "trade": {"ids": null}} +{"ref": "Contains # additional Inscribed Ultimatum", "better": 1, "id": "drop_additional_ultimatum_key", "matchers": [{"string": "Contains # additional Inscribed Ultimatum", "negate": false}], "trade": {"ids": null}} +{"ref": "Contains # additional Unusual Tablet", "better": 1, "id": "drop_additional_special_tower_augment", "matchers": [{"string": "Contains # additional Unusual Tablet", "negate": false}], "trade": {"ids": null}} +{"ref": "Players in Area are #% Delirious", "better": 1, "id": "map_endgame_fog_depth", "matchers": [{"string": "Players in Area are #% Delirious", "negate": false}], "trade": {"ids": {"enchant": ["enchant.stat_1715784068"]}}} +{"ref": "#% chance to Avoid All Damage from Hits", "better": 1, "id": "avoid_damage_%", "matchers": [{"string": "#% chance to Avoid All Damage from Hits", "negate": false}], "trade": {"ids": null}} +{"ref": "Your Hits can't be Evaded", "better": 1, "id": "global_always_hit", "matchers": [{"string": "Your Hits can't be Evaded", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters' Hits are always Critical Hits", "better": 1, "id": "always_crit", "matchers": [{"string": "Monsters' Hits are always Critical Hits", "negate": false}], "trade": {"ids": null}} +{"ref": "Hits against Monsters cannot be Critical Hits", "better": 1, "id": "never_take_critical_strike", "matchers": [{"string": "Hits against Monsters cannot be Critical Hits", "negate": false}], "trade": {"ids": null}} +{"ref": "Life cannot be Leeched from Monsters", "better": 1, "id": "base_cannot_have_life_leeched_from", "matchers": [{"string": "Life cannot be Leeched from Monsters", "negate": false}], "trade": {"ids": null}} +{"ref": "{{Monsters are Immune to Physical Damage}}", "better": 1, "id": "physical_immunity", "matchers": [{"string": "{{Monsters are Immune to Physical Damage}}", "negate": false}], "trade": {"ids": null}} +{"ref": "Immune to Cold Damage", "better": 1, "id": "base_cold_immunity", "matchers": [{"string": "Immune to Cold Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Immune to lightning Damage", "better": 1, "id": "base_lightning_immunity", "matchers": [{"string": "Immune to lightning Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Immune to Fire Damage", "better": 1, "id": "base_fire_immunity", "matchers": [{"string": "Immune to Fire Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Provides Immunity to Chaos Damage", "better": 1, "id": "chaos_immunity", "matchers": [{"string": "Provides Immunity to Chaos Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Avoid being Chilled", "better": 1, "id": "base_avoid_chill_%", "matchers": [{"string": "#% chance to Avoid being Chilled", "negate": false}], "trade": {"ids": null}} +{"ref": "Runic Monsters apply a random Curse on Hit", "better": 1, "id": "apply_X_random_curses_on_hit", "matchers": [{"string": "Runic Monsters apply a random Curse on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters do not grant Flask Charges when Slain", "better": 1, "id": "monster_grants_no_flask_charges", "matchers": [{"string": "Monsters do not grant Flask Charges when Slain", "negate": false}], "trade": {"ids": null}} +{"ref": "Every 4 seconds, Regenerate #% of Life over one second", "better": 1, "id": "guardian_gain_life_regeneration_per_minute_%_for_1_second_every_10_seconds", "matchers": [{"string": "Every 4 seconds, Regenerate #% of Life over one second", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Attack Speed when on Low Life", "better": 1, "id": "attack_speed_+%_when_on_low_life", "matchers": [{"string": "#% increased Attack Speed when on Low Life", "negate": false}, {"string": "#% reduced Attack Speed when on Low Life", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Critical Hit Chance against Enemies on Full Life", "better": 1, "id": "critical_strike_chance_against_enemies_on_full_life_+%", "matchers": [{"string": "#% increased Critical Hit Chance against Enemies on Full Life", "negate": false}, {"string": "#% reduced Critical Hit Chance against Enemies on Full Life", "negate": true}], "trade": {"ids": null}} +{"ref": "+#% to All Resistances", "better": 1, "id": "resist_all_%", "matchers": [{"string": "#% to All Resistances", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_3128852541"]}}} +{"ref": "Attacks cannot cause Bleeding", "better": 1, "id": "attacks_inflict_bleeding_on_hit", "matchers": [{"string": "Attacks cannot cause Bleeding", "negate": false}], "trade": {"ids": null}} +{"ref": "Damage Penetrates #% Chaos Resistance", "better": 1, "id": "reduce_enemy_chaos_resistance_%", "matchers": [{"string": "Damage Penetrates #% Chaos Resistance", "negate": false}, {"string": "Your Hits treat Chaos Resistance as #% higher than actual value", "negate": true}], "trade": {"ids": null}} +{"ref": "{{Runic Monsters are Duplicated}}", "better": 1, "id": "expedition_twinned_elites", "matchers": [{"string": "{{Runic Monsters are Duplicated}}", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Item Quantity", "better": 1, "id": "from_league_item_quantity_+%_permyriad", "matchers": [{"string": "#% increased Item Quantity", "negate": false}, {"string": "#% reduced Item Quantity", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Item Rarity", "better": 1, "id": "from_league_item_rarity_+%_permyriad", "matchers": [{"string": "#% increased Item Rarity", "negate": false}, {"string": "#% reduced Item Rarity", "negate": true}], "trade": {"ids": null}} +{"ref": "{{Monsters grant #% increased Experience}}", "better": 1, "id": "monster_slain_experience_+%", "matchers": [{"string": "{{Monsters grant #% increased Experience}}", "negate": false}, {"string": "{{Monsters grant #% reduced Experience}}", "negate": true}], "trade": {"ids": null}} +{"ref": "{{#% increased Quantity of Artifacts dropped by Monsters}}", "better": 1, "id": "expedition_monsters_currency_drop_quantity_+%", "matchers": [{"string": "{{#% increased Quantity of Artifacts dropped by Monsters}}", "negate": false}], "trade": {"ids": null}} +{"ref": "{{#% increased Quantity of Artifacts found in Excavated Chests}}", "better": 1, "id": "expedition_chest_currency_drop_quantity_+%", "matchers": [{"string": "{{#% increased Quantity of Artifacts found in Excavated Chests}}", "negate": false}, {"string": "{{#% reduced Quantity of Artifacts found in Excavated Chests}}", "negate": true}], "trade": {"ids": null}} +{"ref": "{{Monsters spawn with an additional #% of Life missing}}", "better": 1, "id": "map_expedition_monster_spawn_additional_missing_life_%", "matchers": [{"string": "{{Monsters spawn with an additional #% of Life missing}}", "negate": false}], "trade": {"ids": null}} +{"ref": "{{Items dropped by Monsters have #% chance to be Corrupted}}", "better": 1, "id": "monster_items_drop_corrupted_%", "matchers": [{"string": "{{Items dropped by Monsters have #% chance to be Corrupted}}", "negate": false}], "trade": {"ids": null}} +{"ref": "#% more Magnitude of Ignite inflicted", "better": 1, "id": "active_skill_ignite_effect_+%_final", "matchers": [{"string": "#% more Magnitude of Ignite inflicted", "negate": false}, {"string": "#% less Magnitude of Ignite inflicted", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Quantity of Items found", "better": 1, "id": "base_item_found_quantity_+%", "matchers": [{"string": "#% increased Quantity of Items found", "negate": false}, {"string": "#% reduced Quantity of Items found", "negate": true}], "trade": {"ids": null}} +{"ref": "Gain #% of Physical Damage as Extra Fire Damage", "better": 1, "id": "non_skill_base_physical_damage_%_to_gain_as_fire", "matchers": [{"string": "Gain #% of Physical Damage as Extra Fire Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain #% of Physical Damage as Extra Cold Damage", "better": 1, "id": "non_skill_base_physical_damage_%_to_gain_as_cold", "matchers": [{"string": "Gain #% of Physical Damage as Extra Cold Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain #% of Physical Damage as Extra Lightning Damage", "better": 1, "id": "non_skill_base_physical_damage_%_to_gain_as_lightning", "matchers": [{"string": "Gain #% of Physical Damage as Extra Lightning Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "#% more Attack Speed", "better": 1, "id": "active_skill_attack_speed_+%_final", "matchers": [{"string": "#% more Attack Speed", "negate": false}, {"string": "#% less Attack Speed", "negate": true}], "trade": {"ids": null}} +{"ref": "#% of Maximum Life taken per second as Chaos Damage", "better": 1, "id": "base_chaos_damage_%_of_maximum_life_taken_per_minute", "matchers": [{"string": "#% of Maximum Life taken per second as Chaos Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "#% more maximum Life", "better": 1, "id": "monster_life_+%_final_from_rarity", "matchers": [{"string": "#% more maximum Life", "negate": false}, {"string": "#% less maximum Life", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Character Size", "better": 1, "id": "base_actor_scale_+%", "matchers": [{"string": "#% increased Character Size", "negate": false}, {"string": "#% reduced Character Size", "negate": true}], "trade": {"ids": null}} +{"ref": "Curse Enemies with Vulnerability on Hit", "better": 1, "id": "curse_on_hit_level_vulnerability", "matchers": [{"string": "Curse Enemies with Vulnerability on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Curse Enemies with Vulnerability on Hit", "better": 1, "id": "curse_on_hit_%_vulnerability", "matchers": [{"string": "#% chance to Curse Enemies with Vulnerability on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Stun Duration on you", "better": 1, "id": "stun_duration_on_self_+%", "matchers": [{"string": "#% increased Stun Duration on you", "negate": false}, {"string": "#% reduced Stun Duration on you", "negate": true}], "trade": {"ids": null}} +{"ref": "#% of Physical Damage Converted to Fire Damage", "better": 1, "id": "non_skill_base_physical_damage_%_to_convert_to_fire", "matchers": [{"string": "#% of Physical Damage Converted to Fire Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "#% of Physical Damage Converted to Cold Damage", "better": 1, "id": "non_skill_base_physical_damage_%_to_convert_to_cold", "matchers": [{"string": "#% of Physical Damage Converted to Cold Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "#% of Physical Damage Converted to Lightning Damage", "better": 1, "id": "non_skill_base_physical_damage_%_to_convert_to_lightning", "matchers": [{"string": "#% of Physical Damage Converted to Lightning Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "#% of Physical Damage Converted to Chaos Damage", "better": 1, "id": "non_skill_base_physical_damage_%_to_convert_to_chaos", "matchers": [{"string": "#% of Physical Damage Converted to Chaos Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "#% more Cast Speed", "better": 1, "id": "active_skill_cast_speed_+%_final", "matchers": [{"string": "#% more Cast Speed", "negate": false}, {"string": "#% less Cast Speed", "negate": true}], "trade": {"ids": null}} +{"ref": "Never deal Critical Hits", "better": 1, "id": "global_cannot_crit", "matchers": [{"string": "Never deal Critical Hits", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to gain an Endurance Charge on Hit", "better": 1, "id": "add_endurance_charge_on_skill_hit_%", "matchers": [{"string": "#% chance to gain an Endurance Charge on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to gain a Frenzy Charge on Hit", "better": 1, "id": "add_frenzy_charge_on_skill_hit_%", "matchers": [{"string": "#% chance to gain a Frenzy Charge on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Curse Immune", "better": 1, "id": "immune_to_curses", "matchers": [{"string": "Curse Immune", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Cast Speed per Power Charge", "better": 1, "id": "cast_speed_+%_per_power_charge", "matchers": [{"string": "#% increased Cast Speed per Power Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "Acrobatics", "better": 1, "id": "keystone_acrobatics", "matchers": [{"string": "Acrobatics", "negate": false}], "trade": {"ids": null}} +{"ref": "Has no Sockets", "better": 1, "id": "local_has_no_sockets", "matchers": [{"string": "Has no Sockets", "negate": false}], "trade": {"ids": null}} +{"ref": "Unaffected by Shock", "better": 1, "id": "unaffected_by_shock", "matchers": [{"string": "Unaffected by Shock", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Avoid being Shocked", "better": 1, "id": "base_avoid_shock_%", "matchers": [{"string": "#% chance to Avoid being Shocked", "negate": false}], "trade": {"ids": null}} +{"ref": "Reflects # Physical Damage to Melee Attackers", "better": 1, "id": "physical_damage_to_return_to_melee_attacker", "matchers": [{"string": "Reflects # Physical Damage to Melee Attackers", "negate": false}], "trade": {"ids": null}} +{"ref": "Reflects # Cold Damage to Melee Attackers", "better": 1, "id": "cold_damage_to_return_to_melee_attacker", "matchers": [{"string": "Reflects # Cold Damage to Melee Attackers", "negate": false}], "trade": {"ids": null}} +{"ref": "Reflects # to # Physical Damage to Melee Attackers", "better": 1, "id": "minimum_physical_damage_to_return_to_melee_attacker", "matchers": [{"string": "Reflects # to # Physical Damage to Melee Attackers", "negate": false}], "trade": {"ids": null}} +{"ref": "Cannot be Chilled", "better": 1, "id": "base_cannot_be_chilled", "matchers": [{"string": "Cannot be Chilled", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Mana Cost of Skills when on Low Life", "better": 1, "id": "mana_cost_+%_when_on_low_life", "matchers": [{"string": "#% increased Mana Cost of Skills when on Low Life", "negate": false}, {"string": "#% reduced Mana Cost of Skills when on Low Life", "negate": true}], "trade": {"ids": null}} +{"ref": "+#% to all Elemental Resistances while on Low Life", "better": 1, "id": "elemental_resistance_%_when_on_low_life", "matchers": [{"string": "#% to all Elemental Resistances while on Low Life", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Evasion Rating while on Low Life", "better": 1, "id": "evasion_rating_+_when_on_low_life", "matchers": [{"string": "# to Evasion Rating while on Low Life", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Movement Speed when on Low Life", "better": 1, "id": "movement_velocity_+%_when_on_low_life", "matchers": [{"string": "#% increased Movement Speed when on Low Life", "negate": false}, {"string": "#% reduced Movement Speed when on Low Life", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Attack Speed when on Full Life", "better": 1, "id": "attack_speed_+%_when_on_full_life", "matchers": [{"string": "#% increased Attack Speed when on Full Life", "negate": false}, {"string": "#% reduced Attack Speed when on Full Life", "negate": true}], "trade": {"ids": null}} +{"ref": "Conduit", "better": 1, "id": "keystone_conduit", "matchers": [{"string": "Conduit", "negate": false}], "trade": {"ids": null}} +{"ref": "Area has Damaging Totems", "better": 1, "id": "map_packs_are_str_mission_totems", "matchers": [{"string": "Area has Damaging Totems", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters Fracture", "better": 1, "id": "map_non_unique_monsters_spawn_X_monsters_on_death", "matchers": [{"string": "Monsters Fracture", "negate": false}], "trade": {"ids": null}} +{"ref": "Area is inhabited by # additional Rogue Exile", "better": 1, "id": "map_spawn_extra_exiles", "matchers": [{"string": "Area is inhabited by # additional Rogue Exile", "negate": false}], "trade": {"ids": null}} +{"ref": "Unique Boss has #% increased Life", "better": 1, "id": "map_boss_maximum_life_+%", "matchers": [{"string": "Unique Boss has #% increased Life", "negate": false}, {"string": "Unique Boss has #% reduced Life", "negate": true}], "trade": {"ids": null}} +{"ref": "Monsters cannot be Stunned", "better": 1, "id": "map_monsters_cannot_be_stunned", "matchers": [{"string": "Monsters cannot be Stunned", "negate": false}], "trade": {"ids": null}} +{"ref": "Area contains no monsters", "better": 1, "id": "display_map_no_monsters", "matchers": [{"string": "Area contains no monsters", "negate": false}], "trade": {"ids": null}} +{"ref": "Area is inhabited by wild Animals", "better": 1, "id": "display_map_inhabited_by_wild_beasts", "matchers": [{"string": "Area is inhabited by wild Animals", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% Chance to Block", "better": 1, "id": "local_additional_block_chance_%", "matchers": [{"string": "#% Chance to Block", "negate": false}], "trade": {"ids": null}} +{"ref": "#% Chance to Block Spell Damage while on Low Life", "better": 1, "id": "old_do_not_use_spell_block_%_while_on_low_life_from_assumed_block_value", "matchers": [{"string": "#% Chance to Block Spell Damage while on Low Life", "negate": false}], "trade": {"ids": null}} +{"ref": "#% Chance to Block Spell Damage", "better": 1, "id": "old_do_not_use_spell_block_%_from_assumed_block_value", "matchers": [{"string": "#% Chance to Block Spell Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% Chance to Block Spell Damage while on Low Life", "better": 1, "id": "spell_block_%_while_on_low_life", "matchers": [{"string": "#% Chance to Block Spell Damage while on Low Life", "negate": false}], "trade": {"ids": null}} +{"ref": "#% Chance to Block Spell Damage", "better": 1, "id": "base_spell_block_%", "matchers": [{"string": "#% Chance to Block Spell Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Locks enemy in place", "better": 1, "id": "no_movement_speed", "matchers": [{"string": "Locks enemy in place", "negate": false}], "trade": {"ids": null}} +{"ref": "Attacks have #% chance to Maim on Hit", "better": 1, "id": "maim_on_hit_%", "matchers": [{"string": "Attacks have #% chance to Maim on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Ignite", "better": 1, "id": "base_chance_to_ignite_%", "matchers": [{"string": "#% chance to Ignite", "negate": false}], "trade": {"ids": null}} +{"ref": "Burns Ground on Death", "better": 1, "id": "monster_ground_fire_on_death_%_max_damage_to_deal_per_minute", "matchers": [{"string": "Burns Ground on Death", "negate": false}], "trade": {"ids": null}} +{"ref": "Spreads Caustic Ground on Death", "better": 1, "id": "monster_caustic_cloud_on_death_%_max_damage_to_deal_per_minute", "matchers": [{"string": "Spreads Caustic Ground on Death", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Area of Effect of Aura Skills", "better": 1, "id": "base_aura_area_of_effect_+%", "matchers": [{"string": "#% increased Area of Effect of Aura Skills", "negate": false}, {"string": "#% reduced Area of Effect of Aura Skills", "negate": true}], "trade": {"ids": null}} +{"ref": "Curse Enemies with Enfeeble on Hit", "better": 1, "id": "curse_on_hit_level_enfeeble", "matchers": [{"string": "Curse Enemies with Enfeeble on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Curse Enemies with Temporal Chains on Hit", "better": 1, "id": "curse_on_hit_level_temporal_chains", "matchers": [{"string": "Curse Enemies with Temporal Chains on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Curse Enemies with Temporal Chains on Hit", "better": 1, "id": "curse_on_hit_%_temporal_chains", "matchers": [{"string": "Curse Enemies with Temporal Chains on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Curse Enemies with Flammability on Hit", "better": 1, "id": "curse_on_hit_%_flammability", "matchers": [{"string": "Curse Enemies with Flammability on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Curse Skills have #% increased Cast Speed", "better": 1, "id": "curse_cast_speed_+%", "matchers": [{"string": "Curse Skills have #% increased Cast Speed", "negate": false}, {"string": "Curse Skills have #% reduced Cast Speed", "negate": true}], "trade": {"ids": null}} +{"ref": "Ancestral Bond", "better": 1, "id": "keystone_ancestral_bond", "matchers": [{"string": "Ancestral Bond", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Melee Strike Range", "better": 1, "id": "melee_range_+", "matchers": [{"string": "# to Melee Strike Range", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain a Frenzy Charge on Critical Hit", "better": 1, "id": "add_frenzy_charge_on_critical_strike", "matchers": [{"string": "Gain a Frenzy Charge on Critical Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to all maximum Resistances", "better": 1, "id": "additional_maximum_all_resistances_%", "matchers": [{"string": "#% to all maximum Resistances", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Concentrated Effect", "better": 1, "id": "local_display_socketed_gems_get_concentrated_area_level", "matchers": [{"string": "Socketed Gems are Supported by Level # Concentrated Effect", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Fire Penetration", "better": 1, "id": "local_display_socketed_gems_get_fire_penetration_level", "matchers": [{"string": "Socketed Gems are Supported by Level # Fire Penetration", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Added Fire Damage", "better": 1, "id": "local_display_socketed_gems_get_added_fire_damage_level", "matchers": [{"string": "Socketed Gems are Supported by Level # Added Fire Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Cold to Fire", "better": 1, "id": "local_display_socketed_gems_get_cold_to_fire_level", "matchers": [{"string": "Socketed Gems are Supported by Level # Cold to Fire", "negate": false}], "trade": {"ids": null}} +{"ref": "When you generate an Endurance Charge, Allies in your Presence generate that Charge instead", "better": 1, "id": "endurance_only_conduit", "matchers": [{"string": "When you generate an Endurance Charge, Allies in your Presence generate that Charge instead", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain an Endurance Charge when you take a Critical Hit", "better": 1, "id": "add_endurance_charge_on_enemy_critical_strike", "matchers": [{"string": "Gain an Endurance Charge when you take a Critical Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Chills Ground on Death", "better": 1, "id": "monster_ground_ice_on_death_base_area_of_effect_radius", "matchers": [{"string": "Chills Ground on Death", "negate": false}], "trade": {"ids": null}} +{"ref": "Spreads Tar on Death", "better": 1, "id": "monster_ground_tar_on_death_base_area_of_effect_radius", "matchers": [{"string": "Spreads Tar on Death", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are supported by Level # Blind", "better": 1, "id": "local_display_socketed_gems_get_blind_level", "matchers": [{"string": "Socketed Gems are supported by Level # Blind", "negate": false}], "trade": {"ids": null}} +{"ref": "Chests have #% increased Item Rarity", "better": 1, "id": "map_chest_item_rarity_+%", "matchers": [{"string": "Chests have #% increased Item Rarity", "negate": false}, {"string": "Chests have #% reduced Item Rarity", "negate": true}], "trade": {"ids": null}} +{"ref": "All Chests are Magic or Rare", "better": 1, "id": "map_chests_all_magic_or_rare", "matchers": [{"string": "All Chests are Magic or Rare", "negate": false}], "trade": {"ids": null}} +{"ref": "Can raise Magic monsters", "better": 1, "id": "necromancer_additional_rarity_levels_can_be_raised", "matchers": [{"string": "Can raise Magic monsters", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Pulverise", "better": 1, "id": "local_display_socketed_gems_supported_by_level_x_pulverise", "matchers": [{"string": "Socketed Gems are Supported by Level # Pulverise", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Increased Area of Effect", "better": 1, "id": "local_display_socketed_gems_get_increased_area_level", "matchers": [{"string": "Socketed Gems are Supported by Level # Increased Area of Effect", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level 10 Intensify", "better": 1, "id": "local_display_supported_by_level_10_intensify", "matchers": [{"string": "Socketed Gems are Supported by Level 10 Intensify", "negate": false}], "trade": {"ids": null}} +{"ref": "Extra gore", "better": 1, "id": "extra_gore", "matchers": [{"string": "Extra gore", "negate": false}], "trade": {"ids": null}} +{"ref": "Has one socket of each colour", "better": 1, "id": "local_one_socket_each_colour_only", "matchers": [{"string": "Has one socket of each colour", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% Chance to Block Attack Damage while Dual Wielding", "better": 1, "id": "block_while_dual_wielding_%", "matchers": [{"string": "#% Chance to Block Attack Damage while Dual Wielding", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Level of all Raise Zombie Gems", "better": 1, "id": "raise_zombie_gem_level_+", "matchers": [{"string": "# to Level of all Raise Zombie Gems", "negate": false}], "trade": {"ids": null}} +{"ref": "Limit # Raised Zombie", "better": 1, "id": "base_number_of_zombies_allowed", "matchers": [{"string": "Limit # Raised Zombie", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Skeleton Movement Speed", "better": 1, "id": "skeleton_movement_speed_+%", "matchers": [{"string": "#% increased Skeleton Movement Speed", "negate": false}, {"string": "#% reduced Skeleton Movement Speed", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Skeleton Attack Speed", "better": 1, "id": "skeleton_attack_speed_+%", "matchers": [{"string": "#% increased Skeleton Attack Speed", "negate": false}, {"string": "#% reduced Skeleton Attack Speed", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Skeleton Cast Speed", "better": 1, "id": "skeleton_cast_speed_+%", "matchers": [{"string": "#% increased Skeleton Cast Speed", "negate": false}, {"string": "#% reduced Skeleton Cast Speed", "negate": true}], "trade": {"ids": null}} +{"ref": "Socketed Gems Cost and Reserve Life instead of Mana", "better": 1, "id": "local_display_socketed_gems_have_blood_magic", "matchers": [{"string": "Socketed Gems Cost and Reserve Life instead of Mana", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Level of Socketed Aura Gems", "better": 1, "id": "local_socketed_aura_gem_level_+", "matchers": [{"string": "# to Level of Socketed Aura Gems", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems have #% chance to cause Enemies to Flee on Hit", "better": 1, "id": "local_display_socketed_gems_have_chance_to_flee_%", "matchers": [{"string": "Socketed Gems have #% chance to cause Enemies to Flee on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "#% of Physical Damage Converted to Chaos Damage per Level", "better": 1, "id": "non_skill_base_physical_damage_%_to_convert_to_chaos_per_level", "matchers": [{"string": "#% of Physical Damage Converted to Chaos Damage per Level", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Level of Socketed Strength Gems", "better": 1, "id": "local_socketed_strength_gem_level_+", "matchers": [{"string": "# to Level of Socketed Strength Gems", "negate": false}], "trade": {"ids": null}} +{"ref": "Chaos Damage taken does not cause double loss of Energy Shield", "better": 1, "id": "base_chaos_damage_does_not_damage_energy_shield_extra_hard", "matchers": [{"string": "Chaos Damage taken does not cause double loss of Energy Shield", "negate": false}], "trade": {"ids": null}} +{"ref": "#% of Physical Damage from Hits taken as Chaos Damage", "better": 1, "id": "physical_damage_taken_%_as_chaos", "matchers": [{"string": "#% of Physical Damage from Hits taken as Chaos Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "#% more Damage with Arrow Hits at Close Range", "better": 1, "id": "unique_chin_sol_close_range_bow_damage_+%_final", "matchers": [{"string": "#% more Damage with Arrow Hits at Close Range", "negate": false}], "trade": {"ids": null}} +{"ref": "Bow Knockback at Close Range", "better": 1, "id": "unique_chin_sol_close_range_knockback", "matchers": [{"string": "Bow Knockback at Close Range", "negate": false}], "trade": {"ids": null}} +{"ref": "#% of Physical Damage from Hits taken as Fire Damage", "better": 1, "id": "physical_damage_taken_%_as_fire", "matchers": [{"string": "#% of Physical Damage from Hits taken as Fire Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Reflects # Fire Damage to Melee Attackers", "better": 1, "id": "fire_damage_to_return_to_melee_attacker", "matchers": [{"string": "Reflects # Fire Damage to Melee Attackers", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Avoid being Ignited", "better": 1, "id": "base_avoid_ignite_%", "matchers": [{"string": "#% chance to Avoid being Ignited", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Physical Damage with Ranged Weapons", "better": 1, "id": "ranged_weapon_physical_damage_+%", "matchers": [{"string": "#% increased Physical Damage with Ranged Weapons", "negate": false}, {"string": "#% reduced Physical Damage with Ranged Weapons", "negate": true}], "trade": {"ids": null}} +{"ref": "Arrows Pierce all Targets", "better": 1, "id": "base_arrows_always_pierce", "matchers": [{"string": "Arrows Pierce all Targets", "negate": false}], "trade": {"ids": null}} +{"ref": "Arrows Pierce an additional Target", "better": 1, "id": "arrow_base_number_of_targets_to_pierce", "matchers": [{"string": "Arrows Pierce an additional Target", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% Chance to Block Attack Damage while Dual Wielding Claws", "better": 1, "id": "block_while_dual_wielding_claws_%", "matchers": [{"string": "#% Chance to Block Attack Damage while Dual Wielding Claws", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Armour against Projectiles", "better": 1, "id": "physical_damage_reduction_rating_+%_against_projectiles", "matchers": [{"string": "#% increased Armour against Projectiles", "negate": false}, {"string": "#% reduced Armour against Projectiles", "negate": true}], "trade": {"ids": null}} +{"ref": "+#% chance to Block Projectile Attack Damage", "better": 1, "id": "additional_block_chance_against_projectiles_%", "matchers": [{"string": "#% chance to Block Projectile Attack Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "#% Chance to Block Attack Damage", "better": 1, "id": "monster_base_block_%", "matchers": [{"string": "#% Chance to Block Attack Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Cannot Leech", "better": 1, "id": "base_cannot_leech", "matchers": [{"string": "Cannot Leech", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems have #% increased Reservation Efficiency", "better": 1, "id": "local_display_socketed_gems_have_mana_reservation_+%", "matchers": [{"string": "Socketed Gems have #% increased Reservation Efficiency", "negate": false}], "trade": {"ids": null}} +{"ref": "Always Freezes Enemies on Hit", "better": 1, "id": "base_chance_to_freeze_%", "matchers": [{"string": "Always Freezes Enemies on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Intelligence Requirement", "better": 1, "id": "local_intelligence_requirement_+%", "matchers": [{"string": "#% increased Intelligence Requirement", "negate": false}, {"string": "#% reduced Intelligence Requirement", "negate": true}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Added Chaos Damage", "better": 1, "id": "local_display_socketed_gems_get_added_chaos_damage_level", "matchers": [{"string": "Socketed Gems are Supported by Level # Added Chaos Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Recover Energy Shield equal to #% of Armour when you Block", "better": 1, "id": "energy_shield_%_of_armour_rating_gained_on_block", "matchers": [{"string": "Recover Energy Shield equal to #% of Armour when you Block", "negate": false}], "trade": {"ids": null}} +{"ref": "Poisonous Hit", "better": 1, "id": "local_poison_on_hit", "matchers": [{"string": "Poisonous Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Skeleton Duration", "better": 1, "id": "skeleton_duration_+%", "matchers": [{"string": "#% increased Skeleton Duration", "negate": false}, {"string": "#% reduced Skeleton Duration", "negate": true}], "trade": {"ids": null}} +{"ref": "+# Strength Requirement", "better": 1, "id": "local_strength_requirement_+", "matchers": [{"string": "# Strength Requirement", "negate": false}], "trade": {"ids": null}} +{"ref": "+# Dexterity Requirement", "better": 1, "id": "local_dexterity_requirement_+", "matchers": [{"string": "# Dexterity Requirement", "negate": false}], "trade": {"ids": null}} +{"ref": "+# Strength and Intelligence Requirement", "better": 1, "id": "local_strength_and_intelligence_requirement_+", "matchers": [{"string": "# Strength and Intelligence Requirement", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Spell Damage taken when on Low Mana", "better": 1, "id": "spell_damage_taken_+%_when_on_low_mana", "matchers": [{"string": "#% increased Spell Damage taken when on Low Mana", "negate": false}, {"string": "#% reduced Spell Damage taken when on Low Mana", "negate": true}], "trade": {"ids": null}} +{"ref": "+# to Evasion Rating while on Full Life", "better": 1, "id": "evasion_rating_+_when_on_full_life", "matchers": [{"string": "# to Evasion Rating while on Full Life", "negate": false}], "trade": {"ids": null}} +{"ref": "Removes Curses on use", "better": 1, "id": "local_flask_remove_curses_on_use", "matchers": [{"string": "Removes Curses on use", "negate": false}], "trade": {"ids": null}} +{"ref": "50% chance to cause Bleeding on Hit", "better": 1, "id": "local_chance_to_bleed_on_hit_50%", "matchers": [{"string": "50% chance to cause Bleeding on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "25% chance to cause Bleeding on Hit", "better": 1, "id": "local_chance_to_bleed_on_hit_25%", "matchers": [{"string": "25% chance to cause Bleeding on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Cause Bleeding on Critical Hit", "better": 1, "id": "local_bleed_on_critical_strike_chance_%", "matchers": [{"string": "#% chance to Cause Bleeding on Critical Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "50% chance to cause Bleeding on Critical Hit", "better": 1, "id": "local_chance_to_bleed_on_crit_50%", "matchers": [{"string": "50% chance to cause Bleeding on Critical Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Attacks deal no Physical Damage", "better": 1, "id": "attacks_deal_no_physical_damage", "matchers": [{"string": "Attacks deal no Physical Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Golden Radiance", "better": 1, "id": "display_golden_radiance", "matchers": [{"string": "Golden Radiance", "negate": false}], "trade": {"ids": null}} +{"ref": "Cannot be Stunned when on Low Life", "better": 1, "id": "cannot_be_stunned_when_on_low_life", "matchers": [{"string": "Cannot be Stunned when on Low Life", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased effect of Non-Curse Auras from your Skills", "better": 1, "id": "non_curse_aura_effect_+%", "matchers": [{"string": "#% increased effect of Non-Curse Auras from your Skills", "negate": false}, {"string": "#% reduced effect of Non-Curse Auras from your Skills", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased effect of Non-Curse Auras from your Skills on your Minions", "better": 1, "id": "minions_have_non_curse_aura_effect_+%_from_parent_skills", "matchers": [{"string": "#% increased effect of Non-Curse Auras from your Skills on your Minions", "negate": false}, {"string": "#% reduced effect of Non-Curse Auras from your Skills on your Minions", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Area Damage", "better": 1, "id": "area_damage_+%", "matchers": [{"string": "#% increased Area Damage", "negate": false}, {"string": "#% reduced Area Damage", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Global Damage", "better": 1, "id": "on_weapon_global_damage_+%", "matchers": [{"string": "#% increased Global Damage", "negate": false}, {"string": "#% reduced Global Damage", "negate": true}], "trade": {"ids": null}} +{"ref": "Contains waves of Monsters", "better": 1, "id": "display_cowards_trial_waves_of_monsters", "matchers": [{"string": "Contains waves of Monsters", "negate": false}], "trade": {"ids": null}} +{"ref": "Contains additional waves of Undead Monsters", "better": 1, "id": "display_cowards_trial_waves_of_undead_monsters", "matchers": [{"string": "Contains additional waves of Undead Monsters", "negate": false}], "trade": {"ids": null}} +{"ref": "Curse Non-Cursed Enemies with Enfeeble on Hit", "better": 1, "id": "curse_with_enfeeble_on_hit_%_against_uncursed_enemies", "matchers": [{"string": "Curse Non-Cursed Enemies with Enfeeble on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Spreads Tar when you take a Critical Hit", "better": 1, "id": "ground_tar_on_take_crit_base_area_of_effect_radius", "matchers": [{"string": "Spreads Tar when you take a Critical Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to spread Tar when Hit", "better": 1, "id": "ground_tar_when_hit_%_chance", "matchers": [{"string": "#% chance to spread Tar when Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Your Spells have Culling Strike", "better": 1, "id": "spells_have_culling_strike", "matchers": [{"string": "Your Spells have Culling Strike", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters are Immune to randomly chosen Elemental Ailments or Stun", "better": 1, "id": "map_monsters_immune_to_a_random_status_ailment_or_stun", "matchers": [{"string": "Monsters are Immune to randomly chosen Elemental Ailments or Stun", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters' Melee Attacks apply random Hexes on Hit", "better": 1, "id": "map_monster_melee_attacks_apply_random_curses", "matchers": [{"string": "Monsters' Melee Attacks apply random Hexes on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters Reflect Hexes", "better": 1, "id": "map_monsters_reflect_curses", "matchers": [{"string": "Monsters Reflect Hexes", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Global Evasion Rating when on Low Life", "better": 1, "id": "evasion_rating_+%_when_on_low_life", "matchers": [{"string": "#% increased Global Evasion Rating when on Low Life", "negate": false}, {"string": "#% reduced Global Evasion Rating when on Low Life", "negate": true}], "trade": {"ids": null}} +{"ref": "Life Leech from Hits with this Weapon is instant", "better": 1, "id": "local_life_leech_is_instant", "matchers": [{"string": "Life Leech from Hits with this Weapon is instant", "negate": false}], "trade": {"ids": null}} +{"ref": "#% reduced Mana Reservation Efficiency of Skills", "better": 1, "id": "mana_reservation_efficiency_-2%_per_1", "matchers": [{"string": "#% reduced Mana Reservation Efficiency of Skills", "negate": false}, {"string": "#% increased Mana Reservation Efficiency of Skills", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Mana Reservation Efficiency of Skills", "better": 1, "id": "base_mana_reservation_efficiency_+%", "matchers": [{"string": "#% increased Mana Reservation Efficiency of Skills", "negate": false}, {"string": "#% reduced Mana Reservation Efficiency of Skills", "negate": true}], "trade": {"ids": null}} +{"ref": "#% reduced Reservation Efficiency of Skills", "better": 1, "id": "reservation_efficiency_-2%_per_1", "matchers": [{"string": "#% reduced Reservation Efficiency of Skills", "negate": false}, {"string": "#% increased Reservation Efficiency of Skills", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Reservation Efficiency of Skills", "better": 1, "id": "base_reservation_efficiency_+%", "matchers": [{"string": "#% increased Reservation Efficiency of Skills", "negate": false}, {"string": "#% reduced Reservation Efficiency of Skills", "negate": true}], "trade": {"ids": null}} +{"ref": "#% chance to Avoid being Ignited while on Low Life", "better": 1, "id": "avoid_ignite_%_when_on_low_life", "matchers": [{"string": "#% chance to Avoid being Ignited while on Low Life", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Elemental Proliferation", "better": 1, "id": "local_display_socketed_gems_get_elemental_proliferation_level", "matchers": [{"string": "Socketed Gems are Supported by Level # Elemental Proliferation", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Spark Duration", "better": 1, "id": "spark_skill_effect_duration_+%", "matchers": [{"string": "#% increased Spark Duration", "negate": false}, {"string": "#% reduced Spark Duration", "negate": true}], "trade": {"ids": null}} +{"ref": "Area is a large Maze", "better": 1, "id": "display_map_larger_maze", "matchers": [{"string": "Area is a large Maze", "negate": false}], "trade": {"ids": null}} +{"ref": "Restless Dead", "better": 1, "id": "display_map_restless_dead", "matchers": [{"string": "Restless Dead", "negate": false}], "trade": {"ids": null}} +{"ref": "Area contains a Large Chest", "better": 1, "id": "display_map_large_chest", "matchers": [{"string": "Area contains a Large Chest", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Level of Socketed Movement Gems", "better": 1, "id": "local_socketed_movement_gem_level_+", "matchers": [{"string": "# to Level of Socketed Movement Gems", "negate": false}], "trade": {"ids": null}} +{"ref": "Players deal #% more Projectile Damage", "better": 1, "id": "map_player_projectile_damage_+%_final", "matchers": [{"string": "Players deal #% more Projectile Damage", "negate": false}, {"string": "Players deal #% less Projectile Damage", "negate": true}], "trade": {"ids": null}} +{"ref": "Projectiles move at #% increased Speed", "better": 1, "id": "map_projectile_speed_+%", "matchers": [{"string": "Projectiles move at #% increased Speed", "negate": false}, {"string": "Projectiles move at #% reduced Speed", "negate": true}], "trade": {"ids": null}} +{"ref": "+#% chance to Suppress Spell Damage per Frenzy Charge", "better": 1, "id": "spell_suppression_chance_%_per_frenzy_charge", "matchers": [{"string": "#% chance to Suppress Spell Damage per Frenzy Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Evasion Rating per Frenzy Charge", "better": 1, "id": "evasion_rating_+%_per_frenzy_charge", "matchers": [{"string": "#% increased Evasion Rating per Frenzy Charge", "negate": false}, {"string": "#% reduced Evasion Rating per Frenzy Charge", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Frenzy Charge Duration", "better": 1, "id": "base_frenzy_charge_duration_+%", "matchers": [{"string": "#% increased Frenzy Charge Duration", "negate": false}, {"string": "#% reduced Frenzy Charge Duration", "negate": true}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Spell Totem", "better": 1, "id": "local_display_socketed_gems_get_spell_totem_level", "matchers": [{"string": "Socketed Gems are Supported by Level # Spell Totem", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Increased Duration", "better": 1, "id": "local_display_socketed_gems_get_increased_duration_level", "matchers": [{"string": "Socketed Gems are Supported by Level # Increased Duration", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Added Lightning Damage", "better": 1, "id": "local_display_socketed_gems_get_added_lightning_damage_level", "matchers": [{"string": "Socketed Gems are Supported by Level # Added Lightning Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Duration of Lightning Ailments", "better": 1, "id": "lightning_ailment_duration_+%", "matchers": [{"string": "#% increased Duration of Lightning Ailments", "negate": false}, {"string": "#% reduced Duration of Lightning Ailments", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased effect of Curses on you", "better": 1, "id": "curse_effect_on_self_+%", "matchers": [{"string": "#% increased effect of Curses on you", "negate": false}, {"string": "#% reduced effect of Curses on you", "negate": true}], "trade": {"ids": null}} +{"ref": "Socketed Gems are supported by Level # Chance to Flee", "better": 1, "id": "local_display_socketed_gems_get_flee_level", "matchers": [{"string": "Socketed Gems are supported by Level # Chance to Flee", "negate": false}], "trade": {"ids": null}} +{"ref": "Emits a golden glow", "better": 1, "id": "unique_loris_lantern_golden_light", "matchers": [{"string": "Emits a golden glow", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Chaos Resistance when on Low Life", "better": 1, "id": "chaos_damage_resistance_%_when_on_low_life", "matchers": [{"string": "#% to Chaos Resistance when on Low Life", "negate": false}], "trade": {"ids": null}} +{"ref": "Enemy hits on you roll low Damage", "better": 1, "id": "enemy_hits_roll_low_damage", "matchers": [{"string": "Enemy hits on you roll low Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Faster Attacks", "better": 1, "id": "local_display_socketed_gems_get_faster_attacks_level", "matchers": [{"string": "Socketed Gems are Supported by Level # Faster Attacks", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Melee Physical Damage", "better": 1, "id": "local_display_socketed_gems_get_melee_physical_damage_level", "matchers": [{"string": "Socketed Gems are Supported by Level # Melee Physical Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to gain an Endurance Charge when you Block", "better": 1, "id": "chance_to_gain_endurance_charge_on_block_%", "matchers": [{"string": "#% chance to gain an Endurance Charge when you Block", "negate": false}], "trade": {"ids": null}} +{"ref": "Damage of Enemies Hitting you is Lucky while you are on Low Life", "better": 1, "id": "enemy_extra_damage_rolls_when_on_low_life", "matchers": [{"string": "Damage of Enemies Hitting you is Lucky while you are on Low Life", "negate": false}], "trade": {"ids": null}} +{"ref": "Damage of Enemies Hitting you is Lucky while you are on Full Life", "better": 1, "id": "enemy_extra_damage_rolls_when_on_full_life", "matchers": [{"string": "Damage of Enemies Hitting you is Lucky while you are on Full Life", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters drop Burning Ground on death", "better": 1, "id": "map_monsters_drop_ground_fire_on_death_base_radius", "matchers": [{"string": "Monsters drop Burning Ground on death", "negate": false}], "trade": {"ids": null}} +{"ref": "Areas Have the Same Layout for all Players", "better": 1, "id": "map_fixed_seed", "matchers": [{"string": "Areas Have the Same Layout for all Players", "negate": false}], "trade": {"ids": null}} +{"ref": "Minimap is Revealed", "better": 1, "id": "map_minimap_revealed", "matchers": [{"string": "Minimap is Revealed", "negate": false}], "trade": {"ids": null}} +{"ref": "Life, Mana, Energy Shield and Flasks are not refilled in Towns", "better": 1, "id": "map_no_refills_in_town", "matchers": [{"string": "Life, Mana, Energy Shield and Flasks are not refilled in Towns", "negate": false}], "trade": {"ids": null}} +{"ref": "Item drops on death", "better": 1, "id": "item_drops_on_death", "matchers": [{"string": "Item drops on death", "negate": false}], "trade": {"ids": null}} +{"ref": "Deal # to # Lightning Damage to nearby Enemies when you lose a Power, Frenzy, or Endurance Charge", "better": 1, "id": "base_minimum_lightning_damage_on_charge_expiry", "matchers": [{"string": "Deal # to # Lightning Damage to nearby Enemies when you lose a Power, Frenzy, or Endurance Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "Reflects # Chaos Damage to Melee Attackers", "better": 1, "id": "chaos_damage_to_return_to_melee_attacker", "matchers": [{"string": "Reflects # Chaos Damage to Melee Attackers", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Power Charge Duration", "better": 1, "id": "power_charge_duration_+%", "matchers": [{"string": "#% increased Power Charge Duration", "negate": false}, {"string": "#% reduced Power Charge Duration", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Spell Damage per Power Charge", "better": 1, "id": "spell_damage_+%_per_power_charge", "matchers": [{"string": "#% increased Spell Damage per Power Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to create Consecrated Ground when you Block", "better": 1, "id": "consecrate_on_block_%_chance_to_create", "matchers": [{"string": "#% chance to create Consecrated Ground when you Block", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to create Desecrated Ground when you Block", "better": 1, "id": "desecrate_on_block_%_chance_to_create", "matchers": [{"string": "#% chance to create Desecrated Ground when you Block", "negate": false}], "trade": {"ids": null}} +{"ref": "Can't use Chest armour", "better": 1, "id": "disable_chest_slot", "matchers": [{"string": "Can't use Chest armour", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Level of Socketed Elemental Gems", "better": 1, "id": "local_socketed_elemental_gem_level_+", "matchers": [{"string": "# to Level of Socketed Elemental Gems", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain # Energy Shield per Enemy Killed", "better": 1, "id": "base_energy_shield_gained_on_enemy_death", "matchers": [{"string": "Gain # Energy Shield per Enemy Killed", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Claw Physical Damage when on Low Life", "better": 1, "id": "physical_claw_damage_+%_when_on_low_life", "matchers": [{"string": "#% increased Claw Physical Damage when on Low Life", "negate": false}, {"string": "#% reduced Claw Physical Damage when on Low Life", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Damage with Claws while on Low Life", "better": 1, "id": "claw_damage_+%_while_on_low_life", "matchers": [{"string": "#% increased Damage with Claws while on Low Life", "negate": false}, {"string": "#% reduced Damage with Claws while on Low Life", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Accuracy Rating when on Low Life", "better": 1, "id": "accuracy_rating_+%_when_on_low_life", "matchers": [{"string": "#% increased Accuracy Rating when on Low Life", "negate": false}, {"string": "#% reduced Accuracy Rating when on Low Life", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Damage taken from Projectile Hits", "better": 1, "id": "projectile_damage_taken_+%", "matchers": [{"string": "#% increased Damage taken from Projectile Hits", "negate": false}, {"string": "#% reduced Damage taken from Projectile Hits", "negate": true}], "trade": {"ids": null}} +{"ref": "You cannot increase the Rarity of Items found", "better": 1, "id": "cannot_increase_rarity_of_dropped_items", "matchers": [{"string": "You cannot increase the Rarity of Items found", "negate": false}], "trade": {"ids": null}} +{"ref": "You cannot increase the Quantity of Items found", "better": 1, "id": "cannot_increase_quantity_of_dropped_items", "matchers": [{"string": "You cannot increase the Quantity of Items found", "negate": false}], "trade": {"ids": null}} +{"ref": "You cannot be killed by reflected Elemental Damage", "better": 1, "id": "cannot_be_killed_by_elemental_reflect", "matchers": [{"string": "You cannot be killed by reflected Elemental Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased effect of Curses on Monsters", "better": 1, "id": "map_monsters_curse_effect_+%", "matchers": [{"string": "#% increased effect of Curses on Monsters", "negate": false}, {"string": "#% reduced effect of Curses on Monsters", "negate": true}], "trade": {"ids": null}} +{"ref": "Insufficient Mana doesn't prevent your Melee Attacks", "better": 1, "id": "melee_attacks_usable_without_mana_cost", "matchers": [{"string": "Insufficient Mana doesn't prevent your Melee Attacks", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Monster Attack Speed", "better": 1, "id": "map_monsters_attack_speed_+%", "matchers": [{"string": "#% increased Monster Attack Speed", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1913583994"]}}} +{"ref": "Rogue Exiles roam Wraeclast", "better": 1, "id": "map_spawn_exile_per_area_%", "matchers": [{"string": "Rogue Exiles roam Wraeclast", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Strength and Dexterity", "better": 1, "id": "additional_strength_and_dexterity", "matchers": [{"string": "# to Strength and Dexterity", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Strength and Intelligence", "better": 1, "id": "additional_strength_and_intelligence", "matchers": [{"string": "# to Strength and Intelligence", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Dexterity and Intelligence", "better": 1, "id": "additional_dexterity_and_intelligence", "matchers": [{"string": "# to Dexterity and Intelligence", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Weapon Range", "better": 1, "id": "local_weapon_range_+", "matchers": [{"string": "# to Weapon Range", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to gain a Frenzy Charge on Kill", "better": 1, "id": "add_frenzy_charge_on_kill_%_chance", "matchers": [{"string": "#% chance to gain a Frenzy Charge on Kill", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to gain a Power Charge on Kill", "better": 1, "id": "add_power_charge_on_kill_%_chance", "matchers": [{"string": "#% chance to gain a Power Charge on Kill", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to gain an Endurance Charge on Kill", "better": 1, "id": "endurance_charge_on_kill_%", "matchers": [{"string": "#% chance to gain an Endurance Charge on Kill", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain an Endurance Charge when you lose a Power Charge", "better": 1, "id": "gain_endurance_charge_on_power_charge_expiry", "matchers": [{"string": "Gain an Endurance Charge when you lose a Power Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "Chill Effect and Freeze Duration on you are based on #% of Energy Shield", "better": 1, "id": "chill_and_freeze_duration_based_on_%_energy_shield", "matchers": [{"string": "Chill Effect and Freeze Duration on you are based on #% of Energy Shield", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Melee Damage when on Full Life", "better": 1, "id": "melee_damage_+%_when_on_full_life", "matchers": [{"string": "#% increased Melee Damage when on Full Life", "negate": false}, {"string": "#% reduced Melee Damage when on Full Life", "negate": true}], "trade": {"ids": null}} +{"ref": "Creates Consecrated Ground on Critical Hit", "better": 1, "id": "consecrate_on_crit_%_chance_to_create", "matchers": [{"string": "Creates Consecrated Ground on Critical Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Projectile Speed per Frenzy Charge", "better": 1, "id": "projectile_speed_+%_per_frenzy_charge", "matchers": [{"string": "#% increased Projectile Speed per Frenzy Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Projectile Damage per Power Charge", "better": 1, "id": "projectile_damage_+%_per_power_charge", "matchers": [{"string": "#% increased Projectile Damage per Power Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "Right ring slot: You cannot Regenerate Mana", "better": 1, "id": "local_right_ring_slot_no_mana_regeneration", "matchers": [{"string": "Right ring slot: You cannot Regenerate Mana", "negate": false}], "trade": {"ids": null}} +{"ref": "Right ring slot: Regenerate #% of Energy Shield per second", "better": 1, "id": "local_right_ring_slot_base_energy_shield_regeneration_rate_per_minute_%", "matchers": [{"string": "Right ring slot: Regenerate #% of Energy Shield per second", "negate": false}], "trade": {"ids": null}} +{"ref": "Left ring slot: #% increased Mana Regeneration Rate", "better": 1, "id": "local_left_ring_slot_mana_regeneration_rate_+%", "matchers": [{"string": "Left ring slot: #% increased Mana Regeneration Rate", "negate": false}], "trade": {"ids": null}} +{"ref": "Left ring slot: You cannot Recharge or Regenerate Energy Shield", "better": 1, "id": "local_left_ring_slot_no_energy_shield_recharge_or_regeneration", "matchers": [{"string": "Left ring slot: You cannot Recharge or Regenerate Energy Shield", "negate": false}], "trade": {"ids": null}} +{"ref": "Regenerate #% of Energy Shield per second", "better": 1, "id": "base_energy_shield_regeneration_rate_per_minute_%", "matchers": [{"string": "Regenerate #% of Energy Shield per second", "negate": false}], "trade": {"ids": null}} +{"ref": "Regenerate # Energy Shield per second", "better": 1, "id": "base_energy_shield_regeneration_rate_per_minute", "matchers": [{"string": "Regenerate # Energy Shield per second", "negate": false}], "trade": {"ids": null}} +{"ref": "You cannot Recharge Energy Shield", "better": 1, "id": "cannot_recharge_energy_shield", "matchers": [{"string": "You cannot Recharge Energy Shield", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Rarity of Items Dropped by Enemies killed with a Critical Hit", "better": 1, "id": "killed_monster_dropped_item_rarity_+%_on_crit", "matchers": [{"string": "#% increased Rarity of Items Dropped by Enemies killed with a Critical Hit", "negate": false}, {"string": "#% reduced Rarity of Items Dropped by Enemies killed with a Critical Hit", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Attack and Cast Speed per Frenzy Charge", "better": 1, "id": "attack_and_cast_speed_+%_per_frenzy_charge", "matchers": [{"string": "#% increased Attack and Cast Speed per Frenzy Charge", "negate": false}, {"string": "#% reduced Attack and Cast Speed per Frenzy Charge", "negate": true}], "trade": {"ids": null}} +{"ref": "Regenerate #% of Life per second per Frenzy Charge", "better": 1, "id": "life_regeneration_rate_per_minute_%_per_frenzy_charge", "matchers": [{"string": "Regenerate #% of Life per second per Frenzy Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Damage per Frenzy Charge with Hits against Enemies on Low Life", "better": 1, "id": "damage_+%_vs_enemies_on_low_life_per_frenzy_charge", "matchers": [{"string": "#% increased Damage per Frenzy Charge with Hits against Enemies on Low Life", "negate": false}, {"string": "#% reduced Damage per Frenzy Charge with Hits against Enemies on Low Life", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Movement Speed while Cursed", "better": 1, "id": "movement_velocity_+%_while_cursed", "matchers": [{"string": "#% increased Movement Speed while Cursed", "negate": false}, {"string": "#% reduced Movement Speed while Cursed", "negate": true}], "trade": {"ids": null}} +{"ref": "+#% Chance to Block Attack Damage while holding a Shield", "better": 1, "id": "shield_block_%", "matchers": [{"string": "#% Chance to Block Attack Damage while holding a Shield", "negate": false}], "trade": {"ids": null}} +{"ref": "Reflects # Physical Damage to Attackers on Block", "better": 1, "id": "minimum_physical_damage_to_return_on_block", "matchers": [{"string": "Reflects # Physical Damage to Attackers on Block", "negate": false}], "trade": {"ids": null}} +{"ref": "Raised Zombies have +# to maximum Life", "better": 1, "id": "zombie_maximum_life_+", "matchers": [{"string": "Raised Zombies have +# to maximum Life", "negate": false}], "trade": {"ids": null}} +{"ref": "Raised Zombies deal #% more Physical Damage", "better": 1, "id": "zombie_physical_damage_+%_final", "matchers": [{"string": "Raised Zombies deal #% more Physical Damage", "negate": false}, {"string": "Raised Zombies deal #% less Physical Damage", "negate": true}], "trade": {"ids": null}} +{"ref": "Raised Zombies have +#% to all Resistances", "better": 1, "id": "zombie_chaos_elemental_damage_resistance_%", "matchers": [{"string": "Raised Zombies have +#% to all Resistances", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Raised Zombie Size", "better": 1, "id": "zombie_scale_+%", "matchers": [{"string": "#% increased Raised Zombie Size", "negate": false}, {"string": "#% reduced Raised Zombie Size", "negate": true}], "trade": {"ids": null}} +{"ref": "Enemies Killed by Zombies' Hits Explode, dealing #% of their Life as Fire Damage", "better": 1, "id": "zombie_explode_on_kill_%_fire_damage_to_deal", "matchers": [{"string": "Enemies Killed by Zombies' Hits Explode, dealing #% of their Life as Fire Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased maximum number of Raised Zombies", "better": 1, "id": "number_of_zombies_allowed_+%", "matchers": [{"string": "#% increased maximum number of Raised Zombies", "negate": false}, {"string": "#% reduced maximum number of Raised Zombies", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Intelligence for each Unique Item Equipped", "better": 1, "id": "intelligence_+%_per_equipped_unique", "matchers": [{"string": "#% increased Intelligence for each Unique Item Equipped", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance for Slain monsters to drop an additional Scroll of Wisdom", "better": 1, "id": "additional_scroll_of_wisdom_drop_chance_%", "matchers": [{"string": "#% chance for Slain monsters to drop an additional Scroll of Wisdom", "negate": false}], "trade": {"ids": null}} +{"ref": "#% of Cold Damage Converted to Fire Damage", "better": 1, "id": "non_skill_base_cold_damage_%_to_convert_to_fire", "matchers": [{"string": "#% of Cold Damage Converted to Fire Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Ignited Enemies Killed by your Hits are destroyed", "better": 1, "id": "ignited_enemies_explode_on_kill", "matchers": [{"string": "Ignited Enemies Killed by your Hits are destroyed", "negate": false}], "trade": {"ids": null}} +{"ref": "You gain Onslaught for # seconds on Critical Hit", "better": 1, "id": "onslaught_on_crit_duration_ms", "matchers": [{"string": "You gain Onslaught for # seconds on Critical Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Rarity of Items found during Effect", "better": 1, "id": "local_unique_flask_item_rarity_+%_while_healing", "matchers": [{"string": "#% increased Rarity of Items found during Effect", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Quantity of Items found during Effect", "better": 1, "id": "local_unique_flask_item_quantity_+%_while_healing", "matchers": [{"string": "#% increased Quantity of Items found during Effect", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Light Radius during Effect", "better": 1, "id": "local_unique_flask_light_radius_+%_while_healing", "matchers": [{"string": "#% increased Light Radius during Effect", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to all maximum Elemental Resistances during Effect", "better": 1, "id": "local_unique_flask_additional_maximum_all_elemental_resistances_%_while_healing", "matchers": [{"string": "#% to all maximum Elemental Resistances during Effect", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Elemental Resistances during Effect", "better": 1, "id": "local_unique_flask_resist_all_elements_%_during_flask_effect", "matchers": [{"string": "#% to Elemental Resistances during Effect", "negate": false}], "trade": {"ids": null}} +{"ref": "Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value", "better": 1, "id": "additive_spell_damage_modifiers_apply_to_attack_damage_at_150%_value", "matchers": [{"string": "Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value", "negate": false}], "trade": {"ids": null}} +{"ref": "#% of Fire Damage Converted to Chaos Damage", "better": 1, "id": "non_skill_base_fire_damage_%_to_convert_to_chaos", "matchers": [{"string": "#% of Fire Damage Converted to Chaos Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "1% increased Movement Speed per # Evasion Rating, up to 75%", "better": 1, "id": "movement_velocity_+1%_per_X_evasion_rating", "matchers": [{"string": "1% increased Movement Speed per # Evasion Rating, up to 75%", "negate": false}], "trade": {"ids": null}} +{"ref": "Physical Damage from Hits also Contributes to Chill Magnitude", "better": 1, "id": "physical_damage_can_chill", "matchers": [{"string": "Physical Damage from Hits also Contributes to Chill Magnitude", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Quantity of Items Dropped by Slain Frozen Enemies", "better": 1, "id": "killed_monster_dropped_item_quantity_+%_when_frozen", "matchers": [{"string": "#% increased Quantity of Items Dropped by Slain Frozen Enemies", "negate": false}, {"string": "#% reduced Quantity of Items Dropped by Slain Frozen Enemies", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Rarity of Items Dropped by Slain Shocked Enemies", "better": 1, "id": "killed_monster_dropped_item_rarity_+%_when_shocked", "matchers": [{"string": "#% increased Rarity of Items Dropped by Slain Shocked Enemies", "negate": false}, {"string": "#% reduced Rarity of Items Dropped by Slain Shocked Enemies", "negate": true}], "trade": {"ids": null}} +{"ref": "# Chaos Damage taken per second", "better": 1, "id": "base_chaos_damage_taken_per_minute", "matchers": [{"string": "# Chaos Damage taken per second", "negate": false}], "trade": {"ids": null}} +{"ref": "Counts as Dual Wielding", "better": 1, "id": "local_unique_counts_as_dual_wielding", "matchers": [{"string": "Counts as Dual Wielding", "negate": false}], "trade": {"ids": null}} +{"ref": "You take # Chaos Damage per second for # seconds on Kill", "better": 1, "id": "deaths_oath_debuff_on_kill_base_chaos_damage_to_deal_per_minute", "matchers": [{"string": "You take # Chaos Damage per second for # seconds on Kill", "negate": false}], "trade": {"ids": null}} +{"ref": "Gore Footprints", "better": 1, "id": "blood_footprints_from_item", "matchers": [{"string": "Gore Footprints", "negate": false}], "trade": {"ids": null}} +{"ref": "Deals # Chaos Damage per second to nearby Enemies", "better": 1, "id": "local_display_aura_base_chaos_damage_to_deal_per_minute", "matchers": [{"string": "Deals # Chaos Damage per second to nearby Enemies", "negate": false}], "trade": {"ids": null}} +{"ref": "Mercury Footprints", "better": 1, "id": "silver_footprints_from_item", "matchers": [{"string": "Mercury Footprints", "negate": false}], "trade": {"ids": null}} +{"ref": "Ignites you inflict deal Damage #% faster", "better": 1, "id": "faster_burn_%", "matchers": [{"string": "Ignites you inflict deal Damage #% faster", "negate": false}], "trade": {"ids": null}} +{"ref": "Cannot Leech Mana", "better": 1, "id": "base_cannot_leech_mana", "matchers": [{"string": "Cannot Leech Mana", "negate": false}], "trade": {"ids": null}} +{"ref": "Mana cannot be Leeched from Monsters", "better": 1, "id": "base_cannot_have_mana_leeched_from", "matchers": [{"string": "Mana cannot be Leeched from Monsters", "negate": false}], "trade": {"ids": null}} +{"ref": "Cannot Leech when on Low Life", "better": 1, "id": "cannot_leech_when_on_low_life", "matchers": [{"string": "Cannot Leech when on Low Life", "negate": false}], "trade": {"ids": null}} +{"ref": "You and nearby allies gain #% increased Damage", "better": 1, "id": "local_display_aura_damage_+%", "matchers": [{"string": "You and nearby allies gain #% increased Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Adds # to # Fire Damage in Main Hand", "better": 1, "id": "unique_local_minimum_added_fire_damage_when_in_main_hand", "matchers": [{"string": "Adds # to # Fire Damage in Main Hand", "negate": false}], "trade": {"ids": null}} +{"ref": "Adds # to # Chaos Damage in Off Hand", "better": 1, "id": "unique_local_minimum_added_chaos_damage_when_in_off_hand", "matchers": [{"string": "Adds # to # Chaos Damage in Off Hand", "negate": false}], "trade": {"ids": null}} +{"ref": "Adds # to # Cold Damage in Off Hand", "better": 1, "id": "unique_local_minimum_added_cold_damage_when_in_off_hand", "matchers": [{"string": "Adds # to # Cold Damage in Off Hand", "negate": false}], "trade": {"ids": null}} +{"ref": "Chaos Damage from Hits also Contributes to Shock Chance", "better": 1, "id": "chaos_damage_can_shock", "matchers": [{"string": "Chaos Damage from Hits also Contributes to Shock Chance", "negate": false}], "trade": {"ids": null}} +{"ref": "#% of Lightning Damage Converted to Chaos Damage", "better": 1, "id": "non_skill_base_lightning_damage_%_to_convert_to_chaos", "matchers": [{"string": "#% of Lightning Damage Converted to Chaos Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "+40% to Maximum Effect of Shock", "better": 1, "id": "unique_voltaxic_rift_shock_maximum_magnitude_override", "matchers": [{"string": "40% to Maximum Effect of Shock", "negate": false}], "trade": {"ids": null}} +{"ref": "Hits with this Weapon Shock Enemies as though dealing #% more Damage", "better": 1, "id": "local_hits_with_this_weapon_shock_as_though_damage_+%_final", "matchers": [{"string": "Hits with this Weapon Shock Enemies as though dealing #% more Damage", "negate": false}, {"string": "Hits with this Weapon Shock Enemies as though dealing #% less Damage", "negate": true}], "trade": {"ids": null}} +{"ref": "Enemies Killed with Attack or Spell Hits Explode, dealing #% of their Life as Fire Damage", "better": 1, "id": "explode_on_kill_%_fire_damage_to_deal", "matchers": [{"string": "Enemies Killed with Attack or Spell Hits Explode, dealing #% of their Life as Fire Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Inspiration", "better": 1, "id": "local_display_socketed_gems_get_reduced_mana_cost_level", "matchers": [{"string": "Socketed Gems are Supported by Level # Inspiration", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Faster Casting", "better": 1, "id": "local_display_socketed_gems_get_faster_cast_level", "matchers": [{"string": "Socketed Gems are Supported by Level # Faster Casting", "negate": false}], "trade": {"ids": null}} +{"ref": "Removes #% of your maximum Energy Shield on use", "better": 1, "id": "local_flask_removes_%_maximum_energy_shield_on_use", "matchers": [{"string": "Removes #% of your maximum Energy Shield on use", "negate": false}], "trade": {"ids": null}} +{"ref": "You take #% of your maximum Life as Chaos Damage on use", "better": 1, "id": "local_flask_deals_%_maximum_life_as_chaos_damage_on_use", "matchers": [{"string": "You take #% of your maximum Life as Chaos Damage on use", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain # Frenzy Charge on use", "better": 1, "id": "local_flask_gain_frenzy_charges_on_use", "matchers": [{"string": "Gain # Frenzy Charge on use", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain # Power Charge on use", "better": 1, "id": "local_flask_gain_power_charges_on_use", "matchers": [{"string": "Gain # Power Charge on use", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain # Endurance Charge on use", "better": 1, "id": "local_flask_gain_endurance_charges_on_use", "matchers": [{"string": "Gain # Endurance Charge on use", "negate": false}], "trade": {"ids": null}} +{"ref": "You can only deal Damage with this Weapon or Ignite", "better": 1, "id": "local_can_only_deal_damage_with_this_weapon", "matchers": [{"string": "You can only deal Damage with this Weapon or Ignite", "negate": false}], "trade": {"ids": null}} +{"ref": "Left ring slot: You and your Minions take #% increased Reflected Elemental Damage", "better": 1, "id": "local_left_ring_slot_elemental_reflect_damage_taken_+%", "matchers": [{"string": "Left ring slot: You and your Minions take #% increased Reflected Elemental Damage", "negate": false}, {"string": "Left ring slot: You and your Minions take #% reduced Reflected Elemental Damage", "negate": true}], "trade": {"ids": null}} +{"ref": "Right ring slot: You and your Minions take #% increased Reflected Physical Damage", "better": 1, "id": "local_right_ring_slot_physical_reflect_damage_taken_+%", "matchers": [{"string": "Right ring slot: You and your Minions take #% increased Reflected Physical Damage", "negate": false}, {"string": "Right ring slot: You and your Minions take #% reduced Reflected Physical Damage", "negate": true}], "trade": {"ids": null}} +{"ref": "Removes Burning when you use a Flask", "better": 1, "id": "flasks_dispel_burning", "matchers": [{"string": "Removes Burning when you use a Flask", "negate": false}], "trade": {"ids": null}} +{"ref": "Unique Boss drops # additional Rare #", "better": 1, "id": "unique_map_boss_number_of_rare_items_to_drop", "matchers": [{"string": "Unique Boss drops # additional Rare #", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Shock", "better": 1, "id": "base_chance_to_shock_%", "matchers": [{"string": "#% chance to Shock", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Fishing Line Strength", "better": 1, "id": "fishing_line_strength_+%", "matchers": [{"string": "#% increased Fishing Line Strength", "negate": false}, {"string": "#% reduced Fishing Line Strength", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Fishing Pool Consumption", "better": 1, "id": "fishing_pool_consumption_+%", "matchers": [{"string": "#% increased Fishing Pool Consumption", "negate": false}, {"string": "#% reduced Fishing Pool Consumption", "negate": true}], "trade": {"ids": null}} +{"ref": "Rhoa Feather Lure", "better": 1, "id": "fishing_lure_type", "matchers": [{"string": "Rhoa Feather Lure", "negate": false}], "trade": {"ids": null}} +{"ref": "Karui Stone Hook", "better": 1, "id": "fishing_hook_type", "matchers": [{"string": "Karui Stone Hook", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Fishing Range", "better": 1, "id": "fishing_range_+%", "matchers": [{"string": "#% increased Fishing Range", "negate": false}, {"string": "#% reduced Fishing Range", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Quantity of Fish Caught", "better": 1, "id": "fish_quantity_+%", "matchers": [{"string": "#% increased Quantity of Fish Caught", "negate": false}, {"string": "#% reduced Quantity of Fish Caught", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Rarity of Fish Caught", "better": 1, "id": "fish_rarity_+%", "matchers": [{"string": "#% increased Rarity of Fish Caught", "negate": false}, {"string": "#% reduced Rarity of Fish Caught", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Spell Damage per 5% Chance to Block Attack Damage", "better": 1, "id": "spell_damage_+%_per_5%_block_chance", "matchers": [{"string": "#% increased Spell Damage per 5% Chance to Block Attack Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain # Life per Enemy Hit with Spells", "better": 1, "id": "base_life_gained_on_spell_hit", "matchers": [{"string": "Gain # Life per Enemy Hit with Spells", "negate": false}, {"string": "Lose # Life per Enemy Hit with Spells", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Global Attack Speed per Green Socket", "better": 1, "id": "global_attack_speed_+%_per_green_socket_on_item", "matchers": [{"string": "#% increased Global Attack Speed per Green Socket", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Global Physical Damage with Weapons per Red Socket", "better": 1, "id": "global_weapon_physical_damage_+%_per_red_socket_on_item", "matchers": [{"string": "#% increased Global Physical Damage with Weapons per Red Socket", "negate": false}], "trade": {"ids": null}} +{"ref": "#% of Physical Attack Damage Leeched as Mana per Blue Socket", "better": 1, "id": "global_mana_leech_from_physical_attack_damage_permyriad_per_blue_socket_on_item", "matchers": [{"string": "#% of Physical Attack Damage Leeched as Mana per Blue Socket", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Melee Strike Range per White Socket", "better": 1, "id": "global_melee_range_+_per_white_socket_on_item", "matchers": [{"string": "# to Melee Strike Range per White Socket", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Damage taken from Melee Attacks", "better": 1, "id": "melee_damage_taken_+%", "matchers": [{"string": "#% increased Damage taken from Melee Attacks", "negate": false}, {"string": "#% reduced Damage taken from Melee Attacks", "negate": true}], "trade": {"ids": null}} +{"ref": "Regenerate #% of your Armour as Life over 1 second when you Block", "better": 1, "id": "regenerate_%_armour_as_life_over_1_second_on_block", "matchers": [{"string": "Regenerate #% of your Armour as Life over 1 second when you Block", "negate": false}], "trade": {"ids": null}} +{"ref": "Lose #% of your Energy Shield when you Block", "better": 1, "id": "energy_shield_%_to_lose_on_block", "matchers": [{"string": "Lose #% of your Energy Shield when you Block", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain #% of Physical Damage as extra Chaos Damage", "better": 1, "id": "non_skill_base_physical_damage_%_to_gain_as_chaos", "matchers": [{"string": "Gain #% of Physical Damage as extra Chaos Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain #% of Fire Damage as Extra Chaos Damage", "better": 1, "id": "non_skill_base_fire_damage_%_to_gain_as_chaos", "matchers": [{"string": "Gain #% of Fire Damage as Extra Chaos Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain #% of Cold Damage as Extra Chaos Damage", "better": 1, "id": "non_skill_base_cold_damage_%_to_gain_as_chaos", "matchers": [{"string": "Gain #% of Cold Damage as Extra Chaos Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain #% of Lightning Damage as Extra Chaos Damage", "better": 1, "id": "non_skill_base_lightning_damage_%_to_gain_as_chaos", "matchers": [{"string": "Gain #% of Lightning Damage as Extra Chaos Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Ignite when in Main Hand", "better": 1, "id": "unique_ignite_chance_%_when_in_main_hand", "matchers": [{"string": "#% chance to Ignite when in Main Hand", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Chill Duration on Enemies when in Off Hand", "better": 1, "id": "unique_chill_duration_+%_when_in_off_hand", "matchers": [{"string": "#% increased Chill Duration on Enemies when in Off Hand", "negate": false}, {"string": "#% reduced Chill Duration on Enemies when in Off Hand", "negate": true}], "trade": {"ids": null}} +{"ref": "30% increased Movement Speed for # seconds on Throwing a Trap", "better": 1, "id": "movement_speed_bonus_when_throwing_trap_ms", "matchers": [{"string": "30% increased Movement Speed for # seconds on Throwing a Trap", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Trap", "better": 1, "id": "local_display_socketed_gems_get_trap_level", "matchers": [{"string": "Socketed Gems are Supported by Level # Trap", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Trap Duration", "better": 1, "id": "trap_duration_+%", "matchers": [{"string": "#% increased Trap Duration", "negate": false}, {"string": "#% reduced Trap Duration", "negate": true}], "trade": {"ids": null}} +{"ref": "Trap lasts # seconds", "better": 1, "id": "base_trap_duration", "matchers": [{"string": "Trap lasts # seconds", "negate": false}], "trade": {"ids": null}} +{"ref": "Cannot be Knocked Back", "better": 1, "id": "cannot_be_knocked_back", "matchers": [{"string": "Cannot be Knocked Back", "negate": false}], "trade": {"ids": null}} +{"ref": "Ice Spears on Death", "better": 1, "id": "display_monster_ice_spear_nova_on_death_text", "matchers": [{"string": "Ice Spears on Death", "negate": false}], "trade": {"ids": null}} +{"ref": "Spikes on Death", "better": 1, "id": "display_monster_spike_nova_on_death_text", "matchers": [{"string": "Spikes on Death", "negate": false}], "trade": {"ids": null}} +{"ref": "Reflects # to # Cold Damage to Melee Attackers", "better": 1, "id": "minimum_cold_damage_to_return_to_melee_attacker", "matchers": [{"string": "Reflects # to # Cold Damage to Melee Attackers", "negate": false}], "trade": {"ids": null}} +{"ref": "Minion Instability", "better": 1, "id": "keystone_minion_instability", "matchers": [{"string": "Minion Instability", "negate": false}], "trade": {"ids": null}} +{"ref": "Rare Monsters in next Area will each have a Nemesis Mod", "better": 1, "id": "map_rare_monsters_have_nemesis_mod", "matchers": [{"string": "Rare Monsters in next Area will each have a Nemesis Mod", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain #% of Physical Damage as Extra Damage of a random Element", "better": 1, "id": "non_skill_base_physical_damage_%_to_gain_as_random_element", "matchers": [{"string": "Gain #% of Physical Damage as Extra Damage of a random Element", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Curse Enemies with Enfeeble on Hit", "better": 1, "id": "curse_on_hit_%_enfeeble", "matchers": [{"string": "#% chance to Curse Enemies with Enfeeble on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Powerful Shrines can affect both Monsters and you", "better": 1, "id": "map_allow_shrines", "matchers": [{"string": "Powerful Shrines can affect both Monsters and you", "negate": false}], "trade": {"ids": null}} +{"ref": "Regenerate # Life over 1 second when you Cast a Spell", "better": 1, "id": "regenerate_X_life_over_1_second_on_cast", "matchers": [{"string": "Regenerate # Life over 1 second when you Cast a Spell", "negate": false}], "trade": {"ids": null}} +{"ref": "Phasing", "better": 1, "id": "phase_through_objects", "matchers": [{"string": "Phasing", "negate": false}], "trade": {"ids": null}} +{"ref": "Final Boss drops higher Level Items", "better": 1, "id": "display_map_final_boss_drops_higher_level_gear", "matchers": [{"string": "Final Boss drops higher Level Items", "negate": false}], "trade": {"ids": null}} +{"ref": "Critical Strikes have Culling Strike", "better": 1, "id": "crits_have_culling_strike", "matchers": [{"string": "Critical Strikes have Culling Strike", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Fire Damage taken", "better": 1, "id": "fire_damage_taken_+%", "matchers": [{"string": "#% increased Fire Damage taken", "negate": false}, {"string": "#% reduced Fire Damage taken", "negate": true}], "trade": {"ids": null}} +{"ref": "+# Fire Damage taken from Hits", "better": 1, "id": "fire_damage_taken_+", "matchers": [{"string": "# Fire Damage taken from Hits", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain a Frenzy Charge if an Attack Ignites an Enemy", "better": 1, "id": "gain_frenzy_charge_if_attack_ignites", "matchers": [{"string": "Gain a Frenzy Charge if an Attack Ignites an Enemy", "negate": false}], "trade": {"ids": null}} +{"ref": "Culling Strike against Burning Enemies", "better": 1, "id": "culling_strike_on_burning_enemies", "matchers": [{"string": "Culling Strike against Burning Enemies", "negate": false}], "trade": {"ids": null}} +{"ref": "+# Chaos Damage taken", "better": 1, "id": "chaos_damage_taken_+", "matchers": [{"string": "# Chaos Damage taken", "negate": false}], "trade": {"ids": null}} +{"ref": "Curse Skills have #% increased Skill Effect Duration", "better": 1, "id": "curse_skill_effect_duration_+%", "matchers": [{"string": "Curse Skills have #% increased Skill Effect Duration", "negate": false}, {"string": "Curse Skills have #% reduced Skill Effect Duration", "negate": true}], "trade": {"ids": null}} +{"ref": "+# to Level of Socketed Curse Gems", "better": 1, "id": "local_socketed_curse_gem_level_+", "matchers": [{"string": "# to Level of Socketed Curse Gems", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Chaos Resistance during any Flask Effect", "better": 1, "id": "chaos_resistance_+_while_using_flask", "matchers": [{"string": "#% to Chaos Resistance during any Flask Effect", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters and bosses invade from elsewhere in Wraeclast", "better": 1, "id": "map_invasion_monster_packs", "matchers": [{"string": "Monsters and bosses invade from elsewhere in Wraeclast", "negate": false}], "trade": {"ids": null}} +{"ref": "Freezes you when activated", "better": 1, "id": "chest_display_freeze", "matchers": [{"string": "Freezes you when activated", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Rarity of Items Found from Chests", "better": 1, "id": "chest_item_rarity_+%", "matchers": [{"string": "#% increased Rarity of Items Found from Chests", "negate": false}, {"string": "#% reduced Rarity of Items Found from Chests", "negate": true}], "trade": {"ids": null}} +{"ref": "Contains an additional Unique Item", "better": 1, "id": "chest_drop_additional_number_of_uniques_of_drop_pool_types", "matchers": [{"string": "Contains an additional Unique Item", "negate": false}], "trade": {"ids": null}} +{"ref": "Contains an additional Kaom Item", "better": 1, "id": "chest_number_of_additional_kaom_uniques_to_drop", "matchers": [{"string": "Contains an additional Kaom Item", "negate": false}], "trade": {"ids": null}} +{"ref": "Contains an additional Unique Map", "better": 1, "id": "chest_drop_additional_unique_maps", "matchers": [{"string": "Contains an additional Unique Map", "negate": false}], "trade": {"ids": null}} +{"ref": "Guarded by a Rogue Exile", "better": 1, "id": "chest_spawn_rogue_exiles", "matchers": [{"string": "Guarded by a Rogue Exile", "negate": false}], "trade": {"ids": null}} +{"ref": "Guarded by a Unique Boss", "better": 1, "id": "chest_spawn_X_standalone_map_bosses", "matchers": [{"string": "Guarded by a Unique Boss", "negate": false}], "trade": {"ids": null}} +{"ref": "Revives nearby dead Monsters with Onslaught", "better": 1, "id": "chest_display_revive_nearby_monsters", "matchers": [{"string": "Revives nearby dead Monsters with Onslaught", "negate": false}], "trade": {"ids": null}} +{"ref": "Guarded by a stream of Monsters", "better": 1, "id": "chest_display_spawns_monsters_continuously", "matchers": [{"string": "Guarded by a stream of Monsters", "negate": false}], "trade": {"ids": null}} +{"ref": "Guarded by a stream of Tormented Spirits", "better": 1, "id": "chest_display_spawns_torment_spirits_continuously", "matchers": [{"string": "Guarded by a stream of Tormented Spirits", "negate": false}], "trade": {"ids": null}} +{"ref": "Guarded by a Redblade Warband", "better": 1, "id": "chest_display_summons_fire_warband", "matchers": [{"string": "Guarded by a Redblade Warband", "negate": false}], "trade": {"ids": null}} +{"ref": "Guarded by a Mutewind Warband", "better": 1, "id": "chest_display_summons_cold_warband", "matchers": [{"string": "Guarded by a Mutewind Warband", "negate": false}], "trade": {"ids": null}} +{"ref": "Guarded by a Brinerot Warband", "better": 1, "id": "chest_display_summons_lightning_warband", "matchers": [{"string": "Guarded by a Brinerot Warband", "negate": false}], "trade": {"ids": null}} +{"ref": "Guarded by a Renegade Warband", "better": 1, "id": "chest_display_summons_chaos_warband", "matchers": [{"string": "Guarded by a Renegade Warband", "negate": false}], "trade": {"ids": null}} +{"ref": "Detonates nearby corpses", "better": 1, "id": "chest_display_explodes_corpses", "matchers": [{"string": "Detonates nearby corpses", "negate": false}], "trade": {"ids": null}} +{"ref": "Guarded by camoflaged Monsters", "better": 1, "id": "chest_camoflaged", "matchers": [{"string": "Guarded by camoflaged Monsters", "negate": false}], "trade": {"ids": null}} +{"ref": "Casts a random Hex Curse Spell when activated", "better": 1, "id": "chest_display_cast_random_curse", "matchers": [{"string": "Casts a random Hex Curse Spell when activated", "negate": false}], "trade": {"ids": null}} +{"ref": "Guarded by the Ancestors' Power", "better": 1, "id": "chest_display_kaom_totems", "matchers": [{"string": "Guarded by the Ancestors' Power", "negate": false}], "trade": {"ids": null}} +{"ref": "Ignites you when activated", "better": 1, "id": "chest_display_ignite", "matchers": [{"string": "Ignites you when activated", "negate": false}], "trade": {"ids": null}} +{"ref": "Casts Firestorm", "better": 1, "id": "chest_display_fire_storm", "matchers": [{"string": "Casts Firestorm", "negate": false}], "trade": {"ids": null}} +{"ref": "Summons Volatile Crags", "better": 1, "id": "chest_display_generic", "matchers": [{"string": "Summons Volatile Crags", "negate": false}], "trade": {"ids": null}} +{"ref": "Spreads Caustic Ground", "better": 1, "id": "chest_display_caustic_clouds", "matchers": [{"string": "Spreads Caustic Ground", "negate": false}], "trade": {"ids": null}} +{"ref": "Explodes", "better": 1, "id": "chest_display_explosion", "matchers": [{"string": "Explodes", "negate": false}], "trade": {"ids": null}} +{"ref": "Contained Gems have Experience", "better": 1, "id": "chest_gems_drop_with_experience", "matchers": [{"string": "Contained Gems have Experience", "negate": false}], "trade": {"ids": null}} +{"ref": "Contains # additional Item", "better": 1, "id": "chest_drop_additional_normal_items_up_to", "matchers": [{"string": "Contains # additional Item", "negate": false}], "trade": {"ids": null}} +{"ref": "Contains # additional Magic Item", "better": 1, "id": "chest_drop_additional_magic_items_up_to", "matchers": [{"string": "Contains # additional Magic Item", "negate": false}], "trade": {"ids": null}} +{"ref": "Contains # additional Rare Item", "better": 1, "id": "chest_drop_additional_rare_items_up_to", "matchers": [{"string": "Contains # additional Rare Item", "negate": false}], "trade": {"ids": null}} +{"ref": "{{Items dropped by Runic Monsters are fully Linked}}", "better": 1, "id": "dropped_items_are_fully_linked", "matchers": [{"string": "{{Items dropped by Runic Monsters are fully Linked}}", "negate": false}], "trade": {"ids": null}} +{"ref": "Contains an extra Vaal Gem", "better": 1, "id": "chest_drops_extra_vaal_gems", "matchers": [{"string": "Contains an extra Vaal Gem", "negate": false}], "trade": {"ids": null}} +{"ref": "Contains # Divination Card that has a Full Stack number of #", "better": 1, "id": "chest_drop_X_divination_cards", "matchers": [{"string": "Contains # Divination Card that has a Full Stack number of #", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems Chain # additional times", "better": 1, "id": "local_display_socketed_gems_chain_X_additional_times", "matchers": [{"string": "Socketed Gems Chain # additional times", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Immunity to Bleeding", "better": 1, "id": "immune_to_bleeding", "matchers": [{"string": "Grants Immunity to Bleeding", "negate": false}], "trade": {"ids": null}} +{"ref": "Traps cannot be Damaged for +# seconds after being Thrown", "better": 1, "id": "traps_invulnerable_for_duration_ms", "matchers": [{"string": "Traps cannot be Damaged for +# seconds after being Thrown", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Level of Socketed Vaal Gems", "better": 1, "id": "local_socketed_vaal_gem_level_+", "matchers": [{"string": "# to Level of Socketed Vaal Gems", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Level of Socketed Non-Vaal Gems", "better": 1, "id": "local_socketed_non_vaal_gem_level_+", "matchers": [{"string": "# to Level of Socketed Non-Vaal Gems", "negate": false}], "trade": {"ids": null}} +{"ref": "Strongboxes are guarded by ambushing monsters", "better": 1, "id": "map_ambush_chests", "matchers": [{"string": "Strongboxes are guarded by ambushing monsters", "negate": false}], "trade": {"ids": null}} +{"ref": "Unique Boss deals #% increased Damage", "better": 1, "id": "map_boss_damage_+%", "matchers": [{"string": "Unique Boss deals #% increased Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Minions gain Unholy Might for # seconds on Kill", "better": 1, "id": "minion_unholy_might_on_kill_duration_ms", "matchers": [{"string": "Minions gain Unholy Might for # seconds on Kill", "negate": false}], "trade": {"ids": null}} +{"ref": "Contains additional Divination Cards that give Currency", "better": 1, "id": "chest_drop_additional_currency_item_divination_cards", "matchers": [{"string": "Contains additional Divination Cards that give Currency", "negate": false}], "trade": {"ids": null}} +{"ref": "Arrows deal 50% increased Damage with Hits to Targets they Pierce", "better": 1, "id": "arrow_damage_+50%_vs_pierced_targets", "matchers": [{"string": "Arrows deal 50% increased Damage with Hits to Targets they Pierce", "negate": false}], "trade": {"ids": null}} +{"ref": "Arrows deal #% increased Damage with Hits to Targets they Pierce", "better": 1, "id": "arrow_damage_+%_vs_pierced_targets", "matchers": [{"string": "Arrows deal #% increased Damage with Hits to Targets they Pierce", "negate": false}, {"string": "Arrows deal #% reduced Damage with Hits to Targets they Pierce", "negate": true}], "trade": {"ids": null}} +{"ref": "You gain Onslaught for # seconds on using a Vaal Skill", "better": 1, "id": "onslaught_on_vaal_skill_use_duration_ms", "matchers": [{"string": "You gain Onslaught for # seconds on using a Vaal Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Level of Socketed Support Gems", "better": 1, "id": "local_socketed_support_gem_level_+", "matchers": [{"string": "# to Level of Socketed Support Gems", "negate": false}], "trade": {"ids": null}} +{"ref": "Hexes Transfer to all Enemies in a range of 30 when Hexed Enemy dies", "better": 1, "id": "transfer_hexes_to_X_nearby_enemies_on_kill", "matchers": [{"string": "Hexes Transfer to all Enemies in a range of 30 when Hexed Enemy dies", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Melee Damage against Ignited Enemies", "better": 1, "id": "melee_damage_+%_vs_burning_enemies", "matchers": [{"string": "#% increased Melee Damage against Ignited Enemies", "negate": false}, {"string": "#% reduced Melee Damage against Ignited Enemies", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Melee Damage against Shocked Enemies", "better": 1, "id": "melee_damage_+%_vs_shocked_enemies", "matchers": [{"string": "#% increased Melee Damage against Shocked Enemies", "negate": false}, {"string": "#% reduced Melee Damage against Shocked Enemies", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Melee Damage against Frozen Enemies", "better": 1, "id": "melee_damage_+%_vs_frozen_enemies", "matchers": [{"string": "#% increased Melee Damage against Frozen Enemies", "negate": false}, {"string": "#% reduced Melee Damage against Frozen Enemies", "negate": true}], "trade": {"ids": null}} +{"ref": "Projectiles have #% chance to Shock", "better": 1, "id": "projectile_shock_chance_%", "matchers": [{"string": "Projectiles have #% chance to Shock", "negate": false}], "trade": {"ids": null}} +{"ref": "Projectiles have #% chance to Freeze", "better": 1, "id": "projectile_freeze_chance_%", "matchers": [{"string": "Projectiles have #% chance to Freeze", "negate": false}], "trade": {"ids": null}} +{"ref": "Projectiles have #% chance to Ignite", "better": 1, "id": "projectile_ignite_chance_%", "matchers": [{"string": "Projectiles have #% chance to Ignite", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are supported by Level # Life Leech", "better": 1, "id": "local_display_socketed_gems_get_life_leech_level", "matchers": [{"string": "Socketed Gems are supported by Level # Life Leech", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are supported by Level # Chance to Bleed", "better": 1, "id": "local_display_socketed_gems_get_chance_to_bleed_level", "matchers": [{"string": "Socketed Gems are supported by Level # Chance to Bleed", "negate": false}], "trade": {"ids": null}} +{"ref": "Light Radius is based on Energy Shield instead of Life", "better": 1, "id": "light_radius_scales_with_energy_shield", "matchers": [{"string": "Light Radius is based on Energy Shield instead of Life", "negate": false}], "trade": {"ids": null}} +{"ref": "+# Physical Damage taken from Hits by Animals", "better": 1, "id": "physical_damage_taken_+_vs_beasts", "matchers": [{"string": "# Physical Damage taken from Hits by Animals", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Damage taken per Frenzy Charge", "better": 1, "id": "damage_taken_+%_per_frenzy_charge", "matchers": [{"string": "#% increased Damage taken per Frenzy Charge", "negate": false}, {"string": "#% reduced Damage taken per Frenzy Charge", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Lightning Damage per Frenzy Charge", "better": 1, "id": "lightning_damage_+%_per_frenzy_charge", "matchers": [{"string": "#% increased Lightning Damage per Frenzy Charge", "negate": false}, {"string": "#% reduced Lightning Damage per Frenzy Charge", "negate": true}], "trade": {"ids": null}} +{"ref": "# Life gained on Kill per Frenzy Charge", "better": 1, "id": "life_gained_on_enemy_death_per_frenzy_charge", "matchers": [{"string": "# Life gained on Kill per Frenzy Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "Contains no other Items", "better": 1, "id": "chest_no_regular_drops", "matchers": [{"string": "Contains no other Items", "negate": false}], "trade": {"ids": null}} +{"ref": "Recover #% of Life on use", "better": 1, "id": "local_unique_flask_instantly_recovers_%_maximum_life", "matchers": [{"string": "Recover #% of Life on use", "negate": false}], "trade": {"ids": null}} +{"ref": "#% of Maximum Life taken as Chaos Damage per second", "better": 1, "id": "local_unique_flask_chaos_damage_%_of_maximum_life_to_deal_per_minute_while_healing", "matchers": [{"string": "#% of Maximum Life taken as Chaos Damage per second", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage", "better": 1, "id": "unique_add_power_charge_on_melee_knockback_%", "matchers": [{"string": "#% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Bear Trap Skill", "better": 1, "id": "local_display_grants_skill_bear_trap_level", "matchers": [{"string": "Grants Level # Bear Trap Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Unique Boss gives #% increased Experience", "better": 1, "id": "display_map_boss_gives_experience_+%", "matchers": [{"string": "Unique Boss gives #% increased Experience", "negate": false}], "trade": {"ids": null}} +{"ref": "Unique Boss drops an additional Currency Item", "better": 1, "id": "map_death_and_taxes_boss_drops_additional_currency", "matchers": [{"string": "Unique Boss drops an additional Currency Item", "negate": false}], "trade": {"ids": null}} +{"ref": "Slaying Enemies in a kill streak grants Rampage bonuses", "better": 1, "id": "map_players_gain_rampage_stacks", "matchers": [{"string": "Slaying Enemies in a kill streak grants Rampage bonuses", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to gain a Power Charge when you Throw a Trap", "better": 1, "id": "gain_power_charge_when_throwing_trap_%", "matchers": [{"string": "#% chance to gain a Power Charge when you Throw a Trap", "negate": false}], "trade": {"ids": null}} +{"ref": "Slaying Enemies close together can attract monsters from Beyond this realm", "better": 1, "id": "map_beyond_rules", "matchers": [{"string": "Slaying Enemies close together can attract monsters from Beyond this realm", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Critical Hit Chance per 8 Strength", "better": 1, "id": "critical_strike_chance_+%_per_8_strength", "matchers": [{"string": "#% increased Critical Hit Chance per 8 Strength", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Attack Speed while Ignited", "better": 1, "id": "attack_speed_+%_while_ignited", "matchers": [{"string": "#% increased Attack Speed while Ignited", "negate": false}, {"string": "#% reduced Attack Speed while Ignited", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Cast Speed while Ignited", "better": 1, "id": "cast_speed_+%_while_ignited", "matchers": [{"string": "#% increased Cast Speed while Ignited", "negate": false}, {"string": "#% reduced Cast Speed while Ignited", "negate": true}], "trade": {"ids": null}} +{"ref": "+#% chance to be Ignited", "better": 1, "id": "chance_to_be_ignited_%", "matchers": [{"string": "#% chance to be Ignited", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Cause Poison on Critical Hit", "better": 1, "id": "local_poison_on_critical_strike_chance_%", "matchers": [{"string": "#% chance to Cause Poison on Critical Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Melee Critical Hits have #% chance to Poison the Enemy", "better": 1, "id": "poison_on_melee_critical_strike_%", "matchers": [{"string": "Melee Critical Hits have #% chance to Poison the Enemy", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% Chance to Block Attack Damage during Effect", "better": 1, "id": "local_unique_flask_block_%_while_healing", "matchers": [{"string": "#% Chance to Block Attack Damage during Effect", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% Chance to Block Spell Damage during Effect", "better": 1, "id": "local_unique_flask_spell_block_%_while_healing", "matchers": [{"string": "#% Chance to Block Spell Damage during Effect", "negate": false}], "trade": {"ids": null}} +{"ref": "Your Curses have infinite Duration", "better": 1, "id": "curses_never_expire", "matchers": [{"string": "Your Curses have infinite Duration", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Attack Damage per 450 Evasion Rating", "better": 1, "id": "attack_damage_+%_per_450_evasion", "matchers": [{"string": "#% increased Attack Damage per 450 Evasion Rating", "negate": false}, {"string": "#% reduced Attack Damage per 450 Evasion Rating", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Damage with Hits against Ignited Enemies", "better": 1, "id": "hit_damage_+%_vs_ignited_enemies", "matchers": [{"string": "#% increased Damage with Hits against Ignited Enemies", "negate": false}, {"string": "#% reduced Damage with Hits against Ignited Enemies", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Movement Speed while on Full Energy Shield", "better": 1, "id": "movement_velocity_+%_on_full_energy_shield", "matchers": [{"string": "#% increased Movement Speed while on Full Energy Shield", "negate": false}, {"string": "#% reduced Movement Speed while on Full Energy Shield", "negate": true}], "trade": {"ids": null}} +{"ref": "#% Chance to Cause Monster to Flee on Block", "better": 1, "id": "block_causes_monster_flee_%", "matchers": [{"string": "#% Chance to Cause Monster to Flee on Block", "negate": false}], "trade": {"ids": null}} +{"ref": "Leech Life #% faster", "better": 1, "id": "base_life_leech_rate_+%", "matchers": [{"string": "Leech Life #% faster", "negate": false}, {"string": "Leech Life #% slower", "negate": true}], "trade": {"ids": null}} +{"ref": "Leech #% faster", "better": 1, "id": "leech_rate_+%", "matchers": [{"string": "Leech #% faster", "negate": false}, {"string": "Leech #% slower", "negate": true}], "trade": {"ids": null}} +{"ref": "Leech Mana #% faster", "better": 1, "id": "base_mana_leech_rate_+%", "matchers": [{"string": "Leech Mana #% faster", "negate": false}, {"string": "Leech Mana #% slower", "negate": true}], "trade": {"ids": null}} +{"ref": "Adds # to # Chaos Damage to Spells", "better": 1, "id": "spell_minimum_added_chaos_damage", "matchers": [{"string": "Adds # to # Chaos Damage to Spells", "negate": false}], "trade": {"ids": null}} +{"ref": "Recover #% of Life on Rampage", "better": 1, "id": "recover_%_maximum_life_on_rampage_threshold", "matchers": [{"string": "Recover #% of Life on Rampage", "negate": false}], "trade": {"ids": null}} +{"ref": "Removes Elemental Ailments on Rampage", "better": 1, "id": "dispel_status_ailments_on_rampage_threshold", "matchers": [{"string": "Removes Elemental Ailments on Rampage", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain Immunity to Physical Damage for # second on Rampage", "better": 1, "id": "gain_physical_damage_immunity_on_rampage_threshold_ms", "matchers": [{"string": "Gain Immunity to Physical Damage for # second on Rampage", "negate": false}], "trade": {"ids": null}} +{"ref": "Kills grant an additional Vaal Soul if you have Rampaged Recently", "better": 1, "id": "gain_an_additional_vaal_soul_on_kill_if_have_rampaged_recently", "matchers": [{"string": "Kills grant an additional Vaal Soul if you have Rampaged Recently", "negate": false}], "trade": {"ids": null}} +{"ref": "Creates a Smoke Cloud on Rampage", "better": 1, "id": "ground_smoke_on_rampage_threshold_ms", "matchers": [{"string": "Creates a Smoke Cloud on Rampage", "negate": false}], "trade": {"ids": null}} +{"ref": "Enemies do not block your movement for # second on Rampage", "better": 1, "id": "phasing_on_rampage_threshold_ms", "matchers": [{"string": "Enemies do not block your movement for # second on Rampage", "negate": false}], "trade": {"ids": null}} +{"ref": "#% Global chance to Blind Enemies on hit", "better": 1, "id": "global_chance_to_blind_on_hit_%", "matchers": [{"string": "#% Global chance to Blind Enemies on hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Regenerate # Life per second per Level", "better": 1, "id": "life_regeneration_rate_per_minute_per_level", "matchers": [{"string": "Regenerate # Life per second per Level", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Global Critical Hit Chance per Level", "better": 1, "id": "critical_strike_chance_+%_per_level", "matchers": [{"string": "#% increased Global Critical Hit Chance per Level", "negate": false}, {"string": "#% reduced Global Critical Hit Chance per Level", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Attack Damage per Level", "better": 1, "id": "attack_damage_+%_per_level", "matchers": [{"string": "#% increased Attack Damage per Level", "negate": false}, {"string": "#% reduced Attack Damage per Level", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Spell Damage per Level", "better": 1, "id": "spell_damage_+%_per_level", "matchers": [{"string": "#% increased Spell Damage per Level", "negate": false}, {"string": "#% reduced Spell Damage per Level", "negate": true}], "trade": {"ids": null}} +{"ref": "Gain a Flask Charge when you deal a Critical Hit", "better": 1, "id": "recharge_flasks_on_crit", "matchers": [{"string": "Gain a Flask Charge when you deal a Critical Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Enemies you Attack have #% chance to Reflect # to # Chaos Damage to you", "better": 1, "id": "unique_minimum_chaos_damage_to_reflect_to_self_on_attack", "matchers": [{"string": "Enemies you Attack have #% chance to Reflect # to # Chaos Damage to you", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Critical Hit Chance", "better": 1, "id": "local_critical_strike_chance_+%", "matchers": [{"string": "#% increased Critical Hit Chance", "negate": false}, {"string": "#% reduced Critical Hit Chance", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_587431675"]}}} +{"ref": "Rampage", "better": 1, "id": "player_gain_rampage_stacks", "matchers": [{"string": "Rampage", "negate": false}], "trade": {"ids": null}} +{"ref": "Melee Hits count as Rampage Kills\\nRampage", "better": 1, "id": "melee_hits_grant_rampage_stacks", "matchers": [{"string": "Melee Hits count as Rampage Kills\\nRampage", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain # Mana on Kill per Level", "better": 1, "id": "mana_gained_on_enemy_death_per_level", "matchers": [{"string": "Gain # Mana on Kill per Level", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain # Energy Shield on Kill per Level", "better": 1, "id": "energy_shield_gained_on_enemy_death_per_level", "matchers": [{"string": "Gain # Energy Shield on Kill per Level", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Level of Socketed Skill Gems", "better": 1, "id": "local_socketed_active_skill_gem_level_+", "matchers": [{"string": "# to Level of Socketed Skill Gems", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Elemental Damage per Level", "better": 1, "id": "elemental_damage_+%_per_level", "matchers": [{"string": "#% increased Elemental Damage per Level", "negate": false}, {"string": "#% reduced Elemental Damage per Level", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Chaos Damage per Level", "better": 1, "id": "chaos_damage_+%_per_level", "matchers": [{"string": "#% increased Chaos Damage per Level", "negate": false}, {"string": "#% reduced Chaos Damage per Level", "negate": true}], "trade": {"ids": null}} +{"ref": "Gain # Life on Kill per Level", "better": 1, "id": "life_gained_on_enemy_death_per_level", "matchers": [{"string": "Gain # Life on Kill per Level", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain Unholy Might for # second on Rampage", "better": 1, "id": "gain_unholy_might_on_rampage_threshold_ms", "matchers": [{"string": "Gain Unholy Might for # second on Rampage", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Blind duration", "better": 1, "id": "blind_duration_+%", "matchers": [{"string": "#% increased Blind duration", "negate": false}, {"string": "#% reduced Blind duration", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Damage per 10 Levels", "better": 1, "id": "damage_+%_per_10_levels", "matchers": [{"string": "#% increased Damage per 10 Levels", "negate": false}, {"string": "#% reduced Damage per 10 Levels", "negate": true}], "trade": {"ids": null}} +{"ref": "Area is inhabited by an additional Invasion Boss", "better": 1, "id": "map_num_extra_invasion_bosses", "matchers": [{"string": "Area is inhabited by an additional Invasion Boss", "negate": false}], "trade": {"ids": null}} +{"ref": "Area contains an additional pack with a Rare monster", "better": 1, "id": "map_contains_x_additional_rare_packs", "matchers": [{"string": "Area contains an additional pack with a Rare monster", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters have Onslaught", "better": 1, "id": "map_monsters_have_onslaught", "matchers": [{"string": "Monsters have Onslaught", "negate": false}], "trade": {"ids": null}} +{"ref": "Prefixes Cannot Be Changed", "better": 1, "id": "item_generation_cannot_change_prefixes", "matchers": [{"string": "Prefixes Cannot Be Changed", "negate": false}], "trade": {"ids": null}} +{"ref": "Suffixes Cannot Be Changed", "better": 1, "id": "item_generation_cannot_change_suffixes", "matchers": [{"string": "Suffixes Cannot Be Changed", "negate": false}], "trade": {"ids": null}} +{"ref": "Cannot roll Attack Modifiers", "better": 1, "id": "item_generation_cannot_roll_attack_affixes", "matchers": [{"string": "Cannot roll Attack Modifiers", "negate": false}], "trade": {"ids": null}} +{"ref": "Cannot roll Caster Modifiers", "better": 1, "id": "item_generation_cannot_roll_caster_affixes", "matchers": [{"string": "Cannot roll Caster Modifiers", "negate": false}], "trade": {"ids": null}} +{"ref": "Can have up to 3 Crafted Modifiers", "better": 1, "id": "item_generation_can_have_multiple_crafted_mods", "matchers": [{"string": "Can have up to 3 Crafted Modifiers", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems have Elemental Equilibrium", "better": 1, "id": "local_display_socketed_gems_have_elemental_equilibrium", "matchers": [{"string": "Socketed Gems have Elemental Equilibrium", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems have Secrets of Suffering", "better": 1, "id": "local_display_socketed_gems_have_secrets_of_suffering", "matchers": [{"string": "Socketed Gems have Secrets of Suffering", "negate": false}], "trade": {"ids": null}} +{"ref": "Unaffected by Ignite or Shock if Maximum Life and Maximum Mana are within 500", "better": 1, "id": "unaffected_by_ignite_and_shock_while_max_life_mana_within_500", "matchers": [{"string": "Unaffected by Ignite or Shock if Maximum Life and Maximum Mana are within 500", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Fire Resistance when Socketed with a Red Gem", "better": 1, "id": "unique_fire_damage_resistance_%_when_red_gem_socketed", "matchers": [{"string": "#% to Fire Resistance when Socketed with a Red Gem", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Lightning Resistance when Socketed with a Blue Gem", "better": 1, "id": "unique_lightning_damage_resistance_%_when_blue_gem_socketed", "matchers": [{"string": "#% to Lightning Resistance when Socketed with a Blue Gem", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Cold Resistance when Socketed with a Green Gem", "better": 1, "id": "unique_cold_damage_resistance_%_when_green_gem_socketed", "matchers": [{"string": "#% to Cold Resistance when Socketed with a Green Gem", "negate": false}], "trade": {"ids": null}} +{"ref": "All Sockets are White", "better": 1, "id": "local_all_sockets_are_white", "matchers": [{"string": "All Sockets are White", "negate": false}], "trade": {"ids": null}} +{"ref": "Curse Enemies with Punishment when you Block their Melee Damage, ignoring Curse Limit", "better": 1, "id": "curse_on_melee_block_level_15_punishment", "matchers": [{"string": "Curse Enemies with Punishment when you Block their Melee Damage, ignoring Curse Limit", "negate": false}], "trade": {"ids": null}} +{"ref": "Curse Enemies with Temporal Chains when you Block their Projectile Attack Damage, ignoring Curse Limit", "better": 1, "id": "curse_on_projectile_block_level_15_temporal_chains", "matchers": [{"string": "Curse Enemies with Temporal Chains when you Block their Projectile Attack Damage, ignoring Curse Limit", "negate": false}], "trade": {"ids": null}} +{"ref": "Curse Enemies with Elemental Weakness when you Block their Spell Damage, ignoring Curse Limit", "better": 1, "id": "curse_on_spell_block_level_15_elemental_weakness", "matchers": [{"string": "Curse Enemies with Elemental Weakness when you Block their Spell Damage, ignoring Curse Limit", "negate": false}], "trade": {"ids": null}} +{"ref": "Enemies slain by Socketed Gems drop #% increased item quantity", "better": 1, "id": "local_display_socketed_gems_get_item_quantity_+%", "matchers": [{"string": "Enemies slain by Socketed Gems drop #% increased item quantity", "negate": false}, {"string": "Enemies slain by Socketed Gems drop #% reduced item quantity", "negate": true}], "trade": {"ids": null}} +{"ref": "Area becomes fatal after some time", "better": 1, "id": "display_map_has_oxygen", "matchers": [{"string": "Area becomes fatal after some time", "negate": false}], "trade": {"ids": null}} +{"ref": "Magic Monster Packs in next Area will each have a Bloodline Mod", "better": 1, "id": "map_magic_pack_mod_rules", "matchers": [{"string": "Magic Monster Packs in next Area will each have a Bloodline Mod", "negate": false}], "trade": {"ids": null}} +{"ref": "Curse Enemies with Vulnerability on Block", "better": 1, "id": "curse_on_block_level_5_vulnerability", "matchers": [{"string": "Curse Enemies with Vulnerability on Block", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Steal Power, Frenzy, and Endurance Charges on Hit", "better": 1, "id": "base_steal_power_frenzy_endurance_charges_on_hit_%", "matchers": [{"string": "#% chance to Steal Power, Frenzy, and Endurance Charges on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Skills Repeat an additional Time", "better": 1, "id": "skill_repeat_count", "matchers": [{"string": "Skills Repeat an additional Time", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to create a Smoke Cloud when Hit", "better": 1, "id": "ground_smoke_when_hit_%", "matchers": [{"string": "#% chance to create a Smoke Cloud when Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Tormented Spirits haunt Wraeclast", "better": 1, "id": "map_spawn_tormented_spirits", "matchers": [{"string": "Tormented Spirits haunt Wraeclast", "negate": false}], "trade": {"ids": null}} +{"ref": "Area is haunted by # additional Tormented Spirit", "better": 1, "id": "map_spawn_extra_torment_spirits", "matchers": [{"string": "Area is haunted by # additional Tormented Spirit", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Elemental Damage with Attack Skills during any Flask Effect", "better": 1, "id": "elemental_damage_with_attack_skills_+%_while_using_flask", "matchers": [{"string": "#% increased Elemental Damage with Attack Skills during any Flask Effect", "negate": false}, {"string": "#% reduced Elemental Damage with Attack Skills during any Flask Effect", "negate": true}], "trade": {"ids": null}} +{"ref": "#% of Fire Damage from Hits taken as Physical Damage", "better": 1, "id": "base_fire_hit_damage_taken_%_as_physical_value_negated", "matchers": [{"string": "#% of Fire Damage from Hits taken as Physical Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3205239847"]}}} +{"ref": "Adds # to # Fire Damage to Attacks against Ignited Enemies", "better": 1, "id": "minimum_added_fire_damage_vs_ignited_enemies", "matchers": [{"string": "Adds # to # Fire Damage to Attacks against Ignited Enemies", "negate": false}], "trade": {"ids": null}} +{"ref": "Trigger Socketed Minion Spells on Kill with this Weapon\\nMinion Spells Triggered by this Item have a 0.25 second Cooldown with 5 Uses", "better": 1, "id": "cast_socketed_minion_skills_on_bow_kill_%", "matchers": [{"string": "Trigger Socketed Minion Spells on Kill with this Weapon\\nMinion Spells Triggered by this Item have a 0.25 second Cooldown with 5 Uses", "negate": false}], "trade": {"ids": null}} +{"ref": "Minions deal #% increased Damage per 5 Dexterity", "better": 1, "id": "minion_damage_+%_per_5_dex", "matchers": [{"string": "Minions deal #% increased Damage per 5 Dexterity", "negate": false}, {"string": "Minions deal #% reduced Damage per 5 Dexterity", "negate": true}], "trade": {"ids": null}} +{"ref": "#% chance to Trigger Socketed Spells on Killing a Shocked Enemy", "better": 1, "id": "cast_linked_spells_on_shocked_enemy_kill_%", "matchers": [{"string": "#% chance to Trigger Socketed Spells on Killing a Shocked Enemy", "negate": false}], "trade": {"ids": null}} +{"ref": "Cannot gain Power Charges", "better": 1, "id": "cannot_gain_power_charges", "matchers": [{"string": "Cannot gain Power Charges", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Damage with Hits per Curse on Enemy", "better": 1, "id": "damage_vs_cursed_enemies_per_enemy_curse_+%", "matchers": [{"string": "#% increased Damage with Hits per Curse on Enemy", "negate": false}, {"string": "#% reduced Damage with Hits per Curse on Enemy", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Physical Damage per Endurance Charge", "better": 1, "id": "physical_damage_per_endurance_charge_+%", "matchers": [{"string": "#% increased Physical Damage per Endurance Charge", "negate": false}, {"string": "#% reduced Physical Damage per Endurance Charge", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Damage per Power Charge with Hits against Enemies that are on Full Life", "better": 1, "id": "damage_vs_enemies_on_full_life_per_power_charge_+%", "matchers": [{"string": "#% increased Damage per Power Charge with Hits against Enemies that are on Full Life", "negate": false}, {"string": "#% reduced Damage per Power Charge with Hits against Enemies that are on Full Life", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Damage per Power Charge with Hits against Enemies on Low Life", "better": 1, "id": "damage_vs_enemies_on_low_life_per_power_charge_+%", "matchers": [{"string": "#% increased Damage per Power Charge with Hits against Enemies on Low Life", "negate": false}, {"string": "#% reduced Damage per Power Charge with Hits against Enemies on Low Life", "negate": true}], "trade": {"ids": null}} +{"ref": "Penetrate #% Elemental Resistances per Frenzy Charge", "better": 1, "id": "penetrate_elemental_resistance_per_frenzy_charge_%", "matchers": [{"string": "Penetrate #% Elemental Resistances per Frenzy Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Endurance, Frenzy and Power Charge Duration", "better": 1, "id": "charge_duration_+%", "matchers": [{"string": "#% increased Endurance, Frenzy and Power Charge Duration", "negate": false}, {"string": "#% reduced Endurance, Frenzy and Power Charge Duration", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Duration of Elemental Ailments on Enemies", "better": 1, "id": "base_elemental_status_ailment_duration_+%", "matchers": [{"string": "#% increased Duration of Elemental Ailments on Enemies", "negate": false}, {"string": "#% reduced Duration of Elemental Ailments on Enemies", "negate": true}], "trade": {"ids": null}} +{"ref": "Your Hits can only Kill Frozen Enemies", "better": 1, "id": "hits_can_only_kill_frozen_enemies", "matchers": [{"string": "Your Hits can only Kill Frozen Enemies", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Freeze Duration on Enemies", "better": 1, "id": "freeze_duration_+%", "matchers": [{"string": "#% increased Freeze Duration on Enemies", "negate": false}, {"string": "#% reduced Freeze Duration on Enemies", "negate": true}], "trade": {"ids": null}} +{"ref": "Contains an extra Vaal Fragment", "better": 1, "id": "chest_drops_extra_vaal_fragments", "matchers": [{"string": "Contains an extra Vaal Fragment", "negate": false}], "trade": {"ids": null}} +{"ref": "Contains # additional Rare Item", "better": 1, "id": "chest_drops_extra_rare_items_of_same_base_type", "matchers": [{"string": "Contains # additional Rare Item", "negate": false}], "trade": {"ids": null}} +{"ref": "Damage Penetrates #% Elemental Resistances", "better": 1, "id": "reduce_enemy_elemental_resistance_%", "matchers": [{"string": "Damage Penetrates #% Elemental Resistances", "negate": false}], "trade": {"ids": null}} +{"ref": "#% of Maximum Energy Shield taken as Physical Damage on Minion Death", "better": 1, "id": "maximum_es_taken_as_physical_damage_on_minion_death_%", "matchers": [{"string": "#% of Maximum Energy Shield taken as Physical Damage on Minion Death", "negate": false}], "trade": {"ids": null}} +{"ref": "Deal no Physical Damage", "better": 1, "id": "base_deal_no_physical_damage", "matchers": [{"string": "Deal no Physical Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Deal no Non-Physical Damage", "better": 1, "id": "deal_no_non_physical_damage", "matchers": [{"string": "Deal no Non-Physical Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Attacks that Fire Projectiles Consume up to # additional Steel Shard", "better": 1, "id": "steel_ammo_consumed_per_use_with_attacks_that_fire_projectiles", "matchers": [{"string": "Attacks that Fire Projectiles Consume up to # additional Steel Shard", "negate": false}], "trade": {"ids": null}} +{"ref": "Skills Fire # additional Projectile for 4 seconds after\\nyou consume a total of 12 Steel Shards", "better": 1, "id": "skills_fire_x_additional_projectiles_for_4_seconds_after_consuming_12_steel_ammo", "matchers": [{"string": "Skills Fire # additional Projectile for 4 seconds after\\nyou consume a total of 12 Steel Shards", "negate": false}], "trade": {"ids": null}} +{"ref": "Ignites you inflict with Attacks deal Damage #% faster", "better": 1, "id": "faster_burn_from_attacks_%", "matchers": [{"string": "Ignites you inflict with Attacks deal Damage #% faster", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems fire Projectiles in a circle", "better": 1, "id": "local_display_socketed_gems_projectiles_nova", "matchers": [{"string": "Socketed Gems fire Projectiles in a circle", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Projectile Spells fire Projectiles in a circle", "better": 1, "id": "local_display_socketed_spells_projectiles_circle", "matchers": [{"string": "Socketed Projectile Spells fire Projectiles in a circle", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems fire an additional Projectile", "better": 1, "id": "local_display_socketed_gems_have_number_of_additional_projectiles", "matchers": [{"string": "Socketed Gems fire an additional Projectile", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Projectile Spells fire an additional Projectile", "better": 1, "id": "local_display_socketed_spells_additional_projectiles", "matchers": [{"string": "Socketed Projectile Spells fire an additional Projectile", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems have #% increased Skill Effect Duration", "better": 1, "id": "local_display_socketed_gems_skill_effect_duration_+%", "matchers": [{"string": "Socketed Gems have #% increased Skill Effect Duration", "negate": false}, {"string": "Socketed Gems have #% reduced Skill Effect Duration", "negate": true}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Generosity", "better": 1, "id": "local_display_socketed_gems_get_generosity_level", "matchers": [{"string": "Socketed Gems are Supported by Level # Generosity", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Elemental Damage per Frenzy Charge", "better": 1, "id": "elemental_damage_+%_per_frenzy_charge", "matchers": [{"string": "#% increased Elemental Damage per Frenzy Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "Mines can be Detonated an additional time", "better": 1, "id": "mine_extra_uses", "matchers": [{"string": "Mines can be Detonated an additional time", "negate": false}], "trade": {"ids": null}} +{"ref": "You gain Onslaught for # seconds on Culling Strike", "better": 1, "id": "onslaught_buff_duration_on_culling_strike_ms", "matchers": [{"string": "You gain Onslaught for # seconds on Culling Strike", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Avoid being Chilled during Onslaught", "better": 1, "id": "base_avoid_chill_%_while_have_onslaught", "matchers": [{"string": "#% chance to Avoid being Chilled during Onslaught", "negate": false}], "trade": {"ids": null}} +{"ref": "You and your Totems Regenerate #% of Life per second for each Summoned Totem", "better": 1, "id": "you_and_totem_life_regeneration_rate_per_minute_%_per_active_totem", "matchers": [{"string": "You and your Totems Regenerate #% of Life per second for each Summoned Totem", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Mine Throwing Speed", "better": 1, "id": "mine_laying_speed_+%", "matchers": [{"string": "#% increased Mine Throwing Speed", "negate": false}, {"string": "#% reduced Mine Throwing Speed", "negate": true}], "trade": {"ids": null}} +{"ref": "Mines have #% increased Detonation Speed", "better": 1, "id": "mine_detonation_speed_+%", "matchers": [{"string": "Mines have #% increased Detonation Speed", "negate": false}, {"string": "Mines have #% reduced Detonation Speed", "negate": true}], "trade": {"ids": null}} +{"ref": "#% more Mine Damage", "better": 1, "id": "unique_mine_damage_+%_final", "matchers": [{"string": "#% more Mine Damage", "negate": false}, {"string": "#% less Mine Damage", "negate": true}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Blastchain Mine", "better": 1, "id": "local_display_socketed_gems_get_remote_mine_level", "matchers": [{"string": "Socketed Gems are Supported by Level # Blastchain Mine", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Cold Damage with Attack Skills", "better": 1, "id": "cold_damage_with_attack_skills_+%", "matchers": [{"string": "#% increased Cold Damage with Attack Skills", "negate": false}, {"string": "#% reduced Cold Damage with Attack Skills", "negate": true}], "trade": {"ids": null}} +{"ref": "Adds # to # Lightning Damage to Unarmed Melee Hits", "better": 1, "id": "attack_minimum_added_melee_lightning_damage_while_unarmed", "matchers": [{"string": "Adds # to # Lightning Damage to Unarmed Melee Hits", "negate": false}], "trade": {"ids": null}} +{"ref": "Adds # to # Lightning Damage to Spells while Unarmed", "better": 1, "id": "spell_minimum_added_lightning_damage_while_unarmed", "matchers": [{"string": "Adds # to # Lightning Damage to Spells while Unarmed", "negate": false}], "trade": {"ids": null}} +{"ref": "+# Energy Shield gained on Killing a Shocked Enemy", "better": 1, "id": "gain_X_energy_shield_on_killing_shocked_enemy", "matchers": [{"string": "# Energy Shield gained on Killing a Shocked Enemy", "negate": false}], "trade": {"ids": null}} +{"ref": "Guarded by a Magic Monster", "better": 1, "id": "number_of_monsters_to_summon", "matchers": [{"string": "Guarded by a Magic Monster", "negate": false}], "trade": {"ids": null}} +{"ref": "Cannot Knock Enemies Back", "better": 1, "id": "cannot_knockback", "matchers": [{"string": "Cannot Knock Enemies Back", "negate": false}], "trade": {"ids": null}} +{"ref": "All Attack Damage Chills when you Stun", "better": 1, "id": "attack_damage_that_stuns_also_chills", "matchers": [{"string": "All Attack Damage Chills when you Stun", "negate": false}], "trade": {"ids": null}} +{"ref": "Nearby Allies gain #% of Life Regenerated per second", "better": 1, "id": "shapers_seed_unique_aura_life_regeneration_rate_per_minute_%", "matchers": [{"string": "Nearby Allies gain #% of Life Regenerated per second", "negate": false}], "trade": {"ids": null}} +{"ref": "Nearby Allies gain #% increased Mana Regeneration Rate", "better": 1, "id": "shapers_seed_unique_aura_mana_regeneration_rate_+%", "matchers": [{"string": "Nearby Allies gain #% increased Mana Regeneration Rate", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Rarity of Items Dropped by Frozen Enemies", "better": 1, "id": "killed_monster_dropped_item_rarity_+%_when_frozen", "matchers": [{"string": "#% increased Rarity of Items Dropped by Frozen Enemies", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain #% of Physical Damage as Extra Fire Damage with Attacks", "better": 1, "id": "non_skill_physical_damage_%_to_gain_as_fire_with_attacks", "matchers": [{"string": "Gain #% of Physical Damage as Extra Fire Damage with Attacks", "negate": false}], "trade": {"ids": null}} +{"ref": "Allies' Aura Buffs do not affect you", "better": 1, "id": "immune_to_ally_buff_auras", "matchers": [{"string": "Allies' Aura Buffs do not affect you", "negate": false}], "trade": {"ids": null}} +{"ref": "Your Aura Buffs do not affect allies", "better": 1, "id": "buff_auras_dont_affect_allies", "matchers": [{"string": "Your Aura Buffs do not affect allies", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased effect of Buffs on you", "better": 1, "id": "buff_effect_on_self_+%", "matchers": [{"string": "#% increased effect of Buffs on you", "negate": false}], "trade": {"ids": null}} +{"ref": "Powerful Tempests can affect both Monsters and you", "better": 1, "id": "map_always_has_weather", "matchers": [{"string": "Powerful Tempests can affect both Monsters and you", "negate": false}], "trade": {"ids": null}} +{"ref": "Knockback direction is reversed", "better": 1, "id": "enemy_knockback_direction_is_reversed", "matchers": [{"string": "Knockback direction is reversed", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Knockback", "better": 1, "id": "local_display_socketed_gems_supported_by_x_knockback_level", "matchers": [{"string": "Socketed Gems are Supported by Level # Knockback", "negate": false}], "trade": {"ids": null}} +{"ref": "Regenerate # Life per second per Endurance Charge", "better": 1, "id": "life_regen_per_minute_per_endurance_charge", "matchers": [{"string": "Regenerate # Life per second per Endurance Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "Transmogrification", "better": 1, "id": "map_non_unique_equipment_drops_as_sell_price", "matchers": [{"string": "Transmogrification", "negate": false}], "trade": {"ids": null}} +{"ref": "Atziri's Influence", "better": 1, "id": "map_items_drop_corrupted", "matchers": [{"string": "Atziri's Influence", "negate": false}], "trade": {"ids": null}} +{"ref": "Living Weapons", "better": 1, "id": "map_weapons_drop_animated", "matchers": [{"string": "Living Weapons", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to cause Enemies to Flee on use", "better": 1, "id": "local_flask_use_causes_monster_flee_chance_%", "matchers": [{"string": "#% chance to cause Enemies to Flee on use", "negate": false}], "trade": {"ids": null}} +{"ref": "#% more Melee Physical Damage during effect", "better": 1, "id": "local_unique_lions_roar_melee_physical_damage_+%_final_during_flask_effect", "matchers": [{"string": "#% more Melee Physical Damage during effect", "negate": false}], "trade": {"ids": null}} +{"ref": "Adds Knockback to Melee Attacks during Effect", "better": 1, "id": "local_flask_adds_knockback_while_healing", "matchers": [{"string": "Adds Knockback to Melee Attacks during Effect", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants # Life and Mana per Enemy Hit", "better": 1, "id": "local_life_and_mana_gain_per_target", "matchers": [{"string": "Grants # Life and Mana per Enemy Hit", "negate": false}, {"string": "Removes # of your Life and Mana per Enemy Hit", "negate": true}], "trade": {"ids": null}} +{"ref": "Grants Level # Icestorm Skill", "better": 1, "id": "local_display_grants_skill_icestorm_level", "matchers": [{"string": "Grants Level # Icestorm Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to gain a Power Charge when you Stun with Melee Damage", "better": 1, "id": "chance_to_gain_power_charge_on_melee_stun_%", "matchers": [{"string": "#% chance to gain a Power Charge when you Stun with Melee Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to gain a Power Charge when you Stun", "better": 1, "id": "chance_to_gain_power_charge_on_stun_%", "matchers": [{"string": "#% chance to gain a Power Charge when you Stun", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain Unholy Might for 2 seconds on Melee Critical Hit", "better": 1, "id": "gain_unholy_might_for_2_seconds_on_melee_crit", "matchers": [{"string": "Gain Unholy Might for 2 seconds on Melee Critical Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain Unholy Might for 4 seconds on Critical Hit", "better": 1, "id": "gain_unholy_might_for_4_seconds_on_crit", "matchers": [{"string": "Gain Unholy Might for 4 seconds on Critical Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Avoid Elemental Ailments", "better": 1, "id": "avoid_all_elemental_status_%", "matchers": [{"string": "#% chance to Avoid Elemental Ailments", "negate": false}], "trade": {"ids": null}} +{"ref": "Regenerate #% of Mana per second", "better": 1, "id": "mana_regeneration_rate_per_minute_%", "matchers": [{"string": "Regenerate #% of Mana per second", "negate": false}], "trade": {"ids": null}} +{"ref": "Enemy Projectiles Pierce you", "better": 1, "id": "projectiles_always_pierce_you", "matchers": [{"string": "Enemy Projectiles Pierce you", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Gluttony of Elements Skill", "better": 1, "id": "local_display_grants_skill_gluttony_of_elements_level", "matchers": [{"string": "Grants Level # Gluttony of Elements Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Pierce", "better": 1, "id": "local_display_socketed_gems_get_pierce_level", "matchers": [{"string": "Socketed Gems are Supported by Level # Pierce", "negate": false}], "trade": {"ids": null}} +{"ref": "Regenerate # Life per second per Buff on you", "better": 1, "id": "life_regeneration_per_minute_per_active_buff", "matchers": [{"string": "Regenerate # Life per second per Buff on you", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Damage with Claws", "better": 1, "id": "claw_damage_+%", "matchers": [{"string": "#% increased Damage with Claws", "negate": false}, {"string": "#% reduced Damage with Claws", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Damage with Wands", "better": 1, "id": "wand_damage_+%", "matchers": [{"string": "#% increased Damage with Wands", "negate": false}, {"string": "#% reduced Damage with Wands", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Damage with One Handed Weapons", "better": 1, "id": "damage_+%_with_one_handed_weapons", "matchers": [{"string": "#% increased Damage with One Handed Weapons", "negate": false}, {"string": "#% reduced Damage with One Handed Weapons", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Damage with Two Handed Weapons", "better": 1, "id": "damage_+%_with_two_handed_weapons", "matchers": [{"string": "#% increased Damage with Two Handed Weapons", "negate": false}, {"string": "#% reduced Damage with Two Handed Weapons", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Attack Damage while Dual Wielding", "better": 1, "id": "damage_while_dual_wielding_+%", "matchers": [{"string": "#% increased Attack Damage while Dual Wielding", "negate": false}, {"string": "#% reduced Attack Damage while Dual Wielding", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Melee Physical Damage with Unarmed Attacks", "better": 1, "id": "unarmed_melee_physical_damage_+%", "matchers": [{"string": "#% increased Melee Physical Damage with Unarmed Attacks", "negate": false}, {"string": "#% reduced Melee Physical Damage with Unarmed Attacks", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Spell Damage while wielding a Staff", "better": 1, "id": "spell_staff_damage_+%", "matchers": [{"string": "#% increased Spell Damage while wielding a Staff", "negate": false}, {"string": "#% reduced Spell Damage while wielding a Staff", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Spell Damage while Dual Wielding", "better": 1, "id": "spell_damage_+%_while_dual_wielding", "matchers": [{"string": "#% increased Spell Damage while Dual Wielding", "negate": false}, {"string": "#% reduced Spell Damage while Dual Wielding", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Spell Damage while holding a Shield", "better": 1, "id": "spell_damage_+%_while_holding_shield", "matchers": [{"string": "#% increased Spell Damage while holding a Shield", "negate": false}, {"string": "#% reduced Spell Damage while holding a Shield", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Mine Damage", "better": 1, "id": "mine_damage_+%", "matchers": [{"string": "#% increased Mine Damage", "negate": false}, {"string": "#% reduced Mine Damage", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Damage over Time", "better": 1, "id": "damage_over_time_+%", "matchers": [{"string": "#% increased Damage over Time", "negate": false}, {"string": "#% reduced Damage over Time", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Attack Speed with Maces or Sceptres", "better": 1, "id": "mace_attack_speed_+%", "matchers": [{"string": "#% increased Attack Speed with Maces or Sceptres", "negate": false}, {"string": "#% reduced Attack Speed with Maces or Sceptres", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Attack Speed with Claws", "better": 1, "id": "claw_attack_speed_+%", "matchers": [{"string": "#% increased Attack Speed with Claws", "negate": false}, {"string": "#% reduced Attack Speed with Claws", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Attack Speed with Wands", "better": 1, "id": "wand_attack_speed_+%", "matchers": [{"string": "#% increased Attack Speed with Wands", "negate": false}, {"string": "#% reduced Attack Speed with Wands", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Attack Speed with One Handed Melee Weapons", "better": 1, "id": "one_handed_melee_attack_speed_+%", "matchers": [{"string": "#% increased Attack Speed with One Handed Melee Weapons", "negate": false}, {"string": "#% reduced Attack Speed with One Handed Melee Weapons", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Attack Speed with Two Handed Melee Weapons", "better": 1, "id": "two_handed_melee_attack_speed_+%", "matchers": [{"string": "#% increased Attack Speed with Two Handed Melee Weapons", "negate": false}, {"string": "#% reduced Attack Speed with Two Handed Melee Weapons", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Attack Speed while Dual Wielding", "better": 1, "id": "attack_speed_while_dual_wielding_+%", "matchers": [{"string": "#% increased Attack Speed while Dual Wielding", "negate": false}, {"string": "#% reduced Attack Speed while Dual Wielding", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Cast Speed while Dual Wielding", "better": 1, "id": "cast_speed_while_dual_wielding_+%", "matchers": [{"string": "#% increased Cast Speed while Dual Wielding", "negate": false}, {"string": "#% reduced Cast Speed while Dual Wielding", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Attack Speed while holding a Shield", "better": 1, "id": "attack_speed_+%_while_holding_shield", "matchers": [{"string": "#% increased Attack Speed while holding a Shield", "negate": false}, {"string": "#% reduced Attack Speed while holding a Shield", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Cast Speed while holding a Shield", "better": 1, "id": "cast_speed_+%_while_holding_shield", "matchers": [{"string": "#% increased Cast Speed while holding a Shield", "negate": false}, {"string": "#% reduced Cast Speed while holding a Shield", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Cast Speed while wielding a Staff", "better": 1, "id": "cast_speed_+%_while_holding_staff", "matchers": [{"string": "#% increased Cast Speed while wielding a Staff", "negate": false}, {"string": "#% reduced Cast Speed while wielding a Staff", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Unarmed Attack Speed with Melee Skills", "better": 1, "id": "unarmed_melee_attack_speed_+%", "matchers": [{"string": "#% increased Unarmed Attack Speed with Melee Skills", "negate": false}, {"string": "#% reduced Unarmed Attack Speed with Melee Skills", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Attack Damage while holding a Shield", "better": 1, "id": "attack_damage_+%_while_holding_a_shield", "matchers": [{"string": "#% increased Attack Damage while holding a Shield", "negate": false}, {"string": "#% reduced Attack Damage while holding a Shield", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Cast Speed with Fire Skills", "better": 1, "id": "cast_speed_for_fire_skills_+%", "matchers": [{"string": "#% increased Cast Speed with Fire Skills", "negate": false}, {"string": "#% reduced Cast Speed with Fire Skills", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Cast Speed with Cold Skills", "better": 1, "id": "cast_speed_for_cold_skills_+%", "matchers": [{"string": "#% increased Cast Speed with Cold Skills", "negate": false}, {"string": "#% reduced Cast Speed with Cold Skills", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Cast Speed with Lightning Skills", "better": 1, "id": "cast_speed_for_lightning_skills_+%", "matchers": [{"string": "#% increased Cast Speed with Lightning Skills", "negate": false}, {"string": "#% reduced Cast Speed with Lightning Skills", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Cast Speed with Chaos Skills", "better": 1, "id": "cast_speed_for_chaos_skills_+%", "matchers": [{"string": "#% increased Cast Speed with Chaos Skills", "negate": false}, {"string": "#% reduced Cast Speed with Chaos Skills", "negate": true}], "trade": {"ids": null}} +{"ref": "Gain # Energy Shield per Enemy Hit with Attacks", "better": 1, "id": "energy_shield_gain_per_target", "matchers": [{"string": "Gain # Energy Shield per Enemy Hit with Attacks", "negate": false}, {"string": "Lose # Energy Shield per Enemy Hit with Attacks", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Critical Hit Chance with Maces or Sceptres", "better": 1, "id": "mace_critical_strike_chance_+%", "matchers": [{"string": "#% increased Critical Hit Chance with Maces or Sceptres", "negate": false}, {"string": "#% reduced Critical Hit Chance with Maces or Sceptres", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Critical Hit Chance with Axes", "better": 1, "id": "axe_critical_strike_chance_+%", "matchers": [{"string": "#% increased Critical Hit Chance with Axes", "negate": false}, {"string": "#% reduced Critical Hit Chance with Axes", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Critical Hit Chance with Swords", "better": 1, "id": "sword_critical_strike_chance_+%", "matchers": [{"string": "#% increased Critical Hit Chance with Swords", "negate": false}, {"string": "#% reduced Critical Hit Chance with Swords", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Critical Hit Chance with Bows", "better": 1, "id": "bow_critical_strike_chance_+%", "matchers": [{"string": "#% increased Critical Hit Chance with Bows", "negate": false}, {"string": "#% reduced Critical Hit Chance with Bows", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Critical Hit Chance with Claws", "better": 1, "id": "claw_critical_strike_chance_+%", "matchers": [{"string": "#% increased Critical Hit Chance with Claws", "negate": false}, {"string": "#% reduced Critical Hit Chance with Claws", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Critical Hit Chance with Wands", "better": 1, "id": "wand_critical_strike_chance_+%", "matchers": [{"string": "#% increased Critical Hit Chance with Wands", "negate": false}, {"string": "#% reduced Critical Hit Chance with Wands", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Critical Hit Chance with Quarterstaves", "better": 1, "id": "quarterstaff_critical_strike_chance_+%", "matchers": [{"string": "#% increased Critical Hit Chance with Quarterstaves", "negate": false}, {"string": "#% reduced Critical Hit Chance with Quarterstaves", "negate": true}], "trade": {"ids": null}} +{"ref": "+#% to Critical Damage Bonus with Maces or Sceptres", "better": 1, "id": "mace_critical_strike_multiplier_+", "matchers": [{"string": "#% to Critical Damage Bonus with Maces or Sceptres", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Critical Damage Bonus with Axes", "better": 1, "id": "axe_critical_strike_multiplier_+", "matchers": [{"string": "#% to Critical Damage Bonus with Axes", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Critical Damage Bonus with Swords", "better": 1, "id": "sword_critical_strike_multiplier_+", "matchers": [{"string": "#% to Critical Damage Bonus with Swords", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Critical Damage Bonus with Bows", "better": 1, "id": "bow_critical_strike_multiplier_+", "matchers": [{"string": "#% increased Critical Damage Bonus with Bows", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Critical Damage Bonus with Claws", "better": 1, "id": "claw_critical_strike_multiplier_+", "matchers": [{"string": "#% to Critical Damage Bonus with Claws", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Critical Damage Bonus with Daggers", "better": 1, "id": "critical_strike_multiplier_with_dagger_+", "matchers": [{"string": "#% increased Critical Damage Bonus with Daggers", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Critical Damage Bonus with Wands", "better": 1, "id": "wand_critical_strike_multiplier_+", "matchers": [{"string": "#% to Critical Damage Bonus with Wands", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Critical Damage Bonus with Quarterstaves", "better": 1, "id": "quarterstaff_critical_strike_multiplier_+", "matchers": [{"string": "#% increased Critical Damage Bonus with Quarterstaves", "negate": false}, {"string": "#% reduced Critical Damage Bonus with Quarterstaves", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Critical Hit Chance with One Handed Melee Weapons", "better": 1, "id": "one_handed_melee_critical_strike_chance_+%", "matchers": [{"string": "#% increased Critical Hit Chance with One Handed Melee Weapons", "negate": false}, {"string": "#% reduced Critical Hit Chance with One Handed Melee Weapons", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Critical Hit Chance with Two Handed Melee Weapons", "better": 1, "id": "two_handed_melee_critical_strike_chance_+%", "matchers": [{"string": "#% increased Critical Hit Chance with Two Handed Melee Weapons", "negate": false}, {"string": "#% reduced Critical Hit Chance with Two Handed Melee Weapons", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Attack Critical Hit Chance while Dual Wielding", "better": 1, "id": "critical_strike_chance_while_dual_wielding_+%", "matchers": [{"string": "#% increased Attack Critical Hit Chance while Dual Wielding", "negate": false}, {"string": "#% reduced Attack Critical Hit Chance while Dual Wielding", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Critical Hit Chance while holding a Shield", "better": 1, "id": "critical_strike_chance_while_wielding_shield_+%", "matchers": [{"string": "#% increased Critical Hit Chance while holding a Shield", "negate": false}, {"string": "#% reduced Critical Hit Chance while holding a Shield", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Melee Critical Hit Chance", "better": 1, "id": "melee_critical_strike_chance_+%", "matchers": [{"string": "#% increased Melee Critical Hit Chance", "negate": false}, {"string": "#% reduced Melee Critical Hit Chance", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Critical Hit Chance with Mines", "better": 1, "id": "mine_critical_strike_chance_+%", "matchers": [{"string": "#% increased Critical Hit Chance with Mines", "negate": false}, {"string": "#% reduced Critical Hit Chance with Mines", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Critical Hit Chance with Fire Skills", "better": 1, "id": "fire_critical_strike_chance_+%", "matchers": [{"string": "#% increased Critical Hit Chance with Fire Skills", "negate": false}, {"string": "#% reduced Critical Hit Chance with Fire Skills", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Critical Hit Chance with Cold Skills", "better": 1, "id": "cold_critical_strike_chance_+%", "matchers": [{"string": "#% increased Critical Hit Chance with Cold Skills", "negate": false}, {"string": "#% reduced Critical Hit Chance with Cold Skills", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Critical Hit Chance with Lightning Skills", "better": 1, "id": "lightning_critical_strike_chance_+%", "matchers": [{"string": "#% increased Critical Hit Chance with Lightning Skills", "negate": false}, {"string": "#% reduced Critical Hit Chance with Lightning Skills", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Critical Hit Chance with Elemental Skills", "better": 1, "id": "elemental_critical_strike_chance_+%", "matchers": [{"string": "#% increased Critical Hit Chance with Elemental Skills", "negate": false}, {"string": "#% reduced Critical Hit Chance with Elemental Skills", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Critical Hit Chance with Chaos Skills", "better": 1, "id": "chaos_critical_strike_chance_+%", "matchers": [{"string": "#% increased Critical Hit Chance with Chaos Skills", "negate": false}, {"string": "#% reduced Critical Hit Chance with Chaos Skills", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Critical Damage Bonus with One Handed Melee Weapons", "better": 1, "id": "one_handed_melee_critical_strike_multiplier_+", "matchers": [{"string": "#% increased Critical Damage Bonus with One Handed Melee Weapons", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Critical Damage Bonus with Two Handed Melee Weapons", "better": 1, "id": "two_handed_melee_critical_strike_multiplier_+", "matchers": [{"string": "#% to Critical Damage Bonus with Two Handed Melee Weapons", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Critical Damage Bonus while Dual Wielding", "better": 1, "id": "global_critical_strike_multiplier_while_dual_wielding_+", "matchers": [{"string": "#% to Critical Damage Bonus while Dual Wielding", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Melee Critical Damage Bonus while holding a Shield", "better": 1, "id": "melee_critical_strike_multiplier_+_while_wielding_shield", "matchers": [{"string": "#% to Melee Critical Damage Bonus while holding a Shield", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Critical Damage Bonus with Mines", "better": 1, "id": "mine_critical_strike_multiplier_+", "matchers": [{"string": "#% to Critical Damage Bonus with Mines", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Critical Damage Bonus with Fire Skills", "better": 1, "id": "fire_critical_strike_multiplier_+", "matchers": [{"string": "#% to Critical Damage Bonus with Fire Skills", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Critical Damage Bonus with Cold Skills", "better": 1, "id": "cold_critical_strike_multiplier_+", "matchers": [{"string": "#% to Critical Damage Bonus with Cold Skills", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Critical Damage Bonus with Lightning Skills", "better": 1, "id": "lightning_critical_strike_multiplier_+", "matchers": [{"string": "#% to Critical Damage Bonus with Lightning Skills", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Critical Damage Bonus with Elemental Skills", "better": 1, "id": "elemental_critical_strike_multiplier_+", "matchers": [{"string": "#% to Critical Damage Bonus with Elemental Skills", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Critical Damage Bonus with Chaos Skills", "better": 1, "id": "chaos_critical_strike_multiplier_+", "matchers": [{"string": "#% to Critical Damage Bonus with Chaos Skills", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Fire and Cold Resistances", "better": 1, "id": "fire_and_cold_damage_resistance_%", "matchers": [{"string": "#% to Fire and Cold Resistances", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Fire and Lightning Resistances", "better": 1, "id": "fire_and_lightning_damage_resistance_%", "matchers": [{"string": "#% to Fire and Lightning Resistances", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Cold and Lightning Resistances", "better": 1, "id": "cold_and_lightning_damage_resistance_%", "matchers": [{"string": "#% to Cold and Lightning Resistances", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Stun Duration on Enemies", "better": 1, "id": "base_stun_duration_+%", "matchers": [{"string": "#% increased Stun Duration on Enemies", "negate": false}, {"string": "#% reduced Stun Duration on Enemies", "negate": true}], "trade": {"ids": null}} +{"ref": "#% chance to Avoid being Frozen", "better": 1, "id": "base_avoid_freeze_%", "matchers": [{"string": "#% chance to Avoid being Frozen", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Avoid being Stunned", "better": 1, "id": "base_avoid_stun_%", "matchers": [{"string": "#% chance to Avoid being Stunned", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Knock Enemies Back on hit", "better": 1, "id": "base_global_chance_to_knockback_%", "matchers": [{"string": "#% chance to Knock Enemies Back on hit", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% Chance to Block Attack Damage while wielding a Staff", "better": 1, "id": "additional_staff_block_%", "matchers": [{"string": "#% Chance to Block Attack Damage while wielding a Staff", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% Chance to Block Spell Damage while Dual Wielding", "better": 1, "id": "spell_block_while_dual_wielding_%", "matchers": [{"string": "#% Chance to Block Spell Damage while Dual Wielding", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% Chance to Block Spell Damage while holding a Shield", "better": 1, "id": "shield_spell_block_%", "matchers": [{"string": "#% Chance to Block Spell Damage while holding a Shield", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% Chance to Block Spell Damage while wielding a Staff", "better": 1, "id": "spell_block_with_staff_%", "matchers": [{"string": "#% Chance to Block Spell Damage while wielding a Staff", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Chill and Freeze Duration on Enemies", "better": 1, "id": "chill_and_freeze_duration_+%", "matchers": [{"string": "#% increased Chill and Freeze Duration on Enemies", "negate": false}, {"string": "#% reduced Chill and Freeze Duration on Enemies", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased effect of Chill and Shock on you", "better": 1, "id": "shocked_chilled_effect_on_self_+%", "matchers": [{"string": "#% increased effect of Chill and Shock on you", "negate": false}, {"string": "#% reduced effect of Chill and Shock on you", "negate": true}], "trade": {"ids": null}} +{"ref": "#% chance to Impale Enemies on Hit with Attacks", "better": 1, "id": "attacks_impale_on_hit_%_chance", "matchers": [{"string": "#% chance to Impale Enemies on Hit with Attacks", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Burning Damage", "better": 1, "id": "burn_damage_+%", "matchers": [{"string": "#% increased Burning Damage", "negate": false}, {"string": "#% reduced Burning Damage", "negate": true}], "trade": {"ids": null}} +{"ref": "Minions have +#% Chance to Block Attack Damage", "better": 1, "id": "minion_block_%", "matchers": [{"string": "Minions have +#% Chance to Block Attack Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Totems gain +#% to all Elemental Resistances", "better": 1, "id": "totem_elemental_resistance_%", "matchers": [{"string": "Totems gain +#% to all Elemental Resistances", "negate": false}], "trade": {"ids": null}} +{"ref": "Strength from Passives in Radius is Transformed to Dexterity", "better": 1, "id": "local_jewel_nearby_passives_str_to_dex", "matchers": [{"string": "Strength from Passives in Radius is Transformed to Dexterity", "negate": false}], "trade": {"ids": null}} +{"ref": "Dexterity from Passives in Radius is Transformed to Intelligence", "better": 1, "id": "local_jewel_nearby_passives_dex_to_int", "matchers": [{"string": "Dexterity from Passives in Radius is Transformed to Intelligence", "negate": false}], "trade": {"ids": null}} +{"ref": "Intelligence from Passives in Radius is Transformed to Strength", "better": 1, "id": "local_jewel_nearby_passives_int_to_str", "matchers": [{"string": "Intelligence from Passives in Radius is Transformed to Strength", "negate": false}], "trade": {"ids": null}} +{"ref": "Strength from Passives in Radius is Transformed to Intelligence", "better": 1, "id": "local_jewel_nearby_passives_str_to_int", "matchers": [{"string": "Strength from Passives in Radius is Transformed to Intelligence", "negate": false}], "trade": {"ids": null}} +{"ref": "Intelligence from Passives in Radius is Transformed to Dexterity", "better": 1, "id": "local_jewel_nearby_passives_int_to_dex", "matchers": [{"string": "Intelligence from Passives in Radius is Transformed to Dexterity", "negate": false}], "trade": {"ids": null}} +{"ref": "Dexterity from Passives in Radius is Transformed to Strength", "better": 1, "id": "local_jewel_nearby_passives_dex_to_str", "matchers": [{"string": "Dexterity from Passives in Radius is Transformed to Strength", "negate": false}], "trade": {"ids": null}} +{"ref": "Knocks Back Enemies in an Area when you use a Flask", "better": 1, "id": "local_flask_use_causes_area_knockback", "matchers": [{"string": "Knocks Back Enemies in an Area when you use a Flask", "negate": false}], "trade": {"ids": null}} +{"ref": "Your Attacks do not cost Mana", "better": 1, "id": "attacks_do_not_cost_mana", "matchers": [{"string": "Your Attacks do not cost Mana", "negate": false}], "trade": {"ids": null}} +{"ref": "Cannot Leech or Regenerate Mana", "better": 1, "id": "cannot_leech_or_regenerate_mana", "matchers": [{"string": "Cannot Leech or Regenerate Mana", "negate": false}], "trade": {"ids": null}} +{"ref": "Resolute Technique", "better": 1, "id": "resolute_technique", "matchers": [{"string": "Resolute Technique", "negate": false}], "trade": {"ids": null}} +{"ref": "Passives in Radius can be Allocated without being connected to your tree", "better": 1, "id": "local_unique_jewel_nearby_disconnected_passives_can_be_allocated", "matchers": [{"string": "Passives in Radius can be Allocated without being connected to your tree", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_4077035099"]}}} +{"ref": "Only affects Passives in Very Small Ring", "better": 1, "id": "local_jewel_variable_ring_radius_value", "matchers": [{"string": "Only affects Passives in Very Small Ring", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3642528642"]}}} +{"ref": "With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain # of its Modifiers for 20 seconds", "better": 1, "id": "local_unique_jewel_with_4_notables_gain_X_random_rare_monster_mods_on_kill", "matchers": [{"string": "With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain # of its Modifiers for 20 seconds", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Area of Effect while Unarmed", "better": 1, "id": "skill_area_of_effect_when_unarmed_+%", "matchers": [{"string": "#% increased Area of Effect while Unarmed", "negate": false}, {"string": "#% reduced Area of Effect while Unarmed", "negate": true}], "trade": {"ids": null}} +{"ref": "+# to Melee Strike Range while Unarmed", "better": 1, "id": "melee_range_+_while_unarmed", "matchers": [{"string": "# to Melee Strike Range while Unarmed", "negate": false}], "trade": {"ids": null}} +{"ref": "Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers", "better": 1, "id": "local_unique_jewel_melee_applies_to_bow", "matchers": [{"string": "Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius", "better": 1, "id": "local_unique_jewel_chaos_damage_+%_per_10_int_in_radius", "matchers": [{"string": "#% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius", "negate": false}, {"string": "#% reduced Chaos Damage per 10 Intelligence from Allocated Passives in Radius", "negate": true}], "trade": {"ids": null}} +{"ref": "Passives in Radius apply to Minions instead of you", "better": 1, "id": "local_unique_jewel_passives_in_radius_applied_to_minions_instead", "matchers": [{"string": "Passives in Radius apply to Minions instead of you", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Spell Damage per 10 Intelligence", "better": 1, "id": "spell_damage_+%_per_10_int", "matchers": [{"string": "#% increased Spell Damage per 10 Intelligence", "negate": false}, {"string": "#% reduced Spell Damage per 10 Intelligence", "negate": true}], "trade": {"ids": null}} +{"ref": "Recover #% of Life when you Consume a corpse", "better": 1, "id": "recover_%_maximum_life_when_corpse_destroyed_or_consumed", "matchers": [{"string": "Recover #% of Life when you Consume a corpse", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Totem Life per 10 Strength Allocated in Radius", "better": 1, "id": "local_unique_jewel_totem_life_+X%_per_10_str_in_radius", "matchers": [{"string": "#% increased Totem Life per 10 Strength Allocated in Radius", "negate": false}, {"string": "#% reduced Totem Life per 10 Strength Allocated in Radius", "negate": true}], "trade": {"ids": null}} +{"ref": "Totems cannot be Stunned", "better": 1, "id": "totems_cannot_be_stunned", "matchers": [{"string": "Totems cannot be Stunned", "negate": false}], "trade": {"ids": null}} +{"ref": "Minions have +#% chance to Suppress Spell Damage", "better": 1, "id": "minion_spell_suppression_chance_%", "matchers": [{"string": "Minions have +#% chance to Suppress Spell Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Adds # to # Fire Attack Damage per Buff on you", "better": 1, "id": "minimum_added_fire_attack_damage_per_active_buff", "matchers": [{"string": "Adds # to # Fire Attack Damage per Buff on you", "negate": false}], "trade": {"ids": null}} +{"ref": "Adds # to # Fire Spell Damage per Buff on you", "better": 1, "id": "minimum_added_fire_spell_damage_per_active_buff", "matchers": [{"string": "Adds # to # Fire Spell Damage per Buff on you", "negate": false}], "trade": {"ids": null}} +{"ref": "Minions Recover #% of their Life when they Block", "better": 1, "id": "minion_recover_%_of_maximum_life_on_block", "matchers": [{"string": "Minions Recover #% of their Life when they Block", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Damage while Leeching", "better": 1, "id": "damage_+%_while_leeching", "matchers": [{"string": "#% increased Damage while Leeching", "negate": false}, {"string": "#% reduced Damage while Leeching", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Movement Speed while Ignited", "better": 1, "id": "movement_velocity_+%_while_ignited", "matchers": [{"string": "#% increased Movement Speed while Ignited", "negate": false}, {"string": "#% reduced Movement Speed while Ignited", "negate": true}], "trade": {"ids": null}} +{"ref": "Melee Hits Fortify", "better": 1, "id": "chance_to_fortify_on_melee_hit_+%", "matchers": [{"string": "Melee Hits Fortify", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Damage for each Magic Item Equipped", "better": 1, "id": "damage_+%_per_equipped_magic_item", "matchers": [{"string": "#% increased Damage for each Magic Item Equipped", "negate": false}, {"string": "#% reduced Damage for each Magic Item Equipped", "negate": true}], "trade": {"ids": null}} +{"ref": "Totems fire # additional Projectile", "better": 1, "id": "totem_number_of_additional_projectiles", "matchers": [{"string": "Totems fire # additional Projectile", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Gain Unholy Might for 4 seconds on Melee Kill", "better": 1, "id": "chance_to_gain_unholy_might_on_melee_kill_%", "matchers": [{"string": "#% chance to Gain Unholy Might for 4 seconds on Melee Kill", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Spell Damage while no Mana is Reserved", "better": 1, "id": "spell_damage_+%_while_no_mana_reserved", "matchers": [{"string": "#% increased Spell Damage while no Mana is Reserved", "negate": false}, {"string": "#% reduced Spell Damage while no Mana is Reserved", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Attributes per allocated Keystone", "better": 1, "id": "all_attributes_+%_per_assigned_keystone", "matchers": [{"string": "#% increased Attributes per allocated Keystone", "negate": false}, {"string": "#% reduced Attributes per allocated Keystone", "negate": true}], "trade": {"ids": null}} +{"ref": "Gain # Life per Elemental Ailment on Enemies Hit with Attacks", "better": 1, "id": "life_gained_on_hit_per_enemy_status_ailment", "matchers": [{"string": "Gain # Life per Elemental Ailment on Enemies Hit with Attacks", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain # Life per Elemental Ailment on Enemies Hit with Spells", "better": 1, "id": "life_gained_on_spell_hit_per_enemy_status_ailment", "matchers": [{"string": "Gain # Life per Elemental Ailment on Enemies Hit with Spells", "negate": false}, {"string": "Lose # Life per Elemental Ailment on Enemies Hit with Spells", "negate": true}], "trade": {"ids": null}} +{"ref": "Survival", "better": 1, "id": "local_is_survival_jewel", "matchers": [{"string": "Survival", "negate": false}], "trade": {"ids": null}} +{"ref": "Nearby Allies have Culling Strike", "better": 1, "id": "local_display_aura_allies_have_culling_strike", "matchers": [{"string": "Nearby Allies have Culling Strike", "negate": false}], "trade": {"ids": null}} +{"ref": "Nearby Allies have #% increased Item Rarity", "better": 1, "id": "local_display_aura_allies_have_increased_item_rarity_+%", "matchers": [{"string": "Nearby Allies have #% increased Item Rarity", "negate": false}, {"string": "Nearby Allies have #% reduced Item Rarity", "negate": true}], "trade": {"ids": null}} +{"ref": "Nearby Allies have +#% to Critical Damage Bonus", "better": 1, "id": "local_display_nearby_allies_critical_strike_multiplier_+", "matchers": [{"string": "Nearby Allies have +#% to Critical Damage Bonus", "negate": false}], "trade": {"ids": null}} +{"ref": "Nearby Allies have +# Fortification", "better": 1, "id": "local_display_nearby_allies_have_fortify", "matchers": [{"string": "Nearby Allies have +# Fortification", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to gain an additional Vaal Soul on Kill", "better": 1, "id": "chance_to_gain_vaal_soul_on_kill_%", "matchers": [{"string": "#% chance to gain an additional Vaal Soul on Kill", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Vaal Skill Effect Duration", "better": 1, "id": "vaal_skill_effect_duration_+%", "matchers": [{"string": "#% increased Vaal Skill Effect Duration", "negate": false}, {"string": "#% reduced Vaal Skill Effect Duration", "negate": true}], "trade": {"ids": null}} +{"ref": "Vaal Skills have #% chance to regain consumed Souls when used", "better": 1, "id": "vaal_skill_soul_refund_chance_%", "matchers": [{"string": "Vaal Skills have #% chance to regain consumed Souls when used", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Vaal Skill Critical Hit Chance", "better": 1, "id": "vaal_skill_critical_strike_chance_+%", "matchers": [{"string": "#% increased Vaal Skill Critical Hit Chance", "negate": false}, {"string": "#% reduced Vaal Skill Critical Hit Chance", "negate": true}], "trade": {"ids": null}} +{"ref": "+#% to Vaal Skill Critical Damage Bonus", "better": 1, "id": "vaal_skill_critical_strike_multiplier_+", "matchers": [{"string": "#% to Vaal Skill Critical Damage Bonus", "negate": false}], "trade": {"ids": null}} +{"ref": "Flasks applied to you have #% increased Effect", "better": 1, "id": "flask_effect_+%", "matchers": [{"string": "Flasks applied to you have #% increased Effect", "negate": false}, {"string": "Flasks applied to you have #% reduced Effect", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Cost of Aura Skills that summon Totems", "better": 1, "id": "mana_cost_+%_on_totemified_aura_skills", "matchers": [{"string": "#% increased Cost of Aura Skills that summon Totems", "negate": false}, {"string": "#% reduced Cost of Aura Skills that summon Totems", "negate": true}], "trade": {"ids": null}} +{"ref": "#% chance to gain an additional Vaal Soul per Enemy Shattered", "better": 1, "id": "chance_to_gain_vaal_soul_on_enemy_shatter_%", "matchers": [{"string": "#% chance to gain an additional Vaal Soul per Enemy Shattered", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Experience Gain for Corrupted Gems", "better": 1, "id": "corrupted_gem_experience_gain_+%", "matchers": [{"string": "#% increased Experience Gain for Corrupted Gems", "negate": false}, {"string": "#% reduced Experience Gain for Corrupted Gems", "negate": true}], "trade": {"ids": null}} +{"ref": "With 5 Corrupted Items Equipped: Gain Soul Eater for # seconds on Vaal Skill use", "better": 1, "id": "gain_soul_eater_with_equipped_corrupted_items_on_vaal_skill_use_ms", "matchers": [{"string": "With 5 Corrupted Items Equipped: Gain Soul Eater for # seconds on Vaal Skill use", "negate": false}], "trade": {"ids": null}} +{"ref": "Lose #% of Life on Kill", "better": 1, "id": "maximum_life_%_lost_on_kill", "matchers": [{"string": "Lose #% of Life on Kill", "negate": false}], "trade": {"ids": null}} +{"ref": "Lose #% of Energy Shield on Kill", "better": 1, "id": "maximum_energy_shield_%_lost_on_kill", "matchers": [{"string": "Lose #% of Energy Shield on Kill", "negate": false}], "trade": {"ids": null}} +{"ref": "Curses you with Punishment on Kill", "better": 1, "id": "chance_to_curse_self_with_punishment_on_kill_%", "matchers": [{"string": "Curses you with Punishment on Kill", "negate": false}], "trade": {"ids": null}} +{"ref": "An additional Curse can be applied to you", "better": 1, "id": "number_of_additional_curses_allowed_on_self", "matchers": [{"string": "An additional Curse can be applied to you", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Damage per Curse on you", "better": 1, "id": "damage_+%_per_active_curse_on_self", "matchers": [{"string": "#% increased Damage per Curse on you", "negate": false}, {"string": "#% reduced Damage per Curse on you", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Damage taken while on Full Energy Shield", "better": 1, "id": "damage_taken_+%_while_es_full", "matchers": [{"string": "#% increased Damage taken while on Full Energy Shield", "negate": false}, {"string": "#% reduced Damage taken while on Full Energy Shield", "negate": true}], "trade": {"ids": null}} +{"ref": "Your spells have #% chance to Shock against Frozen Enemies", "better": 1, "id": "spell_chance_to_shock_frozen_enemies_%", "matchers": [{"string": "Your spells have #% chance to Shock against Frozen Enemies", "negate": false}], "trade": {"ids": null}} +{"ref": "1% increased Evasion Rating per # Dexterity Allocated in Radius", "better": 1, "id": "local_unique_jewel_evasion_rating_+%_per_X_dex_in_radius", "matchers": [{"string": "1% increased Evasion Rating per # Dexterity Allocated in Radius", "negate": false}], "trade": {"ids": null}} +{"ref": "Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage", "better": 1, "id": "local_unique_jewel_physical_damage_increases_applies_to_cold_damage", "matchers": [{"string": "Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage", "better": 1, "id": "local_unique_jewel_damage_increases_applies_to_fire_damage", "matchers": [{"string": "Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value", "better": 1, "id": "local_unique_jewel_energy_shield_increases_applies_to_armour_doubled", "matchers": [{"string": "Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value", "negate": false}], "trade": {"ids": null}} +{"ref": "Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield", "better": 1, "id": "local_unique_jewel_life_increases_applies_to_energy_shield", "matchers": [{"string": "Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield", "negate": false}], "trade": {"ids": null}} +{"ref": "Adds 1 to Maximum Life per # Intelligence Allocated in Radius", "better": 1, "id": "local_unique_jewel_additional_life_per_X_int_in_radius", "matchers": [{"string": "Adds 1 to Maximum Life per # Intelligence Allocated in Radius", "negate": false}], "trade": {"ids": null}} +{"ref": "Adds 1 maximum Lightning Damage to Attacks per # Dexterity Allocated in Radius", "better": 1, "id": "local_unique_jewel_one_additional_maximum_lightning_damage_per_X_dex", "matchers": [{"string": "Adds 1 maximum Lightning Damage to Attacks per # Dexterity Allocated in Radius", "negate": false}], "trade": {"ids": null}} +{"ref": "Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value", "better": 1, "id": "local_unique_jewel_life_increases_applies_to_mana_doubled", "matchers": [{"string": "Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value", "negate": false}], "trade": {"ids": null}} +{"ref": "Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus", "better": 1, "id": "local_unique_jewel_dex_and_int_apply_to_str_melee_damage_bonus_in_radius", "matchers": [{"string": "Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain # Life when you lose an Endurance Charge", "better": 1, "id": "gain_x_life_when_endurance_charge_expires_or_consumed", "matchers": [{"string": "Gain # Life when you lose an Endurance Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Attack Damage against Bleeding Enemies", "better": 1, "id": "attack_damage_vs_bleeding_enemies_+%", "matchers": [{"string": "#% increased Attack Damage against Bleeding Enemies", "negate": false}, {"string": "#% reduced Attack Damage against Bleeding Enemies", "negate": true}], "trade": {"ids": null}} +{"ref": "Curse Enemies with Flammability on Hit", "better": 1, "id": "curse_on_hit_level_flammability", "matchers": [{"string": "Curse Enemies with Flammability on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Lightning Warp Skill", "better": 1, "id": "local_display_grants_skill_lightning_warp_level", "matchers": [{"string": "Grants Level # Lightning Warp Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are supported by Level # Multistrike", "better": 1, "id": "local_display_socketed_gems_get_multistrike_level", "matchers": [{"string": "Socketed Gems are supported by Level # Multistrike", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Melee Damage against Bleeding Enemies", "better": 1, "id": "melee_damage_vs_bleeding_enemies_+%", "matchers": [{"string": "#% increased Melee Damage against Bleeding Enemies", "negate": false}, {"string": "#% reduced Melee Damage against Bleeding Enemies", "negate": true}], "trade": {"ids": null}} +{"ref": "Adds # to # Fire Damage to Spells", "better": 1, "id": "spell_minimum_added_fire_damage", "matchers": [{"string": "Adds # to # Fire Damage to Spells", "negate": false}], "trade": {"ids": null}} +{"ref": "Battlemage", "better": 1, "id": "keystone_battlemage", "matchers": [{"string": "Battlemage", "negate": false}], "trade": {"ids": null}} +{"ref": "Adds # to # Cold Damage to Spells", "better": 1, "id": "spell_minimum_added_cold_damage", "matchers": [{"string": "Adds # to # Cold Damage to Spells", "negate": false}], "trade": {"ids": null}} +{"ref": "Adds # to # Lightning Damage to Spells", "better": 1, "id": "spell_minimum_added_lightning_damage", "matchers": [{"string": "Adds # to # Lightning Damage to Spells", "negate": false}], "trade": {"ids": null}} +{"ref": "Area has patches of Burning Ground", "better": 1, "id": "map_tempest_base_ground_fire_damage_to_deal_per_minute", "matchers": [{"string": "Area has patches of Burning Ground", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_133340941"]}}} +{"ref": "Area has patches of Chilled Ground", "better": 1, "id": "map_tempest_ground_ice", "matchers": [{"string": "Area has patches of Chilled Ground", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_349586058"]}}} +{"ref": "Area has patches of Shocked Ground", "better": 1, "id": "map_tempest_ground_lightning", "matchers": [{"string": "Area has patches of Shocked Ground", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3477720557"]}}} +{"ref": "Area has patches of desecrated ground", "better": 1, "id": "map_tempest_base_ground_desecration_damage_to_deal_per_minute", "matchers": [{"string": "Area has patches of desecrated ground", "negate": false}], "trade": {"ids": null}} +{"ref": "Tempest Effects have #% increased Area of Effect", "better": 1, "id": "map_storm_area_of_effect_+%", "matchers": [{"string": "Tempest Effects have #% increased Area of Effect", "negate": false}, {"string": "Tempest Effects have #% reduced Area of Effect", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Damage with Movement Skills", "better": 1, "id": "damage_+%_with_movement_skills", "matchers": [{"string": "#% increased Damage with Movement Skills", "negate": false}, {"string": "#% reduced Damage with Movement Skills", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Attack Speed with Movement Skills", "better": 1, "id": "attack_speed_+%_with_movement_skills", "matchers": [{"string": "#% increased Attack Speed with Movement Skills", "negate": false}, {"string": "#% reduced Attack Speed with Movement Skills", "negate": true}], "trade": {"ids": null}} +{"ref": "Gain # Life per Ignited Enemy Killed", "better": 1, "id": "life_gained_on_killing_ignited_enemies", "matchers": [{"string": "Gain # Life per Ignited Enemy Killed", "negate": false}, {"string": "Lose # Life per Ignited Enemy Killed", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Damage taken from Skeletons", "better": 1, "id": "damage_taken_+%_from_skeletons", "matchers": [{"string": "#% increased Damage taken from Skeletons", "negate": false}, {"string": "#% reduced Damage taken from Skeletons", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Damage taken from Ghosts", "better": 1, "id": "damage_taken_+%_from_ghosts", "matchers": [{"string": "#% increased Damage taken from Ghosts", "negate": false}, {"string": "#% reduced Damage taken from Ghosts", "negate": true}], "trade": {"ids": null}} +{"ref": "You cannot be Shocked while Frozen", "better": 1, "id": "cannot_be_shocked_while_frozen", "matchers": [{"string": "You cannot be Shocked while Frozen", "negate": false}], "trade": {"ids": null}} +{"ref": "Ancient Talismans possess monsters throughout Wraeclast", "better": 1, "id": "map_spawn_talismans", "matchers": [{"string": "Ancient Talismans possess monsters throughout Wraeclast", "negate": false}], "trade": {"ids": null}} +{"ref": "Shrines are corrupted by Darkness", "better": 1, "id": "map_shrines_are_darkshrines", "matchers": [{"string": "Shrines are corrupted by Darkness", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Global Physical Damage while Frozen", "better": 1, "id": "physical_damage_+%_while_frozen", "matchers": [{"string": "#% increased Global Physical Damage while Frozen", "negate": false}, {"string": "#% reduced Global Physical Damage while Frozen", "negate": true}], "trade": {"ids": null}} +{"ref": "Hits that Stun inflict Bleeding", "better": 1, "id": "bleed_on_stun", "matchers": [{"string": "Hits that Stun inflict Bleeding", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to grant Unholy Might to nearby Enemies on Kill", "better": 1, "id": "chance_to_grant_nearby_enemies_unholy_might_on_kill_%", "matchers": [{"string": "#% chance to grant Unholy Might to nearby Enemies on Kill", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to grant Onslaught to nearby Enemies on Kill", "better": 1, "id": "chance_to_grant_nearby_enemies_onslaught_on_kill_%", "matchers": [{"string": "#% chance to grant Onslaught to nearby Enemies on Kill", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to gain Unholy Might for 10 seconds on Kill", "better": 1, "id": "chance_to_gain_unholy_might_on_kill_for_10_seconds_%", "matchers": [{"string": "#% chance to gain Unholy Might for 10 seconds on Kill", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to gain Onslaught for 10 seconds on Kill", "better": 1, "id": "chance_to_gain_onslaught_on_kill_for_10_seconds_%", "matchers": [{"string": "#% chance to gain Onslaught for 10 seconds on Kill", "negate": false}], "trade": {"ids": null}} +{"ref": "Recover #% of Energy Shield on Kill", "better": 1, "id": "recover_energy_shield_%_on_kill", "matchers": [{"string": "Recover #% of Energy Shield on Kill", "negate": false}, {"string": "Lose #% of Energy Shield on Kill", "negate": true}], "trade": {"ids": null}} +{"ref": "+#% to Fire Damage over Time Multiplier", "better": 1, "id": "fire_dot_multiplier_+", "matchers": [{"string": "#% to Fire Damage over Time Multiplier", "negate": false}], "trade": {"ids": null}} +{"ref": "Triggers Level # Manifest Dancing Dervishes on Rampage", "better": 1, "id": "local_display_cast_level_x_manifest_dancing_dervish", "matchers": [{"string": "Triggers Level # Manifest Dancing Dervishes on Rampage", "negate": false}], "trade": {"ids": null}} +{"ref": "With at least 40 Dexterity in Radius, Barrage fires an additional Projectile simultaneously on the first and final attacks", "better": 1, "id": "local_unique_jewel_barrage_final_volley_fires_x_additional_projectiles_simultaneously_with_50_dex_in_radius", "matchers": [{"string": "With at least 40 Dexterity in Radius, Barrage fires an additional Projectile simultaneously on the first and final attacks", "negate": false}], "trade": {"ids": null}} +{"ref": "With at least 40 Strength in Radius, Ground Slam\\nhas a #% increased angle", "better": 1, "id": "local_unique_jewel_ground_slam_angle_+%_with_50_str_in_radius", "matchers": [{"string": "With at least 40 Strength in Radius, Ground Slam\\nhas a #% increased angle", "negate": false}, {"string": "With at least 40 Strength in Radius, Ground Slam\\nhas a #% reduced angle", "negate": true}], "trade": {"ids": null}} +{"ref": "With at least 40 Strength in Radius, Ground Slam has a #% chance\\nto grant an Endurance Charge when you Stun an Enemy", "better": 1, "id": "local_unique_jewel_ground_slam_chance_to_gain_endurance_charge_%_on_stun_with_50_str_in_radius", "matchers": [{"string": "With at least 40 Strength in Radius, Ground Slam has a #% chance\\nto grant an Endurance Charge when you Stun an Enemy", "negate": false}], "trade": {"ids": null}} +{"ref": "With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to # Skeleton Mages", "better": 1, "id": "local_unique_jewel_with_50_int_in_radius_summon_X_melee_skeletons_as_mage_skeletons", "matchers": [{"string": "With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to # Skeleton Mages", "negate": false}], "trade": {"ids": null}} +{"ref": "Siege Ballista has +# to maximum number of Summoned Totems per 200 Dexterity", "better": 1, "id": "number_of_additional_siege_ballistae_per_200_dexterity", "matchers": [{"string": "Siege Ballista has +# to maximum number of Summoned Totems per 200 Dexterity", "negate": false}], "trade": {"ids": null}} +{"ref": "Shrapnel Ballista has +# to maximum number of Summoned Totems per 200 Strength", "better": 1, "id": "number_of_additional_shrapnel_ballistae_per_200_strength", "matchers": [{"string": "Shrapnel Ballista has +# to maximum number of Summoned Totems per 200 Strength", "negate": false}], "trade": {"ids": null}} +{"ref": "Adds # to # Physical Damage to Attacks per 25 Dexterity", "better": 1, "id": "attack_minimum_added_physical_damage_per_25_dexterity", "matchers": [{"string": "Adds # to # Physical Damage to Attacks per 25 Dexterity", "negate": false}], "trade": {"ids": null}} +{"ref": "Adds # to # Physical Damage to Attacks per 25 Strength", "better": 1, "id": "attack_minimum_added_physical_damage_per_25_strength", "matchers": [{"string": "Adds # to # Physical Damage to Attacks per 25 Strength", "negate": false}], "trade": {"ids": null}} +{"ref": "Nearby Enemies are Blinded", "better": 1, "id": "local_display_nearby_enemies_are_blinded", "matchers": [{"string": "Nearby Enemies are Blinded", "negate": false}], "trade": {"ids": null}} +{"ref": "Trigger Level # Fire Burst on Kill", "better": 1, "id": "display_cast_fire_burst_on_kill", "matchers": [{"string": "Trigger Level # Fire Burst on Kill", "negate": false}], "trade": {"ids": null}} +{"ref": "Nearby Enemies are Hindered, with #% increased Movement Speed", "better": 1, "id": "local_display_nearby_enemies_movement_speed_+%", "matchers": [{"string": "Nearby Enemies are Hindered, with #% increased Movement Speed", "negate": false}, {"string": "Nearby Enemies are Hindered, with #% reduced Movement Speed", "negate": true}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Hypothermia", "better": 1, "id": "local_display_socketed_gems_supported_by_x_hypothermia", "matchers": [{"string": "Socketed Gems are Supported by Level # Hypothermia", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Ice Bite", "better": 1, "id": "local_display_socketed_gems_supported_by_x_ice_bite", "matchers": [{"string": "Socketed Gems are Supported by Level # Ice Bite", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Cold Penetration", "better": 1, "id": "local_display_socketed_gems_supported_by_x_cold_penetration", "matchers": [{"string": "Socketed Gems are Supported by Level # Cold Penetration", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Mana Leech", "better": 1, "id": "local_display_socketed_gems_supported_by_x_mana_leech", "matchers": [{"string": "Socketed Gems are Supported by Level # Mana Leech", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Added Cold Damage", "better": 1, "id": "local_display_socketed_gems_supported_by_x_added_cold_damage", "matchers": [{"string": "Socketed Gems are Supported by Level # Added Cold Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Inspiration", "better": 1, "id": "local_display_socketed_gems_supported_by_x_reduced_mana_cost", "matchers": [{"string": "Socketed Gems are Supported by Level # Inspiration", "negate": false}], "trade": {"ids": null}} +{"ref": "Consumes 1 Frenzy Charge on use", "better": 1, "id": "local_flask_consumes_x_frenzy_charges_on_use", "matchers": [{"string": "Consumes 1 Frenzy Charge on use", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Critical Hit Chance against Blinded Enemies", "better": 1, "id": "critical_strike_chance_+%_vs_blinded_enemies", "matchers": [{"string": "#% increased Critical Hit Chance against Blinded Enemies", "negate": false}, {"string": "#% reduced Critical Hit Chance against Blinded Enemies", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Damage with Hits against Hindered Enemies", "better": 1, "id": "damage_+%_vs_hindered_enemies", "matchers": [{"string": "#% increased Damage with Hits against Hindered Enemies", "negate": false}, {"string": "#% reduced Damage with Hits against Hindered Enemies", "negate": true}], "trade": {"ids": null}} +{"ref": "Area contains a Stone Circle", "better": 1, "id": "map_force_stone_circle", "matchers": [{"string": "Area contains a Stone Circle", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain Soul Eater during any Flask Effect", "better": 1, "id": "gain_soul_eater_during_flask_effect", "matchers": [{"string": "Gain Soul Eater during any Flask Effect", "negate": false}], "trade": {"ids": null}} +{"ref": "Lose all Eaten Souls when you use a Flask", "better": 1, "id": "lose_soul_eater_souls_on_flask_use", "matchers": [{"string": "Lose all Eaten Souls when you use a Flask", "negate": false}], "trade": {"ids": null}} +{"ref": "Players gain Soul Eater for # seconds on Rare Monster Kill", "better": 1, "id": "map_players_gain_soul_eater_on_rare_kill_ms", "matchers": [{"string": "Players gain Soul Eater for # seconds on Rare Monster Kill", "negate": false}], "trade": {"ids": null}} +{"ref": "Players gain Modifiers from Slain Rare Monsters for # seconds", "better": 1, "id": "map_players_gain_rare_monster_mods_on_kill_ms", "matchers": [{"string": "Players gain Modifiers from Slain Rare Monsters for # seconds", "negate": false}], "trade": {"ids": null}} +{"ref": "Players gain a Random Mod from Slain Rare Monsters for # seconds", "better": 1, "id": "map_players_gain_1_random_rare_monster_mod_on_kill_ms", "matchers": [{"string": "Players gain a Random Mod from Slain Rare Monsters for # seconds", "negate": false}], "trade": {"ids": null}} +{"ref": "Deals #% more Damage", "better": 1, "id": "active_skill_damage_+%_final", "matchers": [{"string": "Deals #% more Damage", "negate": false}, {"string": "Deals #% less Damage", "negate": true}], "trade": {"ids": null}} +{"ref": "Socketed Gems have no Reservation\\nYour Blessing Skills are Disabled", "better": 1, "id": "disable_blessing_skills_and_display_socketed_aura_gems_reserve_no_mana", "matchers": [{"string": "Socketed Gems have no Reservation\\nYour Blessing Skills are Disabled", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Illusory Warp Skill", "better": 1, "id": "local_display_illusory_warp_level", "matchers": [{"string": "Grants Level # Illusory Warp Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Implicit Modifier magnitudes are doubled", "better": 1, "id": "local_implicit_stat_magnitude_+%", "matchers": [{"string": "Implicit Modifier magnitudes are doubled", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Damage with Unarmed Attacks against Bleeding Enemies", "better": 1, "id": "unarmed_damage_+%_vs_bleeding_enemies", "matchers": [{"string": "#% increased Damage with Unarmed Attacks against Bleeding Enemies", "negate": false}, {"string": "#% reduced Damage with Unarmed Attacks against Bleeding Enemies", "negate": true}], "trade": {"ids": null}} +{"ref": "Modifiers to Claw Damage also apply to Unarmed Attack Damage with Melee Skills", "better": 1, "id": "modifiers_to_claw_damage_also_affect_unarmed_melee_damage", "matchers": [{"string": "Modifiers to Claw Damage also apply to Unarmed Attack Damage with Melee Skills", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Unarmed Melee Attack Critical Hit Chance", "better": 1, "id": "base_melee_critical_strike_chance_while_unarmed_%", "matchers": [{"string": "#% to Unarmed Melee Attack Critical Hit Chance", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain # Life per Bleeding Enemy Hit", "better": 1, "id": "life_gained_on_bleeding_enemy_hit", "matchers": [{"string": "Gain # Life per Bleeding Enemy Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Trigger Level 10 Summon Spectral Wolf on Kill", "better": 1, "id": "local_display_trigger_level_18_summon_spectral_wolf_on_kill_10%_chance", "matchers": [{"string": "Trigger Level 10 Summon Spectral Wolf on Kill", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Trigger Level 25 Summon Spectral Wolf on Critical Hit with this Weapon", "better": 1, "id": "local_display_trigger_level_20_summon_spectral_wolf_on_crit_with_this_weapon_%_chance", "matchers": [{"string": "#% chance to Trigger Level 25 Summon Spectral Wolf on Critical Hit with this Weapon", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Physical Damage with Axes", "better": 1, "id": "physical_axe_damage_+%", "matchers": [{"string": "#% increased Physical Damage with Axes", "negate": false}, {"string": "#% reduced Physical Damage with Axes", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Physical Attack Damage while Dual Wielding", "better": 1, "id": "physical_damage_while_dual_wielding_+%", "matchers": [{"string": "#% increased Physical Attack Damage while Dual Wielding", "negate": false}, {"string": "#% reduced Physical Attack Damage while Dual Wielding", "negate": true}], "trade": {"ids": null}} +{"ref": "Arrows Fork", "better": 1, "id": "arrows_fork", "matchers": [{"string": "Arrows Fork", "negate": false}], "trade": {"ids": null}} +{"ref": "Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed with Melee Skills", "better": 1, "id": "modifiers_to_claw_attack_speed_also_affect_unarmed_melee_attack_speed", "matchers": [{"string": "Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed with Melee Skills", "negate": false}], "trade": {"ids": null}} +{"ref": "Modifiers to Claw Critical Hit Chance also apply to Unarmed Critical Hit Chance with Melee Skills", "better": 1, "id": "modifiers_to_claw_critical_strike_chance_also_affect_unarmed_melee_critical_strike_chance", "matchers": [{"string": "Modifiers to Claw Critical Hit Chance also apply to Unarmed Critical Hit Chance with Melee Skills", "negate": false}], "trade": {"ids": null}} +{"ref": "#% faster start of Energy Shield Recharge during any Flask Effect", "better": 1, "id": "energy_shield_delay_during_flask_effect_-%", "matchers": [{"string": "#% faster start of Energy Shield Recharge during any Flask Effect", "negate": false}, {"string": "#% slower start of Energy Shield Recharge during any Flask Effect", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Energy Shield Recharge Rate during any Flask Effect", "better": 1, "id": "energy_shield_recharge_rate_during_flask_effect_+%", "matchers": [{"string": "#% increased Energy Shield Recharge Rate during any Flask Effect", "negate": false}, {"string": "#% reduced Energy Shield Recharge Rate during any Flask Effect", "negate": true}], "trade": {"ids": null}} +{"ref": "Unique Boss drops an additional Map", "better": 1, "id": "map_display_unique_boss_drops_X_maps", "matchers": [{"string": "Unique Boss drops an additional Map", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Cold Damage per 1% Chance to Block Attack Damage", "better": 1, "id": "cold_damage_+%_per_1%_block_chance", "matchers": [{"string": "#% increased Cold Damage per 1% Chance to Block Attack Damage", "negate": false}, {"string": "#% reduced Cold Damage per 1% Chance to Block Attack Damage", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Maximum Mana per 2% Chance to Block Spell Damage", "better": 1, "id": "maximum_mana_+%_per_2%_spell_block_chance", "matchers": [{"string": "#% increased Maximum Mana per 2% Chance to Block Spell Damage", "negate": false}, {"string": "#% reduced Maximum Mana per 2% Chance to Block Spell Damage", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Armour while Chilled or Frozen", "better": 1, "id": "physical_damage_reduction_rating_+%_while_chilled_or_frozen", "matchers": [{"string": "#% increased Armour while Chilled or Frozen", "negate": false}, {"string": "#% reduced Armour while Chilled or Frozen", "negate": true}], "trade": {"ids": null}} +{"ref": "Adds # to # Cold Damage to Spells and Attacks", "better": 1, "id": "spell_and_attack_minimum_added_cold_damage", "matchers": [{"string": "Adds # to # Cold Damage to Spells and Attacks", "negate": false}], "trade": {"ids": null}} +{"ref": "This Map's Modifiers to Quantity of Items found also apply to Rarity", "better": 1, "id": "modifiers_to_map_item_drop_quantity_also_apply_to_map_item_drop_rarity", "matchers": [{"string": "This Map's Modifiers to Quantity of Items found also apply to Rarity", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters drop items # Level higher", "better": 1, "id": "map_monster_drop_higher_level_gear", "matchers": [{"string": "Monsters drop items # Level higher", "negate": false}], "trade": {"ids": null}} +{"ref": "Creates a Smoke Cloud on Use", "better": 1, "id": "local_smoke_ground_on_flask_use_radius", "matchers": [{"string": "Creates a Smoke Cloud on Use", "negate": false}], "trade": {"ids": null}} +{"ref": "Creates Consecrated Ground on Use", "better": 1, "id": "local_consecrate_ground_on_flask_use_radius", "matchers": [{"string": "Creates Consecrated Ground on Use", "negate": false}], "trade": {"ids": null}} +{"ref": "Creates Chilled Ground on Use", "better": 1, "id": "local_flask_chilled_ground_on_flask_use_radius", "matchers": [{"string": "Creates Chilled Ground on Use", "negate": false}], "trade": {"ids": null}} +{"ref": "Taunts nearby Enemies on use", "better": 1, "id": "local_flask_taunt_enemies_on_use_radius", "matchers": [{"string": "Taunts nearby Enemies on use", "negate": false}], "trade": {"ids": null}} +{"ref": "Restores Ward on use", "better": 1, "id": "local_flask_restore_ward", "matchers": [{"string": "Restores Ward on use", "negate": false}], "trade": {"ids": null}} +{"ref": "An Enemy Writhing Worms escape the Flask when used\\nWrithing Worms are destroyed when Hit", "better": 1, "id": "local_number_of_bloodworms_to_spawn_on_flask_use", "matchers": [{"string": "An Enemy Writhing Worms escape the Flask when used\\nWrithing Worms are destroyed when Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "You lose all Endurance Charges on reaching maximum Endurance Charges", "better": 1, "id": "lose_all_endurance_charges_when_reaching_maximum", "matchers": [{"string": "You lose all Endurance Charges on reaching maximum Endurance Charges", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Trigger Level 16 Molten Burst on Melee Hit", "better": 1, "id": "local_display_molten_burst_on_melee_hit_%", "matchers": [{"string": "#% chance to Trigger Level 16 Molten Burst on Melee Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Petrified during Effect", "better": 1, "id": "local_flask_is_petrified", "matchers": [{"string": "Petrified during Effect", "negate": false}], "trade": {"ids": null}} +{"ref": "#% additional Physical Damage Reduction during Effect", "better": 1, "id": "local_flask_additional_physical_damage_reduction_%", "matchers": [{"string": "#% additional Physical Damage Reduction during Effect", "negate": false}], "trade": {"ids": null}} +{"ref": "Nearby Enemies take {0:d} Lightning Damage per second", "better": 1, "id": "local_display_nearby_enemies_take_X_lightning_damage_per_minute", "matchers": [{"string": "Nearby Enemies take {0:d} Lightning Damage per second", "negate": false}], "trade": {"ids": null}} +{"ref": "Flasks do not apply to you", "better": 1, "id": "cannot_be_affected_by_flasks", "matchers": [{"string": "Flasks do not apply to you", "negate": false}], "trade": {"ids": null}} +{"ref": "Flasks you Use apply to your Raised Zombies and Spectres", "better": 1, "id": "flasks_apply_to_your_zombies_and_spectres", "matchers": [{"string": "Flasks you Use apply to your Raised Zombies and Spectres", "negate": false}], "trade": {"ids": null}} +{"ref": "Triggers Level # Abberath's Fury when Equipped", "better": 1, "id": "display_abberaths_hooves_skill_level", "matchers": [{"string": "Triggers Level # Abberath's Fury when Equipped", "negate": false}], "trade": {"ids": null}} +{"ref": "Regenerate #% of Life per second while Frozen", "better": 1, "id": "life_regeneration_per_minute_%_while_frozen", "matchers": [{"string": "Regenerate #% of Life per second while Frozen", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to knockback on Counterattack", "better": 1, "id": "knockback_on_counterattack_%", "matchers": [{"string": "#% chance to knockback on Counterattack", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance for Energy Shield Recharge to start when you Block", "better": 1, "id": "energy_shield_recharges_on_block_%", "matchers": [{"string": "#% chance for Energy Shield Recharge to start when you Block", "negate": false}], "trade": {"ids": null}} +{"ref": "Attacks with this Weapon deal Double Damage to Chilled Enemies", "better": 1, "id": "local_double_damage_to_chilled_enemies", "matchers": [{"string": "Attacks with this Weapon deal Double Damage to Chilled Enemies", "negate": false}], "trade": {"ids": null}} +{"ref": "Attacks with this Weapon Penetrate #% Elemental Resistances", "better": 1, "id": "local_elemental_penetration_%", "matchers": [{"string": "Attacks with this Weapon Penetrate #% Elemental Resistances", "negate": false}], "trade": {"ids": {"rune": ["rune.stat_4064396395"]}}} +{"ref": "Zealot's Oath during Effect", "better": 1, "id": "local_flask_zealots_oath", "matchers": [{"string": "Zealot's Oath during Effect", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Damage while you have no Frenzy Charges", "better": 1, "id": "damage_while_no_frenzy_charges_+%", "matchers": [{"string": "#% increased Damage while you have no Frenzy Charges", "negate": false}, {"string": "#% reduced Damage while you have no Frenzy Charges", "negate": true}], "trade": {"ids": null}} +{"ref": "Minions deal # to # additional Attack Physical Damage", "better": 1, "id": "minion_attack_minimum_added_physical_damage", "matchers": [{"string": "Minions deal # to # additional Attack Physical Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain #% of Physical Damage as Extra Lightning Damage with Attacks", "better": 1, "id": "non_skill_physical_damage_%_to_gain_as_lightning_with_attacks", "matchers": [{"string": "Gain #% of Physical Damage as Extra Lightning Damage with Attacks", "negate": false}], "trade": {"ids": null}} +{"ref": "+# maximum Energy Shield per 5 Strength", "better": 1, "id": "maximum_energy_shield_+_per_5_strength", "matchers": [{"string": "# maximum Energy Shield per 5 Strength", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to maximum number of Summoned Golems", "better": 1, "id": "base_number_of_golems_allowed", "matchers": [{"string": "# to maximum number of Summoned Golems", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Summon Stone Golem Skill", "better": 1, "id": "local_display_grants_level_x_summon_stone_golem", "matchers": [{"string": "Grants Level # Summon Stone Golem Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Counts as all One Handed Melee Weapon Types", "better": 1, "id": "local_varunastra_weapon_counts_as_all_1h_melee_weapon_types", "matchers": [{"string": "Counts as all One Handed Melee Weapon Types", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Fortify", "better": 1, "id": "local_display_socketed_gems_supported_by_level_x_fortify", "matchers": [{"string": "Socketed Gems are Supported by Level # Fortify", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Energy Shield Recovery rate", "better": 1, "id": "energy_shield_recovery_rate_+%", "matchers": [{"string": "#% increased Energy Shield Recovery rate", "negate": false}, {"string": "#% reduced Energy Shield Recovery rate", "negate": true}], "trade": {"ids": null}} +{"ref": "Caches of Perandus wealth can be found throughout Wraeclast", "better": 1, "id": "map_spawn_perandus_chests", "matchers": [{"string": "Caches of Perandus wealth can be found throughout Wraeclast", "negate": false}], "trade": {"ids": null}} +{"ref": "Immunity to Damage during Effect", "better": 1, "id": "local_flask_immune_to_damage", "matchers": [{"string": "Immunity to Damage during Effect", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Physical Damage Over Time per 10 Dexterity", "better": 1, "id": "physical_damage_over_time_per_10_dexterity_+%", "matchers": [{"string": "#% increased Physical Damage Over Time per 10 Dexterity", "negate": false}, {"string": "#% reduced Physical Damage Over Time per 10 Dexterity", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Bleeding Duration per 12 Intelligence", "better": 1, "id": "bleed_duration_per_12_intelligence_+%", "matchers": [{"string": "#% increased Bleeding Duration per 12 Intelligence", "negate": false}, {"string": "#% reduced Bleeding Duration per 12 Intelligence", "negate": true}], "trade": {"ids": null}} +{"ref": "#% Chance to cause Bleeding Enemies to Flee on hit", "better": 1, "id": "%_chance_to_cause_bleeding_enemies_to_flee_on_hit", "matchers": [{"string": "#% Chance to cause Bleeding Enemies to Flee on hit", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Avoid Fire Damage from Hits", "better": 1, "id": "avoid_fire_damage_%", "matchers": [{"string": "#% chance to Avoid Fire Damage from Hits", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to create Chilled Ground when you Freeze an Enemy", "better": 1, "id": "chilled_ground_on_freeze_%_chance_for_3_seconds", "matchers": [{"string": "#% chance to create Chilled Ground when you Freeze an Enemy", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to create Consecrated Ground when you Shatter an Enemy", "better": 1, "id": "consecrate_ground_on_shatter_%_chance_for_3_seconds", "matchers": [{"string": "#% chance to create Consecrated Ground when you Shatter an Enemy", "negate": false}], "trade": {"ids": null}} +{"ref": "#% Chance for Traps to Trigger an additional time", "better": 1, "id": "trap_%_chance_to_trigger_twice", "matchers": [{"string": "#% Chance for Traps to Trigger an additional time", "negate": false}], "trade": {"ids": null}} +{"ref": "Traps and Mines deal # to # additional Physical Damage", "better": 1, "id": "trap_and_mine_minimum_added_physical_damage", "matchers": [{"string": "Traps and Mines deal # to # additional Physical Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Last Breath when you Use a Skill during Effect, for #% of Mana Cost", "better": 1, "id": "local_flask_life_gain_on_skill_use_%_mana_cost", "matchers": [{"string": "Grants Last Breath when you Use a Skill during Effect, for #% of Mana Cost", "negate": false}], "trade": {"ids": null}} +{"ref": "Traps and Mines have a #% chance to Poison on Hit", "better": 1, "id": "traps_and_mines_%_chance_to_poison", "matchers": [{"string": "Traps and Mines have a #% chance to Poison on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Blasphemy", "better": 1, "id": "local_display_socketed_curse_gems_supported_by_level_x_blasphemy", "matchers": [{"string": "Socketed Gems are Supported by Level # Blasphemy", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Curse Gems have #% increased Reservation Efficiency", "better": 1, "id": "local_display_socketed_curse_gems_have_mana_reservation_+%", "matchers": [{"string": "Socketed Curse Gems have #% increased Reservation Efficiency", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to grant a Power Charge to nearby Allies on Kill", "better": 1, "id": "chance_to_grant_power_charge_to_nearby_allies_on_kill_%", "matchers": [{"string": "#% chance to grant a Power Charge to nearby Allies on Kill", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to grant a Frenzy Charge to nearby Allies on Hit", "better": 1, "id": "chance_to_grant_frenzy_charge_to_nearby_allies_on_hit_%", "matchers": [{"string": "#% chance to grant a Frenzy Charge to nearby Allies on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Trigger Level 10 Summon Raging Spirit on Kill", "better": 1, "id": "local_display_summon_raging_spirit_on_kill_%", "matchers": [{"string": "#% chance to Trigger Level 10 Summon Raging Spirit on Kill", "negate": false}], "trade": {"ids": null}} +{"ref": "Glows while in an Area containing a Unique Fish", "better": 1, "id": "glows_in_area_with_unique_fish", "matchers": [{"string": "Glows while in an Area containing a Unique Fish", "negate": false}], "trade": {"ids": null}} +{"ref": "Attacks with this Weapon Maim on hit", "better": 1, "id": "local_maim_on_hit", "matchers": [{"string": "Attacks with this Weapon Maim on hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Always Critical Hit Shocked Enemies", "better": 1, "id": "always_crit_shocked_enemies", "matchers": [{"string": "Always Critical Hit Shocked Enemies", "negate": false}], "trade": {"ids": null}} +{"ref": "You cannot deal Critical Hits against non-Shocked Enemies", "better": 1, "id": "cannot_crit_non_shocked_enemies", "matchers": [{"string": "You cannot deal Critical Hits against non-Shocked Enemies", "negate": false}], "trade": {"ids": null}} +{"ref": "Minions have #% chance to Blind Enemies on hit", "better": 1, "id": "minions_%_chance_to_blind_on_hit", "matchers": [{"string": "Minions have #% chance to Blind Enemies on hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Minions cannot be Blinded", "better": 1, "id": "minions_cannot_be_blinded", "matchers": [{"string": "Minions cannot be Blinded", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Minion Gems are Supported by Level # Life Leech", "better": 1, "id": "display_socketed_minion_gems_supported_by_level_X_life_leech", "matchers": [{"string": "Socketed Minion Gems are Supported by Level # Life Leech", "negate": false}], "trade": {"ids": null}} +{"ref": "Found Magic Items drop Identified", "better": 1, "id": "magic_items_drop_identified", "matchers": [{"string": "Found Magic Items drop Identified", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain # Mana per Grand Spectrum", "better": 1, "id": "X_mana_per_stackable_unique_jewel", "matchers": [{"string": "Gain # Mana per Grand Spectrum", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain # Armour per Grand Spectrum", "better": 1, "id": "X_armour_per_stackable_unique_jewel", "matchers": [{"string": "Gain # Armour per Grand Spectrum", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Elemental Damage per Grand Spectrum", "better": 1, "id": "elemental_damage_+%_per_stackable_unique_jewel", "matchers": [{"string": "#% increased Elemental Damage per Grand Spectrum", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Critical Hit Chance per Grand Spectrum", "better": 1, "id": "critical_strike_chance_+%_per_stackable_unique_jewel", "matchers": [{"string": "#% increased Critical Hit Chance per Grand Spectrum", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Avoid Elemental Ailments per Grand Spectrum", "better": 1, "id": "avoid_all_elemental_status_%_per_stackable_unique_jewel", "matchers": [{"string": "#% chance to Avoid Elemental Ailments per Grand Spectrum", "negate": false}], "trade": {"ids": null}} +{"ref": "Minions have +#% to Critical Damage Bonus per Grand Spectrum", "better": 1, "id": "minion_critical_strike_multiplier_+_per_stackable_unique_jewel", "matchers": [{"string": "Minions have +#% to Critical Damage Bonus per Grand Spectrum", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Minimum Endurance Charges per Grand Spectrum", "better": 1, "id": "minimum_endurance_charges_per_stackable_unique_jewel", "matchers": [{"string": "# to Minimum Endurance Charges per Grand Spectrum", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Minimum Frenzy Charges per Grand Spectrum", "better": 1, "id": "minimum_frenzy_charges_per_stackable_unique_jewel", "matchers": [{"string": "# to Minimum Frenzy Charges per Grand Spectrum", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Minimum Power Charges per Grand Spectrum", "better": 1, "id": "minimum_power_charges_per_stackable_unique_jewel", "matchers": [{"string": "# to Minimum Power Charges per Grand Spectrum", "negate": false}], "trade": {"ids": null}} +{"ref": "Adds # minimum Cold Damage to Spells per Power Charge", "better": 1, "id": "spell_minimum_added_cold_damage_per_power_charge", "matchers": [{"string": "Adds # minimum Cold Damage to Spells per Power Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "+# Mana gained on Killing a Frozen Enemy", "better": 1, "id": "recover_X_mana_on_killing_frozen_enemy", "matchers": [{"string": "# Mana gained on Killing a Frozen Enemy", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to gain a Power Charge on Killing a Frozen Enemy", "better": 1, "id": "chance_to_gain_power_charge_on_killing_frozen_enemy_%", "matchers": [{"string": "#% chance to gain a Power Charge on Killing a Frozen Enemy", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Damage if you've Frozen an Enemy Recently", "better": 1, "id": "damage_+%_if_you_have_frozen_enemy_recently", "matchers": [{"string": "#% increased Damage if you've Frozen an Enemy Recently", "negate": false}, {"string": "#% reduced Damage if you've Frozen an Enemy Recently", "negate": true}], "trade": {"ids": null}} +{"ref": "Adds # to # Lightning Damage to Attacks with this Weapon per 10 Intelligence", "better": 1, "id": "attack_minimum_added_lightning_damage_per_10_int", "matchers": [{"string": "Adds # to # Lightning Damage to Attacks with this Weapon per 10 Intelligence", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Movement Speed while Bleeding", "better": 1, "id": "movement_speed_+%_while_bleeding", "matchers": [{"string": "#% increased Movement Speed while Bleeding", "negate": false}, {"string": "#% reduced Movement Speed while Bleeding", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Physical Damage taken while moving", "better": 1, "id": "physical_damage_taken_+%_while_moving", "matchers": [{"string": "#% increased Physical Damage taken while moving", "negate": false}, {"string": "#% reduced Physical Damage taken while moving", "negate": true}], "trade": {"ids": null}} +{"ref": "#% additional Physical Damage Reduction while stationary", "better": 1, "id": "physical_damage_reduction_rating_%_while_not_moving", "matchers": [{"string": "#% additional Physical Damage Reduction while stationary", "negate": false}], "trade": {"ids": null}} +{"ref": "Adds # to # Lightning Damage for each Shocked Enemy you've Killed Recently", "better": 1, "id": "minimum_added_lightning_damage_per_shocked_enemy_killed_recently", "matchers": [{"string": "Adds # to # Lightning Damage for each Shocked Enemy you've Killed Recently", "negate": false}], "trade": {"ids": null}} +{"ref": "Damage Penetrates #% Cold Resistance against Chilled Enemies", "better": 1, "id": "cold_penetration_%_vs_chilled_enemies", "matchers": [{"string": "Damage Penetrates #% Cold Resistance against Chilled Enemies", "negate": false}], "trade": {"ids": null}} +{"ref": "Recover # Life when you Ignite an Enemy", "better": 1, "id": "recover_X_life_on_enemy_ignited", "matchers": [{"string": "Recover # Life when you Ignite an Enemy", "negate": false}], "trade": {"ids": null}} +{"ref": "Shock Reflection", "better": 1, "id": "reflect_shocks", "matchers": [{"string": "Shock Reflection", "negate": false}], "trade": {"ids": null}} +{"ref": "Reflect Shocks applied to you to all Nearby Enemies", "better": 1, "id": "reflect_shocks_to_enemies_in_radius", "matchers": [{"string": "Reflect Shocks applied to you to all Nearby Enemies", "negate": false}], "trade": {"ids": null}} +{"ref": "Chaos Damage taken does not cause double loss of Energy Shield while not on Low Life", "better": 1, "id": "chaos_damage_does_not_damage_energy_shield_extra_hard_while_not_low_life", "matchers": [{"string": "Chaos Damage taken does not cause double loss of Energy Shield while not on Low Life", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain a Frenzy Charge on Hit while Bleeding", "better": 1, "id": "gain_frenzy_charge_on_hit_while_bleeding", "matchers": [{"string": "Gain a Frenzy Charge on Hit while Bleeding", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Cold Damage per Frenzy Charge", "better": 1, "id": "cold_damage_+%_per_frenzy_charge", "matchers": [{"string": "#% increased Cold Damage per Frenzy Charge", "negate": false}, {"string": "#% reduced Cold Damage per Frenzy Charge", "negate": true}], "trade": {"ids": null}} +{"ref": "Recover # Life when you Block", "better": 1, "id": "recover_X_life_on_block", "matchers": [{"string": "Recover # Life when you Block", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Reckoning Skill", "better": 1, "id": "local_display_grants_level_X_reckoning", "matchers": [{"string": "Grants Level # Reckoning Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Minions Recover #% of Life on Killing a Poisoned Enemy", "better": 1, "id": "minions_recover_%_maximum_life_on_killing_poisoned_enemy", "matchers": [{"string": "Minions Recover #% of Life on Killing a Poisoned Enemy", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain a Frenzy Charge on reaching Maximum Power Charges", "better": 1, "id": "gain_frenzy_charge_on_reaching_maximum_power_charges", "matchers": [{"string": "Gain a Frenzy Charge on reaching Maximum Power Charges", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Envy Skill", "better": 1, "id": "local_display_grants_level_X_envy", "matchers": [{"string": "Grants Level # Envy Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "+# Armour if you've Blocked Recently", "better": 1, "id": "X_armour_if_you_have_blocked_recently", "matchers": [{"string": "# Armour if you've Blocked Recently", "negate": false}], "trade": {"ids": null}} +{"ref": "Minions have #% chance to Poison Enemies on Hit", "better": 1, "id": "minions_chance_to_poison_on_hit_%", "matchers": [{"string": "Minions have #% chance to Poison Enemies on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Trigger Level # Bone Nova when you Hit a Bleeding Enemy", "better": 1, "id": "local_display_attack_with_level_X_bone_nova_on_bleeding_enemy_kill", "matchers": [{"string": "Trigger Level # Bone Nova when you Hit a Bleeding Enemy", "negate": false}], "trade": {"ids": null}} +{"ref": "Trigger Level # Icicle Burst when you Hit a Frozen Enemy", "better": 1, "id": "local_display_trigger_level_x_icicle_nova_on_hit_vs_frozen_enemy", "matchers": [{"string": "Trigger Level # Icicle Burst when you Hit a Frozen Enemy", "negate": false}], "trade": {"ids": null}} +{"ref": "Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies", "better": 1, "id": "attacks_chance_to_bleed_25%_vs_cursed_enemies", "matchers": [{"string": "Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies", "negate": false}], "trade": {"ids": null}} +{"ref": "Evasion Rating is increased by Overcapped Cold Resistance", "better": 1, "id": "evasion_rating_increased_by_overcapped_cold_resistance", "matchers": [{"string": "Evasion Rating is increased by Overcapped Cold Resistance", "negate": false}], "trade": {"ids": null}} +{"ref": "Critical Hit Chance is increased by Overcapped Lightning Resistance", "better": 1, "id": "critical_strike_chance_increased_by_overcapped_lightning_resistance", "matchers": [{"string": "Critical Hit Chance is increased by Overcapped Lightning Resistance", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to cover Enemies in Ash when they Hit you", "better": 1, "id": "apply_covered_in_ash_to_attacker_when_hit_%", "matchers": [{"string": "#% chance to cover Enemies in Ash when they Hit you", "negate": false}], "trade": {"ids": null}} +{"ref": "Chill Enemy for {0:d} second when Hit, reducing their Action Speed by 30%", "better": 1, "id": "chill_enemy_when_hit_duration_ms", "matchers": [{"string": "Chill Enemy for {0:d} second when Hit, reducing their Action Speed by 30%", "negate": false}], "trade": {"ids": null}} +{"ref": "Sockets cannot be modified", "better": 1, "id": "local_six_linked_random_sockets", "matchers": [{"string": "Sockets cannot be modified", "negate": false}], "trade": {"ids": null}} +{"ref": "You can only Socket Corrupted Gems in this item", "better": 1, "id": "local_can_only_socket_corrupted_gems", "matchers": [{"string": "You can only Socket Corrupted Gems in this item", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Curse Enemies with Vulnerability on Hit", "better": 1, "id": "curse_on_hit_level_10_vulnerability_%", "matchers": [{"string": "#% chance to Curse Enemies with Vulnerability on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Passives granting Fire Resistance or all Elemental Resistances in Radius\\nalso grant Chance to Block Attack Damage at #% of its value", "better": 1, "id": "local_unique_jewel_fire_resistance_also_grants_block_chance_scaled_%", "matchers": [{"string": "Passives granting Fire Resistance or all Elemental Resistances in Radius\\nalso grant Chance to Block Attack Damage at #% of its value", "negate": false}], "trade": {"ids": null}} +{"ref": "Passives granting Cold Resistance or all Elemental Resistances in Radius\\nalso grant Chance to Suppress Spell Damage at #% of its value", "better": 1, "id": "local_unique_jewel_cold_resistance_also_grants_spell_suppression_chance_scaled_%", "matchers": [{"string": "Passives granting Cold Resistance or all Elemental Resistances in Radius\\nalso grant Chance to Suppress Spell Damage at #% of its value", "negate": false}], "trade": {"ids": null}} +{"ref": "Passives granting Lightning Resistance or all Elemental Resistances in Radius\\nalso grant Chance to Block Spell Damage at #% of its value", "better": 1, "id": "local_unique_jewel_lightning_resistance_also_grants_block_spells_chance_scaled_%", "matchers": [{"string": "Passives granting Lightning Resistance or all Elemental Resistances in Radius\\nalso grant Chance to Block Spell Damage at #% of its value", "negate": false}], "trade": {"ids": null}} +{"ref": "Passives granting Fire Resistance or all Elemental Resistances in Radius\\nalso grant an equal chance to gain an Endurance Charge on Kill", "better": 1, "id": "local_unique_jewel_fire_resistance_also_grants_endurance_charge_on_kill_chance", "matchers": [{"string": "Passives granting Fire Resistance or all Elemental Resistances in Radius\\nalso grant an equal chance to gain an Endurance Charge on Kill", "negate": false}], "trade": {"ids": null}} +{"ref": "Passives granting Cold Resistance or all Elemental Resistances in Radius\\nalso grant an equal chance to gain a Frenzy Charge on Kill", "better": 1, "id": "local_unique_jewel_cold_resistance_also_grants_frenzy_charge_on_kill_chance", "matchers": [{"string": "Passives granting Cold Resistance or all Elemental Resistances in Radius\\nalso grant an equal chance to gain a Frenzy Charge on Kill", "negate": false}], "trade": {"ids": null}} +{"ref": "Passives granting Lightning Resistance or all Elemental Resistances in Radius\\nalso grant an equal chance to gain a Power Charge on Kill", "better": 1, "id": "local_unique_jewel_lightning_resistance_also_grants_power_charge_on_kill_chance", "matchers": [{"string": "Passives granting Lightning Resistance or all Elemental Resistances in Radius\\nalso grant an equal chance to gain a Power Charge on Kill", "negate": false}], "trade": {"ids": null}} +{"ref": "Trigger Level # Lightning Bolt when you deal a Critical Hit", "better": 1, "id": "local_display_cast_lightning_on_critical_strike", "matchers": [{"string": "Trigger Level # Lightning Bolt when you deal a Critical Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Arctic Armour Buff Effect", "better": 1, "id": "arctic_armour_buff_effect_+%", "matchers": [{"string": "#% increased Arctic Armour Buff Effect", "negate": false}, {"string": "#% reduced Arctic Armour Buff Effect", "negate": true}], "trade": {"ids": null}} +{"ref": "Arctic Armour has no Reservation", "better": 1, "id": "arctic_armour_no_reservation", "matchers": [{"string": "Arctic Armour has no Reservation", "negate": false}], "trade": {"ids": null}} +{"ref": "Bleeding Enemies you Kill Explode, dealing #% of\\ntheir Maximum Life as Physical Damage", "better": 1, "id": "bleeding_enemies_explode_for_%_life_as_physical_damage", "matchers": [{"string": "Bleeding Enemies you Kill Explode, dealing #% of\\ntheir Maximum Life as Physical Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Herald of Ice Damage", "better": 1, "id": "herald_of_ice_damage_+%", "matchers": [{"string": "#% increased Herald of Ice Damage", "negate": false}, {"string": "#% reduced Herald of Ice Damage", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Lightning Damage taken", "better": 1, "id": "lightning_damage_taken_+%", "matchers": [{"string": "#% increased Lightning Damage taken", "negate": false}, {"string": "#% reduced Lightning Damage taken", "negate": true}], "trade": {"ids": null}} +{"ref": "#% of Lightning Damage is taken from Mana before Life", "better": 1, "id": "lightning_damage_%_taken_from_mana_before_life", "matchers": [{"string": "#% of Lightning Damage is taken from Mana before Life", "negate": false}], "trade": {"ids": null}} +{"ref": "Recover #% of Mana when you Shock an Enemy", "better": 1, "id": "recover_%_maximum_mana_when_enemy_shocked", "matchers": [{"string": "Recover #% of Mana when you Shock an Enemy", "negate": false}], "trade": {"ids": null}} +{"ref": "Trigger Socketed Spells when you Spend at least # Mana on an\\nUpfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown", "better": 1, "id": "cast_socketed_spells_on_X_mana_spent", "matchers": [{"string": "Trigger Socketed Spells when you Spend at least # Mana on an\\nUpfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% Chance to Block Attack Damage when in Off Hand", "better": 1, "id": "additional_block_chance_%_when_in_off_hand", "matchers": [{"string": "#% Chance to Block Attack Damage when in Off Hand", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Global Critical Hit Chance when in Main Hand", "better": 1, "id": "critical_strike_chance_+%_when_in_main_hand", "matchers": [{"string": "#% increased Global Critical Hit Chance when in Main Hand", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Global Critical Damage Bonus per Green Socket", "better": 1, "id": "global_critical_strike_mulitplier_+_per_green_socket_on_item", "matchers": [{"string": "#% to Global Critical Damage Bonus per Green Socket", "negate": false}], "trade": {"ids": null}} +{"ref": "#% of Physical Attack Damage Leeched as Life per Red Socket", "better": 1, "id": "global_life_leech_from_physical_attack_damage_per_red_socket_on_item_permyriad", "matchers": [{"string": "#% of Physical Attack Damage Leeched as Life per Red Socket", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Charges gained by Other Flasks during Effect", "better": 1, "id": "local_unique_flask_charges_gained_+%_during_flask_effect", "matchers": [{"string": "#% increased Charges gained by Other Flasks during Effect", "negate": false}], "trade": {"ids": null}} +{"ref": "Gains no Charges during Effect of any Overflowing Chalice Flask", "better": 1, "id": "local_unique_overflowing_chalice_flask_cannot_gain_flask_charges_during_flask_effect", "matchers": [{"string": "Gains no Charges during Effect of any Overflowing Chalice Flask", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Lightning Damage per 10 Intelligence", "better": 1, "id": "lightning_damage_+%_per_10_intelligence", "matchers": [{"string": "#% increased Lightning Damage per 10 Intelligence", "negate": false}, {"string": "#% reduced Lightning Damage per 10 Intelligence", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Melee Damage per Endurance Charge", "better": 1, "id": "melee_damage_+%_per_endurance_charge", "matchers": [{"string": "#% increased Melee Damage per Endurance Charge", "negate": false}, {"string": "#% reduced Melee Damage per Endurance Charge", "negate": true}], "trade": {"ids": null}} +{"ref": "You cannot be Shocked while at maximum Endurance Charges", "better": 1, "id": "cannot_be_shocked_while_at_maximum_endurance_charges", "matchers": [{"string": "You cannot be Shocked while at maximum Endurance Charges", "negate": false}], "trade": {"ids": null}} +{"ref": "Map has a Vaal Side Area", "better": 1, "id": "map_force_side_area", "matchers": [{"string": "Map has a Vaal Side Area", "negate": false}], "trade": {"ids": null}} +{"ref": "Every 10 seconds, gain #% increased Elemental Damage for 4 seconds", "better": 1, "id": "elementalist_elemental_damage_+%_for_4_seconds_every_10_seconds", "matchers": [{"string": "Every 10 seconds, gain #% increased Elemental Damage for 4 seconds", "negate": false}, {"string": "Every 10 seconds, gain #% reduced Elemental Damage for 4 seconds", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Movement Speed if you've used a Warcry Recently", "better": 1, "id": "movement_speed_+%_if_used_a_warcry_recently", "matchers": [{"string": "#% increased Movement Speed if you've used a Warcry Recently", "negate": false}], "trade": {"ids": null}} +{"ref": "Regenerate #% of Life per second if you've taken a Savage Hit in the past 1 second", "better": 1, "id": "gain_life_regeneration_%_per_second_for_1_second_if_taken_savage_hit", "matchers": [{"string": "Regenerate #% of Life per second if you've taken a Savage Hit in the past 1 second", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Damage taken if you've taken a Savage Hit Recently", "better": 1, "id": "damage_taken_+%_if_you_have_taken_a_savage_hit_recently", "matchers": [{"string": "#% increased Damage taken if you've taken a Savage Hit Recently", "negate": false}, {"string": "#% reduced Damage taken if you've taken a Savage Hit Recently", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Damage with Hits for each Level higher the Enemy is than you", "better": 1, "id": "damage_+%_for_each_level_the_enemy_is_higher_than_you", "matchers": [{"string": "#% increased Damage with Hits for each Level higher the Enemy is than you", "negate": false}, {"string": "#% reduced Damage with Hits for each Level higher the Enemy is than you", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Movement Skill Mana Cost", "better": 1, "id": "movement_skills_mana_cost_+%", "matchers": [{"string": "#% increased Movement Skill Mana Cost", "negate": false}, {"string": "#% reduced Movement Skill Mana Cost", "negate": true}], "trade": {"ids": null}} +{"ref": "#% chance to Avoid Elemental Ailments while Phasing", "better": 1, "id": "avoid_elemental_ailments_%_while_phasing", "matchers": [{"string": "#% chance to Avoid Elemental Ailments while Phasing", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Evasion Rating during Onslaught", "better": 1, "id": "evasion_rating_+%_while_onslaught_is_active", "matchers": [{"string": "#% increased Evasion Rating during Onslaught", "negate": false}, {"string": "#% reduced Evasion Rating during Onslaught", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Quantity of Items Dropped by Slain Maimed Enemies", "better": 1, "id": "quantity_of_items_dropped_by_maimed_enemies_+%", "matchers": [{"string": "#% increased Quantity of Items Dropped by Slain Maimed Enemies", "negate": false}, {"string": "#% reduced Quantity of Items Dropped by Slain Maimed Enemies", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Rarity of Items Dropped by Slain Maimed Enemies", "better": 1, "id": "rarity_of_items_dropped_by_maimed_enemies_+%", "matchers": [{"string": "#% increased Rarity of Items Dropped by Slain Maimed Enemies", "negate": false}, {"string": "#% reduced Rarity of Items Dropped by Slain Maimed Enemies", "negate": true}], "trade": {"ids": null}} +{"ref": "Skills Chain an additional time while at maximum Frenzy Charges", "better": 1, "id": "num_of_additional_chains_at_max_frenzy_charges", "matchers": [{"string": "Skills Chain an additional time while at maximum Frenzy Charges", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to gain a Frenzy Charge on Killing a Frozen Enemy", "better": 1, "id": "chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%", "matchers": [{"string": "#% chance to gain a Frenzy Charge on Killing a Frozen Enemy", "negate": false}], "trade": {"ids": null}} +{"ref": "You have Phasing if Energy Shield Recharge has started Recently", "better": 1, "id": "gain_phasing_for_4_seconds_on_begin_es_recharge", "matchers": [{"string": "You have Phasing if Energy Shield Recharge has started Recently", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Evasion Rating while Phasing", "better": 1, "id": "evasion_rating_+%_while_phasing", "matchers": [{"string": "#% increased Evasion Rating while Phasing", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% Chance to Block Attack Damage from Taunted Enemies", "better": 1, "id": "block_chance_%_vs_taunted_enemies", "matchers": [{"string": "#% Chance to Block Attack Damage from Taunted Enemies", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Armour and Evasion Rating if you've killed a Taunted Enemy Recently", "better": 1, "id": "armour_and_evasion_rating_+%_if_killed_a_taunted_enemy_recently", "matchers": [{"string": "#% increased Armour and Evasion Rating if you've killed a Taunted Enemy Recently", "negate": false}, {"string": "#% reduced Armour and Evasion Rating if you've killed a Taunted Enemy Recently", "negate": true}], "trade": {"ids": null}} +{"ref": "Socketed Skills Summon your maximum number of Totems in formation", "better": 1, "id": "local_display_socketed_skills_summon_your_maximum_number_of_totems_in_formation", "matchers": [{"string": "Socketed Skills Summon your maximum number of Totems in formation", "negate": false}], "trade": {"ids": null}} +{"ref": "Totems gain +#% to all Elemental Resistances per Summoned Totem", "better": 1, "id": "totems_resist_all_elements_+%_per_active_totem", "matchers": [{"string": "Totems gain +#% to all Elemental Resistances per Summoned Totem", "negate": false}], "trade": {"ids": null}} +{"ref": "Totems have #% increased Cast Speed per Summoned Totem", "better": 1, "id": "totems_spells_cast_speed_+%_per_active_totem", "matchers": [{"string": "Totems have #% increased Cast Speed per Summoned Totem", "negate": false}, {"string": "Totems have #% reduced Cast Speed per Summoned Totem", "negate": true}], "trade": {"ids": null}} +{"ref": "Totems have #% increased Attack Speed per Summoned Totem", "better": 1, "id": "totems_attack_speed_+%_per_active_totem", "matchers": [{"string": "Totems have #% increased Attack Speed per Summoned Totem", "negate": false}, {"string": "Totems have #% reduced Attack Speed per Summoned Totem", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Mana Recovery rate", "better": 1, "id": "mana_recovery_rate_+%", "matchers": [{"string": "#% increased Mana Recovery rate", "negate": false}, {"string": "#% reduced Mana Recovery rate", "negate": true}], "trade": {"ids": null}} +{"ref": "Attacks Chain an additional time when in Main Hand", "better": 1, "id": "attacks_num_of_additional_chains_when_in_main_hand", "matchers": [{"string": "Attacks Chain an additional time when in Main Hand", "negate": false}], "trade": {"ids": null}} +{"ref": "Attacks fire an additional Projectile when in Off Hand", "better": 1, "id": "attacks_number_of_additional_projectiles_when_in_off_hand", "matchers": [{"string": "Attacks fire an additional Projectile when in Off Hand", "negate": false}], "trade": {"ids": null}} +{"ref": "Adds # to # Cold Damage to Counterattacks", "better": 1, "id": "counter_attacks_minimum_added_cold_damage", "matchers": [{"string": "Adds # to # Cold Damage to Counterattacks", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Golem Damage for each Type of Golem you have Summoned", "better": 1, "id": "golem_damage_+%_per_active_golem_type", "matchers": [{"string": "#% increased Golem Damage for each Type of Golem you have Summoned", "negate": false}, {"string": "#% reduced Golem Damage for each Type of Golem you have Summoned", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Maximum Life if no Equipped Items are Corrupted", "better": 1, "id": "life_+%_with_no_corrupted_equipped_items", "matchers": [{"string": "#% increased Maximum Life if no Equipped Items are Corrupted", "negate": false}], "trade": {"ids": null}} +{"ref": "Regenerate # Life per second if no Equipped Items are Corrupted", "better": 1, "id": "life_regeneration_per_minute_with_no_corrupted_equipped_items", "matchers": [{"string": "Regenerate # Life per second if no Equipped Items are Corrupted", "negate": false}], "trade": {"ids": null}} +{"ref": "Regenerate # Energy Shield per second if all Equipped items are Corrupted", "better": 1, "id": "energy_shield_recharge_rate_per_minute_with_all_corrupted_equipped_items", "matchers": [{"string": "Regenerate # Energy Shield per second if all Equipped items are Corrupted", "negate": false}], "trade": {"ids": null}} +{"ref": "Regenerate # Mana per second if all Equipped Items are Corrupted", "better": 1, "id": "mana_recharge_rate_per_minute_with_all_corrupted_equipped_items", "matchers": [{"string": "Regenerate # Mana per second if all Equipped Items are Corrupted", "negate": false}], "trade": {"ids": null}} +{"ref": "Adds # to # Chaos Damage", "better": 1, "id": "global_minimum_added_chaos_damage", "matchers": [{"string": "Adds # to # Chaos Damage", "negate": false}], "trade": {"ids": {"enchant": ["enchant.stat_2223678961"]}}} +{"ref": "Adds # to # Physical Damage", "better": 1, "id": "global_minimum_added_physical_damage", "matchers": [{"string": "Adds # to # Physical Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1940865751"]}}} +{"ref": "Adds # to # Fire Damage", "better": 1, "id": "global_minimum_added_fire_damage", "matchers": [{"string": "Adds # to # Fire Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_709508406"], "enchant": ["enchant.stat_709508406"], "rune": ["rune.stat_709508406"]}}} +{"ref": "Adds # to # Cold Damage", "better": 1, "id": "global_minimum_added_cold_damage", "matchers": [{"string": "Adds # to # Cold Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1037193709"], "enchant": ["enchant.stat_1037193709"], "rune": ["rune.stat_1037193709"]}}} +{"ref": "Adds # to # Lightning Damage", "better": 1, "id": "global_minimum_added_lightning_damage", "matchers": [{"string": "Adds # to # Lightning Damage", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_3336890334"], "enchant": ["enchant.stat_3336890334"], "rune": ["rune.stat_3336890334"]}}} +{"ref": "Regenerate #% of Energy Shield per second while on Low Life", "better": 1, "id": "energy_shield_regeneration_rate_per_minute_%_while_on_low_life", "matchers": [{"string": "Regenerate #% of Energy Shield per second while on Low Life", "negate": false}], "trade": {"ids": null}} +{"ref": "Enemies you Attack Reflect # Physical Damage to you", "better": 1, "id": "minimum_physical_damage_to_reflect_to_self_on_attack", "matchers": [{"string": "Enemies you Attack Reflect # Physical Damage to you", "negate": false}], "trade": {"ids": null}} +{"ref": "Your Hexes can affect Hexproof Enemies", "better": 1, "id": "ignore_hexproof", "matchers": [{"string": "Your Hexes can affect Hexproof Enemies", "negate": false}], "trade": {"ids": null}} +{"ref": "Poison Cursed Enemies on hit", "better": 1, "id": "poison_cursed_enemies_on_hit", "matchers": [{"string": "Poison Cursed Enemies on hit", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Poison on Hit against Cursed Enemies", "better": 1, "id": "chance_to_poison_%_vs_cursed_enemies", "matchers": [{"string": "#% chance to Poison on Hit against Cursed Enemies", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% chance to be Shocked", "better": 1, "id": "chance_to_be_shocked_%", "matchers": [{"string": "#% chance to be Shocked", "negate": false}], "trade": {"ids": null}} +{"ref": "Contains an additional Redblade Unique Item", "better": 1, "id": "chest_drop_additional_fire_warband_uniques", "matchers": [{"string": "Contains an additional Redblade Unique Item", "negate": false}], "trade": {"ids": null}} +{"ref": "Contains an additional Mutewind Unique Item", "better": 1, "id": "chest_drop_additional_cold_warband_uniques", "matchers": [{"string": "Contains an additional Mutewind Unique Item", "negate": false}], "trade": {"ids": null}} +{"ref": "Contains an additional Brinerot Unique Item", "better": 1, "id": "chest_drop_additional_lightning_warband_uniques", "matchers": [{"string": "Contains an additional Brinerot Unique Item", "negate": false}], "trade": {"ids": null}} +{"ref": "Contains an additional Renegade Unique Item", "better": 1, "id": "chest_drop_additional_chaos_warband_uniques", "matchers": [{"string": "Contains an additional Renegade Unique Item", "negate": false}], "trade": {"ids": null}} +{"ref": "Contained Weapons are Animated", "better": 1, "id": "weapons_drop_animated", "matchers": [{"string": "Contained Weapons are Animated", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Global Defences per White Socket", "better": 1, "id": "global_defences_+%_per_white_socket_on_item", "matchers": [{"string": "#% increased Global Defences per White Socket", "negate": false}, {"string": "#% reduced Global Defences per White Socket", "negate": true}], "trade": {"ids": null}} +{"ref": "Contains an additional Rare Maraketh Weapon", "better": 1, "id": "chest_drop_additional_rare_maraketh_weapons", "matchers": [{"string": "Contains an additional Rare Maraketh Weapon", "negate": false}], "trade": {"ids": null}} +{"ref": "Contains an additional Deshret Item", "better": 1, "id": "chest_drop_additional_deshret_uniques", "matchers": [{"string": "Contains an additional Deshret Item", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Quantity of Items found with a Magic Item Equipped", "better": 1, "id": "item_found_quantity_+%_if_wearing_a_magic_item", "matchers": [{"string": "#% increased Quantity of Items found with a Magic Item Equipped", "negate": false}, {"string": "#% reduced Quantity of Items found with a Magic Item Equipped", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Rarity of Items found with a Normal Item Equipped", "better": 1, "id": "item_found_rarity_+%_if_wearing_a_normal_item", "matchers": [{"string": "#% increased Rarity of Items found with a Normal Item Equipped", "negate": false}, {"string": "#% reduced Rarity of Items found with a Normal Item Equipped", "negate": true}], "trade": {"ids": null}} +{"ref": "Attack Skills have +# to maximum number of Summoned Totems", "better": 1, "id": "attack_skills_additional_totems_allowed", "matchers": [{"string": "Attack Skills have +# to maximum number of Summoned Totems", "negate": false}], "trade": {"ids": null}} +{"ref": "Minions have +#% to Cold Resistance", "better": 1, "id": "minion_cold_damage_resistance_%", "matchers": [{"string": "Minions have +#% to Cold Resistance", "negate": false}], "trade": {"ids": null}} +{"ref": "Minions have +#% to Fire Resistance", "better": 1, "id": "minion_fire_damage_resistance_%", "matchers": [{"string": "Minions have +#% to Fire Resistance", "negate": false}], "trade": {"ids": null}} +{"ref": "Minions gain #% of their Physical Damage as Extra Cold Damage", "better": 1, "id": "minion_physical_damage_%_to_gain_as_cold", "matchers": [{"string": "Minions gain #% of their Physical Damage as Extra Cold Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Cannot be Stunned during Effect", "better": 1, "id": "local_flask_cannot_be_stunned_during_flask_effect", "matchers": [{"string": "Cannot be Stunned during Effect", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to gain Phasing for 3 seconds when your Trap is triggered by an Enemy", "better": 1, "id": "phasing_%_for_3_seconds_on_trap_triggered_by_an_enemy", "matchers": [{"string": "#% chance to gain Phasing for 3 seconds when your Trap is triggered by an Enemy", "negate": false}], "trade": {"ids": null}} +{"ref": "Recover # Energy Shield when your Trap is triggered by an Enemy", "better": 1, "id": "gain_x_es_on_trap_triggered_by_an_enemy", "matchers": [{"string": "Recover # Energy Shield when your Trap is triggered by an Enemy", "negate": false}], "trade": {"ids": null}} +{"ref": "Recover # Life when your Trap is triggered by an Enemy", "better": 1, "id": "gain_x_life_on_trap_triggered_by_an_enemy", "matchers": [{"string": "Recover # Life when your Trap is triggered by an Enemy", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy", "better": 1, "id": "%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy", "matchers": [{"string": "#% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy", "negate": false}], "trade": {"ids": null}} +{"ref": "Bleeding cannot be inflicted on you", "better": 1, "id": "base_cannot_gain_bleeding", "matchers": [{"string": "Bleeding cannot be inflicted on you", "negate": false}], "trade": {"ids": null}} +{"ref": "Melee Attacks have #% chance to Poison on Hit", "better": 1, "id": "chance_to_poison_on_melee_hit_%", "matchers": [{"string": "Melee Attacks have #% chance to Poison on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Movement Speed if you've Killed Recently", "better": 1, "id": "movement_speed_+%_if_enemy_killed_recently", "matchers": [{"string": "#% increased Movement Speed if you've Killed Recently", "negate": false}, {"string": "#% reduced Movement Speed if you've Killed Recently", "negate": true}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level 10 Controlled Destruction", "better": 1, "id": "local_display_supported_by_level_10_controlled_destruction", "matchers": [{"string": "Socketed Gems are Supported by Level 10 Controlled Destruction", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Controlled Destruction", "better": 1, "id": "local_display_socketed_gems_supported_by_x_controlled_destruction", "matchers": [{"string": "Socketed Gems are Supported by Level # Controlled Destruction", "negate": false}], "trade": {"ids": null}} +{"ref": "Cold Damage from Hits also Contributes to Ignite Chance and Magnitude", "better": 1, "id": "cold_damage_can_ignite", "matchers": [{"string": "Cold Damage from Hits also Contributes to Ignite Chance and Magnitude", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Area of Effect per Endurance Charge", "better": 1, "id": "area_of_effect_+%_per_endurance_charge", "matchers": [{"string": "#% increased Area of Effect per Endurance Charge", "negate": false}, {"string": "#% reduced Area of Effect per Endurance Charge", "negate": true}], "trade": {"ids": null}} +{"ref": "#% chance to double Stun Duration", "better": 1, "id": "chance_to_double_stun_duration_%", "matchers": [{"string": "#% chance to double Stun Duration", "negate": false}], "trade": {"ids": null}} +{"ref": "If you've Warcried Recently, you and nearby allies have #% increased Attack, Cast and Movement Speed", "better": 1, "id": "guardian_warcry_grant_attack_cast_and_movement_speed_to_you_and_nearby_allies_+%", "matchers": [{"string": "If you've Warcried Recently, you and nearby allies have #% increased Attack, Cast and Movement Speed", "negate": false}], "trade": {"ids": null}} +{"ref": "Chaos Skills have #% increased Skill Effect Duration", "better": 1, "id": "chaos_skill_effect_duration_+%", "matchers": [{"string": "Chaos Skills have #% increased Skill Effect Duration", "negate": false}, {"string": "Chaos Skills have #% reduced Skill Effect Duration", "negate": true}], "trade": {"ids": null}} +{"ref": "Immunity to Freeze, Chill, Curses and Stuns during Effect", "better": 1, "id": "local_unique_flask_kiaras_determination", "matchers": [{"string": "Immunity to Freeze, Chill, Curses and Stuns during Effect", "negate": false}], "trade": {"ids": null}} +{"ref": "Casts Fire Nova", "better": 1, "id": "monster_casts_fire_nova_text", "matchers": [{"string": "Casts Fire Nova", "negate": false}], "trade": {"ids": null}} +{"ref": "Empowered by Molten Gold", "better": 1, "id": "monster_immune_to_damage_in_lava_text", "matchers": [{"string": "Empowered by Molten Gold", "negate": false}], "trade": {"ids": null}} +{"ref": "Removes Flask Charges", "better": 1, "id": "monster_casts_flask_charge_nova_text", "matchers": [{"string": "Removes Flask Charges", "negate": false}], "trade": {"ids": null}} +{"ref": "Enemies take increased Damage", "better": 1, "id": "monster_has_damage_taken_aura_text", "matchers": [{"string": "Enemies take increased Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Enemies are affected by Temporal Chains", "better": 1, "id": "monster_has_temporal_chains_aura_text", "matchers": [{"string": "Enemies are affected by Temporal Chains", "negate": false}], "trade": {"ids": null}} +{"ref": "Enemies take Damage when using Movement skills", "better": 1, "id": "monster_has_movement_skill_damage_aura_text", "matchers": [{"string": "Enemies take Damage when using Movement skills", "negate": false}], "trade": {"ids": null}} +{"ref": "Causes Bleeding", "better": 1, "id": "monster_casts_bleed_nova_text", "matchers": [{"string": "Causes Bleeding", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems deal # to # Added Fire Damage", "better": 1, "id": "local_display_socketed_gems_minimum_added_fire_damage", "matchers": [{"string": "Socketed Gems deal # to # Added Fire Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems have #% more Attack and Cast Speed", "better": 1, "id": "local_display_socketed_gems_attack_and_cast_speed_+%_final", "matchers": [{"string": "Socketed Gems have #% more Attack and Cast Speed", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems deal #% more Elemental Damage", "better": 1, "id": "local_display_socketed_gems_elemental_damage_+%_final", "matchers": [{"string": "Socketed Gems deal #% more Elemental Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "#% of Physical Damage from Hits taken as Cold Damage", "better": 1, "id": "physical_damage_taken_%_as_cold", "matchers": [{"string": "#% of Physical Damage from Hits taken as Cold Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Area contains many Sentinel Traps", "better": 1, "id": "map_packs_have_pop_up_traps", "matchers": [{"string": "Area contains many Sentinel Traps", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Chaos Damage taken over time", "better": 1, "id": "chaos_damage_taken_over_time_+%", "matchers": [{"string": "#% increased Chaos Damage taken over time", "negate": false}, {"string": "#% reduced Chaos Damage taken over time", "negate": true}], "trade": {"ids": null}} +{"ref": "Socketed Gems have +3.5% Critical Hit Chance", "better": 1, "id": "local_display_socketed_gems_additional_critical_strike_chance_%", "matchers": [{"string": "Socketed Gems have +3.5% Critical Hit Chance", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Attack and Cast Speed during any Flask Effect", "better": 1, "id": "attack_and_cast_speed_+%_during_flask_effect", "matchers": [{"string": "#% increased Attack and Cast Speed during any Flask Effect", "negate": false}, {"string": "#% reduced Attack and Cast Speed during any Flask Effect", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Movement Speed during any Flask Effect", "better": 1, "id": "movement_speed_+%_during_flask_effect", "matchers": [{"string": "#% increased Movement Speed during any Flask Effect", "negate": false}, {"string": "#% reduced Movement Speed during any Flask Effect", "negate": true}], "trade": {"ids": null}} +{"ref": "# to # Added Cold Damage per Frenzy Charge", "better": 1, "id": "minimum_added_cold_damage_per_frenzy_charge", "matchers": [{"string": "# to # Added Cold Damage per Frenzy Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "Adds # to # Fire Damage if you've Blocked Recently", "better": 1, "id": "minimum_added_fire_damage_if_blocked_recently", "matchers": [{"string": "Adds # to # Fire Damage if you've Blocked Recently", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems have #% chance to Ignite", "better": 1, "id": "local_display_socketed_gems_have_%_chance_to_ignite_with_fire_damage", "matchers": [{"string": "Socketed Gems have #% chance to Ignite", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems deal #% more Damage while on Low Life", "better": 1, "id": "local_display_socketed_gems_damage_+%_final_while_on_low_life", "matchers": [{"string": "Socketed Gems deal #% more Damage while on Low Life", "negate": false}], "trade": {"ids": null}} +{"ref": "Damage Penetrates #% Elemental Resistances during any Flask Effect", "better": 1, "id": "elemental_penetration_%_during_flask_effect", "matchers": [{"string": "Damage Penetrates #% Elemental Resistances during any Flask Effect", "negate": false}], "trade": {"ids": null}} +{"ref": "#% additional Physical Damage Reduction during any Flask Effect", "better": 1, "id": "additional_physical_damage_reduction_%_during_flask_effect", "matchers": [{"string": "#% additional Physical Damage Reduction during any Flask Effect", "negate": false}], "trade": {"ids": null}} +{"ref": "You and your Minions take #% increased Reflected Damage", "better": 1, "id": "reflect_damage_taken_and_minion_reflect_damage_taken_+%", "matchers": [{"string": "You and your Minions take #% increased Reflected Damage", "negate": false}, {"string": "You and your Minions take #% reduced Reflected Damage", "negate": true}], "trade": {"ids": null}} +{"ref": "#% chance to gain a Power Charge when you Block", "better": 1, "id": "power_charge_on_block_%_chance", "matchers": [{"string": "#% chance to gain a Power Charge when you Block", "negate": false}], "trade": {"ids": null}} +{"ref": "Chill Nearby Enemies when you Block", "better": 1, "id": "nearby_enemies_chilled_on_block", "matchers": [{"string": "Chill Nearby Enemies when you Block", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Recover 10% of Mana when you use a Skill", "better": 1, "id": "recover_10%_of_maximum_mana_on_skill_use_%", "matchers": [{"string": "#% chance to Recover 10% of Mana when you use a Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to maximum Fortification", "better": 1, "id": "max_fortification_+1_per_5", "matchers": [{"string": "# to maximum Fortification", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Crush on Hit", "better": 1, "id": "chance_to_crush_on_hit_%", "matchers": [{"string": "#% chance to Crush on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to gain Alchemist's Genius when you use a Flask", "better": 1, "id": "gain_alchemists_genius_on_flask_use_%", "matchers": [{"string": "#% chance to gain Alchemist's Genius when you use a Flask", "negate": false}], "trade": {"ids": null}} +{"ref": "Areas can contain Essences", "better": 1, "id": "map_has_monoliths", "matchers": [{"string": "Areas can contain Essences", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to gain a Power, Frenzy or Endurance Charge on Kill", "better": 1, "id": "power_frenzy_or_endurance_charge_on_kill_%", "matchers": [{"string": "#% chance to gain a Power, Frenzy or Endurance Charge on Kill", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Non-Curse Aura Gems have #% increased Aura Effect", "better": 1, "id": "local_display_socketed_non_curse_aura_gems_effect_+%", "matchers": [{"string": "Socketed Non-Curse Aura Gems have #% increased Aura Effect", "negate": false}, {"string": "Socketed Non-Curse Aura Gems have #% reduced Aura Effect", "negate": true}], "trade": {"ids": null}} +{"ref": "Cast Level 20 Fire Burst on Hit", "better": 1, "id": "local_display_fire_burst_on_hit_%", "matchers": [{"string": "Cast Level 20 Fire Burst on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Action Speed cannot be modified to below base value", "better": 1, "id": "action_speed_cannot_be_reduced_below_base", "matchers": [{"string": "Action Speed cannot be modified to below base value", "negate": false}], "trade": {"ids": null}} +{"ref": "Triggers Level 20 Spectral Spirits when Equipped\\n+# to maximum number of Spectral Spirits", "better": 1, "id": "base_number_of_essence_spirits_allowed", "matchers": [{"string": "Triggers Level 20 Spectral Spirits when Equipped\\n+# to maximum number of Spectral Spirits", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to gain Onslaught for 3 seconds when Hit", "better": 1, "id": "gain_onslaught_for_3_seconds_%_chance_when_hit", "matchers": [{"string": "#% chance to gain Onslaught for 3 seconds when Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "You gain Onslaught for # seconds when Hit", "better": 1, "id": "unique_gain_onslaught_when_hit_duration_ms", "matchers": [{"string": "You gain Onslaught for # seconds when Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems deal #% more Damage over Time", "better": 1, "id": "local_display_socketed_gems_damage_over_time_+%_final", "matchers": [{"string": "Socketed Gems deal #% more Damage over Time", "negate": false}, {"string": "Socketed Gems deal #% less Damage over Time", "negate": true}], "trade": {"ids": null}} +{"ref": "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds", "better": 1, "id": "deal_1000_chaos_damage_per_second_for_10_seconds_on_hit", "matchers": [{"string": "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds", "negate": false}], "trade": {"ids": null}} +{"ref": "Your Hits inflict Decay, dealing # Chaos Damage per second for 8 seconds", "better": 1, "id": "deal_chaos_damage_per_second_for_10_seconds_on_hit", "matchers": [{"string": "Your Hits inflict Decay, dealing # Chaos Damage per second for 8 seconds", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Movement speed while on Burning, Chilled or Shocked ground", "better": 1, "id": "movement_speed_+%_while_on_burning_chilled_shocked_ground", "matchers": [{"string": "#% increased Movement speed while on Burning, Chilled or Shocked ground", "negate": false}, {"string": "#% reduced Movement speed while on Burning, Chilled or Shocked ground", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Mana Regeneration Rate while Shocked", "better": 1, "id": "mana_regeneration_rate_+%_while_shocked", "matchers": [{"string": "#% increased Mana Regeneration Rate while Shocked", "negate": false}, {"string": "#% reduced Mana Regeneration Rate while Shocked", "negate": true}], "trade": {"ids": null}} +{"ref": "Recover #% of your maximum Mana when you Block", "better": 1, "id": "mana_%_gained_on_block", "matchers": [{"string": "Recover #% of your maximum Mana when you Block", "negate": false}], "trade": {"ids": null}} +{"ref": "Cannot Leech Life from Critical Hits", "better": 1, "id": "cannot_leech_life_from_critical_strikes", "matchers": [{"string": "Cannot Leech Life from Critical Hits", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Blind Enemies on Critical Hit", "better": 1, "id": "%_chance_to_blind_on_critical_strike", "matchers": [{"string": "#% chance to Blind Enemies on Critical Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Stun Threshold is based on Energy Shield instead of Life", "better": 1, "id": "stun_threshold_based_on_energy_shield_instead_of_life", "matchers": [{"string": "Stun Threshold is based on Energy Shield instead of Life", "negate": false}], "trade": {"ids": null}} +{"ref": "Enemies Taunted by you deal #% more Damage with Hits and\\nAilments against other targets", "better": 1, "id": "taunted_enemies_damage_+%_final_vs_non_taunt_target", "matchers": [{"string": "Enemies Taunted by you deal #% more Damage with Hits and\\nAilments against other targets", "negate": false}, {"string": "Enemies Taunted by you deal #% less Damage with Hits and\\nAilments against other targets", "negate": true}], "trade": {"ids": null}} +{"ref": "Enemies you Shock have #% increased Cast Speed", "better": 1, "id": "enemies_you_shock_cast_speed_+%", "matchers": [{"string": "Enemies you Shock have #% increased Cast Speed", "negate": false}, {"string": "Enemies you Shock have #% reduced Cast Speed", "negate": true}], "trade": {"ids": null}} +{"ref": "Enemies you Shock have #% increased Movement Speed", "better": 1, "id": "enemies_you_shock_movement_speed_+%", "matchers": [{"string": "Enemies you Shock have #% increased Movement Speed", "negate": false}, {"string": "Enemies you Shock have #% reduced Movement Speed", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Burning Damage if you've Ignited an Enemy Recently", "better": 1, "id": "burning_damage_+%_if_ignited_an_enemy_recently", "matchers": [{"string": "#% increased Burning Damage if you've Ignited an Enemy Recently", "negate": false}, {"string": "#% reduced Burning Damage if you've Ignited an Enemy Recently", "negate": true}], "trade": {"ids": null}} +{"ref": "Recover #% of Life when you Ignite an Enemy", "better": 1, "id": "recover_%_maximum_life_on_enemy_ignited", "matchers": [{"string": "Recover #% of Life when you Ignite an Enemy", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Melee Physical Damage against Ignited Enemies", "better": 1, "id": "melee_physical_damage_+%_vs_ignited_enemies", "matchers": [{"string": "#% increased Melee Physical Damage against Ignited Enemies", "negate": false}, {"string": "#% reduced Melee Physical Damage against Ignited Enemies", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Quantity of Items Dropped by Slain Normal Enemies", "better": 1, "id": "normal_monster_dropped_item_quantity_+%", "matchers": [{"string": "#% increased Quantity of Items Dropped by Slain Normal Enemies", "negate": false}, {"string": "#% reduced Quantity of Items Dropped by Slain Normal Enemies", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Rarity of Items Dropped by Slain Magic Enemies", "better": 1, "id": "magic_monster_dropped_item_rarity_+%", "matchers": [{"string": "#% increased Rarity of Items Dropped by Slain Magic Enemies", "negate": false}, {"string": "#% reduced Rarity of Items Dropped by Slain Magic Enemies", "negate": true}], "trade": {"ids": null}} +{"ref": "Heist Chests have a #% chance to Duplicate their contents", "better": 1, "id": "chance_for_double_items_from_heist_chests_%", "matchers": [{"string": "Heist Chests have a #% chance to Duplicate their contents", "negate": false}], "trade": {"ids": null}} +{"ref": "Completing a Heist generates an additional Reveal", "better": 1, "id": "map_heist_contract_additional_reveals_granted", "matchers": [{"string": "Completing a Heist generates an additional Reveal", "negate": false}], "trade": {"ids": null}} +{"ref": "Rogue Perks are doubled", "better": 1, "id": "map_heist_npc_perks_effect_+%_final", "matchers": [{"string": "Rogue Perks are doubled", "negate": false}], "trade": {"ids": null}} +{"ref": "#% more Rogue's Marker value of primary Heist Target", "better": 1, "id": "map_heist_contract_primary_target_value_+%_final", "matchers": [{"string": "#% more Rogue's Marker value of primary Heist Target", "negate": false}, {"string": "#% less Rogue's Marker value of primary Heist Target", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Critical Hit Chance with arrows that Fork", "better": 1, "id": "critical_strike_chance_+%_for_forking_arrows", "matchers": [{"string": "#% increased Critical Hit Chance with arrows that Fork", "negate": false}, {"string": "#% reduced Critical Hit Chance with arrows that Fork", "negate": true}], "trade": {"ids": null}} +{"ref": "Arrows Pierce all Targets after Chaining", "better": 1, "id": "arrows_always_pierce_after_chaining", "matchers": [{"string": "Arrows Pierce all Targets after Chaining", "negate": false}], "trade": {"ids": null}} +{"ref": "Arrows that Pierce have 50% chance to inflict Bleeding", "better": 1, "id": "arrows_that_pierce_chance_to_bleed_25%", "matchers": [{"string": "Arrows that Pierce have 50% chance to inflict Bleeding", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Projectile Attack Damage per 200 Accuracy Rating", "better": 1, "id": "projectile_attack_damage_+%_per_200_accuracy", "matchers": [{"string": "#% increased Projectile Attack Damage per 200 Accuracy Rating", "negate": false}, {"string": "#% reduced Projectile Attack Damage per 200 Accuracy Rating", "negate": true}], "trade": {"ids": null}} +{"ref": "Spells fire an additional Projectile", "better": 1, "id": "spells_number_of_additional_projectiles", "matchers": [{"string": "Spells fire an additional Projectile", "negate": false}], "trade": {"ids": null}} +{"ref": "Minions deal #% increased Damage if you've Hit Recently", "better": 1, "id": "minion_damage_+%_if_enemy_hit_recently", "matchers": [{"string": "Minions deal #% increased Damage if you've Hit Recently", "negate": false}, {"string": "Minions deal #% reduced Damage if you've Hit Recently", "negate": true}], "trade": {"ids": null}} +{"ref": "Increases and Reductions to Minion Damage also affect you at 150% of their value", "better": 1, "id": "additive_minion_damage_modifiers_apply_to_you_at_150%_value", "matchers": [{"string": "Increases and Reductions to Minion Damage also affect you at 150% of their value", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Critical Hit Chance against Chilled Enemies", "better": 1, "id": "global_critical_strike_chance_+%_vs_chilled_enemies", "matchers": [{"string": "#% increased Critical Hit Chance against Chilled Enemies", "negate": false}, {"string": "#% reduced Critical Hit Chance against Chilled Enemies", "negate": true}], "trade": {"ids": null}} +{"ref": "Trigger a Socketed Cold Spell on Melee Critical Hit, with a 0.25 second Cooldown", "better": 1, "id": "local_unique_cast_socketed_cold_skills_on_melee_critical_strike", "matchers": [{"string": "Trigger a Socketed Cold Spell on Melee Critical Hit, with a 0.25 second Cooldown", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Area of Effect for Attacks", "better": 1, "id": "attack_area_of_effect_+%", "matchers": [{"string": "#% increased Area of Effect for Attacks", "negate": false}, {"string": "#% reduced Area of Effect for Attacks", "negate": true}], "trade": {"ids": null}} +{"ref": "Physical Damage from Hits also Contributes to Shock Chance", "better": 1, "id": "physical_damage_can_shock", "matchers": [{"string": "Physical Damage from Hits also Contributes to Shock Chance", "negate": false}], "trade": {"ids": null}} +{"ref": "Deal no Elemental Damage", "better": 1, "id": "deal_no_elemental_damage", "matchers": [{"string": "Deal no Elemental Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Maim on Hit", "better": 1, "id": "global_maim_on_hit", "matchers": [{"string": "Maim on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "With at least 40 Intelligence in Radius, Raised Spectres have a #% chance to gain Soul Eater for 20 seconds on Kill", "better": 1, "id": "local_unique_jewel_spectres_gain_soul_eater_on_kill_%_chance_with_50_int_in_radius", "matchers": [{"string": "With at least 40 Intelligence in Radius, Raised Spectres have a #% chance to gain Soul Eater for 20 seconds on Kill", "negate": false}], "trade": {"ids": null}} +{"ref": "Movement Skills deal no Physical Damage", "better": 1, "id": "movement_skills_deal_no_physical_damage", "matchers": [{"string": "Movement Skills deal no Physical Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "You have Phasing if you've Killed Recently", "better": 1, "id": "gain_phasing_if_enemy_killed_recently", "matchers": [{"string": "You have Phasing if you've Killed Recently", "negate": false}], "trade": {"ids": null}} +{"ref": "Movement Skills Cost no Mana", "better": 1, "id": "movement_skills_cost_no_mana", "matchers": [{"string": "Movement Skills Cost no Mana", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Projectile Attack Damage", "better": 1, "id": "projectile_attack_damage_+%", "matchers": [{"string": "#% increased Projectile Attack Damage", "negate": false}, {"string": "#% reduced Projectile Attack Damage", "negate": true}], "trade": {"ids": null}} +{"ref": "+# Mana per 4 Strength", "better": 1, "id": "X_mana_per_4_strength", "matchers": [{"string": "# Mana per 4 Strength", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Energy Shield per 10 Strength", "better": 1, "id": "energy_shield_+%_per_10_strength", "matchers": [{"string": "#% increased Energy Shield per 10 Strength", "negate": false}], "trade": {"ids": null}} +{"ref": "+# Life per 4 Dexterity", "better": 1, "id": "X_life_per_4_dexterity", "matchers": [{"string": "# Life per 4 Dexterity", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Melee Physical Damage per 10 Dexterity", "better": 1, "id": "melee_physical_damage_+%_per_10_dexterity", "matchers": [{"string": "#% increased Melee Physical Damage per 10 Dexterity", "negate": false}], "trade": {"ids": null}} +{"ref": "+# Accuracy Rating per 2 Intelligence", "better": 1, "id": "X_accuracy_per_2_intelligence", "matchers": [{"string": "# Accuracy Rating per 2 Intelligence", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Evasion Rating per 10 Intelligence", "better": 1, "id": "evasion_+%_per_10_intelligence", "matchers": [{"string": "#% increased Evasion Rating per 10 Intelligence", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to gain a Frenzy Charge when you Stun an Enemy", "better": 1, "id": "chance_to_gain_frenzy_charge_on_stun_%", "matchers": [{"string": "#% chance to gain a Frenzy Charge when you Stun an Enemy", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Damage Over Time during Effect", "better": 1, "id": "local_unique_flask_damage_over_time_+%_during_flask_effect", "matchers": [{"string": "#% increased Damage Over Time during Effect", "negate": false}, {"string": "#% reduced Damage Over Time during Effect", "negate": true}], "trade": {"ids": null}} +{"ref": "Grants Level # Despair Curse Aura during Effect", "better": 1, "id": "local_unique_flask_nearby_enemies_cursed_with_level_x_despair_during_flask_effect", "matchers": [{"string": "Grants Level # Despair Curse Aura during Effect", "negate": false}], "trade": {"ids": null}} +{"ref": "Projectiles Pierce all Targets while you have Phasing", "better": 1, "id": "projectiles_pierce_while_phasing", "matchers": [{"string": "Projectiles Pierce all Targets while you have Phasing", "negate": false}], "trade": {"ids": null}} +{"ref": "Projectiles Pierce an additional Target while you have Phasing", "better": 1, "id": "projectiles_pierce_x_additional_targets_while_you_have_phasing", "matchers": [{"string": "Projectiles Pierce an additional Target while you have Phasing", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Avoid Projectiles while Phasing", "better": 1, "id": "avoid_projectiles_while_phasing_%_chance", "matchers": [{"string": "#% chance to Avoid Projectiles while Phasing", "negate": false}], "trade": {"ids": null}} +{"ref": "Skills fire an additional Projectile during Effect", "better": 1, "id": "local_flask_number_of_additional_projectiles_during_flask_effect", "matchers": [{"string": "Skills fire an additional Projectile during Effect", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Area of Effect during Effect", "better": 1, "id": "local_flask_area_of_effect_+%_during_flask_effect", "matchers": [{"string": "#% increased Area of Effect during Effect", "negate": false}], "trade": {"ids": null}} +{"ref": "Monster Level: #", "better": 1, "id": "map_item_level_override", "matchers": [{"string": "Monster Level: #", "negate": false}], "trade": {"ids": null}} +{"ref": "Celestial Footprints", "better": 1, "id": "celestial_footprints_from_item", "matchers": [{"string": "Celestial Footprints", "negate": false}], "trade": {"ids": null}} +{"ref": "Unique Boss drops divination cards", "better": 1, "id": "map_unique_boss_drops_divination_cards", "matchers": [{"string": "Unique Boss drops divination cards", "negate": false}], "trade": {"ids": null}} +{"ref": "Minions have #% increased Attack Speed", "better": 1, "id": "minion_attack_speed_+%", "matchers": [{"string": "Minions have #% increased Attack Speed", "negate": false}, {"string": "Minions have #% reduced Attack Speed", "negate": true}], "trade": {"ids": null}} +{"ref": "# Flask Charges recovered every 3 seconds", "better": 1, "id": "map_flask_charges_recovered_per_3_seconds_%", "matchers": [{"string": "# Flask Charges recovered every 3 seconds", "negate": false}], "trade": {"ids": null}} +{"ref": "Area can contain Breaches", "better": 1, "id": "map_breach_rules", "matchers": [{"string": "Area can contain Breaches", "negate": false}], "trade": {"ids": null}} +{"ref": "Traps from Skills are thrown randomly around targeted location", "better": 1, "id": "unique_sunblast_throw_traps_in_circle_radius", "matchers": [{"string": "Traps from Skills are thrown randomly around targeted location", "negate": false}], "trade": {"ids": null}} +{"ref": "Strongbox Monsters are Enraged", "better": 1, "id": "map_display_strongbox_monsters_are_enraged", "matchers": [{"string": "Strongbox Monsters are Enraged", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped", "better": 1, "id": "number_of_golems_allowed_with_3_primordial_jewels", "matchers": [{"string": "# to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped", "negate": false}], "trade": {"ids": null}} +{"ref": "Primordial", "better": 1, "id": "primordial_jewel_count", "matchers": [{"string": "Primordial", "negate": false}], "trade": {"ids": null}} +{"ref": "Golems have #% increased Maximum Life", "better": 1, "id": "golem_maximum_life_+%", "matchers": [{"string": "Golems have #% increased Maximum Life", "negate": false}, {"string": "Golems have #% reduced Maximum Life", "negate": true}], "trade": {"ids": null}} +{"ref": "Summoned Golems Regenerate #% of their Life per second", "better": 1, "id": "golem_life_regeneration_per_minute_%", "matchers": [{"string": "Summoned Golems Regenerate #% of their Life per second", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Damage if you Summoned a Golem in the past 8 seconds", "better": 1, "id": "damage_+%_if_golem_summoned_in_past_8_seconds", "matchers": [{"string": "#% increased Damage if you Summoned a Golem in the past 8 seconds", "negate": false}, {"string": "#% reduced Damage if you Summoned a Golem in the past 8 seconds", "negate": true}], "trade": {"ids": null}} +{"ref": "Golems Summoned in the past 8 seconds deal #% increased Damage", "better": 1, "id": "golem_damage_+%_if_summoned_in_past_8_seconds", "matchers": [{"string": "Golems Summoned in the past 8 seconds deal #% increased Damage", "negate": false}, {"string": "Golems Summoned in the past 8 seconds deal #% reduced Damage", "negate": true}], "trade": {"ids": null}} +{"ref": "Golem Skills have #% increased Cooldown Recovery Rate", "better": 1, "id": "golem_skill_cooldown_recovery_+%", "matchers": [{"string": "Golem Skills have #% increased Cooldown Recovery Rate", "negate": false}, {"string": "Golem Skills have #% reduced Cooldown Recovery Rate", "negate": true}], "trade": {"ids": null}} +{"ref": "Summoned Golems have #% increased Cooldown Recovery Rate", "better": 1, "id": "golem_cooldown_recovery_+%", "matchers": [{"string": "Summoned Golems have #% increased Cooldown Recovery Rate", "negate": false}, {"string": "Summoned Golems have #% reduced Cooldown Recovery Rate", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Effect of Buffs granted by your Golems", "better": 1, "id": "golem_buff_effect_+%", "matchers": [{"string": "#% increased Effect of Buffs granted by your Golems", "negate": false}, {"string": "#% reduced Effect of Buffs granted by your Golems", "negate": true}], "trade": {"ids": null}} +{"ref": "Golems have #% increased Attack and Cast Speed", "better": 1, "id": "golem_attack_and_cast_speed_+%", "matchers": [{"string": "Golems have #% increased Attack and Cast Speed", "negate": false}, {"string": "Golems have #% reduced Attack and Cast Speed", "negate": true}], "trade": {"ids": null}} +{"ref": "Golems have +# to Armour", "better": 1, "id": "golem_physical_damage_reduction_rating", "matchers": [{"string": "Golems have +# to Armour", "negate": false}], "trade": {"ids": null}} +{"ref": "+# Armour per Summoned Totem", "better": 1, "id": "X_armour_per_active_totem", "matchers": [{"string": "# Armour per Summoned Totem", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Spell Damage if you've dealt a Critical Hit in the past 8 seconds", "better": 1, "id": "spell_damage_+%_if_have_crit_in_past_8_seconds", "matchers": [{"string": "#% increased Spell Damage if you've dealt a Critical Hit in the past 8 seconds", "negate": false}, {"string": "#% reduced Spell Damage if you've dealt a Critical Hit in the past 8 seconds", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Spell Damage if you've dealt a Critical Hit Recently", "better": 1, "id": "spell_damage_+%_if_have_crit_recently", "matchers": [{"string": "#% increased Spell Damage if you've dealt a Critical Hit Recently", "negate": false}, {"string": "#% reduced Spell Damage if you've dealt a Critical Hit Recently", "negate": true}], "trade": {"ids": null}} +{"ref": "Critical Hits deal no Damage", "better": 1, "id": "critical_strikes_deal_no_damage", "matchers": [{"string": "Critical Hits deal no Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "+# Armour while stationary", "better": 1, "id": "armour_while_stationary", "matchers": [{"string": "# Armour while stationary", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to create Chilled Ground when Hit with an Attack", "better": 1, "id": "chilled_ground_when_hit_with_attack_%", "matchers": [{"string": "#% chance to create Chilled Ground when Hit with an Attack", "negate": false}], "trade": {"ids": null}} +{"ref": "Unholy Might during Effect", "better": 1, "id": "local_flask_unholy_might_during_flask_effect", "matchers": [{"string": "Unholy Might during Effect", "negate": false}], "trade": {"ids": null}} +{"ref": "Non-Critical Hits deal no Damage", "better": 1, "id": "non_critical_strikes_deal_no_damage", "matchers": [{"string": "Non-Critical Hits deal no Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently", "better": 1, "id": "critical_strike_multiplier_+_if_have_dealt_non_crit_recently", "matchers": [{"string": "#% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently", "negate": false}], "trade": {"ids": null}} +{"ref": "Enemies Killed by your Hits are destroyed", "better": 1, "id": "enemies_explode_on_kill", "matchers": [{"string": "Enemies Killed by your Hits are destroyed", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Critical Damage Bonus per 1% Chance to Block Attack Damage", "better": 1, "id": "critical_strike_multiplier_+_per_1%_block_chance", "matchers": [{"string": "#% to Critical Damage Bonus per 1% Chance to Block Attack Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "1% increased Attack Damage per 200 of the lowest of Armour and Evasion Rating", "better": 1, "id": "attack_damage_+1%_per_300_of_min_of_armour_or_evasion", "matchers": [{"string": "1% increased Attack Damage per 200 of the lowest of Armour and Evasion Rating", "negate": false}], "trade": {"ids": null}} +{"ref": "Melee Hits which Stun have #% chance to Fortify", "better": 1, "id": "chance_to_fortify_on_melee_stun_%", "matchers": [{"string": "Melee Hits which Stun have #% chance to Fortify", "negate": false}], "trade": {"ids": null}} +{"ref": "You have Onslaught while Fortified", "better": 1, "id": "gain_onslaught_while_you_have_fortify", "matchers": [{"string": "You have Onslaught while Fortified", "negate": false}], "trade": {"ids": null}} +{"ref": "Properties are doubled while in a Breach", "better": 1, "id": "local_item_stats_are_doubled_in_breach", "matchers": [{"string": "Properties are doubled while in a Breach", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Trigger Level 1 Raise Spiders on Kill", "better": 1, "id": "local_display_raise_spider_on_kill_%_chance", "matchers": [{"string": "#% chance to Trigger Level 1 Raise Spiders on Kill", "negate": false}], "trade": {"ids": null}} +{"ref": "Cannot Cast Spells", "better": 1, "id": "cannot_cast_spells", "matchers": [{"string": "Cannot Cast Spells", "negate": false}], "trade": {"ids": null}} +{"ref": "Spell Skills deal no Damage", "better": 1, "id": "spell_skills_deal_no_damage", "matchers": [{"string": "Spell Skills deal no Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Burning Hoofprints", "better": 1, "id": "goat_footprints_from_item", "matchers": [{"string": "Burning Hoofprints", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Fire Damage per 20 Strength", "better": 1, "id": "fire_damage_+%_per_20_strength", "matchers": [{"string": "#% increased Fire Damage per 20 Strength", "negate": false}, {"string": "#% reduced Fire Damage per 20 Strength", "negate": true}], "trade": {"ids": null}} +{"ref": "Summoned Golems are Aggressive", "better": 1, "id": "golems_larger_aggro_radius", "matchers": [{"string": "Summoned Golems are Aggressive", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Spell Damage while Shocked", "better": 1, "id": "spell_damage_+%_while_shocked", "matchers": [{"string": "#% increased Spell Damage while Shocked", "negate": false}, {"string": "#% reduced Spell Damage while Shocked", "negate": true}], "trade": {"ids": null}} +{"ref": "+#% to all maximum Resistances while you have no Endurance Charges", "better": 1, "id": "additional_maximum_all_resistances_%_with_no_endurance_charges", "matchers": [{"string": "#% to all maximum Resistances while you have no Endurance Charges", "negate": false}], "trade": {"ids": null}} +{"ref": "You have Onslaught while at maximum Endurance Charges", "better": 1, "id": "gain_onslaught_while_at_maximum_endurance_charges", "matchers": [{"string": "You have Onslaught while at maximum Endurance Charges", "negate": false}], "trade": {"ids": null}} +{"ref": "Half of your Strength is added to your Minions", "better": 1, "id": "minions_gain_your_strength", "matchers": [{"string": "Half of your Strength is added to your Minions", "negate": false}], "trade": {"ids": null}} +{"ref": "+1 to maximum number of Raised Zombies per # Strength", "better": 1, "id": "number_of_zombies_allowed_+1_per_X_strength", "matchers": [{"string": "1 to maximum number of Raised Zombies per # Strength", "negate": false}], "trade": {"ids": null}} +{"ref": "1% increased Rarity of Items found per # Rampage Kills", "better": 1, "id": "item_found_rarity_+1%_per_X_rampage_stacks", "matchers": [{"string": "1% increased Rarity of Items found per # Rampage Kills", "negate": false}], "trade": {"ids": null}} +{"ref": "Immune to Burning Ground, Shocked Ground and Chilled Ground", "better": 1, "id": "immune_to_burning_shocks_and_chilled_ground", "matchers": [{"string": "Immune to Burning Ground, Shocked Ground and Chilled Ground", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Maximum Life per 10 Dexterity", "better": 1, "id": "maximum_life_per_10_dexterity", "matchers": [{"string": "# to Maximum Life per 10 Dexterity", "negate": false}], "trade": {"ids": null}} +{"ref": "Regenerate # Life per second while moving", "better": 1, "id": "life_regeneration_per_minute_while_moving", "matchers": [{"string": "Regenerate # Life per second while moving", "negate": false}], "trade": {"ids": null}} +{"ref": "Your Spells are disabled", "better": 1, "id": "your_spells_are_disabled", "matchers": [{"string": "Your Spells are disabled", "negate": false}], "trade": {"ids": null}} +{"ref": "+# Life per 2% increased Rarity of Items found", "better": 1, "id": "maximum_life_per_2%_increased_item_found_rarity", "matchers": [{"string": "# Life per 2% increased Rarity of Items found", "negate": false}], "trade": {"ids": null}} +{"ref": "Your Increases and Reductions to Quantity of Items found also apply to Damage", "better": 1, "id": "damage_+%_per_1%_increased_item_found_quantity", "matchers": [{"string": "Your Increases and Reductions to Quantity of Items found also apply to Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Quantity of Items found per Chest opened Recently", "better": 1, "id": "item_found_quantity_+%_per_chest_opened_recently", "matchers": [{"string": "#% increased Quantity of Items found per Chest opened Recently", "negate": false}, {"string": "#% reduced Quantity of Items found per Chest opened Recently", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Movement Speed per Chest opened Recently", "better": 1, "id": "movement_speed_+%_per_chest_opened_recently", "matchers": [{"string": "#% increased Movement Speed per Chest opened Recently", "negate": false}, {"string": "#% reduced Movement Speed per Chest opened Recently", "negate": true}], "trade": {"ids": null}} +{"ref": "Contains an additional Pirate Unique item", "better": 1, "id": "chest_number_of_additional_pirate_uniques_to_drop", "matchers": [{"string": "Contains an additional Pirate Unique item", "negate": false}], "trade": {"ids": null}} +{"ref": "Warcries Knock Back and Interrupt Enemies in a smaller Area", "better": 1, "id": "warcries_knock_back_enemies", "matchers": [{"string": "Warcries Knock Back and Interrupt Enemies in a smaller Area", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Attack and Cast Speed if you've used a Movement Skill Recently", "better": 1, "id": "attack_and_cast_speed_+%_for_4_seconds_on_movement_skill_use", "matchers": [{"string": "#% increased Attack and Cast Speed if you've used a Movement Skill Recently", "negate": false}, {"string": "#% reduced Attack and Cast Speed if you've used a Movement Skill Recently", "negate": true}], "trade": {"ids": null}} +{"ref": "Movement Speed cannot be modified to below base value", "better": 1, "id": "movement_speed_cannot_be_reduced_below_base", "matchers": [{"string": "Movement Speed cannot be modified to below base value", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Maximum Charges", "better": 1, "id": "local_extra_max_charges", "matchers": [{"string": "# to Maximum Charges", "negate": false}], "trade": {"ids": null}} +{"ref": "Area contains an additional Leaguestone", "better": 1, "id": "map_leaguestone_area_contains_x_additional_leaguestones", "matchers": [{"string": "Area contains an additional Leaguestone", "negate": false}], "trade": {"ids": null}} +{"ref": "Your Energy Shield starts at zero", "better": 1, "id": "start_at_zero_energy_shield", "matchers": [{"string": "Your Energy Shield starts at zero", "negate": false}], "trade": {"ids": null}} +{"ref": "During Effect, Damage Penetrates #% Resistance of each Element for which your Uncapped Elemental Resistance is highest", "better": 1, "id": "local_unique_flask_elemental_penetration_%_of_highest_uncapped_resistance_type", "matchers": [{"string": "During Effect, Damage Penetrates #% Resistance of each Element for which your Uncapped Elemental Resistance is highest", "negate": false}], "trade": {"ids": null}} +{"ref": "During Effect, #% increased Damage taken of each Element for which your Uncapped Elemental Resistance is lowest", "better": 1, "id": "local_unique_flask_elemental_damage_taken_+%_of_lowest_uncapped_resistance_type", "matchers": [{"string": "During Effect, #% increased Damage taken of each Element for which your Uncapped Elemental Resistance is lowest", "negate": false}, {"string": "During Effect, #% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest", "negate": true}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Endurance Charge on Melee Stun", "better": 1, "id": "local_display_socketed_gems_supported_by_level_x_endurance_charge_on_stun", "matchers": [{"string": "Socketed Gems are Supported by Level # Endurance Charge on Melee Stun", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Damage with Hits against Chilled Enemies", "better": 1, "id": "hit_damage_+%_vs_chilled_enemies", "matchers": [{"string": "#% increased Damage with Hits against Chilled Enemies", "negate": false}, {"string": "#% reduced Damage with Hits against Chilled Enemies", "negate": true}], "trade": {"ids": null}} +{"ref": "Area contains a Perandus Chest", "better": 1, "id": "map_leaguestone_override_base_num_perandus_chests", "matchers": [{"string": "Area contains a Perandus Chest", "negate": false}], "trade": {"ids": null}} +{"ref": "Area contains an additional guarded Vaal Vessel", "better": 1, "id": "map_vaal_temple_spawn_additional_vaal_vessels", "matchers": [{"string": "Area contains an additional guarded Vaal Vessel", "negate": false}], "trade": {"ids": null}} +{"ref": "Immune to Freeze and Chill while Ignited", "better": 1, "id": "immune_to_freeze_and_chill_while_ignited", "matchers": [{"string": "Immune to Freeze and Chill while Ignited", "negate": false}], "trade": {"ids": null}} +{"ref": "Damage Penetrates #% of Fire Resistance if you have Blocked Recently", "better": 1, "id": "fire_penetration_%_if_you_have_blocked_recently", "matchers": [{"string": "Damage Penetrates #% of Fire Resistance if you have Blocked Recently", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Blood Offering Skill", "better": 1, "id": "local_display_grants_level_x_blood_offering_skill", "matchers": [{"string": "Grants Level # Blood Offering Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Trigger Level 1 Create Lesser Shrine when you Kill an Enemy", "better": 1, "id": "local_display_cast_level_1_summon_lesser_shrine_on_kill_%", "matchers": [{"string": "#% chance to Trigger Level 1 Create Lesser Shrine when you Kill an Enemy", "negate": false}], "trade": {"ids": null}} +{"ref": "You always Ignite while Burning", "better": 1, "id": "always_ignite_while_burning", "matchers": [{"string": "You always Ignite while Burning", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% Chance to Block Attack Damage while not Cursed", "better": 1, "id": "additional_block_%_while_not_cursed", "matchers": [{"string": "#% Chance to Block Attack Damage while not Cursed", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% Chance to Block Spell Damage while Cursed", "better": 1, "id": "additional_spell_block_%_while_cursed", "matchers": [{"string": "#% Chance to Block Spell Damage while Cursed", "negate": false}], "trade": {"ids": null}} +{"ref": "+# Maximum Life per Level", "better": 1, "id": "life_per_level", "matchers": [{"string": "# Maximum Life per Level", "negate": false}], "trade": {"ids": null}} +{"ref": "+# Maximum Mana per Level", "better": 1, "id": "mana_per_level", "matchers": [{"string": "# Maximum Mana per Level", "negate": false}], "trade": {"ids": null}} +{"ref": "+# Maximum Energy Shield per Level", "better": 1, "id": "energy_shield_per_level", "matchers": [{"string": "# Maximum Energy Shield per Level", "negate": false}], "trade": {"ids": null}} +{"ref": "Trigger Level # Death Aura when Equipped", "better": 1, "id": "local_display_grants_skill_death_aura_level", "matchers": [{"string": "Trigger Level # Death Aura when Equipped", "negate": false}], "trade": {"ids": null}} +{"ref": "Mana Reservation of Herald Skills is always 45%", "better": 1, "id": "herald_mana_reservation_override_45%", "matchers": [{"string": "Mana Reservation of Herald Skills is always 45%", "negate": false}], "trade": {"ids": null}} +{"ref": "35% chance to avoid being Stunned for each Herald Buff affecting you", "better": 1, "id": "avoid_stun_35%_per_active_herald", "matchers": [{"string": "35% chance to avoid being Stunned for each Herald Buff affecting you", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Damage if you have Shocked an Enemy Recently", "better": 1, "id": "damage_+%_if_you_have_shocked_recently", "matchers": [{"string": "#% increased Damage if you have Shocked an Enemy Recently", "negate": false}, {"string": "#% reduced Damage if you have Shocked an Enemy Recently", "negate": true}], "trade": {"ids": null}} +{"ref": "Shocked Enemies you Kill Explode, dealing #% of\\ntheir Life as Lightning Damage which cannot Shock", "better": 1, "id": "shocked_enemies_explode_for_%_life_as_lightning_damage", "matchers": [{"string": "Shocked Enemies you Kill Explode, dealing #% of\\ntheir Life as Lightning Damage which cannot Shock", "negate": false}], "trade": {"ids": null}} +{"ref": "Guarded by a stream of Ghost Pirates\\nGuarded by the Maiden of the Black Crest", "better": 1, "id": "chest_display_weylams_war", "matchers": [{"string": "Guarded by a stream of Ghost Pirates\\nGuarded by the Maiden of the Black Crest", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Minion Attack Speed per 50 Dexterity", "better": 1, "id": "minion_attack_speed_+%_per_50_dex", "matchers": [{"string": "#% increased Minion Attack Speed per 50 Dexterity", "negate": false}, {"string": "#% reduced Minion Attack Speed per 50 Dexterity", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Minion Movement Speed per 50 Dexterity", "better": 1, "id": "minion_movement_speed_+%_per_50_dex", "matchers": [{"string": "#% increased Minion Movement Speed per 50 Dexterity", "negate": false}, {"string": "#% reduced Minion Movement Speed per 50 Dexterity", "negate": true}], "trade": {"ids": null}} +{"ref": "Minions' Hits can only Kill Ignited Enemies", "better": 1, "id": "minions_hits_can_only_kill_ignited_enemies", "matchers": [{"string": "Minions' Hits can only Kill Ignited Enemies", "negate": false}], "trade": {"ids": null}} +{"ref": "Blocks Projectiles while charging", "better": 1, "id": "trigger_charge_additional_block_chance_against_projectiles_%", "matchers": [{"string": "Blocks Projectiles while charging", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Level of Socketed Herald Gems", "better": 1, "id": "local_socketed_herald_gem_level_+", "matchers": [{"string": "# to Level of Socketed Herald Gems", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Area of Effect while you have no Frenzy Charges", "better": 1, "id": "skill_area_of_effect_+%_while_no_frenzy_charges", "matchers": [{"string": "#% increased Area of Effect while you have no Frenzy Charges", "negate": false}, {"string": "#% reduced Area of Effect while you have no Frenzy Charges", "negate": true}], "trade": {"ids": null}} +{"ref": "+#% Global Critical Damage Bonus while you have no Frenzy Charges", "better": 1, "id": "global_critical_strike_multiplier_+_while_you_have_no_frenzy_charges", "matchers": [{"string": "#% Global Critical Damage Bonus while you have no Frenzy Charges", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Accuracy Rating while at Maximum Frenzy Charges", "better": 1, "id": "accuracy_rating_while_at_maximum_frenzy_charges", "matchers": [{"string": "# to Accuracy Rating while at Maximum Frenzy Charges", "negate": false}], "trade": {"ids": null}} +{"ref": "Movement Attack Skills have #% increased Attack Speed", "better": 1, "id": "movement_attack_skills_attack_speed_+%", "matchers": [{"string": "Movement Attack Skills have #% increased Attack Speed", "negate": false}, {"string": "Movement Attack Skills have #% reduced Attack Speed", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Cold Damage if you have used a Fire Skill Recently", "better": 1, "id": "cold_damage_+%_if_you_have_used_a_fire_skill_recently", "matchers": [{"string": "#% increased Cold Damage if you have used a Fire Skill Recently", "negate": false}, {"string": "#% reduced Cold Damage if you have used a Fire Skill Recently", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Fire Damage if you have used a Cold Skill Recently", "better": 1, "id": "fire_damage_+%_if_you_have_used_a_cold_skill_recently", "matchers": [{"string": "#% increased Fire Damage if you have used a Cold Skill Recently", "negate": false}, {"string": "#% reduced Fire Damage if you have used a Cold Skill Recently", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Damage per Power Charge", "better": 1, "id": "damage_+%_per_power_charge", "matchers": [{"string": "#% increased Damage per Power Charge", "negate": false}, {"string": "#% reduced Damage per Power Charge", "negate": true}], "trade": {"ids": null}} +{"ref": "#% chance that if you would gain Power Charges, you instead gain up to\\nyour maximum number of Power Charges", "better": 1, "id": "gain_maximum_power_charges_on_power_charge_gained_%_chance", "matchers": [{"string": "#% chance that if you would gain Power Charges, you instead gain up to\\nyour maximum number of Power Charges", "negate": false}], "trade": {"ids": null}} +{"ref": "Fire Damage from Hits also Contributes to Poison Magnitude", "better": 1, "id": "base_fire_damage_can_poison", "matchers": [{"string": "Fire Damage from Hits also Contributes to Poison Magnitude", "negate": false}], "trade": {"ids": null}} +{"ref": "Cold Damage from Hits also Contributes to Poison Magnitude", "better": 1, "id": "base_cold_damage_can_poison", "matchers": [{"string": "Cold Damage from Hits also Contributes to Poison Magnitude", "negate": false}], "trade": {"ids": null}} +{"ref": "Lightning Damage from Hits also Contributes to Poison Magntiude", "better": 1, "id": "base_lightning_damage_can_poison", "matchers": [{"string": "Lightning Damage from Hits also Contributes to Poison Magntiude", "negate": false}], "trade": {"ids": null}} +{"ref": "Fire Skills have #% chance to Poison on Hit", "better": 1, "id": "fire_skills_chance_to_poison_on_hit_%", "matchers": [{"string": "Fire Skills have #% chance to Poison on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Cold Skills have #% chance to Poison on Hit", "better": 1, "id": "cold_skills_chance_to_poison_on_hit_%", "matchers": [{"string": "Cold Skills have #% chance to Poison on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Lightning Skills have #% chance to Poison on Hit", "better": 1, "id": "lightning_skills_chance_to_poison_on_hit_%", "matchers": [{"string": "Lightning Skills have #% chance to Poison on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Area contains an additional Perandus Chest", "better": 1, "id": "map_spawn_extra_perandus_chests", "matchers": [{"string": "Area contains an additional Perandus Chest", "negate": false}], "trade": {"ids": null}} +{"ref": "Areas can contain Abysses", "better": 1, "id": "map_spawn_abysses", "matchers": [{"string": "Areas can contain Abysses", "negate": false}], "trade": {"ids": null}} +{"ref": "Area can contain Mysterious Harbingers", "better": 1, "id": "map_spawn_harbingers", "matchers": [{"string": "Area can contain Mysterious Harbingers", "negate": false}], "trade": {"ids": null}} +{"ref": "Area contains Metamorph Monsters", "better": 1, "id": "map_area_contains_metamorphs", "matchers": [{"string": "Area contains Metamorph Monsters", "negate": false}], "trade": {"ids": null}} +{"ref": "Areas contain Ritual Altars", "better": 1, "id": "map_area_contains_rituals", "matchers": [{"string": "Areas contain Ritual Altars", "negate": false}], "trade": {"ids": null}} +{"ref": "Area contains an Expedition Encounter", "better": 1, "id": "map_expedition_league", "matchers": [{"string": "Area contains an Expedition Encounter", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters take {}% more Damage", "better": 1, "id": "map_custom_league_damage_taken_+%_final", "matchers": [{"string": "Monsters take {}% more Damage", "negate": false}, {"string": "Monsters take {}% less Damage", "negate": true}], "trade": {"ids": null}} +{"ref": "Monsters deal #% of Physical Damage as Extra Fire", "better": 1, "id": "map_monsters_%_physical_damage_to_gain_as_fire", "matchers": [{"string": "Monsters deal #% of Physical Damage as Extra Fire", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters have #% chance to Hinder on Hit with Spells", "better": 1, "id": "map_monsters_spells_chance_to_hinder_on_hit_%_chance", "matchers": [{"string": "Monsters have #% chance to Hinder on Hit with Spells", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters have #% chance to Maim on Hit with Attacks", "better": 1, "id": "map_monsters_maim_on_hit_%_chance", "matchers": [{"string": "Monsters have #% chance to Maim on Hit with Attacks", "negate": false}], "trade": {"ids": null}} +{"ref": "Items cannot drop as Magic or Rare", "better": 1, "id": "map_non_unique_items_drop_normal", "matchers": [{"string": "Items cannot drop as Magic or Rare", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Doryani's Touch Skill", "better": 1, "id": "local_display_grants_skill_doryanis_touch_level", "matchers": [{"string": "Grants Level # Doryani's Touch Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level 20 Summon Bestial Rhoa Skill", "better": 1, "id": "local_display_grants_summon_beast_companion", "matchers": [{"string": "Grants Level 20 Summon Bestial Rhoa Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Chaos Resistance is doubled", "better": 1, "id": "chaos_damage_resistance_is_doubled", "matchers": [{"string": "Chaos Resistance is doubled", "negate": false}], "trade": {"ids": null}} +{"ref": "Far Shot", "better": 1, "id": "player_far_shot", "matchers": [{"string": "Far Shot", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Mana Cost of Minion Skills", "better": 1, "id": "minion_skill_mana_cost_+%", "matchers": [{"string": "#% increased Mana Cost of Minion Skills", "negate": false}, {"string": "#% reduced Mana Cost of Minion Skills", "negate": true}], "trade": {"ids": null}} +{"ref": "Trigger Level # Intimidating Cry on Hit", "better": 1, "id": "local_display_use_level_X_abyssal_cry_on_hit", "matchers": [{"string": "Trigger Level # Intimidating Cry on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Trigger Level # Lightning Warp on Hit with this Weapon", "better": 1, "id": "local_display_trigger_level_x_lightning_warp_on_hit_with_this_weapon", "matchers": [{"string": "Trigger Level # Lightning Warp on Hit with this Weapon", "negate": false}], "trade": {"ids": null}} +{"ref": "Summon an additional Skeleton with Summon Skeletons", "better": 1, "id": "summon_skeletons_num_additional_warrior_skeletons", "matchers": [{"string": "Summon an additional Skeleton with Summon Skeletons", "negate": false}], "trade": {"ids": null}} +{"ref": "+# second to Summon Skeleton Cooldown", "better": 1, "id": "summon_skeletons_cooldown_modifier_ms", "matchers": [{"string": "# second to Summon Skeleton Cooldown", "negate": false}], "trade": {"ids": null}} +{"ref": "Area contains an additional Harbinger", "better": 1, "id": "map_num_extra_harbingers", "matchers": [{"string": "Area contains an additional Harbinger", "negate": false}], "trade": {"ids": null}} +{"ref": "Energy Shield Recharge starts when you are Stunned", "better": 1, "id": "energy_shield_recharge_start_when_stunned", "matchers": [{"string": "Energy Shield Recharge starts when you are Stunned", "negate": false}], "trade": {"ids": null}} +{"ref": "Izaro will drop an additional Treasure Key on Death", "better": 1, "id": "labyrinth_darkshrine_izaro_drops_x_additional_treasure_keys", "matchers": [{"string": "Izaro will drop an additional Treasure Key on Death", "negate": false}], "trade": {"ids": null}} +{"ref": "Izaro will drop an additional Unique Item on Death", "better": 1, "id": "labyrinth_darkshrine_izaro_dropped_unique_items_+", "matchers": [{"string": "Izaro will drop an additional Unique Item on Death", "negate": false}], "trade": {"ids": null}} +{"ref": "You will receive an additional use of the Divine Font", "better": 1, "id": "labyrinth_darkshrine_additional_divine_font_use_display", "matchers": [{"string": "You will receive an additional use of the Divine Font", "negate": false}], "trade": {"ids": null}} +{"ref": "Players in the Labyrinth will be affected by Acceleration Shrine", "better": 1, "id": "labyrinth_darkshrine_players_have_shrine_row_x_effect_for_this_labyrinth", "matchers": [{"string": "Players in the Labyrinth will be affected by Acceleration Shrine", "negate": false}], "trade": {"ids": null}} +{"ref": "Labyrinth Traps are disabled in the Aspirant's Trial", "better": 1, "id": "labyrinth_darkshrine_boss_room_traps_are_disabled", "matchers": [{"string": "Labyrinth Traps are disabled in the Aspirant's Trial", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Damage Taken from Hits from Labyrinth Traps\\n#% increased effectiveness of Damage over Time Debuffs from Labyrinth Traps on Players", "better": 1, "id": "labyrinth_darkshrine_players_damage_taken_from_labyrinth_traps_+%", "matchers": [{"string": "#% increased Damage Taken from Hits from Labyrinth Traps\\n#% increased effectiveness of Damage over Time Debuffs from Labyrinth Traps on Players", "negate": false}, {"string": "#% reduced Damage Taken from Hits from Labyrinth Traps\\n#% reduced effectiveness of Damage over Time Debuffs from Labyrinth Traps on Players", "negate": true}], "trade": {"ids": null}} +{"ref": "You take #% increased Extra Damage from Critical Hits while you have no Power Charges", "better": 1, "id": "extra_damage_taken_from_crit_while_no_power_charges_+%", "matchers": [{"string": "You take #% increased Extra Damage from Critical Hits while you have no Power Charges", "negate": false}, {"string": "You take #% reduced Extra Damage from Critical Hits while you have no Power Charges", "negate": true}], "trade": {"ids": null}} +{"ref": "Gain #% of Physical Damage as Extra Chaos Damage while at maximum Power Charges", "better": 1, "id": "non_skill_base_physical_damage_%_to_gain_as_chaos_while_at_maximum_power_charges", "matchers": [{"string": "Gain #% of Physical Damage as Extra Chaos Damage while at maximum Power Charges", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Scorching Ray Skill", "better": 1, "id": "local_display_grants_skill_scorching_ray_level", "matchers": [{"string": "Grants Level # Scorching Ray Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Blight Skill", "better": 1, "id": "local_display_grants_skill_blight_level", "matchers": [{"string": "Grants Level # Blight Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Summon Harbinger of the Arcane Skill", "better": 1, "id": "local_display_summon_harbinger_x_on_equip", "matchers": [{"string": "Grants Summon Harbinger of the Arcane Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Channelling Skills deal #% increased Damage", "better": 1, "id": "channelled_skill_damage_+%", "matchers": [{"string": "Channelling Skills deal #% increased Damage", "negate": false}, {"string": "Channelling Skills deal #% reduced Damage", "negate": true}], "trade": {"ids": null}} +{"ref": "#% more Poison Duration", "better": 1, "id": "unique_volkuurs_clutch_poison_duration_+%_final", "matchers": [{"string": "#% more Poison Duration", "negate": false}, {"string": "#% less Poison Duration", "negate": true}], "trade": {"ids": null}} +{"ref": "Projectile Attack Skills have #% increased Critical Hit Chance", "better": 1, "id": "projectile_attack_skill_critical_strike_chance_+%", "matchers": [{"string": "Projectile Attack Skills have #% increased Critical Hit Chance", "negate": false}, {"string": "Projectile Attack Skills have #% reduced Critical Hit Chance", "negate": true}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Chance to Poison", "better": 1, "id": "local_display_socketed_gems_supported_by_X_lesser_poison", "matchers": [{"string": "Socketed Gems are Supported by Level # Chance to Poison", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Vile Toxins", "better": 1, "id": "local_display_socketed_gems_supported_by_X_vile_toxins", "matchers": [{"string": "Socketed Gems are Supported by Level # Vile Toxins", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Innervate", "better": 1, "id": "local_display_socketed_gems_supported_by_x_innervate_level", "matchers": [{"string": "Socketed Gems are Supported by Level # Innervate", "negate": false}], "trade": {"ids": null}} +{"ref": "Trigger Level # Void Gaze when you use a Skill", "better": 1, "id": "local_display_trigger_level_X_void_gaze_on_skill_use", "matchers": [{"string": "Trigger Level # Void Gaze when you use a Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Attacks with this Weapon deal # to # added Chaos Damage against\\nEnemies affected by at least 5 Poisons", "better": 1, "id": "minimum_added_chaos_damage_vs_enemies_with_5+_poisons", "matchers": [{"string": "Attacks with this Weapon deal # to # added Chaos Damage against\\nEnemies affected by at least 5 Poisons", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Poison Duration per Power Charge", "better": 1, "id": "poison_duration_+%_per_power_charge", "matchers": [{"string": "#% increased Poison Duration per Power Charge", "negate": false}, {"string": "#% reduced Poison Duration per Power Charge", "negate": true}], "trade": {"ids": null}} +{"ref": "#% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons", "better": 1, "id": "gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_%", "matchers": [{"string": "#% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons", "better": 1, "id": "gain_power_charge_on_kill_vs_enemies_with_less_than_5_poisons_%", "matchers": [{"string": "#% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Poison Duration if you have at least 150 Intelligence", "better": 1, "id": "poison_duration_+%_with_over_150_intelligence", "matchers": [{"string": "#% increased Poison Duration if you have at least 150 Intelligence", "negate": false}, {"string": "#% reduced Poison Duration if you have at least 150 Intelligence", "negate": true}], "trade": {"ids": null}} +{"ref": "Blight has #% increased Hinder Duration", "better": 1, "id": "blight_secondary_skill_effect_duration_+%", "matchers": [{"string": "Blight has #% increased Hinder Duration", "negate": false}, {"string": "Blight has #% reduced Hinder Duration", "negate": true}], "trade": {"ids": null}} +{"ref": "Trigger Level # Storm Cascade when you Attack", "better": 1, "id": "local_display_trigger_level_x_storm_cascade_on_attack", "matchers": [{"string": "Trigger Level # Storm Cascade when you Attack", "negate": false}], "trade": {"ids": null}} +{"ref": "Projectiles from Attacks have #% chance to inflict Bleeding on Hit while\\nyou have a Bestial Minion", "better": 1, "id": "projectile_attacks_chance_to_bleed_on_hit_%_if_you_have_beast_minion", "matchers": [{"string": "Projectiles from Attacks have #% chance to inflict Bleeding on Hit while\\nyou have a Bestial Minion", "negate": false}], "trade": {"ids": null}} +{"ref": "Projectiles from Attacks have #% chance to Poison on Hit while\\nyou have a Bestial Minion", "better": 1, "id": "projectile_attacks_chance_to_poison_on_hit_%_if_you_have_beast_minion", "matchers": [{"string": "Projectiles from Attacks have #% chance to Poison on Hit while\\nyou have a Bestial Minion", "negate": false}], "trade": {"ids": null}} +{"ref": "Projectiles from Attacks have #% chance to Maim on Hit while\\nyou have a Bestial Minion", "better": 1, "id": "projectile_attacks_chance_to_maim_on_hit_%_if_you_have_beast_minion", "matchers": [{"string": "Projectiles from Attacks have #% chance to Maim on Hit while\\nyou have a Bestial Minion", "negate": false}], "trade": {"ids": null}} +{"ref": "Adds # to # Physical Damage to Attacks while you have a Bestial Minion", "better": 1, "id": "attack_minimum_added_physical_damage_if_you_have_beast_minion", "matchers": [{"string": "Adds # to # Physical Damage to Attacks while you have a Bestial Minion", "negate": false}], "trade": {"ids": null}} +{"ref": "Adds # to # Chaos Damage to Attacks while you have a Bestial Minion", "better": 1, "id": "attack_minimum_added_chaos_damage_if_you_have_beast_minion", "matchers": [{"string": "Adds # to # Chaos Damage to Attacks while you have a Bestial Minion", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Attack and Movement Speed while you have a Bestial Minion", "better": 1, "id": "attack_and_movement_speed_+%_if_you_have_beast_minion", "matchers": [{"string": "#% increased Attack and Movement Speed while you have a Bestial Minion", "negate": false}], "trade": {"ids": null}} +{"ref": "Trigger Level # Darktongue's Kiss when you Cast a Curse Spell", "better": 1, "id": "local_display_trigger_level_X_darktongue_kiss_on_curse", "matchers": [{"string": "Trigger Level # Darktongue's Kiss when you Cast a Curse Spell", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Effect of Lightning Ailments", "better": 1, "id": "lightning_ailment_effect_+%", "matchers": [{"string": "#% increased Effect of Lightning Ailments", "negate": false}, {"string": "#% reduced Effect of Lightning Ailments", "negate": true}], "trade": {"ids": null}} +{"ref": "Gems can be Socketed in this Item ignoring Socket Colour", "better": 1, "id": "local_can_socket_gems_ignoring_colour", "matchers": [{"string": "Gems can be Socketed in this Item ignoring Socket Colour", "negate": false}], "trade": {"ids": null}} +{"ref": "Has no Attribute Requirements", "better": 1, "id": "local_no_attribute_requirements", "matchers": [{"string": "Has no Attribute Requirements", "negate": false}], "trade": {"ids": null}} +{"ref": "Gems Socketed in Red Sockets have +# to Level", "better": 1, "id": "local_socketed_gems_in_red_sockets_get_level_+", "matchers": [{"string": "Gems Socketed in Red Sockets have +# to Level", "negate": false}], "trade": {"ids": null}} +{"ref": "Gems Socketed in Green Sockets have +#% to Quality", "better": 1, "id": "local_socketed_gems_in_green_sockets_get_quality_%", "matchers": [{"string": "Gems Socketed in Green Sockets have +#% to Quality", "negate": false}], "trade": {"ids": null}} +{"ref": "Gems Socketed in Blue Sockets gain #% increased Experience", "better": 1, "id": "local_socketed_gems_in_blue_sockets_experience_gained_+%", "matchers": [{"string": "Gems Socketed in Blue Sockets gain #% increased Experience", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence", "better": 1, "id": "thaumaturgy_rotation_active", "matchers": [{"string": "Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Scorching Ray beam length", "better": 1, "id": "fire_beam_length_+%", "matchers": [{"string": "#% increased Scorching Ray beam length", "negate": false}, {"string": "#% reduced Scorching Ray beam length", "negate": true}], "trade": {"ids": null}} +{"ref": "Grants Level # Purity of Fire Skill", "better": 1, "id": "local_display_grants_skill_purity_of_fire_level", "matchers": [{"string": "Grants Level # Purity of Fire Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Purity of Ice Skill", "better": 1, "id": "local_display_grants_skill_purity_of_cold_level", "matchers": [{"string": "Grants Level # Purity of Ice Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Purity of Lightning Skill", "better": 1, "id": "local_display_grants_skill_purity_of_lightning_level", "matchers": [{"string": "Grants Level # Purity of Lightning Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Vaal Impurity of Fire Skill", "better": 1, "id": "local_display_grants_skill_vaal_impurity_of_fire_level", "matchers": [{"string": "Grants Level # Vaal Impurity of Fire Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Vaal Impurity of Ice Skill", "better": 1, "id": "local_display_grants_skill_vaal_impurity_of_ice_level", "matchers": [{"string": "Grants Level # Vaal Impurity of Ice Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Vaal Impurity of Lightning Skill", "better": 1, "id": "local_display_grants_skill_vaal_impurity_of_lightning_level", "matchers": [{"string": "Grants Level # Vaal Impurity of Lightning Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Spectre maximum Life", "better": 1, "id": "spectre_maximum_life_+", "matchers": [{"string": "# to Spectre maximum Life", "negate": false}], "trade": {"ids": null}} +{"ref": "Spectres have #% increased maximum Life", "better": 1, "id": "base_spectre_maximum_life_+%", "matchers": [{"string": "Spectres have #% increased maximum Life", "negate": false}, {"string": "Spectres have #% reduced maximum Life", "negate": true}], "trade": {"ids": null}} +{"ref": "Gain a Power Charge after Spending a total of 200 Mana", "better": 1, "id": "local_display_gain_power_charge_on_spending_mana", "matchers": [{"string": "Gain a Power Charge after Spending a total of 200 Mana", "negate": false}], "trade": {"ids": null}} +{"ref": "Regenerate # Mana per Second per Power Charge", "better": 1, "id": "mana_regeneration_rate_per_minute_per_power_charge", "matchers": [{"string": "Regenerate # Mana per Second per Power Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary", "better": 1, "id": "gain_random_charge_per_second_while_stationary", "matchers": [{"string": "Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary", "negate": false}], "trade": {"ids": null}} +{"ref": "Lose all Frenzy, Endurance, and Power Charges when you Move", "better": 1, "id": "lose_all_charges_on_starting_movement", "matchers": [{"string": "Lose all Frenzy, Endurance, and Power Charges when you Move", "negate": false}], "trade": {"ids": null}} +{"ref": "Area is inhabited by Solaris fanatics", "better": 1, "id": "display_map_inhabited_by_solaris_fanatics", "matchers": [{"string": "Area is inhabited by Solaris fanatics", "negate": false}], "trade": {"ids": null}} +{"ref": "Area is inhabited by Lunaris fanatics", "better": 1, "id": "display_map_inhabited_by_lunaris_fanatics", "matchers": [{"string": "Area is inhabited by Lunaris fanatics", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Effect of non-Keystone Passive Skills in Radius", "better": 1, "id": "local_unique_jewel_non_keystone_passive_in_radius_effect_+%", "matchers": [{"string": "#% increased Effect of non-Keystone Passive Skills in Radius", "negate": false}, {"string": "#% reduced Effect of non-Keystone Passive Skills in Radius", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Attack, Cast and Movement Speed during Effect", "better": 1, "id": "local_attack_cast_movement_speed_+%_during_flask_effect", "matchers": [{"string": "#% increased Attack, Cast and Movement Speed during Effect", "negate": false}, {"string": "#% reduced Attack, Cast and Movement Speed during Effect", "negate": true}], "trade": {"ids": null}} +{"ref": "Triggers Level # Fire Aegis when Equipped", "better": 1, "id": "local_display_cast_fire_aegis_on_gain_skill", "matchers": [{"string": "Triggers Level # Fire Aegis when Equipped", "negate": false}], "trade": {"ids": null}} +{"ref": "Triggers Level # Cold Aegis when Equipped", "better": 1, "id": "local_display_cast_cold_aegis_on_gain_skill", "matchers": [{"string": "Triggers Level # Cold Aegis when Equipped", "negate": false}], "trade": {"ids": null}} +{"ref": "Triggers Level # Lightning Aegis when Equipped", "better": 1, "id": "local_display_cast_lightning_aegis_on_gain_skill", "matchers": [{"string": "Triggers Level # Lightning Aegis when Equipped", "negate": false}], "trade": {"ids": null}} +{"ref": "Triggers Level # Elemental Aegis when Equipped", "better": 1, "id": "local_display_cast_elemental_aegis_on_gain_skill", "matchers": [{"string": "Triggers Level # Elemental Aegis when Equipped", "negate": false}], "trade": {"ids": null}} +{"ref": "Triggers Level # Physical Aegis when Equipped", "better": 1, "id": "local_display_cast_physical_aegis_on_gain_skill", "matchers": [{"string": "Triggers Level # Physical Aegis when Equipped", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Summon Doedre's Effigy Skill\\nSocketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned\\nHexes from Socketed Skills can apply 5 additional Curses\\n20% less Effect of Curses from Socketed Hex Skills", "better": 1, "id": "local_display_grants_level_x_curse_pillar_skil_and_20%_less_curse_effect", "matchers": [{"string": "Grants Level # Summon Doedre's Effigy Skill\\nSocketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned\\nHexes from Socketed Skills can apply 5 additional Curses\\n20% less Effect of Curses from Socketed Hex Skills", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Summon Doedre's Effigy Skill\\nSocketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned\\nHexes from Socketed Skills can apply 5 additional Curses", "better": 1, "id": "local_display_grants_level_x_curse_pillar_skill", "matchers": [{"string": "Grants Level # Summon Doedre's Effigy Skill\\nSocketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned\\nHexes from Socketed Skills can apply 5 additional Curses", "negate": false}], "trade": {"ids": null}} +{"ref": "Poison you inflict is Reflected to you if you have fewer than 100 Poisons on you", "better": 1, "id": "poison_reflected_to_self", "matchers": [{"string": "Poison you inflict is Reflected to you if you have fewer than 100 Poisons on you", "negate": false}], "trade": {"ids": null}} +{"ref": "Bleeding you inflict is Reflected to you", "better": 1, "id": "bleeding_reflected_to_self", "matchers": [{"string": "Bleeding you inflict is Reflected to you", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Chaos Resistance per Poison on you", "better": 1, "id": "chaos_damage_resistance_%_per_poison_stack", "matchers": [{"string": "#% to Chaos Resistance per Poison on you", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Damage for each Poison on you up to a maximum of 75%", "better": 1, "id": "damage_+%_per_poison_up_to_75%", "matchers": [{"string": "#% increased Damage for each Poison on you up to a maximum of 75%", "negate": false}, {"string": "#% reduced Damage for each Poison on you", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Movement Speed for each Poison on you up to a maximum of 50%", "better": 1, "id": "movement_speed_+%_per_poison_up_to_50%", "matchers": [{"string": "#% increased Movement Speed for each Poison on you up to a maximum of 50%", "negate": false}, {"string": "#% reduced Movement Speed for each Poison on you", "negate": true}], "trade": {"ids": null}} +{"ref": "Poison you inflict with Travel Skills is Reflected to you if you\\nhave fewer than 5 Poisons on you", "better": 1, "id": "travel_skills_poison_reflected_to_self_up_to_5_poisons", "matchers": [{"string": "Poison you inflict with Travel Skills is Reflected to you if you\\nhave fewer than 5 Poisons on you", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Armour while Bleeding", "better": 1, "id": "armour_+%_while_bleeding", "matchers": [{"string": "#% increased Armour while Bleeding", "negate": false}], "trade": {"ids": null}} +{"ref": "Cannot be Ignited if Strength is higher than Dexterity", "better": 1, "id": "cannot_be_ignited_with_strength_higher_than_dex", "matchers": [{"string": "Cannot be Ignited if Strength is higher than Dexterity", "negate": false}], "trade": {"ids": null}} +{"ref": "Cannot be Frozen if Dexterity is higher than Intelligence", "better": 1, "id": "cannot_be_frozen_with_dex_higher_than_int", "matchers": [{"string": "Cannot be Frozen if Dexterity is higher than Intelligence", "negate": false}], "trade": {"ids": null}} +{"ref": "Cannot be Shocked if Intelligence is higher than Strength", "better": 1, "id": "cannot_be_shocked_with_int_higher_than_strength", "matchers": [{"string": "Cannot be Shocked if Intelligence is higher than Strength", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Damage per 5 of your lowest Attribute", "better": 1, "id": "damage_+%_per_5_of_your_lowest_attribute", "matchers": [{"string": "#% increased Damage per 5 of your lowest Attribute", "negate": false}, {"string": "#% reduced Damage per 5 of your lowest Attribute", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Duration of Ailments on Enemies", "better": 1, "id": "base_all_ailment_duration_+%", "matchers": [{"string": "#% increased Duration of Ailments on Enemies", "negate": false}, {"string": "#% reduced Duration of Ailments on Enemies", "negate": true}], "trade": {"ids": null}} +{"ref": "Trigger Level # Fog of War when your Trap is triggered", "better": 1, "id": "local_display_trigger_level_x_smoke_cloud_on_trap_triggered", "matchers": [{"string": "Trigger Level # Fog of War when your Trap is triggered", "negate": false}], "trade": {"ids": null}} +{"ref": "Flammability has no Reservation if Cast as an Aura", "better": 1, "id": "flammability_no_reservation", "matchers": [{"string": "Flammability has no Reservation if Cast as an Aura", "negate": false}], "trade": {"ids": null}} +{"ref": "Frostbite has no Reservation if Cast as an Aura", "better": 1, "id": "frostbite_no_reservation", "matchers": [{"string": "Frostbite has no Reservation if Cast as an Aura", "negate": false}], "trade": {"ids": null}} +{"ref": "Conductivity has no Reservation if Cast as an Aura", "better": 1, "id": "conductivity_no_reservation", "matchers": [{"string": "Conductivity has no Reservation if Cast as an Aura", "negate": false}], "trade": {"ids": null}} +{"ref": "Vulnerability has no Reservation if Cast as an Aura", "better": 1, "id": "vulnerability_no_reservation", "matchers": [{"string": "Vulnerability has no Reservation if Cast as an Aura", "negate": false}], "trade": {"ids": null}} +{"ref": "Despair has no Reservation if Cast as an Aura", "better": 1, "id": "despair_no_reservation", "matchers": [{"string": "Despair has no Reservation if Cast as an Aura", "negate": false}], "trade": {"ids": null}} +{"ref": "Temporal Chains has no Reservation if Cast as an Aura", "better": 1, "id": "temporal_chains_no_reservation", "matchers": [{"string": "Temporal Chains has no Reservation if Cast as an Aura", "negate": false}], "trade": {"ids": null}} +{"ref": "Punishment has no Reservation if Cast as an Aura", "better": 1, "id": "punishment_no_reservation", "matchers": [{"string": "Punishment has no Reservation if Cast as an Aura", "negate": false}], "trade": {"ids": null}} +{"ref": "Enfeeble has no Reservation if Cast as an Aura", "better": 1, "id": "enfeeble_no_reservation", "matchers": [{"string": "Enfeeble has no Reservation if Cast as an Aura", "negate": false}], "trade": {"ids": null}} +{"ref": "Elemental Weakness has no Reservation if Cast as an Aura", "better": 1, "id": "elemental_weakness_no_reservation", "matchers": [{"string": "Elemental Weakness has no Reservation if Cast as an Aura", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% chance to Suppress Spell Damage while your Off Hand is empty", "better": 1, "id": "spell_suppression_chance_%_while_off_hand_empty", "matchers": [{"string": "#% chance to Suppress Spell Damage while your Off Hand is empty", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Cold Damage while your Off Hand is empty", "better": 1, "id": "cold_damage_+%_while_off_hand_is_empty", "matchers": [{"string": "#% increased Cold Damage while your Off Hand is empty", "negate": false}, {"string": "#% reduced Cold Damage while your Off Hand is empty", "negate": true}], "trade": {"ids": null}} +{"ref": "Every 16 seconds you gain Iron Reflexes for 8 seconds", "better": 1, "id": "iron_reflexes_rotation_active", "matchers": [{"string": "Every 16 seconds you gain Iron Reflexes for 8 seconds", "negate": false}], "trade": {"ids": null}} +{"ref": "#% more Damage with Arrow Hits at Close Range while you have Iron Reflexes", "better": 1, "id": "unique_bow_arborix_close_range_bow_damage_+%_final_while_have_iron_reflexes", "matchers": [{"string": "#% more Damage with Arrow Hits at Close Range while you have Iron Reflexes", "negate": false}], "trade": {"ids": null}} +{"ref": "You have Far Shot while you do not have Iron Reflexes", "better": 1, "id": "gain_player_far_shot_while_do_not_have_iron_reflexes", "matchers": [{"string": "You have Far Shot while you do not have Iron Reflexes", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes", "better": 1, "id": "attack_cast_and_movement_speed_+%_while_do_not_have_iron_reflexes", "matchers": [{"string": "#% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes", "negate": false}, {"string": "#% reduced Attack, Cast and Movement Speed while you do not have Iron Reflexes", "negate": true}], "trade": {"ids": null}} +{"ref": "All Elemental Damage from Hits Contributes to Shock Chance", "better": 1, "id": "elemental_damage_can_shock", "matchers": [{"string": "All Elemental Damage from Hits Contributes to Shock Chance", "negate": false}], "trade": {"ids": null}} +{"ref": "Triggers Level # Death Walk when Equipped", "better": 1, "id": "local_display_trigger_death_walk_on_equip_level", "matchers": [{"string": "Triggers Level # Death Walk when Equipped", "negate": false}], "trade": {"ids": null}} +{"ref": "With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks", "better": 1, "id": "local_attacks_intimidate_on_hit_for_4_seconds_with_melee_abyss_jewel_socketed", "matchers": [{"string": "With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks", "negate": false}], "trade": {"ids": null}} +{"ref": "With a Murderous Eye Jewel Socketed, Melee Hits have #% chance to Fortify", "better": 1, "id": "local_gain_fortify_on_melee_hit_chance_%_with_melee_abyss_jewel_socketed", "matchers": [{"string": "With a Murderous Eye Jewel Socketed, Melee Hits have #% chance to Fortify", "negate": false}], "trade": {"ids": null}} +{"ref": "With a Murderous Eye Jewel Socketed, Melee Attacks grant # Rage on Hit, no more than once every second", "better": 1, "id": "local_gain_X_rage_on_attack_hit_with_melee_abyss_jewel_socketed", "matchers": [{"string": "With a Murderous Eye Jewel Socketed, Melee Attacks grant # Rage on Hit, no more than once every second", "negate": false}], "trade": {"ids": null}} +{"ref": "With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks", "better": 1, "id": "local_attacks_maim_on_hit_for_4_seconds_with_ranged_abyss_jewel_socketed", "matchers": [{"string": "With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks", "negate": false}], "trade": {"ids": null}} +{"ref": "With a Searching Eye Jewel Socketed, Blind Enemies for 4 seconds on Hit with Attacks", "better": 1, "id": "local_blind_enemies_on_attack_hits_with_ranged_abyss_jewel_socketed", "matchers": [{"string": "With a Searching Eye Jewel Socketed, Blind Enemies for 4 seconds on Hit with Attacks", "negate": false}], "trade": {"ids": null}} +{"ref": "With a Searching Eye Jewel Socketed, Attacks have #% chance to grant Onslaught On Kill", "better": 1, "id": "local_attacks_grant_onslaught_on_kill_chance_%_with_ranged_abyss_jewel_socketed", "matchers": [{"string": "With a Searching Eye Jewel Socketed, Attacks have #% chance to grant Onslaught On Kill", "negate": false}], "trade": {"ids": null}} +{"ref": "Deal no Non-Elemental Damage", "better": 1, "id": "deal_no_non_elemental_damage", "matchers": [{"string": "Deal no Non-Elemental Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Elemental Penetration", "better": 1, "id": "local_display_socketed_gems_supported_by_level_x_elemental_penetration", "matchers": [{"string": "Socketed Gems are Supported by Level # Elemental Penetration", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to gain a Spirit Charge on Kill", "better": 1, "id": "gain_spirit_charge_on_kill_%_chance", "matchers": [{"string": "#% chance to gain a Spirit Charge on Kill", "negate": false}], "trade": {"ids": null}} +{"ref": "Recover #% of Life when you lose a Spirit Charge", "better": 1, "id": "gain_%_life_when_spirit_charge_expires_or_consumed", "matchers": [{"string": "Recover #% of Life when you lose a Spirit Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "Recover #% of Energy Shield when you lose a Spirit Charge", "better": 1, "id": "gain_%_es_when_spirit_charge_expires_or_consumed", "matchers": [{"string": "Recover #% of Energy Shield when you lose a Spirit Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain #% of Physical Damage as Extra Damage of each Element per Spirit Charge", "better": 1, "id": "non_skill_physical_damage_%_to_gain_as_each_element_per_spirit_charge", "matchers": [{"string": "Gain #% of Physical Damage as Extra Damage of each Element per Spirit Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "Trigger Level # Spirit Burst when you Use a Skill while you have a Spirit Charge", "better": 1, "id": "local_display_trigger_level_x_spirit_burst_on_skill_use_if_have_spirit_charge", "matchers": [{"string": "Trigger Level # Spirit Burst when you Use a Skill while you have a Spirit Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain a Spirit Charge every second", "better": 1, "id": "gain_spirit_charge_every_x_ms", "matchers": [{"string": "Gain a Spirit Charge every second", "negate": false}], "trade": {"ids": null}} +{"ref": "You lose all Spirit Charges when taking a Savage Hit", "better": 1, "id": "lose_spirit_charges_on_savage_hit_taken", "matchers": [{"string": "You lose all Spirit Charges when taking a Savage Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Maximum Spirit Charges per Abyss Jewel affecting you", "better": 1, "id": "maximum_spirit_charges_per_abyss_jewel_equipped", "matchers": [{"string": "# to Maximum Spirit Charges per Abyss Jewel affecting you", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy", "better": 1, "id": "gain_debilitating_presence_ms_on_kill_vs_rare_or_unique_enemy", "matchers": [{"string": "Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill", "better": 1, "id": "local_display_trigger_level_20_shade_form_on_skill_use_%", "matchers": [{"string": "#% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Trigger Level 20 Shade Form when Hit", "better": 1, "id": "local_display_trigger_level_20_shade_form_when_hit_%", "matchers": [{"string": "Trigger Level 20 Shade Form when Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Adds # to # Physical Damage per Endurance Charge", "better": 1, "id": "minimum_added_physical_damage_per_endurance_charge", "matchers": [{"string": "Adds # to # Physical Damage per Endurance Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Chaos Resistance per Endurance Charge", "better": 1, "id": "chaos_damage_resistance_%_per_endurance_charge", "matchers": [{"string": "#% to Chaos Resistance per Endurance Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Elemental Damage taken from Hits per Endurance Charge", "better": 1, "id": "elemental_damage_taken_from_hits_+%_per_endurance_charge", "matchers": [{"string": "#% increased Elemental Damage taken from Hits per Endurance Charge", "negate": false}, {"string": "#% reduced Elemental Damage taken from Hits per Endurance Charge", "negate": true}], "trade": {"ids": null}} +{"ref": "+# to Armour per Endurance Charge", "better": 1, "id": "physical_damage_reduction_rating_per_endurance_charge", "matchers": [{"string": "# to Armour per Endurance Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Avoid Elemental Damage from Hits per Frenzy Charge", "better": 1, "id": "avoid_elemental_damage_%_per_frenzy_charge", "matchers": [{"string": "#% chance to Avoid Elemental Damage from Hits per Frenzy Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "Adds # to # Lightning Damage to Spells per Power Charge", "better": 1, "id": "minimum_added_lightning_damage_to_spells_per_power_charge", "matchers": [{"string": "Adds # to # Lightning Damage to Spells per Power Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% Critical Hit Chance per Power Charge", "better": 1, "id": "additional_critical_strike_chance_per_power_charge_permyriad", "matchers": [{"string": "#% Critical Hit Chance per Power Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% Chance to Block Spell Damage per Power Charge", "better": 1, "id": "additional_spell_block_%_per_power_charge", "matchers": [{"string": "#% Chance to Block Spell Damage per Power Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Mana Cost of Raise Spectre", "better": 1, "id": "raise_spectre_mana_cost_+%", "matchers": [{"string": "#% increased Mana Cost of Raise Spectre", "negate": false}, {"string": "#% reduced Mana Cost of Raise Spectre", "negate": true}], "trade": {"ids": null}} +{"ref": "Consumes a Void Charge to Trigger Level # Void Shot when you fire Arrows with a Non-Triggered Skill", "better": 1, "id": "local_display_trigger_level_x_void_shot_on_arrow_fire_while_you_have_void_arrow", "matchers": [{"string": "Consumes a Void Charge to Trigger Level # Void Shot when you fire Arrows with a Non-Triggered Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "# Maximum Void Charges", "better": 1, "id": "maximum_void_arrows", "matchers": [{"string": "# Maximum Void Charges", "negate": false}], "trade": {"ids": null}} +{"ref": "Cannot be Stunned by Attacks if your other Ring is an Elder Item", "better": 1, "id": "cannot_be_stunned_by_attacks_if_other_ring_is_elder_item", "matchers": [{"string": "Cannot be Stunned by Attacks if your other Ring is an Elder Item", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Attack Damage if your other Ring is a Shaper Item", "better": 1, "id": "attack_damage_+%_if_other_ring_is_shaper_item", "matchers": [{"string": "#% increased Attack Damage if your other Ring is a Shaper Item", "negate": false}, {"string": "#% reduced Attack Damage if your other Ring is a Shaper Item", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Spell Damage if your other Ring is an Elder Item", "better": 1, "id": "spell_damage_+%_if_other_ring_is_elder_item", "matchers": [{"string": "#% increased Spell Damage if your other Ring is an Elder Item", "negate": false}, {"string": "#% reduced Spell Damage if your other Ring is an Elder Item", "negate": true}], "trade": {"ids": null}} +{"ref": "Cannot be Stunned by Spells if your other Ring is a Shaper Item", "better": 1, "id": "cannot_be_stunned_by_spells_if_other_ring_is_shaper_item", "matchers": [{"string": "Cannot be Stunned by Spells if your other Ring is a Shaper Item", "negate": false}], "trade": {"ids": null}} +{"ref": "Recover #% of Life when you use a Mana Flask", "better": 1, "id": "recover_%_maximum_life_on_mana_flask_use", "matchers": [{"string": "Recover #% of Life when you use a Mana Flask", "negate": false}], "trade": {"ids": null}} +{"ref": "DNT Non-instant Recovery from Mana Flasks also applies to Life", "better": 1, "id": "non_instant_mana_recovery_from_flasks_also_recovers_life", "matchers": [{"string": "DNT Non-instant Recovery from Mana Flasks also applies to Life", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%", "better": 1, "id": "spell_damage_+%_per_200_mana_spent_recently", "matchers": [{"string": "#% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%", "negate": false}, {"string": "#% reduced Spell Damage for each 200 total Mana you have Spent Recently", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Cost of Skills for each 200 total Mana Spent Recently", "better": 1, "id": "mana_cost_+%_per_200_mana_spent_recently", "matchers": [{"string": "#% increased Cost of Skills for each 200 total Mana Spent Recently", "negate": false}, {"string": "#% reduced Cost of Skills for each 200 total Mana Spent Recently", "negate": true}], "trade": {"ids": null}} +{"ref": "Adds # to # Physical Damage to Spells", "better": 1, "id": "spell_minimum_added_physical_damage", "matchers": [{"string": "Adds # to # Physical Damage to Spells", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Trigger Level 20 Tentacle Whip on Kill", "better": 1, "id": "local_display_trigger_tentacle_smash_on_kill_%_chance", "matchers": [{"string": "#% chance to Trigger Level 20 Tentacle Whip on Kill", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Trigger Level 20 Glimpse of Eternity when Hit", "better": 1, "id": "local_display_trigger_temporal_anomaly_when_hit_%_chance", "matchers": [{"string": "#% chance to Trigger Level 20 Glimpse of Eternity when Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Trigger Level 20 Summon Volatile Anomaly on Kill", "better": 1, "id": "local_display_trigger_void_sphere_on_kill_%_chance", "matchers": [{"string": "#% chance to Trigger Level 20 Summon Volatile Anomaly on Kill", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Petrification Statue Skill", "better": 1, "id": "local_display_grant_level_x_petrification_statue", "matchers": [{"string": "Grants Level # Petrification Statue Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Aspect of the Cat Skill", "better": 1, "id": "local_display_grants_skill_cat_aspect_level", "matchers": [{"string": "Grants Level # Aspect of the Cat Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Aspect of the Avian Skill", "better": 1, "id": "local_display_grants_skill_bird_aspect_level", "matchers": [{"string": "Grants Level # Aspect of the Avian Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Aspect of the Spider Skill", "better": 1, "id": "local_display_grants_skill_spider_aspect_level", "matchers": [{"string": "Grants Level # Aspect of the Spider Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Intimidating Cry Skill", "better": 1, "id": "local_display_grants_skill_intimidating_cry_level", "matchers": [{"string": "Grants Level # Intimidating Cry Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Aspect of the Crab Skill", "better": 1, "id": "local_display_grants_skill_crab_aspect_level", "matchers": [{"string": "Grants Level # Aspect of the Crab Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Area is influenced by The Shaper", "better": 1, "id": "map_atlas_influence_type", "matchers": [{"string": "Area is influenced by The Shaper", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Quantity of Items found when on Low Life", "better": 1, "id": "item_found_quantity_+%_when_on_low_life", "matchers": [{"string": "#% increased Quantity of Items found when on Low Life", "negate": false}, {"string": "#% reduced Quantity of Items found when on Low Life", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Damage per 15 Dexterity", "better": 1, "id": "damage_+%_per_15_dex", "matchers": [{"string": "#% increased Damage per 15 Dexterity", "negate": false}], "trade": {"ids": null}} +{"ref": "Regenerate # Life per second while Ignited", "better": 1, "id": "life_regeneration_per_minute_while_ignited", "matchers": [{"string": "Regenerate # Life per second while Ignited", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Elemental Damage if you've Killed a Cursed Enemy Recently", "better": 1, "id": "elemental_damage_+%_if_cursed_enemy_killed_recently", "matchers": [{"string": "#% increased Elemental Damage if you've Killed a Cursed Enemy Recently", "negate": false}, {"string": "#% reduced Elemental Damage if you've Killed a Cursed Enemy Recently", "negate": true}], "trade": {"ids": null}} +{"ref": "#% chance to deal Double Damage per 500 Strength", "better": 1, "id": "chance_to_deal_double_damage_%_per_500_strength", "matchers": [{"string": "#% chance to deal Double Damage per 500 Strength", "negate": false}], "trade": {"ids": null}} +{"ref": "Areas contain Beasts to hunt", "better": 1, "id": "map_spawn_bestiary_encounters", "matchers": [{"string": "Areas contain Beasts to hunt", "negate": false}], "trade": {"ids": null}} +{"ref": "Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy", "better": 1, "id": "raging_spirits_refresh_duration_when_they_kill_ignited_enemy", "matchers": [{"string": "Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain a Frenzy Charge on every 50th Rampage Kill", "better": 1, "id": "add_frenzy_charge_every_50_rampage_stacks", "matchers": [{"string": "Gain a Frenzy Charge on every 50th Rampage Kill", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Area of Effect per 25 Rampage Kills", "better": 1, "id": "area_of_effect_+%_per_25_rampage_stacks", "matchers": [{"string": "#% increased Area of Effect per 25 Rampage Kills", "negate": false}, {"string": "#% reduced Area of Effect per 25 Rampage Kills", "negate": true}], "trade": {"ids": null}} +{"ref": "#% chance to Chill Attackers for 4 seconds on Block", "better": 1, "id": "chill_attackers_for_4_seconds_on_block_%_chance", "matchers": [{"string": "#% chance to Chill Attackers for 4 seconds on Block", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Shock Attackers for 4 seconds on Block", "better": 1, "id": "shock_attackers_for_4_seconds_on_block_%_chance", "matchers": [{"string": "#% chance to Shock Attackers for 4 seconds on Block", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Trap And Mine Damage", "better": 1, "id": "local_display_socketed_gems_supported_by_level_x_trap_and_mine_damage", "matchers": [{"string": "Socketed Gems are Supported by Level # Trap And Mine Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Cluster Trap", "better": 1, "id": "local_display_socketed_gems_supported_by_level_x_cluster_trap", "matchers": [{"string": "Socketed Gems are Supported by Level # Cluster Trap", "negate": false}], "trade": {"ids": null}} +{"ref": "Adds # to # Cold Damage while you have Avian's Might", "better": 1, "id": "minimum_added_cold_damage_while_you_have_avians_might", "matchers": [{"string": "Adds # to # Cold Damage while you have Avian's Might", "negate": false}], "trade": {"ids": null}} +{"ref": "Adds # to # Lightning Damage while you have Avian's Might", "better": 1, "id": "minimum_added_lightning_damage_while_you_have_avians_might", "matchers": [{"string": "Adds # to # Lightning Damage while you have Avian's Might", "negate": false}], "trade": {"ids": null}} +{"ref": "+# seconds to Avian's Might Duration", "better": 1, "id": "avians_might_duration_ms_+", "matchers": [{"string": "# seconds to Avian's Might Duration", "negate": false}], "trade": {"ids": null}} +{"ref": "Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies", "better": 1, "id": "aspect_of_the_avian_grants_avians_might_and_avians_flight_to_nearby_allies", "matchers": [{"string": "Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Aspect of the Avian Buff Effect", "better": 1, "id": "aspect_of_the_avian_buff_effect_+%", "matchers": [{"string": "#% increased Aspect of the Avian Buff Effect", "negate": false}, {"string": "#% reduced Aspect of the Avian Buff Effect", "negate": true}], "trade": {"ids": null}} +{"ref": "Regenerate # Life per Second while you have Avian's Flight", "better": 1, "id": "life_regeneration_per_minute_while_you_have_avians_flight", "matchers": [{"string": "Regenerate # Life per Second while you have Avian's Flight", "negate": false}], "trade": {"ids": null}} +{"ref": "Regenerate # Mana per Second while you have Avian's Flight", "better": 1, "id": "mana_regeneration_rate_per_minute_while_you_have_avians_flight", "matchers": [{"string": "Regenerate # Mana per Second while you have Avian's Flight", "negate": false}], "trade": {"ids": null}} +{"ref": "+# seconds to Avian's Flight Duration", "better": 1, "id": "avians_flight_duration_ms_+", "matchers": [{"string": "# seconds to Avian's Flight Duration", "negate": false}], "trade": {"ids": null}} +{"ref": "Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight", "better": 1, "id": "local_display_trigger_level_20_tornado_when_you_gain_avians_flight_or_avians_might_%", "matchers": [{"string": "Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight", "negate": false}], "trade": {"ids": null}} +{"ref": "Area is Overgrown with Caustic Plants", "better": 1, "id": "map_area_contains_x_additional_clusters_of_explosive_eggs", "matchers": [{"string": "Area is Overgrown with Caustic Plants", "negate": false}], "trade": {"ids": null}} +{"ref": "Area is Overgrown with Large Caustic Plants", "better": 1, "id": "map_incursion_spawn_large_caustic_plants", "matchers": [{"string": "Area is Overgrown with Large Caustic Plants", "negate": false}], "trade": {"ids": null}} +{"ref": "Area is Overgrown with Parasitic Caustic Plants", "better": 1, "id": "map_incursion_spawn_parasitic_caustic_plants", "matchers": [{"string": "Area is Overgrown with Parasitic Caustic Plants", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Monster Cast Speed", "better": 1, "id": "map_monsters_cast_speed_+%", "matchers": [{"string": "#% increased Monster Cast Speed", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_2488361432"]}}} +{"ref": "Normal Monsters in this Area Regenerate #% of Life per second", "better": 1, "id": "map_normal_monster_life_regeneration_rate_per_minute_%", "matchers": [{"string": "Normal Monsters in this Area Regenerate #% of Life per second", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% Monster Physical Damage Reduction", "better": 1, "id": "map_monsters_additional_physical_damage_reduction", "matchers": [{"string": "#% Monster Physical Damage Reduction", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters deal #% of Physical Damage as Extra Lightning", "better": 1, "id": "map_monsters_%_physical_damage_to_gain_as_lightning", "matchers": [{"string": "Monsters deal #% of Physical Damage as Extra Lightning", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters Poison on Hit", "better": 1, "id": "map_monsters_poison_on_hit", "matchers": [{"string": "Monsters Poison on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Temple Architects drop an additional Map Currency Item", "better": 1, "id": "map_architects_drops_additional_map_currency", "matchers": [{"string": "Temple Architects drop an additional Map Currency Item", "negate": false}], "trade": {"ids": null}} +{"ref": "Area has a #% chance to contain Cadiro Perandus", "better": 1, "id": "map_spawn_cadiro_%_chance", "matchers": [{"string": "Area has a #% chance to contain Cadiro Perandus", "negate": false}], "trade": {"ids": null}} +{"ref": "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire", "better": 1, "id": "local_unique_jewel_elemental_hit_cannot_roll_fire_damage_with_40_int_+_dex_in_radius", "matchers": [{"string": "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire", "negate": false}], "trade": {"ids": null}} +{"ref": "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold", "better": 1, "id": "local_unique_jewel_elemental_hit_cannot_roll_cold_damage_with_40_int_+_str_in_radius", "matchers": [{"string": "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold", "negate": false}], "trade": {"ids": null}} +{"ref": "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning", "better": 1, "id": "local_unique_jewel_elemental_hit_cannot_roll_lightning_damage_with_40_dex_+_str_in_radius", "matchers": [{"string": "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning", "negate": false}], "trade": {"ids": null}} +{"ref": "Areas contain deposits of Voltaxic Sulphite", "better": 1, "id": "map_delve_rules", "matchers": [{"string": "Areas contain deposits of Voltaxic Sulphite", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Movement Speed per Endurance Charge", "better": 1, "id": "movement_speed_+%_per_endurance_charge", "matchers": [{"string": "#% increased Movement Speed per Endurance Charge", "negate": false}, {"string": "#% reduced Movement Speed per Endurance Charge", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Movement Speed per Power Charge", "better": 1, "id": "movement_speed_+%_per_power_charge", "matchers": [{"string": "#% increased Movement Speed per Power Charge", "negate": false}, {"string": "#% reduced Movement Speed per Power Charge", "negate": true}], "trade": {"ids": null}} +{"ref": "Regenerate #% of Life per second per Power Charge", "better": 1, "id": "life_regeneration_rate_per_minute_%_per_power_charge", "matchers": [{"string": "Regenerate #% of Life per second per Power Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Damage per Endurance Charge", "better": 1, "id": "damage_+%_per_endurance_charge", "matchers": [{"string": "#% increased Damage per Endurance Charge", "negate": false}, {"string": "#% reduced Damage per Endurance Charge", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Damage per Frenzy Charge", "better": 1, "id": "damage_+%_per_frenzy_charge", "matchers": [{"string": "#% increased Damage per Frenzy Charge", "negate": false}, {"string": "#% reduced Damage per Frenzy Charge", "negate": true}], "trade": {"ids": null}} +{"ref": "# to # Fire Damage per Endurance Charge", "better": 1, "id": "minimum_added_fire_damage_per_endurance_charge", "matchers": [{"string": "# to # Fire Damage per Endurance Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "# to # Lightning Damage per Power Charge", "better": 1, "id": "minimum_added_lightning_damage_per_power_charge", "matchers": [{"string": "# to # Lightning Damage per Power Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% Chance to Block Attack Damage per Endurance Charge", "better": 1, "id": "additional_attack_block_%_per_endurance_charge", "matchers": [{"string": "#% Chance to Block Attack Damage per Endurance Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% Chance to Block Attack Damage per Frenzy Charge", "better": 1, "id": "additional_attack_block_%_per_frenzy_charge", "matchers": [{"string": "#% Chance to Block Attack Damage per Frenzy Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% Chance to Block Attack Damage per Power Charge", "better": 1, "id": "additional_attack_block_%_per_power_charge", "matchers": [{"string": "#% Chance to Block Attack Damage per Power Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% chance to Suppress Spell Damage per Endurance Charge", "better": 1, "id": "spell_suppression_chance_%_per_endurance_charge", "matchers": [{"string": "#% chance to Suppress Spell Damage per Endurance Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% chance to Suppress Spell Damage per Power Charge", "better": 1, "id": "spell_suppression_chance_%_per_power_charge", "matchers": [{"string": "#% chance to Suppress Spell Damage per Power Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain #% of Fire Damage as Extra Chaos Damage per Endurance Charge", "better": 1, "id": "non_skill_fire_damage_%_to_gain_as_chaos_per_endurance_charge", "matchers": [{"string": "Gain #% of Fire Damage as Extra Chaos Damage per Endurance Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain #% of Cold Damage as Extra Chaos Damage per Frenzy Charge", "better": 1, "id": "non_skill_cold_damage_%_to_gain_as_chaos_per_frenzy_charge", "matchers": [{"string": "Gain #% of Cold Damage as Extra Chaos Damage per Frenzy Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain #% of Lightning Damage as Chaos Damage per Power Charge", "better": 1, "id": "non_skill_lightning_damage_%_to_gain_as_chaos_per_power_charge", "matchers": [{"string": "Gain #% of Lightning Damage as Chaos Damage per Power Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Armour per Endurance Charge", "better": 1, "id": "physical_damage_reduction_rating_+%_per_endurance_charge", "matchers": [{"string": "#% increased Armour per Endurance Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Energy Shield per Power Charge", "better": 1, "id": "energy_shield_+%_per_power_charge", "matchers": [{"string": "#% increased Energy Shield per Power Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", "better": 1, "id": "gain_maximum_endurance_charges_on_endurance_charge_gained_%_chance", "matchers": [{"string": "#% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges", "better": 1, "id": "gain_maximum_frenzy_charges_on_frenzy_charge_gained_%_chance", "matchers": [{"string": "#% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain # Endurance Charge every second if you've been Hit Recently", "better": 1, "id": "gain_endurance_charge_per_second_if_have_been_hit_recently", "matchers": [{"string": "Gain # Endurance Charge every second if you've been Hit Recently", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Attack and Cast Speed per Endurance Charge", "better": 1, "id": "attack_and_cast_speed_+%_per_endurance_charge", "matchers": [{"string": "#% increased Attack and Cast Speed per Endurance Charge", "negate": false}, {"string": "#% reduced Attack and Cast Speed per Endurance Charge", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Accuracy Rating per Frenzy Charge", "better": 1, "id": "accuracy_rating_+%_per_frenzy_charge", "matchers": [{"string": "#% increased Accuracy Rating per Frenzy Charge", "negate": false}, {"string": "#% reduced Accuracy Rating per Frenzy Charge", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Attack and Cast Speed per Power Charge", "better": 1, "id": "attack_and_cast_speed_+%_per_power_charge", "matchers": [{"string": "#% increased Attack and Cast Speed per Power Charge", "negate": false}, {"string": "#% reduced Attack and Cast Speed per Power Charge", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Critical Hit Chance per Endurance Charge", "better": 1, "id": "critical_strike_chance_+%_per_endurance_charge", "matchers": [{"string": "#% increased Critical Hit Chance per Endurance Charge", "negate": false}, {"string": "#% reduced Critical Hit Chance per Endurance Charge", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Critical Hit Chance per Frenzy Charge", "better": 1, "id": "critical_strike_chance_+%_per_frenzy_charge", "matchers": [{"string": "#% increased Critical Hit Chance per Frenzy Charge", "negate": false}, {"string": "#% reduced Critical Hit Chance per Frenzy Charge", "negate": true}], "trade": {"ids": null}} +{"ref": "#% additional Physical Damage Reduction per Frenzy Charge", "better": 1, "id": "physical_damage_reduction_percent_per_frenzy_charge", "matchers": [{"string": "#% additional Physical Damage Reduction per Frenzy Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "#% additional Physical Damage Reduction per Power Charge", "better": 1, "id": "physical_damage_reduction_percent_per_power_charge", "matchers": [{"string": "#% additional Physical Damage Reduction per Power Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges", "better": 1, "id": "intimidate_on_hit_chance_with_attacks_while_at_maximum_endurance_charges_%", "matchers": [{"string": "#% chance to Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges", "better": 1, "id": "gain_onslaught_on_hit_chance_while_at_maximum_frenzy_charges_%", "matchers": [{"string": "#% chance to Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Gain Arcane Surge on Hit with Spells while at maximum Power Charges", "better": 1, "id": "gain_arcane_surge_on_hit_chance_with_spells_while_at_maximum_power_charges_%", "matchers": [{"string": "#% chance to Gain Arcane Surge on Hit with Spells while at maximum Power Charges", "negate": false}], "trade": {"ids": null}} +{"ref": "You cannot be Stunned while at maximum Endurance Charges", "better": 1, "id": "cannot_be_stunned_while_at_max_endurance_charges", "matchers": [{"string": "You cannot be Stunned while at maximum Endurance Charges", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to gain a Flask Charge when you deal a Critical Hit while at maximum Frenzy Charges", "better": 1, "id": "gain_flask_charge_on_crit_chance_%_while_at_maximum_frenzy_charges", "matchers": [{"string": "#% chance to gain a Flask Charge when you deal a Critical Hit while at maximum Frenzy Charges", "negate": false}], "trade": {"ids": null}} +{"ref": "You can apply an additional Curse while at maximum Power Charges", "better": 1, "id": "number_of_additional_curses_allowed_while_at_maximum_power_charges", "matchers": [{"string": "You can apply an additional Curse while at maximum Power Charges", "negate": false}], "trade": {"ids": null}} +{"ref": "You have Iron Reflexes while at maximum Frenzy Charges", "better": 1, "id": "gain_iron_reflexes_while_at_maximum_frenzy_charges", "matchers": [{"string": "You have Iron Reflexes while at maximum Frenzy Charges", "negate": false}], "trade": {"ids": null}} +{"ref": "You have Mind over Matter while at maximum Power Charges", "better": 1, "id": "gain_mind_over_matter_while_at_maximum_power_charges", "matchers": [{"string": "You have Mind over Matter while at maximum Power Charges", "negate": false}], "trade": {"ids": null}} +{"ref": "Area contains Immortal Syndicate activity", "better": 1, "id": "map_spawn_betrayals", "matchers": [{"string": "Area contains Immortal Syndicate activity", "negate": false}], "trade": {"ids": null}} +{"ref": "Point Blank", "better": 1, "id": "keystone_point_blank", "matchers": [{"string": "Point Blank", "negate": false}], "trade": {"ids": null}} +{"ref": "Deals #% more Attack Damage", "better": 1, "id": "active_skill_attack_damage_+%_final", "matchers": [{"string": "Deals #% more Attack Damage", "negate": false}, {"string": "Deals #% less Attack Damage", "negate": true}], "trade": {"ids": null}} +{"ref": "Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell", "better": 1, "id": "gain_arcane_surge_on_spell_hit_by_you_or_your_totems", "matchers": [{"string": "Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Hinder Enemies on Hit with Spells", "better": 1, "id": "spells_chance_to_hinder_on_hit_%", "matchers": [{"string": "#% chance to Hinder Enemies on Hit with Spells", "negate": false}], "trade": {"ids": null}} +{"ref": "Players have +#% to All Resistances", "better": 1, "id": "map_players_resist_all_%", "matchers": [{"string": "Players have +#% to All Resistances", "negate": false}], "trade": {"ids": null}} +{"ref": "Stashes cannot be used", "better": 1, "id": "map_no_stashes", "matchers": [{"string": "Stashes cannot be used", "negate": false}], "trade": {"ids": null}} +{"ref": "Items cannot be sold to or purchased from NPCs", "better": 1, "id": "map_no_vendors", "matchers": [{"string": "Items cannot be sold to or purchased from NPCs", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Chaos Damage over Time Multiplier", "better": 1, "id": "chaos_dot_multiplier_+", "matchers": [{"string": "#% to Chaos Damage over Time Multiplier", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Cold Damage over Time Multiplier", "better": 1, "id": "cold_dot_multiplier_+", "matchers": [{"string": "#% to Cold Damage over Time Multiplier", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Physical Damage over Time Multiplier", "better": 1, "id": "physical_dot_multiplier_+", "matchers": [{"string": "#% to Physical Damage over Time Multiplier", "negate": false}], "trade": {"ids": null}} +{"ref": "#% more Unique Items found in Area", "better": 1, "id": "map_unique_item_drop_chance_+%", "matchers": [{"string": "#% more Unique Items found in Area", "negate": false}], "trade": {"ids": null}} +{"ref": "#% more Rare Shaper Items found in Area", "better": 1, "id": "map_shaper_rare_chance_+%", "matchers": [{"string": "#% more Rare Shaper Items found in Area", "negate": false}], "trade": {"ids": null}} +{"ref": "#% more Rare Elder Items found in Area", "better": 1, "id": "map_elder_rare_chance_+%", "matchers": [{"string": "#% more Rare Elder Items found in Area", "negate": false}], "trade": {"ids": null}} +{"ref": "#% more Divination Cards found in Area", "better": 1, "id": "map_divination_card_drop_chance_+%", "matchers": [{"string": "#% more Divination Cards found in Area", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% chance to contain an Expedition Encounter", "better": 1, "id": "map_expedition_encounter_additional_chance_%", "matchers": [{"string": "#% chance to contain an Expedition Encounter", "negate": false}], "trade": {"ids": null}} +{"ref": "Area contains an additional Abyss", "better": 1, "id": "map_num_extra_abysses", "matchers": [{"string": "Area contains an additional Abyss", "negate": false}], "trade": {"ids": null}} +{"ref": "All Metamorph Monsters have Rewards", "better": 1, "id": "map_metamorph_all_metamorphs_have_rewards", "matchers": [{"string": "All Metamorph Monsters have Rewards", "negate": false}], "trade": {"ids": null}} +{"ref": "Abysses in Area spawn #% increased Monsters", "better": 1, "id": "map_abyss_monster_spawn_amount_+%", "matchers": [{"string": "Abysses in Area spawn #% increased Monsters", "negate": false}, {"string": "Abysses in Area spawn #% reduced Monsters", "negate": true}], "trade": {"ids": null}} +{"ref": "Each Legion contains a War Hoard", "better": 1, "id": "map_legion_league_force_war_chest", "matchers": [{"string": "Each Legion contains a War Hoard", "negate": false}], "trade": {"ids": null}} +{"ref": "Blight Encounters contain up to # additional Blight Boss", "better": 1, "id": "map_blight_up_to_X_additional_bosses", "matchers": [{"string": "Blight Encounters contain up to # additional Blight Boss", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased number of Explosives", "better": 1, "id": "map_expedition_explosives_+%", "matchers": [{"string": "#% increased number of Explosives", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_3051490307"]}}} +{"ref": "Harbingers have #% chance to drop an additional Stack of Currency Shards", "better": 1, "id": "map_harbinger_additional_currency_shard_stack_chance_%", "matchers": [{"string": "Harbingers have #% chance to drop an additional Stack of Currency Shards", "negate": false}], "trade": {"ids": null}} +{"ref": "Areas contain Memory Fragments", "better": 1, "id": "map_synthesis_league", "matchers": [{"string": "Areas contain Memory Fragments", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Trigger Socketed Curse Spell when you Cast a Curse Spell, with a 0.25 second Cooldown", "better": 1, "id": "local_display_trigger_socketed_curses_on_casting_curse_%_chance", "matchers": [{"string": "#% chance to Trigger Socketed Curse Spell when you Cast a Curse Spell, with a 0.25 second Cooldown", "negate": false}], "trade": {"ids": null}} +{"ref": "Gain #% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped", "better": 1, "id": "non_skill_elemental_damage_%_to_gain_as_chaos_per_shaper_item_equipped", "matchers": [{"string": "Gain #% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped", "negate": false}], "trade": {"ids": null}} +{"ref": "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items", "better": 1, "id": "hits_ignore_enemy_chaos_resistance_if_all_shaper_items_equipped", "matchers": [{"string": "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items", "negate": false}], "trade": {"ids": null}} +{"ref": "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Elder Items", "better": 1, "id": "hits_ignore_enemy_chaos_resistance_if_all_elder_items_equipped", "matchers": [{"string": "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Elder Items", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Cold Damage per 1% Cold Resistance above 75%", "better": 1, "id": "cold_damage_+%_per_cold_resistance_above_75", "matchers": [{"string": "#% increased Cold Damage per 1% Cold Resistance above 75%", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Lightning Damage per 1% Lightning Resistance above 75%", "better": 1, "id": "lightning_damage_+%_per_lightning_resistance_above_75", "matchers": [{"string": "#% increased Lightning Damage per 1% Lightning Resistance above 75%", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Duration", "better": 1, "id": "local_flask_duration_+%", "matchers": [{"string": "#% increased Duration", "negate": false}, {"string": "#% reduced Duration", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2541588185", "explicit.stat_1256719186"]}}} +{"ref": "Consecrated Ground created by this Flask has Tripled Radius", "better": 1, "id": "local_flask_area_of_consecrated_ground_+%", "matchers": [{"string": "Consecrated Ground created by this Flask has Tripled Radius", "negate": false}], "trade": {"ids": null}} +{"ref": "Consecrated Ground created during Effect applies #% increased Damage taken to Enemies", "better": 1, "id": "local_flask_during_effect_enemy_damage_taken_+%_on_consecrated_ground", "matchers": [{"string": "Consecrated Ground created during Effect applies #% increased Damage taken to Enemies", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Critical Hit Chance against Enemies on Consecrated Ground during Effect", "better": 1, "id": "local_flask_critical_strike_chance_against_enemies_on_consecrated_ground_%_during_effect", "matchers": [{"string": "#% to Critical Hit Chance against Enemies on Consecrated Ground during Effect", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Critical Hit Chance against Enemies on Consecrated Ground during Effect", "better": 1, "id": "local_unique_flask_critical_strike_chance_+%_vs_enemies_on_consecrated_ground_during_flask_effect", "matchers": [{"string": "#% increased Critical Hit Chance against Enemies on Consecrated Ground during Effect", "negate": false}, {"string": "#% reduced Critical Hit Chance against Enemies on Consecrated Ground during Effect", "negate": true}], "trade": {"ids": null}} +{"ref": "Enemies you kill are Shocked", "better": 1, "id": "enemy_shock_on_kill", "matchers": [{"string": "Enemies you kill are Shocked", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to gain a Divine Charge on Hit", "better": 1, "id": "gain_divine_charge_on_hit_%", "matchers": [{"string": "#% chance to gain a Divine Charge on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "You gain Divinity for # seconds on reaching maximum Divine Charges\\nLose all Divine Charges when you gain Divinity", "better": 1, "id": "gain_divinity_ms_when_reaching_maximum_divine_charges", "matchers": [{"string": "You gain Divinity for # seconds on reaching maximum Divine Charges\\nLose all Divine Charges when you gain Divinity", "negate": false}], "trade": {"ids": null}} +{"ref": "#% reduced Mana Reservation Efficiency of Skills per 250 total Attributes", "better": 1, "id": "mana_reservation_efficiency_-2%_per_250_total_attributes", "matchers": [{"string": "#% reduced Mana Reservation Efficiency of Skills per 250 total Attributes", "negate": false}, {"string": "#% increased Mana Reservation Efficiency of Skills per 250 total Attributes", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Mana Reservation Efficiency of Skills per 250 total Attributes", "better": 1, "id": "mana_reservation_efficiency_+%_per_250_total_attributes", "matchers": [{"string": "#% increased Mana Reservation Efficiency of Skills per 250 total Attributes", "negate": false}, {"string": "#% reduced Mana Reservation Efficiency of Skills per 250 total Attributes", "negate": true}], "trade": {"ids": null}} +{"ref": "Nearby Allies have #% increased Defences per 100 Strength you have", "better": 1, "id": "dominance_defences_+%_on_nearby_allies_per_100_strength", "matchers": [{"string": "Nearby Allies have #% increased Defences per 100 Strength you have", "negate": false}, {"string": "Nearby Allies have #% reduced Defences per 100 Strength you have", "negate": true}], "trade": {"ids": null}} +{"ref": "Nearby Allies have #% Chance to Block Attack Damage per 100 Strength you have", "better": 1, "id": "dominance_additional_block_%_on_nearby_allies_per_100_strength", "matchers": [{"string": "Nearby Allies have #% Chance to Block Attack Damage per 100 Strength you have", "negate": false}], "trade": {"ids": null}} +{"ref": "Nearby Allies have +#% to Critical Damage Bonus per 100 Dexterity you have", "better": 1, "id": "dominance_critical_strike_multiplier_+_on_nearby_allies_per_100_dexterity", "matchers": [{"string": "Nearby Allies have +#% to Critical Damage Bonus per 100 Dexterity you have", "negate": false}], "trade": {"ids": null}} +{"ref": "Nearby Allies have #% increased Cast Speed per 100 Intelligence you have", "better": 1, "id": "dominance_cast_speed_+%_on_nearby_allies_per_100_intelligence", "matchers": [{"string": "Nearby Allies have #% increased Cast Speed per 100 Intelligence you have", "negate": false}, {"string": "Nearby Allies have #% reduced Cast Speed per 100 Intelligence you have", "negate": true}], "trade": {"ids": null}} +{"ref": "Grants Level # Precision Skill", "better": 1, "id": "local_display_grants_skill_accuracy_crits_aura_level", "matchers": [{"string": "Grants Level # Precision Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Precision has 100% increased Mana Reservation Efficiency", "better": 1, "id": "precision_mana_reservation_efficiency_+100%", "matchers": [{"string": "Precision has 100% increased Mana Reservation Efficiency", "negate": false}], "trade": {"ids": null}} +{"ref": "Precision has #% increased Mana Reservation Efficiency", "better": 1, "id": "precision_mana_reservation_efficiency_+%", "matchers": [{"string": "Precision has #% increased Mana Reservation Efficiency", "negate": false}, {"string": "Precision has #% reduced Mana Reservation Efficiency", "negate": true}], "trade": {"ids": null}} +{"ref": "Socketed Gems are Supported by Level # Divine Blessing", "better": 1, "id": "local_display_socketed_gems_supported_by_level_x_aura_duration", "matchers": [{"string": "Socketed Gems are Supported by Level # Divine Blessing", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Trigger a Socketed Bow Skill when you Attack with a Bow, with a 1 second Cooldown", "better": 1, "id": "chance_to_trigger_socketed_bow_skill_on_bow_attack_%", "matchers": [{"string": "#% chance to Trigger a Socketed Bow Skill when you Attack with a Bow, with a 1 second Cooldown", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Trigger a Socketed Bow Skill when you Cast a Spell while wielding a Bow, with a 1 second Cooldown", "better": 1, "id": "trigger_socketed_bow_skills_on_spell_cast_while_wielding_a_bow_%", "matchers": [{"string": "#% chance to Trigger a Socketed Bow Skill when you Cast a Spell while wielding a Bow, with a 1 second Cooldown", "negate": false}], "trade": {"ids": null}} +{"ref": "Life Leech effects are not removed when Unreserved Life is Filled", "better": 1, "id": "base_life_leech_does_not_stop_at_full_life", "matchers": [{"string": "Life Leech effects are not removed when Unreserved Life is Filled", "negate": false}], "trade": {"ids": null}} +{"ref": "When used in the Synthesiser, the new item will have an additional Herald Modifier", "better": 1, "id": "local_apply_extra_herald_mod_when_synthesised", "matchers": [{"string": "When used in the Synthesiser, the new item will have an additional Herald Modifier", "negate": false}], "trade": {"ids": null}} +{"ref": "Herald of Thunder has #% reduced Mana Reservation Efficiency", "better": 1, "id": "herald_of_thunder_mana_reservation_efficiency_-2%_per_1", "matchers": [{"string": "Herald of Thunder has #% reduced Mana Reservation Efficiency", "negate": false}, {"string": "Herald of Thunder has #% increased Mana Reservation Efficiency", "negate": true}], "trade": {"ids": null}} +{"ref": "Herald of Thunder has #% increased Mana Reservation Efficiency", "better": 1, "id": "herald_of_thunder_mana_reservation_efficiency_+%", "matchers": [{"string": "Herald of Thunder has #% increased Mana Reservation Efficiency", "negate": false}, {"string": "Herald of Thunder has #% reduced Mana Reservation Efficiency", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Lightning Damage while affected by Herald of Thunder", "better": 1, "id": "lightning_damage_+%_while_affected_by_herald_of_thunder", "matchers": [{"string": "#% increased Lightning Damage while affected by Herald of Thunder", "negate": false}, {"string": "#% reduced Lightning Damage while affected by Herald of Thunder", "negate": true}], "trade": {"ids": null}} +{"ref": "Herald of Thunder has #% increased Buff Effect", "better": 1, "id": "herald_of_thunder_buff_effect_+%", "matchers": [{"string": "Herald of Thunder has #% increased Buff Effect", "negate": false}, {"string": "Herald of Thunder has #% reduced Buff Effect", "negate": true}], "trade": {"ids": null}} +{"ref": "+#% to maximum Lightning Resistance while affected by Herald of Thunder", "better": 1, "id": "maximum_lightning_damage_resistance_%_while_affected_by_herald_of_thunder", "matchers": [{"string": "#% to maximum Lightning Resistance while affected by Herald of Thunder", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Lightning Resistance while affected by Herald of Thunder", "better": 1, "id": "lightning_damage_resistance_%_while_affected_by_herald_of_thunder", "matchers": [{"string": "#% to Lightning Resistance while affected by Herald of Thunder", "negate": false}], "trade": {"ids": null}} +{"ref": "Herald of Ash has #% reduced Mana Reservation Efficiency", "better": 1, "id": "herald_of_ash_mana_reservation_efficiency_-2%_per_1", "matchers": [{"string": "Herald of Ash has #% reduced Mana Reservation Efficiency", "negate": false}, {"string": "Herald of Ash has #% increased Mana Reservation Efficiency", "negate": true}], "trade": {"ids": null}} +{"ref": "Herald of Ash has #% increased Mana Reservation Efficiency", "better": 1, "id": "herald_of_ash_mana_reservation_efficiency_+%", "matchers": [{"string": "Herald of Ash has #% increased Mana Reservation Efficiency", "negate": false}, {"string": "Herald of Ash has #% reduced Mana Reservation Efficiency", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Fire Damage while affected by Herald of Ash", "better": 1, "id": "fire_damage_+%_while_affected_by_herald_of_ash", "matchers": [{"string": "#% increased Fire Damage while affected by Herald of Ash", "negate": false}, {"string": "#% reduced Fire Damage while affected by Herald of Ash", "negate": true}], "trade": {"ids": null}} +{"ref": "Herald of Ash has #% increased Buff Effect", "better": 1, "id": "herald_of_ash_buff_effect_+%", "matchers": [{"string": "Herald of Ash has #% increased Buff Effect", "negate": false}, {"string": "Herald of Ash has #% reduced Buff Effect", "negate": true}], "trade": {"ids": null}} +{"ref": "+#% to maximum Fire Resistance while affected by Herald of Ash", "better": 1, "id": "maximum_fire_damage_resistance_%_while_affected_by_herald_of_ash", "matchers": [{"string": "#% to maximum Fire Resistance while affected by Herald of Ash", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Fire Resistance while affected by Herald of Ash", "better": 1, "id": "fire_damage_resistance_%_while_affected_by_herald_of_ash", "matchers": [{"string": "#% to Fire Resistance while affected by Herald of Ash", "negate": false}], "trade": {"ids": null}} +{"ref": "Herald of Ice has #% reduced Mana Reservation Efficiency", "better": 1, "id": "herald_of_ice_mana_reservation_efficiency_-2%_per_1", "matchers": [{"string": "Herald of Ice has #% reduced Mana Reservation Efficiency", "negate": false}, {"string": "Herald of Ice has #% increased Mana Reservation Efficiency", "negate": true}], "trade": {"ids": null}} +{"ref": "Herald of Ice has #% increased Mana Reservation Efficiency", "better": 1, "id": "herald_of_ice_mana_reservation_efficiency_+%", "matchers": [{"string": "Herald of Ice has #% increased Mana Reservation Efficiency", "negate": false}, {"string": "Herald of Ice has #% reduced Mana Reservation Efficiency", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Cold Damage while affected by Herald of Ice", "better": 1, "id": "cold_damage_+%_while_affected_by_herald_of_ice", "matchers": [{"string": "#% increased Cold Damage while affected by Herald of Ice", "negate": false}, {"string": "#% reduced Cold Damage while affected by Herald of Ice", "negate": true}], "trade": {"ids": null}} +{"ref": "Herald of Ice has #% increased Buff Effect", "better": 1, "id": "herald_of_ice_buff_effect_+%", "matchers": [{"string": "Herald of Ice has #% increased Buff Effect", "negate": false}, {"string": "Herald of Ice has #% reduced Buff Effect", "negate": true}], "trade": {"ids": null}} +{"ref": "+#% to maximum Cold Resistance while affected by Herald of Ice", "better": 1, "id": "maximum_cold_damage_resistance_%_while_affected_by_herald_of_ice", "matchers": [{"string": "#% to maximum Cold Resistance while affected by Herald of Ice", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% to Cold Resistance while affected by Herald of Ice", "better": 1, "id": "cold_damage_resistance_%_while_affected_by_herald_of_ice", "matchers": [{"string": "#% to Cold Resistance while affected by Herald of Ice", "negate": false}], "trade": {"ids": null}} +{"ref": "Herald of Purity has #% reduced Mana Reservation Efficiency", "better": 1, "id": "herald_of_purity_mana_reservation_efficiency_-2%_per_1", "matchers": [{"string": "Herald of Purity has #% reduced Mana Reservation Efficiency", "negate": false}, {"string": "Herald of Purity has #% increased Mana Reservation Efficiency", "negate": true}], "trade": {"ids": null}} +{"ref": "Herald of Purity has #% increased Mana Reservation Efficiency", "better": 1, "id": "herald_of_purity_mana_reservation_efficiency_+%", "matchers": [{"string": "Herald of Purity has #% increased Mana Reservation Efficiency", "negate": false}, {"string": "Herald of Purity has #% reduced Mana Reservation Efficiency", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Physical Damage while affected by Herald of Purity", "better": 1, "id": "physical_damage_+%_while_affected_by_herald_of_purity", "matchers": [{"string": "#% increased Physical Damage while affected by Herald of Purity", "negate": false}, {"string": "#% reduced Physical Damage while affected by Herald of Purity", "negate": true}], "trade": {"ids": null}} +{"ref": "Herald of Purity has #% increased Buff Effect", "better": 1, "id": "herald_of_light_buff_effect_+%", "matchers": [{"string": "Herald of Purity has #% increased Buff Effect", "negate": false}, {"string": "Herald of Purity has #% reduced Buff Effect", "negate": true}], "trade": {"ids": null}} +{"ref": "Sentinels of Purity deal #% increased Damage", "better": 1, "id": "sentinel_of_purity_damage_+%", "matchers": [{"string": "Sentinels of Purity deal #% increased Damage", "negate": false}, {"string": "Sentinels of Purity deal #% reduced Damage", "negate": true}], "trade": {"ids": null}} +{"ref": "#% additional Physical Damage Reduction while affected by Herald of Purity", "better": 1, "id": "physical_damage_reduction_%_while_affected_by_herald_of_purity", "matchers": [{"string": "#% additional Physical Damage Reduction while affected by Herald of Purity", "negate": false}], "trade": {"ids": null}} +{"ref": "Herald of Agony has #% reduced Mana Reservation Efficiency", "better": 1, "id": "herald_of_agony_mana_reservation_efficiency_-2%_per_1", "matchers": [{"string": "Herald of Agony has #% reduced Mana Reservation Efficiency", "negate": false}, {"string": "Herald of Agony has #% increased Mana Reservation Efficiency", "negate": true}], "trade": {"ids": null}} +{"ref": "Herald of Agony has #% increased Mana Reservation Efficiency", "better": 1, "id": "herald_of_agony_mana_reservation_efficiency_+%", "matchers": [{"string": "Herald of Agony has #% increased Mana Reservation Efficiency", "negate": false}, {"string": "Herald of Agony has #% reduced Mana Reservation Efficiency", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Chaos Damage while affected by Herald of Agony", "better": 1, "id": "chaos_damage_+%_while_affected_by_herald_of_agony", "matchers": [{"string": "#% increased Chaos Damage while affected by Herald of Agony", "negate": false}, {"string": "#% reduced Chaos Damage while affected by Herald of Agony", "negate": true}], "trade": {"ids": null}} +{"ref": "Herald of Agony has #% increased Buff Effect", "better": 1, "id": "herald_of_agony_buff_effect_+%", "matchers": [{"string": "Herald of Agony has #% increased Buff Effect", "negate": false}, {"string": "Herald of Agony has #% reduced Buff Effect", "negate": true}], "trade": {"ids": null}} +{"ref": "Agony Crawler deals #% increased Damage", "better": 1, "id": "agony_crawler_damage_+%", "matchers": [{"string": "Agony Crawler deals #% increased Damage", "negate": false}, {"string": "Agony Crawler deals #% reduced Damage", "negate": true}], "trade": {"ids": null}} +{"ref": "+#% to Chaos Resistance while affected by Herald of Agony", "better": 1, "id": "chaos_damage_resistance_%_while_affected_by_herald_of_agony", "matchers": [{"string": "#% to Chaos Resistance while affected by Herald of Agony", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Rare Monsters drop an additional Currency Item", "better": 1, "id": "map_synthesised_rare_monster_drop_additional_currency", "matchers": [{"string": "Synthesised Rare Monsters drop an additional Currency Item", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Magic Monsters have #% chance to drop a Currency Item", "better": 1, "id": "map_synthesised_magic_monster_additional_currency_item_drop_chance_%", "matchers": [{"string": "Synthesised Magic Monsters have #% chance to drop a Currency Item", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Monsters have #% chance to drop a Currency Item", "better": 1, "id": "map_synthesised_monster_additional_currency_item_drop_chance_%", "matchers": [{"string": "Synthesised Monsters have #% chance to drop a Currency Item", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Rare Monsters drop an additional Quality Currency Item", "better": 1, "id": "map_synthesised_rare_monster_drop_additional_quality_currency", "matchers": [{"string": "Synthesised Rare Monsters drop an additional Quality Currency Item", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Magic Monsters have #% chance to drop a Quality Currency Item", "better": 1, "id": "map_synthesised_magic_monster_additional_quality_currency_item_drop_chance_%", "matchers": [{"string": "Synthesised Magic Monsters have #% chance to drop a Quality Currency Item", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Monsters have #% chance to drop a Quality Currency Item", "better": 1, "id": "map_synthesised_monster_additional_quality_currency_item_drop_chance_%", "matchers": [{"string": "Synthesised Monsters have #% chance to drop a Quality Currency Item", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Rare Monsters have #% increased chance to drop a Fractured Item", "better": 1, "id": "map_synthesised_rare_monster_fractured_item_drop_chance_+%", "matchers": [{"string": "Synthesised Rare Monsters have #% increased chance to drop a Fractured Item", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Magic Monsters have #% increased chance to drop a Fractured Item", "better": 1, "id": "map_synthesised_magic_monster_fractured_item_drop_chance_+%", "matchers": [{"string": "Synthesised Magic Monsters have #% increased chance to drop a Fractured Item", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Monsters have #% increased chance to drop a Fractured Item", "better": 1, "id": "map_synthesised_monster_fractured_item_drop_chance_+%", "matchers": [{"string": "Synthesised Monsters have #% increased chance to drop a Fractured Item", "negate": false}], "trade": {"ids": null}} +{"ref": "Items dropped by Synthesised Rare Monsters have #% chance to be Corrupted", "better": 1, "id": "map_synthesised_rare_monster_items_drop_corrupted_%", "matchers": [{"string": "Items dropped by Synthesised Rare Monsters have #% chance to be Corrupted", "negate": false}], "trade": {"ids": null}} +{"ref": "Items dropped by Synthesised Magic Monsters have #% chance to be Corrupted", "better": 1, "id": "map_synthesised_magic_monster_items_drop_corrupted_%", "matchers": [{"string": "Items dropped by Synthesised Magic Monsters have #% chance to be Corrupted", "negate": false}], "trade": {"ids": null}} +{"ref": "Items dropped by Synthesised Monsters have #% chance to be Corrupted", "better": 1, "id": "map_synthesised_monster_items_drop_corrupted_%", "matchers": [{"string": "Items dropped by Synthesised Monsters have #% chance to be Corrupted", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Rare Monsters have #% increased chance to drop a Map", "better": 1, "id": "map_synthesised_rare_monster_map_drop_chance_+%", "matchers": [{"string": "Synthesised Rare Monsters have #% increased chance to drop a Map", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Magic Monsters have #% increased chance to drop a Map", "better": 1, "id": "map_synthesised_magic_monster_map_drop_chance_+%", "matchers": [{"string": "Synthesised Magic Monsters have #% increased chance to drop a Map", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Monsters have #% increased chance to drop a Map", "better": 1, "id": "map_synthesised_monster_map_drop_chance_+%", "matchers": [{"string": "Synthesised Monsters have #% increased chance to drop a Map", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Rare Monsters have #% chance to drop a Divination Card", "better": 1, "id": "map_synthesised_rare_monster_additional_divination_card_drop_chance_%", "matchers": [{"string": "Synthesised Rare Monsters have #% chance to drop a Divination Card", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Magic Monsters have #% chance to drop a Divination Card", "better": 1, "id": "map_synthesised_magic_monster_additional_divination_card_drop_chance_%", "matchers": [{"string": "Synthesised Magic Monsters have #% chance to drop a Divination Card", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Monsters have #% chance to drop a Divination Card", "better": 1, "id": "map_synthesised_monster_additional_divination_card_drop_chance_%", "matchers": [{"string": "Synthesised Monsters have #% chance to drop a Divination Card", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Rare Monsters have #% increased chance to drop a Unique Item", "better": 1, "id": "map_synthesised_rare_monster_unique_item_drop_chance_+%", "matchers": [{"string": "Synthesised Rare Monsters have #% increased chance to drop a Unique Item", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Magic Monsters have #% increased chance to drop a Unique Item", "better": 1, "id": "map_synthesised_magic_monster_unique_item_drop_chance_+%", "matchers": [{"string": "Synthesised Magic Monsters have #% increased chance to drop a Unique Item", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Monsters have #% increased chance to drop a Unique Item", "better": 1, "id": "map_synthesised_monster_unique_item_drop_chance_+%", "matchers": [{"string": "Synthesised Monsters have #% increased chance to drop a Unique Item", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Quantity of Items Dropped by Synthesised Rare Monsters", "better": 1, "id": "map_synthesised_rare_monster_dropped_item_quantity_+%", "matchers": [{"string": "#% increased Quantity of Items Dropped by Synthesised Rare Monsters", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Quantity of Items Dropped by Synthesised Magic Monsters", "better": 1, "id": "map_synthesised_magic_monster_dropped_item_quantity_+%", "matchers": [{"string": "#% increased Quantity of Items Dropped by Synthesised Magic Monsters", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Quantity of Items Dropped by Synthesised Monsters", "better": 1, "id": "map_synthesised_monster_dropped_item_quantity_+%", "matchers": [{"string": "#% increased Quantity of Items Dropped by Synthesised Monsters", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Rarity of Items Dropped by Synthesised Rare Monsters", "better": 1, "id": "map_synthesised_rare_monster_dropped_item_rarity_+%", "matchers": [{"string": "#% increased Rarity of Items Dropped by Synthesised Rare Monsters", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Rarity of Items Dropped by Synthesised Magic Monsters", "better": 1, "id": "map_synthesised_magic_monster_dropped_item_rarity_+%", "matchers": [{"string": "#% increased Rarity of Items Dropped by Synthesised Magic Monsters", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Rarity of Items Dropped by Synthesised Monsters", "better": 1, "id": "map_synthesised_monster_dropped_item_rarity_+%", "matchers": [{"string": "#% increased Rarity of Items Dropped by Synthesised Monsters", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Rare Monsters grant #% increased Experience", "better": 1, "id": "map_synthesised_rare_monster_slain_experience_+%", "matchers": [{"string": "Synthesised Rare Monsters grant #% increased Experience", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Magic Monsters grant #% increased Experience", "better": 1, "id": "map_synthesised_magic_monster_slain_experience_+%", "matchers": [{"string": "Synthesised Magic Monsters grant #% increased Experience", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Monsters grant #% increased Experience", "better": 1, "id": "map_synthesised_monster_slain_experience_+%", "matchers": [{"string": "Synthesised Monsters grant #% increased Experience", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Rare Monsters drop an additional Currency Shard", "better": 1, "id": "map_synthesised_rare_monster_drop_additional_currency_shard", "matchers": [{"string": "Synthesised Rare Monsters drop an additional Currency Shard", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Magic Monsters have #% chance to drop a Currency Shard", "better": 1, "id": "map_synthesised_magic_monster_additional_currency_shard_drop_chance_%", "matchers": [{"string": "Synthesised Magic Monsters have #% chance to drop a Currency Shard", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Monsters have #% chance to drop a Currency Shard", "better": 1, "id": "map_synthesised_monster_additional_currency_shard_drop_chance_%", "matchers": [{"string": "Synthesised Monsters have #% chance to drop a Currency Shard", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Rare Monsters have #% chance to drop a Shaper Item", "better": 1, "id": "map_synthesised_rare_monster_additional_shaper_item_drop_chance_%", "matchers": [{"string": "Synthesised Rare Monsters have #% chance to drop a Shaper Item", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Magic Monsters have #% chance to drop a Shaper Item", "better": 1, "id": "map_synthesised_magic_monster_additional_shaper_item_drop_chance_%", "matchers": [{"string": "Synthesised Magic Monsters have #% chance to drop a Shaper Item", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Monsters have #% chance to drop a Shaper Item", "better": 1, "id": "map_synthesised_monster_additional_shaper_item_drop_chance_%", "matchers": [{"string": "Synthesised Monsters have #% chance to drop a Shaper Item", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Rare Monsters have #% chance to drop an Elder Item", "better": 1, "id": "map_synthesised_rare_monster_additional_elder_item_drop_chance_%", "matchers": [{"string": "Synthesised Rare Monsters have #% chance to drop an Elder Item", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Magic Monsters have #% chance to drop an Elder Item", "better": 1, "id": "map_synthesised_magic_monster_additional_elder_item_drop_chance_%", "matchers": [{"string": "Synthesised Magic Monsters have #% chance to drop an Elder Item", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Monsters have #% chance to drop an Elder Item", "better": 1, "id": "map_synthesised_monster_additional_elder_item_drop_chance_%", "matchers": [{"string": "Synthesised Monsters have #% chance to drop an Elder Item", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Rare Monsters drop an additional Breach Splinter", "better": 1, "id": "map_synthesised_rare_monster_drop_additional_breach_splinter", "matchers": [{"string": "Synthesised Rare Monsters drop an additional Breach Splinter", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Magic Monsters have #% chance to drop a Breach Splinter", "better": 1, "id": "map_synthesised_magic_monster_additional_breach_splinter_drop_chance_%", "matchers": [{"string": "Synthesised Magic Monsters have #% chance to drop a Breach Splinter", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Monsters have #% chance to drop a Breach Splinter", "better": 1, "id": "map_synthesised_monster_additional_breach_splinter_drop_chance_%", "matchers": [{"string": "Synthesised Monsters have #% chance to drop a Breach Splinter", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Rare Monsters have #% chance to drop a Fossil", "better": 1, "id": "map_synthesised_rare_monster_additional_fossil_drop_chance_%", "matchers": [{"string": "Synthesised Rare Monsters have #% chance to drop a Fossil", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Magic Monsters have #% chance to drop a Fossil", "better": 1, "id": "map_synthesised_magic_monster_additional_fossil_drop_chance_%", "matchers": [{"string": "Synthesised Magic Monsters have #% chance to drop a Fossil", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Monsters have #% chance to drop a Fossil", "better": 1, "id": "map_synthesised_monster_additional_fossil_drop_chance_%", "matchers": [{"string": "Synthesised Monsters have #% chance to drop a Fossil", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Rare Monsters have #% chance to drop a Jewel", "better": 1, "id": "map_synthesised_rare_monster_additional_jewel_drop_chance_%", "matchers": [{"string": "Synthesised Rare Monsters have #% chance to drop a Jewel", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Rare Monsters have #% chance to drop an Abyss Jewel", "better": 1, "id": "map_synthesised_rare_monster_additional_abyss_jewel_drop_chance_%", "matchers": [{"string": "Synthesised Rare Monsters have #% chance to drop an Abyss Jewel", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Rare Monsters have #% chance to drop a Map", "better": 1, "id": "map_synthesised_rare_monster_additional_map_drop_chance_%", "matchers": [{"string": "Synthesised Rare Monsters have #% chance to drop a Map", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Rare Monsters have #% chance to drop a Talisman", "better": 1, "id": "map_synthesised_rare_monster_additional_talisman_drop_chance_%", "matchers": [{"string": "Synthesised Rare Monsters have #% chance to drop a Talisman", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Rare Monsters have #% chance to drop an Essence", "better": 1, "id": "map_synthesised_rare_monster_additional_essence_drop_chance_%", "matchers": [{"string": "Synthesised Rare Monsters have #% chance to drop an Essence", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Rare Monsters have a #% chance to resurrect as an Ally when slain", "better": 1, "id": "map_synthesised_rare_monster_resurrect_as_ally_chance_%", "matchers": [{"string": "Synthesised Rare Monsters have a #% chance to resurrect as an Ally when slain", "negate": false}], "trade": {"ids": null}} +{"ref": "When a Player Kills a Synthesised Rare Monster, they have #% chance to gain its Modifiers for 20 seconds", "better": 1, "id": "map_synthesised_rare_monster_gives_mods_to_killer_chance_%", "matchers": [{"string": "When a Player Kills a Synthesised Rare Monster, they have #% chance to gain its Modifiers for 20 seconds", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Rare Monsters have #% chance to drop a Vaal Fragment", "better": 1, "id": "map_synthesised_rare_monster_additional_vaal_fragment_drop_chance_%", "matchers": [{"string": "Synthesised Rare Monsters have #% chance to drop a Vaal Fragment", "negate": false}], "trade": {"ids": null}} +{"ref": "Synthesised Rare Monsters have #% chance to drop a Veiled Item", "better": 1, "id": "map_synthesised_rare_monster_additional_veiled_item_drop_chance_%", "matchers": [{"string": "Synthesised Rare Monsters have #% chance to drop a Veiled Item", "negate": false}], "trade": {"ids": null}} +{"ref": "Duplicate up to # Synthesised Rare Monsters", "better": 1, "id": "map_duplicate_x_synthesised_rare_monsters", "matchers": [{"string": "Duplicate up to # Synthesised Rare Monsters", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance for Synthesised Packs to be upgraded to Magic", "better": 1, "id": "map_upgrade_synthesised_pack_to_magic_%_chance", "matchers": [{"string": "#% chance for Synthesised Packs to be upgraded to Magic", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance for Synthesised Packs to be upgraded to Rare", "better": 1, "id": "map_upgrade_synthesised_pack_to_rare_%_chance", "matchers": [{"string": "#% chance for Synthesised Packs to be upgraded to Rare", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance for Synthesised Rare Packs to have an additional Rare Monster", "better": 1, "id": "map_additional_rare_in_synthesised_rare_pack_%_chance", "matchers": [{"string": "#% chance for Synthesised Rare Packs to have an additional Rare Monster", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Size of Synthesised Monster Packs", "better": 1, "id": "map_synthesised_monster_pack_size_+%", "matchers": [{"string": "#% increased Size of Synthesised Monster Packs", "negate": false}], "trade": {"ids": null}} +{"ref": "Doubles the values of Memory Modifiers affecting Memories placed on this location", "better": 1, "id": "synthesis_map_global_mod_values_doubled_on_this_node", "matchers": [{"string": "Doubles the values of Memory Modifiers affecting Memories placed on this location", "negate": false}], "trade": {"ids": null}} +{"ref": "Triples the values of Global Mods affecting Memories placed on this location", "better": 1, "id": "synthesis_map_global_mod_values_tripled_on_this_node", "matchers": [{"string": "Triples the values of Global Mods affecting Memories placed on this location", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Experience from Monsters Slain in Memories placed on this Location", "better": 1, "id": "synthesis_map_monster_slain_experience_+%_on_this_node", "matchers": [{"string": "#% increased Experience from Monsters Slain in Memories placed on this Location", "negate": false}, {"string": "#% reduced Experience from Monsters Slain in Memories placed on this Location", "negate": true}], "trade": {"ids": null}} +{"ref": "Memories at this location do not collapse", "better": 1, "id": "synthesis_map_memories_do_not_collapse_on_this_node", "matchers": [{"string": "Memories at this location do not collapse", "negate": false}], "trade": {"ids": null}} +{"ref": "Allow for memories at or adjacent to this location have BONUS", "better": 1, "id": "synthesis_map_nearby_memories_have_bonus", "matchers": [{"string": "Allow for memories at or adjacent to this location have BONUS", "negate": false}], "trade": {"ids": null}} +{"ref": "Area contains # additional Synthesised Chest which contains Normal Monsters", "better": 1, "id": "map_synthesis_spawn_additional_normal_ambush_chest", "matchers": [{"string": "Area contains # additional Synthesised Chest which contains Normal Monsters", "negate": false}], "trade": {"ids": null}} +{"ref": "Area contains # additional Synthesised Chest which contains Magic Monsters", "better": 1, "id": "map_synthesis_spawn_additional_magic_ambush_chest", "matchers": [{"string": "Area contains # additional Synthesised Chest which contains Magic Monsters", "negate": false}], "trade": {"ids": null}} +{"ref": "Area contains # additional Synthesised Chest which contains Rare Monsters", "better": 1, "id": "map_synthesis_spawn_additional_rare_ambush_chest", "matchers": [{"string": "Area contains # additional Synthesised Chest which contains Rare Monsters", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Skill Effect Duration while affected by Malevolence", "better": 1, "id": "skill_effect_duration_+%_while_affected_by_malevolence", "matchers": [{"string": "#% increased Skill Effect Duration while affected by Malevolence", "negate": false}, {"string": "#% reduced Skill Effect Duration while affected by Malevolence", "negate": true}], "trade": {"ids": null}} +{"ref": "+#% to Damage over Time Multiplier while affected by Malevolence", "better": 1, "id": "dot_multiplier_+_while_affected_by_malevolence", "matchers": [{"string": "#% to Damage over Time Multiplier while affected by Malevolence", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Recovery rate of Life and Energy Shield while affected by Malevolence", "better": 1, "id": "life_and_energy_shield_recovery_rate_+%_while_affected_by_malevolence", "matchers": [{"string": "#% increased Recovery rate of Life and Energy Shield while affected by Malevolence", "negate": false}, {"string": "#% reduced Recovery rate of Life and Energy Shield while affected by Malevolence", "negate": true}], "trade": {"ids": null}} +{"ref": "Unaffected by Poison while affected by Malevolence", "better": 1, "id": "unaffected_by_poison_while_affected_by_malevolence", "matchers": [{"string": "Unaffected by Poison while affected by Malevolence", "negate": false}], "trade": {"ids": null}} +{"ref": "Unaffected by Bleeding while affected by Malevolence", "better": 1, "id": "unaffected_by_bleeding_while_affected_by_malevolence", "matchers": [{"string": "Unaffected by Bleeding while affected by Malevolence", "negate": false}], "trade": {"ids": null}} +{"ref": "Damaging Ailments you inflict deal Damage #% faster while affected by Malevolence", "better": 1, "id": "your_ailments_deal_damage_faster_%_while_affected_by_malevolence", "matchers": [{"string": "Damaging Ailments you inflict deal Damage #% faster while affected by Malevolence", "negate": false}], "trade": {"ids": null}} +{"ref": "Critical Hits Penetrate #% of Enemy Elemental Resistances while affected by Zealotry", "better": 1, "id": "critical_strikes_penetrates_%_elemental_resistances_while_affected_by_zealotry", "matchers": [{"string": "Critical Hits Penetrate #% of Enemy Elemental Resistances while affected by Zealotry", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Cast Speed while affected by Zealotry", "better": 1, "id": "cast_speed_+%_while_affected_by_zealotry", "matchers": [{"string": "#% increased Cast Speed while affected by Zealotry", "negate": false}, {"string": "#% increased Cast Speed while affected by Zealotry", "negate": true}], "trade": {"ids": null}} +{"ref": "Effects of Consecrated Ground you create while affected by Zealotry Linger for # seconds", "better": 1, "id": "consecrated_ground_effect_lingers_for_ms_after_leaving_the_area_while_affected_by_zealotry", "matchers": [{"string": "Effects of Consecrated Ground you create while affected by Zealotry Linger for # seconds", "negate": false}], "trade": {"ids": null}} +{"ref": "Consecrated Ground you create while affected by Zealotry causes enemies to take #% increased Damage", "better": 1, "id": "consecrated_ground_enemy_damage_taken_+%_while_affected_by_zealotry", "matchers": [{"string": "Consecrated Ground you create while affected by Zealotry causes enemies to take #% increased Damage", "negate": false}, {"string": "Consecrated Ground you create while affected by Zealotry causes enemies to take #% reduced Damage", "negate": true}], "trade": {"ids": null}} +{"ref": "Gain Arcane Surge for 4 seconds when you create Consecrated Ground while affected by Zealotry", "better": 1, "id": "gain_arcane_surge_for_4_seconds_when_you_create_consecrated_ground_while_affected_by_zealotry", "matchers": [{"string": "Gain Arcane Surge for 4 seconds when you create Consecrated Ground while affected by Zealotry", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Critical Hit Chance against Enemies on Consecrated Ground while affected by Zealotry", "better": 1, "id": "critical_strike_chance_+%_against_enemies_on_consecrated_ground_while_affected_by_zealotry", "matchers": [{"string": "#% increased Critical Hit Chance against Enemies on Consecrated Ground while affected by Zealotry", "negate": false}], "trade": {"ids": null}} +{"ref": "Memories placed on this location are unaffected by Global Mods", "better": 1, "id": "synthesis_map_node_grants_no_global_mod", "matchers": [{"string": "Memories placed on this location are unaffected by Global Mods", "negate": false}], "trade": {"ids": null}} +{"ref": "Doubles the values of Global Mods affecting Memories placed next to this Location", "better": 1, "id": "synthesis_map_adjacent_nodes_global_mod_values_doubled", "matchers": [{"string": "Doubles the values of Global Mods affecting Memories placed next to this Location", "negate": false}], "trade": {"ids": null}} +{"ref": "Memories placed on this location can be run an additional time before Decaying", "better": 1, "id": "synthesis_map_node_additional_uses_+", "matchers": [{"string": "Memories placed on this location can be run an additional time before Decaying", "negate": false}], "trade": {"ids": null}} +{"ref": "Memories placed on this location are # Level Higher", "better": 1, "id": "synthesis_map_node_level_+", "matchers": [{"string": "Memories placed on this location are # Level Higher", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters Slain within Memories placed on this location drop no Items", "better": 1, "id": "synthesis_map_node_monsters_drop_no_items", "matchers": [{"string": "Monsters Slain within Memories placed on this location drop no Items", "negate": false}], "trade": {"ids": null}} +{"ref": "Doubles bonuses to Quantity of Items Found in Memories placed on this location", "better": 1, "id": "synthesis_map_node_item_quantity_increases_doubled", "matchers": [{"string": "Doubles bonuses to Quantity of Items Found in Memories placed on this location", "negate": false}], "trade": {"ids": null}} +{"ref": "Doubles bonuses to Rarity of Items Found in Memories placed on this location", "better": 1, "id": "synthesis_map_node_item_rarity_increases_doubled", "matchers": [{"string": "Doubles bonuses to Rarity of Items Found in Memories placed on this location", "negate": false}], "trade": {"ids": null}} +{"ref": "Doubles bonuses to Monster Pack Size in Memories placed on this location", "better": 1, "id": "synthesis_map_node_pack_size_increases_doubled", "matchers": [{"string": "Doubles bonuses to Monster Pack Size in Memories placed on this location", "negate": false}], "trade": {"ids": null}} +{"ref": "Applies a Memory Modifier to Memories placed on or next to this location", "better": 1, "id": "synthesis_map_node_grants_additional_global_mod", "matchers": [{"string": "Applies a Memory Modifier to Memories placed on or next to this location", "negate": false}], "trade": {"ids": null}} +{"ref": "Guest Monsters within Memories placed on this location are replaced by Synthesised Monsters", "better": 1, "id": "synthesis_map_node_guest_monsters_replaced_by_synthesised_monsters", "matchers": [{"string": "Guest Monsters within Memories placed on this location are replaced by Synthesised Monsters", "negate": false}], "trade": {"ids": null}} +{"ref": "Triples the values of Global Mods affecting Memories placed on this location, if all adjacent locations have Memories", "better": 1, "id": "synthesis_map_node_global_mod_values_tripled_if_adjacent_squares_have_memories", "matchers": [{"string": "Triples the values of Global Mods affecting Memories placed on this location, if all adjacent locations have Memories", "negate": false}], "trade": {"ids": null}} +{"ref": "Area contains additional waves of Ghosts", "better": 1, "id": "map_cowards_trial_extra_ghosts", "matchers": [{"string": "Area contains additional waves of Ghosts", "negate": false}], "trade": {"ids": null}} +{"ref": "Area contains additional waves of Phantasms", "better": 1, "id": "map_cowards_trial_extra_phantasms", "matchers": [{"string": "Area contains additional waves of Phantasms", "negate": false}], "trade": {"ids": null}} +{"ref": "Area contains additional waves of Zombies", "better": 1, "id": "map_cowards_trial_extra_zombies", "matchers": [{"string": "Area contains additional waves of Zombies", "negate": false}], "trade": {"ids": null}} +{"ref": "Area contains additional waves of Raging Spirits", "better": 1, "id": "map_cowards_trial_extra_raging_spirits", "matchers": [{"string": "Area contains additional waves of Raging Spirits", "negate": false}], "trade": {"ids": null}} +{"ref": "Area contains additional waves of Bone Rhoas", "better": 1, "id": "map_cowards_trial_extra_rhoas", "matchers": [{"string": "Area contains additional waves of Bone Rhoas", "negate": false}], "trade": {"ids": null}} +{"ref": "Area contains additional waves of Oriathan Zombies", "better": 1, "id": "map_cowards_trial_extra_oriath_citizens", "matchers": [{"string": "Area contains additional waves of Oriathan Zombies", "negate": false}], "trade": {"ids": null}} +{"ref": "Area contains additional waves of Ravager Maws", "better": 1, "id": "map_cowards_trial_extra_skeleton_cannons", "matchers": [{"string": "Area contains additional waves of Ravager Maws", "negate": false}], "trade": {"ids": null}} +{"ref": "Bathed in the blood of # sacrificed in the name of Xibaqua\\nPassives in radius are Conquered by the Vaal", "better": 1, "id": "local_unique_jewel_alternate_tree_version", "matchers": [{"string": "Bathed in the blood of # sacrificed in the name of Xibaqua\\nPassives in radius are Conquered by the Vaal", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Totem Damage per 10 Devotion", "better": 1, "id": "totem_damage_+%_per_10_devotion", "matchers": [{"string": "#% increased Totem Damage per 10 Devotion", "negate": false}, {"string": "#% reduced Totem Damage per 10 Devotion", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Brand Damage per 10 Devotion", "better": 1, "id": "sigil_damage_+%_per_10_devotion", "matchers": [{"string": "#% increased Brand Damage per 10 Devotion", "negate": false}, {"string": "#% reduced Brand Damage per 10 Devotion", "negate": true}], "trade": {"ids": null}} +{"ref": "Channelling Skills deal #% increased Damage per 10 Devotion", "better": 1, "id": "channelled_skill_damage_+%_per_10_devotion", "matchers": [{"string": "Channelling Skills deal #% increased Damage per 10 Devotion", "negate": false}, {"string": "Channelling Skills deal #% reduced Damage per 10 Devotion", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Area Damage per 10 Devotion", "better": 1, "id": "area_damage_+%_per_10_devotion", "matchers": [{"string": "#% increased Area Damage per 10 Devotion", "negate": false}, {"string": "#% reduced Area Damage per 10 Devotion", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Elemental Damage per 10 Devotion", "better": 1, "id": "elemental_damage_+%_per_10_devotion", "matchers": [{"string": "#% increased Elemental Damage per 10 Devotion", "negate": false}, {"string": "#% reduced Elemental Damage per 10 Devotion", "negate": true}], "trade": {"ids": null}} +{"ref": "+#% to all Elemental Resistances per 10 Devotion", "better": 1, "id": "elemental_resistance_%_per_10_devotion", "matchers": [{"string": "#% to all Elemental Resistances per 10 Devotion", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Magnitude of Non-Damaging Ailments you inflict per 10 Devotion", "better": 1, "id": "non_damaging_ailment_effect_+%_per_10_devotion", "matchers": [{"string": "#% increased Magnitude of Non-Damaging Ailments you inflict per 10 Devotion", "negate": false}, {"string": "#% reduced Magnitude of Non-Damaging Ailments you inflict per 10 Devotion", "negate": true}], "trade": {"ids": null}} +{"ref": "#% reduced Elemental Ailment Duration on you per 10 Devotion", "better": 1, "id": "self_elemental_status_duration_-%_per_10_devotion", "matchers": [{"string": "#% reduced Elemental Ailment Duration on you per 10 Devotion", "negate": false}, {"string": "#% increased Elemental Ailment Duration on you per 10 Devotion", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Duration of Curses on you per 10 Devotion", "better": 1, "id": "self_curse_duration_+%_per_10_devotion", "matchers": [{"string": "#% increased Duration of Curses on you per 10 Devotion", "negate": false}, {"string": "#% reduced Duration of Curses on you per 10 Devotion", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Minion Attack and Cast Speed per 10 Devotion", "better": 1, "id": "minion_attack_and_cast_speed_+%_per_10_devotion", "matchers": [{"string": "#% increased Minion Attack and Cast Speed per 10 Devotion", "negate": false}, {"string": "#% reduced Minion Attack and Cast Speed per 10 Devotion", "negate": true}], "trade": {"ids": null}} +{"ref": "Minions have +# to Accuracy Rating per 10 Devotion", "better": 1, "id": "minion_accuracy_rating_per_10_devotion", "matchers": [{"string": "Minions have +# to Accuracy Rating per 10 Devotion", "negate": false}], "trade": {"ids": null}} +{"ref": "Regenerate # Mana per Second per 10 Devotion", "better": 1, "id": "mana_regeneration_rate_per_minute_per_10_devotion", "matchers": [{"string": "Regenerate # Mana per Second per 10 Devotion", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Mana Cost of Skills per 10 Devotion", "better": 1, "id": "mana_cost_+%_per_10_devotion", "matchers": [{"string": "#% increased Mana Cost of Skills per 10 Devotion", "negate": false}, {"string": "#% reduced Mana Cost of Skills per 10 Devotion", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased effect of Non-Curse Auras per 10 Devotion", "better": 1, "id": "non_curse_aura_effect_+%_per_10_devotion", "matchers": [{"string": "#% increased effect of Non-Curse Auras per 10 Devotion", "negate": false}, {"string": "#% reduced effect of Non-Curse Auras per 10 Devotion", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Defences from Equipped Shield per 10 Devotion", "better": 1, "id": "shield_defences_+%_per_10_devotion", "matchers": [{"string": "#% increased Defences from Equipped Shield per 10 Devotion", "negate": false}, {"string": "#% reduced Defences from Equipped Shield per 10 Devotion", "negate": true}], "trade": {"ids": null}} +{"ref": "Resilient to Fire Towers", "better": 1, "id": "is_blight_fire_monster", "matchers": [{"string": "Resilient to Fire Towers", "negate": false}], "trade": {"ids": null}} +{"ref": "Resilient to Cold Towers", "better": 1, "id": "is_blight_cold_monster", "matchers": [{"string": "Resilient to Cold Towers", "negate": false}], "trade": {"ids": null}} +{"ref": "Resilient to Lightning Towers", "better": 1, "id": "is_blight_lightning_monster", "matchers": [{"string": "Resilient to Lightning Towers", "negate": false}], "trade": {"ids": null}} +{"ref": "Resilient to Physical Towers", "better": 1, "id": "is_blight_physical_monster", "matchers": [{"string": "Resilient to Physical Towers", "negate": false}], "trade": {"ids": null}} +{"ref": "Ignores Summoning Towers", "better": 1, "id": "is_blight_chaos_monster", "matchers": [{"string": "Ignores Summoning Towers", "negate": false}], "trade": {"ids": null}} +{"ref": "Natural inhabitants of this area have been removed", "better": 1, "id": "map_nuke_everything", "matchers": [{"string": "Natural inhabitants of this area have been removed", "negate": false}], "trade": {"ids": null}} +{"ref": "Allocates #", "better": 1, "id": "mod_granted_passive_hash", "matchers": [{"string": "Allocates #", "negate": false}], "trade": {"ids": {"enchant": ["enchant.stat_2954116742"]}}} +{"ref": "Allocates #", "better": 1, "id": "mod_granted_passive_hash_2", "matchers": [{"string": "Allocates #", "negate": false}], "trade": {"ids": {"enchant": ["enchant.stat_2954116742"]}}} +{"ref": "Allocates #", "better": 1, "id": "mod_granted_passive_hash_3", "matchers": [{"string": "Allocates #", "negate": false}], "trade": {"ids": {"enchant": ["enchant.stat_2954116742"]}}} +{"ref": "Allocates #", "better": 1, "id": "mod_granted_passive_hash_4", "matchers": [{"string": "Allocates #", "negate": false}], "trade": {"ids": {"enchant": ["enchant.stat_2954116742"]}}} +{"ref": "Areas contain additional Metamorph monsters", "better": 1, "id": "map_metamorphosis_league", "matchers": [{"string": "Areas contain additional Metamorph monsters", "negate": false}], "trade": {"ids": null}} +{"ref": "Map is occupied by The Enslaver", "better": 1, "id": "map_elder_boss_variation", "matchers": [{"string": "Map is occupied by The Enslaver", "negate": false}], "trade": {"ids": null}} +{"ref": "Map contains Baran's Citadel\\nItem Quantity increases amount of Rewards Baran drops by 20% of its value", "better": 1, "id": "map_contains_citadel", "matchers": [{"string": "Map contains Baran's Citadel\\nItem Quantity increases amount of Rewards Baran drops by 20% of its value", "negate": false}], "trade": {"ids": null}} +{"ref": "Map has # additional random Modifier", "better": 1, "id": "map_adds_X_extra_synthesis_mods", "matchers": [{"string": "Map has # additional random Modifier", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_588512487"]}}} +{"ref": "Map has # additional Synthesis Global Modifier", "better": 1, "id": "map_adds_X_extra_synthesis_special_mods", "matchers": [{"string": "Map has # additional Synthesis Global Modifier", "negate": false}], "trade": {"ids": null}} +{"ref": "Nova Spells have #% more Area of Effect", "better": 1, "id": "local_ring_nova_spells_area_of_effect_+%_final", "matchers": [{"string": "Nova Spells have #% more Area of Effect", "negate": false}, {"string": "Nova Spells have #% less Area of Effect", "negate": true}], "trade": {"ids": null}} +{"ref": "#% more Attack Speed", "better": 1, "id": "local_ring_attack_speed_+%_final", "matchers": [{"string": "#% more Attack Speed", "negate": false}, {"string": "#% less Attack Speed", "negate": true}], "trade": {"ids": null}} +{"ref": "Delirium Reward Type: #", "better": 1, "id": "map_endgame_affliction_reward_1", "matchers": [{"string": "Delirium Reward Type: #", "negate": false}], "trade": {"ids": null}} +{"ref": "Delirium Reward Type: #", "better": 1, "id": "map_endgame_affliction_reward_2", "matchers": [{"string": "Delirium Reward Type: #", "negate": false}], "trade": {"ids": null}} +{"ref": "Delirium Reward Type: #", "better": 1, "id": "map_endgame_affliction_reward_3", "matchers": [{"string": "Delirium Reward Type: #", "negate": false}], "trade": {"ids": null}} +{"ref": "Delirium Reward Type: #", "better": 1, "id": "map_endgame_affliction_reward_4", "matchers": [{"string": "Delirium Reward Type: #", "negate": false}], "trade": {"ids": null}} +{"ref": "Delirium Reward Type: #", "better": 1, "id": "map_endgame_affliction_reward_5", "matchers": [{"string": "Delirium Reward Type: #", "negate": false}], "trade": {"ids": null}} +{"ref": "Delirium Reward Type: #", "better": 1, "id": "map_endgame_affliction_reward_6", "matchers": [{"string": "Delirium Reward Type: #", "negate": false}], "trade": {"ids": null}} +{"ref": "Delirium Reward Type: #", "better": 1, "id": "map_endgame_affliction_reward_7", "matchers": [{"string": "Delirium Reward Type: #", "negate": false}], "trade": {"ids": null}} +{"ref": "Delirium Reward Type: #", "better": 1, "id": "map_endgame_affliction_reward_8", "matchers": [{"string": "Delirium Reward Type: #", "negate": false}], "trade": {"ids": null}} +{"ref": "Delirium Reward Type: #", "better": 1, "id": "map_endgame_affliction_reward_9", "matchers": [{"string": "Delirium Reward Type: #", "negate": false}], "trade": {"ids": null}} +{"ref": "All Monster Damage from Hits always Ignites", "better": 1, "id": "map_monsters_always_ignite", "matchers": [{"string": "All Monster Damage from Hits always Ignites", "negate": false}], "trade": {"ids": null}} +{"ref": "All Damage from Monsters' Hits Contributes to Chill Magnitude", "better": 1, "id": "map_monsters_all_damage_can_chill", "matchers": [{"string": "All Damage from Monsters' Hits Contributes to Chill Magnitude", "negate": false}], "trade": {"ids": null}} +{"ref": "All Damage from Monsters' Hits Contributes to Shock Chance", "better": 1, "id": "map_monsters_all_damage_can_shock", "matchers": [{"string": "All Damage from Monsters' Hits Contributes to Shock Chance", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters have #% chance to inflict Brittle", "better": 1, "id": "map_monsters_chance_to_inflict_brittle_%", "matchers": [{"string": "Monsters have #% chance to inflict Brittle", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters have #% chance to inflict Scorch", "better": 1, "id": "map_monsters_chance_to_scorch_%", "matchers": [{"string": "Monsters have #% chance to inflict Scorch", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters have #% chance to inflict Sapped", "better": 1, "id": "map_monsters_chance_to_inflict_sapped_%", "matchers": [{"string": "Monsters have #% chance to inflict Sapped", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters' skills Chain # additional times", "better": 1, "id": "map_monster_skills_chain_X_additional_times", "matchers": [{"string": "Monsters' skills Chain # additional times", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters deal #% of Physical Damage as Extra Cold", "better": 1, "id": "map_monsters_%_physical_damage_to_gain_as_cold", "matchers": [{"string": "Monsters deal #% of Physical Damage as Extra Cold", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters deal #% of Physical Damage as Extra Chaos", "better": 1, "id": "map_monsters_%_physical_damage_to_gain_as_chaos", "matchers": [{"string": "Monsters deal #% of Physical Damage as Extra Chaos", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters Overwhelm #% Physical Damage Reduction", "better": 1, "id": "map_monsters_enemy_phys_reduction_%_penalty_vs_hit", "matchers": [{"string": "Monsters Overwhelm #% Physical Damage Reduction", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters have #% chance to Impale with Attacks", "better": 1, "id": "map_monsters_chance_to_impale_%", "matchers": [{"string": "Monsters have #% chance to Impale with Attacks", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters have a #% chance to cause Elemental Ailments on Hit", "better": 1, "id": "map_monsters_%_chance_to_inflict_status_ailments", "matchers": [{"string": "Monsters have a #% chance to cause Elemental Ailments on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters remove #% of Mana on hit", "better": 1, "id": "map_monsters_remove_%_of_mana_on_hit", "matchers": [{"string": "Monsters remove #% of Mana on hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters have #% chance to remove a Flask Charge on Hit", "better": 1, "id": "map_monsters_remove_enemy_flask_charge_on_hit_%_chance", "matchers": [{"string": "Monsters have #% chance to remove a Flask Charge on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters have #% chance to remove Charges on Hit", "better": 1, "id": "map_monsters_remove_charges_on_hit_%", "matchers": [{"string": "Monsters have #% chance to remove Charges on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Level of dropped Reward Items", "better": 1, "id": "map_simulacrum_reward_level_+", "matchers": [{"string": "# to Level of dropped Reward Items", "negate": false}], "trade": {"ids": null}} +{"ref": "Does not consume Sextant Uses", "better": 1, "id": "map_doesnt_consume_sextant_use", "matchers": [{"string": "Does not consume Sextant Uses", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to not consume Sextant Uses", "better": 1, "id": "map_chance_to_not_consume_sextant_use_%", "matchers": [{"string": "#% chance to not consume Sextant Uses", "negate": false}], "trade": {"ids": null}} +{"ref": "Map has an additional random Modifier from Kirac's Crafting Bench", "better": 1, "id": "map_random_zana_mod", "matchers": [{"string": "Map has an additional random Modifier from Kirac's Crafting Bench", "negate": false}], "trade": {"ids": null}} +{"ref": "Map Boss is surrounded by Tormented Spirits", "better": 1, "id": "map_boss_surrounded_by_tormented_spirits", "matchers": [{"string": "Map Boss is surrounded by Tormented Spirits", "negate": false}], "trade": {"ids": null}} +{"ref": "Unique Boss drops an additional Harbinger Scroll", "better": 1, "id": "map_harbinger_portal_drops_additional_fragments", "matchers": [{"string": "Unique Boss drops an additional Harbinger Scroll", "negate": false}], "trade": {"ids": null}} +{"ref": "Labyrinth owner receives an additional use of the Divine Font", "better": 1, "id": "labyrinth_owner_x_addition_enchants", "matchers": [{"string": "Labyrinth owner receives an additional use of the Divine Font", "negate": false}], "trade": {"ids": null}} +{"ref": "Quality does not increase Damage", "better": 1, "id": "local_quality_does_not_increase_damage", "matchers": [{"string": "Quality does not increase Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Labyrinth Monsters have #% increased maximum Life", "better": 1, "id": "map_labyrinth_monsters_life_+%", "matchers": [{"string": "Labyrinth Monsters have #% increased maximum Life", "negate": false}, {"string": "Labyrinth Monsters have #% reduced maximum Life", "negate": true}], "trade": {"ids": null}} +{"ref": "Izaro has #% increased maximum Life", "better": 1, "id": "map_labyrinth_izaro_life_+%", "matchers": [{"string": "Izaro has #% increased maximum Life", "negate": false}, {"string": "Izaro has #% reduced maximum Life", "negate": true}], "trade": {"ids": null}} +{"ref": "Warcries cannot Empower Travel Skills", "better": 1, "id": "travel_skills_cannot_be_exerted", "matchers": [{"string": "Warcries cannot Empower Travel Skills", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters' Action Speed cannot be modified to below base value", "better": 1, "id": "map_monsters_movement_speed_cannot_be_reduced_below_base", "matchers": [{"string": "Monsters' Action Speed cannot be modified to below base value", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters are Hexproof", "better": 1, "id": "map_monsters_are_hexproof", "matchers": [{"string": "Monsters are Hexproof", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters reflect #% of Physical Damage", "better": 1, "id": "map_monsters_reflect_%_physical_damage", "matchers": [{"string": "Monsters reflect #% of Physical Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters reflect #% of Elemental Damage", "better": 1, "id": "map_monsters_reflect_%_elemental_damage", "matchers": [{"string": "Monsters reflect #% of Elemental Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% Monster Chaos Resistance", "better": 1, "id": "map_monsters_additional_chaos_resistance", "matchers": [{"string": "#% Monster Chaos Resistance", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters have a #% chance to avoid Poison, Impale, and Bleeding", "better": 1, "id": "map_monsters_avoid_poison_bleed_impale_%", "matchers": [{"string": "Monsters have a #% chance to avoid Poison, Impale, and Bleeding", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters have +#% chance to Suppress Spell Damage", "better": 1, "id": "map_monsters_spell_suppression_chance_%", "matchers": [{"string": "Monsters have +#% chance to Suppress Spell Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Patrol Packs have #% increased chance to be replaced by an Elite Patrol Pack", "better": 1, "id": "heist_contract_patrol_additional_elite_chance_+%", "matchers": [{"string": "Patrol Packs have #% increased chance to be replaced by an Elite Patrol Pack", "negate": false}, {"string": "Patrol Packs have #% reduced chance to be replaced by an Elite Patrol Pack", "negate": true}], "trade": {"ids": null}} +{"ref": "Patrolling Monsters deal #% increased Damage", "better": 1, "id": "heist_contract_patrol_damage_+%", "matchers": [{"string": "Patrolling Monsters deal #% increased Damage", "negate": false}, {"string": "Patrolling Monsters deal #% reduced Damage", "negate": true}], "trade": {"ids": null}} +{"ref": "Patrol Packs take #% increased damage", "better": 1, "id": "heist_contract_patrol_take_damage_+%", "matchers": [{"string": "Patrol Packs take #% increased damage", "negate": false}, {"string": "Patrol Packs take #% reduced damage", "negate": true}], "trade": {"ids": null}} +{"ref": "Reward Room Monsters deal #% increased Damage", "better": 1, "id": "heist_contract_side_area_monsters_damage_+%", "matchers": [{"string": "Reward Room Monsters deal #% increased Damage", "negate": false}, {"string": "Reward Room Monsters deal #% reduced Damage", "negate": true}], "trade": {"ids": null}} +{"ref": "Reward Room Monsters take #% increased Damage", "better": 1, "id": "heist_contract_side_area_monsters_take_damage_+%", "matchers": [{"string": "Reward Room Monsters take #% increased Damage", "negate": false}, {"string": "Reward Room Monsters take #% reduced Damage", "negate": true}], "trade": {"ids": null}} +{"ref": "Guards deal #% increased Damage", "better": 1, "id": "heist_contract_guarding_monsters_damage_+%", "matchers": [{"string": "Guards deal #% increased Damage", "negate": false}, {"string": "Guards deal #% reduced Damage", "negate": true}], "trade": {"ids": null}} +{"ref": "Guards take #% increased Damage", "better": 1, "id": "heist_contract_guarding_monsters_take_damage_+%", "matchers": [{"string": "Guards take #% increased Damage", "negate": false}, {"string": "Guards take #% reduced Damage", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Job speed", "better": 1, "id": "heist_contract_objective_completion_time_+%", "matchers": [{"string": "#% increased Job speed", "negate": false}, {"string": "#% reduced Job speed", "negate": true}], "trade": {"ids": null}} +{"ref": "Reward Rooms have #% increased Monsters", "better": 1, "id": "heist_side_reward_room_monsters_+%", "matchers": [{"string": "Reward Rooms have #% increased Monsters", "negate": false}, {"string": "Reward Rooms have #% reduced Monsters", "negate": true}], "trade": {"ids": null}} +{"ref": "Reinforcements have #% increased Movement Speed", "better": 1, "id": "heist_reinforcements_movements_speed_+%", "matchers": [{"string": "Reinforcements have #% increased Movement Speed", "negate": false}, {"string": "Reinforcements have #% reduced Movement Speed", "negate": true}], "trade": {"ids": null}} +{"ref": "Patrol Pack Members have #% chance to be Magic", "better": 1, "id": "heist_patrols_are_magic", "matchers": [{"string": "Patrol Pack Members have #% chance to be Magic", "negate": false}], "trade": {"ids": null}} +{"ref": "Guards have #% chance to be Rare", "better": 1, "id": "heist_guards_are_rare", "matchers": [{"string": "Guards have #% chance to be Rare", "negate": false}], "trade": {"ids": null}} +{"ref": "Lockdown occurs immediately when Alert Level is full", "better": 1, "id": "heist_lockdown_is_instant", "matchers": [{"string": "Lockdown occurs immediately when Alert Level is full", "negate": false}], "trade": {"ids": null}} +{"ref": "Players cannot inflict Exposure", "better": 1, "id": "map_player_cannot_expose", "matchers": [{"string": "Players cannot inflict Exposure", "negate": false}], "trade": {"ids": null}} +{"ref": "Players have Point Blank", "better": 1, "id": "map_players_have_point_blank", "matchers": [{"string": "Players have Point Blank", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters have #% chance to gain a Frenzy Charge on Hit", "better": 1, "id": "map_monsters_add_frenzy_charge_on_hit_%", "matchers": [{"string": "Monsters have #% chance to gain a Frenzy Charge on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters have #% chance to gain an Endurance Charge on Hit", "better": 1, "id": "map_monsters_add_endurance_charge_on_hit_%", "matchers": [{"string": "Monsters have #% chance to gain an Endurance Charge on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters have #% chance to gain a Power Charge on Hit", "better": 1, "id": "map_monsters_add_power_charge_on_hit_%", "matchers": [{"string": "Monsters have #% chance to gain a Power Charge on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Area has patches of Shocked Ground which increase Damage taken by #%", "better": 1, "id": "map_ground_lightning_base_magnitude", "matchers": [{"string": "Area has patches of Shocked Ground which increase Damage taken by #%", "negate": false}], "trade": {"ids": null}} +{"ref": "Area has patches of desecrated ground", "better": 1, "id": "map_base_ground_desecration_damage_to_deal_per_minute", "matchers": [{"string": "Area has patches of desecrated ground", "negate": false}], "trade": {"ids": null}} +{"ref": "Area has patches of Consecrated Ground", "better": 1, "id": "map_ground_consecrated_life_regeneration_rate_per_minute_%", "matchers": [{"string": "Area has patches of Consecrated Ground", "negate": false}], "trade": {"ids": null}} +{"ref": "Players are Cursed with Vulnerability", "better": 1, "id": "map_player_has_level_X_vulnerability", "matchers": [{"string": "Players are Cursed with Vulnerability", "negate": false}], "trade": {"ids": null}} +{"ref": "Players cannot Regenerate Life, Mana or Energy Shield", "better": 1, "id": "map_players_no_regeneration_including_es", "matchers": [{"string": "Players cannot Regenerate Life, Mana or Energy Shield", "negate": false}], "trade": {"ids": null}} +{"ref": "Cannot Leech from Monsters", "better": 1, "id": "map_monsters_cannot_be_leeched_from", "matchers": [{"string": "Cannot Leech from Monsters", "negate": false}], "trade": {"ids": null}} +{"ref": "Monsters have #% chance to Avoid Elemental Ailments", "better": 1, "id": "map_monsters_avoid_elemental_ailments_%", "matchers": [{"string": "Monsters have #% chance to Avoid Elemental Ailments", "negate": false}], "trade": {"ids": null}} +{"ref": "Players have #% increased Chance to Block", "better": 1, "id": "map_players_block_chance_+%", "matchers": [{"string": "Players have #% increased Chance to Block", "negate": false}, {"string": "Players have #% reduced Chance to Block", "negate": true}], "trade": {"ids": null}} +{"ref": "Players Prevent +#% of Suppressed Spell Damage", "better": 1, "id": "map_players_spell_damage_%_suppressed", "matchers": [{"string": "Players Prevent +#% of Suppressed Spell Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Players have #% more Area of Effect", "better": 1, "id": "map_players_skill_area_of_effect_+%_final", "matchers": [{"string": "Players have #% more Area of Effect", "negate": false}, {"string": "Players have #% less Area of Effect", "negate": true}], "trade": {"ids": null}} +{"ref": "Monsters have #% chance to Blind on Hit", "better": 1, "id": "map_monsters_chance_to_blind_on_hit_%", "matchers": [{"string": "Monsters have #% chance to Blind on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Buffs on Players expire #% faster", "better": 1, "id": "map_player_buff_time_passed_+%_only_buff_category", "matchers": [{"string": "Buffs on Players expire #% faster", "negate": false}], "trade": {"ids": null}} +{"ref": "Players have #% increased effect of Non-Curse Auras from Skills", "better": 1, "id": "map_player_non_curse_aura_effect_+%", "matchers": [{"string": "Players have #% increased effect of Non-Curse Auras from Skills", "negate": false}, {"string": "Players have #% reduced effect of Non-Curse Auras from Skills", "negate": true}], "trade": {"ids": null}} +{"ref": "Players have #% more Accuracy Rating", "better": 1, "id": "map_player_accuracy_rating_+%_final", "matchers": [{"string": "Players have #% more Accuracy Rating", "negate": false}, {"string": "Players have #% less Accuracy Rating", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Total Heist Fee", "better": 1, "id": "heist_contract_total_cost_+%_final", "matchers": [{"string": "#% increased Total Heist Fee", "negate": false}, {"string": "#% reduced Total Heist Fee", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased raising of Alert Level from opening Chests", "better": 1, "id": "heist_contract_alert_level_from_chests_+%", "matchers": [{"string": "#% increased raising of Alert Level from opening Chests", "negate": false}, {"string": "#% reduced raising of Alert Level from opening Chests", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased raising of Alert Level from Killing Monsters", "better": 1, "id": "heist_contract_alert_level_from_monsters_+%", "matchers": [{"string": "#% increased raising of Alert Level from Killing Monsters", "negate": false}, {"string": "#% reduced raising of Alert Level from Killing Monsters", "negate": true}], "trade": {"ids": null}} +{"ref": "The Ring takes no Cut", "better": 1, "id": "heist_contract_gang_takes_no_cut", "matchers": [{"string": "The Ring takes no Cut", "negate": false}], "trade": {"ids": null}} +{"ref": "No Travel Cost", "better": 1, "id": "heist_contract_no_travel_cost", "matchers": [{"string": "No Travel Cost", "negate": false}], "trade": {"ids": null}} +{"ref": "Alert Level increases by #% per second", "better": 1, "id": "heist_alert_level_gained_per_10_sec", "matchers": [{"string": "Alert Level increases by #% per second", "negate": false}, {"string": "Alert Level reduces by #% per second", "negate": true}], "trade": {"ids": null}} +{"ref": "Guards add additional Alert Level on Death", "better": 1, "id": "heist_alert_level_gained_on_monster_death", "matchers": [{"string": "Guards add additional Alert Level on Death", "negate": false}, {"string": "Guards remove Alert Level on Death", "negate": true}], "trade": {"ids": null}} +{"ref": "+#% maximum Player Resistances per 25% Alert Level", "better": 1, "id": "heist_player_additional_maximum_resistances_%_per_25%_alert_level", "matchers": [{"string": "#% maximum Player Resistances per 25% Alert Level", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% Player Fire Resistance per 25% Alert Level", "better": 1, "id": "heist_player_fire_resistance_%_per_25%_alert_level", "matchers": [{"string": "#% Player Fire Resistance per 25% Alert Level", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% Player Cold Resistance per 25% Alert Level", "better": 1, "id": "heist_player_cold_resistance_%_per_25%_alert_level", "matchers": [{"string": "#% Player Cold Resistance per 25% Alert Level", "negate": false}], "trade": {"ids": null}} +{"ref": "+#% Player Lightning Resistance per 25% Alert Level", "better": 1, "id": "heist_player_lightning_resistance_%_per_25%_alert_level", "matchers": [{"string": "#% Player Lightning Resistance per 25% Alert Level", "negate": false}], "trade": {"ids": null}} +{"ref": "Players have #% more Armour per 25% Alert Level", "better": 1, "id": "heist_player_armour_+%_final_per_25%_alert_level", "matchers": [{"string": "Players have #% more Armour per 25% Alert Level", "negate": false}, {"string": "Players have #% less Armour per 25% Alert Level", "negate": true}], "trade": {"ids": null}} +{"ref": "Players have #% more Evasion per 25% Alert Level", "better": 1, "id": "heist_player_evasion_rating_+%_final_per_25%_alert_level", "matchers": [{"string": "Players have #% more Evasion per 25% Alert Level", "negate": false}, {"string": "Players have #% less Evasion per 25% Alert Level", "negate": true}], "trade": {"ids": null}} +{"ref": "Players have #% more Energy Shield Recovery Rate per 25% Alert Level", "better": 1, "id": "heist_player_energy_shield_recovery_rate_+%_final_per_25%_alert_level", "matchers": [{"string": "Players have #% more Energy Shield Recovery Rate per 25% Alert Level", "negate": false}, {"string": "Players have #% less Energy Shield Recovery Rate per 25% Alert Level", "negate": true}], "trade": {"ids": null}} +{"ref": "Players have #% more Life Recovery Rate per 25% Alert Level", "better": 1, "id": "heist_player_life_recovery_rate_+%_final_per_25%_alert_level", "matchers": [{"string": "Players have #% more Life Recovery Rate per 25% Alert Level", "negate": false}, {"string": "Players have #% less Life Recovery Rate per 25% Alert Level", "negate": true}], "trade": {"ids": null}} +{"ref": "Players have #% more Mana Recovery Rate per 25% Alert Level", "better": 1, "id": "heist_player_mana_recovery_rate_+%_final_per_25%_alert_level", "matchers": [{"string": "Players have #% more Mana Recovery Rate per 25% Alert Level", "negate": false}, {"string": "Players have #% less Mana Recovery Rate per 25% Alert Level", "negate": true}], "trade": {"ids": null}} +{"ref": "Players gain #% increased Flask Charges per 25% Alert Level", "better": 1, "id": "heist_player_flask_charges_gained_+%_per_25%_alert_level", "matchers": [{"string": "Players gain #% increased Flask Charges per 25% Alert Level", "negate": false}, {"string": "Players gain #% reduced Flask Charges per 25% Alert Level", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased raising of Alert Level", "better": 1, "id": "heist_contract_alert_level_+%", "matchers": [{"string": "#% increased raising of Alert Level", "negate": false}, {"string": "#% reduced raising of Alert Level", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Rarity of Items dropped in Heists", "better": 1, "id": "heist_item_rarity_+%", "matchers": [{"string": "#% increased Rarity of Items dropped in Heists", "negate": false}, {"string": "#% reduced Rarity of Items dropped in Heists", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Lockpicking speed", "better": 1, "id": "heist_job_lockpicking_speed_+%", "matchers": [{"string": "#% increased Lockpicking speed", "negate": false}, {"string": "#% reduced Lockpicking speed", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Brute Force speed", "better": 1, "id": "heist_job_brute_force_speed_+%", "matchers": [{"string": "#% increased Brute Force speed", "negate": false}, {"string": "#% reduced Brute Force speed", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Perception speed", "better": 1, "id": "heist_job_perception_speed_+%", "matchers": [{"string": "#% increased Perception speed", "negate": false}, {"string": "#% reduced Perception speed", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Demolition speed", "better": 1, "id": "heist_job_demolition_speed_+%", "matchers": [{"string": "#% increased Demolition speed", "negate": false}, {"string": "#% reduced Demolition speed", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Counter-Thaumaturgy speed", "better": 1, "id": "heist_job_counter_thaumaturgy_speed_+%", "matchers": [{"string": "#% increased Counter-Thaumaturgy speed", "negate": false}, {"string": "#% reduced Counter-Thaumaturgy speed", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Trap Disarmament speed", "better": 1, "id": "heist_job_trap_disarmament_speed_+%", "matchers": [{"string": "#% increased Trap Disarmament speed", "negate": false}, {"string": "#% reduced Trap Disarmament speed", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Agility speed", "better": 1, "id": "heist_job_agility_speed_+%", "matchers": [{"string": "#% increased Agility speed", "negate": false}, {"string": "#% reduced Agility speed", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Deception speed", "better": 1, "id": "heist_job_deception_speed_+%", "matchers": [{"string": "#% increased Deception speed", "negate": false}, {"string": "#% reduced Deception speed", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Engineering speed", "better": 1, "id": "heist_job_engineering_speed_+%", "matchers": [{"string": "#% increased Engineering speed", "negate": false}, {"string": "#% reduced Engineering speed", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased time before Lockdown", "better": 1, "id": "heist_contract_lockdown_timer_+%_halved", "matchers": [{"string": "#% increased time before Lockdown", "negate": false}, {"string": "#% reduced time before Lockdown", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Job Experience gain", "better": 1, "id": "heist_contract_npc_experience_gain_+%", "matchers": [{"string": "#% increased Job Experience gain", "negate": false}, {"string": "#% reduced Job Experience gain", "negate": true}], "trade": {"ids": null}} +{"ref": "+# to Character Level", "better": 1, "id": "heist_contract_npc_level_+", "matchers": [{"string": "# to Character Level", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Damage with Hits against Enemies that are on Full Life", "better": 1, "id": "damage_+%_vs_enemies_on_full_life", "matchers": [{"string": "#% increased Damage with Hits against Enemies that are on Full Life", "negate": false}, {"string": "#% reduced Damage with Hits against Enemies that are on Full Life", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Damage while area is not in Lockdown\\nPlayers deal #% increased Damage while area is not in Lockdown", "better": 1, "id": "damage_+%_while_not_escaping_heist", "matchers": [{"string": "#% increased Damage while area is not in Lockdown\\nPlayers deal #% increased Damage while area is not in Lockdown", "negate": false}, {"string": "#% reduced Damage while area is not in Lockdown\\nPlayers deal #% reduced Damage while area is not in Lockdown", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Movement Speed while area is not in Lockdown\\nPlayers have #% increased Movement Speed while area is not in Lockdown", "better": 1, "id": "movement_speed_+%_while_not_escaping_heist", "matchers": [{"string": "#% increased Movement Speed while area is not in Lockdown\\nPlayers have #% increased Movement Speed while area is not in Lockdown", "negate": false}, {"string": "#% reduced Movement Speed while area is not in Lockdown\\nPlayers have #% reduced Movement Speed while area is not in Lockdown", "negate": true}], "trade": {"ids": null}} +{"ref": "# to # added Physical Damage\\nPlayers and their Minions have # to # added Physical Damage", "better": 1, "id": "player_and_minion_global_minimum_added_physical_damage", "matchers": [{"string": "# to # added Physical Damage\\nPlayers and their Minions have # to # added Physical Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "# to # added Fire Damage\\nPlayers and their Minions have # to # added Fire Damage", "better": 1, "id": "player_and_minion_global_minimum_added_fire_damage", "matchers": [{"string": "# to # added Fire Damage\\nPlayers and their Minions have # to # added Fire Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "# to # added Cold Damage\\nPlayers and their Minions have # to # added Cold Damage", "better": 1, "id": "player_and_minion_global_minimum_added_cold_damage", "matchers": [{"string": "# to # added Cold Damage\\nPlayers and their Minions have # to # added Cold Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "# to # added Lightning Damage\\nPlayers and their Minions have # to # added Lightning Damage", "better": 1, "id": "player_and_minion_global_minimum_added_lightning_damage", "matchers": [{"string": "# to # added Lightning Damage\\nPlayers and their Minions have # to # added Lightning Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Quantity of Items dropped in Heists", "better": 1, "id": "heist_item_quantity_+%", "matchers": [{"string": "#% increased Quantity of Items dropped in Heists", "negate": false}, {"string": "#% reduced Quantity of Items dropped in Heists", "negate": true}], "trade": {"ids": null}} +{"ref": "Monsters have #% chance to Duplicate dropped Rogue's Marker", "better": 1, "id": "heist_coins_dropped_by_monsters_double_%", "matchers": [{"string": "Monsters have #% chance to Duplicate dropped Rogue's Marker", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Avoid being Interrupted", "better": 1, "id": "heist_interruption_resistance_%", "matchers": [{"string": "#% chance to Avoid being Interrupted", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Level of all Jobs for Heists", "better": 1, "id": "heist_job_level_+", "matchers": [{"string": "# to Level of all Jobs for Heists", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Lockpicking Level for Heists", "better": 1, "id": "heist_job_lockpicking_level_+", "matchers": [{"string": "# to Lockpicking Level for Heists", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Brute Force Level for Heists", "better": 1, "id": "heist_job_brute_force_level_+", "matchers": [{"string": "# to Brute Force Level for Heists", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Perception Level for Heists", "better": 1, "id": "heist_job_perception_level_+", "matchers": [{"string": "# to Perception Level for Heists", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Demolition Level for Heists", "better": 1, "id": "heist_job_demolition_level_+", "matchers": [{"string": "# to Demolition Level for Heists", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Counter-Thaumaturgy Level for Heists", "better": 1, "id": "heist_job_counter_thaumaturgy_level_+", "matchers": [{"string": "# to Counter-Thaumaturgy Level for Heists", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Trap Disarmament Level for Heists", "better": 1, "id": "heist_job_trap_disarmament_level_+", "matchers": [{"string": "# to Trap Disarmament Level for Heists", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Agility Level for Heists", "better": 1, "id": "heist_job_agility_level_+", "matchers": [{"string": "# to Agility Level for Heists", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Deception Level for Heists", "better": 1, "id": "heist_job_deception_level_+", "matchers": [{"string": "# to Deception Level for Heists", "negate": false}], "trade": {"ids": null}} +{"ref": "+# to Engineering Level for Heists", "better": 1, "id": "heist_job_engineering_level_+", "matchers": [{"string": "# to Engineering Level for Heists", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Lockpicking Experience gained", "better": 1, "id": "heist_contract_npc_lockpicking_experience_gain_+%", "matchers": [{"string": "#% increased Lockpicking Experience gained", "negate": false}, {"string": "#% reduced Lockpicking Experience gained", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Brute Force Experience gained", "better": 1, "id": "heist_contract_npc_brute_force_experience_gain_+%", "matchers": [{"string": "#% increased Brute Force Experience gained", "negate": false}, {"string": "#% reduced Brute Force Experience gained", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Perception Experience gained", "better": 1, "id": "heist_contract_npc_perception_experience_gain_+%", "matchers": [{"string": "#% increased Perception Experience gained", "negate": false}, {"string": "#% reduced Perception Experience gained", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Demolition Experience gained", "better": 1, "id": "heist_contract_npc_demolition_experience_gain_+%", "matchers": [{"string": "#% increased Demolition Experience gained", "negate": false}, {"string": "#% reduced Demolition Experience gained", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Counter-Thaumaturgy Experience gained", "better": 1, "id": "heist_contract_npc_counter_thaumaturgy_experience_gain_+%", "matchers": [{"string": "#% increased Counter-Thaumaturgy Experience gained", "negate": false}, {"string": "#% reduced Counter-Thaumaturgy Experience gained", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Trap Disarmament Experience gained", "better": 1, "id": "heist_contract_npc_trap_disarmament_experience_gain_+%", "matchers": [{"string": "#% increased Trap Disarmament Experience gained", "negate": false}, {"string": "#% reduced Trap Disarmament Experience gained", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Agility Experience gained", "better": 1, "id": "heist_contract_npc_agility_experience_gain_+%", "matchers": [{"string": "#% increased Agility Experience gained", "negate": false}, {"string": "#% reduced Agility Experience gained", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Deception Experience gained", "better": 1, "id": "heist_contract_npc_deception_experience_gain_+%", "matchers": [{"string": "#% increased Deception Experience gained", "negate": false}, {"string": "#% reduced Deception Experience gained", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Engineering Experience gained", "better": 1, "id": "heist_contract_npc_engineering_experience_gain_+%", "matchers": [{"string": "#% increased Engineering Experience gained", "negate": false}, {"string": "#% reduced Engineering Experience gained", "negate": true}], "trade": {"ids": null}} +{"ref": "+# seconds to Lockdown Timer", "better": 1, "id": "heist_contract_lockdown_timer_+_halved", "matchers": [{"string": "# seconds to Lockdown Timer", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Rogue's Marker value of primary Heist Target", "better": 1, "id": "heist_contract_primary_target_value_+%", "matchers": [{"string": "#% increased Rogue's Marker value of primary Heist Target", "negate": false}, {"string": "#% reduced Rogue's Marker value of primary Heist Target", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Hiring Fee of Rogues", "better": 1, "id": "heist_contract_npc_cost_+%", "matchers": [{"string": "#% increased Hiring Fee of Rogues", "negate": false}, {"string": "#% reduced Hiring Fee of Rogues", "negate": true}], "trade": {"ids": null}} +{"ref": "The Ring's Cut increased by #%", "better": 1, "id": "heist_contract_gang_cost_+%", "matchers": [{"string": "The Ring's Cut increased by #%", "negate": false}, {"string": "The Ring's Cut reduced by #%", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Travel Fee", "better": 1, "id": "heist_contract_travel_cost_+%", "matchers": [{"string": "#% increased Travel Fee", "negate": false}, {"string": "#% reduced Travel Fee", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Alert Level from killing Patrol Packs", "better": 1, "id": "heist_contract_alert_level_from_patrols_+%", "matchers": [{"string": "#% increased Alert Level from killing Patrol Packs", "negate": false}, {"string": "#% reduced Alert Level from killing Patrol Packs", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Alert Level from killing Guards", "better": 1, "id": "heist_contract_alert_level_from_guards_+%", "matchers": [{"string": "#% increased Alert Level from killing Guards", "negate": false}, {"string": "#% reduced Alert Level from killing Guards", "negate": true}], "trade": {"ids": null}} +{"ref": "#% chance on killing an Enemy to not generate Alert Level", "better": 1, "id": "heist_contract_avoid_alarm_chance_%_on_kill", "matchers": [{"string": "#% chance on killing an Enemy to not generate Alert Level", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance on opening a Chest to not generate Alert Level", "better": 1, "id": "heist_contract_avoid_alarm_chance_%_on_open_chest", "matchers": [{"string": "#% chance on opening a Chest to not generate Alert Level", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to not Activate Lockdown in Grand Heists", "better": 1, "id": "heist_blueprint_avoid_alarm_chance_%", "matchers": [{"string": "#% chance to not Activate Lockdown in Grand Heists", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Critical Hit Chance while area is not in Lockdown\\nPlayers have #% increased Critical Hit Chance while area is not in Lockdown", "better": 1, "id": "critical_strike_chance_+%_while_not_escaping_heist", "matchers": [{"string": "#% increased Critical Hit Chance while area is not in Lockdown\\nPlayers have #% increased Critical Hit Chance while area is not in Lockdown", "negate": false}, {"string": "#% reduced Critical Hit Chance while area is not in Lockdown\\nPlayers have #% reduced Critical Hit Chance while area is not in Lockdown", "negate": true}], "trade": {"ids": null}} +{"ref": "+#% to Critical Damage Bonus while area is not in Lockdown\\nPlayers have +#% to Critical Damage Bonus while area is not in Lockdown", "better": 1, "id": "critical_strike_multiplier_+_while_not_escaping_heist", "matchers": [{"string": "#% to Critical Damage Bonus while area is not in Lockdown\\nPlayers have +#% to Critical Damage Bonus while area is not in Lockdown", "negate": false}], "trade": {"ids": null}} +{"ref": "Players and their Minions Regenerate #% of Life per second", "better": 1, "id": "player_and_minion_life_regeneration_rate_per_minute_%", "matchers": [{"string": "Players and their Minions Regenerate #% of Life per second", "negate": false}], "trade": {"ids": null}} +{"ref": "Players and their Minions have #% increased Mana Regeneration Rate", "better": 1, "id": "player_and_minion_mana_regeneration_rate_+%", "matchers": [{"string": "Players and their Minions have #% increased Mana Regeneration Rate", "negate": false}, {"string": "Players and their Minions have #% reduced Mana Regeneration Rate", "negate": true}], "trade": {"ids": null}} +{"ref": "Grants Level # Anger Skill", "better": 1, "id": "heist_npc_uses_level_x_anger_aura", "matchers": [{"string": "Grants Level # Anger Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Determination Skill", "better": 1, "id": "heist_npc_uses_level_x_determination_aura", "matchers": [{"string": "Grants Level # Determination Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Purity of Fire Skill", "better": 1, "id": "heist_npc_uses_level_x_fire_resist_aura", "matchers": [{"string": "Grants Level # Purity of Fire Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Pride Skill", "better": 1, "id": "heist_npc_uses_level_x_pride_aura", "matchers": [{"string": "Grants Level # Pride Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Hatred Skill", "better": 1, "id": "heist_npc_uses_level_x_hatred_aura", "matchers": [{"string": "Grants Level # Hatred Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Grace Skill", "better": 1, "id": "heist_npc_uses_level_x_grace_aura", "matchers": [{"string": "Grants Level # Grace Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Purity of Ice Skill", "better": 1, "id": "heist_npc_uses_level_x_cold_resist_aura", "matchers": [{"string": "Grants Level # Purity of Ice Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Haste Skill", "better": 1, "id": "heist_npc_uses_level_x_haste_aura", "matchers": [{"string": "Grants Level # Haste Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Wrath Skill", "better": 1, "id": "heist_npc_uses_level_x_wrath_aura", "matchers": [{"string": "Grants Level # Wrath Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Discipline Skill", "better": 1, "id": "heist_npc_uses_level_x_discipline_aura", "matchers": [{"string": "Grants Level # Discipline Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Purity of Lightning Skill", "better": 1, "id": "heist_npc_uses_level_x_lightning_resist_aura", "matchers": [{"string": "Grants Level # Purity of Lightning Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Zealotry Skill", "better": 1, "id": "heist_npc_uses_level_x_zealotry_aura", "matchers": [{"string": "Grants Level # Zealotry Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Malevolence Skill", "better": 1, "id": "heist_npc_uses_level_x_malevolence_aura", "matchers": [{"string": "Grants Level # Malevolence Skill", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance on completing a Heist to generate an additional Reveal with Whakano", "better": 1, "id": "heist_contract_additional_whakano_intelligence_chance_on_completion_%", "matchers": [{"string": "#% chance on completing a Heist to generate an additional Reveal with Whakano", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to not generate Alert Level on opening a Chest using Lockpicking", "better": 1, "id": "heist_job_lockpicking_avoid_alarm_chance_%_on_open_chest", "matchers": [{"string": "#% chance to not generate Alert Level on opening a Chest using Lockpicking", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to not generate Alert Level on opening a Chest using Brute Force", "better": 1, "id": "heist_job_brute_force_avoid_alarm_chance_%_on_open_chest", "matchers": [{"string": "#% chance to not generate Alert Level on opening a Chest using Brute Force", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to not generate Alert Level on opening a Chest using Perception", "better": 1, "id": "heist_job_perception_avoid_alarm_chance_%_on_open_chest", "matchers": [{"string": "#% chance to not generate Alert Level on opening a Chest using Perception", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to not generate Alert Level on opening a Chest using Demolition", "better": 1, "id": "heist_job_demolition_avoid_alarm_chance_%_on_open_chest", "matchers": [{"string": "#% chance to not generate Alert Level on opening a Chest using Demolition", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to not generate Alert Level on opening a Chest using Counter-Thaumaturgy", "better": 1, "id": "heist_job_counter_thaumaturgy_avoid_alarm_chance_%_on_open_chest", "matchers": [{"string": "#% chance to not generate Alert Level on opening a Chest using Counter-Thaumaturgy", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to not generate Alert Level on opening a Chest using Trap Disarmament", "better": 1, "id": "heist_job_trap_disarmament_avoid_alarm_chance_%_on_open_chest", "matchers": [{"string": "#% chance to not generate Alert Level on opening a Chest using Trap Disarmament", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to not generate Alert Level on opening a Chest using Agility", "better": 1, "id": "heist_job_agility_avoid_alarm_chance_%_on_open_chest", "matchers": [{"string": "#% chance to not generate Alert Level on opening a Chest using Agility", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to not generate Alert Level on opening a Chest using Deception", "better": 1, "id": "heist_job_deception_avoid_alarm_chance_%_on_open_chest", "matchers": [{"string": "#% chance to not generate Alert Level on opening a Chest using Deception", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to not generate Alert Level on opening a Chest using Engineering", "better": 1, "id": "heist_job_engineering_avoid_alarm_chance_%_on_open_chest", "matchers": [{"string": "#% chance to not generate Alert Level on opening a Chest using Engineering", "negate": false}], "trade": {"ids": null}} +{"ref": "Performing Lockpicking during Lockdown doesn't take additional time", "better": 1, "id": "heist_job_lockpicking_no_alert_multiplier", "matchers": [{"string": "Performing Lockpicking during Lockdown doesn't take additional time", "negate": false}], "trade": {"ids": null}} +{"ref": "Performing Brute Force during Lockdown doesn't take additional time", "better": 1, "id": "heist_job_brute_force_no_alert_multiplier", "matchers": [{"string": "Performing Brute Force during Lockdown doesn't take additional time", "negate": false}], "trade": {"ids": null}} +{"ref": "Performing Demolition during Lockdown doesn't take additional time", "better": 1, "id": "heist_job_demolition_no_alert_multiplier", "matchers": [{"string": "Performing Demolition during Lockdown doesn't take additional time", "negate": false}], "trade": {"ids": null}} +{"ref": "Performing Counter-Thaumaturgy during Lockdown doesn't take additional time", "better": 1, "id": "heist_job_counter_thaumaturgy_no_alert_multiplier", "matchers": [{"string": "Performing Counter-Thaumaturgy during Lockdown doesn't take additional time", "negate": false}], "trade": {"ids": null}} +{"ref": "Performing Engineering during Lockdown doesn't take additional time", "better": 1, "id": "heist_job_engineering_no_alert_multiplier", "matchers": [{"string": "Performing Engineering during Lockdown doesn't take additional time", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Hiring Fee for Lockpicking Jobs", "better": 1, "id": "heist_contract_npc_lockpicking_cost_+%", "matchers": [{"string": "#% increased Hiring Fee for Lockpicking Jobs", "negate": false}, {"string": "#% reduced Hiring Fee for Lockpicking Jobs", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Hiring Fee for Brute Force Jobs", "better": 1, "id": "heist_contract_npc_brute_force_cost_+%", "matchers": [{"string": "#% increased Hiring Fee for Brute Force Jobs", "negate": false}, {"string": "#% reduced Hiring Fee for Brute Force Jobs", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Hiring Fee for Perception Jobs", "better": 1, "id": "heist_contract_npc_perception_cost_+%", "matchers": [{"string": "#% increased Hiring Fee for Perception Jobs", "negate": false}, {"string": "#% reduced Hiring Fee for Perception Jobs", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Hiring Fee for Demolition Jobs", "better": 1, "id": "heist_contract_npc_demolition_cost_+%", "matchers": [{"string": "#% increased Hiring Fee for Demolition Jobs", "negate": false}, {"string": "#% reduced Hiring Fee for Demolition Jobs", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Hiring Fee for Counter-Thaumaturgy Jobs", "better": 1, "id": "heist_contract_npc_counter_thaumaturgy_cost_+%", "matchers": [{"string": "#% increased Hiring Fee for Counter-Thaumaturgy Jobs", "negate": false}, {"string": "#% reduced Hiring Fee for Counter-Thaumaturgy Jobs", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Hiring Fee for Trap Disarmament Jobs", "better": 1, "id": "heist_contract_npc_trap_disarmament_cost_+%", "matchers": [{"string": "#% increased Hiring Fee for Trap Disarmament Jobs", "negate": false}, {"string": "#% reduced Hiring Fee for Trap Disarmament Jobs", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Hiring Fee for Agility Jobs", "better": 1, "id": "heist_contract_npc_agility_cost_+%", "matchers": [{"string": "#% increased Hiring Fee for Agility Jobs", "negate": false}, {"string": "#% reduced Hiring Fee for Agility Jobs", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Hiring Fee for Deception Jobs", "better": 1, "id": "heist_contract_npc_deception_cost_+%", "matchers": [{"string": "#% increased Hiring Fee for Deception Jobs", "negate": false}, {"string": "#% reduced Hiring Fee for Deception Jobs", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Hiring Fee for Engineering Jobs", "better": 1, "id": "heist_contract_npc_engineering_cost_+%", "matchers": [{"string": "#% increased Hiring Fee for Engineering Jobs", "negate": false}, {"string": "#% reduced Hiring Fee for Engineering Jobs", "negate": true}], "trade": {"ids": null}} +{"ref": "Heist Chests have a #% chance to Duplicate contained Basic Currency", "better": 1, "id": "heist_chests_double_currency_%", "matchers": [{"string": "Heist Chests have a #% chance to Duplicate contained Basic Currency", "negate": false}], "trade": {"ids": null}} +{"ref": "Heist Chests have a #% chance to Duplicate contained Jewels", "better": 1, "id": "heist_chests_double_jewels_%", "matchers": [{"string": "Heist Chests have a #% chance to Duplicate contained Jewels", "negate": false}], "trade": {"ids": null}} +{"ref": "Heist Chests have a #% chance to Duplicate contained Maps", "better": 1, "id": "heist_chests_double_maps_%", "matchers": [{"string": "Heist Chests have a #% chance to Duplicate contained Maps", "negate": false}], "trade": {"ids": null}} +{"ref": "Heist Chests have a #% chance to Duplicate contained Sextants", "better": 1, "id": "heist_chests_double_sextants_%", "matchers": [{"string": "Heist Chests have a #% chance to Duplicate contained Sextants", "negate": false}], "trade": {"ids": null}} +{"ref": "Heist Chests have a #% chance to Duplicate contained Map Fragments", "better": 1, "id": "heist_chests_double_map_fragments_%", "matchers": [{"string": "Heist Chests have a #% chance to Duplicate contained Map Fragments", "negate": false}], "trade": {"ids": null}} +{"ref": "Heist Chests have a #% chance to Duplicate contained Divination Cards", "better": 1, "id": "heist_chests_double_divination_cards_%", "matchers": [{"string": "Heist Chests have a #% chance to Duplicate contained Divination Cards", "negate": false}], "trade": {"ids": null}} +{"ref": "Heist Chests have a #% chance to Duplicate contained Delirium Orbs and Splinters", "better": 1, "id": "heist_chests_double_delirium_orbs_and_splinters_%", "matchers": [{"string": "Heist Chests have a #% chance to Duplicate contained Delirium Orbs and Splinters", "negate": false}], "trade": {"ids": null}} +{"ref": "Heist Chests have a #% chance to Duplicate contained Blighted Maps and Catalysts", "better": 1, "id": "heist_chests_double_blighted_maps_and_catalysts_%", "matchers": [{"string": "Heist Chests have a #% chance to Duplicate contained Blighted Maps and Catalysts", "negate": false}], "trade": {"ids": null}} +{"ref": "Heist Chests have a #% chance to Duplicate contained Essences", "better": 1, "id": "heist_chests_double_essences_%", "matchers": [{"string": "Heist Chests have a #% chance to Duplicate contained Essences", "negate": false}], "trade": {"ids": null}} +{"ref": "Heist Chests have a #% chance to Duplicate contained Breach Splinters", "better": 1, "id": "heist_chests_double_breach_splinters_%", "matchers": [{"string": "Heist Chests have a #% chance to Duplicate contained Breach Splinters", "negate": false}], "trade": {"ids": null}} +{"ref": "Heist Chests have a #% chance to Duplicate contained Scarabs", "better": 1, "id": "heist_chests_double_scarabs_%", "matchers": [{"string": "Heist Chests have a #% chance to Duplicate contained Scarabs", "negate": false}], "trade": {"ids": null}} +{"ref": "Heist Chests have a #% chance to Duplicate contained Catalysts", "better": 1, "id": "heist_chests_double_catalysts_%", "matchers": [{"string": "Heist Chests have a #% chance to Duplicate contained Catalysts", "negate": false}], "trade": {"ids": null}} +{"ref": "Heist Chests have a #% chance to Duplicate contained Legion Splinters", "better": 1, "id": "heist_chests_double_legion_splinters_%", "matchers": [{"string": "Heist Chests have a #% chance to Duplicate contained Legion Splinters", "negate": false}], "trade": {"ids": null}} +{"ref": "Heist Chests have a #% chance to Duplicate contained Oils", "better": 1, "id": "heist_chests_double_oils_%", "matchers": [{"string": "Heist Chests have a #% chance to Duplicate contained Oils", "negate": false}], "trade": {"ids": null}} +{"ref": "Smuggler's Caches have #% chance to Duplicate contained Rogue's Markers", "better": 1, "id": "heist_coins_from_world_chests_double_%", "matchers": [{"string": "Smuggler's Caches have #% chance to Duplicate contained Rogue's Markers", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance in Heists for Basic Currency drops to be Duplicated", "better": 1, "id": "heist_drops_double_currency_%", "matchers": [{"string": "#% chance in Heists for Basic Currency drops to be Duplicated", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance in Heists for Items to drop Corrupted", "better": 1, "id": "heist_items_drop_corrupted_%", "matchers": [{"string": "#% chance in Heists for Items to drop Corrupted", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance in Heists for Items to drop Identified", "better": 1, "id": "heist_items_drop_identified_%", "matchers": [{"string": "#% chance in Heists for Items to drop Identified", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance in Heists for Items to drop with an additional Socket", "better": 1, "id": "heist_items_have_one_additional_socket_%", "matchers": [{"string": "#% chance in Heists for Items to drop with an additional Socket", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance in Heists for Items to drop fully linked", "better": 1, "id": "heist_items_are_fully_linked_%", "matchers": [{"string": "#% chance in Heists for Items to drop fully linked", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance in Heists for Items to drop with Shaper Influence", "better": 1, "id": "heist_items_have_shaper_influence_%", "matchers": [{"string": "#% chance in Heists for Items to drop with Shaper Influence", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance in Heists for Items to drop with Elder Influence", "better": 1, "id": "heist_items_have_elder_influence_%", "matchers": [{"string": "#% chance in Heists for Items to drop with Elder Influence", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance in Heists for Orbs of Transmutation to drop as Orbs of Alchemy instead", "better": 1, "id": "heist_currency_transmutation_drops_as_alchemy_%", "matchers": [{"string": "#% chance in Heists for Orbs of Transmutation to drop as Orbs of Alchemy instead", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance in Heists for Orbs of Transmutation to drop as Chaos Orbs instead", "better": 1, "id": "heist_currency_transmutation_drops_as_chaos_%", "matchers": [{"string": "#% chance in Heists for Orbs of Transmutation to drop as Chaos Orbs instead", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance in Heists for Orbs of Alteration to drop as Orbs of Alchemy instead", "better": 1, "id": "heist_currency_alteration_drops_as_alchemy_%", "matchers": [{"string": "#% chance in Heists for Orbs of Alteration to drop as Orbs of Alchemy instead", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance in Heists for Orbs of Alteration to drop as Chaos Orbs instead", "better": 1, "id": "heist_currency_alteration_drops_as_chaos_%", "matchers": [{"string": "#% chance in Heists for Orbs of Alteration to drop as Chaos Orbs instead", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance in Heists for Orbs of Alteration to drop as Regal Orbs instead", "better": 1, "id": "heist_currency_alteration_drops_as_regal_%", "matchers": [{"string": "#% chance in Heists for Orbs of Alteration to drop as Regal Orbs instead", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance in Heists for Orbs of Augmentation to drop as Orbs of Alchemy instead", "better": 1, "id": "heist_currency_augmentation_drops_as_alchemy_%", "matchers": [{"string": "#% chance in Heists for Orbs of Augmentation to drop as Orbs of Alchemy instead", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance in Heists for Orbs of Augmentation to drop as Chaos Orbs instead", "better": 1, "id": "heist_currency_augmentation_drops_as_chaos_%", "matchers": [{"string": "#% chance in Heists for Orbs of Augmentation to drop as Chaos Orbs instead", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance in Heists for Orbs of Augmentation to drop as Regal Orbs instead", "better": 1, "id": "heist_currency_augmentation_drops_as_regal_%", "matchers": [{"string": "#% chance in Heists for Orbs of Augmentation to drop as Regal Orbs instead", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance in Heists for Chaos Orbs to drop as Divine Orbs instead", "better": 1, "id": "heist_currency_chaos_drops_as_divine_%", "matchers": [{"string": "#% chance in Heists for Chaos Orbs to drop as Divine Orbs instead", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance in Heists for Chaos Orbs to drop as Exalted Orbs instead", "better": 1, "id": "heist_currency_chaos_drops_as_exalted_%", "matchers": [{"string": "#% chance in Heists for Chaos Orbs to drop as Exalted Orbs instead", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance in Heists for Regal Orbs to drop as Divine Orbs instead", "better": 1, "id": "heist_currency_regal_drops_as_divine_%", "matchers": [{"string": "#% chance in Heists for Regal Orbs to drop as Divine Orbs instead", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance in Heists for Regal Orbs to drop as Exalted Orbs instead", "better": 1, "id": "heist_currency_regal_drops_as_exalted_%", "matchers": [{"string": "#% chance in Heists for Regal Orbs to drop as Exalted Orbs instead", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance in Heists for Orbs of Scouring to drop as Orbs of Regret instead", "better": 1, "id": "heist_currency_scouring_drops_as_regret_%", "matchers": [{"string": "#% chance in Heists for Orbs of Scouring to drop as Orbs of Regret instead", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance in Heists for Orbs of Scouring to drop as Orbs of Annulment instead", "better": 1, "id": "heist_currency_scouring_drops_as_annulment_%", "matchers": [{"string": "#% chance in Heists for Orbs of Scouring to drop as Orbs of Annulment instead", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance in Heists for Orbs of Regret to drop as Orbs of Annulment instead", "better": 1, "id": "heist_currency_regret_drops_as_annulment_%", "matchers": [{"string": "#% chance in Heists for Orbs of Regret to drop as Orbs of Annulment instead", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance in Heists for Chromatic Orbs to drop as Jeweller's Orbs instead", "better": 1, "id": "heist_currency_chromatic_drops_as_jewellers_%", "matchers": [{"string": "#% chance in Heists for Chromatic Orbs to drop as Jeweller's Orbs instead", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance in Heists for Chromatic Orbs to drop as Orbs of Fusing instead", "better": 1, "id": "heist_currency_chromatic_drops_as_fusing_%", "matchers": [{"string": "#% chance in Heists for Chromatic Orbs to drop as Orbs of Fusing instead", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance in Heists for Jeweller's Orbs to drop as Orbs of Fusing instead", "better": 1, "id": "heist_currency_jewellers_drops_as_fusing_%", "matchers": [{"string": "#% chance in Heists for Jeweller's Orbs to drop as Orbs of Fusing instead", "negate": false}], "trade": {"ids": null}} +{"ref": "Heist Chests have a #% chance to contain more valuable Uniques", "better": 1, "id": "heist_chests_unique_rarity_%", "matchers": [{"string": "Heist Chests have a #% chance to contain more valuable Uniques", "negate": false}, {"string": "Heist Chests contain more valuable Uniques", "negate": true}], "trade": {"ids": null}} +{"ref": "#% chance to receive additional Armour items when opening a Reward Chest in a Heist", "better": 1, "id": "heist_additional_armour_rewards_from_reward_chests_%", "matchers": [{"string": "#% chance to receive additional Armour items when opening a Reward Chest in a Heist", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to receive additional Weapons when opening a Reward Chest in a Heist", "better": 1, "id": "heist_additional_weapons_rewards_from_reward_chests_%", "matchers": [{"string": "#% chance to receive additional Weapons when opening a Reward Chest in a Heist", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to receive additional Jewellery when opening a Reward Chest in a Heist", "better": 1, "id": "heist_additional_jewellery_rewards_from_reward_chests_%", "matchers": [{"string": "#% chance to receive additional Jewellery when opening a Reward Chest in a Heist", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to receive additional Gem items when opening a Reward Chest in a Heist", "better": 1, "id": "heist_additional_gems_rewards_from_reward_chests_%", "matchers": [{"string": "#% chance to receive additional Gem items when opening a Reward Chest in a Heist", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to receive additional Essences when opening a Reward Chest in a Heist", "better": 1, "id": "heist_additional_essences_rewards_from_reward_chests_%", "matchers": [{"string": "#% chance to receive additional Essences when opening a Reward Chest in a Heist", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to receive additional Divination Card items when opening a Reward Chest in a Heist", "better": 1, "id": "heist_additional_divination_rewards_from_reward_chests_%", "matchers": [{"string": "#% chance to receive additional Divination Card items when opening a Reward Chest in a Heist", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to receive additional Unique items when opening a Reward Chest in a Heist", "better": 1, "id": "heist_additional_uniques_rewards_from_reward_chests_%", "matchers": [{"string": "#% chance to receive additional Unique items when opening a Reward Chest in a Heist", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to receive additional Talismans when opening a Reward Chest in a Heist", "better": 1, "id": "heist_additional_talisman_rewards_from_reward_chests_%", "matchers": [{"string": "#% chance to receive additional Talismans when opening a Reward Chest in a Heist", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to receive additional Abyss items when opening a Reward Chest in a Heist", "better": 1, "id": "heist_additional_abyss_rewards_from_reward_chests_%", "matchers": [{"string": "#% chance to receive additional Abyss items when opening a Reward Chest in a Heist", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to receive additional Breach items when opening a Reward Chest in a Heist", "better": 1, "id": "heist_additional_breach_rewards_from_reward_chests_%", "matchers": [{"string": "#% chance to receive additional Breach items when opening a Reward Chest in a Heist", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to receive additional Metamorph items when opening a Reward Chest in a Heist", "better": 1, "id": "heist_additional_metamorph_rewards_from_reward_chests_%", "matchers": [{"string": "#% chance to receive additional Metamorph items when opening a Reward Chest in a Heist", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to receive additional Delirium items when opening a Reward Chest in a Heist", "better": 1, "id": "heist_additional_delirium_rewards_from_reward_chests_%", "matchers": [{"string": "#% chance to receive additional Delirium items when opening a Reward Chest in a Heist", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to receive additional Legion items when opening a Reward Chest in a Heist", "better": 1, "id": "heist_additional_legion_rewards_from_reward_chests_%", "matchers": [{"string": "#% chance to receive additional Legion items when opening a Reward Chest in a Heist", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to receive additional Blight items when opening a Reward Chest in a Heist", "better": 1, "id": "heist_additional_blight_rewards_from_reward_chests_%", "matchers": [{"string": "#% chance to receive additional Blight items when opening a Reward Chest in a Heist", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to receive additional Harbinger items when opening a Reward Chest in a Heist", "better": 1, "id": "heist_additional_harbinger_rewards_from_reward_chests_%", "matchers": [{"string": "#% chance to receive additional Harbinger items when opening a Reward Chest in a Heist", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to receive additional Delve items when opening a Reward Chest in a Heist", "better": 1, "id": "heist_additional_delve_rewards_from_reward_chests_%", "matchers": [{"string": "#% chance to receive additional Delve items when opening a Reward Chest in a Heist", "negate": false}], "trade": {"ids": null}} +{"ref": "Projectiles from Attacks Fork", "better": 1, "id": "attack_projectiles_fork", "matchers": [{"string": "Projectiles from Attacks Fork", "negate": false}], "trade": {"ids": null}} +{"ref": "Projectiles from Attacks Fork an additional time", "better": 1, "id": "attack_projectiles_fork_additional_times", "matchers": [{"string": "Projectiles from Attacks Fork an additional time", "negate": false}], "trade": {"ids": null}} +{"ref": "Impale Damage dealt to Enemies Impaled by you Overwhelms #% Physical Damage Reduction", "better": 1, "id": "impale_phys_reduction_%_penalty", "matchers": [{"string": "Impale Damage dealt to Enemies Impaled by you Overwhelms #% Physical Damage Reduction", "negate": false}], "trade": {"ids": null}} +{"ref": "Minions are Aggressive", "better": 1, "id": "minion_larger_aggro_radius", "matchers": [{"string": "Minions are Aggressive", "negate": false}], "trade": {"ids": null}} +{"ref": "Consumes Socketed Uncorrupted Support Gems when they reach Maximum Level\\nCan Consume # Uncorrupted Support Gem\\nHas not Consumed any Gems", "better": 1, "id": "local_unique_hungry_loop_number_of_gems_to_consume", "matchers": [{"string": "Consumes Socketed Uncorrupted Support Gems when they reach Maximum Level\\nCan Consume # Uncorrupted Support Gem\\nHas not Consumed any Gems", "negate": false}], "trade": {"ids": null}} +{"ref": "Area contains a Blight Encounter", "better": 1, "id": "map_num_extra_blights_", "matchers": [{"string": "Area contains a Blight Encounter", "negate": false}], "trade": {"ids": null}} +{"ref": "Area contains # additional packs of Elder Fiends", "better": 1, "id": "map_watchstone_additional_packs_of_elder_monsters", "matchers": [{"string": "Area contains # additional packs of Elder Fiends", "negate": false}], "trade": {"ids": null}} +{"ref": "Area contains # additional packs of Shaper Creations", "better": 1, "id": "map_watchstone_additional_packs_of_shaper_monsters", "matchers": [{"string": "Area contains # additional packs of Shaper Creations", "negate": false}], "trade": {"ids": null}} +{"ref": "Spells lose Intensity with #% increased frequency while moving", "better": 1, "id": "intensity_loss_frequency_while_moving_+%", "matchers": [{"string": "Spells lose Intensity with #% increased frequency while moving", "negate": false}, {"string": "Spells lose Intensity with #% reduced frequency while moving", "negate": true}], "trade": {"ids": null}} +{"ref": "Inflict # Grasping Vine on Hit", "better": 1, "id": "add_x_grasping_vines_on_hit", "matchers": [{"string": "Inflict # Grasping Vine on Hit", "negate": false}], "trade": {"ids": null}} +{"ref": "Found Items drop Identified in Area", "better": 1, "id": "map_equipment_drops_identified", "matchers": [{"string": "Found Items drop Identified in Area", "negate": false}], "trade": {"ids": null}} +{"ref": "Area contains #% increased number of Remnants", "better": 1, "id": "map_expedition_relics_+%", "matchers": [{"string": "Area contains #% increased number of Remnants", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_2991413918"]}}} +{"ref": "Area contains Medved, Feller of Heroes", "better": 1, "id": "map_expedition_saga_contains_boss", "matchers": [{"string": "Area contains Medved, Feller of Heroes", "negate": false}], "trade": {"ids": null}} +{"ref": "Excavated Chests have a #% chance to contain twice as many Items", "better": 1, "id": "map_expedition_chest_double_drops_chance_%", "matchers": [{"string": "Excavated Chests have a #% chance to contain twice as many Items", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_3239978999"]}}} +{"ref": "Remnants have #% chance to have an additional Suffix Modifier", "better": 1, "id": "map_expedition_extra_relic_suffix_chance_%", "matchers": [{"string": "Remnants have #% chance to have an additional Suffix Modifier", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_1871805225"]}}} +{"ref": "Area contains #% increased number of Monster Markers", "better": 1, "id": "map_expedition_number_of_monster_markers_+%", "matchers": [{"string": "Area contains #% increased number of Monster Markers", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_1915989164"]}}} +{"ref": "Area contains an additional Underground Area", "better": 1, "id": "map_expedition_saga_additional_terrain_features", "matchers": [{"string": "Area contains an additional Underground Area", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_1160596338"]}}} +{"ref": "#% increased Stealth", "better": 1, "id": "stealth_+%", "matchers": [{"string": "#% increased Stealth", "negate": false}, {"string": "#% reduced Stealth", "negate": true}], "trade": {"ids": null}} +{"ref": "Area contains # additional Chest Marker", "better": 1, "id": "map_expedition_chest_marker_count_+", "matchers": [{"string": "Area contains # additional Chest Marker", "negate": false}], "trade": {"ids": {"implicit": ["implicit.stat_4160330571"]}}} +{"ref": "DNT Area contains # additional Epic Chest Marker", "better": 1, "id": "map_expedition_epic_chest_marker_count_+", "matchers": [{"string": "DNT Area contains # additional Epic Chest Marker", "negate": false}], "trade": {"ids": null}} +{"ref": "DNT Area contains # additional Uncommon Chest Marker", "better": 1, "id": "map_expedition_uncommon_chest_marker_count_+", "matchers": [{"string": "DNT Area contains # additional Uncommon Chest Marker", "negate": false}], "trade": {"ids": null}} +{"ref": "DNT Area contains # additional Common Chest Marker", "better": 1, "id": "map_expedition_common_chest_marker_count_+", "matchers": [{"string": "DNT Area contains # additional Common Chest Marker", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Quantity of Exotic Coinage dropped by Monsters in Area", "better": 1, "id": "map_expedition_vendor_reroll_currency_quantity_+%", "matchers": [{"string": "#% increased Quantity of Exotic Coinage dropped by Monsters in Area", "negate": false}], "trade": {"ids": null}} +{"ref": "Maven releases all Bosses at once", "better": 1, "id": "maven_fight_layout_override", "matchers": [{"string": "Maven releases all Bosses at once", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Immunity to Bleeding for # seconds if used while Bleeding\\nGrants Immunity to Corrupted Blood for # seconds if used while affected by Corrupted Blood", "better": 1, "id": "local_flask_bleeding_immunity_if_bleeding_and_remove_corrupted_blood_s", "matchers": [{"string": "Grants Immunity to Bleeding for # seconds if used while Bleeding\\nGrants Immunity to Corrupted Blood for # seconds if used while affected by Corrupted Blood", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Immunity to Shock for # seconds if used while Shocked", "better": 1, "id": "local_flask_shock_immunity_if_shocked_s", "matchers": [{"string": "Grants Immunity to Shock for # seconds if used while Shocked", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Immunity to Chill for # seconds if used while Chilled\\nGrants Immunity to Freeze for # seconds if used while Frozen", "better": 1, "id": "local_flask_chill_or_freeze_immunity_if_chilled_or_frozen_s", "matchers": [{"string": "Grants Immunity to Chill for # seconds if used while Chilled\\nGrants Immunity to Freeze for # seconds if used while Frozen", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Immunity to Ignite for # seconds if used while Ignited\\nRemoves all Burning when used", "better": 1, "id": "local_flask_ignite_immunity_if_ignited_and_remove_burning_s", "matchers": [{"string": "Grants Immunity to Ignite for # seconds if used while Ignited\\nRemoves all Burning when used", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Immunity to Poison for # seconds if used while Poisoned", "better": 1, "id": "local_flask_poison_immunity_if_poisoned_s", "matchers": [{"string": "Grants Immunity to Poison for # seconds if used while Poisoned", "negate": false}], "trade": {"ids": null}} +{"ref": "Immunity to Poison during Effect", "better": 1, "id": "local_flask_immune_to_poison_during_flask_effect", "matchers": [{"string": "Immunity to Poison during Effect", "negate": false}], "trade": {"ids": null}} +{"ref": "Immunity to Shock during Effect", "better": 1, "id": "local_flask_immune_to_shock_during_flask_effect", "matchers": [{"string": "Immunity to Shock during Effect", "negate": false}], "trade": {"ids": null}} +{"ref": "Immunity to Freeze and Chill during Effect", "better": 1, "id": "local_flask_immune_to_freeze_and_chill_during_flask_effect", "matchers": [{"string": "Immunity to Freeze and Chill during Effect", "negate": false}], "trade": {"ids": null}} +{"ref": "Immunity to Ignite during Effect\\nRemoves Burning on use", "better": 1, "id": "local_flask_dispels_burning_and_ignite_immunity_during_effect", "matchers": [{"string": "Immunity to Ignite during Effect\\nRemoves Burning on use", "negate": false}], "trade": {"ids": null}} +{"ref": "Immunity to Bleeding and Corrupted Blood during Effect", "better": 1, "id": "local_flask_immune_to_bleeding_and_corrupted_blood_during_flask_effect", "matchers": [{"string": "Immunity to Bleeding and Corrupted Blood during Effect", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Reflected Damage taken during Effect", "better": 1, "id": "local_flask_reflect_damage_taken_+%_during_flask_effect", "matchers": [{"string": "#% increased Reflected Damage taken during Effect", "negate": false}, {"string": "#% reduced Reflected Damage taken during Effect", "negate": true}], "trade": {"ids": null}} +{"ref": "#% of Lightning Damage with Attack Skills Converted to Chaos Damage", "better": 1, "id": "non_skill_lightning_damage_%_to_convert_to_chaos_with_attacks", "matchers": [{"string": "#% of Lightning Damage with Attack Skills Converted to Chaos Damage", "negate": false}], "trade": {"ids": null}} +{"ref": "Attacks with this Weapon Penetrate #% Lightning Resistance", "better": 1, "id": "local_lightning_penetration_%", "matchers": [{"string": "Attacks with this Weapon Penetrate #% Lightning Resistance", "negate": false}], "trade": {"ids": null}} +{"ref": "Area contains # additional Map Boss", "better": 1, "id": "map_spawn_x_random_map_bosses", "matchers": [{"string": "Area contains # additional Map Boss", "negate": false}], "trade": {"ids": null}} +{"ref": "Unique Monsters have #% increased Maximum Life", "better": 1, "id": "map_gauntlet_unique_monster_life_+%", "matchers": [{"string": "Unique Monsters have #% increased Maximum Life", "negate": false}, {"string": "Unique Monsters have #% reduced Maximum Life", "negate": true}], "trade": {"ids": null}} +{"ref": "Area contains an additional Breach", "better": 1, "id": "map_contains_additional_breaches", "matchers": [{"string": "Area contains an additional Breach", "negate": false}], "trade": {"ids": null}} +{"ref": "Modifiers to Item Quantity affect the amount of rewards dropped by the boss by #% of their value", "better": 1, "id": "display_item_quantity_increases_rewards_from_boss_by_x_percent_of_its_value", "matchers": [{"string": "Modifiers to Item Quantity affect the amount of rewards dropped by the boss by #% of their value", "negate": false}], "trade": {"ids": null}} +{"ref": "Modifiers to Item Quantity will affect the number of encounter rewards dropped by #% of their value", "better": 1, "id": "display_item_quantity_increases_rewards_from_encounter_by_x_percent_of_its_value", "matchers": [{"string": "Modifiers to Item Quantity will affect the number of encounter rewards dropped by #% of their value", "negate": false}], "trade": {"ids": null}} +{"ref": "Vaal Vessel contains Mortal Fragments", "better": 1, "id": "map_vaal_vessel_gives_mortal_fragment", "matchers": [{"string": "Vaal Vessel contains Mortal Fragments", "negate": false}], "trade": {"ids": null}} +{"ref": "Awards an Improved Offering to the Goddess", "better": 1, "id": "map_labyrinth_trial_gives_upgraded_offering", "matchers": [{"string": "Awards an Improved Offering to the Goddess", "negate": false}], "trade": {"ids": null}} +{"ref": "Awards an Offering to the Goddess", "better": 1, "id": "display_map_labyrinth_trial_gives_offering", "matchers": [{"string": "Awards an Offering to the Goddess", "negate": false}], "trade": {"ids": null}} +{"ref": "Can only empower Rare or Unique enemies", "better": 1, "id": "local_sentinel_only_tag_rare_or_unique", "matchers": [{"string": "Can only empower Rare or Unique enemies", "negate": false}], "trade": {"ids": null}} +{"ref": "Empowers many enemies in one shot", "better": 1, "id": "local_sentinel_only_one_use", "matchers": [{"string": "Empowers many enemies in one shot", "negate": false}], "trade": {"ids": null}} +{"ref": "Can only empower Rare enemies", "better": 1, "id": "local_sentinel_only_tag_rare", "matchers": [{"string": "Can only empower Rare enemies", "negate": false}], "trade": {"ids": null}} +{"ref": "#% of Chaos Damage taken bypasses Energy Shield", "better": 1, "id": "base_chaos_damage_bypass_energy_shield_%", "matchers": [{"string": "#% of Chaos Damage taken bypasses Energy Shield", "negate": false}], "trade": {"ids": null}} +{"ref": "Kill Enemies that have 15% or lower Life on Hit if The Searing Exarch is dominant", "better": 1, "id": "local_kill_enemy_on_hit_if_under_15%_life_if_searing_exarch_dominant", "matchers": [{"string": "Kill Enemies that have 15% or lower Life on Hit if The Searing Exarch is dominant", "negate": false}], "trade": {"ids": null}} +{"ref": "Critical Hits have #% chance to inflict Malignant Madness if The Eater of Worlds is dominant", "better": 1, "id": "local_inflict_malignant_madness_on_critical_strike_%_if_eater_of_worlds_dominant", "matchers": [{"string": "Critical Hits have #% chance to inflict Malignant Madness if The Eater of Worlds is dominant", "negate": false}], "trade": {"ids": null}} +{"ref": "Socketed Warcry Skills have +# Cooldown Use", "better": 1, "id": "local_display_socketed_warcry_skills_cooldown_use_+", "matchers": [{"string": "Socketed Warcry Skills have +# Cooldown Use", "negate": false}], "trade": {"ids": null}} +{"ref": "When you Attack, take #% of Life as Physical Damage for\\neach Warcry Empowering the Attack", "better": 1, "id": "self_physical_damage_on_skill_use_%_max_life_per_warcry_exerting_action", "matchers": [{"string": "When you Attack, take #% of Life as Physical Damage for\\neach Warcry Empowering the Attack", "negate": false}], "trade": {"ids": null}} +{"ref": "Skills deal #% more Damage for each Warcry Empowering them", "better": 1, "id": "unique_helmet_damage_+%_final_per_warcry_exerting_action", "matchers": [{"string": "Skills deal #% more Damage for each Warcry Empowering them", "negate": false}, {"string": "Skills deal #% less Damage for each Warcry Empowering them", "negate": true}], "trade": {"ids": null}} +{"ref": "All Damage Taken from Hits can Chill you", "better": 1, "id": "all_damage_taken_can_chill", "matchers": [{"string": "All Damage Taken from Hits can Chill you", "negate": false}], "trade": {"ids": null}} +{"ref": "All Damage Taken from Hits can Ignite you", "better": 1, "id": "all_damage_taken_can_ignite", "matchers": [{"string": "All Damage Taken from Hits can Ignite you", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Duration", "better": 1, "id": "local_sentinel_drone_duration_+%", "matchers": [{"string": "#% increased Duration", "negate": false}, {"string": "#% reduced Duration", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2541588185", "explicit.stat_1256719186"]}}} +{"ref": "{:+d} second to Duration", "better": 1, "id": "local_sentinel_duration_+", "matchers": [{"string": "{:+d} second to Duration", "negate": false}], "trade": {"ids": null}} +{"ref": "Empowers {:+d} Enemies", "better": 1, "id": "local_sentinel_tag_limit_+", "matchers": [{"string": "Empowers {:+d} Enemies", "negate": false}], "trade": {"ids": null}} +{"ref": "{:+d} to Charge", "better": 1, "id": "local_sentinel_drone_charge_+", "matchers": [{"string": "{:+d} to Charge", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased number of Empowered Enemies", "better": 1, "id": "local_sentinel_tag_limit_+%", "matchers": [{"string": "#% increased number of Empowered Enemies", "negate": false}, {"string": "#% reduced number of Empowered Enemies", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Empowerment", "better": 1, "id": "local_sentinel_drone_difficulty_+%", "matchers": [{"string": "#% increased Empowerment", "negate": false}, {"string": "#% reduced Empowerment", "negate": true}], "trade": {"ids": null}} +{"ref": "Character Gains Unholy Might for 1 second on deployment", "better": 1, "id": "sentinel_drone_player_gains_unholy_might_on_summon_ms", "matchers": [{"string": "Character Gains Unholy Might for 1 second on deployment", "negate": false}], "trade": {"ids": null}} +{"ref": "Character Gains Tailwind for 1 second on deployment", "better": 1, "id": "sentinel_drone_player_gains_tailwind_on_summon_ms", "matchers": [{"string": "Character Gains Tailwind for 1 second on deployment", "negate": false}], "trade": {"ids": null}} +{"ref": "Character Gains Acceleration Shrine for 1 second on deployment", "better": 1, "id": "sentinel_drone_player_gains_accelerating_shrine_on_summon_ms", "matchers": [{"string": "Character Gains Acceleration Shrine for 1 second on deployment", "negate": false}], "trade": {"ids": null}} +{"ref": "Character Gains Charged Shrine for 1 second on deployment", "better": 1, "id": "sentinel_drone_player_gains_resonating_shrine_on_summon_ms", "matchers": [{"string": "Character Gains Charged Shrine for 1 second on deployment", "negate": false}], "trade": {"ids": null}} +{"ref": "Character Gains Diamond Shrine for 1 second on deployment", "better": 1, "id": "sentinel_drone_player_gains_diamond_shrine_on_summon_ms", "matchers": [{"string": "Character Gains Diamond Shrine for 1 second on deployment", "negate": false}], "trade": {"ids": null}} +{"ref": "Character Gains Gloom Shrine for 1 second on deployment", "better": 1, "id": "sentinel_drone_player_gains_gloom_shrine_on_summon_ms", "matchers": [{"string": "Character Gains Gloom Shrine for 1 second on deployment", "negate": false}], "trade": {"ids": null}} +{"ref": "Character Gains Resistance Shrine for 1 second on deployment", "better": 1, "id": "sentinel_drone_player_gains_resistance_shrine_on_summon_ms", "matchers": [{"string": "Character Gains Resistance Shrine for 1 second on deployment", "negate": false}], "trade": {"ids": null}} +{"ref": "Character Gains Massive Shrine for 1 second on deployment", "better": 1, "id": "sentinel_drone_player_gains_massive_shrine_on_summon_ms", "matchers": [{"string": "Character Gains Massive Shrine for 1 second on deployment", "negate": false}], "trade": {"ids": null}} +{"ref": "Character Gains Echoing Shrine for 1 second on deployment", "better": 1, "id": "sentinel_drone_player_gains_echoing_shrine_on_summon_ms", "matchers": [{"string": "Character Gains Echoing Shrine for 1 second on deployment", "negate": false}], "trade": {"ids": null}} +{"ref": "Character Gains Impenetrable Shrine for 1 second on deployment", "better": 1, "id": "sentinel_drone_player_gains_impenetrable_shrine_on_summon_ms", "matchers": [{"string": "Character Gains Impenetrable Shrine for 1 second on deployment", "negate": false}], "trade": {"ids": null}} +{"ref": "Character Gains Adrenaline for 1 second on deployment", "better": 1, "id": "sentinel_drone_player_gains_adrenaline_on_summon_ms", "matchers": [{"string": "Character Gains Adrenaline for 1 second on deployment", "negate": false}], "trade": {"ids": null}} +{"ref": "Character Gains Endurance Charges for 1 second on deployment", "better": 1, "id": "sentinel_drone_player_gains_endurance_charge_on_summon_ms", "matchers": [{"string": "Character Gains Endurance Charges for 1 second on deployment", "negate": false}], "trade": {"ids": null}} +{"ref": "Character Gains Power Charges for 1 second on deployment", "better": 1, "id": "sentinel_drone_player_gains_power_charge_on_summon_ms", "matchers": [{"string": "Character Gains Power Charges for 1 second on deployment", "negate": false}], "trade": {"ids": null}} +{"ref": "Character Gains Frenzy Charges for 1 second on deployment", "better": 1, "id": "sentinel_drone_player_gains_frenzy_charge_on_summon_ms", "matchers": [{"string": "Character Gains Frenzy Charges for 1 second on deployment", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance for Empowered Enemies to have a Currency Reward", "better": 1, "id": "sentinel_tag_currency_reward_chance_permillage", "matchers": [{"string": "#% chance for Empowered Enemies to have a Currency Reward", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance for Empowered Enemies to have an Essence Reward", "better": 1, "id": "sentinel_tag_essence_reward_chance_permillage", "matchers": [{"string": "#% chance for Empowered Enemies to have an Essence Reward", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance for Empowered Enemies to have a Unique Reward", "better": 1, "id": "sentinel_tag_unique_reward_chance_permillage", "matchers": [{"string": "#% chance for Empowered Enemies to have a Unique Reward", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance for Empowered Enemies to have a Gem Reward", "better": 1, "id": "sentinel_tag_gems_reward_chance_permillage", "matchers": [{"string": "#% chance for Empowered Enemies to have a Gem Reward", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance for Empowered Enemies to have a Map Reward", "better": 1, "id": "sentinel_tag_maps_reward_chance_permillage", "matchers": [{"string": "#% chance for Empowered Enemies to have a Map Reward", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance for Empowered Enemies to have a Jewellery Reward", "better": 1, "id": "sentinel_tag_trinkets_reward_chance_permillage", "matchers": [{"string": "#% chance for Empowered Enemies to have a Jewellery Reward", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance for Empowered Enemies to have an Armour Reward", "better": 1, "id": "sentinel_tag_armour_reward_chance_permillage", "matchers": [{"string": "#% chance for Empowered Enemies to have an Armour Reward", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance for Empowered Enemies to have a Weapon Reward", "better": 1, "id": "sentinel_tag_weapon_reward_chance_permillage", "matchers": [{"string": "#% chance for Empowered Enemies to have a Weapon Reward", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance for Empowered Enemies to have a Fragment Reward", "better": 1, "id": "sentinel_tag_fragments_reward_chance_permillage", "matchers": [{"string": "#% chance for Empowered Enemies to have a Fragment Reward", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance for Empowered Enemies to have a Scarab Reward", "better": 1, "id": "sentinel_tag_scarabs_reward_chance_permillage", "matchers": [{"string": "#% chance for Empowered Enemies to have a Scarab Reward", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance for Empowered Enemies to have a Divination Card Reward", "better": 1, "id": "sentinel_tag_divinationcards_reward_chance_permillage", "matchers": [{"string": "#% chance for Empowered Enemies to have a Divination Card Reward", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance for Empowered Enemies to have an Abyss Reward", "better": 1, "id": "sentinel_tag_abyss_reward_chance_permillage", "matchers": [{"string": "#% chance for Empowered Enemies to have an Abyss Reward", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance for Empowered Enemies to have a Harbinger Reward", "better": 1, "id": "sentinel_tag_harbinger_reward_chance_permillage", "matchers": [{"string": "#% chance for Empowered Enemies to have a Harbinger Reward", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance for Empowered Enemies to have a Breach Reward", "better": 1, "id": "sentinel_tag_breach_reward_chance_permillage", "matchers": [{"string": "#% chance for Empowered Enemies to have a Breach Reward", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance for Empowered Enemies to have a Fossil Reward", "better": 1, "id": "sentinel_tag_fossils_reward_chance_permillage", "matchers": [{"string": "#% chance for Empowered Enemies to have a Fossil Reward", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance for Empowered Enemies to have a Legion Reward", "better": 1, "id": "sentinel_tag_legion_reward_chance_permillage", "matchers": [{"string": "#% chance for Empowered Enemies to have a Legion Reward", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance for Empowered Enemies to have a Blight Reward", "better": 1, "id": "sentinel_tag_blight_reward_chance_permillage", "matchers": [{"string": "#% chance for Empowered Enemies to have a Blight Reward", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance for Empowered Enemies to have a Metamorphosis Reward", "better": 1, "id": "sentinel_tag_metamorphosis_reward_chance_permillage", "matchers": [{"string": "#% chance for Empowered Enemies to have a Metamorphosis Reward", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance for Empowered Enemies to have an Expedition Reward", "better": 1, "id": "sentinel_tag_expedition_reward_chance_permillage", "matchers": [{"string": "#% chance for Empowered Enemies to have an Expedition Reward", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance for Empowered Enemies to have a Heist Reward", "better": 1, "id": "sentinel_tag_heist_reward_chance_permillage", "matchers": [{"string": "#% chance for Empowered Enemies to have a Heist Reward", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance for Empowered Enemies to have a Ritual Reward", "better": 1, "id": "sentinel_tag_ritual_reward_chance_permillage", "matchers": [{"string": "#% chance for Empowered Enemies to have a Ritual Reward", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance for Empowered Enemies to have a Delirium Reward", "better": 1, "id": "sentinel_tag_delirium_reward_chance_permillage", "matchers": [{"string": "#% chance for Empowered Enemies to have a Delirium Reward", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance for Empowered Enemies to have a Sentinel Reward", "better": 1, "id": "sentinel_tag_sentinel_reward_chance_permillage", "matchers": [{"string": "#% chance for Empowered Enemies to have a Sentinel Reward", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Chaining range", "better": 1, "id": "chaining_range_+%", "matchers": [{"string": "#% increased Chaining range", "negate": false}, {"string": "#% reduced Chaining range", "negate": true}], "trade": {"ids": null}} +{"ref": "Fires an additional Beam", "better": 1, "id": "sentinel_tag_beam_number_of_beams", "matchers": [{"string": "Fires an additional Beam", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance for Rewards to be Doubled", "better": 1, "id": "sentinel_tag_duplicate_reward_chance_%", "matchers": [{"string": "#% chance for Rewards to be Doubled", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to be Deployable an additional time", "better": 1, "id": "sentinel_refresh_on_use_chance_%", "matchers": [{"string": "#% chance to be Deployable an additional time", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Anger Aura", "better": 1, "id": "local_display_sentinel_uses_level_x_anger_aura", "matchers": [{"string": "Grants Level # Anger Aura", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Determination Aura", "better": 1, "id": "local_display_sentinel_uses_level_x_determination_aura", "matchers": [{"string": "Grants Level # Determination Aura", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Purity of Fire Aura", "better": 1, "id": "local_display_sentinel_uses_level_x_fire_resist_aura", "matchers": [{"string": "Grants Level # Purity of Fire Aura", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Purity of Elements Aura", "better": 1, "id": "local_display_sentinel_uses_level_x_purity_aura", "matchers": [{"string": "Grants Level # Purity of Elements Aura", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Hatred Aura", "better": 1, "id": "local_display_sentinel_uses_level_x_hatred_aura", "matchers": [{"string": "Grants Level # Hatred Aura", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Grace Aura", "better": 1, "id": "local_display_sentinel_uses_level_x_grace_aura", "matchers": [{"string": "Grants Level # Grace Aura", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Purity of Ice Aura", "better": 1, "id": "local_display_sentinel_uses_level_x_cold_resist_aura", "matchers": [{"string": "Grants Level # Purity of Ice Aura", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Haste Aura", "better": 1, "id": "local_display_sentinel_uses_level_x_haste_aura", "matchers": [{"string": "Grants Level # Haste Aura", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Wrath Aura", "better": 1, "id": "local_display_sentinel_uses_level_x_wrath_aura", "matchers": [{"string": "Grants Level # Wrath Aura", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Discipline Aura", "better": 1, "id": "local_display_sentinel_uses_level_x_discipline_aura", "matchers": [{"string": "Grants Level # Discipline Aura", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Purity of Lightning Aura", "better": 1, "id": "local_display_sentinel_uses_level_x_lightning_resist_aura", "matchers": [{"string": "Grants Level # Purity of Lightning Aura", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Zealotry Aura", "better": 1, "id": "local_display_sentinel_uses_level_x_zealotry_aura", "matchers": [{"string": "Grants Level # Zealotry Aura", "negate": false}], "trade": {"ids": null}} +{"ref": "Grants Level # Malevolence Aura", "better": 1, "id": "local_display_sentinel_uses_level_x_malevolence_aura", "matchers": [{"string": "Grants Level # Malevolence Aura", "negate": false}], "trade": {"ids": null}} +{"ref": "Empowered Monsters have #% increased Quantity of Items Found", "better": 1, "id": "sentinel_tagged_item_quantity_+%", "matchers": [{"string": "Empowered Monsters have #% increased Quantity of Items Found", "negate": false}, {"string": "Empowered Monsters have #% reduced Quantity of Items Found", "negate": true}], "trade": {"ids": null}} +{"ref": "Empowered Monsters have #% increased Rarity of Items Found", "better": 1, "id": "sentinel_tagged_item_rarity_+%", "matchers": [{"string": "Empowered Monsters have #% increased Rarity of Items Found", "negate": false}, {"string": "Empowered Monsters have #% reduced Rarity of Items Found", "negate": true}], "trade": {"ids": null}} +{"ref": "Empowered Monsters grant #% increased Sentinel Power", "better": 1, "id": "sentinel_tagged_sentinel_experience_+%", "matchers": [{"string": "Empowered Monsters grant #% increased Sentinel Power", "negate": false}, {"string": "Empowered Monsters grant #% reduced Sentinel Power", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased chance to add Rewards", "better": 1, "id": "sentinel_chance_for_reward_+%", "matchers": [{"string": "#% increased chance to add Rewards", "negate": false}, {"string": "#% reduced chance to add Rewards", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased Rewards", "better": 1, "id": "sentinel_reward_count_+%", "matchers": [{"string": "#% increased Rewards", "negate": false}, {"string": "#% reduced Rewards", "negate": true}], "trade": {"ids": null}} +{"ref": "When a Character Kills an Empowered Rare Monster,\\nthey have #% chance to gain its Modifiers for 20 seconds", "better": 1, "id": "sentinel_monster_gives_mods_to_killer_chance_%", "matchers": [{"string": "When a Character Kills an Empowered Rare Monster,\\nthey have #% chance to gain its Modifiers for 20 seconds", "negate": false}], "trade": {"ids": null}} +{"ref": "Passives in Radius of {} can be Allocated\\nwithout being connected to your tree", "better": 1, "id": "local_unique_jewel_disconnected_passives_can_be_allocated_around_keystone_hash", "matchers": [{"string": "Passives in Radius of {} can be Allocated\\nwithout being connected to your tree", "negate": false}], "trade": {"ids": null}} +{"ref": "Destroyed on Empowering target Enemy", "better": 1, "id": "sentinel_destroyed_on_tagging_specific_monster", "matchers": [{"string": "Destroyed on Empowering target Enemy", "negate": false}], "trade": {"ids": null}} +{"ref": "Map Item Quantity affects number of rewards from Empowered Enemy", "better": 1, "id": "sentinel_map_quantity_applies_to_rewards", "matchers": [{"string": "Map Item Quantity affects number of rewards from Empowered Enemy", "negate": false}], "trade": {"ids": null}} +{"ref": "Empowered Monsters drop {} Currency Rewards", "better": 1, "id": "sentinel_tagged_monsters_drop_x_currency_rewards", "matchers": [{"string": "Empowered Monsters drop {} Currency Rewards", "negate": false}], "trade": {"ids": null}} +{"ref": "Empowered Monsters drop {} Sentinel Rewards", "better": 1, "id": "sentinel_tagged_monsters_drop_x_sentinel_rewards", "matchers": [{"string": "Empowered Monsters drop {} Sentinel Rewards", "negate": false}], "trade": {"ids": null}} +{"ref": "Empowered Monsters drop {} Divination Card Rewards", "better": 1, "id": "sentinel_tagged_monsters_drop_x_divination_card_rewards", "matchers": [{"string": "Empowered Monsters drop {} Divination Card Rewards", "negate": false}], "trade": {"ids": null}} +{"ref": "Empowered Monsters drop {} Scarab Rewards", "better": 1, "id": "sentinel_tagged_monsters_drop_x_scarab_rewards", "matchers": [{"string": "Empowered Monsters drop {} Scarab Rewards", "negate": false}], "trade": {"ids": null}} +{"ref": "Empowered Monsters drop {} Unique Rewards", "better": 1, "id": "sentinel_tagged_monsters_drop_x_unique_rewards", "matchers": [{"string": "Empowered Monsters drop {} Unique Rewards", "negate": false}], "trade": {"ids": null}} +{"ref": "Empowered Monsters drop {} Map Rewards", "better": 1, "id": "sentinel_tagged_monsters_drop_x_map_rewards", "matchers": [{"string": "Empowered Monsters drop {} Map Rewards", "negate": false}], "trade": {"ids": null}} +{"ref": "Empowered Monsters drop {} Fragment Rewards", "better": 1, "id": "sentinel_tagged_monsters_drop_x_fragment_rewards", "matchers": [{"string": "Empowered Monsters drop {} Fragment Rewards", "negate": false}], "trade": {"ids": null}} +{"ref": "Cannot Empower Enemies", "better": 1, "id": "local_sentinel_cannot_tag_anything", "matchers": [{"string": "Cannot Empower Enemies", "negate": false}], "trade": {"ids": null}} +{"ref": "Empowered Enemies cannot gain Rewards", "better": 1, "id": "sentinel_tag_no_rewards", "matchers": [{"string": "Empowered Enemies cannot gain Rewards", "negate": false}], "trade": {"ids": null}} +{"ref": "#% more Empowerment for each Enemy Empowered", "better": 1, "id": "sentinel_tag_difficulty_+permillage_final_per_previous_tag", "matchers": [{"string": "#% more Empowerment for each Enemy Empowered", "negate": false}, {"string": "#% less Empowerment for each Enemy Empowered", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased chance to add a Reward for each Enemy Empowered", "better": 1, "id": "sentinel_tag_reward_chance_+permillage_per_previous_tag", "matchers": [{"string": "#% increased chance to add a Reward for each Enemy Empowered", "negate": false}, {"string": "#% reduced chance to add a Reward for each Enemy Empowered", "negate": true}], "trade": {"ids": null}} +{"ref": "#% chance to upgrade Normal Rarity Enemies to be Rare when they are Empowered", "better": 1, "id": "sentinel_tag_upgrade_target_to_rare_%", "matchers": [{"string": "#% chance to upgrade Normal Rarity Enemies to be Rare when they are Empowered", "negate": false}], "trade": {"ids": null}} +{"ref": "Spawns Worms", "better": 1, "id": "local_display_sentinel_spawns_worms", "matchers": [{"string": "Spawns Worms", "negate": false}], "trade": {"ids": null}} +{"ref": "Empowered Enemies do not drop Items", "better": 1, "id": "sentinel_tag_no_drops", "matchers": [{"string": "Empowered Enemies do not drop Items", "negate": false}], "trade": {"ids": null}} +{"ref": "Cleanses Corrupted Fish", "better": 1, "id": "sentinel_can_cleanse_corrupted_fish", "matchers": [{"string": "Cleanses Corrupted Fish", "negate": false}], "trade": {"ids": null}} +{"ref": "Purifies Corrupted Water", "better": 1, "id": "sentinel_can_purify_corrupted_water", "matchers": [{"string": "Purifies Corrupted Water", "negate": false}], "trade": {"ids": null}} +{"ref": "Petrifies Empowered Enemies for 1 second", "better": 1, "id": "sentinel_petrify_tagged_monsters_ms", "matchers": [{"string": "Petrifies Empowered Enemies for 1 second", "negate": false}], "trade": {"ids": null}} +{"ref": "Areas contain Temporal Incursions", "better": 1, "id": "map_spawn_incursion_encounters", "matchers": [{"string": "Areas contain Temporal Incursions", "negate": false}], "trade": {"ids": null}} +{"ref": "Area contains an additional Shrine", "better": 1, "id": "memory_line_number_of_shrines", "matchers": [{"string": "Area contains an additional Shrine", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_1468737867"]}}} +{"ref": "Essences imprison a Rogue Exile", "better": 1, "id": "map_essences_contains_rogue_exiles", "matchers": [{"string": "Essences imprison a Rogue Exile", "negate": false}], "trade": {"ids": null}} +{"ref": "Strongboxes have #% chance to be an Operative's Strongbox", "better": 1, "id": "memory_line_strongboxes_chance_to_be_operatives_%", "matchers": [{"string": "Strongboxes have #% chance to be an Operative's Strongbox", "negate": false}], "trade": {"ids": null}} +{"ref": "Area is Breached", "better": 1, "id": "memory_line_breach_covers_map", "matchers": [{"string": "Area is Breached", "negate": false}], "trade": {"ids": null}} +{"ref": "Breach Hands are small", "better": 1, "id": "map_breach_hands_are_small", "matchers": [{"string": "Breach Hands are small", "negate": false}], "trade": {"ids": null}} +{"ref": "Players in Area take on the form of Harbingers", "better": 1, "id": "memory_line_player_is_harbinger", "matchers": [{"string": "Players in Area take on the form of Harbingers", "negate": false}], "trade": {"ids": null}} +{"ref": "Crops in Area are larger in size", "better": 1, "id": "memory_line_big_harvest", "matchers": [{"string": "Crops in Area are larger in size", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Explicit Modifier magnitudes", "better": 1, "id": "local_explicit_mod_effect_+%", "matchers": [{"string": "#% increased Explicit Modifier magnitudes", "negate": false}, {"string": "#% reduced Explicit Modifier magnitudes", "negate": true}], "trade": {"ids": null}} +{"ref": "#% increased maximum Life", "better": 1, "id": "map_player_maximum_life_+%", "matchers": [{"string": "#% increased maximum Life", "negate": false}, {"string": "#% reduced maximum Life", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_983749596"], "rune": ["rune.stat_983749596"], "sanctum": ["sanctum.stat_1200789871"]}}} +{"ref": "#% increased maximum Honour", "better": 1, "id": "sanctum_max_honour_+%", "matchers": [{"string": "#% increased maximum Honour", "negate": false}, {"string": "#% reduced maximum Honour", "negate": true}], "trade": {"ids": {"sanctum": ["sanctum.stat_3970123360"]}}} +{"ref": "#% increased Honour restored", "better": 1, "id": "sanctum_honour_restored_+%", "matchers": [{"string": "#% increased Honour restored", "negate": false}, {"string": "#% reduced Honour restored", "negate": true}], "trade": {"ids": {"sanctum": ["sanctum.stat_1583320325"]}}} +{"ref": "Monsters have #% chance to drop double Sacred Water", "better": 1, "id": "sanctum_monster_double_gold_%", "matchers": [{"string": "Monsters have #% chance to drop double Sacred Water", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_231205265"]}}} +{"ref": "Fountains have #% chance to grant double Sacred Water", "better": 1, "id": "sanctum_fountain_double_gold_%", "matchers": [{"string": "Fountains have #% chance to grant double Sacred Water", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_2363402715"]}}} +{"ref": "#% increased Merchant Prices", "better": 1, "id": "sanctum_merchant_gold_cost_+%", "matchers": [{"string": "#% increased Merchant Prices", "negate": false}, {"string": "#% reduced Merchant Prices", "negate": true}], "trade": {"ids": {"sanctum": ["sanctum.stat_3096446459"]}}} +{"ref": "Restore # Honour on killing a Boss", "better": 1, "id": "sanctum_restore_honour_on_boss_kill", "matchers": [{"string": "Restore # Honour on killing a Boss", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_3865020351"]}}} +{"ref": "Restore # Honour on venerating a Maraketh Shrine", "better": 1, "id": "sanctum_restore_honour_on_fountain_use", "matchers": [{"string": "Restore # Honour on venerating a Maraketh Shrine", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_2492340460"]}}} +{"ref": "Gain # Sacred Water at the start of the Trial", "better": 1, "id": "sanctum_starting_gold", "matchers": [{"string": "Gain # Sacred Water at the start of the Trial", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_2393318075"]}}} +{"ref": "Gain # Sacred Water when you complete a Room", "better": 1, "id": "gain_x_sanctum_gold_on_room_completion", "matchers": [{"string": "Gain # Sacred Water when you complete a Room", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_4057192895"]}}} +{"ref": "Restore # Honour on room completion", "better": 1, "id": "sanctum_restore_honour_on_room_completion", "matchers": [{"string": "Restore # Honour on room completion", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_2114314842"]}}} +{"ref": "An additional Room is revealed on the Trial Map", "better": 1, "id": "sanctum_map_reveal_extra_room_each_floor", "matchers": [{"string": "An additional Room is revealed on the Trial Map", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_386901949"]}}} +{"ref": "#% chance to Avoid gaining an Affliction", "better": 1, "id": "sanctum_avoid_affliction_chance_%", "matchers": [{"string": "#% chance to Avoid gaining an Affliction", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_1960517795"]}}} +{"ref": "Monsters take #% increased Damage", "better": 1, "id": "map_monster_damage_taken_+%", "matchers": [{"string": "Monsters take #% increased Damage", "negate": false}, {"string": "Monsters take #% reduced Damage", "negate": true}], "trade": {"ids": {"sanctum": ["sanctum.stat_3114474137"]}}} +{"ref": "Rare Monsters take #% increased Damage", "better": 1, "id": "map_sanctum_guard_damage_taken_+%", "matchers": [{"string": "Rare Monsters take #% increased Damage", "negate": false}, {"string": "Rare Monsters take #% reduced Damage", "negate": true}], "trade": {"ids": {"sanctum": ["sanctum.stat_408585189"]}}} +{"ref": "Bosses take #% increased Damage", "better": 1, "id": "map_sanctum_boss_damage_taken_+%", "matchers": [{"string": "Bosses take #% increased Damage", "negate": false}, {"string": "Bosses take #% reduced Damage", "negate": true}], "trade": {"ids": {"sanctum": ["sanctum.stat_3226329527"]}}} +{"ref": "The Merchant has an additional Choice", "better": 1, "id": "sanctum_merchant_additional_options", "matchers": [{"string": "The Merchant has an additional Choice", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_290775436"]}}} +{"ref": "Rare Monsters deal #% increased Damage", "better": 1, "id": "map_sanctum_guard_sanctum_damage_+%", "matchers": [{"string": "Rare Monsters deal #% increased Damage", "negate": false}, {"string": "Rare Monsters deal #% reduced Damage", "negate": true}], "trade": {"ids": {"sanctum": ["sanctum.stat_199414195"]}}} +{"ref": "Traps deal #% increased Damage", "better": 1, "id": "map_sanctum_boss_sanctum_damage_+%", "matchers": [{"string": "Traps deal #% increased Damage", "negate": false}, {"string": "Traps deal #% reduced Damage", "negate": true}], "trade": {"ids": {"sanctum": ["sanctum.stat_3554921410"]}}} +{"ref": "#% increased quantity of Relics dropped by Monsters", "better": 1, "id": "map_sanctum_relic_drop_chance_+%", "matchers": [{"string": "#% increased quantity of Relics dropped by Monsters", "negate": false}, {"string": "#% reduced quantity of Relics dropped by Monsters", "negate": true}], "trade": {"ids": {"sanctum": ["sanctum.stat_1680962389"]}}} +{"ref": "#% increased Defences", "better": 1, "id": "map_player_defences_+%", "matchers": [{"string": "#% increased Defences", "negate": false}, {"string": "% reduced Defences", "negate": true}], "trade": {"ids": {"sanctum": ["sanctum.stat_3439681381"]}}} +{"ref": "Players have #% increased Movement Speed", "better": 1, "id": "map_players_movement_speed_+%", "matchers": [{"string": "Players have #% increased Movement Speed", "negate": false}, {"string": "Players have #% reduced Movement Speed", "negate": true}], "trade": {"ids": null}} +{"ref": "+# metre to Dodge Roll distance", "better": 1, "id": "map_player_dodge_roll_base_travel_distance", "matchers": [{"string": "# metre to Dodge Roll distance", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_258119672"], "sanctum": ["sanctum.stat_1040593638"]}}} +{"ref": "#% increased Slowing Potency of Debuffs on You", "better": 1, "id": "map_player_base_slow_potency_+%", "matchers": [{"string": "#% increased Slowing Potency of Debuffs on You", "negate": false}, {"string": "#% reduced Slowing Potency of Debuffs on You", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_924253255"], "implicit": ["implicit.stat_924253255"], "enchant": ["enchant.stat_924253255"], "rune": ["rune.stat_924253255"], "sanctum": ["sanctum.stat_978111083"]}}} +{"ref": "Hits against you have #% reduced Critical Damage Bonus", "better": 1, "id": "map_player_base_self_critical_strike_multiplier_-%", "matchers": [{"string": "Hits against you have #% reduced Critical Damage Bonus", "negate": false}, {"string": "Hits against you have #% increased Critical Damage Bonus", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3855016469"], "rune": ["rune.stat_3855016469"], "sanctum": ["sanctum.stat_2948404493"]}}} +{"ref": "When you gain a Key #% chance to gain another", "better": 1, "id": "sanctum_additional_key_chance_%", "matchers": [{"string": "When you gain a Key #% chance to gain another", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_3170238729"]}}} +{"ref": "Restore # Honour on picking up a Key", "better": 1, "id": "sanctum_restore_honour_on_gain_key", "matchers": [{"string": "Restore # Honour on picking up a Key", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_521869848"]}}} +{"ref": "Monsters have #% increased Attack, Cast and Movement Speed", "better": 1, "id": "map_monster_attack_cast_and_movement_speed_+%", "matchers": [{"string": "Monsters have #% increased Attack, Cast and Movement Speed", "negate": false}, {"string": "Monsters have #% reduced Attack, Cast and Movement Speed", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3909654181"], "sanctum": ["sanctum.stat_3909654181"]}}} +{"ref": "+#% to Honour Resistance", "better": 1, "id": "sanctum_honour_resistance_%", "matchers": [{"string": "#% to Honour Resistance", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_2287831219"]}}} +{"ref": "+#% to Maximum Honour Resistance", "better": 1, "id": "sanctum_additional_max_honour_resistance_%", "matchers": [{"string": "#% to Maximum Honour Resistance", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_3096543632"]}}} +{"ref": "#% increased quantity of Keys dropped by Monsters", "better": 1, "id": "map_sanctum_key_drop_chance_+%", "matchers": [{"string": "#% increased quantity of Keys dropped by Monsters", "negate": false}, {"string": "#% reduced quantity of Keys dropped by Monsters", "negate": true}], "trade": {"ids": {"sanctum": ["sanctum.stat_729354668"]}}} +{"ref": "#% chance if you were to lose all your Honour to have 1 Honour instead", "better": 1, "id": "sanctum_chance_to_prevent_zero_honour_%", "matchers": [{"string": "#% chance if you were to lose all your Honour to have 1 Honour instead", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_3870327403"]}}} +{"ref": "#% chance for each of your Keys to upgrade on completing a Floor", "better": 1, "id": "sanctum_chance_to_upgrade_key_on_floor_completed_%", "matchers": [{"string": "#% chance for each of your Keys to upgrade on completing a Floor", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_2155917449"]}}} +{"ref": "This item is destroyed when applied to a Trial", "better": 1, "id": "local_unique_relic_destroyed_on_sanctum_start", "matchers": [{"string": "This item is destroyed when applied to a Trial", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_3182333322"]}}} +{"ref": "Duplicates up to {} random Offer Reward upon defeating the Herald of the Scourge", "better": 1, "id": "map_lycia2_duplicate_up_to_x_deferred_rewards", "matchers": [{"string": "Duplicates up to {} random Offer Reward upon defeating the Herald of the Scourge", "negate": false}], "trade": {"ids": null}} +{"ref": "Zarokh, the Eternal drops an additional Barya", "better": 1, "id": "map_lycia2_drop_additional_sanctum_key", "matchers": [{"string": "Zarokh, the Eternal drops an additional Barya", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_3878191575"]}}} +{"ref": "Zarokh, the Eternal drops Blessed Bonds", "better": 1, "id": "map_sanctum_boss_drop_unique_1", "matchers": [{"string": "Zarokh, the Eternal drops Blessed Bonds", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_767926824"]}}} +{"ref": "Zarokh, the Eternal drops Temporalis", "better": 1, "id": "map_sanctum_boss_drop_unique_2", "matchers": [{"string": "Zarokh, the Eternal drops Temporalis", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_2469854926"]}}} +{"ref": "Zarokh, the Eternal drops Sekhema's Resolve", "better": 1, "id": "map_sanctum_boss_drop_unique_3", "matchers": [{"string": "Zarokh, the Eternal drops Sekhema's Resolve", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_2821715641"]}}} +{"ref": "Zarokh, the Eternal drops Sandstorm Visage", "better": 1, "id": "map_sanctum_boss_drop_unique_4", "matchers": [{"string": "Zarokh, the Eternal drops Sandstorm Visage", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_3059754769"]}}} +{"ref": "Zarokh, the Eternal drops Against the Darkness", "better": 1, "id": "map_sanctum_boss_drop_unique_5", "matchers": [{"string": "Zarokh, the Eternal drops Against the Darkness", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_3840591093"]}}} +{"ref": "Zarokh, the Eternal takes #% more Damage", "better": 1, "id": "map_lycia2_damage_taken_+%_final", "matchers": [{"string": "Zarokh, the Eternal takes #% more Damage", "negate": false}, {"string": "Zarokh, the Eternal takes #% less Damage", "negate": true}], "trade": {"ids": {"sanctum": ["sanctum.stat_2226900052"]}}} +{"ref": "Zarokh, the Eternal deals #% more Damage", "better": 1, "id": "map_lycia2_damage_+%_final", "matchers": [{"string": "Zarokh, the Eternal deals #% more Damage", "negate": false}, {"string": "Zarokh, the Eternal deals #% less Damage", "negate": true}], "trade": {"ids": {"sanctum": ["sanctum.stat_2149490821"]}}} +{"ref": "Aureus Coins are converted to Experience upon defeating the Herald of the Scourge", "better": 1, "id": "map_lycia2_aureus_converted_to_experience", "matchers": [{"string": "Aureus Coins are converted to Experience upon defeating the Herald of the Scourge", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_1307773596"]}}} +{"ref": "Aureus Coins are converted to Relics upon defeating the Herald of the Scourge", "better": 1, "id": "map_lycia2_aureus_converted_to_relics", "matchers": [{"string": "Aureus Coins are converted to Relics upon defeating the Herald of the Scourge", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_315260783"]}}} +{"ref": "Aureus Coins are converted to Tainted Currency upon defeating the Herald of the Scourge", "better": 1, "id": "map_lycia2_aureus_converted_to_tainted_currency", "matchers": [{"string": "Aureus Coins are converted to Tainted Currency upon defeating the Herald of the Scourge", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_1019656601"]}}} +{"ref": "Cannot have Boons", "better": 1, "id": "sanctum_prevent_boons", "matchers": [{"string": "Cannot have Boons", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_2283325632"]}}} +{"ref": "Rooms are unknown on the Trial Map", "better": 1, "id": "sanctum_hide_room_all", "matchers": [{"string": "Rooms are unknown on the Trial Map", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_3237367570"]}}} +{"ref": "Cannot restore Honour", "better": 1, "id": "sanctum_cannot_restore_honour", "matchers": [{"string": "Cannot restore Honour", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_2545161750"]}}} +{"ref": "Maximum Honour is 1", "better": 1, "id": "sanctum_maximum_honour_is_1", "matchers": [{"string": "Maximum Honour is 1", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_4191312223"]}}} +{"ref": "You have no Defences", "better": 1, "id": "map_player_defences_are_zero", "matchers": [{"string": "You have no Defences", "negate": false}], "trade": {"ids": {"sanctum": ["sanctum.stat_579203476"]}}} +{"ref": "Cannot be used with Trials below level {}", "better": 1, "id": "local_unique_relic_sanctum_level_restriction", "matchers": [{"string": "Cannot be used with Trials below level {}", "negate": false}], "trade": {"ids": null}} +{"ref": "Other Players are classified as Enemies", "better": 1, "id": "map_friendly_fire", "matchers": [{"string": "Other Players are classified as Enemies", "negate": false}], "trade": {"ids": null}} +{"ref": "Players can only deal Damage when near # other Players", "better": 1, "id": "map_deal_no_damage_if_less_than_X_players_nearby", "matchers": [{"string": "Players can only deal Damage when near # other Players", "negate": false}], "trade": {"ids": null}} +{"ref": "Players can only deal Damage to Monsters of matching Polarity", "better": 1, "id": "map_players_and_monsters_have_polarity", "matchers": [{"string": "Players can only deal Damage to Monsters of matching Polarity", "negate": false}], "trade": {"ids": null}} +{"ref": "Nearby Enemies are Covered in Ash", "better": 1, "id": "local_display_nearby_enemies_are_covered_in_ash", "matchers": [{"string": "Nearby Enemies are Covered in Ash", "negate": false}], "trade": {"ids": null}} +{"ref": "#% chance to Avoid being Knocked Back", "better": 1, "id": "avoid_knockback_%", "matchers": [{"string": "#% chance to Avoid being Knocked Back", "negate": false}], "trade": {"ids": null}} +{"ref": "Found Items have #% chance to drop Corrupted in Area", "better": 1, "id": "map_items_drop_corrupted_%", "matchers": [{"string": "Found Items have #% chance to drop Corrupted in Area", "negate": false}], "trade": {"ids": null}} +{"ref": "Players have #% more maximum Life and Energy Shield", "better": 1, "id": "map_player_maximum_life_and_es_+%_final_from_sanctum_curse", "matchers": [{"string": "Players have #% more maximum Life and Energy Shield", "negate": false}, {"string": "Players have #% less maximum Life and Energy Shield", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_3119282240"]}}} +{"ref": "Players have #% more Defences", "better": 1, "id": "map_player_global_defences_+%_final_from_sanctum_boon", "matchers": [{"string": "Players have #% more Defences", "negate": false}, {"string": "Players have #% less Defences", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_2068415277"]}}} +{"ref": "Players have #% more Recovery Rate of Life, Mana and Energy Shield", "better": 1, "id": "map_player_status_recovery_speed_+%", "matchers": [{"string": "Players have #% more Recovery Rate of Life, Mana and Energy Shield", "negate": false}, {"string": "Players have #% less Recovery Rate of Life, Mana and Energy Shield", "negate": true}], "trade": {"ids": {"explicit": ["explicit.stat_1310597900"]}}} +{"ref": "Sacrifice up to {} to receive double on Trial completion", "better": 1, "id": "ultimatum_wager_type_hash", "matchers": [{"string": "Sacrifice up to {} to receive double on Trial completion", "negate": false}], "trade": {"ids": null}} +{"ref": "#% increased Effect of Jewel Socket Passive Skills\\ncontaining Corrupted Magic Basic Jewels", "better": 1, "id": "local_unique_jewel_passive_jewel_socket_mod_effect_+%_with_corrupted_magic_jewel_socketed", "matchers": [{"string": "#% increased Effect of Jewel Socket Passive Skills\\ncontaining Corrupted Magic Basic Jewels", "negate": false}, {"string": "#% reduced Effect of Jewel Socket Passive Skills\\ncontaining Corrupted Magic Basic Jewels", "negate": true}], "trade": {"ids": null}} +{"ref": "Allocates #", "better": 1, "id": "unique_jewel_grants_notable_hash_1", "matchers": [{"string": "Allocates #", "negate": false}], "trade": {"ids": {"enchant": ["enchant.stat_2954116742"]}}} +{"ref": "Allocates #", "better": 1, "id": "unique_jewel_grants_notable_hash_2", "matchers": [{"string": "Allocates #", "negate": false}], "trade": {"ids": {"enchant": ["enchant.stat_2954116742"]}}} +{"ref": "Allocates #", "better": 1, "id": "unique_jewel_grants_notable_hash_3", "matchers": [{"string": "Allocates #", "negate": false}], "trade": {"ids": {"enchant": ["enchant.stat_2954116742"]}}} +{"ref": "Monsters have #% increased Skill Speed", "better": 1, "id": "map_monsters_skill_speed_+%", "matchers": [{"string": "Monsters have #% increased Skill Speed", "negate": false}, {"string": "Monsters have #% reduced Skill Speed", "negate": true}], "trade": {"ids": null}} +{"ref": "+# to Level of all # Skills", "better": 1, "id": "unique_jewel_specific_skill_level_+_skill", "matchers": [{"string": "# to Level of all # Skills", "negate": false}], "trade": {"ids": {"explicit": ["explicit.stat_448592698"]}}} +{"ref": "#% increased Physical Damage", "better": 1, "id": "physical_local_damage_+%", "matchers": [{"string": "#% increased Physical Damage"}], "trade": {"ids": {"explicit": ["explicit.stat_419810844"], "fractured": ["fractured.stat_419810844"], "rune": ["rune.stat_419810844"]}}} diff --git a/renderer/src/parser/en/testLoader.ts b/renderer/src/parser/en/testLoader.ts new file mode 100644 index 000000000..2ad0ed633 --- /dev/null +++ b/renderer/src/parser/en/testLoader.ts @@ -0,0 +1,253 @@ +import fnv1a from "@sindresorhus/fnv1a"; +import type { + BaseType, + DropEntry, + Stat, + StatMatcher, + TranslationDict, +} from "./interfaces"; +import path from "path"; +import fs from "fs"; + +export * from "./interfaces"; + +export let ITEM_DROP: DropEntry[]; +export let CLIENT_STRINGS: TranslationDict; +export let CLIENT_STRINGS_REF: TranslationDict; +export let APP_PATRONS: Array<{ from: string; months: number; style: number }>; + +export let ITEM_BY_TRANSLATED = ( + ns: BaseType["namespace"], + name: string, +): BaseType[] | undefined => undefined; +export let ITEM_BY_REF = ( + ns: BaseType["namespace"], + name: string, +): BaseType[] | undefined => undefined; +export let ITEMS_ITERATOR = function* ( + includes: string, + andIncludes?: string[], +): Generator {}; + +export let ALTQ_GEM_NAMES = function* (): Generator {}; +export let REPLICA_UNIQUE_NAMES = function* (): Generator {}; + +export let STAT_BY_MATCH_STR = ( + name: string, +): { matcher: StatMatcher; stat: Stat } | undefined => undefined; +export let STAT_BY_REF = (name: string): Stat | undefined => undefined; +export let STATS_ITERATOR = function* ( + includes: string, + andIncludes?: string[], +): Generator {}; + +function dataBinarySearch( + data: Uint32Array, + value: number, + rowOffset: number, + rowSize: number, +) { + let left = 0; + let right = data.length / rowSize - 1; + while (left <= right) { + const mid = Math.floor((left + right) / 2); + const midValue = data[mid * rowSize + rowOffset]; + if (midValue < value) { + left = mid + 1; + } else if (midValue > value) { + right = mid - 1; + } else { + return mid; + } + } + return -1; +} + +function ndjsonFindLines(ndjson: string) { + // it's preferable that passed `searchString` has good entropy + return function* ( + searchString: string, + andIncludes: string[] = [], + ): Generator { + let start = 0; + while (start !== ndjson.length) { + const matchPos = ndjson.indexOf(searchString, start); + if (matchPos === -1) break; + // works for first line too (-1 + 1 = 0) + start = ndjson.lastIndexOf("\n", matchPos) + 1; + const end = ndjson.indexOf("\n", matchPos); + const jsonLine = ndjson.slice(start, end); + if (andIncludes.every((str) => jsonLine.includes(str))) { + yield JSON.parse(jsonLine) as T; + } + start = end + 1; + } + }; +} + +function itemNamesFromLines(items: Generator) { + let cached = ""; + return function* (): Generator { + if (!cached.length) { + for (const item of items) { + cached += item.name + "\n"; + } + } + + let start = 0; + while (start !== cached.length) { + const end = cached.indexOf("\n", start); + yield cached.slice(start, end); + start = end + 1; + } + }; +} + +async function loadItems(language: string) { + const ndjson = fs.readFileSync( + path.resolve(__dirname, `./items.ndjson`), + "utf-8", + ); + const INDEX_WIDTH = 2; + const indexNames = new Uint32Array( + fs.readFileSync(path.resolve(__dirname, `./items-name.index.bin`)).buffer, + ); + + const indexRefNames = new Uint32Array( + fs.readFileSync(path.resolve(__dirname, `./items-ref.index.bin`)).buffer, + ); + + function commonFind(index: Uint32Array, prop: "name" | "refName") { + return function ( + ns: BaseType["namespace"], + name: string, + ): BaseType[] | undefined { + let start = dataBinarySearch( + index, + Number(fnv1a(`${ns}::${name}`, { size: 32 })), + 0, + INDEX_WIDTH, + ); + if (start === -1) return undefined; + start = index[start * INDEX_WIDTH + 1]; + const out: BaseType[] = []; + while (start !== ndjson.length) { + const end = ndjson.indexOf("\n", start); + const record = JSON.parse(ndjson.slice(start, end)) as BaseType; + if (record.namespace === ns && record[prop] === name) { + out.push(record); + if (!record.disc && !record.unique) break; + } else { + break; + } + start = end + 1; + } + return out; + }; + } + + ITEM_BY_TRANSLATED = commonFind(indexNames, "name"); + ITEM_BY_REF = commonFind(indexRefNames, "refName"); + ITEMS_ITERATOR = ndjsonFindLines(ndjson); + ALTQ_GEM_NAMES = itemNamesFromLines( + ITEMS_ITERATOR('altQuality":["Anomalous'), + ); + REPLICA_UNIQUE_NAMES = itemNamesFromLines( + ITEMS_ITERATOR('refName":"Replica'), + ); +} + +async function loadStats(language: string) { + const ndjson = fs.readFileSync( + path.resolve(__dirname, `./stats.ndjson`), + "utf-8", + ); + const INDEX_WIDTH = 2; + const indexRef = new Uint32Array( + fs.readFileSync(path.resolve(__dirname, `./stats-ref.index.bin`)).buffer, + ); + const indexMatcher = new Uint32Array( + fs.readFileSync( + path.resolve(__dirname, `./stats-matcher.index.bin`), + ).buffer, + ); + + STAT_BY_REF = function (ref: string) { + let start = dataBinarySearch( + indexRef, + Number(fnv1a(ref, { size: 32 })), + 0, + INDEX_WIDTH, + ); + if (start === -1) return undefined; + start = indexRef[start * INDEX_WIDTH + 1]; + const end = ndjson.indexOf("\n", start); + return JSON.parse(ndjson.slice(start, end)); + }; + + STAT_BY_MATCH_STR = function (matchStr: string) { + let start = dataBinarySearch( + indexMatcher, + Number(fnv1a(matchStr, { size: 32 })), + 0, + INDEX_WIDTH, + ); + if (start === -1) return undefined; + start = indexMatcher[start * INDEX_WIDTH + 1]; + const end = ndjson.indexOf("\n", start); + const stat = JSON.parse(ndjson.slice(start, end)) as Stat; + + const matcher = stat.matchers.find( + (m) => m.string === matchStr || m.advanced === matchStr, + ); + if (!matcher) { + // console.log('fnv1a32 collision') + return undefined; + } + return { stat, matcher }; + }; + + STATS_ITERATOR = ndjsonFindLines(ndjson); +} + +// assertion, to avoid regressions in stats.ndjson +const DELAYED_STAT_VALIDATION = new Set(); +export function stat(text: string) { + DELAYED_STAT_VALIDATION.add(text); + return text; +} + +export async function init(lang: string) { + CLIENT_STRINGS_REF = (await import("./client_strings.js")).default; + ITEM_DROP = JSON.parse( + fs.readFileSync(path.resolve(__dirname, `./item-drop.json`), "utf-8"), + ) as DropEntry[]; + APP_PATRONS = JSON.parse( + fs.readFileSync(path.resolve(__dirname, `./patrons.json`), "utf-8"), + ) as Array<{ from: string; months: number; style: number }>; + + await loadForLang(lang); + + let failed = false; + const missing = []; + + for (const text of DELAYED_STAT_VALIDATION) { + if (STAT_BY_REF(text) == null) { + // throw new Error(`Cannot find stat: ${text}`); + missing.push(text); + failed = true; + } + } + if (failed) { + throw new Error( + `Cannot find stat${missing.length > 1 ? "s" : ""}: ${missing.join("\n")}`, + ); + } + DELAYED_STAT_VALIDATION.clear(); +} + +export async function loadForLang(lang: string) { + CLIENT_STRINGS = (await import("./client_strings.js")).default; + await loadItems(lang); + await loadStats(lang); +} diff --git a/renderer/src/parser/modifiers.ts b/renderer/src/parser/modifiers.ts index ad81b4a12..75bc5db75 100644 --- a/renderer/src/parser/modifiers.ts +++ b/renderer/src/parser/modifiers.ts @@ -92,6 +92,7 @@ export function statSourcesTotal( ); } +// Does actual translation? export function translateStatWithRoll( calc: StatCalculated, roll: StatRoll | undefined, diff --git a/renderer/src/web/conversion-warn-banner/ConversionWarningBanner.vue b/renderer/src/web/conversion-warn-banner/ConversionWarningBanner.vue index dcfe83998..b6ce14d80 100644 --- a/renderer/src/web/conversion-warn-banner/ConversionWarningBanner.vue +++ b/renderer/src/web/conversion-warn-banner/ConversionWarningBanner.vue @@ -2,14 +2,27 @@
- This is in BETA for POE2, things will not work always as expected. + {{ info.str1 }}
- Please report any issues. + {{ info.str2 }}
diff --git a/renderer/src/web/price-check/PriceCheckWindow.vue b/renderer/src/web/price-check/PriceCheckWindow.vue index 9592c3333..32f90afdd 100644 --- a/renderer/src/web/price-check/PriceCheckWindow.vue +++ b/renderer/src/web/price-check/PriceCheckWindow.vue @@ -223,7 +223,6 @@ export default defineComponent({ wm.show(props.config.wmId); checkPosition.value = e.position; advancedCheck.value = e.focusOverlay; - item.value = ( e.item ? ok(e.item as ParsedItem) : parseClipboard(e.clipboard) ) diff --git a/renderer/src/web/price-check/filters/FiltersBlock.vue b/renderer/src/web/price-check/filters/FiltersBlock.vue index b0325a876..ada921e2b 100644 --- a/renderer/src/web/price-check/filters/FiltersBlock.vue +++ b/renderer/src/web/price-check/filters/FiltersBlock.vue @@ -119,9 +119,9 @@ class="mb-4 text-center bg-teal-800 rounded-xl" :class="presets.length > 1 ? 'mt-1' : 'mt-4'" > - Pseudo mods not supported by trade site + {{ t("poe2_new.pseudo_note") }}
- Items may appear to be more valuable than they actually are + {{ t("poe2_new.pseudo_note2") }}
- For some reason this item's stats did not parse.
- It likely has a mod that is not supported yet.
(Potentially new or - changed wording from poe1) + {{ t("poe2_new.parse_error") }} +
+ {{ t("poe2_new.parse_error2") }} +
+ {{ t("poe2_new.parse_error3") }}
- Bulk exchange rates are not implemented yet + {{ t("poe2_new.bulk_exchange") }}
info.elements.length).map( - // (info) => ({ ref: info.ref, multiplier: info.elements.length }), - // ), - // }, - // { - // pseudo: stat("+#% total to Fire Resistance"), - // group: "to_x_ele_res", - // stats: RESISTANCES_INFO.filter((info) => - // info.elements.includes("fire"), - // ).map((info) => ({ ref: info.ref })), - // }, - // { - // pseudo: stat("+#% total to Cold Resistance"), - // group: "to_x_ele_res", - // stats: RESISTANCES_INFO.filter((info) => - // info.elements.includes("cold"), - // ).map((info) => ({ ref: info.ref })), - // }, - // { - // pseudo: stat("+#% total to Lightning Resistance"), - // group: "to_x_ele_res", - // stats: RESISTANCES_INFO.filter((info) => - // info.elements.includes("lightning"), - // ).map((info) => ({ ref: info.ref })), - // }, + { + pseudo: stat("+#% total Elemental Resistance"), + disabled: false, + stats: RESISTANCES_INFO.filter((info) => info.elements.length).map( + (info) => ({ ref: info.ref, multiplier: info.elements.length }), + ), + }, + { + pseudo: stat("+#% total to Fire Resistance"), + group: "to_x_ele_res", + stats: RESISTANCES_INFO.filter((info) => + info.elements.includes("fire"), + ).map((info) => ({ ref: info.ref })), + }, + { + pseudo: stat("+#% total to Cold Resistance"), + group: "to_x_ele_res", + stats: RESISTANCES_INFO.filter((info) => + info.elements.includes("cold"), + ).map((info) => ({ ref: info.ref })), + }, + { + pseudo: stat("+#% total to Lightning Resistance"), + group: "to_x_ele_res", + stats: RESISTANCES_INFO.filter((info) => + info.elements.includes("lightning"), + ).map((info) => ({ ref: info.ref })), + }, // { // pseudo: stat("+#% total to Chaos Resistance"), // stats: RESISTANCES_INFO.filter((info) => info.chaos === true).map( @@ -164,6 +169,10 @@ const PSEUDO_RULES: PseudoRule[] = [ // ], // }, // { + // pseudo: stat("+# total maximum Spirit"), + // stats: [{ ref: stat("+# to Spirit") }], + // }, + // { // pseudo: stat("#% total increased maximum Energy Shield"), // stats: [{ ref: stat("#% increased maximum Energy Shield") }], // }, diff --git a/renderer/src/web/price-check/filters/pseudo/item-property.ts b/renderer/src/web/price-check/filters/pseudo/item-property.ts index e609f175e..66afce0cf 100644 --- a/renderer/src/web/price-check/filters/pseudo/item-property.ts +++ b/renderer/src/web/price-check/filters/pseudo/item-property.ts @@ -241,19 +241,21 @@ function weaponProps(ctx: FiltersCreationContext) { ); } - ctx.filters.push( - propToFilter( - { - ref: "Attacks per Second: #", - tradeId: "item.aps", - roll: attackSpeed.roll, - sources: attackSpeed.sources, - dp: true, - disabled: true, - }, - ctx, - ), - ); + if (item.weaponAS) { + ctx.filters.push( + propToFilter( + { + ref: "Attacks per Second: #", + tradeId: "item.aps", + roll: attackSpeed.roll, + sources: attackSpeed.sources, + dp: true, + disabled: true, + }, + ctx, + ), + ); + } if (item.weaponCRIT) { const critChance = calcPropBounds( diff --git a/renderer/src/web/price-check/trade/common.ts b/renderer/src/web/price-check/trade/common.ts index 75270b8d8..4251dfeeb 100644 --- a/renderer/src/web/price-check/trade/common.ts +++ b/renderer/src/web/price-check/trade/common.ts @@ -28,7 +28,6 @@ export function apiToSatisfySearch( stats: StatFilter[], filters: ItemFilters, ): "trade" | "bulk" { - console.log("item", item, "filter", filters, "stats", stats); if (stats.some((s) => !s.disabled)) { return "trade"; } diff --git a/renderer/src/web/price-check/trade/pathofexile-trade.ts b/renderer/src/web/price-check/trade/pathofexile-trade.ts index dd59a0602..16f0e977b 100644 --- a/renderer/src/web/price-check/trade/pathofexile-trade.ts +++ b/renderer/src/web/price-check/trade/pathofexile-trade.ts @@ -16,7 +16,7 @@ import { RATE_LIMIT_RULES, preventQueueCreation, } from "./common"; -import { STAT_BY_REF } from "@/assets/data"; +import { PSEUDO_ID_TO_TRADE_REQUEST, STAT_BY_REF } from "@/assets/data"; import { RateLimiter } from "./RateLimiter"; import { ModifierType } from "@/parser/modifiers"; import { Cache } from "./Cache"; @@ -105,7 +105,7 @@ interface TradeRequest { name?: string | { discriminator: string; option: string }; type?: string | { discriminator: string; option: string }; stats: Array<{ - type: "and" | "if" | "count" | "not"; + type: "and" | "if" | "count" | "not" | "weight"; value?: FilterRange; filters: Array<{ id: string; @@ -113,6 +113,7 @@ interface TradeRequest { min?: number; max?: number; option?: number | string; + weight?: number; }; disabled?: boolean; }>; @@ -299,6 +300,7 @@ export function createTradeRequest( ); } + // Search by category not base type? const activeSearch = filters.searchRelaxed && !filters.searchRelaxed.disabled ? filters.searchRelaxed @@ -427,6 +429,7 @@ export function createTradeRequest( // BREAK ============================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================== + // Meta internal stuff, crafting as empty and setting dps/pdps/edps for (const stat of stats) { if (stat.tradeId[0] === "item.has_empty_modifier") { const TARGET_ID = { @@ -663,7 +666,9 @@ export function createTradeRequest( const qAnd = query.stats[0]; for (const stat of stats) { - if (stat.tradeId.length === 1) { + if (stat.tradeId[0].startsWith("pseudo.")) { + query.stats.push(pseudoPseudoToQuery(stat.tradeId[0], stat)); + } else if (stat.tradeId.length === 1) { qAnd.filters.push(tradeIdToQuery(stat.tradeId[0], stat)); } else { query.stats.push({ @@ -844,3 +849,10 @@ function nameToQuery(name: string, filters: ItemFilters) { }; } } + +function pseudoPseudoToQuery(id: string, stat: StatFilter) { + const filter = PSEUDO_ID_TO_TRADE_REQUEST[id]; + filter.value = { ...getMinMax(stat.roll) }; + filter.disabled = stat.disabled; + return filter; +} diff --git a/renderer/tsconfig.json b/renderer/tsconfig.json index 9d0380da4..b22b98902 100644 --- a/renderer/tsconfig.json +++ b/renderer/tsconfig.json @@ -12,12 +12,32 @@ "useDefineForClassFields": true, "sourceMap": true, "paths": { - "@/*": ["./src/*"], - "@ipc/*": ["../ipc/*"] + "@/*": [ + "./src/*" + ], + "@ipc/*": [ + "../ipc/*" + ] }, - "types": ["vite/client"], - "lib": ["esnext", "dom", "dom.iterable"] + "types": [ + "vite/client", + "vitest/importMeta" + ], + "lib": [ + "esnext", + "dom", + "dom.iterable" + ] }, - "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"], - "references": [{ "path": "./tsconfig.node.json" }] -} + "include": [ + "src/**/*.ts", + "src/**/*.d.ts", + "src/**/*.tsx", + "src/**/*.vue" + ], + "references": [ + { + "path": "./tsconfig.node.json" + } + ] +} \ No newline at end of file diff --git a/renderer/vitest.config.ts b/renderer/vitest.config.ts new file mode 100644 index 000000000..6601223ff --- /dev/null +++ b/renderer/vitest.config.ts @@ -0,0 +1,18 @@ +import { defineConfig } from "vitest/config"; +import tsconfigPaths from "vite-tsconfig-paths"; + +export default defineConfig({ + plugins: [tsconfigPaths()], + test: { + includeSource: ["src/**/*.{js,ts}"], + globals: true, + }, + define: { + "import.meta.vitest": "undefined", + }, + resolve: { + alias: { + "@/assets/data/en": "./src/parser/en", + }, + }, +});